diff --git a/.github/workflows/R-check.yml b/.github/workflows/R-check.yml new file mode 100644 index 0000000..339554c --- /dev/null +++ b/.github/workflows/R-check.yml @@ -0,0 +1,101 @@ +on: [push, pull_request] + +name: R-check + +jobs: + R-check: + runs-on: ${{ matrix.config.os }} + + name: ${{ matrix.config.os }} (${{ matrix.config.r }}) + + strategy: + fail-fast: false + matrix: + config: + - { os: windows-latest, r: 'release'} + - { os: macOS-latest, r: 'release'} + # - { os: macOS-latest, r: 'devel'} + - { os: ubuntu-18.04, r: 'release', rspm: "https://packagemanager.rstudio.com/cran/__linux__/bionic/latest"} + + env: + R_REMOTES_NO_ERRORS_FROM_WARNINGS: true + RSPM: ${{ matrix.config.rspm }} + VCR_VERBOSE_ERRORS: true + + steps: + - uses: actions/checkout@v2 + + - uses: r-lib/actions/setup-r@v1 + with: + r-version: ${{ matrix.config.r }} + + - uses: r-lib/actions/setup-pandoc@v1 + + - name: Query dependencies + run: | + install.packages('remotes') + saveRDS(remotes::dev_package_deps(dependencies = TRUE), ".github/depends.Rds", version = 2) + writeLines(sprintf("R-%i.%i", getRversion()$major, getRversion()$minor), ".github/R-version") + shell: Rscript {0} + + - name: Cache R packages + if: runner.os != 'Windows' + uses: actions/cache@v2 + with: + path: ${{ env.R_LIBS_USER }} + key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }} + restore-keys: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1- + + - name: install macOS system dependencies + if: runner.os == 'macOS' + continue-on-error: true + run: | + brew install pkg-config gdal udunits proj netcdf + + - name: Install system dependencies + if: runner.os == 'Linux' + env: + RHUB_PLATFORM: linux-x86_64-ubuntu-gcc + run: | + sudo apt update + sudo apt install -y --no-install-recommends \ + gdal-bin \ + libgdal-dev \ + libproj-dev \ + netcdf-bin + + - name: Install dependencies + run: | + remotes::install_deps(dependencies = TRUE) + remotes::install_cran(c("rcmdcheck", "taxize")) + shell: Rscript {0} + + - name: Session info + run: | + options(width = 100) + pkgs <- installed.packages()[, "Package"] + sessioninfo::session_info(pkgs, include_base = TRUE) + shell: Rscript {0} + + - name: Check + env: + _R_CHECK_CRAN_INCOMING_: false + run: rcmdcheck::rcmdcheck(args = c("--no-manual", "--as-cran"), error_on = "warning", check_dir = "check") + shell: Rscript {0} + + - name: Show testthat output + if: always() + run: find check -name 'testthat.Rout*' -exec cat '{}' \; || true + shell: bash + + - name: Upload check results + if: failure() + uses: actions/upload-artifact@v2 + with: + name: ${{ runner.os }}-r${{ matrix.config.r }}-results + path: check + + - name: Test coverage + if: matrix.config.os == 'ubuntu-18.04' && matrix.config.r == 'release' + run: | + Rscript -e 'remotes::install_cran("covr")' -e 'covr::codecov(token = "${{secrets.CODECOV_TOKEN}}")' diff --git a/CRAN-SUBMISSION b/CRAN-SUBMISSION index 50edf67..d919b5d 100644 --- a/CRAN-SUBMISSION +++ b/CRAN-SUBMISSION @@ -1,3 +1,3 @@ -Version: 1.0.4 -Date: 2023-08-23 01:37:27 UTC -SHA: 5c8c7179d4e63b927a08e707d8bb1c8b6bd0c693 +Version: 1.1.0 +Date: 2024-01-12 17:22:06 UTC +SHA: 9662d98df70233be405dedcd27534c721b9136f5 diff --git a/DESCRIPTION b/DESCRIPTION index 3512e6b..c4eb67a 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -5,8 +5,8 @@ Description: General purpose R client for 'ERDDAP' servers. Includes 'datasets', and fetch 'datasets', in either 'csv' or 'netCDF' format. 'ERDDAP' information: . -Version: 1.0.4 -Date: 2023-08-23 +Version: 1.1.0 +Date: 2024-1-12 License: MIT + file LICENSE Authors@R: c( person("Scott", "Chamberlain", role = "aut"), @@ -23,16 +23,18 @@ Roxygen: list(markdown = TRUE) Encoding: UTF-8 Language: en-US Imports: - utils, crul (>= 0.7.4), dplyr (>= 0.5.0), data.table (>= 1.12.0), - jsonlite (>= 1.6), - xml2 (>= 1.2.0), digest, + hoardr (>= 0.5.2), + jsonlite (>= 1.6), + lubridate, + methods, ncdf4 (>= 1.16), tibble, - hoardr (>= 0.5.2) + utils, + xml2 (>= 1.2.0) Suggests: knitr, rmarkdown diff --git a/NEWS.md b/NEWS.md index a54ba62..5774d6a 100755 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,7 @@ +rerddap 1.1.0 +============= +* 'tabledap()' responses now have the datatype given in the file .dds + rerddap 1.0.4 ============= * fixes problem with time bounds check and "last" diff --git a/R/ncdf_helpers.R b/R/ncdf_helpers.R index 9444551..367bf2c 100644 --- a/R/ncdf_helpers.R +++ b/R/ncdf_helpers.R @@ -12,7 +12,10 @@ ncdf4_get <- function(file){ for (i in seq_along(dims)) { out[[dims[i]]] <- ncdf4::ncvar_get(nc, nc$dim[[dims[i]]]) } - out$time <- sapply(out$time, convert_time) + if ('time' %in% names(out)){ + out$time <- sapply(out$time, convert_time) + + } vars <- names(nc$var) outvars <- list() for (i in seq_along(vars)) { diff --git a/R/table.R b/R/table.R index 554e989..a7f391a 100644 --- a/R/table.R +++ b/R/table.R @@ -208,8 +208,27 @@ tabledap <- function(x, ..., fields=NULL, distinct=FALSE, orderby=NULL, } resp <- erd_tab_GET(url, dset = attr(x, "datasetid"), store, callopts) loc <- if (store$store == "disk") resp else "memory" + temp_table <- read_table(resp) + # change response type + dds_url <- sub('csv', 'dds', url) + # strip off constraints + amp_location <- regexpr("&", dds_url) + if (amp_location[1] > 0) { + dds_url <- substr(dds_url, 1, amp_location[1] - 1) + } + dds <- try(suppressWarnings(utils::read.table(dds_url)), silent = TRUE) + # if (class(dds) == 'try-error') { + if (methods::is(dds, 'try-error')) { + print('failed to get variable datatype information') + print('will leave units unchanged') + } else{ + temp_table <- set_units(temp_table, dds) + } + + structure( - read_table(resp), + #read_table(resp), + temp_table, class = c("tabledap", "data.frame"), datasetid = attr(x, "datasetid"), path = loc, @@ -262,3 +281,25 @@ makevar <- function(x, y){ NULL } } + +set_units <- function(temp_t, dds) { + for (i in seq(3, (nrow(dds) - 2))) { + var_type <- dds[i, 1] + var_name <- dds[i, 2] + var_name <- substr(var_name, 1, nchar(var_name)-1) + if (var_name == 'time') { + # make certain lubridate can convert time + temp_time <- suppressWarnings(lubridate::as_datetime(temp_t$time)) + if (!any(is.na(temp_time))) { + temp_t$time <- temp_time + } + } else { + if (grepl('Float', var_type)) { + temp_t[[var_name]] <- as.numeric(temp_t[[var_name]]) + } else if(grepl('Int', var_type)) { + temp_t[[var_name]] <- as.integer(temp_t[[var_name]]) + } + } + } + return(temp_t) +} \ No newline at end of file diff --git a/cran-comments.md b/cran-comments.md index d5c1860..e09266a 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1,6 +1,6 @@ ## Test environments -* local macOS install, R 4.3.1 +* local macOS install, R 4.3.2 * rhub (devtools::check_rhub()) * macOS Builder (devtools::check_mac_release()) * win-builder (devel and release - devtools::check_win_*()) @@ -15,7 +15,7 @@ OK from all checks --- -This version fixes problems with the time bounds checks and "last" +'tabledap()' responses now have the datatype given in the file .dds Thanks! Roy Mendelssohn diff --git a/man/rerddap-package.Rd b/man/rerddap-package.Rd new file mode 100644 index 0000000..23eeb46 --- /dev/null +++ b/man/rerddap-package.Rd @@ -0,0 +1,60 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/rerddap-package.r +\docType{package} +\name{rerddap-package} +\alias{rerddap-package} +\alias{rerddap} +\title{rerddap} +\description{ +General purpose R client for ERDDAP servers +} +\section{ERDDAP info}{ + +NOAA's ERDDAP service holds many datasets of interest. It's built on top of +OPenDAP. You can search for datasets via +\code{\link[=ed_search]{ed_search()}}, list datasets via \code{\link[=ed_datasets]{ed_datasets()}}, +get information on a single dataset via \code{\link[=info]{info()}}, then get +data you want for either tabledap type via \code{\link[=tabledap]{tabledap()}}, or +for griddap type via \code{\link[=griddap]{griddap()}} +} + +\section{tabledap/griddap}{ + +tabledap and griddap have different interfaces to query for data, so +\code{\link[=tabledap]{tabledap()}} and \code{\link[=griddap]{griddap()}} are separated out as +separate functions even though some of the internals are the same. In +particular, with tabledap you can query on/subset all variables, whereas +with gridddap, you can only query on/subset the dimension varibles (e.g., +latitude, longitude, altitude). +} + +\section{Data size}{ + +With griddap data via \code{\link[=griddap]{griddap()}} you can get a lot of +data quickly. Try small searches of a dataset to start to get a sense for +the data, then you can increase the amount of data you get. See +\code{\link[=griddap]{griddap()}} for more details. +} + +\section{Caching}{ + +\pkg{rerddap} by default caches the requests you make, so that if you happen to +make the same request again, the data is restored from the cache, rather than +having to go out and retrieve it remotely. For most applications, this is good, +as it can speed things up when doing a lot of request in a script, and works +because in most cases an ERDDAP request is "idempotent". This means that the +the request will always return the same thing no matter what requests came +before - it doesn't depend on state. However this is not true if the +script uses either "last" in \code{\link[=griddap]{griddap()}} or "now" in \code{\link[=tabledap]{tabledap()}} as these +will return different values as time elapses and data are added to the +datasets. While it is desirable to have ERDDAP purely idempotent, the +"last" and "now" constructs are very helpful for people using ERDDAP +in dashboards, webpages, regular input to models and the like, and the +benefits far outweigh the problems. However, if you are using either "last" +or "now" in an \pkg{rerddap} based script, you want to be very careful to +clear the \pkg{rerddap} cache, otherwise the request will be viewed as the +same, and the data from the last request, rather than the latest data, +will be returned. +} + +\keyword{package} diff --git a/tests/fixtures/188571c95282bcb224bb987dd83d22b7.nc b/tests/fixtures/188571c95282bcb224bb987dd83d22b7.nc new file mode 100644 index 0000000..2e4a02f Binary files /dev/null and b/tests/fixtures/188571c95282bcb224bb987dd83d22b7.nc differ diff --git a/tests/fixtures/268b2474e9e613336b900d3289304bb0.csv b/tests/fixtures/268b2474e9e613336b900d3289304bb0.csv new file mode 100644 index 0000000..d6ad6df --- /dev/null +++ b/tests/fixtures/268b2474e9e613336b900d3289304bb0.csv @@ -0,0 +1,39 @@ +station,longitude,latitude,depth,time,Aplysia_californica_Mean_Density,Aplysia_californica_StdDev,Aplysia_californica_StdErr,Crassedoma_giganteum_Mean_Density,Crassedoma_giganteum_StdDev,Crassedoma_giganteum_StdErr,Haliotis_corrugata_Mean_Density,Haliotis_corrugata_StdDev,Haliotis_corrugata_StdErr,Haliotis_fulgens_Mean_Density,Haliotis_fulgens_StdDev,Haliotis_fulgens_StdErr,Haliotis_rufescens_Mean_Density,Haliotis_rufescens_StdDev,Haliotis_rufescens_StdErr,Kelletia_kelletii_Mean_Density,Kelletia_kelletii_StdDev,Kelletia_kelletii_StdErr,Lophogorgia_chilensis_Mean_Density,Lophogorgia_chilensis_StdDev,Lophogorgia_chilensis_StdErr,Lytechinus_anamesus_Mean_Density,Lytechinus_anamesus_StdDev,Lytechinus_anamesus_StdErr,Megathura_crenulata_Mean_Density,Megathura_crenulata_StdDev,Megathura_crenulata_StdErr,Muricea_californica_Mean_Density,Muricea_californica_StdDev,Muricea_californica_StdErr,Muricea_fruticosa_Mean_Density,Muricea_fruticosa_StdDev,Muricea_fruticosa_StdErr,Panulirus_interruptus_Mean_Density,Panulirus_interruptus_StdDev,Panulirus_interruptus_StdErr,Pycnopodia_helianthoides_Mean_Density,Pycnopodia_helianthoides_StdDev,Pycnopodia_helianthoides_StdErr,Stylaster_californica_Mean_Density,Stylaster_californica_StdDev,Stylaster_californica_StdErr,Tethya_aurantia_Mean_Density,Tethya_aurantia_StdDev,Tethya_aurantia_StdErr,Urticina_lofotensis_Mean_Density,Urticina_lofotensis_StdDev,Urticina_lofotensis_StdErr +,degrees_east,degrees_north,m,UTC,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,, +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,2007-07-01T00:00:00Z,0.009722223,0.01,0.0032166007,0.06,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.05,0.01,0.06,0.03,0.009049605,0.0,0.0,0.0,0.06,0.02,0.006197167,0.01,0.02,0.0059664934,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.06,0.01,0.0,0.0,0.0 +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0057418267,0.0,0.0,0.0,0.16,0.05,0.01,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.04,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.05,0.09,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.009250838,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,2007-07-01T00:00:00Z,0.16,0.17,0.05,0.04,0.02,0.0078007416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14,0.1,0.03,0.01,0.02,0.008206099,0.76,0.55,0.16,0.19,0.09,0.02,0.01,0.01,0.0031337559,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.03,0.01,0.0,0.0,0.0 +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,2007-07-01T00:00:00Z,0.03,0.01,0.0043317466,0.03,0.03,0.008734052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.31,0.1,0.03,0.01,0.01,0.0042705894,0.009722223,0.01,0.0038151375,0.04,0.04,0.01,0.008333334,0.01,0.0038380516,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.18,0.09,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.007349309,0.009722223,0.02,0.0069444445,0.0,0.0,0.0,0.04,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006487491,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.004792993,0.0013888889,0.0048112525,0.0013888889 +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,2007-07-01T00:00:00Z,0.008333334,0.01,0.0038380516,0.01,0.01,0.0047377935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.24,0.29,0.08,0.13,0.07,0.02,0.01,0.02,0.006634497,0.04,0.02,0.005922242,0.31,0.16,0.04,0.04,0.09,0.02,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.05,0.01,0.0,0.0,0.0 +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,2007-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,2007-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,2007-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,2007-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,2007-07-01T00:00:00Z,0.01,0.01,0.0042705894,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.01,0.02,0.007526142,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18,0.07,0.02,0.0,0.0,0.0,0.09,0.08,0.02,0.01,0.01,0.0057418267 +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.66,0.54,0.15,0.03,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.007432355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.00803332,0.0,0.0,0.0,0.19,0.08,0.02,0.2,0.12,0.03 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0047377935,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.09,0.02,0.55,0.12,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.0042705894,0.0,0.0,0.0,0.21,0.17,0.05,0.39,0.23,0.06 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,2007-07-01T00:00:00Z,0.08,0.05,0.01,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.004166667,0.03,0.03,0.01,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,2007-07-01T00:00:00Z,0.15,0.06,0.02,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.004166667,0.0075377836,0.0021759707,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,2007-07-01T00:00:00Z,0.15,0.12,0.03,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.05,0.05,0.01,0.42,0.52,0.15,0.01,0.01,0.0043317466,0.02,0.02,0.0059811715,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.06,0.01,0.0,0.0,0.0 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,2007-07-01T00:00:00Z,0.04,0.04,0.01,0.009722223,0.008582144,0.0024774517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.04,0.01,0.01,0.02,0.008322805,0.01,0.02,0.007241137,0.05,0.03,0.01,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11,0.06,0.01,0.0,0.0,0.0 +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,2007-07-01T00:00:00Z,0.12,0.16,0.04,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0058025885,0.0,0.0,0.0,0.0069444445,0.008582144,0.0024774517,0.009722223,0.01,0.0038151375,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889 +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,2007-07-01T00:00:00Z,0.26,0.13,0.03,0.02,0.02,0.0065947296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0069444445,0.01,0.0032166007,0.0055555557,0.008206099,0.0023688967,0.15,0.1,0.02,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0069444445,0.01,0.0032166007,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,2007-07-01T00:00:00Z,0.08,0.03,0.009174698,0.25,0.13,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.22,0.13,0.04,0.04,0.04,0.01,0.18,0.08,0.02,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.07,0.02,0.0,0.0,0.0 +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,2007-07-01T00:00:00Z,0.02,0.02,0.0063232244,0.1,0.1,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.23,0.44,0.12,0.03,0.06,0.01,0.35,0.11,0.03,0.0055555557,0.008206099,0.0023688967,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.02,0.02,0.0058477456,0.0,0.0,0.0 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.03,0.02,0.006309342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.24,0.26,0.07,0.0013888889,0.0048112525,0.0013888889,0.07,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0,0.05,0.03,0.01,0.0,0.0,0.0 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0042705894,0.02,0.01,0.004792993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0041030496,0.13,0.18,0.05,0.19,0.08,0.02,0.0,0.0,0.0 +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,2007-07-01T00:00:00Z,0.02,0.03,0.01,0.05,0.03,0.009945136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.009049605,0.13,0.15,0.04,0.05,0.05,0.01,0.48,0.21,0.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0058025885,0.0,0.0,0.0 +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,2007-07-01T00:00:00Z,0.02,0.03,0.008814,0.04,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.27,0.16,0.04,0.85,0.79,0.22,0.06,0.04,0.01,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.06,0.01,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,2007-07-01T00:00:00Z,0.01,0.02,0.0060973214,0.06,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.14,0.11,0.03,1.26,0.51,0.14,0.004166667,0.0075377836,0.0021759707,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0069444445,0.0,0.0,0.0 +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,2007-07-01T00:00:00Z,0.01,0.01,0.004166667,0.15,0.2,0.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.16,0.14,0.04,0.7,1.43,0.41,0.1,0.11,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.06,0.05,0.01,0.0,0.0,0.0 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,2007-07-01T00:00:00Z,0.01,0.01,0.004792993,0.01,0.01,0.0052135917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.11,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.009585986,0.0,0.0,0.0 +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.009622505,0.06,0.03,0.009363887,0.11,0.09,0.02,0.004166667,0.01,0.0029905858,0.01,0.01,0.0045102453,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.008333334,0.01,0.0043519414,0.0,0.0,0.0,0.09,0.03,0.008814,0.0013888889,0.0048112525,0.0013888889 +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.02,0.007630275,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006804138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.1,0.06,0.01,0.06,0.03,0.01 +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.04,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.01,0.02,0.0058025885,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.008971757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.01,0.005025189,0.0,0.0,0.0,0.35,0.16,0.04,0.09,0.06,0.02 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0035533453,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.008571921,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.05,0.01,0.0,0.0,0.0,0.12,0.05,0.01,0.01,0.01,0.004644337 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,2007-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.01,0.02,0.0058477456,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.03,0.03,0.01,0.05,0.02,0.008065999,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.15,0.04,0.0,0.0,0.0,0.41,0.1,0.02,0.18,0.13,0.03 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,2007-07-01T00:00:00Z,0.0055555557,0.01,0.0031337559,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.07,0.02,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.03,0.00927923,0.0,0.0,0.0,0.25,0.1,0.02,0.06,0.03,0.009803055 +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.04,0.01,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.004166667,0.01,0.004166667,0.1,0.04,0.01,0.02,0.02,0.0071436088 +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.05,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0069444445,0.01,0.0038151375,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.04,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.21,0.12,0.03,0.06,0.04,0.01 diff --git a/tests/fixtures/2b34de76a216b28ab3ef759e2d9c69a8.nc b/tests/fixtures/2b34de76a216b28ab3ef759e2d9c69a8.nc new file mode 100644 index 0000000..cf7ad8c Binary files /dev/null and b/tests/fixtures/2b34de76a216b28ab3ef759e2d9c69a8.nc differ diff --git a/tests/fixtures/587de1a3f8b8a02766c2af091a482545.csv b/tests/fixtures/587de1a3f8b8a02766c2af091a482545.csv new file mode 100644 index 0000000..6c476a9 --- /dev/null +++ b/tests/fixtures/587de1a3f8b8a02766c2af091a482545.csv @@ -0,0 +1,224 @@ +longitude,latitude,Haliotis_fulgens_Mean_Density +degrees_east,degrees_north,m-2 +-119.416666666667,34.0,0.0 +-119.416666666667,34.0,0.0 +-119.416666666667,34.0,0.0 +-119.416666666667,34.0,0.0 +-119.416666666667,34.0,0.0 +-119.416666666667,34.0,0.0 +-119.383333333333,34.0,NaN +-119.383333333333,34.0,NaN +-119.383333333333,34.0,NaN +-119.383333333333,34.0,0.0 +-119.383333333333,34.0,0.0 +-119.383333333333,34.0,0.0 +-119.366666666667,34.0,0.0 +-119.366666666667,34.0,0.0 +-119.366666666667,34.0,0.0 +-119.366666666667,34.0,0.0 +-119.366666666667,34.0,0.0 +-119.366666666667,34.0,0.0 +-119.383333333333,34.0,NaN +-119.383333333333,34.0,NaN +-119.383333333333,34.0,NaN +-119.383333333333,34.0,0.0 +-119.383333333333,34.0,0.0 +-119.383333333333,34.0,0.0 +-119.416666666667,34.0,NaN +-119.416666666667,34.0,NaN +-119.416666666667,34.0,NaN +-119.416666666667,34.0,0.0 +-119.416666666667,34.0,0.0 +-119.416666666667,34.0,0.0 +-119.35,34.0166666666667,0.0 +-119.35,34.0166666666667,0.0 +-119.35,34.0166666666667,0.0 +-119.35,34.0166666666667,0.0 +-119.35,34.0166666666667,0.0 +-119.35,34.0166666666667,0.0 +-119.35,34.0,NaN +-119.35,34.0,NaN +-119.35,34.0,NaN +-119.35,34.0,0.0 +-119.35,34.0,0.0 +-119.35,34.0,0.0 +-118.533333333333,33.0,NaN +-118.533333333333,33.0,0.0 +-118.533333333333,33.0,0.0 +-118.533333333333,33.0,NaN +-118.533333333333,33.0,NaN +-118.533333333333,33.0,NaN +-118.533333333333,32.95,NaN +-118.533333333333,32.95,0.0 +-118.533333333333,32.95,0.0 +-118.533333333333,32.95,NaN +-118.533333333333,32.95,NaN +-118.533333333333,32.95,NaN +-118.4,32.8,NaN +-118.4,32.8,0.0 +-118.4,32.8,0.0 +-118.4,32.8,NaN +-118.4,32.8,NaN +-118.4,32.8,NaN +-118.583333333333,33.0333333333333,NaN +-118.583333333333,33.0333333333333,0.0 +-118.583333333333,33.0333333333333,0.0 +-118.583333333333,33.0333333333333,NaN +-118.583333333333,33.0333333333333,NaN +-118.583333333333,33.0333333333333,NaN +-120.35,34.05,0.0 +-120.35,34.05,0.0 +-120.35,34.05,0.0 +-120.35,34.05,0.0 +-120.35,34.05,0.0 +-120.35,34.05,0.0 +-120.4,34.0166666666667,0.0 +-120.4,34.0166666666667,0.0 +-120.4,34.0166666666667,0.0 +-120.4,34.0166666666667,0.0 +-120.4,34.0166666666667,0.0 +-120.4,34.0166666666667,0.0 +-120.383333333333,34.0166666666667,0.0 +-120.383333333333,34.0166666666667,0.0 +-120.383333333333,34.0166666666667,0.0 +-120.383333333333,34.0166666666667,0.0 +-120.383333333333,34.0166666666667,0.0 +-120.383333333333,34.0166666666667,0.0 +-119.016666666667,33.4666666666667,0.0 +-119.016666666667,33.4666666666667,0.0 +-119.016666666667,33.4666666666667,0.0 +-119.016666666667,33.4666666666667,0.0 +-119.016666666667,33.4666666666667,0.0 +-119.016666666667,33.4666666666667,0.0 +-119.033333333333,33.45,0.0 +-119.033333333333,33.45,0.0 +-119.033333333333,33.45,0.0 +-119.033333333333,33.45,0.0 +-119.033333333333,33.45,0.0 +-119.033333333333,33.45,0.0 +-119.016666666667,33.4666666666667,NaN +-119.016666666667,33.4666666666667,NaN +-119.016666666667,33.4666666666667,NaN +-119.016666666667,33.4666666666667,0.0 +-119.016666666667,33.4666666666667,0.0 +-119.016666666667,33.4666666666667,0.0 +-119.016666666667,33.45,0.0 +-119.016666666667,33.45,0.0 +-119.016666666667,33.45,0.0 +-119.016666666667,33.45,0.0 +-119.016666666667,33.45,0.0 +-119.016666666667,33.45,0.0 +-119.016666666667,33.45,NaN +-119.016666666667,33.45,NaN +-119.016666666667,33.45,NaN +-119.016666666667,33.45,0.0 +-119.016666666667,33.45,0.0 +-119.016666666667,33.45,0.0 +-119.05,33.4666666666667,NaN +-119.05,33.4666666666667,NaN +-119.05,33.4666666666667,NaN +-119.05,33.4666666666667,0.0 +-119.05,33.4666666666667,0.0 +-119.05,33.4666666666667,0.0 +-119.566666666667,34.05,NaN +-119.566666666667,34.05,NaN +-119.566666666667,34.05,NaN +-119.566666666667,34.05,0.0 +-119.566666666667,34.05,0.0 +-119.566666666667,34.05,0.0 +-119.6,34.0333333333333,NaN +-119.6,34.0333333333333,NaN +-119.6,34.0333333333333,NaN +-119.6,34.0333333333333,0.0 +-119.6,34.0333333333333,0.0 +-119.6,34.0333333333333,0.0 +-119.75,34.05,0.0 +-119.75,34.05,0.0 +-119.75,34.05,0.0 +-119.75,34.05,0.0 +-119.75,34.05,0.0 +-119.75,34.05,0.0 +-119.816666666667,33.9333333333333,0.0 +-119.816666666667,33.9333333333333,0.0 +-119.816666666667,33.9333333333333,0.0 +-119.816666666667,33.9333333333333,0.0 +-119.816666666667,33.9333333333333,0.0 +-119.816666666667,33.9333333333333,0.0 +-119.533333333333,34.0333333333333,NaN +-119.533333333333,34.0333333333333,NaN +-119.533333333333,34.0333333333333,NaN +-119.533333333333,34.0333333333333,0.0 +-119.533333333333,34.0333333333333,0.0 +-119.533333333333,34.0333333333333,0.0 +-119.516666666667,34.0333333333333,NaN +-119.516666666667,34.0333333333333,NaN +-119.516666666667,34.0333333333333,NaN +-119.516666666667,34.0333333333333,0.0 +-119.516666666667,34.0333333333333,0.0 +-119.516666666667,34.0333333333333,0.0 +-119.7,34.0166666666667,0.0 +-119.7,34.0166666666667,0.0 +-119.7,34.0166666666667,0.0 +-119.7,34.0166666666667,0.0 +-119.7,34.0166666666667,0.0 +-119.7,34.0166666666667,0.0 +-119.566666666667,34.05,NaN +-119.566666666667,34.05,NaN +-119.566666666667,34.05,NaN +-119.566666666667,34.05,0.0 +-119.566666666667,34.05,0.0 +-119.566666666667,34.05,0.0 +-119.533333333333,34.0333333333333,0.0 +-119.533333333333,34.0333333333333,0.0 +-119.533333333333,34.0333333333333,0.0 +-119.533333333333,34.0333333333333,0.0 +-119.533333333333,34.0333333333333,0.0 +-119.533333333333,34.0333333333333,0.0 +-119.55,33.9833333333333,0.0 +-119.55,33.9833333333333,0.0 +-119.55,33.9833333333333,0.0 +-119.55,33.9833333333333,0.0 +-119.55,33.9833333333333,0.0 +-119.55,33.9833333333333,0.0 +-120.133333333333,33.9,NaN +-120.133333333333,33.9,NaN +-120.133333333333,33.9,NaN +-120.133333333333,33.9,0.0 +-120.133333333333,33.9,0.0 +-120.133333333333,33.9,0.0 +-120.183333333333,33.9166666666667,NaN +-120.183333333333,33.9166666666667,NaN +-120.183333333333,33.9166666666667,NaN +-120.183333333333,33.9166666666667,0.0 +-120.183333333333,33.9166666666667,0.0 +-120.183333333333,33.9166666666667,0.0 +-120.1,33.8833333333333,0.0 +-120.1,33.8833333333333,0.0 +-120.1,33.8833333333333,0.0 +-120.1,33.8833333333333,0.0 +-120.1,33.8833333333333,0.0 +-120.1,33.8833333333333,0.0 +-120.1,33.8833333333333,0.0 +-120.1,33.8833333333333,0.0 +-120.1,33.8833333333333,0.0 +-120.1,33.8833333333333,0.0 +-120.1,33.8833333333333,0.0 +-120.1,33.8833333333333,0.0 +-120.1,34.0166666666667,0.0 +-120.1,34.0166666666667,0.0 +-120.1,34.0166666666667,0.0 +-120.1,34.0166666666667,0.0 +-120.1,34.0166666666667,0.0 +-120.1,34.0166666666667,0.0 +-120.116666666667,33.8833333333333,NaN +-120.116666666667,33.8833333333333,NaN +-120.116666666667,33.8833333333333,NaN +-120.116666666667,33.8833333333333,0.0 +-120.116666666667,33.8833333333333,0.0 +-120.116666666667,33.8833333333333,0.0 +-120.15,33.9,NaN +-120.15,33.9,NaN +-120.15,33.9,NaN +-120.15,33.9,0.0 +-120.15,33.9,0.0 +-120.15,33.9,0.0 diff --git a/tests/fixtures/a0e0d744f765b9867fd5b016de134e34.nc b/tests/fixtures/a0e0d744f765b9867fd5b016de134e34.nc new file mode 100644 index 0000000..6911383 Binary files /dev/null and b/tests/fixtures/a0e0d744f765b9867fd5b016de134e34.nc differ diff --git a/tests/fixtures/a198e57ce27267fa73882ec3866d6fde.csv b/tests/fixtures/a198e57ce27267fa73882ec3866d6fde.csv new file mode 100644 index 0000000..a1b872e --- /dev/null +++ b/tests/fixtures/a198e57ce27267fa73882ec3866d6fde.csv @@ -0,0 +1,927 @@ +station,longitude,latitude,depth,time,Aplysia_californica_Mean_Density,Aplysia_californica_StdDev,Aplysia_californica_StdErr,Crassedoma_giganteum_Mean_Density,Crassedoma_giganteum_StdDev,Crassedoma_giganteum_StdErr,Haliotis_corrugata_Mean_Density,Haliotis_corrugata_StdDev,Haliotis_corrugata_StdErr,Haliotis_fulgens_Mean_Density,Haliotis_fulgens_StdDev,Haliotis_fulgens_StdErr,Haliotis_rufescens_Mean_Density,Haliotis_rufescens_StdDev,Haliotis_rufescens_StdErr,Kelletia_kelletii_Mean_Density,Kelletia_kelletii_StdDev,Kelletia_kelletii_StdErr,Lophogorgia_chilensis_Mean_Density,Lophogorgia_chilensis_StdDev,Lophogorgia_chilensis_StdErr,Lytechinus_anamesus_Mean_Density,Lytechinus_anamesus_StdDev,Lytechinus_anamesus_StdErr,Megathura_crenulata_Mean_Density,Megathura_crenulata_StdDev,Megathura_crenulata_StdErr,Muricea_californica_Mean_Density,Muricea_californica_StdDev,Muricea_californica_StdErr,Muricea_fruticosa_Mean_Density,Muricea_fruticosa_StdDev,Muricea_fruticosa_StdErr,Panulirus_interruptus_Mean_Density,Panulirus_interruptus_StdDev,Panulirus_interruptus_StdErr,Pycnopodia_helianthoides_Mean_Density,Pycnopodia_helianthoides_StdDev,Pycnopodia_helianthoides_StdErr,Stylaster_californica_Mean_Density,Stylaster_californica_StdDev,Stylaster_californica_StdErr,Tethya_aurantia_Mean_Density,Tethya_aurantia_StdDev,Tethya_aurantia_StdErr,Urticina_lofotensis_Mean_Density,Urticina_lofotensis_StdDev,Urticina_lofotensis_StdErr +,degrees_east,degrees_north,m,UTC,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,, +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1983-07-01T00:00:00Z,0.0075,0.01,0.005335937,0.42,0.3,0.09,0.12,0.09,0.03,0.0,0.0,0.0,0.0025,0.007905694,0.0025,0.005,0.01,0.0033333334,0.08,0.07,0.02,0.0,0.0,0.0,0.29,0.18,0.05,NaN,NaN,NaN,0.01,0.02,0.006666667,0.01,0.02,0.006666667,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0 +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1984-07-01T00:00:00Z,0.0,0.0,0.0,0.76,0.26,0.08,0.18,0.1,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.07,0.03,0.01,0.0,0.0,0.0,0.5,0.22,0.07,NaN,NaN,NaN,0.0075,0.01,0.003818813,0.0075,0.01,0.003818813,0.0,0.0,0.0,0.0,0.0,0.0,0.11,0.09,0.03,0.0025,0.007905694,0.0025 +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1985-07-01T00:00:00Z,0.01,0.03,0.008903082,0.14,0.07,0.02,0.1,0.1,0.03,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.04,0.06,0.01,0.06,0.05,0.01,0.4,1.34,0.38,0.2,0.09,0.02,NaN,NaN,NaN,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0072532357,0.0069444445,0.01,0.0032166007 +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1986-07-01T00:00:00Z,0.004166667,0.01,0.0029905858,0.14,0.04,0.01,0.07,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.06,0.02,0.006197167,NaN,NaN,NaN,0.02,0.01,0.004644337,NaN,NaN,NaN,0.01,0.01,0.004792993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.03,0.009909807,0.02,0.02,0.0077102953 +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1987-07-01T00:00:00Z,0.0,0.0,0.0,0.11,0.06,0.02,0.08,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.007057166,0.06,0.04,0.01,NaN,NaN,NaN,0.0013888889,0.0048112525,0.0013888889,NaN,NaN,NaN,0.02,0.03,0.01,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0013888889,0.0048112525,0.0013888889 +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1988-07-01T00:00:00Z,0.0055555557,0.01,0.0055555557,0.06,0.03,0.01,0.02,0.02,0.005922242,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.004792993,0.1,0.03,0.01,NaN,NaN,NaN,0.01,0.02,0.0071436088,0.02,0.02,0.0069570593,0.01,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1989-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.08,0.06,0.01,0.05,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.7,0.42,0.12,NaN,NaN,NaN,0.009722223,0.01,0.0032166007,0.03,0.04,0.01,0.02,0.02,0.0068426887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.02,0.0059664934,0.0,0.0,0.0 +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1990-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.08,0.05,0.01,0.03,0.02,0.0078007416,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.0075377836,0.0021759707,0.0055555557,0.01,0.0042705894,0.1,0.05,0.01,NaN,NaN,NaN,0.05,0.04,0.01,0.03,0.03,0.01,0.01,0.01,0.0045102453,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0079785595,0.03,0.06,0.01 +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1991-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.05,0.05,0.01,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.1,0.04,0.01,4.87,6.99,2.02,0.0055555557,0.01,0.0031337559,0.02,0.02,0.007432355,0.01,0.02,0.008322805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1992-07-01T00:00:00Z,0.04,0.05,0.01,0.13,0.08,0.02,0.009722223,0.01,0.005602704,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.01,0.03,0.009936315,0.08,0.03,0.008903082,1.6,2.13,0.61,0.0013888889,0.0048112525,0.0013888889,0.03,0.02,0.008065999,0.01,0.01,0.0057418267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889 +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1993-07-01T00:00:00Z,0.02,0.04,0.01,0.42,0.23,0.06,0.01,0.01,0.0041030496,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.005476073,0.09,0.05,0.01,0.72,0.72,0.2,0.0027777778,0.006487491,0.0018727774,0.04,0.03,0.009722223,0.02,0.02,0.0062675118,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1994-07-01T00:00:00Z,0.0069444445,0.01,0.0038151375,0.24,0.21,0.06,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0075377836,0.11,0.03,0.009695129,0.09,0.08,0.02,0.01,0.01,0.0047377935,0.02,0.04,0.01,0.01,0.02,0.0060973214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0038151375,0.0013888889,0.0048112525,0.0013888889 +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1995-07-01T00:00:00Z,0.06,0.1,0.02,0.04,0.02,0.005922242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.08,0.03,0.01,0.08,0.11,0.03,0.01,0.02,0.008417088,0.02,0.03,0.009731237,0.009722223,0.01,0.0052135917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0045102453,0.0,0.0,0.0 +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1996-07-01T00:00:00Z,0.01,0.02,0.006634497,0.05,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.03,0.01,0.32,0.73,0.21,0.03,0.03,0.008814,0.03,0.03,0.008663493,0.01,0.02,0.006804138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0042705894,0.0,0.0,0.0 +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1997-07-01T00:00:00Z,0.0069444445,0.01,0.0043317466,0.08,0.08,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.09,0.05,0.01,0.01,0.02,0.007241137,0.01,0.01,0.00401666,0.02,0.03,0.008734052,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1998-07-01T00:00:00Z,0.29,0.13,0.03,0.11,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.1,0.04,0.01,0.0027777778,0.006487491,0.0018727774,0.0027777778,0.006487491,0.0018727774,0.01,0.02,0.007349309,0.02,0.02,0.006634497,0.004166667,0.01,0.004166667,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0 +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1999-07-01T00:00:00Z,0.05,0.02,0.0069444445,0.05,0.05,0.01,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.01,0.14,0.06,0.01,1.43,1.36,0.39,0.0055555557,0.01,0.0031337559,0.03,0.03,0.009203324,0.008333334,0.01,0.0056183324,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0 +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,2000-07-01T00:00:00Z,0.05,0.03,0.01,0.12,0.09,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.07,0.04,0.01,1.13,1.17,0.33,0.02,0.02,0.007241137,0.03,0.03,0.009174698,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0043317466,0.0,0.0,0.0 +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,2001-07-01T00:00:00Z,0.04,0.03,0.008663493,0.14,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.05,0.01,0.04,0.02,0.007526142,0.12,0.16,0.04,0.05,0.04,0.01,0.02,0.02,0.0074911094,0.004166667,0.0075377836,0.0021759707,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.01,0.0,0.0,0.0 +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,2002-07-01T00:00:00Z,0.03,0.05,0.01,0.06,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.008571921,0.05,0.02,0.0075377836,0.0013888889,0.0048112525,0.0013888889,0.1,0.04,0.01,0.02,0.01,0.005476073,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0 +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,2003-07-01T00:00:00Z,0.03,0.03,0.01,0.05,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0058477456,0.04,0.03,0.00927923,0.0069444445,0.01,0.0043317466,0.05,0.04,0.01,0.03,0.02,0.0078007416,0.0027777778,0.009622505,0.0027777778,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0043317466,0.0,0.0,0.0 +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,2004-07-01T00:00:00Z,0.02,0.03,0.009865467,0.02,0.03,0.00927923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.05,0.03,0.01,0.0027777778,0.006487491,0.0018727774,0.09,0.07,0.02,0.02,0.03,0.009059289,0.008333334,0.01,0.0048112525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0 +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,2005-07-01T00:00:00Z,0.0069444445,0.008582144,0.0024774517,0.01,0.01,0.004792993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.07,0.04,0.01,0.0,0.0,0.0,0.01,0.01,0.0036266178,0.03,0.02,0.0069444445,0.0027777778,0.009622505,0.0027777778,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0 +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,2006-07-01T00:00:00Z,0.0027777778,0.009622505,0.0027777778,0.03,0.02,0.007241137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.04,0.01,0.06,0.04,0.01,0.0,0.0,0.0,0.06,0.02,0.007349309,0.02,0.02,0.006527912,0.008333334,0.01,0.0032437455,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006309342,0.0,0.0,0.0 +Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,2007-07-01T00:00:00Z,0.009722223,0.01,0.0032166007,0.06,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.05,0.01,0.06,0.03,0.009049605,0.0,0.0,0.0,0.06,0.02,0.006197167,0.01,0.02,0.0059664934,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.06,0.01,0.0,0.0,0.0 +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.008333334,0.01,0.0032437455,0.004166667,0.01,0.004166667,0.19,0.1,0.03,0.0013888889,0.0048112525,0.0013888889,0.0069444445,0.008582144,0.0024774517,0.009722223,0.01,0.004792993,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0 +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,2006-07-01T00:00:00Z,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.23,0.1,0.02,0.0027777778,0.006487491,0.0018727774,0.0055555557,0.008206099,0.0023688967,0.01,0.02,0.0071066907,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.006197167,0.0,0.0,0.0 +Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0057418267,0.0,0.0,0.0,0.16,0.05,0.01,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.04,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1983-07-01T00:00:00Z,0.0,0.0,0.0,0.03,0.04,0.01,0.03,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.04,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1984-07-01T00:00:00Z,0.01,0.03,0.01,0.04,0.06,0.02,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.02,0.008975275,NaN,NaN,NaN,0.0,0.0,0.0,0.02,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.01,0.005,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1985-07-01T00:00:00Z,0.01,0.01,0.0029905858,0.03,0.05,0.01,0.02,0.02,0.007526142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.01,0.02,0.0069444445,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1986-07-01T00:00:00Z,0.0055555557,0.01,0.0042705894,0.07,0.07,0.02,0.01,0.02,0.0059664934,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.04,0.04,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1987-07-01T00:00:00Z,0.01,0.01,0.005602704,0.07,0.06,0.01,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.01,0.01,0.005025189,NaN,NaN,NaN,0.0,0.0,0.0,0.01,0.02,0.006634497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1988-07-01T00:00:00Z,0.01,0.01,0.0042705894,0.09,0.15,0.04,0.0069444445,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.008333334,0.01,0.0043519414,NaN,NaN,NaN,0.0,0.0,0.0,0.01,0.02,0.005922242,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1989-07-01T00:00:00Z,0.02,0.03,0.008814,0.07,0.07,0.02,0.0055555557,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.01,0.01,0.0037455547,NaN,NaN,NaN,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1990-07-01T00:00:00Z,0.01,0.02,0.007630275,0.11,0.13,0.03,0.01,0.02,0.006527912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006527912,NaN,NaN,NaN,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1991-07-01T00:00:00Z,0.01,0.01,0.0049549034,0.11,0.13,0.03,0.01,0.01,0.004644337,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.009250838,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.15,0.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1992-07-01T00:00:00Z,0.01,0.02,0.007526142,0.2,0.28,0.08,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.02,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1993-07-01T00:00:00Z,0.0055555557,0.01,0.0031337559,0.22,0.22,0.06,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.11,0.32,0.09,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1994-07-01T00:00:00Z,0.008333334,0.01,0.0048112525,0.34,0.49,0.14,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.004166667,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.008333334,0.02,0.0069570593,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1995-07-01T00:00:00Z,0.02,0.02,0.008571921,0.07,0.13,0.03,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.09,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1996-07-01T00:00:00Z,0.0055555557,0.01,0.0031337559,0.09,0.12,0.03,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0047377935,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1997-07-01T00:00:00Z,0.0069444445,0.01,0.0032166007,0.14,0.18,0.05,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1998-07-01T00:00:00Z,0.08,0.04,0.01,0.07,0.09,0.02,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.009722223,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0056183324,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1999-07-01T00:00:00Z,0.0069444445,0.01,0.0032166007,0.12,0.23,0.06,0.0069444445,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.004166667,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,2000-07-01T00:00:00Z,0.01,0.02,0.007057166,0.1,0.1,0.02,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.005602704,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,2001-07-01T00:00:00Z,0.008333334,0.01,0.0043519414,0.2,0.29,0.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.009585986,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,2002-07-01T00:00:00Z,0.03,0.04,0.01,0.13,0.19,0.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.13,0.03,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,2003-07-01T00:00:00Z,0.0069444445,0.01,0.005602704,0.03,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.01,0.01,0.0053628185,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,2004-07-01T00:00:00Z,0.01,0.02,0.0061545745,0.02,0.01,0.0056183324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.007526142,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,2005-07-01T00:00:00Z,0.0069444445,0.01,0.005602704,0.01,0.02,0.006309342,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.004792993,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,2006-07-01T00:00:00Z,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.009503308,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.009503308,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.05,0.09,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.009250838,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,2005-07-01T00:00:00Z,0.04,0.04,0.01,0.06,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.04,0.01,0.01,0.01,0.004792993,0.17,0.13,0.03,0.07,0.03,0.009203324,0.0069444445,0.008582144,0.0024774517,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0053628185,0.0,0.0,0.0 +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,2006-07-01T00:00:00Z,0.07,0.07,0.02,0.04,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11,0.12,0.03,0.01,0.01,0.0057418267,0.32,0.27,0.07,0.14,0.04,0.01,0.0069444445,0.01,0.0043317466,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0050772647,0.0,0.0,0.0 +Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,2007-07-01T00:00:00Z,0.16,0.17,0.05,0.04,0.02,0.0078007416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14,0.1,0.03,0.01,0.02,0.008206099,0.76,0.55,0.16,0.19,0.09,0.02,0.01,0.01,0.0031337559,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.03,0.01,0.0,0.0,0.0 +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,2005-07-01T00:00:00Z,0.04,0.04,0.01,0.08,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0038151375,0.26,0.1,0.03,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.02,0.02,0.006197167,0.004166667,0.01,0.0029905858,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,2006-07-01T00:00:00Z,0.03,0.04,0.01,0.08,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.008703883,0.3,0.12,0.03,0.0027777778,0.006487491,0.0018727774,0.04,0.03,0.009288674,0.03,0.03,0.008703883,0.0069444445,0.01,0.0038151375,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,2007-07-01T00:00:00Z,0.03,0.01,0.0043317466,0.03,0.03,0.008734052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.31,0.1,0.03,0.01,0.01,0.0042705894,0.009722223,0.01,0.0038151375,0.04,0.04,0.01,0.008333334,0.01,0.0038380516,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1983-07-01T00:00:00Z,0.0,0.0,0.0,0.44,0.43,0.13,0.04,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.14,0.12,0.04,NaN,NaN,NaN,0.0,0.0,0.0,0.01,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1984-07-01T00:00:00Z,0.0025,0.007905694,0.0025,0.17,0.13,0.04,0.01,0.02,0.008539125,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.004082483,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.05,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.02,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1985-07-01T00:00:00Z,0.009722223,0.02,0.006634497,0.31,0.32,0.09,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0052135917,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.06,0.05,0.01,NaN,NaN,NaN,0.0013888889,0.0048112525,0.0013888889,0.0069444445,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0047377935,0.0,0.0,0.0 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1986-07-01T00:00:00Z,0.0,0.0,0.0,0.35,0.27,0.07,0.02,0.03,0.009203324,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.11,0.07,0.02,NaN,NaN,NaN,0.0,0.0,0.0,0.02,0.02,0.008489694,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1987-07-01T00:00:00Z,0.01,0.02,0.008291139,0.61,0.53,0.15,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0036266178,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.04,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.02,0.02,0.0077102953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1988-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.39,0.27,0.07,0.04,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0043317466,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.07,0.06,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.01,0.03,0.00927923,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0013888889,0.0048112525,0.0013888889 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1989-07-01T00:00:00Z,0.01,0.01,0.0055555557,0.55,0.43,0.12,0.04,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.05,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.02,0.05,0.01,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1990-07-01T00:00:00Z,0.004166667,0.01,0.0029905858,0.75,0.48,0.14,0.03,0.03,0.008703883,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.02,0.01,0.0047377935,NaN,NaN,NaN,0.0,0.0,0.0,0.01,0.01,0.0055555557,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1991-07-01T00:00:00Z,0.004166667,0.01,0.004166667,0.51,0.26,0.07,0.03,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.01,0.02,0.0058477456,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.009503308,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1992-07-01T00:00:00Z,0.008333334,0.02,0.0069570593,0.92,0.71,0.2,0.04,0.08,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0048112525,0.04,0.07,0.02,0.01,0.02,0.005922242,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1993-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.65,0.34,0.09,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.008333334,0.01,0.0056183324,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.01,0.01,0.0053628185,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1994-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.34,0.42,0.12,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0,0.004166667,0.01,0.004166667,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.01,0.01,0.0053628185,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1995-07-01T00:00:00Z,0.0069444445,0.01,0.0032166007,0.62,0.48,0.14,0.008333334,0.01,0.0048112525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.01,0.01,0.0036266178,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.02,0.0069444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1996-07-01T00:00:00Z,0.004166667,0.0075377836,0.0021759707,0.27,0.27,0.07,0.02,0.02,0.0078007416,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.01,0.01,0.0055555557,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1997-07-01T00:00:00Z,0.0069444445,0.01,0.0038151375,0.36,0.46,0.13,0.02,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.008582144,0.0024774517,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.01,0.01,0.0045102453,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1998-07-01T00:00:00Z,0.04,0.04,0.01,0.45,0.42,0.12,0.009722223,0.01,0.004792993,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.004166667,0.01,0.0029905858,0.0013888889,0.0048112525,0.0013888889,0.01,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1999-07-01T00:00:00Z,0.0,0.0,0.0,0.29,0.29,0.08,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.01,0.02,0.0058477456,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.02,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,2000-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.26,0.23,0.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0069444445,0.01,0.0043317466,0.0027777778,0.006487491,0.0018727774,0.01,0.01,0.0047377935,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.03,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,2001-07-01T00:00:00Z,0.004166667,0.0075377836,0.0021759707,0.5,0.5,0.14,0.004166667,0.01,0.004166667,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.009722223,0.01,0.0038151375,0.0013888889,0.0048112525,0.0013888889,0.01,0.02,0.008417088,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.02,0.03,0.009695129,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,2002-07-01T00:00:00Z,0.0069444445,0.01,0.0043317466,0.62,0.43,0.12,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0042705894,0.01,0.01,0.005162891,0.0,0.0,0.0,0.02,0.03,0.008734052,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.03,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,2003-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.3,0.31,0.09,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.004166667,0.01,0.02,0.007057166,0.0,0.0,0.0,0.01,0.02,0.006309342,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,2004-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.25,0.32,0.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0038151375,0.01,0.01,0.004792993,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.04,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.56,0.67,0.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0048112525,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.03,0.04,0.01,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.08,0.1,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,2006-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.37,0.36,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.004792993,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.02,0.03,0.009049605,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.0,0.0,0.0 +Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.18,0.09,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.007349309,0.009722223,0.02,0.0069444445,0.0,0.0,0.0,0.04,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006487491,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.004792993,0.0013888889,0.0048112525,0.0013888889 +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.05,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.04,0.01,0.14,0.05,0.01,0.0,0.0,0.0,0.09,0.04,0.01,0.31,0.1,0.03,0.03,0.02,0.0060973214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.04,0.01,0.0,0.0,0.0 +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,2006-07-01T00:00:00Z,0.01,0.02,0.007676103,0.01,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0038151375,0.11,0.07,0.02,0.0013888889,0.0048112525,0.0013888889,0.07,0.03,0.01,0.29,0.09,0.02,0.02,0.01,0.0043519414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.03,0.01,0.0,0.0,0.0 +Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,2007-07-01T00:00:00Z,0.008333334,0.01,0.0038380516,0.01,0.01,0.0047377935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.24,0.29,0.08,0.13,0.07,0.02,0.01,0.02,0.006634497,0.04,0.02,0.005922242,0.31,0.16,0.04,0.04,0.09,0.02,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.05,0.01,0.0,0.0,0.0 +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,2003-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.01,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.04,0.01,0.009722223,0.01,0.0032166007,0.02,0.02,0.008291139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,2004-07-01T00:00:00Z,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.01,0.01,0.0055555557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0071436088,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.05,0.03,0.01,0.008333334,0.01,0.0032437455,0.009722223,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,2005-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,2006-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,2007-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,2003-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0055555557,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.08,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,2004-07-01T00:00:00Z,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.004587349,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0037455547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,2005-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,2006-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,2007-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,2003-07-01T00:00:00Z,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0047377935,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0032166007,0.04,0.06,0.01,0.0027777778,0.006487491,0.0018727774,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,2004-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.009250838,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.02,0.02,0.008291139,0.06,0.08,0.02,0.0013888889,0.0048112525,0.0013888889,0.04,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0 +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,2005-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,2006-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,2007-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,2003-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0052135917,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,2004-07-01T00:00:00Z,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.008703883,0.0025125945,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,2005-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,2006-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,2007-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1983-07-01T00:00:00Z,0.02,0.04,0.01,0.06,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0075,0.01,0.005335937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.01,0.0,0.0,0.0,0.07,0.07,0.02,0.03,0.04,0.01 +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1984-07-01T00:00:00Z,0.04,0.02,0.0072648316,0.05,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.004166667,0.005,0.01,0.005,0.0,0.0,0.0,0.01,0.03,0.01,0.0075,0.01,0.005335937,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0075,0.01,0.003818813,0.0,0.0,0.0,0.05,0.03,0.01,0.05,0.04,0.01 +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1985-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.01,0.01,0.01,0.003453231,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.04,0.02,0.0080768615,0.02,0.03,0.009203324 +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1986-07-01T00:00:00Z,0.01,0.01,0.005602704,0.03,0.02,0.008541179,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.03,0.04,0.01,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.01,0.05,0.01,0.02,0.03,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0,0.06,0.05,0.01,0.03,0.03,0.01 +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1987-07-01T00:00:00Z,0.04,0.04,0.01,0.02,0.02,0.0058477456,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.03,0.02,0.007630275,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.01,0.0,0.0,0.0,0.04,0.03,0.01,0.03,0.03,0.01 +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1988-07-01T00:00:00Z,0.03,0.04,0.01,0.01,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0037455547,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0069444445,0.0,0.0,0.0,0.02,0.02,0.007526142,0.02,0.02,0.0059664934 +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1989-07-01T00:00:00Z,0.08,0.17,0.04,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.03,0.009865467,0.0,0.0,0.0,0.0069444445,0.01,0.0043317466,0.03,0.02,0.008458653 +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1990-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.0047377935,0.0,0.0,0.0,0.01,0.01,0.0049549034,0.01,0.01,0.0042705894 +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1991-07-01T00:00:00Z,0.008333334,0.01,0.0032437455,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.04,0.01,0.0,0.0,0.0,0.02,0.03,0.01,0.03,0.04,0.01 +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1992-07-01T00:00:00Z,0.06,0.05,0.01,0.01,0.03,0.009503308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.03,0.008784105,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.02,0.03,0.009429206 +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1993-07-01T00:00:00Z,0.01,0.01,0.0049549034,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0055555557,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0,0.03,0.04,0.01,0.01,0.01,0.0047377935 +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1994-07-01T00:00:00Z,0.02,0.01,0.0043317466,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.04,0.01,0.0,0.0,0.0,0.06,0.07,0.02,0.03,0.06,0.01 +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1995-07-01T00:00:00Z,0.02,0.01,0.0050772647,0.04,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.01,0.0,0.0,0.0,0.04,0.04,0.01,0.01,0.01,0.0049549034 +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1996-07-01T00:00:00Z,0.0055555557,0.01,0.0042705894,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.01,0.005476073,0.0,0.0,0.0,0.01,0.02,0.008163247,0.0013888889,0.0048112525,0.0013888889 +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1997-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.009401268,0.0,0.0,0.0,0.02,0.01,0.005162891,0.01,0.02,0.008417088 +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1998-07-01T00:00:00Z,0.12,0.1,0.03,0.01,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.0055555557,0.0,0.0,0.0,0.04,0.03,0.008823942,0.02,0.02,0.008065999 +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1999-07-01T00:00:00Z,0.008333334,0.01,0.0032437455,0.01,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0043519414,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.007057166,0.0,0.0,0.0,0.04,0.03,0.01,0.009722223,0.01,0.004792993 +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,2000-07-01T00:00:00Z,0.0055555557,0.01,0.0037455547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0077102953,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0071436088,0.0,0.0,0.0,0.0069444445,0.01,0.0043317466,0.01,0.02,0.007349309 +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,2001-07-01T00:00:00Z,0.0,0.0,0.0,0.0069444445,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.05,0.01,0.0,0.0,0.0,0.01,0.02,0.007057166,0.01,0.02,0.008417088 +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,2002-07-01T00:00:00Z,0.0055555557,0.01,0.0031337559,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.04,0.01,0.0,0.0,0.0,0.02,0.02,0.0068426887,0.008333334,0.01,0.0043519414 +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,2003-07-01T00:00:00Z,0.0055555557,0.01,0.0055555557,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.01,0.0,0.0,0.0,0.02,0.03,0.008814,0.0069444445,0.01,0.0032166007 +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,2004-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.04,0.01,0.0,0.0,0.0,0.02,0.03,0.01,0.01,0.02,0.006309342 +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.004166667,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18,0.08,0.02,0.0,0.0,0.0,0.02,0.02,0.00803332,0.01,0.02,0.007630275 +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,2006-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.11,0.03,0.0,0.0,0.0,0.03,0.02,0.008163247,0.02,0.02,0.006197167 +SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,2007-07-01T00:00:00Z,0.01,0.01,0.0042705894,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.01,0.02,0.007526142,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18,0.07,0.02,0.0,0.0,0.0,0.09,0.08,0.02,0.01,0.01,0.0057418267 +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,2001-07-01T00:00:00Z,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.0,0.0,0.0,0.99,0.46,0.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.01,0.0,0.0,0.0,0.12,0.04,0.01,0.17,0.11,0.03 +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,2002-07-01T00:00:00Z,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.8,0.52,0.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.004792993,0.0,0.0,0.0,0.13,0.06,0.01,0.15,0.07,0.02 +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,2003-07-01T00:00:00Z,0.0,0.0,0.0,0.0069444445,0.01,0.004792993,0.0,0.0,0.0,0.0,0.0,0.0,0.64,0.58,0.16,0.008333334,0.01,0.0048112525,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0059664934,0.0,0.0,0.0,0.11,0.05,0.01,0.16,0.09,0.02 +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,2004-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0037455547,0.0,0.0,0.0,0.0,0.0,0.0,0.55,0.6,0.17,0.01,0.03,0.009401268,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.02,0.008322805,0.0,0.0,0.0,0.23,0.12,0.03,0.21,0.12,0.03 +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.0055555557,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.5,0.52,0.15,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.006527912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.006309342,0.0,0.0,0.0,0.19,0.08,0.02,0.17,0.08,0.02 +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,2006-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.52,0.42,0.12,0.02,0.02,0.007432355,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.009649802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.0074911094,0.0,0.0,0.0,0.22,0.08,0.02,0.21,0.1,0.02 +SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.66,0.54,0.15,0.03,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.007432355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.00803332,0.0,0.0,0.0,0.19,0.08,0.02,0.2,0.12,0.03 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1983-07-01T00:00:00Z,0.005,0.01,0.0033333334,0.06,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0072648316,0.01,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.06,0.02,0.2,0.21,0.06 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1984-07-01T00:00:00Z,0.0,0.0,0.0,0.0075,0.01,0.003818813,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.01,0.005,0.06,0.1,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.07,0.02,0.16,0.12,0.03 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1985-07-01T00:00:00Z,0.01,0.04,0.01,0.01,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006634497,0.11,0.09,0.02,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.05,0.06,0.02,0.26,0.15,0.04 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1986-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.06,0.01,0.08,0.05,0.01,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.12,0.06,0.01,0.18,0.08,0.02 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1987-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.008333334,0.01,0.0043519414,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.2,0.17,0.05,0.004166667,0.01,0.004166667,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.008582144,0.0024774517,0.0,0.0,0.0,0.1,0.08,0.02,0.19,0.12,0.03 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1988-07-01T00:00:00Z,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.03,0.01,0.18,0.14,0.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0042705894,0.0,0.0,0.0,0.13,0.09,0.02,0.21,0.07,0.02 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1989-07-01T00:00:00Z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.008163247,0.11,0.1,0.02,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0059811715,0.0,0.0,0.0,0.06,0.05,0.01,0.25,0.19,0.05 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1990-07-01T00:00:00Z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.09,0.05,0.01,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.004644337,0.0,0.0,0.0,0.04,0.05,0.01,0.2,0.19,0.05 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1991-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.04,0.01,0.11,0.1,0.03,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.05,0.01,0.0,0.0,0.0,0.09,0.07,0.02,0.23,0.18,0.05 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1992-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.02,0.0058477456,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.04,0.01,0.24,0.21,0.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0,0.09,0.05,0.01,0.25,0.12,0.03 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1993-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.02,0.007349309,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.36,0.13,0.03,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0050772647,0.0,0.0,0.0,0.12,0.09,0.02,0.16,0.12,0.03 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1994-07-01T00:00:00Z,0.009722223,0.01,0.004792993,0.02,0.03,0.009909807,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.44,0.16,0.04,0.0,0.0,0.0,0.004166667,0.01,0.004166667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.1,0.07,0.02,0.26,0.24,0.07 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1995-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.02,0.01,0.005476073,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.23,0.07,0.02,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.07,0.04,0.01,0.17,0.15,0.04 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1996-07-01T00:00:00Z,0.01,0.02,0.008541179,0.03,0.03,0.009585986,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.05,0.01,0.2,0.13,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.08,0.02,0.34,0.17,0.05 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1997-07-01T00:00:00Z,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.008823942,0.15,0.08,0.02,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0048112525,0.0,0.0,0.0,0.11,0.06,0.01,0.16,0.18,0.05 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1998-07-01T00:00:00Z,0.0055555557,0.01,0.0031337559,0.01,0.02,0.0059664934,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0059664934,0.29,0.16,0.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0036266178,0.0,0.0,0.0,0.15,0.09,0.02,0.33,0.28,0.08 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1999-07-01T00:00:00Z,0.0,0.0,0.0,0.008333334,0.01,0.0043519414,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.46,0.21,0.06,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.12,0.07,0.02,0.25,0.18,0.05 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,2000-07-01T00:00:00Z,0.0055555557,0.01,0.0055555557,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.008065999,0.08,0.05,0.01,0.0,0.0,0.0,0.009722223,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.0043519414,0.0,0.0,0.0,0.09,0.06,0.01,0.25,0.24,0.07 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,2001-07-01T00:00:00Z,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.05,0.01,0.15,0.07,0.02,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0062675118,0.0,0.0,0.0,0.1,0.07,0.02,0.26,0.21,0.06 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,2002-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.05,0.01,0.11,0.16,0.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.07,0.04,0.01,0.24,0.2,0.05 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,2003-07-01T00:00:00Z,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.06,0.01,0.15,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.16,0.1,0.03,0.3,0.21,0.06 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,2004-07-01T00:00:00Z,0.0,0.0,0.0,0.009722223,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.05,0.01,0.17,0.12,0.03,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006752395,0.0,0.0,0.0,0.15,0.08,0.02,0.37,0.28,0.08 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.004644337,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.009363887,0.11,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.0069444445,0.0,0.0,0.0,0.12,0.09,0.02,0.24,0.1,0.03 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,2006-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0036266178,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.28,0.11,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0049549034,0.0,0.0,0.0,0.18,0.12,0.03,0.31,0.2,0.05 +SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0047377935,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.09,0.02,0.55,0.12,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.0042705894,0.0,0.0,0.0,0.21,0.17,0.05,0.39,0.23,0.06 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1983-07-01T00:00:00Z,0.005,0.01,0.005,0.0075,0.01,0.005335937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0069221864,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1984-07-01T00:00:00Z,0.0,0.0,0.0,0.04,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.01,0.005,0.0025,0.007905694,0.0025,0.0,0.0,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0075,0.01,0.005335937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1985-07-01T00:00:00Z,0.009722223,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1986-07-01T00:00:00Z,0.03,0.03,0.008663493,0.01,0.01,0.0038151375,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.05,0.05,0.01,0.0013888889,0.0048112525,0.0013888889,NaN,NaN,NaN,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1987-07-01T00:00:00Z,0.25,0.12,0.03,0.01,0.01,0.004587349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,3.32,3.2,0.92,0.0,0.0,0.0,NaN,NaN,NaN,0.0013888889,0.0048112525,0.0013888889,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1988-07-01T00:00:00Z,0.15,0.09,0.02,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.008333334,0.02,0.0059811715,0.79,1.04,0.3,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.009585986 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1989-07-01T00:00:00Z,0.01,0.02,0.006634497,0.01,0.01,0.004792993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.01,0.0029905858,0.42,0.55,0.15,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.009622505,0.0027777778,0.01,0.01,0.005162891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1990-07-01T00:00:00Z,0.12,0.07,0.02,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1991-07-01T00:00:00Z,0.07,0.04,0.01,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1992-07-01T00:00:00Z,0.08,0.07,0.02,0.01,0.02,0.008417088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1993-07-01T00:00:00Z,0.02,0.01,0.0050772647,0.0055555557,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1994-07-01T00:00:00Z,0.004166667,0.0075377836,0.0021759707,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0037455547,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1995-07-01T00:00:00Z,0.06,0.06,0.01,0.03,0.02,0.007432355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0042705894,0.01,0.01,0.0042705894,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1996-07-01T00:00:00Z,0.35,0.22,0.06,0.03,0.02,0.007945522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0043317466,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.009622505,0.0027777778,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1997-07-01T00:00:00Z,0.13,0.07,0.02,0.01,0.01,0.0037455547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.04,0.08,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1998-07-01T00:00:00Z,0.12,0.06,0.01,0.01,0.02,0.006634497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.008333334,0.02,0.008333334,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1999-07-01T00:00:00Z,0.06,0.04,0.01,0.01,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,1.56,0.91,0.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,2000-07-01T00:00:00Z,0.18,0.05,0.01,0.01,0.01,0.0050772647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.56,0.86,0.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,2001-07-01T00:00:00Z,0.06,0.07,0.02,0.01,0.01,0.0047377935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.009722223,0.01,0.0043317466,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,2002-07-01T00:00:00Z,0.12,0.02,0.008238092,0.01,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.0075377836,0.0021759707,0.09,0.1,0.03,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,2003-07-01T00:00:00Z,0.0069444445,0.01,0.0032166007,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.02,0.04,0.01,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.004166667,0.0075377836,0.0021759707,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,2004-07-01T00:00:00Z,0.06,0.04,0.01,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.02,0.02,0.0078007416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.008489694,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,2005-07-01T00:00:00Z,0.05,0.03,0.00927923,0.01,0.01,0.0045102453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,2006-07-01T00:00:00Z,0.09,0.05,0.01,0.02,0.02,0.008541179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.02,0.05,0.01,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.005162891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,2007-07-01T00:00:00Z,0.08,0.05,0.01,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.004166667,0.03,0.03,0.01,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1986-07-01T00:00:00Z,0.0055555557,0.01,0.0042705894,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.0075377836,0.0021759707,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.01,0.01,0.0037455547,NaN,NaN,NaN,0.0,0.0,0.0,0.0069444445,0.02,0.0069444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1987-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.0075377836,0.0021759707,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0047377935,NaN,NaN,NaN,0.0,0.0,0.0,0.008333334,0.01,0.0056183324,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0 +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1988-07-01T00:00:00Z,0.009722223,0.01,0.0032166007,0.0027777778,0.006487491,0.0018727774,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,NaN,NaN,NaN,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0013888889,0.0048112525,0.0013888889 +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1989-07-01T00:00:00Z,0.01,0.01,0.004644337,0.0027777778,0.006487491,0.0018727774,0.01,0.02,0.005922242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,NaN,NaN,NaN,0.0,0.0,0.0,0.01,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1990-07-01T00:00:00Z,0.06,0.05,0.01,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0055555557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1991-07-01T00:00:00Z,0.05,0.04,0.01,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.02,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1992-07-01T00:00:00Z,0.07,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.008322805,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1993-07-01T00:00:00Z,0.01,0.02,0.0058025885,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.02,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1994-07-01T00:00:00Z,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0069444445,0.008582144,0.0024774517,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.02,0.0069444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1995-07-01T00:00:00Z,0.01,0.02,0.008322805,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1996-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.0047377935,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1997-07-01T00:00:00Z,0.01,0.01,0.005602704,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.007349309,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0055555557,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1998-07-01T00:00:00Z,0.79,0.31,0.09,0.004166667,0.01,0.004166667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.005476073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1999-07-01T00:00:00Z,0.21,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.04,0.01,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,2000-07-01T00:00:00Z,0.05,0.03,0.009020491,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,2001-07-01T00:00:00Z,0.03,0.01,0.0052135917,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,2002-07-01T00:00:00Z,0.1,0.07,0.02,0.0069444445,0.01,0.0032166007,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,2003-07-01T00:00:00Z,0.004166667,0.0075377836,0.0021759707,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,2004-07-01T00:00:00Z,0.07,0.04,0.01,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,2005-07-01T00:00:00Z,0.01,0.01,0.0036266178,0.01,0.01,0.0045102453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,2006-07-01T00:00:00Z,0.04,0.03,0.01,0.009722223,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0038151375,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,2007-07-01T00:00:00Z,0.15,0.06,0.02,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.004166667,0.0075377836,0.0021759707,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,2005-07-01T00:00:00Z,0.05,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.06,0.01,0.02,0.04,0.01,0.01,0.01,0.0037455547,0.02,0.03,0.009936315,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.05,0.04,0.01,0.0,0.0,0.0 +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,2006-07-01T00:00:00Z,0.05,0.04,0.01,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.05,0.05,0.01,0.02,0.03,0.009250838,0.0069444445,0.01,0.0032166007,0.04,0.05,0.01,0.01,0.02,0.0077669476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.03,0.01,0.0,0.0,0.0 +SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,2007-07-01T00:00:00Z,0.15,0.12,0.03,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.05,0.05,0.01,0.42,0.52,0.15,0.01,0.01,0.0043317466,0.02,0.02,0.0059811715,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.06,0.01,0.0,0.0,0.0 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1983-07-01T00:00:00Z,0.01,0.02,0.007637626,0.0075,0.01,0.005335937,0.0075,0.01,0.005335937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.05,0.01,0.08,0.12,0.03,0.04,0.03,0.009895285,NaN,NaN,NaN,0.0025,0.007905694,0.0025,0.0,0.0,0.0,0.0,0.0,0.0,0.0025,0.007905694,0.0025,0.06,0.03,0.009895285,0.0,0.0,0.0 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1984-07-01T00:00:00Z,0.0075,0.01,0.005335937,0.005,0.01,0.005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.12,0.09,0.03,0.02,0.01,0.0062360954,0.0075,0.02,0.0075,0.0025,0.007905694,0.0025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.04,0.01,0.0,0.0,0.0 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1985-07-01T00:00:00Z,0.04,0.07,0.02,0.008333334,0.01,0.0038380516,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0048112525,0.02,0.03,0.01,2.53,1.94,0.56,0.004166667,0.0075377836,0.0021759707,NaN,NaN,NaN,0.01,0.02,0.0069444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.06,0.01,0.0,0.0,0.0 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1986-07-01T00:00:00Z,0.04,0.04,0.01,0.008333334,0.01,0.0032437455,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.04,0.02,0.007241137,NaN,NaN,NaN,0.0,0.0,0.0,NaN,NaN,NaN,0.01,0.02,0.007057166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.06,0.01,0.0,0.0,0.0 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1987-07-01T00:00:00Z,0.04,0.02,0.00803332,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.08,0.06,0.01,7.44,3.62,1.04,0.0,0.0,0.0,0.02,0.02,0.0077102953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.01,0.004166667,0.01,0.0029905858 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1988-07-01T00:00:00Z,0.07,0.05,0.01,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.13,0.05,0.01,11.5,2.5,0.72,0.0,0.0,0.0,NaN,NaN,NaN,0.01,0.01,0.0037455547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.06,0.01,0.0,0.0,0.0 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1989-07-01T00:00:00Z,0.05,0.04,0.01,0.004166667,0.0075377836,0.0021759707,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.06,0.02,5.96,2.74,0.79,0.0,0.0,0.0,NaN,NaN,NaN,0.02,0.02,0.007811974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.04,0.01,0.0,0.0,0.0 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1990-07-01T00:00:00Z,0.06,0.03,0.01,0.004166667,0.01,0.0029905858,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.06,0.01,12.31,6.98,2.01,0.0,0.0,0.0,0.02,0.02,0.005922242,0.01,0.01,0.0050772647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.05,0.01,0.0,0.0,0.0 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1991-07-01T00:00:00Z,0.1,0.06,0.01,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.27,0.09,0.02,16.26,5.94,1.71,0.0013888889,0.0048112525,0.0013888889,0.04,0.03,0.008971757,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.07,0.02,0.0,0.0,0.0 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1992-07-01T00:00:00Z,0.03,0.01,0.0053628185,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22,0.07,0.02,5.53,2.65,0.76,0.0,0.0,0.0,0.02,0.03,0.01,0.01,0.01,0.0029905858,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.04,0.01,0.0027777778,0.006487491,0.0018727774 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1993-07-01T00:00:00Z,0.61,0.31,0.09,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17,0.06,0.01,3.94,1.52,0.44,0.0027777778,0.009622505,0.0027777778,0.02,0.02,0.0077102953,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.11,0.03,0.0,0.0,0.0 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1994-07-01T00:00:00Z,0.0055555557,0.01,0.0031337559,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.13,0.09,0.02,2.35,1.56,0.45,0.0013888889,0.0048112525,0.0013888889,0.02,0.01,0.005162891,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.08,0.02,0.0,0.0,0.0 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1995-07-01T00:00:00Z,0.03,0.03,0.008814,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.1,0.05,0.01,0.61,0.45,0.13,0.01,0.01,0.005602704,0.02,0.02,0.0059664934,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.06,0.01,0.0027777778,0.009622505,0.0027777778 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1996-07-01T00:00:00Z,0.15,0.05,0.01,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.1,0.03,1.21,0.72,0.2,0.01,0.02,0.0058025885,0.02,0.03,0.00927923,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.07,0.02,0.0,0.0,0.0 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1997-07-01T00:00:00Z,0.06,0.06,0.01,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.06,0.01,2.45,1.49,0.43,0.0027777778,0.006487491,0.0018727774,0.02,0.02,0.0065947296,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.07,0.02,0.0,0.0,0.0 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1998-07-01T00:00:00Z,0.24,0.13,0.03,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.29,0.12,0.03,1.84,1.12,0.32,0.0013888889,0.0048112525,0.0013888889,0.02,0.02,0.00803332,0.0055555557,0.01,0.0037455547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.09,0.02,0.0,0.0,0.0 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1999-07-01T00:00:00Z,0.1,0.05,0.01,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.11,0.03,2.98,1.22,0.35,0.0055555557,0.008206099,0.0023688967,0.02,0.02,0.006309342,0.01,0.01,0.005162891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.11,0.03,0.0,0.0,0.0 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,2000-07-01T00:00:00Z,0.12,0.05,0.01,0.02,0.03,0.008784105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22,0.09,0.02,2.44,1.93,0.55,0.01,0.01,0.0050772647,0.02,0.02,0.0059664934,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.15,0.09,0.02,0.0,0.0,0.0 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,2001-07-01T00:00:00Z,0.07,0.04,0.01,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0037455547,0.2,0.06,0.01,0.23,0.2,0.05,0.0069444445,0.01,0.0032166007,0.02,0.01,0.005476073,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0069444445,0.008582144,0.0024774517,0.0,0.0,0.0,0.09,0.06,0.01,0.0,0.0,0.0 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,2002-07-01T00:00:00Z,0.08,0.04,0.01,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18,0.1,0.03,0.17,0.27,0.07,0.0027777778,0.006487491,0.0018727774,0.02,0.01,0.005476073,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.1,0.06,0.01,0.0,0.0,0.0 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,2003-07-01T00:00:00Z,0.0069444445,0.01,0.004792993,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.12,0.07,0.02,0.0055555557,0.01,0.0031337559,0.008333334,0.01,0.0043519414,0.01,0.01,0.0041030496,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.1,0.06,0.01,0.0,0.0,0.0 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,2004-07-01T00:00:00Z,0.01,0.02,0.007241137,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.16,0.09,0.02,0.0069444445,0.01,0.005602704,0.01,0.008206099,0.0023688967,0.02,0.02,0.006906462,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11,0.06,0.02,0.0,0.0,0.0 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,2005-07-01T00:00:00Z,0.01,0.01,0.0036266178,0.0055555557,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.07,0.02,0.0013888889,0.0048112525,0.0013888889,0.01,0.02,0.0068426887,0.03,0.02,0.007057166,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.09,0.06,0.01,0.0,0.0,0.0 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,2006-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.01,0.01,0.004587349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18,0.09,0.02,0.0,0.0,0.0,0.03,0.03,0.009722223,0.03,0.01,0.0054278243,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.14,0.09,0.02,0.0,0.0,0.0 +SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,2007-07-01T00:00:00Z,0.04,0.04,0.01,0.009722223,0.008582144,0.0024774517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.04,0.01,0.01,0.02,0.008322805,0.01,0.02,0.007241137,0.05,0.03,0.01,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11,0.06,0.01,0.0,0.0,0.0 +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,2005-07-01T00:00:00Z,0.004166667,0.0075377836,0.0021759707,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0031337559,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.008333334,0.01,0.0038380516,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0 +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,2006-07-01T00:00:00Z,0.01,0.03,0.008814,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0055555557,0.008206099,0.0023688967,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,2007-07-01T00:00:00Z,0.12,0.16,0.04,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0058025885,0.0,0.0,0.0,0.0069444445,0.008582144,0.0024774517,0.009722223,0.01,0.0038151375,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889 +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,2005-07-01T00:00:00Z,0.07,0.03,0.009936315,0.009722223,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0055555557,0.01,0.0031337559,0.0055555557,0.01,0.0031337559,0.04,0.05,0.01,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,2006-07-01T00:00:00Z,0.1,0.06,0.02,0.01,0.01,0.005025189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0042705894,0.009722223,0.01,0.0043317466,0.0013888889,0.0048112525,0.0013888889,0.07,0.07,0.02,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.0075377836,0.0021759707,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,2007-07-01T00:00:00Z,0.26,0.13,0.03,0.02,0.02,0.0065947296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0069444445,0.01,0.0032166007,0.0055555557,0.008206099,0.0023688967,0.15,0.1,0.02,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0069444445,0.01,0.0032166007,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,2005-07-01T00:00:00Z,0.02,0.03,0.009909807,0.34,0.21,0.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.27,0.25,0.07,0.01,0.02,0.0078007416,0.08,0.07,0.02,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.04,0.01,0.0,0.0,0.0 +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,2006-07-01T00:00:00Z,0.0055555557,0.01,0.0031337559,0.22,0.15,0.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22,0.17,0.04,0.0,0.0,0.0,0.11,0.09,0.02,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.0075377836,0.0021759707,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.03,0.04,0.01,0.0,0.0,0.0 +SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,2007-07-01T00:00:00Z,0.08,0.03,0.009174698,0.25,0.13,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.22,0.13,0.04,0.04,0.04,0.01,0.18,0.08,0.02,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.07,0.02,0.0,0.0,0.0 +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,2005-07-01T00:00:00Z,0.02,0.02,0.0077102953,0.1,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.31,0.08,0.05,0.06,0.01,0.17,0.07,0.02,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.01,0.01,0.0043317466,0.0,0.0,0.0 +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,2006-07-01T00:00:00Z,0.02,0.03,0.01,0.03,0.02,0.008571921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.1,0.17,0.05,0.009722223,0.01,0.0038151375,0.18,0.07,0.02,0.004166667,0.0075377836,0.0021759707,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0069444445,0.008582144,0.0024774517,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0 +SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,2007-07-01T00:00:00Z,0.02,0.02,0.0063232244,0.1,0.1,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.23,0.44,0.12,0.03,0.06,0.01,0.35,0.11,0.03,0.0055555557,0.008206099,0.0023688967,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.02,0.02,0.0058477456,0.0,0.0,0.0 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1983-07-01T00:00:00Z,0.005,0.01,0.0033333334,0.23,0.24,0.07,0.01,0.02,0.006666667,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.009895285,0.04,0.04,0.01,0.0,0.0,0.0,0.15,0.06,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.1,0.03,0.09,0.1,0.03 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1984-07-01T00:00:00Z,0.0,0.0,0.0,0.1,0.08,0.02,0.0025,0.007905694,0.0025,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.005527708,0.1,0.15,0.04,0.0,0.0,0.0,0.18,0.11,0.03,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23,0.13,0.04,0.08,0.07,0.02 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1985-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.05,0.04,0.01,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.04,0.04,0.01,0.2,0.45,0.13,0.16,0.1,0.02,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.05,0.01,0.04,0.02,0.0075377836 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1986-07-01T00:00:00Z,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0069444445,0.01,0.0032166007,0.14,0.17,0.05,0.47,0.44,0.12,0.1,0.07,0.02,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.005162891,0.01,0.01,0.0037455547 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1987-07-01T00:00:00Z,0.0,0.0,0.0,0.05,0.05,0.01,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.006527912,0.15,0.18,0.05,0.0027777778,0.009622505,0.0027777778,0.17,0.11,0.03,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0068426887,0.0,0.0,0.0 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1988-07-01T00:00:00Z,0.0,0.0,0.0,0.05,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.17,0.17,0.05,1.08,1.75,0.5,0.12,0.09,0.02,NaN,NaN,NaN,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.007349309,0.0013888889,0.0048112525,0.0013888889 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1989-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.02,0.0058025885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.006309342,0.15,0.14,0.04,2.04,2.27,0.65,0.21,0.12,0.03,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.008489694,0.0027777778,0.006487491,0.0018727774 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1990-07-01T00:00:00Z,0.0,0.0,0.0,0.02,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.004792993,0.06,0.05,0.01,2.21,2.67,0.77,0.13,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.005602704,0.0027777778,0.006487491,0.0018727774 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1991-07-01T00:00:00Z,0.004166667,0.0075377836,0.0021759707,0.004166667,0.01,0.0029905858,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.009803055,0.11,0.13,0.03,2.2,2.63,0.75,0.19,0.12,0.03,0.0,0.0,0.0,0.004166667,0.01,0.004166667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0045102453,0.0,0.0,0.0 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1992-07-01T00:00:00Z,0.01,0.01,0.004644337,0.01,0.02,0.006197167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.006527912,0.08,0.07,0.02,5.01,4.27,1.23,0.13,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.009722223,0.02,0.0069444445 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1993-07-01T00:00:00Z,0.01,0.02,0.007526142,0.08,0.08,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14,0.1,0.03,3.17,3.0,0.86,0.18,0.13,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0038151375,0.0,0.0,0.0 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1994-07-01T00:00:00Z,0.01,0.02,0.008322805,0.02,0.02,0.006634497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.009363887,0.19,0.25,0.07,2.17,2.63,0.76,0.18,0.1,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.004166667,0.0075377836,0.0021759707 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1995-07-01T00:00:00Z,0.0,0.0,0.0,0.02,0.02,0.007526142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0071066907,0.11,0.09,0.02,1.66,2.81,0.81,0.14,0.08,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.02,0.02,0.0078007416,0.0,0.0,0.0 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1996-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.004644337,0.14,0.06,0.02,0.77,0.95,0.27,0.04,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0069444445,0.01,0.005602704,0.0,0.0,0.0 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1997-07-01T00:00:00Z,0.0,0.0,0.0,0.08,0.08,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.008814,0.14,0.13,0.03,0.75,1.53,0.44,0.05,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006752395,0.0,0.0,0.0 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1998-07-01T00:00:00Z,0.02,0.02,0.0079785595,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.19,0.24,0.06,0.14,0.31,0.09,0.04,0.02,0.0078007416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.04,0.01,0.0,0.0,0.0 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1999-07-01T00:00:00Z,0.0055555557,0.01,0.0031337559,0.02,0.02,0.007241137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.008489694,0.3,0.25,0.07,2.02,1.53,0.44,0.06,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.0,0.0,0.0 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,2000-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.34,0.32,0.09,3.14,2.08,0.6,0.05,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0043317466,0.0,0.0,0.0 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,2001-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0037455547,0.27,0.17,0.04,1.23,1.18,0.34,0.07,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,2002-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0055555557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0055555557,0.24,0.19,0.05,0.55,0.71,0.2,0.04,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,2003-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.22,0.21,0.06,0.01,0.05,0.01,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0071436088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,2004-07-01T00:00:00Z,0.01,0.01,0.0037455547,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006487491,0.23,0.26,0.07,0.0,0.0,0.0,0.01,0.01,0.0035533453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.05,0.01,0.0,0.0,0.0,0.01,0.01,0.0042705894,0.0,0.0,0.0 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,2005-07-01T00:00:00Z,0.01,0.02,0.0068426887,0.02,0.02,0.0075377836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.0050772647,0.23,0.19,0.05,0.0,0.0,0.0,0.01,0.02,0.0058025885,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.02,0.02,0.006906462,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0013888889,0.0048112525,0.0013888889 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,2006-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.24,0.2,0.06,0.0,0.0,0.0,0.009722223,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.04,0.04,0.01,0.0,0.0,0.0,0.008333334,0.01,0.0048112525,0.0,0.0,0.0 +SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.03,0.02,0.006309342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.24,0.26,0.07,0.0013888889,0.0048112525,0.0013888889,0.07,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0,0.05,0.03,0.01,0.0,0.0,0.0 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1983-07-01T00:00:00Z,0.0025,0.007905694,0.0025,0.09,0.08,0.02,0.01,0.03,0.01,0.0,0.0,0.0,0.06,0.08,0.02,0.04,0.05,0.01,0.04,0.02,0.0072648316,0.0,0.0,0.0,0.22,0.11,0.03,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0025,0.007905694,0.0025,0.05,0.05,0.01,0.24,0.18,0.05,0.0,0.0,0.0 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1984-07-01T00:00:00Z,0.02,0.02,0.009128709,0.03,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0075,0.01,0.01,0.004082483,0.08,0.04,0.01,0.0,0.0,0.0,0.25,0.11,0.03,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.04,0.01,0.17,0.09,0.02,0.0,0.0,0.0 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1985-07-01T00:00:00Z,0.008333334,0.01,0.0032437455,0.02,0.02,0.006634497,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.01,0.02,0.006804138,0.02,0.02,0.0079785595,0.21,0.17,0.05,2.51,2.67,0.77,0.26,0.09,0.02,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.08,0.02,0.07,0.04,0.01,0.0,0.0,0.0 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1986-07-01T00:00:00Z,0.0069444445,0.02,0.0069444445,0.02,0.03,0.009020491,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.01,0.02,0.007526142,0.01,0.01,0.005602704,0.23,0.18,0.05,4.08,1.62,0.47,0.25,0.12,0.03,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.009475587,0.03,0.03,0.008663493,0.004166667,0.01,0.0029905858 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1987-07-01T00:00:00Z,0.02,0.03,0.00927923,0.06,0.04,0.01,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.03,0.01,0.15,0.08,0.02,3.31,1.53,0.44,0.24,0.12,0.03,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.1,0.02,0.02,0.01,0.0047377935,0.0055555557,0.01,0.0037455547 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1988-07-01T00:00:00Z,0.05,0.06,0.01,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.07,0.02,0.21,0.13,0.03,4.75,2.33,0.67,0.17,0.1,0.03,NaN,NaN,NaN,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006752395,0.01,0.01,0.0052135917,0.0013888889,0.0048112525,0.0013888889 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1989-07-01T00:00:00Z,0.004166667,0.0075377836,0.0021759707,0.04,0.02,0.0071436088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.07,0.02,0.17,0.07,0.02,2.6,1.65,0.47,0.26,0.14,0.04,NaN,NaN,NaN,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.01,0.02,0.007349309,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1990-07-01T00:00:00Z,0.01,0.02,0.0071436088,0.01,0.01,0.004792993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.009363887,0.06,0.04,0.01,0.64,1.19,0.34,0.13,0.06,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0038151375,0.01,0.01,0.0057418267,0.009722223,0.01,0.0032166007,0.0013888889,0.0048112525,0.0013888889 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1991-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.01,0.01,0.004644337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0063232244,0.16,0.08,0.02,0.55,0.62,0.18,0.04,0.02,0.008489694,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.01,0.01,0.004792993,0.01,0.01,0.00401666,0.0013888889,0.0048112525,0.0013888889 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1992-07-01T00:00:00Z,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.008814,0.08,0.07,0.02,0.07,0.11,0.03,0.05,0.03,0.01,0.0,0.0,0.0,0.01,0.03,0.008903082,0.0,0.0,0.0,0.01,0.01,0.0057418267,0.06,0.06,0.01,0.01,0.02,0.0058025885,0.0,0.0,0.0 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1993-07-01T00:00:00Z,0.0,0.0,0.0,0.04,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0068426887,0.13,0.06,0.01,0.38,0.99,0.28,0.03,0.03,0.009722223,0.0,0.0,0.0,0.01,0.01,0.005162891,0.0,0.0,0.0,0.01,0.02,0.006309342,0.06,0.09,0.02,0.02,0.02,0.0062675118,0.0,0.0,0.0 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1994-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.08,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.0058477456,0.15,0.05,0.01,0.01,0.02,0.007526142,0.02,0.03,0.009020491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0069444445,0.03,0.04,0.01,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1995-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.03,0.02,0.0078007416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.04,0.01,0.19,0.08,0.02,0.17,0.22,0.06,0.03,0.02,0.007349309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0050772647,0.04,0.04,0.01,0.02,0.03,0.01,0.0069444445,0.01,0.0032166007 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1996-07-01T00:00:00Z,0.02,0.04,0.01,0.02,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.04,0.01,0.18,0.11,0.03,0.0,0.0,0.0,0.07,0.05,0.01,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.01,0.01,0.004644337,0.05,0.07,0.02,0.03,0.04,0.01,0.0,0.0,0.0 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1997-07-01T00:00:00Z,0.02,0.03,0.00927923,0.008333334,0.01,0.0043519414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.008582144,0.0024774517,0.15,0.06,0.01,1.9,1.84,0.53,0.06,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.05,0.09,0.02,0.02,0.04,0.01,0.0,0.0,0.0 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1998-07-01T00:00:00Z,0.95,0.35,0.1,0.02,0.02,0.0080768615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.03,0.01,0.17,0.06,0.01,0.35,0.34,0.09,0.1,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.06,0.01,0.01,0.01,0.0038151375,0.01,0.02,0.0062675118 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1999-07-01T00:00:00Z,0.03,0.04,0.01,0.02,0.01,0.0052135917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.007241137,0.15,0.05,0.01,3.82,2.2,0.63,0.2,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.12,0.03,0.03,0.03,0.009803055,0.0,0.0,0.0 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,2000-07-01T00:00:00Z,0.03,0.03,0.01,0.02,0.02,0.0075377836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.004792993,0.1,0.05,0.01,2.58,1.9,0.54,0.1,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.16,0.04,0.02,0.01,0.004166667,0.0013888889,0.0048112525,0.0013888889 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,2001-07-01T00:00:00Z,0.009722223,0.01,0.004792993,0.01,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.07,0.05,0.01,1.15,1.81,0.52,0.07,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.007676103,0.07,0.09,0.02,0.01,0.01,0.004792993,0.0,0.0,0.0 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,2002-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.005602704,0.09,0.14,0.04,0.0,0.0,0.0,0.01,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.03,0.01,0.06,0.09,0.02,0.01,0.01,0.0057418267,0.0,0.0,0.0 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,2003-07-01T00:00:00Z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0037455547,0.01,0.01,0.00401666,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.008971757,0.07,0.1,0.03,0.009722223,0.01,0.0038151375,0.0013888889,0.0048112525,0.0013888889 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,2004-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.004644337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.009503308,0.03,0.02,0.008238092,0.0055555557,0.01,0.0042705894,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.01,0.0057418267,0.07,0.15,0.04,0.06,0.05,0.01,0.0013888889,0.0048112525,0.0013888889 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0032166007,0.02,0.02,0.008065999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0077102953,0.04,0.05,0.01,0.18,0.09,0.02,0.0013888889,0.0048112525,0.0013888889 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,2006-07-01T00:00:00Z,0.01,0.03,0.009695129,0.01,0.01,0.00401666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.0055555557,0.03,0.02,0.0060973214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0069444445,0.04,0.08,0.02,0.16,0.1,0.03,0.0,0.0,0.0 +SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0042705894,0.02,0.01,0.004792993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0041030496,0.13,0.18,0.05,0.19,0.08,0.02,0.0,0.0,0.0 +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,2005-07-01T00:00:00Z,0.02,0.04,0.01,0.23,0.12,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.05,0.01,0.11,0.13,0.03,0.0,0.0,0.0,0.21,0.16,0.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.0,0.0,0.0 +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,2006-07-01T00:00:00Z,0.0,0.0,0.0,0.09,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.06,0.01,0.13,0.12,0.03,0.23,0.4,0.11,0.22,0.13,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.01,0.01,0.004166667,0.0,0.0,0.0 +SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,2007-07-01T00:00:00Z,0.02,0.03,0.01,0.05,0.03,0.009945136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.009049605,0.13,0.15,0.04,0.05,0.05,0.01,0.48,0.21,0.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0058025885,0.0,0.0,0.0 +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,2005-07-01T00:00:00Z,0.03,0.04,0.01,0.08,0.13,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.11,0.03,0.38,0.22,0.06,0.1,0.11,0.03,0.02,0.03,0.009049605,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.06,0.01,0.0,0.0,0.0 +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,2006-07-01T00:00:00Z,0.04,0.06,0.01,0.06,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.04,0.01,0.29,0.15,0.04,0.23,0.18,0.05,0.03,0.03,0.008703883,0.004166667,0.01,0.004166667,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.07,0.02,0.0,0.0,0.0 +SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,2007-07-01T00:00:00Z,0.02,0.03,0.008814,0.04,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.27,0.16,0.04,0.85,0.79,0.22,0.06,0.04,0.01,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.06,0.01,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1983-07-01T00:00:00Z,0.0,0.0,0.0,0.22,0.12,0.03,0.04,0.04,0.01,0.0,0.0,0.0,0.0025,0.007905694,0.0025,0.0075,0.01,0.003818813,0.05,0.06,0.01,0.0,0.0,0.0,0.04,0.02,0.007637626,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.06,0.02,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1984-07-01T00:00:00Z,0.0025,0.007905694,0.0025,0.25,0.17,0.05,0.02,0.02,0.009464847,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.00745356,0.03,0.05,0.01,0.0,0.0,0.0,0.01,0.03,0.009895285,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.01,0.005,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1985-07-01T00:00:00Z,0.0,0.0,0.0,0.36,0.26,0.07,0.02,0.03,0.009909807,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0049549034,0.07,0.09,0.02,0.39,0.23,0.06,0.01,0.03,0.008663493,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1986-07-01T00:00:00Z,0.0,0.0,0.0,0.22,0.13,0.03,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.02,0.0059664934,0.08,0.09,0.02,4.14,1.11,0.32,0.01,0.01,0.0036266178,NaN,NaN,NaN,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1987-07-01T00:00:00Z,0.0027777778,0.009622505,0.0027777778,0.19,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.05,0.01,0.06,0.07,0.02,NaN,NaN,NaN,0.01,0.01,0.00401666,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1988-07-01T00:00:00Z,0.0055555557,0.008206099,0.0023688967,0.08,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.007396878,0.09,0.09,0.02,0.48,0.77,0.22,0.008333334,0.01,0.0032437455,NaN,NaN,NaN,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1989-07-01T00:00:00Z,0.01,0.01,0.0032166007,0.1,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.005602704,0.07,0.08,0.02,0.1,0.19,0.05,0.01,0.01,0.0053628185,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1990-07-01T00:00:00Z,0.004166667,0.0075377836,0.0021759707,0.1,0.09,0.02,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.006197167,0.07,0.07,0.02,0.0069444445,0.01,0.0043317466,0.01,0.01,0.0055555557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1991-07-01T00:00:00Z,0.03,0.02,0.008417088,0.02,0.02,0.006906462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.005025189,0.04,0.04,0.01,0.0,0.0,0.0,0.01,0.01,0.005476073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1992-07-01T00:00:00Z,0.09,0.05,0.01,0.06,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0047377935,0.06,0.07,0.02,0.2,0.38,0.11,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1993-07-01T00:00:00Z,0.05,0.05,0.01,0.05,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0031337559,0.04,0.04,0.01,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0038151375,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1994-07-01T00:00:00Z,0.0069444445,0.01,0.005602704,0.05,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0047377935,0.06,0.06,0.02,0.0027777778,0.009622505,0.0027777778,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1995-07-01T00:00:00Z,0.008333334,0.008703883,0.0025125945,0.03,0.02,0.0071436088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.07,0.02,0.08,0.05,0.01,0.33,0.39,0.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0042705894,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1996-07-01T00:00:00Z,0.0,0.0,0.0,0.09,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.08,0.06,0.01,0.27,0.42,0.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1997-07-01T00:00:00Z,0.01,0.04,0.01,0.09,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.005162891,0.07,0.04,0.01,0.32,0.21,0.06,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1998-07-01T00:00:00Z,0.0027777778,0.009622505,0.0027777778,0.08,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.006527912,0.08,0.09,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1999-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.04,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.008734052,0.1,0.06,0.01,8.72,5.48,1.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,2000-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.05,0.03,0.009722223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0048112525,0.17,0.14,0.04,4.02,2.58,0.74,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,2001-07-01T00:00:00Z,0.0055555557,0.01,0.0031337559,0.08,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0043317466,0.18,0.17,0.05,2.52,0.89,0.25,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,2002-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.04,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.13,0.14,0.04,2.09,1.04,0.3,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,2003-07-01T00:00:00Z,0.004166667,0.0075377836,0.0021759707,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.15,0.13,0.03,1.14,0.57,0.16,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0058477456,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,2004-07-01T00:00:00Z,0.01,0.02,0.007349309,0.01,0.01,0.0052135917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.02,0.0069444445,0.18,0.14,0.04,3.18,1.01,0.29,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,2005-07-01T00:00:00Z,0.02,0.02,0.0065947296,0.03,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0038151375,0.12,0.1,0.02,1.75,0.75,0.21,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,2006-07-01T00:00:00Z,0.01,0.01,0.0057418267,0.04,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0042705894,0.16,0.15,0.04,2.74,1.06,0.3,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.01,0.01,0.004792993,0.0,0.0,0.0 +SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,2007-07-01T00:00:00Z,0.01,0.02,0.0060973214,0.06,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.14,0.11,0.03,1.26,0.51,0.14,0.004166667,0.0075377836,0.0021759707,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0069444445,0.0,0.0,0.0 +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,2005-07-01T00:00:00Z,0.02,0.03,0.01,0.25,0.29,0.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.17,0.1,0.02,0.56,0.97,0.28,0.03,0.03,0.00927923,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.008663493,0.0,0.0,0.0 +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,2006-07-01T00:00:00Z,0.01,0.01,0.0037455547,0.11,0.1,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.05,0.01,0.16,0.14,0.04,0.48,0.86,0.25,0.05,0.04,0.01,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.008541179,0.0,0.0,0.0 +SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,2007-07-01T00:00:00Z,0.01,0.01,0.004166667,0.15,0.2,0.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.16,0.14,0.04,0.7,1.43,0.41,0.1,0.11,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.06,0.05,0.01,0.0,0.0,0.0 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1983-07-01T00:00:00Z,0.005,0.01,0.005,0.04,0.04,0.01,0.08,0.06,0.01,0.0,0.0,0.0,0.005,0.01,0.0033333334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.04,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1984-07-01T00:00:00Z,0.0,0.0,0.0,0.02,0.02,0.008333334,0.04,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025,0.007905694,0.0025,0.12,0.05,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.005,0.01,0.005,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.008498366,0.0,0.0,0.0 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1985-07-01T00:00:00Z,0.15,0.11,0.03,0.02,0.02,0.0059811715,0.05,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.13,0.05,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0047377935,0.004166667,0.0075377836,0.0021759707 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1986-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.06,0.05,0.01,0.06,0.08,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.09,0.02,0.19,0.06,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006906462,0.0,0.0,0.0 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1987-07-01T00:00:00Z,0.009722223,0.008582144,0.0024774517,0.07,0.05,0.01,0.009722223,0.02,0.0059664934,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.01,0.04,0.01,0.18,0.05,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0038151375,0.0,0.0,0.0 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1988-07-01T00:00:00Z,0.0069444445,0.008582144,0.0024774517,0.02,0.02,0.006634497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0038151375,0.12,0.04,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0055555557,0.01,0.0037455547,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.007241137,0.0013888889,0.0048112525,0.0013888889 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1989-07-01T00:00:00Z,0.004166667,0.0075377836,0.0021759707,0.02,0.02,0.0072047184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.04,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1990-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.08,0.02,0.06,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1991-07-01T00:00:00Z,0.009722223,0.01,0.0038151375,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.19,0.05,0.05,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1992-07-01T00:00:00Z,0.01,0.01,0.0032166007,0.01,0.02,0.0064332015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.09,0.02,0.09,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0057418267,0.004166667,0.0075377836,0.0021759707 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1993-07-01T00:00:00Z,0.05,0.05,0.01,0.02,0.01,0.0056183324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.13,0.03,0.12,0.08,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1994-07-01T00:00:00Z,0.06,0.04,0.01,0.07,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.09,0.02,0.1,0.08,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0048112525,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.00803332,0.0,0.0,0.0 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1995-07-01T00:00:00Z,0.06,0.03,0.01,0.04,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.07,0.15,0.04,0.09,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0077669476,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.006527912,0.0,0.0,0.0 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1996-07-01T00:00:00Z,0.0055555557,0.008206099,0.0023688967,0.02,0.02,0.006634497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.03,0.07,0.02,0.05,0.03,0.009429206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0057418267,0.0,0.0,0.0 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1997-07-01T00:00:00Z,0.01,0.01,0.0038151375,0.06,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.07,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.00894239,0.0013888889,0.0048112525,0.0013888889 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1998-07-01T00:00:00Z,0.04,0.03,0.01,0.07,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.005162891,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0060973214,0.004166667,0.0075377836,0.0021759707 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1999-07-01T00:00:00Z,0.02,0.03,0.01,0.06,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.06,0.08,0.02,0.03,0.01,0.0053628185,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.005602704,0.0,0.0,0.0 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,2000-07-01T00:00:00Z,0.02,0.03,0.009731237,0.09,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.04,0.08,0.02,0.02,0.02,0.0080768615,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.04,0.01,0.0,0.0,0.0 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,2001-07-01T00:00:00Z,0.03,0.03,0.008903082,0.11,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0055555557,0.01,0.0037455547,0.01,0.02,0.008065999,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0052135917,0.0027777778,0.006487491,0.0018727774 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,2002-07-01T00:00:00Z,0.06,0.06,0.01,0.02,0.03,0.008734052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.01,0.01,0.0053628185,0.04,0.02,0.008322805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,2003-07-01T00:00:00Z,0.07,0.11,0.03,0.02,0.02,0.005922242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.004166667,0.0075377836,0.0021759707,0.04,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,2004-07-01T00:00:00Z,0.004166667,0.01,0.0029905858,0.05,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.01,0.01,0.0050772647,0.08,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.04,0.06,0.01,0.0,0.0,0.0 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,2005-07-01T00:00:00Z,0.004166667,0.0075377836,0.0021759707,0.09,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.07,0.03,0.01,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,2006-07-01T00:00:00Z,0.0055555557,0.008206099,0.0023688967,0.05,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0055555557,0.01,0.0031337559,0.08,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0078007416,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.03,0.04,0.01,0.0,0.0,0.0 +SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,2007-07-01T00:00:00Z,0.01,0.01,0.004792993,0.01,0.01,0.0052135917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.11,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.009585986,0.0,0.0,0.0 +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1986-07-01T00:00:00Z,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.008206099,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006309342,0.08,0.05,0.01,NaN,NaN,NaN,0.01,0.01,0.00401666,0.0055555557,0.008206099,0.0023688967,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0068426887,0.0013888889,0.0048112525,0.0013888889 +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1987-07-01T00:00:00Z,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.01,0.01,0.0057418267,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0074911094,0.18,0.12,0.03,NaN,NaN,NaN,0.01,0.01,0.0036266178,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.009049605,0.009722223,0.01,0.0032166007 +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1988-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.02,0.05,0.01,0.09,0.06,0.02,NaN,NaN,NaN,0.03,0.02,0.0060973214,0.004166667,0.0075377836,0.0021759707,0.04,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.008489694,0.0,0.0,0.0 +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1989-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.01,0.01,0.004166667,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.12,0.09,0.02,NaN,NaN,NaN,0.05,0.02,0.008541179,0.004166667,0.01,0.0029905858,0.009722223,0.01,0.005602704,0.0027777778,0.006487491,0.0018727774,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0 +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1990-07-01T00:00:00Z,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.05,0.01,0.11,0.06,0.01,NaN,NaN,NaN,0.03,0.01,0.0057418267,0.0069444445,0.01,0.0032166007,0.01,0.01,0.0049549034,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0027777778,0.009622505,0.0027777778 +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1991-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0069444445,0.008582144,0.0024774517,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.02,0.02,0.006309342,0.09,0.04,0.01,9.04,9.2,2.65,0.02,0.02,0.0062675118,0.01,0.01,0.0036266178,0.0055555557,0.01,0.0042705894,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0013888889,0.0048112525,0.0013888889 +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1992-07-01T00:00:00Z,0.0,0.0,0.0,0.009722223,0.01,0.0038151375,0.008333334,0.01,0.0043519414,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.005602704,0.08,0.07,0.02,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.03,0.05,0.01,0.004166667,0.01,0.0029905858 +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1993-07-01T00:00:00Z,0.0,0.0,0.0,0.0055555557,0.01,0.0042705894,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.01,0.05,0.05,0.01,0.84,0.61,0.17,0.004166667,0.0075377836,0.0021759707,0.0027777778,0.006487491,0.0018727774,0.0027777778,0.009622505,0.0027777778,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.03,0.02,0.006487491 +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1994-07-01T00:00:00Z,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.008238092,0.02,0.03,0.009049605,0.7,0.53,0.15,0.01,0.01,0.0045102453,0.01,0.01,0.0045102453,0.01,0.01,0.0031337559,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.02,0.02,0.0069444445,0.0013888889,0.0048112525,0.0013888889 +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1995-07-01T00:00:00Z,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.04,0.01,0.03,0.04,0.01,0.34,0.41,0.12,0.0027777778,0.006487491,0.0018727774,0.0055555557,0.008206099,0.0023688967,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.008333334,0.008703883,0.0025125945,0.0055555557,0.01,0.0042705894 +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1996-07-01T00:00:00Z,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.04,0.05,0.01,0.02,0.03,0.01,0.64,0.7,0.2,0.008333334,0.01,0.0038380516,0.0055555557,0.008206099,0.0023688967,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0055555557,0.01,0.0037455547 +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1997-07-01T00:00:00Z,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.03,0.04,0.01,0.2,0.24,0.07,0.004166667,0.0075377836,0.0021759707,0.0027777778,0.006487491,0.0018727774,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.01,0.01,0.0038151375,0.0013888889,0.0048112525,0.0013888889 +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1998-07-01T00:00:00Z,0.0,0.0,0.0,0.0055555557,0.01,0.0037455547,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.11,0.15,0.04,0.04,0.04,0.01,0.53,0.36,0.1,0.0069444445,0.008582144,0.0024774517,0.01,0.0075377836,0.0021759707,0.0027777778,0.006487491,0.0018727774,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.03,0.008903082,0.0,0.0,0.0 +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1999-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.01,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.11,0.07,0.02,17.3,3.23,0.93,0.01,0.01,0.004166667,0.009722223,0.01,0.0038151375,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.04,0.01,0.0013888889,0.0048112525,0.0013888889 +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,2000-07-01T00:00:00Z,0.009722223,0.01,0.0032166007,0.0055555557,0.01,0.0037455547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0059664934,0.05,0.04,0.01,22.45,5.64,1.62,0.0055555557,0.01,0.0031337559,0.01,0.02,0.007630275,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.03,0.01,0.0,0.0,0.0 +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,2001-07-01T00:00:00Z,0.004166667,0.0075377836,0.0021759707,0.008333334,0.008703883,0.0025125945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0045102453,0.15,0.06,0.01,15.45,7.89,2.27,0.01,0.01,0.004792993,0.01,0.02,0.0059664934,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0 +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,2002-07-01T00:00:00Z,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0060973214,0.2,0.08,0.02,14.07,8.26,2.38,0.02,0.01,0.004166667,0.01,0.01,0.0049549034,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.02,0.01,0.0056183324,0.0,0.0,0.0 +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,2003-07-01T00:00:00Z,0.008333334,0.02,0.008333334,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.05,0.01,0.16,0.1,0.02,0.35,0.48,0.13,0.02,0.02,0.0059811715,0.02,0.01,0.005476073,0.008333334,0.008703883,0.0025125945,0.0055555557,0.01,0.0055555557,0.01,0.02,0.0069444445,0.0,0.0,0.0,0.01,0.01,0.0049549034,0.004166667,0.0075377836,0.0021759707 +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,2004-07-01T00:00:00Z,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.006752395,0.11,0.05,0.01,0.49,0.43,0.12,0.01,0.01,0.003453231,0.01,0.01,0.00401666,0.0069444445,0.01,0.0043317466,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.02,0.03,0.01,0.0013888889,0.0048112525,0.0013888889 +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.05,0.01,0.06,0.05,0.01,0.06,0.05,0.01,0.0,0.0,0.0,0.009722223,0.01,0.0032166007,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.01,0.01,0.004587349,0.0,0.0,0.0,0.06,0.04,0.01,0.0,0.0,0.0 +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,2006-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.09,0.02,0.08,0.06,0.01,0.4,0.45,0.13,0.0027777778,0.006487491,0.0018727774,0.01,0.01,0.0037455547,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.009622505,0.0027777778,0.02,0.02,0.008571921,0.0,0.0,0.0,0.04,0.02,0.0068426887,0.0013888889,0.0048112525,0.0013888889 +SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.009622505,0.06,0.03,0.009363887,0.11,0.09,0.02,0.004166667,0.01,0.0029905858,0.01,0.01,0.0045102453,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.008333334,0.01,0.0043519414,0.0,0.0,0.0,0.09,0.03,0.008814,0.0013888889,0.0048112525,0.0013888889 +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.003453231,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.006752395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.03,0.01,0.0,0.0,0.0,0.17,0.06,0.01,0.12,0.07,0.02 +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,2006-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.009695129,0.0,0.0,0.0,0.11,0.06,0.01,0.13,0.06,0.01 +SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.02,0.007630275,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006804138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.1,0.06,0.01,0.06,0.03,0.01 +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.02,0.03,0.009909807,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.02,0.02,0.0071436088,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.0078007416,0.0,0.0,0.0,0.39,0.14,0.04,0.07,0.02,0.008489694 +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,2006-07-01T00:00:00Z,0.0,0.0,0.0,0.02,0.02,0.008291139,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.01,0.01,0.005476073,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0071436088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.05,0.01,0.0,0.0,0.0,0.27,0.1,0.03,0.06,0.04,0.01 +SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.04,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.01,0.02,0.0058025885,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.008971757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.01,0.005025189,0.0,0.0,0.0,0.35,0.16,0.04,0.09,0.06,0.02 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1983-07-01T00:00:00Z,0.01,0.01,0.00559017,0.02,0.02,0.0069221864,0.0,0.0,0.0,0.0,0.0,0.0,0.19,0.19,0.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.00745356,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.06,0.01,0.02,0.02,0.008700255 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1984-07-01T00:00:00Z,0.0025,0.007905694,0.0025,0.005,0.01,0.005,0.0025,0.007905694,0.0025,0.0,0.0,0.0,0.13,0.12,0.04,0.005,0.01,0.0033333334,0.0,0.0,0.0,0.0025,0.007905694,0.0025,0.04,0.03,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.05,0.01,0.005,0.01,0.0033333334 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1985-07-01T00:00:00Z,0.01,0.01,0.0052135917,0.009722223,0.01,0.0032166007,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.03,0.06,0.01,0.0055555557,0.008206099,0.0023688967,0.07,0.07,0.02,0.47,0.42,0.12,0.04,0.03,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.05,0.01,0.01,0.02,0.007396878 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1986-07-01T00:00:00Z,0.008333334,0.01,0.0038380516,0.01,0.01,0.0057418267,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.01,0.01,0.0047377935,0.0055555557,0.01,0.0031337559,0.06,0.06,0.01,0.13,0.08,0.02,0.06,0.04,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.03,0.02,0.006309342,0.0055555557,0.008206099,0.0023688967 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1987-07-01T00:00:00Z,0.009722223,0.01,0.0032166007,0.0055555557,0.01,0.0037455547,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.01,0.01,0.004792993,0.04,0.04,0.01,0.03,0.04,0.01,0.04,0.02,0.007526142,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.09,0.02,0.0,0.0,0.0,0.0069444445,0.01,0.0038151375,0.0055555557,0.008206099,0.0023688967 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1988-07-01T00:00:00Z,0.0055555557,0.01,0.0042705894,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.01,0.01,0.0047377935,0.01,0.02,0.006527912,0.0,0.0,0.0,0.03,0.03,0.009363887,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.14,0.06,0.01,0.0,0.0,0.0,0.01,0.01,0.005602704,0.008333334,0.01,0.0032437455 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1989-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.008333334,0.01,0.0048112525,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0065947296,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.01,0.01,0.0031337559,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.04,0.01,0.0,0.0,0.0,0.02,0.02,0.006309342,0.01,0.01,0.004587349 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1990-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.02,0.0059664934,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.02,0.0069570593,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.01,0.01,0.0053628185,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.1,0.03,0.0,0.0,0.0,0.01,0.02,0.0069444445,0.01,0.02,0.0059664934 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1991-07-01T00:00:00Z,0.0,0.0,0.0,0.02,0.02,0.0072532357,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.02,0.008333334,0.0055555557,0.01,0.0042705894,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.01,0.0,0.0,0.0,0.02,0.03,0.008784105,0.0027777778,0.006487491,0.0018727774 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1992-07-01T00:00:00Z,0.0,0.0,0.0,0.0055555557,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.03,0.009722223,0.0027777778,0.009622505,0.0027777778,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.01,0.01,0.0035533453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.009838767,0.0,0.0,0.0,0.05,0.03,0.01,0.0069444445,0.01,0.0032166007 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1993-07-01T00:00:00Z,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0077102953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.0058025885,0.0,0.0,0.0,0.05,0.05,0.01,0.01,0.01,0.0036266178 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1994-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0047377935,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.02,0.0069570593,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.01,0.02,0.006487491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0060973214,0.0,0.0,0.0,0.05,0.04,0.01,0.009722223,0.01,0.0043317466 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1995-07-01T00:00:00Z,0.0,0.0,0.0,0.02,0.02,0.007432355,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.04,0.01,0.01,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0059664934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.04,0.01,0.0,0.0,0.0,0.09,0.06,0.02,0.01,0.01,0.004166667 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1996-07-01T00:00:00Z,0.004166667,0.01,0.0029905858,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.008238092,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.00401666,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.03,0.02,0.007349309,0.0,0.0,0.0,0.04,0.02,0.007630275,0.004166667,0.01,0.0029905858 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1997-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.0075377836,0.0021759707,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0069444445,0.008582144,0.0024774517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0,0.1,0.06,0.01,0.0027777778,0.009622505,0.0027777778 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1998-07-01T00:00:00Z,0.0,0.0,0.0,0.008333334,0.01,0.0048112525,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.01,0.02,0.005922242,0.0069444445,0.008582144,0.0024774517,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.07,0.04,0.01,0.0,0.0,0.0 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1999-07-01T00:00:00Z,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.01,0.01,0.0049549034,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.01,0.02,0.007349309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0049549034,0.0,0.0,0.0,0.12,0.05,0.01,0.0027777778,0.006487491,0.0018727774 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,2000-07-01T00:00:00Z,0.0,0.0,0.0,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.005162891,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.01,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0043317466,0.0,0.0,0.0,0.13,0.05,0.01,0.01,0.01,0.0047377935 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,2001-07-01T00:00:00Z,0.01,0.02,0.007396878,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.005162891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.28,0.17,0.05,0.0,0.0,0.0,0.06,0.04,0.01,0.004166667,0.0075377836,0.0021759707 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,2002-07-01T00:00:00Z,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.004587349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.05,0.01,0.0,0.0,0.0,0.13,0.06,0.01,0.01,0.01,0.004166667 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,2003-07-01T00:00:00Z,0.0,0.0,0.0,0.008333334,0.01,0.0048112525,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.008333334,0.01,0.0043519414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.04,0.01,0.0,0.0,0.0,0.11,0.04,0.01,0.01,0.01,0.004792993 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,2004-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.005025189,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0043317466,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.03,0.01,0.0,0.0,0.0,0.09,0.04,0.01,0.01,0.02,0.006309342 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0050772647,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.007432355,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.05,0.01,0.0,0.0,0.0,0.16,0.05,0.01,0.02,0.03,0.008814 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,2006-07-01T00:00:00Z,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.004644337,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11,0.05,0.01,0.0,0.0,0.0,0.14,0.08,0.02,0.04,0.07,0.02 +SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0035533453,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.008571921,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.05,0.01,0.0,0.0,0.0,0.12,0.05,0.01,0.01,0.01,0.004644337 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1983-07-01T00:00:00Z,0.11,0.26,0.08,0.03,0.02,0.008539125,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.18,0.05,0.11,0.07,0.02,0.0,0.0,0.0,0.0025,0.007905694,0.0025,0.005,0.01,0.0033333334,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14,0.05,0.01,0.09,0.05,0.01 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1984-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.02,0.008498366,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.07,0.02,0.1,0.07,0.02,0.01,0.02,0.0065085413,0.02,0.03,0.01,0.01,0.02,0.007637626,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0025,0.007905694,0.0025,0.0,0.0,0.0,0.07,0.04,0.01,0.04,0.04,0.01 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1985-07-01T00:00:00Z,0.0,0.0,0.0,0.009722223,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.08,0.02,0.06,0.07,0.02,0.33,0.29,0.08,0.09,0.12,0.03,0.02,0.02,0.0069570593,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.05,0.04,0.01,0.12,0.09,0.02 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1986-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.03,0.008814,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.04,0.01,0.02,0.02,0.007526142,0.4,0.24,0.07,0.16,0.22,0.06,0.03,0.03,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.008582144,0.0024774517,0.0,0.0,0.0,0.02,0.02,0.0069444445,0.06,0.04,0.01 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1987-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.01,0.02,0.008206099,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0042705894,0.02,0.02,0.0065947296,0.32,0.13,0.03,0.0,0.0,0.0,0.02,0.02,0.008238092,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.05,0.01,0.0,0.0,0.0,0.03,0.03,0.01,0.06,0.05,0.01 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1988-07-01T00:00:00Z,0.0055555557,0.01,0.0031337559,0.009722223,0.02,0.008322805,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0055555557,0.01,0.0042705894,0.17,0.05,0.01,0.0,0.0,0.0,0.01,0.01,0.004644337,NaN,NaN,NaN,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.14,0.07,0.02,0.0,0.0,0.0,0.06,0.06,0.01,0.04,0.02,0.006634497 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1989-07-01T00:00:00Z,0.0,0.0,0.0,0.0055555557,0.01,0.0037455547,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.03,0.03,0.009936315,0.25,0.13,0.03,0.0055555557,0.01,0.0042705894,0.0069444445,0.01,0.0032166007,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.05,0.01,0.0,0.0,0.0,0.04,0.03,0.008903082,0.1,0.04,0.01 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1990-07-01T00:00:00Z,0.0,0.0,0.0,0.009722223,0.02,0.0059664934,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0069444445,0.01,0.0032166007,0.19,0.06,0.01,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,NaN,NaN,NaN,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.29,0.21,0.06,0.0,0.0,0.0,0.08,0.05,0.01,0.06,0.08,0.02 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1991-07-01T00:00:00Z,0.0,0.0,0.0,0.04,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.008971757,0.0013888889,0.0048112525,0.0013888889,0.18,0.09,0.02,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.15,0.08,0.02,0.0,0.0,0.0,0.08,0.04,0.01,0.07,0.05,0.01 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1992-07-01T00:00:00Z,0.0,0.0,0.0,0.03,0.03,0.01,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.01,0.01,0.0045102453,0.008333334,0.01,0.0043519414,0.2,0.11,0.03,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.1,0.05,0.01,0.0,0.0,0.0,0.12,0.07,0.02,0.11,0.06,0.01 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1993-07-01T00:00:00Z,0.0,0.0,0.0,0.08,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0058477456,0.03,0.02,0.006309342,0.2,0.09,0.02,0.0,0.0,0.0,0.01,0.02,0.006634497,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.15,0.06,0.01,0.0,0.0,0.0,0.2,0.09,0.02,0.16,0.1,0.02 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1994-07-01T00:00:00Z,0.0,0.0,0.0,0.03,0.02,0.007432355,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0043317466,0.009722223,0.01,0.005602704,0.13,0.04,0.01,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.08,0.06,0.02,0.0,0.0,0.0,0.12,0.04,0.01,0.1,0.07,0.02 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1995-07-01T00:00:00Z,0.004166667,0.01,0.004166667,0.02,0.02,0.008291139,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0060973214,0.0055555557,0.008206099,0.0023688967,0.15,0.06,0.01,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.008734052,0.0,0.0,0.0,0.12,0.05,0.01,0.07,0.07,0.02 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1996-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0048112525,0.0027777778,0.006487491,0.0018727774,0.14,0.06,0.01,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006309342,0.0,0.0,0.0,0.13,0.04,0.01,0.06,0.05,0.01 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1997-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.01,0.03,0.009722223,0.14,0.05,0.01,0.0,0.0,0.0,0.0069444445,0.01,0.005602704,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.00913639,0.0,0.0,0.0,0.15,0.07,0.02,0.04,0.03,0.009585986 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1998-07-01T00:00:00Z,0.05,0.04,0.01,0.01,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.02,0.02,0.0075377836,0.1,0.04,0.01,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.008206099,0.0,0.0,0.0,0.2,0.07,0.02,0.07,0.05,0.01 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1999-07-01T00:00:00Z,0.0,0.0,0.0,0.0069444445,0.008582144,0.0024774517,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.02,0.03,0.00927923,0.11,0.06,0.01,0.0,0.0,0.0,0.01,0.02,0.0071436088,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.006309342,0.0,0.0,0.0,0.22,0.06,0.01,0.08,0.07,0.02 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,2000-07-01T00:00:00Z,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0043317466,0.01,0.01,0.0052135917,0.09,0.04,0.01,0.0013888889,0.0048112525,0.0013888889,0.01,0.02,0.008417088,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.00894239,0.0,0.0,0.0,0.23,0.07,0.02,0.1,0.07,0.02 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,2001-07-01T00:00:00Z,0.0,0.0,0.0,0.02,0.01,0.0052135917,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.01,0.02,0.008541179,0.09,0.06,0.01,0.0,0.0,0.0,0.02,0.02,0.00803332,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.3,0.1,0.02,0.0,0.0,0.0,0.21,0.08,0.02,0.06,0.05,0.01 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,2002-07-01T00:00:00Z,0.0055555557,0.01,0.0031337559,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.01,0.02,0.0060973214,0.09,0.04,0.01,0.0,0.0,0.0,0.01,0.02,0.007630275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14,0.06,0.01,0.0,0.0,0.0,0.18,0.06,0.01,0.06,0.06,0.01 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,2003-07-01T00:00:00Z,0.0,0.0,0.0,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.03,0.03,0.01,0.07,0.04,0.01,0.0,0.0,0.0,0.008333334,0.01,0.0048112525,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.03,0.01,0.0,0.0,0.0,0.28,0.08,0.02,0.1,0.06,0.01 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,2004-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0057418267,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.004166667,0.01,0.0029905858,0.07,0.03,0.009203324,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.07,0.02,0.0,0.0,0.0,0.32,0.08,0.02,0.12,0.06,0.01 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.02,0.02,0.0079785595,0.05,0.02,0.0078007416,0.0,0.0,0.0,0.0055555557,0.01,0.0055555557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.07,0.02,0.0,0.0,0.0,0.33,0.14,0.04,0.15,0.11,0.03 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,2006-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.01,0.01,0.004587349,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.01,0.02,0.0064332015,0.05,0.03,0.009503308,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.19,0.11,0.03,0.0,0.0,0.0,0.26,0.1,0.02,0.15,0.11,0.03 +SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,2007-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.01,0.02,0.0058477456,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.03,0.03,0.01,0.05,0.02,0.008065999,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.15,0.04,0.0,0.0,0.0,0.41,0.1,0.02,0.18,0.13,0.03 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1983-07-01T00:00:00Z,0.02,0.03,0.01,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.12,1.22,0.38,0.01,0.02,0.007637626,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.06,0.02,0.02,0.02,0.008700255 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1984-07-01T00:00:00Z,0.05,0.05,0.01,0.0075,0.01,0.005335937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.0,0.0,0.0,0.78,0.8,0.25,0.02,0.02,0.0072648316,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.1,0.03,0.03,0.01,0.0062360954 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1985-07-01T00:00:00Z,0.009722223,0.01,0.004792993,0.01,0.02,0.005922242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.13,0.03,0.0055555557,0.01,0.0031337559,1.36,1.13,0.32,0.03,0.06,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.09,0.04,0.01,0.01,0.01,0.003453231 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1986-07-01T00:00:00Z,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.06,0.01,0.0013888889,0.0048112525,0.0013888889,2.7,1.42,0.41,0.04,0.04,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.09,0.05,0.01,0.05,0.05,0.01 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1987-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.02,0.01,0.005476073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.04,0.01,0.008333334,0.01,0.0043519414,0.35,0.28,0.08,0.06,0.08,0.02,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.03,0.01,0.0,0.0,0.0,0.11,0.03,0.01,0.05,0.02,0.0078007416 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1988-07-01T00:00:00Z,0.05,0.1,0.02,0.0055555557,0.01,0.0037455547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.03,0.03,0.008814,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.03,0.01,0.0,0.0,0.0,0.08,0.04,0.01,0.04,0.03,0.008814 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1989-07-01T00:00:00Z,0.0,0.0,0.0,0.0069444445,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0042705894,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.03,0.03,0.009803055,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.28,0.13,0.03,0.0,0.0,0.0,0.09,0.03,0.01,0.04,0.02,0.008582144 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1990-07-01T00:00:00Z,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.008582144,0.0024774517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11,0.06,0.01,0.0,0.0,0.0,0.13,0.08,0.02,0.04,0.03,0.008823942 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1991-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.04,0.01,0.0,0.0,0.0,0.1,0.05,0.01,0.04,0.01,0.005476073 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1992-07-01T00:00:00Z,0.0027777778,0.009622505,0.0027777778,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.009503308,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.02,0.02,0.00803332,0.0,0.0,0.0,0.14,0.07,0.02,0.06,0.06,0.01 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1993-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0057418267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0060973214,0.0,0.0,0.0,0.14,0.06,0.01,0.03,0.03,0.009936315 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1994-07-01T00:00:00Z,0.008333334,0.01,0.0038380516,0.01,0.02,0.007396878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.16,0.04,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.02,0.02,0.0071436088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0050772647,0.0,0.0,0.0,0.19,0.05,0.01,0.03,0.03,0.008734052 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1995-07-01T00:00:00Z,0.0,0.0,0.0,0.0069444445,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.23,0.06,0.0013888889,0.0048112525,0.0013888889,0.0055555557,0.01,0.0037455547,0.01,0.02,0.007396878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.008489694,0.0,0.0,0.0,0.17,0.07,0.02,0.04,0.02,0.0071436088 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1996-07-01T00:00:00Z,0.01,0.02,0.008417088,0.008333334,0.01,0.0048112525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.08,0.02,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.01,0.02,0.008065999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0059664934,0.0,0.0,0.0,0.1,0.05,0.01,0.03,0.02,0.007349309 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1997-07-01T00:00:00Z,0.01,0.02,0.0065947296,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.008541179,0.0,0.0,0.0,0.07,0.08,0.02,0.01,0.01,0.0037455547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0038151375,0.0,0.0,0.0,0.17,0.06,0.01,0.05,0.03,0.01 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1998-07-01T00:00:00Z,0.0069444445,0.01,0.0032166007,0.009722223,0.02,0.0069444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0071436088,0.0027777778,0.006487491,0.0018727774,0.69,0.72,0.2,0.01,0.02,0.007057166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17,0.08,0.02,0.03,0.02,0.00803332 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1999-07-01T00:00:00Z,0.01,0.01,0.0042705894,0.01,0.02,0.0058477456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0052135917,0.0,0.0,0.0,0.82,0.75,0.21,0.01,0.02,0.008417088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.15,0.04,0.01,0.05,0.02,0.008322805 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,2000-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0013888889,0.0048112525,0.0013888889,0.11,0.08,0.02,0.02,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.04,0.01,0.0,0.0,0.0,0.07,0.04,0.01,0.03,0.02,0.0059664934 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,2001-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0045102453,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17,0.04,0.01,0.0,0.0,0.0,0.07,0.04,0.01,0.03,0.03,0.00927923 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,2002-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.13,0.03,0.0,0.0,0.0,0.07,0.04,0.01,0.07,0.03,0.01 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,2003-07-01T00:00:00Z,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0062675118,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.05,0.01,0.0,0.0,0.0,0.11,0.05,0.01,0.05,0.02,0.007526142 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,2004-07-01T00:00:00Z,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.02,0.0059664934,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.02,0.02,0.0071436088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.05,0.01,0.0,0.0,0.0,0.09,0.05,0.01,0.04,0.02,0.0078007416 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0055555557,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.06,0.01,0.0,0.0,0.0,0.14,0.07,0.02,0.03,0.01,0.003453231 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,2006-07-01T00:00:00Z,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.0050772647,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.07,0.02,0.0,0.0,0.0,0.13,0.05,0.01,0.04,0.02,0.007241137 +SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,2007-07-01T00:00:00Z,0.0055555557,0.01,0.0031337559,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.07,0.02,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.03,0.00927923,0.0,0.0,0.0,0.25,0.1,0.02,0.06,0.03,0.009803055 +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,2005-07-01T00:00:00Z,0.0027777778,0.009622505,0.0027777778,0.01,0.02,0.0059664934,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.06,0.01,0.02,0.03,0.009429206,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.004166667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.04,0.01,0.0,0.0,0.0,0.15,0.08,0.02,0.03,0.03,0.01 +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,2006-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.08,0.02,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.009865467,0.0,0.0,0.0,0.13,0.06,0.01,0.04,0.03,0.009049605 +SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.04,0.01,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.004166667,0.01,0.004166667,0.1,0.04,0.01,0.02,0.02,0.0071436088 +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.02,0.01,0.0050772647,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0055555557,0.01,0.0031337559,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.03,0.02,0.0078007416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.03,0.01,0.0,0.0,0.0,0.19,0.08,0.02,0.09,0.04,0.01 +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,2006-07-01T00:00:00Z,0.0,0.0,0.0,0.02,0.01,0.0047377935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0077102953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.005476073,0.0,0.0,0.0,0.21,0.07,0.02,0.11,0.02,0.007901257 +SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.05,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0069444445,0.01,0.0038151375,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.04,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.21,0.12,0.03,0.06,0.04,0.01 diff --git a/tests/fixtures/d618e5bdf14da795fb83ba2e6feae588.nc b/tests/fixtures/d618e5bdf14da795fb83ba2e6feae588.nc new file mode 100644 index 0000000..b05f1dd Binary files /dev/null and b/tests/fixtures/d618e5bdf14da795fb83ba2e6feae588.nc differ diff --git a/tests/fixtures/dfe855f3d7f9f7b32e1ca08a1d95cb8e.csv b/tests/fixtures/dfe855f3d7f9f7b32e1ca08a1d95cb8e.csv new file mode 100644 index 0000000..6c476a9 --- /dev/null +++ b/tests/fixtures/dfe855f3d7f9f7b32e1ca08a1d95cb8e.csv @@ -0,0 +1,224 @@ +longitude,latitude,Haliotis_fulgens_Mean_Density +degrees_east,degrees_north,m-2 +-119.416666666667,34.0,0.0 +-119.416666666667,34.0,0.0 +-119.416666666667,34.0,0.0 +-119.416666666667,34.0,0.0 +-119.416666666667,34.0,0.0 +-119.416666666667,34.0,0.0 +-119.383333333333,34.0,NaN +-119.383333333333,34.0,NaN +-119.383333333333,34.0,NaN +-119.383333333333,34.0,0.0 +-119.383333333333,34.0,0.0 +-119.383333333333,34.0,0.0 +-119.366666666667,34.0,0.0 +-119.366666666667,34.0,0.0 +-119.366666666667,34.0,0.0 +-119.366666666667,34.0,0.0 +-119.366666666667,34.0,0.0 +-119.366666666667,34.0,0.0 +-119.383333333333,34.0,NaN +-119.383333333333,34.0,NaN +-119.383333333333,34.0,NaN +-119.383333333333,34.0,0.0 +-119.383333333333,34.0,0.0 +-119.383333333333,34.0,0.0 +-119.416666666667,34.0,NaN +-119.416666666667,34.0,NaN +-119.416666666667,34.0,NaN +-119.416666666667,34.0,0.0 +-119.416666666667,34.0,0.0 +-119.416666666667,34.0,0.0 +-119.35,34.0166666666667,0.0 +-119.35,34.0166666666667,0.0 +-119.35,34.0166666666667,0.0 +-119.35,34.0166666666667,0.0 +-119.35,34.0166666666667,0.0 +-119.35,34.0166666666667,0.0 +-119.35,34.0,NaN +-119.35,34.0,NaN +-119.35,34.0,NaN +-119.35,34.0,0.0 +-119.35,34.0,0.0 +-119.35,34.0,0.0 +-118.533333333333,33.0,NaN +-118.533333333333,33.0,0.0 +-118.533333333333,33.0,0.0 +-118.533333333333,33.0,NaN +-118.533333333333,33.0,NaN +-118.533333333333,33.0,NaN +-118.533333333333,32.95,NaN +-118.533333333333,32.95,0.0 +-118.533333333333,32.95,0.0 +-118.533333333333,32.95,NaN +-118.533333333333,32.95,NaN +-118.533333333333,32.95,NaN +-118.4,32.8,NaN +-118.4,32.8,0.0 +-118.4,32.8,0.0 +-118.4,32.8,NaN +-118.4,32.8,NaN +-118.4,32.8,NaN +-118.583333333333,33.0333333333333,NaN +-118.583333333333,33.0333333333333,0.0 +-118.583333333333,33.0333333333333,0.0 +-118.583333333333,33.0333333333333,NaN +-118.583333333333,33.0333333333333,NaN +-118.583333333333,33.0333333333333,NaN +-120.35,34.05,0.0 +-120.35,34.05,0.0 +-120.35,34.05,0.0 +-120.35,34.05,0.0 +-120.35,34.05,0.0 +-120.35,34.05,0.0 +-120.4,34.0166666666667,0.0 +-120.4,34.0166666666667,0.0 +-120.4,34.0166666666667,0.0 +-120.4,34.0166666666667,0.0 +-120.4,34.0166666666667,0.0 +-120.4,34.0166666666667,0.0 +-120.383333333333,34.0166666666667,0.0 +-120.383333333333,34.0166666666667,0.0 +-120.383333333333,34.0166666666667,0.0 +-120.383333333333,34.0166666666667,0.0 +-120.383333333333,34.0166666666667,0.0 +-120.383333333333,34.0166666666667,0.0 +-119.016666666667,33.4666666666667,0.0 +-119.016666666667,33.4666666666667,0.0 +-119.016666666667,33.4666666666667,0.0 +-119.016666666667,33.4666666666667,0.0 +-119.016666666667,33.4666666666667,0.0 +-119.016666666667,33.4666666666667,0.0 +-119.033333333333,33.45,0.0 +-119.033333333333,33.45,0.0 +-119.033333333333,33.45,0.0 +-119.033333333333,33.45,0.0 +-119.033333333333,33.45,0.0 +-119.033333333333,33.45,0.0 +-119.016666666667,33.4666666666667,NaN +-119.016666666667,33.4666666666667,NaN +-119.016666666667,33.4666666666667,NaN +-119.016666666667,33.4666666666667,0.0 +-119.016666666667,33.4666666666667,0.0 +-119.016666666667,33.4666666666667,0.0 +-119.016666666667,33.45,0.0 +-119.016666666667,33.45,0.0 +-119.016666666667,33.45,0.0 +-119.016666666667,33.45,0.0 +-119.016666666667,33.45,0.0 +-119.016666666667,33.45,0.0 +-119.016666666667,33.45,NaN +-119.016666666667,33.45,NaN +-119.016666666667,33.45,NaN +-119.016666666667,33.45,0.0 +-119.016666666667,33.45,0.0 +-119.016666666667,33.45,0.0 +-119.05,33.4666666666667,NaN +-119.05,33.4666666666667,NaN +-119.05,33.4666666666667,NaN +-119.05,33.4666666666667,0.0 +-119.05,33.4666666666667,0.0 +-119.05,33.4666666666667,0.0 +-119.566666666667,34.05,NaN +-119.566666666667,34.05,NaN +-119.566666666667,34.05,NaN +-119.566666666667,34.05,0.0 +-119.566666666667,34.05,0.0 +-119.566666666667,34.05,0.0 +-119.6,34.0333333333333,NaN +-119.6,34.0333333333333,NaN +-119.6,34.0333333333333,NaN +-119.6,34.0333333333333,0.0 +-119.6,34.0333333333333,0.0 +-119.6,34.0333333333333,0.0 +-119.75,34.05,0.0 +-119.75,34.05,0.0 +-119.75,34.05,0.0 +-119.75,34.05,0.0 +-119.75,34.05,0.0 +-119.75,34.05,0.0 +-119.816666666667,33.9333333333333,0.0 +-119.816666666667,33.9333333333333,0.0 +-119.816666666667,33.9333333333333,0.0 +-119.816666666667,33.9333333333333,0.0 +-119.816666666667,33.9333333333333,0.0 +-119.816666666667,33.9333333333333,0.0 +-119.533333333333,34.0333333333333,NaN +-119.533333333333,34.0333333333333,NaN +-119.533333333333,34.0333333333333,NaN +-119.533333333333,34.0333333333333,0.0 +-119.533333333333,34.0333333333333,0.0 +-119.533333333333,34.0333333333333,0.0 +-119.516666666667,34.0333333333333,NaN +-119.516666666667,34.0333333333333,NaN +-119.516666666667,34.0333333333333,NaN +-119.516666666667,34.0333333333333,0.0 +-119.516666666667,34.0333333333333,0.0 +-119.516666666667,34.0333333333333,0.0 +-119.7,34.0166666666667,0.0 +-119.7,34.0166666666667,0.0 +-119.7,34.0166666666667,0.0 +-119.7,34.0166666666667,0.0 +-119.7,34.0166666666667,0.0 +-119.7,34.0166666666667,0.0 +-119.566666666667,34.05,NaN +-119.566666666667,34.05,NaN +-119.566666666667,34.05,NaN +-119.566666666667,34.05,0.0 +-119.566666666667,34.05,0.0 +-119.566666666667,34.05,0.0 +-119.533333333333,34.0333333333333,0.0 +-119.533333333333,34.0333333333333,0.0 +-119.533333333333,34.0333333333333,0.0 +-119.533333333333,34.0333333333333,0.0 +-119.533333333333,34.0333333333333,0.0 +-119.533333333333,34.0333333333333,0.0 +-119.55,33.9833333333333,0.0 +-119.55,33.9833333333333,0.0 +-119.55,33.9833333333333,0.0 +-119.55,33.9833333333333,0.0 +-119.55,33.9833333333333,0.0 +-119.55,33.9833333333333,0.0 +-120.133333333333,33.9,NaN +-120.133333333333,33.9,NaN +-120.133333333333,33.9,NaN +-120.133333333333,33.9,0.0 +-120.133333333333,33.9,0.0 +-120.133333333333,33.9,0.0 +-120.183333333333,33.9166666666667,NaN +-120.183333333333,33.9166666666667,NaN +-120.183333333333,33.9166666666667,NaN +-120.183333333333,33.9166666666667,0.0 +-120.183333333333,33.9166666666667,0.0 +-120.183333333333,33.9166666666667,0.0 +-120.1,33.8833333333333,0.0 +-120.1,33.8833333333333,0.0 +-120.1,33.8833333333333,0.0 +-120.1,33.8833333333333,0.0 +-120.1,33.8833333333333,0.0 +-120.1,33.8833333333333,0.0 +-120.1,33.8833333333333,0.0 +-120.1,33.8833333333333,0.0 +-120.1,33.8833333333333,0.0 +-120.1,33.8833333333333,0.0 +-120.1,33.8833333333333,0.0 +-120.1,33.8833333333333,0.0 +-120.1,34.0166666666667,0.0 +-120.1,34.0166666666667,0.0 +-120.1,34.0166666666667,0.0 +-120.1,34.0166666666667,0.0 +-120.1,34.0166666666667,0.0 +-120.1,34.0166666666667,0.0 +-120.116666666667,33.8833333333333,NaN +-120.116666666667,33.8833333333333,NaN +-120.116666666667,33.8833333333333,NaN +-120.116666666667,33.8833333333333,0.0 +-120.116666666667,33.8833333333333,0.0 +-120.116666666667,33.8833333333333,0.0 +-120.15,33.9,NaN +-120.15,33.9,NaN +-120.15,33.9,NaN +-120.15,33.9,0.0 +-120.15,33.9,0.0 +-120.15,33.9,0.0 diff --git a/tests/test-all.R b/tests/test-all.R new file mode 100644 index 0000000..230f5bb --- /dev/null +++ b/tests/test-all.R @@ -0,0 +1,7 @@ +library("testthat") +library("rerddap") + +#Sys.setenv(RERDDAP_CACHE_PATH_SUFFIX = "rerddap") +cache_setup(temp_dir = TRUE) + +test_check("rerddap") diff --git a/tests/testthat/helper-rerddap.R b/tests/testthat/helper-rerddap.R new file mode 100644 index 0000000..5b2de18 --- /dev/null +++ b/tests/testthat/helper-rerddap.R @@ -0,0 +1,5 @@ +library("vcr") +vcr::vcr_configure( + dir = "../vcr_cassettes", + write_disk_path = "../fixtures" +) diff --git a/tests/testthat/info_output.rda b/tests/testthat/info_output.rda new file mode 100644 index 0000000..9888227 Binary files /dev/null and b/tests/testthat/info_output.rda differ diff --git a/tests/testthat/info_output2.rda b/tests/testthat/info_output2.rda new file mode 100644 index 0000000..ba4e62e Binary files /dev/null and b/tests/testthat/info_output2.rda differ diff --git a/tests/testthat/test-convert_time.R b/tests/testthat/test-convert_time.R new file mode 100644 index 0000000..64ea690 --- /dev/null +++ b/tests/testthat/test-convert_time.R @@ -0,0 +1,25 @@ +context("convert_time") + +skip_on_cran() + +test_that("convert_time works", { + a <- convert_time(n = 473472000) + b <- convert_time(isoTime = "1985-01-02T00:00:00Z") + expect_is(a, "character") + expect_is(b, "character") + + vcr::use_cassette("convert_time", { + a_web <- convert_time(n = 473472000, method = "web") + b_web <- convert_time(isoTime = "1985-01-02T00:00:00Z", method = "web") + }) + + expect_is(a_web, "character") + expect_is(b_web, "character") + expect_equal(b_web, "473472000") +}) + +test_that("convert_time fails well", { + expect_error(convert_time(), "One of n or isoTime must be non-NULL") + expect_error(convert_time(4, 5), "is not TRUE") + expect_error(convert_time(473472000, "B"), "Supply only one of n or isoTime") +}) diff --git a/tests/testthat/test-convert_units.R b/tests/testthat/test-convert_units.R new file mode 100644 index 0000000..1dba01f --- /dev/null +++ b/tests/testthat/test-convert_units.R @@ -0,0 +1,37 @@ +context("convert_units") + +skip_on_cran() + +test_that("convert_units works", { + vcr::use_cassette("convert_units", { + a <- convert_units(udunits = "degree_C meter-1") + b <- convert_units(ucum = "Cel.m-1") + }, preserve_exact_body_bytes = TRUE) + + expect_is(a, "character") + expect_equal(a, "Cel.m-1") + + expect_is(b, "character") + expect_equal(b, "degree_C m-1") + + expect_equal(convert_units(udunits = "degC"), "Cel") + expect_equal(convert_units(ucum = "Cel"), "degree_C") + expect_equal(convert_units(udunits = "degF"), "[degF]") + expect_equal(convert_units(ucum = "[degF]"), "degree_F") + expect_equal(convert_units(udunits = "sec"), "s") + expect_equal(convert_units(ucum = "s"), "s") + expect_equal(convert_units(udunits = "day"), "d") + expect_equal(convert_units(ucum = "d"), "day") + + # nonsense apparently gets returned as itself, oh well + # just check class + vcr::use_cassette("convert_units_self", { + expect_is(convert_units("gggg"), "character") + }) +}) + +test_that("convert_units fails well", { + expect_error(convert_units(), "One of udunits or ucum must be non-NULL") + expect_error(convert_units(udunits = "sec", ucum = "sec"), + "Supply only one of udunits or ucum") +}) diff --git a/tests/testthat/test-disk.R b/tests/testthat/test-disk.R new file mode 100644 index 0000000..a46f07d --- /dev/null +++ b/tests/testthat/test-disk.R @@ -0,0 +1,14 @@ +context("disk") + +skip_on_cran() + +test_that("disk works", { + expect_is(disk(), "list") + expect_is(disk()$store, "character") + expect_equal(disk()$store, "disk") + expect_is(disk()$path, "character") + expect_match(disk()$path, "rerddap") + expect_true(disk()$overwrite) + + #unlink(cache_info()$path, recursive = TRUE) +}) diff --git a/tests/testthat/test-ed_datasets.R b/tests/testthat/test-ed_datasets.R new file mode 100644 index 0000000..a65abee --- /dev/null +++ b/tests/testthat/test-ed_datasets.R @@ -0,0 +1,25 @@ +context("ed_datasets") + +skip_on_cran() + +test_that("ed_datasets returns the correct", { + vcr::use_cassette("ed_datasets_table", { + a <- ed_datasets('table') + }) + + expect_is(a, "data.frame") + expect_is(a$griddap, "character") + expect_lt(NCOL(a), 50) + + vcr::use_cassette("ed_datasets_grid", { + b <- ed_datasets('grid') + }) + + expect_is(b, "data.frame") + expect_is(b$Institution, "character") + expect_lt(NCOL(b), 50) +}) + +test_that("ed_datasets fails well", { + expect_error(ed_datasets("stuff"), "should be one of") +}) diff --git a/tests/testthat/test-ed_search.R b/tests/testthat/test-ed_search.R new file mode 100644 index 0000000..6736404 --- /dev/null +++ b/tests/testthat/test-ed_search.R @@ -0,0 +1,50 @@ +context("ed_search") + +skip_on_cran() + +test_that("ed_search returns the correct", { + vcr::use_cassette("ed_search", { + a <- ed_search(query = 'temperature') + b <- ed_search(query = 'size') + }) + + # class + expect_is(a, "ed_search") + expect_is(a$info, "data.frame") + expect_is(a$alldata, "list") + + # dimensions + expect_equal(length(a), 2) + expect_equal(NCOL(a$info), 2) + expect_equal(length(b), 2) + expect_equal(NCOL(b$info), 2) +}) + +test_that("ed_search works with different ERDDAP servers", { + vcr::use_cassette("ed_search_diff_servers", { + d <- ed_search("wave", + url = "https://erddap.marine.ie/erddap/") + e <- ed_search("temperature", + url = "http://www.ifremer.fr/erddap/") + }) + + expect_is(d, "ed_search") + expect_is(d$info, "data.frame") + expect_is(d$alldata, "list") + + expect_is(e, "ed_search") + expect_is(e$info, "data.frame") + expect_is(e$alldata, "list") +}) + +test_that("ed_search correctly catches invalid parameter types", { + expect_error(ed_search(query = "temperature", page = "things"), + "page not of class numeric") + expect_error(ed_search(query = "temperature", page_size = "adf"), + "page_size not of class numeric") +}) + +test_that("ed_search fails well", { + expect_error(ed_search(), "\"query\" is missing, with no default") + expect_error(ed_search("size", which = "stuff"), "should be one of") +}) diff --git a/tests/testthat/test-ed_search_adv.R b/tests/testthat/test-ed_search_adv.R new file mode 100644 index 0000000..ffab03c --- /dev/null +++ b/tests/testthat/test-ed_search_adv.R @@ -0,0 +1,62 @@ +context("ed_search_adv") + +skip_on_cran() + +test_that("ed_search_adv returns the correct", { + vcr::use_cassette("ed_search_adv", { + a <- ed_search_adv(query = "temperature") + b <- ed_search_adv(query = "temperature", protocol = "griddap") + d <- ed_search_adv(query = "temperature", protocol = "tabledap") + e <- ed_search_adv(maxLat = 63, minLon = -107, maxLon = -87, minLat = 50, + protocol = "griddap") + f <- ed_search_adv(minTime = "2010-01-01T00:00:00Z", + maxTime = "2010-02-01T00:00:00Z") + }) + + # class + expect_is(a, "ed_search_adv") + expect_is(a$info, "data.frame") + expect_is(a$alldata, "list") + expect_true(any(vapply(a$alldata, "[[", "", "tabledap") == "")) + expect_true(all(vapply(b$alldata, "[[", "", "tabledap") == "")) + expect_true(all(vapply(d$alldata, "[[", "", "griddap") == "")) + expect_is(e, "ed_search_adv") + expect_is(f, "ed_search_adv") + + # dimensions + expect_equal(length(a), 2) + expect_equal(NCOL(a$info), 2) + expect_equal(length(b), 2) + expect_equal(NCOL(b$info), 2) + expect_equal(length(d), 2) + expect_equal(NCOL(d$info), 2) + expect_equal(length(e), 2) + expect_equal(NCOL(e$info), 2) + expect_equal(length(f), 2) + expect_equal(NCOL(f$info), 2) +}) + +test_that("ed_search_adv works with different ERDDAP servers", { + vcr::use_cassette("ed_search_adv_diff_servers", { + h <- ed_search_adv(query = "temperature", url = servers()$url[6]) + }) + + expect_is(h, "ed_search_adv") + expect_is(h$info, "data.frame") + expect_is(h$alldata, "list") +}) + +test_that("ed_search_adv correctly catches invalid parameter types", { + expect_error(ed_search_adv(page = "things"), "page not of class numeric") + expect_error(ed_search_adv(maxLat = "adf"), "maxLat not of class numeric") + expect_error(ed_search_adv(institution = 5), + "institution not of class character") + expect_error(ed_search_adv(keywords = 445), "keywords not of class character") +}) + +test_that("ed_search_adv fails well", { + vcr::use_cassette("ed_search_adv_errors", { + expect_error(ed_search_adv()) + expect_error(ed_search_adv(query = "adfafadfsd")) + }, preserve_exact_body_bytes = TRUE) +}) diff --git a/tests/testthat/test-griddap.r b/tests/testthat/test-griddap.r new file mode 100644 index 0000000..05a44f9 --- /dev/null +++ b/tests/testthat/test-griddap.r @@ -0,0 +1,203 @@ +context("griddap") + +skip_on_cran() + +# delete all cached files before running tests +cache_delete_all() + +test_that("griddap returns the correct class", { + vcr::use_cassette("griddap", { + a <- griddap( + "erdQMekm14day", + time = c('2015-12-28','2016-01-01'), + latitude = c(24, 23), + longitude = c(88, 90), + store = disk() + ) + }) + + expect_is(a, "griddap_nc") + expect_is(unclass(a), "list") + expect_is(a$summary, "list") + expect_is(a$summary$filename, "character") + expect_is(a$data, "data.frame") + expect_is(a$data$time, "character") +}) + +test_that("griddap - user forgets to set any queries", { + # when no dimension args passed to `...`, stop with error + # (& no http requests made) + expect_error(griddap("erdQMekm14day"), "no dimension arguments") +}) + +test_that("griddap - there's no griddap data available for the dataset", { + url = "http://tds.marine.rutgers.edu/erddap/" + expect_error( + griddap('DOPPIO_REANALYSIS_OBS', latitude = c(41, 45), url=url), + "not of type griddap") +}) + +test_that("griddap - info() output passed to griddap", { + # info_output <- info('erdVHNchlamday') + # save(info_output, file="tests/testthat/info_output.rda", version=2) + load("info_output.rda") + vcr::use_cassette("griddap_info_passed_to_x", { + expect_message( + griddap(info_output, + time = c('2015-04-01','2015-04-10'), + latitude = c(18, 21), + longitude = c(-120, -119) + ), + "setting base url" + ) + }) +}) + +test_that("griddap fixes incorrect user inputs", { + skip_on_cran() + + vcr::use_cassette("griddap_fixes_user_inputs_1", { + # wrong order of latitude + a <- griddap("erdQMekm14day", + time = c('2015-12-28','2016-01-01'), + latitude = c(23, 24), + longitude = c(88, 90), + store = disk() + ) + }) + vcr::use_cassette("griddap_fixes_user_inputs_2", { + # wrong order of longitude + b <- griddap("erdQMekm14day", + time = c('2015-12-28','2016-01-01'), + latitude = c(24, 23), + longitude = c(90, 88), + store = disk() + ) + }) + vcr::use_cassette("griddap_fixes_user_inputs_3", { + # wrong order of time + c <- griddap("erdQMekm14day", + time = c('2016-01-01', '2015-12-28'), + latitude = c(24, 23), + longitude = c(88, 90), + store = disk() + ) + }) + + expect_is(a, "griddap_nc") + expect_is(a$data, "data.frame") + # expect_is(b, "griddap_nc") + # expect_is(b$data, "data.frame") + expect_is(c, "griddap_nc") + expect_is(c$data, "data.frame") + + vcr::use_cassette("griddap_fixes_user_inputs_4", { + # wrong longitude formatting given + expect_error(griddap('erdMBchlamday_LonPM180', + time = c('2015-12-28','2016-01-01'), + latitude = c(18.4, 18.6), + longitude = c(-65, -197), + store = disk()), "One or both longitude values") + + # wrong latitude formatting given + expect_error(griddap('erdMBchlamday_LonPM180', + time = c('2015-12-28','2016-01-01'), + latitude = c(18.4, 150), + longitude = c(-65, -63), + store = disk()), "One or both latitude values") + }) +}) + +test_that("griddap fields parameter works, and fails correctly", { + skip_on_cran() + + vcr::use_cassette("griddap_fields_parameter", { + d <- griddap( + "erdQMekm14day", + time = c('2015-12-28','2016-01-01'), + latitude = c(24, 23), + longitude = c(88, 90), + fields = "mod_current", + store = disk() + ) + + expect_error(griddap('erdMBchlamday_LonPM180', + time = c('2015-12-28','2016-01-01'), + latitude = c(20, 21), + longitude = c(10, 11), + fields = "mmmmmm", store = disk()), + "'arg' should be one of") + }) + + expect_is(d, "griddap_nc") +}) + +test_that("griddap fails well, in addition to above failure tests", { + # without HTTP requests + ## named dimargs parameters not allowed when don't match those in dataset + expect_error(griddap('erdMBchlamday_LonPM180', stuff = 5), + "Some input dimensions \\(stuff\\)") + expect_error(griddap('erdMBchlamday_LonPM180', a = "5"), + "Some input dimensions \\(a\\)") + + ## wrong latitude formatting given + expect_error(griddap('erdMBchlamday_LonPM180', + time = c('2012-01-01', '2012-01-30'), + latitude = c(21, -120), + longitude = c(-80, -78), + store = disk()), "One or both latitude values") + + # with HTTP requests + ## bad date value + # vcr::use_cassette("griddap_fails_well", { + expect_error(griddap('erdVHNchlamday', + time = c('015-04-01','2015-04-10'), + latitude = c(18, 21)), "Query error") + # }, preserve_exact_body_bytes = TRUE) +}) +# unlink(cache_info()$path, recursive = TRUE) + +test_that("griddap read parameter works", { + vcr::use_cassette("griddap_read_parameter", { + e <- griddap( + "erdQMekm14day", + time = c('2015-12-28','2016-01-01'), + latitude = c(24, 23), + longitude = c(88, 90), + store = disk(), + read = FALSE + ) + }) + + expect_is(e, "griddap_nc") + expect_equal(NROW(e$data), 0) +}) + + +# related to https://github.com/ropensci/rerddap/issues/78 +test_that("griddap north south latitude", { + vcr::use_cassette("griddap_north_south_latitude", { + f <- griddap("noaacwNPPVIIRSchlaDaily", + fields = 'chlor_a', + time = c("2020-07-07T12:00:00Z", "2020-07-07T13:00:00Z"), + altitude = c(0, 0), + latitude = c(30, 31), + longitude = c(-120, -119), + url = "https://coastwatch.noaa.gov/erddap/", + store = disk() + ) + }) + + expect_is(f, "griddap_nc") + expect_is(f$data, "data.frame") +}) + + +# ## FIXME more tests to add +# # * fmt parameter +# # * stride parameter +# # * ncdf parameter +# # * url parameter +# # * store parameter +# # * read parameter +# # * callopts parameter diff --git a/tests/testthat/test-info.R b/tests/testthat/test-info.R new file mode 100644 index 0000000..9beecaa --- /dev/null +++ b/tests/testthat/test-info.R @@ -0,0 +1,67 @@ +context("info") + +skip_on_cran() + +test_that("info returns the correct", { + vcr::use_cassette("info", { + a <- info('erdRWtanm1day') + d <- info('erdMBchlamday_LonPM180') + e <- info('erdMBchla1day') + # f <- info('nodcWoa09mon5t') + }) + + # class + expect_is(a, "info") + expect_is(d, "info") + expect_is(e, "info") + # expect_is(f, "info") + + expect_is(a$base_url, "character") + expect_match(a$base_url, "erddap") + expect_is(a$variables, "data.frame") + expect_is(a$alldata, "list") + expect_is(a$alldata$NC_GLOBAL, "data.frame") + expect_is(a$alldata$sstAnomaly, "data.frame") + + #expect_is(b$alldata$clivi, "data.frame") + expect_is(d$alldata$chlorophyll, "data.frame") + expect_is(e$alldata$time, "data.frame") + # expect_is(f$alldata$depth, "data.frame") + + # dimensions + expect_equal(length(a), 3) + expect_equal(NCOL(a$variables), 3) +}) + +test_that("info works with different ERDDAP servers", { + vcr::use_cassette("info_diff_servers", { + h <- info("IMI_CONN_2D", url = "http://erddap.marine.ie/erddap/") + }) + + expect_is(h, "info") + expect_is(h$variables, "data.frame") + expect_is(h$alldata, "list") +}) + +test_that("info fails well", { + expect_error(info(), "is missing, with no default") + expect_error(info("stuff"), "Not Found") +}) + +test_that("resilient to user given URLs w/ & w/o trailing slash", { + id = "ncdcOisst21Agg_LonPM180" + a <- vcr::use_cassette("info_url_slash", { + info(id, url = "https://coastwatch.pfeg.noaa.gov/erddap/") + }) + b <- vcr::use_cassette("info_url_slash2", { + info(id, url = "https://coastwatch.pfeg.noaa.gov/erddap") + }) + expect_identical( + a$http_interactions_$used_interactions[[1]]$request$uri, + b$http_interactions_$used_interactions[[1]]$request$uri + ) + expect_identical( + a$http_interactions_$used_interactions[[2]]$request$uri, + b$http_interactions_$used_interactions[[2]]$request$uri + ) +}) diff --git a/tests/testthat/test-servers.R b/tests/testthat/test-servers.R new file mode 100644 index 0000000..f6c6bcc --- /dev/null +++ b/tests/testthat/test-servers.R @@ -0,0 +1,13 @@ +context("servers") + +skip_on_cran() + +test_that("servers", { + vcr::use_cassette("servers", { + aa <- servers() + }) + + expect_is(aa, "data.frame") + expect_is(aa, "tbl") + expect_is(aa$public, "logical") +}) diff --git a/tests/testthat/test-tabledap.R b/tests/testthat/test-tabledap.R new file mode 100644 index 0000000..2423b2b --- /dev/null +++ b/tests/testthat/test-tabledap.R @@ -0,0 +1,99 @@ +context("tabledap") + +skip_on_cran() + +test_that("tabledap returns the correct stuff", { + vcr::use_cassette("tabledap_memory", { + a <- tabledap('erdCinpKfmBT', store = memory()) + b <- tabledap('erdCinpKfmBT', 'time>=2007-06-24', 'time<=2007-07-01', store = memory()) + }) + + # class + expect_is(a, "tabledap") + expect_is(a, "data.frame") + expect_is(a$Haliotis_rufescens_Mean_Density, "character") + + # dimensions + expect_gt(NCOL(a), 20) + expect_gt(NCOL(b), 20) + + vcr::use_cassette("tabledap_disk", { + a <- tabledap('erdCinpKfmBT', store = disk()) + b <- tabledap('erdCinpKfmBT', 'time>=2007-06-24', 'time<=2007-07-01', store = disk()) + }) + + # class + expect_is(a, "tabledap") + expect_is(a, "data.frame") + expect_is(a$Haliotis_rufescens_Mean_Density, "character") + + # dimensions + expect_gt(NCOL(a), 20) + expect_gt(NCOL(b), 20) +}) + +test_that("tabledap fields parameter works", { + vcr::use_cassette("tabledap_fields_parameter", { + d <- tabledap('erdCinpKfmBT', fields = c('longitude','latitude','Haliotis_fulgens_Mean_Density'), + 'time>=2001-07-14', store = disk()) + }) + + expect_is(d, "tabledap") +}) + +test_that("tabledap fields parameter fails correctly", { + vcr::use_cassette("tabledap_fields_fails_well", { + expect_error(tabledap('erdCalCOFIlrvcntHBtoHI', fields = 'stuff', + 'time>=2001-07-14', store = memory()), + "Unrecognized variable") + }) +}) + +test_that("tabledap units parameter works", { + vcr::use_cassette("tabledap_units_parameter", { + e <- tabledap('erdCinpKfmBT', fields = c('longitude','latitude','Haliotis_fulgens_Mean_Density'), + 'time>=2001-07-14', units = 'udunits', store = disk()) + }) + + expect_is(e, "tabledap") +}) + +test_that("tabledap units parameter fails correctly", { + vcr::use_cassette("tabledap_units_fails_well", { + expect_error( + tabledap('erdCinpKfmBT', 'time>=2001-07-14', units = "stuff", store = memory()), + "toUnits=UDUNITS must be UDUNITS or UCUM" + ) + }, preserve_exact_body_bytes = TRUE) +}) + +test_that("tabledap fails well on common mistakes", { + # failures that do HTTP requests + vcr::use_cassette("tabledap_fails_well", { + expect_error(tabledap('hawaii_b55f_a8f2_ad70', "stuff=>things", store = memory())) + expect_error(tabledap('erdCinpKfmBT', fields = "bbbbb", store = memory()), + "Unrecognized variable") + expect_error(tabledap('erdCinpKfmBT', orderby = "things", store = memory()), + "'orderBy' variable=things isn't in the dataset") + }, preserve_exact_body_bytes = TRUE) + + # failures that do not do HTTP requests + skip_on_cran() + + expect_error(tabledap(), "argument \"x\" is missing") + expect_error(tabledap('erdCinpKfmBT', distinct = "bear"), "not interpretable as logical") +}) + +test_that("tabledap - info() output passed to griddap", { + # info_output2 <- info('erdCinpKfmBT') + # save(info_output2, file="tests/testthat/info_output2.rda", version=2) + load("info_output2.rda") + vcr::use_cassette("tabledap_info_passed_to_x", { + expect_message( + tabledap(info_output2, 'time>=2007-06-24', 'time<=2007-07-01'), + "setting base url" + ) + }) +}) + +# unlink(cache_info()$path, recursive = TRUE) diff --git a/tests/vcr_cassettes/convert_time.yml b/tests/vcr_cassettes/convert_time.yml new file mode 100644 index 0000000..60beecd --- /dev/null +++ b/tests/vcr_cassettes/convert_time.yml @@ -0,0 +1,57 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/convert/time.txt?n=473472000&units=seconds%20since%201970-01-01T00%3A00%3A00Z + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.8.1.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Fri, 19 Jul 2019 19:12:49 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-encoding: gzip + content-type: text/plain;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + string: '1985-01-02T00:00:00Z' + recorded_at: 2019-07-19 19:12:12 GMT + recorded_with: vcr/0.2.6, webmockr/0.3.4 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/convert/time.txt?isoTime=1985-01-02T00%3A00%3A00Z&units=seconds%20since%201970-01-01T00%3A00%3A00Z + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.8.1.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Fri, 19 Jul 2019 19:12:49 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-encoding: gzip + content-type: text/plain;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + string: '473472000' + recorded_at: 2019-07-19 19:12:12 GMT + recorded_with: vcr/0.2.6, webmockr/0.3.4 diff --git a/tests/vcr_cassettes/convert_units.yml b/tests/vcr_cassettes/convert_units.yml new file mode 100644 index 0000000..16814f4 --- /dev/null +++ b/tests/vcr_cassettes/convert_units.yml @@ -0,0 +1,57 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/convert/units.txt?UDUNITS=degree_C%20meter-1 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.8.1.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Fri, 19 Jul 2019 19:13:10 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-encoding: gzip + content-type: text/plain;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: ASCII-8BIT + string: Q2VsLm0tMQ== + recorded_at: 2019-07-19 19:12:34 GMT + recorded_with: vcr/0.2.6, webmockr/0.3.4 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/convert/units.txt?UCUM=Cel.m-1 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.8.1.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Fri, 19 Jul 2019 19:13:10 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-encoding: gzip + content-type: text/plain;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: ASCII-8BIT + string: ZGVncmVlX0MgbS0x + recorded_at: 2019-07-19 19:12:34 GMT + recorded_with: vcr/0.2.6, webmockr/0.3.4 diff --git a/tests/vcr_cassettes/convert_units_self.yml b/tests/vcr_cassettes/convert_units_self.yml new file mode 100644 index 0000000..32fc915 --- /dev/null +++ b/tests/vcr_cassettes/convert_units_self.yml @@ -0,0 +1,29 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/convert/units.txt?UDUNITS=gggg + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.8.1.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Fri, 19 Jul 2019 19:12:08 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-encoding: gzip + content-type: text/plain;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + string: '{gggg}' + recorded_at: 2019-07-19 19:11:31 GMT + recorded_with: vcr/0.2.6, webmockr/0.3.4 diff --git a/tests/vcr_cassettes/ed_datasets_grid.yml b/tests/vcr_cassettes/ed_datasets_grid.yml new file mode 100644 index 0000000..6ef2f67 --- /dev/null +++ b/tests/vcr_cassettes/ed_datasets_grid.yml @@ -0,0 +1,10041 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/griddap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.7.0.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Thu, 31 Jan 2019 19:30:59 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Thu, 31 Jan 2019 19:30:59 GMT + xdods-server: dods/3.7 + erddap-server: '1.82' + content-disposition: attachment;filename=griddap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f30_f3ea_5722", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f30_f3ea_5722.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f30_f3ea_5722/request", "", "public", "1st eof of monthly hgt from the NCEP Reanalysis (Top Dataset, pressure, hgt.inter.eof1), 2.5\u00b0, 0001", "1st eof of monthly hgt from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (1st Interannual EOF by Month of Geopotential Height, correl)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f30_f3ea_5722_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f30_f3ea_5722_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f30_f3ea_5722/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f30_f3ea_5722.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f30_f3ea_5722&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0f30_f3ea_5722"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d9b_893e_b4b4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d9b_893e_b4b4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0d9b_893e_b4b4/request", "", "public", "1st eof of monthly uwnd from the NCEP Reanalysis (Top Dataset, pressure, air.inter.eof1), 2.5\u00b0, 0001", "1st eof of monthly uwnd from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (1st Interannual EOF by Month of Air Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0d9b_893e_b4b4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0d9b_893e_b4b4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0d9b_893e_b4b4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0d9b_893e_b4b4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0d9b_893e_b4b4&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0d9b_893e_b4b4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c3e_fad6_cee3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c3e_fad6_cee3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1c3e_fad6_cee3/request", "", "public", "1st eof of monthly uwnd from the NCEP Reanalysis (Top Dataset, pressure, uwnd.inter.eof1), 2.5\u00b0, 0001", "1st eof of monthly uwnd from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (1st Interannual EOF by Month of U-Wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1c3e_fad6_cee3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1c3e_fad6_cee3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1c3e_fad6_cee3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1c3e_fad6_cee3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1c3e_fad6_cee3&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_1c3e_fad6_cee3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70a2_fe15_5246", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70a2_fe15_5246.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_70a2_fe15_5246/request", "", "public", "2nd eof of monthly hgt from the NCEP Reanalysis (Top Dataset, pressure, hgt.inter.eof2), 2.5\u00b0, 0001", "2nd eof of monthly hgt from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (2nd Interannual EOF by Month of Geopotential Height, correl)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_70a2_fe15_5246_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_70a2_fe15_5246_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_70a2_fe15_5246/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_70a2_fe15_5246.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_70a2_fe15_5246&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_70a2_fe15_5246"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3843_e7e3_033f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3843_e7e3_033f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3843_e7e3_033f/request", "", "public", "2nd eof of monthly uwnd from the NCEP Reanalysis (Top Dataset, pressure, air.inter.eof2), 2.5\u00b0, 0001", "2nd eof of monthly uwnd from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (2nd Interannual EOF by Month of Air Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3843_e7e3_033f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3843_e7e3_033f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3843_e7e3_033f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3843_e7e3_033f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3843_e7e3_033f&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_3843_e7e3_033f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8635_79c1_b95d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8635_79c1_b95d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8635_79c1_b95d/request", "", "public", "4X daily ltm air from the NCEP Reanalysis (Top Dataset, pressure, air.4Xday.ltm), 2.5\u00b0, 0001", "4X daily ltm air from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 4xDaily Air temperature, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8635_79c1_b95d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8635_79c1_b95d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8635_79c1_b95d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8635_79c1_b95d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8635_79c1_b95d&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8635_79c1_b95d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_778b_76a8_ee71", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_778b_76a8_ee71.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_778b_76a8_ee71/request", "", "public", "4X daily ltm hgt from the NCEP Reanalysis (Top Dataset, pressure, hgt.4Xday.ltm), 2.5\u00b0, 0001", "4X daily ltm hgt from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Long Term Mean 4xDaily Geopotential height, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_778b_76a8_ee71_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_778b_76a8_ee71_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_778b_76a8_ee71/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_778b_76a8_ee71.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_778b_76a8_ee71&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_778b_76a8_ee71"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d15_e33b_044b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d15_e33b_044b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d15_e33b_044b/request", "", "public", "4X daily ltm omega from the NCEP Reanalysis (Top Dataset, pressure, omega.4Xday.ltm), 2.5\u00b0, 0001", "4X daily ltm omega from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Long Term Mean 4xDaily Omega, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d15_e33b_044b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d15_e33b_044b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d15_e33b_044b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d15_e33b_044b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d15_e33b_044b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_1d15_e33b_044b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1455_0c2f_1bb8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1455_0c2f_1bb8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1455_0c2f_1bb8/request", "", "public", "4X daily ltm rhum from the NCEP Reanalysis (Top Dataset, pressure, rhum.4Xday.ltm), 2.5\u00b0, 0001", "4X daily ltm rhum from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Long Term Mean 4xDaily relative humidity, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1455_0c2f_1bb8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1455_0c2f_1bb8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1455_0c2f_1bb8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1455_0c2f_1bb8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1455_0c2f_1bb8&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_1455_0c2f_1bb8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8170_25e7_ea83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8170_25e7_ea83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8170_25e7_ea83/request", "", "public", "4X daily ltm shum from the NCEP Reanalysis (Top Dataset, pressure, shum.4Xday.ltm), 2.5\u00b0, 0001", "4X daily ltm shum from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Long Term Mean 4xDaily specific humidity, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8170_25e7_ea83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8170_25e7_ea83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8170_25e7_ea83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8170_25e7_ea83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8170_25e7_ea83&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8170_25e7_ea83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5838_7ede_b7a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5838_7ede_b7a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5838_7ede_b7a2/request", "", "public", "4X daily ltm uwnd from the NCEP Reanalysis (Top Dataset, pressure, uwnd.4Xday.ltm), 2.5\u00b0, 0001", "4X daily ltm uwnd from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Long Term Mean 4xDaily U-wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5838_7ede_b7a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5838_7ede_b7a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5838_7ede_b7a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5838_7ede_b7a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5838_7ede_b7a2&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5838_7ede_b7a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8154_01c2_f695", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8154_01c2_f695.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8154_01c2_f695/request", "", "public", "4X daily ltm vwnd from the NCEP Reanalysis (Top Dataset, pressure, vwnd.4Xday.ltm), 2.5\u00b0, 0001", "4X daily ltm vwnd from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Long Term Mean 4xDaily V wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8154_01c2_f695_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8154_01c2_f695_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8154_01c2_f695/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8154_01c2_f695.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8154_01c2_f695&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8154_01c2_f695"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a00_9168_6dd7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a00_9168_6dd7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8a00_9168_6dd7/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel sprd, cape.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Long Term Mean 6-hourly CAPE Spread, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8a00_9168_6dd7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8a00_9168_6dd7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8a00_9168_6dd7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8a00_9168_6dd7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8a00_9168_6dd7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8a00_9168_6dd7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0920_26ae_eb71", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0920_26ae_eb71.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0920_26ae_eb71/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel sprd, cin.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Long Term Mean 6-hourly CIN Spread, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0920_26ae_eb71_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0920_26ae_eb71_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0920_26ae_eb71/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0920_26ae_eb71.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0920_26ae_eb71&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0920_26ae_eb71"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebf2_ccf6_8919", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebf2_ccf6_8919.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ebf2_ccf6_8919/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, air.tropo.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ebf2_ccf6_8919_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ebf2_ccf6_8919_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ebf2_ccf6_8919/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ebf2_ccf6_8919.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ebf2_ccf6_8919&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ebf2_ccf6_8919"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0bfc_cb63_46fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0bfc_cb63_46fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0bfc_cb63_46fb/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, cape.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Long Term Mean 6-hourly CAPE, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0bfc_cb63_46fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0bfc_cb63_46fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0bfc_cb63_46fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0bfc_cb63_46fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0bfc_cb63_46fb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0bfc_cb63_46fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf56_d632_a4e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf56_d632_a4e4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf56_d632_a4e4/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, cin.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Long Term Mean 6-hourly CAPE, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf56_d632_a4e4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf56_d632_a4e4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf56_d632_a4e4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf56_d632_a4e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf56_d632_a4e4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bf56_d632_a4e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb9f_450c_8732", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb9f_450c_8732.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb9f_450c_8732/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, hgt.tropo.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Long Term Mean 6-hourly Geopotential Heights at Tropopause, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb9f_450c_8732_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb9f_450c_8732_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb9f_450c_8732/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb9f_450c_8732.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb9f_450c_8732&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fb9f_450c_8732"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c8a_b73c_b558", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c8a_b73c_b558.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4c8a_b73c_b558/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, pres.sfc.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean 6-hourly Pressure at Surface, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4c8a_b73c_b558_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4c8a_b73c_b558_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c8a_b73c_b558/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c8a_b73c_b558.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c8a_b73c_b558&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4c8a_b73c_b558"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e65_c596_8484", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e65_c596_8484.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7e65_c596_8484/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, prmsl.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Long Term Mean 6-hourly Pressure at Mean Sea Level, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7e65_c596_8484_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7e65_c596_8484_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e65_c596_8484/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e65_c596_8484.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e65_c596_8484&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7e65_c596_8484"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca30_4730_af34", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca30_4730_af34.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca30_4730_af34/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, tco3.eatm.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Long Term Mean 6-hourly Total Columnar Ozone, Dobsons)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca30_4730_af34_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca30_4730_af34_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca30_4730_af34/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca30_4730_af34.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca30_4730_af34&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ca30_4730_af34"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e99a_df8f_5599", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e99a_df8f_5599.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e99a_df8f_5599/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, air.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e99a_df8f_5599_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e99a_df8f_5599_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e99a_df8f_5599/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e99a_df8f_5599.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e99a_df8f_5599&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e99a_df8f_5599"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4e1_7361_8981", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4e1_7361_8981.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a4e1_7361_8981/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, hgt.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Long Term Mean 6-hourly Geopotential Heights Spread on Pressure Levels, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a4e1_7361_8981_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a4e1_7361_8981_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a4e1_7361_8981/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a4e1_7361_8981.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a4e1_7361_8981&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a4e1_7361_8981"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_043c_ab47_9620", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_043c_ab47_9620.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_043c_ab47_9620/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, omega.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Long Term Mean 6-hourly Omega Spread on Pressure Levels, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_043c_ab47_9620_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_043c_ab47_9620_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_043c_ab47_9620/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_043c_ab47_9620.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_043c_ab47_9620&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_043c_ab47_9620"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b973_31ee_c846", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b973_31ee_c846.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b973_31ee_c846/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, rhum.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Long Term Mean 6-hourly Relative Humidity Spread on Pressure Levels, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b973_31ee_c846_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b973_31ee_c846_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b973_31ee_c846/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b973_31ee_c846.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b973_31ee_c846&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b973_31ee_c846"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d20_202a_c06e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d20_202a_c06e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0d20_202a_c06e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, shum.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Long Term Mean 6-hourly Specific Humidity Spread on Pressure Levels, kg/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0d20_202a_c06e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0d20_202a_c06e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0d20_202a_c06e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0d20_202a_c06e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0d20_202a_c06e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0d20_202a_c06e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_029d_f5a3_7804", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_029d_f5a3_7804.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_029d_f5a3_7804/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, uwnd.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Long Term Mean 6-hourly U-wind Spread on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_029d_f5a3_7804_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_029d_f5a3_7804_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_029d_f5a3_7804/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_029d_f5a3_7804.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_029d_f5a3_7804&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_029d_f5a3_7804"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5409_c3d3_d790", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5409_c3d3_d790.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5409_c3d3_d790/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, vwnd.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Long Term Mean 6-hourly V-wind Spread on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5409_c3d3_d790_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5409_c3d3_d790_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5409_c3d3_d790/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5409_c3d3_d790.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5409_c3d3_d790&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5409_c3d3_d790"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae10_1997_eb93", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae10_1997_eb93.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae10_1997_eb93/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, air.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae10_1997_eb93_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae10_1997_eb93_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae10_1997_eb93/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae10_1997_eb93.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae10_1997_eb93&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ae10_1997_eb93"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1531_d31a_613b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1531_d31a_613b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1531_d31a_613b/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, hgt.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Long Term Mean 6-hourly Geopotential Heights on Pressure Levels, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1531_d31a_613b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1531_d31a_613b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1531_d31a_613b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1531_d31a_613b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1531_d31a_613b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1531_d31a_613b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa32_1d6b_5530", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa32_1d6b_5530.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fa32_1d6b_5530/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, omega.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Long Term Mean 6-hourly Omega on Pressure Levels, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fa32_1d6b_5530_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fa32_1d6b_5530_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fa32_1d6b_5530/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fa32_1d6b_5530.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fa32_1d6b_5530&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fa32_1d6b_5530"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccbe_23a3_d80e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccbe_23a3_d80e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ccbe_23a3_d80e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, rhum.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Long Term Mean 6-hourly Relative Humidity on Pressure Levels, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ccbe_23a3_d80e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ccbe_23a3_d80e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ccbe_23a3_d80e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ccbe_23a3_d80e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ccbe_23a3_d80e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ccbe_23a3_d80e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c92e_712c_2899", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c92e_712c_2899.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c92e_712c_2899/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, shum.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Long Term Mean 6-hourly Specific Humidity on Pressure Levels, kg/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c92e_712c_2899_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c92e_712c_2899_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c92e_712c_2899/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c92e_712c_2899.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c92e_712c_2899&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c92e_712c_2899"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_240f_3d53_3cc7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_240f_3d53_3cc7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_240f_3d53_3cc7/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, uwnd.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Long Term Mean 6-hourly U-wind on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_240f_3d53_3cc7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_240f_3d53_3cc7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_240f_3d53_3cc7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_240f_3d53_3cc7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_240f_3d53_3cc7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_240f_3d53_3cc7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7e2_2d9e_3d6d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7e2_2d9e_3d6d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f7e2_2d9e_3d6d/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, vwnd.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Long Term Mean 6-hourly V-wind on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f7e2_2d9e_3d6d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f7e2_2d9e_3d6d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f7e2_2d9e_3d6d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f7e2_2d9e_3d6d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f7e2_2d9e_3d6d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f7e2_2d9e_3d6d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f911_e52f_6930", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f911_e52f_6930.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f911_e52f_6930/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, time invariant, hgt.sfc), 2.0\u00b0, 1871", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Geopotential Height at Surface, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f911_e52f_6930_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f911_e52f_6930_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f911_e52f_6930/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f911_e52f_6930.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f911_e52f_6930&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f911_e52f_6930"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b552_91ba_ec3a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b552_91ba_ec3a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b552_91ba_ec3a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (air.sig995.mon.ltm), 2.0\u00b0, 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b552_91ba_ec3a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b552_91ba_ec3a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b552_91ba_ec3a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b552_91ba_ec3a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b552_91ba_ec3a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b552_91ba_ec3a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f478_1944_0cff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f478_1944_0cff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f478_1944_0cff/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (air.tropo.mon.ltm), 2.0\u00b0, 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f478_1944_0cff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f478_1944_0cff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f478_1944_0cff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f478_1944_0cff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f478_1944_0cff&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f478_1944_0cff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_62ec_436e_705e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_62ec_436e_705e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_62ec_436e_705e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (air.tropo.mon.mean), 2.0\u00b0, 1851-2014", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_62ec_436e_705e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_62ec_436e_705e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_62ec_436e_705e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_62ec_436e_705e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_62ec_436e_705e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_62ec_436e_705e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b2aa_6ec9_569f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b2aa_6ec9_569f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b2aa_6ec9_569f/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (hgt.tropo.mon.ltm), 2.0\u00b0, 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Long Term Mean Monthly Geopotential Heights Spread at Tropopause, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b2aa_6ec9_569f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b2aa_6ec9_569f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b2aa_6ec9_569f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b2aa_6ec9_569f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b2aa_6ec9_569f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b2aa_6ec9_569f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1195_25c6_2c87", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1195_25c6_2c87.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1195_25c6_2c87/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (hgt.tropo.mon.mean), 2.0\u00b0, 1851-2014", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Monthly Geopotential Heights Spread at Tropopause, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1195_25c6_2c87_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1195_25c6_2c87_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1195_25c6_2c87/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1195_25c6_2c87.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1195_25c6_2c87&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_1195_25c6_2c87"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b914_5679_91ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b914_5679_91ba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b914_5679_91ba/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (omega.sig995.4Xday.ltm), 2.0\u00b0, 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Long Term Mean 6-hourly Omega at sigma level 0.995, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b914_5679_91ba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b914_5679_91ba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b914_5679_91ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b914_5679_91ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b914_5679_91ba&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b914_5679_91ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ede_942c_6a81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ede_942c_6a81.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ede_942c_6a81/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (pottmp.sig995.4Xday.ltm), 2.0\u00b0, 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean 6-hourly Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ede_942c_6a81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ede_942c_6a81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ede_942c_6a81/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ede_942c_6a81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ede_942c_6a81&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5ede_942c_6a81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b056_24be_6b27", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b056_24be_6b27.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b056_24be_6b27/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (pres.sfc.4Xday.ltm), 2.0\u00b0, 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean 6-hourly Pressure Spread at Surface, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b056_24be_6b27_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b056_24be_6b27_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b056_24be_6b27/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b056_24be_6b27.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b056_24be_6b27&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b056_24be_6b27"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfef_ba66_fb56", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfef_ba66_fb56.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bfef_ba66_fb56/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (pres.sfc.mon.mean), 2.0\u00b0, 1851-2014", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Pressure Spread at Surface, Pa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bfef_ba66_fb56_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bfef_ba66_fb56_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bfef_ba66_fb56/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bfef_ba66_fb56.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bfef_ba66_fb56&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_bfef_ba66_fb56"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30d4_709b_1f02", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30d4_709b_1f02.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_30d4_709b_1f02/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (pres.tropo.mon.ltm), 2.0\u00b0, 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean Monthly Pressure Spread at Tropopause, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_30d4_709b_1f02_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_30d4_709b_1f02_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_30d4_709b_1f02/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_30d4_709b_1f02.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_30d4_709b_1f02&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_30d4_709b_1f02"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a1f_9105_84df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a1f_9105_84df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1a1f_9105_84df/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (tcdc.bndrylyr.8Xday.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Boundary Layer Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1a1f_9105_84df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1a1f_9105_84df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1a1f_9105_84df/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1a1f_9105_84df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1a1f_9105_84df&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_1a1f_9105_84df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d48_1932_1802", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d48_1932_1802.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0d48_1932_1802/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (tcdc.bndrylyr.mon.mean), 1851-2014", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Boundary Layer Cloud Cover Spread, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0d48_1932_1802_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0d48_1932_1802_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0d48_1932_1802/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0d48_1932_1802.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0d48_1932_1802&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0d48_1932_1802"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_106f_e077_9cdc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_106f_e077_9cdc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_106f_e077_9cdc/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (tcdc.bndrylyr.mon.mean), 1851-2014", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Boundary Layer Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_106f_e077_9cdc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_106f_e077_9cdc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_106f_e077_9cdc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_106f_e077_9cdc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_106f_e077_9cdc&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_106f_e077_9cdc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_058e_82f8_2f28", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_058e_82f8_2f28.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_058e_82f8_2f28/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (tcdc.convcld.8Xday.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Convective Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_058e_82f8_2f28_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_058e_82f8_2f28_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_058e_82f8_2f28/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_058e_82f8_2f28.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_058e_82f8_2f28&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_058e_82f8_2f28"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d9f5_f780_0953", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d9f5_f780_0953.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d9f5_f780_0953/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (tco3.eatm.mon.ltm), 2.0\u00b0, 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Long Term Mean Monthly Total Columnar Ozone Spread, Dobsons)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d9f5_f780_0953_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d9f5_f780_0953_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d9f5_f780_0953/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d9f5_f780_0953.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d9f5_f780_0953&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d9f5_f780_0953"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cca_d24d_54b4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cca_d24d_54b4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9cca_d24d_54b4/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (tco3.eatm.mon.mean), 2.0\u00b0, 1851-2014", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Monthly Total Columnar Ozone Spread, Dobsons)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9cca_d24d_54b4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9cca_d24d_54b4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9cca_d24d_54b4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9cca_d24d_54b4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9cca_d24d_54b4&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9cca_d24d_54b4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea86_39e9_18f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea86_39e9_18f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ea86_39e9_18f1/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel sprd, cape.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Long Term Mean 6-hourly CAPE Spread, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ea86_39e9_18f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ea86_39e9_18f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ea86_39e9_18f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ea86_39e9_18f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ea86_39e9_18f1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_ea86_39e9_18f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b5d_da55_af63", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b5d_da55_af63.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8b5d_da55_af63/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel sprd, cape.mon.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Long Term Mean Monthly CAPE Spread, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8b5d_da55_af63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8b5d_da55_af63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8b5d_da55_af63/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8b5d_da55_af63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8b5d_da55_af63&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8b5d_da55_af63"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7913_7d7b_5e04", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7913_7d7b_5e04.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7913_7d7b_5e04/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel sprd, cape.mon.mean), 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Monthly CAPE Spread, J/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7913_7d7b_5e04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7913_7d7b_5e04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7913_7d7b_5e04/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7913_7d7b_5e04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7913_7d7b_5e04&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7913_7d7b_5e04"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8703_53aa_6f5a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8703_53aa_6f5a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8703_53aa_6f5a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel sprd, cin.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Long Term Mean 6-hourly CIN Spread, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8703_53aa_6f5a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8703_53aa_6f5a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8703_53aa_6f5a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8703_53aa_6f5a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8703_53aa_6f5a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8703_53aa_6f5a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d178_6a13_e2ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d178_6a13_e2ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d178_6a13_e2ee/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel sprd, cin.mon.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Long Term Mean Monthly CIN Spread, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d178_6a13_e2ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d178_6a13_e2ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d178_6a13_e2ee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d178_6a13_e2ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d178_6a13_e2ee&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d178_6a13_e2ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d17d_bfa2_dbd8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d17d_bfa2_dbd8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d17d_bfa2_dbd8/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel sprd, cin.mon.mean), 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Monthly CIN Spread, J/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d17d_bfa2_dbd8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d17d_bfa2_dbd8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d17d_bfa2_dbd8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d17d_bfa2_dbd8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d17d_bfa2_dbd8&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d17d_bfa2_dbd8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2564_5f45_75bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2564_5f45_75bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2564_5f45_75bf/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel sprd, pres.sfc.mon.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean Monthly Pressure Spread at Surface, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2564_5f45_75bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2564_5f45_75bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2564_5f45_75bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2564_5f45_75bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2564_5f45_75bf&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2564_5f45_75bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8be0_547d_ab85", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8be0_547d_ab85.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8be0_547d_ab85/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel sprd, prmsl.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Long Term Mean 6-hourly Pressure Spread at Mean Sea Level, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8be0_547d_ab85_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8be0_547d_ab85_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8be0_547d_ab85/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8be0_547d_ab85.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8be0_547d_ab85&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8be0_547d_ab85"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca60_a3d7_72d6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca60_a3d7_72d6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca60_a3d7_72d6/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel sprd, prmsl.mon.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Long Term Mean Monthly Pressure Spread at Mean Sea Level, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca60_a3d7_72d6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca60_a3d7_72d6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca60_a3d7_72d6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca60_a3d7_72d6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca60_a3d7_72d6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_ca60_a3d7_72d6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2051_37af_279b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2051_37af_279b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2051_37af_279b/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel sprd, prmsl.mon.mean), 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Monthly Pressure Spread at Mean Sea Level, Pa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2051_37af_279b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2051_37af_279b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2051_37af_279b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2051_37af_279b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2051_37af_279b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2051_37af_279b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2903_cfd7_e71b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2903_cfd7_e71b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2903_cfd7_e71b/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.2m.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2903_cfd7_e71b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2903_cfd7_e71b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2903_cfd7_e71b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2903_cfd7_e71b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2903_cfd7_e71b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2903_cfd7_e71b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f10_da40_ffa3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f10_da40_ffa3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f10_da40_ffa3/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f10_da40_ffa3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f10_da40_ffa3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f10_da40_ffa3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f10_da40_ffa3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f10_da40_ffa3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0f10_da40_ffa3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98f4_98a7_ebd4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98f4_98a7_ebd4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_98f4_98a7_ebd4/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_98f4_98a7_ebd4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_98f4_98a7_ebd4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_98f4_98a7_ebd4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_98f4_98a7_ebd4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_98f4_98a7_ebd4&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_98f4_98a7_ebd4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38e2_4623_3d85", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38e2_4623_3d85.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_38e2_4623_3d85/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_38e2_4623_3d85_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_38e2_4623_3d85_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_38e2_4623_3d85/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_38e2_4623_3d85.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_38e2_4623_3d85&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_38e2_4623_3d85"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73b7_feea_c0e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73b7_feea_c0e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_73b7_feea_c0e3/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_73b7_feea_c0e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_73b7_feea_c0e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_73b7_feea_c0e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_73b7_feea_c0e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_73b7_feea_c0e3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_73b7_feea_c0e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3235_024d_f86a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3235_024d_f86a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3235_024d_f86a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sfc.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature at Surface, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3235_024d_f86a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3235_024d_f86a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3235_024d_f86a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3235_024d_f86a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3235_024d_f86a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3235_024d_f86a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_314e_d1d6_f04c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_314e_d1d6_f04c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_314e_d1d6_f04c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sfc.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at Surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_314e_d1d6_f04c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_314e_d1d6_f04c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_314e_d1d6_f04c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_314e_d1d6_f04c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_314e_d1d6_f04c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_314e_d1d6_f04c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f950_cedb_93ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f950_cedb_93ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f950_cedb_93ff/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sfc.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f950_cedb_93ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f950_cedb_93ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f950_cedb_93ff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f950_cedb_93ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f950_cedb_93ff&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f950_cedb_93ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7655_8c18_3a9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7655_8c18_3a9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7655_8c18_3a9d/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7655_8c18_3a9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7655_8c18_3a9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7655_8c18_3a9d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7655_8c18_3a9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7655_8c18_3a9d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7655_8c18_3a9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5e1_2e73_fabb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5e1_2e73_fabb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5e1_2e73_fabb/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at Surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5e1_2e73_fabb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5e1_2e73_fabb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5e1_2e73_fabb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5e1_2e73_fabb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5e1_2e73_fabb&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b5e1_2e73_fabb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b45_5fda_e74c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b45_5fda_e74c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b45_5fda_e74c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sig995.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b45_5fda_e74c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b45_5fda_e74c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b45_5fda_e74c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b45_5fda_e74c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b45_5fda_e74c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5b45_5fda_e74c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2dfc_02f7_6b58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2dfc_02f7_6b58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2dfc_02f7_6b58/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.tropo.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2dfc_02f7_6b58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2dfc_02f7_6b58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2dfc_02f7_6b58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2dfc_02f7_6b58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2dfc_02f7_6b58&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2dfc_02f7_6b58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c1cf_0b46_6616", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c1cf_0b46_6616.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c1cf_0b46_6616/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, albedo.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nalbedo (3-hourly Long Term Mean Albedo at Surface, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c1cf_0b46_6616_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c1cf_0b46_6616_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c1cf_0b46_6616/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c1cf_0b46_6616.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c1cf_0b46_6616&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c1cf_0b46_6616"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22d6_89de_8b80", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22d6_89de_8b80.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_22d6_89de_8b80/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, albedo.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nalbedo (Long Term Mean Monthly Albedo Spread at surface, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_22d6_89de_8b80_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_22d6_89de_8b80_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_22d6_89de_8b80/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_22d6_89de_8b80.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_22d6_89de_8b80&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_22d6_89de_8b80"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e070_cdaa_88ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e070_cdaa_88ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e070_cdaa_88ee/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, albedo.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nalbedo (Long Term Mean Monthly Albedo at Surface, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e070_cdaa_88ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e070_cdaa_88ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e070_cdaa_88ee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e070_cdaa_88ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e070_cdaa_88ee&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e070_cdaa_88ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_68ff_fe3f_2ee1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_68ff_fe3f_2ee1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_68ff_fe3f_2ee1/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, albedo.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nalbedo (Monthly Albedo Spread at surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_68ff_fe3f_2ee1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_68ff_fe3f_2ee1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_68ff_fe3f_2ee1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_68ff_fe3f_2ee1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_68ff_fe3f_2ee1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_68ff_fe3f_2ee1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7f1_27bc_6384", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7f1_27bc_6384.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f7f1_27bc_6384/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, albedo.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nalbedo (Monthly Albedo at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f7f1_27bc_6384_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f7f1_27bc_6384_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f7f1_27bc_6384/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f7f1_27bc_6384.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f7f1_27bc_6384&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f7f1_27bc_6384"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_39c8_ba06_6b66", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_39c8_ba06_6b66.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_39c8_ba06_6b66/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cape.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Long Term Mean 6-hourly CAPE, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_39c8_ba06_6b66_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_39c8_ba06_6b66_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_39c8_ba06_6b66/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_39c8_ba06_6b66.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_39c8_ba06_6b66&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_39c8_ba06_6b66"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4e6_f2df_ac27", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4e6_f2df_ac27.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d4e6_f2df_ac27/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cduvb.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncduvb (3-hourly Long Term Mean Clear Sky UV-B Downward Solar Flux, W m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d4e6_f2df_ac27_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d4e6_f2df_ac27_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d4e6_f2df_ac27/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d4e6_f2df_ac27.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d4e6_f2df_ac27&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d4e6_f2df_ac27"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_16b9_99eb_d701", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_16b9_99eb_d701.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_16b9_99eb_d701/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cduvb.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncduvb (Long Term Mean Monthly Clear Sky UV-B Downward Solar Flux, W m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_16b9_99eb_d701_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_16b9_99eb_d701_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_16b9_99eb_d701/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_16b9_99eb_d701.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_16b9_99eb_d701&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_16b9_99eb_d701"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a83d_982c_7d9c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a83d_982c_7d9c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a83d_982c_7d9c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cduvb.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncduvb (Long Term Mean Monthly Clear Sky UV-B Downward Solar Flux Spread, W m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a83d_982c_7d9c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a83d_982c_7d9c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a83d_982c_7d9c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a83d_982c_7d9c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a83d_982c_7d9c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a83d_982c_7d9c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_643c_92e9_6d90", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_643c_92e9_6d90.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_643c_92e9_6d90/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cduvb.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncduvb (Monthly Clear Sky UV-B Downward Solar Flux, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_643c_92e9_6d90_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_643c_92e9_6d90_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_643c_92e9_6d90/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_643c_92e9_6d90.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_643c_92e9_6d90&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_643c_92e9_6d90"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6bf1_6fc1_b4ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6bf1_6fc1_b4ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6bf1_6fc1_b4ca/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cduvb.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncduvb (Monthly Clear Sky UV-B Downward Solar Flux Spread, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6bf1_6fc1_b4ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6bf1_6fc1_b4ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6bf1_6fc1_b4ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6bf1_6fc1_b4ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6bf1_6fc1_b4ca&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6bf1_6fc1_b4ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1ed_5a99_0f8b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1ed_5a99_0f8b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b1ed_5a99_0f8b/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cin.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Long Term Mean 6-hourly CAPE, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b1ed_5a99_0f8b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b1ed_5a99_0f8b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b1ed_5a99_0f8b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b1ed_5a99_0f8b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b1ed_5a99_0f8b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b1ed_5a99_0f8b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0eea_5965_bd30", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0eea_5965_bd30.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0eea_5965_bd30/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cldwtr.eatm.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldwtr (Long Term Mean 6-hourly Cloud Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0eea_5965_bd30_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0eea_5965_bd30_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0eea_5965_bd30/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0eea_5965_bd30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0eea_5965_bd30&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0eea_5965_bd30"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dab_3f6f_a896", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dab_3f6f_a896.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8dab_3f6f_a896/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cnwat.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncnwat (3-hourly Long Term Mean Plant Canopy Surface Water, kg m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8dab_3f6f_a896_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8dab_3f6f_a896_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8dab_3f6f_a896/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8dab_3f6f_a896.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8dab_3f6f_a896&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8dab_3f6f_a896"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_40ac_20ad_b67d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_40ac_20ad_b67d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_40ac_20ad_b67d/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cnwat.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncnwat (Long Term Mean Monthly Plant Canopy Surface Water Spread, kg m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_40ac_20ad_b67d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_40ac_20ad_b67d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_40ac_20ad_b67d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_40ac_20ad_b67d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_40ac_20ad_b67d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_40ac_20ad_b67d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_809a_213b_649c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_809a_213b_649c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_809a_213b_649c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cnwat.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncnwat (Long Term Mean Monthly Plant Canopy Surface Water, kg m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_809a_213b_649c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_809a_213b_649c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_809a_213b_649c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_809a_213b_649c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_809a_213b_649c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_809a_213b_649c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d477_89fa_75b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d477_89fa_75b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d477_89fa_75b3/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cnwat.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncnwat (Monthly Plant Canopy Surface Water, kg m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d477_89fa_75b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d477_89fa_75b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d477_89fa_75b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d477_89fa_75b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d477_89fa_75b3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d477_89fa_75b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec58_2a0f_4148", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec58_2a0f_4148.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ec58_2a0f_4148/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cnwat.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncnwat (Monthly Plant Canopy Surface Water Spread, kg m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ec58_2a0f_4148_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ec58_2a0f_4148_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ec58_2a0f_4148/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ec58_2a0f_4148.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ec58_2a0f_4148&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_ec58_2a0f_4148"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd70_6149_3e1b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd70_6149_3e1b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cd70_6149_3e1b/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cprat.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (3-hourly Long Term Mean Convective Precipitation Rate, kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cd70_6149_3e1b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cd70_6149_3e1b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cd70_6149_3e1b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cd70_6149_3e1b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cd70_6149_3e1b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_cd70_6149_3e1b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2050_62cb_ac39", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2050_62cb_ac39.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2050_62cb_ac39/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cprat.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (Long Term Mean Monthly Convective Precipitation Rate Spread, kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2050_62cb_ac39_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2050_62cb_ac39_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2050_62cb_ac39/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2050_62cb_ac39.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2050_62cb_ac39&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2050_62cb_ac39"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_584b_d8df_d4ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_584b_d8df_d4ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_584b_d8df_d4ef/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cprat.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (Long Term Mean Monthly Convective Precipitation Rate, kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_584b_d8df_d4ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_584b_d8df_d4ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_584b_d8df_d4ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_584b_d8df_d4ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_584b_d8df_d4ef&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_584b_d8df_d4ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fc1_2644_30ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fc1_2644_30ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2fc1_2644_30ee/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cprat.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (Monthly Convective Precipitation Rate, kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2fc1_2644_30ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2fc1_2644_30ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2fc1_2644_30ee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2fc1_2644_30ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2fc1_2644_30ee&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2fc1_2644_30ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b2a0_2b68_fb0e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b2a0_2b68_fb0e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b2a0_2b68_fb0e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cprat.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (Monthly Convective Precipitation Rate Spread, kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b2a0_2b68_fb0e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b2a0_2b68_fb0e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b2a0_2b68_fb0e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b2a0_2b68_fb0e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b2a0_2b68_fb0e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b2a0_2b68_fb0e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_67b2_b315_8b4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_67b2_b315_8b4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_67b2_b315_8b4d/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cwork.eatm.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncwork (3-hourly Long Term Mean Cloud Work Function, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_67b2_b315_8b4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_67b2_b315_8b4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_67b2_b315_8b4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_67b2_b315_8b4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_67b2_b315_8b4d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_67b2_b315_8b4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6891_1ba8_c1ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6891_1ba8_c1ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6891_1ba8_c1ac/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cwork.eatm.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncwork (Long Term Mean Monthly Cloud Work Function Spread, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6891_1ba8_c1ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6891_1ba8_c1ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6891_1ba8_c1ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6891_1ba8_c1ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6891_1ba8_c1ac&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6891_1ba8_c1ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a246_5241_ee6c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a246_5241_ee6c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a246_5241_ee6c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cwork.eatm.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncwork (Long Term Mean Monthly Cloud Work Function, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a246_5241_ee6c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a246_5241_ee6c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a246_5241_ee6c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a246_5241_ee6c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a246_5241_ee6c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a246_5241_ee6c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_40c6_894b_1b81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_40c6_894b_1b81.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_40c6_894b_1b81/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cwork.eatm.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncwork (Monthly Cloud Work Function, J/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_40c6_894b_1b81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_40c6_894b_1b81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_40c6_894b_1b81/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_40c6_894b_1b81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_40c6_894b_1b81&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_40c6_894b_1b81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c496_a0f5_fb81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c496_a0f5_fb81.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c496_a0f5_fb81/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cwork.eatm.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncwork (Monthly Cloud Work Function Spread, J/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c496_a0f5_fb81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c496_a0f5_fb81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c496_a0f5_fb81/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c496_a0f5_fb81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c496_a0f5_fb81&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c496_a0f5_fb81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad23_405a_1b25", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad23_405a_1b25.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ad23_405a_1b25/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, dlwrf.sfc.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (3-hourly Long Term Mean Downward Longwave Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ad23_405a_1b25_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ad23_405a_1b25_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ad23_405a_1b25/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ad23_405a_1b25.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ad23_405a_1b25&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_ad23_405a_1b25"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3196_a490_d259", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3196_a490_d259.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3196_a490_d259/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, dlwrf.sfc.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (Long Term Mean Monthly Downward Longwave Radiation Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3196_a490_d259_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3196_a490_d259_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3196_a490_d259/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3196_a490_d259.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3196_a490_d259&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3196_a490_d259"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d09_0355_443a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d09_0355_443a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d09_0355_443a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, dlwrf.sfc.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (Long Term Mean Monthly Downward Longwave Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d09_0355_443a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d09_0355_443a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d09_0355_443a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d09_0355_443a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d09_0355_443a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8d09_0355_443a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5698_ec45_3e11", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5698_ec45_3e11.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5698_ec45_3e11/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, dlwrf.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (Monthly Downward Longwave Radiation Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5698_ec45_3e11_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5698_ec45_3e11_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5698_ec45_3e11/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5698_ec45_3e11.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5698_ec45_3e11&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5698_ec45_3e11"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc6c_3741_5648", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc6c_3741_5648.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc6c_3741_5648/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, dlwrf.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (Monthly Downward Longwave Radiation Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc6c_3741_5648_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc6c_3741_5648_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc6c_3741_5648/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc6c_3741_5648.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc6c_3741_5648&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_cc6c_3741_5648"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d74_be63_9ab7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d74_be63_9ab7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5d74_be63_9ab7/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, dswrf.sfc.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (3-hourly Long Term Mean Downward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5d74_be63_9ab7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5d74_be63_9ab7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5d74_be63_9ab7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5d74_be63_9ab7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5d74_be63_9ab7&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5d74_be63_9ab7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63c9_33b8_dcb0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63c9_33b8_dcb0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_63c9_33b8_dcb0/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, dswrf.sfc.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Long Term Mean Monthly Downward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_63c9_33b8_dcb0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_63c9_33b8_dcb0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_63c9_33b8_dcb0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_63c9_33b8_dcb0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_63c9_33b8_dcb0&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_63c9_33b8_dcb0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7942_b45c_4775", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7942_b45c_4775.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7942_b45c_4775/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, dswrf.sfc.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Long Term Mean Monthly Downward Solar Radiation Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7942_b45c_4775_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7942_b45c_4775_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7942_b45c_4775/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7942_b45c_4775.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7942_b45c_4775&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7942_b45c_4775"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44b5_cf03_f71d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44b5_cf03_f71d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_44b5_cf03_f71d/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, dswrf.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Monthly Downward Solar Radiation Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_44b5_cf03_f71d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_44b5_cf03_f71d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_44b5_cf03_f71d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_44b5_cf03_f71d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_44b5_cf03_f71d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_44b5_cf03_f71d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b87c_e5ff_113e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b87c_e5ff_113e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b87c_e5ff_113e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, dswrf.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Monthly Downward Solar Radiation Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b87c_e5ff_113e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b87c_e5ff_113e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b87c_e5ff_113e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b87c_e5ff_113e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b87c_e5ff_113e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b87c_e5ff_113e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cebb_1e7e_53a5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cebb_1e7e_53a5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cebb_1e7e_53a5/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, duvb.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nduvb (3-hourly Long Term Mean UV-B Downward Solar Flux, W m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cebb_1e7e_53a5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cebb_1e7e_53a5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cebb_1e7e_53a5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cebb_1e7e_53a5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cebb_1e7e_53a5&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_cebb_1e7e_53a5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c1da_9461_df43", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c1da_9461_df43.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c1da_9461_df43/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, duvb.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nduvb (Long Term Mean Monthly UV-B Downward Solar Flux, W m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c1da_9461_df43_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c1da_9461_df43_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c1da_9461_df43/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c1da_9461_df43.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c1da_9461_df43&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c1da_9461_df43"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb79_8298_f283", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb79_8298_f283.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb79_8298_f283/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, duvb.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nduvb (Long Term Mean Monthly UV-B Downward Solar Flux Spread, W m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb79_8298_f283_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb79_8298_f283_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb79_8298_f283/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb79_8298_f283.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb79_8298_f283&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_fb79_8298_f283"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a122_51f3_c4e9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a122_51f3_c4e9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a122_51f3_c4e9/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, duvb.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nduvb (Monthly UV-B Downward Solar Flux Spread, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a122_51f3_c4e9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a122_51f3_c4e9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a122_51f3_c4e9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a122_51f3_c4e9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a122_51f3_c4e9&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a122_51f3_c4e9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6c0_1511_db1c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6c0_1511_db1c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d6c0_1511_db1c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, duvb.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nduvb (Monthly UV-B Downward Solar Flux, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d6c0_1511_db1c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d6c0_1511_db1c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d6c0_1511_db1c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d6c0_1511_db1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d6c0_1511_db1c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d6c0_1511_db1c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8ee_faa4_e915", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8ee_faa4_e915.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f8ee_faa4_e915/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, evbs.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nevbs (3-hourly Long Term Mean Direct Evaporation From Bare Soil, W m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f8ee_faa4_e915_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f8ee_faa4_e915_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f8ee_faa4_e915/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f8ee_faa4_e915.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f8ee_faa4_e915&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f8ee_faa4_e915"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c503_dfe7_4d0a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c503_dfe7_4d0a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c503_dfe7_4d0a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, evbs.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nevbs (Long Term Mean Monthly Direct Evaporation From Bare Soil Spread, W m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c503_dfe7_4d0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c503_dfe7_4d0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c503_dfe7_4d0a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c503_dfe7_4d0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c503_dfe7_4d0a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c503_dfe7_4d0a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6de_42df_20df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6de_42df_20df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e6de_42df_20df/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, evbs.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nevbs (Long Term Mean Monthly Direct Evaporation From Bare Soil, W m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e6de_42df_20df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e6de_42df_20df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e6de_42df_20df/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e6de_42df_20df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e6de_42df_20df&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e6de_42df_20df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6cf6_9631_1297", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6cf6_9631_1297.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6cf6_9631_1297/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, evbs.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nevbs (Monthly Direct Evaporation From Bare Soil, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6cf6_9631_1297_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6cf6_9631_1297_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6cf6_9631_1297/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6cf6_9631_1297.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6cf6_9631_1297&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6cf6_9631_1297"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d23_80f9_72ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d23_80f9_72ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d23_80f9_72ae/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, evbs.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nevbs (Monthly Direct Evaporation From Bare Soil Spread, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d23_80f9_72ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d23_80f9_72ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d23_80f9_72ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d23_80f9_72ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d23_80f9_72ae&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8d23_80f9_72ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_528f_4749_c6f4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_528f_4749_c6f4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_528f_4749_c6f4/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, evcw.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nevcw (3-hourly Long Term Mean Canopy Water Evaporation, W m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_528f_4749_c6f4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_528f_4749_c6f4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_528f_4749_c6f4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_528f_4749_c6f4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_528f_4749_c6f4&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_528f_4749_c6f4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cf0_45d3_182c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cf0_45d3_182c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1cf0_45d3_182c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, evcw.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nevcw (Long Term Mean Monthly Canopy Water Evaporation, W m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1cf0_45d3_182c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1cf0_45d3_182c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1cf0_45d3_182c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1cf0_45d3_182c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1cf0_45d3_182c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_1cf0_45d3_182c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b5b_32ba_03b2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b5b_32ba_03b2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b5b_32ba_03b2/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, evcw.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nevcw (Long Term Mean Monthly Canopy Water Evaporation Spread, W m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b5b_32ba_03b2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b5b_32ba_03b2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b5b_32ba_03b2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b5b_32ba_03b2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b5b_32ba_03b2&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5b5b_32ba_03b2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ec5_c81a_86d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ec5_c81a_86d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ec5_c81a_86d9/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, evcw.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nevcw (Monthly Canopy Water Evaporation, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ec5_c81a_86d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ec5_c81a_86d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ec5_c81a_86d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ec5_c81a_86d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ec5_c81a_86d9&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5ec5_c81a_86d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ea1_0ee3_d93c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ea1_0ee3_d93c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9ea1_0ee3_d93c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, evcw.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nevcw (Monthly Canopy Water Evaporation Spread, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9ea1_0ee3_d93c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9ea1_0ee3_d93c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9ea1_0ee3_d93c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9ea1_0ee3_d93c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9ea1_0ee3_d93c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9ea1_0ee3_d93c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8709_69fc_6f15", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8709_69fc_6f15.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8709_69fc_6f15/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, gflux.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (3-hourly Long Term Mean Ground Heat Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8709_69fc_6f15_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8709_69fc_6f15_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8709_69fc_6f15/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8709_69fc_6f15.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8709_69fc_6f15&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8709_69fc_6f15"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ec6_0235_514e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ec6_0235_514e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ec6_0235_514e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, gflux.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Long Term Mean Monthly Ground Heat Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ec6_0235_514e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ec6_0235_514e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ec6_0235_514e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ec6_0235_514e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ec6_0235_514e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3ec6_0235_514e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8ee_5529_c931", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8ee_5529_c931.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a8ee_5529_c931/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, gflux.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Long Term Mean Monthly Ground Heat Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a8ee_5529_c931_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a8ee_5529_c931_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a8ee_5529_c931/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a8ee_5529_c931.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a8ee_5529_c931&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a8ee_5529_c931"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6471_926c_1a56", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6471_926c_1a56.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6471_926c_1a56/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, gflux.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Monthly Ground Heat Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6471_926c_1a56_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6471_926c_1a56_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6471_926c_1a56/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6471_926c_1a56.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6471_926c_1a56&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6471_926c_1a56"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae20_b176_9c1c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae20_b176_9c1c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae20_b176_9c1c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, gflux.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Monthly Ground Heat Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae20_b176_9c1c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae20_b176_9c1c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae20_b176_9c1c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae20_b176_9c1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae20_b176_9c1c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_ae20_b176_9c1c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26f1_c9e7_3674", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26f1_c9e7_3674.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_26f1_c9e7_3674/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, hgt.tropo.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Long Term Mean 6-hourly Geopotential Heights at Tropopause, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_26f1_c9e7_3674_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_26f1_c9e7_3674_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_26f1_c9e7_3674/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_26f1_c9e7_3674.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_26f1_c9e7_3674&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_26f1_c9e7_3674"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1b47_3ca2_c25f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1b47_3ca2_c25f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1b47_3ca2_c25f/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, hpbl.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhpbl (3-hourly Long Term Mean Height of Pressure Boundary Layer, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1b47_3ca2_c25f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1b47_3ca2_c25f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1b47_3ca2_c25f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1b47_3ca2_c25f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1b47_3ca2_c25f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_1b47_3ca2_c25f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cd7_5ff3_3823", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cd7_5ff3_3823.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8cd7_5ff3_3823/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, hpbl.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhpbl (Long Term Mean Monthly Height Spread of Pressure Boundary Layer, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8cd7_5ff3_3823_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8cd7_5ff3_3823_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8cd7_5ff3_3823/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8cd7_5ff3_3823.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8cd7_5ff3_3823&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8cd7_5ff3_3823"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ae8_57ab_e0d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ae8_57ab_e0d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9ae8_57ab_e0d4/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, hpbl.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhpbl (Long Term Mean Monthly Height of Pressure Boundary Layer, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9ae8_57ab_e0d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9ae8_57ab_e0d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9ae8_57ab_e0d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9ae8_57ab_e0d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9ae8_57ab_e0d4&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9ae8_57ab_e0d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2935_b150_71d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2935_b150_71d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2935_b150_71d7/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, hpbl.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhpbl (Monthly Height Spread of Pressure Boundary Layer, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2935_b150_71d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2935_b150_71d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2935_b150_71d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2935_b150_71d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2935_b150_71d7&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2935_b150_71d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8416_5d3a_e31a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8416_5d3a_e31a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8416_5d3a_e31a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, hpbl.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhpbl (Monthly Height of Pressure Boundary Layer, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8416_5d3a_e31a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8416_5d3a_e31a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8416_5d3a_e31a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8416_5d3a_e31a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8416_5d3a_e31a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8416_5d3a_e31a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ba9_71be_90ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ba9_71be_90ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ba9_71be_90ea/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, icec.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (3-hourly Long Term Mean Ice Concentration at surface, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ba9_71be_90ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ba9_71be_90ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ba9_71be_90ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ba9_71be_90ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ba9_71be_90ea&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7ba9_71be_90ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_422b_1db9_3c73", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_422b_1db9_3c73.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_422b_1db9_3c73/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, icec.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Long Term Mean Monthly Ice Concentration at surface, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_422b_1db9_3c73_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_422b_1db9_3c73_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_422b_1db9_3c73/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_422b_1db9_3c73.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_422b_1db9_3c73&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_422b_1db9_3c73"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f04_cc87_eb1d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f04_cc87_eb1d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6f04_cc87_eb1d/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, icec.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Monthly Ice Concentration at surface, frac.)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6f04_cc87_eb1d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6f04_cc87_eb1d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6f04_cc87_eb1d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6f04_cc87_eb1d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6f04_cc87_eb1d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6f04_cc87_eb1d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da4d_29dd_1674", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da4d_29dd_1674.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da4d_29dd_1674/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, icet.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicet (3-hourly Long Term Mean Ice Thickness at Surface, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da4d_29dd_1674_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da4d_29dd_1674_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da4d_29dd_1674/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da4d_29dd_1674.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da4d_29dd_1674&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_da4d_29dd_1674"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_47f0_1b2f_eea6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_47f0_1b2f_eea6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_47f0_1b2f_eea6/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, icet.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicet (Long Term Mean Monthly Ice Thickness at Surface, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_47f0_1b2f_eea6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_47f0_1b2f_eea6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_47f0_1b2f_eea6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_47f0_1b2f_eea6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_47f0_1b2f_eea6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_47f0_1b2f_eea6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ffa_f04c_a99c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ffa_f04c_a99c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ffa_f04c_a99c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, icet.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicet (Long Term Mean Monthly Ice Thickness Spread at Surface, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ffa_f04c_a99c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ffa_f04c_a99c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ffa_f04c_a99c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ffa_f04c_a99c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ffa_f04c_a99c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7ffa_f04c_a99c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_430e_d3e3_149b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_430e_d3e3_149b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_430e_d3e3_149b/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, icet.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicet (Monthly Ice Thickness Spread at Surface, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_430e_d3e3_149b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_430e_d3e3_149b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_430e_d3e3_149b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_430e_d3e3_149b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_430e_d3e3_149b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_430e_d3e3_149b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fec1_6bf8_98d6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fec1_6bf8_98d6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fec1_6bf8_98d6/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, icet.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicet (Monthly Ice Thickness at Surface, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fec1_6bf8_98d6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fec1_6bf8_98d6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fec1_6bf8_98d6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fec1_6bf8_98d6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fec1_6bf8_98d6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_fec1_6bf8_98d6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e596_17e8_0a3e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e596_17e8_0a3e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e596_17e8_0a3e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, lhtfl.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (3-hourly Long Term Mean Latent Heat Net Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e596_17e8_0a3e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e596_17e8_0a3e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e596_17e8_0a3e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e596_17e8_0a3e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e596_17e8_0a3e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e596_17e8_0a3e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7511_fd96_3ede", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7511_fd96_3ede.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7511_fd96_3ede/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, lhtfl.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Long Term Mean Monthly Latent Heat Net Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7511_fd96_3ede_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7511_fd96_3ede_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7511_fd96_3ede/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7511_fd96_3ede.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7511_fd96_3ede&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7511_fd96_3ede"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aff8_a9c0_719d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aff8_a9c0_719d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aff8_a9c0_719d/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, lhtfl.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Long Term Mean Monthly Latent Heat Net Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aff8_a9c0_719d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aff8_a9c0_719d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aff8_a9c0_719d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aff8_a9c0_719d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aff8_a9c0_719d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_aff8_a9c0_719d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5195_84d8_f2cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5195_84d8_f2cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5195_84d8_f2cb/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, lhtfl.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Monthly Latent Heat Net Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5195_84d8_f2cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5195_84d8_f2cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5195_84d8_f2cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5195_84d8_f2cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5195_84d8_f2cb&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5195_84d8_f2cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6983_a165_264a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6983_a165_264a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6983_a165_264a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, lhtfl.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Monthly Latent Heat Net Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6983_a165_264a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6983_a165_264a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6983_a165_264a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6983_a165_264a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6983_a165_264a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6983_a165_264a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ff8_9e96_b13b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ff8_9e96_b13b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ff8_9e96_b13b/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pevpr.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (3-hourly Long Term Mean Potential Evaporation Rate at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ff8_9e96_b13b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ff8_9e96_b13b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ff8_9e96_b13b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ff8_9e96_b13b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ff8_9e96_b13b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5ff8_9e96_b13b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e1a_fd8f_c06e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e1a_fd8f_c06e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e1a_fd8f_c06e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pevpr.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Long Term Mean Monthly Potential Evaporation Rate at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e1a_fd8f_c06e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e1a_fd8f_c06e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e1a_fd8f_c06e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e1a_fd8f_c06e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e1a_fd8f_c06e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0e1a_fd8f_c06e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4035_9baa_5e89", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4035_9baa_5e89.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4035_9baa_5e89/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pevpr.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Long Term Mean Monthly Potential Evaporation Rate Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4035_9baa_5e89_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4035_9baa_5e89_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4035_9baa_5e89/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4035_9baa_5e89.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4035_9baa_5e89&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4035_9baa_5e89"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38b8_b3cd_c727", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38b8_b3cd_c727.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_38b8_b3cd_c727/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pevpr.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Monthly Potential Evaporation Rate at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_38b8_b3cd_c727_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_38b8_b3cd_c727_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_38b8_b3cd_c727/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_38b8_b3cd_c727.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_38b8_b3cd_c727&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_38b8_b3cd_c727"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e591_aa46_e0b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e591_aa46_e0b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e591_aa46_e0b3/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pevpr.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Monthly Potential Evaporation Rate Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e591_aa46_e0b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e591_aa46_e0b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e591_aa46_e0b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e591_aa46_e0b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e591_aa46_e0b3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e591_aa46_e0b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f3f_35fd_f8db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f3f_35fd_f8db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f3f_35fd_f8db/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pr wtr.eatm.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Long Term Mean 6-hourly Precipitable Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f3f_35fd_f8db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f3f_35fd_f8db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f3f_35fd_f8db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f3f_35fd_f8db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f3f_35fd_f8db&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_1f3f_35fd_f8db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d85c_5d2d_d707", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d85c_5d2d_d707.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d85c_5d2d_d707/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pr wtr.eatm.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (3-hourly Long Term Mean Precipitable Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d85c_5d2d_d707_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d85c_5d2d_d707_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d85c_5d2d_d707/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d85c_5d2d_d707.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d85c_5d2d_d707&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d85c_5d2d_d707"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b6f_47f5_1e27", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b6f_47f5_1e27.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2b6f_47f5_1e27/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pr wtr.eatm.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Long Term Mean Monthly Precipitable Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2b6f_47f5_1e27_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2b6f_47f5_1e27_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2b6f_47f5_1e27/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2b6f_47f5_1e27.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2b6f_47f5_1e27&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2b6f_47f5_1e27"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9ad_615b_70fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9ad_615b_70fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c9ad_615b_70fd/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pr wtr.eatm.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Long Term Mean Monthly Precipitable Water Spread for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c9ad_615b_70fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c9ad_615b_70fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c9ad_615b_70fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c9ad_615b_70fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c9ad_615b_70fd&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c9ad_615b_70fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00ae_9bb5_ac3f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00ae_9bb5_ac3f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_00ae_9bb5_ac3f/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pr wtr.eatm.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Precipitable Water Spread for entire atmosphere, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_00ae_9bb5_ac3f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_00ae_9bb5_ac3f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_00ae_9bb5_ac3f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_00ae_9bb5_ac3f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_00ae_9bb5_ac3f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_00ae_9bb5_ac3f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6bce_fe34_5a96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6bce_fe34_5a96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6bce_fe34_5a96/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pr wtr.eatm.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Precipitable Water for entire atmosphere, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6bce_fe34_5a96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6bce_fe34_5a96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6bce_fe34_5a96/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6bce_fe34_5a96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6bce_fe34_5a96&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6bce_fe34_5a96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_118f_5fa0_d736", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_118f_5fa0_d736.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_118f_5fa0_d736/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, prate.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (3-hourly Long Term Mean Precipitation Rate at surface, kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_118f_5fa0_d736_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_118f_5fa0_d736_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_118f_5fa0_d736/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_118f_5fa0_d736.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_118f_5fa0_d736&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_118f_5fa0_d736"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3726_81d1_9c4a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3726_81d1_9c4a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3726_81d1_9c4a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, prate.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Long Term Mean Monthly Precipitation Rate at surface, kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3726_81d1_9c4a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3726_81d1_9c4a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3726_81d1_9c4a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3726_81d1_9c4a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3726_81d1_9c4a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3726_81d1_9c4a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e419_7ff1_c2aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e419_7ff1_c2aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e419_7ff1_c2aa/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, prate.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Long Term Mean Monthly Precipitation Rate Spread at surface, kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e419_7ff1_c2aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e419_7ff1_c2aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e419_7ff1_c2aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e419_7ff1_c2aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e419_7ff1_c2aa&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e419_7ff1_c2aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3fea_e827_5463", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3fea_e827_5463.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3fea_e827_5463/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, prate.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Monthly Precipitation Rate at surface, kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3fea_e827_5463_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3fea_e827_5463_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3fea_e827_5463/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3fea_e827_5463.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3fea_e827_5463&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3fea_e827_5463"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c62b_e56e_e3d6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c62b_e56e_e3d6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c62b_e56e_e3d6/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, prate.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Monthly Precipitation Rate Spread at surface, kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c62b_e56e_e3d6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c62b_e56e_e3d6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c62b_e56e_e3d6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c62b_e56e_e3d6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c62b_e56e_e3d6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c62b_e56e_e3d6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da4a_01df_fda6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da4a_01df_fda6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da4a_01df_fda6/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pres.sfc.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean 6-hourly Pressure at Surface, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da4a_01df_fda6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da4a_01df_fda6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da4a_01df_fda6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da4a_01df_fda6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da4a_01df_fda6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_da4a_01df_fda6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba68_d88a_41c7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba68_d88a_41c7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ba68_d88a_41c7/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pres.tropo.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean 6-hourly Pressure at Tropopause, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ba68_d88a_41c7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ba68_d88a_41c7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ba68_d88a_41c7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ba68_d88a_41c7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ba68_d88a_41c7&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_ba68_d88a_41c7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c712_9c5d_eafa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c712_9c5d_eafa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c712_9c5d_eafa/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, press.sfc.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npress (3-hourly Long Term Mean Pressure at surface, Pascal)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c712_9c5d_eafa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c712_9c5d_eafa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c712_9c5d_eafa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c712_9c5d_eafa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c712_9c5d_eafa&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c712_9c5d_eafa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2a00_46da_b743", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2a00_46da_b743.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2a00_46da_b743/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, press.sfc.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npress (Long Term Mean Monthly Pressure Spread at surface, Pascal)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2a00_46da_b743_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2a00_46da_b743_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2a00_46da_b743/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2a00_46da_b743.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2a00_46da_b743&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2a00_46da_b743"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6270_f35a_3e37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6270_f35a_3e37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6270_f35a_3e37/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, press.sfc.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npress (Long Term Mean Monthly Pressure at surface, Pascal)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6270_f35a_3e37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6270_f35a_3e37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6270_f35a_3e37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6270_f35a_3e37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6270_f35a_3e37&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6270_f35a_3e37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_397e_a3fb_3e38", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_397e_a3fb_3e38.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_397e_a3fb_3e38/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, press.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npress (Monthly Pressure Spread at surface, Pascal)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_397e_a3fb_3e38_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_397e_a3fb_3e38_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_397e_a3fb_3e38/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_397e_a3fb_3e38.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_397e_a3fb_3e38&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_397e_a3fb_3e38"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e082_dd78_72f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e082_dd78_72f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e082_dd78_72f3/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, press.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npress (Monthly Pressure at surface, Pascal)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e082_dd78_72f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e082_dd78_72f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e082_dd78_72f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e082_dd78_72f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e082_dd78_72f3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e082_dd78_72f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0602_a324_3781", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0602_a324_3781.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0602_a324_3781/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, prmsl.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Long Term Mean 6-hourly Pressure at Mean Sea Level, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0602_a324_3781_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0602_a324_3781_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0602_a324_3781/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0602_a324_3781.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0602_a324_3781&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0602_a324_3781"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c02c_3ff2_0c88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c02c_3ff2_0c88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c02c_3ff2_0c88/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, rhum.sig995.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Long Term Mean 6-hourly Relative Humidity at sigma level 0.995, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c02c_3ff2_0c88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c02c_3ff2_0c88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c02c_3ff2_0c88/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c02c_3ff2_0c88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c02c_3ff2_0c88&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c02c_3ff2_0c88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a413_6eeb_5d51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a413_6eeb_5d51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a413_6eeb_5d51/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, runoff.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunoff (3-hourly Long Term Mean Water Runoff at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a413_6eeb_5d51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a413_6eeb_5d51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a413_6eeb_5d51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a413_6eeb_5d51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a413_6eeb_5d51&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a413_6eeb_5d51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c28_c505_1f8a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c28_c505_1f8a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4c28_c505_1f8a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, runoff.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunoff (Long Term Mean Monthly Water Runoff at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4c28_c505_1f8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4c28_c505_1f8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c28_c505_1f8a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c28_c505_1f8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c28_c505_1f8a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4c28_c505_1f8a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dfe_0a5c_1420", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dfe_0a5c_1420.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4dfe_0a5c_1420/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, runoff.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunoff (Long Term Mean Monthly Water Runoff Spread at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4dfe_0a5c_1420_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4dfe_0a5c_1420_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4dfe_0a5c_1420/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4dfe_0a5c_1420.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4dfe_0a5c_1420&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4dfe_0a5c_1420"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60e1_362f_4bc6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60e1_362f_4bc6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_60e1_362f_4bc6/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, runoff.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunoff (Monthly Water Runoff at surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_60e1_362f_4bc6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_60e1_362f_4bc6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_60e1_362f_4bc6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_60e1_362f_4bc6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_60e1_362f_4bc6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_60e1_362f_4bc6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe21_33ff_d2d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe21_33ff_d2d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fe21_33ff_d2d3/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, runoff.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunoff (Monthly Water Runoff Spread at surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fe21_33ff_d2d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fe21_33ff_d2d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fe21_33ff_d2d3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fe21_33ff_d2d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fe21_33ff_d2d3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_fe21_33ff_d2d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e21_c484_b153", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e21_c484_b153.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5e21_c484_b153/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, sbsno.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsbsno (3-hourly Long Term Mean Sublimation (Evaporation From Snow), W m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5e21_c484_b153_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5e21_c484_b153_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5e21_c484_b153/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5e21_c484_b153.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5e21_c484_b153&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5e21_c484_b153"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3aa4_7e13_e571", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3aa4_7e13_e571.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3aa4_7e13_e571/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, sbsno.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsbsno (Long Term Mean Monthly Sublimation (Evaporation From Snow), W m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3aa4_7e13_e571_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3aa4_7e13_e571_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3aa4_7e13_e571/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3aa4_7e13_e571.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3aa4_7e13_e571&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3aa4_7e13_e571"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a274_6cb7_f899", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a274_6cb7_f899.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a274_6cb7_f899/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, sbsno.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsbsno (Long Term Mean Monthly Sublimation (Evaporation From Snow) Spread, W m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a274_6cb7_f899_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a274_6cb7_f899_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a274_6cb7_f899/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a274_6cb7_f899.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a274_6cb7_f899&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a274_6cb7_f899"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cbee_af69_031c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cbee_af69_031c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cbee_af69_031c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, sbsno.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsbsno (Monthly Sublimation (Evaporation From Snow) Spread, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cbee_af69_031c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cbee_af69_031c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cbee_af69_031c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cbee_af69_031c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cbee_af69_031c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_cbee_af69_031c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fdbb_258c_a06a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fdbb_258c_a06a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fdbb_258c_a06a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, sbsno.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsbsno (Monthly Sublimation (Evaporation From Snow), W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fdbb_258c_a06a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fdbb_258c_a06a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fdbb_258c_a06a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fdbb_258c_a06a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fdbb_258c_a06a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_fdbb_258c_a06a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e21_2c94_1492", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e21_2c94_1492.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e21_2c94_1492/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, sfexc.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsfexc (3-hourly Long Term Mean Exchange Coefficient, (kg m-3) (m s-1))\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e21_2c94_1492_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e21_2c94_1492_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e21_2c94_1492/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e21_2c94_1492.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e21_2c94_1492&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0e21_2c94_1492"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1353_5352_ac9c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1353_5352_ac9c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1353_5352_ac9c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, sfexc.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsfexc (Long Term Mean Monthly Exchange Coefficient Spread, (kg m-3) (m s-1))\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1353_5352_ac9c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1353_5352_ac9c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1353_5352_ac9c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1353_5352_ac9c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1353_5352_ac9c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_1353_5352_ac9c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bee8_168d_e6e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bee8_168d_e6e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bee8_168d_e6e0/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, sfexc.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsfexc (Long Term Mean Monthly Exchange Coefficient, (kg m-3) (m s-1))\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bee8_168d_e6e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bee8_168d_e6e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bee8_168d_e6e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bee8_168d_e6e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bee8_168d_e6e0&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_bee8_168d_e6e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a12_39a7_ed5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a12_39a7_ed5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1a12_39a7_ed5f/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, sfexc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsfexc (Monthly Exchange Coefficient, (kg m-3) (m s-1))\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1a12_39a7_ed5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1a12_39a7_ed5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1a12_39a7_ed5f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1a12_39a7_ed5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1a12_39a7_ed5f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_1a12_39a7_ed5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb56_9111_dede", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb56_9111_dede.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eb56_9111_dede/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, sfexc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsfexc (Monthly Exchange Coefficient Spread, (kg m-3) (m s-1))\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eb56_9111_dede_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eb56_9111_dede_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb56_9111_dede/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb56_9111_dede.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb56_9111_dede&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_eb56_9111_dede"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c822_e356_8658", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c822_e356_8658.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c822_e356_8658/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, shtfl.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (3-hourly Long Term Mean Sensible Heat Net Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c822_e356_8658_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c822_e356_8658_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c822_e356_8658/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c822_e356_8658.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c822_e356_8658&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c822_e356_8658"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a3c1_6d5f_ca03", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a3c1_6d5f_ca03.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a3c1_6d5f_ca03/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, shtfl.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Long Term Mean Monthly Sensible Heat Net Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a3c1_6d5f_ca03_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a3c1_6d5f_ca03_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a3c1_6d5f_ca03/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a3c1_6d5f_ca03.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a3c1_6d5f_ca03&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a3c1_6d5f_ca03"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc59_dd22_3930", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc59_dd22_3930.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc59_dd22_3930/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, shtfl.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Long Term Mean Monthly Sensible Heat Net Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc59_dd22_3930_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc59_dd22_3930_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc59_dd22_3930/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc59_dd22_3930.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc59_dd22_3930&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_dc59_dd22_3930"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2961_6123_1027", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2961_6123_1027.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2961_6123_1027/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, shtfl.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Monthly Sensible Heat Net Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2961_6123_1027_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2961_6123_1027_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2961_6123_1027/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2961_6123_1027.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2961_6123_1027&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2961_6123_1027"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc9f_c039_d153", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc9f_c039_d153.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc9f_c039_d153/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, shtfl.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Monthly Sensible Heat Net Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc9f_c039_d153_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc9f_c039_d153_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc9f_c039_d153/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc9f_c039_d153.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc9f_c039_d153&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_dc9f_c039_d153"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb99_b0a5_1598", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb99_b0a5_1598.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb99_b0a5_1598/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, shum.2m.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (3-hourly Long Term Mean Specific Humidity at 2 m, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb99_b0a5_1598_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb99_b0a5_1598_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb99_b0a5_1598/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb99_b0a5_1598.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb99_b0a5_1598&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_fb99_b0a5_1598"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3034_01fc_9562", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3034_01fc_9562.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3034_01fc_9562/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, shum.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Long Term Mean Monthly Specific Humidity Spread at 2 m, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3034_01fc_9562_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3034_01fc_9562_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3034_01fc_9562/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3034_01fc_9562.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3034_01fc_9562&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3034_01fc_9562"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ccc_2dc1_3f93", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ccc_2dc1_3f93.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ccc_2dc1_3f93/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, shum.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Long Term Mean Monthly Specific Humidity at 2 m, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ccc_2dc1_3f93_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ccc_2dc1_3f93_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ccc_2dc1_3f93/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ccc_2dc1_3f93.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ccc_2dc1_3f93&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3ccc_2dc1_3f93"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94bc_f332_3a9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94bc_f332_3a9f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_94bc_f332_3a9f/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, shum.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Monthly Specific Humidity Spread at 2 m, kg/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_94bc_f332_3a9f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_94bc_f332_3a9f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_94bc_f332_3a9f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_94bc_f332_3a9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_94bc_f332_3a9f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_94bc_f332_3a9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a748_7d70_d423", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a748_7d70_d423.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a748_7d70_d423/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, shum.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Monthly Specific Humidity at 2 m, kg/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a748_7d70_d423_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a748_7d70_d423_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a748_7d70_d423/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a748_7d70_d423.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a748_7d70_d423&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a748_7d70_d423"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b83c_68c7_8d56", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b83c_68c7_8d56.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b83c_68c7_8d56/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, snod.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnod (3-hourly Long Term Mean Snow Depth at Surface, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b83c_68c7_8d56_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b83c_68c7_8d56_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b83c_68c7_8d56/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b83c_68c7_8d56.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b83c_68c7_8d56&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b83c_68c7_8d56"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_226b_31f3_66fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_226b_31f3_66fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_226b_31f3_66fd/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, snod.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnod (Long Term Mean Monthly Snow Depth Spread at Surface, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_226b_31f3_66fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_226b_31f3_66fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_226b_31f3_66fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_226b_31f3_66fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_226b_31f3_66fd&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_226b_31f3_66fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53dc_6e00_799e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53dc_6e00_799e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_53dc_6e00_799e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, snod.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnod (Long Term Mean Monthly Snow Depth at Surface, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_53dc_6e00_799e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_53dc_6e00_799e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_53dc_6e00_799e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_53dc_6e00_799e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_53dc_6e00_799e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_53dc_6e00_799e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cffd_e1f2_fc77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cffd_e1f2_fc77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cffd_e1f2_fc77/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, snod.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnod (Monthly Snow Depth at Surface, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cffd_e1f2_fc77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cffd_e1f2_fc77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cffd_e1f2_fc77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cffd_e1f2_fc77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cffd_e1f2_fc77&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_cffd_e1f2_fc77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e636_3179_0b1f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e636_3179_0b1f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e636_3179_0b1f/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, snod.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnod (Monthly Snow Depth Spread at Surface, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e636_3179_0b1f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e636_3179_0b1f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e636_3179_0b1f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e636_3179_0b1f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e636_3179_0b1f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e636_3179_0b1f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bec3_5db7_f93c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bec3_5db7_f93c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bec3_5db7_f93c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, snowc.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowc (3-hourly Long Term Mean Snow Cover at Surface, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bec3_5db7_f93c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bec3_5db7_f93c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bec3_5db7_f93c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bec3_5db7_f93c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bec3_5db7_f93c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_bec3_5db7_f93c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c7f_2ef4_0695", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c7f_2ef4_0695.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4c7f_2ef4_0695/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, snowc.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowc (Long Term Mean Monthly Snow Cover Spread at Surface, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4c7f_2ef4_0695_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4c7f_2ef4_0695_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c7f_2ef4_0695/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c7f_2ef4_0695.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c7f_2ef4_0695&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4c7f_2ef4_0695"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7373_c623_5238", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7373_c623_5238.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7373_c623_5238/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, snowc.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowc (Long Term Mean Monthly Snow Cover at Surface, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7373_c623_5238_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7373_c623_5238_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7373_c623_5238/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7373_c623_5238.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7373_c623_5238&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7373_c623_5238"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ade_3a8f_4e89", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ade_3a8f_4e89.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ade_3a8f_4e89/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, snowc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowc (Monthly Snow Cover Spread at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ade_3a8f_4e89_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ade_3a8f_4e89_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ade_3a8f_4e89/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ade_3a8f_4e89.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ade_3a8f_4e89&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4ade_3a8f_4e89"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9312_2ff0_bf53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9312_2ff0_bf53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9312_2ff0_bf53/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, snowc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowc (Monthly Snow Cover at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9312_2ff0_bf53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9312_2ff0_bf53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9312_2ff0_bf53/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9312_2ff0_bf53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9312_2ff0_bf53&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9312_2ff0_bf53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a30c_ec25_2746", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a30c_ec25_2746.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a30c_ec25_2746/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, soilm.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (3-hourly Long Term Mean Soil Moisture Content at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a30c_ec25_2746_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a30c_ec25_2746_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a30c_ec25_2746/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a30c_ec25_2746.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a30c_ec25_2746&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a30c_ec25_2746"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0771_fb66_50f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0771_fb66_50f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0771_fb66_50f2/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, soilm.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (Long Term Mean Monthly Soil Moisture Content Spread at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0771_fb66_50f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0771_fb66_50f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0771_fb66_50f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0771_fb66_50f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0771_fb66_50f2&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0771_fb66_50f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3365_9bf5_4411", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3365_9bf5_4411.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3365_9bf5_4411/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, soilm.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (Long Term Mean Monthly Soil Moisture Content at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3365_9bf5_4411_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3365_9bf5_4411_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3365_9bf5_4411/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3365_9bf5_4411.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3365_9bf5_4411&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3365_9bf5_4411"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87d4_2bc6_1842", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87d4_2bc6_1842.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_87d4_2bc6_1842/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, soilm.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (Monthly Soil Moisture Content Spread at Surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_87d4_2bc6_1842_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_87d4_2bc6_1842_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_87d4_2bc6_1842/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_87d4_2bc6_1842.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_87d4_2bc6_1842&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_87d4_2bc6_1842"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_907c_6383_464c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_907c_6383_464c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_907c_6383_464c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, soilm.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (Monthly Soil Moisture Content at Surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_907c_6383_464c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_907c_6383_464c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_907c_6383_464c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_907c_6383_464c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_907c_6383_464c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_907c_6383_464c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e771_2072_e86f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e771_2072_e86f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e771_2072_e86f/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ssrunoff.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssrunoff (3-hourly Long Term Mean Storm Surface Runoff at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e771_2072_e86f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e771_2072_e86f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e771_2072_e86f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e771_2072_e86f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e771_2072_e86f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e771_2072_e86f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2885_1f50_01f8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2885_1f50_01f8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2885_1f50_01f8/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ssrunoff.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssrunoff (Long Term Mean Monthly Storm Surface Runoff at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2885_1f50_01f8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2885_1f50_01f8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2885_1f50_01f8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2885_1f50_01f8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2885_1f50_01f8&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2885_1f50_01f8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bd1_7de8_bffa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bd1_7de8_bffa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2bd1_7de8_bffa/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ssrunoff.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssrunoff (Long Term Mean Monthly Storm Surface Runoff Spread at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2bd1_7de8_bffa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2bd1_7de8_bffa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2bd1_7de8_bffa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2bd1_7de8_bffa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2bd1_7de8_bffa&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2bd1_7de8_bffa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e27_1ef1_dbf6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e27_1ef1_dbf6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e27_1ef1_dbf6/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ssrunoff.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssrunoff (Monthly Storm Surface Runoff at Surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e27_1ef1_dbf6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e27_1ef1_dbf6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e27_1ef1_dbf6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e27_1ef1_dbf6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e27_1ef1_dbf6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0e27_1ef1_dbf6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c24c_3c4a_df05", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c24c_3c4a_df05.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c24c_3c4a_df05/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ssrunoff.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssrunoff (Monthly Storm Surface Runoff Spread at Surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c24c_3c4a_df05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c24c_3c4a_df05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c24c_3c4a_df05/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c24c_3c4a_df05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c24c_3c4a_df05&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c24c_3c4a_df05"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a1e_c640_860f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a1e_c640_860f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a1e_c640_860f/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.bndrylyr.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Monthly Boundary Layer Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a1e_c640_860f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a1e_c640_860f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a1e_c640_860f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a1e_c640_860f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a1e_c640_860f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3a1e_c640_860f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b95_3077_9fbc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b95_3077_9fbc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3b95_3077_9fbc/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.bndrylyr.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Monthly Boundary Layer Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3b95_3077_9fbc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3b95_3077_9fbc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3b95_3077_9fbc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3b95_3077_9fbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3b95_3077_9fbc&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3b95_3077_9fbc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_203f_723f_4e5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_203f_723f_4e5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_203f_723f_4e5f/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.convcld.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Monthly Convective Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_203f_723f_4e5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_203f_723f_4e5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_203f_723f_4e5f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_203f_723f_4e5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_203f_723f_4e5f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_203f_723f_4e5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_daa3_b8d2_a6c2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_daa3_b8d2_a6c2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_daa3_b8d2_a6c2/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.convcld.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Monthly Convective Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_daa3_b8d2_a6c2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_daa3_b8d2_a6c2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_daa3_b8d2_a6c2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_daa3_b8d2_a6c2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_daa3_b8d2_a6c2&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_daa3_b8d2_a6c2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5a4_3d82_f35c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5a4_3d82_f35c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5a4_3d82_f35c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.convcld.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Convective Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5a4_3d82_f35c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5a4_3d82_f35c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5a4_3d82_f35c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5a4_3d82_f35c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5a4_3d82_f35c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b5a4_3d82_f35c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2a5_a6bf_6ff0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2a5_a6bf_6ff0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d2a5_a6bf_6ff0/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.convcld.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Convective Cloud Cover Spread, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d2a5_a6bf_6ff0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d2a5_a6bf_6ff0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d2a5_a6bf_6ff0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d2a5_a6bf_6ff0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d2a5_a6bf_6ff0&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d2a5_a6bf_6ff0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c22_2f0a_f1be", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c22_2f0a_f1be.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2c22_2f0a_f1be/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.eatm.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Total Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2c22_2f0a_f1be_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2c22_2f0a_f1be_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2c22_2f0a_f1be/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2c22_2f0a_f1be.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2c22_2f0a_f1be&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2c22_2f0a_f1be"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8d2_af73_8a4a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8d2_af73_8a4a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a8d2_af73_8a4a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.eatm.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Monthly Total Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a8d2_af73_8a4a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a8d2_af73_8a4a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a8d2_af73_8a4a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a8d2_af73_8a4a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a8d2_af73_8a4a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a8d2_af73_8a4a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f487_bfd2_1933", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f487_bfd2_1933.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f487_bfd2_1933/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.eatm.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Monthly Total Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f487_bfd2_1933_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f487_bfd2_1933_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f487_bfd2_1933/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f487_bfd2_1933.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f487_bfd2_1933&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f487_bfd2_1933"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9f7_4a72_3413", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9f7_4a72_3413.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e9f7_4a72_3413/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.eatm.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Total Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e9f7_4a72_3413_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e9f7_4a72_3413_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e9f7_4a72_3413/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e9f7_4a72_3413.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e9f7_4a72_3413&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e9f7_4a72_3413"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fca0_0538_c3fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fca0_0538_c3fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fca0_0538_c3fd/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.eatm.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Total Cloud Cover Spread, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fca0_0538_c3fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fca0_0538_c3fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fca0_0538_c3fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fca0_0538_c3fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fca0_0538_c3fd&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_fca0_0538_c3fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_782f_123c_f8b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_782f_123c_f8b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_782f_123c_f8b5/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.lowcld.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Low Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_782f_123c_f8b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_782f_123c_f8b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_782f_123c_f8b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_782f_123c_f8b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_782f_123c_f8b5&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_782f_123c_f8b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fbe_0e02_8e0b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fbe_0e02_8e0b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7fbe_0e02_8e0b/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.lowcld.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Monthly Low Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7fbe_0e02_8e0b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7fbe_0e02_8e0b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7fbe_0e02_8e0b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7fbe_0e02_8e0b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7fbe_0e02_8e0b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7fbe_0e02_8e0b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afe6_0224_49e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afe6_0224_49e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_afe6_0224_49e0/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.lowcld.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Monthly Low Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_afe6_0224_49e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_afe6_0224_49e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_afe6_0224_49e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_afe6_0224_49e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_afe6_0224_49e0&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_afe6_0224_49e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_631d_2baa_a7b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_631d_2baa_a7b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_631d_2baa_a7b7/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.lowcld.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Low Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_631d_2baa_a7b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_631d_2baa_a7b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_631d_2baa_a7b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_631d_2baa_a7b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_631d_2baa_a7b7&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_631d_2baa_a7b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c24b_3508_d38e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c24b_3508_d38e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c24b_3508_d38e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.lowcld.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Low Cloud Cover Spread, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c24b_3508_d38e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c24b_3508_d38e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c24b_3508_d38e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c24b_3508_d38e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c24b_3508_d38e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c24b_3508_d38e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e558_978a_e12b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e558_978a_e12b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e558_978a_e12b/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.midcld.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Middle Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e558_978a_e12b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e558_978a_e12b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e558_978a_e12b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e558_978a_e12b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e558_978a_e12b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e558_978a_e12b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d0a_db9c_b1a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d0a_db9c_b1a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d0a_db9c_b1a6/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.midcld.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Monthly Middle Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d0a_db9c_b1a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d0a_db9c_b1a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d0a_db9c_b1a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d0a_db9c_b1a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d0a_db9c_b1a6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_1d0a_db9c_b1a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aac5_54d5_cafb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aac5_54d5_cafb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aac5_54d5_cafb/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.midcld.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Monthly Middle Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aac5_54d5_cafb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aac5_54d5_cafb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aac5_54d5_cafb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aac5_54d5_cafb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aac5_54d5_cafb&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_aac5_54d5_cafb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_931b_9519_4aa6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_931b_9519_4aa6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_931b_9519_4aa6/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.midcld.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Middle Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_931b_9519_4aa6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_931b_9519_4aa6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_931b_9519_4aa6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_931b_9519_4aa6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_931b_9519_4aa6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_931b_9519_4aa6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9485_5214_f724", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9485_5214_f724.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9485_5214_f724/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.midcld.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Middle Cloud Cover Spread, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9485_5214_f724_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9485_5214_f724_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9485_5214_f724/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9485_5214_f724.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9485_5214_f724&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9485_5214_f724"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1207_6e94_ec62", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1207_6e94_ec62.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1207_6e94_ec62/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.topcld.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Top Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1207_6e94_ec62_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1207_6e94_ec62_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1207_6e94_ec62/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1207_6e94_ec62.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1207_6e94_ec62&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_1207_6e94_ec62"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8839_d043_3213", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8839_d043_3213.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8839_d043_3213/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.topcld.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Monthly Top Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8839_d043_3213_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8839_d043_3213_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8839_d043_3213/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8839_d043_3213.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8839_d043_3213&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8839_d043_3213"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c16_8dd7_9493", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c16_8dd7_9493.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8c16_8dd7_9493/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.topcld.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Monthly Top Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8c16_8dd7_9493_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8c16_8dd7_9493_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8c16_8dd7_9493/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8c16_8dd7_9493.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8c16_8dd7_9493&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8c16_8dd7_9493"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4625_8234_b296", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4625_8234_b296.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4625_8234_b296/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.topcld.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Top Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4625_8234_b296_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4625_8234_b296_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4625_8234_b296/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4625_8234_b296.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4625_8234_b296&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4625_8234_b296"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5101_fc68_6e2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5101_fc68_6e2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5101_fc68_6e2a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.topcld.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Top Cloud Cover Spread, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5101_fc68_6e2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5101_fc68_6e2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5101_fc68_6e2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5101_fc68_6e2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5101_fc68_6e2a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5101_fc68_6e2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94f8_9584_1af4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94f8_9584_1af4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_94f8_9584_1af4/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tco3.eatm.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Long Term Mean 6-hourly Total Columnar Ozone, Dobsons)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_94f8_9584_1af4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_94f8_9584_1af4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_94f8_9584_1af4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_94f8_9584_1af4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_94f8_9584_1af4&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_94f8_9584_1af4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c67_3aca_8c3e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c67_3aca_8c3e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c67_3aca_8c3e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (3-hourly Long Term Mean Maximum Temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c67_3aca_8c3e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c67_3aca_8c3e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c67_3aca_8c3e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c67_3aca_8c3e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c67_3aca_8c3e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5c67_3aca_8c3e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a28_8e70_ca46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a28_8e70_ca46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8a28_8e70_ca46/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Long Term Mean Monthly Maximum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8a28_8e70_ca46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8a28_8e70_ca46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8a28_8e70_ca46/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8a28_8e70_ca46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8a28_8e70_ca46&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8a28_8e70_ca46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da34_ff03_2878", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da34_ff03_2878.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da34_ff03_2878/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Long Term Mean Monthly Maximum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da34_ff03_2878_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da34_ff03_2878_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da34_ff03_2878/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da34_ff03_2878.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da34_ff03_2878&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_da34_ff03_2878"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_059c_6820_a42c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_059c_6820_a42c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_059c_6820_a42c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Maximum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_059c_6820_a42c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_059c_6820_a42c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_059c_6820_a42c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_059c_6820_a42c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_059c_6820_a42c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_059c_6820_a42c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c02_7fe8_9f50", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c02_7fe8_9f50.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c02_7fe8_9f50/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Maximum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c02_7fe8_9f50_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c02_7fe8_9f50_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c02_7fe8_9f50/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c02_7fe8_9f50.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c02_7fe8_9f50&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9c02_7fe8_9f50"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_706d_a47b_8c9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_706d_a47b_8c9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_706d_a47b_8c9d/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (3-hourly Long Term Mean Minimum Temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_706d_a47b_8c9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_706d_a47b_8c9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_706d_a47b_8c9d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_706d_a47b_8c9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_706d_a47b_8c9d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_706d_a47b_8c9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c8e_3f66_6231", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c8e_3f66_6231.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3c8e_3f66_6231/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Long Term Mean Monthly Minimum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3c8e_3f66_6231_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3c8e_3f66_6231_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c8e_3f66_6231/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c8e_3f66_6231.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c8e_3f66_6231&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3c8e_3f66_6231"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dc2_2190_084e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dc2_2190_084e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4dc2_2190_084e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Long Term Mean Monthly Minimum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4dc2_2190_084e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4dc2_2190_084e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4dc2_2190_084e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4dc2_2190_084e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4dc2_2190_084e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4dc2_2190_084e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0dd8_7adb_c629", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0dd8_7adb_c629.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0dd8_7adb_c629/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Minimum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0dd8_7adb_c629_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0dd8_7adb_c629_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0dd8_7adb_c629/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0dd8_7adb_c629.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0dd8_7adb_c629&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0dd8_7adb_c629"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5613_d6e9_14f4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5613_d6e9_14f4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5613_d6e9_14f4/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Minimum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5613_d6e9_14f4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5613_d6e9_14f4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5613_d6e9_14f4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5613_d6e9_14f4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5613_d6e9_14f4&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5613_d6e9_14f4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e13f_02aa_bdf8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e13f_02aa_bdf8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e13f_02aa_bdf8/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, trans.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntrans (3-hourly Long Term Mean Transpiration at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e13f_02aa_bdf8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e13f_02aa_bdf8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e13f_02aa_bdf8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e13f_02aa_bdf8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e13f_02aa_bdf8&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e13f_02aa_bdf8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3be3_4791_2c2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3be3_4791_2c2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3be3_4791_2c2d/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, trans.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntrans (Long Term Mean Monthly Transpiration Spread at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3be3_4791_2c2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3be3_4791_2c2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3be3_4791_2c2d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3be3_4791_2c2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3be3_4791_2c2d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3be3_4791_2c2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8336_1ff1_8333", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8336_1ff1_8333.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8336_1ff1_8333/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, trans.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntrans (Long Term Mean Monthly Transpiration at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8336_1ff1_8333_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8336_1ff1_8333_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8336_1ff1_8333/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8336_1ff1_8333.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8336_1ff1_8333&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8336_1ff1_8333"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c67_fb14_ed63", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c67_fb14_ed63.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c67_fb14_ed63/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, trans.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntrans (Monthly Transpiration Spread at Surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c67_fb14_ed63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c67_fb14_ed63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c67_fb14_ed63/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c67_fb14_ed63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c67_fb14_ed63&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5c67_fb14_ed63"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8da_431b_f855", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8da_431b_f855.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f8da_431b_f855/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, trans.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntrans (Monthly Transpiration at Surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f8da_431b_f855_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f8da_431b_f855_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f8da_431b_f855/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f8da_431b_f855.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f8da_431b_f855&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f8da_431b_f855"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9ca_1f7b_e828", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9ca_1f7b_e828.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c9ca_1f7b_e828/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uflx.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (3-hourly Long Term Mean Momentum Flux, u-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c9ca_1f7b_e828_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c9ca_1f7b_e828_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c9ca_1f7b_e828/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c9ca_1f7b_e828.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c9ca_1f7b_e828&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c9ca_1f7b_e828"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_063b_c46f_d64c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_063b_c46f_d64c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_063b_c46f_d64c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uflx.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Long Term Mean Monthly Momentum Flux Spread, u-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_063b_c46f_d64c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_063b_c46f_d64c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_063b_c46f_d64c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_063b_c46f_d64c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_063b_c46f_d64c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_063b_c46f_d64c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a4c_a839_38c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a4c_a839_38c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9a4c_a839_38c6/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uflx.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Long Term Mean Monthly Momentum Flux, u-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9a4c_a839_38c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9a4c_a839_38c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9a4c_a839_38c6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9a4c_a839_38c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9a4c_a839_38c6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9a4c_a839_38c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80eb_c83d_930f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80eb_c83d_930f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_80eb_c83d_930f/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uflx.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Monthly Momentum Flux, u-component at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_80eb_c83d_930f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_80eb_c83d_930f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_80eb_c83d_930f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_80eb_c83d_930f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_80eb_c83d_930f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_80eb_c83d_930f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5a0_b913_c1ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5a0_b913_c1ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5a0_b913_c1ce/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uflx.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Monthly Momentum Flux Spread, u-component at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5a0_b913_c1ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5a0_b913_c1ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5a0_b913_c1ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5a0_b913_c1ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5a0_b913_c1ce&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c5a0_b913_c1ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d6c_b9c5_38ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d6c_b9c5_38ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d6c_b9c5_38ca/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uflx.NC3.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (3-hourly Long Term Mean Momentum Flux, u-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d6c_b9c5_38ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d6c_b9c5_38ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d6c_b9c5_38ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d6c_b9c5_38ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d6c_b9c5_38ca&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3d6c_b9c5_38ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec5e_d159_ab32", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec5e_d159_ab32.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ec5e_d159_ab32/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ugwd.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (3-hourly Long Term Mean Zonal Gravity Wave Stress at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ec5e_d159_ab32_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ec5e_d159_ab32_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ec5e_d159_ab32/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ec5e_d159_ab32.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ec5e_d159_ab32&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_ec5e_d159_ab32"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18b6_c8b5_60a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18b6_c8b5_60a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_18b6_c8b5_60a6/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ugwd.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Long Term Mean Monthly Zonal Gravity Wave Stress Spread at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_18b6_c8b5_60a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_18b6_c8b5_60a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_18b6_c8b5_60a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_18b6_c8b5_60a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_18b6_c8b5_60a6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_18b6_c8b5_60a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d917_7b1c_e5da", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d917_7b1c_e5da.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d917_7b1c_e5da/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ugwd.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Long Term Mean Monthly Zonal Gravity Wave Stress at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d917_7b1c_e5da_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d917_7b1c_e5da_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d917_7b1c_e5da/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d917_7b1c_e5da.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d917_7b1c_e5da&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d917_7b1c_e5da"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7809_4b34_efdd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7809_4b34_efdd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7809_4b34_efdd/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ugwd.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Monthly Zonal Gravity Wave Stress at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7809_4b34_efdd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7809_4b34_efdd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7809_4b34_efdd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7809_4b34_efdd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7809_4b34_efdd&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7809_4b34_efdd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98b1_a3d4_4a3a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98b1_a3d4_4a3a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_98b1_a3d4_4a3a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ugwd.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Monthly Zonal Gravity Wave Stress Spread at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_98b1_a3d4_4a3a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_98b1_a3d4_4a3a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_98b1_a3d4_4a3a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_98b1_a3d4_4a3a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_98b1_a3d4_4a3a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_98b1_a3d4_4a3a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b893_1628_2bd7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b893_1628_2bd7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b893_1628_2bd7/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ulwrf.ntat.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (3-hourly Long Term Mean Upward Longwave Radiation Flux at nominal top of atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b893_1628_2bd7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b893_1628_2bd7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b893_1628_2bd7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b893_1628_2bd7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b893_1628_2bd7&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b893_1628_2bd7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a3b_e5bd_f9cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a3b_e5bd_f9cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a3b_e5bd_f9cd/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ulwrf.ntat.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Long Term Mean Monthly Upward Longwave Radiation Flux at nominal top of atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a3b_e5bd_f9cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a3b_e5bd_f9cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a3b_e5bd_f9cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a3b_e5bd_f9cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a3b_e5bd_f9cd&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7a3b_e5bd_f9cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b557_0823_3daf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b557_0823_3daf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b557_0823_3daf/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ulwrf.ntat.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Long Term Mean Monthly Upward Longwave Radiation Flux Spread at nominal top of atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b557_0823_3daf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b557_0823_3daf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b557_0823_3daf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b557_0823_3daf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b557_0823_3daf&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b557_0823_3daf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ec5_f961_a7a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ec5_f961_a7a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0ec5_f961_a7a6/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ulwrf.ntat.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Upward Longwave Radiation Flux at nominal top of atmosphere, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0ec5_f961_a7a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0ec5_f961_a7a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0ec5_f961_a7a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0ec5_f961_a7a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0ec5_f961_a7a6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0ec5_f961_a7a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5456_2ec0_ac77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5456_2ec0_ac77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5456_2ec0_ac77/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ulwrf.ntat.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Upward Longwave Radiation Flux Spread at nominal top of atmosphere, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5456_2ec0_ac77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5456_2ec0_ac77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5456_2ec0_ac77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5456_2ec0_ac77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5456_2ec0_ac77&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5456_2ec0_ac77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d962_5e2c_a197", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d962_5e2c_a197.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d962_5e2c_a197/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ulwrf.sfc.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (3-hourly Long Term Mean Upward Longwave Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d962_5e2c_a197_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d962_5e2c_a197_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d962_5e2c_a197/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d962_5e2c_a197.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d962_5e2c_a197&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d962_5e2c_a197"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9183_bb49_f1bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9183_bb49_f1bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9183_bb49_f1bf/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ulwrf.sfc.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Long Term Mean Monthly Upward Longwave Radiation Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9183_bb49_f1bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9183_bb49_f1bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9183_bb49_f1bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9183_bb49_f1bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9183_bb49_f1bf&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9183_bb49_f1bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f932_4d37_ba6e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f932_4d37_ba6e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f932_4d37_ba6e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ulwrf.sfc.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Long Term Mean Monthly Upward Longwave Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f932_4d37_ba6e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f932_4d37_ba6e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f932_4d37_ba6e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f932_4d37_ba6e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f932_4d37_ba6e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f932_4d37_ba6e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3446_5d3e_54a5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3446_5d3e_54a5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3446_5d3e_54a5/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ulwrf.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Upward Longwave Radiation Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3446_5d3e_54a5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3446_5d3e_54a5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3446_5d3e_54a5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3446_5d3e_54a5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3446_5d3e_54a5&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3446_5d3e_54a5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c326_93fa_9436", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c326_93fa_9436.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c326_93fa_9436/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ulwrf.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Upward Longwave Radiation Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c326_93fa_9436_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c326_93fa_9436_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c326_93fa_9436/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c326_93fa_9436.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c326_93fa_9436&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c326_93fa_9436"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f76_f85d_dc2e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f76_f85d_dc2e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3f76_f85d_dc2e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uswrf.ntat.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (3-hourly Long Term Mean Upward Solar Radiation Flux at nominal top of atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3f76_f85d_dc2e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3f76_f85d_dc2e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3f76_f85d_dc2e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3f76_f85d_dc2e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3f76_f85d_dc2e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3f76_f85d_dc2e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3459_1a07_1554", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3459_1a07_1554.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3459_1a07_1554/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uswrf.ntat.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Long Term Mean Monthly Upward Solar Radiation Flux Spread at nominal top of atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3459_1a07_1554_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3459_1a07_1554_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3459_1a07_1554/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3459_1a07_1554.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3459_1a07_1554&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3459_1a07_1554"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe04_6ec0_5690", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe04_6ec0_5690.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fe04_6ec0_5690/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uswrf.ntat.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Long Term Mean Monthly Upward Solar Radiation Flux at nominal top of atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fe04_6ec0_5690_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fe04_6ec0_5690_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fe04_6ec0_5690/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fe04_6ec0_5690.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fe04_6ec0_5690&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_fe04_6ec0_5690"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_938f_fd89_f54e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_938f_fd89_f54e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_938f_fd89_f54e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uswrf.ntat.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Upward Solar Radiation Flux Spread at nominal top of atmosphere, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_938f_fd89_f54e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_938f_fd89_f54e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_938f_fd89_f54e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_938f_fd89_f54e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_938f_fd89_f54e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_938f_fd89_f54e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0b8_72f0_eec1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0b8_72f0_eec1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a0b8_72f0_eec1/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uswrf.ntat.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Upward Solar Radiation Flux at nominal top of atmosphere, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a0b8_72f0_eec1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a0b8_72f0_eec1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a0b8_72f0_eec1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a0b8_72f0_eec1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a0b8_72f0_eec1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a0b8_72f0_eec1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8ef_ca80_dda4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8ef_ca80_dda4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b8ef_ca80_dda4/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uswrf.sfc.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (3-hourly Long Term Mean Upward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b8ef_ca80_dda4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b8ef_ca80_dda4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b8ef_ca80_dda4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b8ef_ca80_dda4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b8ef_ca80_dda4&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b8ef_ca80_dda4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89e6_af4e_8199", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89e6_af4e_8199.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_89e6_af4e_8199/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uswrf.sfc.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Long Term Mean Monthly Upward Solar Radiation Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_89e6_af4e_8199_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_89e6_af4e_8199_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_89e6_af4e_8199/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_89e6_af4e_8199.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_89e6_af4e_8199&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_89e6_af4e_8199"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9844_601d_8080", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9844_601d_8080.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9844_601d_8080/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uswrf.sfc.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Long Term Mean Monthly Upward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9844_601d_8080_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9844_601d_8080_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9844_601d_8080/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9844_601d_8080.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9844_601d_8080&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9844_601d_8080"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43d5_9de2_347f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43d5_9de2_347f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_43d5_9de2_347f/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uswrf.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Upward Solar Radiation Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_43d5_9de2_347f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_43d5_9de2_347f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_43d5_9de2_347f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_43d5_9de2_347f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_43d5_9de2_347f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_43d5_9de2_347f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4695_fec7_5ac3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4695_fec7_5ac3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4695_fec7_5ac3/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uswrf.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Upward Solar Radiation Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4695_fec7_5ac3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4695_fec7_5ac3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4695_fec7_5ac3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4695_fec7_5ac3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4695_fec7_5ac3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4695_fec7_5ac3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c7c_8fe2_02e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c7c_8fe2_02e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c7c_8fe2_02e2/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uwnd.10m.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (3-hourly Long Term Mean U-wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c7c_8fe2_02e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c7c_8fe2_02e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c7c_8fe2_02e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c7c_8fe2_02e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c7c_8fe2_02e2&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0c7c_8fe2_02e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85e2_ff6f_9ca0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85e2_ff6f_9ca0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_85e2_ff6f_9ca0/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uwnd.10m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean Monthly U-wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_85e2_ff6f_9ca0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_85e2_ff6f_9ca0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85e2_ff6f_9ca0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85e2_ff6f_9ca0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85e2_ff6f_9ca0&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_85e2_ff6f_9ca0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd5d_e322_7c49", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd5d_e322_7c49.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cd5d_e322_7c49/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uwnd.10m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean Monthly U-wind Spread, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cd5d_e322_7c49_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cd5d_e322_7c49_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cd5d_e322_7c49/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cd5d_e322_7c49.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cd5d_e322_7c49&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_cd5d_e322_7c49"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7318_941f_1296", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7318_941f_1296.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7318_941f_1296/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uwnd.10m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly U-wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7318_941f_1296_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7318_941f_1296_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7318_941f_1296/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7318_941f_1296.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7318_941f_1296&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7318_941f_1296"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fd1_5baf_6b08", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fd1_5baf_6b08.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8fd1_5baf_6b08/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uwnd.10m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly U-wind Spread, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8fd1_5baf_6b08_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8fd1_5baf_6b08_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8fd1_5baf_6b08/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8fd1_5baf_6b08.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8fd1_5baf_6b08&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8fd1_5baf_6b08"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de80_26ab_ec5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de80_26ab_ec5b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_de80_26ab_ec5b/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uwnd.sig995.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean 6-hourly U-wind at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_de80_26ab_ec5b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_de80_26ab_ec5b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_de80_26ab_ec5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_de80_26ab_ec5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_de80_26ab_ec5b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_de80_26ab_ec5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_576c_4564_dddc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_576c_4564_dddc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_576c_4564_dddc/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uwnd.tropo.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean 6-hourly U-wind at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_576c_4564_dddc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_576c_4564_dddc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_576c_4564_dddc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_576c_4564_dddc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_576c_4564_dddc&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_576c_4564_dddc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_251d_e684_4245", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_251d_e684_4245.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_251d_e684_4245/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vflx.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (3-hourly Long Term Mean Momentum Flux, v-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_251d_e684_4245_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_251d_e684_4245_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_251d_e684_4245/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_251d_e684_4245.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_251d_e684_4245&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_251d_e684_4245"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d7b_8719_3fd8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d7b_8719_3fd8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d7b_8719_3fd8/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vflx.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Long Term Mean Monthly Momentum Flux, v-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d7b_8719_3fd8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d7b_8719_3fd8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d7b_8719_3fd8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d7b_8719_3fd8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d7b_8719_3fd8&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4d7b_8719_3fd8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_62de_de72_7378", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_62de_de72_7378.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_62de_de72_7378/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vflx.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Long Term Mean Monthly Momentum Flux Spread, v-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_62de_de72_7378_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_62de_de72_7378_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_62de_de72_7378/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_62de_de72_7378.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_62de_de72_7378&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_62de_de72_7378"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e27_2c8b_84b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e27_2c8b_84b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e27_2c8b_84b5/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vflx.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Monthly Momentum Flux, v-component at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e27_2c8b_84b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e27_2c8b_84b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e27_2c8b_84b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e27_2c8b_84b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e27_2c8b_84b5&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3e27_2c8b_84b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b93f_4037_6626", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b93f_4037_6626.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b93f_4037_6626/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vflx.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Monthly Momentum Flux Spread, v-component at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b93f_4037_6626_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b93f_4037_6626_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b93f_4037_6626/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b93f_4037_6626.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b93f_4037_6626&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b93f_4037_6626"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a3f_6713_d689", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a3f_6713_d689.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9a3f_6713_d689/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vgwd.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (3-hourly Long Term Mean Meridional Gravity Wave Stress at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9a3f_6713_d689_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9a3f_6713_d689_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9a3f_6713_d689/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9a3f_6713_d689.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9a3f_6713_d689&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9a3f_6713_d689"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7569_5c84_965e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7569_5c84_965e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7569_5c84_965e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vgwd.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Long Term Mean Monthly Meridional Gravity Wave Stress at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7569_5c84_965e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7569_5c84_965e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7569_5c84_965e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7569_5c84_965e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7569_5c84_965e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7569_5c84_965e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_957b_0c2d_a8d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_957b_0c2d_a8d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_957b_0c2d_a8d4/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vgwd.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Long Term Mean Monthly Meridional Gravity Wave Stress Spread at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_957b_0c2d_a8d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_957b_0c2d_a8d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_957b_0c2d_a8d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_957b_0c2d_a8d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_957b_0c2d_a8d4&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_957b_0c2d_a8d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6997_bbbb_eb5e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6997_bbbb_eb5e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6997_bbbb_eb5e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vgwd.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Monthly Meridional Gravity Wave Stress at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6997_bbbb_eb5e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6997_bbbb_eb5e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6997_bbbb_eb5e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6997_bbbb_eb5e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6997_bbbb_eb5e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6997_bbbb_eb5e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd88_f447_2b52", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd88_f447_2b52.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fd88_f447_2b52/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vgwd.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Monthly Meridional Gravity Wave Stress Spread at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fd88_f447_2b52_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fd88_f447_2b52_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fd88_f447_2b52/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fd88_f447_2b52.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fd88_f447_2b52&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_fd88_f447_2b52"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_27f1_4710_2cd5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_27f1_4710_2cd5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_27f1_4710_2cd5/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vwnd.10m.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (3-hourly Long Term Mean V wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_27f1_4710_2cd5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_27f1_4710_2cd5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_27f1_4710_2cd5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_27f1_4710_2cd5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_27f1_4710_2cd5&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_27f1_4710_2cd5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02ac_c32e_ea10", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02ac_c32e_ea10.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_02ac_c32e_ea10/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vwnd.10m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean Monthly V wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_02ac_c32e_ea10_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_02ac_c32e_ea10_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_02ac_c32e_ea10/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_02ac_c32e_ea10.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_02ac_c32e_ea10&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_02ac_c32e_ea10"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7bfa_9124_0edc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7bfa_9124_0edc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7bfa_9124_0edc/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vwnd.10m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean Monthly V wind Spread, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7bfa_9124_0edc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7bfa_9124_0edc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7bfa_9124_0edc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7bfa_9124_0edc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7bfa_9124_0edc&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7bfa_9124_0edc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf40_1227_6fa5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf40_1227_6fa5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf40_1227_6fa5/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vwnd.10m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly V wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf40_1227_6fa5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf40_1227_6fa5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf40_1227_6fa5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf40_1227_6fa5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf40_1227_6fa5&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_cf40_1227_6fa5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4cd_1dcf_44ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4cd_1dcf_44ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e4cd_1dcf_44ac/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vwnd.10m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly V wind Spread, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e4cd_1dcf_44ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e4cd_1dcf_44ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e4cd_1dcf_44ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e4cd_1dcf_44ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e4cd_1dcf_44ac&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e4cd_1dcf_44ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b73_c139_5293", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b73_c139_5293.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9b73_c139_5293/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vwnd.sig995.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean 6-hourly V-wind at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9b73_c139_5293_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9b73_c139_5293_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9b73_c139_5293/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9b73_c139_5293.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9b73_c139_5293&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9b73_c139_5293"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dcf_457d_fc30", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dcf_457d_fc30.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5dcf_457d_fc30/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vwnd.tropo.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean 6-hourly V-wind at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5dcf_457d_fc30_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5dcf_457d_fc30_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5dcf_457d_fc30/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5dcf_457d_fc30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5dcf_457d_fc30&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5dcf_457d_fc30"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8565_5ceb_2410", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8565_5ceb_2410.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8565_5ceb_2410/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, weasd.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (3-hourly Long Term Mean Water Equiv. of Accum. Snow Depth at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8565_5ceb_2410_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8565_5ceb_2410_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8565_5ceb_2410/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8565_5ceb_2410.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8565_5ceb_2410&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8565_5ceb_2410"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50ac_a949_5ca2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50ac_a949_5ca2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_50ac_a949_5ca2/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, weasd.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (Long Term Mean Monthly Water Equiv. of Accum. Snow Depth Spread at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_50ac_a949_5ca2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_50ac_a949_5ca2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50ac_a949_5ca2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50ac_a949_5ca2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50ac_a949_5ca2&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_50ac_a949_5ca2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa17_df93_17b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa17_df93_17b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fa17_df93_17b0/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, weasd.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (Long Term Mean Monthly Water Equiv. of Accum. Snow Depth at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fa17_df93_17b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fa17_df93_17b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fa17_df93_17b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fa17_df93_17b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fa17_df93_17b0&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_fa17_df93_17b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_603e_e728_5901", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_603e_e728_5901.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_603e_e728_5901/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, weasd.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (Monthly Water Equiv. of Accum. Snow Depth at surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_603e_e728_5901_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_603e_e728_5901_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_603e_e728_5901/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_603e_e728_5901.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_603e_e728_5901&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_603e_e728_5901"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6114_10a7_115c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6114_10a7_115c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6114_10a7_115c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, weasd.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (Monthly Water Equiv. of Accum. Snow Depth Spread at surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6114_10a7_115c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6114_10a7_115c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6114_10a7_115c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6114_10a7_115c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6114_10a7_115c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6114_10a7_115c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7294_603f_b80f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7294_603f_b80f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7294_603f_b80f/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, wspd.10m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Long Term Mean Monthly 10-meter wind speed Spread, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7294_603f_b80f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7294_603f_b80f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7294_603f_b80f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7294_603f_b80f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7294_603f_b80f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7294_603f_b80f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb04_de73_eb5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb04_de73_eb5b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bb04_de73_eb5b/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, wspd.10m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Long Term Mean Monthly mean 10-meter wind speed, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bb04_de73_eb5b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bb04_de73_eb5b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bb04_de73_eb5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bb04_de73_eb5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bb04_de73_eb5b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_bb04_de73_eb5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a521_1522_d353", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a521_1522_d353.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a521_1522_d353/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, wspd.10m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Monthly mean 10-meter wind speed, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a521_1522_d353_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a521_1522_d353_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a521_1522_d353/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a521_1522_d353.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a521_1522_d353&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a521_1522_d353"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b058_3f00_760d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b058_3f00_760d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b058_3f00_760d/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, wspd.10m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Monthly 10-meter wind speed Spread, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b058_3f00_760d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b058_3f00_760d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b058_3f00_760d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b058_3f00_760d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b058_3f00_760d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b058_3f00_760d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6889_9369_b6a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6889_9369_b6a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6889_9369_b6a7/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, air.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6889_9369_b6a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6889_9369_b6a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6889_9369_b6a7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6889_9369_b6a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6889_9369_b6a7&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6889_9369_b6a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01a9_d724_75dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01a9_d724_75dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_01a9_d724_75dd/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, air.mon.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_01a9_d724_75dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_01a9_d724_75dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_01a9_d724_75dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_01a9_d724_75dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_01a9_d724_75dd&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_01a9_d724_75dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72b6_a6fc_cce9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72b6_a6fc_cce9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_72b6_a6fc_cce9/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, air.mon.mean), 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_72b6_a6fc_cce9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_72b6_a6fc_cce9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_72b6_a6fc_cce9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_72b6_a6fc_cce9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_72b6_a6fc_cce9&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_72b6_a6fc_cce9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1ff_2c36_a9ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1ff_2c36_a9ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a1ff_2c36_a9ca/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, hgt.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Long Term Mean 6-hourly Geopotential Heights Spread on Pressure Levels, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a1ff_2c36_a9ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a1ff_2c36_a9ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a1ff_2c36_a9ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a1ff_2c36_a9ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a1ff_2c36_a9ca&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a1ff_2c36_a9ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c0c_82df_6adf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c0c_82df_6adf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c0c_82df_6adf/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, hgt.mon.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Long Term Mean Monthly Geopotential Heights Spread on Pressure Levels, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c0c_82df_6adf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c0c_82df_6adf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c0c_82df_6adf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c0c_82df_6adf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c0c_82df_6adf&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0c0c_82df_6adf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_653e_48d5_b2be", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_653e_48d5_b2be.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_653e_48d5_b2be/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, hgt.mon.mean), 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Monthly Geopotential Heights Spread on Pressure Levels, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_653e_48d5_b2be_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_653e_48d5_b2be_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_653e_48d5_b2be/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_653e_48d5_b2be.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_653e_48d5_b2be&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_653e_48d5_b2be"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1627_f818_8da8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1627_f818_8da8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1627_f818_8da8/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, omega.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Long Term Mean 6-hourly Omega Spread on Pressure Levels, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1627_f818_8da8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1627_f818_8da8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1627_f818_8da8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1627_f818_8da8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1627_f818_8da8&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_1627_f818_8da8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3221_3abb_93a5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3221_3abb_93a5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3221_3abb_93a5/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, omega.mon.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Long Term Mean Monthly Omega Spread on Pressure Levels, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3221_3abb_93a5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3221_3abb_93a5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3221_3abb_93a5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3221_3abb_93a5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3221_3abb_93a5&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3221_3abb_93a5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d53b_bab8_6ea1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d53b_bab8_6ea1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d53b_bab8_6ea1/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, omega.mon.mean), 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Monthly Omega Spread on Pressure Levels, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d53b_bab8_6ea1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d53b_bab8_6ea1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d53b_bab8_6ea1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d53b_bab8_6ea1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d53b_bab8_6ea1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d53b_bab8_6ea1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_933e_97cc_8ff3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_933e_97cc_8ff3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_933e_97cc_8ff3/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, rhum.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Long Term Mean 6-hourly Relative Humidity Spread on Pressure Levels, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_933e_97cc_8ff3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_933e_97cc_8ff3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_933e_97cc_8ff3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_933e_97cc_8ff3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_933e_97cc_8ff3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_933e_97cc_8ff3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c176_6d22_3a63", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c176_6d22_3a63.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c176_6d22_3a63/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, rhum.mon.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Long Term Mean Monthly Relative Humidity Spread on Pressure Levels, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c176_6d22_3a63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c176_6d22_3a63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c176_6d22_3a63/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c176_6d22_3a63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c176_6d22_3a63&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c176_6d22_3a63"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6b8_40e1_43fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6b8_40e1_43fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f6b8_40e1_43fa/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, rhum.mon.mean), 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Monthly Relative Humidity Spread on Pressure Levels, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f6b8_40e1_43fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f6b8_40e1_43fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f6b8_40e1_43fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f6b8_40e1_43fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f6b8_40e1_43fa&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f6b8_40e1_43fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2a10_85d9_07a4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2a10_85d9_07a4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2a10_85d9_07a4/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, shum.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Long Term Mean 6-hourly Specific Humidity Spread on Pressure Levels, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2a10_85d9_07a4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2a10_85d9_07a4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2a10_85d9_07a4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2a10_85d9_07a4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2a10_85d9_07a4&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2a10_85d9_07a4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e06e_febd_33c7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e06e_febd_33c7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e06e_febd_33c7/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, shum.mon.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Long Term Mean Monthly Specific Humidity Spread on Pressure Levels, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e06e_febd_33c7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e06e_febd_33c7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e06e_febd_33c7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e06e_febd_33c7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e06e_febd_33c7&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e06e_febd_33c7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_32fb_c8f2_3292", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_32fb_c8f2_3292.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_32fb_c8f2_3292/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, shum.mon.mean), 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Monthly Specific Humidity Spread on Pressure Levels, kg/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_32fb_c8f2_3292_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_32fb_c8f2_3292_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_32fb_c8f2_3292/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_32fb_c8f2_3292.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_32fb_c8f2_3292&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_32fb_c8f2_3292"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26f2_fea5_6e96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26f2_fea5_6e96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_26f2_fea5_6e96/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, uwnd.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Long Term Mean 6-hourly U-wind Spread on Pressure Levels, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_26f2_fea5_6e96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_26f2_fea5_6e96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_26f2_fea5_6e96/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_26f2_fea5_6e96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_26f2_fea5_6e96&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_26f2_fea5_6e96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ceca_62d5_8ad0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ceca_62d5_8ad0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ceca_62d5_8ad0/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, uwnd.mon.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Long Term Mean Monthly U-wind Spread on Pressure Levels, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ceca_62d5_8ad0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ceca_62d5_8ad0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ceca_62d5_8ad0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ceca_62d5_8ad0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ceca_62d5_8ad0&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_ceca_62d5_8ad0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4276_aa5d_d5ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4276_aa5d_d5ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4276_aa5d_d5ff/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, uwnd.mon.mean), 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Monthly U-wind Spread on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4276_aa5d_d5ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4276_aa5d_d5ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4276_aa5d_d5ff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4276_aa5d_d5ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4276_aa5d_d5ff&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4276_aa5d_d5ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6eb8_1f9c_4c4c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6eb8_1f9c_4c4c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6eb8_1f9c_4c4c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, vwnd.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Long Term Mean 6-hourly V-wind Spread on Pressure Levels, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6eb8_1f9c_4c4c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6eb8_1f9c_4c4c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6eb8_1f9c_4c4c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6eb8_1f9c_4c4c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6eb8_1f9c_4c4c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6eb8_1f9c_4c4c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c39a_a0a5_0443", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c39a_a0a5_0443.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c39a_a0a5_0443/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, vwnd.mon.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Long Term Mean Monthly V-wind Spread on Pressure Levels, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c39a_a0a5_0443_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c39a_a0a5_0443_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c39a_a0a5_0443/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c39a_a0a5_0443.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c39a_a0a5_0443&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c39a_a0a5_0443"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0df_18ab_c7cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0df_18ab_c7cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a0df_18ab_c7cb/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, vwnd.mon.mean), 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Monthly V-wind Spread on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a0df_18ab_c7cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a0df_18ab_c7cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a0df_18ab_c7cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a0df_18ab_c7cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a0df_18ab_c7cb&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a0df_18ab_c7cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3397_f096_f525", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3397_f096_f525.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3397_f096_f525/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, air.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3397_f096_f525_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3397_f096_f525_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3397_f096_f525/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3397_f096_f525.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3397_f096_f525&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3397_f096_f525"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_52be_090b_5413", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_52be_090b_5413.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_52be_090b_5413/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, hgt.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Long Term Mean 6-hourly Geopotential Heights on Pressure Levels, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_52be_090b_5413_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_52be_090b_5413_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_52be_090b_5413/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_52be_090b_5413.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_52be_090b_5413&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_52be_090b_5413"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d4d_3269_299d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d4d_3269_299d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7d4d_3269_299d/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, omega.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Long Term Mean 6-hourly Omega on Pressure Levels, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7d4d_3269_299d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7d4d_3269_299d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7d4d_3269_299d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7d4d_3269_299d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7d4d_3269_299d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7d4d_3269_299d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7738_ea63_7b6f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7738_ea63_7b6f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7738_ea63_7b6f/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, rhum.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Long Term Mean 6-hourly Relative Humidity on Pressure Levels, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7738_ea63_7b6f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7738_ea63_7b6f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7738_ea63_7b6f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7738_ea63_7b6f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7738_ea63_7b6f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7738_ea63_7b6f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5983_c00b_9c4f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5983_c00b_9c4f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5983_c00b_9c4f/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, shum.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Long Term Mean 6-hourly Specific Humidity on Pressure Levels, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5983_c00b_9c4f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5983_c00b_9c4f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5983_c00b_9c4f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5983_c00b_9c4f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5983_c00b_9c4f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5983_c00b_9c4f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_16cb_a82c_de1a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_16cb_a82c_de1a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_16cb_a82c_de1a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, uwnd.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Long Term Mean 6-hourly U-wind on Pressure Levels, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_16cb_a82c_de1a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_16cb_a82c_de1a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_16cb_a82c_de1a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_16cb_a82c_de1a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_16cb_a82c_de1a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_16cb_a82c_de1a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9610_4cc6_2170", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9610_4cc6_2170.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9610_4cc6_2170/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, vwnd.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Long Term Mean 6-hourly V-wind on Pressure Levels, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9610_4cc6_2170_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9610_4cc6_2170_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9610_4cc6_2170/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9610_4cc6_2170.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9610_4cc6_2170&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9610_4cc6_2170"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ee7_c573_6650", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ee7_c573_6650.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2ee7_c573_6650/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, soill.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoill (3-hourly Long Term Mean Liquid Volumetric Soil Moisture (non-frozen) Fraction, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2ee7_c573_6650_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2ee7_c573_6650_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2ee7_c573_6650/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2ee7_c573_6650.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2ee7_c573_6650&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2ee7_c573_6650"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3bc2_c145_7574", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3bc2_c145_7574.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3bc2_c145_7574/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, soilw.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoilw (3-hourly Long Term Mean Soil Moisture Content, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3bc2_c145_7574_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3bc2_c145_7574_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3bc2_c145_7574/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3bc2_c145_7574.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3bc2_c145_7574&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3bc2_c145_7574"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b303_ebcc_fb18", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b303_ebcc_fb18.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b303_ebcc_fb18/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, tsoil.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (3-hourly Long Term Mean Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b303_ebcc_fb18_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b303_ebcc_fb18_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b303_ebcc_fb18/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b303_ebcc_fb18.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b303_ebcc_fb18&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b303_ebcc_fb18"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e33_f952_3a4f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e33_f952_3a4f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e33_f952_3a4f/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, time invariant, hgt.sfc), 1851", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Geopotential Height at Surface Gaussian Grid, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e33_f952_3a4f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e33_f952_3a4f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e33_f952_3a4f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e33_f952_3a4f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e33_f952_3a4f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8e33_f952_3a4f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d555_d0d6_6cdf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d555_d0d6_6cdf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d555_d0d6_6cdf/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, time invariant, hgt.sfc), 2.0\u00b0, 1851", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Geopotential Height at Surface, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d555_d0d6_6cdf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d555_d0d6_6cdf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d555_d0d6_6cdf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d555_d0d6_6cdf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d555_d0d6_6cdf&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d555_d0d6_6cdf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e6f_4f02_ac82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e6f_4f02_ac82.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e6f_4f02_ac82/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, time invariant, land), 1851", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nland (time-invariant Land-sea Mask Gaussian Grid, frac.)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e6f_4f02_ac82_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e6f_4f02_ac82_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e6f_4f02_ac82/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e6f_4f02_ac82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e6f_4f02_ac82&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3e6f_4f02_ac82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4329_55e8_8678", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4329_55e8_8678.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4329_55e8_8678/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, time invariant, lsmask), 1851", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nland (time-invariant Land-sea Mask Gaussian Grid, frac.)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4329_55e8_8678_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4329_55e8_8678_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4329_55e8_8678/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4329_55e8_8678.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4329_55e8_8678&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4329_55e8_8678"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d104_c532_d54a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d104_c532_d54a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d104_c532_d54a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, time invariant, soiltype), 1851", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoiltype (time-invariant soil type (Zobler) Gaussian Grid, frac.)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d104_c532_d54a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d104_c532_d54a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d104_c532_d54a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d104_c532_d54a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d104_c532_d54a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d104_c532_d54a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_515d_42ac_dad9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_515d_42ac_dad9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_515d_42ac_dad9/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, time invariant, vegtype), 1851", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvegtype (time-invariant vegetation type (as in SiB) Gaussian Grid, frac.)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_515d_42ac_dad9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_515d_42ac_dad9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_515d_42ac_dad9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_515d_42ac_dad9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_515d_42ac_dad9&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_515d_42ac_dad9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8105_db17_ac5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8105_db17_ac5b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8105_db17_ac5b/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (uwnd.tropo.mon.ltm), 2.0\u00b0, 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean Monthly U-wind Spread at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8105_db17_ac5b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8105_db17_ac5b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8105_db17_ac5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8105_db17_ac5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8105_db17_ac5b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8105_db17_ac5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc2f_450f_d7b4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc2f_450f_d7b4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc2f_450f_d7b4/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (vwnd.tropo.mon.ltm), 2.0\u00b0, 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean Monthly V-wind Spread at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc2f_450f_d7b4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc2f_450f_d7b4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc2f_450f_d7b4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc2f_450f_d7b4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc2f_450f_d7b4&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_cc2f_450f_d7b4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a44_d313_d6dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a44_d313_d6dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a44_d313_d6dd/request", "", "public", "4Xdaily ltm air.sig995 from the NCEP Reanalysis (Top Dataset, surface, air.sig995.4Xday.ltm), 2.5\u00b0, 0001", "4Xdaily ltm air.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (4xDaily Long Term Mean Air temperature at sigma level 995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a44_d313_d6dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a44_d313_d6dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a44_d313_d6dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a44_d313_d6dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a44_d313_d6dd&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6a44_d313_d6dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e54c_0592_9898", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e54c_0592_9898.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e54c_0592_9898/request", "", "public", "4Xdaily ltm air.tropp from the NCEP Reanalysis (Top Dataset, tropopause, air.tropp.4Xday.ltm), 2.5\u00b0, 0001", "4Xdaily ltm air.tropp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the tropopause values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (4xDaily Long Term Mean Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e54c_0592_9898_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e54c_0592_9898_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e54c_0592_9898/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e54c_0592_9898.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e54c_0592_9898&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e54c_0592_9898"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0590_392a_23ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0590_392a_23ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0590_392a_23ef/request", "", "public", "4Xdaily ltm csulf.ntat from the NCEP Reanalysis (csulf.ntat.4Xday.ltm), 0001", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsulf (Long Term Mean Clear Sky Upward Longwave Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0590_392a_23ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0590_392a_23ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0590_392a_23ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0590_392a_23ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0590_392a_23ef&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0590_392a_23ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_75e3_428b_4129", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_75e3_428b_4129.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_75e3_428b_4129/request", "", "public", "4Xdaily ltm csusf.ntat from the NCEP Reanalysis (csusf.ntat.4Xday.ltm), 0001", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsusf (Long Term Mean Clear Sky Upward Solar Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_75e3_428b_4129_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_75e3_428b_4129_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_75e3_428b_4129/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_75e3_428b_4129.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_75e3_428b_4129&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_75e3_428b_4129"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f20_431b_41e9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f20_431b_41e9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f20_431b_41e9/request", "", "public", "4Xdaily ltm lftx from the NCEP Reanalysis (Top Dataset, surface, lftx.4Xday.ltm), 2.5\u00b0, 0001", "4Xdaily ltm lftx from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlftx (4xDaily Long Term Mean Surface Lifted Index, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f20_431b_41e9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f20_431b_41e9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f20_431b_41e9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f20_431b_41e9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f20_431b_41e9&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0f20_431b_41e9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f548_6fd6_70fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f548_6fd6_70fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f548_6fd6_70fa/request", "", "public", "4Xdaily ltm lftx4 from the NCEP Reanalysis (Top Dataset, surface, lftx4.4Xday.ltm), 2.5\u00b0, 0001", "4Xdaily ltm lftx4 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlftx4 (4xDaily Long Term Mean Best (4-layer) Lifted Index, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f548_6fd6_70fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f548_6fd6_70fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f548_6fd6_70fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f548_6fd6_70fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f548_6fd6_70fa&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f548_6fd6_70fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59df_04b8_cd05", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59df_04b8_cd05.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_59df_04b8_cd05/request", "", "public", "4Xdaily ltm omega.sig995 from the NCEP Reanalysis (omega.sig995.4Xday.ltm), 2.5\u00b0, 0001", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (4xDaily Long Term Mean omega at sigma level 0.995, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_59df_04b8_cd05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_59df_04b8_cd05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_59df_04b8_cd05/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_59df_04b8_cd05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_59df_04b8_cd05&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_59df_04b8_cd05"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_725b_7805_3599", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_725b_7805_3599.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_725b_7805_3599/request", "", "public", "4Xdaily ltm pottmp.sig995 from the NCEP Reanalysis (pottmp.sig995.4Xday.ltm), 2.5\u00b0, 0001", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (4xDaily Long Term Mean potential temperature at sigma level 995, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_725b_7805_3599_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_725b_7805_3599_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_725b_7805_3599/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_725b_7805_3599.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_725b_7805_3599&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_725b_7805_3599"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d517_b408_8858", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d517_b408_8858.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d517_b408_8858/request", "", "public", "4Xdaily ltm pr_wtr.eatm from the NCEP Reanalysis (Top Dataset, surface, pr wtr.eatm.4Xday.ltm), 2.5\u00b0, 0001", "4Xdaily ltm pr_wtr.eatm from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (4xDaily Long Term Mean Precipitable Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d517_b408_8858_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d517_b408_8858_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d517_b408_8858/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d517_b408_8858.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d517_b408_8858&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d517_b408_8858"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c862_3cab_00df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c862_3cab_00df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c862_3cab_00df/request", "", "public", "4Xdaily ltm pres.hcb from the NCEP Reanalysis (Top Dataset, other gauss, pres.hcb.4Xday.ltm), 0001", "4Xdaily ltm pres.hcb from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean High Cloud Bottom Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c862_3cab_00df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c862_3cab_00df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c862_3cab_00df/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c862_3cab_00df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c862_3cab_00df&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c862_3cab_00df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1262_94c0_41bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1262_94c0_41bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1262_94c0_41bf/request", "", "public", "4Xdaily ltm pres.hct from the NCEP Reanalysis (Top Dataset, other gauss, pres.hct.4Xday.ltm), 0001", "4Xdaily ltm pres.hct from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean High Cloud Top Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1262_94c0_41bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1262_94c0_41bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1262_94c0_41bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1262_94c0_41bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1262_94c0_41bf&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_1262_94c0_41bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8adc_8e86_f17c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8adc_8e86_f17c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8adc_8e86_f17c/request", "", "public", "4Xdaily ltm pres.lcb from the NCEP Reanalysis (Top Dataset, other gauss, pres.lcb.4Xday.ltm), 0001", "4Xdaily ltm pres.lcb from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean Low Cloud Bottom Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8adc_8e86_f17c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8adc_8e86_f17c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8adc_8e86_f17c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8adc_8e86_f17c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8adc_8e86_f17c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8adc_8e86_f17c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e8ff_0271_2e2e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e8ff_0271_2e2e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e8ff_0271_2e2e/request", "", "public", "4Xdaily ltm pres.lct from the NCEP Reanalysis (Top Dataset, other gauss, pres.lct.4Xday.ltm), 0001", "4Xdaily ltm pres.lct from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean Low Cloud Top Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e8ff_0271_2e2e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e8ff_0271_2e2e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e8ff_0271_2e2e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e8ff_0271_2e2e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e8ff_0271_2e2e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e8ff_0271_2e2e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8180_1555_7f8c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8180_1555_7f8c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8180_1555_7f8c/request", "", "public", "4Xdaily ltm pres.mcb from the NCEP Reanalysis (Top Dataset, other gauss, pres.mcb.4Xday.ltm), 0001", "4Xdaily ltm pres.mcb from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean Middle Cloud Bottom Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8180_1555_7f8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8180_1555_7f8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8180_1555_7f8c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8180_1555_7f8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8180_1555_7f8c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8180_1555_7f8c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7817_1218_30fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7817_1218_30fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7817_1218_30fd/request", "", "public", "4Xdaily ltm pres.mct from the NCEP Reanalysis (Top Dataset, other gauss, pres.mct.4Xday.ltm), 0001", "4Xdaily ltm pres.mct from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean Middle Cloud Top Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7817_1218_30fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7817_1218_30fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7817_1218_30fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7817_1218_30fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7817_1218_30fd&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7817_1218_30fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5ce_4b99_244f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5ce_4b99_244f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f5ce_4b99_244f/request", "", "public", "4Xdaily ltm pres.tropp from the NCEP Reanalysis (Top Dataset, tropopause, pres.tropp.4Xday.ltm), 2.5\u00b0, 0001", "4Xdaily ltm pres.tropp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the tropopause values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (4xDaily Long Term Mean Pressure at Tropopause, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f5ce_4b99_244f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f5ce_4b99_244f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f5ce_4b99_244f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f5ce_4b99_244f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f5ce_4b99_244f&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f5ce_4b99_244f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_647a_609f_5d71", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_647a_609f_5d71.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_647a_609f_5d71/request", "", "public", "4Xdaily ltm rhum.sig995 from the NCEP Reanalysis (Top Dataset, surface, rhum.sig995.4Xday.ltm), 2.5\u00b0, 0001", "4Xdaily ltm rhum.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (4xDaily Long Term Mean relative humidity at sigma level 995, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_647a_609f_5d71_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_647a_609f_5d71_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_647a_609f_5d71/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_647a_609f_5d71.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_647a_609f_5d71&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_647a_609f_5d71"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e42_033a_f1c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e42_033a_f1c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e42_033a_f1c0/request", "", "public", "4Xdaily ltm tcdc.eatm from the NCEP Reanalysis (Top Dataset, other gauss, tcdc.eatm.4Xday.ltm), 0001", "4Xdaily ltm tcdc.eatm from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npresssure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Total cloud cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e42_033a_f1c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e42_033a_f1c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e42_033a_f1c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e42_033a_f1c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e42_033a_f1c0&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_3e42_033a_f1c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d61_c640_8e25", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d61_c640_8e25.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9d61_c640_8e25/request", "", "public", "4Xdaily ltm ulwrf.ntat from the NCEP Reanalysis (ulwrf.ntat.4Xday.ltm), 0001", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Long Term Mean Upward Longwave Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9d61_c640_8e25_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9d61_c640_8e25_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9d61_c640_8e25/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9d61_c640_8e25.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9d61_c640_8e25&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9d61_c640_8e25"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0da8_6ab7_519a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0da8_6ab7_519a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0da8_6ab7_519a/request", "", "public", "4Xdaily ltm uswrf.ntat from the NCEP Reanalysis (uswrf.ntat.4Xday.ltm), 0001", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Long Term Mean Upward Solar Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0da8_6ab7_519a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0da8_6ab7_519a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0da8_6ab7_519a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0da8_6ab7_519a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0da8_6ab7_519a&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0da8_6ab7_519a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6dfa_e0d6_fcb3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6dfa_e0d6_fcb3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6dfa_e0d6_fcb3/request", "", "public", "4Xdaily ltm uwnd.sig995 from the NCEP Reanalysis (Top Dataset, surface, uwnd.sig995.4Xday.ltm), 2.5\u00b0, 0001", "4Xdaily ltm uwnd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (4xDaily Long Term Mean u-wind at sigma level 995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6dfa_e0d6_fcb3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6dfa_e0d6_fcb3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6dfa_e0d6_fcb3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6dfa_e0d6_fcb3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6dfa_e0d6_fcb3&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6dfa_e0d6_fcb3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7fd_7078_1aca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7fd_7078_1aca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e7fd_7078_1aca/request", "", "public", "4Xdaily ltm vwnd.sig995 from the NCEP Reanalysis (Top Dataset, surface, vwnd.sig995.4Xday.ltm), 2.5\u00b0, 0001", "4Xdaily ltm vwnd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (4xDaily Long Term Mean v wind at sigma level 995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e7fd_7078_1aca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e7fd_7078_1aca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e7fd_7078_1aca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e7fd_7078_1aca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e7fd_7078_1aca&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e7fd_7078_1aca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1604_365e_d8ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1604_365e_d8ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1604_365e_d8ff/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1604_365e_d8ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1604_365e_d8ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1604_365e_d8ff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1604_365e_d8ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1604_365e_d8ff&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1604_365e_d8ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae8b_5a96_5ecd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae8b_5a96_5ecd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae8b_5a96_5ecd/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae8b_5a96_5ecd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae8b_5a96_5ecd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae8b_5a96_5ecd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae8b_5a96_5ecd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae8b_5a96_5ecd&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ae8b_5a96_5ecd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_082b_1e27_a382", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_082b_1e27_a382.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_082b_1e27_a382/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature Spread at surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_082b_1e27_a382_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_082b_1e27_a382_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_082b_1e27_a382/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_082b_1e27_a382.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_082b_1e27_a382&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_082b_1e27_a382"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50c5_cd46_75ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50c5_cd46_75ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_50c5_cd46_75ab/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature at Surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_50c5_cd46_75ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_50c5_cd46_75ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50c5_cd46_75ab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50c5_cd46_75ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50c5_cd46_75ab&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_50c5_cd46_75ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d27a_4998_a444", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d27a_4998_a444.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d27a_4998_a444/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, albedo.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nalbedo (3-hourly Long Term Mean Albedo Spread at surface, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d27a_4998_a444_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d27a_4998_a444_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d27a_4998_a444/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d27a_4998_a444.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d27a_4998_a444&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d27a_4998_a444"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd1c_4492_0079", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd1c_4492_0079.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dd1c_4492_0079/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, albedo.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nalbedo (3-hourly Long Term Mean Albedo at Surface, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dd1c_4492_0079_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dd1c_4492_0079_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dd1c_4492_0079/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dd1c_4492_0079.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dd1c_4492_0079&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_dd1c_4492_0079"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f4b_f599_c390", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f4b_f599_c390.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f4b_f599_c390/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, cprat.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (3-hourly Long Term Mean Convective Precipitation Rate Spread, kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f4b_f599_c390_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f4b_f599_c390_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f4b_f599_c390/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f4b_f599_c390.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f4b_f599_c390&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7f4b_f599_c390"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dff2_0ba4_cefa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dff2_0ba4_cefa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dff2_0ba4_cefa/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, cprat.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (3-hourly Long Term Mean Convective Precipitation Rate, kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dff2_0ba4_cefa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dff2_0ba4_cefa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dff2_0ba4_cefa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dff2_0ba4_cefa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dff2_0ba4_cefa&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_dff2_0ba4_cefa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4977_9985_7407", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4977_9985_7407.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4977_9985_7407/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, cwork.eatm.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncwork (3-hourly Long Term Mean Cloud Work Function, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4977_9985_7407_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4977_9985_7407_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4977_9985_7407/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4977_9985_7407.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4977_9985_7407&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4977_9985_7407"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5ff_f413_5949", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5ff_f413_5949.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5ff_f413_5949/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, cwork.eatm.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncwork (3-hourly Long Term Mean Cloud Work Function Spread, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5ff_f413_5949_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5ff_f413_5949_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5ff_f413_5949/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5ff_f413_5949.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5ff_f413_5949&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c5ff_f413_5949"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1114_cfe8_8666", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1114_cfe8_8666.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1114_cfe8_8666/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, dlwrf.sfc.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (3-hourly Long Term Mean Downward Longwave Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1114_cfe8_8666_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1114_cfe8_8666_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1114_cfe8_8666/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1114_cfe8_8666.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1114_cfe8_8666&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1114_cfe8_8666"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2e9_4552_98f7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2e9_4552_98f7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d2e9_4552_98f7/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, dlwrf.sfc.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (3-hourly Long Term Mean Downward Longwave Radiation Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d2e9_4552_98f7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d2e9_4552_98f7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d2e9_4552_98f7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d2e9_4552_98f7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d2e9_4552_98f7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d2e9_4552_98f7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e99_0e2b_e323", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e99_0e2b_e323.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e99_0e2b_e323/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, dswrf.sfc.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (3-hourly Long Term Mean Downward Solar Radiation Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e99_0e2b_e323_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e99_0e2b_e323_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e99_0e2b_e323/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e99_0e2b_e323.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e99_0e2b_e323&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8e99_0e2b_e323"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff5e_743b_197d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff5e_743b_197d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff5e_743b_197d/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, dswrf.sfc.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (3-hourly Long Term Mean Downward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff5e_743b_197d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff5e_743b_197d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff5e_743b_197d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff5e_743b_197d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff5e_743b_197d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ff5e_743b_197d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58ab_b95a_3e2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58ab_b95a_3e2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_58ab_b95a_3e2f/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, gflux.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (3-hourly Long Term Mean Ground Heat Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_58ab_b95a_3e2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_58ab_b95a_3e2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_58ab_b95a_3e2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_58ab_b95a_3e2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_58ab_b95a_3e2f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_58ab_b95a_3e2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f457_205e_0fca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f457_205e_0fca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f457_205e_0fca/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, gflux.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (3-hourly Long Term Mean Ground Heat Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f457_205e_0fca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f457_205e_0fca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f457_205e_0fca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f457_205e_0fca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f457_205e_0fca&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f457_205e_0fca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_76ec_da24_66f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_76ec_da24_66f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_76ec_da24_66f5/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, hpbl.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhpbl (3-hourly Long Term Mean Height Spread of Pressure Boundary Layer, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_76ec_da24_66f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_76ec_da24_66f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_76ec_da24_66f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_76ec_da24_66f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_76ec_da24_66f5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_76ec_da24_66f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a17c_310f_49a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a17c_310f_49a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a17c_310f_49a6/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, hpbl.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhpbl (3-hourly Long Term Mean Height of Pressure Boundary Layer, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a17c_310f_49a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a17c_310f_49a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a17c_310f_49a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a17c_310f_49a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a17c_310f_49a6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a17c_310f_49a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fd9_6e08_3fa3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fd9_6e08_3fa3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1fd9_6e08_3fa3/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, icec.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (3-hourly Long Term Mean Ice Concentration at surface, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1fd9_6e08_3fa3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1fd9_6e08_3fa3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1fd9_6e08_3fa3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1fd9_6e08_3fa3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1fd9_6e08_3fa3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1fd9_6e08_3fa3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3667_910f_7082", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3667_910f_7082.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3667_910f_7082/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, icet.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicet (3-hourly Long Term Mean Ice Thickness at Surface, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3667_910f_7082_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3667_910f_7082_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3667_910f_7082/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3667_910f_7082.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3667_910f_7082&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3667_910f_7082"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_593f_515f_e498", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_593f_515f_e498.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_593f_515f_e498/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, icet.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicet (3-hourly Long Term Mean Ice Thickness Spread at Surface, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_593f_515f_e498_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_593f_515f_e498_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_593f_515f_e498/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_593f_515f_e498.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_593f_515f_e498&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_593f_515f_e498"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d88e_134e_1d16", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d88e_134e_1d16.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d88e_134e_1d16/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, lhtfl.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (3-hourly Long Term Mean Latent Heat Net Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d88e_134e_1d16_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d88e_134e_1d16_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d88e_134e_1d16/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d88e_134e_1d16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d88e_134e_1d16&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d88e_134e_1d16"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3ab_ba1c_cc49", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3ab_ba1c_cc49.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f3ab_ba1c_cc49/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, lhtfl.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (3-hourly Long Term Mean Latent Heat Net Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f3ab_ba1c_cc49_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f3ab_ba1c_cc49_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f3ab_ba1c_cc49/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f3ab_ba1c_cc49.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f3ab_ba1c_cc49&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f3ab_ba1c_cc49"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91c2_b291_355f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91c2_b291_355f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_91c2_b291_355f/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, pevpr.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (3-hourly Long Term Mean Potential Evaporation Rate Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_91c2_b291_355f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_91c2_b291_355f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_91c2_b291_355f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_91c2_b291_355f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_91c2_b291_355f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_91c2_b291_355f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d445_8d42_a79d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d445_8d42_a79d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d445_8d42_a79d/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, pevpr.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (3-hourly Long Term Mean Potential Evaporation Rate at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d445_8d42_a79d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d445_8d42_a79d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d445_8d42_a79d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d445_8d42_a79d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d445_8d42_a79d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d445_8d42_a79d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0155_10a7_3ac5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0155_10a7_3ac5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0155_10a7_3ac5/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, pr wtr.eatm.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (3-hourly Long Term Mean Precipitable Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0155_10a7_3ac5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0155_10a7_3ac5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0155_10a7_3ac5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0155_10a7_3ac5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0155_10a7_3ac5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0155_10a7_3ac5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb2e_ab05_a47c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb2e_ab05_a47c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bb2e_ab05_a47c/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, pr wtr.eatm.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (3-hourly Long Term Mean Precipitable Water Spread for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bb2e_ab05_a47c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bb2e_ab05_a47c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bb2e_ab05_a47c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bb2e_ab05_a47c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bb2e_ab05_a47c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bb2e_ab05_a47c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37b1_62a2_01bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37b1_62a2_01bc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_37b1_62a2_01bc/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, prate.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (3-hourly Long Term Mean Precipitation Rate Spread at surface, kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_37b1_62a2_01bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_37b1_62a2_01bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_37b1_62a2_01bc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_37b1_62a2_01bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_37b1_62a2_01bc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_37b1_62a2_01bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b92_e2c6_0f57", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b92_e2c6_0f57.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b92_e2c6_0f57/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, prate.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (3-hourly Long Term Mean Precipitation Rate at surface, kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b92_e2c6_0f57_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b92_e2c6_0f57_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b92_e2c6_0f57/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b92_e2c6_0f57.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b92_e2c6_0f57&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5b92_e2c6_0f57"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_433b_9b96_3b28", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_433b_9b96_3b28.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_433b_9b96_3b28/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, press.sfc.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npress (3-hourly Long Term Mean Pressure at surface, Pascal)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_433b_9b96_3b28_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_433b_9b96_3b28_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_433b_9b96_3b28/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_433b_9b96_3b28.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_433b_9b96_3b28&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_433b_9b96_3b28"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dad3_a8ba_73ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dad3_a8ba_73ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dad3_a8ba_73ee/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, press.sfc.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npress (3-hourly Long Term Mean Pressure Spread at surface, Pascal)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dad3_a8ba_73ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dad3_a8ba_73ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dad3_a8ba_73ee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dad3_a8ba_73ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dad3_a8ba_73ee&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_dad3_a8ba_73ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0911_b482_d7d6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0911_b482_d7d6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0911_b482_d7d6/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, runoff.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunoff (3-hourly Long Term Mean Water Runoff Spread at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0911_b482_d7d6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0911_b482_d7d6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0911_b482_d7d6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0911_b482_d7d6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0911_b482_d7d6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0911_b482_d7d6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81e0_ac7e_ffe8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81e0_ac7e_ffe8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_81e0_ac7e_ffe8/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, runoff.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunoff (3-hourly Long Term Mean Water Runoff at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_81e0_ac7e_ffe8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_81e0_ac7e_ffe8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_81e0_ac7e_ffe8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_81e0_ac7e_ffe8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_81e0_ac7e_ffe8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_81e0_ac7e_ffe8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f579_2df1_2608", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f579_2df1_2608.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f579_2df1_2608/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, shtfl.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (3-hourly Long Term Mean Sensible Heat Net Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f579_2df1_2608_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f579_2df1_2608_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f579_2df1_2608/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f579_2df1_2608.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f579_2df1_2608&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f579_2df1_2608"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa34_1961_5fba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa34_1961_5fba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fa34_1961_5fba/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, shtfl.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (3-hourly Long Term Mean Sensible Heat Net Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fa34_1961_5fba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fa34_1961_5fba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fa34_1961_5fba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fa34_1961_5fba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fa34_1961_5fba&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fa34_1961_5fba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6921_c010_c6b2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6921_c010_c6b2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6921_c010_c6b2/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, shum.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (3-hourly Long Term Mean Specific Humidity Spread at 2 m, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6921_c010_c6b2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6921_c010_c6b2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6921_c010_c6b2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6921_c010_c6b2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6921_c010_c6b2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6921_c010_c6b2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff5f_eb71_267d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff5f_eb71_267d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff5f_eb71_267d/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, shum.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (3-hourly Long Term Mean Specific Humidity at 2 m, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff5f_eb71_267d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff5f_eb71_267d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff5f_eb71_267d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff5f_eb71_267d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff5f_eb71_267d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ff5f_eb71_267d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dea_20a3_621d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dea_20a3_621d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4dea_20a3_621d/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, snod.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnod (3-hourly Long Term Mean Snow Depth at Surface, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4dea_20a3_621d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4dea_20a3_621d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4dea_20a3_621d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4dea_20a3_621d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4dea_20a3_621d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4dea_20a3_621d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f28c_2a42_0383", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f28c_2a42_0383.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f28c_2a42_0383/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, snod.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnod (3-hourly Long Term Mean Snow Depth Spread at Surface, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f28c_2a42_0383_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f28c_2a42_0383_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f28c_2a42_0383/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f28c_2a42_0383.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f28c_2a42_0383&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f28c_2a42_0383"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_869e_64ac_7ca2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_869e_64ac_7ca2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_869e_64ac_7ca2/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, snowc.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowc (3-hourly Long Term Mean Snow Cover Spread at Surface, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_869e_64ac_7ca2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_869e_64ac_7ca2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_869e_64ac_7ca2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_869e_64ac_7ca2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_869e_64ac_7ca2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_869e_64ac_7ca2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d866_090b_0c7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d866_090b_0c7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d866_090b_0c7b/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, snowc.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowc (3-hourly Long Term Mean Snow Cover at Surface, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d866_090b_0c7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d866_090b_0c7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d866_090b_0c7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d866_090b_0c7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d866_090b_0c7b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d866_090b_0c7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_677d_1fd1_8c7d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_677d_1fd1_8c7d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_677d_1fd1_8c7d/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, soilm.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (3-hourly Long Term Mean Soil Moisture Content Sprread at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_677d_1fd1_8c7d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_677d_1fd1_8c7d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_677d_1fd1_8c7d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_677d_1fd1_8c7d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_677d_1fd1_8c7d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_677d_1fd1_8c7d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_754f_93ac_f59b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_754f_93ac_f59b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_754f_93ac_f59b/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, soilm.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (3-hourly Long Term Mean Soil Moisture Content at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_754f_93ac_f59b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_754f_93ac_f59b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_754f_93ac_f59b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_754f_93ac_f59b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_754f_93ac_f59b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_754f_93ac_f59b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_963d_4b94_3438", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_963d_4b94_3438.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_963d_4b94_3438/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ssrunoff.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssrunoff (3-hourly Long Term Mean Storm Surface Runoff at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_963d_4b94_3438_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_963d_4b94_3438_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_963d_4b94_3438/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_963d_4b94_3438.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_963d_4b94_3438&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_963d_4b94_3438"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd17_494b_2f95", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd17_494b_2f95.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fd17_494b_2f95/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ssrunoff.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssrunoff (3-hourly Long Term Mean Storm Surface Runoff Spread at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fd17_494b_2f95_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fd17_494b_2f95_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fd17_494b_2f95/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fd17_494b_2f95.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fd17_494b_2f95&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fd17_494b_2f95"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_589c_9377_c06b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_589c_9377_c06b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_589c_9377_c06b/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.convcld.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Convective Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_589c_9377_c06b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_589c_9377_c06b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_589c_9377_c06b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_589c_9377_c06b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_589c_9377_c06b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_589c_9377_c06b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d654_febf_4df4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d654_febf_4df4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d654_febf_4df4/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.convcld.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Convective Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d654_febf_4df4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d654_febf_4df4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d654_febf_4df4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d654_febf_4df4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d654_febf_4df4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d654_febf_4df4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_145a_e6b2_2d0f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_145a_e6b2_2d0f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_145a_e6b2_2d0f/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.eatm.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Total Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_145a_e6b2_2d0f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_145a_e6b2_2d0f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_145a_e6b2_2d0f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_145a_e6b2_2d0f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_145a_e6b2_2d0f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_145a_e6b2_2d0f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f14_b550_5782", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f14_b550_5782.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f14_b550_5782/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.eatm.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Total Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f14_b550_5782_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f14_b550_5782_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f14_b550_5782/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f14_b550_5782.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f14_b550_5782&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7f14_b550_5782"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a72_d254_ff00", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a72_d254_ff00.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a72_d254_ff00/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.lowcld.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Low Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a72_d254_ff00_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a72_d254_ff00_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a72_d254_ff00/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a72_d254_ff00.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a72_d254_ff00&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7a72_d254_ff00"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e73e_486e_f337", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e73e_486e_f337.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e73e_486e_f337/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.lowcld.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Low Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e73e_486e_f337_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e73e_486e_f337_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e73e_486e_f337/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e73e_486e_f337.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e73e_486e_f337&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e73e_486e_f337"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_404f_8d74_2f96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_404f_8d74_2f96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_404f_8d74_2f96/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.midcld.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Middle Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_404f_8d74_2f96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_404f_8d74_2f96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_404f_8d74_2f96/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_404f_8d74_2f96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_404f_8d74_2f96&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_404f_8d74_2f96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e91_4e19_5513", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e91_4e19_5513.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e91_4e19_5513/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.midcld.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Middle Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e91_4e19_5513_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e91_4e19_5513_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e91_4e19_5513/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e91_4e19_5513.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e91_4e19_5513&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9e91_4e19_5513"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_201a_aa7f_eee2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_201a_aa7f_eee2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_201a_aa7f_eee2/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.topcld.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Top Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_201a_aa7f_eee2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_201a_aa7f_eee2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_201a_aa7f_eee2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_201a_aa7f_eee2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_201a_aa7f_eee2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_201a_aa7f_eee2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26ff_7a1d_8b16", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26ff_7a1d_8b16.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_26ff_7a1d_8b16/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.topcld.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Top Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_26ff_7a1d_8b16_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_26ff_7a1d_8b16_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_26ff_7a1d_8b16/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_26ff_7a1d_8b16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_26ff_7a1d_8b16&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_26ff_7a1d_8b16"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_942a_b65c_5ba8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_942a_b65c_5ba8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_942a_b65c_5ba8/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (3-hourly Long Term Mean Maximum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_942a_b65c_5ba8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_942a_b65c_5ba8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_942a_b65c_5ba8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_942a_b65c_5ba8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_942a_b65c_5ba8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_942a_b65c_5ba8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffa6_5de8_3896", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffa6_5de8_3896.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ffa6_5de8_3896/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (3-hourly Long Term Mean Maximum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ffa6_5de8_3896_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ffa6_5de8_3896_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ffa6_5de8_3896/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ffa6_5de8_3896.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ffa6_5de8_3896&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ffa6_5de8_3896"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51ca_cc5a_dd4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51ca_cc5a_dd4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_51ca_cc5a_dd4d/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (3-hourly Long Term Mean Minimum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_51ca_cc5a_dd4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_51ca_cc5a_dd4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_51ca_cc5a_dd4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_51ca_cc5a_dd4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_51ca_cc5a_dd4d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_51ca_cc5a_dd4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6009_b2c2_2d30", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6009_b2c2_2d30.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6009_b2c2_2d30/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (3-hourly Long Term Mean Minimum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6009_b2c2_2d30_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6009_b2c2_2d30_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6009_b2c2_2d30/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6009_b2c2_2d30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6009_b2c2_2d30&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6009_b2c2_2d30"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59ab_3812_9275", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59ab_3812_9275.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_59ab_3812_9275/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, trans.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntrans (3-hourly Long Term Mean Transpiration Spread at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_59ab_3812_9275_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_59ab_3812_9275_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_59ab_3812_9275/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_59ab_3812_9275.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_59ab_3812_9275&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_59ab_3812_9275"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd5b_73a1_23e7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd5b_73a1_23e7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fd5b_73a1_23e7/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, trans.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntrans (3-hourly Long Term Mean Transpiration at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fd5b_73a1_23e7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fd5b_73a1_23e7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fd5b_73a1_23e7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fd5b_73a1_23e7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fd5b_73a1_23e7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fd5b_73a1_23e7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_07d2_88fe_677b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_07d2_88fe_677b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_07d2_88fe_677b/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uflx.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (3-hourly Long Term Mean Momentum Flux Spread, u-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_07d2_88fe_677b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_07d2_88fe_677b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_07d2_88fe_677b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_07d2_88fe_677b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_07d2_88fe_677b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_07d2_88fe_677b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f40_d0c0_c132", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f40_d0c0_c132.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f40_d0c0_c132/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uflx.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (3-hourly Long Term Mean Momentum Flux, u-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f40_d0c0_c132_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f40_d0c0_c132_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f40_d0c0_c132/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f40_d0c0_c132.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f40_d0c0_c132&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0f40_d0c0_c132"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b05e_f84a_9702", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b05e_f84a_9702.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b05e_f84a_9702/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ugwd.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (3-hourly Long Term Mean Zonal Gravity Wave Stress at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b05e_f84a_9702_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b05e_f84a_9702_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b05e_f84a_9702/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b05e_f84a_9702.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b05e_f84a_9702&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b05e_f84a_9702"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e848_9301_dea9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e848_9301_dea9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e848_9301_dea9/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ugwd.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (3-hourly Long Term Mean Zonal Gravity Wave Stress Spread at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e848_9301_dea9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e848_9301_dea9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e848_9301_dea9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e848_9301_dea9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e848_9301_dea9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e848_9301_dea9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cce_3031_a701", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cce_3031_a701.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2cce_3031_a701/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ulwrf.ntat.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (3-hourly Long Term Mean Upward Longwave Radiation Flux at nominal top of atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2cce_3031_a701_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2cce_3031_a701_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2cce_3031_a701/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2cce_3031_a701.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2cce_3031_a701&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2cce_3031_a701"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dcb0_0a17_de0a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dcb0_0a17_de0a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dcb0_0a17_de0a/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ulwrf.ntat.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (3-hourly Long Term Mean Upward Longwave Radiation Flux Spread at nominal top of atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dcb0_0a17_de0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dcb0_0a17_de0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dcb0_0a17_de0a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dcb0_0a17_de0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dcb0_0a17_de0a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_dcb0_0a17_de0a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3213_0916_6d8b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3213_0916_6d8b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3213_0916_6d8b/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ulwrf.sfc.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (3-hourly Long Term Mean Upward Longwave Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3213_0916_6d8b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3213_0916_6d8b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3213_0916_6d8b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3213_0916_6d8b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3213_0916_6d8b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3213_0916_6d8b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7710_daee_a892", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7710_daee_a892.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7710_daee_a892/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ulwrf.sfc.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (3-hourly Long Term Mean Upward Longwave Radiation Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7710_daee_a892_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7710_daee_a892_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7710_daee_a892/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7710_daee_a892.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7710_daee_a892&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7710_daee_a892"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5066_1f43_d490", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5066_1f43_d490.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5066_1f43_d490/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uswrf.ntat.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (3-hourly Long Term Mean Upward Solar Radiation Flux Spread at nominal top of atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5066_1f43_d490_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5066_1f43_d490_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5066_1f43_d490/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5066_1f43_d490.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5066_1f43_d490&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5066_1f43_d490"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdac_4f3c_dafe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdac_4f3c_dafe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bdac_4f3c_dafe/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uswrf.ntat.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (3-hourly Long Term Mean Upward Solar Radiation Flux at nominal top of atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bdac_4f3c_dafe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bdac_4f3c_dafe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bdac_4f3c_dafe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bdac_4f3c_dafe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bdac_4f3c_dafe&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bdac_4f3c_dafe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edf9_eded_bbe5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edf9_eded_bbe5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_edf9_eded_bbe5/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uswrf.sfc.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (3-hourly Long Term Mean Upward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_edf9_eded_bbe5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_edf9_eded_bbe5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_edf9_eded_bbe5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_edf9_eded_bbe5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_edf9_eded_bbe5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_edf9_eded_bbe5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd80_f826_23e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd80_f826_23e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fd80_f826_23e1/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uswrf.sfc.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (3-hourly Long Term Mean Upward Solar Radiation Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fd80_f826_23e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fd80_f826_23e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fd80_f826_23e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fd80_f826_23e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fd80_f826_23e1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fd80_f826_23e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a11a_aa27_ab88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a11a_aa27_ab88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a11a_aa27_ab88/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uwnd.10m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (3-hourly Long Term Mean U-wind Spread, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a11a_aa27_ab88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a11a_aa27_ab88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a11a_aa27_ab88/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a11a_aa27_ab88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a11a_aa27_ab88&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a11a_aa27_ab88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec80_04ae_9574", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec80_04ae_9574.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ec80_04ae_9574/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uwnd.10m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (3-hourly Long Term Mean U-wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ec80_04ae_9574_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ec80_04ae_9574_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ec80_04ae_9574/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ec80_04ae_9574.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ec80_04ae_9574&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ec80_04ae_9574"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d3f_08e5_99e7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d3f_08e5_99e7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0d3f_08e5_99e7/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, vflx.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (3-hourly Long Term Mean Momentum Flux Spread, v-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0d3f_08e5_99e7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0d3f_08e5_99e7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0d3f_08e5_99e7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0d3f_08e5_99e7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0d3f_08e5_99e7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0d3f_08e5_99e7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7a2_7520_8576", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7a2_7520_8576.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e7a2_7520_8576/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, vflx.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (3-hourly Long Term Mean Momentum Flux, v-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e7a2_7520_8576_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e7a2_7520_8576_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e7a2_7520_8576/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e7a2_7520_8576.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e7a2_7520_8576&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e7a2_7520_8576"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c121_503c_937f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c121_503c_937f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c121_503c_937f/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, vgwd.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (3-hourly Long Term Mean Meridional Gravity Wave Stress at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c121_503c_937f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c121_503c_937f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c121_503c_937f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c121_503c_937f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c121_503c_937f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c121_503c_937f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca80_668f_790a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca80_668f_790a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca80_668f_790a/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, vgwd.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (3-hourly Long Term Mean Meridional Gravity Wave Stress Spread at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca80_668f_790a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca80_668f_790a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca80_668f_790a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca80_668f_790a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca80_668f_790a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ca80_668f_790a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a41_a92c_2289", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a41_a92c_2289.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a41_a92c_2289/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, vwnd.10m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (3-hourly Long Term Mean V wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a41_a92c_2289_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a41_a92c_2289_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a41_a92c_2289/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a41_a92c_2289.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a41_a92c_2289&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7a41_a92c_2289"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af4a_21d3_42ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af4a_21d3_42ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_af4a_21d3_42ef/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, vwnd.10m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (3-hourly Long Term Mean V wind Spread, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_af4a_21d3_42ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_af4a_21d3_42ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_af4a_21d3_42ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_af4a_21d3_42ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_af4a_21d3_42ef&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_af4a_21d3_42ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_77b0_1891_d98d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_77b0_1891_d98d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_77b0_1891_d98d/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, weasd.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (3-hourly Long Term Mean Water Equiv. of Accum. Snow Depth at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_77b0_1891_d98d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_77b0_1891_d98d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_77b0_1891_d98d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_77b0_1891_d98d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_77b0_1891_d98d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_77b0_1891_d98d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc4d_7808_4dc9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc4d_7808_4dc9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc4d_7808_4dc9/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, weasd.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (3-hourly Long Term Mean Water Equiv. of Accum. Snow Depth Spread at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc4d_7808_4dc9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc4d_7808_4dc9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc4d_7808_4dc9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc4d_7808_4dc9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc4d_7808_4dc9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fc4d_7808_4dc9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3146_c2ed_e423", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3146_c2ed_e423.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3146_c2ed_e423/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, soill.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoill (3-hourly Long Term Mean Liquid Volumetric Soil Moisture (non-frozen) Fraction Spread, 1)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3146_c2ed_e423_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3146_c2ed_e423_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3146_c2ed_e423/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3146_c2ed_e423.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3146_c2ed_e423&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3146_c2ed_e423"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6596_9266_c3cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6596_9266_c3cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6596_9266_c3cf/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, soill.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoill (3-hourly Long Term Mean Liquid Volumetric Soil Moisture (non-frozen) Fraction, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6596_9266_c3cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6596_9266_c3cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6596_9266_c3cf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6596_9266_c3cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6596_9266_c3cf&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6596_9266_c3cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_028c_d63d_1a84", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_028c_d63d_1a84.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_028c_d63d_1a84/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, soilw.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoilw (3-hourly Long Term Mean Soil Moisture Content, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_028c_d63d_1a84_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_028c_d63d_1a84_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_028c_d63d_1a84/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_028c_d63d_1a84.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_028c_d63d_1a84&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_028c_d63d_1a84"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d57e_68cd_0954", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d57e_68cd_0954.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d57e_68cd_0954/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, soilw.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoilw (3-hourly Long Term Mean Volumetric Soil Moisture Spread, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d57e_68cd_0954_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d57e_68cd_0954_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d57e_68cd_0954/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d57e_68cd_0954.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d57e_68cd_0954&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d57e_68cd_0954"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d169_ebfc_698e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d169_ebfc_698e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d169_ebfc_698e/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (3-hourly Long Term Mean Soil Temperature Spread, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d169_ebfc_698e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d169_ebfc_698e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d169_ebfc_698e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d169_ebfc_698e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d169_ebfc_698e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d169_ebfc_698e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f617_8124_8b6b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f617_8124_8b6b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f617_8124_8b6b/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (3-hourly Long Term Mean Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f617_8124_8b6b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f617_8124_8b6b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f617_8124_8b6b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f617_8124_8b6b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f617_8124_8b6b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f617_8124_8b6b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99c1_2d06_94f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99c1_2d06_94f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99c1_2d06_94f3/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, time invariant, hgt.sfc), 1871", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Geopotential Height at Surface Gaussian Grid, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99c1_2d06_94f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99c1_2d06_94f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99c1_2d06_94f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_Rean.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99c1_2d06_94f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99c1_2d06_94f3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_99c1_2d06_94f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ebe_167c_17a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ebe_167c_17a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ebe_167c_17a6/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, time invariant, land), 1871", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlsmask (time-invariant Land-sea Mask Gaussian Grid, frac.)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ebe_167c_17a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ebe_167c_17a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ebe_167c_17a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ebe_167c_17a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ebe_167c_17a6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1ebe_167c_17a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7f7_d7d1_a9de", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7f7_d7d1_a9de.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e7f7_d7d1_a9de/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, time invariant, lsmask), 1871", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlsmask (time-invariant Land-sea Mask Gaussian Grid, frac.)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e7f7_d7d1_a9de_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e7f7_d7d1_a9de_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e7f7_d7d1_a9de/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e7f7_d7d1_a9de.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e7f7_d7d1_a9de&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e7f7_d7d1_a9de"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ffd_2dcb_53a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ffd_2dcb_53a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ffd_2dcb_53a0/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, time invariant, soiltype), 1871", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoiltype (time-invariant soil type (Zobler) Gaussian Grid, frac.)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ffd_2dcb_53a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ffd_2dcb_53a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ffd_2dcb_53a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ffd_2dcb_53a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ffd_2dcb_53a0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7ffd_2dcb_53a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_27ba_7fdb_f5db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_27ba_7fdb_f5db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_27ba_7fdb_f5db/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, time invariant, vegtype), 1871", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvegtype (time-invariant vegetation type (as in SiB) Gaussian Grid, frac.)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_27ba_7fdb_f5db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_27ba_7fdb_f5db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_27ba_7fdb_f5db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_27ba_7fdb_f5db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_27ba_7fdb_f5db&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_27ba_7fdb_f5db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bbd9_21a7_0755", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bbd9_21a7_0755.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_bbd9_21a7_0755/request", "", "public", "Adak, Alaska Coastal Digital Elevation Model (Top Dataset, Regional, adak 1 mhw 2009), 2.7777778E-4\u00b0", "Adak, Alaska Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_bbd9_21a7_0755_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_bbd9_21a7_0755_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_bbd9_21a7_0755/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_bbd9_21a7_0755.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_bbd9_21a7_0755&showErrors=false&email=", "NOAA", "noaa_ngdc_bbd9_21a7_0755"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_91bc_1651_cd5d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_91bc_1651_cd5d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_91bc_1651_cd5d/request", "", "public", "Adak, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, AdakAK A)", "Adak, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_91bc_1651_cd5d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_91bc_1651_cd5d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_91bc_1651_cd5d/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_91bc_1651_cd5d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_91bc_1651_cd5d&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_91bc_1651_cd5d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1ad6_1a0a_5221", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1ad6_1a0a_5221.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1ad6_1a0a_5221/request", "", "public", "Adak, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, AdakAK B)", "Adak, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1ad6_1a0a_5221_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1ad6_1a0a_5221_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1ad6_1a0a_5221/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1ad6_1a0a_5221.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1ad6_1a0a_5221&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_1ad6_1a0a_5221"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4be8_724d_bc40", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4be8_724d_bc40.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4be8_724d_bc40/request", "", "public", "Adak, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, AdakAK C)", "Adak, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4be8_724d_bc40_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4be8_724d_bc40_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4be8_724d_bc40/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4be8_724d_bc40.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4be8_724d_bc40&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_4be8_724d_bc40"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d41b_3771_4202", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d41b_3771_4202.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d41b_3771_4202/request", "", "public", "Akutan, Alaska Coastal Digital Elevation Model (Top Dataset, Regional, akutan 8 mhhw 2009), 0.0022222223\u00b0", "Akutan, Alaska Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d41b_3771_4202_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d41b_3771_4202_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d41b_3771_4202/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d41b_3771_4202.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d41b_3771_4202&showErrors=false&email=", "NOAA", "noaa_ngdc_d41b_3771_4202"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8897_174e_4ad3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8897_174e_4ad3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8897_174e_4ad3/request", "", "public", "Akutan, Alaska Coastal Digital Elevation Model (Top Dataset, Regional, akutan 815 mhhw 2009), 1.4814814E-4\u00b0", "Akutan, Alaska Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8897_174e_4ad3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8897_174e_4ad3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8897_174e_4ad3/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8897_174e_4ad3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8897_174e_4ad3&showErrors=false&email=", "NOAA", "noaa_ngdc_8897_174e_4ad3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9b0b_d577_0207", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9b0b_d577_0207.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9b0b_d577_0207/request", "", "public", "Akutan, Alaska Coastal Digital Elevation Model (Top Dataset, Regional, akutan 83 mhhw 2009), 7.4074074E-4\u00b0", "Akutan, Alaska Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9b0b_d577_0207_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9b0b_d577_0207_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9b0b_d577_0207/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9b0b_d577_0207.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9b0b_d577_0207&showErrors=false&email=", "NOAA", "noaa_ngdc_9b0b_d577_0207"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_6a9d_81ac_8672", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_6a9d_81ac_8672.graph", "", "", "public", "AmSeas Apr 05 2013 to Current, AmSeas Apr 05 2013 to Current, Best Time Series [time]", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: American Seas Regional Forecast. Best time series, taking the data from the most recent run available. AmSeas Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_6a9d_81ac_8672/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_amseas_agg/AmSeas_Apr_05_2013_to_Current_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_6a9d_81ac_8672.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_6a9d_81ac_8672&showErrors=false&email=", "Fleet Numerical Meteorology and Oceanography Center", "noaa_ncddc_6a9d_81ac_8672"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_3d21_0085_7b93", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_3d21_0085_7b93.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_3d21_0085_7b93/request", "", "public", "AmSeas Apr 05 2013 to Current, AmSeas Apr 05 2013 to Current, Best Time Series [time][depth][lat][lon], 0.03333\u00b0", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: American Seas Regional Forecast. Best time series, taking the data from the most recent run available. AmSeas Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_3d21_0085_7b93_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_3d21_0085_7b93_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_3d21_0085_7b93/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_amseas_agg/AmSeas_Apr_05_2013_to_Current_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_3d21_0085_7b93.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_3d21_0085_7b93&showErrors=false&email=", "Fleet Numerical Meteorology and Oceanography Center", "noaa_ncddc_3d21_0085_7b93"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_9053_e5a5_9357", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_9053_e5a5_9357.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_9053_e5a5_9357/request", "", "public", "AmSeas Apr 05 2013 to Current, AmSeas Apr 05 2013 to Current, Best Time Series [time][lat][lon], 0.03333\u00b0", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: American Seas Regional Forecast. Best time series, taking the data from the most recent run available. AmSeas Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_atm_press (Surface Atmospherics Pressure, Pascal)\nsurf_el (Water Surface Elevation, meter)\nsurf_temp_flux (model surface temperature flux, degC-m/s)\nsurf_salt_flux (model surface salinity flux, psu-m/s)\nsurf_solar_flux (model surface shortwave flux, degC-m/s)\nsurf_roughness (model surface roughness, m)\nsurf_wnd_stress_gridx (Grid x Surface Wind Stress, newton/meter2)\nsurf_wnd_stress_gridy (Grid y Surface Wind Stress, newton/meter2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_9053_e5a5_9357_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_9053_e5a5_9357_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_9053_e5a5_9357/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_amseas_agg/AmSeas_Apr_05_2013_to_Current_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_9053_e5a5_9357.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_9053_e5a5_9357&showErrors=false&email=", "Fleet Numerical Meteorology and Oceanography Center", "noaa_ncddc_9053_e5a5_9357"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_cb27_58ab_be04", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_cb27_58ab_be04.graph", "", "", "public", "Amseas May 2010 to Apr 04 2013, Amseas May 2010 to Apr 04 2013, Best Time Series [time]", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: American Seas Regional Forecast. Best time series, taking the data from the most recent run available. US East Before Resolution Change(11/18/09 - 4/05/13)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_cb27_58ab_be04/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_amseas_agg_20091119_20130404/Amseas_May_2010_to_Apr_04_2013_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_cb27_58ab_be04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_cb27_58ab_be04&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_cb27_58ab_be04"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5646_f209_8b5a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5646_f209_8b5a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_5646_f209_8b5a/request", "", "public", "Amseas May 2010 to Apr 04 2013, Amseas May 2010 to Apr 04 2013, Best Time Series [time][depth][lat][lon]", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: American Seas Regional Forecast. Best time series, taking the data from the most recent run available. US East Before Resolution Change(11/18/09 - 4/05/13)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_5646_f209_8b5a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_5646_f209_8b5a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_5646_f209_8b5a/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_amseas_agg_20091119_20130404/Amseas_May_2010_to_Apr_04_2013_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_5646_f209_8b5a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_5646_f209_8b5a&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_5646_f209_8b5a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_30f3_dedb_1e46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_30f3_dedb_1e46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_30f3_dedb_1e46/request", "", "public", "Amseas May 2010 to Apr 04 2013, Amseas May 2010 to Apr 04 2013, Best Time Series [time][lat][lon]", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: American Seas Regional Forecast. Best time series, taking the data from the most recent run available. US East Before Resolution Change(11/18/09 - 4/05/13)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_atm_press (Surface Atmospherics Pressure, Pascal)\nsurf_el (Water Surface Elevation, meter)\nsurf_temp_flux (model surface temperature flux, degC-m/s)\nsurf_salt_flux (model surface salinity flux, psu-m/s)\nsurf_solar_flux (model surface shortwave flux, degC-m/s)\nsurf_roughness (model surface roughness, m)\nsurf_wnd_stress_gridx (Grid x Surface Wind Stress, newton/meter2)\nsurf_wnd_stress_gridy (Grid y Surface Wind Stress, newton/meter2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_30f3_dedb_1e46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_30f3_dedb_1e46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_30f3_dedb_1e46/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_amseas_agg_20091119_20130404/Amseas_May_2010_to_Apr_04_2013_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_30f3_dedb_1e46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_30f3_dedb_1e46&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_30f3_dedb_1e46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAmsreSstMon", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAmsreSstMon.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAmsreSstMon/request", "", "public", "AMSRE Model Output, obs4MIPs NASA-JPL, Global, 1 Degree, 2002-2010, Monthly", "This data set contains sea surface temperature (SST) data on a monthly 1 degree grid from the Advanced Microwave Scanning Radiometer (AMSR-E) aboard NASA's Aqua spacecraft. The data were produced by Remote Sensing Systems in support of the CMIP5 (Coupled Model Intercomparison Project Phase 5) under the World Climate Research Program (WCRP). Along with this dataset, two additional ancillary data files are included in the same directory which contain the number of observations and standard error co-located on the same 1 degree grids. AMSR-E, a passive-microwave radiometer launched on the Aqua platform on 4 May 2002, was provided by the National Space Development Agency (NASDA) of Japan to NASA as an indispensable part of Aqua's global hydrology mission. Over the oceans, AMSR-E is measuring a number of important geophysical parameters, including SST, wind speed, atmospheric water vapor, cloud water, and rain rate. A key feature of AMSR-E is its capability to see through clouds, thereby providing an uninterrupted view of global SST and surface wind fields. For more information, see\nftp://podaac.jpl.nasa.gov/OceanTemperature/amsre/L3/sst_1deg_1mo/docs/tosTechNote_AMSRE_L3_v7_200206-201012.pdf\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntos (Sea Surface Temperature, degree_C)\ntosNobs (Number of Observations, 1)\ntosStderr (Standard Error, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAmsreSstMon_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAmsreSstMon_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAmsreSstMon/index.json", "https://podaac.jpl.nasa.gov/dataset/AMSRE_L3_SST_1DEG_1MO", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAmsreSstMon.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAmsreSstMon&showErrors=false&email=", "Remote Sensing Systems", "jplAmsreSstMon"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAmsreSstMon_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAmsreSstMon_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAmsreSstMon_LonPM180/request", "", "public", "AMSRE Model Output, obs4MIPs NASA-JPL, Global, 1 Degree, 2002-2010, Monthly, Lon+/-180", "This data set contains sea surface temperature (SST) data on a monthly 1 degree grid from the Advanced Microwave Scanning Radiometer (AMSR-E) aboard NASA's Aqua spacecraft. The data were produced by Remote Sensing Systems in support of the CMIP5 (Coupled Model Intercomparison Project Phase 5) under the World Climate Research Program (WCRP). Along with this dataset, two additional ancillary data files are included in the same directory which contain the number of observations and standard error co-located on the same 1 degree grids. AMSR-E, a passive-microwave radiometer launched on the Aqua platform on 4 May 2002, was provided by the National Space Development Agency (NASDA) of Japan to NASA as an indispensable part of Aqua's global hydrology mission. Over the oceans, AMSR-E is measuring a number of important geophysical parameters, including SST, wind speed, atmospheric water vapor, cloud water, and rain rate. A key feature of AMSR-E is its capability to see through clouds, thereby providing an uninterrupted view of global SST and surface wind fields. For more information, see\nftp://podaac.jpl.nasa.gov/OceanTemperature/amsre/L3/sst_1deg_1mo/docs/tosTechNote_AMSRE_L3_v7_200206-201012.pdf\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntos (Sea Surface Temperature, degree_C)\ntosNobs (Number of Observations, 1)\ntosStderr (Standard Error, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAmsreSstMon_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAmsreSstMon_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAmsreSstMon_LonPM180/index.json", "https://podaac.jpl.nasa.gov/dataset/AMSRE_L3_SST_1DEG_1MO", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAmsreSstMon_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAmsreSstMon_LonPM180&showErrors=false&email=", "Remote Sensing Systems", "jplAmsreSstMon_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_b88b_1451_f102", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_b88b_1451_f102.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_b88b_1451_f102/request", "", "public", "Analysed blended SST over the global ocean using day and night input data", "Analysed blended sea surface temperature over the global ocean using day and night input data. An SST estimation scheme which combines multi-satellite retrievals of sea surface temperature datasets available from polar orbiters, geostationary InfraRed (IR) and microwave sensors into a single global analysis. This global SST ananlysis provide a daily gap free map of the foundation sea surface temperature at 0.05o spatial resolution. (Geo Polar Blended-Office of Satellite and Product Operations (OSPO)-L4-GLOB-v1.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nmask (sea/land/ice bit mask)\nsea_ice_fraction (1)\nanalysed_sst (analysed sea surface temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_b88b_1451_f102_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_b88b_1451_f102_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_b88b_1451_f102/index.json", "https://podaac.jpl.nasa.gov/dataset/Geo_Polar_Blended-OSPO-L4-GLOB-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_b88b_1451_f102.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_b88b_1451_f102&showErrors=false&email=", "Office of Satellite Products and Operations", "nasa_jpl_b88b_1451_f102"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_7864_0ba8_d6e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_7864_0ba8_d6e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_7864_0ba8_d6e1/request", "", "public", "Analysed blended SST over the global ocean using day and night input data, 0.05\u00b0, 2014-2016", "Analysed blended sea surface temperature over the global ocean using day and night input data. An SST estimation scheme which combines multi-satellite retrievals of sea surface temperature datasets available from polar orbiters, geostationary InfraRed (IR) and microwave sensors into a single global analysis. This global SST ananlysis provide a daily gap free map of the foundation sea surface temperature at 0.05o spatial resolution.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nmask (sea/land/ice bit mask)\nsea_ice_fraction (1)\nanalysed_sst (analysed sea surface temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_7864_0ba8_d6e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_7864_0ba8_d6e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_7864_0ba8_d6e1/index.json", "https://podaac.jpl.nasa.gov/dataset/Geo_Polar_Blended-OSPO-L4-GLOB-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_7864_0ba8_d6e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_7864_0ba8_d6e1&showErrors=false&email=", "Office of Satellite Products and Operations", "nasa_jpl_7864_0ba8_d6e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_1a3a_c9d5_2366", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_1a3a_c9d5_2366.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_1a3a_c9d5_2366/request", "", "public", "Analysed blended SST over the global ocean using night only input data", "Analysed blended sea surface temperature over the global ocean using night only input data. An SST estimation scheme which combines multi-satellite retrievals of sea surface temperature datasets available from polar orbiters, geostationary InfraRed (IR) and microwave sensors into a single global analysis. This global SST ananlysis provide a daily gap free map of the foundation sea surface temperature at 0.05o spatial resolution. (Geo Polar Blended Night-Office of Satellite and Product Operations (OSPO)-L4-GLOB-v1.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nmask (sea/land/ice bit mask)\nsea_ice_fraction (1)\nanalysed_sst (analysed sea surface temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_1a3a_c9d5_2366_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_1a3a_c9d5_2366_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_1a3a_c9d5_2366/index.json", "https://podaac.jpl.nasa.gov/dataset/Geo_Polar_Blended_Night-OSPO-L4-GLOB-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_1a3a_c9d5_2366.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_1a3a_c9d5_2366&showErrors=false&email=", "Office of Satellite Products and Operations", "nasa_jpl_1a3a_c9d5_2366"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_7dc0_f0d8_2b33", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_7dc0_f0d8_2b33.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_7dc0_f0d8_2b33/request", "", "public", "Analysed blended SST over the global ocean using night only input data, 0.05\u00b0, 2014-2016", "Analysed blended sea surface temperature over the global ocean using night only input data. An SST estimation scheme which combines multi-satellite retrievals of sea surface temperature datasets available from polar orbiters, geostationary InfraRed (IR) and microwave sensors into a single global analysis. This global SST ananlysis provide a daily gap free map of the foundation sea surface temperature at 0.05o spatial resolution.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nmask (sea/land/ice bit mask)\nsea_ice_fraction (1)\nanalysed_sst (analysed sea surface temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_7dc0_f0d8_2b33_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_7dc0_f0d8_2b33_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_7dc0_f0d8_2b33/index.json", "https://podaac.jpl.nasa.gov/dataset/Geo_Polar_Blended_Night-OSPO-L4-GLOB-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_7dc0_f0d8_2b33.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_7dc0_f0d8_2b33&showErrors=false&email=", "Office of Satellite Products and Operations", "nasa_jpl_7dc0_f0d8_2b33"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_844f_dc54_9c41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_844f_dc54_9c41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_844f_dc54_9c41/request", "", "public", "Analysed foundation SST over the global ocean (MW OI-REMSS-L4-GLOB-v5.0), 0.25\u00b0, 1998-present", "Analysed foundation sea surface temperature over the global ocean. A merged, multi-sensor L4 foundation SST product from Remote Sensing Systems\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (land sea ice lake bit mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_844f_dc54_9c41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_844f_dc54_9c41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_844f_dc54_9c41/index.json", "https://podaac.jpl.nasa.gov/dataset/MW_OI-REMSS-L4-GLOB-v5.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_844f_dc54_9c41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_844f_dc54_9c41&showErrors=false&email=", "REMSS", "nasa_jpl_844f_dc54_9c41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e48_32de_0b48", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e48_32de_0b48.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e48_32de_0b48/request", "", "public", "Apr longterm mean diurnal cycle air temperature from the NCEP Reanalysis (airapr.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for April, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e48_32de_0b48_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e48_32de_0b48_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e48_32de_0b48/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e48_32de_0b48.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e48_32de_0b48&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8e48_32de_0b48"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c219_8cf4_c7d6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c219_8cf4_c7d6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c219_8cf4_c7d6/request", "", "public", "Apr longterm mean diurnal cycle geopotential height from the NCEP Reanalysis, 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Diurnal Cycle Anomaly of Geopotential Height for April, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c219_8cf4_c7d6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c219_8cf4_c7d6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c219_8cf4_c7d6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c219_8cf4_c7d6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c219_8cf4_c7d6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c219_8cf4_c7d6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_93a6_5697_961f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_93a6_5697_961f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_93a6_5697_961f/request", "", "public", "Apra Harbor, Guam Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, ApraHarborGuam A), 0.01\u00b0", "Apra Harbor, Guam Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_93a6_5697_961f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_93a6_5697_961f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_93a6_5697_961f/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_93a6_5697_961f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_93a6_5697_961f&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_93a6_5697_961f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_dd84_94a0_e881", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_dd84_94a0_e881.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_dd84_94a0_e881/request", "", "public", "Apra Harbor, Guam Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, ApraHarborGuam B), 0.0033333334\u00b0", "Apra Harbor, Guam Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_dd84_94a0_e881_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_dd84_94a0_e881_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_dd84_94a0_e881/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_dd84_94a0_e881.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_dd84_94a0_e881&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_dd84_94a0_e881"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3183_dd38_6644", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3183_dd38_6644.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3183_dd38_6644/request", "", "public", "Apra Harbor, Guam Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, ApraHarborGuam C), 8.3333335E-4\u00b0", "Apra Harbor, Guam Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3183_dd38_6644_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3183_dd38_6644_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3183_dd38_6644/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3183_dd38_6644.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3183_dd38_6644&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_3183_dd38_6644"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusSSS3MonthV5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusSSS3MonthV5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAquariusSSS3MonthV5/request", "", "public", "Aquarius Sea Surface Salinity, L3 SMI, Version 5, 1.0\u00b0, Global, 2011-2015, 3-Month", "This dataset has 3-month composites of Aquarius Sea Surface Salinity data, version 5. Part of NASA's Earth System Science Pathfinder (ESSP) Mission International Partnership between NASA & CONAE, Aquarius provides unprecedented global maps of surface sea water salinity (SSS) to discover how our oceans respond to climate change and the water cycle. Sea surface salinity, along with sea surface temperature, determines the sea surface density. This controls the formation of water masses in the ocean and regulates the 3-dimensional ocean circulation. Aquarius documentation is at ftp://podaac-ftp.jpl.nasa.gov/allData/aquarius/docs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAquariusSSS3MonthV5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAquariusSSS3MonthV5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAquariusSSS3MonthV5/index.json", "https://aquarius.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAquariusSSS3MonthV5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAquariusSSS3MonthV5&showErrors=false&email=", "NASA/GSFC OBPG", "jplAquariusSSS3MonthV5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusSSS7DayV5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusSSS7DayV5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAquariusSSS7DayV5/request", "", "public", "Aquarius Sea Surface Salinity, L3 SMI, Version 5, 1.0\u00b0, Global, 2011-2015, 7-Day", "This dataset has 7-day composites of Aquarius Sea Surface Salinity data, version 5. Part of NASA's Earth System Science Pathfinder (ESSP) Mission International Partnership between NASA & CONAE, Aquarius provides unprecedented global maps of surface sea water salinity (SSS) to discover how our oceans respond to climate change and the water cycle. Sea surface salinity, along with sea surface temperature, determines the sea surface density. This controls the formation of water masses in the ocean and regulates the 3-dimensional ocean circulation. Aquarius documentation is at ftp://podaac-ftp.jpl.nasa.gov/allData/aquarius/docs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAquariusSSS7DayV5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAquariusSSS7DayV5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAquariusSSS7DayV5/index.json", "https://aquarius.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAquariusSSS7DayV5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAquariusSSS7DayV5&showErrors=false&email=", "NASA/GSFC OBPG", "jplAquariusSSS7DayV5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusSSSDailyV5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusSSSDailyV5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAquariusSSSDailyV5/request", "", "public", "Aquarius Sea Surface Salinity, L3 SMI, Version 5, 1.0\u00b0, Global, 2011-2015, Daily", "This dataset has daily composites of Aquarius Sea Surface Salinity data, version 5. Part of NASA's Earth System Science Pathfinder (ESSP) Mission International Partnership between NASA & CONAE, Aquarius provides unprecedented global maps of surface sea water salinity (SSS) to discover how our oceans respond to climate change and the water cycle. Sea surface salinity, along with sea surface temperature, determines the sea surface density. This controls the formation of water masses in the ocean and regulates the 3-dimensional ocean circulation. Aquarius documentation is at ftp://podaac-ftp.jpl.nasa.gov/allData/aquarius/docs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAquariusSSSDailyV5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAquariusSSSDailyV5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAquariusSSSDailyV5/index.json", "https://aquarius.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAquariusSSSDailyV5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAquariusSSSDailyV5&showErrors=false&email=", "NASA/GSFC OBPG", "jplAquariusSSSDailyV5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusSSSMonthlyV5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusSSSMonthlyV5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAquariusSSSMonthlyV5/request", "", "public", "Aquarius Sea Surface Salinity, L3 SMI, Version 5, 1.0\u00b0, Global, 2011-2015, Monthly", "This dataset has monthly composites of Aquarius Sea Surface Salinity data, version 5. Part of NASA's Earth System Science Pathfinder (ESSP) Mission International Partnership between NASA & CONAE, Aquarius provides unprecedented global maps of surface sea water salinity (SSS) to discover how our oceans respond to climate change and the water cycle. Sea surface salinity, along with sea surface temperature, determines the sea surface density. This controls the formation of water masses in the ocean and regulates the 3-dimensional ocean circulation. Aquarius documentation is at ftp://podaac-ftp.jpl.nasa.gov/allData/aquarius/docs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss (Sea Surface Salinity, PSU)\nsss_ran_unc (Sea Surface Salinity Uncertainty (random))\nsss_sys_unc (Sea Surface Salinity Uncertainty (systematic))\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAquariusSSSMonthlyV5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAquariusSSSMonthlyV5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAquariusSSSMonthlyV5/index.json", "https://aquarius.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAquariusSSSMonthlyV5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAquariusSSSMonthlyV5&showErrors=false&email=", "NASA/GSFC OBPG", "jplAquariusSSSMonthlyV5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_da4e_3fc9_f107", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_da4e_3fc9_f107.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_da4e_3fc9_f107/request", "", "public", "Archived Suite of NOAA Coral Reef Watch Operational Twice-Weekly Near-Real-Time Global 50km Satellite Coral Bleaching Monitoring Products [time][latitude][longitude], 0.5\u00b0, 2000-2018", "These are Coral Reef Watch near-real-time satellite coral bleaching monitoring products produced twice a week. CoastWatch Utilities v3.2.1 or higher (https://coastwatch.noaa.gov/cw_software.html) can be used for viewing, analyzing, and plotting the data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nCRW_SST (Twice-weekly global 50km satellite nighttime sea surface temperature, degree_C)\nCRW_SSTANOMALY (Twice-weekly global 50km satellite nighttime sea surface temperature anomaly, degree_C)\nCRW_HOTSPOT (Twice-weekly global 50km satellite coral bleaching HotSpot, degree_C)\nCRW_DHW (Twice-weekly global 50km satellite coral bleaching Degree Heating Weeks, degree Celsius-weeks)\nsurface_flag (Pixel characteristics flag array)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_da4e_3fc9_f107_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_da4e_3fc9_f107_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_da4e_3fc9_f107/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/crw50km_test/crw_allinone_20180109.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_da4e_3fc9_f107.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_da4e_3fc9_f107&showErrors=false&email=", "U.S. DOC/NOAA Coral Reef Watch", "noaa_nodc_da4e_3fc9_f107"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_9f8b_ab7e_343d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_9f8b_ab7e_343d.graph", "", "", "public", "Archived Suite of NOAA Coral Reef Watch Operational Twice-Weekly Near-Real-Time Global 50km Satellite Coral Bleaching Monitoring Products [ydim][xdim]", "These are Coral Reef Watch near-real-time satellite coral bleaching monitoring products produced twice a week. CoastWatch Utilities v3.2.1 or higher (https://coastwatch.noaa.gov/cw_software.html) can be used for viewing, analyzing, and plotting the data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ydim][xdim]):\nImage_170\nImage_171\nImage_172\nImage_173\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_9f8b_ab7e_343d/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/crw50km_test/crw_allinone_20180109.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_9f8b_ab7e_343d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_9f8b_ab7e_343d&showErrors=false&email=", "U.S. DOC/NOAA Coral Reef Watch", "noaa_nodc_9f8b_ab7e_343d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0f87_43a1_50d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0f87_43a1_50d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_0f87_43a1_50d3/request", "", "public", "Arctic Seas Regional Climatology : salinity Annual 0.25 degree (salinity annual quarter), 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_0f87_43a1_50d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_0f87_43a1_50d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_0f87_43a1_50d3/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_0f87_43a1_50d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_0f87_43a1_50d3&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_0f87_43a1_50d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f782_bc50_b9da", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f782_bc50_b9da.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_f782_bc50_b9da/request", "", "public", "Arctic Seas Regional Climatology : salinity Annual 1.00 degree (salinity annual one), 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_f782_bc50_b9da_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_f782_bc50_b9da_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_f782_bc50_b9da/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_f782_bc50_b9da.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_f782_bc50_b9da&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_f782_bc50_b9da"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_342f_3d14_5607", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_342f_3d14_5607.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_342f_3d14_5607/request", "", "public", "Arctic Seas Regional Climatology : salinity November 0.25 degree (salinity monthly quarter), 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_342f_3d14_5607_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_342f_3d14_5607_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_342f_3d14_5607/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_342f_3d14_5607.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_342f_3d14_5607&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_342f_3d14_5607"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6ac1_daeb_4a22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6ac1_daeb_4a22.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6ac1_daeb_4a22/request", "", "public", "Arctic Seas Regional Climatology : salinity November 1.00 degree (salinity monthly one), 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6ac1_daeb_4a22_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6ac1_daeb_4a22_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6ac1_daeb_4a22/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6ac1_daeb_4a22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6ac1_daeb_4a22&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_6ac1_daeb_4a22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_fa05_b9af_6087", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_fa05_b9af_6087.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_fa05_b9af_6087/request", "", "public", "Arctic Seas Regional Climatology : salinity Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_fa05_b9af_6087_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_fa05_b9af_6087_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_fa05_b9af_6087/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_fa05_b9af_6087.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_fa05_b9af_6087&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_fa05_b9af_6087"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_25bf_d46b_b742", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_25bf_d46b_b742.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_25bf_d46b_b742/request", "", "public", "Arctic Seas Regional Climatology : salinity Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_25bf_d46b_b742_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_25bf_d46b_b742_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_25bf_d46b_b742/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_25bf_d46b_b742.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_25bf_d46b_b742&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_25bf_d46b_b742"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e7bb_a1f5_fbbe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e7bb_a1f5_fbbe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e7bb_a1f5_fbbe/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e7bb_a1f5_fbbe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e7bb_a1f5_fbbe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e7bb_a1f5_fbbe/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e7bb_a1f5_fbbe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e7bb_a1f5_fbbe&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_e7bb_a1f5_fbbe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ca51_7345_079c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ca51_7345_079c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_ca51_7345_079c/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_ca51_7345_079c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_ca51_7345_079c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_ca51_7345_079c/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_ca51_7345_079c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_ca51_7345_079c&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_ca51_7345_079c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b9f2_8a6d_eaa7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b9f2_8a6d_eaa7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b9f2_8a6d_eaa7/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b9f2_8a6d_eaa7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b9f2_8a6d_eaa7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b9f2_8a6d_eaa7/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b9f2_8a6d_eaa7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b9f2_8a6d_eaa7&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_b9f2_8a6d_eaa7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2dfc_5215_06b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2dfc_5215_06b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_2dfc_5215_06b7/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_2dfc_5215_06b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_2dfc_5215_06b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_2dfc_5215_06b7/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_2dfc_5215_06b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_2dfc_5215_06b7&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_2dfc_5215_06b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cccf_c109_612f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cccf_c109_612f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_cccf_c109_612f/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_cccf_c109_612f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_cccf_c109_612f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_cccf_c109_612f/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_cccf_c109_612f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_cccf_c109_612f&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_cccf_c109_612f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7351_63e8_14f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7351_63e8_14f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7351_63e8_14f6/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7351_63e8_14f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7351_63e8_14f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7351_63e8_14f6/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7351_63e8_14f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7351_63e8_14f6&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_7351_63e8_14f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_44d0_70b6_0433", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_44d0_70b6_0433.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_44d0_70b6_0433/request", "", "public", "Arecibo, Puerto Rico Coastal Digital Elevation Model (arecibo 13 mhw 2007), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_44d0_70b6_0433_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_44d0_70b6_0433_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_44d0_70b6_0433/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_44d0_70b6_0433.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_44d0_70b6_0433&showErrors=false&email=", "NOAA", "noaa_ngdc_44d0_70b6_0433"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_84ab_9e5c_4572", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_84ab_9e5c_4572.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_84ab_9e5c_4572/request", "", "public", "Arecibo, Puerto Rico Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, AreciboPR A)", "Arecibo, Puerto Rico Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_84ab_9e5c_4572_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_84ab_9e5c_4572_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_84ab_9e5c_4572/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_84ab_9e5c_4572.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_84ab_9e5c_4572&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_84ab_9e5c_4572"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9077_f221_501f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9077_f221_501f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9077_f221_501f/request", "", "public", "Arecibo, Puerto Rico Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, AreciboPR B)", "Arecibo, Puerto Rico Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9077_f221_501f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9077_f221_501f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9077_f221_501f/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9077_f221_501f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9077_f221_501f&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_9077_f221_501f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b935_5e8a_de31", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b935_5e8a_de31.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_b935_5e8a_de31/request", "", "public", "Arecibo, Puerto Rico Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, AreciboPR C), 5.5555557E-4\u00b0", "Arecibo, Puerto Rico Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_b935_5e8a_de31_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_b935_5e8a_de31_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_b935_5e8a_de31/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_b935_5e8a_de31.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_b935_5e8a_de31&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_b935_5e8a_de31"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_77c6_1996_56c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_77c6_1996_56c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_77c6_1996_56c4/request", "", "public", "Arena Cove, California Coastal Digital Elevation Model (arena cove 13 mhw 2009), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_77c6_1996_56c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_77c6_1996_56c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_77c6_1996_56c4/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_77c6_1996_56c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_77c6_1996_56c4&showErrors=false&email=", "NOAA", "noaa_ngdc_77c6_1996_56c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c457_7d37_bb1a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c457_7d37_bb1a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c457_7d37_bb1a/request", "", "public", "Arena Cove, California Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, ArenaCoveCA A)", "Arena Cove, California Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c457_7d37_bb1a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c457_7d37_bb1a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c457_7d37_bb1a/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c457_7d37_bb1a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c457_7d37_bb1a&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_c457_7d37_bb1a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_004d_d784_a767", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_004d_d784_a767.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_004d_d784_a767/request", "", "public", "Arena Cove, California Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, ArenaCoveCA B)", "Arena Cove, California Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_004d_d784_a767_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_004d_d784_a767_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_004d_d784_a767/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_004d_d784_a767.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_004d_d784_a767&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_004d_d784_a767"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0b01_bc35_2b4c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0b01_bc35_2b4c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0b01_bc35_2b4c/request", "", "public", "Arena Cove, California Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, ArenaCoveCA C)", "Arena Cove, California Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0b01_bc35_2b4c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0b01_bc35_2b4c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0b01_bc35_2b4c/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0b01_bc35_2b4c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0b01_bc35_2b4c&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_0b01_bc35_2b4c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c9c8_13b4_1b7e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c9c8_13b4_1b7e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c9c8_13b4_1b7e/request", "", "public", "Astoria OR 1/3 sec Coastal Digital Elevation Model vers 3 (astoria 13 mhw 2012), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c9c8_13b4_1b7e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c9c8_13b4_1b7e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c9c8_13b4_1b7e/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c9c8_13b4_1b7e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c9c8_13b4_1b7e&showErrors=false&email=", "NOAA", "noaa_ngdc_c9c8_13b4_1b7e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2c96_ed60_53cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2c96_ed60_53cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2c96_ed60_53cf/request", "", "public", "Atka, Alaska Coastal Digital Elevation Model (Top Dataset, Regional, atka 1 mhw 2010), 2.7777778E-4\u00b0", "Atka, Alaska Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2c96_ed60_53cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2c96_ed60_53cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2c96_ed60_53cf/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2c96_ed60_53cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2c96_ed60_53cf&showErrors=false&email=", "NOAA", "noaa_ngdc_2c96_ed60_53cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_40dc_3927_f620", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_40dc_3927_f620.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_40dc_3927_f620/request", "", "public", "Atka, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, AtkaAK A)", "Atka, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_40dc_3927_f620_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_40dc_3927_f620_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_40dc_3927_f620/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_40dc_3927_f620.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_40dc_3927_f620&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_40dc_3927_f620"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a60c_31d7_712e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a60c_31d7_712e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_a60c_31d7_712e/request", "", "public", "Atka, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, AtkaAK B)", "Atka, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_a60c_31d7_712e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_a60c_31d7_712e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_a60c_31d7_712e/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_a60c_31d7_712e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_a60c_31d7_712e&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_a60c_31d7_712e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0ca0_5960_4a1a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0ca0_5960_4a1a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0ca0_5960_4a1a/request", "", "public", "Atka, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, AtkaAK C)", "Atka, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0ca0_5960_4a1a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0ca0_5960_4a1a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0ca0_5960_4a1a/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0ca0_5960_4a1a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0ca0_5960_4a1a&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_0ca0_5960_4a1a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_265a_354d_6f91", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_265a_354d_6f91.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_265a_354d_6f91/request", "", "public", "Atlantic City, New Jersey Coastal Digital Elevation Model (atlantic city 13 mhw 2007), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_265a_354d_6f91_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_265a_354d_6f91_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_265a_354d_6f91/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_265a_354d_6f91.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_265a_354d_6f91&showErrors=false&email=", "NOAA", "noaa_ngdc_265a_354d_6f91"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9497_c5ab_2346", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9497_c5ab_2346.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9497_c5ab_2346/request", "", "public", "Atlantic City, New Jersey Tsunami Forecast Grids for MOST Model (AtlanticCityNJ A)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9497_c5ab_2346_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9497_c5ab_2346_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9497_c5ab_2346/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9497_c5ab_2346.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9497_c5ab_2346&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_9497_c5ab_2346"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5f66_df26_5d92", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5f66_df26_5d92.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5f66_df26_5d92/request", "", "public", "Atlantic City, New Jersey Tsunami Forecast Grids for MOST Model (AtlanticCityNJ B)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5f66_df26_5d92_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5f66_df26_5d92_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5f66_df26_5d92/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5f66_df26_5d92.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5f66_df26_5d92&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_5f66_df26_5d92"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6857_31c4_c743", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6857_31c4_c743.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_6857_31c4_c743/request", "", "public", "Atlantic City, New Jersey Tsunami Forecast Grids for MOST Model (AtlanticCityNJ C)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_6857_31c4_c743_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_6857_31c4_c743_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6857_31c4_c743/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6857_31c4_c743.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6857_31c4_c743&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_6857_31c4_c743"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_b2ea_b697_669b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_b2ea_b697_669b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_b2ea_b697_669b/request", "", "public", "Atlas FLK v1.1 derived surface winds (level 3.0)", "VAM 6-hour analyses starting from the European Centre for Medium-Range Weather Forecasts (ECMWF) Operational analyses. (CCMP MEASURES ATLAS L4 OW L3 0 WIND VECTORS FLK)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind at 10 meters, m/s)\nvwnd (v-wind at 10 meters, m/s)\nnobs (number of observations, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_b2ea_b697_669b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_b2ea_b697_669b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_b2ea_b697_669b/index.json", "https://podaac.jpl.nasa.gov/dataset/CCMP_MEASURES_ATLAS_L4_OW_L3_0_WIND_VECTORS_FLK", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_b2ea_b697_669b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_b2ea_b697_669b&showErrors=false&email=", "NASA JPL", "nasa_jpl_b2ea_b697_669b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1847_812f_2105", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1847_812f_2105.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_1847_812f_2105/request", "", "public", "AVHRR Pathfinder Version 5.2 L3-Collated (L3C) SST (pathFinderV5.2 day 2012 020614)", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\nsst_dtime (time difference from reference time, second)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (Deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nquality_level (SST measurement quality)\npathfinder_quality_level (Pathfinder SST quality flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_1847_812f_2105_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_1847_812f_2105_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_1847_812f_2105/index.json", "https://pathfinder.nodc.noaa.gov/ISO-AVHRR_Pathfinder-NODC-L3C-v5.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_1847_812f_2105.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_1847_812f_2105&showErrors=false&email=", "NOAA NODC", "noaa_nodc_1847_812f_2105"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7071_edc2_c76a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7071_edc2_c76a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7071_edc2_c76a/request", "", "public", "AVHRR Pathfinder Version 5.2 L3-Collated (L3C) SST (pathFinderV5.2 day), 1981-2011", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\nsst_dtime (time difference from reference time, second)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (Deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nquality_level (SST measurement quality)\npathfinder_quality_level (Pathfinder SST quality flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7071_edc2_c76a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7071_edc2_c76a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7071_edc2_c76a/index.json", "https://pathfinder.nodc.noaa.gov/ISO-AVHRR_Pathfinder-NODC-L3C-v5.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7071_edc2_c76a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7071_edc2_c76a&showErrors=false&email=", "NOAA NODC", "noaa_nodc_7071_edc2_c76a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6a44_2cb9_686f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6a44_2cb9_686f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6a44_2cb9_686f/request", "", "public", "AVHRR Pathfinder Version 5.2 L3-Collated (L3C) SST (pathFinderV5.2 night 2012 020614)", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\nsst_dtime (time difference from reference time, second)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (Deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nquality_level (SST measurement quality)\npathfinder_quality_level (Pathfinder SST quality flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6a44_2cb9_686f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6a44_2cb9_686f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6a44_2cb9_686f/index.json", "https://pathfinder.nodc.noaa.gov/ISO-AVHRR_Pathfinder-NODC-L3C-v5.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6a44_2cb9_686f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6a44_2cb9_686f&showErrors=false&email=", "NOAA NODC", "noaa_nodc_6a44_2cb9_686f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_78e2_de17_8305", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_78e2_de17_8305.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_78e2_de17_8305/request", "", "public", "AVHRR Pathfinder Version 5.2 L3-Collated (L3C) SST (pathFinderV5.2 night), 1981-2011", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\nsst_dtime (time difference from reference time, second)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (Deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nquality_level (SST measurement quality)\npathfinder_quality_level (Pathfinder SST quality flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_78e2_de17_8305_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_78e2_de17_8305_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_78e2_de17_8305/index.json", "https://pathfinder.nodc.noaa.gov/ISO-AVHRR_Pathfinder-NODC-L3C-v5.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_78e2_de17_8305.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_78e2_de17_8305&showErrors=false&email=", "NOAA NODC", "noaa_nodc_78e2_de17_8305"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nceiPH53sstd1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nceiPH53sstd1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nceiPH53sstd1day/request", "", "public", "AVHRR Pathfinder Version 5.3 L3-Collated (L3C) SST, Global, 0.0417\u00b0, 1981-present, Daytime (1 Day Composite)", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.3 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.3 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created by the NOAA National Centers for Environmental Information (NCEI).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\ndt_analysis (deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction (percent)\nquality_level (quality level of SST pixel, 1)\npathfinder_quality_level (Pathfinder SST quality flag, 1)\nl2p_flags (1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nceiPH53sstd1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nceiPH53sstd1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nceiPH53sstd1day/index.json", "https://data.nodc.noaa.gov/cgi-bin/iso?id=gov.noaa.nodc:AVHRR_Pathfinder-NCEI-L3C-v5.3", "http://upwell.pfeg.noaa.gov/erddap/rss/nceiPH53sstd1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nceiPH53sstd1day&showErrors=false&email=", "NCEI", "nceiPH53sstd1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nceiPH53sstn1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nceiPH53sstn1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nceiPH53sstn1day/request", "", "public", "AVHRR Pathfinder Version 5.3 L3-Collated (L3C) SST, Global, 0.0417\u00b0, 1981-present, Nighttime (1 Day Composite)", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.3 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.3 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created by the NOAA National Centers for Environmental Information (NCEI).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\ndt_analysis (deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction (percent)\nquality_level (quality level of SST pixel, 1)\npathfinder_quality_level (Pathfinder SST quality flag, 1)\nl2p_flags (1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nceiPH53sstn1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nceiPH53sstn1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nceiPH53sstn1day/index.json", "https://data.nodc.noaa.gov/cgi-bin/iso?id=gov.noaa.nodc:AVHRR_Pathfinder-NCEI-L3C-v5.3", "http://upwell.pfeg.noaa.gov/erddap/rss/nceiPH53sstn1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nceiPH53sstn1day&showErrors=false&email=", "NCEI", "nceiPH53sstn1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_dfcd_429a_212c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_dfcd_429a_212c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_dfcd_429a_212c/request", "", "public", "AVHRR SST METOP A GLB-OSISAF-l3C-V1.0 (SST)", "Sea Surface Temperature. The GLB L3C product derived from METOP A Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures. (AVHRR SST METOP A GLB-Ocean and Sea Ice Satellite Application Facility (OSISAF)-l3C-V1.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (sea surface subskin temperature, degree_C)\nsst_dtime (time difference from reference time, seconds)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (deviation from SST analysis or reference climatology, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nadi_dtime_from_sst (time difference of ADI data from sst measurement, hour)\nsources_of_adi (sources of aerosol dynamic indicator)\nl2p_flags\nquality_level (quality level of SST pixel)\nsatellite_zenith_angle (angular_degree)\nsolar_zenith_angle (angular_degree)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_dfcd_429a_212c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_dfcd_429a_212c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_dfcd_429a_212c/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_METOP_A_GLB-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_dfcd_429a_212c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_dfcd_429a_212c&showErrors=false&email=", "OSISAF", "nasa_jpl_dfcd_429a_212c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3e3d_e75d_fe06", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3e3d_e75d_fe06.graph", "", "", "public", "AVHRR SST METOP A NAR-OSISAF-L3C-v1.0 (SST) [nj][ni]", "Sea Surface Temperature. The NAR L3C product derived from METOP A Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures. (AVHRR SST METOP A NAR-Ocean and Sea Ice Satellite Application Facility (OSISAF)-L3C-v1.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nj][ni]):\nlat (latitude, degrees_north)\nlon (longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_3e3d_e75d_fe06/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_METOP_A_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_3e3d_e75d_fe06.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_3e3d_e75d_fe06&showErrors=false&email=", "OSISAF", "nasa_jpl_3e3d_e75d_fe06"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_5f37_a4b9_d39c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_5f37_a4b9_d39c.graph", "", "", "public", "AVHRR SST METOP A NAR-OSISAF-L3C-v1.0 (SST) [time][nj][ni]", "Sea Surface Temperature. The NAR L3C product derived from METOP A Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures. (AVHRR SST METOP A NAR-Ocean and Sea Ice Satellite Application Facility (OSISAF)-L3C-v1.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][nj][ni]):\nsea_surface_temperature (sea surface subskin temperature, degree_C)\nsst_dtime (time difference from reference time, seconds)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (deviation from SST analysis or reference climatology, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nadi_dtime_from_sst (time difference of ADI data from sst measurement, hour)\nsources_of_adi (sources of aerosol dynamic indicator)\nl2p_flags\nquality_level (quality level of SST pixel)\nsatellite_zenith_angle (angular_degree)\nsolar_zenith_angle (angular_degree)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_5f37_a4b9_d39c/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_METOP_A_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_5f37_a4b9_d39c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_5f37_a4b9_d39c&showErrors=false&email=", "OSISAF", "nasa_jpl_5f37_a4b9_d39c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_64e9_b48f_fa8a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_64e9_b48f_fa8a.graph", "", "", "public", "AVHRR SST NOAA19 NAR-OSISAF-L3C-v1.0 (SST) [nj][ni]", "Sea Surface Temperature. The NAR L3C product derived from NOAA19 Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures. (AVHRR SST NOAA19 NAR-Ocean and Sea Ice Satellite Application Facility (OSISAF)-L3C-v1.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nj][ni]):\nlat (latitude, degrees_north)\nlon (longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_64e9_b48f_fa8a/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_NOAA19_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_64e9_b48f_fa8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_64e9_b48f_fa8a&showErrors=false&email=", "OSISAF", "nasa_jpl_64e9_b48f_fa8a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_5345_5e3b_4d57", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_5345_5e3b_4d57.graph", "", "", "public", "AVHRR SST NOAA19 NAR-OSISAF-L3C-v1.0 (SST) [time][nj][ni]", "Sea Surface Temperature. The NAR L3C product derived from NOAA19 Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures. (AVHRR SST NOAA19 NAR-Ocean and Sea Ice Satellite Application Facility (OSISAF)-L3C-v1.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][nj][ni]):\nsea_surface_temperature (sea surface subskin temperature, degree_C)\nsst_dtime (time difference from reference time, seconds)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (deviation from SST analysis or reference climatology, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nadi_dtime_from_sst (time difference of ADI data from sst measurement, hour)\nsources_of_adi (sources of aerosol dynamic indicator)\nl2p_flags\nquality_level (quality level of SST pixel)\nsatellite_zenith_angle (angular_degree)\nsolar_zenith_angle (angular_degree)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_5345_5e3b_4d57/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_NOAA19_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_5345_5e3b_4d57.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_5345_5e3b_4d57&showErrors=false&email=", "OSISAF", "nasa_jpl_5345_5e3b_4d57"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAvisoSshMon", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAvisoSshMon.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAvisoSshMon/request", "", "public", "AVISO Model Output, obs4MIPs NASA-JPL, Global, 1 Degree, 1992-2010, Monthly", "This dataset contains absolute dynamic topography (similar to sea level but with respect to the geoid) binned and averaged monthly on 1 degree grids. The coverage is from October 1992 to December 2010. These data were provided by AVISO (French space agency data provider) to support the CMIP5 (Coupled Model Intercomparison Project Phase 5) under the World Climate Research Program (WCRP) and was first made available via the JPL Earth System Grid. The dynamic topography are derived from sea surface height measured by several satellites including Envisat, TOPEX/Poseidon, Jason-1 and OSTM/Jason-2, and referenced to the geoid. Along with this dataset, two additional ancillary data files are included in the same directory which contain the number of observations and standard error co-located on the same 1 degree grids. For more information, see\nhttps://podaac.jpl.nasa.gov/dataset/AVISO_L4_DYN_TOPO_1DEG_1MO\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsshag (Sea Surface Height Above Geoid, m)\nnObs (Number of Observations, 1)\nstdErr (Standard Error, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAvisoSshMon_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAvisoSshMon_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAvisoSshMon/index.json", "https://podaac.jpl.nasa.gov/dataset/AVISO_L4_DYN_TOPO_1DEG_1MO", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAvisoSshMon.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAvisoSshMon&showErrors=false&email=", "Centre National d'Etudes Spatiales", "jplAvisoSshMon"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAvisoSshMon_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAvisoSshMon_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAvisoSshMon_LonPM180/request", "", "public", "AVISO Model Output, obs4MIPs NASA-JPL, Global, 1 Degree, 1992-2010, Monthly, Lon+/-180", "This dataset contains absolute dynamic topography (similar to sea level but with respect to the geoid) binned and averaged monthly on 1 degree grids. The coverage is from October 1992 to December 2010. These data were provided by AVISO (French space agency data provider) to support the CMIP5 (Coupled Model Intercomparison Project Phase 5) under the World Climate Research Program (WCRP) and was first made available via the JPL Earth System Grid. The dynamic topography are derived from sea surface height measured by several satellites including Envisat, TOPEX/Poseidon, Jason-1 and OSTM/Jason-2, and referenced to the geoid. Along with this dataset, two additional ancillary data files are included in the same directory which contain the number of observations and standard error co-located on the same 1 degree grids. For more information, see\nhttps://podaac.jpl.nasa.gov/dataset/AVISO_L4_DYN_TOPO_1DEG_1MO\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsshag (Sea Surface Height Above Geoid, m)\nnObs (Number of Observations, 1)\nstdErr (Standard Error, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAvisoSshMon_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAvisoSshMon_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAvisoSshMon_LonPM180/index.json", "https://podaac.jpl.nasa.gov/dataset/AVISO_L4_DYN_TOPO_1DEG_1MO", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAvisoSshMon_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAvisoSshMon_LonPM180&showErrors=false&email=", "Centre National d'Etudes Spatiales", "jplAvisoSshMon_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8741_1d21_f6a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8741_1d21_f6a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8741_1d21_f6a7/request", "", "public", "Bar Harbor (N036) Bathymetric Digital Elevation Model (bar harbor N036 2018), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8741_1d21_f6a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8741_1d21_f6a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8741_1d21_f6a7/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8741_1d21_f6a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8741_1d21_f6a7&showErrors=false&email=", "NOAA", "noaa_ngdc_8741_1d21_f6a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8993_08b6_6afa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8993_08b6_6afa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8993_08b6_6afa/request", "", "public", "Bar Harbor, Maine Coastal Digital Elevation Model (bar harbor 13 mhw 2011), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8993_08b6_6afa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8993_08b6_6afa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8993_08b6_6afa/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8993_08b6_6afa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8993_08b6_6afa&showErrors=false&email=", "NOAA", "noaa_ngdc_8993_08b6_6afa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ac5c_815e_ca53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ac5c_815e_ca53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_ac5c_815e_ca53/request", "", "public", "Bar Harbor, Maine Coastal Digital Elevation Model (bar harbor 13 navd88 2011), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_ac5c_815e_ca53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_ac5c_815e_ca53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ac5c_815e_ca53/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ac5c_815e_ca53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ac5c_815e_ca53&showErrors=false&email=", "NOAA", "noaa_ngdc_ac5c_815e_ca53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5e7e_ef8d_28c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5e7e_ef8d_28c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5e7e_ef8d_28c1/request", "", "public", "Bar Harbor, ME Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, BarHarborME A)", "Bar Harbor, ME Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5e7e_ef8d_28c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5e7e_ef8d_28c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5e7e_ef8d_28c1/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5e7e_ef8d_28c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5e7e_ef8d_28c1&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_5e7e_ef8d_28c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2013_070f_e3fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2013_070f_e3fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2013_070f_e3fc/request", "", "public", "Bar Harbor, ME Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, BarHarborME B)", "Bar Harbor, ME Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2013_070f_e3fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2013_070f_e3fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2013_070f_e3fc/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2013_070f_e3fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2013_070f_e3fc&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_2013_070f_e3fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3de6_19d6_9e3a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3de6_19d6_9e3a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3de6_19d6_9e3a/request", "", "public", "Bar Harbor, ME Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, BarHarborME C)", "Bar Harbor, ME Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3de6_19d6_9e3a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3de6_19d6_9e3a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3de6_19d6_9e3a/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3de6_19d6_9e3a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3de6_19d6_9e3a&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_3de6_19d6_9e3a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4c3b_0353_4b5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4c3b_0353_4b5b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4c3b_0353_4b5b/request", "", "public", "Barataria Bay (G200) Bathymetric Digital Elevation Model (barataria bay G200 2018), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4c3b_0353_4b5b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4c3b_0353_4b5b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4c3b_0353_4b5b/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4c3b_0353_4b5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4c3b_0353_4b5b&showErrors=false&email=", "NOAA", "noaa_ngdc_4c3b_0353_4b5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9cfa_244d_0065", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9cfa_244d_0065.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9cfa_244d_0065/request", "", "public", "Bermuda 1 arc-second Coastal Digital Elevation Model (bermuda 1 msl 2013), 2.77778E-4\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9cfa_244d_0065_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9cfa_244d_0065_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9cfa_244d_0065/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9cfa_244d_0065.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9cfa_244d_0065&showErrors=false&email=", "NOAA", "noaa_ngdc_9cfa_244d_0065"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8a7d_5062_cdc7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8a7d_5062_cdc7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8a7d_5062_cdc7/request", "", "public", "Bermuda 3 arc-second Coastal Digital Elevation Model (bermuda 3 msl 2013), 8.33333E-4\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8a7d_5062_cdc7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8a7d_5062_cdc7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8a7d_5062_cdc7/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8a7d_5062_cdc7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8a7d_5062_cdc7&showErrors=false&email=", "NOAA", "noaa_ngdc_8a7d_5062_cdc7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_28c7_6c52_679a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_28c7_6c52_679a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_28c7_6c52_679a/request", "", "public", "Bermuda Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, Bermuda A)", "Bermuda Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_28c7_6c52_679a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_28c7_6c52_679a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_28c7_6c52_679a/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_28c7_6c52_679a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_28c7_6c52_679a&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_28c7_6c52_679a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_93ec_b953_6845", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_93ec_b953_6845.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_93ec_b953_6845/request", "", "public", "Bermuda Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, Bermuda B)", "Bermuda Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_93ec_b953_6845_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_93ec_b953_6845_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_93ec_b953_6845/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_93ec_b953_6845.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_93ec_b953_6845&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_93ec_b953_6845"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bba0_890c_823f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bba0_890c_823f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_bba0_890c_823f/request", "", "public", "Bermuda Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, Bermuda C)", "Bermuda Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_bba0_890c_823f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_bba0_890c_823f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_bba0_890c_823f/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_bba0_890c_823f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_bba0_890c_823f&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_bba0_890c_823f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c891_28a3_6b95", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c891_28a3_6b95.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c891_28a3_6b95/request", "", "public", "Biloxi, Mississippi Coastal Digital Elevation Model (Top Dataset, Regional, biloxi 13 mhw 2007), 9.259259E-5\u00b0", "Biloxi, Mississippi Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c891_28a3_6b95_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c891_28a3_6b95_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c891_28a3_6b95/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c891_28a3_6b95.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c891_28a3_6b95&showErrors=false&email=", "NOAA", "noaa_ngdc_c891_28a3_6b95"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e6ae_1b68_9a88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e6ae_1b68_9a88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e6ae_1b68_9a88/request", "", "public", "Biscayne Bay (S200) Bathymetric Digital Elevation Model (biscayne bay S200 2018), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e6ae_1b68_9a88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e6ae_1b68_9a88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e6ae_1b68_9a88/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e6ae_1b68_9a88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e6ae_1b68_9a88&showErrors=false&email=", "NOAA", "noaa_ngdc_e6ae_1b68_9a88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAbomGhrsstL4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAbomGhrsstL4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAbomGhrsstL4/request", "", "public", "BLUElink Global Australian Multi-Sensor SST Analysis (GAMSSA), daily, 1/4 degree resolution, 0.25\u00b0, 2008-present", "This is a BLUElink> Ocean Forecasting Australia Project research product run operationally at the Bureau of Meteorology. WARNING: some applications are unable to properly handle signed byte values. If byte values >127 are encountered, subtract 256 from this reported value.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, none (fraction))\nmask (sea/land/lake/ice field composite mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAbomGhrsstL4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAbomGhrsstL4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAbomGhrsstL4/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAbomGhrsstL4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAbomGhrsstL4&showErrors=false&email=", "Australian Bureau of Meteorology", "jplAbomGhrsstL4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_addc_c4d7_ef67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_addc_c4d7_ef67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_addc_c4d7_ef67/request", "", "public", "BLUElink Global Australian Multi-Sensor SST Analysis (GAMSSA), daily, 1/4 degree resolution, 0.25\u00b0, 2008-present", "This is a BLUElink> Ocean Forecasting Australia Project research product run operationally at the Bureau of Meteorology. WARNING: some applications are unable to properly handle signed byte values. If byte values >127 are encountered, subtract 256 from this reported value.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, none (fraction))\nmask (sea/land/lake/ice field composite mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_addc_c4d7_ef67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_addc_c4d7_ef67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_addc_c4d7_ef67/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_addc_c4d7_ef67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_addc_c4d7_ef67&showErrors=false&email=", "Australian Bureau of Meteorology", "nasa_jpl_addc_c4d7_ef67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c71a_e2d5_c731", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c71a_e2d5_c731.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c71a_e2d5_c731/request", "", "public", "British Columbia 3 arc-second Bathymetric Digital Elevation Model (british columbia 3 msl 2013), 8.3333335E-4\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c71a_e2d5_c731_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c71a_e2d5_c731_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c71a_e2d5_c731/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c71a_e2d5_c731.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c71a_e2d5_c731&showErrors=false&email=", "NOAA", "noaa_ngdc_c71a_e2d5_c731"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_eee4_d57f_de51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_eee4_d57f_de51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_eee4_d57f_de51/request", "", "public", "British Columbia, Canada Tsunami Forecast Grids for MOST Model", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_eee4_d57f_de51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_eee4_d57f_de51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_eee4_d57f_de51/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_eee4_d57f_de51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_eee4_d57f_de51&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_eee4_d57f_de51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_53a1_8f39_320e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_53a1_8f39_320e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_53a1_8f39_320e/request", "", "public", "British Columbia, Canada Tsunami Forecast Grids for MOST Model (BritishColumbia A)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_53a1_8f39_320e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_53a1_8f39_320e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_53a1_8f39_320e/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_53a1_8f39_320e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_53a1_8f39_320e&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_53a1_8f39_320e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4e62_6ad9_218e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4e62_6ad9_218e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4e62_6ad9_218e/request", "", "public", "British Columbia, Canada Tsunami Forecast Grids for MOST Model (BritishColumbia B)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4e62_6ad9_218e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4e62_6ad9_218e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4e62_6ad9_218e/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4e62_6ad9_218e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4e62_6ad9_218e&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_4e62_6ad9_218e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_pmel_b4b8_cf40_bbc9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_pmel_b4b8_cf40_bbc9.graph", "", "", "public", "Ca rbonTracker CT2009, Carbontracker CT2009 Fluxes (ct flux) [date], 2000-2001", "Ca rbonTracker CT2009, Carbontracker CT2009 Fluxes\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndecimal_date (years)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_pmel_b4b8_cf40_bbc9/index.json", "http://carbontracker.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_pmel_b4b8_cf40_bbc9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_pmel_b4b8_cf40_bbc9&showErrors=false&email=", "NOAA ESRL", "noaa_pmel_b4b8_cf40_bbc9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_pmel_80f9_673c_8fc0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_pmel_80f9_673c_8fc0.graph", "", "", "public", "Ca rbonTracker CT2009, Carbontracker CT2009 Fluxes (ct flux) [date][calendar_components], 2000-2001", "Ca rbonTracker CT2009, Carbontracker CT2009 Fluxes\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][calendar_components]):\ndate_components (integer components of UTC date)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_pmel_80f9_673c_8fc0/index.json", "http://carbontracker.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_pmel_80f9_673c_8fc0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_pmel_80f9_673c_8fc0&showErrors=false&email=", "NOAA ESRL", "noaa_pmel_80f9_673c_8fc0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_pmel_3c69_a5f4_1d72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_pmel_3c69_a5f4_1d72.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_pmel_3c69_a5f4_1d72/request", "", "public", "Ca rbonTracker CT2009, Carbontracker CT2009 Fluxes (ct flux) [date][lat][lon], 1.0\u00b0, 2000-2001", "Ca rbonTracker CT2009, Carbontracker CT2009 Fluxes\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nfossil_imposed (imposed surface CO2 flux due to fossil fuel burning, mol m-2 s-1)\nbio_flux_optimized (optimized surface CO2 flux due to terrestrial biosphere exchange, mol m-2 s-1)\nocean_flux_optimized (optimized surface CO2 flux due to air-sea exchange, mol m-2 s-1)\nfire_flux_imposed (imposed surface CO2 flux due to fire emissions, mol m-2 s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_pmel_3c69_a5f4_1d72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_pmel_3c69_a5f4_1d72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_pmel_3c69_a5f4_1d72/index.json", "http://carbontracker.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_pmel_3c69_a5f4_1d72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_pmel_3c69_a5f4_1d72&showErrors=false&email=", "NOAA ESRL", "noaa_pmel_3c69_a5f4_1d72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f008_ec0a_71aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f008_ec0a_71aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f008_ec0a_71aa/request", "", "public", "Cape Hatteras, North Carolina Coastal Digital Elevation Model (cape hatteras 13 mhw 2006), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f008_ec0a_71aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f008_ec0a_71aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f008_ec0a_71aa/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f008_ec0a_71aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f008_ec0a_71aa&showErrors=false&email=", "NOAA", "noaa_ngdc_f008_ec0a_71aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c017_714b_8d24", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c017_714b_8d24.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c017_714b_8d24/request", "", "public", "Cape Hatteras, North Carolina Tsunami Forecast Grids for MOST Model (CapeHatterasNC A)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c017_714b_8d24_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c017_714b_8d24_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c017_714b_8d24/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c017_714b_8d24.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c017_714b_8d24&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_c017_714b_8d24"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f612_bce8_99cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f612_bce8_99cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f612_bce8_99cf/request", "", "public", "Cape Hatteras, North Carolina Tsunami Forecast Grids for MOST Model (CapeHatterasNC B)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f612_bce8_99cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f612_bce8_99cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f612_bce8_99cf/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f612_bce8_99cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f612_bce8_99cf&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_f612_bce8_99cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e9d5_3d1f_dd4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e9d5_3d1f_dd4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e9d5_3d1f_dd4d/request", "", "public", "Cape Hatteras, North Carolina Tsunami Forecast Grids for MOST Model (CapeHatterasNC C)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e9d5_3d1f_dd4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e9d5_3d1f_dd4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e9d5_3d1f_dd4d/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e9d5_3d1f_dd4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e9d5_3d1f_dd4d&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_e9d5_3d1f_dd4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_d3ac_563c_21bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_d3ac_563c_21bc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_aoml_d3ac_563c_21bc/request", "", "public", "Caribbean and Gulf of Mexico Regional Node, CHLOR MODIS AQUA (CHLOR A), 2016-present", "NETCDF/20180711_TERRA (Caribbean and Gulf of Mexico Regional Node, CHLOR Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchl_a (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_aoml_d3ac_563c_21bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_aoml_d3ac_563c_21bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_aoml_d3ac_563c_21bc/index.json", "https://cwcgom.aoml.noaa.gov/thredds/dodsC/MODISAQUACHLOR/CHLOR_A.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_aoml_d3ac_563c_21bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_aoml_d3ac_563c_21bc&showErrors=false&email=", "NOAA NESDIS CWCGOM, NOAA AOML", "noaa_aoml_d3ac_563c_21bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_4356_201f_c48c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_4356_201f_c48c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_aoml_4356_201f_c48c/request", "", "public", "Caribbean and Gulf of Mexico Regional Node, GLOBAL MONTHLY CARBON FLUXES, 1982-2016", "Caribbean and Gulf of Mexico Regional Node, GLOBAL MONTHLY CARBON FLUXES\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nflux (Sea-Air Carbon Flux, molm-2Yr-1)\nflux_anom (Sea-Air Carbon Flux Anomaly, molm-2Yr-1)\ndifco2 (Surface Water-Atmospheric Partial Pressure Difference, uatm)\ndifco2_anom (Surface Water-Atmospheric Part. Press Diff Anom, uatm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_aoml_4356_201f_c48c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_aoml_4356_201f_c48c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_aoml_4356_201f_c48c/index.json", "https://cwcgom.aoml.noaa.gov/thredds/dodsC/GLOBAL_MONTHLY_CARBON_FLUXES/FLUXES.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_aoml_4356_201f_c48c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_aoml_4356_201f_c48c&showErrors=false&email=", "NOAA NESDIS CWCGOM, NOAA AOML", "noaa_aoml_4356_201f_c48c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_a82b_2ec0_f8b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_a82b_2ec0_f8b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_aoml_a82b_2ec0_f8b5/request", "", "public", "Caribbean and Gulf of Mexico Regional Node, GLOBAL SEASON CARBON FLUXES, 1982-2016", "Caribbean and Gulf of Mexico Regional Node, GLOBAL SEASON CARBON FLUXES\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nflux (Seasonal Sea-Air Carbon Flux, molm-2Season-1)\nflux_anom (Seasonal Sea-Air Carbon Flux Anom, molm-2Season-1)\ndifco2 (Surface Water-Atmospheric Part Press Diff, uatm)\ndifco2_anom (Surface Water-Atmospheric Part Press Diff Anom, uatm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_aoml_a82b_2ec0_f8b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_aoml_a82b_2ec0_f8b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_aoml_a82b_2ec0_f8b5/index.json", "https://cwcgom.aoml.noaa.gov/thredds/dodsC/GLOBAL_SEASON_CARBON_FLUXES/FLUXES.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_aoml_a82b_2ec0_f8b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_aoml_a82b_2ec0_f8b5&showErrors=false&email=", "NOAA NESDIS CWCGOM, NOAA AOML", "noaa_aoml_a82b_2ec0_f8b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_9d87_426a_2497", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_9d87_426a_2497.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_aoml_9d87_426a_2497/request", "", "public", "Caribbean and Gulf of Mexico Regional Node, GOES16 SST HOURLY, 0.020000001\u00b0, 2018-present", "Geostationary Operational Environmental Satellite (GOES)-16 Hourly Sea Surface Temperature (Caribbean and Gulf of Mexico Regional Node, GOES16 SST HOURLY)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (sea surface temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_aoml_9d87_426a_2497_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_aoml_9d87_426a_2497_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_aoml_9d87_426a_2497/index.json", "https://cwcgom.aoml.noaa.gov/thredds/dodsC/GOES16SSTHOURLY/SST.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_aoml_9d87_426a_2497.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_aoml_9d87_426a_2497&showErrors=false&email=", "NOAA NESDIS CWCGOM, NOAA AOML", "noaa_aoml_9d87_426a_2497"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_22bb_251b_1e38", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_22bb_251b_1e38.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_aoml_22bb_251b_1e38/request", "", "public", "Caribbean and Gulf of Mexico Regional Node, OCEAN GEOSTROPHIC CURRENTS, 0.19999999\u00b0, 2016-present", "Near Real Time Geostrophic Currents (Caribbean and Gulf of Mexico Regional Node, OCEAN GEOSTROPHIC CURRENTS)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nu_current (Eastward Sea Water Velocity, m/s)\nv_current (Northward Sea Water Velocity, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_aoml_22bb_251b_1e38_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_aoml_22bb_251b_1e38_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_aoml_22bb_251b_1e38/index.json", "http://www.aoml.noaa.gov/phod/dataphod/work/trinanes/INTERFACE/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_aoml_22bb_251b_1e38.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_aoml_22bb_251b_1e38&showErrors=false&email=", "CoastWatch, NOAA/AOML", "noaa_aoml_22bb_251b_1e38"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_b508_1f43_1627", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_b508_1f43_1627.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_aoml_b508_1f43_1627/request", "", "public", "Caribbean and Gulf of Mexico Regional Node, SST GOES MSG, 0.05\u00b0, 2017-present", "Geostationary Operational Environmental Satellite (GOES)-Meteosat Second Generation (MSG) Daily Sea Surface Temperature (Caribbean and Gulf of Mexico Regional Node, SST GOES MSG)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (sea surface temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_aoml_b508_1f43_1627_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_aoml_b508_1f43_1627_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_aoml_b508_1f43_1627/index.json", "https://cwcgom.aoml.noaa.gov/thredds/dodsC/GOESMSGSST/SST.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_aoml_b508_1f43_1627.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_aoml_b508_1f43_1627&showErrors=false&email=", "NOAA NESDIS CWCGOM, NOAA AOML", "noaa_aoml_b508_1f43_1627"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_8ae4_97fc_2f06", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_8ae4_97fc_2f06.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_aoml_8ae4_97fc_2f06/request", "", "public", "Caribbean and Gulf of Mexico Regional Node, SST GOES, 0.05\u00b0, 2015-present", "Caribbean and Gulf of Mexico Regional Node, Sea Surface Temperature (SST) Geostationary Operational Environmental Satellite (GOES)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (sea surface temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_aoml_8ae4_97fc_2f06_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_aoml_8ae4_97fc_2f06_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_aoml_8ae4_97fc_2f06/index.json", "https://cwcgom.aoml.noaa.gov/thredds/dodsC/GOESSST/SST.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_aoml_8ae4_97fc_2f06.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_aoml_8ae4_97fc_2f06&showErrors=false&email=", "NOAA NESDIS CWCGOM, NOAA AOML", "noaa_aoml_8ae4_97fc_2f06"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_40fa_a63e_7294", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_40fa_a63e_7294.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_40fa_a63e_7294/request", "", "public", "Casco Bay (N100) Bathymetric Digital Elevation Model (casco bay N100 2018), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_40fa_a63e_7294_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_40fa_a63e_7294_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_40fa_a63e_7294/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_40fa_a63e_7294.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_40fa_a63e_7294&showErrors=false&email=", "NOAA", "noaa_ngdc_40fa_a63e_7294"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_2afd_3ff5_fe81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_2afd_3ff5_fe81.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_2afd_3ff5_fe81/request", "", "public", "CCMP MEASURES ATLAS L4 OW L3 5A 5DAY WIND VECTORS FLK", "Atlas FLK v1.1 derived surface winds (level 3.5). Time average of level3.0 products for the period: 1995-06-30 to 1995-07-04 (CCMP MEASURES ATLAS L4 OW L3 5A 5DAY WIND VECTORS FLK)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind at 10 meters, m/s)\nvwnd (v-wind at 10 meters, m/s)\nwspd (wind speed at 10 meters, m/s)\nupstr (u-component of pseudostress at 10 meters, m2/s2)\nvpstr (v-component of pseudostress at 10 meters, m2/s2)\nnobs (number of observations, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_2afd_3ff5_fe81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_2afd_3ff5_fe81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_2afd_3ff5_fe81/index.json", "https://podaac.jpl.nasa.gov/dataset/CCMP_MEASURES_ATLAS_L4_OW_L3_5A_5DAY_WIND_VECTORS_FLK", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_2afd_3ff5_fe81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_2afd_3ff5_fe81&showErrors=false&email=", "NASA JPL", "nasa_jpl_2afd_3ff5_fe81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmpL3Wind6Hourly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmpL3Wind6Hourly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplCcmpL3Wind6Hourly/request", "", "public", "CCMP Winds, Atlas FLK v1.1 Derived Surface Winds (Level 3.0), Global, 0.25 Degree, 1987-2011, 6-Hourly", "This dataset is derived under the Cross-Calibrated Multi-Platform (CCMP)\nproject and contains a value-added monthly mean ocean surface wind and\npseudostress to approximate a satellite-only climatological data record. The\nCCMP datasets combine cross-calibrated satellite winds obtained from Remote\nSensing Systems (REMSS) using a Variational Analysis Method (VAM) to produce\na high-resolution (0.25 degree) gridded analysis. The CCMP data set includes\ncross-calibrated satellite winds derived from SSM/I, SSMIS, AMSR-E, TRMM TMI,\nQuikSCAT, SeaWinds, WindSat and other satellite instruments as they become\navailable from REMSS. Created by NASA Goddard Space Flight Center under the\nNASA REASoN CAN.\n\nAtlas, R., R. N. Hoffman, J. Ardizzone, S. M. Leidner, J. C. Jusem, D. K.\nSmith, D. Gombos, 2011: A cross-calibrated, multiplatform ocean surface wind\nvelocity product for meteorological and oceanographic applications. Bull.\nAmer. Meteor. Soc., 92, 157-174. doi: 10.1175/2010BAMS2946.1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind at 10 meters, m s-1)\nvwnd (v-wind at 10 meters, m s-1)\nnobs (Number of Observations, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplCcmpL3Wind6Hourly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplCcmpL3Wind6Hourly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplCcmpL3Wind6Hourly/index.json", "https://podaac.jpl.nasa.gov/dataset/CCMP_MEASURES_ATLAS_L4_OW_L3_0_WIND_VECTORS_FLK", "http://upwell.pfeg.noaa.gov/erddap/rss/jplCcmpL3Wind6Hourly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplCcmpL3Wind6Hourly&showErrors=false&email=", "NASA/GSFC, NOAA", "jplCcmpL3Wind6Hourly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmpL3Wind6Hourly_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmpL3Wind6Hourly_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplCcmpL3Wind6Hourly_LonPM180/request", "", "public", "CCMP Winds, Atlas FLK v1.1 Derived Surface Winds (Level 3.0), Global, 0.25 Degree, 1987-2011, 6-Hourly, Lon+/-180", "This dataset is derived under the Cross-Calibrated Multi-Platform (CCMP)\nproject and contains a value-added monthly mean ocean surface wind and\npseudostress to approximate a satellite-only climatological data record. The\nCCMP datasets combine cross-calibrated satellite winds obtained from Remote\nSensing Systems (REMSS) using a Variational Analysis Method (VAM) to produce\na high-resolution (0.25 degree) gridded analysis. The CCMP data set includes\ncross-calibrated satellite winds derived from SSM/I, SSMIS, AMSR-E, TRMM TMI,\nQuikSCAT, SeaWinds, WindSat and other satellite instruments as they become\navailable from REMSS. Created by NASA Goddard Space Flight Center under the\nNASA REASoN CAN.\n\nAtlas, R., R. N. Hoffman, J. Ardizzone, S. M. Leidner, J. C. Jusem, D. K.\nSmith, D. Gombos, 2011: A cross-calibrated, multiplatform ocean surface wind\nvelocity product for meteorological and oceanographic applications. Bull.\nAmer. Meteor. Soc., 92, 157-174. doi: 10.1175/2010BAMS2946.1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind at 10 meters, m s-1)\nvwnd (v-wind at 10 meters, m s-1)\nnobs (Number of Observations, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplCcmpL3Wind6Hourly_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplCcmpL3Wind6Hourly_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplCcmpL3Wind6Hourly_LonPM180/index.json", "https://podaac.jpl.nasa.gov/dataset/CCMP_MEASURES_ATLAS_L4_OW_L3_0_WIND_VECTORS_FLK", "http://upwell.pfeg.noaa.gov/erddap/rss/jplCcmpL3Wind6Hourly_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplCcmpL3Wind6Hourly_LonPM180&showErrors=false&email=", "NASA/GSFC, NOAA", "jplCcmpL3Wind6Hourly_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmp35aWindMonthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmp35aWindMonthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplCcmp35aWindMonthly/request", "", "public", "CCMP Winds, Atlas FLK v1.1 Derived Surface Winds (Level 3.5a), Global, 0.25 Degree, 1987-1987, Monthly", "This dataset is derived under the Cross-Calibrated Multi-Platform (CCMP) project and contains a value-added monthly mean ocean surface wind and pseudostress to approximate a satellite-only climatological data record. The CCMP datasets combine cross-calibrated satellite winds obtained from Remote Sensing Systems (REMSS) using a Variational Analysis Method (VAM) to produce a high-resolution (0.25 degree) gridded analysis. The CCMP data set includes cross-calibrated satellite winds derived from SSM/I, SSMIS, AMSR-E, TRMM TMI, QuikSCAT, SeaWinds, WindSat and other satellite instruments as they become available from REMSS. \n\nftp://podaac-ftp.jpl.nasa.gov/allData/ccmp/L3.5a/docs/ccmp_users_guide.pdf\n\nAtlas, R., R. N. Hoffman, J. Ardizzone, S. M. Leidner, J. C. Jusem, D. K. Smith, D. Gombos, 2011: A cross-calibrated, multiplatform ocean surface wind velocity product for meteorological and oceanographic applications. Bull. Amer. Meteor. Soc., 92, 157-174. doi: 10.1175/2010BAMS2946.1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind at 10 meters, m/s)\nvwnd (v-wind at 10 meters, m/s)\nwspd (wind speed at 10 meters, m/s)\nupstr (u-component of pseudostress at 10 meters, m2/s2)\nvpstr (v-component of pseudostress at 10 meters, m2/s2)\nnobs (number of observations, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplCcmp35aWindMonthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplCcmp35aWindMonthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplCcmp35aWindMonthly/index.json", "https://podaac.jpl.nasa.gov/dataset/CCMP_MEASURES_ATLAS_L4_OW_L3_5A_MONTHLY_WIND_VECTORS_FLK?ids=Collections&values=Cross-Calibrated%20Multi-Platform%20Ocean%20Surface%20Wind%20Vector%20Analysis%20Fields", "http://upwell.pfeg.noaa.gov/erddap/rss/jplCcmp35aWindMonthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplCcmp35aWindMonthly&showErrors=false&email=", "NASA JPL", "jplCcmp35aWindMonthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmp35aWindMonthly_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmp35aWindMonthly_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplCcmp35aWindMonthly_LonPM180/request", "", "public", "CCMP Winds, Atlas FLK v1.1 Derived Surface Winds (Level 3.5a), Global, 0.25 Degree, 1987-1987, Monthly, Lon+/-180", "This dataset is derived under the Cross-Calibrated Multi-Platform (CCMP) project and contains a value-added monthly mean ocean surface wind and pseudostress to approximate a satellite-only climatological data record. The CCMP datasets combine cross-calibrated satellite winds obtained from Remote Sensing Systems (REMSS) using a Variational Analysis Method (VAM) to produce a high-resolution (0.25 degree) gridded analysis. The CCMP data set includes cross-calibrated satellite winds derived from SSM/I, SSMIS, AMSR-E, TRMM TMI, QuikSCAT, SeaWinds, WindSat and other satellite instruments as they become available from REMSS. \n\nftp://podaac-ftp.jpl.nasa.gov/allData/ccmp/L3.5a/docs/ccmp_users_guide.pdf\n\nAtlas, R., R. N. Hoffman, J. Ardizzone, S. M. Leidner, J. C. Jusem, D. K. Smith, D. Gombos, 2011: A cross-calibrated, multiplatform ocean surface wind velocity product for meteorological and oceanographic applications. Bull. Amer. Meteor. Soc., 92, 157-174. doi: 10.1175/2010BAMS2946.1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind at 10 meters, m/s)\nvwnd (v-wind at 10 meters, m/s)\nwspd (wind speed at 10 meters, m/s)\nupstr (u-component of pseudostress at 10 meters, m2/s2)\nvpstr (v-component of pseudostress at 10 meters, m2/s2)\nnobs (number of observations, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplCcmp35aWindMonthly_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplCcmp35aWindMonthly_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplCcmp35aWindMonthly_LonPM180/index.json", "https://podaac.jpl.nasa.gov/dataset/CCMP_MEASURES_ATLAS_L4_OW_L3_5A_MONTHLY_WIND_VECTORS_FLK?ids=Collections&values=Cross-Calibrated%20Multi-Platform%20Ocean%20Surface%20Wind%20Vector%20Analysis%20Fields", "http://upwell.pfeg.noaa.gov/erddap/rss/jplCcmp35aWindMonthly_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplCcmp35aWindMonthly_LonPM180&showErrors=false&email=", "NASA JPL", "jplCcmp35aWindMonthly_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmp35aWindPentad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmp35aWindPentad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplCcmp35aWindPentad/request", "", "public", "CCMP Winds, Atlas FLK v1.1 Derived Surface Winds (Level 3.5a), Global, 0.25 Degree, 1987-2011, 5-Day Averages", "This dataset is derived under the Cross-Calibrated Multi-Platform (CCMP) project and contains a value-added 5-day mean ocean surface wind and pseudostress to approximate a satellite-only climatological data record. The CCMP datasets combine cross-calibrated satellite winds obtained from Remote Sensing Systems (REMSS) using a Variational Analysis Method (VAM) to produce a high-resolution (0.25 degree) gridded analysis. The CCMP data set includes cross-calibrated satellite winds derived from SSM/I, SSMIS, AMSR-E, TRMM TMI, QuikSCAT, SeaWinds, WindSat and other satellite instruments as they become available from REMSS. \n\nftp://podaac-ftp.jpl.nasa.gov/allData/ccmp/L3.5a/docs/ccmp_users_guide.pdf\n\nAtlas, R., R. N. Hoffman, J. Ardizzone, S. M. Leidner, J. C. Jusem, D. K. Smith, D. Gombos, 2011: A cross-calibrated, multiplatform ocean surface wind velocity product for meteorological and oceanographic applications. Bull. Amer. Meteor. Soc., 92, 157-174. doi: 10.1175/2010BAMS2946.1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind at 10 meters, m/s)\nvwnd (v-wind at 10 meters, m/s)\nwspd (wind speed at 10 meters, m/s)\nupstr (u-component of pseudostress at 10 meters, m2/s2)\nvpstr (v-component of pseudostress at 10 meters, m2/s2)\nnobs (number of observations, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplCcmp35aWindPentad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplCcmp35aWindPentad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplCcmp35aWindPentad/index.json", "https://podaac.jpl.nasa.gov/dataset/CCMP_MEASURES_ATLAS_L4_OW_L3_5A_MONTHLY_WIND_VECTORS_FLK?ids=Collections&values=Cross-Calibrated%20Multi-Platform%20Ocean%20Surface%20Wind%20Vector%20Analysis%20Fields", "http://upwell.pfeg.noaa.gov/erddap/rss/jplCcmp35aWindPentad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplCcmp35aWindPentad&showErrors=false&email=", "NASA JPL", "jplCcmp35aWindPentad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmp35aWindPentad_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmp35aWindPentad_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplCcmp35aWindPentad_LonPM180/request", "", "public", "CCMP Winds, Atlas FLK v1.1 Derived Surface Winds (Level 3.5a), Global, 0.25 Degree, 1987-2011, 5-Day Averages, Lon+/-180", "This dataset is derived under the Cross-Calibrated Multi-Platform (CCMP) project and contains a value-added 5-day mean ocean surface wind and pseudostress to approximate a satellite-only climatological data record. The CCMP datasets combine cross-calibrated satellite winds obtained from Remote Sensing Systems (REMSS) using a Variational Analysis Method (VAM) to produce a high-resolution (0.25 degree) gridded analysis. The CCMP data set includes cross-calibrated satellite winds derived from SSM/I, SSMIS, AMSR-E, TRMM TMI, QuikSCAT, SeaWinds, WindSat and other satellite instruments as they become available from REMSS. \n\nftp://podaac-ftp.jpl.nasa.gov/allData/ccmp/L3.5a/docs/ccmp_users_guide.pdf\n\nAtlas, R., R. N. Hoffman, J. Ardizzone, S. M. Leidner, J. C. Jusem, D. K. Smith, D. Gombos, 2011: A cross-calibrated, multiplatform ocean surface wind velocity product for meteorological and oceanographic applications. Bull. Amer. Meteor. Soc., 92, 157-174. doi: 10.1175/2010BAMS2946.1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind at 10 meters, m/s)\nvwnd (v-wind at 10 meters, m/s)\nwspd (wind speed at 10 meters, m/s)\nupstr (u-component of pseudostress at 10 meters, m2/s2)\nvpstr (v-component of pseudostress at 10 meters, m2/s2)\nnobs (number of observations, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplCcmp35aWindPentad_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplCcmp35aWindPentad_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplCcmp35aWindPentad_LonPM180/index.json", "https://podaac.jpl.nasa.gov/dataset/CCMP_MEASURES_ATLAS_L4_OW_L3_5A_MONTHLY_WIND_VECTORS_FLK?ids=Collections&values=Cross-Calibrated%20Multi-Platform%20Ocean%20Surface%20Wind%20Vector%20Analysis%20Fields", "http://upwell.pfeg.noaa.gov/erddap/rss/jplCcmp35aWindPentad_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplCcmp35aWindPentad_LonPM180&showErrors=false&email=", "NASA JPL", "jplCcmp35aWindPentad_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bbc6_8ac2_83df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bbc6_8ac2_83df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_bbc6_8ac2_83df/request", "", "public", "Central Florida 1/3 arc-second MHW Coastal Digital Elevation Model, 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_bbc6_8ac2_83df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_bbc6_8ac2_83df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_bbc6_8ac2_83df/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_bbc6_8ac2_83df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_bbc6_8ac2_83df&showErrors=false&email=", "NOAA", "noaa_ngdc_bbc6_8ac2_83df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_72b7_d617_605d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_72b7_d617_605d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_72b7_d617_605d/request", "", "public", "Central Florida 1/3 arc-second NAVD 88 Coastal Digital Elevation Model, 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_72b7_d617_605d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_72b7_d617_605d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_72b7_d617_605d/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_72b7_d617_605d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_72b7_d617_605d&showErrors=false&email=", "NOAA", "noaa_ngdc_72b7_d617_605d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bb18_05dc_3b99", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bb18_05dc_3b99.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_bb18_05dc_3b99/request", "", "public", "Charleston Harbor (S080) Bathymetric Digital Elevation Model (charleston harbor S080 2017), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_bb18_05dc_3b99_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_bb18_05dc_3b99_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_bb18_05dc_3b99/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_bb18_05dc_3b99.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_bb18_05dc_3b99&showErrors=false&email=", "NOAA", "noaa_ngdc_bb18_05dc_3b99"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_137c_3c93_7050", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_137c_3c93_7050.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_137c_3c93_7050/request", "", "public", "Charlotte Amalie, Virgin Islands Tsunami Forecast Grids for MOST Model (CharlotteAmalieVI A)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_137c_3c93_7050_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_137c_3c93_7050_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_137c_3c93_7050/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_137c_3c93_7050.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_137c_3c93_7050&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_137c_3c93_7050"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_da5e_fa81_aff2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_da5e_fa81_aff2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_da5e_fa81_aff2/request", "", "public", "Charlotte Amalie, Virgin Islands Tsunami Forecast Grids for MOST Model (CharlotteAmalieVI B), 5.5555557E-4\u00b0", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_da5e_fa81_aff2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_da5e_fa81_aff2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_da5e_fa81_aff2/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_da5e_fa81_aff2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_da5e_fa81_aff2&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_da5e_fa81_aff2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_fef0_c3ff_a5bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_fef0_c3ff_a5bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_fef0_c3ff_a5bf/request", "", "public", "Charlotte Amalie, Virgin Islands Tsunami Forecast Grids for MOST Model (CharlotteAmalieVI C), 0.0033333334\u00b0", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_fef0_c3ff_a5bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_fef0_c3ff_a5bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_fef0_c3ff_a5bf/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_fef0_c3ff_a5bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_fef0_c3ff_a5bf&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_fef0_c3ff_a5bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0329_f704_1aa4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0329_f704_1aa4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0329_f704_1aa4/request", "", "public", "Charlotte Harbor (G050) Bathymetric Digital Elevation Model (charlotte harbor G050 2018), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0329_f704_1aa4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0329_f704_1aa4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0329_f704_1aa4/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0329_f704_1aa4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0329_f704_1aa4&showErrors=false&email=", "NOAA", "noaa_ngdc_0329_f704_1aa4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bce0_f3c1_4a40", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bce0_f3c1_4a40.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_bce0_f3c1_4a40/request", "", "public", "Chenega, Alaska Coastal Digital Elevation Model (Top Dataset, Regional, chenega 815 mhhw 2011), 1.4814814E-4\u00b0", "Chenega, Alaska Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_bce0_f3c1_4a40_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_bce0_f3c1_4a40_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_bce0_f3c1_4a40/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_bce0_f3c1_4a40.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_bce0_f3c1_4a40&showErrors=false&email=", "NOAA", "noaa_ngdc_bce0_f3c1_4a40"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_74e1_3afa_4a72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_74e1_3afa_4a72.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_74e1_3afa_4a72/request", "", "public", "Chesapeake Bay (M130) Bathymetric Digital Elevation Model (chesapeake bay M130 2017), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_74e1_3afa_4a72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_74e1_3afa_4a72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_74e1_3afa_4a72/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_74e1_3afa_4a72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_74e1_3afa_4a72&showErrors=false&email=", "NOAA", "noaa_ngdc_74e1_3afa_4a72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6e48_3924_f9e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6e48_3924_f9e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_6e48_3924_f9e5/request", "", "public", "Chignik, Alaska 1 arc-second Coastal Digital Elevation Model (chignik 1 mhhw 2014), 2.7777778E-4\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_6e48_3924_f9e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_6e48_3924_f9e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6e48_3924_f9e5/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6e48_3924_f9e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6e48_3924_f9e5&showErrors=false&email=", "NOAA", "noaa_ngdc_6e48_3924_f9e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8ed9_f8ea_1237", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8ed9_f8ea_1237.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8ed9_f8ea_1237/request", "", "public", "Chignik, Alaska 1/3 arc-second Coastal Digital Elevation Model (chignik 13 mhhw 2014), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8ed9_f8ea_1237_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8ed9_f8ea_1237_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8ed9_f8ea_1237/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8ed9_f8ea_1237.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8ed9_f8ea_1237&showErrors=false&email=", "NOAA", "noaa_ngdc_8ed9_f8ea_1237"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHNchla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHNchla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHNchla1day/request", "", "public", "Chlorophyll a, North Pacific, NOAA VIIRS, 750m resolution, 2015-present (1 Day Composite)", "NOAA CoastWatch distributes L3 level chlorophyll a concentration data derived from measurements take by the VIIRS sensor (Visible Infrared Imaging Radiometer Suite) aboard the Suomi-NPP satellite. Chlorophyll values were calculated using NOAA-MSL12 NRT processing with LAND+CLDICE+HIGLINT+HISATZEN+HISOLZEN masking.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchla (Chlorophyll a, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHNchla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHNchla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHNchla1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/VHN_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHNchla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHNchla1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdVHNchla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHNchla3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHNchla3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHNchla3day/request", "", "public", "Chlorophyll a, North Pacific, NOAA VIIRS, 750m resolution, 2015-present (3 Day Composite)", "NOAA CoastWatch distributes L3 level chlorophyll a concentration data derived from measurements take by the VIIRS sensor (Visible Infrared Imaging Radiometer Suite) aboard the Suomi-NPP satellite. Chlorophyll values were calculated using NOAA-MSL12 NRT processing with LAND+CLDICE+HIGLINT+HISATZEN+HISOLZEN masking.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchla (Chlorophyll a, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHNchla3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHNchla3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHNchla3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/VHN_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHNchla3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHNchla3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdVHNchla3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHNchla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHNchla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHNchla8day/request", "", "public", "Chlorophyll a, North Pacific, NOAA VIIRS, 750m resolution, 2015-present (8 Day Composite)", "NOAA CoastWatch distributes L3 level chlorophyll a concentration data derived from measurements take by the VIIRS sensor (Visible Infrared Imaging Radiometer Suite) aboard the Suomi-NPP satellite. Chlorophyll values were calculated using NOAA-MSL12 NRT processing with LAND+CLDICE+HIGLINT+HISATZEN+HISOLZEN masking.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchla (Chlorophyll a, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHNchla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHNchla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHNchla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/VHN_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHNchla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHNchla8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdVHNchla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHNchlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHNchlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHNchlamday/request", "", "public", "Chlorophyll a, North Pacific, NOAA VIIRS, 750m resolution, 2015-present (Monthly Composite)", "NOAA CoastWatch distributes L3 level chlorophyll a concentration data derived from measurements take by the VIIRS sensor (Visible Infrared Imaging Radiometer Suite) aboard the Suomi-NPP satellite. Chlorophyll values were calculated using NOAA-MSL12 NRT processing with LAND+CLDICE+HIGLINT+HISATZEN+HISOLZEN masking.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchla (Chlorophyll a, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHNchlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHNchlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHNchlamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/VHN_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHNchlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHNchlamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdVHNchlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNchlaDaily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNchlaDaily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNchlaDaily/request", "", "public", "Chlorophyll, NOAA VIIRS, Near Real-Time, Global, Level 3, 2017-present, EXPERIMENTAL, Daily", "Visible and Infrared Imager/Radiometer Suite/Suomi-NPP (VIIRSN) Level-3 (WW00), Near Real-Time, Chlorophyll, Global, Daily, processed by NOAA. EXPERIMENTAL.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlor_a (Chlorophyll Concentration, OC3 Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNchlaDaily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNchlaDaily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNchlaDaily/index.json", "https://www.star.nesdis.noaa.gov/thredds/dodsC/CoastWatch/VIIRS/chlora/Daily/WW00.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNchlaDaily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNchlaDaily&showErrors=false&email=", "STAR", "nesdisVHNchlaDaily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNchlaMonthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNchlaMonthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNchlaMonthly/request", "", "public", "Chlorophyll, NOAA VIIRS, Near Real-Time, Global, Level 3, 2017-present, EXPERIMENTAL, Monthly", "Visible and Infrared Imager/Radiometer Suite/Suomi-NPP (VIIRSN) Level-3 (WW00), Geometric Mean Baseline of Chlorophyll, Near Real-Time, Global, Monthly, processed by NOAA. EXPERIMENTAL.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlor_a (Chlorophyll Concentration, Default Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNchlaMonthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNchlaMonthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNchlaMonthly/index.json", "https://www.star.nesdis.noaa.gov/thredds/dodsC/CoastWatch/VIIRS/chlora/Monthly/WW00.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNchlaMonthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNchlaMonthly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNchlaMonthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNchlaWeekly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNchlaWeekly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNchlaWeekly/request", "", "public", "Chlorophyll, NOAA VIIRS, Near Real-Time, Global, Level 3, 2017-present, EXPERIMENTAL, Weekly", "Visible and Infrared Imager/Radiometer Suite/Suomi-NPP (VIIRSN) Level-3 (WW00), Geometric Mean Baseline of Chlorophyll, Near Real-Time, Global, Weekly, processed by NOAA. EXPERIMENTAL.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlor_a (Chlorophyll Concentration, OC3 Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNchlaWeekly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNchlaWeekly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNchlaWeekly/index.json", "https://www.star.nesdis.noaa.gov/thredds/dodsC/CoastWatch/VIIRS/chlora/Weekly/WW00.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNchlaWeekly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNchlaWeekly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNchlaWeekly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQchlaDaily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQchlaDaily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQchlaDaily/request", "", "public", "Chlorophyll, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Daily", "Level-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlor_a (Chlorophyll Concentration, Default Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQchlaDaily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQchlaDaily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQchlaDaily/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQchlaDaily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQchlaDaily&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQchlaDaily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQchlaMonthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQchlaMonthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQchlaMonthly/request", "", "public", "Chlorophyll, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Monthly", "Level-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlor_a (Chlorophyll Concentration, Default Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQchlaMonthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQchlaMonthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQchlaMonthly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQchlaMonthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQchlaMonthly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQchlaMonthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQchlaWeekly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQchlaWeekly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQchlaWeekly/request", "", "public", "Chlorophyll, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Weekly", "Level-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll, Weekly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlor_a (Chlorophyll Concentration, Default Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQchlaWeekly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQchlaWeekly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQchlaWeekly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQchlaWeekly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQchlaWeekly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQchlaWeekly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSHcdev8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSHcdev8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSHcdev8day/request", "", "public", "Chlorophyll-a Deviation, Orbview-2 SeaWiFS, 0.0125\u00b0, West US, 1998-2009 (8 Day Composite) DEPRECATED", "NOAA CoastWatch distributes chlorophyll-a concentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS) on the Orbview-2 satellite.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchl_dev (Deviation of Chlorophyll Concentration In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSHcdev8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSHcdev8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSHcdev8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/SH_cdev_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSHcdev8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSHcdev8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdSHcdev8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchla1day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (1 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchla1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchla1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchla1day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (1 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchla1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchla1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchla1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchla1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchla1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchla1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchla14day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (14 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchla14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchla14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchla14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchla14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchla14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchla14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchla14day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (14 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchla14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchla14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchla14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchla14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchla14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchla14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchla3day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (3 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchla3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchla3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchla3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchla3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchla3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchla3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchla3day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (3 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchla3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchla3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchla3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchla3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchla3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchla3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchla8day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (8 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchla8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchla8day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (8 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchla8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchla8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchla8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchla8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchla8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchla8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchlamday/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (Monthly Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchlamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchlamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchlamday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchlamday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchlamday_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (Monthly Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchlamday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchlamday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchlamday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchlamday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchlamday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchlamday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchla1day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (1 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchla1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchla1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchla1day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (1 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchla1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchla1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchla1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchla1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchla1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchla1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchla14day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (14 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchla14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchla14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchla14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchla14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchla14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchla14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchla14day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (14 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchla14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchla14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchla14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchla14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchla14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchla14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchla3day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (3 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchla3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchla3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchla3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchla3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchla3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchla3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchla3day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (3 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchla3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchla3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchla3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchla3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchla3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchla3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchla8day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (8 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchla8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchla8day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (8 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchla8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchla8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchla8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchla8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchla8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchla8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchlamday/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (Monthly Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchlamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchlamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchlamday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchlamday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchlamday_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (Monthly Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchlamday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchlamday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchlamday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchlamday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchlamday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchlamday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla5day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla5day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchla5day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2013-present, EXPERIMENTAL (5 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchla5day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchla5day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchla5day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchla5day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchla5day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchla5day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla5day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla5day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchla5day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2013-present, EXPERIMENTAL (5 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchla5day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchla5day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchla5day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchla5day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchla5day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchla5day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHchla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHchla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHchla8day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 2002-2013, DEPRECATED OLDER VERSION (8 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHchla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHchla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHchla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHchla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHchla8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHchla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHchlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHchlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHchlamday/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 2002-2013, DEPRECATED OLDER VERSION (Monthly Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHchlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHchlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHchlamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHchlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHchlamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHchlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHchla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHchla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHchla1day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 2003-2013, DEPRECATED OLDER VERSION (1 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHchla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHchla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHchla1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHchla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHchla1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHchla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEchla1day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, East US, 2002-2012 (1 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEchla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEchla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEchla1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEchla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEchla1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEchla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchla14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchla14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEchla14day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, East US, 2002-2012 (14 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEchla14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEchla14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEchla14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEchla14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEchla14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEchla14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchla3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchla3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEchla3day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, East US, 2002-2012 (3 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEchla3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEchla3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEchla3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEchla3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEchla3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEchla3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEchla8day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, East US, 2002-2012 (8 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEchla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEchla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEchla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEchla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEchla8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEchla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEchlamday/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, East US, 2002-2012 (Monthly Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEchlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEchlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEchlamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEchlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEchlamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEchlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGchla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGchla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGchla1day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (1 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGchla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGchla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGchla1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGchla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGchla1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGchla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGchla14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGchla14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGchla14day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (14 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGchla14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGchla14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGchla14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGchla14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGchla14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGchla14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGchla3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGchla3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGchla3day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (3 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGchla3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGchla3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGchla3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGchla3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGchla3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGchla3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGchla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGchla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGchla8day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (8 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGchla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGchla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGchla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGchla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGchla8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGchla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGchlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGchlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGchlamday/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (Monthly Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGchlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGchlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGchlamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGchlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGchlamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGchlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPchla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPchla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPchla1day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, Indonesia, 2002-2013 (1 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPchla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPchla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPchla1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPchla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPchla1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPchla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPchla14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPchla14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPchla14day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, Indonesia, 2002-2013 (14 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPchla14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPchla14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPchla14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPchla14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPchla14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPchla14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPchla3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPchla3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPchla3day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, Indonesia, 2002-2013 (3 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPchla3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPchla3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPchla3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPchla3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPchla3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPchla3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPchla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPchla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPchla8day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, Indonesia, 2002-2013 (8 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPchla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPchla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPchla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPchla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPchla8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPchla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPchlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPchlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPchlamday/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, Indonesia, 2002-2013 (Monthly Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPchlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPchlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPchlamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPchlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPchlamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPchlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1chla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1chla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1chla1day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (1 Day Composite)", "This dataset has Level 3, Standard Mapped Image, 4km, chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Mean Chlorophyll a Concentration, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1chla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1chla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1chla1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1chla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1chla1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMH1chla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1chla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1chla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1chla8day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (8 Day Composite)", "This dataset has Level 3, Standard Mapped Image, 4km, chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Mean Chlorophyll a Concentration, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1chla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1chla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1chla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1chla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1chla8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1chla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1chlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1chlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1chlamday/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (Monthly Composite)", "This dataset has Level 3, Standard Mapped Image, 4km, chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Mean Chlorophyll a Concentration, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1chlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1chlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1chlamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1chlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1chlamday&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1chlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchla1day/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (1 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchla1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchla1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchla1day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (1 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchla1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchla1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchla1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchla1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchla1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchla1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchla14day/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (14 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchla14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchla14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchla14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchla14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchla14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchla14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchla14day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (14 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchla14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchla14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchla14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchla14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchla14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchla14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchla3day/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (3 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchla3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchla3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchla3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchla3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchla3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchla3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchla3day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (3 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchla3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchla3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchla3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchla3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchla3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchla3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchla8day/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (8 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchla8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchla8day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (8 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchla8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchla8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchla8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchla8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchla8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchla8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchlahday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchlahday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchlahday/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (Hourly)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchlahday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchlahday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchlahday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchlahday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchlahday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchlahday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchlahday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchlahday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchlahday_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (Hourly), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchlahday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchlahday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchlahday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchlahday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchlahday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchlahday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchlamday/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2007-2007 (Monthly Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchlamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchlamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchlamday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchlamday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchlamday_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2007-2007 (Monthly Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchlamday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchlamday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchlamday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchlamday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchlamday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchlamday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSHchla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSHchla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSHchla1day/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, 0.0125\u00b0, West US, 1998-2009 (1 Day Composite) DEPRECATED", "NOAA CoastWatch distributes chlorophyll-a concentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS) on the Orbview-2 satellite.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSHchla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSHchla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSHchla1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/SH_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSHchla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSHchla1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdSHchla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSHchla3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSHchla3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSHchla3day/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, 0.0125\u00b0, West US, 1998-2009 (3 Day Composite) DEPRECATED", "NOAA CoastWatch distributes chlorophyll-a concentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS) on the Orbview-2 satellite.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSHchla3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSHchla3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSHchla3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/SH_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSHchla3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSHchla3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdSHchla3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSHchla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSHchla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSHchla8day/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, 0.0125\u00b0, West US, 1998-2009 (8 Day Composite) DEPRECATED", "NOAA CoastWatch distributes chlorophyll-a concentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS) on the Orbview-2 satellite.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSHchla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSHchla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSHchla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/SH_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSHchla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSHchla8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdSHchla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSHchla14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSHchla14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSHchla14day/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, 0.0125\u00b0, West US, 2006-2009 (14 Day Composite) DEPRECATED", "NOAA CoastWatch distributes chlorophyll-a concentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS) on the Orbview-2 satellite.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSHchla14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSHchla14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSHchla14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/SH_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSHchla14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSHchla14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdSHchla14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSHchlahday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSHchlahday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSHchlahday/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, 0.0125\u00b0, West US, 2009-2009 (Single Scan) DEPRECATED", "NOAA CoastWatch distributes chlorophyll-a concentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS) on the Orbview-2 satellite.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSHchlahday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSHchlahday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSHchlahday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/SH_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSHchlahday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSHchlahday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdSHchlahday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7c4b_b0f0_f720", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7c4b_b0f0_f720.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7c4b_b0f0_f720/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, 0.1 degrees, Global (Top Dataset, node, seaWifs chlorophyll), 1997-2010", "Chlorophyll-a, Orbview-2 Sea-Wide Field-of-View Sensor (SeaWiFS), 0.1 degrees, Global. NASA Goddard Space Flight Center (GSFC) Ocean Color Web distributes science-quality chlorophyll-a concentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS) on the Orbview-2 satellite.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nSWchla (Chlorophyll-a, Orbview-2 SeaWiFS, 0.1 degrees, Global, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7c4b_b0f0_f720_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7c4b_b0f0_f720_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7c4b_b0f0_f720/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/node/seaWifs_chlorophyll.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7c4b_b0f0_f720.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7c4b_b0f0_f720&showErrors=false&email=", "NOAA CoastWatch WCN", "noaa_nodc_7c4b_b0f0_f720"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSWchla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSWchla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSWchla8day/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, 0.1\u00b0, Global, 1997-2010 (8 Day Composite) DEPRECATED", "THIS VERSION IS DEPRECATED. SEE THE NEW R2018.0 VERSION IN erdSW2018chla8day. (Feb 2018) \nNASA GSFC Ocean Color Web distributes science-quality chlorophyll-a concentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS) on the Orbview-2 satellite.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSWchla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSWchla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSWchla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/SW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSWchla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSWchla8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdSWchla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSWchlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSWchlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSWchlamday/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, 0.1\u00b0, Global, 1997-2010 (Monthly Composite) DEPRECATED", "THIS VERSION IS DEPRECATED. SEE THE NEW R2018.0 VERSION IN erdSW2018chla1day. (Feb 2018) \nNASA GSFC Ocean Color Web distributes science-quality chlorophyll-a concentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS) on the Orbview-2 satellite.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSWchlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSWchlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSWchlamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/SW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSWchlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSWchlamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdSWchlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSGchla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSGchla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSGchla8day/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, Alaska, 1997-2006, Science Quality (8 Day Composite) DEPRECATED", "NOAA CoastWatch distributes chlorophyll-a concentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS) on the Orbview-2 satellite. Because the data was purchased under a NOAA contract with GeoEye, the data can be used but not redistributed. Images made from the data, however, can be used for any purpose. Questions regarding data access should be directed to NOAA CoastWatch.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSGchla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSGchla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSGchla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/SG_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSGchla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSGchla8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdSGchla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSGchlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSGchlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSGchlamday/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, Alaska, 1997-2006, Science Quality (Monthly Composite) DEPRECATED", "NOAA CoastWatch distributes chlorophyll-a concentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS) on the Orbview-2 satellite. Because the data was purchased under a NOAA contract with GeoEye, the data can be used but not redistributed. Images made from the data, however, can be used for any purpose. Questions regarding data access should be directed to NOAA CoastWatch.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSGchlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSGchlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSGchlamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/SG_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSGchlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSGchlamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdSGchlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW1chla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW1chla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSW1chla1day/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, R2014.0, 0.1\u00b0, Global, 1997-2010 (1 Day Composite) DEPRECATED", "THIS VERSION IS DEPRECATED. SEE THE NEW R2018.0 VERSION IN erdSW2018chla1day. (Feb 2018)\n\nNASA GSFC Ocean Color Web distributes science-quality chlorophyll-a\nconcentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS)\non the Orbview-2 satellite. This version is the 2014.0 Reprocessing (R2014.0).\n\nThe SeaWiFS instrument was launched by Orbital Sciences Corporation on the\nOrbView-2 (a.k.a. SeaStar) satellite in August 1997, and collected data from\nSeptember 1997 until the end of mission in December 2010. SeaWiFS had 8\nspectral bands from 412 to 865 nm. It collected global data at 4 km\nresolution, and local data (limited onboard storage and direct broadcast)\nat 1 km. The mission and sensor were optimized for ocean color measurements,\nwith a local noon (descending) equator crossing time orbit, fore-and-aft\ntilt capability, full dynamic range, and low polarization sensitivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSW1chla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSW1chla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSW1chla1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/seawifs/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSW1chla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSW1chla1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdSW1chla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW1chla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW1chla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSW1chla8day/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, R2014.0, 0.1\u00b0, Global, 1997-2010 (8 Day Composite) DEPRECATED", "THIS VERSION IS DEPRECATED. SEE THE NEW R2018.0 VERSION IN erdSW2018chla8day. (Feb 2018)\n\nNASA GSFC Ocean Color Web distributes science-quality chlorophyll-a\nconcentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS)\non the Orbview-2 satellite. This version is the 2014.0 Reprocessing (R2014.0).\n\nThe SeaWiFS instrument was launched by Orbital Sciences Corporation on the\nOrbView-2 (a.k.a. SeaStar) satellite in August 1997, and collected data from\nSeptember 1997 until the end of mission in December 2010. SeaWiFS had 8\nspectral bands from 412 to 865 nm. It collected global data at 4 km\nresolution, and local data (limited onboard storage and direct broadcast)\nat 1 km. The mission and sensor were optimized for ocean color measurements,\nwith a local noon (descending) equator crossing time orbit, fore-and-aft\ntilt capability, full dynamic range, and low polarization sensitivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSW1chla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSW1chla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSW1chla8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/seawifs/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSW1chla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSW1chla8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdSW1chla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW1chlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW1chlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSW1chlamday/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, R2014.0, 0.1\u00b0, Global, 1997-2010 (Monthly Composite) DEPRECATED", "THIS VERSION IS DEPRECATED. SEE THE NEW R2018.0 VERSION IN erdSW2018chlamday. (Feb 2018)\n\nNASA GSFC Ocean Color Web distributes science-quality chlorophyll-a\nconcentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS)\non the Orbview-2 satellite. This version is the 2014.0 Reprocessing (R2014.0).\n\nThe SeaWiFS instrument was launched by Orbital Sciences Corporation on the\nOrbView-2 (a.k.a. SeaStar) satellite in August 1997, and collected data from\nSeptember 1997 until the end of mission in December 2010. SeaWiFS had 8\nspectral bands from 412 to 865 nm. It collected global data at 4 km\nresolution, and local data (limited onboard storage and direct broadcast)\nat 1 km. The mission and sensor were optimized for ocean color measurements,\nwith a local noon (descending) equator crossing time orbit, fore-and-aft\ntilt capability, full dynamic range, and low polarization sensitivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSW1chlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSW1chlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSW1chlamday/index.json", "https://oceancolor.gsfc.nasa.gov/data/seawifs/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSW1chlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSW1chlamday&showErrors=false&email=", "NASA/GSFC OBPG", "erdSW1chlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW2018chla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW2018chla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSW2018chla1day/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, R2018.0, 0.1\u00b0, Global, 1997-2010 (1 Day Composite)", "NASA GSFC Ocean Color Web distributes science-quality chlorophyll-a\nconcentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS)\non the Orbview-2 satellite. This version is the 2018.0 Reprocessing (R2018.0). https://oceancolor.gsfc.nasa.gov/reprocessing/r2018/seawifs/\n\nThe SeaWiFS instrument was launched by Orbital Sciences Corporation on the\nOrbView-2 (a.k.a. SeaStar) satellite in August 1997, and collected data from\nSeptember 1997 until the end of mission in December 2010. SeaWiFS had 8\nspectral bands from 412 to 865 nm. It collected global data at 4 km\nresolution, and local data (limited onboard storage and direct broadcast)\nat 1 km. The mission and sensor were optimized for ocean color measurements,\nwith a local noon (descending) equator crossing time orbit, fore-and-aft\ntilt capability, full dynamic range, and low polarization sensitivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSW2018chla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSW2018chla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSW2018chla1day/index.json", "https://oceandata.sci.gsfc.nasa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSW2018chla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSW2018chla1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdSW2018chla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW2018chla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW2018chla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSW2018chla8day/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, R2018.0, 0.1\u00b0, Global, 1997-2010 (8 Day Composite)", "NASA GSFC Ocean Color Web distributes science-quality chlorophyll-a\nconcentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS)\non the Orbview-2 satellite. This version is the 2018.0 Reprocessing (R2018.0).\nhttps://oceancolor.gsfc.nasa.gov/reprocessing/r2018/seawifs/\n\nThe SeaWiFS instrument was launched by Orbital Sciences Corporation on the\nOrbView-2 (a.k.a. SeaStar) satellite in August 1997, and collected data from\nSeptember 1997 until the end of mission in December 2010. SeaWiFS had 8\nspectral bands from 412 to 865 nm. It collected global data at 4 km\nresolution, and local data (limited onboard storage and direct broadcast)\nat 1 km. The mission and sensor were optimized for ocean color measurements,\nwith a local noon (descending) equator crossing time orbit, fore-and-aft\ntilt capability, full dynamic range, and low polarization sensitivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSW2018chla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSW2018chla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSW2018chla8day/index.json", "https://oceandata.sci.gsfc.nasa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSW2018chla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSW2018chla8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdSW2018chla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW2018chlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW2018chlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSW2018chlamday/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, R2018.0, 0.1\u00b0, Global, 1997-2010 (Monthly Composite)", "NASA GSFC Ocean Color Web distributes science-quality chlorophyll-a\nconcentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS)\non the Orbview-2 satellite. This version is the 2018.0 Reprocessing (R2018.0). https://oceancolor.gsfc.nasa.gov/reprocessing/r2018/seawifs/\n\nThe SeaWiFS instrument was launched by Orbital Sciences Corporation on the\nOrbView-2 (a.k.a. SeaStar) satellite in August 1997, and collected data from\nSeptember 1997 until the end of mission in December 2010. SeaWiFS had 8\nspectral bands from 412 to 865 nm. It collected global data at 4 km\nresolution, and local data (limited onboard storage and direct broadcast)\nat 1 km. The mission and sensor were optimized for ocean color measurements,\nwith a local noon (descending) equator crossing time orbit, fore-and-aft\ntilt capability, full dynamic range, and low polarization sensitivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSW2018chlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSW2018chlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSW2018chlamday/index.json", "https://oceandata.sci.gsfc.nasa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSW2018chlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSW2018chlamday&showErrors=false&email=", "NASA/GSFC OBPG", "erdSW2018chlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSAchla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSAchla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSAchla8day/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, West US, 1997-2006, Science Quality (8 Day Composite) DEPRECATED", "NOAA CoastWatch distributes chlorophyll-a concentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS) on the Orbview-2 satellite. Because the data was purchased under a NOAA contract with GeoEye, the data can be used but not redistributed. Images made from the data, however, can be used for any purpose. Questions regarding data access should be directed to NOAA CoastWatch.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSAchla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSAchla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSAchla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/SA_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSAchla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSAchla8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdSAchla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSAchlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSAchlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSAchlamday/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, West US, 1997-2006, Science Quality (Monthly Composite) DEPRECATED", "NOAA CoastWatch distributes chlorophyll-a concentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS) on the Orbview-2 satellite. Because the data was purchased under a NOAA contract with GeoEye, the data can be used but not redistributed. Images made from the data, however, can be used for any purpose. Questions regarding data access should be directed to NOAA CoastWatch.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSAchlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSAchlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSAchlamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/SA_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSAchlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSAchlamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdSAchlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMOchla1day/request", "", "public", "Chlorophyll-a, Terra MODIS, OSU DB, West US, 2006-2007, EXPERIMENTAL (1 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Terra satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMOchla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMOchla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMOchla1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MO_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMOchla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMOchla1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMOchla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchla1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchla1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMOchla1day_LonPM180/request", "", "public", "Chlorophyll-a, Terra MODIS, OSU DB, West US, 2006-2007, EXPERIMENTAL (1 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Terra satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMOchla1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMOchla1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMOchla1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MO_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMOchla1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMOchla1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMOchla1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchla14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchla14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMOchla14day/request", "", "public", "Chlorophyll-a, Terra MODIS, OSU DB, West US, 2006-2007, EXPERIMENTAL (14 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Terra satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMOchla14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMOchla14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMOchla14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MO_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMOchla14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMOchla14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMOchla14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchla14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchla14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMOchla14day_LonPM180/request", "", "public", "Chlorophyll-a, Terra MODIS, OSU DB, West US, 2006-2007, EXPERIMENTAL (14 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Terra satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMOchla14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMOchla14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMOchla14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MO_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMOchla14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMOchla14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMOchla14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchla3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchla3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMOchla3day/request", "", "public", "Chlorophyll-a, Terra MODIS, OSU DB, West US, 2006-2007, EXPERIMENTAL (3 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Terra satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMOchla3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMOchla3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMOchla3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MO_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMOchla3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMOchla3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMOchla3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchla3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchla3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMOchla3day_LonPM180/request", "", "public", "Chlorophyll-a, Terra MODIS, OSU DB, West US, 2006-2007, EXPERIMENTAL (3 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Terra satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMOchla3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMOchla3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMOchla3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MO_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMOchla3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMOchla3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMOchla3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMOchla8day/request", "", "public", "Chlorophyll-a, Terra MODIS, OSU DB, West US, 2006-2007, EXPERIMENTAL (8 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Terra satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMOchla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMOchla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMOchla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MO_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMOchla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMOchla8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMOchla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchla8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchla8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMOchla8day_LonPM180/request", "", "public", "Chlorophyll-a, Terra MODIS, OSU DB, West US, 2006-2007, EXPERIMENTAL (8 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Terra satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMOchla8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMOchla8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMOchla8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MO_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMOchla8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMOchla8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMOchla8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchlahday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchlahday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMOchlahday/request", "", "public", "Chlorophyll-a, Terra MODIS, OSU DB, West US, 2006-2007, EXPERIMENTAL (Hourly)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Terra satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMOchlahday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMOchlahday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMOchlahday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MO_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMOchlahday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMOchlahday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMOchlahday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchlahday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchlahday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMOchlahday_LonPM180/request", "", "public", "Chlorophyll-a, Terra MODIS, OSU DB, West US, 2006-2007, EXPERIMENTAL (Hourly), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Terra satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMOchlahday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMOchlahday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMOchlahday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MO_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMOchlahday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMOchlahday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMOchlahday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f525_47a7_817a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f525_47a7_817a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f525_47a7_817a/request", "", "public", "Choctawhatchee Bay (G120) Bathymetric Digital Elevation Model (choctawhatchee bay G120 2018), 9.25925E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f525_47a7_817a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f525_47a7_817a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f525_47a7_817a/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f525_47a7_817a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f525_47a7_817a&showErrors=false&email=", "NOAA", "noaa_ngdc_f525_47a7_817a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5550_44fd_a8bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5550_44fd_a8bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5550_44fd_a8bd/request", "", "public", "Christiansted, Virgin Islands Tsunami Forecast Grids for MOST Model (ChristianstedVI A)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5550_44fd_a8bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5550_44fd_a8bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5550_44fd_a8bd/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5550_44fd_a8bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5550_44fd_a8bd&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_5550_44fd_a8bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1d44_0698_5ad1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1d44_0698_5ad1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1d44_0698_5ad1/request", "", "public", "Christiansted, Virgin Islands Tsunami Forecast Grids for MOST Model (ChristianstedVI B), 0.0011111111\u00b0", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1d44_0698_5ad1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1d44_0698_5ad1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1d44_0698_5ad1/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1d44_0698_5ad1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1d44_0698_5ad1&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_1d44_0698_5ad1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8984_5903_a491", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8984_5903_a491.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8984_5903_a491/request", "", "public", "Christiansted, Virgin Islands Tsunami Forecast Grids for MOST Model (ChristianstedVI C)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8984_5903_a491_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8984_5903_a491_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8984_5903_a491/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8984_5903_a491.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8984_5903_a491&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_8984_5903_a491"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdommday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdommday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcdommday/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2010-2013 (Monthly Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcdommday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcdommday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcdommday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcdommday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcdommday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcdommday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdommday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdommday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcdommday_LonPM180/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2010-2013 (Monthly Composite), Lon+/-180", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcdommday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcdommday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcdommday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcdommday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcdommday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcdommday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdom14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdom14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcdom14day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2012-2015 (14 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcdom14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcdom14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcdom14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcdom14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcdom14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcdom14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdom14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdom14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcdom14day_LonPM180/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2012-2015 (14 Day Composite), Lon+/-180", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcdom14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcdom14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcdom14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcdom14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcdom14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcdom14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdom3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdom3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcdom3day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2012-2015 (3 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcdom3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcdom3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcdom3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcdom3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcdom3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcdom3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdom3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdom3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcdom3day_LonPM180/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2012-2015 (3 Day Composite), Lon+/-180", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcdom3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcdom3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcdom3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcdom3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcdom3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcdom3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdom8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdom8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcdom8day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2012-2015 (8 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcdom8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcdom8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcdom8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcdom8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcdom8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcdom8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdom8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdom8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcdom8day_LonPM180/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2012-2015 (8 Day Composite), Lon+/-180", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcdom8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcdom8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcdom8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcdom8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcdom8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcdom8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdom1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdom1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcdom1day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2012-2016 (1 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcdom1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcdom1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcdom1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcdom1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcdom1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcdom1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdom1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdom1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcdom1day_LonPM180/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2012-2016 (1 Day Composite), Lon+/-180", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcdom1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcdom1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcdom1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcdom1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcdom1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcdom1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHcdom8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHcdom8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHcdom8day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, 2002-2013, DEPRECATED OLDER VERSION (8 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHcdom8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHcdom8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHcdom8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHcdom8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHcdom8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHcdom8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHcdommday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHcdommday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHcdommday/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, 2002-2013, DEPRECATED OLDER VERSION (Monthly Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHcdommday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHcdommday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHcdommday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHcdommday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHcdommday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHcdommday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdom1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdom1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcdom1day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, East US, 2002-2012 (1 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcdom1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcdom1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcdom1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcdom1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcdom1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcdom1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdom14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdom14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcdom14day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, East US, 2002-2012 (14 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcdom14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcdom14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcdom14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcdom14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcdom14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcdom14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdom3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdom3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcdom3day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, East US, 2002-2012 (3 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcdom3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcdom3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcdom3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcdom3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcdom3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcdom3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdom8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdom8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcdom8day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, East US, 2002-2012 (8 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcdom8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcdom8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcdom8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcdom8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcdom8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcdom8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdommday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdommday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcdommday/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, East US, 2002-2012 (Monthly Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcdommday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcdommday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcdommday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcdommday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcdommday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcdommday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcdom1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcdom1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGcdom1day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (1 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters.THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGcdom1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGcdom1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGcdom1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGcdom1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGcdom1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGcdom1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcdom14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcdom14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGcdom14day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (14 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters.THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGcdom14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGcdom14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGcdom14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGcdom14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGcdom14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGcdom14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcdom3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcdom3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGcdom3day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (3 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters.THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGcdom3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGcdom3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGcdom3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGcdom3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGcdom3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGcdom3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcdom8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcdom8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGcdom8day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (8 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters.THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGcdom8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGcdom8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGcdom8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGcdom8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGcdom8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGcdom8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcdommday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcdommday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGcdommday/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (Monthly Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters.THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGcdommday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGcdommday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGcdommday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGcdommday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGcdommday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGcdommday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATclddhday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATclddhday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATclddhday/request", "", "public", "Cloudmask, CLAVR-1, NOAA POES AVHRR, 0.0125 degrees, West US, 2007-present, Daytime (Single Scan)", "The CLAVR-1 cloudmask (Stowe, 1999) is used to cloudmask AVHRR high resolution sea surface temperature products. The cloudmask runs a series of tests on each surface temperature pixel to determine whether the pixel is contaminated by cloud cover. Users may evaluate which specific tests in the cloudmask returned positive cloud presence results by examining the value of the cloudmask. This value corresponds to an 8 bit binary number which details which tests flagged the pixel as a cloudy pixel. See https://coastwatch.pfeg.noaa.gov/info/CLAVR.html for more information regarding the specific tests used in the cloudmask.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncloudmask (Daytime Cloud Mask, 8 bits, encoded)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATclddhday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATclddhday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATclddhday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_cldd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATclddhday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATclddhday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATclddhday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATclddhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATclddhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATclddhday_LonPM180/request", "", "public", "Cloudmask, CLAVR-1, NOAA POES AVHRR, 0.0125 degrees, West US, 2007-present, Daytime (Single Scan), Lon+/-180", "The CLAVR-1 cloudmask (Stowe, 1999) is used to cloudmask AVHRR high resolution sea surface temperature products. The cloudmask runs a series of tests on each surface temperature pixel to determine whether the pixel is contaminated by cloud cover. Users may evaluate which specific tests in the cloudmask returned positive cloud presence results by examining the value of the cloudmask. This value corresponds to an 8 bit binary number which details which tests flagged the pixel as a cloudy pixel. See https://coastwatch.pfeg.noaa.gov/info/CLAVR.html for more information regarding the specific tests used in the cloudmask.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncloudmask (Daytime Cloud Mask, 8 bits, encoded)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATclddhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATclddhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATclddhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_cldd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATclddhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATclddhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATclddhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATcldnhday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATcldnhday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATcldnhday/request", "", "public", "Cloudmask, CLAVR-1, NOAA POES AVHRR, 0.0125 degrees, West US, 2007-present, Nighttime (Single Scan)", "The CLAVR-1 cloudmask (Stowe, 1999) is used to cloudmask AVHRR high resolution sea surface temperature products. The cloudmask runs a series of tests on each surface temperature pixel to determine whether the pixel is contaminated by cloud cover. Users may evaluate which specific tests in the cloudmask returned positive cloud presence results by examining the value of the cloudmask. This value corresponds to an 8 bit binary number which details which tests flagged the pixel as a cloudy pixel. See https://coastwatch.pfeg.noaa.gov/info/CLAVR.html for more information regarding the specific tests used in the cloudmask.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncloudmask (Nighttime Cloud Mask, 8 bits, encoded)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATcldnhday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATcldnhday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATcldnhday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_cldn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATcldnhday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATcldnhday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATcldnhday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATcldnhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATcldnhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATcldnhday_LonPM180/request", "", "public", "Cloudmask, CLAVR-1, NOAA POES AVHRR, 0.0125 degrees, West US, 2007-present, Nighttime (Single Scan), Lon+/-180", "The CLAVR-1 cloudmask (Stowe, 1999) is used to cloudmask AVHRR high resolution sea surface temperature products. The cloudmask runs a series of tests on each surface temperature pixel to determine whether the pixel is contaminated by cloud cover. Users may evaluate which specific tests in the cloudmask returned positive cloud presence results by examining the value of the cloudmask. This value corresponds to an 8 bit binary number which details which tests flagged the pixel as a cloudy pixel. See https://coastwatch.pfeg.noaa.gov/info/CLAVR.html for more information regarding the specific tests used in the cloudmask.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncloudmask (Nighttime Cloud Mask, 8 bits, encoded)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATcldnhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATcldnhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATcldnhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_cldn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATcldnhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATcldnhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATcldnhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKclddhday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKclddhday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKclddhday/request", "", "public", "Cloudmask, CLAVR-1, POES AVHRR, Alaska, Daytime, 2005-2008 (Hourly)", "The CLAVR-1 cloudmask (Stowe, 1999) is used to cloudmask AVHRR high resolution sea surface temperature products. The cloudmask runs a series of tests on each surface temperature pixel to determine whether the pixel is contaminated by cloud cover. Users may evaluate which specific tests in the cloudmask returned positive cloud presence results by examining the value of the cloudmask. This value corresponds to an 8 bit binary number which details which tests flagged the pixel as a cloudy pixel. See https://coastwatch.pfeg.noaa.gov/info/CLAVR.html for more information regarding the specific tests used in the cloudmask.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncloudmask (Daytime Cloud Mask, 8 bits, encoded)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKclddhday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKclddhday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKclddhday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_cldd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKclddhday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKclddhday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKclddhday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKclddhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKclddhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKclddhday_LonPM180/request", "", "public", "Cloudmask, CLAVR-1, POES AVHRR, Alaska, Daytime, 2005-2008 (Hourly), Lon+/-180", "The CLAVR-1 cloudmask (Stowe, 1999) is used to cloudmask AVHRR high resolution sea surface temperature products. The cloudmask runs a series of tests on each surface temperature pixel to determine whether the pixel is contaminated by cloud cover. Users may evaluate which specific tests in the cloudmask returned positive cloud presence results by examining the value of the cloudmask. This value corresponds to an 8 bit binary number which details which tests flagged the pixel as a cloudy pixel. See https://coastwatch.pfeg.noaa.gov/info/CLAVR.html for more information regarding the specific tests used in the cloudmask.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncloudmask (Daytime Cloud Mask, 8 bits, encoded)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKclddhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKclddhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKclddhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_cldd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKclddhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKclddhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKclddhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_8a77_333a_af12", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_8a77_333a_af12.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_8a77_333a_af12/request", "", "public", "CMC 0.2 deg global SST analysis (CMC0.2deg-CMC-L4-GLOB-v2.0)", "Canadian Meteorological Centre (CMC) 0.2 deg global sea surface temperature analysis. Applies the method of statistical interpolation to assimilate observations from in situ and satellite sources using, as the background, the analysis valid 24 hours prior assuming persistence of the anomalies. (CMC0.2deg-CMC-L4-GLOB-v2.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (sea/land/lake/ice field composite mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_8a77_333a_af12_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_8a77_333a_af12_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_8a77_333a_af12/index.json", "https://podaac.jpl.nasa.gov/dataset/CMC0.2deg-CMC-L4-GLOB-v2.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_8a77_333a_af12.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_8a77_333a_af12&showErrors=false&email=", "CMC", "nasa_jpl_8a77_333a_af12"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplCMCSST1DL4V30", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplCMCSST1DL4V30.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplCMCSST1DL4V30/request", "", "public", "CMC, GHRSST, Group for High Resolution SST, CMC0.1deg-CMC-L4-GLOB-v3.0, 2016-present", "Canadian Meteorological Centre (CMC) 0.1 deg global sea surface temperature analysis. Applies the method of statistical interpolation to assimilate observations from in situ and satellite sources using, as the background, the analysis valid 24 hours prior assuming persistence of the anomalies.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (sea/land/lake/ice field composite mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplCMCSST1DL4V30_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplCMCSST1DL4V30_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplCMCSST1DL4V30/index.json", "https://podaac.jpl.nasa.gov/dataset/CMC0.1deg-CMC-L4-GLOB-v3.0", "http://upwell.pfeg.noaa.gov/erddap/rss/jplCMCSST1DL4V30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplCMCSST1DL4V30&showErrors=false&email=", "CMC", "jplCMCSST1DL4V30"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplCnrOisstUhrL4BlkV20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplCnrOisstUhrL4BlkV20.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplCnrOisstUhrL4BlkV20/request", "", "public", "CNR, GHRSST, Group for High Resolution SST, OISST UHR NRT-GOS-L4-BLK-v2.0, Black Sea, 0.00833333\u00b0, 2008-present", "Consiglio Nazionale delle Ricerche (CNR) Black Sea SST Analysis, L4, 1km daily. Daily gap-free maps (L4) at 0.01deg. x 0.01deg. horizontal resolution over the Black Sea. The data (for day=dd) are obtained from infra-red measurements collected [since 7pm of day=dd-1 to 7am of day=dd] by satellite radiometers and statistical interpolation. It is the Copernicus sea surface temperature nominal operational product for the Black Sea in DT mode.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (sea/land/lake/ice field composite mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplCnrOisstUhrL4BlkV20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplCnrOisstUhrL4BlkV20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplCnrOisstUhrL4BlkV20/index.json", "https://podaac.jpl.nasa.gov/dataset/OISST_UHR_NRT-GOS-L4-BLK-v2.0", "http://upwell.pfeg.noaa.gov/erddap/rss/jplCnrOisstUhrL4BlkV20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplCnrOisstUhrL4BlkV20&showErrors=false&email=", "GOS", "jplCnrOisstUhrL4BlkV20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplCnrOisstUhrL4MedV20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplCnrOisstUhrL4MedV20.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplCnrOisstUhrL4MedV20/request", "", "public", "CNR, GHRSST, Group for High Resolution SST, OISST UHR NRT-GOS-L4-MED-v2.0, Mediterranean, 0.01\u00b0, 2008-present", "Consiglio Nazionale delle Ricerche (CNR) Mediterranean SST Analysis, L4, 1km daily. Daily gap-free maps (L4) at 1/100deg. x 1/100deg. horizontal resolution over the Mediterranean Sea. The data (for day=dd) are obtained from infra-red measurements collected [since 7pm of day=dd-1 to 7am of day=dd] by satellite radiometers and statistical interpolation. It is the Copernicus sea surface temperature nominal operational product for the Mediterranean Sea in DT mode.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (sea/land/lake/ice field composite mask, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplCnrOisstUhrL4MedV20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplCnrOisstUhrL4MedV20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplCnrOisstUhrL4MedV20/index.json", "https://podaac.jpl.nasa.gov/dataset/OISST_UHR_NRT-GOS-L4-MED-v2.0", "http://upwell.pfeg.noaa.gov/erddap/rss/jplCnrOisstUhrL4MedV20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplCnrOisstUhrL4MedV20&showErrors=false&email=", "GOS", "jplCnrOisstUhrL4MedV20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlCOAMPS3km", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlCOAMPS3km.graph", "", "", "public", "COAMPS 3km Surface Fields", "COAMPS_Surface_Fields\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][lat][lon]):\nair_temperature (deg C)\nsurface_temperature (Ground temperature over land, Sea surface temperature over the ocean, deg C)\nlonflx (Net surface longwave radiative heat flux, W/m**2)\nrelative_humidity (percent)\nair_pressure_at_sea_level (Sea Level Pressure, millibars)\nsolflx (Net surface shortwave radiative heat flux, W/m**2)\nhourly_precip (Hourly Precipitation, mm)\nx_wind (Zonal Wind, m/s)\ny_wind (Meridional Wind, m/s)\nwind_speed (m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nrlCOAMPS3km/index.json", "https://www.nrlmry.navy.mil/coamps-web/web/home", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlCOAMPS3km.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlCOAMPS3km&showErrors=false&email=", "Naval Research Laboratory, Monterey Marine Meteorology Division", "nrlCOAMPS3km"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlCOAMPS3kmNogap", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlCOAMPS3kmNogap.graph", "", "", "public", "COAMPS 3km Surface Fields (Reanalysis, No Gaps)", "COAMPS_Surface_Fields\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][lat][lon]):\nair_temperature (deg C)\nsurface_temperature (Ground temperature over land, Sea surface temperature over the ocean, deg C)\nlonflx (Net surface longwave radiative heat flux, W/m**2)\nrelative_humidity (percent)\nair_pressure_at_sea_level (Sea Level Pressure, millibars)\nsolflx (Net surface shortwave radiative heat flux, W/m**2)\nttlpcp (Hourly Precipitation, mm)\nx_wind (Zonal Wind, m/s)\ny_wind (Meridional Wind, m/s)\nwind_speed (m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nrlCOAMPS3kmNogap/index.json", "https://www.nrlmry.navy.mil/coamps-web/web/home", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlCOAMPS3kmNogap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlCOAMPS3kmNogap&showErrors=false&email=", "Naval Research Laboratory, Monterey Marine Meteorology Division", "nrlCOAMPS3kmNogap"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlCOAMPS3kmGrid", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlCOAMPS3kmGrid.graph", "", "", "public", "COAMPS Surface Fields Grid", "COAMPS Surface Fields Grid\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [lat][lon]):\nlat_coamps (Latitude, degrees_north)\nlon_coamps (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nrlCOAMPS3kmGrid/index.json", "https://www.nrlmry.navy.mil/coamps-web/web/home", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlCOAMPS3kmGrid.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlCOAMPS3kmGrid&showErrors=false&email=", "Naval Research Laboratory, Monterey Marine Meteorology Division", "nrlCOAMPS3kmGrid"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_acda_96fa_86e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_acda_96fa_86e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_acda_96fa_86e5/request", "", "public", "COBE SST Analysis (Top Dataset, COBE, sst.mon.mean), 1.0\u00b0, 1891-present", "COBE Sea Surface Temperature Analysis. recent values (w/i last year) may change as dataset is updated. It is a monitoring dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Means of Global Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_acda_96fa_86e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_acda_96fa_86e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_acda_96fa_86e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cobe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_acda_96fa_86e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_acda_96fa_86e5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_acda_96fa_86e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_57e0_19af_0654", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_57e0_19af_0654.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_57e0_19af_0654/request", "", "public", "Cold Bay, Alaska 8 arc-second Coastal Digital Elevation Model (cold bay 8 mhhw 2013), 0.0022222223\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_57e0_19af_0654_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_57e0_19af_0654_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_57e0_19af_0654/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_57e0_19af_0654.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_57e0_19af_0654&showErrors=false&email=", "NOAA", "noaa_ngdc_57e0_19af_0654"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_69f7_3613_de75", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_69f7_3613_de75.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_69f7_3613_de75/request", "", "public", "Cold Bay, Alaska 8/15 arc-second Coastal Digital Elevation Model (cold bay 815 mhhw 2013), 1.4814814E-4\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_69f7_3613_de75_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_69f7_3613_de75_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_69f7_3613_de75/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_69f7_3613_de75.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_69f7_3613_de75&showErrors=false&email=", "NOAA", "noaa_ngdc_69f7_3613_de75"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9ad8_f51b_c1f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9ad8_f51b_c1f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9ad8_f51b_c1f9/request", "", "public", "Cold Bay, Alaska 8/3 arc-second Coastal Digital Elevation Model (cold bay 83 mhhw 2013), 7.4074074E-4\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9ad8_f51b_c1f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9ad8_f51b_c1f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9ad8_f51b_c1f9/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9ad8_f51b_c1f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9ad8_f51b_c1f9&showErrors=false&email=", "NOAA", "noaa_ngdc_9ad8_f51b_c1f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWdhws1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWdhws1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWdhws1day/request", "", "public", "Coral Reef Watch, Degree Heating Weeks, 50 km, 2000-2011", "NOAA Coral Reef Watch distributes Degree Heating Week products using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndhw (Degree Heating Weeks, weeks)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWdhws1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWdhws1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWdhws1day/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWdhws1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWdhws1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWdhws1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWdhws1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWdhws1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWdhws1day_LonPM180/request", "", "public", "Coral Reef Watch, Degree Heating Weeks, 50 km, 2000-2011, Lon+/-180", "NOAA Coral Reef Watch distributes Degree Heating Week products using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndhw (Degree Heating Weeks, weeks)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWdhws1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWdhws1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWdhws1day_LonPM180/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWdhws1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWdhws1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWdhws1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWhots1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWhots1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWhots1day/request", "", "public", "Coral Reef Watch, Hotspots, 50 km, 2000-2011 (1 Day Composite)", "NOAA Coral Reef Watch provides Coral Bleaching hotspot maps derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nhots (Hot Spots, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWhots1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWhots1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWhots1day/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWhots1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWhots1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWhots1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWhots1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWhots1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWhots1day_LonPM180/request", "", "public", "Coral Reef Watch, Hotspots, 50 km, 2000-2011 (1 Day Composite), Lon+/-180", "NOAA Coral Reef Watch provides Coral Bleaching hotspot maps derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nhots (Hot Spots, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWhots1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWhots1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWhots1day_LonPM180/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWhots1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWhots1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWhots1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWsstn1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWsstn1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWsstn1day/request", "", "public", "Coral Reef Watch, Nighttime Temperature, 50 km, 2000-2011 (1 Day Composite)", "NOAA Coral Reef Watch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWsstn1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWsstn1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWsstn1day/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWsstn1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWsstn1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWsstn1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWsstn1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWsstn1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWsstn1day_LonPM180/request", "", "public", "Coral Reef Watch, Nighttime Temperature, 50 km, 2000-2011 (1 Day Composite), Lon+/-180", "NOAA Coral Reef Watch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWsstn1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWsstn1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWsstn1day_LonPM180/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWsstn1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWsstn1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWsstn1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWtanm1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWtanm1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWtanm1day/request", "", "public", "Coral Reef Watch, Temperature Anomaly, 50 km, 2000-2011 (1 Day Composite)", "NOAA Coral Reef Watch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWtanm1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWtanm1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWtanm1day/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWtanm1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWtanm1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWtanm1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWtanm1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWtanm1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWtanm1day_LonPM180/request", "", "public", "Coral Reef Watch, Temperature Anomaly, 50 km, 2000-2011 (1 Day Composite), Lon+/-180", "NOAA Coral Reef Watch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWtanm1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWtanm1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWtanm1day_LonPM180/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWtanm1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWtanm1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWtanm1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c061_02ee_ec58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c061_02ee_ec58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c061_02ee_ec58/request", "", "public", "Cordova, Alaska Coastal Digital Elevation Model (Top Dataset, Regional, cordova 13 mhw 2010), 9.259259E-5\u00b0", "Cordova, Alaska Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c061_02ee_ec58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c061_02ee_ec58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c061_02ee_ec58/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c061_02ee_ec58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c061_02ee_ec58&showErrors=false&email=", "NOAA", "noaa_ngdc_c061_02ee_ec58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_60b8_1f45_7bcc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_60b8_1f45_7bcc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_60b8_1f45_7bcc/request", "", "public", "Cordova, Alaska Coastal Digital Elevation Model (Top Dataset, Regional, cordova 3 mhw 2010), 8.3333335E-4\u00b0", "Cordova, Alaska Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_60b8_1f45_7bcc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_60b8_1f45_7bcc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_60b8_1f45_7bcc/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_60b8_1f45_7bcc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_60b8_1f45_7bcc&showErrors=false&email=", "NOAA", "noaa_ngdc_60b8_1f45_7bcc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cc6c_f06a_754f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cc6c_f06a_754f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_cc6c_f06a_754f/request", "", "public", "Cordova, Alaska Coastal Digital Elevation Model (Top Dataset, Regional, cordova 815 mhhw 2009), 1.4814814E-4\u00b0", "Cordova, Alaska Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (Topography (m), meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_cc6c_f06a_754f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_cc6c_f06a_754f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_cc6c_f06a_754f/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_cc6c_f06a_754f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_cc6c_f06a_754f&showErrors=false&email=", "NOAA", "noaa_ngdc_cc6c_f06a_754f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_879e_f6d1_e3d8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_879e_f6d1_e3d8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_879e_f6d1_e3d8/request", "", "public", "Cordova, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, CordovaAK A)", "Cordova, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_879e_f6d1_e3d8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_879e_f6d1_e3d8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_879e_f6d1_e3d8/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_879e_f6d1_e3d8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_879e_f6d1_e3d8&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_879e_f6d1_e3d8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7dae_33ca_0202", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7dae_33ca_0202.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7dae_33ca_0202/request", "", "public", "Cordova, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, CordovaAK B)", "Cordova, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7dae_33ca_0202_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7dae_33ca_0202_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7dae_33ca_0202/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7dae_33ca_0202.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7dae_33ca_0202&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_7dae_33ca_0202"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_981a_3b8d_e83f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_981a_3b8d_e83f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_981a_3b8d_e83f/request", "", "public", "Cordova, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, CordovaAK C)", "Cordova, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_981a_3b8d_e83f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_981a_3b8d_e83f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_981a_3b8d_e83f/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_981a_3b8d_e83f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_981a_3b8d_e83f&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_981a_3b8d_e83f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b064_3e4f_0601", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b064_3e4f_0601.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_b064_3e4f_0601/request", "", "public", "Corpus Christi Bay (G310) Bathymetric Digital Elevation Model (corpus christi bay G310 2018), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_b064_3e4f_0601_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_b064_3e4f_0601_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_b064_3e4f_0601/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_b064_3e4f_0601.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_b064_3e4f_0601&showErrors=false&email=", "NOAA", "noaa_ngdc_b064_3e4f_0601"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4c16_f697_4e83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4c16_f697_4e83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4c16_f697_4e83/request", "", "public", "Corpus Christi, Texas Coastal Digital Elevation Model (corpus christi 13 mhw 2007), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4c16_f697_4e83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4c16_f697_4e83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4c16_f697_4e83/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4c16_f697_4e83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4c16_f697_4e83&showErrors=false&email=", "NOAA", "noaa_ngdc_4c16_f697_4e83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_07a8_663b_eadf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_07a8_663b_eadf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_07a8_663b_eadf/request", "", "public", "CPC Merged Analysis of Precipitation (excludes NCEP Reanalysis) (precip.mon.ltm), 2.5\u00b0, 0001", "Climate Prediction Center (CPC) Merged Analysis of Precipitation (excludes National Centers for Environmental Prediction (NCEP) Reanalysis) (Top Dataset, std, precip.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Long Term Mean Average Monthly Rate of Precipitation, mm/day)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_07a8_663b_eadf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_07a8_663b_eadf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_07a8_663b_eadf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cmap.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_07a8_663b_eadf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_07a8_663b_eadf&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_07a8_663b_eadf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_823f_ea65_f27e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_823f_ea65_f27e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_823f_ea65_f27e/request", "", "public", "CPC Merged Analysis of Precipitation (excludes NCEP Reanalysis) (precip.mon.mean), 2.5\u00b0, 1979-present", "Climate Prediction Center (CPC) Merged Analysis of Precipitation (excludes National Centers for Environmental Prediction (NCEP) Reanalysis) (Top Dataset, std, precip.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Average Monthly Rate of Precipitation, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_823f_ea65_f27e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_823f_ea65_f27e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_823f_ea65_f27e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cmap.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_823f_ea65_f27e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_823f_ea65_f27e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_823f_ea65_f27e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3878_7a8b_a8d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3878_7a8b_a8d2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3878_7a8b_a8d2/request", "", "public", "CPC Merged Analysis of Precipitation (includes NCEP Reanalysis) (precip.mon.ltm), 2.5\u00b0, 0001", "Climate Prediction Center (CPC) Merged Analysis of Precipitation (includes National Centers for Environmental Prediction (NCEP) Reanalysis) (Top Dataset, enh, precip.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Long Term Mean Average Monthly Rate of Precipitation, mm/day)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3878_7a8b_a8d2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3878_7a8b_a8d2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3878_7a8b_a8d2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cmap.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3878_7a8b_a8d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3878_7a8b_a8d2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3878_7a8b_a8d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99bb_b8be_d99d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99bb_b8be_d99d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99bb_b8be_d99d/request", "", "public", "CPC Merged Analysis of Precipitation (includes NCEP Reanalysis) (precip.mon.mean), 2.5\u00b0, 1979-present", "Climate Prediction Center (CPC) Merged Analysis of Precipitation (includes National Centers for Environmental Prediction (NCEP) Reanalysis) (Top Dataset, enh, precip.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Average Monthly Rate of Precipitation, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99bb_b8be_d99d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99bb_b8be_d99d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99bb_b8be_d99d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cmap.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99bb_b8be_d99d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99bb_b8be_d99d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_99bb_b8be_d99d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e30b_052e_8bdd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e30b_052e_8bdd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e30b_052e_8bdd/request", "", "public", "CPC Merged Analysis of Precipitation Pentad data (excludes NCEP Reanalysis I), 2.5\u00b0, 1979-2016", "Climate Prediction Center (CPC) Merged Analysis of Precipitation Pentad data (excludes National Centers for Environmental Prediction (NCEP) Reanalysis I) (Top Dataset, std, precip.pentad.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Average Pentad Rate of Precipitation, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e30b_052e_8bdd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e30b_052e_8bdd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e30b_052e_8bdd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cmap.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e30b_052e_8bdd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e30b_052e_8bdd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e30b_052e_8bdd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_52b3_1abc_6039", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_52b3_1abc_6039.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_52b3_1abc_6039/request", "", "public", "CPC Merged Analysis of Precipitation Pentad data (includes NCEP Reanalysis I), 2.5\u00b0, 1979-2016", "Climate Prediction Center (CPC) Merged Analysis of Precipitation Pentad data (includes National Centers for Environmental Prediction (NCEP) Reanalysis I) (Top Dataset, enh, precip.pentad.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Average Pentad Rate of Precipitation, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_52b3_1abc_6039_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_52b3_1abc_6039_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_52b3_1abc_6039/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cmap.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_52b3_1abc_6039.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_52b3_1abc_6039&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_52b3_1abc_6039"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afb4_ef5a_fa37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afb4_ef5a_fa37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_afb4_ef5a_fa37/request", "", "public", "CPC Merged Analysis of Precipitation Pentad RT data (excludes NCEP Reanalysis I), 2.5\u00b0, 2000-present", "Climate Prediction Center (CPC) Merged Analysis of Precipitation Pentad RT data (excludes National Centers for Environmental Prediction (NCEP) Reanalysis I) (Top Dataset, rt, precip.pentad.mean.rt)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Average Pentad Rate of Precipitation, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_afb4_ef5a_fa37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_afb4_ef5a_fa37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_afb4_ef5a_fa37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cmap.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_afb4_ef5a_fa37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_afb4_ef5a_fa37&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_afb4_ef5a_fa37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e4e0_b3ed_d52e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e4e0_b3ed_d52e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e4e0_b3ed_d52e/request", "", "public", "Craig, Alaska Coastal Digital Elevation Model (Top Dataset, Regional, craig 13 mhw 2012), 9.259259E-5\u00b0", "Craig, Alaska Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e4e0_b3ed_d52e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e4e0_b3ed_d52e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e4e0_b3ed_d52e/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e4e0_b3ed_d52e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e4e0_b3ed_d52e&showErrors=false&email=", "NOAA", "noaa_ngdc_e4e0_b3ed_d52e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9abf_2a28_dd9e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9abf_2a28_dd9e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9abf_2a28_dd9e/request", "", "public", "Craig, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, ChignikAK A)", "Craig, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9abf_2a28_dd9e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9abf_2a28_dd9e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9abf_2a28_dd9e/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9abf_2a28_dd9e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9abf_2a28_dd9e&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_9abf_2a28_dd9e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5617_d2d2_48f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5617_d2d2_48f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5617_d2d2_48f1/request", "", "public", "Craig, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, ChignikAK B)", "Craig, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5617_d2d2_48f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5617_d2d2_48f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5617_d2d2_48f1/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5617_d2d2_48f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5617_d2d2_48f1&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_5617_d2d2_48f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c617_09ef_7c63", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c617_09ef_7c63.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c617_09ef_7c63/request", "", "public", "Craig, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, ChignikAK C)", "Craig, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c617_09ef_7c63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c617_09ef_7c63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c617_09ef_7c63/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c617_09ef_7c63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c617_09ef_7c63&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_c617_09ef_7c63"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f834_575a_0ca7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f834_575a_0ca7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f834_575a_0ca7/request", "", "public", "Craig, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, CraigAK A), 0.033333335\u00b0", "Craig, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f834_575a_0ca7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f834_575a_0ca7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f834_575a_0ca7/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f834_575a_0ca7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f834_575a_0ca7&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_f834_575a_0ca7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8128_0f22_61b4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8128_0f22_61b4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8128_0f22_61b4/request", "", "public", "Craig, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, CraigAK B), 0.0033333334\u00b0", "Craig, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8128_0f22_61b4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8128_0f22_61b4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8128_0f22_61b4/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8128_0f22_61b4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8128_0f22_61b4&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_8128_0f22_61b4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_681e_d222_ecae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_681e_d222_ecae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_681e_d222_ecae/request", "", "public", "Craig, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, CraigAK C), 8.3333335E-4\u00b0", "Craig, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_681e_d222_ecae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_681e_d222_ecae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_681e_d222_ecae/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_681e_d222_ecae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_681e_d222_ecae&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_681e_d222_ecae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e871_0ea9_74d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e871_0ea9_74d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e871_0ea9_74d9/request", "", "public", "created 05/2014 from data provided by JRA (Top Dataset, COBE2, icec.mon.mean), 1.0\u00b0, 1850-2017", "created 05/2014 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, icec.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Monthly Means of Global Ice Concentration, fr)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e871_0ea9_74d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e871_0ea9_74d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e871_0ea9_74d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e871_0ea9_74d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e871_0ea9_74d9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e871_0ea9_74d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9e7_3b10_49c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9e7_3b10_49c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a9e7_3b10_49c0/request", "", "public", "created 05/2014 from data provided by JRA (Top Dataset, COBE2, icec.mon.mean.2016), 1.0\u00b0", "created 05/2014 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, icec.mon.mean.2016)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Monthly Means of Global Ice Concentration, fr)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9e7_3b10_49c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9e7_3b10_49c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9e7_3b10_49c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9e7_3b10_49c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9e7_3b10_49c0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a9e7_3b10_49c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f681_efe5_3597", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f681_efe5_3597.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f681_efe5_3597/request", "", "public", "created 12/2013 from data provided by JRA (Top Dataset, COBE2, sst.mon.ltm.1981-2010), 1.0\u00b0, 0001", "created 12/2013 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, sst.mon.ltm.1981-2010)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Long Term Mean Monthly Means of Global Sea Surface Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f681_efe5_3597_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f681_efe5_3597_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f681_efe5_3597/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f681_efe5_3597.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f681_efe5_3597&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f681_efe5_3597"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35ec_0735_a3f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35ec_0735_a3f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_35ec_0735_a3f5/request", "", "public", "created 12/2013 from data provided by JRA (Top Dataset, COBE2, sst.mon.mean), 1.0\u00b0, 1850-2017", "created 12/2013 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, sst.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Means of Global Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_35ec_0735_a3f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_35ec_0735_a3f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_35ec_0735_a3f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_35ec_0735_a3f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_35ec_0735_a3f5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_35ec_0735_a3f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc06_d1e5_9bf9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc06_d1e5_9bf9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc06_d1e5_9bf9/request", "", "public", "created 12/2013 from data provided by JRA (Top Dataset, COBE2, sst.mon.mean.2016), 1.0\u00b0", "created 12/2013 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, sst.mon.mean.2016)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Means of Global Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc06_d1e5_9bf9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc06_d1e5_9bf9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc06_d1e5_9bf9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc06_d1e5_9bf9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc06_d1e5_9bf9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_dc06_d1e5_9bf9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9520_1a4c_7aa1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9520_1a4c_7aa1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9520_1a4c_7aa1/request", "", "public", "Crescent City, California Coastal Digital Elevation Model (crescent city 13 mhw 2010), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9520_1a4c_7aa1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9520_1a4c_7aa1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9520_1a4c_7aa1/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9520_1a4c_7aa1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9520_1a4c_7aa1&showErrors=false&email=", "NOAA", "noaa_ngdc_9520_1a4c_7aa1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1a40_0a2a_2a36", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1a40_0a2a_2a36.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1a40_0a2a_2a36/request", "", "public", "Crescent City, California Coastal Digital Elevation Model (crescent city 13 navd88 2010), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1a40_0a2a_2a36_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1a40_0a2a_2a36_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1a40_0a2a_2a36/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1a40_0a2a_2a36.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1a40_0a2a_2a36&showErrors=false&email=", "NOAA", "noaa_ngdc_1a40_0a2a_2a36"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cb52_ccff_d03f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cb52_ccff_d03f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_cb52_ccff_d03f/request", "", "public", "Crescent City, California Tsunami Forecast Grids for MOST Model (CrescentCityCA A), 0.02\u00b0", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_cb52_ccff_d03f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_cb52_ccff_d03f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_cb52_ccff_d03f/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_cb52_ccff_d03f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_cb52_ccff_d03f&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_cb52_ccff_d03f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3b59_698d_8aa3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3b59_698d_8aa3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3b59_698d_8aa3/request", "", "public", "Crescent City, California Tsunami Forecast Grids for MOST Model (CrescentCityCA B), 0.0033333334\u00b0", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3b59_698d_8aa3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3b59_698d_8aa3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3b59_698d_8aa3/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3b59_698d_8aa3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3b59_698d_8aa3&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_3b59_698d_8aa3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0721_2e4b_cde3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0721_2e4b_cde3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0721_2e4b_cde3/request", "", "public", "Crescent City, California Tsunami Forecast Grids for MOST Model (CrescentCityCA C), 5.5555557E-4\u00b0", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0721_2e4b_cde3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0721_2e4b_cde3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0721_2e4b_cde3/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0721_2e4b_cde3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0721_2e4b_cde3&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_0721_2e4b_cde3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff85_13e0_9b4c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff85_13e0_9b4c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff85_13e0_9b4c/request", "", "public", "CRU Combined Surface/Marine Air Temperature Climatology 1961-1990. (air.mon.ltm), 5.0\u00b0, 0001", "Climatic Research Unit (CRU) Combined Surface/Marine Air Temperature Climatology 1961-1990. (Top Dataset, ltm, air.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRU Combined Surface/Marine Air Temperature Monthly Climatology, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff85_13e0_9b4c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff85_13e0_9b4c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff85_13e0_9b4c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.hadcru3.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff85_13e0_9b4c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff85_13e0_9b4c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ff85_13e0_9b4c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca10_45fa_9108", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca10_45fa_9108.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca10_45fa_9108/request", "", "public", "CRUTEM4 Air Temperature Dataset (Top Dataset, std, air.mon.anom), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca10_45fa_9108_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca10_45fa_9108_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca10_45fa_9108/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca10_45fa_9108.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca10_45fa_9108&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ca10_45fa_9108"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5523_8517_2d0a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5523_8517_2d0a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5523_8517_2d0a/request", "", "public", "CRUTEM4 Air Temperature Dataset (Top Dataset, std, air.mon.mean), 5.0\u00b0, 1851-2018", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.mean.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5523_8517_2d0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5523_8517_2d0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5523_8517_2d0a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5523_8517_2d0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5523_8517_2d0a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5523_8517_2d0a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7944_c525_7af1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7944_c525_7af1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7944_c525_7af1/request", "", "public", "CRUTEM4 Air Temperature Dataset (Top Dataset, var, air.mon.anom), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/var/air.mon.anom.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4V: Surface Air Temperature Monthly Anomaly Variance Adjusted, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7944_c525_7af1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7944_c525_7af1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7944_c525_7af1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7944_c525_7af1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7944_c525_7af1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7944_c525_7af1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAgeomday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAgeomday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTAgeomday/request", "", "public", "Currents, Geostrophic, Aviso, 0.25 degrees, Global, 1992-2009 (Monthly Composite)", "Aviso Zonal Geostrophic Current is inferred from Sea Surface Height Deviation, climatological dynamic height, and basic fluid mechanics.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Eastward Sea Water Velocity, m s-1)\nv_current (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTAgeomday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTAgeomday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTAgeomday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TA_ugeo_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTAgeomday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTAgeomday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTAgeomday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAgeomday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAgeomday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTAgeomday_LonPM180/request", "", "public", "Currents, Geostrophic, Aviso, 0.25 degrees, Global, 1992-2009 (Monthly Composite), Lon+/-180", "Aviso Zonal Geostrophic Current is inferred from Sea Surface Height Deviation, climatological dynamic height, and basic fluid mechanics.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Eastward Sea Water Velocity, m s-1)\nv_current (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTAgeomday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTAgeomday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTAgeomday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TA_ugeo_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTAgeomday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTAgeomday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTAgeomday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAgeo1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAgeo1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTAgeo1day/request", "", "public", "Currents, Geostrophic, Aviso, 0.25 degrees, Global, 1992-2012 (1 Day Composite)", "Aviso Zonal Geostrophic Current is inferred from Sea Surface Height Deviation, climatological dynamic height, and basic fluid mechanics.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Eastward Sea Water Velocity, m s-1)\nv_current (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTAgeo1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTAgeo1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTAgeo1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TA_ugeo_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTAgeo1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTAgeo1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTAgeo1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAgeo1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAgeo1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTAgeo1day_LonPM180/request", "", "public", "Currents, Geostrophic, Aviso, 0.25 degrees, Global, 1992-2012 (1 Day Composite), Lon+/-180", "Aviso Zonal Geostrophic Current is inferred from Sea Surface Height Deviation, climatological dynamic height, and basic fluid mechanics.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Eastward Sea Water Velocity, m s-1)\nv_current (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTAgeo1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTAgeo1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTAgeo1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TA_ugeo_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTAgeo1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTAgeo1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTAgeo1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrA6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrA6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ucsdHfrA6/request", "", "public", "Currents, HF Radar, Alaska - North Slope, RTV, Near-Real Time, 2010-present, Hourly, 6km", "Surface ocean velocities estimated from HF-Radar are\nrepresentative of the upper 0.3 - 2.5 meters of the\nocean. The main objective of near-real time\nprocessing is to produce the best product from\navailable data at the time of processing. Radial\nvelocity measurements are obtained from individual\nradar sites through the U.S. HF-Radar Network.\nHourly radial data are processed by unweighted\nleast-squares on a 6 km resolution grid of the Alaskan\nNorth Slope to produce near real-time surface current maps\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwater_u (Surface Eastward Sea Water Velocity, m s-1)\nwater_v (Surface Northward Sea Water Velocity, m s-1)\nDOPx (Longitudinal Dilution of Precision)\nDOPy (Latitudinal Dilution of Precision)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ucsdHfrA6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ucsdHfrA6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ucsdHfrA6/index.json", "http://cordc.ucsd.edu/projects/mapping/", "http://upwell.pfeg.noaa.gov/erddap/rss/ucsdHfrA6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ucsdHfrA6&showErrors=false&email=", "Scripps Institution of Oceanography", "ucsdHfrA6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrP2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrP2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ucsdHfrP2/request", "", "public", "Currents, HF Radar, Puerto Rico and the US Virgin Islands, RTV, Near-Real Time, 2010-present, Hourly, 2km", "Surface ocean velocities estimated from HF-Radar are\nrepresentative of the upper 0.3 - 2.5 meters of the\nocean. The main objective of near-real time\nprocessing is to produce the best product from\navailable data at the time of processing. Radial\nvelocity measurements are obtained from individual\nradar sites through the U.S. HF-Radar Network.\nHourly radial data are processed by unweighted\nleast-squares on a 2 km resolution grid of Puerto Rico\nand the Virgin Islands to produce near real-time surface\ncurrent maps.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwater_u (Surface Eastward Sea Water Velocity, m s-1)\nwater_v (Surface Northward Sea Water Velocity, m s-1)\nDOPx (Longitudinal Dilution of Precision)\nDOPy (Latitudinal Dilution of Precision)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ucsdHfrP2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ucsdHfrP2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ucsdHfrP2/index.json", "http://cordc.ucsd.edu/projects/mapping/", "http://upwell.pfeg.noaa.gov/erddap/rss/ucsdHfrP2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ucsdHfrP2&showErrors=false&email=", "Scripps Institution of Oceanography", "ucsdHfrP2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrP6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrP6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ucsdHfrP6/request", "", "public", "Currents, HF Radar, Puerto Rico and the US Virgin Islands, RTV, Near-Real Time, 2010-present, Hourly, 6km", "Surface ocean velocities estimated from HF-Radar are\nrepresentative of the upper 0.3 - 2.5 meters of the\nocean. The main objective of near-real time\nprocessing is to produce the best product from\navailable data at the time of processing. Radial\nvelocity measurements are obtained from individual\nradar sites through the U.S. HF-Radar Network.\nHourly radial data are processed by unweighted\nleast-squares on a 6 km resolution grid of Puerto Rico\nand the Virgin Islands to produce near real-time surface\ncurrent maps.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwater_u (Surface Eastward Sea Water Velocity, m s-1)\nwater_v (Surface Northward Sea Water Velocity, m s-1)\nDOPx (Longitudinal Dilution of Precision)\nDOPy (Latitudinal Dilution of Precision)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ucsdHfrP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ucsdHfrP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ucsdHfrP6/index.json", "http://cordc.ucsd.edu/projects/mapping/", "http://upwell.pfeg.noaa.gov/erddap/rss/ucsdHfrP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ucsdHfrP6&showErrors=false&email=", "Scripps Institution of Oceanography", "ucsdHfrP6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrE1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrE1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ucsdHfrE1/request", "", "public", "Currents, HF Radar, US East Coast and Gulf of Mexico, RTV, Near-Real Time, 2012-present, Hourly, 1km", "Surface ocean velocities estimated from HF-Radar are\nrepresentative of the upper 0.3 - 2.5 meters of the\nocean. The main objective of near-real time\nprocessing is to produce the best product from\navailable data at the time of processing. Radial\nvelocity measurements are obtained from individual\nradar sites through the U.S. HF-Radar Network.\nHourly radial data are processed by unweighted\nleast-squares on a 1 km resolution grid of the U.S.\nEast and Gulf Coast to produce near real-time surface\ncurrent maps.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwater_u (Surface Eastward Sea Water Velocity, m s-1)\nwater_v (Surface Northward Sea Water Velocity, m s-1)\nDOPx (Longitudinal Dilution of Precision)\nDOPy (Latitudinal Dilution of Precision)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ucsdHfrE1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ucsdHfrE1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ucsdHfrE1/index.json", "http://cordc.ucsd.edu/projects/mapping/", "http://upwell.pfeg.noaa.gov/erddap/rss/ucsdHfrE1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ucsdHfrE1&showErrors=false&email=", "Scripps Institution of Oceanography", "ucsdHfrE1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrE2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrE2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ucsdHfrE2/request", "", "public", "Currents, HF Radar, US East Coast and Gulf of Mexico, RTV, Near-Real Time, 2012-present, Hourly, 2km", "Surface ocean velocities estimated from HF-Radar are\nrepresentative of the upper 0.3 - 2.5 meters of the\nocean. The main objective of near-real time\nprocessing is to produce the best product from\navailable data at the time of processing. Radial\nvelocity measurements are obtained from individual\nradar sites through the U.S. HF-Radar Network.\nHourly radial data are processed by unweighted\nleast-squares on a 2 km resolution grid of the U.S.\nEast and Gulf Coast to produce near real-time surface\ncurrent maps.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwater_u (Surface Eastward Sea Water Velocity, m s-1)\nwater_v (Surface Northward Sea Water Velocity, m s-1)\nDOPx (Longitudinal Dilution of Precision)\nDOPy (Latitudinal Dilution of Precision)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ucsdHfrE2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ucsdHfrE2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ucsdHfrE2/index.json", "http://cordc.ucsd.edu/projects/mapping/", "http://upwell.pfeg.noaa.gov/erddap/rss/ucsdHfrE2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ucsdHfrE2&showErrors=false&email=", "Scripps Institution of Oceanography", "ucsdHfrE2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrE6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrE6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ucsdHfrE6/request", "", "public", "Currents, HF Radar, US East Coast and Gulf of Mexico, RTV, Near-Real Time, 2012-present, Hourly, 6km", "Surface ocean velocities estimated from HF-Radar are\nrepresentative of the upper 0.3 - 2.5 meters of the\nocean. The main objective of near-real time\nprocessing is to produce the best product from\navailable data at the time of processing. Radial\nvelocity measurements are obtained from individual\nradar sites through the U.S. HF-Radar Network.\nHourly radial data are processed by unweighted\nleast-squares on a 6 km resolution grid of the U.S.\nEast and Gulf Coast to produce near real-time surface\ncurrent maps.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwater_u (Surface Eastward Sea Water Velocity, m s-1)\nwater_v (Surface Northward Sea Water Velocity, m s-1)\nDOPx (Longitudinal Dilution of Precision)\nDOPy (Latitudinal Dilution of Precision)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ucsdHfrE6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ucsdHfrE6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ucsdHfrE6/index.json", "http://cordc.ucsd.edu/projects/mapping/", "http://upwell.pfeg.noaa.gov/erddap/rss/ucsdHfrE6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ucsdHfrE6&showErrors=false&email=", "Scripps Institution of Oceanography", "ucsdHfrE6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrH1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrH1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ucsdHfrH1/request", "", "public", "Currents, HF Radar, US Hawai'i State, RTV, Near-Real Time, 2010-present, Hourly, 1km", "Surface ocean velocities estimated from HF-Radar are\nrepresentative of the upper 0.3 - 2.5 meters of the\nocean. The main objective of near-real time\nprocessing is to produce the best product from\navailable data at the time of processing. Radial\nvelocity measurements are obtained from individual\nradar sites through the U.S. HF-Radar Network.\nHourly radial data are processed by unweighted\nleast-squares on a 1 km resolution grid of Hawaii\nto produce near real-time surface current maps.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwater_u (Surface Eastward Sea Water Velocity, m s-1)\nwater_v (Surface Northward Sea Water Velocity, m s-1)\nDOPx (Longitudinal Dilution of Precision)\nDOPy (Latitudinal Dilution of Precision)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ucsdHfrH1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ucsdHfrH1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ucsdHfrH1/index.json", "http://cordc.ucsd.edu/projects/mapping/", "http://upwell.pfeg.noaa.gov/erddap/rss/ucsdHfrH1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ucsdHfrH1&showErrors=false&email=", "Scripps Institution of Oceanography", "ucsdHfrH1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrW1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrW1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ucsdHfrW1/request", "", "public", "Currents, HF Radar, US West Coast, RTV, Near-Real Time, 2011-present, Hourly, 1km", "Surface ocean velocities estimated from HF-Radar are\nrepresentative of the upper 0.3 - 2.5 meters of the\nocean. The main objective of near-real time\nprocessing is to produce the best product from\navailable data at the time of processing. Radial\nvelocity measurements are obtained from individual\nradar sites through the U.S. HF-Radar Network.\nHourly radial data are processed by unweighted\nleast-squares on a 1 km resolution grid of the U.S.\nWest Coast to produce near real-time surface current\nmaps.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwater_u (Surface Eastward Sea Water Velocity, m s-1)\nwater_v (Surface Northward Sea Water Velocity, m s-1)\nDOPx (Longitudinal Dilution of Precision)\nDOPy (Latitudinal Dilution of Precision)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ucsdHfrW1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ucsdHfrW1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ucsdHfrW1/index.json", "http://cordc.ucsd.edu/projects/mapping/", "http://upwell.pfeg.noaa.gov/erddap/rss/ucsdHfrW1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ucsdHfrW1&showErrors=false&email=", "Scripps Institution of Oceanography", "ucsdHfrW1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrW2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrW2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ucsdHfrW2/request", "", "public", "Currents, HF Radar, US West Coast, RTV, Near-Real Time, 2011-present, Hourly, 2km", "Surface ocean velocities estimated from HF-Radar are\nrepresentative of the upper 0.3 - 2.5 meters of the\nocean. The main objective of near-real time\nprocessing is to produce the best product from\navailable data at the time of processing. Radial\nvelocity measurements are obtained from individual\nradar sites through the U.S. HF-Radar Network.\nHourly radial data are processed by unweighted\nleast-squares on a 2 km resolution grid of the U.S.\nWest Coast to produce near real-time surface current\nmaps.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwater_u (Surface Eastward Sea Water Velocity, m s-1)\nwater_v (Surface Northward Sea Water Velocity, m s-1)\nDOPx (Longitudinal Dilution of Precision)\nDOPy (Latitudinal Dilution of Precision)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ucsdHfrW2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ucsdHfrW2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ucsdHfrW2/index.json", "http://cordc.ucsd.edu/projects/mapping/", "http://upwell.pfeg.noaa.gov/erddap/rss/ucsdHfrW2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ucsdHfrW2&showErrors=false&email=", "Scripps Institution of Oceanography", "ucsdHfrW2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrW500", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrW500.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ucsdHfrW500/request", "", "public", "Currents, HF Radar, US West Coast, RTV, Near-Real Time, 2011-present, Hourly, 500m", "Surface ocean velocities estimated from HF-Radar are\nrepresentative of the upper 0.3 - 2.5 meters of the\nocean. The main objective of near-real time\nprocessing is to produce the best product from\navailable data at the time of processing. Radial\nvelocity measurements are obtained from individual\nradar sites through the U.S. HF-Radar Network.\nHourly radial data are processed by unweighted\nleast-squares on a 500 m resolution grid of the U.S.\nWest Coast to produce near real-time surface current\nmaps.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwater_u (Surface Eastward Sea Water Velocity, m s-1)\nwater_v (Surface Northward Sea Water Velocity, m s-1)\nDOPx (Longitudinal Dilution of Precision)\nDOPy (Latitudinal Dilution of Precision)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ucsdHfrW500_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ucsdHfrW500_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ucsdHfrW500/index.json", "http://cordc.ucsd.edu/projects/mapping/", "http://upwell.pfeg.noaa.gov/erddap/rss/ucsdHfrW500.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ucsdHfrW500&showErrors=false&email=", "Scripps Institution of Oceanography", "ucsdHfrW500"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrW6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrW6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ucsdHfrW6/request", "", "public", "Currents, HF Radar, US West Coast, RTV, Near-Real Time, 2011-present, Hourly, 6km", "Surface ocean velocities estimated from HF-Radar are\nrepresentative of the upper 0.3 - 2.5 meters of the\nocean. The main objective of near-real time\nprocessing is to produce the best product from\navailable data at the time of processing. Radial\nvelocity measurements are obtained from individual\nradar sites through the U.S. HF-Radar Network.\nHourly radial data are processed by unweighted\nleast-squares on a 6 km resolution grid of the U.S.\nWest Coast to produce near real-time surface current\nmaps.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwater_u (Surface Eastward Sea Water Velocity, m s-1)\nwater_v (Surface Northward Sea Water Velocity, m s-1)\nDOPx (Longitudinal Dilution of Precision)\nDOPy (Latitudinal Dilution of Precision)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ucsdHfrW6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ucsdHfrW6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ucsdHfrW6/index.json", "http://cordc.ucsd.edu/projects/mapping/", "http://upwell.pfeg.noaa.gov/erddap/rss/ucsdHfrW6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ucsdHfrW6&showErrors=false&email=", "Scripps Institution of Oceanography", "ucsdHfrW6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdCAsfc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdCAsfc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdCAsfc/request", "", "public", "Currents, HFRadar, Ano Nuevo, 1 hr, 2006-2009, EXPERIMENTAL", "The data is the 1 hour average of the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCAsfc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCAsfc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAsfc/index.json", "https://coastwatch.pfeg.noaa.gov/infog/CA_usfc_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAsfc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAsfc&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdCAsfc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdCAsfc_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdCAsfc_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdCAsfc_LonPM180/request", "", "public", "Currents, HFRadar, Ano Nuevo, 1 hr, 2006-2009, EXPERIMENTAL, Lon+/-180", "The data is the 1 hour average of the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCAsfc_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCAsfc_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAsfc_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/CA_usfc_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAsfc_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAsfc_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdCAsfc_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdCA25h", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdCA25h.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdCA25h/request", "", "public", "Currents, HFRadar, Ano Nuevo, 25 hr, 2008-2009, EXPERIMENTAL", "The data is the 25 hour running average of the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCA25h_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCA25h_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCA25h/index.json", "https://coastwatch.pfeg.noaa.gov/infog/CA_u25h_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCA25h.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCA25h&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdCA25h"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdCA25h_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdCA25h_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdCA25h_LonPM180/request", "", "public", "Currents, HFRadar, Ano Nuevo, 25 hr, 2008-2009, EXPERIMENTAL, Lon+/-180", "The data is the 25 hour running average of the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCA25h_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCA25h_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCA25h_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/CA_u25h_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCA25h_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCA25h_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdCA25h_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdCAnma", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdCAnma.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdCAnma/request", "", "public", "Currents, HFRadar, Ano Nuevo, Optimized Model, 2008-2009, EXPERIMENTAL", "The data is the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements, with missing values filled in by a normal model. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCAnma_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCAnma_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAnma/index.json", "https://coastwatch.pfeg.noaa.gov/infog/CA_unma_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAnma.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAnma&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdCAnma"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdCAnma_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdCAnma_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdCAnma_LonPM180/request", "", "public", "Currents, HFRadar, Ano Nuevo, Optimized Model, 2008-2009, EXPERIMENTAL, Lon+/-180", "The data is the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements, with missing values filled in by a normal model. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCAnma_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCAnma_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAnma_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/CA_unma_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAnma_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAnma_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdCAnma_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdCBsfc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdCBsfc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdCBsfc/request", "", "public", "Currents, HFRadar, Bodega Bay, 1 hr, 2008-2009, EXPERIMENTAL", "The data is the 1 hour average of the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCBsfc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCBsfc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCBsfc/index.json", "https://coastwatch.pfeg.noaa.gov/infog/CB_usfc_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCBsfc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCBsfc&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdCBsfc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdCBsfc_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdCBsfc_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdCBsfc_LonPM180/request", "", "public", "Currents, HFRadar, Bodega Bay, 1 hr, 2008-2009, EXPERIMENTAL, Lon+/-180", "The data is the 1 hour average of the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCBsfc_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCBsfc_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCBsfc_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/CB_usfc_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCBsfc_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCBsfc_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdCBsfc_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdCB25h", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdCB25h.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdCB25h/request", "", "public", "Currents, HFRadar, Bodega Bay, 25 hr, 2008-2009, EXPERIMENTAL", "The data is the 25 hour running average of the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCB25h_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCB25h_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCB25h/index.json", "https://coastwatch.pfeg.noaa.gov/infog/CB_u25h_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCB25h.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCB25h&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdCB25h"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdCB25h_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdCB25h_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdCB25h_LonPM180/request", "", "public", "Currents, HFRadar, Bodega Bay, 25 hr, 2008-2009, EXPERIMENTAL, Lon+/-180", "The data is the 25 hour running average of the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCB25h_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCB25h_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCB25h_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/CB_u25h_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCB25h_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCB25h_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdCB25h_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdCMsfc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdCMsfc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdCMsfc/request", "", "public", "Currents, HFRadar, Monterey Bay, 1 hr, 2008-2009, EXPERIMENTAL", "The data is the 1 hour average of the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCMsfc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCMsfc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCMsfc/index.json", "https://coastwatch.pfeg.noaa.gov/infog/CM_usfc_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCMsfc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCMsfc&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdCMsfc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdCMsfc_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdCMsfc_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdCMsfc_LonPM180/request", "", "public", "Currents, HFRadar, Monterey Bay, 1 hr, 2008-2009, EXPERIMENTAL, Lon+/-180", "The data is the 1 hour average of the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCMsfc_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCMsfc_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCMsfc_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/CM_usfc_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCMsfc_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCMsfc_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdCMsfc_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdCM25h", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdCM25h.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdCM25h/request", "", "public", "Currents, HFRadar, Monterey Bay, 25 hr, 2008-2009, EXPERIMENTAL", "The data is the 25 hour running average of the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCM25h_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCM25h_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCM25h/index.json", "https://coastwatch.pfeg.noaa.gov/infog/CM_u25h_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCM25h.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCM25h&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdCM25h"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdCM25h_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdCM25h_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdCM25h_LonPM180/request", "", "public", "Currents, HFRadar, Monterey Bay, 25 hr, 2008-2009, EXPERIMENTAL, Lon+/-180", "The data is the 25 hour running average of the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCM25h_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCM25h_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCM25h_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/CM_u25h_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCM25h_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCM25h_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdCM25h_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdCMnma", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdCMnma.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdCMnma/request", "", "public", "Currents, HFRadar, Monterey Bay, Optimized Model, 2008, EXPERIMENTAL", "The data is the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements, with missing values filled in by a normal model. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCMnma_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCMnma_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCMnma/index.json", "https://coastwatch.pfeg.noaa.gov/infog/CM_unma_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCMnma.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCMnma&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdCMnma"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdCMnma_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdCMnma_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdCMnma_LonPM180/request", "", "public", "Currents, HFRadar, Monterey Bay, Optimized Model, 2008, EXPERIMENTAL, Lon+/-180", "The data is the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements, with missing values filled in by a normal model. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCMnma_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCMnma_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCMnma_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/CM_unma_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCMnma_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCMnma_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdCMnma_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdC1sfc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdC1sfc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdC1sfc/request", "", "public", "Currents, HFRadar, SF Bay Outlet, 1 hr, 2008-2009, EXPERIMENTAL", "The data is the 1 hour average of the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdC1sfc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdC1sfc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdC1sfc/index.json", "https://coastwatch.pfeg.noaa.gov/infog/C1_usfc_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdC1sfc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdC1sfc&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdC1sfc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdC1sfc_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdC1sfc_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdC1sfc_LonPM180/request", "", "public", "Currents, HFRadar, SF Bay Outlet, 1 hr, 2008-2009, EXPERIMENTAL, Lon+/-180", "The data is the 1 hour average of the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdC1sfc_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdC1sfc_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdC1sfc_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/C1_usfc_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdC1sfc_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdC1sfc_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdC1sfc_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdC125h", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdC125h.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdC125h/request", "", "public", "Currents, HFRadar, SF Bay Outlet, 25 hr, 2008-2009, EXPERIMENTAL", "The data is the 25 hour running average of the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdC125h_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdC125h_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdC125h/index.json", "https://coastwatch.pfeg.noaa.gov/infog/C1_u25h_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdC125h.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdC125h&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdC125h"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdC125h_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdC125h_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdC125h_LonPM180/request", "", "public", "Currents, HFRadar, SF Bay Outlet, 25 hr, 2008-2009, EXPERIMENTAL, Lon+/-180", "The data is the 25 hour running average of the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdC125h_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdC125h_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdC125h_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/C1_u25h_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdC125h_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdC125h_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdC125h_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdC1nma", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdC1nma.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdC1nma/request", "", "public", "Currents, HFRadar, SF Bay Outlet, Optimized Model, 2008, EXPERIMENTAL", "The data is the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements, with missing values filled in by a normal model. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdC1nma_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdC1nma_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdC1nma/index.json", "https://coastwatch.pfeg.noaa.gov/infog/C1_unma_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdC1nma.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdC1nma&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdC1nma"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdC1nma_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdC1nma_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdC1nma_LonPM180/request", "", "public", "Currents, HFRadar, SF Bay Outlet, Optimized Model, 2008, EXPERIMENTAL, Lon+/-180", "The data is the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements, with missing values filled in by a normal model. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdC1nma_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdC1nma_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdC1nma_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/C1_unma_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdC1nma_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdC1nma_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdC1nma_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdCSsfc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdCSsfc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdCSsfc/request", "", "public", "Currents, HFRadar, SF Bay, 1 hr, 2006-2007, EXPERIMENTAL", "The data is the 1 hour average of the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCSsfc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCSsfc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCSsfc/index.json", "https://coastwatch.pfeg.noaa.gov/infog/CS_usfc_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCSsfc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCSsfc&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdCSsfc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdCSsfc_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdCSsfc_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdCSsfc_LonPM180/request", "", "public", "Currents, HFRadar, SF Bay, 1 hr, 2006-2007, EXPERIMENTAL, Lon+/-180", "The data is the 1 hour average of the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCSsfc_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCSsfc_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCSsfc_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/CS_usfc_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCSsfc_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCSsfc_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdCSsfc_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdCS25h", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdCS25h.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdCS25h/request", "", "public", "Currents, HFRadar, SF Bay, 25 hr, 2006-2007, EXPERIMENTAL", "The data is the 25 hour running average of the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCS25h_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCS25h_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCS25h/index.json", "https://coastwatch.pfeg.noaa.gov/infog/CS_u25h_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCS25h.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCS25h&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdCS25h"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdCS25h_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdCS25h_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdCS25h_LonPM180/request", "", "public", "Currents, HFRadar, SF Bay, 25 hr, 2006-2007, EXPERIMENTAL, Lon+/-180", "The data is the 25 hour running average of the zonal component of ocean surface currents derived from High Frequency Radio-derived measurements. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\neastCurrent (Eastward Sea Water Velocity, m s-1)\nnorthCurrent (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCS25h_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCS25h_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCS25h_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/CS_u25h_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCS25h_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCS25h_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdCS25h_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c173_29a1_d8d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c173_29a1_d8d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c173_29a1_d8d3/request", "", "public", "daily 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.day.ltm), 0001", "daily 4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Daily Long Term Mean 3-hourly Maximum Temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c173_29a1_d8d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c173_29a1_d8d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c173_29a1_d8d3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c173_29a1_d8d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c173_29a1_d8d3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c173_29a1_d8d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd04_947b_6ec2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd04_947b_6ec2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bd04_947b_6ec2/request", "", "public", "daily 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.day.ltm), 0001", "daily 4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Daily Long Term Mean 3-hourly Minimum Temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bd04_947b_6ec2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bd04_947b_6ec2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bd04_947b_6ec2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bd04_947b_6ec2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bd04_947b_6ec2&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_bd04_947b_6ec2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edff_e32a_a0b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edff_e32a_a0b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_edff_e32a_a0b5/request", "", "public", "Daily averaged and put on grid 4x daily NCEP reanalysis (chi.day.ltm.old), 0001", "Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nchi (Daily Mean Velocity Potential<, m*m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_edff_e32a_a0b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_edff_e32a_a0b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_edff_e32a_a0b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_edff_e32a_a0b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_edff_e32a_a0b5&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_edff_e32a_a0b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d18_5f70_6e1b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d18_5f70_6e1b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d18_5f70_6e1b/request", "", "public", "Daily averaged and put on grid 4x daily NCEP reanalysis (psi.day.ltm.old), 0001", "Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\npsi (Daily Mean Streamfunction, m*m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d18_5f70_6e1b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d18_5f70_6e1b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d18_5f70_6e1b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d18_5f70_6e1b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d18_5f70_6e1b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_1d18_5f70_6e1b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cc5_ac11_b20a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cc5_ac11_b20a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3cc5_ac11_b20a/request", "", "public", "Daily averaged and put on grid 4x daily NCEP reanalysis (Top Dataset, sigma, chi.day.ltm), 0001", "Daily averaged and put on grid 4x daily National Centers for Environmental Prediction (NCEP) reanalysis. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nchi (Daily Long Term Mean Velocity Potential<, m*m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3cc5_ac11_b20a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3cc5_ac11_b20a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3cc5_ac11_b20a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3cc5_ac11_b20a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3cc5_ac11_b20a&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_3cc5_ac11_b20a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4123_582e_b9ed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4123_582e_b9ed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4123_582e_b9ed/request", "", "public", "Daily averaged and put on grid 4x daily NCEP reanalysis (Top Dataset, sigma, chi.day.ltm), 0001", "Daily averaged and put on grid 4x daily National Centers for Environmental Prediction (NCEP) reanalysis. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nchi (Daily Long Term Mean Velocity Potential<, m*m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4123_582e_b9ed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4123_582e_b9ed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4123_582e_b9ed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4123_582e_b9ed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4123_582e_b9ed&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_4123_582e_b9ed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_deb3_d6de_017e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_deb3_d6de_017e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_deb3_d6de_017e/request", "", "public", "Daily averaged and put on grid 4x daily NCEP reanalysis (Top Dataset, sigma, chi.day.ltm.old), 0001", "Daily averaged and put on grid 4x daily National Centers for Environmental Prediction (NCEP) reanalysis. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nchi (Daily Mean Velocity Potential<, m*m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_deb3_d6de_017e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_deb3_d6de_017e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_deb3_d6de_017e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_deb3_d6de_017e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_deb3_d6de_017e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_deb3_d6de_017e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ff0_ff22_9119", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ff0_ff22_9119.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9ff0_ff22_9119/request", "", "public", "Daily averaged and put on grid 4x daily NCEP reanalysis (Top Dataset, sigma, psi.day.ltm), 0001", "Daily averaged and put on grid 4x daily National Centers for Environmental Prediction (NCEP) reanalysis. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\npsi (Daily Long Term Mean Streamfunction, m*m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9ff0_ff22_9119_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9ff0_ff22_9119_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9ff0_ff22_9119/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9ff0_ff22_9119.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9ff0_ff22_9119&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9ff0_ff22_9119"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a649_9dfd_1130", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a649_9dfd_1130.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a649_9dfd_1130/request", "", "public", "Daily averaged and put on grid 4x daily NCEP reanalysis (Top Dataset, sigma, psi.day.ltm), 0001", "Daily averaged and put on grid 4x daily National Centers for Environmental Prediction (NCEP) reanalysis. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\npsi (Daily Long Term Mean Streamfunction, m*m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a649_9dfd_1130_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a649_9dfd_1130_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a649_9dfd_1130/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a649_9dfd_1130.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a649_9dfd_1130&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a649_9dfd_1130"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c073_a5c7_568d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c073_a5c7_568d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c073_a5c7_568d/request", "", "public", "Daily averaged and put on grid 4x daily NCEP reanalysis (Top Dataset, sigma, psi.day.ltm.old), 0001", "Daily averaged and put on grid 4x daily National Centers for Environmental Prediction (NCEP) reanalysis. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\npsi (Daily Mean Streamfunction, m*m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c073_a5c7_568d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c073_a5c7_568d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c073_a5c7_568d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c073_a5c7_568d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c073_a5c7_568d&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c073_a5c7_568d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c58_3b1f_e80c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c58_3b1f_e80c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6c58_3b1f_e80c/request", "", "public", "Daily averaged and put on grid 4x daily NCEP reanalysis (Top Dataset, spectral, chi.day.ltm), 0001", "Daily averaged and put on grid 4x daily National Centers for Environmental Prediction (NCEP) reanalysis. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nchi (Daily Long Term Mean Velocity Potential<, m*m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6c58_3b1f_e80c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6c58_3b1f_e80c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6c58_3b1f_e80c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6c58_3b1f_e80c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6c58_3b1f_e80c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6c58_3b1f_e80c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9169_c7a5_f19d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9169_c7a5_f19d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9169_c7a5_f19d/request", "", "public", "Daily averaged and put on grid 4x daily NCEP reanalysis (Top Dataset, spectral, chi.day.ltm), 0001", "Daily averaged and put on grid 4x daily National Centers for Environmental Prediction (NCEP) reanalysis. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nchi (Daily Long Term Mean Velocity Potential<, m*m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9169_c7a5_f19d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9169_c7a5_f19d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9169_c7a5_f19d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9169_c7a5_f19d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9169_c7a5_f19d&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9169_c7a5_f19d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8013_b727_1748", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8013_b727_1748.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8013_b727_1748/request", "", "public", "Daily averaged and put on grid 4x daily NCEP reanalysis (Top Dataset, spectral, psi.day.ltm), 0001", "Daily averaged and put on grid 4x daily National Centers for Environmental Prediction (NCEP) reanalysis. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\npsi (Daily Long Term Mean Streamfunction, m*m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8013_b727_1748_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8013_b727_1748_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8013_b727_1748/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8013_b727_1748.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8013_b727_1748&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8013_b727_1748"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfcb_da3d_d777", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfcb_da3d_d777.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bfcb_da3d_d777/request", "", "public", "Daily averaged and put on grid 4x daily NCEP reanalysis (Top Dataset, spectral, psi.day.ltm), 0001", "Daily averaged and put on grid 4x daily National Centers for Environmental Prediction (NCEP) reanalysis. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\npsi (Daily Long Term Mean Streamfunction, m*m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bfcb_da3d_d777_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bfcb_da3d_d777_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bfcb_da3d_d777/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bfcb_da3d_d777.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bfcb_da3d_d777&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_bfcb_da3d_d777"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b06a_1d34_d49f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b06a_1d34_d49f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b06a_1d34_d49f/request", "", "public", "Daily Long Term Mean from NOAA interpolated OLR Dataset (olr.day.1981-2010.ltm), 2.5\u00b0, 0001", "Calculated from Interpolated NOAA Outgoing Longwave Radiation (OLR) daily data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nolr (Daily Longterm Mean of OLR, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b06a_1d34_d49f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b06a_1d34_d49f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b06a_1d34_d49f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.interp_OLR.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b06a_1d34_d49f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b06a_1d34_d49f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b06a_1d34_d49f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28f5_2b34_1527", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28f5_2b34_1527.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28f5_2b34_1527/request", "", "public", "Daily Long Term Mean from NOAA interpolated OLR Dataset (Top Dataset, interp OLR, olr.day.ltm), 2.5\u00b0, 0001", "Daily Long Term Mean from NOAA interpolated Outgoing Longwave Radiation (OLR) Dataset. Calculated from Interpolated NOAA OLR daily data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nolr (Daily Longterm Mean of OLR, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28f5_2b34_1527_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28f5_2b34_1527_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28f5_2b34_1527/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.interp_OLR.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28f5_2b34_1527.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28f5_2b34_1527&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_28f5_2b34_1527"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c31_4e0f_c84d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c31_4e0f_c84d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8c31_4e0f_c84d/request", "", "public", "daily ltm air from the NCEP Reanalysis (Top Dataset, pressure, air.day.ltm), 2.5\u00b0, 0001", "daily ltm air from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (mean Long Term Mean Daily Air temperature, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8c31_4e0f_c84d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8c31_4e0f_c84d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8c31_4e0f_c84d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8c31_4e0f_c84d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8c31_4e0f_c84d&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8c31_4e0f_c84d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6850_bd7d_b09a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6850_bd7d_b09a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6850_bd7d_b09a/request", "", "public", "daily ltm air.sig995 from the NCEP Reanalysis (Top Dataset, surface, air.day.ltm), 2.5\u00b0, 0001", "daily ltm air.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (mean Long Term Mean Daily Air temperature at sigma level 995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6850_bd7d_b09a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6850_bd7d_b09a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6850_bd7d_b09a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6850_bd7d_b09a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6850_bd7d_b09a&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6850_bd7d_b09a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1c8_beb2_5225", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1c8_beb2_5225.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f1c8_beb2_5225/request", "", "public", "daily ltm air.sig995 from the NCEP Reanalysis (Top Dataset, surface, air.sig995.day.ltm), 2.5\u00b0, 0001", "daily ltm air.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (mean Long Term Mean Daily Air temperature at sigma level 995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f1c8_beb2_5225_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f1c8_beb2_5225_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f1c8_beb2_5225/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f1c8_beb2_5225.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f1c8_beb2_5225&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f1c8_beb2_5225"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2643_de32_85eb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2643_de32_85eb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2643_de32_85eb/request", "", "public", "daily ltm air.tropp from the NCEP Reanalysis (Top Dataset, tropopause, air.tropp.day.ltm), 2.5\u00b0, 0001", "daily ltm air.tropp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the tropopause values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (mean Long Term Mean Daily Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2643_de32_85eb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2643_de32_85eb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2643_de32_85eb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2643_de32_85eb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2643_de32_85eb&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2643_de32_85eb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d0f_bf6a_f3e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d0f_bf6a_f3e8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d0f_bf6a_f3e8/request", "", "public", "daily ltm csulf.ntat from the NCEP Reanalysis (Top Dataset, other gauss, csulf.ntat.day.ltm), 0001", "daily ltm csulf.ntat from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsulf (daily Long Term Mean mean Clear Sky Upward Longwave Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d0f_bf6a_f3e8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d0f_bf6a_f3e8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d0f_bf6a_f3e8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d0f_bf6a_f3e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d0f_bf6a_f3e8&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8d0f_bf6a_f3e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e64_5648_a64f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e64_5648_a64f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e64_5648_a64f/request", "", "public", "daily ltm csusf.ntat from the NCEP Reanalysis (Top Dataset, other gauss, csusf.ntat.day.ltm), 0001", "daily ltm csusf.ntat from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsusf (daily Long Term Mean mean Clear Sky Upward Solar Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e64_5648_a64f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e64_5648_a64f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e64_5648_a64f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e64_5648_a64f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e64_5648_a64f&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8e64_5648_a64f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81e8_fcc8_eb97", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81e8_fcc8_eb97.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_81e8_fcc8_eb97/request", "", "public", "daily ltm dswrf.ntat from the NCEP Reanalysis (Top Dataset, other gauss, dswrf.ntat.day.ltm), 0001", "daily ltm dswrf.ntat from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (daily Long Term Mean mean Downward Solar Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_81e8_fcc8_eb97_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_81e8_fcc8_eb97_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_81e8_fcc8_eb97/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_81e8_fcc8_eb97.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_81e8_fcc8_eb97&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_81e8_fcc8_eb97"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89b8_006c_feae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89b8_006c_feae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_89b8_006c_feae/request", "", "public", "daily ltm hgt from the NCEP Reanalysis (Top Dataset, pressure, hgt.day.ltm), 2.5\u00b0, 0001", "daily ltm hgt from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (mean Long Term Mean Daily Geopotential height, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_89b8_006c_feae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_89b8_006c_feae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_89b8_006c_feae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_89b8_006c_feae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_89b8_006c_feae&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_89b8_006c_feae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be6a_481d_fda1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be6a_481d_fda1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_be6a_481d_fda1/request", "", "public", "daily ltm lftx from the NCEP Reanalysis (Top Dataset, surface, lftx.day.ltm), 2.5\u00b0, 0001", "daily ltm lftx from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlftx (mean Long Term Mean Daily Surface Lifted Index, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_be6a_481d_fda1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_be6a_481d_fda1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_be6a_481d_fda1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_be6a_481d_fda1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_be6a_481d_fda1&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_be6a_481d_fda1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e71_1753_b6cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e71_1753_b6cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2e71_1753_b6cb/request", "", "public", "daily ltm lftx4 from the NCEP Reanalysis (Top Dataset, surface, lftx4.day.ltm), 2.5\u00b0, 0001", "daily ltm lftx4 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlftx4 (mean Long Term Mean Daily Best (4-layer) Lifted Index, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2e71_1753_b6cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2e71_1753_b6cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2e71_1753_b6cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2e71_1753_b6cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2e71_1753_b6cb&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2e71_1753_b6cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d420_4980_ac92", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d420_4980_ac92.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d420_4980_ac92/request", "", "public", "daily ltm omega from the NCEP Reanalysis (Top Dataset, pressure, omega.day.ltm), 2.5\u00b0, 0001", "daily ltm omega from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (mean Long Term Mean Daily Omega, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d420_4980_ac92_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d420_4980_ac92_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d420_4980_ac92/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d420_4980_ac92.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d420_4980_ac92&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d420_4980_ac92"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ee5_eff3_39f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ee5_eff3_39f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9ee5_eff3_39f5/request", "", "public", "daily ltm omega.sig995 from the NCEP Reanalysis (Top Dataset, surface, omega.sig995.day.ltm), 2.5\u00b0, 0001", "daily ltm omega.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Daily Long Term Mean omega at sigma level 0.995, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9ee5_eff3_39f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9ee5_eff3_39f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9ee5_eff3_39f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9ee5_eff3_39f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9ee5_eff3_39f5&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9ee5_eff3_39f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_04c3_031a_20b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_04c3_031a_20b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_04c3_031a_20b3/request", "", "public", "daily ltm pottmp.sig995 from the NCEP Reanalysis (Top Dataset, surface, pottmp.sig995.day.ltm), 2.5\u00b0, 0001", "daily ltm pottmp.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (mean Long Term Mean Daily potential temperature at sigma level 995, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_04c3_031a_20b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_04c3_031a_20b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_04c3_031a_20b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_04c3_031a_20b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_04c3_031a_20b3&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_04c3_031a_20b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b63_e3f0_dca1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b63_e3f0_dca1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b63_e3f0_dca1/request", "", "public", "daily ltm pr_wtr from the NCEP Reanalysis (Top Dataset, surface, pr wtr.day.ltm), 2.5\u00b0, 0001", "daily ltm pr_wtr from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (mean Long Term Mean Daily Precipitable Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b63_e3f0_dca1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b63_e3f0_dca1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b63_e3f0_dca1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b63_e3f0_dca1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b63_e3f0_dca1&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7b63_e3f0_dca1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cef8_440f_28da", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cef8_440f_28da.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cef8_440f_28da/request", "", "public", "daily ltm pr_wtr from the NCEP Reanalysis (Top Dataset, surface, pr wtr.eatm.day.ltm), 2.5\u00b0, 0001", "daily ltm pr_wtr from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (mean Long Term Mean Daily Precipitable Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cef8_440f_28da_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cef8_440f_28da_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cef8_440f_28da/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cef8_440f_28da.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cef8_440f_28da&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_cef8_440f_28da"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a42_d964_5d94", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a42_d964_5d94.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a42_d964_5d94/request", "", "public", "daily ltm pres from the NCEP Reanalysis (Top Dataset, surface, pres.day.ltm), 2.5\u00b0, 0001", "daily ltm pres from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (mean Long Term Mean Daily Pressure at surface, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a42_d964_5d94_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a42_d964_5d94_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a42_d964_5d94/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a42_d964_5d94.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a42_d964_5d94&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5a42_d964_5d94"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22d1_dd43_5e1a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22d1_dd43_5e1a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_22d1_dd43_5e1a/request", "", "public", "daily ltm pres.hcb from the NCEP Reanalysis (Top Dataset, other gauss, pres.hcb.day.ltm), 0001", "daily ltm pres.hcb from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (daily Long Term Mean mean High Cloud Bottom Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_22d1_dd43_5e1a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_22d1_dd43_5e1a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_22d1_dd43_5e1a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_22d1_dd43_5e1a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_22d1_dd43_5e1a&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_22d1_dd43_5e1a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d874_fae4_3fc1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d874_fae4_3fc1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d874_fae4_3fc1/request", "", "public", "daily ltm pres.hct from the NCEP Reanalysis (Top Dataset, other gauss, pres.hct.day.ltm), 0001", "daily ltm pres.hct from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (daily Long Term Mean mean Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d874_fae4_3fc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d874_fae4_3fc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d874_fae4_3fc1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d874_fae4_3fc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d874_fae4_3fc1&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d874_fae4_3fc1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_081d_7023_3f6e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_081d_7023_3f6e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_081d_7023_3f6e/request", "", "public", "daily ltm pres.lcb from the NCEP Reanalysis (Top Dataset, other gauss, pres.lcb.day.ltm), 0001", "daily ltm pres.lcb from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (daily Long Term Mean mean Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_081d_7023_3f6e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_081d_7023_3f6e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_081d_7023_3f6e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_081d_7023_3f6e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_081d_7023_3f6e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_081d_7023_3f6e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6728_ea95_870e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6728_ea95_870e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6728_ea95_870e/request", "", "public", "daily ltm pres.lct from the NCEP Reanalysis (Top Dataset, other gauss, pres.lct.day.ltm), 0001", "daily ltm pres.lct from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (daily Long Term Mean mean Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6728_ea95_870e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6728_ea95_870e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6728_ea95_870e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6728_ea95_870e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6728_ea95_870e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6728_ea95_870e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97bb_cb63_285d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97bb_cb63_285d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_97bb_cb63_285d/request", "", "public", "daily ltm pres.mcb from the NCEP Reanalysis (Top Dataset, other gauss, pres.mcb.day.ltm), 0001", "daily ltm pres.mcb from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (daily Long Term Mean mean Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_97bb_cb63_285d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_97bb_cb63_285d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_97bb_cb63_285d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_97bb_cb63_285d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_97bb_cb63_285d&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_97bb_cb63_285d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cde1_7b07_0cbe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cde1_7b07_0cbe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cde1_7b07_0cbe/request", "", "public", "daily ltm pres.mct from the NCEP Reanalysis (Top Dataset, other gauss, pres.mct.day.ltm), 0001", "daily ltm pres.mct from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (daily Long Term Mean mean Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cde1_7b07_0cbe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cde1_7b07_0cbe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cde1_7b07_0cbe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cde1_7b07_0cbe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cde1_7b07_0cbe&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_cde1_7b07_0cbe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3609_1262_868b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3609_1262_868b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3609_1262_868b/request", "", "public", "daily ltm pres.tropp from the NCEP Reanalysis (Top Dataset, tropopause, pres.tropp.day.ltm), 2.5\u00b0, 0001", "daily ltm pres.tropp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the tropopause values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (mean Long Term Mean Daily Pressure at Tropopause, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3609_1262_868b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3609_1262_868b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3609_1262_868b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3609_1262_868b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3609_1262_868b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_3609_1262_868b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0241_c230_ccf7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0241_c230_ccf7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0241_c230_ccf7/request", "", "public", "daily ltm rhum from the NCEP Reanalysis (Top Dataset, pressure, rhum.day.ltm), 2.5\u00b0, 0001", "daily ltm rhum from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (mean Long Term Mean Daily relative humidity, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0241_c230_ccf7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0241_c230_ccf7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0241_c230_ccf7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0241_c230_ccf7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0241_c230_ccf7&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0241_c230_ccf7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c90_8ec2_116b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c90_8ec2_116b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6c90_8ec2_116b/request", "", "public", "daily ltm rhum.sig995 from the NCEP Reanalysis (Top Dataset, surface, rhum.day.ltm), 2.5\u00b0, 0001", "daily ltm rhum.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (mean Long Term Mean Daily relative humidity at sigma level 995, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6c90_8ec2_116b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6c90_8ec2_116b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6c90_8ec2_116b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6c90_8ec2_116b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6c90_8ec2_116b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6c90_8ec2_116b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d431_b07b_385e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d431_b07b_385e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d431_b07b_385e/request", "", "public", "daily ltm rhum.sig995 from the NCEP Reanalysis (Top Dataset, surface, rhum.sig995.day.ltm), 2.5\u00b0, 0001", "daily ltm rhum.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (mean Long Term Mean Daily relative humidity at sigma level 995, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d431_b07b_385e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d431_b07b_385e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d431_b07b_385e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d431_b07b_385e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d431_b07b_385e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d431_b07b_385e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4b0_f612_fa40", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4b0_f612_fa40.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e4b0_f612_fa40/request", "", "public", "daily ltm shum from the NCEP Reanalysis (Top Dataset, pressure, shum.day.ltm), 2.5\u00b0, 0001", "daily ltm shum from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (mean Long Term Mean Daily specific humidity, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e4b0_f612_fa40_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e4b0_f612_fa40_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e4b0_f612_fa40/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e4b0_f612_fa40.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e4b0_f612_fa40&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e4b0_f612_fa40"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9182_a283_1686", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9182_a283_1686.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9182_a283_1686/request", "", "public", "daily ltm slp from the NCEP Reanalysis (Top Dataset, surface, slp.day.ltm), 2.5\u00b0, 0001", "daily ltm slp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (mean Long Term Mean Daily Sea Level Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9182_a283_1686_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9182_a283_1686_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9182_a283_1686/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9182_a283_1686.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9182_a283_1686&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9182_a283_1686"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37b6_825e_7e3b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37b6_825e_7e3b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_37b6_825e_7e3b/request", "", "public", "daily ltm tcdc.daily from the NCEP Reanalysis (Top Dataset, other gauss, tcdc.eatm.day.ltm), 0001", "daily ltm tcdc.daily from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npresssure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (daily Long Term Mean mean Total cloud cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_37b6_825e_7e3b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_37b6_825e_7e3b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_37b6_825e_7e3b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_37b6_825e_7e3b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_37b6_825e_7e3b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_37b6_825e_7e3b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_439a_02db_b1b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_439a_02db_b1b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_439a_02db_b1b6/request", "", "public", "daily ltm ulwrf.ntat from the NCEP Reanalysis (Top Dataset, other gauss, ulwrf.ntat.day.ltm), 0001", "daily ltm ulwrf.ntat from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (daily Long Term Mean mean Upward Longwave Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_439a_02db_b1b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_439a_02db_b1b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_439a_02db_b1b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_439a_02db_b1b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_439a_02db_b1b6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_439a_02db_b1b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b12_3e8d_9c58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b12_3e8d_9c58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b12_3e8d_9c58/request", "", "public", "daily ltm uswrf.ntat from the NCEP Reanalysis (Top Dataset, other gauss, uswrf.ntat.day.ltm), 0001", "daily ltm uswrf.ntat from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (daily Long Term Mean mean Upward Solar Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b12_3e8d_9c58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b12_3e8d_9c58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b12_3e8d_9c58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b12_3e8d_9c58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b12_3e8d_9c58&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6b12_3e8d_9c58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_387c_6a2c_b86a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_387c_6a2c_b86a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_387c_6a2c_b86a/request", "", "public", "daily ltm uwnd from the NCEP Reanalysis (Top Dataset, pressure, uwnd.day.ltm), 2.5\u00b0, 0001", "daily ltm uwnd from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (mean Long Term Mean Daily U-wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_387c_6a2c_b86a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_387c_6a2c_b86a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_387c_6a2c_b86a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_387c_6a2c_b86a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_387c_6a2c_b86a&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_387c_6a2c_b86a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d293_50b1_1bb6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d293_50b1_1bb6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d293_50b1_1bb6/request", "", "public", "daily ltm uwnd.sig995 from the NCEP Reanalysis (Top Dataset, surface, uwnd.day.ltm), 2.5\u00b0, 0001", "daily ltm uwnd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (mean Long Term Mean Daily u-wind at sigma level 995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d293_50b1_1bb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d293_50b1_1bb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d293_50b1_1bb6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d293_50b1_1bb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d293_50b1_1bb6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d293_50b1_1bb6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5401_8770_2222", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5401_8770_2222.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5401_8770_2222/request", "", "public", "daily ltm uwnd.sig995 from the NCEP Reanalysis (Top Dataset, surface, uwnd.sig995.day.ltm), 2.5\u00b0, 0001", "daily ltm uwnd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (mean Long Term Mean Daily u-wind at sigma level 995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5401_8770_2222_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5401_8770_2222_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5401_8770_2222/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5401_8770_2222.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5401_8770_2222&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5401_8770_2222"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88ac_cf92_0b08", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88ac_cf92_0b08.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_88ac_cf92_0b08/request", "", "public", "daily ltm vwnd from the NCEP Reanalysis (Top Dataset, pressure, vwnd.day.ltm), 2.5\u00b0, 0001", "daily ltm vwnd from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (mean Long Term Mean Daily V wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_88ac_cf92_0b08_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_88ac_cf92_0b08_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_88ac_cf92_0b08/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_88ac_cf92_0b08.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_88ac_cf92_0b08&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_88ac_cf92_0b08"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc2a_5c2e_053d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc2a_5c2e_053d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc2a_5c2e_053d/request", "", "public", "daily ltm vwnd.sig995 from the NCEP Reanalysis (Top Dataset, surface, vwnd.day.ltm), 2.5\u00b0, 0001", "daily ltm vwnd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (mean Long Term Mean Daily v wind at sigma level 995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc2a_5c2e_053d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc2a_5c2e_053d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc2a_5c2e_053d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc2a_5c2e_053d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc2a_5c2e_053d&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_cc2a_5c2e_053d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba47_c8e8_2198", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba47_c8e8_2198.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ba47_c8e8_2198/request", "", "public", "daily ltm vwnd.sig995 from the NCEP Reanalysis (Top Dataset, surface, vwnd.sig995.day.ltm), 2.5\u00b0, 0001", "daily ltm vwnd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (mean Long Term Mean Daily v wind at sigma level 995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ba47_c8e8_2198_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ba47_c8e8_2198_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ba47_c8e8_2198/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ba47_c8e8_2198.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ba47_c8e8_2198&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_ba47_c8e8_2198"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c054_7cf9_b656", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c054_7cf9_b656.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c054_7cf9_b656/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (air.2m.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (daily Long Term Mean mean 3-hourly Air Temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c054_7cf9_b656_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c054_7cf9_b656_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c054_7cf9_b656/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c054_7cf9_b656.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c054_7cf9_b656&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c054_7cf9_b656"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c693_3ec4_345a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c693_3ec4_345a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c693_3ec4_345a/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (air.sfc.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (daily Long Term Mean mean 3-hourly Air Temperature at Surface, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c693_3ec4_345a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c693_3ec4_345a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c693_3ec4_345a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c693_3ec4_345a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c693_3ec4_345a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c693_3ec4_345a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_329b_1a46_92cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_329b_1a46_92cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_329b_1a46_92cf/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (albedo.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nalbedo (daily Long Term Mean mean 3-hourly Albedo at Surface, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_329b_1a46_92cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_329b_1a46_92cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_329b_1a46_92cf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_329b_1a46_92cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_329b_1a46_92cf&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_329b_1a46_92cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0876_34f9_9a49", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0876_34f9_9a49.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0876_34f9_9a49/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (cduvb.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncduvb (daily Long Term Mean mean 3-hourly Clear Sky UV-B Downward Solar Flux, W m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0876_34f9_9a49_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0876_34f9_9a49_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0876_34f9_9a49/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0876_34f9_9a49.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0876_34f9_9a49&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0876_34f9_9a49"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59be_2251_544f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59be_2251_544f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_59be_2251_544f/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (cnwat.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncnwat (daily Long Term Mean mean 3-hourly Plant Canopy Surface Water, kg m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_59be_2251_544f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_59be_2251_544f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_59be_2251_544f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_59be_2251_544f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_59be_2251_544f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_59be_2251_544f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e75c_9053_c8f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e75c_9053_c8f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e75c_9053_c8f0/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (cprat.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (daily Long Term Mean mean 3-hourly Convective Precipitation Rate, kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e75c_9053_c8f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e75c_9053_c8f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e75c_9053_c8f0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e75c_9053_c8f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e75c_9053_c8f0&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e75c_9053_c8f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bcd6_1842_b3af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bcd6_1842_b3af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bcd6_1842_b3af/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (cwork.eatm.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncwork (daily Long Term Mean mean 3-hourly Cloud Work Function, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bcd6_1842_b3af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bcd6_1842_b3af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bcd6_1842_b3af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bcd6_1842_b3af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bcd6_1842_b3af&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_bcd6_1842_b3af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ee4_e2c4_e900", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ee4_e2c4_e900.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ee4_e2c4_e900/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (dlwrf.sfc.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (daily Long Term Mean mean 3-hourly Downward Longwave Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ee4_e2c4_e900_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ee4_e2c4_e900_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ee4_e2c4_e900/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ee4_e2c4_e900.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ee4_e2c4_e900&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4ee4_e2c4_e900"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3288_393b_34a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3288_393b_34a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3288_393b_34a1/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (dswrf.sfc.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (daily Long Term Mean mean 3-hourly Downward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3288_393b_34a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3288_393b_34a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3288_393b_34a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3288_393b_34a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3288_393b_34a1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3288_393b_34a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17fe_020d_bebf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17fe_020d_bebf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_17fe_020d_bebf/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (duvb.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nduvb (daily Long Term Mean mean 3-hourly UV-B Downward Solar Flux, W m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_17fe_020d_bebf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_17fe_020d_bebf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_17fe_020d_bebf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_17fe_020d_bebf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_17fe_020d_bebf&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_17fe_020d_bebf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2e8_44f2_d219", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2e8_44f2_d219.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d2e8_44f2_d219/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (evbs.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nevbs (daily Long Term Mean mean 3-hourly Direct Evaporation From Bare Soil, W m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d2e8_44f2_d219_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d2e8_44f2_d219_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d2e8_44f2_d219/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d2e8_44f2_d219.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d2e8_44f2_d219&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d2e8_44f2_d219"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8ee_1beb_ccd7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8ee_1beb_ccd7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d8ee_1beb_ccd7/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (evcw.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nevcw (daily Long Term Mean mean 3-hourly Canopy Water Evaporation, W m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d8ee_1beb_ccd7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d8ee_1beb_ccd7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d8ee_1beb_ccd7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d8ee_1beb_ccd7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d8ee_1beb_ccd7&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d8ee_1beb_ccd7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f277_0759_92ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f277_0759_92ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f277_0759_92ef/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (gflux.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (daily Long Term Mean mean 3-hourly Ground Heat Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f277_0759_92ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f277_0759_92ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f277_0759_92ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f277_0759_92ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f277_0759_92ef&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f277_0759_92ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e813_4f89_58d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e813_4f89_58d1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e813_4f89_58d1/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (hpbl.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhpbl (daily Long Term Mean mean 3-hourly Height of Pressure Boundary Layer, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e813_4f89_58d1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e813_4f89_58d1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e813_4f89_58d1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e813_4f89_58d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e813_4f89_58d1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e813_4f89_58d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfb9_2416_16e9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfb9_2416_16e9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dfb9_2416_16e9/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (icec.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (daily Long Term Mean mean 3-hourly Ice Concentration at surface, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dfb9_2416_16e9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dfb9_2416_16e9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dfb9_2416_16e9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dfb9_2416_16e9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dfb9_2416_16e9&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_dfb9_2416_16e9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f690_0ae6_c000", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f690_0ae6_c000.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f690_0ae6_c000/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (icet.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicet (daily Long Term Mean mean 3-hourly Ice Thickness at Surface, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f690_0ae6_c000_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f690_0ae6_c000_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f690_0ae6_c000/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f690_0ae6_c000.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f690_0ae6_c000&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f690_0ae6_c000"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2376_cc33_21d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2376_cc33_21d1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2376_cc33_21d1/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (lhtfl.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (daily Long Term Mean mean 3-hourly Latent Heat Net Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2376_cc33_21d1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2376_cc33_21d1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2376_cc33_21d1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2376_cc33_21d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2376_cc33_21d1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2376_cc33_21d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24a0_c94d_8965", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24a0_c94d_8965.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_24a0_c94d_8965/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (pevpr.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (daily Long Term Mean mean 3-hourly Potential Evaporation Rate at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_24a0_c94d_8965_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_24a0_c94d_8965_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_24a0_c94d_8965/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_24a0_c94d_8965.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_24a0_c94d_8965&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_24a0_c94d_8965"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34f8_6fa1_9e4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34f8_6fa1_9e4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_34f8_6fa1_9e4d/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (pr wtr.eatm.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (daily Long Term Mean mean 3-hourly Precipitable Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_34f8_6fa1_9e4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_34f8_6fa1_9e4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_34f8_6fa1_9e4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_34f8_6fa1_9e4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_34f8_6fa1_9e4d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_34f8_6fa1_9e4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9204_8612_9a3e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9204_8612_9a3e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9204_8612_9a3e/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (prate.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (daily Long Term Mean mean 3-hourly Precipitation Rate at surface, kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9204_8612_9a3e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9204_8612_9a3e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9204_8612_9a3e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9204_8612_9a3e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9204_8612_9a3e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9204_8612_9a3e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2a9e_496a_90ad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2a9e_496a_90ad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2a9e_496a_90ad/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (press.sfc.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npress (daily Long Term Mean mean 3-hourly Pressure at surface, Pascal)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2a9e_496a_90ad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2a9e_496a_90ad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2a9e_496a_90ad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2a9e_496a_90ad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2a9e_496a_90ad&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2a9e_496a_90ad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6532_6323_03b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6532_6323_03b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6532_6323_03b6/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (runoff.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunoff (daily Long Term Mean mean 3-hourly Water Runoff at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6532_6323_03b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6532_6323_03b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6532_6323_03b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6532_6323_03b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6532_6323_03b6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6532_6323_03b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_baf0_6d25_f689", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_baf0_6d25_f689.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_baf0_6d25_f689/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (sbsno.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsbsno (daily Long Term Mean mean 3-hourly Sublimation (Evaporation From Snow), W m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_baf0_6d25_f689_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_baf0_6d25_f689_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_baf0_6d25_f689/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_baf0_6d25_f689.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_baf0_6d25_f689&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_baf0_6d25_f689"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ed8_6f51_6444", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ed8_6f51_6444.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6ed8_6f51_6444/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (sfexc.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsfexc (daily Long Term Mean mean 3-hourly Exchange Coefficient, (kg m-3) (m s-1))\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6ed8_6f51_6444_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6ed8_6f51_6444_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ed8_6f51_6444/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ed8_6f51_6444.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ed8_6f51_6444&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6ed8_6f51_6444"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9406_0b4a_c813", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9406_0b4a_c813.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9406_0b4a_c813/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (shtfl.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (daily Long Term Mean mean 3-hourly Sensible Heat Net Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9406_0b4a_c813_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9406_0b4a_c813_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9406_0b4a_c813/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9406_0b4a_c813.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9406_0b4a_c813&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9406_0b4a_c813"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fdfe_4958_b0a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fdfe_4958_b0a8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fdfe_4958_b0a8/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (shum.2m.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (daily Long Term Mean mean 3-hourly Specific Humidity at 2 m, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fdfe_4958_b0a8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fdfe_4958_b0a8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fdfe_4958_b0a8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fdfe_4958_b0a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fdfe_4958_b0a8&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_fdfe_4958_b0a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79dc_9666_b25d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79dc_9666_b25d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_79dc_9666_b25d/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (snod.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnod (daily Long Term Mean mean 3-hourly Snow Depth at Surface, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_79dc_9666_b25d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_79dc_9666_b25d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_79dc_9666_b25d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_79dc_9666_b25d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_79dc_9666_b25d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_79dc_9666_b25d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f038_a70c_9888", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f038_a70c_9888.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f038_a70c_9888/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (snowc.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowc (daily Long Term Mean mean 3-hourly Snow Cover at Surface, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f038_a70c_9888_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f038_a70c_9888_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f038_a70c_9888/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f038_a70c_9888.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f038_a70c_9888&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f038_a70c_9888"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_25b3_79ad_2288", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_25b3_79ad_2288.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_25b3_79ad_2288/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (soill.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoill (daily Long Term Mean mean 3-hourly Liquid Volumetric Soil Moisture (non-frozen) Fraction, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_25b3_79ad_2288_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_25b3_79ad_2288_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_25b3_79ad_2288/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_25b3_79ad_2288.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_25b3_79ad_2288&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_25b3_79ad_2288"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca39_a124_71f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca39_a124_71f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca39_a124_71f6/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (soilm.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (daily Long Term Mean mean 3-hourly Soil Moisture Content at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca39_a124_71f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca39_a124_71f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca39_a124_71f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca39_a124_71f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca39_a124_71f6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_ca39_a124_71f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b45c_61ca_cf4a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b45c_61ca_cf4a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b45c_61ca_cf4a/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (soilw.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoilw (daily Long Term Mean mean 3-hourly Soil Moisture Content, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b45c_61ca_cf4a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b45c_61ca_cf4a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b45c_61ca_cf4a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b45c_61ca_cf4a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b45c_61ca_cf4a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b45c_61ca_cf4a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be71_04a0_71b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be71_04a0_71b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_be71_04a0_71b3/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (ssrunoff.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssrunoff (daily Long Term Mean mean 3-hourly Storm Surface Runoff at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_be71_04a0_71b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_be71_04a0_71b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_be71_04a0_71b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_be71_04a0_71b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_be71_04a0_71b3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_be71_04a0_71b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_388f_3050_8b1b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_388f_3050_8b1b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_388f_3050_8b1b/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (tcdc.bndrylyr.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (daily Long Term Mean mean 3-hourly Boundary Layer Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_388f_3050_8b1b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_388f_3050_8b1b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_388f_3050_8b1b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_388f_3050_8b1b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_388f_3050_8b1b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_388f_3050_8b1b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7971_e275_8a67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7971_e275_8a67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7971_e275_8a67/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (tcdc.convcld.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (daily Long Term Mean mean 3-hourly Convective Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7971_e275_8a67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7971_e275_8a67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7971_e275_8a67/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7971_e275_8a67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7971_e275_8a67&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7971_e275_8a67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd2b_6458_401d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd2b_6458_401d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fd2b_6458_401d/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (tcdc.eatm.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (daily Long Term Mean mean 3-hourly Total Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fd2b_6458_401d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fd2b_6458_401d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fd2b_6458_401d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fd2b_6458_401d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fd2b_6458_401d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_fd2b_6458_401d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_821e_308a_2b8e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_821e_308a_2b8e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_821e_308a_2b8e/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (tcdc.lowcld.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (daily Long Term Mean mean 3-hourly Low Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_821e_308a_2b8e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_821e_308a_2b8e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_821e_308a_2b8e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_821e_308a_2b8e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_821e_308a_2b8e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_821e_308a_2b8e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_32aa_2eb9_b4ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_32aa_2eb9_b4ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_32aa_2eb9_b4ea/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (tcdc.midcld.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (daily Long Term Mean mean 3-hourly Middle Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_32aa_2eb9_b4ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_32aa_2eb9_b4ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_32aa_2eb9_b4ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_32aa_2eb9_b4ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_32aa_2eb9_b4ea&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_32aa_2eb9_b4ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce52_32f2_e649", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce52_32f2_e649.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ce52_32f2_e649/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (tcdc.topcld.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (daily Long Term Mean mean 3-hourly Top Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ce52_32f2_e649_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ce52_32f2_e649_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ce52_32f2_e649/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ce52_32f2_e649.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ce52_32f2_e649&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_ce52_32f2_e649"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d0d_b047_d0ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d0d_b047_d0ba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d0d_b047_d0ba/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (trans.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntrans (daily Long Term Mean mean 3-hourly Transpiration at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d0d_b047_d0ba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d0d_b047_d0ba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d0d_b047_d0ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d0d_b047_d0ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d0d_b047_d0ba&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8d0d_b047_d0ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5909_aae7_a5f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5909_aae7_a5f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5909_aae7_a5f0/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (tsoil.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (daily Long Term Mean mean 3-hourly Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5909_aae7_a5f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5909_aae7_a5f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5909_aae7_a5f0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5909_aae7_a5f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5909_aae7_a5f0&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5909_aae7_a5f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_adf5_982d_4b70", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_adf5_982d_4b70.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_adf5_982d_4b70/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (uflx.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (daily Long Term Mean mean 3-hourly Momentum Flux, u-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_adf5_982d_4b70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_adf5_982d_4b70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_adf5_982d_4b70/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_adf5_982d_4b70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_adf5_982d_4b70&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_adf5_982d_4b70"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c146_99f6_cedc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c146_99f6_cedc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c146_99f6_cedc/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (ugwd.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (daily Long Term Mean mean 3-hourly Zonal Gravity Wave Stress at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c146_99f6_cedc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c146_99f6_cedc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c146_99f6_cedc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c146_99f6_cedc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c146_99f6_cedc&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c146_99f6_cedc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_31bb_31e7_4057", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_31bb_31e7_4057.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_31bb_31e7_4057/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (ulwrf.ntat.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (daily Long Term Mean mean 3-hourly Upward Longwave Radiation Flux at nominal top of atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_31bb_31e7_4057_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_31bb_31e7_4057_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_31bb_31e7_4057/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_31bb_31e7_4057.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_31bb_31e7_4057&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_31bb_31e7_4057"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8070_8723_dba9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8070_8723_dba9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8070_8723_dba9/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (ulwrf.sfc.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (daily Long Term Mean mean 3-hourly Upward Longwave Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8070_8723_dba9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8070_8723_dba9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8070_8723_dba9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8070_8723_dba9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8070_8723_dba9&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8070_8723_dba9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbbb_60a4_59fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbbb_60a4_59fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dbbb_60a4_59fa/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (uswrf.ntat.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (daily Long Term Mean mean 3-hourly Upward Solar Radiation Flux at nominal top of atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dbbb_60a4_59fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dbbb_60a4_59fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dbbb_60a4_59fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dbbb_60a4_59fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dbbb_60a4_59fa&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_dbbb_60a4_59fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ed9_a6ac_b58e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ed9_a6ac_b58e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6ed9_a6ac_b58e/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (uswrf.sfc.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (daily Long Term Mean mean 3-hourly Upward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6ed9_a6ac_b58e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6ed9_a6ac_b58e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ed9_a6ac_b58e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ed9_a6ac_b58e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ed9_a6ac_b58e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6ed9_a6ac_b58e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa90_e7a8_eff6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa90_e7a8_eff6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fa90_e7a8_eff6/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (uwnd.10m.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (daily Long Term Mean mean 3-hourly U-wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fa90_e7a8_eff6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fa90_e7a8_eff6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fa90_e7a8_eff6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fa90_e7a8_eff6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fa90_e7a8_eff6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_fa90_e7a8_eff6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1a8_6cc2_ac48", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1a8_6cc2_ac48.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a1a8_6cc2_ac48/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (vflx.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (daily Long Term Mean mean 3-hourly Momentum Flux, v-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a1a8_6cc2_ac48_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a1a8_6cc2_ac48_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a1a8_6cc2_ac48/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a1a8_6cc2_ac48.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a1a8_6cc2_ac48&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a1a8_6cc2_ac48"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f77_b068_d3b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f77_b068_d3b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f77_b068_d3b6/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (vgwd.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (daily Long Term Mean mean 3-hourly Meridional Gravity Wave Stress at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f77_b068_d3b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f77_b068_d3b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f77_b068_d3b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f77_b068_d3b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f77_b068_d3b6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2f77_b068_d3b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abe8_ebf9_11e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abe8_ebf9_11e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_abe8_ebf9_11e2/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (vwnd.10m.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (daily Long Term Mean mean 3-hourly V wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_abe8_ebf9_11e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_abe8_ebf9_11e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_abe8_ebf9_11e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_abe8_ebf9_11e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_abe8_ebf9_11e2&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_abe8_ebf9_11e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_289e_ebd6_ee95", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_289e_ebd6_ee95.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_289e_ebd6_ee95/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (weasd.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (daily Long Term Mean mean 3-hourly Water Equiv. of Accum. Snow Depth at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_289e_ebd6_ee95_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_289e_ebd6_ee95_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_289e_ebd6_ee95/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_289e_ebd6_ee95.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_289e_ebd6_ee95&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_289e_ebd6_ee95"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_28d8_bd66_24b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_28d8_bd66_24b1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_28d8_bd66_24b1/request", "", "public", "Daily MUR SST, Final product (MUR-JPL-L4-GLOB-v4.1)", "Daily Multi-scale Ultra-high Resolution (MUR) Sea Surface Temperature (SST), Final product. A merged, multi-sensor L4 Foundation SST analysis product from Jet Propulsion Laboratory (JPL). (MUR-JPL-L4-GLOB-v4.1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nmask (sea/land field composite mask)\nsea_ice_fraction (sea ice area fraction, fraction (between 0 and 1))\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_28d8_bd66_24b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_28d8_bd66_24b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_28d8_bd66_24b1/index.json", "https://podaac.jpl.nasa.gov/dataset/MUR-JPL-L4-GLOB-v04.1", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_28d8_bd66_24b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_28d8_bd66_24b1&showErrors=false&email=", "Jet Propulsion Laboratory", "nasa_jpl_28d8_bd66_24b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_461e_63ff_b0c7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_461e_63ff_b0c7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_461e_63ff_b0c7/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel sprd, cin.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Daily Long Term Mean CIN Spread, J/kg)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_461e_63ff_b0c7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_461e_63ff_b0c7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_461e_63ff_b0c7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_461e_63ff_b0c7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_461e_63ff_b0c7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_461e_63ff_b0c7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc29_da3f_9501", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc29_da3f_9501.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc29_da3f_9501/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, cape.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Daily Long Term Mean CAPE, J/kg)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc29_da3f_9501_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc29_da3f_9501_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc29_da3f_9501/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc29_da3f_9501.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc29_da3f_9501&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fc29_da3f_9501"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbe9_253e_7e4a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbe9_253e_7e4a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fbe9_253e_7e4a/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, cin.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Daily Long Term Mean CAPE, J/kg)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fbe9_253e_7e4a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fbe9_253e_7e4a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fbe9_253e_7e4a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fbe9_253e_7e4a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fbe9_253e_7e4a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fbe9_253e_7e4a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c982_20cf_a247", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c982_20cf_a247.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c982_20cf_a247/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, pres.sfc.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Daily Long Term Mean Pressure at Surface, Pa)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c982_20cf_a247_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c982_20cf_a247_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c982_20cf_a247/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c982_20cf_a247.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c982_20cf_a247&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c982_20cf_a247"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_750f_43eb_72a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_750f_43eb_72a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_750f_43eb_72a0/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, prmsl.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Daily Long Term Pressure at Mean Sea Level, Pa)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_750f_43eb_72a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_750f_43eb_72a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_750f_43eb_72a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_750f_43eb_72a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_750f_43eb_72a0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_750f_43eb_72a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c7b_7e76_a051", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c7b_7e76_a051.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c7b_7e76_a051/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, air.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c7b_7e76_a051_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c7b_7e76_a051_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c7b_7e76_a051/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c7b_7e76_a051.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c7b_7e76_a051&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5c7b_7e76_a051"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cbf0_9924_371a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cbf0_9924_371a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cbf0_9924_371a/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, hgt.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Daily Long Term Mean Geopotential Heights Spread on Pressure Levels, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cbf0_9924_371a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cbf0_9924_371a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cbf0_9924_371a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cbf0_9924_371a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cbf0_9924_371a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_cbf0_9924_371a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e3e_8c1b_9a5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e3e_8c1b_9a5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1e3e_8c1b_9a5f/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, rhum.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Daily Long Term Mean Relative Humidity Spread on Pressure Levels, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1e3e_8c1b_9a5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1e3e_8c1b_9a5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1e3e_8c1b_9a5f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1e3e_8c1b_9a5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1e3e_8c1b_9a5f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1e3e_8c1b_9a5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e35_4968_1f57", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e35_4968_1f57.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6e35_4968_1f57/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, shum.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Daily Long Term Mean Specific Humidity Spread on Pressure Levels, kg/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6e35_4968_1f57_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6e35_4968_1f57_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6e35_4968_1f57/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6e35_4968_1f57.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6e35_4968_1f57&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6e35_4968_1f57"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f539_ba93_b1bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f539_ba93_b1bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f539_ba93_b1bb/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, uwnd.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Daily Long Term Mean U-wind Spread on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f539_ba93_b1bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f539_ba93_b1bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f539_ba93_b1bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f539_ba93_b1bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f539_ba93_b1bb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f539_ba93_b1bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fefc_69be_d3d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fefc_69be_d3d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fefc_69be_d3d3/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, vwnd.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Daily Long Term Mean V-wind Spread on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fefc_69be_d3d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fefc_69be_d3d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fefc_69be_d3d3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fefc_69be_d3d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fefc_69be_d3d3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fefc_69be_d3d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85c5_d8ad_4756", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85c5_d8ad_4756.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_85c5_d8ad_4756/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, air.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_85c5_d8ad_4756_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_85c5_d8ad_4756_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85c5_d8ad_4756/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85c5_d8ad_4756.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85c5_d8ad_4756&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_85c5_d8ad_4756"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89ee_5ab0_40c8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89ee_5ab0_40c8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_89ee_5ab0_40c8/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, hgt.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Daily Long Term Mean Geopotential Heights on Pressure Levels, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_89ee_5ab0_40c8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_89ee_5ab0_40c8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_89ee_5ab0_40c8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_89ee_5ab0_40c8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_89ee_5ab0_40c8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_89ee_5ab0_40c8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5ea_cac0_8a66", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5ea_cac0_8a66.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f5ea_cac0_8a66/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, omega.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Daily Long Term Mean Omega on Pressure Levels, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f5ea_cac0_8a66_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f5ea_cac0_8a66_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f5ea_cac0_8a66/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f5ea_cac0_8a66.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f5ea_cac0_8a66&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f5ea_cac0_8a66"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f7a_34d1_b435", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f7a_34d1_b435.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f7a_34d1_b435/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, rhum.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Daily Long Term Mean Relative Humidity on Pressure Levels, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f7a_34d1_b435_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f7a_34d1_b435_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f7a_34d1_b435/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f7a_34d1_b435.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f7a_34d1_b435&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7f7a_34d1_b435"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2190_9f00_378e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2190_9f00_378e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2190_9f00_378e/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, shum.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Daily Long Term Mean Specific Humidity on Pressure Levels, kg/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2190_9f00_378e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2190_9f00_378e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2190_9f00_378e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2190_9f00_378e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2190_9f00_378e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2190_9f00_378e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbfb_b3fa_1edf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbfb_b3fa_1edf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dbfb_b3fa_1edf/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, uwnd.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Daily Long Term Mean U-wind on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dbfb_b3fa_1edf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dbfb_b3fa_1edf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dbfb_b3fa_1edf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dbfb_b3fa_1edf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dbfb_b3fa_1edf&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_dbfb_b3fa_1edf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1a4_147e_2eab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1a4_147e_2eab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f1a4_147e_2eab/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, vwnd.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Daily Long Term Mean V-wind on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f1a4_147e_2eab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f1a4_147e_2eab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f1a4_147e_2eab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f1a4_147e_2eab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f1a4_147e_2eab&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f1a4_147e_2eab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6109_fa1d_bb2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6109_fa1d_bb2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6109_fa1d_bb2f/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6109_fa1d_bb2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6109_fa1d_bb2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6109_fa1d_bb2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6109_fa1d_bb2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6109_fa1d_bb2f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6109_fa1d_bb2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c50a_57bb_d817", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c50a_57bb_d817.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c50a_57bb_d817/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c50a_57bb_d817_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c50a_57bb_d817_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c50a_57bb_d817/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c50a_57bb_d817.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c50a_57bb_d817&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c50a_57bb_d817"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_623b_2594_f923", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_623b_2594_f923.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_623b_2594_f923/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at Surface, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_623b_2594_f923_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_623b_2594_f923_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_623b_2594_f923/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_623b_2594_f923.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_623b_2594_f923&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_623b_2594_f923"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d436_46e1_897c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d436_46e1_897c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d436_46e1_897c/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at surface, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d436_46e1_897c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d436_46e1_897c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d436_46e1_897c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d436_46e1_897c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d436_46e1_897c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d436_46e1_897c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ba5_1b46_cbfe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ba5_1b46_cbfe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ba5_1b46_cbfe/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, albedo.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nalbedo (Daily Long Term Mean Albedo Spread at surface, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ba5_1b46_cbfe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ba5_1b46_cbfe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ba5_1b46_cbfe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ba5_1b46_cbfe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ba5_1b46_cbfe&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8ba5_1b46_cbfe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e063_3eda_a2cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e063_3eda_a2cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e063_3eda_a2cb/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, albedo.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nalbedo (Daily Long Term Mean Albedo at Surface, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e063_3eda_a2cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e063_3eda_a2cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e063_3eda_a2cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e063_3eda_a2cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e063_3eda_a2cb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e063_3eda_a2cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5696_ab62_ed09", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5696_ab62_ed09.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5696_ab62_ed09/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, cprat.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (Daily Long Term Mean Convective Precipitation Rate Spread, kg/m^2/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5696_ab62_ed09_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5696_ab62_ed09_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5696_ab62_ed09/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5696_ab62_ed09.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5696_ab62_ed09&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5696_ab62_ed09"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63c6_e211_a5ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63c6_e211_a5ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_63c6_e211_a5ec/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, cprat.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (Daily Long Term Mean Convective Precipitation Rate, kg/m^2/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_63c6_e211_a5ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_63c6_e211_a5ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_63c6_e211_a5ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_63c6_e211_a5ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_63c6_e211_a5ec&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_63c6_e211_a5ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4db2_4225_f3d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4db2_4225_f3d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4db2_4225_f3d7/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, cwork.eatm.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncwork (Daily Long Term Mean Cloud Work Function Spread, J/kg)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4db2_4225_f3d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4db2_4225_f3d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4db2_4225_f3d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4db2_4225_f3d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4db2_4225_f3d7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4db2_4225_f3d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f904_86ae_f183", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f904_86ae_f183.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f904_86ae_f183/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, cwork.eatm.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncwork (Daily Long Term Mean Cloud Work Function, J/kg)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f904_86ae_f183_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f904_86ae_f183_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f904_86ae_f183/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f904_86ae_f183.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f904_86ae_f183&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f904_86ae_f183"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_49bb_54e0_b244", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_49bb_54e0_b244.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_49bb_54e0_b244/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, dlwrf.sfc.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (Daily Long Term Mean Downward Longwave Radiation Flux Spread at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_49bb_54e0_b244_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_49bb_54e0_b244_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_49bb_54e0_b244/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_49bb_54e0_b244.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_49bb_54e0_b244&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_49bb_54e0_b244"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5d2_d188_dd15", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5d2_d188_dd15.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5d2_d188_dd15/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, dlwrf.sfc.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (Daily Long Term Mean Downward Longwave Radiation Flux at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5d2_d188_dd15_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5d2_d188_dd15_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5d2_d188_dd15/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5d2_d188_dd15.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5d2_d188_dd15&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b5d2_d188_dd15"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f3f_fcc2_0f33", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f3f_fcc2_0f33.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f3f_fcc2_0f33/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, dswrf.sfc.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Daily Long Term Mean Downward Solar Radiation Flux at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f3f_fcc2_0f33_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f3f_fcc2_0f33_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f3f_fcc2_0f33/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f3f_fcc2_0f33.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f3f_fcc2_0f33&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7f3f_fcc2_0f33"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e32c_c805_70de", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e32c_c805_70de.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e32c_c805_70de/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, dswrf.sfc.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Daily Long Term Mean Downward Solar Radiation Flux Spread at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e32c_c805_70de_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e32c_c805_70de_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e32c_c805_70de/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e32c_c805_70de.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e32c_c805_70de&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e32c_c805_70de"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e5c_34f7_1aa5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e5c_34f7_1aa5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1e5c_34f7_1aa5/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, gflux.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Daily Long Term Mean Ground Heat Flux Spread at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1e5c_34f7_1aa5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1e5c_34f7_1aa5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1e5c_34f7_1aa5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1e5c_34f7_1aa5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1e5c_34f7_1aa5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1e5c_34f7_1aa5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c95b_c579_3943", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c95b_c579_3943.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c95b_c579_3943/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, gflux.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Daily Long Term Mean Ground Heat Flux at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c95b_c579_3943_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c95b_c579_3943_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c95b_c579_3943/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c95b_c579_3943.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c95b_c579_3943&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c95b_c579_3943"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9019_95b4_5371", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9019_95b4_5371.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9019_95b4_5371/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, hpbl.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhpbl (Daily Long Term Mean Height of Pressure Boundary Layer, m)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9019_95b4_5371_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9019_95b4_5371_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9019_95b4_5371/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9019_95b4_5371.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9019_95b4_5371&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9019_95b4_5371"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb41_86f3_7088", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb41_86f3_7088.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb41_86f3_7088/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, hpbl.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhpbl (Daily Long Term Mean Height Spread of Pressure Boundary Layer, m)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb41_86f3_7088_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb41_86f3_7088_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb41_86f3_7088/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb41_86f3_7088.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb41_86f3_7088&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_cb41_86f3_7088"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d8d_b052_7138", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d8d_b052_7138.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7d8d_b052_7138/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, icec.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Daily Long Term Mean Ice Concentration at surface, frac.)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7d8d_b052_7138_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7d8d_b052_7138_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7d8d_b052_7138/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7d8d_b052_7138.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7d8d_b052_7138&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7d8d_b052_7138"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ced_f189_c460", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ced_f189_c460.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6ced_f189_c460/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, icet.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicet (Daily Long Term Mean Ice Thickness Spread at Surface, m)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6ced_f189_c460_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6ced_f189_c460_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ced_f189_c460/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ced_f189_c460.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ced_f189_c460&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6ced_f189_c460"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea9d_626a_2ba6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea9d_626a_2ba6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ea9d_626a_2ba6/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, icet.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicet (Daily Long Term Mean Ice Thickness at Surface, m)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ea9d_626a_2ba6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ea9d_626a_2ba6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ea9d_626a_2ba6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ea9d_626a_2ba6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ea9d_626a_2ba6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ea9d_626a_2ba6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_76fa_a17b_7856", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_76fa_a17b_7856.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_76fa_a17b_7856/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, lhtfl.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Daily Long Term Mean Latent Heat Net Flux at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_76fa_a17b_7856_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_76fa_a17b_7856_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_76fa_a17b_7856/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_76fa_a17b_7856.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_76fa_a17b_7856&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_76fa_a17b_7856"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cdf0_bc1a_bb36", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cdf0_bc1a_bb36.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cdf0_bc1a_bb36/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, lhtfl.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Daily Long Term Mean Latent Heat Net Flux Spread at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cdf0_bc1a_bb36_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cdf0_bc1a_bb36_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cdf0_bc1a_bb36/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cdf0_bc1a_bb36.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cdf0_bc1a_bb36&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_cdf0_bc1a_bb36"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03bd_a595_0ea6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03bd_a595_0ea6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03bd_a595_0ea6/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, pevpr.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Daily Long Term Mean Potential Evaporation Rate Spread at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03bd_a595_0ea6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03bd_a595_0ea6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03bd_a595_0ea6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03bd_a595_0ea6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03bd_a595_0ea6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_03bd_a595_0ea6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3dfe_e3c4_adcc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3dfe_e3c4_adcc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3dfe_e3c4_adcc/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, pevpr.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Daily Long Term Mean Potential Evaporation Rate at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3dfe_e3c4_adcc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3dfe_e3c4_adcc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3dfe_e3c4_adcc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3dfe_e3c4_adcc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3dfe_e3c4_adcc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3dfe_e3c4_adcc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a02_84cd_8652", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a02_84cd_8652.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a02_84cd_8652/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, pr wtr.eatm.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Daily Long Term Mean Precipitable Water for entire atmosphere, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a02_84cd_8652_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a02_84cd_8652_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a02_84cd_8652/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a02_84cd_8652.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a02_84cd_8652&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3a02_84cd_8652"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f55a_7fc9_d066", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f55a_7fc9_d066.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f55a_7fc9_d066/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, pr wtr.eatm.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Daily Long Term Mean Precipitable Water Spread for entire atmosphere, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f55a_7fc9_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f55a_7fc9_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f55a_7fc9_d066/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f55a_7fc9_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f55a_7fc9_d066&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f55a_7fc9_d066"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d7a_9b62_cbcf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d7a_9b62_cbcf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7d7a_9b62_cbcf/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, prate.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Daily Long Term Mean Precipitation Rate at surface, kg/m^2/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7d7a_9b62_cbcf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7d7a_9b62_cbcf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7d7a_9b62_cbcf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7d7a_9b62_cbcf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7d7a_9b62_cbcf&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7d7a_9b62_cbcf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be5e_e23b_ee7a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be5e_e23b_ee7a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_be5e_e23b_ee7a/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, prate.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Daily Long Term Mean Precipitation Rate Spread at surface, kg/m^2/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_be5e_e23b_ee7a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_be5e_e23b_ee7a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_be5e_e23b_ee7a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_be5e_e23b_ee7a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_be5e_e23b_ee7a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_be5e_e23b_ee7a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_776b_07d8_3bfa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_776b_07d8_3bfa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_776b_07d8_3bfa/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, press.sfc.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npress (Daily Long Term Mean Pressure Spread at surface, Pascal)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_776b_07d8_3bfa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_776b_07d8_3bfa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_776b_07d8_3bfa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_776b_07d8_3bfa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_776b_07d8_3bfa&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_776b_07d8_3bfa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bcdc_6741_5d6b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bcdc_6741_5d6b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bcdc_6741_5d6b/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, press.sfc.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npress (Daily Long Term Mean Pressure at surface, Pascal)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bcdc_6741_5d6b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bcdc_6741_5d6b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bcdc_6741_5d6b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bcdc_6741_5d6b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bcdc_6741_5d6b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bcdc_6741_5d6b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ce7_f7de_ce47", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ce7_f7de_ce47.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ce7_f7de_ce47/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, runoff.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunoff (Daily Long Term Mean Water Runoff at surface, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ce7_f7de_ce47_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ce7_f7de_ce47_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ce7_f7de_ce47/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ce7_f7de_ce47.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ce7_f7de_ce47&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3ce7_f7de_ce47"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5802_a8b2_22dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5802_a8b2_22dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5802_a8b2_22dc/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, runoff.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunoff (Daily Long Term Mean Water Runoff Spread at surface, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5802_a8b2_22dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5802_a8b2_22dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5802_a8b2_22dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5802_a8b2_22dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5802_a8b2_22dc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5802_a8b2_22dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_417b_f9cd_442a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_417b_f9cd_442a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_417b_f9cd_442a/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, shtfl.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Daily Long Term Mean Sensible Heat Net Flux at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_417b_f9cd_442a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_417b_f9cd_442a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_417b_f9cd_442a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_417b_f9cd_442a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_417b_f9cd_442a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_417b_f9cd_442a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c38_d221_d56a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c38_d221_d56a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c38_d221_d56a/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, shtfl.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Daily Long Term Mean Sensible Heat Net Flux Spread at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c38_d221_d56a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c38_d221_d56a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c38_d221_d56a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c38_d221_d56a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c38_d221_d56a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5c38_d221_d56a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1790_3519_7d07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1790_3519_7d07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1790_3519_7d07/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, shum.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Daily Long Term Mean Specific Humidity Spread at 2 m, kg/kg)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1790_3519_7d07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1790_3519_7d07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1790_3519_7d07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1790_3519_7d07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1790_3519_7d07&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1790_3519_7d07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9bd_7c3d_f96a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9bd_7c3d_f96a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e9bd_7c3d_f96a/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, shum.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Daily Long Term Mean Specific Humidity at 2 m, kg/kg)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e9bd_7c3d_f96a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e9bd_7c3d_f96a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e9bd_7c3d_f96a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e9bd_7c3d_f96a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e9bd_7c3d_f96a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e9bd_7c3d_f96a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_763a_8f97_2dda", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_763a_8f97_2dda.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_763a_8f97_2dda/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, snod.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnod (Daily Long Term Mean Snow Depth Spread at Surface, m)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_763a_8f97_2dda_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_763a_8f97_2dda_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_763a_8f97_2dda/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_763a_8f97_2dda.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_763a_8f97_2dda&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_763a_8f97_2dda"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d227_c0bf_c4b2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d227_c0bf_c4b2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d227_c0bf_c4b2/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, snod.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnod (Daily Long Term Mean Snow Depth at Surface, m)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d227_c0bf_c4b2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d227_c0bf_c4b2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d227_c0bf_c4b2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d227_c0bf_c4b2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d227_c0bf_c4b2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d227_c0bf_c4b2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3eff_843f_c9d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3eff_843f_c9d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3eff_843f_c9d0/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, snowc.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowc (Daily Long Term Mean Snow Cover at Surface, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3eff_843f_c9d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3eff_843f_c9d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3eff_843f_c9d0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3eff_843f_c9d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3eff_843f_c9d0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3eff_843f_c9d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_407d_e04d_0c3f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_407d_e04d_0c3f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_407d_e04d_0c3f/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, snowc.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowc (Daily Long Term Mean Snow Cover Spread at Surface, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_407d_e04d_0c3f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_407d_e04d_0c3f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_407d_e04d_0c3f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_407d_e04d_0c3f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_407d_e04d_0c3f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_407d_e04d_0c3f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a3e_f8cc_393f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a3e_f8cc_393f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a3e_f8cc_393f/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, soilm.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to \npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (Daily Long Term Mean Soil Moisture Content at Surface, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a3e_f8cc_393f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a3e_f8cc_393f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a3e_f8cc_393f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a3e_f8cc_393f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a3e_f8cc_393f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6a3e_f8cc_393f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b364_7d79_da8e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b364_7d79_da8e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b364_7d79_da8e/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, soilm.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (Daily Long Term Mean Soil Moisture Content Spread at Surface, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b364_7d79_da8e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b364_7d79_da8e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b364_7d79_da8e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b364_7d79_da8e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b364_7d79_da8e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b364_7d79_da8e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ef8_7542_05c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ef8_7542_05c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ef8_7542_05c6/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ssrunoff.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssrunoff (Daily Long Term Mean Storm Surface Runoff at Surface, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ef8_7542_05c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ef8_7542_05c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ef8_7542_05c6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ef8_7542_05c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ef8_7542_05c6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7ef8_7542_05c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a7c4_7cf1_41a3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a7c4_7cf1_41a3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a7c4_7cf1_41a3/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ssrunoff.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssrunoff (Daily Long Term Mean Storm Surface Runoff Spread at Surface, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a7c4_7cf1_41a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a7c4_7cf1_41a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a7c4_7cf1_41a3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a7c4_7cf1_41a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a7c4_7cf1_41a3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a7c4_7cf1_41a3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e42_bb50_1bb8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e42_bb50_1bb8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e42_bb50_1bb8/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.eatm.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Daily Long Term Mean Total Cloud Cover, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e42_bb50_1bb8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e42_bb50_1bb8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e42_bb50_1bb8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e42_bb50_1bb8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e42_bb50_1bb8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8e42_bb50_1bb8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9943_b875_882f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9943_b875_882f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9943_b875_882f/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.eatm.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Daily Long Term Mean Total Cloud Cover Spread, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9943_b875_882f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9943_b875_882f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9943_b875_882f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9943_b875_882f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9943_b875_882f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9943_b875_882f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b26_23ff_b23a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b26_23ff_b23a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b26_23ff_b23a/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.lowcld.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Daily Long Term Mean Low Cloud Cover Spread, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b26_23ff_b23a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b26_23ff_b23a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b26_23ff_b23a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b26_23ff_b23a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b26_23ff_b23a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6b26_23ff_b23a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e027_c4c6_9056", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e027_c4c6_9056.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e027_c4c6_9056/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.lowcld.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Daily Long Term Mean Low Cloud Cover, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e027_c4c6_9056_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e027_c4c6_9056_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e027_c4c6_9056/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e027_c4c6_9056.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e027_c4c6_9056&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e027_c4c6_9056"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c67_b9be_abb1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c67_b9be_abb1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c67_b9be_abb1/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.midcld.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Daily Long Term Mean Middle Cloud Cover Spread, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c67_b9be_abb1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c67_b9be_abb1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c67_b9be_abb1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c67_b9be_abb1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c67_b9be_abb1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5c67_b9be_abb1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b23b_7b20_a2c8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b23b_7b20_a2c8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b23b_7b20_a2c8/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.midcld.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Daily Long Term Mean Middle Cloud Cover, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b23b_7b20_a2c8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b23b_7b20_a2c8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b23b_7b20_a2c8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b23b_7b20_a2c8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b23b_7b20_a2c8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b23b_7b20_a2c8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cd9_ab9f_a3c7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cd9_ab9f_a3c7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7cd9_ab9f_a3c7/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.topcld.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Daily Long Term Mean Top Cloud Cover, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7cd9_ab9f_a3c7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7cd9_ab9f_a3c7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7cd9_ab9f_a3c7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7cd9_ab9f_a3c7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7cd9_ab9f_a3c7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7cd9_ab9f_a3c7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b12d_c31e_808a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b12d_c31e_808a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b12d_c31e_808a/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.topcld.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Daily Long Term Mean Top Cloud Cover Spread, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b12d_c31e_808a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b12d_c31e_808a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b12d_c31e_808a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b12d_c31e_808a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b12d_c31e_808a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b12d_c31e_808a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70b5_ece6_6000", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70b5_ece6_6000.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_70b5_ece6_6000/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Daily Long Term Mean Maximum Temperature Spread at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_70b5_ece6_6000_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_70b5_ece6_6000_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_70b5_ece6_6000/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_70b5_ece6_6000.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_70b5_ece6_6000&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_70b5_ece6_6000"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c14e_621e_38c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c14e_621e_38c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c14e_621e_38c4/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Daily Long Term Mean Maximum Temperature at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c14e_621e_38c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c14e_621e_38c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c14e_621e_38c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c14e_621e_38c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c14e_621e_38c4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c14e_621e_38c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0565_9195_7b28", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0565_9195_7b28.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0565_9195_7b28/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Daily Long Term Mean Minimum Temperature Spread at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0565_9195_7b28_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0565_9195_7b28_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0565_9195_7b28/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0565_9195_7b28.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0565_9195_7b28&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0565_9195_7b28"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eff7_5033_aa45", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eff7_5033_aa45.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eff7_5033_aa45/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Daily Long Term Mean Minimum Temperature at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eff7_5033_aa45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eff7_5033_aa45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eff7_5033_aa45/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eff7_5033_aa45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eff7_5033_aa45&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_eff7_5033_aa45"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af68_e3c0_8c0d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af68_e3c0_8c0d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_af68_e3c0_8c0d/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, trans.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntrans (Daily Long Term Mean Transpiration Spread at Surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_af68_e3c0_8c0d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_af68_e3c0_8c0d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_af68_e3c0_8c0d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_af68_e3c0_8c0d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_af68_e3c0_8c0d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_af68_e3c0_8c0d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b23e_73e0_9d40", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b23e_73e0_9d40.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b23e_73e0_9d40/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, trans.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntrans (Daily Long Term Mean Transpiration at Surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b23e_73e0_9d40_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b23e_73e0_9d40_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b23e_73e0_9d40/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b23e_73e0_9d40.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b23e_73e0_9d40&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b23e_73e0_9d40"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64df_1a58_8025", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64df_1a58_8025.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_64df_1a58_8025/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uflx.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Daily Long Term Mean Momentum Flux Spread, u-component at surface, N/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_64df_1a58_8025_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_64df_1a58_8025_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_64df_1a58_8025/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_64df_1a58_8025.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_64df_1a58_8025&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_64df_1a58_8025"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a75_827a_39ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a75_827a_39ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9a75_827a_39ef/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uflx.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Daily Long Term Mean Momentum Flux, u-component at surface, N/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9a75_827a_39ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9a75_827a_39ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9a75_827a_39ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9a75_827a_39ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9a75_827a_39ef&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9a75_827a_39ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37c2_562c_6bc0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37c2_562c_6bc0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_37c2_562c_6bc0/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ugwd.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Daily Long Term Mean Zonal Gravity Wave Stress at surface, N/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_37c2_562c_6bc0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_37c2_562c_6bc0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_37c2_562c_6bc0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_37c2_562c_6bc0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_37c2_562c_6bc0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_37c2_562c_6bc0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4819_9ec5_7fa1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4819_9ec5_7fa1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4819_9ec5_7fa1/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ugwd.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Daily Long Term Mean Zonal Gravity Wave Stress Spread at surface, N/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4819_9ec5_7fa1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4819_9ec5_7fa1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4819_9ec5_7fa1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4819_9ec5_7fa1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4819_9ec5_7fa1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4819_9ec5_7fa1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6089_1793_3e7c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6089_1793_3e7c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6089_1793_3e7c/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ulwrf.ntat.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Daily Long Term Mean Upward Longwave Radiation Flux at nominal top of atmosphere, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6089_1793_3e7c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6089_1793_3e7c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6089_1793_3e7c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6089_1793_3e7c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6089_1793_3e7c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6089_1793_3e7c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4b2_69bb_8c7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4b2_69bb_8c7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f4b2_69bb_8c7b/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ulwrf.ntat.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Daily Long Term Mean Upward Longwave Radiation Flux Spread at nominal top of atmosphere, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f4b2_69bb_8c7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f4b2_69bb_8c7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f4b2_69bb_8c7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f4b2_69bb_8c7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f4b2_69bb_8c7b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f4b2_69bb_8c7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21e9_58f4_5080", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21e9_58f4_5080.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_21e9_58f4_5080/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ulwrf.sfc.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Daily Long Term Mean Upward Longwave Radiation Flux at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_21e9_58f4_5080_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_21e9_58f4_5080_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_21e9_58f4_5080/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_21e9_58f4_5080.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_21e9_58f4_5080&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_21e9_58f4_5080"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afaf_0349_e50c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afaf_0349_e50c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_afaf_0349_e50c/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ulwrf.sfc.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Daily Long Term Mean Upward Longwave Radiation Flux Spread at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_afaf_0349_e50c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_afaf_0349_e50c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_afaf_0349_e50c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_afaf_0349_e50c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_afaf_0349_e50c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_afaf_0349_e50c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0e0_54e0_ff34", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0e0_54e0_ff34.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a0e0_54e0_ff34/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uswrf.ntat.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Daily Long Term Mean Upward Solar Radiation Flux Spread at nominal top of atmosphere, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a0e0_54e0_ff34_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a0e0_54e0_ff34_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a0e0_54e0_ff34/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a0e0_54e0_ff34.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a0e0_54e0_ff34&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a0e0_54e0_ff34"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3c0_676e_306d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3c0_676e_306d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f3c0_676e_306d/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uswrf.ntat.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Daily Long Term Mean Upward Solar Radiation Flux at nominal top of atmosphere, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f3c0_676e_306d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f3c0_676e_306d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f3c0_676e_306d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f3c0_676e_306d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f3c0_676e_306d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f3c0_676e_306d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_31e7_b514_a38b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_31e7_b514_a38b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_31e7_b514_a38b/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uswrf.sfc.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Daily Long Term Mean Upward Solar Radiation Flux at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_31e7_b514_a38b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_31e7_b514_a38b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_31e7_b514_a38b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_31e7_b514_a38b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_31e7_b514_a38b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_31e7_b514_a38b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b45_4a33_67f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b45_4a33_67f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b45_4a33_67f0/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uswrf.sfc.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Daily Long Term Mean Upward Solar Radiation Flux Spread at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b45_4a33_67f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b45_4a33_67f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b45_4a33_67f0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b45_4a33_67f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b45_4a33_67f0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5b45_4a33_67f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2743_fd3e_4ed6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2743_fd3e_4ed6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2743_fd3e_4ed6/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uwnd.10m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Daily Long Term Mean U-wind Spread, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2743_fd3e_4ed6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2743_fd3e_4ed6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2743_fd3e_4ed6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2743_fd3e_4ed6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2743_fd3e_4ed6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2743_fd3e_4ed6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5321_e645_f1c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5321_e645_f1c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5321_e645_f1c4/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uwnd.10m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Daily Long Term Mean U-wind, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5321_e645_f1c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5321_e645_f1c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5321_e645_f1c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5321_e645_f1c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5321_e645_f1c4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5321_e645_f1c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2478_4cd1_ec10", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2478_4cd1_ec10.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2478_4cd1_ec10/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, vflx.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Daily Long Term Mean Momentum Flux Spread, v-component at surface, N/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2478_4cd1_ec10_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2478_4cd1_ec10_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2478_4cd1_ec10/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2478_4cd1_ec10.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2478_4cd1_ec10&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2478_4cd1_ec10"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b6b_3418_5a2b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b6b_3418_5a2b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b6b_3418_5a2b/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, vflx.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Daily Long Term Mean Momentum Flux, v-component at surface, N/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b6b_3418_5a2b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b6b_3418_5a2b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b6b_3418_5a2b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b6b_3418_5a2b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b6b_3418_5a2b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5b6b_3418_5a2b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5410_96c5_ed57", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5410_96c5_ed57.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5410_96c5_ed57/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, vgwd.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Daily Long Term Mean Meridional Gravity Wave Stress at surface, N/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5410_96c5_ed57_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5410_96c5_ed57_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5410_96c5_ed57/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5410_96c5_ed57.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5410_96c5_ed57&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5410_96c5_ed57"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c1bc_85be_e1d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c1bc_85be_e1d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c1bc_85be_e1d4/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, vgwd.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Daily Long Term Mean Meridional Gravity Wave Stress Spread at surface, N/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c1bc_85be_e1d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c1bc_85be_e1d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c1bc_85be_e1d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c1bc_85be_e1d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c1bc_85be_e1d4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c1bc_85be_e1d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_04f5_de0f_3301", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_04f5_de0f_3301.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_04f5_de0f_3301/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, vwnd.10m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Daily Long Term Mean V wind Spread, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_04f5_de0f_3301_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_04f5_de0f_3301_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_04f5_de0f_3301/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_04f5_de0f_3301.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_04f5_de0f_3301&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_04f5_de0f_3301"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e69_0333_347e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e69_0333_347e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e69_0333_347e/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, vwnd.10m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Daily Long Term Mean V wind, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e69_0333_347e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e69_0333_347e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e69_0333_347e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e69_0333_347e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e69_0333_347e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8e69_0333_347e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f88_783d_f0bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f88_783d_f0bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f88_783d_f0bd/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, weasd.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (Daily Long Term Mean Water Equiv. of Accum. Snow Depth Spread at surface, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f88_783d_f0bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f88_783d_f0bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f88_783d_f0bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f88_783d_f0bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f88_783d_f0bd&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2f88_783d_f0bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5486_92a1_d72c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5486_92a1_d72c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5486_92a1_d72c/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, weasd.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (Daily Long Term Mean Water Equiv. of Accum. Snow Depth at surface, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5486_92a1_d72c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5486_92a1_d72c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5486_92a1_d72c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5486_92a1_d72c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5486_92a1_d72c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5486_92a1_d72c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2ac_4f54_ae27", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2ac_4f54_ae27.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a2ac_4f54_ae27/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, soill.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoill (Daily Long Term Mean Liquid Volumetric Soil Moisture (non-frozen) Fraction, frac.)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a2ac_4f54_ae27_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a2ac_4f54_ae27_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a2ac_4f54_ae27/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a2ac_4f54_ae27.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a2ac_4f54_ae27&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a2ac_4f54_ae27"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a708_5bd2_2ac5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a708_5bd2_2ac5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a708_5bd2_2ac5/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, soill.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoill (Daily Long Term Mean Liquid Volumetric Soil Moisture (non-frozen) Fraction Spread, 1)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a708_5bd2_2ac5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a708_5bd2_2ac5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a708_5bd2_2ac5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a708_5bd2_2ac5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a708_5bd2_2ac5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a708_5bd2_2ac5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1327_a6c0_d3ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1327_a6c0_d3ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1327_a6c0_d3ae/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, soilw.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoilw (Daily Long Term Mean Volumetric Soil Moisture, frac.)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1327_a6c0_d3ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1327_a6c0_d3ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1327_a6c0_d3ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1327_a6c0_d3ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1327_a6c0_d3ae&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1327_a6c0_d3ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0b3_e222_4aef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0b3_e222_4aef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a0b3_e222_4aef/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, soilw.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoilw (Daily Long Term Mean Volumetric Soil Moisture Spread, frac.)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a0b3_e222_4aef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a0b3_e222_4aef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a0b3_e222_4aef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a0b3_e222_4aef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a0b3_e222_4aef&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a0b3_e222_4aef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7440_4b13_5150", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7440_4b13_5150.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7440_4b13_5150/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Daily Long Term Mean Soil Temperature, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7440_4b13_5150_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7440_4b13_5150_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7440_4b13_5150/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7440_4b13_5150.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7440_4b13_5150&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7440_4b13_5150"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eca7_5d38_51d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eca7_5d38_51d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eca7_5d38_51d7/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Daily Long Term Mean Soil Temperature Spread, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eca7_5d38_51d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eca7_5d38_51d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eca7_5d38_51d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eca7_5d38_51d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eca7_5d38_51d7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_eca7_5d38_51d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d115_bb45_ea8c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d115_bb45_ea8c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d115_bb45_ea8c/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sig995.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d115_bb45_ea8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d115_bb45_ea8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d115_bb45_ea8c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d115_bb45_ea8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d115_bb45_ea8c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d115_bb45_ea8c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d75_f9af_6746", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d75_f9af_6746.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2d75_f9af_6746/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.tropo.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2d75_f9af_6746_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2d75_f9af_6746_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d75_f9af_6746/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d75_f9af_6746.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d75_f9af_6746&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2d75_f9af_6746"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff32_ca2e_918b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff32_ca2e_918b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff32_ca2e_918b/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cape.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Daily Long Term Mean CAPE, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff32_ca2e_918b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff32_ca2e_918b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff32_ca2e_918b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff32_ca2e_918b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff32_ca2e_918b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_ff32_ca2e_918b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86f2_adb0_e8a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86f2_adb0_e8a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_86f2_adb0_e8a6/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cin.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Daily Long Term Mean CAPE, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86f2_adb0_e8a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86f2_adb0_e8a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86f2_adb0_e8a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86f2_adb0_e8a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86f2_adb0_e8a6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_86f2_adb0_e8a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8518_8908_3429", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8518_8908_3429.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8518_8908_3429/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cldwtr.eatm.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldwtr (Daily Long Term Mean Cloud Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8518_8908_3429_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8518_8908_3429_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8518_8908_3429/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8518_8908_3429.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8518_8908_3429&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8518_8908_3429"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_52c9_ea33_74ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_52c9_ea33_74ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_52c9_ea33_74ce/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, hgt.tropo.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Daily Long Term Mean Geopotential Heights at Tropopause, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_52c9_ea33_74ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_52c9_ea33_74ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_52c9_ea33_74ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_52c9_ea33_74ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_52c9_ea33_74ce&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_52c9_ea33_74ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab5e_9601_934d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab5e_9601_934d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab5e_9601_934d/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, omega.sig995.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Daily Long Term Mean Omega at sigma level 0.995, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab5e_9601_934d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab5e_9601_934d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab5e_9601_934d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab5e_9601_934d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab5e_9601_934d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_ab5e_9601_934d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4e6_fadd_5ca9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4e6_fadd_5ca9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a4e6_fadd_5ca9/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pr wtr.eatm.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Daily Long Term Mean Precipitable Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a4e6_fadd_5ca9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a4e6_fadd_5ca9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a4e6_fadd_5ca9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a4e6_fadd_5ca9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a4e6_fadd_5ca9&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a4e6_fadd_5ca9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_737c_4ff0_2cb3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_737c_4ff0_2cb3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_737c_4ff0_2cb3/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pres.sfc.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Daily Long Term Mean Pressure at Surface, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_737c_4ff0_2cb3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_737c_4ff0_2cb3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_737c_4ff0_2cb3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_737c_4ff0_2cb3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_737c_4ff0_2cb3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_737c_4ff0_2cb3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8b7_c24e_e4e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8b7_c24e_e4e8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f8b7_c24e_e4e8/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pres.tropo.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Daily Long Term Mean Pressure at Tropopause, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f8b7_c24e_e4e8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f8b7_c24e_e4e8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f8b7_c24e_e4e8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f8b7_c24e_e4e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f8b7_c24e_e4e8&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f8b7_c24e_e4e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6fa_0b7f_9ec4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6fa_0b7f_9ec4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f6fa_0b7f_9ec4/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, prmsl.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Daily Long Term Pressure at Mean Sea Level, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f6fa_0b7f_9ec4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f6fa_0b7f_9ec4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f6fa_0b7f_9ec4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f6fa_0b7f_9ec4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f6fa_0b7f_9ec4&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f6fa_0b7f_9ec4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_82fc_ec58_00e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_82fc_ec58_00e4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_82fc_ec58_00e4/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, rhum.sig995.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Daily Long Term Mean Relative Humidity at sigma level 0.995, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_82fc_ec58_00e4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_82fc_ec58_00e4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_82fc_ec58_00e4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_82fc_ec58_00e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_82fc_ec58_00e4&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_82fc_ec58_00e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7077_a7f9_831b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7077_a7f9_831b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7077_a7f9_831b/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tco3.eatm.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Daily Long Term Mean Total Columnar Ozone, Dobsons)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7077_a7f9_831b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7077_a7f9_831b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7077_a7f9_831b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7077_a7f9_831b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7077_a7f9_831b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7077_a7f9_831b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c889_edc4_3461", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c889_edc4_3461.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c889_edc4_3461/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uwnd.sig995.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Daily Long Term Mean U-wind at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c889_edc4_3461_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c889_edc4_3461_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c889_edc4_3461/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c889_edc4_3461.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c889_edc4_3461&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c889_edc4_3461"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7ad_434e_d69f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7ad_434e_d69f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c7ad_434e_d69f/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uwnd.tropo.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Daily Long Term Mean U-wind at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c7ad_434e_d69f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c7ad_434e_d69f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c7ad_434e_d69f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c7ad_434e_d69f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c7ad_434e_d69f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c7ad_434e_d69f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d191_41f7_7e2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d191_41f7_7e2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d191_41f7_7e2d/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vwnd.sig995.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Daily Long Term Mean V-wind at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d191_41f7_7e2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d191_41f7_7e2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d191_41f7_7e2d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d191_41f7_7e2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d191_41f7_7e2d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d191_41f7_7e2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2416_4a65_eff8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2416_4a65_eff8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2416_4a65_eff8/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vwnd.tropo.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Daily Long Term Mean V-wind at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2416_4a65_eff8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2416_4a65_eff8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2416_4a65_eff8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2416_4a65_eff8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2416_4a65_eff8&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2416_4a65_eff8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a0f_b575_87bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a0f_b575_87bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a0f_b575_87bb/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, air.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a0f_b575_87bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a0f_b575_87bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a0f_b575_87bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a0f_b575_87bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a0f_b575_87bb&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5a0f_b575_87bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ed8_2605_5bd2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ed8_2605_5bd2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ed8_2605_5bd2/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, hgt.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Daily Long Term Mean Geopotential Heights on Pressure Levels, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ed8_2605_5bd2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ed8_2605_5bd2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ed8_2605_5bd2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ed8_2605_5bd2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ed8_2605_5bd2&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4ed8_2605_5bd2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_679c_6e1b_533e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_679c_6e1b_533e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_679c_6e1b_533e/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, omega.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Daily Long Term Mean Omega on Pressure Levels, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_679c_6e1b_533e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_679c_6e1b_533e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_679c_6e1b_533e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_679c_6e1b_533e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_679c_6e1b_533e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_679c_6e1b_533e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c33c_b7fd_fbf4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c33c_b7fd_fbf4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c33c_b7fd_fbf4/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, rhum.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Daily Long Term Mean Relative Humidity on Pressure Levels, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c33c_b7fd_fbf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c33c_b7fd_fbf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c33c_b7fd_fbf4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c33c_b7fd_fbf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c33c_b7fd_fbf4&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c33c_b7fd_fbf4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea93_6ab2_3731", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea93_6ab2_3731.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ea93_6ab2_3731/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, shum.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Daily Long Term Mean Specific Humidity on Pressure Levels, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ea93_6ab2_3731_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ea93_6ab2_3731_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ea93_6ab2_3731/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ea93_6ab2_3731.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ea93_6ab2_3731&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_ea93_6ab2_3731"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf31_5b4e_c89a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf31_5b4e_c89a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf31_5b4e_c89a/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, uwnd.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Daily Long Term Mean U-wind on Pressure Levels, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf31_5b4e_c89a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf31_5b4e_c89a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf31_5b4e_c89a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf31_5b4e_c89a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf31_5b4e_c89a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_cf31_5b4e_c89a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1676_80cc_0dc1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1676_80cc_0dc1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1676_80cc_0dc1/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, vwnd.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Daily Long Term Mean V-wind on Pressure Levels, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1676_80cc_0dc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1676_80cc_0dc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1676_80cc_0dc1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1676_80cc_0dc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1676_80cc_0dc1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_1676_80cc_0dc1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4374_d832_68cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4374_d832_68cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4374_d832_68cf/request", "", "public", "Daytona Beach, Florida Coastal Digital Elevation Model (daytona beach 13 mhw 2007), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4374_d832_68cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4374_d832_68cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4374_d832_68cf/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4374_d832_68cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4374_d832_68cf&showErrors=false&email=", "NOAA", "noaa_ngdc_4374_d832_68cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_62d4_c2b5_f292", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_62d4_c2b5_f292.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_62d4_c2b5_f292/request", "", "public", "Daytona Beach, Florida Tsunami Forecast Grids for MOST Model (DaytonaBeachFL A)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_62d4_c2b5_f292_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_62d4_c2b5_f292_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_62d4_c2b5_f292/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_62d4_c2b5_f292.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_62d4_c2b5_f292&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_62d4_c2b5_f292"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a6e3_f8c9_ec88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a6e3_f8c9_ec88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_a6e3_f8c9_ec88/request", "", "public", "Daytona Beach, Florida Tsunami Forecast Grids for MOST Model (DaytonaBeachFL B), 0.0025\u00b0", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_a6e3_f8c9_ec88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_a6e3_f8c9_ec88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_a6e3_f8c9_ec88/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_a6e3_f8c9_ec88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_a6e3_f8c9_ec88&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_a6e3_f8c9_ec88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_787e_2f77_3374", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_787e_2f77_3374.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_787e_2f77_3374/request", "", "public", "Daytona Beach, Florida Tsunami Forecast Grids for MOST Model (DaytonaBeachFL C)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_787e_2f77_3374_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_787e_2f77_3374_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_787e_2f77_3374/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_787e_2f77_3374.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_787e_2f77_3374&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_787e_2f77_3374"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMIdeli14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMIdeli14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMIdeli14day/request", "", "public", "Debris Likelihood, GhostNet, Aqua MODIS, and GOES Imager, 2006-2013, EXPERIMENTAL (14 Day Composite)", "Debris Likelihood Index (Estimated) is calculated from GhostNet, NASA Aqua MODIS Chl a and NOAA GOES Imager SST data. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndebris (Debris Likelihood, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMIdeli14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMIdeli14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMIdeli14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MI_deli_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMIdeli14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMIdeli14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMIdeli14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMIdeli14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMIdeli14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMIdeli14day_LonPM180/request", "", "public", "Debris Likelihood, GhostNet, Aqua MODIS, and GOES Imager, 2006-2013, EXPERIMENTAL (14 Day Composite), Lon+/-180", "Debris Likelihood Index (Estimated) is calculated from GhostNet, NASA Aqua MODIS Chl a and NOAA GOES Imager SST data. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndebris (Debris Likelihood, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMIdeli14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMIdeli14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMIdeli14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MI_deli_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMIdeli14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMIdeli14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMIdeli14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4901day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4901day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk4901day/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (1 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk4901day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk4901day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk4901day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk4901day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk4901day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk4901day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4901day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4901day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk4901day_LonPM180/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (1 Day Composite), Lon+/-180", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk4901day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk4901day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk4901day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk4901day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk4901day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk4901day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk49014day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk49014day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk49014day/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (14 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk49014day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk49014day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk49014day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk49014day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk49014day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk49014day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk49014day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk49014day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk49014day_LonPM180/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (14 Day Composite), Lon+/-180", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk49014day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk49014day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk49014day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk49014day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk49014day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk49014day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4903day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4903day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk4903day/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (3 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk4903day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk4903day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk4903day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk4903day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk4903day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk4903day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4903day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4903day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk4903day_LonPM180/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (3 Day Composite), Lon+/-180", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk4903day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk4903day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk4903day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk4903day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk4903day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk4903day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4908day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4908day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk4908day/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (8 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk4908day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk4908day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk4908day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk4908day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk4908day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk4908day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4908day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4908day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk4908day_LonPM180/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (8 Day Composite), Lon+/-180", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk4908day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk4908day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk4908day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk4908day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk4908day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk4908day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk490mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk490mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk490mday/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (Monthly Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk490mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk490mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk490mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk490mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk490mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk490mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk490mday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk490mday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk490mday_LonPM180/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (Monthly Composite), Lon+/-180", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk490mday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk490mday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk490mday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk490mday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk490mday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk490mday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHk4908day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHk4908day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHk4908day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, 2003-2013, DEPRECATED OLDER VERSION (8 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHk4908day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHk4908day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHk4908day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHk4908day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHk4908day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHk4908day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHk490mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHk490mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHk490mday/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, 2003-2013, DEPRECATED OLDER VERSION (Monthly Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHk490mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHk490mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHk490mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHk490mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHk490mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHk490mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHk4901day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHk4901day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHk4901day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, 2011-2011, DEPRECATED OLDER VERSION (1 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHk4901day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHk4901day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHk4901day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHk4901day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHk4901day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHk4901day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk4901day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk4901day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEk4901day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, East US, 2002-2012 (1 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEk4901day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEk4901day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEk4901day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEk4901day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEk4901day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEk4901day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk49014day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk49014day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEk49014day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, East US, 2002-2012 (14 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEk49014day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEk49014day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEk49014day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEk49014day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEk49014day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEk49014day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk4903day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk4903day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEk4903day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, East US, 2002-2012 (3 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEk4903day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEk4903day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEk4903day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEk4903day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEk4903day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEk4903day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk4908day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk4908day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEk4908day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, East US, 2002-2012 (8 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEk4908day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEk4908day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEk4908day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEk4908day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEk4908day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEk4908day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk490mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk490mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEk490mday/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, East US, 2002-2012 (Monthly Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEk490mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEk490mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEk490mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEk490mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEk490mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEk490mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGk4901day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGk4901day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGk4901day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (1 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGk4901day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGk4901day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGk4901day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGk4901day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGk4901day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGk4901day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGk49014day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGk49014day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGk49014day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (14 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGk49014day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGk49014day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGk49014day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGk49014day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGk49014day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGk49014day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGk4903day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGk4903day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGk4903day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (3 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGk4903day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGk4903day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGk4903day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGk4903day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGk4903day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGk4903day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGk4908day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGk4908day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGk4908day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (8 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGk4908day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGk4908day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGk4908day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGk4908day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGk4908day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGk4908day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGk490mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGk490mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGk490mday/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (Monthly Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGk490mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGk490mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGk490mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGk490mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGk490mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGk490mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPk4901day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPk4901day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPk4901day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, Indonesia, 2002-2013 (1 Day Composite)", "OSU distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the NASA GSFC Ocean Biology Products Group.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPk4901day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPk4901day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPk4901day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPk4901day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPk4901day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPk4901day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPk49014day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPk49014day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPk49014day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, Indonesia, 2002-2013 (14 Day Composite)", "OSU distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the NASA GSFC Ocean Biology Products Group.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPk49014day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPk49014day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPk49014day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPk49014day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPk49014day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPk49014day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPk4903day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPk4903day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPk4903day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, Indonesia, 2002-2013 (3 Day Composite)", "OSU distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the NASA GSFC Ocean Biology Products Group.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPk4903day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPk4903day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPk4903day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPk4903day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPk4903day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPk4903day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPk4908day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPk4908day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPk4908day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, Indonesia, 2002-2013 (8 Day Composite)", "OSU distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the NASA GSFC Ocean Biology Products Group.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPk4908day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPk4908day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPk4908day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPk4908day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPk4908day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPk4908day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPk490mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPk490mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPk490mday/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, Indonesia, 2002-2013 (Monthly Composite)", "OSU distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the NASA GSFC Ocean Biology Products Group.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPk490mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPk490mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPk490mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPk490mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPk490mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPk490mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1kd4901day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1kd4901day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1kd4901day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (1 Day Composite)", "This dataset has monthly composites of Level 3, Standard Mapped Image, 4km, Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1kd4901day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1kd4901day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1kd4901day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_kd490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1kd4901day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1kd4901day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1kd4901day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1kd4908day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1kd4908day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1kd4908day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (8 Day Composite)", "This dataset has monthly composites of Level 3, Standard Mapped Image, 4km, Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1kd4908day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1kd4908day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1kd4908day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_kd490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1kd4908day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1kd4908day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1kd4908day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1kd490mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1kd490mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1kd490mday/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (Monthly Composite)", "This dataset has monthly composites of Level 3, Standard Mapped Image, 4km, Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1kd490mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1kd490mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1kd490mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_kd490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1kd490mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1kd490mday&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1kd490mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bbcb_f651_8363", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bbcb_f651_8363.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_bbcb_f651_8363/request", "", "public", "Digital Elevation Model of Kauai, Hawaii, Integrating Bathymetric and Topographic Datasets, 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_bbcb_f651_8363_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_bbcb_f651_8363_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_bbcb_f651_8363/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_bbcb_f651_8363.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_bbcb_f651_8363&showErrors=false&email=", "NOAA", "noaa_ngdc_bbcb_f651_8363"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8738_ab7c_30a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8738_ab7c_30a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8738_ab7c_30a6/request", "", "public", "Digital Elevation Model of Southeast Alaska, Integrating Bathymetric and Topographic Datasets, 7.4074074E-4\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8738_ab7c_30a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8738_ab7c_30a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8738_ab7c_30a6/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8738_ab7c_30a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8738_ab7c_30a6&showErrors=false&email=", "NOAA", "noaa_ngdc_8738_ab7c_30a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/dist2coast_1deg", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/dist2coast_1deg.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/dist2coast_1deg/request", "", "public", "Distance from Nearest Coastline: 0.01-Degree Grid", "A global data set of distances from the nearest coastline. Negative distances represent locations over land (including land-locked bodies of water), while positive distances represent the ocean. NASA's Ocean Color Group generated this data set using the Generic Mapping Tools (GMT) software package. Distances were computed with GMT using its intermediate-resolution coastline and then gridded globally at a spatial resolution of 0.04 degrees. Bilinear interpolation was then applied to increase the spatial resolution to 0.01 degrees. There is an uncertainty of up to 1 km in the computed distance at any given point.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ndist (distance to nearest coastline, km)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/dist2coast_1deg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/dist2coast_1deg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/dist2coast_1deg/index.json", "https://oceancolor.gsfc.nasa.gov/DOCS/DistFromCoast/", "http://upwell.pfeg.noaa.gov/erddap/rss/dist2coast_1deg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=dist2coast_1deg&showErrors=false&email=", "NASA GSFC", "dist2coast_1deg"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/dist2coast_4deg", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/dist2coast_4deg.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/dist2coast_4deg/request", "", "public", "Distance from Nearest Coastline: 0.04-Degree Grid", "A global data set of distances from the nearest coastline. Negative distances represent locations over land (including land-locked bodies of water), while positive distances represent the ocean. NASA's Ocean Color Group generated this data set using the Generic Mapping Tools (GMT) software package. Distances were computed with GMT using its intermediate-resolution coastline and then gridded globally at a spatial resolution of 0.04 degrees.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ndist (distance to nearest coastline, km)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/dist2coast_4deg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/dist2coast_4deg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/dist2coast_4deg/index.json", "https://oceancolor.gsfc.nasa.gov/DOCS/DistFromCoast/", "http://upwell.pfeg.noaa.gov/erddap/rss/dist2coast_4deg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=dist2coast_4deg&showErrors=false&email=", "NASA GSFC", "dist2coast_4deg"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_67da_2b6a_9e0e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_67da_2b6a_9e0e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_67da_2b6a_9e0e/request", "", "public", "Dutch Harbor, Alaska Coastal Digital Elevation Model (dutch harbor 1 mhw 2006), 2.7777778E-4\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_67da_2b6a_9e0e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_67da_2b6a_9e0e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_67da_2b6a_9e0e/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_67da_2b6a_9e0e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_67da_2b6a_9e0e&showErrors=false&email=", "NOAA", "noaa_ngdc_67da_2b6a_9e0e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a5c4_0045_ffc3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a5c4_0045_ffc3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_a5c4_0045_ffc3/request", "", "public", "East Asian Seas regional climatology : sea_water_salinity Annual 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for sea_water_salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_salinity., PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_a5c4_0045_ffc3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_a5c4_0045_ffc3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_a5c4_0045_ffc3/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_a5c4_0045_ffc3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_a5c4_0045_ffc3&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_a5c4_0045_ffc3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8abf_4da0_199a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8abf_4da0_199a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_8abf_4da0_199a/request", "", "public", "East Asian Seas regional climatology : sea_water_salinity Annual 0.25 degree, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for sea_water_salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_oa (statistical mean value minus the objectively analyzed mean value for sea_water_salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_salinity., PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_8abf_4da0_199a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_8abf_4da0_199a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_8abf_4da0_199a/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_8abf_4da0_199a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_8abf_4da0_199a&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_8abf_4da0_199a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_9e69_363c_3138", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_9e69_363c_3138.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_9e69_363c_3138/request", "", "public", "East Asian Seas regional climatology : sea_water_salinity Annual 1.00 degree, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for sea_water_salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_oa (statistical mean value minus the objectively analyzed mean value for sea_water_salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_salinity., PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_9e69_363c_3138_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_9e69_363c_3138_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_9e69_363c_3138/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_9e69_363c_3138.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_9e69_363c_3138&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_9e69_363c_3138"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_c7b6_5486_b047", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_c7b6_5486_b047.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_c7b6_5486_b047/request", "", "public", "East Asian Seas regional climatology : sea_water_salinity November 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for sea_water_salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_salinity., PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_c7b6_5486_b047_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_c7b6_5486_b047_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_c7b6_5486_b047/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_c7b6_5486_b047.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_c7b6_5486_b047&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_c7b6_5486_b047"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_29a5_98cc_3242", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_29a5_98cc_3242.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_29a5_98cc_3242/request", "", "public", "East Asian Seas regional climatology : sea_water_salinity November 0.25 degree, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for sea_water_salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_oa (statistical mean value minus the objectively analyzed mean value for sea_water_salinity., PSU)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_salinity., PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_29a5_98cc_3242_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_29a5_98cc_3242_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_29a5_98cc_3242/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_29a5_98cc_3242.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_29a5_98cc_3242&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_29a5_98cc_3242"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f398_5262_b4c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f398_5262_b4c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_f398_5262_b4c3/request", "", "public", "East Asian Seas regional climatology : sea_water_salinity November 1.00 degree, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for sea_water_salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_oa (statistical mean value minus the objectively analyzed mean value for sea_water_salinity., PSU)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_salinity., PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_f398_5262_b4c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_f398_5262_b4c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_f398_5262_b4c3/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_f398_5262_b4c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_f398_5262_b4c3&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_f398_5262_b4c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e00b_1f63_4109", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e00b_1f63_4109.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e00b_1f63_4109/request", "", "public", "East Asian Seas regional climatology : sea_water_salinity Summer (Jul-Sep) 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for sea_water_salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_salinity., PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e00b_1f63_4109_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e00b_1f63_4109_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e00b_1f63_4109/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e00b_1f63_4109.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e00b_1f63_4109&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_e00b_1f63_4109"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6792_8366_3fac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6792_8366_3fac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6792_8366_3fac/request", "", "public", "East Asian Seas regional climatology : sea_water_salinity Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for sea_water_salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_oa (statistical mean value minus the objectively analyzed mean value for sea_water_salinity., PSU)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_salinity., PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6792_8366_3fac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6792_8366_3fac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6792_8366_3fac/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6792_8366_3fac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6792_8366_3fac&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_6792_8366_3fac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ec2f_bad2_55bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ec2f_bad2_55bc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_ec2f_bad2_55bc/request", "", "public", "East Asian Seas regional climatology : sea_water_salinity Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for sea_water_salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., PSU)\ns_oa (statistical mean value minus the objectively analyzed mean value for sea_water_salinity., PSU)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_salinity., PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_ec2f_bad2_55bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_ec2f_bad2_55bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_ec2f_bad2_55bc/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_ec2f_bad2_55bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_ec2f_bad2_55bc&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_ec2f_bad2_55bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_06ee_5ef7_2d38", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_06ee_5ef7_2d38.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_06ee_5ef7_2d38/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature Annual 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_06ee_5ef7_2d38_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_06ee_5ef7_2d38_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_06ee_5ef7_2d38/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_06ee_5ef7_2d38.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_06ee_5ef7_2d38&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_06ee_5ef7_2d38"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_38fa_57e1_1a18", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_38fa_57e1_1a18.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_38fa_57e1_1a18/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_38fa_57e1_1a18_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_38fa_57e1_1a18_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_38fa_57e1_1a18/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_38fa_57e1_1a18.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_38fa_57e1_1a18&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_38fa_57e1_1a18"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_df13_a0c1_f716", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_df13_a0c1_f716.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_df13_a0c1_f716/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_df13_a0c1_f716_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_df13_a0c1_f716_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_df13_a0c1_f716/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_df13_a0c1_f716.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_df13_a0c1_f716&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_df13_a0c1_f716"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4ac5_3a32_e8e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4ac5_3a32_e8e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_4ac5_3a32_e8e5/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature November 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_4ac5_3a32_e8e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_4ac5_3a32_e8e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_4ac5_3a32_e8e5/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_4ac5_3a32_e8e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_4ac5_3a32_e8e5&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_4ac5_3a32_e8e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0e93_d946_7a54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0e93_d946_7a54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_0e93_d946_7a54/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_0e93_d946_7a54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_0e93_d946_7a54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_0e93_d946_7a54/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_0e93_d946_7a54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_0e93_d946_7a54&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_0e93_d946_7a54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6b6f_24ef_6c56", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6b6f_24ef_6c56.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6b6f_24ef_6c56/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6b6f_24ef_6c56_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6b6f_24ef_6c56_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6b6f_24ef_6c56/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6b6f_24ef_6c56.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6b6f_24ef_6c56&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_6b6f_24ef_6c56"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5aa1_e345_be88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5aa1_e345_be88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_5aa1_e345_be88/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature Summer (Jul-Sep) 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_5aa1_e345_be88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_5aa1_e345_be88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_5aa1_e345_be88/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_5aa1_e345_be88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_5aa1_e345_be88&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_5aa1_e345_be88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_293e_c3a7_aba9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_293e_c3a7_aba9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_293e_c3a7_aba9/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_293e_c3a7_aba9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_293e_c3a7_aba9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_293e_c3a7_aba9/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_293e_c3a7_aba9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_293e_c3a7_aba9&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_293e_c3a7_aba9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3007_1605_1962", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3007_1605_1962.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_3007_1605_1962/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_3007_1605_1962_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_3007_1605_1962_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_3007_1605_1962/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_3007_1605_1962.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_3007_1605_1962&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_3007_1605_1962"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0a67_1b94_6065", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0a67_1b94_6065.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0a67_1b94_6065/request", "", "public", "Elfin Cove Alaska Coastal Digital Elevation Model (elfin cove 13 mhhw 2012), 9.259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0a67_1b94_6065_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0a67_1b94_6065_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0a67_1b94_6065/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0a67_1b94_6065.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0a67_1b94_6065&showErrors=false&email=", "NOAA", "noaa_ngdc_0a67_1b94_6065"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a7d0_dc89_2325", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a7d0_dc89_2325.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_a7d0_dc89_2325/request", "", "public", "Elfin Cove Alaska Coastal Digital Elevation Model (elfin cove 13 mhw 2011), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_a7d0_dc89_2325_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_a7d0_dc89_2325_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_a7d0_dc89_2325/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_a7d0_dc89_2325.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_a7d0_dc89_2325&showErrors=false&email=", "NOAA", "noaa_ngdc_a7d0_dc89_2325"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e9bc_dedc_bc9c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e9bc_dedc_bc9c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e9bc_dedc_bc9c/request", "", "public", "Elfin Cove, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, ElfinCoveAK A)", "Elfin Cove, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e9bc_dedc_bc9c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e9bc_dedc_bc9c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e9bc_dedc_bc9c/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e9bc_dedc_bc9c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e9bc_dedc_bc9c&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_e9bc_dedc_bc9c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1ca9_a405_9685", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1ca9_a405_9685.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1ca9_a405_9685/request", "", "public", "Elfin Cove, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, ElfinCoveAK B)", "Elfin Cove, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1ca9_a405_9685_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1ca9_a405_9685_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1ca9_a405_9685/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1ca9_a405_9685.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1ca9_a405_9685&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_1ca9_a405_9685"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_44d7_4e4e_bbc8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_44d7_4e4e_bbc8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_44d7_4e4e_bbc8/request", "", "public", "Elfin Cove, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, ElfinCoveAK C)", "Elfin Cove, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_44d7_4e4e_bbc8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_44d7_4e4e_bbc8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_44d7_4e4e_bbc8/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_44d7_4e4e_bbc8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_44d7_4e4e_bbc8&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_44d7_4e4e_bbc8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pmlEsaCCI31OceanColor8Day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pmlEsaCCI31OceanColor8Day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pmlEsaCCI31OceanColor8Day/request", "", "public", "ESA CCI Ocean Colour Product (CCI ALL-v3.1-8DAY), 0.04166666\u00b0, 1997-present", "Data products generated by the Ocean Colour component of the European Space Agency Climate Change Initiative project. These files are 8 day composites of merged sensor (MERIS, Moderate Resolution Imaging Spectroradiometer (MODIS) Aqua, Sea-Wide Field-of-View Sensor (SeaWiFS) Local Area Coverage (LAC) & Global Area Coverage (GAC), Visible and Infrared Imager/Radiometer Suite (VIIRS)) products. MODIS Aqua and MERIS were band-shifted and bias-corrected to SeaWiFS bands and values using a temporally and spatially varying scheme based on the overlap years of 2003-2007. VIIRS was band-shifted and bias-corrected in a second stage against the MODIS Rrs that had already been corrected to SeaWiFS levels, for the overlap period 2012-2013. VIIRS and SeaWiFS Rrs were derived from standard NASA L2 products; MERIS and MODIS from a combination of NASA's l2gen (for basic sensor geometry corrections, etc) and HYGEOS Polymer v3.5 (for atmospheric correction). The Rrs were binned to a sinusoidal 4km level-3 grid, and later to 4km geographic projection, by Brockmann Consult's BEAM. Derived products were generally computed with the standard SeaDAS algorithms. QAA IOPs were derived using the standard SeaDAS algorithm but with a modified backscattering table to match that used in the bandshifting. The final chlorophyll is a combination of OC4, Hu's CI and OC5, depending on the water class memberships. Uncertainty estimates were added using the fuzzy water classifier and uncertainty estimation algorithm of Tim Moore as documented in Jackson et al (2017).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nRrs_412 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 412 nm., sr-1)\nRrs_443 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 443 nm., sr-1)\nRrs_490 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 490 nm., sr-1)\nRrs_510 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 510 nm., sr-1)\nRrs_555 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 555 nm., sr-1)\nRrs_670 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 670 nm., sr-1)\nwater_class1 (Mean of normalised water class 1 membership over the compositing period)\nwater_class2 (Mean of normalised water class 2 membership over the compositing period)\nwater_class3 (Mean of normalised water class 3 membership over the compositing period)\nwater_class4 (Mean of normalised water class 4 membership over the compositing period)\nwater_class5 (Mean of normalised water class 5 membership over the compositing period)\n... (80 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmlEsaCCI31OceanColor8Day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmlEsaCCI31OceanColor8Day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmlEsaCCI31OceanColor8Day/index.json", "http://www.esa-oceancolour-cci.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/pmlEsaCCI31OceanColor8Day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmlEsaCCI31OceanColor8Day&showErrors=false&email=", "Plymouth Marine Laboratory", "pmlEsaCCI31OceanColor8Day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pmlEsaCCI31OceanColorDaily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pmlEsaCCI31OceanColorDaily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pmlEsaCCI31OceanColorDaily/request", "", "public", "ESA CCI Ocean Colour Product (CCI ALL-v3.1-DAILY), 0.04166666\u00b0, 1997-present", "Data products generated by the Ocean Colour component of the European Space Agency Climate Change Initiative project. These files are daily composites of merged sensor (MERIS, Moderate Resolution Imaging Spectroradiometer (MODIS) Aqua, Sea-Wide Field-of-View Sensor (SeaWiFS) Local Area Coverage (LAC) & Global Area Coverage (GAC), Visible and Infrared Imager/Radiometer Suite (VIIRS)) products. MODIS Aqua and MERIS were band-shifted and bias-corrected to SeaWiFS bands and values using a temporally and spatially varying scheme based on the overlap years of 2003-2007. VIIRS was band-shifted and bias-corrected in a second stage against the MODIS Rrs that had already been corrected to SeaWiFS levels, for the overlap period 2012-2013. VIIRS and SeaWiFS Rrs were derived from standard NASA L2 products; MERIS and MODIS from a combination of NASA's l2gen (for basic sensor geometry corrections, etc) and HYGEOS Polymer v3.5 (for atmospheric correction). The Rrs were binned to a sinusoidal 4km level-3 grid, and later to 4km geographic projection, by Brockmann Consult's BEAM. Derived products were generally computed with the standard SeaDAS algorithms. QAA IOPs were derived using the standard SeaDAS algorithm but with a modified backscattering table to match that used in the bandshifting. The final chlorophyll is a combination of OC4, Hu's CI and OC5, depending on the water class memberships. Uncertainty estimates were added using the fuzzy water classifier and uncertainty estimation algorithm of Tim Moore as documented in Jackson et al (2017).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nMODISA_nobs (Count of the number of observations from the MODIS (Aqua) sensor contributing to this bin cell)\nVIIRS_nobs (Count of the number of observations from the VIIRS sensor contributing to this bin cell)\nMERIS_nobs (Count of the number of observations from the MERIS sensor contributing to this bin cell)\nSeaWiFS_nobs (Count of the number of observations from the SeaWiFS (GAC and LAC) sensor contributing to this bin cell)\ntotal_nobs (Count of the total number of observations contributing to this bin cell)\nRrs_412 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 412 nm., sr-1)\nRrs_443 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 443 nm., sr-1)\nRrs_490 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 490 nm., sr-1)\nRrs_510 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 510 nm., sr-1)\nRrs_555 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 555 nm., sr-1)\nRrs_670 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 670 nm., sr-1)\n... (80 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmlEsaCCI31OceanColorDaily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmlEsaCCI31OceanColorDaily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmlEsaCCI31OceanColorDaily/index.json", "http://www.esa-oceancolour-cci.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/pmlEsaCCI31OceanColorDaily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmlEsaCCI31OceanColorDaily&showErrors=false&email=", "Plymouth Marine Laboratory", "pmlEsaCCI31OceanColorDaily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pmlEsaCCI31OceanColorMonthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pmlEsaCCI31OceanColorMonthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pmlEsaCCI31OceanColorMonthly/request", "", "public", "ESA CCI Ocean Colour Product (CCI ALL-v3.1-MONTHLY), 0.04166666\u00b0, 1997-present", "Data products generated by the Ocean Colour component of the European Space Agency Climate Change Initiative project. These files are monthly composites of merged sensor (MERIS, Moderate Resolution Imaging Spectroradiometer (MODIS) Aqua, Sea-Wide Field-of-View Sensor (SeaWiFS) Local Area Coverage (LAC) & Global Area Coverage (GAC), Visible and Infrared Imager/Radiometer Suite (VIIRS)) products. MODIS Aqua and MERIS were band-shifted and bias-corrected to SeaWiFS bands and values using a temporally and spatially varying scheme based on the overlap years of 2003-2007. VIIRS was band-shifted and bias-corrected in a second stage against the MODIS Rrs that had already been corrected to SeaWiFS levels, for the overlap period 2012-2013. VIIRS and SeaWiFS Rrs were derived from standard NASA L2 products; MERIS and MODIS from a combination of NASA's l2gen (for basic sensor geometry corrections, etc) and HYGEOS Polymer v3.5 (for atmospheric correction). The Rrs were binned to a sinusoidal 4km level-3 grid, and later to 4km geographic projection, by Brockmann Consult's BEAM. Derived products were generally computed with the standard SeaDAS algorithms. QAA IOPs were derived using the standard SeaDAS algorithm but with a modified backscattering table to match that used in the bandshifting. The final chlorophyll is a combination of OC4, Hu's CI and OC5, depending on the water class memberships. Uncertainty estimates were added using the fuzzy water classifier and uncertainty estimation algorithm of Tim Moore as documented in Jackson et al (2017).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nRrs_412 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 412 nm., sr-1)\nRrs_443 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 443 nm., sr-1)\nRrs_490 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 490 nm., sr-1)\nRrs_510 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 510 nm., sr-1)\nRrs_555 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 555 nm., sr-1)\nRrs_670 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 670 nm., sr-1)\nwater_class1 (Mean of normalised water class 1 membership over the compositing period)\nwater_class2 (Mean of normalised water class 2 membership over the compositing period)\nwater_class3 (Mean of normalised water class 3 membership over the compositing period)\nwater_class4 (Mean of normalised water class 4 membership over the compositing period)\nwater_class5 (Mean of normalised water class 5 membership over the compositing period)\n... (80 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmlEsaCCI31OceanColorMonthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmlEsaCCI31OceanColorMonthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmlEsaCCI31OceanColorMonthly/index.json", "http://www.esa-oceancolour-cci.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/pmlEsaCCI31OceanColorMonthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmlEsaCCI31OceanColorMonthly&showErrors=false&email=", "Plymouth Marine Laboratory", "pmlEsaCCI31OceanColorMonthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_0229_ab78_4056", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_0229_ab78_4056.graph", "", "", "public", "ESPRESSO Real-Time v2 Averages, ESPRESSO Real-Time v2 Averages, Forecast Model Run Collection (2D time coordinates) [boundary]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present FMRC Averages. Forecast Model Run Collection (2D time coordinates). FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [boundary]):\nFSobc_in (free-surface inflow, nudging inverse time scale, second-1)\nFSobc_out (free-surface outflow, nudging inverse time scale, second-1)\nM2obc_in (2D momentum inflow, nudging inverse time scale, second-1)\nM2obc_out (2D momentum outflow, nudging inverse time scale, second-1)\nM3obc_in (3D momentum inflow, nudging inverse time scale, second-1)\nM3obc_out (3D momentum outflow, nudging inverse time scale, second-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_0229_ab78_4056/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_0229_ab78_4056.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_0229_ab78_4056&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_0229_ab78_4056"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_9969_9e6b_79ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_9969_9e6b_79ef.graph", "", "", "public", "ESPRESSO Real-Time v2 Averages, ESPRESSO Real-Time v2 Averages, Forecast Model Run Collection (2D time coordinates) [boundary][tracer]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present FMRC Averages. Forecast Model Run Collection (2D time coordinates). FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [boundary][tracer]):\nTobc_in (tracers inflow, nudging inverse time scale, second-1)\nTobc_out (tracers outflow, nudging inverse time scale, second-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_9969_9e6b_79ef/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_9969_9e6b_79ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_9969_9e6b_79ef&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_9969_9e6b_79ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_3d8b_1c14_7c58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_3d8b_1c14_7c58.graph", "", "", "public", "ESPRESSO Real-Time v2 Averages, ESPRESSO Real-Time v2 Averages, Forecast Model Run Collection (2D time coordinates) [eta_psi][xi_psi]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present FMRC Averages. Forecast Model Run Collection (2D time coordinates). FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eta_psi][xi_psi]):\nlon_psi (longitude of PSI-points, degrees_east)\nlat_psi (latitude of PSI-points, degrees_north)\nmask_psi (mask on psi-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_3d8b_1c14_7c58/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_3d8b_1c14_7c58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_3d8b_1c14_7c58&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_3d8b_1c14_7c58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_5073_03ae_3b10", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_5073_03ae_3b10.graph", "", "", "public", "ESPRESSO Real-Time v2 Averages, ESPRESSO Real-Time v2 Averages, Forecast Model Run Collection (2D time coordinates) [eta_rho][xi_rho]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present FMRC Averages. Forecast Model Run Collection (2D time coordinates). FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eta_rho][xi_rho]):\nlon_rho (longitude of RHO-points, degrees_east)\nlat_rho (latitude of RHO-points, degrees_north)\nh (bathymetry at RHO-points, meter)\nf (Coriolis parameter at RHO-points, second-1)\npm (curvilinear coordinate metric in XI, meter-1)\npn (curvilinear coordinate metric in ETA, meter-1)\nangle (angle between XI-axis and EAST, radians)\nmask_rho (mask on RHO-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_5073_03ae_3b10/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_5073_03ae_3b10.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_5073_03ae_3b10&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_5073_03ae_3b10"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_9a5a_878e_77bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_9a5a_878e_77bb.graph", "", "", "public", "ESPRESSO Real-Time v2 Averages, ESPRESSO Real-Time v2 Averages, Forecast Model Run Collection (2D time coordinates) [eta_u][xi_u]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present FMRC Averages. Forecast Model Run Collection (2D time coordinates). FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eta_u][xi_u]):\nlon_u (longitude of U-points, degrees_east)\nlat_u (latitude of U-points, degrees_north)\nmask_u (mask on U-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_9a5a_878e_77bb/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_9a5a_878e_77bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_9a5a_878e_77bb&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_9a5a_878e_77bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_7c7a_4077_22da", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_7c7a_4077_22da.graph", "", "", "public", "ESPRESSO Real-Time v2 Averages, ESPRESSO Real-Time v2 Averages, Forecast Model Run Collection (2D time coordinates) [eta_v][xi_v]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present FMRC Averages. Forecast Model Run Collection (2D time coordinates). FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eta_v][xi_v]):\nlon_v (longitude of V-points, degrees_east)\nlat_v (latitude of V-points, degrees_north)\nmask_v (mask on V-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_7c7a_4077_22da/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_7c7a_4077_22da.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_7c7a_4077_22da&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_7c7a_4077_22da"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_a669_03c5_1bb3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_a669_03c5_1bb3.graph", "", "", "public", "ESPRESSO Real-Time v2 Averages, ESPRESSO Real-Time v2 Averages, Forecast Model Run Collection (2D time coordinates) [s_rho]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present FMRC Averages. Forecast Model Run Collection (2D time coordinates). FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [s_rho]):\nCs_r (S-coordinate stretching curves at RHO-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_a669_03c5_1bb3/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_a669_03c5_1bb3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_a669_03c5_1bb3&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_a669_03c5_1bb3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_c64d_e29f_4193", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_c64d_e29f_4193.graph", "", "", "public", "ESPRESSO Real-Time v2 Averages, ESPRESSO Real-Time v2 Averages, Forecast Model Run Collection (2D time coordinates) [s_w]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present FMRC Averages. Forecast Model Run Collection (2D time coordinates). FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [s_w]):\nCs_w (S-coordinate stretching curves at W-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_c64d_e29f_4193/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_c64d_e29f_4193.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_c64d_e29f_4193&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_c64d_e29f_4193"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_05d6_34b8_bea7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_05d6_34b8_bea7.graph", "", "", "public", "ESPRESSO Real-Time v2 Averages, ESPRESSO Real-Time v2 Averages, Forecast Model Run Collection (2D time coordinates) [tracer]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present FMRC Averages. Forecast Model Run Collection (2D time coordinates). FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [tracer]):\nnl_tnu2 (nonlinear model Laplacian mixing coefficient for tracers, meter2 second-1)\nAkt_bak (background vertical mixing coefficient for tracers, meter2 second-1)\nTnudg (Tracers nudging/relaxation inverse time scale, day-1)\nLtracerSrc (tracer point sources and sink activation switch)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_05d6_34b8_bea7/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_05d6_34b8_bea7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_05d6_34b8_bea7&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_05d6_34b8_bea7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_918f_a51d_47c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_918f_a51d_47c0.graph", "", "", "public", "ESPRESSO Real-Time v2 History, ESPRESSO Real-Time v2 History, Forecast Model Run Collection (2D time coordinates) [boundary]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present FMRC History. Forecast Model Run Collection (2D time coordinates). FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [boundary]):\nFSobc_in (free-surface inflow, nudging inverse time scale, second-1)\nFSobc_out (free-surface outflow, nudging inverse time scale, second-1)\nM2obc_in (2D momentum inflow, nudging inverse time scale, second-1)\nM2obc_out (2D momentum outflow, nudging inverse time scale, second-1)\nM3obc_in (3D momentum inflow, nudging inverse time scale, second-1)\nM3obc_out (3D momentum outflow, nudging inverse time scale, second-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_918f_a51d_47c0/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_918f_a51d_47c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_918f_a51d_47c0&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_918f_a51d_47c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_5fc0_0321_1619", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_5fc0_0321_1619.graph", "", "", "public", "ESPRESSO Real-Time v2 History, ESPRESSO Real-Time v2 History, Forecast Model Run Collection (2D time coordinates) [boundary][tracer]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present FMRC History. Forecast Model Run Collection (2D time coordinates). FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [boundary][tracer]):\nTobc_in (tracers inflow, nudging inverse time scale, second-1)\nTobc_out (tracers outflow, nudging inverse time scale, second-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_5fc0_0321_1619/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_5fc0_0321_1619.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_5fc0_0321_1619&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_5fc0_0321_1619"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_cad8_cd60_a1a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_cad8_cd60_a1a1.graph", "", "", "public", "ESPRESSO Real-Time v2 History, ESPRESSO Real-Time v2 History, Forecast Model Run Collection (2D time coordinates) [eta_psi][xi_psi]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present FMRC History. Forecast Model Run Collection (2D time coordinates). FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eta_psi][xi_psi]):\nlon_psi (longitude of PSI-points, degrees_east)\nlat_psi (latitude of PSI-points, degrees_north)\nmask_psi (mask on psi-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_cad8_cd60_a1a1/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_cad8_cd60_a1a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_cad8_cd60_a1a1&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_cad8_cd60_a1a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_55d0_f1c7_1578", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_55d0_f1c7_1578.graph", "", "", "public", "ESPRESSO Real-Time v2 History, ESPRESSO Real-Time v2 History, Forecast Model Run Collection (2D time coordinates) [eta_rho][xi_rho]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present FMRC History. Forecast Model Run Collection (2D time coordinates). FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eta_rho][xi_rho]):\nlon_rho (longitude of RHO-points, degrees_east)\nlat_rho (latitude of RHO-points, degrees_north)\nh (bathymetry at RHO-points, meter)\nf (Coriolis parameter at RHO-points, second-1)\npm (curvilinear coordinate metric in XI, meter-1)\npn (curvilinear coordinate metric in ETA, meter-1)\nangle (angle between XI-axis and EAST, radians)\nmask_rho (mask on RHO-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_55d0_f1c7_1578/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_55d0_f1c7_1578.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_55d0_f1c7_1578&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_55d0_f1c7_1578"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_ce38_7c74_12ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_ce38_7c74_12ef.graph", "", "", "public", "ESPRESSO Real-Time v2 History, ESPRESSO Real-Time v2 History, Forecast Model Run Collection (2D time coordinates) [eta_u][xi_u]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present FMRC History. Forecast Model Run Collection (2D time coordinates). FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eta_u][xi_u]):\nlon_u (longitude of U-points, degrees_east)\nlat_u (latitude of U-points, degrees_north)\nmask_u (mask on U-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_ce38_7c74_12ef/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_ce38_7c74_12ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_ce38_7c74_12ef&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_ce38_7c74_12ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_701c_8646_e6b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_701c_8646_e6b5.graph", "", "", "public", "ESPRESSO Real-Time v2 History, ESPRESSO Real-Time v2 History, Forecast Model Run Collection (2D time coordinates) [eta_v][xi_v]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present FMRC History. Forecast Model Run Collection (2D time coordinates). FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eta_v][xi_v]):\nlon_v (longitude of V-points, degrees_east)\nlat_v (latitude of V-points, degrees_north)\nmask_v (mask on V-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_701c_8646_e6b5/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_701c_8646_e6b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_701c_8646_e6b5&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_701c_8646_e6b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_ce0b_879c_b1b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_ce0b_879c_b1b1.graph", "", "", "public", "ESPRESSO Real-Time v2 History, ESPRESSO Real-Time v2 History, Forecast Model Run Collection (2D time coordinates) [s_rho]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present FMRC History. Forecast Model Run Collection (2D time coordinates). FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [s_rho]):\nCs_r (S-coordinate stretching curves at RHO-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_ce0b_879c_b1b1/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_ce0b_879c_b1b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_ce0b_879c_b1b1&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_ce0b_879c_b1b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_1512_69c9_7e12", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_1512_69c9_7e12.graph", "", "", "public", "ESPRESSO Real-Time v2 History, ESPRESSO Real-Time v2 History, Forecast Model Run Collection (2D time coordinates) [s_w]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present FMRC History. Forecast Model Run Collection (2D time coordinates). FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [s_w]):\nCs_w (S-coordinate stretching curves at W-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_1512_69c9_7e12/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_1512_69c9_7e12.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_1512_69c9_7e12&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_1512_69c9_7e12"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_8d5b_d41d_821b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_8d5b_d41d_821b.graph", "", "", "public", "ESPRESSO Real-Time v2 History, ESPRESSO Real-Time v2 History, Forecast Model Run Collection (2D time coordinates) [tracer]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present FMRC History. Forecast Model Run Collection (2D time coordinates). FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [tracer]):\nnl_tnu2 (nonlinear model Laplacian mixing coefficient for tracers, meter2 second-1)\nAkt_bak (background vertical mixing coefficient for tracers, meter2 second-1)\nTnudg (Tracers nudging/relaxation inverse time scale, day-1)\nLtracerSrc (tracer point sources and sink activation switch)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_8d5b_d41d_821b/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_8d5b_d41d_821b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_8d5b_d41d_821b&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_8d5b_d41d_821b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/etopo5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/etopo5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/etopo5/request", "", "public", "ETOPO5 Global Surface Relief", "ETOPO5 is a 5 arc-minute global relief model of Earth's surface that integrates land topography and ocean bathymetry. It was built from numerous global and regional data sets. This historical dataset has been deprecated in favor of the newer and higher-resolution ETOPO1 1 arc-minute global relief model.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nROSE (Relief Of the Surface of the Earth, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/etopo5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/etopo5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/etopo5/index.json", "http://ngdc.noaa.gov/mgg/fliers/93mgg01.html", "http://upwell.pfeg.noaa.gov/erddap/rss/etopo5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=etopo5&showErrors=false&email=", "NOAA NGDC", "etopo5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2f3a_531d_732b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2f3a_531d_732b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2f3a_531d_732b/request", "", "public", "Eureka, California Coastal Digital Elevation Model (eureka 13 navd88 2009), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2f3a_531d_732b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2f3a_531d_732b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2f3a_531d_732b/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2f3a_531d_732b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2f3a_531d_732b&showErrors=false&email=", "NOAA", "noaa_ngdc_2f3a_531d_732b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_406c_fd83_2481", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_406c_fd83_2481.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_406c_fd83_2481/request", "", "public", "Eureka, California Coastal Digital Elevation Model (Top Dataset, Regional, eureka 13 mhw 2009), 9.259259E-5\u00b0", "Eureka, California Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_406c_fd83_2481_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_406c_fd83_2481_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_406c_fd83_2481/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_406c_fd83_2481.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_406c_fd83_2481&showErrors=false&email=", "NOAA", "noaa_ngdc_406c_fd83_2481"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ed6d_d2c4_d1ed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ed6d_d2c4_d1ed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_ed6d_d2c4_d1ed/request", "", "public", "Eureka, California Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, EurekaCA A), 0.02\u00b0", "Eureka, California Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_ed6d_d2c4_d1ed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_ed6d_d2c4_d1ed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ed6d_d2c4_d1ed/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ed6d_d2c4_d1ed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ed6d_d2c4_d1ed&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_ed6d_d2c4_d1ed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_479c_7efb_0cb4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_479c_7efb_0cb4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_479c_7efb_0cb4/request", "", "public", "Eureka, California Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, EurekaCA B), 0.005\u00b0", "Eureka, California Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_479c_7efb_0cb4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_479c_7efb_0cb4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_479c_7efb_0cb4/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_479c_7efb_0cb4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_479c_7efb_0cb4&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_479c_7efb_0cb4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6910_0e16_e872", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6910_0e16_e872.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_6910_0e16_e872/request", "", "public", "Eureka, California Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, EurekaCA C)", "Eureka, California Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_6910_0e16_e872_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_6910_0e16_e872_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6910_0e16_e872/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6910_0e16_e872.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6910_0e16_e872&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_6910_0e16_e872"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5253_bf9e_db32", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5253_bf9e_db32.graph", "", "", "public", "Extended AVHRR Polar Pathfinder Fundamental Climate Data Record (APPx CDR) [columns][rows]", "The Extended Advanced Very High Resolution Radiometer (AVHRR) Polar Pathfinder (APP-x) Version-2 thematic Climate Data Record (CDR) includes more than 33 years of surface temperature, surface albedo, surface and the Top Of the Atmosphere (TOA) shortwave and longwave radiative fluxes, cloud properties (amount, phase, particle size, optical depth,top pressure and temperature, surface and TOA radiative effect), and ice thickness and age. The APP-x CDR has twice daily data at local solar times of 14 and 04(02) for the Arctic(Antarctic) at a spatial resolution of 25 km for both poles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [columns][rows]):\nlongitude (longitude of EASE Grid 25km resolution in the polar regions, Arctic (361,361), Antarctic (321,321), degrees_east)\nlatitude (latitude of EASE Grid 25km resolution in the polar regionsArctic (361,361), Antarctic (321,321), degrees_north)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5253_bf9e_db32/index.json", "https://www.ngdc.noaa.gov/thredds/dodsC/arctic/Polar-APP-X_v01r01_Nhem_1400_d20160731_c20160822.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5253_bf9e_db32.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5253_bf9e_db32&showErrors=false&email=", "Cooperative Institute for Meteorological Studies, University of Wisconsin at Madison", "noaa_ngdc_5253_bf9e_db32"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_da08_dcdf_2100", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_da08_dcdf_2100.graph", "", "", "public", "Extended AVHRR Polar Pathfinder Fundamental Climate Data Record (APPx CDR) [columns][rows]", "The Extended Advanced Very High Resolution Radiometer (AVHRR) Polar Pathfinder (APP-x) version-2 Thematic Climate Data Record (CDR) includes surface temperature, surface albedo, surface and the Top Of the Atmosphere (TOA) shortwave and longwave radiative fluxes, cloud properties (amount, phase, particle size, optical depth,top pressure and temperature, surface and TOA radiative effect), and ice thickness and age. The APP-x CDR has twice daily data at local solar times of 14 and 04(02) for the Arctic(Antarctic) at a spatial resolution of 25 km for both poles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [columns][rows]):\nlongitude (longitude of EASE Grid 25km resolution in the polar regions, Arctic (361,361), Antarctic (321,321), degrees_east)\nlatitude (latitude of EASE Grid 25km resolution in the polar regionsArctic (361,361), Antarctic (321,321), degrees_north)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_da08_dcdf_2100/index.json", "https://www.ngdc.noaa.gov/thredds/dodsC/arctic/Polar-APP-X_v01r01_Nhem_1400_d20160801_c20160803.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_da08_dcdf_2100.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_da08_dcdf_2100&showErrors=false&email=", "Cooperative Institute for Meteorological Studies, University of Wisconsin at Madison", "noaa_ngdc_da08_dcdf_2100"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0f24_2f8c_d159", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0f24_2f8c_d159.graph", "", "", "public", "Extended AVHRR Polar Pathfinder Fundamental Climate Data Record (APPx CDR) [Time][columns][rows]", "The Extended Advanced Very High Resolution Radiometer (AVHRR) Polar Pathfinder (APP-x) Version-2 thematic Climate Data Record (CDR) includes more than 33 years of surface temperature, surface albedo, surface and the Top Of the Atmosphere (TOA) shortwave and longwave radiative fluxes, cloud properties (amount, phase, particle size, optical depth,top pressure and temperature, surface and TOA radiative effect), and ice thickness and age. The APP-x CDR has twice daily data at local solar times of 14 and 04(02) for the Arctic(Antarctic) at a spatial resolution of 25 km for both poles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time2][columns][rows]):\ncdr_surface_temperature (NOAA CDR of surface skin temperature, K)\ncdr_surface_albedo (NOAA CDR of surface broadband albedo, 1)\ncdr_surface_downwelling_shortwave_flux (NOAA CDR of surface downwelling shortwave radiative flux, W m-2)\ncdr_surface_downwelling_longwave_flux (NOAA CDR of surface downwelling longwave radiative flux, W m-2)\ncdr_surface_upwelling_shortwave_flux (NOAA CDR of surface upwelling shortwave radiative flux, W m-2)\ncdr_surface_upwelling_longwave_flux (NOAA CDR of surface upwelling longwave radiative flux, W m-2)\ncdr_cloud_binary_mask (NOAA CDR of cloud mask, 1)\ncdr_sea_ice_thickness (NOAA CDR of sea ice thickness, m)\ncdr_toa_net_downward_shortwave_flux (NOAA CDR of TOA net downward shortwave radiative flux, W m-2)\ncdr_toa_outgoing_shortwave_flux (NOAA CDR of TOA outgoing shortwave radiative flux, W m-2)\ncdr_toa_outgoing_longwave_flux (NOAA CDR of TOA outgoing longwave radiative flux, W m-2)\nsurface_type (1)\ncloud_particle_phase (1)\ncloud_particle_radius (microns)\ncloud_optical_depth (1)\ncloud_top_pressure (hPa)\ncloud_top_temperature (K)\ncloud_type (1)\nsurface_shortwave_cloud_radiative_forcing (W m-2)\nsurface_longwave_cloud_radiative_forcing (W m-2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0f24_2f8c_d159/index.json", "https://www.ngdc.noaa.gov/thredds/dodsC/arctic/Polar-APP-X_v01r01_Nhem_1400_d20160731_c20160822.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0f24_2f8c_d159.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0f24_2f8c_d159&showErrors=false&email=", "Cooperative Institute for Meteorological Studies, University of Wisconsin at Madison", "noaa_ngdc_0f24_2f8c_d159"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0fe5_a4b9_3776", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0fe5_a4b9_3776.graph", "", "", "public", "Extended AVHRR Polar Pathfinder Fundamental Climate Data Record (APPx CDR) [Time][columns][rows]", "The Extended Advanced Very High Resolution Radiometer (AVHRR) Polar Pathfinder (APP-x) version-2 Thematic Climate Data Record (CDR) includes surface temperature, surface albedo, surface and the Top Of the Atmosphere (TOA) shortwave and longwave radiative fluxes, cloud properties (amount, phase, particle size, optical depth,top pressure and temperature, surface and TOA radiative effect), and ice thickness and age. The APP-x CDR has twice daily data at local solar times of 14 and 04(02) for the Arctic(Antarctic) at a spatial resolution of 25 km for both poles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time2][columns][rows]):\ncdr_surface_temperature (NOAA CDR of surface skin temperature, K)\ncdr_surface_albedo (NOAA CDR of surface broadband albedo, 1)\ncdr_surface_downwelling_shortwave_flux (NOAA CDR of surface downwelling shortwave radiative flux, W m-2)\ncdr_surface_downwelling_longwave_flux (NOAA CDR of surface downwelling longwave radiative flux, W m-2)\ncdr_surface_upwelling_shortwave_flux (NOAA CDR of surface upwelling shortwave radiative flux, W m-2)\ncdr_surface_upwelling_longwave_flux (NOAA CDR of surface upwelling longwave radiative flux, W m-2)\ncdr_cloud_binary_mask (NOAA CDR of cloud mask, 1)\ncdr_sea_ice_thickness (NOAA CDR of sea ice thickness, m)\ncdr_toa_net_downward_shortwave_flux (NOAA CDR of TOA net downward shortwave radiative flux, W m-2)\ncdr_toa_outgoing_shortwave_flux (NOAA CDR of TOA outgoing shortwave radiative flux, W m-2)\ncdr_toa_outgoing_longwave_flux (NOAA CDR of TOA outgoing longwave radiative flux, W m-2)\nsurface_type (1)\ncloud_particle_phase (1)\ncloud_particle_radius (microns)\ncloud_optical_depth (1)\ncloud_top_pressure (hPa)\ncloud_top_temperature (K)\ncloud_type (1)\nsurface_shortwave_cloud_radiative_forcing (W m-2)\nsurface_longwave_cloud_radiative_forcing (W m-2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0fe5_a4b9_3776/index.json", "https://www.ngdc.noaa.gov/thredds/dodsC/arctic/Polar-APP-X_v01r01_Nhem_1400_d20160801_c20160803.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0fe5_a4b9_3776.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0fe5_a4b9_3776&showErrors=false&email=", "Cooperative Institute for Meteorological Studies, University of Wisconsin at Madison", "noaa_ngdc_0fe5_a4b9_3776"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2ed0_2f19_5841", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2ed0_2f19_5841.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2ed0_2f19_5841/request", "", "public", "Fajardo, Puerto Rico Coastal Digital Elevation Model (fajardo 13 mhw 2007), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2ed0_2f19_5841_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2ed0_2f19_5841_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2ed0_2f19_5841/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2ed0_2f19_5841.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2ed0_2f19_5841&showErrors=false&email=", "NOAA", "noaa_ngdc_2ed0_2f19_5841"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e5f8_78b9_7b53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e5f8_78b9_7b53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e5f8_78b9_7b53/request", "", "public", "Fajardo, Puerto Rico Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, FajardoPR A)", "Fajardo, Puerto Rico Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e5f8_78b9_7b53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e5f8_78b9_7b53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e5f8_78b9_7b53/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e5f8_78b9_7b53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e5f8_78b9_7b53&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_e5f8_78b9_7b53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_213c_2811_aebc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_213c_2811_aebc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_213c_2811_aebc/request", "", "public", "Fajardo, Puerto Rico Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, FajardoPR B)", "Fajardo, Puerto Rico Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_213c_2811_aebc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_213c_2811_aebc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_213c_2811_aebc/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_213c_2811_aebc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_213c_2811_aebc&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_213c_2811_aebc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f6e7_06e7_9e40", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f6e7_06e7_9e40.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f6e7_06e7_9e40/request", "", "public", "Fajardo, Puerto Rico Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, FajardoPR C), 8.333333E-4\u00b0", "Fajardo, Puerto Rico Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f6e7_06e7_9e40_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f6e7_06e7_9e40_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f6e7_06e7_9e40/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f6e7_06e7_9e40.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f6e7_06e7_9e40&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_f6e7_06e7_9e40"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0c58_e96c_acf2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0c58_e96c_acf2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0c58_e96c_acf2/request", "", "public", "Florence, Oregon Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, FlorenceOR A), 0.02\u00b0", "Florence, Oregon Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0c58_e96c_acf2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0c58_e96c_acf2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0c58_e96c_acf2/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0c58_e96c_acf2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0c58_e96c_acf2&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_0c58_e96c_acf2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_156c_e001_4352", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_156c_e001_4352.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_156c_e001_4352/request", "", "public", "Florence, Oregon Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, FlorenceOR B)", "Florence, Oregon Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_156c_e001_4352_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_156c_e001_4352_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_156c_e001_4352/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_156c_e001_4352.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_156c_e001_4352&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_156c_e001_4352"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b16f_a365_fff4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b16f_a365_fff4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_b16f_a365_fff4/request", "", "public", "Florence, Oregon Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, FlorenceOR C)", "Florence, Oregon Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_b16f_a365_fff4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_b16f_a365_fff4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_b16f_a365_fff4/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_b16f_a365_fff4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_b16f_a365_fff4&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_b16f_a365_fff4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHcflh1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHcflh1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHcflh1day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, 2002-2006, DEPRECATED OLDER VERSION (1 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which they fluoresce can be decoupled from the rate of photosynthetic productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHcflh1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHcflh1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHcflh1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHcflh1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHcflh1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHcflh1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHcflh8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHcflh8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHcflh8day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, 2002-2013, DEPRECATED OLDER VERSION (8 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which they fluoresce can be decoupled from the rate of photosynthetic productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHcflh8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHcflh8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHcflh8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHcflh8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHcflh8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHcflh8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHcflhmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHcflhmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHcflhmday/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, 2002-2013, DEPRECATED OLDER VERSION (Monthly Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which they fluoresce can be decoupled from the rate of photosynthetic productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHcflhmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHcflhmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHcflhmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHcflhmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHcflhmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHcflhmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflh1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflh1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcflh1day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, East US, 2002-2012 (1 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcflh1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcflh1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcflh1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcflh1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcflh1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcflh1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflh14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflh14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcflh14day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, East US, 2002-2012 (14 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcflh14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcflh14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcflh14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcflh14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcflh14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcflh14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflh3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflh3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcflh3day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, East US, 2002-2012 (3 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcflh3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcflh3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcflh3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcflh3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcflh3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcflh3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflh8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflh8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcflh8day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, East US, 2002-2012 (8 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcflh8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcflh8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcflh8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcflh8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcflh8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcflh8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflhmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflhmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcflhmday/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, East US, 2002-2012 (Monthly Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcflhmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcflhmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcflhmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcflhmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcflhmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcflhmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcflh1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcflh1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGcflh1day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (1 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGcflh1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGcflh1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGcflh1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGcflh1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGcflh1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGcflh1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcflh14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcflh14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGcflh14day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (14 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGcflh14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGcflh14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGcflh14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGcflh14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGcflh14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGcflh14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcflh3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcflh3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGcflh3day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (3 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGcflh3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGcflh3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGcflh3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGcflh3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGcflh3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGcflh3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcflh8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcflh8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGcflh8day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (8 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGcflh8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGcflh8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGcflh8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGcflh8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGcflh8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGcflh8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcflhmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcflhmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGcflhmday/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (Monthly Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGcflhmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGcflhmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGcflhmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGcflhmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGcflhmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGcflhmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1cflh1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1cflh1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1cflh1day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (1 Day Composite)", "This dataset has monthly composites of Level 3, Standard Mapped Image, 4km, chlorophyll fluorescence data from NASA's Aqua Spacecraft, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which they fluoresce can be decoupled from the rate of photosynthetic productivity. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncflh (Normalized Fluorescence Line Height, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1cflh1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1cflh1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1cflh1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_nflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1cflh1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1cflh1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1cflh1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1cflh8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1cflh8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1cflh8day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (8 Day Composite)", "This dataset has monthly composites of Level 3, Standard Mapped Image, 4km, chlorophyll fluorescence data from NASA's Aqua Spacecraft, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which they fluoresce can be decoupled from the rate of photosynthetic productivity. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncflh (Normalized Fluorescence Line Height, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1cflh8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1cflh8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1cflh8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_nflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1cflh8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1cflh8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1cflh8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1cflhmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1cflhmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1cflhmday/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (Monthly Composite)", "This dataset has monthly composites of Level 3, Standard Mapped Image, 4km, chlorophyll fluorescence data from NASA's Aqua Spacecraft, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which they fluoresce can be decoupled from the rate of photosynthetic productivity. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncflh (Normalized Fluorescence Line Height, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1cflhmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1cflhmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1cflhmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_nflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1cflhmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1cflhmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1cflhmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflh1day/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (1 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflh1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflh1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflh1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflh1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflh1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflh1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflh1day_LonPM180/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (1 Day Composite), Lon+/-180", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflh1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflh1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflh1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflh1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflh1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflh1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflh14day/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (14 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflh14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflh14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflh14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflh14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflh14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflh14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflh14day_LonPM180/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (14 Day Composite), Lon+/-180", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflh14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflh14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflh14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflh14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflh14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflh14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflh3day/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (3 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflh3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflh3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflh3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflh3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflh3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflh3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflh3day_LonPM180/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (3 Day Composite), Lon+/-180", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflh3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflh3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflh3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflh3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflh3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflh3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflh8day/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (8 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflh8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflh8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflh8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflh8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflh8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflh8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflh8day_LonPM180/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (8 Day Composite), Lon+/-180", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflh8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflh8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflh8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflh8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflh8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflh8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflhmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflhmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflhmday/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (Monthly Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflhmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflhmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflhmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflhmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflhmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflhmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflhmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflhmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflhmday_LonPM180/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (Monthly Composite), Lon+/-180", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflhmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflhmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflhmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflhmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflhmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflhmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWind10", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWind10.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnWind10/request", "", "public", "FNMOC 10m Surface Winds, 360x181, Monthly", "Global monthly derived winds can be obtained for any point on the ocean\n(Northern Hemisphere: 1967 - present, Southern Hemisphere: 1981 - present).\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nu_mean (East-West Component of 10m Surface Wind, m s-1)\nv_mean (North-South Component of 10m Surface Wind, m s-1)\nuv_mag_mean (Magnitude of 10m Surface Wind, m s-1)\ntaux_mean (East-West Component of 10m Wind Stress, N m-2)\ntauy_mean (North-South Component of 10m Wind Stress, N m-2)\ncurl (Curl of Surface 10m Wind Stress, MPa m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnWind10_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnWind10_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnWind10/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/sfc_wind/sfc_wind.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnWind10.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnWind10&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnWind10"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWind10_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWind10_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnWind10_LonPM180/request", "", "public", "FNMOC 10m Surface Winds, 360x181, Monthly, Lon+/-180", "Global monthly derived winds can be obtained for any point on the ocean\n(Northern Hemisphere: 1967 - present, Southern Hemisphere: 1981 - present).\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nu_mean (East-West Component of 10m Surface Wind, m s-1)\nv_mean (North-South Component of 10m Surface Wind, m s-1)\nuv_mag_mean (Magnitude of 10m Surface Wind, m s-1)\ntaux_mean (East-West Component of 10m Wind Stress, N m-2)\ntauy_mean (North-South Component of 10m Wind Stress, N m-2)\ncurl (Curl of Surface 10m Wind Stress, MPa m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnWind10_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnWind10_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnWind10_LonPM180/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/sfc_wind/sfc_wind.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnWind10_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnWind10_LonPM180&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnWind10_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWind20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWind20.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnWind20/request", "", "public", "FNMOC 20m Surface Winds, 360x181, Monthly", "Global monthly derived winds can be obtained for any point on the ocean\n(Northern Hemisphere: 1967 - present, Southern Hemisphere: 1981 - present).\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nu_mean (East-West Component of 20m Surface Wind, m s-1)\nv_mean (North-South Component of 20m Surface Wind, m s-1)\nuv_mag_mean (Magnitude of 20m Surface Wind, m s-1)\ntaux_mean (East-West Component of 20m Wind Stress, N m-2)\ntauy_mean (North-South Component of 20m Wind Stress, N m-2)\ncurl (Curl of Surface 20m Wind Stress, MPa m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnWind20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnWind20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnWind20/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/sfc_wind/sfc_wind.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnWind20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnWind20&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnWind20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWind20_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWind20_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnWind20_LonPM180/request", "", "public", "FNMOC 20m Surface Winds, 360x181, Monthly, Lon+/-180", "Global monthly derived winds can be obtained for any point on the ocean\n(Northern Hemisphere: 1967 - present, Southern Hemisphere: 1981 - present).\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nu_mean (East-West Component of 20m Surface Wind, m s-1)\nv_mean (North-South Component of 20m Surface Wind, m s-1)\nuv_mag_mean (Magnitude of 20m Surface Wind, m s-1)\ntaux_mean (East-West Component of 20m Wind Stress, N m-2)\ntauy_mean (North-South Component of 20m Wind Stress, N m-2)\ncurl (Curl of Surface 20m Wind Stress, MPa m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnWind20_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnWind20_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnWind20_LonPM180/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/sfc_wind/sfc_wind.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnWind20_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnWind20_LonPM180&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnWind20_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFn500mb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFn500mb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFn500mb/request", "", "public", "FNMOC 500 mb Geopotential Height, 360x181, Monthly", "Monthly means of the FNMOC (Fleet Numerical Meteorology and Oceanography Center) 6-hourly analyzed geopotential height field on a 360 by 181 global spherical grid (1 degree). For more information on the models used to compute these data please see:\n\nRosmond, T. E., 1992: A prototype fully coupled Ocean-Atmosphere Prediction System, Oceanography Vol. 5, No. 1, 25-30.\n\nClancy, R. M., 1992: Operational Modeling: Ocean Modeling at the Fleet Numerical Oceanography Center, Oceanography Vol. 5, No. 1, 31-35.\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) to take advantage of the Navy's global oceanographic and meteorological databases. FNMOC produces operational forecasts of the state of the atmosphere and the ocean several times daily and maintains archives of several important parameters, such as sea level pressure and temperature. ERD derives a number of well-known environmental data and index products which are routinely distributed to researchers at many state and federal laboratories, as well as to academic and international researchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nz_mean (Geopotential height at 500mb, gp)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFn500mb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFn500mb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFn500mb/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/500mb_height/500mb_height.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFn500mb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFn500mb&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFn500mb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFn500mb_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFn500mb_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFn500mb_LonPM180/request", "", "public", "FNMOC 500 mb Geopotential Height, 360x181, Monthly, Lon+/-180", "Monthly means of the FNMOC (Fleet Numerical Meteorology and Oceanography Center) 6-hourly analyzed geopotential height field on a 360 by 181 global spherical grid (1 degree). For more information on the models used to compute these data please see:\n\nRosmond, T. E., 1992: A prototype fully coupled Ocean-Atmosphere Prediction System, Oceanography Vol. 5, No. 1, 25-30.\n\nClancy, R. M., 1992: Operational Modeling: Ocean Modeling at the Fleet Numerical Oceanography Center, Oceanography Vol. 5, No. 1, 31-35.\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) to take advantage of the Navy's global oceanographic and meteorological databases. FNMOC produces operational forecasts of the state of the atmosphere and the ocean several times daily and maintains archives of several important parameters, such as sea level pressure and temperature. ERD derives a number of well-known environmental data and index products which are routinely distributed to researchers at many state and federal laboratories, as well as to academic and international researchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nz_mean (Geopotential height at 500mb, gp)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFn500mb_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFn500mb_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFn500mb_LonPM180/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/500mb_height/500mb_height.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFn500mb_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFn500mb_LonPM180&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFn500mb_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnTran6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnTran6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnTran6/request", "", "public", "FNMOC Ekman Transports, 360x180, 6-hourly", "Ekman transports and wind stress curl calculated from geostrophic winds based\non FNMOC 360x180 (1-degree) analyzed fields of sea level pressure. This\ndataset has data prior to the current month.\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncurl (Curl of Surface Wind Stress, MPa m-1)\nektrx (East-West Component of Ekman Transport, kg m-1 s-1)\nektry (North-South Component of Ekman Transport, kg m-1 s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnTran6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnTran6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnTran6/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/holdings.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnTran6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnTran6&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnTran6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnTran6_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnTran6_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnTran6_LonPM180/request", "", "public", "FNMOC Ekman Transports, 360x180, 6-hourly, Lon+/-180", "Ekman transports and wind stress curl calculated from geostrophic winds based\non FNMOC 360x180 (1-degree) analyzed fields of sea level pressure. This\ndataset has data prior to the current month.\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncurl (Curl of Surface Wind Stress, MPa m-1)\nektrx (East-West Component of Ekman Transport, kg m-1 s-1)\nektry (North-South Component of Ekman Transport, kg m-1 s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnTran6_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnTran6_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnTran6_LonPM180/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/holdings.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnTran6_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnTran6_LonPM180&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnTran6_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnOscursLL", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnOscursLL.graph", "", "", "public", "FNMOC Sea Level Pressure for input to OSCURS Model, Longitude and Latitude", "This dataset is used to convert x and y from the OSCURS model into longitude\nand latitude. The OSCURS numerical model is a research tool that allows\noceanographers and fisheries scientists to perform retrospective analyses of\ndaily ocean surface currents anywhere in a 90-km ocean-side grid from Baja\nCalifornia to the Bering Strait.\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnOscursLL/index.json", "https://www.afsc.noaa.gov/REFM/docs/oscurs/get_to_know.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnOscursLL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnOscursLL&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnOscursLL"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnPres6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnPres6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnPres6/request", "", "public", "FNMOC Sea Level Pressure, 360x180, 6-hourly", "Sea level pressure based on the FNMOC 360x180 (1-degree) analyzed fields.\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\np_msl (Pressure Reduced To Mean Sea Level, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnPres6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnPres6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnPres6/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/holdings.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnPres6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnPres6&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnPres6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnPres6_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnPres6_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnPres6_LonPM180/request", "", "public", "FNMOC Sea Level Pressure, 360x180, 6-hourly, Lon+/-180", "Sea level pressure based on the FNMOC 360x180 (1-degree) analyzed fields.\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\np_msl (Pressure Reduced To Mean Sea Level, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnPres6_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnPres6_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnPres6_LonPM180/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/holdings.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnPres6_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnPres6_LonPM180&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnPres6_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWPr", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWPr.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnWPr/request", "", "public", "FNMOC Wind and Ekman Transport Data, 360x180, Monthly, from 6-hr Pressure", "Global monthly derived winds and Ekman transports can be obtained for any\npoint on the ocean (Northern Hemisphere: 1967 - present, Southern Hemisphere:\n1981 - present).\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npmsl (Pressure Reduced To MSL, Mb)\nu_mean (East-West Component of Surface Wind, m s-1)\nv_mean (North-South Component of Surface Wind, m s-1)\nuv_mag_mean (Magnitude of Surface Wind, m s-1)\ntaux_mean (East-West Component of Wind Stress, N m-2)\ntauy_mean (North-South Component of Wind Stress, N m-2)\ncurl (Curl of Surface Wind Stress, MPa m-1)\nektrx (East-West Component of Ekman Transport, kg m-1 s-1)\nektry (North-South Component of Ekman Transport, kg m-1 s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnWPr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnWPr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnWPr/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/holdings.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnWPr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnWPr&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnWPr"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWPr_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWPr_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnWPr_LonPM180/request", "", "public", "FNMOC Wind and Ekman Transport Data, 360x180, Monthly, from 6-hr Pressure, Lon+/-180", "Global monthly derived winds and Ekman transports can be obtained for any\npoint on the ocean (Northern Hemisphere: 1967 - present, Southern Hemisphere:\n1981 - present).\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npmsl (Pressure Reduced To MSL, Mb)\nu_mean (East-West Component of Surface Wind, m s-1)\nv_mean (North-South Component of Surface Wind, m s-1)\nuv_mag_mean (Magnitude of Surface Wind, m s-1)\ntaux_mean (East-West Component of Wind Stress, N m-2)\ntauy_mean (North-South Component of Wind Stress, N m-2)\ncurl (Curl of Surface Wind Stress, MPa m-1)\nektrx (East-West Component of Ekman Transport, kg m-1 s-1)\nektry (North-South Component of Ekman Transport, kg m-1 s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnWPr_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnWPr_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnWPr_LonPM180/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/holdings.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnWPr_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnWPr_LonPM180&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnWPr_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnTransMon", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnTransMon.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnTransMon/request", "", "public", "FNMOC Wind and Ekman Transport Data, 360x181, 6-hourly for This Month", "Global monthly derived winds and transports can be obtained for any point on\nthe ocean (Northern Hemisphere: 1967 - present, Southern Hemisphere:\n1981 - present).\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nP_msl (Pressure Reduced To Mean Sea Level, hPa)\nu (East-West Component of Surface Wind, m s-1)\nv (North-South Component of Surface Wind, m s-1)\nuv_mag (Magnitude of Surface Wind, m s-1)\ntaux (East-West Component of Wind Stress, N m-2)\ntauy (North-South Component of Wind Stress, N m-2)\ncurl (Curl of Surface Wind Stress, MPa m-1)\nektrx (East-West Component of Ekman Transport, kg m-1 s-1)\nektry (North-South Component of Ekman Transport, kg m-1 s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnTransMon_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnTransMon_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnTransMon/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/holdings.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnTransMon.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnTransMon&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnTransMon"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnTransMon_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnTransMon_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnTransMon_LonPM180/request", "", "public", "FNMOC Wind and Ekman Transport Data, 360x181, 6-hourly for This Month, Lon+/-180", "Global monthly derived winds and transports can be obtained for any point on\nthe ocean (Northern Hemisphere: 1967 - present, Southern Hemisphere:\n1981 - present).\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nP_msl (Pressure Reduced To Mean Sea Level, hPa)\nu (East-West Component of Surface Wind, m s-1)\nv (North-South Component of Surface Wind, m s-1)\nuv_mag (Magnitude of Surface Wind, m s-1)\ntaux (East-West Component of Wind Stress, N m-2)\ntauy (North-South Component of Wind Stress, N m-2)\ncurl (Curl of Surface Wind Stress, MPa m-1)\nektrx (East-West Component of Ekman Transport, kg m-1 s-1)\nektry (North-South Component of Ekman Transport, kg m-1 s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnTransMon_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnTransMon_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnTransMon_LonPM180/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/holdings.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnTransMon_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnTransMon_LonPM180&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnTransMon_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c116_b3e0_5db0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c116_b3e0_5db0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c116_b3e0_5db0/request", "", "public", "Fort Bragg, California Coastal Digital Elevation Model (fort bragg 13 mhw 2012), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c116_b3e0_5db0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c116_b3e0_5db0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c116_b3e0_5db0/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c116_b3e0_5db0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c116_b3e0_5db0&showErrors=false&email=", "NOAA", "noaa_ngdc_c116_b3e0_5db0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_961c_b271_6de0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_961c_b271_6de0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_961c_b271_6de0/request", "", "public", "Fort Bragg, California Coastal Digital Elevation Model (fort bragg 13 navd88 2012), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_961c_b271_6de0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_961c_b271_6de0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_961c_b271_6de0/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_961c_b271_6de0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_961c_b271_6de0&showErrors=false&email=", "NOAA", "noaa_ngdc_961c_b271_6de0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfnt1day/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2000-present, EXPERIMENTAL (1 Day Composite)", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfnt1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfnt1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfnt1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfnt1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfnt1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfnt1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfnt1day_LonPM180/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2000-present, EXPERIMENTAL (1 Day Composite), Lon+/-180", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfnt1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfnt1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfnt1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfnt1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfnt1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfnt1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt10day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt10day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfnt10day/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2001-present, EXPERIMENTAL (10 Day Composite)", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfnt10day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfnt10day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfnt10day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfnt10day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfnt10day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfnt10day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt10day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt10day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfnt10day_LonPM180/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2001-present, EXPERIMENTAL (10 Day Composite), Lon+/-180", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfnt10day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfnt10day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfnt10day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfnt10day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfnt10day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfnt10day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfntmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfntmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfntmday/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2001-present, EXPERIMENTAL (Monthly Composite)", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfntmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfntmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfntmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfntmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfntmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfntmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfntmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfntmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfntmday_LonPM180/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2001-present, EXPERIMENTAL (Monthly Composite), Lon+/-180", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfntmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfntmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfntmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfntmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfntmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfntmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfnt14day/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2005-present, EXPERIMENTAL (14 Day Composite)", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfnt14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfnt14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfnt14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfnt14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfnt14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfnt14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfnt14day_LonPM180/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2005-present, EXPERIMENTAL (14 Day Composite), Lon+/-180", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfnt14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfnt14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfnt14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfnt14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfnt14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfnt14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt5day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt5day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfnt5day/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2007-present, EXPERIMENTAL (5 Day Composite)", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfnt5day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfnt5day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfnt5day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfnt5day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfnt5day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfnt5day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt5day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt5day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfnt5day_LonPM180/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2007-present, EXPERIMENTAL (5 Day Composite), Lon+/-180", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfnt5day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfnt5day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfnt5day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfnt5day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfnt5day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfnt5day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8cf5_2555_5a65", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8cf5_2555_5a65.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8cf5_2555_5a65/request", "", "public", "Galveston Bay (G260) Bathymetric Digital Elevation Model (galveston bay G260 2018), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8cf5_2555_5a65_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8cf5_2555_5a65_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8cf5_2555_5a65/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8cf5_2555_5a65.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8cf5_2555_5a65&showErrors=false&email=", "NOAA", "noaa_ngdc_8cf5_2555_5a65"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1184_e5e9_7f4e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1184_e5e9_7f4e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1184_e5e9_7f4e/request", "", "public", "Galveston, Texas Coastal Digital Elevation Model (Top Dataset, Regional, galveston 13 mhw 2007), 9.259259E-5\u00b0", "Galveston, Texas Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1184_e5e9_7f4e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1184_e5e9_7f4e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1184_e5e9_7f4e/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1184_e5e9_7f4e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1184_e5e9_7f4e&showErrors=false&email=", "NOAA", "noaa_ngdc_1184_e5e9_7f4e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9b2c_f9f4_00b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9b2c_f9f4_00b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9b2c_f9f4_00b5/request", "", "public", "Garibaldi, Oregon Coastal Digital Elevation Model (garibaldi 13 mhw 2013), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9b2c_f9f4_00b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9b2c_f9f4_00b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9b2c_f9f4_00b5/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9b2c_f9f4_00b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9b2c_f9f4_00b5&showErrors=false&email=", "NOAA", "noaa_ngdc_9b2c_f9f4_00b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_dfd1_e3d8_9d19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_dfd1_e3d8_9d19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_dfd1_e3d8_9d19/request", "", "public", "Garibaldi, Oregon Coastal Digital Elevation Model (garibaldi 13 navd88 2013), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_dfd1_e3d8_9d19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_dfd1_e3d8_9d19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_dfd1_e3d8_9d19/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_dfd1_e3d8_9d19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_dfd1_e3d8_9d19&showErrors=false&email=", "NOAA", "noaa_ngdc_dfd1_e3d8_9d19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_dea8_603e_4af2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_dea8_603e_4af2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_dea8_603e_4af2/request", "", "public", "Garibaldi, Oregon Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, GaribaldiOR A), 0.02\u00b0", "Garibaldi, Oregon Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_dea8_603e_4af2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_dea8_603e_4af2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_dea8_603e_4af2/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_dea8_603e_4af2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_dea8_603e_4af2&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_dea8_603e_4af2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bd08_8b22_55da", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bd08_8b22_55da.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_bd08_8b22_55da/request", "", "public", "Garibaldi, Oregon Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, GaribaldiOR B)", "Garibaldi, Oregon Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_bd08_8b22_55da_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_bd08_8b22_55da_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_bd08_8b22_55da/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_bd08_8b22_55da.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_bd08_8b22_55da&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_bd08_8b22_55da"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_15a4_a8ce_b727", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_15a4_a8ce_b727.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_15a4_a8ce_b727/request", "", "public", "Garibaldi, Oregon Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, GaribaldiOR C)", "Garibaldi, Oregon Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_15a4_a8ce_b727_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_15a4_a8ce_b727_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_15a4_a8ce_b727/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_15a4_a8ce_b727.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_15a4_a8ce_b727&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_15a4_a8ce_b727"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_856c_d040_ccf7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_856c_d040_ccf7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_856c_d040_ccf7/request", "", "public", "GHCN version 2 Land Precipitation Anomalies (Top Dataset, ghcngridded, precip.mon.anom), 5.0\u00b0, 1900-2015", "Global Historical Climatology Network (GHCN) version 2 Land Precipitation Anomalies (Top Dataset, ghcngridded, precip.mon.anom)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GHCN V2 Gridded Precipitation, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_856c_d040_ccf7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_856c_d040_ccf7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_856c_d040_ccf7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ghcnv2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_856c_d040_ccf7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_856c_d040_ccf7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_856c_d040_ccf7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a52_974c_51c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a52_974c_51c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a52_974c_51c3/request", "", "public", "GHCN version 3 Land Temperature Anomalies from GHCN-M V3.2.1 (air.mon.anom), 5.0\u00b0, 1880-present", "Global Historical Climatology Network (GHCN) version 3 Land Temperature Anomalies from GHCN-M V3.2.1 (Top Dataset, ghcngridded, air.mon.anom)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (GHCN V3.2.1 Gridded Air Temperature Anomalies, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a52_974c_51c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a52_974c_51c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a52_974c_51c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ghcnv2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a52_974c_51c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a52_974c_51c3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6a52_974c_51c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplG1SST", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplG1SST.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplG1SST/request", "", "public", "GHRSST Global 1-km Sea Surface Temperature (G1SST), Global, 0.01 Degree, 2010-2017, Daily", "A daily, global Sea Surface Temperature (SST) data set is produced at 1-km (also known as ultra-high resolution) by the JPL ROMS (Regional Ocean Modeling System) group. The input SST data sets are derived from the Global High-Resolution Sea Surface Temperature (SST) Pilot Project (GHRSST-PP). For details, see\nhttps://podaac.jpl.nasa.gov/dataset/JPL_OUROCEAN-L4UHfnd-GLOB-G1SST .\nThis dataset is part of the Multi-sensor Improved Sea Surface Temperatures (MISST) project, which is part of the Group for High-Resolution Sea Surface Temperature (GHRSST) project.\n\nDISCONTINUED - The creators of the jplG1SST dataset stopped production in late Oct 2017. There are more recent files available from JPL, but they are flawed so they are not included in the dataset at ERD. You might consider using the similar jplMURSST41 dataset, \nhttps://coastwatch.pfeg.noaa.gov/erddap/search/index.html?searchFor=jplMURSST41\nwhich has the additional advantage of offering related climatology and anomaly datasets.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST (Analysed Sea Surface Temperature, degree_C)\nmask (sea/land/lake/ice field composite mask)\nanalysis_error (Estimated Error Standard Deviation of Analysed SST, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplG1SST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplG1SST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplG1SST/index.json", "https://podaac.jpl.nasa.gov/dataset/JPL_OUROCEAN-L4UHfnd-GLOB-G1SST", "http://upwell.pfeg.noaa.gov/erddap/rss/jplG1SST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplG1SST&showErrors=false&email=", "NASA JPL", "jplG1SST"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_aa77_f42f_c5ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_aa77_f42f_c5ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_aa77_f42f_c5ff/request", "", "public", "GHRSST, Group for High Resolution SST, AVHRR SST METOP A GLB-OSISAF-l3C-V1.0, 2013-2016", "Sea Surface Temperature. The GLB L3C product derived from METOP A Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (sea surface subskin temperature, degree_C)\nsst_dtime (time difference from reference time, seconds)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (deviation from SST analysis or reference climatology, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nadi_dtime_from_sst (time difference of ADI data from sst measurement, hour)\nsources_of_adi (sources of aerosol dynamic indicator)\nl2p_flags\nquality_level (quality level of SST pixel)\nsatellite_zenith_angle (angular_degree)\nsolar_zenith_angle (angular_degree)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_aa77_f42f_c5ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_aa77_f42f_c5ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_aa77_f42f_c5ff/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_METOP_A_GLB-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_aa77_f42f_c5ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_aa77_f42f_c5ff&showErrors=false&email=", "OSISAF", "nasa_jpl_aa77_f42f_c5ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_cf28_dd32_0511", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_cf28_dd32_0511.graph", "", "", "public", "GHRSST, Group for High Resolution SST, AVHRR SST METOP A NAR-OSISAF-L3C-v1.0 [nj][ni]", "Sea Surface Temperature. The NAR L3C product derived from METOP A Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nj][ni]):\nlat (latitude, degrees_north)\nlon (longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_cf28_dd32_0511/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_METOP_A_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_cf28_dd32_0511.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_cf28_dd32_0511&showErrors=false&email=", "OSISAF", "nasa_jpl_cf28_dd32_0511"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_ffac_93d5_8d58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_ffac_93d5_8d58.graph", "", "", "public", "GHRSST, Group for High Resolution SST, AVHRR SST METOP A NAR-OSISAF-L3C-v1.0 [time][nj][ni], 2013-2016", "Sea Surface Temperature. The NAR L3C product derived from METOP A Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][nj][ni]):\nsea_surface_temperature (sea surface subskin temperature, degree_C)\nsst_dtime (time difference from reference time, seconds)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (deviation from SST analysis or reference climatology, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nadi_dtime_from_sst (time difference of ADI data from sst measurement, hour)\nsources_of_adi (sources of aerosol dynamic indicator)\nl2p_flags\nquality_level (quality level of SST pixel)\nsatellite_zenith_angle (angular_degree)\nsolar_zenith_angle (angular_degree)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_ffac_93d5_8d58/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_METOP_A_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_ffac_93d5_8d58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_ffac_93d5_8d58&showErrors=false&email=", "OSISAF", "nasa_jpl_ffac_93d5_8d58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_33ad_9bfb_a108", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_33ad_9bfb_a108.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_33ad_9bfb_a108/request", "", "public", "GHRSST, Group for High Resolution SST, AVHRR SST METOP B GLB-OSISAF-L3C-v1.0, 2016-present", "Sea Surface Temperature. The GLB L3C product derived from METOP B Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (sea surface subskin temperature, degree_C)\nsst_dtime (time difference from reference time, seconds)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (deviation from SST analysis or reference climatology, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nadi_dtime_from_sst (time difference of ADI data from sst measurement, hour)\nsources_of_adi (sources of aerosol dynamic indicator)\nl2p_flags\nquality_level (quality level of SST pixel)\nsatellite_zenith_angle (angular_degree)\nsolar_zenith_angle (angular_degree)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_33ad_9bfb_a108_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_33ad_9bfb_a108_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_33ad_9bfb_a108/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_METOP_B_GLB-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_33ad_9bfb_a108.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_33ad_9bfb_a108&showErrors=false&email=", "OSISAF", "nasa_jpl_33ad_9bfb_a108"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_5f74_f20b_b38c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_5f74_f20b_b38c.graph", "", "", "public", "GHRSST, Group for High Resolution SST, AVHRR SST METOP B NAR-OSISAF-L3C-v1.0 [nj][ni]", "Sea Surface Temperature. The NAR L3C product derived from METOP B Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nj][ni]):\nlat (latitude, degrees_north)\nlon (longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_5f74_f20b_b38c/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_METOP_B_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_5f74_f20b_b38c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_5f74_f20b_b38c&showErrors=false&email=", "OSISAF", "nasa_jpl_5f74_f20b_b38c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_ffcc_ca34_3577", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_ffcc_ca34_3577.graph", "", "", "public", "GHRSST, Group for High Resolution SST, AVHRR SST METOP B NAR-OSISAF-L3C-v1.0 [time][nj][ni], 2016-present", "Sea Surface Temperature. The NAR L3C product derived from METOP B Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][nj][ni]):\nsea_surface_temperature (sea surface subskin temperature, degree_C)\nsst_dtime (time difference from reference time, seconds)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (deviation from SST analysis or reference climatology, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nadi_dtime_from_sst (time difference of ADI data from sst measurement, hour)\nsources_of_adi (sources of aerosol dynamic indicator)\nl2p_flags\nquality_level (quality level of SST pixel)\nsatellite_zenith_angle (angular_degree)\nsolar_zenith_angle (angular_degree)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_ffcc_ca34_3577/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_METOP_B_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_ffcc_ca34_3577.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_ffcc_ca34_3577&showErrors=false&email=", "OSISAF", "nasa_jpl_ffcc_ca34_3577"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_aacc_0452_c7d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_aacc_0452_c7d0.graph", "", "", "public", "GHRSST, Group for High Resolution SST, AVHRR SST NOAA19 NAR-OSISAF-L3C-v1.0 [nj][ni]", "Sea Surface Temperature. The NAR L3C product derived from NOAA19 Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nj][ni]):\nlat (latitude, degrees_north)\nlon (longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_aacc_0452_c7d0/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_NOAA19_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_aacc_0452_c7d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_aacc_0452_c7d0&showErrors=false&email=", "OSISAF", "nasa_jpl_aacc_0452_c7d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_9c87_fe50_5f9a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_9c87_fe50_5f9a.graph", "", "", "public", "GHRSST, Group for High Resolution SST, AVHRR SST NOAA19 NAR-OSISAF-L3C-v1.0 [time][nj][ni], 2013", "Sea Surface Temperature. The NAR L3C product derived from NOAA19 Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][nj][ni]):\nsea_surface_temperature (sea surface subskin temperature, degree_C)\nsst_dtime (time difference from reference time, seconds)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (deviation from SST analysis or reference climatology, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nadi_dtime_from_sst (time difference of ADI data from sst measurement, hour)\nsources_of_adi (sources of aerosol dynamic indicator)\nl2p_flags\nquality_level (quality level of SST pixel)\nsatellite_zenith_angle (angular_degree)\nsolar_zenith_angle (angular_degree)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_9c87_fe50_5f9a/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_NOAA19_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_9c87_fe50_5f9a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_9c87_fe50_5f9a&showErrors=false&email=", "OSISAF", "nasa_jpl_9c87_fe50_5f9a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_72a3_eae2_0c14", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_72a3_eae2_0c14.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_72a3_eae2_0c14/request", "", "public", "GHRSST, Group for High Resolution SST, CMC0.2deg-CMC-L4-GLOB-v2.0, 1991-2017", "Canadian Meteorological Centre (CMC) 0.2 deg global sea surface temperature analysis. Applies the method of statistical interpolation to assimilate observations from in situ and satellite sources using, as the background, the analysis valid 24 hours prior assuming persistence of the anomalies.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (sea/land/lake/ice field composite mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_72a3_eae2_0c14_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_72a3_eae2_0c14_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_72a3_eae2_0c14/index.json", "https://podaac.jpl.nasa.gov/dataset/CMC0.2deg-CMC-L4-GLOB-v2.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_72a3_eae2_0c14.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_72a3_eae2_0c14&showErrors=false&email=", "CMC", "nasa_jpl_72a3_eae2_0c14"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3468_7d7f_3f3c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3468_7d7f_3f3c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_3468_7d7f_3f3c/request", "", "public", "GHRSST, Group for High Resolution SST, GOES16-OSISAF-L3C-v1.0 (SST), 0.049999997\u00b0, 2017-present", "Sea Surface Temperature. The L3C product derived from GOES16/ABI brightness temperatures.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (sea surface subskin temperature, degree_C)\nsst_dtime (time difference from reference time, seconds)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (deviation from SST analysis or reference climatology, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nadi_dtime_from_sst (time difference of ADI data from sst measurement, hour)\nsources_of_adi (sources of aerosol dynamic indicator)\nl2p_flags\nquality_level (quality level of SST pixel)\nsatellite_zenith_angle (angular_degree)\nsolar_zenith_angle (angular_degree)\nor_latitude (original latitude of the SST value, degrees_north)\nor_longitude (original longitude of the SST value, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_3468_7d7f_3f3c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_3468_7d7f_3f3c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_3468_7d7f_3f3c/index.json", "https://podaac.jpl.nasa.gov/dataset/GOES16-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_3468_7d7f_3f3c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_3468_7d7f_3f3c&showErrors=false&email=", "OSISAF", "nasa_jpl_3468_7d7f_3f3c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_dde5_3be1_897b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_dde5_3be1_897b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_dde5_3be1_897b/request", "", "public", "GHRSST, Group for High Resolution SST, MUR-JPL-L4-GLOB-v4.1 (Daily MUR SST, Final product), 0.01\u00b0, 2002-present", "Daily Multi-scale Ultra-high Resolution (MUR) Sea Surface Temperature (SST), Final product. A merged, multi-sensor L4 Foundation SST analysis product from Jet Propulsion Laboratory (JPL).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nmask (sea/land field composite mask)\nsea_ice_fraction (sea ice area fraction, fraction (between 0 and 1))\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_dde5_3be1_897b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_dde5_3be1_897b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_dde5_3be1_897b/index.json", "https://podaac.jpl.nasa.gov/dataset/MUR-JPL-L4-GLOB-v4.1", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_dde5_3be1_897b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_dde5_3be1_897b&showErrors=false&email=", "Jet Propulsion Laboratory", "nasa_jpl_dde5_3be1_897b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_61b9_f6bc_3913", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_61b9_f6bc_3913.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_61b9_f6bc_3913/request", "", "public", "GHRSST, Group for High Resolution SST, MW IR OI-REMSS-L4-GLOB-v5.0, 0.08789057\u00b0, 2002-present", "Analysed foundation sea surface temperature over the global ocean. A merged, multi-sensor L4 foundation SST product from Remote Sensing Systems\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (land sea ice lake bit mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_61b9_f6bc_3913_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_61b9_f6bc_3913_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_61b9_f6bc_3913/index.json", "https://podaac.jpl.nasa.gov/dataset/MW_IR_OI-REMSS-L4-GLOB-v5.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_61b9_f6bc_3913.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_61b9_f6bc_3913&showErrors=false&email=", "REMSS", "nasa_jpl_61b9_f6bc_3913"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_08dd_483f_d0c7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_08dd_483f_d0c7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_08dd_483f_d0c7/request", "", "public", "GHRSST, Group for High Resolution SST, OISST HR NRT-GOS-L4-BLK-v2.0, 0.0625\u00b0, 2008-present", "Black Sea SST Analysis, L4, 1/16deg daily. Daily gap-free maps (L4) at 0.0625deg. x 0.0625deg. horizontal resolution over the Black Sea. The data (for day=dd) are obtained from infra-red measurements collected [since 7pm of day=dd-1 to 7am of day=dd] by satellite radiometers and statistical interpolation. It is the Copernicus sea surface temperature nominal operational product for the Black Sea in DT mode.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (sea/land/lake/ice field composite mask, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_08dd_483f_d0c7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_08dd_483f_d0c7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_08dd_483f_d0c7/index.json", "https://podaac.jpl.nasa.gov/dataset/OISST_HR_NRT-GOS-L4-BLK-v2.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_08dd_483f_d0c7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_08dd_483f_d0c7&showErrors=false&email=", "GOS", "nasa_jpl_08dd_483f_d0c7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_429b_ae8d_8e97", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_429b_ae8d_8e97.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_429b_ae8d_8e97/request", "", "public", "GHRSST, Group for High Resolution SST, OISST HR NRT-GOS-L4-MED-v2.0, 0.0625\u00b0, 2008-present", "Mediterranean SST Analysis, L4, 1/16deg daily. Daily gap-free maps (L4) at 0.0625deg. x 0.0625deg. horizontal resolution over the Mediterranean Sea. The data (for day=dd) are obtained from infra-red measurements collected [since 7pm of day=dd-1 to 7am of day=dd] by satellite radiometers and statistical interpolation.It is the Copernicus sea surface temperature nominal operational product for the Mediterranean Sea in DT mode.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (sea/land/lake/ice field composite mask, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_429b_ae8d_8e97_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_429b_ae8d_8e97_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_429b_ae8d_8e97/index.json", "https://podaac.jpl.nasa.gov/dataset/OISST_HR_NRT-GOS-L4-MED-v2.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_429b_ae8d_8e97.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_429b_ae8d_8e97&showErrors=false&email=", "GOS", "nasa_jpl_429b_ae8d_8e97"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_1140_fb15_f634", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_1140_fb15_f634.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_1140_fb15_f634/request", "", "public", "GHRSST, Group for High Resolution SST, REYNOLDS NCDC L4 MONTHLY V4, 2.0\u00b0, 1854-present", "NOAA ERSSTv4 (in situ only). ERSST.v4 is developped based on v3b after revisions of 11 parameters using updated data sets and advanced knowledge of ERSST analysis\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsst (Extended reconstructed sea surface temperature, degree_C)\nssta (Extended reconstructed SST anomalies, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_1140_fb15_f634_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_1140_fb15_f634_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_1140_fb15_f634/index.json", "https://podaac.jpl.nasa.gov/dataset/REYNOLDS_NCDC_L4_MONTHLY_V4", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_1140_fb15_f634.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_1140_fb15_f634&showErrors=false&email=", "NOAA/NESDIS/NCEI/CCOG", "nasa_jpl_1140_fb15_f634"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_0ddb_e7e0_fe9e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_0ddb_e7e0_fe9e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_0ddb_e7e0_fe9e/request", "", "public", "GHRSST, Group for High Resolution SST, REYNOLDS NCDC L4 MONTHLY V5, 2.0\u00b0, 1854-present", "NOAA ERSSTv5 (in situ only). ERSST.v5 is developped based on v4 after revisions of 8 parameters using updated data sets and advanced knowledge of ERSST analysis\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsst (Extended reconstructed sea surface temperature, degree_C)\nssta (Extended reconstructed SST anomalies, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_0ddb_e7e0_fe9e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_0ddb_e7e0_fe9e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_0ddb_e7e0_fe9e/index.json", "https://podaac.jpl.nasa.gov/dataset/REYNOLDS_NCDC_L4_MONTHLY_V5", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_0ddb_e7e0_fe9e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_0ddb_e7e0_fe9e&showErrors=false&email=", "NOAA/NESDIS/NCEI/CCOG", "nasa_jpl_0ddb_e7e0_fe9e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_abc2_74fa_55b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_abc2_74fa_55b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_abc2_74fa_55b5/request", "", "public", "GHRSST, Group for High Resolution SST, VIIRS NPP-OSPO-L3U-v2.41 (VIIRS L3U SST), 0.02\u00b0, 2017-present", "Visible and Infrared Imager/Radiometer Suite (VIIRS) L3U SST. Sea surface temperature retrievals produced by NOAA/NESDIS/Office of Satellite and Product Operations (OSPO) office from VIIRS sensor\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nquality_level (quality level of SST pixel)\nor_number_of_pixels (number of pixels from the L2Ps contributing to the SST value, 1)\ndt_analysis (deviation from SST reference, degree_C)\nsatellite_zenith_angle (degrees)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\nwind_speed (m s-1)\nsst_dtime (time difference from reference time, seconds)\nl2p_flags\nsea_surface_temperature (sea surface sub-skin temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_abc2_74fa_55b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_abc2_74fa_55b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_abc2_74fa_55b5/index.json", "https://podaac.jpl.nasa.gov/dataset/VIIRS_NPP-OSPO-L3U-v2.41", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_abc2_74fa_55b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_abc2_74fa_55b5&showErrors=false&email=", "NOAA/NESDIS/OSPO", "nasa_jpl_abc2_74fa_55b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_4ed7_d477_1428", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_4ed7_d477_1428.graph", "", "", "public", "GHRSST, Group for High Resolution SST, VIIRS SST NPP NAR-OSISAF-L3C-v1.0 [nj][ni]", "Sea Surface Temperature. The NAR L3C product derived from National Polar-orbiting Partnership (NPP) Visible and Infrared Imager/Radiometer Suite (VIIRS) brightness temperatures.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nj][ni]):\nlat (latitude, degrees_north)\nlon (longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_4ed7_d477_1428/index.json", "https://podaac.jpl.nasa.gov/dataset/VIIRS_SST_NPP_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_4ed7_d477_1428.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_4ed7_d477_1428&showErrors=false&email=", "OSISAF", "nasa_jpl_4ed7_d477_1428"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_1144_453b_4f44", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_1144_453b_4f44.graph", "", "", "public", "GHRSST, Group for High Resolution SST, VIIRS SST NPP NAR-OSISAF-L3C-v1.0 [time][nj][ni], 2013-present", "Sea Surface Temperature. The NAR L3C product derived from National Polar-orbiting Partnership (NPP) Visible and Infrared Imager/Radiometer Suite (VIIRS) brightness temperatures.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][nj][ni]):\nsea_surface_temperature (sea surface subskin temperature, degree_C)\nsst_dtime (time difference from reference time, seconds)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (deviation from SST analysis or reference climatology, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nadi_dtime_from_sst (time difference of ADI data from sst measurement, hour)\nsources_of_adi (sources of aerosol dynamic indicator)\nl2p_flags\nquality_level (quality level of SST pixel)\nsatellite_zenith_angle (angular_degree)\nsolar_zenith_angle (angular_degree)\nor_latitude (original latitude of the SST value, degrees_north)\nor_longitude (original longitude of the SST value, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_1144_453b_4f44/index.json", "https://podaac.jpl.nasa.gov/dataset/VIIRS_SST_NPP_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_1144_453b_4f44.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_1144_453b_4f44&showErrors=false&email=", "OSISAF", "nasa_jpl_1144_453b_4f44"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_62f2_d4ca_3d74", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_62f2_d4ca_3d74.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_62f2_d4ca_3d74/request", "", "public", "GIN Seas Regional Climatology : salinity November 0.10 degree (salinity monthly tenth), 0000", "Climatological mean salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_62f2_d4ca_3d74_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_62f2_d4ca_3d74_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_62f2_d4ca_3d74/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_62f2_d4ca_3d74.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_62f2_d4ca_3d74&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_62f2_d4ca_3d74"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b149_f19a_6f58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b149_f19a_6f58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b149_f19a_6f58/request", "", "public", "GIN Seas Regional Climatology : salinity November 0.10 degree (salinity monthly tenth), 0000", "Climatological mean salinity for the Greenland-Iceland-Norvegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b149_f19a_6f58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b149_f19a_6f58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b149_f19a_6f58/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b149_f19a_6f58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b149_f19a_6f58&showErrors=false&email=", "NCEI", "noaa_nodc_b149_f19a_6f58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_48f1_0a1c_b9ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_48f1_0a1c_b9ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_48f1_0a1c_b9ff/request", "", "public", "GIN Seas Regional Climatology : salinity November 0.25 degree (salinity monthly quarter), 0000", "Climatological mean salinity for the Greenland-Iceland-Norvegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_48f1_0a1c_b9ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_48f1_0a1c_b9ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_48f1_0a1c_b9ff/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_48f1_0a1c_b9ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_48f1_0a1c_b9ff&showErrors=false&email=", "NCEI", "noaa_nodc_48f1_0a1c_b9ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7fac_8d77_cae0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7fac_8d77_cae0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7fac_8d77_cae0/request", "", "public", "GIN Seas Regional Climatology : salinity November 0.25 degree (salinity monthly quarter), 0000", "Climatological mean salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7fac_8d77_cae0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7fac_8d77_cae0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7fac_8d77_cae0/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7fac_8d77_cae0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7fac_8d77_cae0&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_7fac_8d77_cae0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_c08a_fde7_c152", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_c08a_fde7_c152.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_c08a_fde7_c152/request", "", "public", "GIN Seas Regional Climatology : salinity November 1.00 degree (salinity monthly one), 0000", "Climatological mean salinity for the Greenland-Iceland-Norvegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_c08a_fde7_c152_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_c08a_fde7_c152_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_c08a_fde7_c152/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_c08a_fde7_c152.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_c08a_fde7_c152&showErrors=false&email=", "NCEI", "noaa_nodc_c08a_fde7_c152"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ea2d_de91_6a8c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ea2d_de91_6a8c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_ea2d_de91_6a8c/request", "", "public", "GIN Seas Regional Climatology : salinity November 1.00 degree (salinity monthly one), 0000", "Climatological mean salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_ea2d_de91_6a8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_ea2d_de91_6a8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_ea2d_de91_6a8c/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_ea2d_de91_6a8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_ea2d_de91_6a8c&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_ea2d_de91_6a8c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_af01_07eb_3ccb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_af01_07eb_3ccb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_af01_07eb_3ccb/request", "", "public", "GIN Seas Regional Climatology : salinity Summer (Jul-Sep) 0.10 degree (salinity seasonal tenth), 0000", "Climatological mean salinity for the Greenland-Iceland-Norvegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_af01_07eb_3ccb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_af01_07eb_3ccb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_af01_07eb_3ccb/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_af01_07eb_3ccb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_af01_07eb_3ccb&showErrors=false&email=", "NCEI", "noaa_nodc_af01_07eb_3ccb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_afa4_72fe_e55d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_afa4_72fe_e55d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_afa4_72fe_e55d/request", "", "public", "GIN Seas Regional Climatology : salinity Summer (Jul-Sep) 0.10 degree (salinity seasonal tenth), 0000", "Climatological mean salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_afa4_72fe_e55d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_afa4_72fe_e55d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_afa4_72fe_e55d/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_afa4_72fe_e55d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_afa4_72fe_e55d&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_afa4_72fe_e55d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_dac3_474f_7534", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_dac3_474f_7534.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_dac3_474f_7534/request", "", "public", "GIN Seas Regional Climatology : salinity Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean salinity for the Greenland-Iceland-Norvegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_dac3_474f_7534_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_dac3_474f_7534_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_dac3_474f_7534/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_dac3_474f_7534.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_dac3_474f_7534&showErrors=false&email=", "NCEI", "noaa_nodc_dac3_474f_7534"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_fff8_52e6_724f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_fff8_52e6_724f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_fff8_52e6_724f/request", "", "public", "GIN Seas Regional Climatology : salinity Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_fff8_52e6_724f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_fff8_52e6_724f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_fff8_52e6_724f/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_fff8_52e6_724f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_fff8_52e6_724f&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_fff8_52e6_724f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7477_780e_fdca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7477_780e_fdca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7477_780e_fdca/request", "", "public", "GIN Seas Regional Climatology : salinity Summer (Jul-Sep) 1.00 degree (salinity seasonal one), 0000", "Climatological mean salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7477_780e_fdca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7477_780e_fdca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7477_780e_fdca/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7477_780e_fdca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7477_780e_fdca&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_7477_780e_fdca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ac76_7e3a_a3e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ac76_7e3a_a3e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_ac76_7e3a_a3e6/request", "", "public", "GIN Seas Regional Climatology : salinity Summer (Jul-Sep) 1.00 degree (salinity seasonal one), 0000", "Climatological mean salinity for the Greenland-Iceland-Norvegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_ac76_7e3a_a3e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_ac76_7e3a_a3e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_ac76_7e3a_a3e6/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_ac76_7e3a_a3e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_ac76_7e3a_a3e6&showErrors=false&email=", "NCEI", "noaa_nodc_ac76_7e3a_a3e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1d9b_bb0c_da8e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1d9b_bb0c_da8e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_1d9b_bb0c_da8e/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature November 0.10 degree, 0000", "Climatological mean temperature for the Greenland-Iceland-Norwegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_1d9b_bb0c_da8e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_1d9b_bb0c_da8e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_1d9b_bb0c_da8e/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_1d9b_bb0c_da8e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_1d9b_bb0c_da8e&showErrors=false&email=", "NCEI", "noaa_nodc_1d9b_bb0c_da8e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_9caa_9986_e60c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_9caa_9986_e60c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_9caa_9986_e60c/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature November 0.10 degree, 0000", "Climatological mean temperature and salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_9caa_9986_e60c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_9caa_9986_e60c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_9caa_9986_e60c/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_9caa_9986_e60c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_9caa_9986_e60c&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_9caa_9986_e60c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7037_035f_0499", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7037_035f_0499.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7037_035f_0499/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the Greenland-Iceland-Norwegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7037_035f_0499_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7037_035f_0499_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7037_035f_0499/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7037_035f_0499.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7037_035f_0499&showErrors=false&email=", "NCEI", "noaa_nodc_7037_035f_0499"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e650_5530_ee6f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e650_5530_ee6f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e650_5530_ee6f/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature and salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e650_5530_ee6f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e650_5530_ee6f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e650_5530_ee6f/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e650_5530_ee6f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e650_5530_ee6f&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_e650_5530_ee6f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4f7d_92ce_277f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4f7d_92ce_277f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_4f7d_92ce_277f/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the Greenland-Iceland-Norwegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_4f7d_92ce_277f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_4f7d_92ce_277f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_4f7d_92ce_277f/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_4f7d_92ce_277f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_4f7d_92ce_277f&showErrors=false&email=", "NCEI", "noaa_nodc_4f7d_92ce_277f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7b60_a439_dcfe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7b60_a439_dcfe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7b60_a439_dcfe/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature and salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7b60_a439_dcfe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7b60_a439_dcfe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7b60_a439_dcfe/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7b60_a439_dcfe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7b60_a439_dcfe&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_7b60_a439_dcfe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1a82_0175_b2a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1a82_0175_b2a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_1a82_0175_b2a7/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.10 degree, 0000", "Climatological mean temperature for the Greenland-Iceland-Norwegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_1a82_0175_b2a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_1a82_0175_b2a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_1a82_0175_b2a7/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_1a82_0175_b2a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_1a82_0175_b2a7&showErrors=false&email=", "NCEI", "noaa_nodc_1a82_0175_b2a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f8e0_afe3_c18f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f8e0_afe3_c18f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_f8e0_afe3_c18f/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.10 degree, 0000", "Climatological mean temperature and salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_f8e0_afe3_c18f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_f8e0_afe3_c18f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_f8e0_afe3_c18f/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_f8e0_afe3_c18f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_f8e0_afe3_c18f&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_f8e0_afe3_c18f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6e3c_65a4_ac41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6e3c_65a4_ac41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6e3c_65a4_ac41/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature and salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6e3c_65a4_ac41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6e3c_65a4_ac41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6e3c_65a4_ac41/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6e3c_65a4_ac41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6e3c_65a4_ac41&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_6e3c_65a4_ac41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7112_d88f_1a37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7112_d88f_1a37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7112_d88f_1a37/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the Greenland-Iceland-Norwegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7112_d88f_1a37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7112_d88f_1a37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7112_d88f_1a37/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7112_d88f_1a37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7112_d88f_1a37&showErrors=false&email=", "NCEI", "noaa_nodc_7112_d88f_1a37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7050_3786_dec0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7050_3786_dec0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7050_3786_dec0/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature and salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7050_3786_dec0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7050_3786_dec0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7050_3786_dec0/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7050_3786_dec0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7050_3786_dec0&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_7050_3786_dec0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f6a4_95b0_2565", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f6a4_95b0_2565.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_f6a4_95b0_2565/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the Greenland-Iceland-Norwegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_f6a4_95b0_2565_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_f6a4_95b0_2565_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_f6a4_95b0_2565/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_f6a4_95b0_2565.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_f6a4_95b0_2565&showErrors=false&email=", "NCEI", "noaa_nodc_f6a4_95b0_2565"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72db_1e2b_fede", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72db_1e2b_fede.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_72db_1e2b_fede/request", "", "public", "Global Monthly Dai Palmer Drought Severity Index (Top Dataset, dai pdsi, pdsi.mon.mean), 2.5\u00b0, 1870-2005", "Global Monthly Dai Palmer Drought Severity Index. This version of the dataset (1870-2005) supersedes the 1870-2003 version art Physical Sciences Division (PSD) before Feb 2007\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Monthly Global Palmer Drought Severity Index: v2, Standardized Units of Relative Dry and Wet)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_72db_1e2b_fede_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_72db_1e2b_fede_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_72db_1e2b_fede/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.pdsi.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_72db_1e2b_fede.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_72db_1e2b_fede&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_72db_1e2b_fede"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_d024_dac2_2e1a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_d024_dac2_2e1a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_d024_dac2_2e1a/request", "", "public", "Global SST & Sea Ice Analysis, L4 OSTIA, 0.05 deg daily (METOFFICE-GLO-SST-L4-NRT-OBS-SST-V2)", "A merged, multi-sensor L4 Foundation SST product (Operational Sea Surface Temperature and Sea Ice Analysis (OSTIA)-United Kingdom Meteorology Office (UKMO)-L4-GLOB-v2.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (land sea ice lake bit mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_d024_dac2_2e1a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_d024_dac2_2e1a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_d024_dac2_2e1a/index.json", "https://podaac.jpl.nasa.gov/dataset/UKMO-L4HRfnd-GLOB-OSTIA", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_d024_dac2_2e1a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_d024_dac2_2e1a&showErrors=false&email=", "UKMO", "nasa_jpl_d024_dac2_2e1a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_2fa2_cbe7_cd13", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_2fa2_cbe7_cd13.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_2fa2_cbe7_cd13/request", "", "public", "Global SST & Sea Ice Analysis, L4 OSTIA, 0.05 deg daily (METOFFICE-GLO-SST-L4-NRT-OBS-SST-V2), 2013-present", "A merged, multi-sensor L4 Foundation Sea Surface Temperature (SST) product\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (land sea ice lake bit mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_2fa2_cbe7_cd13_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_2fa2_cbe7_cd13_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_2fa2_cbe7_cd13/index.json", "https://podaac.jpl.nasa.gov/dataset/OSTIA-UKMO-L4-GLOB-v2.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_2fa2_cbe7_cd13.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_2fa2_cbe7_cd13&showErrors=false&email=", "UKMO", "nasa_jpl_2fa2_cbe7_cd13"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplUKMO_OSTIAv20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplUKMO_OSTIAv20.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplUKMO_OSTIAv20/request", "", "public", "Global SST & Sea Ice Analysis, L4 OSTIA, UK Met Office, Global, 0.05\u00b0, Daily, 2013-present", "A Group for High Resolution Sea Surface Temperature (GHRSST) Level 4 sea surface temperature analysis produced daily on an operational basis at the UK Met Office using optimal interpolation (OI) on a global 0.054 degree grid. The Operational Sea Surface Temperature and Sea Ice Analysis (OSTIA) analysis uses satellite data from sensors that include the Advanced Very High Resolution Radiometer (AVHRR), the Advanced Along Track Scanning Radiometer (AATSR), the Spinning Enhanced Visible and Infrared Imager (SEVIRI), the Advanced Microwave Scanning Radiometer-EOS (AMSRE), the Tropical Rainfall Measuring Mission Microwave Imager (TMI), and in situ data from drifting and moored buoys. This analysis has a highly smoothed SST field and was specifically produced to support SST data assimilation into Numerical Weather Prediction (NWP) models. (METOFFICE-GLO-SST-L4-NRT-OBS-SST-V2)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (land sea ice lake bit mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplUKMO_OSTIAv20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplUKMO_OSTIAv20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplUKMO_OSTIAv20/index.json", "https://podaac.jpl.nasa.gov/dataset/UKMO-L4HRfnd-GLOB-OSTIA", "http://upwell.pfeg.noaa.gov/erddap/rss/jplUKMO_OSTIAv20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplUKMO_OSTIAv20&showErrors=false&email=", "UKMO", "jplUKMO_OSTIAv20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c94b_0347_ef71", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c94b_0347_ef71.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c94b_0347_ef71/request", "", "public", "GPCC Full Data Reanalysis Version 6 0.5x0.5 Monthly Means (precip.mon.1981-2010.ltm.v6), 0001", "Global Precipitation Climatology Centre (GPCC) Full Data Reanalysis Version 6 0.5x0.5 Monthly Means (Top Dataset, full v6, precip.mon.1981-2010.ltm.v6)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Long Term Monthly total of precipitation, mm)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c94b_0347_ef71_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c94b_0347_ef71_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c94b_0347_ef71/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c94b_0347_ef71.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c94b_0347_ef71&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c94b_0347_ef71"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09e6_cf00_cd40", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09e6_cf00_cd40.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_09e6_cf00_cd40/request", "", "public", "GPCC Full Data Reanalysis Version 6 0.5x0.5 Monthly Means (precip.mon.total.v6), 1901-2010", "Global Precipitation Climatology Centre (GPCC) Full Data Reanalysis Version 6 0.5x0.5 Monthly Means (Top Dataset, full v6, precip.mon.total.v6)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly total of precipitation, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_09e6_cf00_cd40_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_09e6_cf00_cd40_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_09e6_cf00_cd40/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_09e6_cf00_cd40.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_09e6_cf00_cd40&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_09e6_cf00_cd40"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eeeb_d6c9_37ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eeeb_d6c9_37ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eeeb_d6c9_37ef/request", "", "public", "GPCC Full Data Reanalysis Version 6 1.0x1.0 (precip.comb.v6to2010-v4monitorafter.total), 1901-present", "Global Precipitation Climatology Centre (GPCC) Full Data Reanalysis Version 6 1.0x1.0 Monthly Means appended with GPCC monitoring dataset from 2011 onwards (Top Dataset, combined, precip.comb.v6to2010-v4monitorafter.total)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly total of precipitation, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eeeb_d6c9_37ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eeeb_d6c9_37ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eeeb_d6c9_37ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eeeb_d6c9_37ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eeeb_d6c9_37ef&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_eeeb_d6c9_37ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfb9_7a30_0880", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfb9_7a30_0880.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bfb9_7a30_0880/request", "", "public", "GPCC Full Data Reanalysis Version 6 1.0x1.0 (precip.mon.combined.total.v6), 1901-present", "Global Precipitation Climatology Centre (GPCC) Full Data Reanalysis Version 6 1.0x1.0 Monthly Means appended with GPCC monitoring dataset from 2011 onwards (Top Dataset, combined, precip.mon.combined.total.v6)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly total of precipitation, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bfb9_7a30_0880_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bfb9_7a30_0880_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bfb9_7a30_0880/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bfb9_7a30_0880.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bfb9_7a30_0880&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bfb9_7a30_0880"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6eb6_cccb_8367", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6eb6_cccb_8367.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6eb6_cccb_8367/request", "", "public", "GPCC Full Data Reanalysis Version 6 1.0x1.0 Monthly Totals (precip.mon.1981-2010.ltm.1x1.v6), 0001", "Global Precipitation Climatology Centre (GPCC) Full Data Reanalysis Version 6 1.0x1.0 Monthly Totals (Top Dataset, full v6, precip.mon.1981-2010.ltm.1x1.v6)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Long Term Monthly total of precipitation, mm)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6eb6_cccb_8367_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6eb6_cccb_8367_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6eb6_cccb_8367/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6eb6_cccb_8367.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6eb6_cccb_8367&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6eb6_cccb_8367"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5797_cb12_a059", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5797_cb12_a059.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5797_cb12_a059/request", "", "public", "GPCC Full Data Reanalysis Version 6 1.0x1.0 Monthly Totals (precip.mon.total.1x1.v6), 1901-2010", "Global Precipitation Climatology Centre (GPCC) Full Data Reanalysis Version 6 1.0x1.0 Monthly Totals (Top Dataset, full v6, precip.mon.total.1x1.v6)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly total of precipitation, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5797_cb12_a059_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5797_cb12_a059_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5797_cb12_a059/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5797_cb12_a059.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5797_cb12_a059&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5797_cb12_a059"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce84_06be_6863", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce84_06be_6863.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ce84_06be_6863/request", "", "public", "GPCC Full Data Reanalysis Version 7 0.5x0.5 Monthly Nobs (precip.mon.nobs.v7), 1901-2013", "Global Precipitation Climatology Centre (GPCC) Full Data Reanalysis Version 7 0.5x0.5 Monthly Nobs (Top Dataset, full v7, precip.mon.nobs.v7)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly total of precipitation: nobs, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ce84_06be_6863_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ce84_06be_6863_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ce84_06be_6863/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ce84_06be_6863.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ce84_06be_6863&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ce84_06be_6863"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6ea_b25c_0a05", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6ea_b25c_0a05.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d6ea_b25c_0a05/request", "", "public", "GPCC Full Data Reanalysis Version 7 0.5x0.5 Monthly Total (precip.mon.ltm.v7.1981-2010), 0001", "Global Precipitation Climatology Centre (GPCC) Full Data Reanalysis Version 7 0.5x0.5 Monthly Total (Top Dataset, full v7, precip.mon.ltm.v7.1981-2010)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Long Term Mean GPCC Monthly total of precipitation, mm)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d6ea_b25c_0a05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d6ea_b25c_0a05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d6ea_b25c_0a05/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d6ea_b25c_0a05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d6ea_b25c_0a05&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d6ea_b25c_0a05"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8427_e183_67b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8427_e183_67b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8427_e183_67b8/request", "", "public", "GPCC Full Data Reanalysis Version 7 0.5x0.5 Monthly Total (precip.mon.total.v7), 1901-2013", "Global Precipitation Climatology Centre (GPCC) Full Data Reanalysis Version 7 0.5x0.5 Monthly Total (Top Dataset, full v7, precip.mon.total.v7)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly total of precipitation, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8427_e183_67b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8427_e183_67b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8427_e183_67b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8427_e183_67b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8427_e183_67b8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8427_e183_67b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd83_3aa0_2ba5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd83_3aa0_2ba5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fd83_3aa0_2ba5/request", "", "public", "GPCC Full Data Reanalysis Version 7 1.0x1.0 Monthly Totals (precip.mon.ltm.1x1.v7.1981-2010), 0001", "Global Precipitation Climatology Centre (GPCC) Full Data Reanalysis Version 7 1.0x1.0 Monthly Totals (Top Dataset, full v7, precip.mon.ltm.1x1.v7.1981-2010)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Long Term Mean GPCC Monthly total of precipitation, mm)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fd83_3aa0_2ba5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fd83_3aa0_2ba5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fd83_3aa0_2ba5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fd83_3aa0_2ba5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fd83_3aa0_2ba5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fd83_3aa0_2ba5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_155e_589f_e7d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_155e_589f_e7d1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_155e_589f_e7d1/request", "", "public", "GPCC Full Data Reanalysis Version 7 1.0x1.0 Monthly Totals (precip.mon.total.1x1.v7), 1901-2013", "Global Precipitation Climatology Centre (GPCC) Full Data Reanalysis Version 7 1.0x1.0 Monthly Totals (Top Dataset, full v7, precip.mon.total.1x1.v7)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly total of precipitation, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_155e_589f_e7d1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_155e_589f_e7d1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_155e_589f_e7d1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_155e_589f_e7d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_155e_589f_e7d1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_155e_589f_e7d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c634_3a0a_ab2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c634_3a0a_ab2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c634_3a0a_ab2d/request", "", "public", "GPCC Full Data Reanalysis Version 7 1.0x1.0 Monthly Totals appended with GPCC monitoring dataset from 2014 onwards, 1901-present", "Global Precipitation Climatology Centre (GPCC) Full Data Reanalysis Version 7 1.0x1.0 Monthly Totals appended with GPCC monitoring dataset from 2014 onwards (Top Dataset, combined, precip.comb.v7to2013-v4monitorafter.total)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly total of precipitation, mm/mn)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c634_3a0a_ab2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c634_3a0a_ab2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c634_3a0a_ab2d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c634_3a0a_ab2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c634_3a0a_ab2d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c634_3a0a_ab2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_faba_5589_7809", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_faba_5589_7809.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_faba_5589_7809/request", "", "public", "GPCC Full Data Reanalysis Version 7 1.0x1.0 Monthly Totals appended with GPCC monitoring dataset from 2014 onwards, 1901-present", "Global Precipitation Climatology Centre (GPCC) Full Data Reanalysis Version 7 1.0x1.0 Monthly Totals appended with GPCC monitoring dataset from 2014 onwards (Top Dataset, combined, precip.mon.combined.total.v7)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly total of precipitation, mm/mn)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_faba_5589_7809_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_faba_5589_7809_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_faba_5589_7809/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_faba_5589_7809.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_faba_5589_7809&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_faba_5589_7809"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_52c8_5883_f732", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_52c8_5883_f732.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_52c8_5883_f732/request", "", "public", "GPCC Precipitation Full V6 0.5x0.5 Monthly NOBS (Top Dataset, full v6, precip.mon.nobs.v6), 1901-2010", "Global Precipitation Climatology Centre (GPCC) Precipitation Full V6 0.5x0.5 Monthly NOBS (Top Dataset, full v6, precip.mon.nobs.v6)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly total of precipitation: nobs, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_52c8_5883_f732_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_52c8_5883_f732_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_52c8_5883_f732/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_52c8_5883_f732.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_52c8_5883_f732&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_52c8_5883_f732"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_52a1_51fe_b57f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_52a1_51fe_b57f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_52a1_51fe_b57f/request", "", "public", "GPCC Precipitation Full V6 1.0x1.0 Monthly NOBS (Top Dataset, full v6, precip.mon.nobs.1x1.v6), 1901-2010", "Global Precipitation Climatology Centre (GPCC) Precipitation Full V6 1.0x1.0 Monthly NOBS (Top Dataset, full v6, precip.mon.nobs.1x1.v6)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly Total Precipitation: nobs, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_52a1_51fe_b57f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_52a1_51fe_b57f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_52a1_51fe_b57f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_52a1_51fe_b57f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_52a1_51fe_b57f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_52a1_51fe_b57f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_745c_e1ef_5f1a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_745c_e1ef_5f1a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_745c_e1ef_5f1a/request", "", "public", "GPCC Precipitation Full V7 1.0x1.0 Monthly NOBS (Top Dataset, full v7, precip.mon.nobs.1x1.v7), 1901-2013", "Global Precipitation Climatology Centre (GPCC) Precipitation Full V7 1.0x1.0 Monthly NOBS (Top Dataset, full v7, precip.mon.nobs.1x1.v7)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly Total Precipitation: nobs, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_745c_e1ef_5f1a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_745c_e1ef_5f1a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_745c_e1ef_5f1a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_745c_e1ef_5f1a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_745c_e1ef_5f1a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_745c_e1ef_5f1a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1330_4ff1_435e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1330_4ff1_435e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1330_4ff1_435e/request", "", "public", "GPCP Version 2.3 Combined Precipitation Dataset (Final) (precip.mon.1981-2010.ltm), 2.5\u00b0, 0001", "http://eagle1.umd.edu/GPCP_ICDR/GPCPmonthlyV2.3.pdf\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Long Term Mean Average Monthly Rate of Precipitation, mm/day)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1330_4ff1_435e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1330_4ff1_435e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1330_4ff1_435e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1330_4ff1_435e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1330_4ff1_435e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1330_4ff1_435e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b82e_1da0_40f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b82e_1da0_40f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b82e_1da0_40f5/request", "", "public", "GPCP Version 2.3 Combined Precipitation Dataset (Final) (precip.mon.mean.error), 2.5\u00b0, 1979-present", "https://data.nodc.noaa.gov/cgi-bin/iso?id=gov.noaa.ncdc:C00970\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Absolute Error: Monthly Rate of Precipitation, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b82e_1da0_40f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b82e_1da0_40f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b82e_1da0_40f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b82e_1da0_40f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b82e_1da0_40f5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b82e_1da0_40f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_66a8_967d_875c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_66a8_967d_875c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_66a8_967d_875c/request", "", "public", "GPCP Version 2.3 Combined Precipitation Dataset (Final) (Top Dataset, gpcp, precip.mon.ltm), 2.5\u00b0, 0001", "Global Precipitation Climatology Project (GPCP) Version 2.3 Combined Precipitation Dataset (Final). http://eagle1.umd.edu/GPCP_ICDR/GPCPmonthlyV2.3.pdf\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Long Term Mean Average Monthly Rate of Precipitation, mm/day)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_66a8_967d_875c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_66a8_967d_875c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_66a8_967d_875c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_66a8_967d_875c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_66a8_967d_875c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_66a8_967d_875c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f19_1c39_1309", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f19_1c39_1309.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f19_1c39_1309/request", "", "public", "GPCP Version 2.3 Combined Precipitation Dataset (Final) (Top Dataset, gpcp, precip.mon.mean), 2.5\u00b0, 1979-present", "Global Precipitation Climatology Project (GPCP) Version 2.3 Combined Precipitation Dataset (Final). https://data.nodc.noaa.gov/cgi-bin/iso?id=gov.noaa.ncdc:C00970\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Average Monthly Rate of Precipitation, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f19_1c39_1309_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f19_1c39_1309_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f19_1c39_1309/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f19_1c39_1309.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f19_1c39_1309&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8f19_1c39_1309"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusLandMassRL05CSR", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusLandMassRL05CSR.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplGraceTellusLandMassRL05CSR/request", "", "public", "GRACE TELLUS Land Mass Grids, Center for Space Research (CSR), Univ. Texas Austin, RL05, GRCTellus.CSR.200204 201701.LND.RL05.DSTvSCS1409, 1.0\u00b0", "Gravity Recovery and Climate Experiment (GRACE) Tellus, Land Mass Grids, Center for Space Research (CSR), Univ. Texas Austin, RL05, (GRCTellus).CSR.200204 201701.LND.RL05.DSTvSCS1409\n\nThe GRACE twin satellites, launched 17 March 2002, are making detailed measurements of Earth's gravity field changes and revolutionizing investigations about Earth's water reservoirs over land, ice and oceans, as well as earthquakes and crustal deformations. The two GRACE satellites have completed more than 13 years of continuous measurements!\n\nGRACE is a collaboration of the US and German space agencies (NASA and DLR). GRACE ground segment operations are currently co-funded by the GFZ German Research Centre for Geosciences and the European Space Agency (ESA). NASA, ESA, GFZ and DLR are supporting the continuation of the measurements of mass redistribution in the Earth system. The key partners in the design, construction and launch of the mission have been the Jet Propulsion Laboratory, the University of Texas Center for Space Research, GFZ German Research Centre for Geosciences, as well as Astrium GmBH, Space Systems Loral (SS/L), Onera and Eurockot GmBH.\n\nJPL, CSR or GFZ - which solution should I use? \nhttps://grace.jpl.nasa.gov/data/choosing-a-solution/\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlwe_thickness (Liquid_Water_Equivalent_Thickness, cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplGraceTellusLandMassRL05CSR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplGraceTellusLandMassRL05CSR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplGraceTellusLandMassRL05CSR/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplGraceTellusLandMassRL05CSR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplGraceTellusLandMassRL05CSR&showErrors=false&email=", "JPL / GRACE-TELLUS", "jplGraceTellusLandMassRL05CSR"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusLandMassRL05GFZ", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusLandMassRL05GFZ.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplGraceTellusLandMassRL05GFZ/request", "", "public", "GRACE TELLUS Land Mass Grids, GeoforshungsZentrum Postsdam (GFZ), RL05, GRCTellus.GFZ.200204 201701.LND.RL05.DSTvSCS1409, 1.0\u00b0", "Gravity Recovery and Climate Experiment (GRACE) Tellus, Land Mass Grids, GeoforshungsZentrum Postsdam (GFZ), RL05, (GRCTellus).GFZ.200204 201701.LND.RL05.DSTvSCS1409\n\nThe GRACE twin satellites, launched 17 March 2002, are making detailed measurements of Earth's gravity field changes and revolutionizing investigations about Earth's water reservoirs over land, ice and oceans, as well as earthquakes and crustal deformations. The two GRACE satellites have completed more than 13 years of continuous measurements!\n\nGRACE is a collaboration of the US and German space agencies (NASA and DLR). GRACE ground segment operations are currently co-funded by the GFZ German Research Centre for Geosciences and the European Space Agency (ESA). NASA, ESA, GFZ and DLR are supporting the continuation of the measurements of mass redistribution in the Earth system. The key partners in the design, construction and launch of the mission have been the Jet Propulsion Laboratory, the University of Texas Center for Space Research, GFZ German Research Centre for Geosciences, as well as Astrium GmBH, Space Systems Loral (SS/L), Onera and Eurockot GmBH.\n\nJPL, CSR or GFZ - which solution should I use? \nhttps://grace.jpl.nasa.gov/data/choosing-a-solution/\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlwe_thickness (Liquid_Water_Equivalent_Thickness, cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplGraceTellusLandMassRL05GFZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplGraceTellusLandMassRL05GFZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplGraceTellusLandMassRL05GFZ/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplGraceTellusLandMassRL05GFZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplGraceTellusLandMassRL05GFZ&showErrors=false&email=", "JPL / GRACE-TELLUS", "jplGraceTellusLandMassRL05GFZ"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusLandMassRL051JPL", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusLandMassRL051JPL.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplGraceTellusLandMassRL051JPL/request", "", "public", "GRACE TELLUS Land Mass Grids, Jet Propulsion Laboratory (JPL), RL05, GRCTellus.JPL.200204 201701.LND.RL05 1.DSTvSCS1411, 1.0\u00b0", "Gravity Recovery and Climate Experiment (GRACE) Tellus, Land Mass Grids, Jet Propulsion Laboratory (JPL), RL05, (GRCTellus).Jet Propulsion Laboratory (JPL).200204 201701.LND.RL05 1.DSTvSCS1411\n\nThe GRACE twin satellites, launched 17 March 2002, are making detailed measurements of Earth's gravity field changes and revolutionizing investigations about Earth's water reservoirs over land, ice and oceans, as well as earthquakes and crustal deformations. The two GRACE satellites have completed more than 13 years of continuous measurements!\n\nGRACE is a collaboration of the US and German space agencies (NASA and DLR). GRACE ground segment operations are currently co-funded by the GFZ German Research Centre for Geosciences and the European Space Agency (ESA). NASA, ESA, GFZ and DLR are supporting the continuation of the measurements of mass redistribution in the Earth system. The key partners in the design, construction and launch of the mission have been the Jet Propulsion Laboratory, the University of Texas Center for Space Research, GFZ German Research Centre for Geosciences, as well as Astrium GmBH, Space Systems Loral (SS/L), Onera and Eurockot GmBH.\n\nJPL, CSR or GFZ - which solution should I use? \nhttps://grace.jpl.nasa.gov/data/choosing-a-solution/\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlwe_thickness (Liquid_Water_Equivalent_Thickness, cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplGraceTellusLandMassRL051JPL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplGraceTellusLandMassRL051JPL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplGraceTellusLandMassRL051JPL/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplGraceTellusLandMassRL051JPL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplGraceTellusLandMassRL051JPL&showErrors=false&email=", "JPL / GRACE-TELLUS", "jplGraceTellusLandMassRL051JPL"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusLandMassRL05Errors", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusLandMassRL05Errors.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplGraceTellusLandMassRL05Errors/request", "", "public", "GRACE TELLUS Land Mass Grids, Scaling Factor and Measurement Errors, RL05, CLM4.SCALE FACTOR.DS.G300KM.RL05.DSTvSCS1409, 1.0\u00b0", "Gravity Recovery and Climate Experiment (GRACE) Tellus, Land Mass Grids, Scaling Factor and Measurement Errors, RL05, CLM4.SCALE FACTOR.DS.G300KM.RL05.DSTvSCS1409\n\nThe GRACE twin satellites, launched 17 March 2002, are making detailed measurements of Earth's gravity field changes and revolutionizing investigations about Earth's water reservoirs over land, ice and oceans, as well as earthquakes and crustal deformations. The two GRACE satellites have completed more than 13 years of continuous measurements!\n\nGRACE is a collaboration of the US and German space agencies (NASA and DLR). GRACE ground segment operations are currently co-funded by the GFZ German Research Centre for Geosciences and the European Space Agency (ESA). NASA, ESA, GFZ and DLR are supporting the continuation of the measurements of mass redistribution in the Earth system. The key partners in the design, construction and launch of the mission have been the Jet Propulsion Laboratory, the University of Texas Center for Space Research, GFZ German Research Centre for Geosciences, as well as Astrium GmBH, Space Systems Loral (SS/L), Onera and Eurockot GmBH.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nSCALE_FACTOR (Scaling Factor)\nMEASUREMENT_ERROR (cm)\nLEAKAGE_ERROR (cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplGraceTellusLandMassRL05Errors_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplGraceTellusLandMassRL05Errors_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplGraceTellusLandMassRL05Errors/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplGraceTellusLandMassRL05Errors.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplGraceTellusLandMassRL05Errors&showErrors=false&email=", "JPL / GRACE-TELLUS", "jplGraceTellusLandMassRL05Errors"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusMasConRL06CriGrid", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusMasConRL06CriGrid.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplGraceTellusMasConRL06CriGrid/request", "", "public", "GRACE TELLUS MasCon with CRI Filter, Jet Propulsion Laboratory (JPL), RL06M, GRCTellus.JPL.200204 201706.GLO.RL06M.MSCNv01CRIv01, 0.5\u00b0", "Gravity Recovery and Climate Experiment (GRACE) Tellus, Monthly gravity solution grids with CRI Filter, Jet Propulsion Laboratory (JPL), RL06M, MASCON RL06M CRI. Monthly gravity solutions from GRACE as determined from the JPL RL06M mascon solution - with CRI filter applied.\n\nThe GRACE twin satellites, launched 17 March 2002, are making detailed measurements of Earth's gravity field changes and revolutionizing investigations about Earth's water reservoirs over land, ice and oceans, as well as earthquakes and crustal deformations. The two GRACE satellites have completed more than 13 years of continuous measurements!\n\nGRACE is a collaboration of the US and German space agencies (NASA and DLR). GRACE ground segment operations are currently co-funded by the GFZ German Research Centre for Geosciences and the European Space Agency (ESA). NASA, ESA, GFZ and DLR are supporting the continuation of the measurements of mass redistribution in the Earth system. The key partners in the design, construction and launch of the mission have been the Jet Propulsion Laboratory, the University of Texas Center for Space Research, GFZ German Research Centre for Geosciences, as well as Astrium GmBH, Space Systems Loral (SS/L), Onera and Eurockot GmBH.\n\nJPL, CSR or GFZ - which solution should I use? \nhttps://grace.jpl.nasa.gov/data/choosing-a-solution/\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlwe_thickness (Liquid_Water_Equivalent_Thickness, cm)\nuncertainty (cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplGraceTellusMasConRL06CriGrid_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplGraceTellusMasConRL06CriGrid_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplGraceTellusMasConRL06CriGrid/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplGraceTellusMasConRL06CriGrid.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplGraceTellusMasConRL06CriGrid&showErrors=false&email=", "NASA/JPL", "jplGraceTellusMasConRL06CriGrid"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusMasConRL06JPL", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusMasConRL06JPL.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplGraceTellusMasConRL06JPL/request", "", "public", "GRACE TELLUS MasCon without CRI Filter, Jet Propulsion Laboratory (JPL), RL06 GRID, GRCTellus.JPL.200204 201706.GLO.RL06M.MSCNv01 (JPL GRACE MASCON RL06M), 0.5\u00b0", "Gravity Recovery and Climate Experiment (GRACE) Tellus, Monthly gravity solution grids without CRI Filter, Jet Propulsion Laboratory (JPL), MASCON RL06M. Monthly gravity solutions from GRACE as determined from the JPL RL06M mascon solution - CRI filter is NOT applied.\n\nThe GRACE twin satellites, launched 17 March 2002, are making detailed measurements of Earth's gravity field changes and revolutionizing investigations about Earth's water reservoirs over land, ice and oceans, as well as earthquakes and crustal deformations. The two GRACE satellites have completed more than 13 years of continuous measurements!\n\nGRACE is a collaboration of the US and German space agencies (NASA and DLR). GRACE ground segment operations are currently co-funded by the GFZ German Research Centre for Geosciences and the European Space Agency (ESA). NASA, ESA, GFZ and DLR are supporting the continuation of the measurements of mass redistribution in the Earth system. The key partners in the design, construction and launch of the mission have been the Jet Propulsion Laboratory, the University of Texas Center for Space Research, GFZ German Research Centre for Geosciences, as well as Astrium GmBH, Space Systems Loral (SS/L), Onera and Eurockot GmBH.\n\nJPL, CSR or GFZ - which solution should I use? \nhttps://grace.jpl.nasa.gov/data/choosing-a-solution/\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlwe_thickness (Liquid_Water_Equivalent_Thickness, cm)\nuncertainty (cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplGraceTellusMasConRL06JPL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplGraceTellusMasConRL06JPL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplGraceTellusMasConRL06JPL/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplGraceTellusMasConRL06JPL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplGraceTellusMasConRL06JPL&showErrors=false&email=", "NASA/JPL", "jplGraceTellusMasConRL06JPL"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusOceanMassEOFRRL05CSR", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusOceanMassEOFRRL05CSR.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplGraceTellusOceanMassEOFRRL05CSR/request", "", "public", "GRACE TELLUS Ocean EOFR, Center for Space Research (CSR), Univ. Texas Austin, RL05, GRCTellus.CSR.200301 201612.OCN.RL05.EOFRvDPC1409, 1.0\u00b0", "Gravity Recovery and Climate Experiment (GRACE) Tellus, Ocean EOFR, Center for Space Research (CSR), Univ. Texas Austin, RL05, (GRCTellus).CSR.200301 201612.OCN.RL05.EOFRvDPC1409\n\nThe 'EOFR' bottom pressure grids are obtained by projecting the data from the regular GRC Ocean grids described above onto the Empirical Orthogonal Functions (EOFs) of the Ocean Model for Circulation and Tides (OMCT), and then reconstructing the OBP variations using the first 15 modes (Chambers and Willis, 2010). This effectively filters out signals in the GRACE data that are inconsistent with the physics and OBP variations in the OMCT ocean model. The EOFR filtered reconstructed bottom pressure fields agree better with radar altimetric sea surface height corrected for steric effects determined from Argo floats. In addition, leakage artifacts and errors around ice sheets and glaciers are reduced significantly, as well as noise in the midlatitudes where OBP variability is lower. Please cite Chambers and Bonin (2012) when using these data.\n\nThe GRACE twin satellites, launched 17 March 2002, are making detailed measurements of Earth's gravity field changes and revolutionizing investigations about Earth's water reservoirs over land, ice and oceans, as well as earthquakes and crustal deformations. The two GRACE satellites have completed more than 13 years of continuous measurements!\n\nGRACE is a collaboration of the US and German space agencies (NASA and DLR). GRACE ground segment operations are currently co-funded by the GFZ German Research Centre for Geosciences and the European Space Agency (ESA). NASA, ESA, GFZ and DLR are supporting the continuation of the measurements of mass redistribution in the Earth system. The key partners in the design, construction and launch of the mission have been the Jet Propulsion Laboratory, the University of Texas Center for Space Research, GFZ German Research Centre for Geosciences, as well as Astrium GmBH, Space Systems Loral (SS/L), Onera and Eurockot GmBH.\n\nJPL, CSR or GFZ - which solution should I use? \nhttps://grace.jpl.nasa.gov/data/choosing-a-solution/\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlwe_thickness (Liquid_Water_Water_Thickness, cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplGraceTellusOceanMassEOFRRL05CSR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplGraceTellusOceanMassEOFRRL05CSR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplGraceTellusOceanMassEOFRRL05CSR/index.json", "https://grace.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplGraceTellusOceanMassEOFRRL05CSR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplGraceTellusOceanMassEOFRRL05CSR&showErrors=false&email=", "JPL / GRACE-TELLUS", "jplGraceTellusOceanMassEOFRRL05CSR"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusOceanMassEOFRRL05GFZ", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusOceanMassEOFRRL05GFZ.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplGraceTellusOceanMassEOFRRL05GFZ/request", "", "public", "GRACE TELLUS Ocean EOFR, GeoforshungsZentrum Postsdam (GFZ), RL05, GRCTellus.GFZ.200301 201612.OCN.RL05.EOFRvDPC1409, 1.0\u00b0", "Gravity Recovery and Climate Experiment (GRACE) Tellus, Ocean EOFR, GeoforshungsZentrum Postsdam (GFZ), RL05, (GRCTellus).GFZ.200301 201612.OCN.RL05.EOFRvDPC1409\n\nThe 'EOFR' bottom pressure grids are obtained by projecting the data from the regular GRC Ocean grids described above onto the Empirical Orthogonal Functions (EOFs) of the Ocean Model for Circulation and Tides (OMCT), and then reconstructing the OBP variations using the first 15 modes (Chambers and Willis, 2010). This effectively filters out signals in the GRACE data that are inconsistent with the physics and OBP variations in the OMCT ocean model. The EOFR filtered reconstructed bottom pressure fields agree better with radar altimetric sea surface height corrected for steric effects determined from Argo floats. In addition, leakage artifacts and errors around ice sheets and glaciers are reduced significantly, as well as noise in the midlatitudes where OBP variability is lower. Please cite Chambers and Bonin (2012) when using these data.\n\nThe GRACE twin satellites, launched 17 March 2002, are making detailed measurements of Earth's gravity field changes and revolutionizing investigations about Earth's water reservoirs over land, ice and oceans, as well as earthquakes and crustal deformations. The two GRACE satellites have completed more than 13 years of continuous measurements!\n\nGRACE is a collaboration of the US and German space agencies (NASA and DLR). GRACE ground segment operations are currently co-funded by the GFZ German Research Centre for Geosciences and the European Space Agency (ESA). NASA, ESA, GFZ and DLR are supporting the continuation of the measurements of mass redistribution in the Earth system. The key partners in the design, construction and launch of the mission have been the Jet Propulsion Laboratory, the University of Texas Center for Space Research, GFZ German Research Centre for Geosciences, as well as Astrium GmBH, Space Systems Loral (SS/L), Onera and Eurockot GmBH.\n\nJPL, CSR or GFZ - which solution should I use? \nhttps://grace.jpl.nasa.gov/data/choosing-a-solution/\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlwe_thickness (Liquid_Water_Water_Thickness, cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplGraceTellusOceanMassEOFRRL05GFZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplGraceTellusOceanMassEOFRRL05GFZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplGraceTellusOceanMassEOFRRL05GFZ/index.json", "https://grace.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplGraceTellusOceanMassEOFRRL05GFZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplGraceTellusOceanMassEOFRRL05GFZ&showErrors=false&email=", "JPL / GRACE-TELLUS", "jplGraceTellusOceanMassEOFRRL05GFZ"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusOceanMassEOFRRL05JPL", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusOceanMassEOFRRL05JPL.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplGraceTellusOceanMassEOFRRL05JPL/request", "", "public", "GRACE TELLUS Ocean EOFR, Jet Propulsion Laboratory (JPL), RL05, GRCTellus.JPL.200301 201612.OCN.RL05 1.EOFRvDPC1412, 1.0\u00b0", "Gravity Recovery and Climate Experiment (GRACE) Tellus, Ocean EOFR, Jet Propulsion Laboratory (JPL), RL05, (GRCTellus).Jet Propulsion Laboratory (JPL).200301 201612.OCN.RL05 1.EOFRvDPC1412\n\nThe 'EOFR' bottom pressure grids are obtained by projecting the data from the regular GRC Ocean grids described above onto the Empirical Orthogonal Functions (EOFs) of the Ocean Model for Circulation and Tides (OMCT), and then reconstructing the OBP variations using the first 15 modes (Chambers and Willis, 2010). This effectively filters out signals in the GRACE data that are inconsistent with the physics and OBP variations in the OMCT ocean model. The EOFR filtered reconstructed bottom pressure fields agree better with radar altimetric sea surface height corrected for steric effects determined from Argo floats. In addition, leakage artifacts and errors around ice sheets and glaciers are reduced significantly, as well as noise in the midlatitudes where OBP variability is lower. Please cite Chambers and Bonin (2012) when using these data.\n\nThe GRACE twin satellites, launched 17 March 2002, are making detailed measurements of Earth's gravity field changes and revolutionizing investigations about Earth's water reservoirs over land, ice and oceans, as well as earthquakes and crustal deformations. The two GRACE satellites have completed more than 13 years of continuous measurements!\n\nGRACE is a collaboration of the US and German space agencies (NASA and DLR). GRACE ground segment operations are currently co-funded by the GFZ German Research Centre for Geosciences and the European Space Agency (ESA). NASA, ESA, GFZ and DLR are supporting the continuation of the measurements of mass redistribution in the Earth system. The key partners in the design, construction and launch of the mission have been the Jet Propulsion Laboratory, the University of Texas Center for Space Research, GFZ German Research Centre for Geosciences, as well as Astrium GmBH, Space Systems Loral (SS/L), Onera and Eurockot GmBH.\n\nJPL, CSR or GFZ - which solution should I use? \nhttps://grace.jpl.nasa.gov/data/choosing-a-solution/\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlwe_thickness (Liquid_Water_Water_Thickness, cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplGraceTellusOceanMassEOFRRL05JPL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplGraceTellusOceanMassEOFRRL05JPL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplGraceTellusOceanMassEOFRRL05JPL/index.json", "https://grace.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplGraceTellusOceanMassEOFRRL05JPL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplGraceTellusOceanMassEOFRRL05JPL&showErrors=false&email=", "JPL / GRACE-TELLUS", "jplGraceTellusOceanMassEOFRRL05JPL"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusOceanMassRL05CSR", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusOceanMassRL05CSR.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplGraceTellusOceanMassRL05CSR/request", "", "public", "GRACE TELLUS Ocean Mass Grids, Center for Space Research (CSR), Univ. Texas Austin, RL05, GRCTellus.CSR.200208 201612.OCN.RL05.DSTvDPC1409, 1.0\u00b0", "Gravity Recovery and Climate Experiment (GRACE) Tellus, Ocean Mass Grids, Center for Space Research (CSR), Univ. Texas Austin, RL05, (GRCTellus).CSR.200208 201612.OCN.RL05.DSTvDPC1409\n\nThe GRACE twin satellites, launched 17 March 2002, are making detailed measurements of Earth's gravity field changes and revolutionizing investigations about Earth's water reservoirs over land, ice and oceans, as well as earthquakes and crustal deformations. The two GRACE satellites have completed more than 13 years of continuous measurements!\n\nGRACE is a collaboration of the US and German space agencies (NASA and DLR). GRACE ground segment operations are currently co-funded by the GFZ German Research Centre for Geosciences and the European Space Agency (ESA). NASA, ESA, GFZ and DLR are supporting the continuation of the measurements of mass redistribution in the Earth system. The key partners in the design, construction and launch of the mission have been the Jet Propulsion Laboratory, the University of Texas Center for Space Research, GFZ German Research Centre for Geosciences, as well as Astrium GmBH, Space Systems Loral (SS/L), Onera and Eurockot GmBH.\n\nJPL, CSR or GFZ - which solution should I use? \nhttps://grace.jpl.nasa.gov/data/choosing-a-solution/\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlwe_thickness (Liquid_Water_Water_Thickness, cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplGraceTellusOceanMassRL05CSR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplGraceTellusOceanMassRL05CSR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplGraceTellusOceanMassRL05CSR/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplGraceTellusOceanMassRL05CSR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplGraceTellusOceanMassRL05CSR&showErrors=false&email=", "JPL / GRACE-TELLUS", "jplGraceTellusOceanMassRL05CSR"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusOceanMassRL05GFZ", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusOceanMassRL05GFZ.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplGraceTellusOceanMassRL05GFZ/request", "", "public", "GRACE TELLUS Ocean Mass Grids, GeoforshungsZentrum Postsdam (GFZ), RL05, GRCTellus.GFZ.200208 201612.OCN.RL05.DSTvDPC1409, 1.0\u00b0", "Gravity Recovery and Climate Experiment (GRACE) Tellus, Ocean Mass Grids, GeoforshungsZentrum Postsdam (GFZ), RL05, (GRCTellus).GFZ.200208 201612.OCN.RL05.DSTvDPC1409\n\nThe GRACE twin satellites, launched 17 March 2002, are making detailed measurements of Earth's gravity field changes and revolutionizing investigations about Earth's water reservoirs over land, ice and oceans, as well as earthquakes and crustal deformations. The two GRACE satellites have completed more than 13 years of continuous measurements!\n\nGRACE is a collaboration of the US and German space agencies (NASA and DLR). GRACE ground segment operations are currently co-funded by the GFZ German Research Centre for Geosciences and the European Space Agency (ESA). NASA, ESA, GFZ and DLR are supporting the continuation of the measurements of mass redistribution in the Earth system. The key partners in the design, construction and launch of the mission have been the Jet Propulsion Laboratory, the University of Texas Center for Space Research, GFZ German Research Centre for Geosciences, as well as Astrium GmBH, Space Systems Loral (SS/L), Onera and Eurockot GmBH.\n\nJPL, CSR or GFZ - which solution should I use? \nhttps://grace.jpl.nasa.gov/data/choosing-a-solution/\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlwe_thickness (Liquid_Water_Water_Thickness, cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplGraceTellusOceanMassRL05GFZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplGraceTellusOceanMassRL05GFZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplGraceTellusOceanMassRL05GFZ/index.json", "https://grace.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplGraceTellusOceanMassRL05GFZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplGraceTellusOceanMassRL05GFZ&showErrors=false&email=", "JPL / GRACE-TELLUS", "jplGraceTellusOceanMassRL05GFZ"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusOceanMassRL05JPL", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusOceanMassRL05JPL.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplGraceTellusOceanMassRL05JPL/request", "", "public", "GRACE TELLUS Ocean Mass Grids, Jet Propulsion Laboratory (JPL), RL05, GRCTellus.JPL.200208 201612.OCN.RL05 1.DSTvDPC1412, 1.0\u00b0", "Gravity Recovery and Climate Experiment (GRACE) Tellus, Ocean Mass Grids, Jet Propulsion Laboratory (JPL), RL05, (GRCTellus).Jet Propulsion Laboratory (JPL).200208 201612.OCN.RL05 1.DSTvDPC1412\n\nThe GRACE twin satellites, launched 17 March 2002, are making detailed measurements of Earth's gravity field changes and revolutionizing investigations about Earth's water reservoirs over land, ice and oceans, as well as earthquakes and crustal deformations. The two GRACE satellites have completed more than 13 years of continuous measurements!\n\nGRACE is a collaboration of the US and German space agencies (NASA and DLR). GRACE ground segment operations are currently co-funded by the GFZ German Research Centre for Geosciences and the European Space Agency (ESA). NASA, ESA, GFZ and DLR are supporting the continuation of the measurements of mass redistribution in the Earth system. The key partners in the design, construction and launch of the mission have been the Jet Propulsion Laboratory, the University of Texas Center for Space Research, GFZ German Research Centre for Geosciences, as well as Astrium GmBH, Space Systems Loral (SS/L), Onera and Eurockot GmBH.\n\nJPL, CSR or GFZ - which solution should I use? \nhttps://grace.jpl.nasa.gov/data/choosing-a-solution/\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlwe_thickness (Liquid_Water_Water_Thickness, cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplGraceTellusOceanMassRL05JPL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplGraceTellusOceanMassRL05JPL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplGraceTellusOceanMassRL05JPL/index.json", "https://grace.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplGraceTellusOceanMassRL05JPL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplGraceTellusOceanMassRL05JPL&showErrors=false&email=", "JPL / GRACE-TELLUS", "jplGraceTellusOceanMassRL05JPL"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4467_cb20_c1f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4467_cb20_c1f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4467_cb20_c1f2/request", "", "public", "Grays Harbor (P280) Bathymetric Digital Elevation Model (grays harbor P280 2018), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4467_cb20_c1f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4467_cb20_c1f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4467_cb20_c1f2/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4467_cb20_c1f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4467_cb20_c1f2&showErrors=false&email=", "NOAA", "noaa_ngdc_4467_cb20_c1f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e923_4360_6db0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e923_4360_6db0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e923_4360_6db0/request", "", "public", "Gridded 3-day average of Sea Surface Salinity calculated from SMOS level-2 User Data Product, 1.0\u00b0, 2010-2015", "This dataset is created by National Oceanographic Data Center (NODC) Satellite Oceanography Group from SMOS level-2 Sea Surface Salinity User Data Product (SM_xxxx_MIR_OSUDP2), calculted from using 1.0x1.0 (lon/lat) degree box average\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss1 (3-days average of Sea Surface Salinity using roughness model 1, PSU)\nsss1_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 1, count)\nsss1_qi (3-days average of quality index for sss1: lower=better., count)\nsss2 (3-days average of Sea Surface Salinity using roughness model 2, PSU)\nsss2_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 2, count)\nsss2_qi (3-days average of quality index for sss2: lower=better., count)\nsss3 (3-days average of Sea Surface Salinity using roughness model 3, PSU)\nsss3_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 3, count)\nsss3_qi (3-days average of quality index for sss3: lower=better., count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e923_4360_6db0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e923_4360_6db0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e923_4360_6db0/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/smos/nodc_binned_v2.0/SMOS_sss_3day_aggregate_20150813.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e923_4360_6db0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e923_4360_6db0&showErrors=false&email=", "US NGDC", "noaa_nodc_e923_4360_6db0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a63d_f90a_cc71", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a63d_f90a_cc71.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_a63d_f90a_cc71/request", "", "public", "Gridded 8-day running mean sea surface salinity calculted from JPL SMAP level-2 swath data, 1.0\u00b0, 2015-present", "This dataset is created by National Centers for Environmental Information (NCEI) CCOG from SMAP level-2 sea surface salinity Product (Version 3.0) created by Jet Propulsion Laboratory (JPL).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss (SMAP 8-day running mean sea surface salinity, PSU)\nsss_obs (valid observation number used to calculate sss from level-2 swath data, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_a63d_f90a_cc71_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_a63d_f90a_cc71_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_a63d_f90a_cc71/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/smap/smap_8day.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_a63d_f90a_cc71.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_a63d_f90a_cc71&showErrors=false&email=", "US National Centers for Environmental Information", "noaa_nodc_a63d_f90a_cc71"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ca4b_b7a4_55cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ca4b_b7a4_55cc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_ca4b_b7a4_55cc/request", "", "public", "Gridded monthly mean of Sea Surface Salinity calculated from SMOS level-2 User Data Product, 1.0\u00b0, 2010-2015", "This dataset is created by National Oceanographic Data Center (NODC) Satellite Oceanography Group from SMOS level-2 Sea Surface Salinity User Data Product (SM_xxxx_MIR_OSUDP2), calculted from using 1.0x1.0 (lon/lat) degree box average\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss1 (Monthly mean of Sea Surface Salinity using roughness model 1, PSU)\nsss1_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 1, count)\nsss1_qi (Monthly mean of quality index for sss1: lower=better., count)\nsss2 (Monthly mean of Sea Surface Salinity using roughness model 2, PSU)\nsss2_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 2, count)\nsss2_qi (Monthly mean of quality index for sss2: lower=better., count)\nsss3 (Monthly mean of Sea Surface Salinity using roughness model 3, PSU)\nsss3_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 3, count)\nsss3_qi (Monthly mean of quality index for sss3: lower=better., count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_ca4b_b7a4_55cc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_ca4b_b7a4_55cc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_ca4b_b7a4_55cc/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/smos/nodc_binned_v2.0/SMOS_sss_monthly_aggregate_20150813.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_ca4b_b7a4_55cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_ca4b_b7a4_55cc&showErrors=false&email=", "US NGDC", "noaa_nodc_ca4b_b7a4_55cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_aeeb_0706_c4b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_aeeb_0706_c4b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_aeeb_0706_c4b8/request", "", "public", "Gridded monthly mean Sea Surface Salinity calculated from Aquarius level-2 Combined Active-Passive algorithm (CAP) data, 1.0\u00b0, 2011-2014", "This dataset is created by National Oceanographic Data Center (NODC) Satellite Oceanography Group from Aquarius level-2 V2.0 CAP data,using 1.0x1.0 (lon/lat) degree box average\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss (Monthly mean Sea Surface Salinity from level-2 swath data, PSU)\nsss_obs (Valid observation number used to calculate SSS from level-2 swath data, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_aeeb_0706_c4b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_aeeb_0706_c4b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_aeeb_0706_c4b8/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/aquarius/nodc_binned_cap_v2.0/aquarius_monthly_aggregate_SSS_cap_V2_l3_binned_new.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_aeeb_0706_c4b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_aeeb_0706_c4b8&showErrors=false&email=", "JPL, California Institute of Technology", "noaa_nodc_aeeb_0706_c4b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b5c4_8771_1c1f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b5c4_8771_1c1f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b5c4_8771_1c1f/request", "", "public", "Gridded monthly mean sea surface salinity calculted from JPL SMAP level-2 swath data, 1.0\u00b0, 2015-present", "This dataset is created by National Centers for Environmental Information (NCEI) CCOG from SMAP level-2 sea surface salinity Product (Version 3.0) created by Jet Propulsion Laboratory (JPL).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss (SMAP monthly mean sea surface salinit, PSU)\nsss_obs (valid observation number used to calculate sss from level-2 swath data, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b5c4_8771_1c1f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b5c4_8771_1c1f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b5c4_8771_1c1f/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/smap/smap_monthly.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b5c4_8771_1c1f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b5c4_8771_1c1f&showErrors=false&email=", "US National Centers for Environmental Information", "noaa_nodc_b5c4_8771_1c1f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b01c_1c0d_6c6b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b01c_1c0d_6c6b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_b01c_1c0d_6c6b/request", "", "public", "Guam 1/3 sec Coastal Digital Elevation Model (Top Dataset, Regional, guam 13 mhw 2008), 9.259259E-5\u00b0", "Guam 1/3 sec Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_b01c_1c0d_6c6b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_b01c_1c0d_6c6b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_b01c_1c0d_6c6b/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_b01c_1c0d_6c6b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_b01c_1c0d_6c6b&showErrors=false&email=", "NOAA", "noaa_ngdc_b01c_1c0d_6c6b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d47a_f7f2_fd00", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d47a_f7f2_fd00.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d47a_f7f2_fd00/request", "", "public", "Guayama, Puerto Rico Coastal Digital Elevation Model (guayama 13 mhw 2007), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d47a_f7f2_fd00_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d47a_f7f2_fd00_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d47a_f7f2_fd00/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d47a_f7f2_fd00.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d47a_f7f2_fd00&showErrors=false&email=", "NOAA", "noaa_ngdc_d47a_f7f2_fd00"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_99e3_2c85_1d4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_99e3_2c85_1d4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_99e3_2c85_1d4d/request", "", "public", "Gustavus, Alaska Coastal Digital Elevation Model (gustavus 815 mhhw 2012), 1.4814814E-4\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_99e3_2c85_1d4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_99e3_2c85_1d4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_99e3_2c85_1d4d/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_99e3_2c85_1d4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_99e3_2c85_1d4d&showErrors=false&email=", "NOAA", "noaa_ngdc_99e3_2c85_1d4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e0c_7b02_93a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e0c_7b02_93a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e0c_7b02_93a0/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e0c_7b02_93a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e0c_7b02_93a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e0c_7b02_93a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e0c_7b02_93a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e0c_7b02_93a0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3e0c_7b02_93a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db71_e764_2972", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db71_e764_2972.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db71_e764_2972/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom.biased2.5), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.biased2.5.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly 2.5 Bias Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db71_e764_2972_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db71_e764_2972_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db71_e764_2972/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db71_e764_2972.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db71_e764_2972&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_db71_e764_2972"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b69_a9bd_e36a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b69_a9bd_e36a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b69_a9bd_e36a/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom.biased97.5), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.biased97.5.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly 97.5 Bias Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b69_a9bd_e36a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b69_a9bd_e36a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b69_a9bd_e36a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b69_a9bd_e36a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b69_a9bd_e36a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6b69_a9bd_e36a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e9a_1f1a_237c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e9a_1f1a_237c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6e9a_1f1a_237c/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom.mserror), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.mserror.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly M+S Errors, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6e9a_1f1a_237c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6e9a_1f1a_237c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6e9a_1f1a_237c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6e9a_1f1a_237c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6e9a_1f1a_237c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6e9a_1f1a_237c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_069d_ff4e_902c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_069d_ff4e_902c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_069d_ff4e_902c/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom.stationerror), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.stationerror.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly Station Errors, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_069d_ff4e_902c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_069d_ff4e_902c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_069d_ff4e_902c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_069d_ff4e_902c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_069d_ff4e_902c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_069d_ff4e_902c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f29a_8f1c_b66a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f29a_8f1c_b66a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f29a_8f1c_b66a/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly Variance Adjusted (air.mon.anom), 5.0\u00b0, 1850-2014", "This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/var/air.mon.anom.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3V: Surface Air Temperature Monthly Anomaly Variance Adjusted, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f29a_8f1c_b66a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f29a_8f1c_b66a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f29a_8f1c_b66a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f29a_8f1c_b66a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f29a_8f1c_b66a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f29a_8f1c_b66a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87e4_c3bd_8e9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87e4_c3bd_8e9f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_87e4_c3bd_8e9f/request", "", "public", "HADCRUT4 Combined Air Temperature/SST Anomaly (Top Dataset, hadcrut4, air.mon.anom.median), 5.0\u00b0, 1850-present", "HADCRUT4 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut4/air.mon.anom.median.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT4: Median Surface Air Temperature Monthly Median Anomaly from 100 ensemble members, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_87e4_c3bd_8e9f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_87e4_c3bd_8e9f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_87e4_c3bd_8e9f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.hadcrut4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_87e4_c3bd_8e9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_87e4_c3bd_8e9f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_87e4_c3bd_8e9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e74_4bc8_6541", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e74_4bc8_6541.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2e74_4bc8_6541/request", "", "public", "HADCRUT4 Combined Air Temperature/SST Anomaly (Top Dataset, hadcrut4, air.mon.ltm), 5.0\u00b0, 0001", "HADCRUT4 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut4/air.mon.ltm.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean HADCRUT4: Median Surface Air Temperature Monthly Median Anomaly from 100 ensemble members, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2e74_4bc8_6541_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2e74_4bc8_6541_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2e74_4bc8_6541/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.hadcrut4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2e74_4bc8_6541.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2e74_4bc8_6541&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2e74_4bc8_6541"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2454_f596_6532", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2454_f596_6532.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2454_f596_6532/request", "", "public", "HADCRUT4 Combined Air Temperature/SST Anomaly Error (Top Dataset, hadcrut4, air.mon.anom.error), 5.0\u00b0, 1850-present", "HADCRUT4 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly Error. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut4/air.mon.anom.error.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT4: Median Surface Air Temperature Monthly Median Anomaly Error from 100 ensemble members, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2454_f596_6532_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2454_f596_6532_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2454_f596_6532/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.hadcrut4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2454_f596_6532.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2454_f596_6532&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2454_f596_6532"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdHadISST", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdHadISST.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdHadISST/request", "", "public", "HadISST Average Sea Surface Temperature, 1\u00b0, Global, Monthly, 1870-present", "The Met Office Hadley Centre's sea ice and sea surface temperature (SST) data set, HadISST1, replaces the Global sea Ice and Sea Surface Temperature (GISST) data sets, and is a unique combination of monthly globally-complete fields of SST and sea ice concentration on a 1 degree latitude-longitude grid from 1870 to date. \n \nWARNING: 10 March 2016: A detailed analysis of HadISST (https://ir.library.oregonstate.edu/xmlui/handle/1957/58385) has identified a number of problems, some of which might limit the utility of the dataset for certain scientific applications, particularly where high resolution SST data or spatial gradients of SST are required. Thanks to Dudley Chelton and Craig Risien for bringing this to our attention and their detailed analysis. \n\nThe SST data are taken from the Met Office Marine Data Bank (MDB), which from 1982 onwards also includes data received through the Global Telecommunications System (GTS). In order to enhance data coverage, monthly median SSTs for 1871-1995 from the Comprehensive Ocean-Atmosphere Data Set (COADS) (now ICOADS) were also used where there were no MDB data.\n\nHadISST1 temperatures are reconstructed using a two stage reduced-space optimal interpolation procedure, followed by superposition of quality-improved gridded observations onto the reconstructions to restore local detail. SSTs near sea ice are estimated using statistical relationships between SST and sea ice concentration.\n\nData restrictions: for academic research use only.\n\nUpdates and supplementary information will be available from http://www.hadobs.org\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdHadISST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdHadISST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdHadISST/index.json", "http://hadobs.metoffice.com/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdHadISST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdHadISST&showErrors=false&email=", "Met Office Hadley Centre", "erdHadISST"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdHadISSTIce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdHadISSTIce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdHadISSTIce/request", "", "public", "HadISST Sea Ice Component, 1\u00b0, Global, Monthly, 1870-present", "The Met Office Hadley Centre's sea ice and sea surface temperature (SST) data set, HadISST1, replaces the Global sea Ice and Sea Surface Temperature (GISST) data sets, and is a unique combination of monthly globally-complete fields of SST and sea ice concentration on a 1 degree latitude-longitude grid from 1870 to date. \n \nWARNING: 10 March 2016: A detailed analysis of HadISST (https://ir.library.oregonstate.edu/xmlui/handle/1957/58385) has identified a number of problems, some of which might limit the utility of the dataset for certain scientific applications, particularly where high resolution SST data or spatial gradients of SST are required. Thanks to Dudley Chelton and Craig Risien for bringing this to our attention and their detailed analysis.\n\nData restrictions: for academic research use only.\n\nUpdates and supplementary information will be available from http://www.hadobs.org\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsic (Monthly 1 degree resolution sea ice concentration, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdHadISSTIce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdHadISSTIce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdHadISSTIce/index.json", "http://hadobs.metoffice.com/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdHadISSTIce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdHadISSTIce&showErrors=false&email=", "Met Office Hadley Centre", "erdHadISSTIce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdHadISSTDecomp", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdHadISSTDecomp.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdHadISSTDecomp/request", "", "public", "HadISST SST State-Space Components, 1870-present (Monthly)", "State-space components from analysis of HadISST data by Roy Mendelssohn.\n\nThe SST data are taken from the Met Office Marine Data Bank (MDB), which from 1982 onwards also includes data received through the Global Telecommunications System (GTS). In order to enhance data coverage, monthly median SSTs for 1871-1995 from the Comprehensive Ocean-Atmosphere Data Set (COADS) (now ICOADS) were also used where there were no MDB data.\n\nHadISST1 temperatures are reconstructed using a two stage reduced-space optimal interpolation procedure, followed by superposition of quality-improved gridded observations onto the reconstructions to restore local detail. SSTs near sea ice are estimated using statistical relationships between SST and sea ice concentration.\n\nData restrictions: for academic research use only.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst_trend (Monthly 1 degree resolution SST Trend, degC)\nsst_cycle (Monthly 1 degree resolution SST Cycle, degC)\nsst_seasonal (Monthly 1 degree resolution SST Seasonal, degC)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdHadISSTDecomp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdHadISSTDecomp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdHadISSTDecomp/index.json", "https://oceanwatch.pfeg.noaa.gov/thredds/dodsC/HadleyCenter/HadISSTDecomp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdHadISSTDecomp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdHadISSTDecomp&showErrors=false&email=", "NOAA SWFSC ERD", "erdHadISSTDecomp"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8c92_be89_3262", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8c92_be89_3262.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8c92_be89_3262/request", "", "public", "Hanalei, Hawaii Coastal Digital Elevation Model (Top Dataset, Regional, hanalei 13 mhw 2011), 9.259259E-5\u00b0", "Hanalei, Hawaii Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8c92_be89_3262_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8c92_be89_3262_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8c92_be89_3262/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8c92_be89_3262.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8c92_be89_3262&showErrors=false&email=", "NOAA", "noaa_ngdc_8c92_be89_3262"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0b76_51eb_68f4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0b76_51eb_68f4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0b76_51eb_68f4/request", "", "public", "Hanalei, Hawaii Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, HanaleiHI A), 0.033333335\u00b0", "Hanalei, Hawaii Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0b76_51eb_68f4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0b76_51eb_68f4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0b76_51eb_68f4/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0b76_51eb_68f4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0b76_51eb_68f4&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_0b76_51eb_68f4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_10f0_226d_0b7f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_10f0_226d_0b7f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_10f0_226d_0b7f/request", "", "public", "Hanalei, Hawaii Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, HanaleiHI B), 0.005\u00b0", "Hanalei, Hawaii Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_10f0_226d_0b7f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_10f0_226d_0b7f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_10f0_226d_0b7f/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_10f0_226d_0b7f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_10f0_226d_0b7f&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_10f0_226d_0b7f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_fc7b_71aa_6813", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_fc7b_71aa_6813.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_fc7b_71aa_6813/request", "", "public", "Hanalei, Hawaii Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, HanaleiHI C)", "Hanalei, Hawaii Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_fc7b_71aa_6813_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_fc7b_71aa_6813_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_fc7b_71aa_6813/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_fc7b_71aa_6813.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_fc7b_71aa_6813&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_fc7b_71aa_6813"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1597_70c6_e77b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1597_70c6_e77b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1597_70c6_e77b/request", "", "public", "Hawaii 36 sec Coastal Digital Elevation Model (Top Dataset, Regional, hawaii 36 mllw 2005), 0.01\u00b0", "Hawaii 36 sec Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1597_70c6_e77b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1597_70c6_e77b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1597_70c6_e77b/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1597_70c6_e77b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1597_70c6_e77b&showErrors=false&email=", "NOAA", "noaa_ngdc_1597_70c6_e77b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ec0c_fe2e_4be8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ec0c_fe2e_4be8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_ec0c_fe2e_4be8/request", "", "public", "Hawaii 6 sec Coastal Digital Elevation Model (Top Dataset, Regional, hawaii 6 mllw 2005), 0.0016666667\u00b0", "Hawaii 6 sec Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_ec0c_fe2e_4be8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_ec0c_fe2e_4be8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ec0c_fe2e_4be8/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ec0c_fe2e_4be8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ec0c_fe2e_4be8&showErrors=false&email=", "NOAA", "noaa_ngdc_ec0c_fe2e_4be8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_dc27_b7d1_99ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_dc27_b7d1_99ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_dc27_b7d1_99ac/request", "", "public", "Hilo, Hawaii Coastal Digital Elevation Model (Top Dataset, Regional, hilo 13 mhw 2011), 9.259259E-5\u00b0", "Hilo, Hawaii Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_dc27_b7d1_99ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_dc27_b7d1_99ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_dc27_b7d1_99ac/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_dc27_b7d1_99ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_dc27_b7d1_99ac&showErrors=false&email=", "NOAA", "noaa_ngdc_dc27_b7d1_99ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f788_c263_83ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f788_c263_83ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f788_c263_83ca/request", "", "public", "HIRS outgoing longwave radiation, regridded to 90S to 90N (Top Dataset, olrcdr, olr.day.mean), 1.0\u00b0, 1979-2012", "HIRS outgoing longwave radiation, regridded to 90S to 90N. The product contains the 1-degree by 1-degree daily mean outgoing longwave radiation flux at the top of the atmosphere derived from HIRS radiance observations onboard NOAA Television Infrared Observation Satellite (TIROS)-N series and MetOp satellites. The OLR retrieval uses multispectral regression models (Ellingson et al., 1989, Lee, 2014). The CDR processing includes HIRS radiance calibration, inter-satellite HIRS OLR calibration, normalization of geostationary-based OLR retrieval to HIRS, and grid-based 7-day boxcar temporal integration assisted with Imager-based OLR derived from Gridsat CDR data (Lee, 2014).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nolr (outgoing longwave radiation, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f788_c263_83ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f788_c263_83ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f788_c263_83ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.olrdcdr.interp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f788_c263_83ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f788_c263_83ca&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f788_c263_83ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_065a_72a5_ebab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_065a_72a5_ebab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_065a_72a5_ebab/request", "", "public", "HIRS outgoing longwave radiation, regridded to 90S to 90N (Top Dataset, olrcdr, olr.mon.ltm), 1.0\u00b0, 0001", "HIRS outgoing longwave radiation, regridded to 90S to 90N. The product contains the 1-degree by 1-degree daily mean outgoing longwave radiation flux at the top of the atmosphere derived from HIRS radiance observations onboard NOAA Television Infrared Observation Satellite (TIROS)-N series and MetOp satellites. The OLR retrieval uses multispectral regression models (Ellingson et al., 1989, Lee, 2014). The CDR processing includes HIRS radiance calibration, inter-satellite HIRS OLR calibration, normalization of geostationary-based OLR retrieval to HIRS, and grid-based 7-day boxcar temporal integration assisted with Imager-based OLR derived from Gridsat CDR data (Lee, 2014).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nolr (Long Term Mean Monthly mean of outgoing longwave radiation, W m-2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_065a_72a5_ebab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_065a_72a5_ebab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_065a_72a5_ebab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.olrdcdr.interp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_065a_72a5_ebab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_065a_72a5_ebab&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_065a_72a5_ebab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2902_a8c9_fa8a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2902_a8c9_fa8a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2902_a8c9_fa8a/request", "", "public", "HIRS outgoing longwave radiation, regridded to 90S to 90N (Top Dataset, olrcdr, olr.mon.mean), 1.0\u00b0, 1979-2012", "HIRS outgoing longwave radiation, regridded to 90S to 90N. The product contains the 1-degree by 1-degree daily mean outgoing longwave radiation flux at the top of the atmosphere derived from HIRS radiance observations onboard NOAA Television Infrared Observation Satellite (TIROS)-N series and MetOp satellites. The OLR retrieval uses multispectral regression models (Ellingson et al., 1989, Lee, 2014). The CDR processing includes HIRS radiance calibration, inter-satellite HIRS OLR calibration, normalization of geostationary-based OLR retrieval to HIRS, and grid-based 7-day boxcar temporal integration assisted with Imager-based OLR derived from Gridsat CDR data (Lee, 2014).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nolr (Monthly mean of outgoing longwave radiation, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2902_a8c9_fa8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2902_a8c9_fa8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2902_a8c9_fa8a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.olrdcdr.interp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2902_a8c9_fa8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2902_a8c9_fa8a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2902_a8c9_fa8a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3c09_f0bc_6c18", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3c09_f0bc_6c18.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3c09_f0bc_6c18/request", "", "public", "Homer, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, HomerAK A), 0.02\u00b0", "Homer, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3c09_f0bc_6c18_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3c09_f0bc_6c18_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3c09_f0bc_6c18/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3c09_f0bc_6c18.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3c09_f0bc_6c18&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_3c09_f0bc_6c18"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7327_20de_d145", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7327_20de_d145.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7327_20de_d145/request", "", "public", "Homer, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, HomerAK B)", "Homer, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7327_20de_d145_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7327_20de_d145_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7327_20de_d145/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7327_20de_d145.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7327_20de_d145&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_7327_20de_d145"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_44c2_49f4_d604", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_44c2_49f4_d604.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_44c2_49f4_d604/request", "", "public", "Homer, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, HomerAK C)", "Homer, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_44c2_49f4_d604_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_44c2_49f4_d604_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_44c2_49f4_d604/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_44c2_49f4_d604.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_44c2_49f4_d604&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_44c2_49f4_d604"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_49d5_6440_55ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_49d5_6440_55ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_49d5_6440_55ef/request", "", "public", "Hoonah, Alaska Coastal Digital Elevation Model (Top Dataset, Regional, hoonah 815 mhhw 2012), 1.4814814E-4\u00b0", "Hoonah, Alaska Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_49d5_6440_55ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_49d5_6440_55ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_49d5_6440_55ef/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_49d5_6440_55ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_49d5_6440_55ef&showErrors=false&email=", "NOAA", "noaa_ngdc_49d5_6440_55ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hycom_GLBa008_tdyx", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hycom_GLBa008_tdyx.graph", "", "", "public", "HYCOM GLBa0.08 1/12 deg HYCOM + NCODA Global Hindcast Analysis (Combined), 2008-present [time][Depth][Y][X]", "HYbrid Coordinate Ocean Model (HYCOM) GLBa0.08 from Hycom. The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][Depth][Y][X]):\nu (u-veloc. [91.1H], m/s)\nv (v-veloc. [91.1H], m/s)\ntemperature (temp [91.1H], degC)\nsalinity (Practical Salinity [90.8H], PSU)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/hycom_GLBa008_tdyx/index.json", "https://hycom.org/dataserver/glb-analysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/hycom_GLBa008_tdyx.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hycom_GLBa008_tdyx&showErrors=false&email=", "Naval Research Laboratory", "hycom_GLBa008_tdyx"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hycom_GLBa008_tyx", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hycom_GLBa008_tyx.graph", "", "", "public", "HYCOM GLBa0.08 1/12 deg HYCOM + NCODA Global Hindcast Analysis (Combined), 2008-present [time][Y][X]", "HYbrid Coordinate Ocean Model (HYCOM) GLBa0.08 from Hycom. The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][Y][X]):\nqtot (surf. heat flux [91.1H], w/m2)\nemp (surf. water flux [91.1H], kg/m2/s)\nsurface_temperature_trend (degC/day)\nsurface_salinity_trend (Surface Salinity Trend [30.1H], PSU/day)\nssh (sea surf. height [91.1H], m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/hycom_GLBa008_tyx/index.json", "https://hycom.org/dataserver/glb-analysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/hycom_GLBa008_tyx.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hycom_GLBa008_tyx&showErrors=false&email=", "Naval Research Laboratory", "hycom_GLBa008_tyx"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hycom_GLBa008_yx", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hycom_GLBa008_yx.graph", "", "", "public", "HYCOM GLBa0.08 1/12 deg HYCOM + NCODA Global Hindcast Analysis (Combined), [Y][X]", "HYbrid Coordinate Ocean Model (HYCOM) GLBa0.08 from Hycom. The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [Y][X]):\nLatitude (degrees_north)\nLongitude (degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/hycom_GLBa008_yx/index.json", "https://hycom.org/dataserver/glb-analysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/hycom_GLBa008_yx.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hycom_GLBa008_yx&showErrors=false&email=", "Naval Research Laboratory", "hycom_GLBa008_yx"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5787_8001_7e9c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5787_8001_7e9c.graph", "", "", "public", "HYCOM Region 1, HYCOM Region 1, Best Time Series [time], 2013-present", "Best time series, taking the data from the most recent run available. Aggregation of HYbrid Coordinate Ocean Model (HYCOM) Region 1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_5787_8001_7e9c/index.json", "http://www.navo.navy.mil/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_5787_8001_7e9c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_5787_8001_7e9c&showErrors=false&email=", "Fleet Numerical Meteorology and Oceanography Center", "noaa_ncddc_5787_8001_7e9c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_4c20_fd82_8763", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_4c20_fd82_8763.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_4c20_fd82_8763/request", "", "public", "HYCOM Region 1, HYCOM Region 1, Best Time Series [time][depth][lat][lon], 2013-present", "Best time series, taking the data from the most recent run available. Aggregation of HYbrid Coordinate Ocean Model (HYCOM) Region 1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\nwater_u (Eastward Water Velocity, meters/second)\nwater_v (Northward Water Velocity, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_4c20_fd82_8763_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_4c20_fd82_8763_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_4c20_fd82_8763/index.json", "http://www.navo.navy.mil/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_4c20_fd82_8763.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_4c20_fd82_8763&showErrors=false&email=", "Fleet Numerical Meteorology and Oceanography Center", "noaa_ncddc_4c20_fd82_8763"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_41ff_0910_a705", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_41ff_0910_a705.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_41ff_0910_a705/request", "", "public", "HYCOM Region 1, HYCOM Region 1, Best Time Series [time][lat][lon], 2013-present", "Best time series, taking the data from the most recent run available. Aggregation of HYbrid Coordinate Ocean Model (HYCOM) Region 1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_41ff_0910_a705_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_41ff_0910_a705_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_41ff_0910_a705/index.json", "http://www.navo.navy.mil/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_41ff_0910_a705.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_41ff_0910_a705&showErrors=false&email=", "Fleet Numerical Meteorology and Oceanography Center", "noaa_ncddc_41ff_0910_a705"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_a0b9_2746_3875", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_a0b9_2746_3875.graph", "", "", "public", "HYCOM Region 17, HYCOM Region 17, Best Time Series [time], 2013-present", "Best time series, taking the data from the most recent run available. Aggregation of HYbrid Coordinate Ocean Model (HYCOM) Region 1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_a0b9_2746_3875/index.json", "http://www.navo.navy.mil/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_a0b9_2746_3875.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_a0b9_2746_3875&showErrors=false&email=", "Fleet Numerical Meteorology and Oceanography Center", "noaa_ncddc_a0b9_2746_3875"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5aff_201b_f51a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5aff_201b_f51a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_5aff_201b_f51a/request", "", "public", "HYCOM Region 17, HYCOM Region 17, Best Time Series [time][depth][lat][lon], 2013-present", "Best time series, taking the data from the most recent run available. Aggregation of HYbrid Coordinate Ocean Model (HYCOM) Region 1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\nwater_u (Eastward Water Velocity, meters/second)\nwater_v (Northward Water Velocity, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_5aff_201b_f51a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_5aff_201b_f51a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_5aff_201b_f51a/index.json", "http://www.navo.navy.mil/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_5aff_201b_f51a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_5aff_201b_f51a&showErrors=false&email=", "Fleet Numerical Meteorology and Oceanography Center", "noaa_ncddc_5aff_201b_f51a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_386a_508d_9205", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_386a_508d_9205.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_386a_508d_9205/request", "", "public", "HYCOM Region 17, HYCOM Region 17, Best Time Series [time][lat][lon], 2013-present", "Best time series, taking the data from the most recent run available. Aggregation of HYbrid Coordinate Ocean Model (HYCOM) Region 1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_386a_508d_9205_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_386a_508d_9205_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_386a_508d_9205/index.json", "http://www.navo.navy.mil/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_386a_508d_9205.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_386a_508d_9205&showErrors=false&email=", "Fleet Numerical Meteorology and Oceanography Center", "noaa_ncddc_386a_508d_9205"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_b2d0_c04b_f99e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_b2d0_c04b_f99e.graph", "", "", "public", "HYCOM Region 6, HYCOM Region 6, Best Time Series [time], 2013-present", "Best time series, taking the data from the most recent run available. Aggregation of HYbrid Coordinate Ocean Model (HYCOM) Region 6 Aggregation of HYCOM Region 1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_b2d0_c04b_f99e/index.json", "http://www.navo.navy.mil/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_b2d0_c04b_f99e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_b2d0_c04b_f99e&showErrors=false&email=", "Fleet Numerical Meteorology and Oceanography Center", "noaa_ncddc_b2d0_c04b_f99e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_ea7e_2802_0d61", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_ea7e_2802_0d61.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_ea7e_2802_0d61/request", "", "public", "HYCOM Region 6, HYCOM Region 6, Best Time Series [time][depth][lat][lon], 2013-present", "Best time series, taking the data from the most recent run available. Aggregation of HYbrid Coordinate Ocean Model (HYCOM) Region 6 Aggregation of HYCOM Region 1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\nwater_u (Eastward Water Velocity, meters/second)\nwater_v (Northward Water Velocity, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_ea7e_2802_0d61_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_ea7e_2802_0d61_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_ea7e_2802_0d61/index.json", "http://www.navo.navy.mil/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_ea7e_2802_0d61.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_ea7e_2802_0d61&showErrors=false&email=", "Fleet Numerical Meteorology and Oceanography Center", "noaa_ncddc_ea7e_2802_0d61"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_bc03_d070_bdd3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_bc03_d070_bdd3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_bc03_d070_bdd3/request", "", "public", "HYCOM Region 6, HYCOM Region 6, Best Time Series [time][lat][lon], 2013-present", "Best time series, taking the data from the most recent run available. Aggregation of HYbrid Coordinate Ocean Model (HYCOM) Region 6 Aggregation of HYCOM Region 1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_bc03_d070_bdd3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_bc03_d070_bdd3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_bc03_d070_bdd3/index.json", "http://www.navo.navy.mil/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_bc03_d070_bdd3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_bc03_d070_bdd3&showErrors=false&email=", "Fleet Numerical Meteorology and Oceanography Center", "noaa_ncddc_bc03_d070_bdd3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5b95_a054_4c56", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5b95_a054_4c56.graph", "", "", "public", "HYCOM Region 7, HYCOM Region 7, Best Time Series [time], 2013-present", "Best time series, taking the data from the most recent run available. Aggregation of HYbrid Coordinate Ocean Model (HYCOM) Region 7 Aggregation of HYCOM Region 1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_5b95_a054_4c56/index.json", "http://www.navo.navy.mil/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_5b95_a054_4c56.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_5b95_a054_4c56&showErrors=false&email=", "Fleet Numerical Meteorology and Oceanography Center", "noaa_ncddc_5b95_a054_4c56"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_e6e4_fa1a_f2f4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_e6e4_fa1a_f2f4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_e6e4_fa1a_f2f4/request", "", "public", "HYCOM Region 7, HYCOM Region 7, Best Time Series [time][depth][lat][lon], 2013-present", "Best time series, taking the data from the most recent run available. Aggregation of HYbrid Coordinate Ocean Model (HYCOM) Region 7 Aggregation of HYCOM Region 1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\nwater_u (Eastward Water Velocity, meters/second)\nwater_v (Northward Water Velocity, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_e6e4_fa1a_f2f4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_e6e4_fa1a_f2f4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_e6e4_fa1a_f2f4/index.json", "http://www.navo.navy.mil/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_e6e4_fa1a_f2f4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_e6e4_fa1a_f2f4&showErrors=false&email=", "Fleet Numerical Meteorology and Oceanography Center", "noaa_ncddc_e6e4_fa1a_f2f4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_43c5_24ad_8cf6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_43c5_24ad_8cf6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_43c5_24ad_8cf6/request", "", "public", "HYCOM Region 7, HYCOM Region 7, Best Time Series [time][lat][lon], 2013-present", "Best time series, taking the data from the most recent run available. Aggregation of HYbrid Coordinate Ocean Model (HYCOM) Region 7 Aggregation of HYCOM Region 1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_43c5_24ad_8cf6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_43c5_24ad_8cf6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_43c5_24ad_8cf6/index.json", "http://www.navo.navy.mil/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_43c5_24ad_8cf6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_43c5_24ad_8cf6&showErrors=false&email=", "Fleet Numerical Meteorology and Oceanography Center", "noaa_ncddc_43c5_24ad_8cf6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_cc1d_d4d0_30bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_cc1d_d4d0_30bd.graph", "", "", "public", "HYCOM Surface, HYCOM Surface, Best Time Series [time], 2013-present", "Best time series, taking the data from the most recent run available. Aggregation of HYbrid Coordinate Ocean Model (HYCOM) Region Surface Aggregation of HYCOM Region 1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_cc1d_d4d0_30bd/index.json", "http://www.navo.navy.mil/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_cc1d_d4d0_30bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_cc1d_d4d0_30bd&showErrors=false&email=", "Fleet Numerical Meteorology and Oceanography Center", "noaa_ncddc_cc1d_d4d0_30bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_b21b_5245_e819", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_b21b_5245_e819.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_b21b_5245_e819/request", "", "public", "HYCOM Surface, HYCOM Surface, Best Time Series [time][depth][lat][lon], 2013-present", "Best time series, taking the data from the most recent run available. Aggregation of HYbrid Coordinate Ocean Model (HYCOM) Region Surface Aggregation of HYCOM Region 1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\nwater_u (Eastward Water Velocity, meters/second)\nwater_v (Northward Water Velocity, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_b21b_5245_e819_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_b21b_5245_e819_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_b21b_5245_e819/index.json", "http://www.navo.navy.mil/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_b21b_5245_e819.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_b21b_5245_e819&showErrors=false&email=", "Fleet Numerical Meteorology and Oceanography Center", "noaa_ncddc_b21b_5245_e819"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_0a17_2f0c_7294", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_0a17_2f0c_7294.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_0a17_2f0c_7294/request", "", "public", "HYCOM Surface, HYCOM Surface, Best Time Series [time][lat][lon], 2013-present", "Best time series, taking the data from the most recent run available. Aggregation of HYbrid Coordinate Ocean Model (HYCOM) Region Surface Aggregation of HYCOM Region 1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_0a17_2f0c_7294_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_0a17_2f0c_7294_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_0a17_2f0c_7294/index.json", "http://www.navo.navy.mil/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_0a17_2f0c_7294.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_0a17_2f0c_7294&showErrors=false&email=", "Fleet Numerical Meteorology and Oceanography Center", "noaa_ncddc_0a17_2f0c_7294"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAIicov1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAIicov1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAIicov1day/request", "", "public", "Ice Coverage, Aqua AMSR-E, Near Real Time, Global, 2004-2011 (1 Day Composite)", "Ice Coverage is measured by the Advanced Microwave Scanning Radiometer for the Earth Observing System (AMSR-E) onboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nice (Sea Ice Area Fraction, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAIicov1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAIicov1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAIicov1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AI_icov_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAIicov1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAIicov1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAIicov1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAIicov1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAIicov1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAIicov1day_LonPM180/request", "", "public", "Ice Coverage, Aqua AMSR-E, Near Real Time, Global, 2004-2011 (1 Day Composite), Lon+/-180", "Ice Coverage is measured by the Advanced Microwave Scanning Radiometer for the Earth Observing System (AMSR-E) onboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nice (Sea Ice Area Fraction, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAIicov1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAIicov1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAIicov1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AI_icov_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAIicov1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAIicov1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAIicov1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAIicovmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAIicovmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAIicovmday/request", "", "public", "Ice Coverage, Aqua AMSR-E, Near Real Time, Global, 2004-2011 (Monthly Composite)", "Ice Coverage is measured by the Advanced Microwave Scanning Radiometer for the Earth Observing System (AMSR-E) onboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nice (Sea Ice Area Fraction, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAIicovmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAIicovmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAIicovmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AI_icov_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAIicovmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAIicovmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAIicovmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAIicovmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAIicovmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAIicovmday_LonPM180/request", "", "public", "Ice Coverage, Aqua AMSR-E, Near Real Time, Global, 2004-2011 (Monthly Composite), Lon+/-180", "Ice Coverage is measured by the Advanced Microwave Scanning Radiometer for the Earth Observing System (AMSR-E) onboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nice (Sea Ice Area Fraction, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAIicovmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAIicovmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAIicovmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AI_icov_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAIicovmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAIicovmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAIicovmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b32_f4ae_e5c7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b32_f4ae_e5c7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b32_f4ae_e5c7/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b32_f4ae_e5c7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b32_f4ae_e5c7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b32_f4ae_e5c7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b32_f4ae_e5c7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b32_f4ae_e5c7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5b32_f4ae_e5c7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17f3_bb43_0bab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17f3_bb43_0bab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_17f3_bb43_0bab/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_17f3_bb43_0bab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_17f3_bb43_0bab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_17f3_bb43_0bab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_17f3_bb43_0bab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_17f3_bb43_0bab&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_17f3_bb43_0bab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e791_ed5e_389c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e791_ed5e_389c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e791_ed5e_389c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e791_ed5e_389c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e791_ed5e_389c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e791_ed5e_389c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e791_ed5e_389c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e791_ed5e_389c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e791_ed5e_389c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1e2_98bd_d268", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1e2_98bd_d268.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a1e2_98bd_d268/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a1e2_98bd_d268_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a1e2_98bd_d268_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a1e2_98bd_d268/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a1e2_98bd_d268.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a1e2_98bd_d268&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a1e2_98bd_d268"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20c0_f9d3_c5bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20c0_f9d3_c5bc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_20c0_f9d3_c5bc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_20c0_f9d3_c5bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_20c0_f9d3_c5bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_20c0_f9d3_c5bc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_20c0_f9d3_c5bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_20c0_f9d3_c5bc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_20c0_f9d3_c5bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5c6_c0ec_632d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5c6_c0ec_632d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5c6_c0ec_632d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5c6_c0ec_632d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5c6_c0ec_632d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5c6_c0ec_632d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5c6_c0ec_632d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5c6_c0ec_632d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c5c6_c0ec_632d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c06d_2051_391f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c06d_2051_391f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c06d_2051_391f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c06d_2051_391f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c06d_2051_391f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c06d_2051_391f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c06d_2051_391f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c06d_2051_391f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c06d_2051_391f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f7f_2565_956b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f7f_2565_956b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f7f_2565_956b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f7f_2565_956b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f7f_2565_956b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f7f_2565_956b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f7f_2565_956b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f7f_2565_956b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2f7f_2565_956b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_804f_8a2e_d99c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_804f_8a2e_d99c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_804f_8a2e_d99c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_804f_8a2e_d99c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_804f_8a2e_d99c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_804f_8a2e_d99c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_804f_8a2e_d99c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_804f_8a2e_d99c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_804f_8a2e_d99c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c26e_8475_c8f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c26e_8475_c8f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c26e_8475_c8f1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c26e_8475_c8f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c26e_8475_c8f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c26e_8475_c8f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c26e_8475_c8f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c26e_8475_c8f1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c26e_8475_c8f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c153_e09d_b35f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c153_e09d_b35f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c153_e09d_b35f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c153_e09d_b35f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c153_e09d_b35f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c153_e09d_b35f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c153_e09d_b35f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c153_e09d_b35f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c153_e09d_b35f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3bc_96e8_f581", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3bc_96e8_f581.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f3bc_96e8_f581/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f3bc_96e8_f581_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f3bc_96e8_f581_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f3bc_96e8_f581/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f3bc_96e8_f581.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f3bc_96e8_f581&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f3bc_96e8_f581"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a575_5cb2_f982", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a575_5cb2_f982.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a575_5cb2_f982/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a575_5cb2_f982_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a575_5cb2_f982_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a575_5cb2_f982/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a575_5cb2_f982.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a575_5cb2_f982&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a575_5cb2_f982"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e2c_4ff1_850d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e2c_4ff1_850d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e2c_4ff1_850d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e2c_4ff1_850d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e2c_4ff1_850d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e2c_4ff1_850d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e2c_4ff1_850d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e2c_4ff1_850d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8e2c_4ff1_850d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2d6_ac32_3210", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2d6_ac32_3210.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a2d6_ac32_3210/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a2d6_ac32_3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a2d6_ac32_3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a2d6_ac32_3210/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a2d6_ac32_3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a2d6_ac32_3210&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a2d6_ac32_3210"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c820_0667_6de8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c820_0667_6de8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c820_0667_6de8/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c820_0667_6de8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c820_0667_6de8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c820_0667_6de8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c820_0667_6de8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c820_0667_6de8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c820_0667_6de8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb1e_53c6_585d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb1e_53c6_585d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bb1e_53c6_585d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bb1e_53c6_585d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bb1e_53c6_585d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bb1e_53c6_585d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bb1e_53c6_585d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bb1e_53c6_585d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bb1e_53c6_585d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f01c_8572_efc4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f01c_8572_efc4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f01c_8572_efc4/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f01c_8572_efc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f01c_8572_efc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f01c_8572_efc4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f01c_8572_efc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f01c_8572_efc4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f01c_8572_efc4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4390_2f41_09d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4390_2f41_09d2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4390_2f41_09d2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4390_2f41_09d2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4390_2f41_09d2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4390_2f41_09d2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4390_2f41_09d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4390_2f41_09d2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4390_2f41_09d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7082_f00a_48ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7082_f00a_48ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7082_f00a_48ce/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7082_f00a_48ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7082_f00a_48ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7082_f00a_48ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7082_f00a_48ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7082_f00a_48ce&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7082_f00a_48ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba58_0935_d7fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba58_0935_d7fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ba58_0935_d7fd/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ba58_0935_d7fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ba58_0935_d7fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ba58_0935_d7fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ba58_0935_d7fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ba58_0935_d7fd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ba58_0935_d7fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9611_24db_0d99", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9611_24db_0d99.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9611_24db_0d99/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9611_24db_0d99_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9611_24db_0d99_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9611_24db_0d99/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9611_24db_0d99.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9611_24db_0d99&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9611_24db_0d99"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4d5_eb94_8188", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4d5_eb94_8188.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a4d5_eb94_8188/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a4d5_eb94_8188_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a4d5_eb94_8188_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a4d5_eb94_8188/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a4d5_eb94_8188.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a4d5_eb94_8188&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a4d5_eb94_8188"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fede_5d4d_15cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fede_5d4d_15cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fede_5d4d_15cd/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fede_5d4d_15cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fede_5d4d_15cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fede_5d4d_15cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fede_5d4d_15cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fede_5d4d_15cd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fede_5d4d_15cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbed_3cfa_1b60", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbed_3cfa_1b60.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dbed_3cfa_1b60/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dbed_3cfa_1b60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dbed_3cfa_1b60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dbed_3cfa_1b60/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dbed_3cfa_1b60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dbed_3cfa_1b60&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_dbed_3cfa_1b60"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e1a_723a_0626", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e1a_723a_0626.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1e1a_723a_0626/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1e1a_723a_0626_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1e1a_723a_0626_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1e1a_723a_0626/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1e1a_723a_0626.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1e1a_723a_0626&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1e1a_723a_0626"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9290_308f_ffd2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9290_308f_ffd2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9290_308f_ffd2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9290_308f_ffd2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9290_308f_ffd2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9290_308f_ffd2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9290_308f_ffd2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9290_308f_ffd2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9290_308f_ffd2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_25ad_809e_478e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_25ad_809e_478e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_25ad_809e_478e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_25ad_809e_478e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_25ad_809e_478e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_25ad_809e_478e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_25ad_809e_478e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_25ad_809e_478e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_25ad_809e_478e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_200d_3ec5_b321", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_200d_3ec5_b321.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_200d_3ec5_b321/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_200d_3ec5_b321_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_200d_3ec5_b321_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_200d_3ec5_b321/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_200d_3ec5_b321.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_200d_3ec5_b321&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_200d_3ec5_b321"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c32_37d4_26e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c32_37d4_26e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c32_37d4_26e3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c32_37d4_26e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c32_37d4_26e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c32_37d4_26e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c32_37d4_26e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c32_37d4_26e3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9c32_37d4_26e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eeda_479c_e51d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eeda_479c_e51d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eeda_479c_e51d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eeda_479c_e51d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eeda_479c_e51d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eeda_479c_e51d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eeda_479c_e51d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eeda_479c_e51d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_eeda_479c_e51d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca6f_e416_959d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca6f_e416_959d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca6f_e416_959d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca6f_e416_959d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca6f_e416_959d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca6f_e416_959d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca6f_e416_959d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca6f_e416_959d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ca6f_e416_959d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edda_4125_06ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edda_4125_06ba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_edda_4125_06ba/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_edda_4125_06ba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_edda_4125_06ba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_edda_4125_06ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_edda_4125_06ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_edda_4125_06ba&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_edda_4125_06ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1fb_8884_c620", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1fb_8884_c620.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d1fb_8884_c620/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d1fb_8884_c620_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d1fb_8884_c620_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d1fb_8884_c620/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d1fb_8884_c620.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d1fb_8884_c620&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d1fb_8884_c620"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_774a_7ee3_3cd2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_774a_7ee3_3cd2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_774a_7ee3_3cd2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_774a_7ee3_3cd2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_774a_7ee3_3cd2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_774a_7ee3_3cd2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_774a_7ee3_3cd2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_774a_7ee3_3cd2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_774a_7ee3_3cd2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a49d_f59a_d8a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a49d_f59a_d8a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a49d_f59a_d8a2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a49d_f59a_d8a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a49d_f59a_d8a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a49d_f59a_d8a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a49d_f59a_d8a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a49d_f59a_d8a2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a49d_f59a_d8a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b77d_4240_c4d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b77d_4240_c4d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b77d_4240_c4d4/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b77d_4240_c4d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b77d_4240_c4d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b77d_4240_c4d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b77d_4240_c4d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b77d_4240_c4d4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b77d_4240_c4d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3997_a07f_f709", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3997_a07f_f709.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3997_a07f_f709/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3997_a07f_f709_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3997_a07f_f709_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3997_a07f_f709/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3997_a07f_f709.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3997_a07f_f709&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3997_a07f_f709"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d16_5098_d2b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d16_5098_d2b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d16_5098_d2b0/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d16_5098_d2b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d16_5098_d2b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d16_5098_d2b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d16_5098_d2b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d16_5098_d2b0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d16_5098_d2b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed10_b627_1fe9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed10_b627_1fe9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ed10_b627_1fe9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ed10_b627_1fe9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ed10_b627_1fe9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ed10_b627_1fe9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ed10_b627_1fe9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ed10_b627_1fe9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ed10_b627_1fe9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2443_5b6a_ca57", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2443_5b6a_ca57.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2443_5b6a_ca57/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2443_5b6a_ca57_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2443_5b6a_ca57_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2443_5b6a_ca57/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2443_5b6a_ca57.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2443_5b6a_ca57&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2443_5b6a_ca57"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6374_fe27_8590", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6374_fe27_8590.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6374_fe27_8590/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6374_fe27_8590_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6374_fe27_8590_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6374_fe27_8590/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6374_fe27_8590.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6374_fe27_8590&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6374_fe27_8590"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_733d_168c_612c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_733d_168c_612c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_733d_168c_612c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_733d_168c_612c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_733d_168c_612c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_733d_168c_612c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_733d_168c_612c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_733d_168c_612c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_733d_168c_612c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e59_6a84_bf65", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e59_6a84_bf65.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e59_6a84_bf65/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e59_6a84_bf65_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e59_6a84_bf65_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e59_6a84_bf65/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e59_6a84_bf65.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e59_6a84_bf65&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3e59_6a84_bf65"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b94_1cec_1e78", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b94_1cec_1e78.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4b94_1cec_1e78/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4b94_1cec_1e78_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4b94_1cec_1e78_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4b94_1cec_1e78/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4b94_1cec_1e78.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4b94_1cec_1e78&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4b94_1cec_1e78"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c979_704f_fb58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c979_704f_fb58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c979_704f_fb58/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c979_704f_fb58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c979_704f_fb58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c979_704f_fb58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c979_704f_fb58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c979_704f_fb58&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c979_704f_fb58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_152f_245c_7eaa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_152f_245c_7eaa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_152f_245c_7eaa/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_152f_245c_7eaa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_152f_245c_7eaa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_152f_245c_7eaa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_152f_245c_7eaa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_152f_245c_7eaa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_152f_245c_7eaa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_673c_bb9a_1cae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_673c_bb9a_1cae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_673c_bb9a_1cae/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_673c_bb9a_1cae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_673c_bb9a_1cae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_673c_bb9a_1cae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_673c_bb9a_1cae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_673c_bb9a_1cae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_673c_bb9a_1cae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d510_4f4b_e2c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d510_4f4b_e2c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d510_4f4b_e2c1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d510_4f4b_e2c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d510_4f4b_e2c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d510_4f4b_e2c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d510_4f4b_e2c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d510_4f4b_e2c1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d510_4f4b_e2c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_74ed_b03d_6055", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_74ed_b03d_6055.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_74ed_b03d_6055/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_74ed_b03d_6055_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_74ed_b03d_6055_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_74ed_b03d_6055/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_74ed_b03d_6055.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_74ed_b03d_6055&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_74ed_b03d_6055"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7789_16bb_669e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7789_16bb_669e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7789_16bb_669e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7789_16bb_669e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7789_16bb_669e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7789_16bb_669e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7789_16bb_669e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7789_16bb_669e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7789_16bb_669e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca08_e33b_2209", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca08_e33b_2209.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca08_e33b_2209/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca08_e33b_2209_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca08_e33b_2209_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca08_e33b_2209/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca08_e33b_2209.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca08_e33b_2209&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ca08_e33b_2209"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37d4_0188_8a7a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37d4_0188_8a7a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_37d4_0188_8a7a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_37d4_0188_8a7a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_37d4_0188_8a7a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_37d4_0188_8a7a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_37d4_0188_8a7a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_37d4_0188_8a7a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_37d4_0188_8a7a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8834_2542_56ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8834_2542_56ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8834_2542_56ea/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8834_2542_56ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8834_2542_56ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8834_2542_56ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8834_2542_56ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8834_2542_56ea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8834_2542_56ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb1a_b258_65af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb1a_b258_65af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb1a_b258_65af/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb1a_b258_65af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb1a_b258_65af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb1a_b258_65af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb1a_b258_65af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb1a_b258_65af&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fb1a_b258_65af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d44_4d10_9e28", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d44_4d10_9e28.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d44_4d10_9e28/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d44_4d10_9e28_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d44_4d10_9e28_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d44_4d10_9e28/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d44_4d10_9e28.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d44_4d10_9e28&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1d44_4d10_9e28"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_483c_0201_5c94", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_483c_0201_5c94.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_483c_0201_5c94/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_483c_0201_5c94_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_483c_0201_5c94_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_483c_0201_5c94/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_483c_0201_5c94.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_483c_0201_5c94&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_483c_0201_5c94"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2093_91aa_ddfc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2093_91aa_ddfc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2093_91aa_ddfc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2093_91aa_ddfc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2093_91aa_ddfc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2093_91aa_ddfc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2093_91aa_ddfc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2093_91aa_ddfc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2093_91aa_ddfc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3828_3587_f95a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3828_3587_f95a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3828_3587_f95a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3828_3587_f95a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3828_3587_f95a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3828_3587_f95a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3828_3587_f95a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3828_3587_f95a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3828_3587_f95a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0d2_4f99_ed82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0d2_4f99_ed82.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c0d2_4f99_ed82/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c0d2_4f99_ed82_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c0d2_4f99_ed82_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c0d2_4f99_ed82/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c0d2_4f99_ed82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c0d2_4f99_ed82&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c0d2_4f99_ed82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6078_cd65_b34b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6078_cd65_b34b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6078_cd65_b34b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6078_cd65_b34b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6078_cd65_b34b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6078_cd65_b34b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6078_cd65_b34b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6078_cd65_b34b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6078_cd65_b34b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f31_dcb4_c980", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f31_dcb4_c980.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f31_dcb4_c980/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f31_dcb4_c980_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f31_dcb4_c980_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f31_dcb4_c980/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f31_dcb4_c980.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f31_dcb4_c980&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2f31_dcb4_c980"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cd5_8150_b54a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cd5_8150_b54a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3cd5_8150_b54a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3cd5_8150_b54a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3cd5_8150_b54a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3cd5_8150_b54a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3cd5_8150_b54a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3cd5_8150_b54a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3cd5_8150_b54a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8996_1cc9_5cf6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8996_1cc9_5cf6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8996_1cc9_5cf6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8996_1cc9_5cf6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8996_1cc9_5cf6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8996_1cc9_5cf6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8996_1cc9_5cf6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8996_1cc9_5cf6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8996_1cc9_5cf6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ca4_7482_1c2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ca4_7482_1c2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2ca4_7482_1c2f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2ca4_7482_1c2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2ca4_7482_1c2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2ca4_7482_1c2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2ca4_7482_1c2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2ca4_7482_1c2f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2ca4_7482_1c2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a29_f230_8309", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a29_f230_8309.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a29_f230_8309/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a29_f230_8309_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a29_f230_8309_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a29_f230_8309/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a29_f230_8309.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a29_f230_8309&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7a29_f230_8309"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eeb4_d09f_586b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eeb4_d09f_586b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eeb4_d09f_586b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eeb4_d09f_586b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eeb4_d09f_586b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eeb4_d09f_586b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eeb4_d09f_586b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eeb4_d09f_586b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_eeb4_d09f_586b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0004_bd3d_7d78", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0004_bd3d_7d78.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0004_bd3d_7d78/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0004_bd3d_7d78_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0004_bd3d_7d78_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0004_bd3d_7d78/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0004_bd3d_7d78.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0004_bd3d_7d78&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0004_bd3d_7d78"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_456d_5949_bca6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_456d_5949_bca6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_456d_5949_bca6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_456d_5949_bca6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_456d_5949_bca6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_456d_5949_bca6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_456d_5949_bca6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_456d_5949_bca6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_456d_5949_bca6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a3f_0467_503e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a3f_0467_503e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4a3f_0467_503e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4a3f_0467_503e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4a3f_0467_503e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4a3f_0467_503e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4a3f_0467_503e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4a3f_0467_503e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4a3f_0467_503e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51e8_7f78_8e61", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51e8_7f78_8e61.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_51e8_7f78_8e61/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_51e8_7f78_8e61_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_51e8_7f78_8e61_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_51e8_7f78_8e61/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_51e8_7f78_8e61.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_51e8_7f78_8e61&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_51e8_7f78_8e61"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f3f_0920_7ba5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f3f_0920_7ba5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f3f_0920_7ba5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f3f_0920_7ba5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f3f_0920_7ba5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f3f_0920_7ba5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f3f_0920_7ba5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f3f_0920_7ba5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9f3f_0920_7ba5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb06_0fc9_6579", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb06_0fc9_6579.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eb06_0fc9_6579/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eb06_0fc9_6579_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eb06_0fc9_6579_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb06_0fc9_6579/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb06_0fc9_6579.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb06_0fc9_6579&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_eb06_0fc9_6579"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae43_1e67_02d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae43_1e67_02d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae43_1e67_02d0/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae43_1e67_02d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae43_1e67_02d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae43_1e67_02d0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae43_1e67_02d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae43_1e67_02d0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ae43_1e67_02d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3cf_68aa_f889", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3cf_68aa_f889.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f3cf_68aa_f889/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f3cf_68aa_f889_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f3cf_68aa_f889_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f3cf_68aa_f889/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f3cf_68aa_f889.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f3cf_68aa_f889&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f3cf_68aa_f889"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ecf_a476_b412", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ecf_a476_b412.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ecf_a476_b412/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ecf_a476_b412_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ecf_a476_b412_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ecf_a476_b412/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ecf_a476_b412.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ecf_a476_b412&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3ecf_a476_b412"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2eb9_7230_9bf0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2eb9_7230_9bf0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2eb9_7230_9bf0/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2eb9_7230_9bf0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2eb9_7230_9bf0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2eb9_7230_9bf0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2eb9_7230_9bf0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2eb9_7230_9bf0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2eb9_7230_9bf0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af8e_b70e_2886", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af8e_b70e_2886.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_af8e_b70e_2886/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_af8e_b70e_2886_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_af8e_b70e_2886_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_af8e_b70e_2886/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_af8e_b70e_2886.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_af8e_b70e_2886&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_af8e_b70e_2886"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d471_e70c_765b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d471_e70c_765b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d471_e70c_765b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d471_e70c_765b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d471_e70c_765b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d471_e70c_765b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d471_e70c_765b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d471_e70c_765b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d471_e70c_765b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12c3_aa2c_5eb7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12c3_aa2c_5eb7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_12c3_aa2c_5eb7/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_12c3_aa2c_5eb7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_12c3_aa2c_5eb7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_12c3_aa2c_5eb7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_12c3_aa2c_5eb7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_12c3_aa2c_5eb7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_12c3_aa2c_5eb7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2191_e402_d1e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2191_e402_d1e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2191_e402_d1e6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2191_e402_d1e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2191_e402_d1e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2191_e402_d1e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2191_e402_d1e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2191_e402_d1e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2191_e402_d1e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7a5_6e7c_0d10", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7a5_6e7c_0d10.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d7a5_6e7c_0d10/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d7a5_6e7c_0d10_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d7a5_6e7c_0d10_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d7a5_6e7c_0d10/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d7a5_6e7c_0d10.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d7a5_6e7c_0d10&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d7a5_6e7c_0d10"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ff7_a5d9_3424", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ff7_a5d9_3424.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ff7_a5d9_3424/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ff7_a5d9_3424_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ff7_a5d9_3424_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ff7_a5d9_3424/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ff7_a5d9_3424.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ff7_a5d9_3424&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1ff7_a5d9_3424"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5145_3887_7621", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5145_3887_7621.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5145_3887_7621/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5145_3887_7621_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5145_3887_7621_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5145_3887_7621/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5145_3887_7621.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5145_3887_7621&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5145_3887_7621"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a058_3307_a789", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a058_3307_a789.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a058_3307_a789/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a058_3307_a789_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a058_3307_a789_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a058_3307_a789/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a058_3307_a789.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a058_3307_a789&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a058_3307_a789"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02c8_8c9d_b653", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02c8_8c9d_b653.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_02c8_8c9d_b653/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_02c8_8c9d_b653_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_02c8_8c9d_b653_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_02c8_8c9d_b653/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_02c8_8c9d_b653.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_02c8_8c9d_b653&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_02c8_8c9d_b653"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_583f_e234_ba33", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_583f_e234_ba33.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_583f_e234_ba33/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_583f_e234_ba33_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_583f_e234_ba33_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_583f_e234_ba33/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_583f_e234_ba33.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_583f_e234_ba33&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_583f_e234_ba33"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2986_7059_fbb7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2986_7059_fbb7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2986_7059_fbb7/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2986_7059_fbb7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2986_7059_fbb7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2986_7059_fbb7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2986_7059_fbb7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2986_7059_fbb7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2986_7059_fbb7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e13b_d1b9_75f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e13b_d1b9_75f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e13b_d1b9_75f9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e13b_d1b9_75f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e13b_d1b9_75f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e13b_d1b9_75f9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e13b_d1b9_75f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e13b_d1b9_75f9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e13b_d1b9_75f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fba5_4990_79c7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fba5_4990_79c7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fba5_4990_79c7/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fba5_4990_79c7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fba5_4990_79c7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fba5_4990_79c7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fba5_4990_79c7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fba5_4990_79c7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fba5_4990_79c7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cfb_b176_0682", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cfb_b176_0682.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1cfb_b176_0682/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1cfb_b176_0682_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1cfb_b176_0682_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1cfb_b176_0682/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1cfb_b176_0682.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1cfb_b176_0682&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1cfb_b176_0682"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a54_715b_5374", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a54_715b_5374.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a54_715b_5374/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a54_715b_5374_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a54_715b_5374_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a54_715b_5374/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a54_715b_5374.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a54_715b_5374&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6a54_715b_5374"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d59_ff11_b119", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d59_ff11_b119.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d59_ff11_b119/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d59_ff11_b119_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d59_ff11_b119_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d59_ff11_b119/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d59_ff11_b119.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d59_ff11_b119&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6d59_ff11_b119"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bd3_41fe_6820", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bd3_41fe_6820.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9bd3_41fe_6820/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9bd3_41fe_6820_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9bd3_41fe_6820_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9bd3_41fe_6820/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9bd3_41fe_6820.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9bd3_41fe_6820&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9bd3_41fe_6820"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2747_4e77_1565", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2747_4e77_1565.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2747_4e77_1565/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2747_4e77_1565_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2747_4e77_1565_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2747_4e77_1565/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2747_4e77_1565.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2747_4e77_1565&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2747_4e77_1565"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5cad_834f_32ad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5cad_834f_32ad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5cad_834f_32ad/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5cad_834f_32ad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5cad_834f_32ad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5cad_834f_32ad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5cad_834f_32ad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5cad_834f_32ad&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5cad_834f_32ad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8228_8875_1345", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8228_8875_1345.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8228_8875_1345/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8228_8875_1345_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8228_8875_1345_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8228_8875_1345/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8228_8875_1345.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8228_8875_1345&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8228_8875_1345"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b43_e75d_1c1b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b43_e75d_1c1b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3b43_e75d_1c1b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3b43_e75d_1c1b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3b43_e75d_1c1b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3b43_e75d_1c1b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3b43_e75d_1c1b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3b43_e75d_1c1b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3b43_e75d_1c1b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e16_8794_cf07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e16_8794_cf07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7e16_8794_cf07/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7e16_8794_cf07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7e16_8794_cf07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e16_8794_cf07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e16_8794_cf07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e16_8794_cf07&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7e16_8794_cf07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41df_c52a_7507", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41df_c52a_7507.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_41df_c52a_7507/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_41df_c52a_7507_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_41df_c52a_7507_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_41df_c52a_7507/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_41df_c52a_7507.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_41df_c52a_7507&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_41df_c52a_7507"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d4b_dcf8_1559", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d4b_dcf8_1559.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9d4b_dcf8_1559/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9d4b_dcf8_1559_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9d4b_dcf8_1559_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9d4b_dcf8_1559/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9d4b_dcf8_1559.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9d4b_dcf8_1559&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9d4b_dcf8_1559"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c521_2719_4163", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c521_2719_4163.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c521_2719_4163/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c521_2719_4163_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c521_2719_4163_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c521_2719_4163/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c521_2719_4163.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c521_2719_4163&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c521_2719_4163"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5882_0f01_d8d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5882_0f01_d8d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5882_0f01_d8d5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5882_0f01_d8d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5882_0f01_d8d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5882_0f01_d8d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5882_0f01_d8d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5882_0f01_d8d5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5882_0f01_d8d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2950_8397_077e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2950_8397_077e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2950_8397_077e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2950_8397_077e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2950_8397_077e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2950_8397_077e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2950_8397_077e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2950_8397_077e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2950_8397_077e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c575_5d7d_8b76", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c575_5d7d_8b76.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c575_5d7d_8b76/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c575_5d7d_8b76_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c575_5d7d_8b76_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c575_5d7d_8b76/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c575_5d7d_8b76.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c575_5d7d_8b76&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c575_5d7d_8b76"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02e7_e564_a543", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02e7_e564_a543.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_02e7_e564_a543/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_02e7_e564_a543_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_02e7_e564_a543_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_02e7_e564_a543/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_02e7_e564_a543.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_02e7_e564_a543&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_02e7_e564_a543"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bedf_2705_0cb1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bedf_2705_0cb1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bedf_2705_0cb1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bedf_2705_0cb1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bedf_2705_0cb1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bedf_2705_0cb1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bedf_2705_0cb1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bedf_2705_0cb1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bedf_2705_0cb1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf79_6116_bb4b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf79_6116_bb4b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf79_6116_bb4b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf79_6116_bb4b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf79_6116_bb4b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf79_6116_bb4b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf79_6116_bb4b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf79_6116_bb4b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cf79_6116_bb4b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3dff_aed7_03c7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3dff_aed7_03c7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3dff_aed7_03c7/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3dff_aed7_03c7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3dff_aed7_03c7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3dff_aed7_03c7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3dff_aed7_03c7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3dff_aed7_03c7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3dff_aed7_03c7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21d8_0be0_e174", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21d8_0be0_e174.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_21d8_0be0_e174/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_21d8_0be0_e174_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_21d8_0be0_e174_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_21d8_0be0_e174/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_21d8_0be0_e174.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_21d8_0be0_e174&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_21d8_0be0_e174"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5e1_f236_7286", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5e1_f236_7286.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5e1_f236_7286/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5e1_f236_7286_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5e1_f236_7286_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5e1_f236_7286/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5e1_f236_7286.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5e1_f236_7286&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b5e1_f236_7286"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1857_10c6_b23d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1857_10c6_b23d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1857_10c6_b23d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1857_10c6_b23d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1857_10c6_b23d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1857_10c6_b23d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1857_10c6_b23d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1857_10c6_b23d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1857_10c6_b23d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3279_2f18_cba4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3279_2f18_cba4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3279_2f18_cba4/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3279_2f18_cba4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3279_2f18_cba4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3279_2f18_cba4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3279_2f18_cba4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3279_2f18_cba4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3279_2f18_cba4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_caea_0a7d_579c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_caea_0a7d_579c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_caea_0a7d_579c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_caea_0a7d_579c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_caea_0a7d_579c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_caea_0a7d_579c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_caea_0a7d_579c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_caea_0a7d_579c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_caea_0a7d_579c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cceb_69d1_024a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cceb_69d1_024a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cceb_69d1_024a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cceb_69d1_024a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cceb_69d1_024a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cceb_69d1_024a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cceb_69d1_024a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cceb_69d1_024a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cceb_69d1_024a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_087c_59c3_75bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_087c_59c3_75bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_087c_59c3_75bd/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_087c_59c3_75bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_087c_59c3_75bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_087c_59c3_75bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_087c_59c3_75bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_087c_59c3_75bd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_087c_59c3_75bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_adc5_dd71_e291", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_adc5_dd71_e291.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_adc5_dd71_e291/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_adc5_dd71_e291_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_adc5_dd71_e291_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_adc5_dd71_e291/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_adc5_dd71_e291.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_adc5_dd71_e291&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_adc5_dd71_e291"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94b1_188d_c8ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94b1_188d_c8ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_94b1_188d_c8ce/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_94b1_188d_c8ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_94b1_188d_c8ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_94b1_188d_c8ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_94b1_188d_c8ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_94b1_188d_c8ce&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_94b1_188d_c8ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfb1_8ebd_4dc6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfb1_8ebd_4dc6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cfb1_8ebd_4dc6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cfb1_8ebd_4dc6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cfb1_8ebd_4dc6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cfb1_8ebd_4dc6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cfb1_8ebd_4dc6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cfb1_8ebd_4dc6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cfb1_8ebd_4dc6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d38d_bdea_624e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d38d_bdea_624e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d38d_bdea_624e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d38d_bdea_624e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d38d_bdea_624e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d38d_bdea_624e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d38d_bdea_624e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d38d_bdea_624e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d38d_bdea_624e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6047_60c9_be82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6047_60c9_be82.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6047_60c9_be82/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6047_60c9_be82_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6047_60c9_be82_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6047_60c9_be82/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6047_60c9_be82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6047_60c9_be82&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6047_60c9_be82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3663_51c8_9ead", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3663_51c8_9ead.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3663_51c8_9ead/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3663_51c8_9ead_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3663_51c8_9ead_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3663_51c8_9ead/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3663_51c8_9ead.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3663_51c8_9ead&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3663_51c8_9ead"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d947_8a0f_16aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d947_8a0f_16aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d947_8a0f_16aa/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d947_8a0f_16aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d947_8a0f_16aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d947_8a0f_16aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d947_8a0f_16aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d947_8a0f_16aa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d947_8a0f_16aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e776_95a1_1af0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e776_95a1_1af0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e776_95a1_1af0/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e776_95a1_1af0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e776_95a1_1af0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e776_95a1_1af0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e776_95a1_1af0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e776_95a1_1af0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e776_95a1_1af0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a07_e7b3_440a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a07_e7b3_440a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a07_e7b3_440a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a07_e7b3_440a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a07_e7b3_440a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a07_e7b3_440a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a07_e7b3_440a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a07_e7b3_440a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3a07_e7b3_440a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a72d_c745_e619", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a72d_c745_e619.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a72d_c745_e619/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a72d_c745_e619_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a72d_c745_e619_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a72d_c745_e619/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a72d_c745_e619.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a72d_c745_e619&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a72d_c745_e619"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_609c_a962_5b19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_609c_a962_5b19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_609c_a962_5b19/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_609c_a962_5b19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_609c_a962_5b19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_609c_a962_5b19/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_609c_a962_5b19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_609c_a962_5b19&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_609c_a962_5b19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60d5_a10d_53b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60d5_a10d_53b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_60d5_a10d_53b9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_60d5_a10d_53b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_60d5_a10d_53b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_60d5_a10d_53b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_60d5_a10d_53b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_60d5_a10d_53b9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_60d5_a10d_53b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf6d_ef3c_d9ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf6d_ef3c_d9ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf6d_ef3c_d9ea/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf6d_ef3c_d9ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf6d_ef3c_d9ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf6d_ef3c_d9ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf6d_ef3c_d9ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf6d_ef3c_d9ea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bf6d_ef3c_d9ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc37_5b38_08c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc37_5b38_08c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bc37_5b38_08c4/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bc37_5b38_08c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bc37_5b38_08c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bc37_5b38_08c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bc37_5b38_08c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bc37_5b38_08c4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bc37_5b38_08c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a4e_2ea5_0d51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a4e_2ea5_0d51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a4e_2ea5_0d51/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a4e_2ea5_0d51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a4e_2ea5_0d51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a4e_2ea5_0d51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a4e_2ea5_0d51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a4e_2ea5_0d51&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7a4e_2ea5_0d51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e167_26f4_1a45", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e167_26f4_1a45.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e167_26f4_1a45/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e167_26f4_1a45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e167_26f4_1a45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e167_26f4_1a45/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e167_26f4_1a45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e167_26f4_1a45&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e167_26f4_1a45"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0826_1761_3729", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0826_1761_3729.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0826_1761_3729/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0826_1761_3729_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0826_1761_3729_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0826_1761_3729/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0826_1761_3729.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0826_1761_3729&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0826_1761_3729"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_206c_f7b0_10fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_206c_f7b0_10fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_206c_f7b0_10fc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_206c_f7b0_10fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_206c_f7b0_10fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_206c_f7b0_10fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_206c_f7b0_10fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_206c_f7b0_10fc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_206c_f7b0_10fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eed8_b6eb_f654", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eed8_b6eb_f654.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eed8_b6eb_f654/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eed8_b6eb_f654_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eed8_b6eb_f654_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eed8_b6eb_f654/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eed8_b6eb_f654.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eed8_b6eb_f654&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eed8_b6eb_f654"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_493c_31f3_c6ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_493c_31f3_c6ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_493c_31f3_c6ca/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_493c_31f3_c6ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_493c_31f3_c6ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_493c_31f3_c6ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_493c_31f3_c6ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_493c_31f3_c6ca&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_493c_31f3_c6ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e9d_b546_ee07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e9d_b546_ee07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e9d_b546_ee07/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e9d_b546_ee07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e9d_b546_ee07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e9d_b546_ee07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e9d_b546_ee07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e9d_b546_ee07&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0e9d_b546_ee07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d72_ad0e_e479", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d72_ad0e_e479.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d72_ad0e_e479/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d72_ad0e_e479_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d72_ad0e_e479_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d72_ad0e_e479/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d72_ad0e_e479.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d72_ad0e_e479&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1d72_ad0e_e479"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7176_98e7_b0ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7176_98e7_b0ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7176_98e7_b0ec/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7176_98e7_b0ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7176_98e7_b0ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7176_98e7_b0ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7176_98e7_b0ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7176_98e7_b0ec&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7176_98e7_b0ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df88_507b_e784", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df88_507b_e784.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_df88_507b_e784/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_df88_507b_e784_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_df88_507b_e784_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_df88_507b_e784/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_df88_507b_e784.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_df88_507b_e784&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_df88_507b_e784"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f642_e56a_9acb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f642_e56a_9acb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f642_e56a_9acb/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f642_e56a_9acb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f642_e56a_9acb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f642_e56a_9acb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f642_e56a_9acb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f642_e56a_9acb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f642_e56a_9acb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3067_1a50_f1c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3067_1a50_f1c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3067_1a50_f1c6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3067_1a50_f1c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3067_1a50_f1c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3067_1a50_f1c6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3067_1a50_f1c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3067_1a50_f1c6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3067_1a50_f1c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64a2_6967_992c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64a2_6967_992c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_64a2_6967_992c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_64a2_6967_992c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_64a2_6967_992c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_64a2_6967_992c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_64a2_6967_992c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_64a2_6967_992c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_64a2_6967_992c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c17_2294_8517", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c17_2294_8517.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7c17_2294_8517/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7c17_2294_8517_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7c17_2294_8517_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7c17_2294_8517/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7c17_2294_8517.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7c17_2294_8517&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7c17_2294_8517"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51c6_644c_bc3e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51c6_644c_bc3e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_51c6_644c_bc3e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_51c6_644c_bc3e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_51c6_644c_bc3e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_51c6_644c_bc3e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_51c6_644c_bc3e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_51c6_644c_bc3e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_51c6_644c_bc3e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bac_1f24_062e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bac_1f24_062e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9bac_1f24_062e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9bac_1f24_062e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9bac_1f24_062e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9bac_1f24_062e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9bac_1f24_062e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9bac_1f24_062e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9bac_1f24_062e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c319_fa9b_9b18", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c319_fa9b_9b18.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c319_fa9b_9b18/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c319_fa9b_9b18_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c319_fa9b_9b18_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c319_fa9b_9b18/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c319_fa9b_9b18.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c319_fa9b_9b18&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c319_fa9b_9b18"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7768_9f2b_ae4c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7768_9f2b_ae4c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7768_9f2b_ae4c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7768_9f2b_ae4c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7768_9f2b_ae4c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7768_9f2b_ae4c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7768_9f2b_ae4c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7768_9f2b_ae4c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7768_9f2b_ae4c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c05_4a21_319e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c05_4a21_319e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2c05_4a21_319e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2c05_4a21_319e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2c05_4a21_319e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2c05_4a21_319e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2c05_4a21_319e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2c05_4a21_319e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2c05_4a21_319e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb37_c13f_6277", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb37_c13f_6277.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb37_c13f_6277/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb37_c13f_6277_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb37_c13f_6277_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb37_c13f_6277/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb37_c13f_6277.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb37_c13f_6277&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cb37_c13f_6277"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d113_a7a5_7c72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d113_a7a5_7c72.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d113_a7a5_7c72/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d113_a7a5_7c72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d113_a7a5_7c72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d113_a7a5_7c72/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d113_a7a5_7c72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d113_a7a5_7c72&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d113_a7a5_7c72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a708_b514_ba69", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a708_b514_ba69.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a708_b514_ba69/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a708_b514_ba69_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a708_b514_ba69_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a708_b514_ba69/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a708_b514_ba69.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a708_b514_ba69&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a708_b514_ba69"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed2d_03c3_63c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed2d_03c3_63c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ed2d_03c3_63c3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ed2d_03c3_63c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ed2d_03c3_63c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ed2d_03c3_63c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ed2d_03c3_63c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ed2d_03c3_63c3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ed2d_03c3_63c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1518_57a4_9fac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1518_57a4_9fac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1518_57a4_9fac/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1518_57a4_9fac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1518_57a4_9fac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1518_57a4_9fac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1518_57a4_9fac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1518_57a4_9fac&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1518_57a4_9fac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad86_388b_073d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad86_388b_073d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ad86_388b_073d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ad86_388b_073d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ad86_388b_073d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ad86_388b_073d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ad86_388b_073d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ad86_388b_073d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ad86_388b_073d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3be_1860_5357", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3be_1860_5357.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d3be_1860_5357/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d3be_1860_5357_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d3be_1860_5357_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d3be_1860_5357/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d3be_1860_5357.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d3be_1860_5357&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d3be_1860_5357"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e922_faab_ea37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e922_faab_ea37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e922_faab_ea37/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e922_faab_ea37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e922_faab_ea37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e922_faab_ea37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e922_faab_ea37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e922_faab_ea37&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e922_faab_ea37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_293d_d4aa_eabc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_293d_d4aa_eabc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_293d_d4aa_eabc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_293d_d4aa_eabc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_293d_d4aa_eabc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_293d_d4aa_eabc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_293d_d4aa_eabc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_293d_d4aa_eabc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_293d_d4aa_eabc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70f6_fe7f_f6c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70f6_fe7f_f6c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_70f6_fe7f_f6c0/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_70f6_fe7f_f6c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_70f6_fe7f_f6c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_70f6_fe7f_f6c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_70f6_fe7f_f6c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_70f6_fe7f_f6c0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_70f6_fe7f_f6c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db37_3d8f_5400", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db37_3d8f_5400.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db37_3d8f_5400/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db37_3d8f_5400_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db37_3d8f_5400_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db37_3d8f_5400/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db37_3d8f_5400.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db37_3d8f_5400&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_db37_3d8f_5400"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17d5_f59d_234b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17d5_f59d_234b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_17d5_f59d_234b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_17d5_f59d_234b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_17d5_f59d_234b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_17d5_f59d_234b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_17d5_f59d_234b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_17d5_f59d_234b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_17d5_f59d_234b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5832_da2e_19ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5832_da2e_19ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5832_da2e_19ca/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5832_da2e_19ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5832_da2e_19ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5832_da2e_19ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5832_da2e_19ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5832_da2e_19ca&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5832_da2e_19ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19ca_f03e_43ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19ca_f03e_43ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_19ca_f03e_43ca/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_19ca_f03e_43ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_19ca_f03e_43ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_19ca_f03e_43ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_19ca_f03e_43ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_19ca_f03e_43ca&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_19ca_f03e_43ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5172_79e6_91e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5172_79e6_91e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5172_79e6_91e1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5172_79e6_91e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5172_79e6_91e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5172_79e6_91e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5172_79e6_91e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5172_79e6_91e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5172_79e6_91e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c262_6f38_6093", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c262_6f38_6093.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c262_6f38_6093/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c262_6f38_6093_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c262_6f38_6093_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c262_6f38_6093/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c262_6f38_6093.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c262_6f38_6093&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c262_6f38_6093"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c112_01c7_ccf3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c112_01c7_ccf3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c112_01c7_ccf3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c112_01c7_ccf3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c112_01c7_ccf3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c112_01c7_ccf3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c112_01c7_ccf3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c112_01c7_ccf3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c112_01c7_ccf3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7180_238a_6949", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7180_238a_6949.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7180_238a_6949/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7180_238a_6949_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7180_238a_6949_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7180_238a_6949/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7180_238a_6949.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7180_238a_6949&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7180_238a_6949"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9155_3e59_0f34", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9155_3e59_0f34.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9155_3e59_0f34/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9155_3e59_0f34_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9155_3e59_0f34_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9155_3e59_0f34/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9155_3e59_0f34.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9155_3e59_0f34&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9155_3e59_0f34"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13ed_176a_91b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13ed_176a_91b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_13ed_176a_91b6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_13ed_176a_91b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_13ed_176a_91b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_13ed_176a_91b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_13ed_176a_91b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_13ed_176a_91b6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_13ed_176a_91b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2741_f511_6704", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2741_f511_6704.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2741_f511_6704/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2741_f511_6704_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2741_f511_6704_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2741_f511_6704/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2741_f511_6704.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2741_f511_6704&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2741_f511_6704"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f364_b5ad_a99d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f364_b5ad_a99d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f364_b5ad_a99d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f364_b5ad_a99d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f364_b5ad_a99d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f364_b5ad_a99d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f364_b5ad_a99d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f364_b5ad_a99d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f364_b5ad_a99d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5876_d4cc_d0d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5876_d4cc_d0d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5876_d4cc_d0d7/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5876_d4cc_d0d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5876_d4cc_d0d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5876_d4cc_d0d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5876_d4cc_d0d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5876_d4cc_d0d7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5876_d4cc_d0d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a27_fa31_261c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a27_fa31_261c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a27_fa31_261c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a27_fa31_261c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a27_fa31_261c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a27_fa31_261c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a27_fa31_261c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a27_fa31_261c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0a27_fa31_261c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ef7_74cd_71bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ef7_74cd_71bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ef7_74cd_71bb/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ef7_74cd_71bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ef7_74cd_71bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ef7_74cd_71bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ef7_74cd_71bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ef7_74cd_71bb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1ef7_74cd_71bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d449_0c01_a5b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d449_0c01_a5b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d449_0c01_a5b9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d449_0c01_a5b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d449_0c01_a5b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d449_0c01_a5b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d449_0c01_a5b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d449_0c01_a5b9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d449_0c01_a5b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b5c_82dd_c1c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b5c_82dd_c1c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b5c_82dd_c1c3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b5c_82dd_c1c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b5c_82dd_c1c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b5c_82dd_c1c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b5c_82dd_c1c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b5c_82dd_c1c3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6b5c_82dd_c1c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d088_47fd_9310", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d088_47fd_9310.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d088_47fd_9310/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d088_47fd_9310_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d088_47fd_9310_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d088_47fd_9310/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d088_47fd_9310.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d088_47fd_9310&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d088_47fd_9310"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7599_e46f_88e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7599_e46f_88e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7599_e46f_88e5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7599_e46f_88e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7599_e46f_88e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7599_e46f_88e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7599_e46f_88e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7599_e46f_88e5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7599_e46f_88e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5d8_25c2_1ccf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5d8_25c2_1ccf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5d8_25c2_1ccf/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5d8_25c2_1ccf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5d8_25c2_1ccf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5d8_25c2_1ccf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5d8_25c2_1ccf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5d8_25c2_1ccf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e5d8_25c2_1ccf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e951_57f0_e6db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e951_57f0_e6db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e951_57f0_e6db/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e951_57f0_e6db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e951_57f0_e6db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e951_57f0_e6db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e951_57f0_e6db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e951_57f0_e6db&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e951_57f0_e6db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_770e_a878_d52d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_770e_a878_d52d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_770e_a878_d52d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_770e_a878_d52d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_770e_a878_d52d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_770e_a878_d52d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_770e_a878_d52d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_770e_a878_d52d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_770e_a878_d52d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_52c9_f9f0_325f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_52c9_f9f0_325f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_52c9_f9f0_325f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_52c9_f9f0_325f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_52c9_f9f0_325f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_52c9_f9f0_325f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_52c9_f9f0_325f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_52c9_f9f0_325f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_52c9_f9f0_325f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf56_3f97_7404", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf56_3f97_7404.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf56_3f97_7404/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf56_3f97_7404_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf56_3f97_7404_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf56_3f97_7404/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf56_3f97_7404.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf56_3f97_7404&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cf56_3f97_7404"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f8d_aa54_f52b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f8d_aa54_f52b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f8d_aa54_f52b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f8d_aa54_f52b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f8d_aa54_f52b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f8d_aa54_f52b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f8d_aa54_f52b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f8d_aa54_f52b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1f8d_aa54_f52b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c611_290f_5210", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c611_290f_5210.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c611_290f_5210/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c611_290f_5210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c611_290f_5210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c611_290f_5210/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c611_290f_5210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c611_290f_5210&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c611_290f_5210"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce61_30c3_3209", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce61_30c3_3209.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ce61_30c3_3209/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ce61_30c3_3209_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ce61_30c3_3209_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ce61_30c3_3209/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ce61_30c3_3209.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ce61_30c3_3209&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ce61_30c3_3209"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c865_3165_5ed5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c865_3165_5ed5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c865_3165_5ed5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c865_3165_5ed5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c865_3165_5ed5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c865_3165_5ed5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c865_3165_5ed5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c865_3165_5ed5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c865_3165_5ed5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3396_e8fb_656b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3396_e8fb_656b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3396_e8fb_656b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3396_e8fb_656b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3396_e8fb_656b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3396_e8fb_656b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3396_e8fb_656b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3396_e8fb_656b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3396_e8fb_656b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd4d_278c_2bde", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd4d_278c_2bde.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cd4d_278c_2bde/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cd4d_278c_2bde_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cd4d_278c_2bde_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cd4d_278c_2bde/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cd4d_278c_2bde.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cd4d_278c_2bde&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cd4d_278c_2bde"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e26_1748_643d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e26_1748_643d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4e26_1748_643d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4e26_1748_643d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4e26_1748_643d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4e26_1748_643d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4e26_1748_643d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4e26_1748_643d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4e26_1748_643d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ab6_5a23_1eea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ab6_5a23_1eea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ab6_5a23_1eea/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ab6_5a23_1eea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ab6_5a23_1eea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ab6_5a23_1eea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ab6_5a23_1eea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ab6_5a23_1eea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5ab6_5a23_1eea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de07_d93a_37ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de07_d93a_37ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_de07_d93a_37ab/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_de07_d93a_37ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_de07_d93a_37ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_de07_d93a_37ab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_de07_d93a_37ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_de07_d93a_37ab&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_de07_d93a_37ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d9ad_5dcb_a793", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d9ad_5dcb_a793.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d9ad_5dcb_a793/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d9ad_5dcb_a793_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d9ad_5dcb_a793_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d9ad_5dcb_a793/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d9ad_5dcb_a793.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d9ad_5dcb_a793&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d9ad_5dcb_a793"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8342_19eb_b8ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8342_19eb_b8ba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8342_19eb_b8ba/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8342_19eb_b8ba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8342_19eb_b8ba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8342_19eb_b8ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8342_19eb_b8ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8342_19eb_b8ba&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8342_19eb_b8ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5ad_a46e_0c45", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5ad_a46e_0c45.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f5ad_a46e_0c45/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f5ad_a46e_0c45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f5ad_a46e_0c45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f5ad_a46e_0c45/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f5ad_a46e_0c45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f5ad_a46e_0c45&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f5ad_a46e_0c45"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63ad_b3da_7420", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63ad_b3da_7420.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_63ad_b3da_7420/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_63ad_b3da_7420_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_63ad_b3da_7420_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_63ad_b3da_7420/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_63ad_b3da_7420.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_63ad_b3da_7420&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_63ad_b3da_7420"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9213_6f4e_dfc2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9213_6f4e_dfc2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9213_6f4e_dfc2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9213_6f4e_dfc2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9213_6f4e_dfc2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9213_6f4e_dfc2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9213_6f4e_dfc2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9213_6f4e_dfc2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9213_6f4e_dfc2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e650_9ced_d424", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e650_9ced_d424.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e650_9ced_d424/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e650_9ced_d424_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e650_9ced_d424_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e650_9ced_d424/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e650_9ced_d424.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e650_9ced_d424&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e650_9ced_d424"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89ab_6c06_bdb2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89ab_6c06_bdb2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_89ab_6c06_bdb2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_89ab_6c06_bdb2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_89ab_6c06_bdb2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_89ab_6c06_bdb2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_89ab_6c06_bdb2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_89ab_6c06_bdb2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_89ab_6c06_bdb2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ae5_36c1_eace", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ae5_36c1_eace.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ae5_36c1_eace/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ae5_36c1_eace_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ae5_36c1_eace_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ae5_36c1_eace/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ae5_36c1_eace.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ae5_36c1_eace&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4ae5_36c1_eace"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e10c_c3ea_0ecd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e10c_c3ea_0ecd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e10c_c3ea_0ecd/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e10c_c3ea_0ecd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e10c_c3ea_0ecd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e10c_c3ea_0ecd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e10c_c3ea_0ecd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e10c_c3ea_0ecd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e10c_c3ea_0ecd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_702a_cddd_a257", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_702a_cddd_a257.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_702a_cddd_a257/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_702a_cddd_a257_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_702a_cddd_a257_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_702a_cddd_a257/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_702a_cddd_a257.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_702a_cddd_a257&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_702a_cddd_a257"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5167_d66d_5a87", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5167_d66d_5a87.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5167_d66d_5a87/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5167_d66d_5a87_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5167_d66d_5a87_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5167_d66d_5a87/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5167_d66d_5a87.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5167_d66d_5a87&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5167_d66d_5a87"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_682c_42fc_3ad9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_682c_42fc_3ad9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_682c_42fc_3ad9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_682c_42fc_3ad9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_682c_42fc_3ad9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_682c_42fc_3ad9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_682c_42fc_3ad9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_682c_42fc_3ad9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_682c_42fc_3ad9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5147_2bf7_872d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5147_2bf7_872d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5147_2bf7_872d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5147_2bf7_872d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5147_2bf7_872d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5147_2bf7_872d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5147_2bf7_872d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5147_2bf7_872d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5147_2bf7_872d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_348e_d21e_4732", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_348e_d21e_4732.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_348e_d21e_4732/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_348e_d21e_4732_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_348e_d21e_4732_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_348e_d21e_4732/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_348e_d21e_4732.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_348e_d21e_4732&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_348e_d21e_4732"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_69ea_243f_d52e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_69ea_243f_d52e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_69ea_243f_d52e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_69ea_243f_d52e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_69ea_243f_d52e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_69ea_243f_d52e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_69ea_243f_d52e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_69ea_243f_d52e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_69ea_243f_d52e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8201_fe1a_8882", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8201_fe1a_8882.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8201_fe1a_8882/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8201_fe1a_8882_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8201_fe1a_8882_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8201_fe1a_8882/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8201_fe1a_8882.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8201_fe1a_8882&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8201_fe1a_8882"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9211_bb89_a72f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9211_bb89_a72f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9211_bb89_a72f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9211_bb89_a72f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9211_bb89_a72f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9211_bb89_a72f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9211_bb89_a72f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9211_bb89_a72f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9211_bb89_a72f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a26d_025b_f079", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a26d_025b_f079.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a26d_025b_f079/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a26d_025b_f079_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a26d_025b_f079_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a26d_025b_f079/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a26d_025b_f079.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a26d_025b_f079&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a26d_025b_f079"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fde5_7839_f324", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fde5_7839_f324.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fde5_7839_f324/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fde5_7839_f324_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fde5_7839_f324_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fde5_7839_f324/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fde5_7839_f324.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fde5_7839_f324&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fde5_7839_f324"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fc4_1fc6_33f8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fc4_1fc6_33f8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4fc4_1fc6_33f8/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4fc4_1fc6_33f8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4fc4_1fc6_33f8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4fc4_1fc6_33f8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4fc4_1fc6_33f8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4fc4_1fc6_33f8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4fc4_1fc6_33f8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_783a_eda6_0352", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_783a_eda6_0352.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_783a_eda6_0352/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_783a_eda6_0352_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_783a_eda6_0352_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_783a_eda6_0352/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_783a_eda6_0352.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_783a_eda6_0352&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_783a_eda6_0352"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_387b_9d23_2a1f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_387b_9d23_2a1f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_387b_9d23_2a1f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_387b_9d23_2a1f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_387b_9d23_2a1f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_387b_9d23_2a1f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_387b_9d23_2a1f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_387b_9d23_2a1f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_387b_9d23_2a1f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a27_5cd5_5a03", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a27_5cd5_5a03.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a27_5cd5_5a03/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a27_5cd5_5a03_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a27_5cd5_5a03_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a27_5cd5_5a03/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a27_5cd5_5a03.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a27_5cd5_5a03&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6a27_5cd5_5a03"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93a0_6b62_ce11", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93a0_6b62_ce11.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_93a0_6b62_ce11/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_93a0_6b62_ce11_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_93a0_6b62_ce11_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_93a0_6b62_ce11/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_93a0_6b62_ce11.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_93a0_6b62_ce11&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_93a0_6b62_ce11"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d3a_aa8b_e15b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d3a_aa8b_e15b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d3a_aa8b_e15b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d3a_aa8b_e15b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d3a_aa8b_e15b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d3a_aa8b_e15b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d3a_aa8b_e15b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d3a_aa8b_e15b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6d3a_aa8b_e15b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58e5_eb6b_e179", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58e5_eb6b_e179.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_58e5_eb6b_e179/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_58e5_eb6b_e179_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_58e5_eb6b_e179_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_58e5_eb6b_e179/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_58e5_eb6b_e179.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_58e5_eb6b_e179&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_58e5_eb6b_e179"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5bce_8eae_de54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5bce_8eae_de54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5bce_8eae_de54/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5bce_8eae_de54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5bce_8eae_de54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5bce_8eae_de54/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5bce_8eae_de54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5bce_8eae_de54&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5bce_8eae_de54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4aa_fc5c_75cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4aa_fc5c_75cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d4aa_fc5c_75cf/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d4aa_fc5c_75cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d4aa_fc5c_75cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d4aa_fc5c_75cf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d4aa_fc5c_75cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d4aa_fc5c_75cf&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d4aa_fc5c_75cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_649b_e208_0198", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_649b_e208_0198.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_649b_e208_0198/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_649b_e208_0198_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_649b_e208_0198_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_649b_e208_0198/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_649b_e208_0198.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_649b_e208_0198&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_649b_e208_0198"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c76b_9522_c1b2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c76b_9522_c1b2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c76b_9522_c1b2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c76b_9522_c1b2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c76b_9522_c1b2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c76b_9522_c1b2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c76b_9522_c1b2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c76b_9522_c1b2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c76b_9522_c1b2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4f9_2fd8_ccdc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4f9_2fd8_ccdc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f4f9_2fd8_ccdc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f4f9_2fd8_ccdc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f4f9_2fd8_ccdc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f4f9_2fd8_ccdc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f4f9_2fd8_ccdc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f4f9_2fd8_ccdc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f4f9_2fd8_ccdc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ee0_ff7a_9233", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ee0_ff7a_9233.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0ee0_ff7a_9233/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0ee0_ff7a_9233_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0ee0_ff7a_9233_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0ee0_ff7a_9233/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0ee0_ff7a_9233.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0ee0_ff7a_9233&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0ee0_ff7a_9233"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c447_2d71_5b9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c447_2d71_5b9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c447_2d71_5b9d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c447_2d71_5b9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c447_2d71_5b9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c447_2d71_5b9d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c447_2d71_5b9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c447_2d71_5b9d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c447_2d71_5b9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c62f_2d69_073c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c62f_2d69_073c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c62f_2d69_073c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c62f_2d69_073c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c62f_2d69_073c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c62f_2d69_073c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c62f_2d69_073c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c62f_2d69_073c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c62f_2d69_073c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd10_3e8c_a7c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd10_3e8c_a7c5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bd10_3e8c_a7c5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bd10_3e8c_a7c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bd10_3e8c_a7c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bd10_3e8c_a7c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bd10_3e8c_a7c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bd10_3e8c_a7c5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bd10_3e8c_a7c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f511_a3bf_1478", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f511_a3bf_1478.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f511_a3bf_1478/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f511_a3bf_1478_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f511_a3bf_1478_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f511_a3bf_1478/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f511_a3bf_1478.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f511_a3bf_1478&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f511_a3bf_1478"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2870_6daa_4567", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2870_6daa_4567.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2870_6daa_4567/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2870_6daa_4567_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2870_6daa_4567_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2870_6daa_4567/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2870_6daa_4567.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2870_6daa_4567&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2870_6daa_4567"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6065_86fc_4ca5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6065_86fc_4ca5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6065_86fc_4ca5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6065_86fc_4ca5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6065_86fc_4ca5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6065_86fc_4ca5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6065_86fc_4ca5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6065_86fc_4ca5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6065_86fc_4ca5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f523_57a3_c3f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f523_57a3_c3f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f523_57a3_c3f1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f523_57a3_c3f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f523_57a3_c3f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f523_57a3_c3f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f523_57a3_c3f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f523_57a3_c3f1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f523_57a3_c3f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8d3_ac9d_8334", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8d3_ac9d_8334.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b8d3_ac9d_8334/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b8d3_ac9d_8334_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b8d3_ac9d_8334_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b8d3_ac9d_8334/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b8d3_ac9d_8334.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b8d3_ac9d_8334&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b8d3_ac9d_8334"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_000a_be48_06c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_000a_be48_06c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_000a_be48_06c3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_000a_be48_06c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_000a_be48_06c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_000a_be48_06c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_000a_be48_06c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_000a_be48_06c3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_000a_be48_06c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a979_82dc_6f73", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a979_82dc_6f73.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a979_82dc_6f73/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a979_82dc_6f73_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a979_82dc_6f73_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a979_82dc_6f73/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a979_82dc_6f73.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a979_82dc_6f73&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a979_82dc_6f73"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_753c_4da5_4355", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_753c_4da5_4355.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_753c_4da5_4355/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_753c_4da5_4355_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_753c_4da5_4355_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_753c_4da5_4355/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_753c_4da5_4355.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_753c_4da5_4355&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_753c_4da5_4355"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_226e_4367_a216", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_226e_4367_a216.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_226e_4367_a216/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_226e_4367_a216_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_226e_4367_a216_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_226e_4367_a216/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_226e_4367_a216.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_226e_4367_a216&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_226e_4367_a216"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f40_bc7e_d221", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f40_bc7e_d221.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4f40_bc7e_d221/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4f40_bc7e_d221_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4f40_bc7e_d221_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4f40_bc7e_d221/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4f40_bc7e_d221.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4f40_bc7e_d221&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4f40_bc7e_d221"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7095_c544_6685", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7095_c544_6685.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7095_c544_6685/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7095_c544_6685_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7095_c544_6685_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7095_c544_6685/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7095_c544_6685.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7095_c544_6685&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7095_c544_6685"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dd2_e1ff_9b56", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dd2_e1ff_9b56.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8dd2_e1ff_9b56/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8dd2_e1ff_9b56_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8dd2_e1ff_9b56_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8dd2_e1ff_9b56/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8dd2_e1ff_9b56.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8dd2_e1ff_9b56&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8dd2_e1ff_9b56"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91a7_b6d7_c94b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91a7_b6d7_c94b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_91a7_b6d7_c94b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_91a7_b6d7_c94b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_91a7_b6d7_c94b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_91a7_b6d7_c94b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_91a7_b6d7_c94b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_91a7_b6d7_c94b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_91a7_b6d7_c94b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_184f_4291_3574", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_184f_4291_3574.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_184f_4291_3574/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_184f_4291_3574_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_184f_4291_3574_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_184f_4291_3574/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_184f_4291_3574.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_184f_4291_3574&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_184f_4291_3574"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d99_3f50_ee1c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d99_3f50_ee1c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d99_3f50_ee1c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d99_3f50_ee1c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d99_3f50_ee1c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d99_3f50_ee1c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d99_3f50_ee1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d99_3f50_ee1c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4d99_3f50_ee1c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9b5_ee95_c510", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9b5_ee95_c510.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b9b5_ee95_c510/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b9b5_ee95_c510_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b9b5_ee95_c510_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b9b5_ee95_c510/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b9b5_ee95_c510.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b9b5_ee95_c510&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b9b5_ee95_c510"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c429_d958_ca1a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c429_d958_ca1a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c429_d958_ca1a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c429_d958_ca1a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c429_d958_ca1a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c429_d958_ca1a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c429_d958_ca1a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c429_d958_ca1a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c429_d958_ca1a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b26_3ce5_5378", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b26_3ce5_5378.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b26_3ce5_5378/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b26_3ce5_5378_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b26_3ce5_5378_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b26_3ce5_5378/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b26_3ce5_5378.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b26_3ce5_5378&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6b26_3ce5_5378"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8068_c896_2168", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8068_c896_2168.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8068_c896_2168/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8068_c896_2168_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8068_c896_2168_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8068_c896_2168/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8068_c896_2168.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8068_c896_2168&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8068_c896_2168"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b348_cf0d_2ae9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b348_cf0d_2ae9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b348_cf0d_2ae9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b348_cf0d_2ae9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b348_cf0d_2ae9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b348_cf0d_2ae9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b348_cf0d_2ae9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b348_cf0d_2ae9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b348_cf0d_2ae9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a05_4e7d_ca6a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a05_4e7d_ca6a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a05_4e7d_ca6a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a05_4e7d_ca6a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a05_4e7d_ca6a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a05_4e7d_ca6a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a05_4e7d_ca6a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a05_4e7d_ca6a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3a05_4e7d_ca6a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5db_439c_06cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5db_439c_06cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f5db_439c_06cf/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f5db_439c_06cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f5db_439c_06cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f5db_439c_06cf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f5db_439c_06cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f5db_439c_06cf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f5db_439c_06cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7329_876f_0d05", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7329_876f_0d05.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7329_876f_0d05/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7329_876f_0d05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7329_876f_0d05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7329_876f_0d05/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7329_876f_0d05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7329_876f_0d05&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7329_876f_0d05"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b6c_84a6_de60", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b6c_84a6_de60.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9b6c_84a6_de60/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9b6c_84a6_de60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9b6c_84a6_de60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9b6c_84a6_de60/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9b6c_84a6_de60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9b6c_84a6_de60&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9b6c_84a6_de60"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4fb_80f5_0c3c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4fb_80f5_0c3c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d4fb_80f5_0c3c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d4fb_80f5_0c3c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d4fb_80f5_0c3c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d4fb_80f5_0c3c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d4fb_80f5_0c3c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d4fb_80f5_0c3c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d4fb_80f5_0c3c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_164e_75c5_e67c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_164e_75c5_e67c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_164e_75c5_e67c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_164e_75c5_e67c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_164e_75c5_e67c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_164e_75c5_e67c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_164e_75c5_e67c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_164e_75c5_e67c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_164e_75c5_e67c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f96_f9f9_9055", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f96_f9f9_9055.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f96_f9f9_9055/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f96_f9f9_9055_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f96_f9f9_9055_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f96_f9f9_9055/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f96_f9f9_9055.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f96_f9f9_9055&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0f96_f9f9_9055"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f47c_2d3f_b286", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f47c_2d3f_b286.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f47c_2d3f_b286/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f47c_2d3f_b286_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f47c_2d3f_b286_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f47c_2d3f_b286/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f47c_2d3f_b286.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f47c_2d3f_b286&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f47c_2d3f_b286"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6fc0_1b8e_c052", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6fc0_1b8e_c052.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6fc0_1b8e_c052/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6fc0_1b8e_c052_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6fc0_1b8e_c052_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6fc0_1b8e_c052/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6fc0_1b8e_c052.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6fc0_1b8e_c052&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6fc0_1b8e_c052"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8079_b74f_aabe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8079_b74f_aabe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8079_b74f_aabe/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8079_b74f_aabe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8079_b74f_aabe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8079_b74f_aabe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8079_b74f_aabe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8079_b74f_aabe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8079_b74f_aabe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f7e_0703_4ebb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f7e_0703_4ebb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f7e_0703_4ebb/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f7e_0703_4ebb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f7e_0703_4ebb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f7e_0703_4ebb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f7e_0703_4ebb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f7e_0703_4ebb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8f7e_0703_4ebb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_973e_9e7d_1ca2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_973e_9e7d_1ca2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_973e_9e7d_1ca2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_973e_9e7d_1ca2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_973e_9e7d_1ca2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_973e_9e7d_1ca2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_973e_9e7d_1ca2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_973e_9e7d_1ca2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_973e_9e7d_1ca2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48b9_e9df_98eb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48b9_e9df_98eb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_48b9_e9df_98eb/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_48b9_e9df_98eb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_48b9_e9df_98eb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_48b9_e9df_98eb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_48b9_e9df_98eb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_48b9_e9df_98eb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_48b9_e9df_98eb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_500d_0b21_eec9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_500d_0b21_eec9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_500d_0b21_eec9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_500d_0b21_eec9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_500d_0b21_eec9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_500d_0b21_eec9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_500d_0b21_eec9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_500d_0b21_eec9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_500d_0b21_eec9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e49_1946_d024", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e49_1946_d024.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1e49_1946_d024/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1e49_1946_d024_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1e49_1946_d024_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1e49_1946_d024/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1e49_1946_d024.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1e49_1946_d024&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1e49_1946_d024"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1aa1_48e1_af58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1aa1_48e1_af58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1aa1_48e1_af58/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1aa1_48e1_af58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1aa1_48e1_af58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1aa1_48e1_af58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1aa1_48e1_af58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1aa1_48e1_af58&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1aa1_48e1_af58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a673_b54b_1938", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a673_b54b_1938.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a673_b54b_1938/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a673_b54b_1938_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a673_b54b_1938_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a673_b54b_1938/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a673_b54b_1938.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a673_b54b_1938&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a673_b54b_1938"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43dd_119b_a299", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43dd_119b_a299.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_43dd_119b_a299/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_43dd_119b_a299_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_43dd_119b_a299_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_43dd_119b_a299/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_43dd_119b_a299.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_43dd_119b_a299&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_43dd_119b_a299"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54df_a689_224a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54df_a689_224a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54df_a689_224a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54df_a689_224a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54df_a689_224a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54df_a689_224a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54df_a689_224a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54df_a689_224a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_54df_a689_224a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed0c_513c_dc53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed0c_513c_dc53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ed0c_513c_dc53/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ed0c_513c_dc53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ed0c_513c_dc53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ed0c_513c_dc53/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ed0c_513c_dc53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ed0c_513c_dc53&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ed0c_513c_dc53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d6f_c292_0bd0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d6f_c292_0bd0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d6f_c292_0bd0/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d6f_c292_0bd0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d6f_c292_0bd0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d6f_c292_0bd0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d6f_c292_0bd0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d6f_c292_0bd0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3d6f_c292_0bd0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3401_177c_65b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3401_177c_65b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3401_177c_65b8/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3401_177c_65b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3401_177c_65b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3401_177c_65b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3401_177c_65b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3401_177c_65b8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3401_177c_65b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c6ad_ac6e_d593", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c6ad_ac6e_d593.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c6ad_ac6e_d593/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c6ad_ac6e_d593_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c6ad_ac6e_d593_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c6ad_ac6e_d593/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c6ad_ac6e_d593.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c6ad_ac6e_d593&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c6ad_ac6e_d593"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b179_8d47_3cbc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b179_8d47_3cbc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b179_8d47_3cbc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b179_8d47_3cbc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b179_8d47_3cbc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b179_8d47_3cbc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b179_8d47_3cbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b179_8d47_3cbc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b179_8d47_3cbc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35b9_d715_11ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35b9_d715_11ba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_35b9_d715_11ba/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_35b9_d715_11ba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_35b9_d715_11ba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_35b9_d715_11ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_35b9_d715_11ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_35b9_d715_11ba&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_35b9_d715_11ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e178_dce8_9000", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e178_dce8_9000.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e178_dce8_9000/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e178_dce8_9000_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e178_dce8_9000_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e178_dce8_9000/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e178_dce8_9000.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e178_dce8_9000&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e178_dce8_9000"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cc5_be90_df9c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cc5_be90_df9c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9cc5_be90_df9c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9cc5_be90_df9c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9cc5_be90_df9c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9cc5_be90_df9c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9cc5_be90_df9c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9cc5_be90_df9c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9cc5_be90_df9c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_864c_da3a_2c53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_864c_da3a_2c53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_864c_da3a_2c53/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_864c_da3a_2c53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_864c_da3a_2c53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_864c_da3a_2c53/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_864c_da3a_2c53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_864c_da3a_2c53&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_864c_da3a_2c53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ed8_a1f2_394b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ed8_a1f2_394b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ed8_a1f2_394b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ed8_a1f2_394b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ed8_a1f2_394b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ed8_a1f2_394b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ed8_a1f2_394b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ed8_a1f2_394b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8ed8_a1f2_394b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f580_9756_2bb2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f580_9756_2bb2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f580_9756_2bb2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f580_9756_2bb2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f580_9756_2bb2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f580_9756_2bb2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f580_9756_2bb2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f580_9756_2bb2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f580_9756_2bb2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_588b_c283_d8cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_588b_c283_d8cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_588b_c283_d8cb/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_588b_c283_d8cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_588b_c283_d8cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_588b_c283_d8cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_588b_c283_d8cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_588b_c283_d8cb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_588b_c283_d8cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0df_b294_12f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0df_b294_12f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f0df_b294_12f1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f0df_b294_12f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f0df_b294_12f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f0df_b294_12f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f0df_b294_12f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f0df_b294_12f1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f0df_b294_12f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0b5_6294_75f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0b5_6294_75f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f0b5_6294_75f5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f0b5_6294_75f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f0b5_6294_75f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f0b5_6294_75f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f0b5_6294_75f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f0b5_6294_75f5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f0b5_6294_75f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8bc9_6a86_4cda", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8bc9_6a86_4cda.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8bc9_6a86_4cda/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8bc9_6a86_4cda_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8bc9_6a86_4cda_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8bc9_6a86_4cda/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8bc9_6a86_4cda.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8bc9_6a86_4cda&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8bc9_6a86_4cda"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aac4_18a1_3e22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aac4_18a1_3e22.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aac4_18a1_3e22/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aac4_18a1_3e22_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aac4_18a1_3e22_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aac4_18a1_3e22/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aac4_18a1_3e22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aac4_18a1_3e22&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aac4_18a1_3e22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18f1_8d98_5009", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18f1_8d98_5009.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_18f1_8d98_5009/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_18f1_8d98_5009_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_18f1_8d98_5009_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_18f1_8d98_5009/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_18f1_8d98_5009.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_18f1_8d98_5009&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_18f1_8d98_5009"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4919_1800_5629", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4919_1800_5629.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4919_1800_5629/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4919_1800_5629_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4919_1800_5629_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4919_1800_5629/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4919_1800_5629.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4919_1800_5629&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4919_1800_5629"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5445_3d29_11f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5445_3d29_11f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5445_3d29_11f3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5445_3d29_11f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5445_3d29_11f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5445_3d29_11f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5445_3d29_11f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5445_3d29_11f3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5445_3d29_11f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_daf9_da23_57d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_daf9_da23_57d2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_daf9_da23_57d2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_daf9_da23_57d2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_daf9_da23_57d2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_daf9_da23_57d2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_daf9_da23_57d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_daf9_da23_57d2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_daf9_da23_57d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1247_cb4d_696e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1247_cb4d_696e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1247_cb4d_696e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1247_cb4d_696e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1247_cb4d_696e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1247_cb4d_696e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1247_cb4d_696e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1247_cb4d_696e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1247_cb4d_696e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3174_3b59_db07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3174_3b59_db07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3174_3b59_db07/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3174_3b59_db07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3174_3b59_db07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3174_3b59_db07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3174_3b59_db07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3174_3b59_db07&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3174_3b59_db07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d39_8b10_819c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d39_8b10_819c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9d39_8b10_819c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9d39_8b10_819c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9d39_8b10_819c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9d39_8b10_819c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9d39_8b10_819c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9d39_8b10_819c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9d39_8b10_819c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6977_71a2_7e83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6977_71a2_7e83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6977_71a2_7e83/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6977_71a2_7e83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6977_71a2_7e83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6977_71a2_7e83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6977_71a2_7e83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6977_71a2_7e83&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6977_71a2_7e83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8de4_0a87_f89e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8de4_0a87_f89e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8de4_0a87_f89e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8de4_0a87_f89e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8de4_0a87_f89e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8de4_0a87_f89e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8de4_0a87_f89e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8de4_0a87_f89e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8de4_0a87_f89e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8270_63c4_9f7d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8270_63c4_9f7d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8270_63c4_9f7d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8270_63c4_9f7d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8270_63c4_9f7d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8270_63c4_9f7d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8270_63c4_9f7d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8270_63c4_9f7d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8270_63c4_9f7d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03b5_5794_37e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03b5_5794_37e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03b5_5794_37e6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03b5_5794_37e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03b5_5794_37e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03b5_5794_37e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03b5_5794_37e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03b5_5794_37e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_03b5_5794_37e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c7d_1ae8_fb9b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c7d_1ae8_fb9b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6c7d_1ae8_fb9b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6c7d_1ae8_fb9b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6c7d_1ae8_fb9b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6c7d_1ae8_fb9b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6c7d_1ae8_fb9b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6c7d_1ae8_fb9b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6c7d_1ae8_fb9b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e7d_03a4_ad1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e7d_03a4_ad1e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4e7d_03a4_ad1e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4e7d_03a4_ad1e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4e7d_03a4_ad1e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4e7d_03a4_ad1e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4e7d_03a4_ad1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4e7d_03a4_ad1e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4e7d_03a4_ad1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a67a_0416_2042", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a67a_0416_2042.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a67a_0416_2042/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a67a_0416_2042_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a67a_0416_2042_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a67a_0416_2042/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a67a_0416_2042.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a67a_0416_2042&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a67a_0416_2042"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fae1_0f17_792d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fae1_0f17_792d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fae1_0f17_792d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fae1_0f17_792d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fae1_0f17_792d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fae1_0f17_792d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fae1_0f17_792d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fae1_0f17_792d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fae1_0f17_792d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9027_8fa6_fc1c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9027_8fa6_fc1c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9027_8fa6_fc1c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9027_8fa6_fc1c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9027_8fa6_fc1c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9027_8fa6_fc1c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9027_8fa6_fc1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9027_8fa6_fc1c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9027_8fa6_fc1c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24da_3cbf_e967", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24da_3cbf_e967.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_24da_3cbf_e967/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_24da_3cbf_e967_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_24da_3cbf_e967_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_24da_3cbf_e967/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_24da_3cbf_e967.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_24da_3cbf_e967&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_24da_3cbf_e967"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_934c_4900_5e03", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_934c_4900_5e03.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_934c_4900_5e03/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_934c_4900_5e03_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_934c_4900_5e03_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_934c_4900_5e03/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_934c_4900_5e03.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_934c_4900_5e03&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_934c_4900_5e03"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edc3_69d4_f8a3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edc3_69d4_f8a3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_edc3_69d4_f8a3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_edc3_69d4_f8a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_edc3_69d4_f8a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_edc3_69d4_f8a3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_edc3_69d4_f8a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_edc3_69d4_f8a3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_edc3_69d4_f8a3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e79_a380_b387", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e79_a380_b387.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e79_a380_b387/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e79_a380_b387_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e79_a380_b387_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e79_a380_b387/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e79_a380_b387.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e79_a380_b387&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8e79_a380_b387"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0d8_56ab_9221", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0d8_56ab_9221.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c0d8_56ab_9221/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c0d8_56ab_9221_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c0d8_56ab_9221_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c0d8_56ab_9221/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c0d8_56ab_9221.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c0d8_56ab_9221&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c0d8_56ab_9221"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_696d_25c9_79dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_696d_25c9_79dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_696d_25c9_79dc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_696d_25c9_79dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_696d_25c9_79dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_696d_25c9_79dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_696d_25c9_79dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_696d_25c9_79dc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_696d_25c9_79dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fd6_746d_1506", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fd6_746d_1506.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2fd6_746d_1506/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2fd6_746d_1506_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2fd6_746d_1506_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2fd6_746d_1506/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2fd6_746d_1506.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2fd6_746d_1506&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2fd6_746d_1506"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cd8_d7c5_75ed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cd8_d7c5_75ed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9cd8_d7c5_75ed/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9cd8_d7c5_75ed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9cd8_d7c5_75ed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9cd8_d7c5_75ed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9cd8_d7c5_75ed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9cd8_d7c5_75ed&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9cd8_d7c5_75ed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_36aa_1dc0_3cf7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_36aa_1dc0_3cf7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_36aa_1dc0_3cf7/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_36aa_1dc0_3cf7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_36aa_1dc0_3cf7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_36aa_1dc0_3cf7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_36aa_1dc0_3cf7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_36aa_1dc0_3cf7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_36aa_1dc0_3cf7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_738f_d38f_2a79", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_738f_d38f_2a79.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_738f_d38f_2a79/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_738f_d38f_2a79_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_738f_d38f_2a79_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_738f_d38f_2a79/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_738f_d38f_2a79.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_738f_d38f_2a79&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_738f_d38f_2a79"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ca5_9f02_13ed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ca5_9f02_13ed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9ca5_9f02_13ed/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9ca5_9f02_13ed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9ca5_9f02_13ed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9ca5_9f02_13ed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9ca5_9f02_13ed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9ca5_9f02_13ed&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9ca5_9f02_13ed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0eef_875c_a0d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0eef_875c_a0d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0eef_875c_a0d3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0eef_875c_a0d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0eef_875c_a0d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0eef_875c_a0d3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0eef_875c_a0d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0eef_875c_a0d3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0eef_875c_a0d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a20_8cb2_4293", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a20_8cb2_4293.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a20_8cb2_4293/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a20_8cb2_4293_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a20_8cb2_4293_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a20_8cb2_4293/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a20_8cb2_4293.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a20_8cb2_4293&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0a20_8cb2_4293"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_680b_cc89_0631", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_680b_cc89_0631.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_680b_cc89_0631/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_680b_cc89_0631_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_680b_cc89_0631_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_680b_cc89_0631/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_680b_cc89_0631.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_680b_cc89_0631&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_680b_cc89_0631"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_84eb_4f94_cf67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_84eb_4f94_cf67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_84eb_4f94_cf67/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_84eb_4f94_cf67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_84eb_4f94_cf67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_84eb_4f94_cf67/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_84eb_4f94_cf67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_84eb_4f94_cf67&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_84eb_4f94_cf67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3729_101e_8e2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3729_101e_8e2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3729_101e_8e2f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3729_101e_8e2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3729_101e_8e2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3729_101e_8e2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3729_101e_8e2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3729_101e_8e2f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3729_101e_8e2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ada8_4906_3b43", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ada8_4906_3b43.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ada8_4906_3b43/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ada8_4906_3b43_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ada8_4906_3b43_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ada8_4906_3b43/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ada8_4906_3b43.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ada8_4906_3b43&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ada8_4906_3b43"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b193_63b4_c0fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b193_63b4_c0fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b193_63b4_c0fa/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b193_63b4_c0fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b193_63b4_c0fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b193_63b4_c0fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b193_63b4_c0fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b193_63b4_c0fa&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b193_63b4_c0fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d0c_205d_e90e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d0c_205d_e90e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d0c_205d_e90e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d0c_205d_e90e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d0c_205d_e90e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d0c_205d_e90e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d0c_205d_e90e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d0c_205d_e90e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4d0c_205d_e90e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b46d_3b22_5014", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b46d_3b22_5014.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b46d_3b22_5014/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b46d_3b22_5014_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b46d_3b22_5014_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b46d_3b22_5014/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b46d_3b22_5014.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b46d_3b22_5014&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b46d_3b22_5014"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_128b_8c32_32e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_128b_8c32_32e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_128b_8c32_32e0/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_128b_8c32_32e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_128b_8c32_32e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_128b_8c32_32e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_128b_8c32_32e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_128b_8c32_32e0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_128b_8c32_32e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7527_b109_b3b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7527_b109_b3b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7527_b109_b3b8/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7527_b109_b3b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7527_b109_b3b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7527_b109_b3b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7527_b109_b3b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7527_b109_b3b8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7527_b109_b3b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e817_a275_8f5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e817_a275_8f5b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e817_a275_8f5b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e817_a275_8f5b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e817_a275_8f5b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e817_a275_8f5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e817_a275_8f5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e817_a275_8f5b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e817_a275_8f5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4a5_f909_25af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4a5_f909_25af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e4a5_f909_25af/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e4a5_f909_25af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e4a5_f909_25af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e4a5_f909_25af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e4a5_f909_25af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e4a5_f909_25af&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e4a5_f909_25af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10b7_e694_bc1d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10b7_e694_bc1d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_10b7_e694_bc1d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_10b7_e694_bc1d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_10b7_e694_bc1d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_10b7_e694_bc1d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_10b7_e694_bc1d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_10b7_e694_bc1d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_10b7_e694_bc1d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5586_9422_ed5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5586_9422_ed5b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5586_9422_ed5b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5586_9422_ed5b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5586_9422_ed5b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5586_9422_ed5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5586_9422_ed5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5586_9422_ed5b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5586_9422_ed5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5023_75e6_396b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5023_75e6_396b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5023_75e6_396b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5023_75e6_396b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5023_75e6_396b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5023_75e6_396b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5023_75e6_396b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5023_75e6_396b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5023_75e6_396b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3796_57eb_68b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3796_57eb_68b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3796_57eb_68b5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3796_57eb_68b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3796_57eb_68b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3796_57eb_68b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3796_57eb_68b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3796_57eb_68b5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3796_57eb_68b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_655a_a9a7_3a0e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_655a_a9a7_3a0e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_655a_a9a7_3a0e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_655a_a9a7_3a0e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_655a_a9a7_3a0e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_655a_a9a7_3a0e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_655a_a9a7_3a0e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_655a_a9a7_3a0e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_655a_a9a7_3a0e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ae1_370f_50df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ae1_370f_50df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ae1_370f_50df/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ae1_370f_50df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ae1_370f_50df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ae1_370f_50df/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ae1_370f_50df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ae1_370f_50df&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5ae1_370f_50df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_122c_1820_5020", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_122c_1820_5020.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_122c_1820_5020/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_122c_1820_5020_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_122c_1820_5020_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_122c_1820_5020/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_122c_1820_5020.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_122c_1820_5020&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_122c_1820_5020"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d000_2650_9424", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d000_2650_9424.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d000_2650_9424/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d000_2650_9424_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d000_2650_9424_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d000_2650_9424/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d000_2650_9424.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d000_2650_9424&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d000_2650_9424"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14c6_1a44_1578", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14c6_1a44_1578.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_14c6_1a44_1578/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_14c6_1a44_1578_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_14c6_1a44_1578_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_14c6_1a44_1578/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_14c6_1a44_1578.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_14c6_1a44_1578&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_14c6_1a44_1578"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f63_c111_87aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f63_c111_87aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f63_c111_87aa/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f63_c111_87aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f63_c111_87aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f63_c111_87aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f63_c111_87aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f63_c111_87aa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2f63_c111_87aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_374a_4299_b214", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_374a_4299_b214.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_374a_4299_b214/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_374a_4299_b214_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_374a_4299_b214_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_374a_4299_b214/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_374a_4299_b214.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_374a_4299_b214&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_374a_4299_b214"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8233_f885_62c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8233_f885_62c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8233_f885_62c1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8233_f885_62c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8233_f885_62c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8233_f885_62c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8233_f885_62c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8233_f885_62c1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8233_f885_62c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cab_fd77_01c2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cab_fd77_01c2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2cab_fd77_01c2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2cab_fd77_01c2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2cab_fd77_01c2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2cab_fd77_01c2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2cab_fd77_01c2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2cab_fd77_01c2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2cab_fd77_01c2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7129_7b57_2547", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7129_7b57_2547.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7129_7b57_2547/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7129_7b57_2547_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7129_7b57_2547_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7129_7b57_2547/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7129_7b57_2547.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7129_7b57_2547&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7129_7b57_2547"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10bf_feed_0c38", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10bf_feed_0c38.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_10bf_feed_0c38/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_10bf_feed_0c38_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_10bf_feed_0c38_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_10bf_feed_0c38/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_10bf_feed_0c38.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_10bf_feed_0c38&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_10bf_feed_0c38"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5640_153b_c6a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5640_153b_c6a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5640_153b_c6a6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5640_153b_c6a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5640_153b_c6a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5640_153b_c6a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5640_153b_c6a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5640_153b_c6a6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5640_153b_c6a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7528_6ce1_143c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7528_6ce1_143c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7528_6ce1_143c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7528_6ce1_143c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7528_6ce1_143c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7528_6ce1_143c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7528_6ce1_143c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7528_6ce1_143c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7528_6ce1_143c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70fe_b178_a665", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70fe_b178_a665.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_70fe_b178_a665/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_70fe_b178_a665_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_70fe_b178_a665_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_70fe_b178_a665/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_70fe_b178_a665.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_70fe_b178_a665&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_70fe_b178_a665"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17bd_824b_6c37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17bd_824b_6c37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_17bd_824b_6c37/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_17bd_824b_6c37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_17bd_824b_6c37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_17bd_824b_6c37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_17bd_824b_6c37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_17bd_824b_6c37&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_17bd_824b_6c37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e32d_6191_06e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e32d_6191_06e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e32d_6191_06e2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e32d_6191_06e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e32d_6191_06e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e32d_6191_06e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e32d_6191_06e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e32d_6191_06e2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e32d_6191_06e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3835_ef1f_f27e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3835_ef1f_f27e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3835_ef1f_f27e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3835_ef1f_f27e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3835_ef1f_f27e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3835_ef1f_f27e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3835_ef1f_f27e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3835_ef1f_f27e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3835_ef1f_f27e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6940_6b84_ee8c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6940_6b84_ee8c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6940_6b84_ee8c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6940_6b84_ee8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6940_6b84_ee8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6940_6b84_ee8c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6940_6b84_ee8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6940_6b84_ee8c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6940_6b84_ee8c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bcdf_f8e4_1f51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bcdf_f8e4_1f51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bcdf_f8e4_1f51/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bcdf_f8e4_1f51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bcdf_f8e4_1f51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bcdf_f8e4_1f51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bcdf_f8e4_1f51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bcdf_f8e4_1f51&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bcdf_f8e4_1f51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6b4_ca86_0c96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6b4_ca86_0c96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d6b4_ca86_0c96/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d6b4_ca86_0c96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d6b4_ca86_0c96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d6b4_ca86_0c96/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d6b4_ca86_0c96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d6b4_ca86_0c96&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d6b4_ca86_0c96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a10_59de_2572", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a10_59de_2572.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1a10_59de_2572/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1a10_59de_2572_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1a10_59de_2572_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1a10_59de_2572/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1a10_59de_2572.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1a10_59de_2572&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1a10_59de_2572"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65f3_453d_8a6c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65f3_453d_8a6c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_65f3_453d_8a6c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_65f3_453d_8a6c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_65f3_453d_8a6c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_65f3_453d_8a6c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_65f3_453d_8a6c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_65f3_453d_8a6c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_65f3_453d_8a6c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad37_1144_b501", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad37_1144_b501.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ad37_1144_b501/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ad37_1144_b501_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ad37_1144_b501_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ad37_1144_b501/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ad37_1144_b501.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ad37_1144_b501&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ad37_1144_b501"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c1b_efd8_f457", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c1b_efd8_f457.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3c1b_efd8_f457/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3c1b_efd8_f457_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3c1b_efd8_f457_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c1b_efd8_f457/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c1b_efd8_f457.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c1b_efd8_f457&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3c1b_efd8_f457"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f0c_b4b5_4ab5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f0c_b4b5_4ab5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6f0c_b4b5_4ab5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6f0c_b4b5_4ab5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6f0c_b4b5_4ab5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6f0c_b4b5_4ab5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6f0c_b4b5_4ab5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6f0c_b4b5_4ab5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6f0c_b4b5_4ab5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ecd_eb78_9e33", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ecd_eb78_9e33.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ecd_eb78_9e33/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ecd_eb78_9e33_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ecd_eb78_9e33_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ecd_eb78_9e33/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ecd_eb78_9e33.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ecd_eb78_9e33&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7ecd_eb78_9e33"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_77f8_cb7c_8ca1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_77f8_cb7c_8ca1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_77f8_cb7c_8ca1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_77f8_cb7c_8ca1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_77f8_cb7c_8ca1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_77f8_cb7c_8ca1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_77f8_cb7c_8ca1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_77f8_cb7c_8ca1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_77f8_cb7c_8ca1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebcd_205d_12cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebcd_205d_12cc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ebcd_205d_12cc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ebcd_205d_12cc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ebcd_205d_12cc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ebcd_205d_12cc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ebcd_205d_12cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ebcd_205d_12cc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ebcd_205d_12cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09a3_6fc1_968e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09a3_6fc1_968e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_09a3_6fc1_968e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_09a3_6fc1_968e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_09a3_6fc1_968e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_09a3_6fc1_968e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_09a3_6fc1_968e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_09a3_6fc1_968e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_09a3_6fc1_968e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8296_c034_8f0b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8296_c034_8f0b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8296_c034_8f0b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8296_c034_8f0b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8296_c034_8f0b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8296_c034_8f0b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8296_c034_8f0b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8296_c034_8f0b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8296_c034_8f0b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4ed_ae8a_eb04", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4ed_ae8a_eb04.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e4ed_ae8a_eb04/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e4ed_ae8a_eb04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e4ed_ae8a_eb04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e4ed_ae8a_eb04/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e4ed_ae8a_eb04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e4ed_ae8a_eb04&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e4ed_ae8a_eb04"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6fa_31d6_c7f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6fa_31d6_c7f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d6fa_31d6_c7f6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d6fa_31d6_c7f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d6fa_31d6_c7f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d6fa_31d6_c7f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d6fa_31d6_c7f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d6fa_31d6_c7f6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d6fa_31d6_c7f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b3f_9510_8e98", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b3f_9510_8e98.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b3f_9510_8e98/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b3f_9510_8e98_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b3f_9510_8e98_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b3f_9510_8e98/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b3f_9510_8e98.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b3f_9510_8e98&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6b3f_9510_8e98"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7097_a0a6_ada6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7097_a0a6_ada6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7097_a0a6_ada6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7097_a0a6_ada6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7097_a0a6_ada6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7097_a0a6_ada6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7097_a0a6_ada6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7097_a0a6_ada6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7097_a0a6_ada6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a642_9348_4723", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a642_9348_4723.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a642_9348_4723/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a642_9348_4723_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a642_9348_4723_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a642_9348_4723/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a642_9348_4723.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a642_9348_4723&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a642_9348_4723"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_038b_19ab_ea91", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_038b_19ab_ea91.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_038b_19ab_ea91/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_038b_19ab_ea91_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_038b_19ab_ea91_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_038b_19ab_ea91/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_038b_19ab_ea91.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_038b_19ab_ea91&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_038b_19ab_ea91"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05e9_0155_327a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05e9_0155_327a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_05e9_0155_327a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_05e9_0155_327a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_05e9_0155_327a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_05e9_0155_327a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_05e9_0155_327a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_05e9_0155_327a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_05e9_0155_327a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b53_d3b6_2d96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b53_d3b6_2d96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2b53_d3b6_2d96/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2b53_d3b6_2d96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2b53_d3b6_2d96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2b53_d3b6_2d96/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2b53_d3b6_2d96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2b53_d3b6_2d96&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2b53_d3b6_2d96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2306_39e7_c5cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2306_39e7_c5cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2306_39e7_c5cf/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2306_39e7_c5cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2306_39e7_c5cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2306_39e7_c5cf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2306_39e7_c5cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2306_39e7_c5cf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2306_39e7_c5cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e7d_da5f_4c70", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e7d_da5f_4c70.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4e7d_da5f_4c70/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4e7d_da5f_4c70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4e7d_da5f_4c70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4e7d_da5f_4c70/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4e7d_da5f_4c70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4e7d_da5f_4c70&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4e7d_da5f_4c70"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e920_3f8f_bc06", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e920_3f8f_bc06.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e920_3f8f_bc06/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e920_3f8f_bc06_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e920_3f8f_bc06_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e920_3f8f_bc06/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e920_3f8f_bc06.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e920_3f8f_bc06&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e920_3f8f_bc06"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f4f_e21e_4b47", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f4f_e21e_4b47.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f4f_e21e_4b47/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f4f_e21e_4b47_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f4f_e21e_4b47_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f4f_e21e_4b47/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f4f_e21e_4b47.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f4f_e21e_4b47&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1f4f_e21e_4b47"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6033_98dd_6d0e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6033_98dd_6d0e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6033_98dd_6d0e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6033_98dd_6d0e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6033_98dd_6d0e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6033_98dd_6d0e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6033_98dd_6d0e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6033_98dd_6d0e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6033_98dd_6d0e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6385_f049_c832", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6385_f049_c832.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6385_f049_c832/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6385_f049_c832_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6385_f049_c832_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6385_f049_c832/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6385_f049_c832.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6385_f049_c832&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6385_f049_c832"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c67_0f7d_0183", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c67_0f7d_0183.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c67_0f7d_0183/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c67_0f7d_0183_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c67_0f7d_0183_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c67_0f7d_0183/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c67_0f7d_0183.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c67_0f7d_0183&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0c67_0f7d_0183"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_565e_e74e_7093", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_565e_e74e_7093.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_565e_e74e_7093/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_565e_e74e_7093_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_565e_e74e_7093_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_565e_e74e_7093/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_565e_e74e_7093.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_565e_e74e_7093&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_565e_e74e_7093"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e19c_c698_4f52", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e19c_c698_4f52.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e19c_c698_4f52/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e19c_c698_4f52_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e19c_c698_4f52_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e19c_c698_4f52/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e19c_c698_4f52.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e19c_c698_4f52&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e19c_c698_4f52"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_127a_a805_229f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_127a_a805_229f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_127a_a805_229f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_127a_a805_229f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_127a_a805_229f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_127a_a805_229f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_127a_a805_229f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_127a_a805_229f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_127a_a805_229f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88d3_9c02_d049", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88d3_9c02_d049.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_88d3_9c02_d049/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_88d3_9c02_d049_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_88d3_9c02_d049_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_88d3_9c02_d049/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_88d3_9c02_d049.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_88d3_9c02_d049&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_88d3_9c02_d049"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8bc2_bcfe_d0bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8bc2_bcfe_d0bc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8bc2_bcfe_d0bc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8bc2_bcfe_d0bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8bc2_bcfe_d0bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8bc2_bcfe_d0bc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8bc2_bcfe_d0bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8bc2_bcfe_d0bc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8bc2_bcfe_d0bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a998_1db9_facc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a998_1db9_facc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a998_1db9_facc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a998_1db9_facc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a998_1db9_facc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a998_1db9_facc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a998_1db9_facc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a998_1db9_facc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a998_1db9_facc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aced_975c_b088", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aced_975c_b088.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aced_975c_b088/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aced_975c_b088_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aced_975c_b088_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aced_975c_b088/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aced_975c_b088.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aced_975c_b088&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aced_975c_b088"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_23b4_3870_1b9a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_23b4_3870_1b9a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_23b4_3870_1b9a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_23b4_3870_1b9a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_23b4_3870_1b9a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_23b4_3870_1b9a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_23b4_3870_1b9a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_23b4_3870_1b9a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_23b4_3870_1b9a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e356_153d_6ea3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e356_153d_6ea3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e356_153d_6ea3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e356_153d_6ea3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e356_153d_6ea3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e356_153d_6ea3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e356_153d_6ea3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e356_153d_6ea3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e356_153d_6ea3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5f1_771c_6a58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5f1_771c_6a58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f5f1_771c_6a58/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f5f1_771c_6a58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f5f1_771c_6a58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f5f1_771c_6a58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f5f1_771c_6a58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f5f1_771c_6a58&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f5f1_771c_6a58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73d5_1103_7cf4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73d5_1103_7cf4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_73d5_1103_7cf4/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_73d5_1103_7cf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_73d5_1103_7cf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_73d5_1103_7cf4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_73d5_1103_7cf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_73d5_1103_7cf4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_73d5_1103_7cf4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50dd_ba58_ab03", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50dd_ba58_ab03.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_50dd_ba58_ab03/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_50dd_ba58_ab03_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_50dd_ba58_ab03_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50dd_ba58_ab03/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50dd_ba58_ab03.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50dd_ba58_ab03&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_50dd_ba58_ab03"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aacf_34a4_931e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aacf_34a4_931e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aacf_34a4_931e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aacf_34a4_931e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aacf_34a4_931e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aacf_34a4_931e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aacf_34a4_931e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aacf_34a4_931e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aacf_34a4_931e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_016b_cc1f_4267", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_016b_cc1f_4267.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_016b_cc1f_4267/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_016b_cc1f_4267_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_016b_cc1f_4267_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_016b_cc1f_4267/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_016b_cc1f_4267.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_016b_cc1f_4267&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_016b_cc1f_4267"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05a5_fbd7_cf9b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05a5_fbd7_cf9b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_05a5_fbd7_cf9b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_05a5_fbd7_cf9b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_05a5_fbd7_cf9b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_05a5_fbd7_cf9b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_05a5_fbd7_cf9b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_05a5_fbd7_cf9b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_05a5_fbd7_cf9b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b7c4_969e_4b88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b7c4_969e_4b88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b7c4_969e_4b88/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b7c4_969e_4b88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b7c4_969e_4b88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b7c4_969e_4b88/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b7c4_969e_4b88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b7c4_969e_4b88&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b7c4_969e_4b88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6124_240f_356b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6124_240f_356b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6124_240f_356b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6124_240f_356b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6124_240f_356b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6124_240f_356b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6124_240f_356b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6124_240f_356b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6124_240f_356b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bec5_ee65_f43b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bec5_ee65_f43b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bec5_ee65_f43b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bec5_ee65_f43b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bec5_ee65_f43b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bec5_ee65_f43b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bec5_ee65_f43b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bec5_ee65_f43b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bec5_ee65_f43b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df6e_bce7_cb6b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df6e_bce7_cb6b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_df6e_bce7_cb6b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_df6e_bce7_cb6b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_df6e_bce7_cb6b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_df6e_bce7_cb6b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_df6e_bce7_cb6b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_df6e_bce7_cb6b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_df6e_bce7_cb6b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abc8_85be_ae0c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abc8_85be_ae0c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_abc8_85be_ae0c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_abc8_85be_ae0c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_abc8_85be_ae0c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_abc8_85be_ae0c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_abc8_85be_ae0c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_abc8_85be_ae0c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_abc8_85be_ae0c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f7d_4e53_187e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f7d_4e53_187e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f7d_4e53_187e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f7d_4e53_187e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f7d_4e53_187e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f7d_4e53_187e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f7d_4e53_187e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f7d_4e53_187e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7f7d_4e53_187e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9cb_0bc2_1b5c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9cb_0bc2_1b5c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f9cb_0bc2_1b5c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f9cb_0bc2_1b5c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f9cb_0bc2_1b5c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f9cb_0bc2_1b5c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f9cb_0bc2_1b5c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f9cb_0bc2_1b5c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f9cb_0bc2_1b5c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5814_174a_1767", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5814_174a_1767.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5814_174a_1767/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5814_174a_1767_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5814_174a_1767_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5814_174a_1767/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5814_174a_1767.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5814_174a_1767&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5814_174a_1767"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1561_afc3_5760", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1561_afc3_5760.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1561_afc3_5760/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1561_afc3_5760_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1561_afc3_5760_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1561_afc3_5760/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1561_afc3_5760.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1561_afc3_5760&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1561_afc3_5760"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a95_8758_6ed0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a95_8758_6ed0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4a95_8758_6ed0/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4a95_8758_6ed0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4a95_8758_6ed0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4a95_8758_6ed0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4a95_8758_6ed0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4a95_8758_6ed0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4a95_8758_6ed0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80b7_c30a_bb98", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80b7_c30a_bb98.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_80b7_c30a_bb98/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_80b7_c30a_bb98_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_80b7_c30a_bb98_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_80b7_c30a_bb98/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_80b7_c30a_bb98.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_80b7_c30a_bb98&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_80b7_c30a_bb98"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_918c_3ec6_ee9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_918c_3ec6_ee9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_918c_3ec6_ee9d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_918c_3ec6_ee9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_918c_3ec6_ee9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_918c_3ec6_ee9d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_918c_3ec6_ee9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_918c_3ec6_ee9d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_918c_3ec6_ee9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9a2_d3c2_e25a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9a2_d3c2_e25a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a9a2_d3c2_e25a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9a2_d3c2_e25a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9a2_d3c2_e25a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9a2_d3c2_e25a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9a2_d3c2_e25a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9a2_d3c2_e25a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a9a2_d3c2_e25a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d3a_96a7_3ec4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d3a_96a7_3ec4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d3a_96a7_3ec4/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d3a_96a7_3ec4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d3a_96a7_3ec4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d3a_96a7_3ec4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d3a_96a7_3ec4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d3a_96a7_3ec4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4d3a_96a7_3ec4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d09_9f2a_e64e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d09_9f2a_e64e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d09_9f2a_e64e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d09_9f2a_e64e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d09_9f2a_e64e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d09_9f2a_e64e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d09_9f2a_e64e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d09_9f2a_e64e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8d09_9f2a_e64e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_def4_c88f_ef5a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_def4_c88f_ef5a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_def4_c88f_ef5a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_def4_c88f_ef5a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_def4_c88f_ef5a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_def4_c88f_ef5a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_def4_c88f_ef5a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_def4_c88f_ef5a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_def4_c88f_ef5a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e676_7ade_117e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e676_7ade_117e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e676_7ade_117e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e676_7ade_117e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e676_7ade_117e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e676_7ade_117e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e676_7ade_117e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e676_7ade_117e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e676_7ade_117e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e26_9bf7_184a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e26_9bf7_184a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2e26_9bf7_184a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2e26_9bf7_184a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2e26_9bf7_184a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2e26_9bf7_184a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2e26_9bf7_184a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2e26_9bf7_184a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2e26_9bf7_184a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc0e_46bc_9299", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc0e_46bc_9299.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc0e_46bc_9299/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc0e_46bc_9299_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc0e_46bc_9299_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc0e_46bc_9299/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc0e_46bc_9299.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc0e_46bc_9299&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cc0e_46bc_9299"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38eb_9a0a_7a1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38eb_9a0a_7a1e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_38eb_9a0a_7a1e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_38eb_9a0a_7a1e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_38eb_9a0a_7a1e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_38eb_9a0a_7a1e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_38eb_9a0a_7a1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_38eb_9a0a_7a1e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_38eb_9a0a_7a1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3518_5158_76e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3518_5158_76e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3518_5158_76e2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3518_5158_76e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3518_5158_76e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3518_5158_76e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3518_5158_76e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3518_5158_76e2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3518_5158_76e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e8c4_86c9_0ebf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e8c4_86c9_0ebf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e8c4_86c9_0ebf/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e8c4_86c9_0ebf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e8c4_86c9_0ebf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e8c4_86c9_0ebf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e8c4_86c9_0ebf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e8c4_86c9_0ebf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e8c4_86c9_0ebf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9771_69fc_8a7f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9771_69fc_8a7f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9771_69fc_8a7f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9771_69fc_8a7f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9771_69fc_8a7f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9771_69fc_8a7f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9771_69fc_8a7f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9771_69fc_8a7f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9771_69fc_8a7f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5a1_b47d_6427", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5a1_b47d_6427.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5a1_b47d_6427/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5a1_b47d_6427_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5a1_b47d_6427_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5a1_b47d_6427/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5a1_b47d_6427.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5a1_b47d_6427&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a5a1_b47d_6427"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a917_af2e_52bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a917_af2e_52bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a917_af2e_52bf/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a917_af2e_52bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a917_af2e_52bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a917_af2e_52bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a917_af2e_52bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a917_af2e_52bf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a917_af2e_52bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f964_804e_6bda", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f964_804e_6bda.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f964_804e_6bda/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f964_804e_6bda_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f964_804e_6bda_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f964_804e_6bda/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f964_804e_6bda.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f964_804e_6bda&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f964_804e_6bda"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7f0_1abd_ee60", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7f0_1abd_ee60.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d7f0_1abd_ee60/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d7f0_1abd_ee60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d7f0_1abd_ee60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d7f0_1abd_ee60/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d7f0_1abd_ee60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d7f0_1abd_ee60&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d7f0_1abd_ee60"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e778_3643_5e9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e778_3643_5e9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e778_3643_5e9d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e778_3643_5e9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e778_3643_5e9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e778_3643_5e9d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e778_3643_5e9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e778_3643_5e9d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e778_3643_5e9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7702_5efe_5567", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7702_5efe_5567.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7702_5efe_5567/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7702_5efe_5567_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7702_5efe_5567_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7702_5efe_5567/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7702_5efe_5567.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7702_5efe_5567&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7702_5efe_5567"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa42_b6ba_61f7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa42_b6ba_61f7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa42_b6ba_61f7/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa42_b6ba_61f7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa42_b6ba_61f7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa42_b6ba_61f7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa42_b6ba_61f7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa42_b6ba_61f7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aa42_b6ba_61f7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b47e_d514_f223", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b47e_d514_f223.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b47e_d514_f223/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b47e_d514_f223_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b47e_d514_f223_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b47e_d514_f223/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b47e_d514_f223.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b47e_d514_f223&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b47e_d514_f223"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_beff_a27a_4e87", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_beff_a27a_4e87.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_beff_a27a_4e87/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_beff_a27a_4e87_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_beff_a27a_4e87_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_beff_a27a_4e87/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_beff_a27a_4e87.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_beff_a27a_4e87&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_beff_a27a_4e87"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5eee_938e_f4e9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5eee_938e_f4e9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5eee_938e_f4e9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5eee_938e_f4e9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5eee_938e_f4e9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5eee_938e_f4e9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5eee_938e_f4e9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5eee_938e_f4e9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5eee_938e_f4e9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72bf_cfde_f40e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72bf_cfde_f40e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_72bf_cfde_f40e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_72bf_cfde_f40e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_72bf_cfde_f40e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_72bf_cfde_f40e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_72bf_cfde_f40e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_72bf_cfde_f40e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_72bf_cfde_f40e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17d4_c76e_c8fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17d4_c76e_c8fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_17d4_c76e_c8fd/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_17d4_c76e_c8fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_17d4_c76e_c8fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_17d4_c76e_c8fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_17d4_c76e_c8fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_17d4_c76e_c8fd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_17d4_c76e_c8fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2566_cc7e_9215", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2566_cc7e_9215.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2566_cc7e_9215/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2566_cc7e_9215_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2566_cc7e_9215_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2566_cc7e_9215/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2566_cc7e_9215.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2566_cc7e_9215&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2566_cc7e_9215"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5568_c5cc_140b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5568_c5cc_140b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5568_c5cc_140b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5568_c5cc_140b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5568_c5cc_140b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5568_c5cc_140b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5568_c5cc_140b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5568_c5cc_140b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5568_c5cc_140b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdf5_7bae_e8b2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdf5_7bae_e8b2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bdf5_7bae_e8b2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bdf5_7bae_e8b2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bdf5_7bae_e8b2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bdf5_7bae_e8b2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bdf5_7bae_e8b2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bdf5_7bae_e8b2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bdf5_7bae_e8b2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b2cf_9057_097c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b2cf_9057_097c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b2cf_9057_097c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b2cf_9057_097c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b2cf_9057_097c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b2cf_9057_097c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b2cf_9057_097c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b2cf_9057_097c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b2cf_9057_097c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7a9_a2e7_7a33", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7a9_a2e7_7a33.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e7a9_a2e7_7a33/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e7a9_a2e7_7a33_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e7a9_a2e7_7a33_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e7a9_a2e7_7a33/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e7a9_a2e7_7a33.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e7a9_a2e7_7a33&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e7a9_a2e7_7a33"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d59f_bfaf_7c5a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d59f_bfaf_7c5a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d59f_bfaf_7c5a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d59f_bfaf_7c5a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d59f_bfaf_7c5a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d59f_bfaf_7c5a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d59f_bfaf_7c5a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d59f_bfaf_7c5a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d59f_bfaf_7c5a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_585f_c5d3_6a08", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_585f_c5d3_6a08.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_585f_c5d3_6a08/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_585f_c5d3_6a08_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_585f_c5d3_6a08_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_585f_c5d3_6a08/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_585f_c5d3_6a08.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_585f_c5d3_6a08&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_585f_c5d3_6a08"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cfd_190b_90fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cfd_190b_90fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8cfd_190b_90fe/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8cfd_190b_90fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8cfd_190b_90fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8cfd_190b_90fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8cfd_190b_90fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8cfd_190b_90fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8cfd_190b_90fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_276e_62b5_cb4c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_276e_62b5_cb4c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_276e_62b5_cb4c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_276e_62b5_cb4c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_276e_62b5_cb4c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_276e_62b5_cb4c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_276e_62b5_cb4c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_276e_62b5_cb4c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_276e_62b5_cb4c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06da_24fc_c1c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06da_24fc_c1c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_06da_24fc_c1c4/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_06da_24fc_c1c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_06da_24fc_c1c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_06da_24fc_c1c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_06da_24fc_c1c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_06da_24fc_c1c4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_06da_24fc_c1c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3080_ebd8_9f01", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3080_ebd8_9f01.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3080_ebd8_9f01/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3080_ebd8_9f01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3080_ebd8_9f01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3080_ebd8_9f01/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3080_ebd8_9f01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3080_ebd8_9f01&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3080_ebd8_9f01"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_47ae_bfa2_ab5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_47ae_bfa2_ab5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_47ae_bfa2_ab5f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_47ae_bfa2_ab5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_47ae_bfa2_ab5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_47ae_bfa2_ab5f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_47ae_bfa2_ab5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_47ae_bfa2_ab5f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_47ae_bfa2_ab5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a3c_5eb0_a198", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a3c_5eb0_a198.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a3c_5eb0_a198/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a3c_5eb0_a198_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a3c_5eb0_a198_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a3c_5eb0_a198/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a3c_5eb0_a198.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a3c_5eb0_a198&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3a3c_5eb0_a198"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af89_4184_afc9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af89_4184_afc9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_af89_4184_afc9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_af89_4184_afc9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_af89_4184_afc9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_af89_4184_afc9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_af89_4184_afc9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_af89_4184_afc9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_af89_4184_afc9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3534_54e5_ce6c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3534_54e5_ce6c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3534_54e5_ce6c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3534_54e5_ce6c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3534_54e5_ce6c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3534_54e5_ce6c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3534_54e5_ce6c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3534_54e5_ce6c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3534_54e5_ce6c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_313b_cce6_dbb2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_313b_cce6_dbb2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_313b_cce6_dbb2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_313b_cce6_dbb2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_313b_cce6_dbb2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_313b_cce6_dbb2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_313b_cce6_dbb2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_313b_cce6_dbb2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_313b_cce6_dbb2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a76_1bec_1e78", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a76_1bec_1e78.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9a76_1bec_1e78/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9a76_1bec_1e78_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9a76_1bec_1e78_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9a76_1bec_1e78/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9a76_1bec_1e78.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9a76_1bec_1e78&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9a76_1bec_1e78"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97bf_80ab_dd01", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97bf_80ab_dd01.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_97bf_80ab_dd01/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_97bf_80ab_dd01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_97bf_80ab_dd01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_97bf_80ab_dd01/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_97bf_80ab_dd01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_97bf_80ab_dd01&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_97bf_80ab_dd01"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c28_0459_7a39", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c28_0459_7a39.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c28_0459_7a39/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c28_0459_7a39_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c28_0459_7a39_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c28_0459_7a39/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c28_0459_7a39.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c28_0459_7a39&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5c28_0459_7a39"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a574_12fa_fd79", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a574_12fa_fd79.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a574_12fa_fd79/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a574_12fa_fd79_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a574_12fa_fd79_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a574_12fa_fd79/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a574_12fa_fd79.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a574_12fa_fd79&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a574_12fa_fd79"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e01b_b443_cd33", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e01b_b443_cd33.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e01b_b443_cd33/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e01b_b443_cd33_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e01b_b443_cd33_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e01b_b443_cd33/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e01b_b443_cd33.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e01b_b443_cd33&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e01b_b443_cd33"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09b0_ffd2_a0da", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09b0_ffd2_a0da.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_09b0_ffd2_a0da/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_09b0_ffd2_a0da_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_09b0_ffd2_a0da_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_09b0_ffd2_a0da/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_09b0_ffd2_a0da.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_09b0_ffd2_a0da&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_09b0_ffd2_a0da"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab65_5dea_77ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab65_5dea_77ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab65_5dea_77ae/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab65_5dea_77ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab65_5dea_77ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab65_5dea_77ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab65_5dea_77ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab65_5dea_77ae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ab65_5dea_77ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a43_9a16_3d78", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a43_9a16_3d78.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a43_9a16_3d78/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a43_9a16_3d78_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a43_9a16_3d78_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a43_9a16_3d78/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a43_9a16_3d78.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a43_9a16_3d78&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6a43_9a16_3d78"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdde_1305_4e29", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdde_1305_4e29.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bdde_1305_4e29/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bdde_1305_4e29_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bdde_1305_4e29_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bdde_1305_4e29/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bdde_1305_4e29.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bdde_1305_4e29&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bdde_1305_4e29"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f660_bfb6_e4b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f660_bfb6_e4b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f660_bfb6_e4b8/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f660_bfb6_e4b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f660_bfb6_e4b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f660_bfb6_e4b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f660_bfb6_e4b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f660_bfb6_e4b8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f660_bfb6_e4b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eda8_3570_9f77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eda8_3570_9f77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eda8_3570_9f77/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eda8_3570_9f77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eda8_3570_9f77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eda8_3570_9f77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eda8_3570_9f77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eda8_3570_9f77&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_eda8_3570_9f77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c22_2776_0494", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c22_2776_0494.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1c22_2776_0494/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1c22_2776_0494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1c22_2776_0494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1c22_2776_0494/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1c22_2776_0494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1c22_2776_0494&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1c22_2776_0494"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9c6_76c0_1434", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9c6_76c0_1434.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b9c6_76c0_1434/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b9c6_76c0_1434_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b9c6_76c0_1434_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b9c6_76c0_1434/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b9c6_76c0_1434.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b9c6_76c0_1434&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b9c6_76c0_1434"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e2b9_78c5_03a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e2b9_78c5_03a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e2b9_78c5_03a1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e2b9_78c5_03a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e2b9_78c5_03a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e2b9_78c5_03a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e2b9_78c5_03a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e2b9_78c5_03a1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e2b9_78c5_03a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_494f_2662_30f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_494f_2662_30f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_494f_2662_30f0/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_494f_2662_30f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_494f_2662_30f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_494f_2662_30f0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_494f_2662_30f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_494f_2662_30f0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_494f_2662_30f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a3d_480b_cc72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a3d_480b_cc72.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4a3d_480b_cc72/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4a3d_480b_cc72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4a3d_480b_cc72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4a3d_480b_cc72/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4a3d_480b_cc72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4a3d_480b_cc72&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4a3d_480b_cc72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_324a_46b4_c250", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_324a_46b4_c250.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_324a_46b4_c250/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_324a_46b4_c250_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_324a_46b4_c250_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_324a_46b4_c250/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_324a_46b4_c250.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_324a_46b4_c250&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_324a_46b4_c250"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d81_7fad_baa5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d81_7fad_baa5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d81_7fad_baa5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d81_7fad_baa5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d81_7fad_baa5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d81_7fad_baa5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d81_7fad_baa5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d81_7fad_baa5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8d81_7fad_baa5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f16d_9cd0_08fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f16d_9cd0_08fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f16d_9cd0_08fb/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f16d_9cd0_08fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f16d_9cd0_08fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f16d_9cd0_08fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f16d_9cd0_08fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f16d_9cd0_08fb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f16d_9cd0_08fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_292c_4d42_8684", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_292c_4d42_8684.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_292c_4d42_8684/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_292c_4d42_8684_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_292c_4d42_8684_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_292c_4d42_8684/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_292c_4d42_8684.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_292c_4d42_8684&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_292c_4d42_8684"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01f9_89e9_de52", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01f9_89e9_de52.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_01f9_89e9_de52/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_01f9_89e9_de52_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_01f9_89e9_de52_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_01f9_89e9_de52/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_01f9_89e9_de52.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_01f9_89e9_de52&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_01f9_89e9_de52"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5290_8170_9eb2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5290_8170_9eb2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5290_8170_9eb2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5290_8170_9eb2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5290_8170_9eb2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5290_8170_9eb2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5290_8170_9eb2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5290_8170_9eb2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5290_8170_9eb2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d81_3d8f_38b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d81_3d8f_38b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9d81_3d8f_38b6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9d81_3d8f_38b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9d81_3d8f_38b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9d81_3d8f_38b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9d81_3d8f_38b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9d81_3d8f_38b6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9d81_3d8f_38b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_149f_06e9_e7f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_149f_06e9_e7f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_149f_06e9_e7f9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_149f_06e9_e7f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_149f_06e9_e7f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_149f_06e9_e7f9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_149f_06e9_e7f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_149f_06e9_e7f9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_149f_06e9_e7f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f90_2218_c8c8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f90_2218_c8c8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4f90_2218_c8c8/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4f90_2218_c8c8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4f90_2218_c8c8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4f90_2218_c8c8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4f90_2218_c8c8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4f90_2218_c8c8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4f90_2218_c8c8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d831_caca_39ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d831_caca_39ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d831_caca_39ff/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d831_caca_39ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d831_caca_39ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d831_caca_39ff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d831_caca_39ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d831_caca_39ff&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d831_caca_39ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0981_cb70_ea27", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0981_cb70_ea27.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0981_cb70_ea27/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0981_cb70_ea27_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0981_cb70_ea27_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0981_cb70_ea27/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0981_cb70_ea27.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0981_cb70_ea27&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0981_cb70_ea27"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a609_a281_7221", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a609_a281_7221.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a609_a281_7221/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a609_a281_7221_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a609_a281_7221_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a609_a281_7221/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a609_a281_7221.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a609_a281_7221&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a609_a281_7221"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_078f_7030_eee2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_078f_7030_eee2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_078f_7030_eee2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_078f_7030_eee2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_078f_7030_eee2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_078f_7030_eee2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_078f_7030_eee2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_078f_7030_eee2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_078f_7030_eee2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf01_e30b_5a1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf01_e30b_5a1e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf01_e30b_5a1e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf01_e30b_5a1e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf01_e30b_5a1e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf01_e30b_5a1e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf01_e30b_5a1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf01_e30b_5a1e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bf01_e30b_5a1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3ce_adb3_41e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3ce_adb3_41e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c3ce_adb3_41e2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c3ce_adb3_41e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c3ce_adb3_41e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c3ce_adb3_41e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c3ce_adb3_41e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c3ce_adb3_41e2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c3ce_adb3_41e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c7b_72f7_6b3b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c7b_72f7_6b3b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2c7b_72f7_6b3b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2c7b_72f7_6b3b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2c7b_72f7_6b3b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2c7b_72f7_6b3b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2c7b_72f7_6b3b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2c7b_72f7_6b3b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2c7b_72f7_6b3b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_521d_33f9_7e5a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_521d_33f9_7e5a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_521d_33f9_7e5a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_521d_33f9_7e5a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_521d_33f9_7e5a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_521d_33f9_7e5a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_521d_33f9_7e5a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_521d_33f9_7e5a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_521d_33f9_7e5a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_68b0_810c_dc0d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_68b0_810c_dc0d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_68b0_810c_dc0d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_68b0_810c_dc0d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_68b0_810c_dc0d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_68b0_810c_dc0d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_68b0_810c_dc0d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_68b0_810c_dc0d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_68b0_810c_dc0d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abbf_ae13_f4d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abbf_ae13_f4d1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_abbf_ae13_f4d1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_abbf_ae13_f4d1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_abbf_ae13_f4d1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_abbf_ae13_f4d1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_abbf_ae13_f4d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_abbf_ae13_f4d1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_abbf_ae13_f4d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1001_fb53_bfe6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1001_fb53_bfe6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1001_fb53_bfe6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1001_fb53_bfe6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1001_fb53_bfe6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1001_fb53_bfe6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1001_fb53_bfe6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1001_fb53_bfe6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1001_fb53_bfe6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9fc5_841b_439c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9fc5_841b_439c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9fc5_841b_439c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9fc5_841b_439c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9fc5_841b_439c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9fc5_841b_439c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9fc5_841b_439c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9fc5_841b_439c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9fc5_841b_439c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fee_364a_0f6a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fee_364a_0f6a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8fee_364a_0f6a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8fee_364a_0f6a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8fee_364a_0f6a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8fee_364a_0f6a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8fee_364a_0f6a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8fee_364a_0f6a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8fee_364a_0f6a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c58_6177_dd0e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c58_6177_dd0e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4c58_6177_dd0e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4c58_6177_dd0e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4c58_6177_dd0e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c58_6177_dd0e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c58_6177_dd0e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c58_6177_dd0e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4c58_6177_dd0e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edeb_deb8_d898", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edeb_deb8_d898.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_edeb_deb8_d898/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_edeb_deb8_d898_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_edeb_deb8_d898_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_edeb_deb8_d898/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_edeb_deb8_d898.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_edeb_deb8_d898&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_edeb_deb8_d898"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60e3_9912_590d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60e3_9912_590d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_60e3_9912_590d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_60e3_9912_590d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_60e3_9912_590d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_60e3_9912_590d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_60e3_9912_590d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_60e3_9912_590d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_60e3_9912_590d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6cc1_e26a_630d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6cc1_e26a_630d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6cc1_e26a_630d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6cc1_e26a_630d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6cc1_e26a_630d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6cc1_e26a_630d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6cc1_e26a_630d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6cc1_e26a_630d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6cc1_e26a_630d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e447_4b5a_27d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e447_4b5a_27d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e447_4b5a_27d7/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e447_4b5a_27d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e447_4b5a_27d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e447_4b5a_27d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e447_4b5a_27d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e447_4b5a_27d7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e447_4b5a_27d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a98_4b08_b450", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a98_4b08_b450.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a98_4b08_b450/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a98_4b08_b450_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a98_4b08_b450_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a98_4b08_b450/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a98_4b08_b450.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a98_4b08_b450&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3a98_4b08_b450"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26a8_ce06_8b20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26a8_ce06_8b20.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_26a8_ce06_8b20/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_26a8_ce06_8b20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_26a8_ce06_8b20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_26a8_ce06_8b20/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_26a8_ce06_8b20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_26a8_ce06_8b20&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_26a8_ce06_8b20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4131_d927_00a3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4131_d927_00a3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4131_d927_00a3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4131_d927_00a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4131_d927_00a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4131_d927_00a3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4131_d927_00a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4131_d927_00a3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4131_d927_00a3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_218f_aec8_f092", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_218f_aec8_f092.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_218f_aec8_f092/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_218f_aec8_f092_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_218f_aec8_f092_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_218f_aec8_f092/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_218f_aec8_f092.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_218f_aec8_f092&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_218f_aec8_f092"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_487b_4df7_9527", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_487b_4df7_9527.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_487b_4df7_9527/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_487b_4df7_9527_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_487b_4df7_9527_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_487b_4df7_9527/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_487b_4df7_9527.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_487b_4df7_9527&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_487b_4df7_9527"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b76d_5272_bf3b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b76d_5272_bf3b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b76d_5272_bf3b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b76d_5272_bf3b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b76d_5272_bf3b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b76d_5272_bf3b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b76d_5272_bf3b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b76d_5272_bf3b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b76d_5272_bf3b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0b2_391b_eb15", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0b2_391b_eb15.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a0b2_391b_eb15/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a0b2_391b_eb15_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a0b2_391b_eb15_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a0b2_391b_eb15/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a0b2_391b_eb15.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a0b2_391b_eb15&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a0b2_391b_eb15"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9de3_502c_1b47", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9de3_502c_1b47.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9de3_502c_1b47/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9de3_502c_1b47_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9de3_502c_1b47_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9de3_502c_1b47/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9de3_502c_1b47.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9de3_502c_1b47&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9de3_502c_1b47"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a7e3_7d9e_ef0e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a7e3_7d9e_ef0e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a7e3_7d9e_ef0e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a7e3_7d9e_ef0e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a7e3_7d9e_ef0e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a7e3_7d9e_ef0e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a7e3_7d9e_ef0e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a7e3_7d9e_ef0e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a7e3_7d9e_ef0e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e29_2467_28f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e29_2467_28f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e29_2467_28f9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e29_2467_28f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e29_2467_28f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e29_2467_28f9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e29_2467_28f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e29_2467_28f9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9e29_2467_28f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ace_f822_7828", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ace_f822_7828.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ace_f822_7828/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ace_f822_7828_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ace_f822_7828_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ace_f822_7828/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ace_f822_7828.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ace_f822_7828&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7ace_f822_7828"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8706_9407_8b3a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8706_9407_8b3a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8706_9407_8b3a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8706_9407_8b3a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8706_9407_8b3a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8706_9407_8b3a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8706_9407_8b3a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8706_9407_8b3a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8706_9407_8b3a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b87_c8dc_569a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b87_c8dc_569a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2b87_c8dc_569a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2b87_c8dc_569a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2b87_c8dc_569a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2b87_c8dc_569a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2b87_c8dc_569a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2b87_c8dc_569a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2b87_c8dc_569a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e21_5324_808e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e21_5324_808e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5e21_5324_808e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5e21_5324_808e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5e21_5324_808e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5e21_5324_808e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5e21_5324_808e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5e21_5324_808e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5e21_5324_808e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a33d_5125_ea7e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a33d_5125_ea7e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a33d_5125_ea7e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a33d_5125_ea7e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a33d_5125_ea7e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a33d_5125_ea7e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a33d_5125_ea7e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a33d_5125_ea7e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a33d_5125_ea7e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf43_741c_8fe9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf43_741c_8fe9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf43_741c_8fe9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf43_741c_8fe9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf43_741c_8fe9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf43_741c_8fe9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf43_741c_8fe9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf43_741c_8fe9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cf43_741c_8fe9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c14_c389_71ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c14_c389_71ba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2c14_c389_71ba/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2c14_c389_71ba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2c14_c389_71ba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2c14_c389_71ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2c14_c389_71ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2c14_c389_71ba&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2c14_c389_71ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a3d7_fe21_ef17", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a3d7_fe21_ef17.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a3d7_fe21_ef17/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a3d7_fe21_ef17_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a3d7_fe21_ef17_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a3d7_fe21_ef17/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a3d7_fe21_ef17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a3d7_fe21_ef17&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a3d7_fe21_ef17"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cdf_42a9_36b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cdf_42a9_36b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8cdf_42a9_36b3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8cdf_42a9_36b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8cdf_42a9_36b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8cdf_42a9_36b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8cdf_42a9_36b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8cdf_42a9_36b3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8cdf_42a9_36b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_40a5_c601_67d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_40a5_c601_67d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_40a5_c601_67d5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_40a5_c601_67d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_40a5_c601_67d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_40a5_c601_67d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_40a5_c601_67d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_40a5_c601_67d5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_40a5_c601_67d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edd8_2ca2_9e2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edd8_2ca2_9e2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_edd8_2ca2_9e2a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_edd8_2ca2_9e2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_edd8_2ca2_9e2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_edd8_2ca2_9e2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_edd8_2ca2_9e2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_edd8_2ca2_9e2a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_edd8_2ca2_9e2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_521b_bb27_0e94", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_521b_bb27_0e94.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_521b_bb27_0e94/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_521b_bb27_0e94_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_521b_bb27_0e94_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_521b_bb27_0e94/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_521b_bb27_0e94.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_521b_bb27_0e94&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_521b_bb27_0e94"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ea3_7936_2f95", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ea3_7936_2f95.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ea3_7936_2f95/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ea3_7936_2f95_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ea3_7936_2f95_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ea3_7936_2f95/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ea3_7936_2f95.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ea3_7936_2f95&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3ea3_7936_2f95"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4920_8dac_6642", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4920_8dac_6642.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4920_8dac_6642/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4920_8dac_6642_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4920_8dac_6642_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4920_8dac_6642/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4920_8dac_6642.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4920_8dac_6642&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4920_8dac_6642"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ca8_5d6b_8295", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ca8_5d6b_8295.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ca8_5d6b_8295/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ca8_5d6b_8295_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ca8_5d6b_8295_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ca8_5d6b_8295/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ca8_5d6b_8295.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ca8_5d6b_8295&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4ca8_5d6b_8295"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dcd_c283_ee84", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dcd_c283_ee84.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1dcd_c283_ee84/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1dcd_c283_ee84_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1dcd_c283_ee84_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1dcd_c283_ee84/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1dcd_c283_ee84.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1dcd_c283_ee84&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1dcd_c283_ee84"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c9a_3b5d_9640", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c9a_3b5d_9640.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c9a_3b5d_9640/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c9a_3b5d_9640_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c9a_3b5d_9640_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c9a_3b5d_9640/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c9a_3b5d_9640.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c9a_3b5d_9640&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9c9a_3b5d_9640"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_929d_b9b9_f812", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_929d_b9b9_f812.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_929d_b9b9_f812/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_929d_b9b9_f812_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_929d_b9b9_f812_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_929d_b9b9_f812/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_929d_b9b9_f812.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_929d_b9b9_f812&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_929d_b9b9_f812"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a20_d54e_88cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a20_d54e_88cc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9a20_d54e_88cc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9a20_d54e_88cc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9a20_d54e_88cc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9a20_d54e_88cc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9a20_d54e_88cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9a20_d54e_88cc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9a20_d54e_88cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5e3_8dc2_9963", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5e3_8dc2_9963.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5e3_8dc2_9963/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5e3_8dc2_9963_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5e3_8dc2_9963_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5e3_8dc2_9963/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5e3_8dc2_9963.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5e3_8dc2_9963&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e5e3_8dc2_9963"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72f3_ba00_24af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72f3_ba00_24af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_72f3_ba00_24af/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_72f3_ba00_24af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_72f3_ba00_24af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_72f3_ba00_24af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_72f3_ba00_24af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_72f3_ba00_24af&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_72f3_ba00_24af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a0c_94bc_8371", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a0c_94bc_8371.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a0c_94bc_8371/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a0c_94bc_8371_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a0c_94bc_8371_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a0c_94bc_8371/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a0c_94bc_8371.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a0c_94bc_8371&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7a0c_94bc_8371"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d997_dbd1_9112", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d997_dbd1_9112.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d997_dbd1_9112/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d997_dbd1_9112_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d997_dbd1_9112_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d997_dbd1_9112/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d997_dbd1_9112.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d997_dbd1_9112&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d997_dbd1_9112"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b5b_e484_bd8a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b5b_e484_bd8a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8b5b_e484_bd8a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8b5b_e484_bd8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8b5b_e484_bd8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8b5b_e484_bd8a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8b5b_e484_bd8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8b5b_e484_bd8a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8b5b_e484_bd8a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b7f_aa69_95f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b7f_aa69_95f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8b7f_aa69_95f1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8b7f_aa69_95f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8b7f_aa69_95f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8b7f_aa69_95f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8b7f_aa69_95f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8b7f_aa69_95f1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8b7f_aa69_95f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5b1_4164_e610", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5b1_4164_e610.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5b1_4164_e610/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5b1_4164_e610_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5b1_4164_e610_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5b1_4164_e610/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5b1_4164_e610.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5b1_4164_e610&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b5b1_4164_e610"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1abe_24fb_367b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1abe_24fb_367b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1abe_24fb_367b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1abe_24fb_367b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1abe_24fb_367b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1abe_24fb_367b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1abe_24fb_367b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1abe_24fb_367b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1abe_24fb_367b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7df1_0103_e56b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7df1_0103_e56b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7df1_0103_e56b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7df1_0103_e56b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7df1_0103_e56b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7df1_0103_e56b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7df1_0103_e56b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7df1_0103_e56b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7df1_0103_e56b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f95b_3df8_d637", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f95b_3df8_d637.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f95b_3df8_d637/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f95b_3df8_d637_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f95b_3df8_d637_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f95b_3df8_d637/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f95b_3df8_d637.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f95b_3df8_d637&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f95b_3df8_d637"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4334_8312_c0e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4334_8312_c0e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4334_8312_c0e6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4334_8312_c0e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4334_8312_c0e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4334_8312_c0e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4334_8312_c0e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4334_8312_c0e6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4334_8312_c0e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3670_969c_ca33", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3670_969c_ca33.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3670_969c_ca33/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3670_969c_ca33_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3670_969c_ca33_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3670_969c_ca33/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3670_969c_ca33.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3670_969c_ca33&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3670_969c_ca33"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0f4_4c24_8b30", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0f4_4c24_8b30.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d0f4_4c24_8b30/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d0f4_4c24_8b30_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d0f4_4c24_8b30_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d0f4_4c24_8b30/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d0f4_4c24_8b30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d0f4_4c24_8b30&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d0f4_4c24_8b30"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e2a7_4c02_6990", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e2a7_4c02_6990.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e2a7_4c02_6990/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e2a7_4c02_6990_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e2a7_4c02_6990_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e2a7_4c02_6990/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e2a7_4c02_6990.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e2a7_4c02_6990&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e2a7_4c02_6990"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d1f_1f2d_2ce5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d1f_1f2d_2ce5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d1f_1f2d_2ce5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d1f_1f2d_2ce5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d1f_1f2d_2ce5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d1f_1f2d_2ce5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d1f_1f2d_2ce5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d1f_1f2d_2ce5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1d1f_1f2d_2ce5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3674_e576_1d97", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3674_e576_1d97.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3674_e576_1d97/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3674_e576_1d97_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3674_e576_1d97_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3674_e576_1d97/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3674_e576_1d97.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3674_e576_1d97&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3674_e576_1d97"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca3e_68ab_b0a3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca3e_68ab_b0a3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca3e_68ab_b0a3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca3e_68ab_b0a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca3e_68ab_b0a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca3e_68ab_b0a3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca3e_68ab_b0a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca3e_68ab_b0a3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ca3e_68ab_b0a3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cc1_9b9f_7d6e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cc1_9b9f_7d6e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2cc1_9b9f_7d6e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2cc1_9b9f_7d6e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2cc1_9b9f_7d6e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2cc1_9b9f_7d6e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2cc1_9b9f_7d6e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2cc1_9b9f_7d6e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2cc1_9b9f_7d6e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d66c_5604_dab2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d66c_5604_dab2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d66c_5604_dab2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d66c_5604_dab2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d66c_5604_dab2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d66c_5604_dab2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d66c_5604_dab2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d66c_5604_dab2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d66c_5604_dab2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7173_c265_3b74", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7173_c265_3b74.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7173_c265_3b74/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7173_c265_3b74_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7173_c265_3b74_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7173_c265_3b74/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7173_c265_3b74.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7173_c265_3b74&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7173_c265_3b74"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d11_7eab_a03f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d11_7eab_a03f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2d11_7eab_a03f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2d11_7eab_a03f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2d11_7eab_a03f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d11_7eab_a03f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d11_7eab_a03f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d11_7eab_a03f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2d11_7eab_a03f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ec2_58c0_effc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ec2_58c0_effc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9ec2_58c0_effc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9ec2_58c0_effc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9ec2_58c0_effc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9ec2_58c0_effc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9ec2_58c0_effc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9ec2_58c0_effc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9ec2_58c0_effc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c59b_fa00_6cb8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c59b_fa00_6cb8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c59b_fa00_6cb8/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c59b_fa00_6cb8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c59b_fa00_6cb8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c59b_fa00_6cb8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c59b_fa00_6cb8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c59b_fa00_6cb8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c59b_fa00_6cb8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a0f_d0a2_73e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a0f_d0a2_73e4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a0f_d0a2_73e4/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a0f_d0a2_73e4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a0f_d0a2_73e4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a0f_d0a2_73e4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a0f_d0a2_73e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a0f_d0a2_73e4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0a0f_d0a2_73e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea58_38c4_3bc2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea58_38c4_3bc2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ea58_38c4_3bc2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ea58_38c4_3bc2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ea58_38c4_3bc2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ea58_38c4_3bc2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ea58_38c4_3bc2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ea58_38c4_3bc2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ea58_38c4_3bc2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_653c_5719_2469", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_653c_5719_2469.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_653c_5719_2469/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_653c_5719_2469_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_653c_5719_2469_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_653c_5719_2469/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_653c_5719_2469.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_653c_5719_2469&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_653c_5719_2469"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57d9_665b_9751", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57d9_665b_9751.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_57d9_665b_9751/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_57d9_665b_9751_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_57d9_665b_9751_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_57d9_665b_9751/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_57d9_665b_9751.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_57d9_665b_9751&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_57d9_665b_9751"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81f2_91fe_79e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81f2_91fe_79e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_81f2_91fe_79e1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_81f2_91fe_79e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_81f2_91fe_79e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_81f2_91fe_79e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_81f2_91fe_79e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_81f2_91fe_79e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_81f2_91fe_79e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef78_0c96_b288", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef78_0c96_b288.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ef78_0c96_b288/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ef78_0c96_b288_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ef78_0c96_b288_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ef78_0c96_b288/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ef78_0c96_b288.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ef78_0c96_b288&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ef78_0c96_b288"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94d9_c46a_96d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94d9_c46a_96d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_94d9_c46a_96d5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_94d9_c46a_96d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_94d9_c46a_96d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_94d9_c46a_96d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_94d9_c46a_96d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_94d9_c46a_96d5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_94d9_c46a_96d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_973b_61ee_eda2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_973b_61ee_eda2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_973b_61ee_eda2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_973b_61ee_eda2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_973b_61ee_eda2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_973b_61ee_eda2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_973b_61ee_eda2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_973b_61ee_eda2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_973b_61ee_eda2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c21_d688_c707", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c21_d688_c707.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3c21_d688_c707/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3c21_d688_c707_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3c21_d688_c707_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c21_d688_c707/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c21_d688_c707.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c21_d688_c707&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3c21_d688_c707"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12a7_4be5_4a83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12a7_4be5_4a83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_12a7_4be5_4a83/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_12a7_4be5_4a83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_12a7_4be5_4a83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_12a7_4be5_4a83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_12a7_4be5_4a83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_12a7_4be5_4a83&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_12a7_4be5_4a83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_859d_2c1b_d1b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_859d_2c1b_d1b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_859d_2c1b_d1b5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_859d_2c1b_d1b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_859d_2c1b_d1b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_859d_2c1b_d1b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_859d_2c1b_d1b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_859d_2c1b_d1b5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_859d_2c1b_d1b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3221_f85d_4ac1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3221_f85d_4ac1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3221_f85d_4ac1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3221_f85d_4ac1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3221_f85d_4ac1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3221_f85d_4ac1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3221_f85d_4ac1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3221_f85d_4ac1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3221_f85d_4ac1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c00_9d6e_f852", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c00_9d6e_f852.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1c00_9d6e_f852/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1c00_9d6e_f852_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1c00_9d6e_f852_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1c00_9d6e_f852/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1c00_9d6e_f852.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1c00_9d6e_f852&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1c00_9d6e_f852"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a4b_1235_7c40", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a4b_1235_7c40.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a4b_1235_7c40/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a4b_1235_7c40_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a4b_1235_7c40_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a4b_1235_7c40/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a4b_1235_7c40.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a4b_1235_7c40&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3a4b_1235_7c40"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30ec_0b8e_1b05", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30ec_0b8e_1b05.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_30ec_0b8e_1b05/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_30ec_0b8e_1b05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_30ec_0b8e_1b05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_30ec_0b8e_1b05/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_30ec_0b8e_1b05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_30ec_0b8e_1b05&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_30ec_0b8e_1b05"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cb9_76a8_654d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cb9_76a8_654d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7cb9_76a8_654d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7cb9_76a8_654d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7cb9_76a8_654d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7cb9_76a8_654d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7cb9_76a8_654d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7cb9_76a8_654d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7cb9_76a8_654d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b42e_92d0_bcd1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b42e_92d0_bcd1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b42e_92d0_bcd1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b42e_92d0_bcd1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b42e_92d0_bcd1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b42e_92d0_bcd1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b42e_92d0_bcd1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b42e_92d0_bcd1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b42e_92d0_bcd1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c44c_9237_b14d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c44c_9237_b14d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c44c_9237_b14d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c44c_9237_b14d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c44c_9237_b14d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c44c_9237_b14d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c44c_9237_b14d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c44c_9237_b14d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c44c_9237_b14d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ee3_0337_dff8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ee3_0337_dff8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ee3_0337_dff8/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ee3_0337_dff8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ee3_0337_dff8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ee3_0337_dff8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ee3_0337_dff8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ee3_0337_dff8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4ee3_0337_dff8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4dc_8140_85dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4dc_8140_85dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e4dc_8140_85dc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e4dc_8140_85dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e4dc_8140_85dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e4dc_8140_85dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e4dc_8140_85dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e4dc_8140_85dc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e4dc_8140_85dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d5b_afe7_a537", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d5b_afe7_a537.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d5b_afe7_a537/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d5b_afe7_a537_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d5b_afe7_a537_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d5b_afe7_a537/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d5b_afe7_a537.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d5b_afe7_a537&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6d5b_afe7_a537"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ba9_0493_5a47", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ba9_0493_5a47.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ba9_0493_5a47/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ba9_0493_5a47_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ba9_0493_5a47_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ba9_0493_5a47/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ba9_0493_5a47.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ba9_0493_5a47&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3ba9_0493_5a47"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bef1_d2a7_641c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bef1_d2a7_641c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bef1_d2a7_641c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bef1_d2a7_641c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bef1_d2a7_641c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bef1_d2a7_641c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bef1_d2a7_641c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bef1_d2a7_641c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bef1_d2a7_641c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab27_d30e_7ef0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab27_d30e_7ef0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab27_d30e_7ef0/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab27_d30e_7ef0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab27_d30e_7ef0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab27_d30e_7ef0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab27_d30e_7ef0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab27_d30e_7ef0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ab27_d30e_7ef0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_166f_8eda_1ee6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_166f_8eda_1ee6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_166f_8eda_1ee6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_166f_8eda_1ee6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_166f_8eda_1ee6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_166f_8eda_1ee6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_166f_8eda_1ee6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_166f_8eda_1ee6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_166f_8eda_1ee6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bd0_8c1b_4a3e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bd0_8c1b_4a3e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2bd0_8c1b_4a3e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2bd0_8c1b_4a3e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2bd0_8c1b_4a3e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2bd0_8c1b_4a3e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2bd0_8c1b_4a3e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2bd0_8c1b_4a3e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2bd0_8c1b_4a3e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f09_52e6_71eb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f09_52e6_71eb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f09_52e6_71eb/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f09_52e6_71eb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f09_52e6_71eb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f09_52e6_71eb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f09_52e6_71eb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f09_52e6_71eb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8f09_52e6_71eb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a110_d914_0400", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a110_d914_0400.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a110_d914_0400/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a110_d914_0400_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a110_d914_0400_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a110_d914_0400/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a110_d914_0400.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a110_d914_0400&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a110_d914_0400"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b020_385c_d63e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b020_385c_d63e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b020_385c_d63e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b020_385c_d63e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b020_385c_d63e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b020_385c_d63e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b020_385c_d63e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b020_385c_d63e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b020_385c_d63e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71c0_8f49_27a4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71c0_8f49_27a4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_71c0_8f49_27a4/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_71c0_8f49_27a4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_71c0_8f49_27a4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_71c0_8f49_27a4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_71c0_8f49_27a4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_71c0_8f49_27a4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_71c0_8f49_27a4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a664_e860_aeba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a664_e860_aeba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a664_e860_aeba/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a664_e860_aeba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a664_e860_aeba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a664_e860_aeba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a664_e860_aeba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a664_e860_aeba&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a664_e860_aeba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d132_66ed_5933", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d132_66ed_5933.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d132_66ed_5933/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d132_66ed_5933_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d132_66ed_5933_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d132_66ed_5933/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d132_66ed_5933.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d132_66ed_5933&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d132_66ed_5933"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d16_b494_682e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d16_b494_682e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d16_b494_682e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d16_b494_682e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d16_b494_682e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d16_b494_682e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d16_b494_682e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d16_b494_682e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4d16_b494_682e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_75af_055d_f79a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_75af_055d_f79a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_75af_055d_f79a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_75af_055d_f79a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_75af_055d_f79a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_75af_055d_f79a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_75af_055d_f79a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_75af_055d_f79a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_75af_055d_f79a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9f9_a9e3_ae58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9f9_a9e3_ae58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c9f9_a9e3_ae58/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c9f9_a9e3_ae58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c9f9_a9e3_ae58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c9f9_a9e3_ae58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c9f9_a9e3_ae58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c9f9_a9e3_ae58&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c9f9_a9e3_ae58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d133_b453_e562", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d133_b453_e562.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d133_b453_e562/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d133_b453_e562_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d133_b453_e562_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d133_b453_e562/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d133_b453_e562.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d133_b453_e562&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d133_b453_e562"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_662c_44b2_9861", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_662c_44b2_9861.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_662c_44b2_9861/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_662c_44b2_9861_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_662c_44b2_9861_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_662c_44b2_9861/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_662c_44b2_9861.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_662c_44b2_9861&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_662c_44b2_9861"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a71_7bfb_8775", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a71_7bfb_8775.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a71_7bfb_8775/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a71_7bfb_8775_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a71_7bfb_8775_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a71_7bfb_8775/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a71_7bfb_8775.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a71_7bfb_8775&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6a71_7bfb_8775"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_127b_9264_c44a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_127b_9264_c44a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_127b_9264_c44a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_127b_9264_c44a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_127b_9264_c44a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_127b_9264_c44a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_127b_9264_c44a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_127b_9264_c44a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_127b_9264_c44a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cce_4cd0_c115", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cce_4cd0_c115.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2cce_4cd0_c115/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2cce_4cd0_c115_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2cce_4cd0_c115_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2cce_4cd0_c115/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2cce_4cd0_c115.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2cce_4cd0_c115&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2cce_4cd0_c115"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4046_ee45_b9a5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4046_ee45_b9a5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4046_ee45_b9a5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4046_ee45_b9a5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4046_ee45_b9a5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4046_ee45_b9a5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4046_ee45_b9a5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4046_ee45_b9a5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4046_ee45_b9a5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b017_e83a_ba12", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b017_e83a_ba12.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b017_e83a_ba12/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b017_e83a_ba12_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b017_e83a_ba12_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b017_e83a_ba12/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b017_e83a_ba12.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b017_e83a_ba12&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b017_e83a_ba12"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54d2_ba00_f484", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54d2_ba00_f484.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54d2_ba00_f484/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54d2_ba00_f484_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54d2_ba00_f484_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54d2_ba00_f484/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54d2_ba00_f484.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54d2_ba00_f484&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_54d2_ba00_f484"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60ba_6eaf_b185", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60ba_6eaf_b185.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_60ba_6eaf_b185/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_60ba_6eaf_b185_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_60ba_6eaf_b185_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_60ba_6eaf_b185/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_60ba_6eaf_b185.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_60ba_6eaf_b185&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_60ba_6eaf_b185"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95ba_29c5_3da5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95ba_29c5_3da5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_95ba_29c5_3da5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_95ba_29c5_3da5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_95ba_29c5_3da5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_95ba_29c5_3da5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_95ba_29c5_3da5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_95ba_29c5_3da5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_95ba_29c5_3da5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1eb6_fa30_c4e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1eb6_fa30_c4e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1eb6_fa30_c4e3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1eb6_fa30_c4e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1eb6_fa30_c4e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1eb6_fa30_c4e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1eb6_fa30_c4e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1eb6_fa30_c4e3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1eb6_fa30_c4e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8381_acd5_9b9e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8381_acd5_9b9e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8381_acd5_9b9e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8381_acd5_9b9e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8381_acd5_9b9e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8381_acd5_9b9e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8381_acd5_9b9e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8381_acd5_9b9e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8381_acd5_9b9e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a802_74c0_5d5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a802_74c0_5d5b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a802_74c0_5d5b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a802_74c0_5d5b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a802_74c0_5d5b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a802_74c0_5d5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a802_74c0_5d5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a802_74c0_5d5b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a802_74c0_5d5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_75bf_00c0_9690", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_75bf_00c0_9690.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_75bf_00c0_9690/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_75bf_00c0_9690_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_75bf_00c0_9690_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_75bf_00c0_9690/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_75bf_00c0_9690.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_75bf_00c0_9690&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_75bf_00c0_9690"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce05_d7ea_67ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce05_d7ea_67ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ce05_d7ea_67ec/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ce05_d7ea_67ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ce05_d7ea_67ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ce05_d7ea_67ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ce05_d7ea_67ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ce05_d7ea_67ec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ce05_d7ea_67ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7027_bbb6_758a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7027_bbb6_758a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7027_bbb6_758a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7027_bbb6_758a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7027_bbb6_758a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7027_bbb6_758a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7027_bbb6_758a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7027_bbb6_758a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7027_bbb6_758a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b75d_1196_47c7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b75d_1196_47c7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b75d_1196_47c7/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b75d_1196_47c7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b75d_1196_47c7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b75d_1196_47c7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b75d_1196_47c7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b75d_1196_47c7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b75d_1196_47c7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f904_4e7b_029b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f904_4e7b_029b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f904_4e7b_029b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f904_4e7b_029b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f904_4e7b_029b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f904_4e7b_029b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f904_4e7b_029b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f904_4e7b_029b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f904_4e7b_029b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ecc8_5ad3_a4e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ecc8_5ad3_a4e8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ecc8_5ad3_a4e8/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ecc8_5ad3_a4e8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ecc8_5ad3_a4e8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ecc8_5ad3_a4e8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ecc8_5ad3_a4e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ecc8_5ad3_a4e8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ecc8_5ad3_a4e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cf9_4317_7ec9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cf9_4317_7ec9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3cf9_4317_7ec9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3cf9_4317_7ec9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3cf9_4317_7ec9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3cf9_4317_7ec9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3cf9_4317_7ec9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3cf9_4317_7ec9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3cf9_4317_7ec9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a846_325d_0148", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a846_325d_0148.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a846_325d_0148/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a846_325d_0148_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a846_325d_0148_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a846_325d_0148/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a846_325d_0148.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a846_325d_0148&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a846_325d_0148"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_acdc_6530_a255", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_acdc_6530_a255.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_acdc_6530_a255/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_acdc_6530_a255_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_acdc_6530_a255_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_acdc_6530_a255/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_acdc_6530_a255.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_acdc_6530_a255&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_acdc_6530_a255"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ac6_5c91_0c03", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ac6_5c91_0c03.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9ac6_5c91_0c03/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9ac6_5c91_0c03_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9ac6_5c91_0c03_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9ac6_5c91_0c03/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9ac6_5c91_0c03.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9ac6_5c91_0c03&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9ac6_5c91_0c03"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee01_3dcb_b07c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee01_3dcb_b07c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ee01_3dcb_b07c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ee01_3dcb_b07c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ee01_3dcb_b07c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ee01_3dcb_b07c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ee01_3dcb_b07c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ee01_3dcb_b07c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ee01_3dcb_b07c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_601f_8a36_e4fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_601f_8a36_e4fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_601f_8a36_e4fb/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_601f_8a36_e4fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_601f_8a36_e4fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_601f_8a36_e4fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_601f_8a36_e4fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_601f_8a36_e4fb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_601f_8a36_e4fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8276_f67e_34dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8276_f67e_34dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8276_f67e_34dd/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8276_f67e_34dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8276_f67e_34dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8276_f67e_34dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8276_f67e_34dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8276_f67e_34dd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8276_f67e_34dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83ba_45f4_7dea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83ba_45f4_7dea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_83ba_45f4_7dea/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_83ba_45f4_7dea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_83ba_45f4_7dea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_83ba_45f4_7dea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_83ba_45f4_7dea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_83ba_45f4_7dea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_83ba_45f4_7dea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c276_5f32_dbb5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c276_5f32_dbb5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c276_5f32_dbb5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c276_5f32_dbb5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c276_5f32_dbb5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c276_5f32_dbb5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c276_5f32_dbb5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c276_5f32_dbb5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c276_5f32_dbb5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1b3d_c60c_fe77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1b3d_c60c_fe77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1b3d_c60c_fe77/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1b3d_c60c_fe77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1b3d_c60c_fe77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1b3d_c60c_fe77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1b3d_c60c_fe77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1b3d_c60c_fe77&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1b3d_c60c_fe77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f02e_c027_4bdc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f02e_c027_4bdc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f02e_c027_4bdc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f02e_c027_4bdc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f02e_c027_4bdc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f02e_c027_4bdc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f02e_c027_4bdc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f02e_c027_4bdc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f02e_c027_4bdc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cea4_0898_3331", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cea4_0898_3331.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cea4_0898_3331/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cea4_0898_3331_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cea4_0898_3331_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cea4_0898_3331/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cea4_0898_3331.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cea4_0898_3331&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cea4_0898_3331"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_66df_ceb6_5f8a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_66df_ceb6_5f8a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_66df_ceb6_5f8a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_66df_ceb6_5f8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_66df_ceb6_5f8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_66df_ceb6_5f8a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_66df_ceb6_5f8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_66df_ceb6_5f8a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_66df_ceb6_5f8a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f882_bff3_15f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f882_bff3_15f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f882_bff3_15f5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f882_bff3_15f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f882_bff3_15f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f882_bff3_15f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f882_bff3_15f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f882_bff3_15f5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f882_bff3_15f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d48c_e4d3_ad7f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d48c_e4d3_ad7f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d48c_e4d3_ad7f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d48c_e4d3_ad7f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d48c_e4d3_ad7f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d48c_e4d3_ad7f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d48c_e4d3_ad7f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d48c_e4d3_ad7f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d48c_e4d3_ad7f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8153_38fa_02eb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8153_38fa_02eb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8153_38fa_02eb/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8153_38fa_02eb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8153_38fa_02eb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8153_38fa_02eb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8153_38fa_02eb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8153_38fa_02eb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8153_38fa_02eb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99f5_93fe_6bab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99f5_93fe_6bab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99f5_93fe_6bab/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99f5_93fe_6bab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99f5_93fe_6bab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99f5_93fe_6bab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99f5_93fe_6bab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99f5_93fe_6bab&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_99f5_93fe_6bab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1375_c36c_30d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1375_c36c_30d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1375_c36c_30d3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1375_c36c_30d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1375_c36c_30d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1375_c36c_30d3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1375_c36c_30d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1375_c36c_30d3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1375_c36c_30d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1dc_fe51_5077", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1dc_fe51_5077.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a1dc_fe51_5077/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a1dc_fe51_5077_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a1dc_fe51_5077_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a1dc_fe51_5077/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a1dc_fe51_5077.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a1dc_fe51_5077&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a1dc_fe51_5077"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c577_64a9_40a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c577_64a9_40a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c577_64a9_40a2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c577_64a9_40a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c577_64a9_40a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c577_64a9_40a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c577_64a9_40a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c577_64a9_40a2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c577_64a9_40a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cea6_bef6_9071", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cea6_bef6_9071.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cea6_bef6_9071/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cea6_bef6_9071_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cea6_bef6_9071_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cea6_bef6_9071/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cea6_bef6_9071.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cea6_bef6_9071&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cea6_bef6_9071"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4372_05bd_2574", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4372_05bd_2574.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4372_05bd_2574/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4372_05bd_2574_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4372_05bd_2574_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4372_05bd_2574/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4372_05bd_2574.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4372_05bd_2574&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4372_05bd_2574"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b65e_bcde_3c01", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b65e_bcde_3c01.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b65e_bcde_3c01/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b65e_bcde_3c01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b65e_bcde_3c01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b65e_bcde_3c01/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b65e_bcde_3c01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b65e_bcde_3c01&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b65e_bcde_3c01"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d86_4f8e_308c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d86_4f8e_308c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9d86_4f8e_308c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9d86_4f8e_308c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9d86_4f8e_308c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9d86_4f8e_308c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9d86_4f8e_308c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9d86_4f8e_308c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9d86_4f8e_308c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b3a_8891_aeb1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b3a_8891_aeb1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b3a_8891_aeb1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b3a_8891_aeb1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b3a_8891_aeb1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b3a_8891_aeb1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b3a_8891_aeb1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b3a_8891_aeb1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6b3a_8891_aeb1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef97_e93d_441d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef97_e93d_441d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ef97_e93d_441d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ef97_e93d_441d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ef97_e93d_441d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ef97_e93d_441d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ef97_e93d_441d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ef97_e93d_441d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ef97_e93d_441d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8991_b2b6_7658", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8991_b2b6_7658.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8991_b2b6_7658/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8991_b2b6_7658_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8991_b2b6_7658_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8991_b2b6_7658/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8991_b2b6_7658.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8991_b2b6_7658&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8991_b2b6_7658"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63ce_180f_2245", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63ce_180f_2245.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_63ce_180f_2245/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_63ce_180f_2245_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_63ce_180f_2245_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_63ce_180f_2245/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_63ce_180f_2245.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_63ce_180f_2245&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_63ce_180f_2245"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_69b0_5d4d_3c9e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_69b0_5d4d_3c9e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_69b0_5d4d_3c9e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_69b0_5d4d_3c9e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_69b0_5d4d_3c9e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_69b0_5d4d_3c9e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_69b0_5d4d_3c9e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_69b0_5d4d_3c9e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_69b0_5d4d_3c9e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a812_37f0_c9ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a812_37f0_c9ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a812_37f0_c9ec/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 1st Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a812_37f0_c9ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a812_37f0_c9ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a812_37f0_c9ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a812_37f0_c9ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a812_37f0_c9ec&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a812_37f0_c9ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0592_86a2_b610", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0592_86a2_b610.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0592_86a2_b610/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 1st Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0592_86a2_b610_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0592_86a2_b610_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0592_86a2_b610/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0592_86a2_b610.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0592_86a2_b610&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0592_86a2_b610"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f24d_8f69_1d94", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f24d_8f69_1d94.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f24d_8f69_1d94/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 1st Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f24d_8f69_1d94_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f24d_8f69_1d94_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f24d_8f69_1d94/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f24d_8f69_1d94.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f24d_8f69_1d94&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f24d_8f69_1d94"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0f6_2a3e_b851", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0f6_2a3e_b851.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d0f6_2a3e_b851/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 3rd Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d0f6_2a3e_b851_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d0f6_2a3e_b851_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d0f6_2a3e_b851/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d0f6_2a3e_b851.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d0f6_2a3e_b851&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d0f6_2a3e_b851"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ac7_7513_f273", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ac7_7513_f273.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0ac7_7513_f273/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 3rd Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0ac7_7513_f273_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0ac7_7513_f273_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0ac7_7513_f273/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0ac7_7513_f273.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0ac7_7513_f273&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0ac7_7513_f273"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8738_63e7_114b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8738_63e7_114b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8738_63e7_114b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 3rd Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8738_63e7_114b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8738_63e7_114b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8738_63e7_114b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8738_63e7_114b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8738_63e7_114b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8738_63e7_114b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ac94_c0f9_9b9e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ac94_c0f9_9b9e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ac94_c0f9_9b9e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 5th Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ac94_c0f9_9b9e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ac94_c0f9_9b9e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ac94_c0f9_9b9e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ac94_c0f9_9b9e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ac94_c0f9_9b9e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ac94_c0f9_9b9e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ba1_911b_50cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ba1_911b_50cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6ba1_911b_50cb/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 5th Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6ba1_911b_50cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6ba1_911b_50cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ba1_911b_50cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ba1_911b_50cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ba1_911b_50cb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6ba1_911b_50cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9e9_c422_96e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9e9_c422_96e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f9e9_c422_96e1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 5th Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f9e9_c422_96e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f9e9_c422_96e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f9e9_c422_96e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f9e9_c422_96e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f9e9_c422_96e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f9e9_c422_96e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3481_b404_b2cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3481_b404_b2cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3481_b404_b2cd/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Standard Deviation at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3481_b404_b2cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3481_b404_b2cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3481_b404_b2cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3481_b404_b2cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3481_b404_b2cd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3481_b404_b2cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3aae_7ac1_0f33", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3aae_7ac1_0f33.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3aae_7ac1_0f33/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Standard Deviation at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3aae_7ac1_0f33_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3aae_7ac1_0f33_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3aae_7ac1_0f33/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3aae_7ac1_0f33.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3aae_7ac1_0f33&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3aae_7ac1_0f33"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b3a0_76ec_062a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b3a0_76ec_062a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b3a0_76ec_062a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Standard Deviation at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b3a0_76ec_062a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b3a0_76ec_062a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b3a0_76ec_062a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b3a0_76ec_062a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b3a0_76ec_062a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b3a0_76ec_062a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50e9_a407_b5d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50e9_a407_b5d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_50e9_a407_b5d5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_50e9_a407_b5d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_50e9_a407_b5d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50e9_a407_b5d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50e9_a407_b5d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50e9_a407_b5d5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_50e9_a407_b5d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b79b_8963_5952", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b79b_8963_5952.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b79b_8963_5952/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b79b_8963_5952_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b79b_8963_5952_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b79b_8963_5952/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b79b_8963_5952.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b79b_8963_5952&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b79b_8963_5952"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1c4_ed6d_7723", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1c4_ed6d_7723.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f1c4_ed6d_7723/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f1c4_ed6d_7723_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f1c4_ed6d_7723_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f1c4_ed6d_7723/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f1c4_ed6d_7723.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f1c4_ed6d_7723&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f1c4_ed6d_7723"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc6a_81fe_7708", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc6a_81fe_7708.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc6a_81fe_7708/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc6a_81fe_7708_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc6a_81fe_7708_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc6a_81fe_7708/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc6a_81fe_7708.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc6a_81fe_7708&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cc6a_81fe_7708"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4420_0d5a_6257", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4420_0d5a_6257.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4420_0d5a_6257/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4420_0d5a_6257_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4420_0d5a_6257_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4420_0d5a_6257/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4420_0d5a_6257.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4420_0d5a_6257&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4420_0d5a_6257"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fa9_1bb7_f667", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fa9_1bb7_f667.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7fa9_1bb7_f667/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7fa9_1bb7_f667_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7fa9_1bb7_f667_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7fa9_1bb7_f667/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7fa9_1bb7_f667.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7fa9_1bb7_f667&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7fa9_1bb7_f667"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8e2_1f67_b496", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8e2_1f67_b496.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a8e2_1f67_b496/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a8e2_1f67_b496_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a8e2_1f67_b496_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a8e2_1f67_b496/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a8e2_1f67_b496.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a8e2_1f67_b496&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a8e2_1f67_b496"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a474_ed6c_d4bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a474_ed6c_d4bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a474_ed6c_d4bd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a474_ed6c_d4bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a474_ed6c_d4bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a474_ed6c_d4bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a474_ed6c_d4bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a474_ed6c_d4bd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a474_ed6c_d4bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af71_0516_a453", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af71_0516_a453.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_af71_0516_a453/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_af71_0516_a453_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_af71_0516_a453_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_af71_0516_a453/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_af71_0516_a453.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_af71_0516_a453&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_af71_0516_a453"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_557d_6756_a0f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_557d_6756_a0f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_557d_6756_a0f6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_557d_6756_a0f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_557d_6756_a0f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_557d_6756_a0f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_557d_6756_a0f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_557d_6756_a0f6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_557d_6756_a0f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d59_b94e_bdfc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d59_b94e_bdfc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2d59_b94e_bdfc/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2d59_b94e_bdfc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2d59_b94e_bdfc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d59_b94e_bdfc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d59_b94e_bdfc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d59_b94e_bdfc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2d59_b94e_bdfc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8cb_e756_7816", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8cb_e756_7816.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f8cb_e756_7816/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f8cb_e756_7816_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f8cb_e756_7816_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f8cb_e756_7816/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f8cb_e756_7816.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f8cb_e756_7816&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f8cb_e756_7816"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_adad_6ff8_bd55", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_adad_6ff8_bd55.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_adad_6ff8_bd55/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_adad_6ff8_bd55_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_adad_6ff8_bd55_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_adad_6ff8_bd55/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_adad_6ff8_bd55.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_adad_6ff8_bd55&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_adad_6ff8_bd55"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbb3_4b0c_0cb9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbb3_4b0c_0cb9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dbb3_4b0c_0cb9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dbb3_4b0c_0cb9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dbb3_4b0c_0cb9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dbb3_4b0c_0cb9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dbb3_4b0c_0cb9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dbb3_4b0c_0cb9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dbb3_4b0c_0cb9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd7e_c727_7008", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd7e_c727_7008.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fd7e_c727_7008/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fd7e_c727_7008_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fd7e_c727_7008_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fd7e_c727_7008/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fd7e_c727_7008.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fd7e_c727_7008&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fd7e_c727_7008"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_379f_3dee_3f34", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_379f_3dee_3f34.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_379f_3dee_3f34/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_379f_3dee_3f34_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_379f_3dee_3f34_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_379f_3dee_3f34/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_379f_3dee_3f34.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_379f_3dee_3f34&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_379f_3dee_3f34"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06ff_4b55_2d99", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06ff_4b55_2d99.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_06ff_4b55_2d99/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_06ff_4b55_2d99_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_06ff_4b55_2d99_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_06ff_4b55_2d99/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_06ff_4b55_2d99.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_06ff_4b55_2d99&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_06ff_4b55_2d99"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f7b_96b0_a1fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f7b_96b0_a1fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f7b_96b0_a1fa/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f7b_96b0_a1fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f7b_96b0_a1fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f7b_96b0_a1fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f7b_96b0_a1fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f7b_96b0_a1fa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9f7b_96b0_a1fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d94_2c3c_4434", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d94_2c3c_4434.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d94_2c3c_4434/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d94_2c3c_4434_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d94_2c3c_4434_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d94_2c3c_4434/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d94_2c3c_4434.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d94_2c3c_4434&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1d94_2c3c_4434"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1858_f2f1_202c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1858_f2f1_202c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1858_f2f1_202c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1858_f2f1_202c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1858_f2f1_202c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1858_f2f1_202c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1858_f2f1_202c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1858_f2f1_202c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1858_f2f1_202c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c29_2a03_28a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c29_2a03_28a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c29_2a03_28a2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c29_2a03_28a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c29_2a03_28a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c29_2a03_28a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c29_2a03_28a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c29_2a03_28a2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9c29_2a03_28a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9ce_7106_cde1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9ce_7106_cde1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b9ce_7106_cde1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b9ce_7106_cde1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b9ce_7106_cde1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b9ce_7106_cde1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b9ce_7106_cde1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b9ce_7106_cde1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b9ce_7106_cde1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2237_a84f_012e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2237_a84f_012e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2237_a84f_012e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2237_a84f_012e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2237_a84f_012e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2237_a84f_012e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2237_a84f_012e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2237_a84f_012e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2237_a84f_012e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5284_3c72_8344", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5284_3c72_8344.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5284_3c72_8344/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5284_3c72_8344_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5284_3c72_8344_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5284_3c72_8344/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5284_3c72_8344.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5284_3c72_8344&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5284_3c72_8344"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_036a_901b_82c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_036a_901b_82c9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_036a_901b_82c9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_036a_901b_82c9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_036a_901b_82c9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_036a_901b_82c9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_036a_901b_82c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_036a_901b_82c9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_036a_901b_82c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_47e4_b71d_8552", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_47e4_b71d_8552.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_47e4_b71d_8552/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_47e4_b71d_8552_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_47e4_b71d_8552_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_47e4_b71d_8552/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_47e4_b71d_8552.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_47e4_b71d_8552&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_47e4_b71d_8552"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f28f_970a_4c41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f28f_970a_4c41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f28f_970a_4c41/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f28f_970a_4c41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f28f_970a_4c41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f28f_970a_4c41/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f28f_970a_4c41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f28f_970a_4c41&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f28f_970a_4c41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9f6_e572_2d5c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9f6_e572_2d5c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e9f6_e572_2d5c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e9f6_e572_2d5c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e9f6_e572_2d5c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e9f6_e572_2d5c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e9f6_e572_2d5c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e9f6_e572_2d5c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e9f6_e572_2d5c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea11_88d5_c6c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea11_88d5_c6c9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ea11_88d5_c6c9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ea11_88d5_c6c9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ea11_88d5_c6c9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ea11_88d5_c6c9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ea11_88d5_c6c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ea11_88d5_c6c9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ea11_88d5_c6c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efb7_1da4_d99f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efb7_1da4_d99f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_efb7_1da4_d99f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_efb7_1da4_d99f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_efb7_1da4_d99f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_efb7_1da4_d99f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_efb7_1da4_d99f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_efb7_1da4_d99f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_efb7_1da4_d99f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b13d_bca9_98d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b13d_bca9_98d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b13d_bca9_98d4/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b13d_bca9_98d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b13d_bca9_98d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b13d_bca9_98d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b13d_bca9_98d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b13d_bca9_98d4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b13d_bca9_98d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a07_33c1_bf73", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a07_33c1_bf73.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1a07_33c1_bf73/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1a07_33c1_bf73_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1a07_33c1_bf73_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1a07_33c1_bf73/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1a07_33c1_bf73.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1a07_33c1_bf73&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1a07_33c1_bf73"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffff_bf03_2aea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffff_bf03_2aea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ffff_bf03_2aea/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ffff_bf03_2aea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ffff_bf03_2aea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ffff_bf03_2aea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ffff_bf03_2aea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ffff_bf03_2aea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ffff_bf03_2aea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e474_7810_1d95", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e474_7810_1d95.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e474_7810_1d95/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e474_7810_1d95_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e474_7810_1d95_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e474_7810_1d95/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e474_7810_1d95.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e474_7810_1d95&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e474_7810_1d95"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a06f_9578_7ff9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a06f_9578_7ff9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a06f_9578_7ff9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a06f_9578_7ff9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a06f_9578_7ff9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a06f_9578_7ff9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a06f_9578_7ff9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a06f_9578_7ff9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a06f_9578_7ff9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6f9_5a7b_ab21", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6f9_5a7b_ab21.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d6f9_5a7b_ab21/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d6f9_5a7b_ab21_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d6f9_5a7b_ab21_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d6f9_5a7b_ab21/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d6f9_5a7b_ab21.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d6f9_5a7b_ab21&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d6f9_5a7b_ab21"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e15_077a_6d16", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e15_077a_6d16.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6e15_077a_6d16/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6e15_077a_6d16_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6e15_077a_6d16_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6e15_077a_6d16/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6e15_077a_6d16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6e15_077a_6d16&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6e15_077a_6d16"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_369f_df27_69cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_369f_df27_69cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_369f_df27_69cb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_369f_df27_69cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_369f_df27_69cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_369f_df27_69cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_369f_df27_69cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_369f_df27_69cb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_369f_df27_69cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a96f_46d9_e620", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a96f_46d9_e620.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a96f_46d9_e620/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a96f_46d9_e620_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a96f_46d9_e620_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a96f_46d9_e620/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a96f_46d9_e620.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a96f_46d9_e620&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a96f_46d9_e620"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec1a_08e1_1d26", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec1a_08e1_1d26.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ec1a_08e1_1d26/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ec1a_08e1_1d26_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ec1a_08e1_1d26_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ec1a_08e1_1d26/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ec1a_08e1_1d26.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ec1a_08e1_1d26&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ec1a_08e1_1d26"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aecd_6721_a218", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aecd_6721_a218.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aecd_6721_a218/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aecd_6721_a218_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aecd_6721_a218_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aecd_6721_a218/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aecd_6721_a218.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aecd_6721_a218&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aecd_6721_a218"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d552_ed7c_cd68", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d552_ed7c_cd68.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d552_ed7c_cd68/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d552_ed7c_cd68_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d552_ed7c_cd68_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d552_ed7c_cd68/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d552_ed7c_cd68.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d552_ed7c_cd68&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d552_ed7c_cd68"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d511_7b8b_1125", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d511_7b8b_1125.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d511_7b8b_1125/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d511_7b8b_1125_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d511_7b8b_1125_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d511_7b8b_1125/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d511_7b8b_1125.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d511_7b8b_1125&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d511_7b8b_1125"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83be_ba8b_7d63", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83be_ba8b_7d63.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_83be_ba8b_7d63/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_83be_ba8b_7d63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_83be_ba8b_7d63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_83be_ba8b_7d63/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_83be_ba8b_7d63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_83be_ba8b_7d63&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_83be_ba8b_7d63"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f204_e8f5_949c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f204_e8f5_949c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f204_e8f5_949c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f204_e8f5_949c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f204_e8f5_949c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f204_e8f5_949c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f204_e8f5_949c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f204_e8f5_949c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f204_e8f5_949c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8660_8ebe_fb1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8660_8ebe_fb1e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8660_8ebe_fb1e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8660_8ebe_fb1e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8660_8ebe_fb1e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8660_8ebe_fb1e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8660_8ebe_fb1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8660_8ebe_fb1e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8660_8ebe_fb1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1049_89c1_4cee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1049_89c1_4cee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1049_89c1_4cee/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1049_89c1_4cee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1049_89c1_4cee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1049_89c1_4cee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1049_89c1_4cee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1049_89c1_4cee&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1049_89c1_4cee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abf3_7048_eba5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abf3_7048_eba5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_abf3_7048_eba5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_abf3_7048_eba5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_abf3_7048_eba5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_abf3_7048_eba5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_abf3_7048_eba5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_abf3_7048_eba5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_abf3_7048_eba5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_52cd_07ec_e4ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_52cd_07ec_e4ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_52cd_07ec_e4ae/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_52cd_07ec_e4ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_52cd_07ec_e4ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_52cd_07ec_e4ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_52cd_07ec_e4ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_52cd_07ec_e4ae&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_52cd_07ec_e4ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a802_78ce_f492", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a802_78ce_f492.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a802_78ce_f492/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a802_78ce_f492_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a802_78ce_f492_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a802_78ce_f492/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a802_78ce_f492.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a802_78ce_f492&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a802_78ce_f492"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b7b1_fcb6_4ce2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b7b1_fcb6_4ce2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b7b1_fcb6_4ce2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b7b1_fcb6_4ce2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b7b1_fcb6_4ce2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b7b1_fcb6_4ce2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b7b1_fcb6_4ce2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b7b1_fcb6_4ce2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b7b1_fcb6_4ce2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92fc_b02d_d5ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92fc_b02d_d5ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_92fc_b02d_d5ab/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_92fc_b02d_d5ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_92fc_b02d_d5ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_92fc_b02d_d5ab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_92fc_b02d_d5ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_92fc_b02d_d5ab&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_92fc_b02d_d5ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_253d_8fd6_8cf5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_253d_8fd6_8cf5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_253d_8fd6_8cf5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_253d_8fd6_8cf5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_253d_8fd6_8cf5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_253d_8fd6_8cf5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_253d_8fd6_8cf5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_253d_8fd6_8cf5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_253d_8fd6_8cf5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28ea_6fae_4734", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28ea_6fae_4734.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28ea_6fae_4734/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28ea_6fae_4734_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28ea_6fae_4734_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28ea_6fae_4734/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28ea_6fae_4734.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28ea_6fae_4734&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_28ea_6fae_4734"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b760_63e6_3c69", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b760_63e6_3c69.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b760_63e6_3c69/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b760_63e6_3c69_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b760_63e6_3c69_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b760_63e6_3c69/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b760_63e6_3c69.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b760_63e6_3c69&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b760_63e6_3c69"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14c1_8726_74f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14c1_8726_74f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_14c1_8726_74f2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_14c1_8726_74f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_14c1_8726_74f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_14c1_8726_74f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_14c1_8726_74f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_14c1_8726_74f2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_14c1_8726_74f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_33d7_5ee9_8820", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_33d7_5ee9_8820.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_33d7_5ee9_8820/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_33d7_5ee9_8820_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_33d7_5ee9_8820_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_33d7_5ee9_8820/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_33d7_5ee9_8820.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_33d7_5ee9_8820&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_33d7_5ee9_8820"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b39a_dbbe_b652", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b39a_dbbe_b652.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b39a_dbbe_b652/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b39a_dbbe_b652_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b39a_dbbe_b652_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b39a_dbbe_b652/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b39a_dbbe_b652.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b39a_dbbe_b652&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b39a_dbbe_b652"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28d9_87be_80b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28d9_87be_80b1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28d9_87be_80b1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28d9_87be_80b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28d9_87be_80b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28d9_87be_80b1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28d9_87be_80b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28d9_87be_80b1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_28d9_87be_80b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fafa_4a42_8d43", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fafa_4a42_8d43.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fafa_4a42_8d43/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fafa_4a42_8d43_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fafa_4a42_8d43_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fafa_4a42_8d43/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fafa_4a42_8d43.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fafa_4a42_8d43&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fafa_4a42_8d43"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e04a_b502_0836", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e04a_b502_0836.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e04a_b502_0836/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e04a_b502_0836_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e04a_b502_0836_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e04a_b502_0836/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e04a_b502_0836.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e04a_b502_0836&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e04a_b502_0836"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_831d_2706_fe83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_831d_2706_fe83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_831d_2706_fe83/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_831d_2706_fe83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_831d_2706_fe83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_831d_2706_fe83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_831d_2706_fe83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_831d_2706_fe83&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_831d_2706_fe83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0ea_4d7c_24df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0ea_4d7c_24df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e0ea_4d7c_24df/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e0ea_4d7c_24df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e0ea_4d7c_24df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e0ea_4d7c_24df/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e0ea_4d7c_24df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e0ea_4d7c_24df&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e0ea_4d7c_24df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d74c_2d60_9225", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d74c_2d60_9225.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d74c_2d60_9225/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d74c_2d60_9225_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d74c_2d60_9225_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d74c_2d60_9225/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d74c_2d60_9225.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d74c_2d60_9225&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d74c_2d60_9225"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a30e_af8d_6204", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a30e_af8d_6204.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a30e_af8d_6204/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a30e_af8d_6204_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a30e_af8d_6204_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a30e_af8d_6204/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a30e_af8d_6204.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a30e_af8d_6204&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a30e_af8d_6204"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a59f_17ae_f58e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a59f_17ae_f58e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a59f_17ae_f58e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a59f_17ae_f58e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a59f_17ae_f58e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a59f_17ae_f58e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a59f_17ae_f58e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a59f_17ae_f58e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a59f_17ae_f58e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1010_6bfa_3cd6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1010_6bfa_3cd6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1010_6bfa_3cd6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1010_6bfa_3cd6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1010_6bfa_3cd6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1010_6bfa_3cd6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1010_6bfa_3cd6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1010_6bfa_3cd6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1010_6bfa_3cd6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1655_e613_0b5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1655_e613_0b5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1655_e613_0b5f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1655_e613_0b5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1655_e613_0b5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1655_e613_0b5f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1655_e613_0b5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1655_e613_0b5f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1655_e613_0b5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fd0_6f45_48b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fd0_6f45_48b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1fd0_6f45_48b6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1fd0_6f45_48b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1fd0_6f45_48b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1fd0_6f45_48b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1fd0_6f45_48b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1fd0_6f45_48b6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1fd0_6f45_48b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba98_4535_4e2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba98_4535_4e2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ba98_4535_4e2a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ba98_4535_4e2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ba98_4535_4e2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ba98_4535_4e2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ba98_4535_4e2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ba98_4535_4e2a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ba98_4535_4e2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_014e_dc8b_6ad7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_014e_dc8b_6ad7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_014e_dc8b_6ad7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_014e_dc8b_6ad7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_014e_dc8b_6ad7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_014e_dc8b_6ad7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_014e_dc8b_6ad7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_014e_dc8b_6ad7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_014e_dc8b_6ad7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d54_2010_590a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d54_2010_590a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2d54_2010_590a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2d54_2010_590a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2d54_2010_590a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d54_2010_590a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d54_2010_590a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d54_2010_590a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2d54_2010_590a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a059_b20c_f60e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a059_b20c_f60e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a059_b20c_f60e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a059_b20c_f60e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a059_b20c_f60e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a059_b20c_f60e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a059_b20c_f60e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a059_b20c_f60e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a059_b20c_f60e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1142_a84b_74dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1142_a84b_74dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1142_a84b_74dc/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1142_a84b_74dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1142_a84b_74dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1142_a84b_74dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1142_a84b_74dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1142_a84b_74dc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1142_a84b_74dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5a3_5869_329d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5a3_5869_329d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5a3_5869_329d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5a3_5869_329d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5a3_5869_329d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5a3_5869_329d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5a3_5869_329d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5a3_5869_329d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b5a3_5869_329d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2ee_d5af_eebb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2ee_d5af_eebb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a2ee_d5af_eebb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a2ee_d5af_eebb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a2ee_d5af_eebb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a2ee_d5af_eebb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a2ee_d5af_eebb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a2ee_d5af_eebb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a2ee_d5af_eebb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2337_ccf0_324b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2337_ccf0_324b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2337_ccf0_324b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2337_ccf0_324b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2337_ccf0_324b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2337_ccf0_324b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2337_ccf0_324b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2337_ccf0_324b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2337_ccf0_324b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e80c_b793_8e68", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e80c_b793_8e68.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e80c_b793_8e68/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e80c_b793_8e68_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e80c_b793_8e68_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e80c_b793_8e68/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e80c_b793_8e68.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e80c_b793_8e68&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e80c_b793_8e68"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca08_23c5_cd5c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca08_23c5_cd5c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca08_23c5_cd5c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca08_23c5_cd5c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca08_23c5_cd5c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca08_23c5_cd5c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca08_23c5_cd5c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca08_23c5_cd5c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ca08_23c5_cd5c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1693_7933_61ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1693_7933_61ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1693_7933_61ac/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1693_7933_61ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1693_7933_61ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1693_7933_61ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1693_7933_61ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1693_7933_61ac&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1693_7933_61ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_32e7_9692_af05", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_32e7_9692_af05.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_32e7_9692_af05/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_32e7_9692_af05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_32e7_9692_af05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_32e7_9692_af05/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_32e7_9692_af05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_32e7_9692_af05&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_32e7_9692_af05"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18d5_6f1a_75a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18d5_6f1a_75a8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_18d5_6f1a_75a8/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_18d5_6f1a_75a8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_18d5_6f1a_75a8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_18d5_6f1a_75a8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_18d5_6f1a_75a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_18d5_6f1a_75a8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_18d5_6f1a_75a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18de_906d_2b0c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18de_906d_2b0c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_18de_906d_2b0c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_18de_906d_2b0c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_18de_906d_2b0c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_18de_906d_2b0c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_18de_906d_2b0c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_18de_906d_2b0c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_18de_906d_2b0c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea58_2e8b_d661", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea58_2e8b_d661.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ea58_2e8b_d661/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ea58_2e8b_d661_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ea58_2e8b_d661_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ea58_2e8b_d661/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ea58_2e8b_d661.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ea58_2e8b_d661&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ea58_2e8b_d661"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5102_fe74_6e92", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5102_fe74_6e92.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5102_fe74_6e92/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5102_fe74_6e92_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5102_fe74_6e92_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5102_fe74_6e92/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5102_fe74_6e92.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5102_fe74_6e92&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5102_fe74_6e92"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6028_43bb_dd51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6028_43bb_dd51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6028_43bb_dd51/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6028_43bb_dd51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6028_43bb_dd51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6028_43bb_dd51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6028_43bb_dd51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6028_43bb_dd51&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6028_43bb_dd51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8042_a97a_685c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8042_a97a_685c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8042_a97a_685c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8042_a97a_685c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8042_a97a_685c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8042_a97a_685c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8042_a97a_685c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8042_a97a_685c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8042_a97a_685c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a33_9ee4_513b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a33_9ee4_513b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a33_9ee4_513b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a33_9ee4_513b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a33_9ee4_513b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a33_9ee4_513b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a33_9ee4_513b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a33_9ee4_513b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5a33_9ee4_513b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b0b2_3d26_9728", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b0b2_3d26_9728.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b0b2_3d26_9728/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b0b2_3d26_9728_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b0b2_3d26_9728_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b0b2_3d26_9728/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b0b2_3d26_9728.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b0b2_3d26_9728&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b0b2_3d26_9728"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd6c_4d36_ca54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd6c_4d36_ca54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cd6c_4d36_ca54/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cd6c_4d36_ca54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cd6c_4d36_ca54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cd6c_4d36_ca54/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cd6c_4d36_ca54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cd6c_4d36_ca54&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cd6c_4d36_ca54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a26d_e407_3ab5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a26d_e407_3ab5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a26d_e407_3ab5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a26d_e407_3ab5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a26d_e407_3ab5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a26d_e407_3ab5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a26d_e407_3ab5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a26d_e407_3ab5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a26d_e407_3ab5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b84_1bc8_dfab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b84_1bc8_dfab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9b84_1bc8_dfab/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9b84_1bc8_dfab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9b84_1bc8_dfab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9b84_1bc8_dfab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9b84_1bc8_dfab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9b84_1bc8_dfab&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9b84_1bc8_dfab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9c5_5f35_d004", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9c5_5f35_d004.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c9c5_5f35_d004/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c9c5_5f35_d004_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c9c5_5f35_d004_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c9c5_5f35_d004/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c9c5_5f35_d004.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c9c5_5f35_d004&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c9c5_5f35_d004"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5da5_e053_f4a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5da5_e053_f4a8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5da5_e053_f4a8/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5da5_e053_f4a8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5da5_e053_f4a8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5da5_e053_f4a8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5da5_e053_f4a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5da5_e053_f4a8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5da5_e053_f4a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7227_9e08_e826", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7227_9e08_e826.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7227_9e08_e826/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7227_9e08_e826_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7227_9e08_e826_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7227_9e08_e826/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7227_9e08_e826.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7227_9e08_e826&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7227_9e08_e826"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca12_4e24_51e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca12_4e24_51e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca12_4e24_51e0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca12_4e24_51e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca12_4e24_51e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca12_4e24_51e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca12_4e24_51e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca12_4e24_51e0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ca12_4e24_51e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5aec_dfa8_267d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5aec_dfa8_267d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5aec_dfa8_267d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5aec_dfa8_267d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5aec_dfa8_267d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5aec_dfa8_267d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5aec_dfa8_267d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5aec_dfa8_267d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5aec_dfa8_267d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_997e_d16e_6bfa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_997e_d16e_6bfa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_997e_d16e_6bfa/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_997e_d16e_6bfa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_997e_d16e_6bfa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_997e_d16e_6bfa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_997e_d16e_6bfa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_997e_d16e_6bfa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_997e_d16e_6bfa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af9b_7e08_c851", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af9b_7e08_c851.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_af9b_7e08_c851/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_af9b_7e08_c851_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_af9b_7e08_c851_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_af9b_7e08_c851/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_af9b_7e08_c851.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_af9b_7e08_c851&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_af9b_7e08_c851"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7de5_57e1_1ec7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7de5_57e1_1ec7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7de5_57e1_1ec7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7de5_57e1_1ec7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7de5_57e1_1ec7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7de5_57e1_1ec7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7de5_57e1_1ec7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7de5_57e1_1ec7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7de5_57e1_1ec7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19d2_044c_7e93", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19d2_044c_7e93.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_19d2_044c_7e93/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_19d2_044c_7e93_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_19d2_044c_7e93_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_19d2_044c_7e93/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_19d2_044c_7e93.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_19d2_044c_7e93&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_19d2_044c_7e93"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3bfc_933a_72b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3bfc_933a_72b1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3bfc_933a_72b1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3bfc_933a_72b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3bfc_933a_72b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3bfc_933a_72b1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3bfc_933a_72b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3bfc_933a_72b1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3bfc_933a_72b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50af_ebf4_88dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50af_ebf4_88dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_50af_ebf4_88dc/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_50af_ebf4_88dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_50af_ebf4_88dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50af_ebf4_88dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50af_ebf4_88dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50af_ebf4_88dc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_50af_ebf4_88dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2102_244b_f0c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2102_244b_f0c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2102_244b_f0c4/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2102_244b_f0c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2102_244b_f0c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2102_244b_f0c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2102_244b_f0c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2102_244b_f0c4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2102_244b_f0c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95d6_5f5f_06e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95d6_5f5f_06e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_95d6_5f5f_06e0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_95d6_5f5f_06e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_95d6_5f5f_06e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_95d6_5f5f_06e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_95d6_5f5f_06e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_95d6_5f5f_06e0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_95d6_5f5f_06e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_923e_89dc_eaae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_923e_89dc_eaae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_923e_89dc_eaae/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_923e_89dc_eaae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_923e_89dc_eaae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_923e_89dc_eaae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_923e_89dc_eaae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_923e_89dc_eaae&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_923e_89dc_eaae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_838b_1be3_fde4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_838b_1be3_fde4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_838b_1be3_fde4/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_838b_1be3_fde4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_838b_1be3_fde4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_838b_1be3_fde4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_838b_1be3_fde4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_838b_1be3_fde4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_838b_1be3_fde4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9976_2d5f_ba91", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9976_2d5f_ba91.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9976_2d5f_ba91/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9976_2d5f_ba91_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9976_2d5f_ba91_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9976_2d5f_ba91/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9976_2d5f_ba91.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9976_2d5f_ba91&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9976_2d5f_ba91"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d01f_a665_76be", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d01f_a665_76be.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d01f_a665_76be/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d01f_a665_76be_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d01f_a665_76be_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d01f_a665_76be/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d01f_a665_76be.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d01f_a665_76be&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d01f_a665_76be"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e1d_7bef_3b7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e1d_7bef_3b7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e1d_7bef_3b7b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e1d_7bef_3b7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e1d_7bef_3b7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e1d_7bef_3b7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e1d_7bef_3b7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e1d_7bef_3b7b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3e1d_7bef_3b7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6aa0_03dc_f7d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6aa0_03dc_f7d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6aa0_03dc_f7d4/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6aa0_03dc_f7d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6aa0_03dc_f7d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6aa0_03dc_f7d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6aa0_03dc_f7d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6aa0_03dc_f7d4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6aa0_03dc_f7d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8ed_838f_3dfe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8ed_838f_3dfe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b8ed_838f_3dfe/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b8ed_838f_3dfe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b8ed_838f_3dfe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b8ed_838f_3dfe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b8ed_838f_3dfe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b8ed_838f_3dfe&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b8ed_838f_3dfe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7500_502c_0b53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7500_502c_0b53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7500_502c_0b53/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7500_502c_0b53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7500_502c_0b53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7500_502c_0b53/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7500_502c_0b53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7500_502c_0b53&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7500_502c_0b53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e491_74c7_7e46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e491_74c7_7e46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e491_74c7_7e46/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e491_74c7_7e46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e491_74c7_7e46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e491_74c7_7e46/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e491_74c7_7e46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e491_74c7_7e46&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e491_74c7_7e46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f0f_48d7_30fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f0f_48d7_30fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f0f_48d7_30fe/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f0f_48d7_30fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f0f_48d7_30fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f0f_48d7_30fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f0f_48d7_30fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f0f_48d7_30fe&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7f0f_48d7_30fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_adb8_e1bb_151e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_adb8_e1bb_151e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_adb8_e1bb_151e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_adb8_e1bb_151e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_adb8_e1bb_151e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_adb8_e1bb_151e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_adb8_e1bb_151e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_adb8_e1bb_151e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_adb8_e1bb_151e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddc2_8ccc_fa5c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddc2_8ccc_fa5c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ddc2_8ccc_fa5c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ddc2_8ccc_fa5c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ddc2_8ccc_fa5c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ddc2_8ccc_fa5c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ddc2_8ccc_fa5c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ddc2_8ccc_fa5c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ddc2_8ccc_fa5c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c72f_5419_4d60", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c72f_5419_4d60.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c72f_5419_4d60/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c72f_5419_4d60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c72f_5419_4d60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c72f_5419_4d60/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c72f_5419_4d60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c72f_5419_4d60&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c72f_5419_4d60"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cd5_3cda_a826", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cd5_3cda_a826.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8cd5_3cda_a826/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8cd5_3cda_a826_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8cd5_3cda_a826_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8cd5_3cda_a826/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8cd5_3cda_a826.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8cd5_3cda_a826&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8cd5_3cda_a826"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cd3_3208_b177", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cd3_3208_b177.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9cd3_3208_b177/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9cd3_3208_b177_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9cd3_3208_b177_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9cd3_3208_b177/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9cd3_3208_b177.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9cd3_3208_b177&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9cd3_3208_b177"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d44_ad7f_7082", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d44_ad7f_7082.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5d44_ad7f_7082/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5d44_ad7f_7082_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5d44_ad7f_7082_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5d44_ad7f_7082/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5d44_ad7f_7082.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5d44_ad7f_7082&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5d44_ad7f_7082"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f65_c029_b91a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f65_c029_b91a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f65_c029_b91a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f65_c029_b91a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f65_c029_b91a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f65_c029_b91a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f65_c029_b91a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f65_c029_b91a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1f65_c029_b91a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5af_6006_1a87", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5af_6006_1a87.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5af_6006_1a87/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5af_6006_1a87_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5af_6006_1a87_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5af_6006_1a87/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5af_6006_1a87.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5af_6006_1a87&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b5af_6006_1a87"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_411b_2cd8_ce24", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_411b_2cd8_ce24.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_411b_2cd8_ce24/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_411b_2cd8_ce24_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_411b_2cd8_ce24_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_411b_2cd8_ce24/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_411b_2cd8_ce24.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_411b_2cd8_ce24&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_411b_2cd8_ce24"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f02_3b5c_fdaf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f02_3b5c_fdaf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f02_3b5c_fdaf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f02_3b5c_fdaf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f02_3b5c_fdaf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f02_3b5c_fdaf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f02_3b5c_fdaf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f02_3b5c_fdaf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1f02_3b5c_fdaf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2523_40c0_461d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2523_40c0_461d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2523_40c0_461d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2523_40c0_461d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2523_40c0_461d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2523_40c0_461d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2523_40c0_461d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2523_40c0_461d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2523_40c0_461d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5076_1152_3f4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5076_1152_3f4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5076_1152_3f4d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5076_1152_3f4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5076_1152_3f4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5076_1152_3f4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5076_1152_3f4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5076_1152_3f4d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5076_1152_3f4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2978_a8eb_c3fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2978_a8eb_c3fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2978_a8eb_c3fb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2978_a8eb_c3fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2978_a8eb_c3fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2978_a8eb_c3fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2978_a8eb_c3fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2978_a8eb_c3fb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2978_a8eb_c3fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef45_8079_2cec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef45_8079_2cec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ef45_8079_2cec/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ef45_8079_2cec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ef45_8079_2cec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ef45_8079_2cec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ef45_8079_2cec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ef45_8079_2cec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ef45_8079_2cec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a43d_a522_792e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a43d_a522_792e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a43d_a522_792e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a43d_a522_792e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a43d_a522_792e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a43d_a522_792e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a43d_a522_792e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a43d_a522_792e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a43d_a522_792e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1261_d8b9_8907", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1261_d8b9_8907.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1261_d8b9_8907/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1261_d8b9_8907_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1261_d8b9_8907_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1261_d8b9_8907/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1261_d8b9_8907.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1261_d8b9_8907&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1261_d8b9_8907"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f98_6889_03c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f98_6889_03c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5f98_6889_03c0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5f98_6889_03c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5f98_6889_03c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5f98_6889_03c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5f98_6889_03c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5f98_6889_03c0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5f98_6889_03c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4972_c9ca_5567", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4972_c9ca_5567.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4972_c9ca_5567/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4972_c9ca_5567_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4972_c9ca_5567_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4972_c9ca_5567/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4972_c9ca_5567.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4972_c9ca_5567&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4972_c9ca_5567"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70a7_e719_8c88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70a7_e719_8c88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_70a7_e719_8c88/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_70a7_e719_8c88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_70a7_e719_8c88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_70a7_e719_8c88/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_70a7_e719_8c88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_70a7_e719_8c88&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_70a7_e719_8c88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed3c_b9c0_1c8d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed3c_b9c0_1c8d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ed3c_b9c0_1c8d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ed3c_b9c0_1c8d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ed3c_b9c0_1c8d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ed3c_b9c0_1c8d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ed3c_b9c0_1c8d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ed3c_b9c0_1c8d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ed3c_b9c0_1c8d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e69a_2ff4_0b55", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e69a_2ff4_0b55.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e69a_2ff4_0b55/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e69a_2ff4_0b55_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e69a_2ff4_0b55_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e69a_2ff4_0b55/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e69a_2ff4_0b55.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e69a_2ff4_0b55&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e69a_2ff4_0b55"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9868_e495_7890", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9868_e495_7890.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9868_e495_7890/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9868_e495_7890_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9868_e495_7890_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9868_e495_7890/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9868_e495_7890.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9868_e495_7890&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9868_e495_7890"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e26b_7708_1ef8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e26b_7708_1ef8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e26b_7708_1ef8/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e26b_7708_1ef8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e26b_7708_1ef8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e26b_7708_1ef8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e26b_7708_1ef8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e26b_7708_1ef8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e26b_7708_1ef8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a3d_27a2_8d18", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a3d_27a2_8d18.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4a3d_27a2_8d18/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4a3d_27a2_8d18_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4a3d_27a2_8d18_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4a3d_27a2_8d18/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4a3d_27a2_8d18.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4a3d_27a2_8d18&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4a3d_27a2_8d18"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1a6_73b4_b254", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1a6_73b4_b254.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b1a6_73b4_b254/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b1a6_73b4_b254_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b1a6_73b4_b254_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b1a6_73b4_b254/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b1a6_73b4_b254.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b1a6_73b4_b254&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b1a6_73b4_b254"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e571_562f_700b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e571_562f_700b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e571_562f_700b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e571_562f_700b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e571_562f_700b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e571_562f_700b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e571_562f_700b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e571_562f_700b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e571_562f_700b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8df4_8b20_4a1c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8df4_8b20_4a1c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8df4_8b20_4a1c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8df4_8b20_4a1c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8df4_8b20_4a1c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8df4_8b20_4a1c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8df4_8b20_4a1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8df4_8b20_4a1c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8df4_8b20_4a1c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fc3_9298_7109", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fc3_9298_7109.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4fc3_9298_7109/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4fc3_9298_7109_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4fc3_9298_7109_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4fc3_9298_7109/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4fc3_9298_7109.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4fc3_9298_7109&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4fc3_9298_7109"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fdf9_ad1f_8a2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fdf9_ad1f_8a2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fdf9_ad1f_8a2a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fdf9_ad1f_8a2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fdf9_ad1f_8a2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fdf9_ad1f_8a2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fdf9_ad1f_8a2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fdf9_ad1f_8a2a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fdf9_ad1f_8a2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_61e5_4527_296e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_61e5_4527_296e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_61e5_4527_296e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_61e5_4527_296e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_61e5_4527_296e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_61e5_4527_296e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_61e5_4527_296e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_61e5_4527_296e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_61e5_4527_296e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0480_e7e6_e76e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0480_e7e6_e76e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0480_e7e6_e76e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0480_e7e6_e76e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0480_e7e6_e76e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0480_e7e6_e76e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0480_e7e6_e76e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0480_e7e6_e76e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0480_e7e6_e76e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d703_d93a_bed5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d703_d93a_bed5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d703_d93a_bed5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d703_d93a_bed5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d703_d93a_bed5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d703_d93a_bed5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d703_d93a_bed5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d703_d93a_bed5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d703_d93a_bed5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a631_2591_3115", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a631_2591_3115.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a631_2591_3115/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a631_2591_3115_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a631_2591_3115_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a631_2591_3115/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a631_2591_3115.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a631_2591_3115&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a631_2591_3115"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b5e_e89b_f1b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b5e_e89b_f1b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4b5e_e89b_f1b5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4b5e_e89b_f1b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4b5e_e89b_f1b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4b5e_e89b_f1b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4b5e_e89b_f1b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4b5e_e89b_f1b5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4b5e_e89b_f1b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_760e_f339_53fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_760e_f339_53fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_760e_f339_53fd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_760e_f339_53fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_760e_f339_53fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_760e_f339_53fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_760e_f339_53fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_760e_f339_53fd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_760e_f339_53fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2af4_5820_0182", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2af4_5820_0182.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2af4_5820_0182/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2af4_5820_0182_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2af4_5820_0182_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2af4_5820_0182/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2af4_5820_0182.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2af4_5820_0182&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2af4_5820_0182"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3072_c7b7_efb4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3072_c7b7_efb4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3072_c7b7_efb4/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3072_c7b7_efb4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3072_c7b7_efb4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3072_c7b7_efb4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3072_c7b7_efb4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3072_c7b7_efb4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3072_c7b7_efb4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de8d_a199_3122", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de8d_a199_3122.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_de8d_a199_3122/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_de8d_a199_3122_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_de8d_a199_3122_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_de8d_a199_3122/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_de8d_a199_3122.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_de8d_a199_3122&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_de8d_a199_3122"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15ac_0098_9e52", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15ac_0098_9e52.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_15ac_0098_9e52/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_15ac_0098_9e52_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_15ac_0098_9e52_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_15ac_0098_9e52/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_15ac_0098_9e52.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_15ac_0098_9e52&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_15ac_0098_9e52"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b7c_eb2e_9454", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b7c_eb2e_9454.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9b7c_eb2e_9454/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9b7c_eb2e_9454_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9b7c_eb2e_9454_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9b7c_eb2e_9454/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9b7c_eb2e_9454.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9b7c_eb2e_9454&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9b7c_eb2e_9454"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff25_85f7_4cab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff25_85f7_4cab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff25_85f7_4cab/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff25_85f7_4cab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff25_85f7_4cab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff25_85f7_4cab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff25_85f7_4cab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff25_85f7_4cab&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ff25_85f7_4cab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7221_585f_abdb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7221_585f_abdb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7221_585f_abdb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7221_585f_abdb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7221_585f_abdb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7221_585f_abdb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7221_585f_abdb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7221_585f_abdb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7221_585f_abdb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_048d_fabd_99af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_048d_fabd_99af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_048d_fabd_99af/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_048d_fabd_99af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_048d_fabd_99af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_048d_fabd_99af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_048d_fabd_99af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_048d_fabd_99af&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_048d_fabd_99af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3580_d177_1f05", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3580_d177_1f05.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3580_d177_1f05/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3580_d177_1f05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3580_d177_1f05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3580_d177_1f05/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3580_d177_1f05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3580_d177_1f05&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3580_d177_1f05"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d04_2fdc_1327", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d04_2fdc_1327.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d04_2fdc_1327/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d04_2fdc_1327_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d04_2fdc_1327_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d04_2fdc_1327/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d04_2fdc_1327.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d04_2fdc_1327&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1d04_2fdc_1327"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2562_f1b5_6e23", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2562_f1b5_6e23.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2562_f1b5_6e23/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2562_f1b5_6e23_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2562_f1b5_6e23_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2562_f1b5_6e23/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2562_f1b5_6e23.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2562_f1b5_6e23&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2562_f1b5_6e23"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d923_11b9_9e3c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d923_11b9_9e3c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d923_11b9_9e3c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d923_11b9_9e3c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d923_11b9_9e3c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d923_11b9_9e3c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d923_11b9_9e3c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d923_11b9_9e3c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d923_11b9_9e3c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de11_a208_a5c2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de11_a208_a5c2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_de11_a208_a5c2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_de11_a208_a5c2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_de11_a208_a5c2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_de11_a208_a5c2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_de11_a208_a5c2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_de11_a208_a5c2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_de11_a208_a5c2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_767c_33fe_1a83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_767c_33fe_1a83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_767c_33fe_1a83/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_767c_33fe_1a83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_767c_33fe_1a83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_767c_33fe_1a83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_767c_33fe_1a83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_767c_33fe_1a83&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_767c_33fe_1a83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b458_abad_4743", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b458_abad_4743.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b458_abad_4743/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b458_abad_4743_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b458_abad_4743_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b458_abad_4743/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b458_abad_4743.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b458_abad_4743&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b458_abad_4743"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a5b_fe3b_0936", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a5b_fe3b_0936.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a5b_fe3b_0936/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a5b_fe3b_0936_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a5b_fe3b_0936_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a5b_fe3b_0936/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a5b_fe3b_0936.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a5b_fe3b_0936&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7a5b_fe3b_0936"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38db_499d_2d29", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38db_499d_2d29.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_38db_499d_2d29/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_38db_499d_2d29_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_38db_499d_2d29_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_38db_499d_2d29/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_38db_499d_2d29.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_38db_499d_2d29&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_38db_499d_2d29"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b7b_0bca_5d4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b7b_0bca_5d4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b7b_0bca_5d4d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b7b_0bca_5d4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b7b_0bca_5d4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b7b_0bca_5d4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b7b_0bca_5d4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b7b_0bca_5d4d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7b7b_0bca_5d4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eace_6e77_75c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eace_6e77_75c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eace_6e77_75c1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eace_6e77_75c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eace_6e77_75c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eace_6e77_75c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eace_6e77_75c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eace_6e77_75c1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_eace_6e77_75c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_61f5_7213_d8ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_61f5_7213_d8ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_61f5_7213_d8ac/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_61f5_7213_d8ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_61f5_7213_d8ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_61f5_7213_d8ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_61f5_7213_d8ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_61f5_7213_d8ac&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_61f5_7213_d8ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa01_8d82_b0d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa01_8d82_b0d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa01_8d82_b0d0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa01_8d82_b0d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa01_8d82_b0d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa01_8d82_b0d0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa01_8d82_b0d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa01_8d82_b0d0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aa01_8d82_b0d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d9a_eec8_a5b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d9a_eec8_a5b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d9a_eec8_a5b3/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d9a_eec8_a5b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d9a_eec8_a5b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d9a_eec8_a5b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d9a_eec8_a5b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d9a_eec8_a5b3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1d9a_eec8_a5b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6fb0_d9b9_b784", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6fb0_d9b9_b784.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6fb0_d9b9_b784/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6fb0_d9b9_b784_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6fb0_d9b9_b784_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6fb0_d9b9_b784/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6fb0_d9b9_b784.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6fb0_d9b9_b784&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6fb0_d9b9_b784"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf99_a802_8a2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf99_a802_8a2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf99_a802_8a2f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf99_a802_8a2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf99_a802_8a2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf99_a802_8a2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf99_a802_8a2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf99_a802_8a2f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cf99_a802_8a2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_32f9_83b2_687d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_32f9_83b2_687d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_32f9_83b2_687d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_32f9_83b2_687d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_32f9_83b2_687d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_32f9_83b2_687d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_32f9_83b2_687d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_32f9_83b2_687d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_32f9_83b2_687d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cbe_f52a_25f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cbe_f52a_25f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2cbe_f52a_25f3/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2cbe_f52a_25f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2cbe_f52a_25f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2cbe_f52a_25f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2cbe_f52a_25f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2cbe_f52a_25f3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2cbe_f52a_25f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4de_0571_581c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4de_0571_581c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e4de_0571_581c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e4de_0571_581c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e4de_0571_581c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e4de_0571_581c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e4de_0571_581c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e4de_0571_581c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e4de_0571_581c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd11_6233_7287", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd11_6233_7287.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cd11_6233_7287/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cd11_6233_7287_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cd11_6233_7287_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cd11_6233_7287/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cd11_6233_7287.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cd11_6233_7287&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cd11_6233_7287"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e20_f8d3_0fba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e20_f8d3_0fba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5e20_f8d3_0fba/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5e20_f8d3_0fba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5e20_f8d3_0fba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5e20_f8d3_0fba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5e20_f8d3_0fba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5e20_f8d3_0fba&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5e20_f8d3_0fba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a89d_6eef_3057", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a89d_6eef_3057.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a89d_6eef_3057/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a89d_6eef_3057_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a89d_6eef_3057_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a89d_6eef_3057/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a89d_6eef_3057.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a89d_6eef_3057&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a89d_6eef_3057"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee7c_599d_0047", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee7c_599d_0047.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ee7c_599d_0047/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ee7c_599d_0047_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ee7c_599d_0047_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ee7c_599d_0047/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ee7c_599d_0047.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ee7c_599d_0047&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ee7c_599d_0047"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf44_0c3f_4c1a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf44_0c3f_4c1a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf44_0c3f_4c1a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf44_0c3f_4c1a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf44_0c3f_4c1a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf44_0c3f_4c1a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf44_0c3f_4c1a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf44_0c3f_4c1a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bf44_0c3f_4c1a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f612_ea67_17e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f612_ea67_17e4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f612_ea67_17e4/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f612_ea67_17e4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f612_ea67_17e4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f612_ea67_17e4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f612_ea67_17e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f612_ea67_17e4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f612_ea67_17e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a72_e971_14ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a72_e971_14ba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a72_e971_14ba/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a72_e971_14ba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a72_e971_14ba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a72_e971_14ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a72_e971_14ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a72_e971_14ba&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3a72_e971_14ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81b8_0a11_3fc6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81b8_0a11_3fc6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_81b8_0a11_3fc6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_81b8_0a11_3fc6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_81b8_0a11_3fc6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_81b8_0a11_3fc6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_81b8_0a11_3fc6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_81b8_0a11_3fc6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_81b8_0a11_3fc6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f42_7c0f_639f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f42_7c0f_639f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f42_7c0f_639f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f42_7c0f_639f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f42_7c0f_639f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f42_7c0f_639f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f42_7c0f_639f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f42_7c0f_639f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8f42_7c0f_639f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8614_4edf_ff5d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8614_4edf_ff5d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8614_4edf_ff5d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8614_4edf_ff5d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8614_4edf_ff5d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8614_4edf_ff5d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8614_4edf_ff5d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8614_4edf_ff5d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8614_4edf_ff5d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c01_681b_0deb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c01_681b_0deb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1c01_681b_0deb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1c01_681b_0deb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1c01_681b_0deb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1c01_681b_0deb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1c01_681b_0deb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1c01_681b_0deb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1c01_681b_0deb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_702e_4570_5eda", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_702e_4570_5eda.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_702e_4570_5eda/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_702e_4570_5eda_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_702e_4570_5eda_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_702e_4570_5eda/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_702e_4570_5eda.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_702e_4570_5eda&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_702e_4570_5eda"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_236c_066d_6fe9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_236c_066d_6fe9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_236c_066d_6fe9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_236c_066d_6fe9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_236c_066d_6fe9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_236c_066d_6fe9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_236c_066d_6fe9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_236c_066d_6fe9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_236c_066d_6fe9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d16_d819_edf1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d16_d819_edf1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d16_d819_edf1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d16_d819_edf1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d16_d819_edf1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d16_d819_edf1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d16_d819_edf1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d16_d819_edf1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d16_d819_edf1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e67_07c4_c49e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e67_07c4_c49e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6e67_07c4_c49e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6e67_07c4_c49e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6e67_07c4_c49e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6e67_07c4_c49e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6e67_07c4_c49e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6e67_07c4_c49e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6e67_07c4_c49e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a97c_373d_43e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a97c_373d_43e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a97c_373d_43e2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a97c_373d_43e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a97c_373d_43e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a97c_373d_43e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a97c_373d_43e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a97c_373d_43e2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a97c_373d_43e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_865d_062a_c376", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_865d_062a_c376.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_865d_062a_c376/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_865d_062a_c376_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_865d_062a_c376_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_865d_062a_c376/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_865d_062a_c376.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_865d_062a_c376&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_865d_062a_c376"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8b5_a7c9_b2e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8b5_a7c9_b2e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b8b5_a7c9_b2e1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b8b5_a7c9_b2e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b8b5_a7c9_b2e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b8b5_a7c9_b2e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b8b5_a7c9_b2e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b8b5_a7c9_b2e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b8b5_a7c9_b2e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d33f_f8cb_32f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d33f_f8cb_32f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d33f_f8cb_32f1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d33f_f8cb_32f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d33f_f8cb_32f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d33f_f8cb_32f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d33f_f8cb_32f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d33f_f8cb_32f1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d33f_f8cb_32f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06e0_0214_2f2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06e0_0214_2f2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_06e0_0214_2f2a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_06e0_0214_2f2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_06e0_0214_2f2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_06e0_0214_2f2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_06e0_0214_2f2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_06e0_0214_2f2a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_06e0_0214_2f2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_459c_6441_dede", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_459c_6441_dede.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_459c_6441_dede/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_459c_6441_dede_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_459c_6441_dede_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_459c_6441_dede/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_459c_6441_dede.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_459c_6441_dede&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_459c_6441_dede"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b824_efc4_f32d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b824_efc4_f32d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b824_efc4_f32d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b824_efc4_f32d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b824_efc4_f32d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b824_efc4_f32d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b824_efc4_f32d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b824_efc4_f32d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b824_efc4_f32d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b13c_30e6_a0ad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b13c_30e6_a0ad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b13c_30e6_a0ad/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b13c_30e6_a0ad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b13c_30e6_a0ad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b13c_30e6_a0ad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b13c_30e6_a0ad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b13c_30e6_a0ad&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b13c_30e6_a0ad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b920_faa6_37b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b920_faa6_37b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b920_faa6_37b5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b920_faa6_37b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b920_faa6_37b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b920_faa6_37b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b920_faa6_37b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b920_faa6_37b5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b920_faa6_37b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b09_895b_ccf9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b09_895b_ccf9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0b09_895b_ccf9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0b09_895b_ccf9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0b09_895b_ccf9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0b09_895b_ccf9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0b09_895b_ccf9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0b09_895b_ccf9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0b09_895b_ccf9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a630_e574_07e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a630_e574_07e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a630_e574_07e5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a630_e574_07e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a630_e574_07e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a630_e574_07e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a630_e574_07e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a630_e574_07e5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a630_e574_07e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7f9_8cf7_f5ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7f9_8cf7_f5ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c7f9_8cf7_f5ea/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c7f9_8cf7_f5ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c7f9_8cf7_f5ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c7f9_8cf7_f5ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c7f9_8cf7_f5ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c7f9_8cf7_f5ea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c7f9_8cf7_f5ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79eb_111c_53ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79eb_111c_53ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_79eb_111c_53ab/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_79eb_111c_53ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_79eb_111c_53ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_79eb_111c_53ab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_79eb_111c_53ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_79eb_111c_53ab&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_79eb_111c_53ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fb6_5d87_3c07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fb6_5d87_3c07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4fb6_5d87_3c07/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4fb6_5d87_3c07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4fb6_5d87_3c07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4fb6_5d87_3c07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4fb6_5d87_3c07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4fb6_5d87_3c07&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4fb6_5d87_3c07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a52f_de6a_f9b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a52f_de6a_f9b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a52f_de6a_f9b0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a52f_de6a_f9b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a52f_de6a_f9b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a52f_de6a_f9b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a52f_de6a_f9b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a52f_de6a_f9b0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a52f_de6a_f9b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_447f_fd6a_9c40", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_447f_fd6a_9c40.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_447f_fd6a_9c40/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_447f_fd6a_9c40_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_447f_fd6a_9c40_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_447f_fd6a_9c40/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_447f_fd6a_9c40.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_447f_fd6a_9c40&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_447f_fd6a_9c40"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfcd_732a_fa54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfcd_732a_fa54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cfcd_732a_fa54/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cfcd_732a_fa54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cfcd_732a_fa54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cfcd_732a_fa54/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cfcd_732a_fa54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cfcd_732a_fa54&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cfcd_732a_fa54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e03c_ecde_6ddf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e03c_ecde_6ddf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e03c_ecde_6ddf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e03c_ecde_6ddf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e03c_ecde_6ddf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e03c_ecde_6ddf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e03c_ecde_6ddf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e03c_ecde_6ddf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e03c_ecde_6ddf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0794_d4e8_a217", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0794_d4e8_a217.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0794_d4e8_a217/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0794_d4e8_a217_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0794_d4e8_a217_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0794_d4e8_a217/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0794_d4e8_a217.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0794_d4e8_a217&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0794_d4e8_a217"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c88_4ee5_6f39", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c88_4ee5_6f39.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c88_4ee5_6f39/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c88_4ee5_6f39_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c88_4ee5_6f39_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c88_4ee5_6f39/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c88_4ee5_6f39.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c88_4ee5_6f39&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0c88_4ee5_6f39"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2f3_cbb3_3b11", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2f3_cbb3_3b11.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a2f3_cbb3_3b11/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a2f3_cbb3_3b11_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a2f3_cbb3_3b11_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a2f3_cbb3_3b11/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a2f3_cbb3_3b11.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a2f3_cbb3_3b11&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a2f3_cbb3_3b11"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b8d_eb46_021e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b8d_eb46_021e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2b8d_eb46_021e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2b8d_eb46_021e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2b8d_eb46_021e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2b8d_eb46_021e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2b8d_eb46_021e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2b8d_eb46_021e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2b8d_eb46_021e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e9a_3a03_31c2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e9a_3a03_31c2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e9a_3a03_31c2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e9a_3a03_31c2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e9a_3a03_31c2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e9a_3a03_31c2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e9a_3a03_31c2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e9a_3a03_31c2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8e9a_3a03_31c2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8a1_5719_b476", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8a1_5719_b476.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f8a1_5719_b476/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f8a1_5719_b476_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f8a1_5719_b476_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f8a1_5719_b476/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f8a1_5719_b476.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f8a1_5719_b476&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f8a1_5719_b476"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f63_4fc9_a96f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f63_4fc9_a96f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5f63_4fc9_a96f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5f63_4fc9_a96f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5f63_4fc9_a96f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5f63_4fc9_a96f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5f63_4fc9_a96f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5f63_4fc9_a96f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5f63_4fc9_a96f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e27_6311_2e75", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e27_6311_2e75.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4e27_6311_2e75/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4e27_6311_2e75_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4e27_6311_2e75_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4e27_6311_2e75/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4e27_6311_2e75.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4e27_6311_2e75&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4e27_6311_2e75"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1d7_6bc1_ced7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1d7_6bc1_ced7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f1d7_6bc1_ced7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f1d7_6bc1_ced7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f1d7_6bc1_ced7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f1d7_6bc1_ced7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f1d7_6bc1_ced7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f1d7_6bc1_ced7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f1d7_6bc1_ced7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_279f_fd83_043e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_279f_fd83_043e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_279f_fd83_043e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_279f_fd83_043e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_279f_fd83_043e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_279f_fd83_043e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_279f_fd83_043e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_279f_fd83_043e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_279f_fd83_043e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c88_a0a9_af8a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c88_a0a9_af8a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1c88_a0a9_af8a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1c88_a0a9_af8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1c88_a0a9_af8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1c88_a0a9_af8a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1c88_a0a9_af8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1c88_a0a9_af8a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1c88_a0a9_af8a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a856_19db_a5d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a856_19db_a5d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a856_19db_a5d5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a856_19db_a5d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a856_19db_a5d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a856_19db_a5d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a856_19db_a5d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a856_19db_a5d5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a856_19db_a5d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c3d_2643_ab64", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c3d_2643_ab64.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2c3d_2643_ab64/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2c3d_2643_ab64_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2c3d_2643_ab64_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2c3d_2643_ab64/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2c3d_2643_ab64.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2c3d_2643_ab64&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2c3d_2643_ab64"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53ae_ea38_f082", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53ae_ea38_f082.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_53ae_ea38_f082/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_53ae_ea38_f082_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_53ae_ea38_f082_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_53ae_ea38_f082/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_53ae_ea38_f082.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_53ae_ea38_f082&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_53ae_ea38_f082"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_daa2_4cb4_a951", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_daa2_4cb4_a951.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_daa2_4cb4_a951/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_daa2_4cb4_a951_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_daa2_4cb4_a951_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_daa2_4cb4_a951/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_daa2_4cb4_a951.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_daa2_4cb4_a951&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_daa2_4cb4_a951"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4e5_f8cc_dd71", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4e5_f8cc_dd71.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d4e5_f8cc_dd71/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d4e5_f8cc_dd71_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d4e5_f8cc_dd71_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d4e5_f8cc_dd71/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d4e5_f8cc_dd71.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d4e5_f8cc_dd71&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d4e5_f8cc_dd71"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_76aa_9851_0375", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_76aa_9851_0375.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_76aa_9851_0375/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_76aa_9851_0375_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_76aa_9851_0375_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_76aa_9851_0375/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_76aa_9851_0375.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_76aa_9851_0375&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_76aa_9851_0375"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8790_8df1_4d91", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8790_8df1_4d91.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8790_8df1_4d91/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8790_8df1_4d91_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8790_8df1_4d91_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8790_8df1_4d91/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8790_8df1_4d91.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8790_8df1_4d91&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8790_8df1_4d91"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2e4_2f79_0087", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2e4_2f79_0087.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a2e4_2f79_0087/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a2e4_2f79_0087_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a2e4_2f79_0087_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a2e4_2f79_0087/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a2e4_2f79_0087.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a2e4_2f79_0087&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a2e4_2f79_0087"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_567b_3212_f59f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_567b_3212_f59f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_567b_3212_f59f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_567b_3212_f59f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_567b_3212_f59f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_567b_3212_f59f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_567b_3212_f59f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_567b_3212_f59f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_567b_3212_f59f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f86_1140_d23f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f86_1140_d23f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6f86_1140_d23f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6f86_1140_d23f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6f86_1140_d23f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6f86_1140_d23f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6f86_1140_d23f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6f86_1140_d23f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6f86_1140_d23f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de0b_a640_84ad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de0b_a640_84ad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_de0b_a640_84ad/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_de0b_a640_84ad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_de0b_a640_84ad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_de0b_a640_84ad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_de0b_a640_84ad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_de0b_a640_84ad&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_de0b_a640_84ad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2124_cef3_09b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2124_cef3_09b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2124_cef3_09b9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2124_cef3_09b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2124_cef3_09b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2124_cef3_09b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2124_cef3_09b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2124_cef3_09b9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2124_cef3_09b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfcb_0f58_7234", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfcb_0f58_7234.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dfcb_0f58_7234/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dfcb_0f58_7234_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dfcb_0f58_7234_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dfcb_0f58_7234/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dfcb_0f58_7234.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dfcb_0f58_7234&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dfcb_0f58_7234"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1291_6e64_7d96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1291_6e64_7d96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1291_6e64_7d96/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1291_6e64_7d96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1291_6e64_7d96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1291_6e64_7d96/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1291_6e64_7d96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1291_6e64_7d96&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1291_6e64_7d96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ded_bf5d_71ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ded_bf5d_71ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2ded_bf5d_71ec/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2ded_bf5d_71ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2ded_bf5d_71ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2ded_bf5d_71ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2ded_bf5d_71ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2ded_bf5d_71ec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2ded_bf5d_71ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eec7_9f31_21bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eec7_9f31_21bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eec7_9f31_21bb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eec7_9f31_21bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eec7_9f31_21bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eec7_9f31_21bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eec7_9f31_21bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eec7_9f31_21bb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eec7_9f31_21bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0244_55ee_78c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0244_55ee_78c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0244_55ee_78c6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0244_55ee_78c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0244_55ee_78c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0244_55ee_78c6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0244_55ee_78c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0244_55ee_78c6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0244_55ee_78c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_606e_525e_bd82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_606e_525e_bd82.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_606e_525e_bd82/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_606e_525e_bd82_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_606e_525e_bd82_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_606e_525e_bd82/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_606e_525e_bd82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_606e_525e_bd82&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_606e_525e_bd82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d693_4378_cb6a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d693_4378_cb6a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d693_4378_cb6a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d693_4378_cb6a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d693_4378_cb6a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d693_4378_cb6a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d693_4378_cb6a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d693_4378_cb6a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d693_4378_cb6a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6cb8_e4df_3172", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6cb8_e4df_3172.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6cb8_e4df_3172/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6cb8_e4df_3172_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6cb8_e4df_3172_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6cb8_e4df_3172/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6cb8_e4df_3172.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6cb8_e4df_3172&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6cb8_e4df_3172"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_719e_77c6_d92d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_719e_77c6_d92d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_719e_77c6_d92d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_719e_77c6_d92d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_719e_77c6_d92d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_719e_77c6_d92d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_719e_77c6_d92d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_719e_77c6_d92d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_719e_77c6_d92d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6c2_428b_cdd1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6c2_428b_cdd1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e6c2_428b_cdd1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e6c2_428b_cdd1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e6c2_428b_cdd1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e6c2_428b_cdd1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e6c2_428b_cdd1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e6c2_428b_cdd1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e6c2_428b_cdd1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cafc_26cb_5d3d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cafc_26cb_5d3d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cafc_26cb_5d3d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cafc_26cb_5d3d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cafc_26cb_5d3d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cafc_26cb_5d3d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cafc_26cb_5d3d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cafc_26cb_5d3d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cafc_26cb_5d3d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aab1_efc4_8211", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aab1_efc4_8211.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aab1_efc4_8211/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aab1_efc4_8211_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aab1_efc4_8211_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aab1_efc4_8211/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aab1_efc4_8211.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aab1_efc4_8211&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aab1_efc4_8211"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b470_8154_a7e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b470_8154_a7e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b470_8154_a7e6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b470_8154_a7e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b470_8154_a7e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b470_8154_a7e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b470_8154_a7e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b470_8154_a7e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b470_8154_a7e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fb7_7485_4215", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fb7_7485_4215.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1fb7_7485_4215/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1fb7_7485_4215_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1fb7_7485_4215_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1fb7_7485_4215/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1fb7_7485_4215.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1fb7_7485_4215&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1fb7_7485_4215"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edfb_4ebf_3d1f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edfb_4ebf_3d1f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_edfb_4ebf_3d1f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_edfb_4ebf_3d1f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_edfb_4ebf_3d1f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_edfb_4ebf_3d1f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_edfb_4ebf_3d1f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_edfb_4ebf_3d1f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_edfb_4ebf_3d1f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fec8_fb76_70f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fec8_fb76_70f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fec8_fb76_70f6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fec8_fb76_70f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fec8_fb76_70f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fec8_fb76_70f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fec8_fb76_70f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fec8_fb76_70f6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fec8_fb76_70f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1ce_5e6e_95ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1ce_5e6e_95ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a1ce_5e6e_95ca/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a1ce_5e6e_95ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a1ce_5e6e_95ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a1ce_5e6e_95ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a1ce_5e6e_95ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a1ce_5e6e_95ca&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a1ce_5e6e_95ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a87_0253_c246", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a87_0253_c246.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a87_0253_c246/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a87_0253_c246_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a87_0253_c246_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a87_0253_c246/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a87_0253_c246.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a87_0253_c246&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7a87_0253_c246"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfd9_2609_61dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfd9_2609_61dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dfd9_2609_61dd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dfd9_2609_61dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dfd9_2609_61dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dfd9_2609_61dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dfd9_2609_61dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dfd9_2609_61dd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dfd9_2609_61dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f3f_d4c9_916b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f3f_d4c9_916b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f3f_d4c9_916b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f3f_d4c9_916b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f3f_d4c9_916b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f3f_d4c9_916b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f3f_d4c9_916b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f3f_d4c9_916b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1f3f_d4c9_916b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_75d3_ed6c_a3bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_75d3_ed6c_a3bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_75d3_ed6c_a3bd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_75d3_ed6c_a3bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_75d3_ed6c_a3bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_75d3_ed6c_a3bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_75d3_ed6c_a3bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_75d3_ed6c_a3bd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_75d3_ed6c_a3bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ea6_2e04_eb96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ea6_2e04_eb96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ea6_2e04_eb96/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ea6_2e04_eb96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ea6_2e04_eb96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ea6_2e04_eb96/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ea6_2e04_eb96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ea6_2e04_eb96&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8ea6_2e04_eb96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_27a3_efea_f853", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_27a3_efea_f853.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_27a3_efea_f853/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_27a3_efea_f853_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_27a3_efea_f853_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_27a3_efea_f853/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_27a3_efea_f853.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_27a3_efea_f853&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_27a3_efea_f853"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41d0_145f_337e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41d0_145f_337e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_41d0_145f_337e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_41d0_145f_337e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_41d0_145f_337e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_41d0_145f_337e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_41d0_145f_337e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_41d0_145f_337e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_41d0_145f_337e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dba_bfe0_cd36", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dba_bfe0_cd36.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8dba_bfe0_cd36/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8dba_bfe0_cd36_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8dba_bfe0_cd36_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8dba_bfe0_cd36/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8dba_bfe0_cd36.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8dba_bfe0_cd36&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8dba_bfe0_cd36"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38be_a824_971f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38be_a824_971f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_38be_a824_971f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_38be_a824_971f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_38be_a824_971f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_38be_a824_971f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_38be_a824_971f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_38be_a824_971f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_38be_a824_971f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2724_80cd_7286", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2724_80cd_7286.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2724_80cd_7286/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2724_80cd_7286_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2724_80cd_7286_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2724_80cd_7286/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2724_80cd_7286.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2724_80cd_7286&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2724_80cd_7286"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99c0_b304_46be", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99c0_b304_46be.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99c0_b304_46be/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99c0_b304_46be_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99c0_b304_46be_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99c0_b304_46be/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99c0_b304_46be.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99c0_b304_46be&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_99c0_b304_46be"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8acf_e42a_3bcd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8acf_e42a_3bcd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8acf_e42a_3bcd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8acf_e42a_3bcd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8acf_e42a_3bcd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8acf_e42a_3bcd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8acf_e42a_3bcd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8acf_e42a_3bcd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8acf_e42a_3bcd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5477_2c33_7b46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5477_2c33_7b46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5477_2c33_7b46/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5477_2c33_7b46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5477_2c33_7b46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5477_2c33_7b46/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5477_2c33_7b46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5477_2c33_7b46&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5477_2c33_7b46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f242_afc4_fceb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f242_afc4_fceb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f242_afc4_fceb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f242_afc4_fceb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f242_afc4_fceb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f242_afc4_fceb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f242_afc4_fceb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f242_afc4_fceb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f242_afc4_fceb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e122_ee99_927a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e122_ee99_927a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e122_ee99_927a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e122_ee99_927a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e122_ee99_927a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e122_ee99_927a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e122_ee99_927a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e122_ee99_927a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e122_ee99_927a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1b0a_1b52_7ce3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1b0a_1b52_7ce3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1b0a_1b52_7ce3/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1b0a_1b52_7ce3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1b0a_1b52_7ce3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1b0a_1b52_7ce3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1b0a_1b52_7ce3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1b0a_1b52_7ce3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1b0a_1b52_7ce3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fec_e828_a030", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fec_e828_a030.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1fec_e828_a030/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1fec_e828_a030_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1fec_e828_a030_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1fec_e828_a030/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1fec_e828_a030.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1fec_e828_a030&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1fec_e828_a030"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06b1_866c_9f84", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06b1_866c_9f84.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_06b1_866c_9f84/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_06b1_866c_9f84_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_06b1_866c_9f84_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_06b1_866c_9f84/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_06b1_866c_9f84.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_06b1_866c_9f84&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_06b1_866c_9f84"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c66c_0383_3e56", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c66c_0383_3e56.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c66c_0383_3e56/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c66c_0383_3e56_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c66c_0383_3e56_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c66c_0383_3e56/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c66c_0383_3e56.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c66c_0383_3e56&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c66c_0383_3e56"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4cf_9abf_b834", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4cf_9abf_b834.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e4cf_9abf_b834/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e4cf_9abf_b834_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e4cf_9abf_b834_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e4cf_9abf_b834/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e4cf_9abf_b834.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e4cf_9abf_b834&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e4cf_9abf_b834"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_40b7_75b9_548e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_40b7_75b9_548e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_40b7_75b9_548e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_40b7_75b9_548e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_40b7_75b9_548e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_40b7_75b9_548e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_40b7_75b9_548e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_40b7_75b9_548e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_40b7_75b9_548e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_62b6_105d_0f06", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_62b6_105d_0f06.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_62b6_105d_0f06/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_62b6_105d_0f06_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_62b6_105d_0f06_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_62b6_105d_0f06/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_62b6_105d_0f06.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_62b6_105d_0f06&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_62b6_105d_0f06"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f913_e9aa_00f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f913_e9aa_00f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f913_e9aa_00f3/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f913_e9aa_00f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f913_e9aa_00f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f913_e9aa_00f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f913_e9aa_00f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f913_e9aa_00f3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f913_e9aa_00f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a053_7efd_8898", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a053_7efd_8898.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a053_7efd_8898/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a053_7efd_8898_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a053_7efd_8898_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a053_7efd_8898/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a053_7efd_8898.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a053_7efd_8898&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a053_7efd_8898"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e0b_8e0b_57f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e0b_8e0b_57f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e0b_8e0b_57f6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e0b_8e0b_57f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e0b_8e0b_57f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e0b_8e0b_57f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e0b_8e0b_57f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e0b_8e0b_57f6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0e0b_8e0b_57f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9c8_dba2_5720", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9c8_dba2_5720.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e9c8_dba2_5720/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e9c8_dba2_5720_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e9c8_dba2_5720_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e9c8_dba2_5720/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e9c8_dba2_5720.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e9c8_dba2_5720&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e9c8_dba2_5720"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aac8_4fe2_023c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aac8_4fe2_023c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aac8_4fe2_023c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aac8_4fe2_023c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aac8_4fe2_023c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aac8_4fe2_023c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aac8_4fe2_023c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aac8_4fe2_023c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_aac8_4fe2_023c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_681f_621c_8fd7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_681f_621c_8fd7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_681f_621c_8fd7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_681f_621c_8fd7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_681f_621c_8fd7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_681f_621c_8fd7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_681f_621c_8fd7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_681f_621c_8fd7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_681f_621c_8fd7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b4f_40a1_4045", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b4f_40a1_4045.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b4f_40a1_4045/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b4f_40a1_4045_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b4f_40a1_4045_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b4f_40a1_4045/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b4f_40a1_4045.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b4f_40a1_4045&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7b4f_40a1_4045"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4338_9f72_e426", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4338_9f72_e426.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4338_9f72_e426/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4338_9f72_e426_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4338_9f72_e426_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4338_9f72_e426/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4338_9f72_e426.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4338_9f72_e426&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4338_9f72_e426"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_75ce_ca82_4c12", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_75ce_ca82_4c12.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_75ce_ca82_4c12/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_75ce_ca82_4c12_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_75ce_ca82_4c12_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_75ce_ca82_4c12/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_75ce_ca82_4c12.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_75ce_ca82_4c12&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_75ce_ca82_4c12"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb2c_c6da_046a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb2c_c6da_046a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eb2c_c6da_046a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eb2c_c6da_046a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eb2c_c6da_046a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb2c_c6da_046a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb2c_c6da_046a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb2c_c6da_046a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eb2c_c6da_046a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0646_c670_9f94", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0646_c670_9f94.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0646_c670_9f94/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0646_c670_9f94_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0646_c670_9f94_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0646_c670_9f94/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0646_c670_9f94.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0646_c670_9f94&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0646_c670_9f94"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d53_feba_5b14", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d53_feba_5b14.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d53_feba_5b14/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d53_feba_5b14_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d53_feba_5b14_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d53_feba_5b14/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d53_feba_5b14.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d53_feba_5b14&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d53_feba_5b14"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bc9_53b4_4c01", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bc9_53b4_4c01.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9bc9_53b4_4c01/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9bc9_53b4_4c01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9bc9_53b4_4c01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9bc9_53b4_4c01/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9bc9_53b4_4c01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9bc9_53b4_4c01&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9bc9_53b4_4c01"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d00_04c4_7519", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d00_04c4_7519.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0d00_04c4_7519/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0d00_04c4_7519_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0d00_04c4_7519_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0d00_04c4_7519/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0d00_04c4_7519.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0d00_04c4_7519&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0d00_04c4_7519"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35a2_7c97_da0e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35a2_7c97_da0e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_35a2_7c97_da0e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_35a2_7c97_da0e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_35a2_7c97_da0e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_35a2_7c97_da0e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_35a2_7c97_da0e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_35a2_7c97_da0e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_35a2_7c97_da0e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb97_1a29_a44c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb97_1a29_a44c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eb97_1a29_a44c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eb97_1a29_a44c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eb97_1a29_a44c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb97_1a29_a44c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb97_1a29_a44c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb97_1a29_a44c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eb97_1a29_a44c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3421_e757_ca6c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3421_e757_ca6c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3421_e757_ca6c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3421_e757_ca6c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3421_e757_ca6c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3421_e757_ca6c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3421_e757_ca6c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3421_e757_ca6c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3421_e757_ca6c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0551_955e_b323", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0551_955e_b323.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0551_955e_b323/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0551_955e_b323_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0551_955e_b323_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0551_955e_b323/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0551_955e_b323.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0551_955e_b323&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0551_955e_b323"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9171_1cd5_cb96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9171_1cd5_cb96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9171_1cd5_cb96/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9171_1cd5_cb96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9171_1cd5_cb96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9171_1cd5_cb96/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9171_1cd5_cb96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9171_1cd5_cb96&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9171_1cd5_cb96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d6d_39ff_703a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d6d_39ff_703a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2d6d_39ff_703a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2d6d_39ff_703a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2d6d_39ff_703a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d6d_39ff_703a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d6d_39ff_703a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d6d_39ff_703a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2d6d_39ff_703a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ac98_a01e_22d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ac98_a01e_22d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ac98_a01e_22d5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ac98_a01e_22d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ac98_a01e_22d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ac98_a01e_22d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ac98_a01e_22d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ac98_a01e_22d5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ac98_a01e_22d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8a0_292d_895f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8a0_292d_895f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d8a0_292d_895f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d8a0_292d_895f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d8a0_292d_895f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d8a0_292d_895f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d8a0_292d_895f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d8a0_292d_895f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d8a0_292d_895f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f167_833b_dbdc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f167_833b_dbdc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f167_833b_dbdc/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f167_833b_dbdc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f167_833b_dbdc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f167_833b_dbdc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f167_833b_dbdc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f167_833b_dbdc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f167_833b_dbdc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a0f_3077_f256", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a0f_3077_f256.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8a0f_3077_f256/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8a0f_3077_f256_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8a0f_3077_f256_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8a0f_3077_f256/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8a0f_3077_f256.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8a0f_3077_f256&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8a0f_3077_f256"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9e5_2961_a5f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9e5_2961_a5f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b9e5_2961_a5f9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b9e5_2961_a5f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b9e5_2961_a5f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b9e5_2961_a5f9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b9e5_2961_a5f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b9e5_2961_a5f9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b9e5_2961_a5f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae9c_a2f9_de1d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae9c_a2f9_de1d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae9c_a2f9_de1d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae9c_a2f9_de1d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae9c_a2f9_de1d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae9c_a2f9_de1d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae9c_a2f9_de1d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae9c_a2f9_de1d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ae9c_a2f9_de1d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fc9_d632_7c54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fc9_d632_7c54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2fc9_d632_7c54/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2fc9_d632_7c54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2fc9_d632_7c54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2fc9_d632_7c54/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2fc9_d632_7c54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2fc9_d632_7c54&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2fc9_d632_7c54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d2a_5152_9fd7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d2a_5152_9fd7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d2a_5152_9fd7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d2a_5152_9fd7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d2a_5152_9fd7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d2a_5152_9fd7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d2a_5152_9fd7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d2a_5152_9fd7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4d2a_5152_9fd7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43cc_07da_6cbc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43cc_07da_6cbc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_43cc_07da_6cbc/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_43cc_07da_6cbc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_43cc_07da_6cbc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_43cc_07da_6cbc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_43cc_07da_6cbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_43cc_07da_6cbc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_43cc_07da_6cbc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bae_ed7f_a989", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bae_ed7f_a989.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9bae_ed7f_a989/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9bae_ed7f_a989_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9bae_ed7f_a989_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9bae_ed7f_a989/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9bae_ed7f_a989.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9bae_ed7f_a989&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9bae_ed7f_a989"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e536_80f8_c85e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e536_80f8_c85e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e536_80f8_c85e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e536_80f8_c85e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e536_80f8_c85e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e536_80f8_c85e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e536_80f8_c85e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e536_80f8_c85e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e536_80f8_c85e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea2e_c67a_d405", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea2e_c67a_d405.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ea2e_c67a_d405/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ea2e_c67a_d405_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ea2e_c67a_d405_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ea2e_c67a_d405/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ea2e_c67a_d405.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ea2e_c67a_d405&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ea2e_c67a_d405"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7360_50f3_de7e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7360_50f3_de7e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7360_50f3_de7e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7360_50f3_de7e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7360_50f3_de7e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7360_50f3_de7e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7360_50f3_de7e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7360_50f3_de7e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7360_50f3_de7e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf6d_c37a_d3b2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf6d_c37a_d3b2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf6d_c37a_d3b2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf6d_c37a_d3b2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf6d_c37a_d3b2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf6d_c37a_d3b2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf6d_c37a_d3b2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf6d_c37a_d3b2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bf6d_c37a_d3b2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bce8_f68d_037f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bce8_f68d_037f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bce8_f68d_037f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bce8_f68d_037f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bce8_f68d_037f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bce8_f68d_037f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bce8_f68d_037f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bce8_f68d_037f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bce8_f68d_037f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebc9_1f05_8770", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebc9_1f05_8770.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ebc9_1f05_8770/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ebc9_1f05_8770_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ebc9_1f05_8770_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ebc9_1f05_8770/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ebc9_1f05_8770.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ebc9_1f05_8770&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ebc9_1f05_8770"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5ed_c394_b0bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5ed_c394_b0bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f5ed_c394_b0bf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f5ed_c394_b0bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f5ed_c394_b0bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f5ed_c394_b0bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f5ed_c394_b0bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f5ed_c394_b0bf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f5ed_c394_b0bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eca4_57e8_f74c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eca4_57e8_f74c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eca4_57e8_f74c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eca4_57e8_f74c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eca4_57e8_f74c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eca4_57e8_f74c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eca4_57e8_f74c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eca4_57e8_f74c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_eca4_57e8_f74c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1902_5b30_a235", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1902_5b30_a235.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1902_5b30_a235/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1902_5b30_a235_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1902_5b30_a235_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1902_5b30_a235/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1902_5b30_a235.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1902_5b30_a235&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1902_5b30_a235"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93ba_e052_c3c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93ba_e052_c3c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_93ba_e052_c3c1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_93ba_e052_c3c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_93ba_e052_c3c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_93ba_e052_c3c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_93ba_e052_c3c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_93ba_e052_c3c1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_93ba_e052_c3c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c3c_bc65_6d6f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c3c_bc65_6d6f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c3c_bc65_6d6f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c3c_bc65_6d6f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c3c_bc65_6d6f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c3c_bc65_6d6f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c3c_bc65_6d6f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c3c_bc65_6d6f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9c3c_bc65_6d6f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a19d_d3c3_4f85", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a19d_d3c3_4f85.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a19d_d3c3_4f85/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a19d_d3c3_4f85_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a19d_d3c3_4f85_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a19d_d3c3_4f85/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a19d_d3c3_4f85.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a19d_d3c3_4f85&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a19d_d3c3_4f85"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff60_15d3_3ec8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff60_15d3_3ec8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff60_15d3_3ec8/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff60_15d3_3ec8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff60_15d3_3ec8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff60_15d3_3ec8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff60_15d3_3ec8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff60_15d3_3ec8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ff60_15d3_3ec8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5bff_1df3_dc3f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5bff_1df3_dc3f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5bff_1df3_dc3f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5bff_1df3_dc3f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5bff_1df3_dc3f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5bff_1df3_dc3f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5bff_1df3_dc3f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5bff_1df3_dc3f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5bff_1df3_dc3f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ab2_a19e_9699", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ab2_a19e_9699.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ab2_a19e_9699/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ab2_a19e_9699_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ab2_a19e_9699_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ab2_a19e_9699/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ab2_a19e_9699.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ab2_a19e_9699&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1ab2_a19e_9699"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2861_c0a4_4c5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2861_c0a4_4c5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2861_c0a4_4c5f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2861_c0a4_4c5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2861_c0a4_4c5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2861_c0a4_4c5f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2861_c0a4_4c5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2861_c0a4_4c5f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2861_c0a4_4c5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e94_c897_3298", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e94_c897_3298.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5e94_c897_3298/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5e94_c897_3298_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5e94_c897_3298_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5e94_c897_3298/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5e94_c897_3298.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5e94_c897_3298&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5e94_c897_3298"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a412_0649_7b67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a412_0649_7b67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a412_0649_7b67/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a412_0649_7b67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a412_0649_7b67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a412_0649_7b67/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a412_0649_7b67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a412_0649_7b67&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a412_0649_7b67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1d0_c851_6ee7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1d0_c851_6ee7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b1d0_c851_6ee7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b1d0_c851_6ee7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b1d0_c851_6ee7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b1d0_c851_6ee7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b1d0_c851_6ee7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b1d0_c851_6ee7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b1d0_c851_6ee7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6678_c070_72f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6678_c070_72f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6678_c070_72f0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6678_c070_72f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6678_c070_72f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6678_c070_72f0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6678_c070_72f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6678_c070_72f0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6678_c070_72f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bff6_7091_1fcb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bff6_7091_1fcb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bff6_7091_1fcb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bff6_7091_1fcb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bff6_7091_1fcb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bff6_7091_1fcb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bff6_7091_1fcb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bff6_7091_1fcb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bff6_7091_1fcb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ead3_529a_24ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ead3_529a_24ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ead3_529a_24ae/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ead3_529a_24ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ead3_529a_24ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ead3_529a_24ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ead3_529a_24ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ead3_529a_24ae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ead3_529a_24ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6dde_d0bb_ecf8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6dde_d0bb_ecf8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6dde_d0bb_ecf8/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6dde_d0bb_ecf8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6dde_d0bb_ecf8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6dde_d0bb_ecf8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6dde_d0bb_ecf8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6dde_d0bb_ecf8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6dde_d0bb_ecf8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81e1_87dc_b3ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81e1_87dc_b3ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_81e1_87dc_b3ec/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_81e1_87dc_b3ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_81e1_87dc_b3ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_81e1_87dc_b3ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_81e1_87dc_b3ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_81e1_87dc_b3ec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_81e1_87dc_b3ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8899_75d5_e233", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8899_75d5_e233.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8899_75d5_e233/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8899_75d5_e233_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8899_75d5_e233_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8899_75d5_e233/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8899_75d5_e233.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8899_75d5_e233&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8899_75d5_e233"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c088_dce8_706a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c088_dce8_706a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c088_dce8_706a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c088_dce8_706a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c088_dce8_706a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c088_dce8_706a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c088_dce8_706a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c088_dce8_706a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c088_dce8_706a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b1e_93c2_d757", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b1e_93c2_d757.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4b1e_93c2_d757/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4b1e_93c2_d757_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4b1e_93c2_d757_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4b1e_93c2_d757/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4b1e_93c2_d757.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4b1e_93c2_d757&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4b1e_93c2_d757"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f248_85c7_a3c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f248_85c7_a3c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f248_85c7_a3c6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f248_85c7_a3c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f248_85c7_a3c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f248_85c7_a3c6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f248_85c7_a3c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f248_85c7_a3c6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f248_85c7_a3c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c80_1c01_ff85", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c80_1c01_ff85.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1c80_1c01_ff85/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1c80_1c01_ff85_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1c80_1c01_ff85_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1c80_1c01_ff85/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1c80_1c01_ff85.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1c80_1c01_ff85&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1c80_1c01_ff85"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0844_9885_a0b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0844_9885_a0b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0844_9885_a0b9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0844_9885_a0b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0844_9885_a0b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0844_9885_a0b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0844_9885_a0b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0844_9885_a0b9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0844_9885_a0b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ba8_8961_9aed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ba8_8961_9aed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ba8_8961_9aed/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ba8_8961_9aed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ba8_8961_9aed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ba8_8961_9aed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ba8_8961_9aed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ba8_8961_9aed&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7ba8_8961_9aed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f23_b225_7022", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f23_b225_7022.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5f23_b225_7022/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5f23_b225_7022_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5f23_b225_7022_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5f23_b225_7022/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5f23_b225_7022.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5f23_b225_7022&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5f23_b225_7022"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4720_3f35_735b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4720_3f35_735b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4720_3f35_735b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4720_3f35_735b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4720_3f35_735b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4720_3f35_735b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4720_3f35_735b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4720_3f35_735b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4720_3f35_735b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd60_31e9_ac81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd60_31e9_ac81.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fd60_31e9_ac81/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fd60_31e9_ac81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fd60_31e9_ac81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fd60_31e9_ac81/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fd60_31e9_ac81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fd60_31e9_ac81&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fd60_31e9_ac81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35a0_4f9e_4752", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35a0_4f9e_4752.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_35a0_4f9e_4752/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_35a0_4f9e_4752_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_35a0_4f9e_4752_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_35a0_4f9e_4752/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_35a0_4f9e_4752.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_35a0_4f9e_4752&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_35a0_4f9e_4752"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_784e_8396_a5a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_784e_8396_a5a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_784e_8396_a5a2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_784e_8396_a5a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_784e_8396_a5a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_784e_8396_a5a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_784e_8396_a5a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_784e_8396_a5a2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_784e_8396_a5a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83ac_e387_c8bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83ac_e387_c8bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_83ac_e387_c8bf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_83ac_e387_c8bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_83ac_e387_c8bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_83ac_e387_c8bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_83ac_e387_c8bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_83ac_e387_c8bf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_83ac_e387_c8bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c278_7f9c_832a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c278_7f9c_832a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c278_7f9c_832a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c278_7f9c_832a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c278_7f9c_832a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c278_7f9c_832a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c278_7f9c_832a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c278_7f9c_832a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c278_7f9c_832a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8d2_3a21_75c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8d2_3a21_75c9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f8d2_3a21_75c9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f8d2_3a21_75c9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f8d2_3a21_75c9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f8d2_3a21_75c9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f8d2_3a21_75c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f8d2_3a21_75c9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f8d2_3a21_75c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f909_1a28_90bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f909_1a28_90bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f909_1a28_90bf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f909_1a28_90bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f909_1a28_90bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f909_1a28_90bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f909_1a28_90bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f909_1a28_90bf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f909_1a28_90bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2387_4ab1_7459", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2387_4ab1_7459.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2387_4ab1_7459/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2387_4ab1_7459_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2387_4ab1_7459_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2387_4ab1_7459/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2387_4ab1_7459.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2387_4ab1_7459&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2387_4ab1_7459"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_218a_d21d_1538", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_218a_d21d_1538.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_218a_d21d_1538/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_218a_d21d_1538_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_218a_d21d_1538_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_218a_d21d_1538/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_218a_d21d_1538.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_218a_d21d_1538&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_218a_d21d_1538"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3127_ba27_8daf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3127_ba27_8daf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3127_ba27_8daf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3127_ba27_8daf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3127_ba27_8daf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3127_ba27_8daf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3127_ba27_8daf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3127_ba27_8daf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3127_ba27_8daf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60a3_e5fc_3574", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60a3_e5fc_3574.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_60a3_e5fc_3574/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_60a3_e5fc_3574_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_60a3_e5fc_3574_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_60a3_e5fc_3574/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_60a3_e5fc_3574.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_60a3_e5fc_3574&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_60a3_e5fc_3574"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_29f5_2822_8e38", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_29f5_2822_8e38.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_29f5_2822_8e38/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_29f5_2822_8e38_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_29f5_2822_8e38_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_29f5_2822_8e38/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_29f5_2822_8e38.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_29f5_2822_8e38&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_29f5_2822_8e38"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f70_b3f9_1da7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f70_b3f9_1da7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f70_b3f9_1da7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f70_b3f9_1da7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f70_b3f9_1da7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f70_b3f9_1da7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f70_b3f9_1da7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f70_b3f9_1da7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8f70_b3f9_1da7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7265_eec3_8785", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7265_eec3_8785.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7265_eec3_8785/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7265_eec3_8785_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7265_eec3_8785_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7265_eec3_8785/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7265_eec3_8785.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7265_eec3_8785&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7265_eec3_8785"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_759f_a4e7_2ab9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_759f_a4e7_2ab9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_759f_a4e7_2ab9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_759f_a4e7_2ab9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_759f_a4e7_2ab9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_759f_a4e7_2ab9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_759f_a4e7_2ab9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_759f_a4e7_2ab9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_759f_a4e7_2ab9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b0e0_70d7_54b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b0e0_70d7_54b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b0e0_70d7_54b3/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b0e0_70d7_54b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b0e0_70d7_54b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b0e0_70d7_54b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b0e0_70d7_54b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b0e0_70d7_54b3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b0e0_70d7_54b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0cd3_5377_1fb3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0cd3_5377_1fb3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0cd3_5377_1fb3/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0cd3_5377_1fb3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0cd3_5377_1fb3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0cd3_5377_1fb3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0cd3_5377_1fb3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0cd3_5377_1fb3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0cd3_5377_1fb3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a20b_67f0_0ade", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a20b_67f0_0ade.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a20b_67f0_0ade/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a20b_67f0_0ade_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a20b_67f0_0ade_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a20b_67f0_0ade/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a20b_67f0_0ade.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a20b_67f0_0ade&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a20b_67f0_0ade"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3d7_bd9c_99cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3d7_bd9c_99cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f3d7_bd9c_99cf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f3d7_bd9c_99cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f3d7_bd9c_99cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f3d7_bd9c_99cf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f3d7_bd9c_99cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f3d7_bd9c_99cf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f3d7_bd9c_99cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a515_73fd_c062", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a515_73fd_c062.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a515_73fd_c062/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a515_73fd_c062_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a515_73fd_c062_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a515_73fd_c062/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a515_73fd_c062.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a515_73fd_c062&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a515_73fd_c062"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e63_a8d8_dfb3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e63_a8d8_dfb3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e63_a8d8_dfb3/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e63_a8d8_dfb3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e63_a8d8_dfb3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e63_a8d8_dfb3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e63_a8d8_dfb3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e63_a8d8_dfb3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8e63_a8d8_dfb3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b45_4075_bf5d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b45_4075_bf5d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9b45_4075_bf5d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9b45_4075_bf5d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9b45_4075_bf5d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9b45_4075_bf5d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9b45_4075_bf5d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9b45_4075_bf5d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9b45_4075_bf5d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d81a_8151_bade", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d81a_8151_bade.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d81a_8151_bade/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d81a_8151_bade_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d81a_8151_bade_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d81a_8151_bade/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d81a_8151_bade.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d81a_8151_bade&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d81a_8151_bade"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44d8_4b68_31c7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44d8_4b68_31c7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_44d8_4b68_31c7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_44d8_4b68_31c7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_44d8_4b68_31c7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_44d8_4b68_31c7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_44d8_4b68_31c7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_44d8_4b68_31c7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_44d8_4b68_31c7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bcc_7ee6_c71e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bcc_7ee6_c71e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9bcc_7ee6_c71e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9bcc_7ee6_c71e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9bcc_7ee6_c71e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9bcc_7ee6_c71e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9bcc_7ee6_c71e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9bcc_7ee6_c71e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9bcc_7ee6_c71e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c8d_b62e_6903", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c8d_b62e_6903.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8c8d_b62e_6903/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8c8d_b62e_6903_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8c8d_b62e_6903_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8c8d_b62e_6903/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8c8d_b62e_6903.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8c8d_b62e_6903&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8c8d_b62e_6903"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_396e_fb9c_b5df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_396e_fb9c_b5df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_396e_fb9c_b5df/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_396e_fb9c_b5df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_396e_fb9c_b5df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_396e_fb9c_b5df/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_396e_fb9c_b5df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_396e_fb9c_b5df&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_396e_fb9c_b5df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b944_c64b_1278", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b944_c64b_1278.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b944_c64b_1278/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b944_c64b_1278_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b944_c64b_1278_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b944_c64b_1278/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b944_c64b_1278.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b944_c64b_1278&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b944_c64b_1278"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_440d_16d2_1c35", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_440d_16d2_1c35.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_440d_16d2_1c35/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_440d_16d2_1c35_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_440d_16d2_1c35_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_440d_16d2_1c35/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_440d_16d2_1c35.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_440d_16d2_1c35&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_440d_16d2_1c35"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01db_e260_cc77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01db_e260_cc77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_01db_e260_cc77/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_01db_e260_cc77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_01db_e260_cc77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_01db_e260_cc77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_01db_e260_cc77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_01db_e260_cc77&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_01db_e260_cc77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cad1_88dc_d5a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cad1_88dc_d5a8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cad1_88dc_d5a8/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cad1_88dc_d5a8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cad1_88dc_d5a8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cad1_88dc_d5a8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cad1_88dc_d5a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cad1_88dc_d5a8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cad1_88dc_d5a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4cc3_2e74_6a49", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4cc3_2e74_6a49.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4cc3_2e74_6a49/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4cc3_2e74_6a49_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4cc3_2e74_6a49_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4cc3_2e74_6a49/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4cc3_2e74_6a49.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4cc3_2e74_6a49&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4cc3_2e74_6a49"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e19_97fc_89a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e19_97fc_89a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1e19_97fc_89a2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1e19_97fc_89a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1e19_97fc_89a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1e19_97fc_89a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1e19_97fc_89a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1e19_97fc_89a2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1e19_97fc_89a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71b8_024a_5663", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71b8_024a_5663.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_71b8_024a_5663/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_71b8_024a_5663_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_71b8_024a_5663_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_71b8_024a_5663/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_71b8_024a_5663.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_71b8_024a_5663&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_71b8_024a_5663"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_120d_a19d_6ab7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_120d_a19d_6ab7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_120d_a19d_6ab7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_120d_a19d_6ab7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_120d_a19d_6ab7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_120d_a19d_6ab7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_120d_a19d_6ab7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_120d_a19d_6ab7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_120d_a19d_6ab7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5350_5e2f_f648", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5350_5e2f_f648.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5350_5e2f_f648/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5350_5e2f_f648_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5350_5e2f_f648_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5350_5e2f_f648/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5350_5e2f_f648.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5350_5e2f_f648&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5350_5e2f_f648"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85cd_8259_1279", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85cd_8259_1279.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_85cd_8259_1279/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_85cd_8259_1279_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_85cd_8259_1279_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85cd_8259_1279/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85cd_8259_1279.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85cd_8259_1279&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_85cd_8259_1279"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ce7_7d77_67eb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ce7_7d77_67eb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ce7_7d77_67eb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ce7_7d77_67eb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ce7_7d77_67eb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ce7_7d77_67eb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ce7_7d77_67eb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ce7_7d77_67eb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1ce7_7d77_67eb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0940_b3c4_41dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0940_b3c4_41dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0940_b3c4_41dc/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0940_b3c4_41dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0940_b3c4_41dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0940_b3c4_41dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0940_b3c4_41dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0940_b3c4_41dc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0940_b3c4_41dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dccc_0bea_7258", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dccc_0bea_7258.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dccc_0bea_7258/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dccc_0bea_7258_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dccc_0bea_7258_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dccc_0bea_7258/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dccc_0bea_7258.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dccc_0bea_7258&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dccc_0bea_7258"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddc4_b467_05fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddc4_b467_05fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ddc4_b467_05fb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ddc4_b467_05fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ddc4_b467_05fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ddc4_b467_05fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ddc4_b467_05fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ddc4_b467_05fb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ddc4_b467_05fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c2c8_1097_c854", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c2c8_1097_c854.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c2c8_1097_c854/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c2c8_1097_c854_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c2c8_1097_c854_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c2c8_1097_c854/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c2c8_1097_c854.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c2c8_1097_c854&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c2c8_1097_c854"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e566_b310_9dab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e566_b310_9dab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e566_b310_9dab/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e566_b310_9dab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e566_b310_9dab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e566_b310_9dab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e566_b310_9dab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e566_b310_9dab&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e566_b310_9dab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c061_4253_44ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c061_4253_44ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c061_4253_44ce/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c061_4253_44ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c061_4253_44ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c061_4253_44ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c061_4253_44ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c061_4253_44ce&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c061_4253_44ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9725_5f1b_5c2c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9725_5f1b_5c2c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9725_5f1b_5c2c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9725_5f1b_5c2c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9725_5f1b_5c2c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9725_5f1b_5c2c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9725_5f1b_5c2c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9725_5f1b_5c2c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9725_5f1b_5c2c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cd8_f6f1_acb1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cd8_f6f1_acb1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9cd8_f6f1_acb1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9cd8_f6f1_acb1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9cd8_f6f1_acb1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9cd8_f6f1_acb1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9cd8_f6f1_acb1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9cd8_f6f1_acb1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9cd8_f6f1_acb1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a433_7e24_c89a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a433_7e24_c89a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a433_7e24_c89a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a433_7e24_c89a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a433_7e24_c89a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a433_7e24_c89a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a433_7e24_c89a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a433_7e24_c89a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a433_7e24_c89a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34ad_b531_7b53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34ad_b531_7b53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_34ad_b531_7b53/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_34ad_b531_7b53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_34ad_b531_7b53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_34ad_b531_7b53/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_34ad_b531_7b53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_34ad_b531_7b53&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_34ad_b531_7b53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efc6_aff8_e5c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efc6_aff8_e5c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_efc6_aff8_e5c4/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_efc6_aff8_e5c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_efc6_aff8_e5c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_efc6_aff8_e5c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_efc6_aff8_e5c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_efc6_aff8_e5c4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_efc6_aff8_e5c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ed8_4f0d_aa9c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ed8_4f0d_aa9c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2ed8_4f0d_aa9c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2ed8_4f0d_aa9c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2ed8_4f0d_aa9c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2ed8_4f0d_aa9c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2ed8_4f0d_aa9c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2ed8_4f0d_aa9c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2ed8_4f0d_aa9c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd05_b4e9_7702", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd05_b4e9_7702.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dd05_b4e9_7702/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dd05_b4e9_7702_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dd05_b4e9_7702_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dd05_b4e9_7702/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dd05_b4e9_7702.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dd05_b4e9_7702&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dd05_b4e9_7702"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd52_8e7d_2845", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd52_8e7d_2845.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fd52_8e7d_2845/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fd52_8e7d_2845_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fd52_8e7d_2845_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fd52_8e7d_2845/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fd52_8e7d_2845.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fd52_8e7d_2845&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fd52_8e7d_2845"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_40d3_8aeb_9b85", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_40d3_8aeb_9b85.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_40d3_8aeb_9b85/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_40d3_8aeb_9b85_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_40d3_8aeb_9b85_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_40d3_8aeb_9b85/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_40d3_8aeb_9b85.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_40d3_8aeb_9b85&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_40d3_8aeb_9b85"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e171_0c4f_26f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e171_0c4f_26f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e171_0c4f_26f0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e171_0c4f_26f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e171_0c4f_26f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e171_0c4f_26f0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e171_0c4f_26f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e171_0c4f_26f0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e171_0c4f_26f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff2d_08d3_6a3c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff2d_08d3_6a3c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff2d_08d3_6a3c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff2d_08d3_6a3c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff2d_08d3_6a3c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff2d_08d3_6a3c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff2d_08d3_6a3c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff2d_08d3_6a3c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ff2d_08d3_6a3c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d434_99ba_99ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d434_99ba_99ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d434_99ba_99ef/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d434_99ba_99ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d434_99ba_99ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d434_99ba_99ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d434_99ba_99ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d434_99ba_99ef&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d434_99ba_99ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_847a_486c_d7e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_847a_486c_d7e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_847a_486c_d7e6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_847a_486c_d7e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_847a_486c_d7e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_847a_486c_d7e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_847a_486c_d7e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_847a_486c_d7e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_847a_486c_d7e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c79d_a4fd_9ff0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c79d_a4fd_9ff0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c79d_a4fd_9ff0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c79d_a4fd_9ff0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c79d_a4fd_9ff0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c79d_a4fd_9ff0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c79d_a4fd_9ff0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c79d_a4fd_9ff0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c79d_a4fd_9ff0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee7f_6f97_f220", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee7f_6f97_f220.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ee7f_6f97_f220/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ee7f_6f97_f220_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ee7f_6f97_f220_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ee7f_6f97_f220/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ee7f_6f97_f220.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ee7f_6f97_f220&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ee7f_6f97_f220"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92a6_6190_4a44", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92a6_6190_4a44.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_92a6_6190_4a44/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_92a6_6190_4a44_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_92a6_6190_4a44_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_92a6_6190_4a44/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_92a6_6190_4a44.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_92a6_6190_4a44&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_92a6_6190_4a44"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7b3_db62_c8a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7b3_db62_c8a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c7b3_db62_c8a0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c7b3_db62_c8a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c7b3_db62_c8a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c7b3_db62_c8a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c7b3_db62_c8a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c7b3_db62_c8a0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c7b3_db62_c8a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d32e_5c9c_c613", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d32e_5c9c_c613.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d32e_5c9c_c613/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d32e_5c9c_c613_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d32e_5c9c_c613_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d32e_5c9c_c613/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d32e_5c9c_c613.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d32e_5c9c_c613&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d32e_5c9c_c613"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08d9_0719_05dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08d9_0719_05dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_08d9_0719_05dc/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_08d9_0719_05dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_08d9_0719_05dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_08d9_0719_05dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_08d9_0719_05dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_08d9_0719_05dc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_08d9_0719_05dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b343_485c_37be", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b343_485c_37be.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b343_485c_37be/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b343_485c_37be_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b343_485c_37be_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b343_485c_37be/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b343_485c_37be.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b343_485c_37be&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b343_485c_37be"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf98_f2ec_522e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf98_f2ec_522e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf98_f2ec_522e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf98_f2ec_522e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf98_f2ec_522e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf98_f2ec_522e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf98_f2ec_522e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf98_f2ec_522e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cf98_f2ec_522e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45c7_076f_c5af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45c7_076f_c5af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_45c7_076f_c5af/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_45c7_076f_c5af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_45c7_076f_c5af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_45c7_076f_c5af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_45c7_076f_c5af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_45c7_076f_c5af&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_45c7_076f_c5af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ecfd_e321_1f2b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ecfd_e321_1f2b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ecfd_e321_1f2b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ecfd_e321_1f2b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ecfd_e321_1f2b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ecfd_e321_1f2b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ecfd_e321_1f2b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ecfd_e321_1f2b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ecfd_e321_1f2b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a2f_050e_f71f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a2f_050e_f71f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a2f_050e_f71f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a2f_050e_f71f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a2f_050e_f71f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a2f_050e_f71f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a2f_050e_f71f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a2f_050e_f71f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5a2f_050e_f71f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86d2_179a_a519", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86d2_179a_a519.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_86d2_179a_a519/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86d2_179a_a519_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86d2_179a_a519_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86d2_179a_a519/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86d2_179a_a519.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86d2_179a_a519&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_86d2_179a_a519"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc2e_e162_da0d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc2e_e162_da0d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc2e_e162_da0d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc2e_e162_da0d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc2e_e162_da0d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc2e_e162_da0d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc2e_e162_da0d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc2e_e162_da0d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dc2e_e162_da0d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8323_3ec1_f93e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8323_3ec1_f93e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8323_3ec1_f93e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8323_3ec1_f93e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8323_3ec1_f93e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8323_3ec1_f93e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8323_3ec1_f93e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8323_3ec1_f93e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8323_3ec1_f93e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_195e_e8da_3a6c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_195e_e8da_3a6c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_195e_e8da_3a6c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_195e_e8da_3a6c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_195e_e8da_3a6c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_195e_e8da_3a6c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_195e_e8da_3a6c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_195e_e8da_3a6c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_195e_e8da_3a6c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6165_fe77_08b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6165_fe77_08b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6165_fe77_08b7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6165_fe77_08b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6165_fe77_08b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6165_fe77_08b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6165_fe77_08b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6165_fe77_08b7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6165_fe77_08b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5694_eaae_7a0c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5694_eaae_7a0c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5694_eaae_7a0c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5694_eaae_7a0c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5694_eaae_7a0c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5694_eaae_7a0c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5694_eaae_7a0c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5694_eaae_7a0c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5694_eaae_7a0c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0cb1_81e1_1816", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0cb1_81e1_1816.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0cb1_81e1_1816/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0cb1_81e1_1816_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0cb1_81e1_1816_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0cb1_81e1_1816/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0cb1_81e1_1816.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0cb1_81e1_1816&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0cb1_81e1_1816"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4966_e263_e189", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4966_e263_e189.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4966_e263_e189/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4966_e263_e189_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4966_e263_e189_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4966_e263_e189/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4966_e263_e189.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4966_e263_e189&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4966_e263_e189"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a028_b94c_1efc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a028_b94c_1efc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a028_b94c_1efc/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a028_b94c_1efc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a028_b94c_1efc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a028_b94c_1efc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a028_b94c_1efc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a028_b94c_1efc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a028_b94c_1efc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a904_b238_5528", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a904_b238_5528.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a904_b238_5528/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a904_b238_5528_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a904_b238_5528_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a904_b238_5528/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a904_b238_5528.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a904_b238_5528&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a904_b238_5528"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b504_a096_fcc2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b504_a096_fcc2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b504_a096_fcc2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b504_a096_fcc2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b504_a096_fcc2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b504_a096_fcc2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b504_a096_fcc2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b504_a096_fcc2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b504_a096_fcc2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d23_bbb6_f8a3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d23_bbb6_f8a3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d23_bbb6_f8a3/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d23_bbb6_f8a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d23_bbb6_f8a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d23_bbb6_f8a3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d23_bbb6_f8a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d23_bbb6_f8a3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6d23_bbb6_f8a3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1902_d36c_6ea2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1902_d36c_6ea2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1902_d36c_6ea2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1902_d36c_6ea2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1902_d36c_6ea2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1902_d36c_6ea2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1902_d36c_6ea2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1902_d36c_6ea2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1902_d36c_6ea2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d2e_d996_53c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d2e_d996_53c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d2e_d996_53c4/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d2e_d996_53c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d2e_d996_53c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d2e_d996_53c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d2e_d996_53c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d2e_d996_53c4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d2e_d996_53c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4aaf_257b_164d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4aaf_257b_164d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4aaf_257b_164d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4aaf_257b_164d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4aaf_257b_164d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4aaf_257b_164d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4aaf_257b_164d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4aaf_257b_164d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4aaf_257b_164d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d06_8c82_17e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d06_8c82_17e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d06_8c82_17e6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d06_8c82_17e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d06_8c82_17e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d06_8c82_17e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d06_8c82_17e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d06_8c82_17e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4d06_8c82_17e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_596d_8ab4_980a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_596d_8ab4_980a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_596d_8ab4_980a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_596d_8ab4_980a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_596d_8ab4_980a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_596d_8ab4_980a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_596d_8ab4_980a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_596d_8ab4_980a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_596d_8ab4_980a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_67a4_ae6b_cfdd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_67a4_ae6b_cfdd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_67a4_ae6b_cfdd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_67a4_ae6b_cfdd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_67a4_ae6b_cfdd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_67a4_ae6b_cfdd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_67a4_ae6b_cfdd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_67a4_ae6b_cfdd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_67a4_ae6b_cfdd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97f3_199d_177f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97f3_199d_177f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_97f3_199d_177f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_97f3_199d_177f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_97f3_199d_177f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_97f3_199d_177f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_97f3_199d_177f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_97f3_199d_177f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_97f3_199d_177f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa48_288e_2413", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa48_288e_2413.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa48_288e_2413/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa48_288e_2413_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa48_288e_2413_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa48_288e_2413/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa48_288e_2413.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa48_288e_2413&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aa48_288e_2413"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bcbb_3428_c8ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bcbb_3428_c8ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bcbb_3428_c8ab/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bcbb_3428_c8ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bcbb_3428_c8ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bcbb_3428_c8ab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bcbb_3428_c8ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bcbb_3428_c8ab&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bcbb_3428_c8ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dd1_e0d7_88c2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dd1_e0d7_88c2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5dd1_e0d7_88c2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5dd1_e0d7_88c2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5dd1_e0d7_88c2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5dd1_e0d7_88c2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5dd1_e0d7_88c2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5dd1_e0d7_88c2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5dd1_e0d7_88c2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_928e_5298_5726", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_928e_5298_5726.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_928e_5298_5726/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_928e_5298_5726_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_928e_5298_5726_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_928e_5298_5726/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_928e_5298_5726.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_928e_5298_5726&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_928e_5298_5726"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c32_0f86_dcc6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c32_0f86_dcc6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6c32_0f86_dcc6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6c32_0f86_dcc6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6c32_0f86_dcc6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6c32_0f86_dcc6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6c32_0f86_dcc6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6c32_0f86_dcc6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6c32_0f86_dcc6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86cc_7437_228e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86cc_7437_228e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_86cc_7437_228e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86cc_7437_228e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86cc_7437_228e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86cc_7437_228e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86cc_7437_228e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86cc_7437_228e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_86cc_7437_228e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89ad_de37_46cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89ad_de37_46cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_89ad_de37_46cb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_89ad_de37_46cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_89ad_de37_46cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_89ad_de37_46cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_89ad_de37_46cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_89ad_de37_46cb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_89ad_de37_46cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4dc_23f7_2958", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4dc_23f7_2958.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e4dc_23f7_2958/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e4dc_23f7_2958_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e4dc_23f7_2958_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e4dc_23f7_2958/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e4dc_23f7_2958.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e4dc_23f7_2958&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e4dc_23f7_2958"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c3b_04ba_8d84", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c3b_04ba_8d84.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c3b_04ba_8d84/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c3b_04ba_8d84_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c3b_04ba_8d84_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c3b_04ba_8d84/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c3b_04ba_8d84.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c3b_04ba_8d84&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5c3b_04ba_8d84"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bce0_ce65_d261", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bce0_ce65_d261.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bce0_ce65_d261/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bce0_ce65_d261_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bce0_ce65_d261_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bce0_ce65_d261/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bce0_ce65_d261.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bce0_ce65_d261&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bce0_ce65_d261"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6751_ec0b_239e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6751_ec0b_239e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6751_ec0b_239e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6751_ec0b_239e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6751_ec0b_239e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6751_ec0b_239e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6751_ec0b_239e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6751_ec0b_239e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6751_ec0b_239e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cc4_1a23_8c11", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cc4_1a23_8c11.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1cc4_1a23_8c11/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1cc4_1a23_8c11_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1cc4_1a23_8c11_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1cc4_1a23_8c11/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1cc4_1a23_8c11.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1cc4_1a23_8c11&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1cc4_1a23_8c11"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be38_5dbb_ce4c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be38_5dbb_ce4c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_be38_5dbb_ce4c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_be38_5dbb_ce4c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_be38_5dbb_ce4c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_be38_5dbb_ce4c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_be38_5dbb_ce4c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_be38_5dbb_ce4c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_be38_5dbb_ce4c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce55_a83d_4d7c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce55_a83d_4d7c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ce55_a83d_4d7c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ce55_a83d_4d7c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ce55_a83d_4d7c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ce55_a83d_4d7c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ce55_a83d_4d7c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ce55_a83d_4d7c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ce55_a83d_4d7c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_011d_10c8_7876", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_011d_10c8_7876.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_011d_10c8_7876/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_011d_10c8_7876_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_011d_10c8_7876_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_011d_10c8_7876/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_011d_10c8_7876.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_011d_10c8_7876&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_011d_10c8_7876"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d03_fd28_701e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d03_fd28_701e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5d03_fd28_701e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5d03_fd28_701e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5d03_fd28_701e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5d03_fd28_701e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5d03_fd28_701e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5d03_fd28_701e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5d03_fd28_701e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c230_1b56_e964", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c230_1b56_e964.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c230_1b56_e964/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c230_1b56_e964_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c230_1b56_e964_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c230_1b56_e964/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c230_1b56_e964.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c230_1b56_e964&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c230_1b56_e964"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06dd_dc9e_f718", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06dd_dc9e_f718.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_06dd_dc9e_f718/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_06dd_dc9e_f718_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_06dd_dc9e_f718_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_06dd_dc9e_f718/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_06dd_dc9e_f718.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_06dd_dc9e_f718&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_06dd_dc9e_f718"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c8ed_dd33_9a26", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c8ed_dd33_9a26.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c8ed_dd33_9a26/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c8ed_dd33_9a26_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c8ed_dd33_9a26_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c8ed_dd33_9a26/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c8ed_dd33_9a26.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c8ed_dd33_9a26&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c8ed_dd33_9a26"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d1e_b3db_312f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d1e_b3db_312f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d1e_b3db_312f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d1e_b3db_312f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d1e_b3db_312f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d1e_b3db_312f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d1e_b3db_312f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d1e_b3db_312f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6d1e_b3db_312f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2103_cf90_c2aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2103_cf90_c2aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2103_cf90_c2aa/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2103_cf90_c2aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2103_cf90_c2aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2103_cf90_c2aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2103_cf90_c2aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2103_cf90_c2aa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2103_cf90_c2aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba4c_3239_06b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba4c_3239_06b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ba4c_3239_06b8/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ba4c_3239_06b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ba4c_3239_06b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ba4c_3239_06b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ba4c_3239_06b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ba4c_3239_06b8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ba4c_3239_06b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2f3_c7b4_dd04", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2f3_c7b4_dd04.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d2f3_c7b4_dd04/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d2f3_c7b4_dd04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d2f3_c7b4_dd04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d2f3_c7b4_dd04/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d2f3_c7b4_dd04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d2f3_c7b4_dd04&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d2f3_c7b4_dd04"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86af_6277_e9e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86af_6277_e9e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_86af_6277_e9e2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86af_6277_e9e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86af_6277_e9e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86af_6277_e9e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86af_6277_e9e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86af_6277_e9e2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_86af_6277_e9e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91ac_208c_ab0a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91ac_208c_ab0a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_91ac_208c_ab0a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_91ac_208c_ab0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_91ac_208c_ab0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_91ac_208c_ab0a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_91ac_208c_ab0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_91ac_208c_ab0a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_91ac_208c_ab0a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3688_52ef_f97a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3688_52ef_f97a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3688_52ef_f97a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3688_52ef_f97a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3688_52ef_f97a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3688_52ef_f97a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3688_52ef_f97a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3688_52ef_f97a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3688_52ef_f97a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0afb_bf69_f9ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0afb_bf69_f9ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0afb_bf69_f9ee/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0afb_bf69_f9ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0afb_bf69_f9ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0afb_bf69_f9ee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0afb_bf69_f9ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0afb_bf69_f9ee&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0afb_bf69_f9ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb94_a641_8cf0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb94_a641_8cf0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb94_a641_8cf0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb94_a641_8cf0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb94_a641_8cf0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb94_a641_8cf0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb94_a641_8cf0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb94_a641_8cf0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cb94_a641_8cf0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_927c_6ecc_009e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_927c_6ecc_009e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_927c_6ecc_009e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_927c_6ecc_009e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_927c_6ecc_009e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_927c_6ecc_009e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_927c_6ecc_009e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_927c_6ecc_009e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_927c_6ecc_009e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3952_1733_8f66", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3952_1733_8f66.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3952_1733_8f66/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3952_1733_8f66_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3952_1733_8f66_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3952_1733_8f66/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3952_1733_8f66.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3952_1733_8f66&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3952_1733_8f66"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8c0_f25e_accd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8c0_f25e_accd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f8c0_f25e_accd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f8c0_f25e_accd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f8c0_f25e_accd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f8c0_f25e_accd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f8c0_f25e_accd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f8c0_f25e_accd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f8c0_f25e_accd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3f2_78cc_1257", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3f2_78cc_1257.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d3f2_78cc_1257/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d3f2_78cc_1257_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d3f2_78cc_1257_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d3f2_78cc_1257/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d3f2_78cc_1257.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d3f2_78cc_1257&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d3f2_78cc_1257"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93df_8b14_f85b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93df_8b14_f85b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_93df_8b14_f85b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_93df_8b14_f85b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_93df_8b14_f85b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_93df_8b14_f85b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_93df_8b14_f85b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_93df_8b14_f85b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_93df_8b14_f85b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f33_7dcd_5094", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f33_7dcd_5094.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f33_7dcd_5094/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f33_7dcd_5094_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f33_7dcd_5094_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f33_7dcd_5094/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f33_7dcd_5094.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f33_7dcd_5094&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9f33_7dcd_5094"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b0f7_610c_dbba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b0f7_610c_dbba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b0f7_610c_dbba/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b0f7_610c_dbba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b0f7_610c_dbba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b0f7_610c_dbba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b0f7_610c_dbba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b0f7_610c_dbba&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b0f7_610c_dbba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0fa7_3f34_4829", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0fa7_3f34_4829.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0fa7_3f34_4829/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0fa7_3f34_4829_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0fa7_3f34_4829_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0fa7_3f34_4829/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0fa7_3f34_4829.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0fa7_3f34_4829&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0fa7_3f34_4829"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a07e_88e6_9df5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a07e_88e6_9df5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a07e_88e6_9df5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a07e_88e6_9df5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a07e_88e6_9df5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a07e_88e6_9df5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a07e_88e6_9df5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a07e_88e6_9df5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a07e_88e6_9df5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1585_05b3_1c18", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1585_05b3_1c18.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1585_05b3_1c18/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1585_05b3_1c18_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1585_05b3_1c18_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1585_05b3_1c18/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1585_05b3_1c18.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1585_05b3_1c18&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1585_05b3_1c18"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3853_fbd2_51ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3853_fbd2_51ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3853_fbd2_51ac/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3853_fbd2_51ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3853_fbd2_51ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3853_fbd2_51ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3853_fbd2_51ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3853_fbd2_51ac&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3853_fbd2_51ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8125_9d62_03e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8125_9d62_03e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8125_9d62_03e1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8125_9d62_03e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8125_9d62_03e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8125_9d62_03e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8125_9d62_03e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8125_9d62_03e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8125_9d62_03e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_04f9_b029_6eed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_04f9_b029_6eed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_04f9_b029_6eed/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_04f9_b029_6eed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_04f9_b029_6eed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_04f9_b029_6eed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_04f9_b029_6eed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_04f9_b029_6eed&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_04f9_b029_6eed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c167_5e50_f128", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c167_5e50_f128.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c167_5e50_f128/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c167_5e50_f128_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c167_5e50_f128_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c167_5e50_f128/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c167_5e50_f128.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c167_5e50_f128&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c167_5e50_f128"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3c2_6ff0_f185", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3c2_6ff0_f185.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c3c2_6ff0_f185/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c3c2_6ff0_f185_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c3c2_6ff0_f185_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c3c2_6ff0_f185/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c3c2_6ff0_f185.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c3c2_6ff0_f185&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c3c2_6ff0_f185"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86a8_6be4_8418", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86a8_6be4_8418.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_86a8_6be4_8418/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86a8_6be4_8418_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86a8_6be4_8418_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86a8_6be4_8418/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86a8_6be4_8418.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86a8_6be4_8418&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_86a8_6be4_8418"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3085_caf8_e3c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3085_caf8_e3c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3085_caf8_e3c1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3085_caf8_e3c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3085_caf8_e3c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3085_caf8_e3c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3085_caf8_e3c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3085_caf8_e3c1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3085_caf8_e3c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b41a_b09e_34b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b41a_b09e_34b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b41a_b09e_34b7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b41a_b09e_34b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b41a_b09e_34b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b41a_b09e_34b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b41a_b09e_34b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b41a_b09e_34b7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b41a_b09e_34b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6762_300e_f74d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6762_300e_f74d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6762_300e_f74d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6762_300e_f74d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6762_300e_f74d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6762_300e_f74d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6762_300e_f74d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6762_300e_f74d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6762_300e_f74d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f1f_7cb1_c965", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f1f_7cb1_c965.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f1f_7cb1_c965/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f1f_7cb1_c965_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f1f_7cb1_c965_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f1f_7cb1_c965/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f1f_7cb1_c965.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f1f_7cb1_c965&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1f1f_7cb1_c965"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8f3_ed86_78f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8f3_ed86_78f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d8f3_ed86_78f2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d8f3_ed86_78f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d8f3_ed86_78f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d8f3_ed86_78f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d8f3_ed86_78f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d8f3_ed86_78f2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d8f3_ed86_78f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7a3_c2d6_b7e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7a3_c2d6_b7e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c7a3_c2d6_b7e2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c7a3_c2d6_b7e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c7a3_c2d6_b7e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c7a3_c2d6_b7e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c7a3_c2d6_b7e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c7a3_c2d6_b7e2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c7a3_c2d6_b7e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00f4_d3ef_25d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00f4_d3ef_25d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_00f4_d3ef_25d4/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_00f4_d3ef_25d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_00f4_d3ef_25d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_00f4_d3ef_25d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_00f4_d3ef_25d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_00f4_d3ef_25d4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_00f4_d3ef_25d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f4f_4ff2_dd25", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f4f_4ff2_dd25.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f4f_4ff2_dd25/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f4f_4ff2_dd25_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f4f_4ff2_dd25_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f4f_4ff2_dd25/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f4f_4ff2_dd25.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f4f_4ff2_dd25&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1f4f_4ff2_dd25"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f86_55ba_7f6a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f86_55ba_7f6a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f86_55ba_7f6a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f86_55ba_7f6a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f86_55ba_7f6a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f86_55ba_7f6a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f86_55ba_7f6a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f86_55ba_7f6a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0f86_55ba_7f6a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d771_9eec_710f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d771_9eec_710f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d771_9eec_710f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d771_9eec_710f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d771_9eec_710f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d771_9eec_710f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d771_9eec_710f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d771_9eec_710f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d771_9eec_710f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d81f_f00d_255e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d81f_f00d_255e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d81f_f00d_255e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d81f_f00d_255e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d81f_f00d_255e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d81f_f00d_255e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d81f_f00d_255e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d81f_f00d_255e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d81f_f00d_255e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_679e_0e82_86ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_679e_0e82_86ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_679e_0e82_86ab/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_679e_0e82_86ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_679e_0e82_86ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_679e_0e82_86ab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_679e_0e82_86ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_679e_0e82_86ab&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_679e_0e82_86ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58f8_a9f5_9aee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58f8_a9f5_9aee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_58f8_a9f5_9aee/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_58f8_a9f5_9aee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_58f8_a9f5_9aee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_58f8_a9f5_9aee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_58f8_a9f5_9aee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_58f8_a9f5_9aee&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_58f8_a9f5_9aee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad57_8f8d_653c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad57_8f8d_653c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ad57_8f8d_653c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ad57_8f8d_653c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ad57_8f8d_653c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ad57_8f8d_653c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ad57_8f8d_653c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ad57_8f8d_653c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ad57_8f8d_653c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_090c_3ad8_4812", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_090c_3ad8_4812.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_090c_3ad8_4812/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_090c_3ad8_4812_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_090c_3ad8_4812_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_090c_3ad8_4812/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_090c_3ad8_4812.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_090c_3ad8_4812&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_090c_3ad8_4812"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03c2_43c0_27a9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03c2_43c0_27a9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03c2_43c0_27a9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03c2_43c0_27a9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03c2_43c0_27a9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03c2_43c0_27a9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03c2_43c0_27a9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03c2_43c0_27a9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_03c2_43c0_27a9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9db2_d97e_63e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9db2_d97e_63e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9db2_d97e_63e0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9db2_d97e_63e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9db2_d97e_63e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9db2_d97e_63e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9db2_d97e_63e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9db2_d97e_63e0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9db2_d97e_63e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f398_de3e_daa1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f398_de3e_daa1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f398_de3e_daa1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f398_de3e_daa1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f398_de3e_daa1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f398_de3e_daa1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f398_de3e_daa1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f398_de3e_daa1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f398_de3e_daa1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28a9_3869_a01f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28a9_3869_a01f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28a9_3869_a01f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28a9_3869_a01f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28a9_3869_a01f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28a9_3869_a01f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28a9_3869_a01f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28a9_3869_a01f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_28a9_3869_a01f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85a1_a457_bfe6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85a1_a457_bfe6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_85a1_a457_bfe6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_85a1_a457_bfe6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_85a1_a457_bfe6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85a1_a457_bfe6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85a1_a457_bfe6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85a1_a457_bfe6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_85a1_a457_bfe6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5397_aa07_5ad8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5397_aa07_5ad8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5397_aa07_5ad8/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5397_aa07_5ad8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5397_aa07_5ad8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5397_aa07_5ad8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5397_aa07_5ad8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5397_aa07_5ad8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5397_aa07_5ad8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9536_bb5a_0d64", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9536_bb5a_0d64.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9536_bb5a_0d64/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9536_bb5a_0d64_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9536_bb5a_0d64_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9536_bb5a_0d64/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9536_bb5a_0d64.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9536_bb5a_0d64&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9536_bb5a_0d64"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfd1_3f97_4f2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfd1_3f97_4f2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bfd1_3f97_4f2d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bfd1_3f97_4f2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bfd1_3f97_4f2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bfd1_3f97_4f2d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bfd1_3f97_4f2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bfd1_3f97_4f2d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bfd1_3f97_4f2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e1a2_c661_ad3a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e1a2_c661_ad3a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e1a2_c661_ad3a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e1a2_c661_ad3a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e1a2_c661_ad3a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e1a2_c661_ad3a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e1a2_c661_ad3a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e1a2_c661_ad3a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e1a2_c661_ad3a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ec1_a0c5_ed73", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ec1_a0c5_ed73.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ec1_a0c5_ed73/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ec1_a0c5_ed73_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ec1_a0c5_ed73_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ec1_a0c5_ed73/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ec1_a0c5_ed73.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ec1_a0c5_ed73&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5ec1_a0c5_ed73"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccb1_955e_65ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccb1_955e_65ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ccb1_955e_65ce/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ccb1_955e_65ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ccb1_955e_65ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ccb1_955e_65ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ccb1_955e_65ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ccb1_955e_65ce&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ccb1_955e_65ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c2b_de79_554d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c2b_de79_554d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2c2b_de79_554d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2c2b_de79_554d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2c2b_de79_554d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2c2b_de79_554d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2c2b_de79_554d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2c2b_de79_554d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2c2b_de79_554d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54f7_b84f_a608", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54f7_b84f_a608.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54f7_b84f_a608/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54f7_b84f_a608_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54f7_b84f_a608_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54f7_b84f_a608/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54f7_b84f_a608.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54f7_b84f_a608&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_54f7_b84f_a608"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56c9_9f9e_349e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56c9_9f9e_349e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_56c9_9f9e_349e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_56c9_9f9e_349e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_56c9_9f9e_349e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_56c9_9f9e_349e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_56c9_9f9e_349e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_56c9_9f9e_349e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_56c9_9f9e_349e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ab1_cada_7747", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ab1_cada_7747.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2ab1_cada_7747/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2ab1_cada_7747_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2ab1_cada_7747_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2ab1_cada_7747/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2ab1_cada_7747.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2ab1_cada_7747&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2ab1_cada_7747"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e82_9583_9ecb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e82_9583_9ecb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5e82_9583_9ecb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5e82_9583_9ecb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5e82_9583_9ecb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5e82_9583_9ecb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5e82_9583_9ecb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5e82_9583_9ecb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5e82_9583_9ecb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bbb1_edfd_2a6d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bbb1_edfd_2a6d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bbb1_edfd_2a6d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bbb1_edfd_2a6d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bbb1_edfd_2a6d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bbb1_edfd_2a6d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bbb1_edfd_2a6d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bbb1_edfd_2a6d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bbb1_edfd_2a6d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0fb9_dfa6_3547", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0fb9_dfa6_3547.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0fb9_dfa6_3547/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0fb9_dfa6_3547_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0fb9_dfa6_3547_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0fb9_dfa6_3547/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0fb9_dfa6_3547.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0fb9_dfa6_3547&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0fb9_dfa6_3547"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc29_6f50_a349", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc29_6f50_a349.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bc29_6f50_a349/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bc29_6f50_a349_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bc29_6f50_a349_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bc29_6f50_a349/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bc29_6f50_a349.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bc29_6f50_a349&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bc29_6f50_a349"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efa9_c0db_1ecf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efa9_c0db_1ecf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_efa9_c0db_1ecf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_efa9_c0db_1ecf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_efa9_c0db_1ecf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_efa9_c0db_1ecf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_efa9_c0db_1ecf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_efa9_c0db_1ecf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_efa9_c0db_1ecf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f63e_2934_78d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f63e_2934_78d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f63e_2934_78d0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f63e_2934_78d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f63e_2934_78d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f63e_2934_78d0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f63e_2934_78d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f63e_2934_78d0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f63e_2934_78d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3afd_2e32_17f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3afd_2e32_17f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3afd_2e32_17f9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3afd_2e32_17f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3afd_2e32_17f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3afd_2e32_17f9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3afd_2e32_17f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3afd_2e32_17f9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3afd_2e32_17f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee6d_0990_484a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee6d_0990_484a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ee6d_0990_484a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ee6d_0990_484a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ee6d_0990_484a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ee6d_0990_484a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ee6d_0990_484a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ee6d_0990_484a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ee6d_0990_484a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d823_0c51_bbb8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d823_0c51_bbb8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d823_0c51_bbb8/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d823_0c51_bbb8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d823_0c51_bbb8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d823_0c51_bbb8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d823_0c51_bbb8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d823_0c51_bbb8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d823_0c51_bbb8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ffe_eaf6_45a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ffe_eaf6_45a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ffe_eaf6_45a2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ffe_eaf6_45a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ffe_eaf6_45a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ffe_eaf6_45a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ffe_eaf6_45a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ffe_eaf6_45a2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3ffe_eaf6_45a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c57e_2a05_38d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c57e_2a05_38d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c57e_2a05_38d0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c57e_2a05_38d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c57e_2a05_38d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c57e_2a05_38d0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c57e_2a05_38d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c57e_2a05_38d0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c57e_2a05_38d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f66_5568_2c22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f66_5568_2c22.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3f66_5568_2c22/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3f66_5568_2c22_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3f66_5568_2c22_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3f66_5568_2c22/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3f66_5568_2c22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3f66_5568_2c22&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3f66_5568_2c22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c6c0_a586_0fb7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c6c0_a586_0fb7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c6c0_a586_0fb7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c6c0_a586_0fb7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c6c0_a586_0fb7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c6c0_a586_0fb7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c6c0_a586_0fb7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c6c0_a586_0fb7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c6c0_a586_0fb7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6cc_c192_8b6f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6cc_c192_8b6f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d6cc_c192_8b6f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d6cc_c192_8b6f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d6cc_c192_8b6f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d6cc_c192_8b6f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d6cc_c192_8b6f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d6cc_c192_8b6f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d6cc_c192_8b6f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f9a_7c2d_0657", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f9a_7c2d_0657.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6f9a_7c2d_0657/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6f9a_7c2d_0657_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6f9a_7c2d_0657_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6f9a_7c2d_0657/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6f9a_7c2d_0657.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6f9a_7c2d_0657&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6f9a_7c2d_0657"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec45_3225_8906", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec45_3225_8906.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ec45_3225_8906/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ec45_3225_8906_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ec45_3225_8906_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ec45_3225_8906/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ec45_3225_8906.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ec45_3225_8906&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ec45_3225_8906"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee60_4c16_560b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee60_4c16_560b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ee60_4c16_560b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ee60_4c16_560b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ee60_4c16_560b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ee60_4c16_560b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ee60_4c16_560b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ee60_4c16_560b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ee60_4c16_560b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed13_c858_a0d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed13_c858_a0d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ed13_c858_a0d7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ed13_c858_a0d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ed13_c858_a0d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ed13_c858_a0d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ed13_c858_a0d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ed13_c858_a0d7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ed13_c858_a0d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4588_81f1_aa2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4588_81f1_aa2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4588_81f1_aa2f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4588_81f1_aa2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4588_81f1_aa2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4588_81f1_aa2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4588_81f1_aa2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4588_81f1_aa2f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4588_81f1_aa2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e552_37ea_f767", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e552_37ea_f767.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e552_37ea_f767/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e552_37ea_f767_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e552_37ea_f767_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e552_37ea_f767/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e552_37ea_f767.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e552_37ea_f767&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e552_37ea_f767"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b124_bea8_ef3c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b124_bea8_ef3c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b124_bea8_ef3c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b124_bea8_ef3c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b124_bea8_ef3c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b124_bea8_ef3c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b124_bea8_ef3c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b124_bea8_ef3c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b124_bea8_ef3c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4eac_7aa3_6eaf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4eac_7aa3_6eaf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4eac_7aa3_6eaf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4eac_7aa3_6eaf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4eac_7aa3_6eaf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4eac_7aa3_6eaf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4eac_7aa3_6eaf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4eac_7aa3_6eaf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4eac_7aa3_6eaf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_698d_a3ce_9f19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_698d_a3ce_9f19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_698d_a3ce_9f19/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_698d_a3ce_9f19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_698d_a3ce_9f19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_698d_a3ce_9f19/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_698d_a3ce_9f19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_698d_a3ce_9f19&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_698d_a3ce_9f19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02ea_3a42_8120", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02ea_3a42_8120.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_02ea_3a42_8120/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_02ea_3a42_8120_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_02ea_3a42_8120_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_02ea_3a42_8120/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_02ea_3a42_8120.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_02ea_3a42_8120&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_02ea_3a42_8120"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2979_b42b_d084", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2979_b42b_d084.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2979_b42b_d084/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2979_b42b_d084_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2979_b42b_d084_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2979_b42b_d084/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2979_b42b_d084.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2979_b42b_d084&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2979_b42b_d084"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f91_b136_a3f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f91_b136_a3f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f91_b136_a3f6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f91_b136_a3f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f91_b136_a3f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f91_b136_a3f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f91_b136_a3f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f91_b136_a3f6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7f91_b136_a3f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2982_688d_97e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2982_688d_97e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2982_688d_97e3/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2982_688d_97e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2982_688d_97e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2982_688d_97e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2982_688d_97e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2982_688d_97e3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2982_688d_97e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf6a_07a8_f9c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf6a_07a8_f9c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf6a_07a8_f9c1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf6a_07a8_f9c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf6a_07a8_f9c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf6a_07a8_f9c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf6a_07a8_f9c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf6a_07a8_f9c1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cf6a_07a8_f9c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eae6_f802_fc65", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eae6_f802_fc65.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eae6_f802_fc65/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eae6_f802_fc65_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eae6_f802_fc65_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eae6_f802_fc65/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eae6_f802_fc65.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eae6_f802_fc65&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eae6_f802_fc65"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb11_981e_4e8b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb11_981e_4e8b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bb11_981e_4e8b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bb11_981e_4e8b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bb11_981e_4e8b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bb11_981e_4e8b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bb11_981e_4e8b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bb11_981e_4e8b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bb11_981e_4e8b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30b3_e6bd_f0ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30b3_e6bd_f0ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_30b3_e6bd_f0ae/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_30b3_e6bd_f0ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_30b3_e6bd_f0ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_30b3_e6bd_f0ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_30b3_e6bd_f0ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_30b3_e6bd_f0ae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_30b3_e6bd_f0ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c04c_d718_b2ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c04c_d718_b2ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c04c_d718_b2ea/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c04c_d718_b2ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c04c_d718_b2ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c04c_d718_b2ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c04c_d718_b2ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c04c_d718_b2ea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c04c_d718_b2ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d73_c74a_4f77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d73_c74a_4f77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d73_c74a_4f77/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d73_c74a_4f77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d73_c74a_4f77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d73_c74a_4f77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d73_c74a_4f77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d73_c74a_4f77&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8d73_c74a_4f77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d3d_dd03_db58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d3d_dd03_db58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0d3d_dd03_db58/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0d3d_dd03_db58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0d3d_dd03_db58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0d3d_dd03_db58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0d3d_dd03_db58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0d3d_dd03_db58&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0d3d_dd03_db58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12f9_3dcb_71ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12f9_3dcb_71ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_12f9_3dcb_71ea/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_12f9_3dcb_71ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_12f9_3dcb_71ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_12f9_3dcb_71ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_12f9_3dcb_71ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_12f9_3dcb_71ea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_12f9_3dcb_71ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09b7_eabf_336f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09b7_eabf_336f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_09b7_eabf_336f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_09b7_eabf_336f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_09b7_eabf_336f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_09b7_eabf_336f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_09b7_eabf_336f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_09b7_eabf_336f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_09b7_eabf_336f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_529b_8418_f85e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_529b_8418_f85e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_529b_8418_f85e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_529b_8418_f85e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_529b_8418_f85e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_529b_8418_f85e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_529b_8418_f85e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_529b_8418_f85e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_529b_8418_f85e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df15_27a1_6da1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df15_27a1_6da1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_df15_27a1_6da1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_df15_27a1_6da1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_df15_27a1_6da1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_df15_27a1_6da1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_df15_27a1_6da1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_df15_27a1_6da1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_df15_27a1_6da1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05b5_db6b_3e3a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05b5_db6b_3e3a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_05b5_db6b_3e3a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_05b5_db6b_3e3a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_05b5_db6b_3e3a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_05b5_db6b_3e3a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_05b5_db6b_3e3a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_05b5_db6b_3e3a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_05b5_db6b_3e3a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0401_8406_698d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0401_8406_698d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0401_8406_698d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0401_8406_698d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0401_8406_698d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0401_8406_698d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0401_8406_698d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0401_8406_698d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0401_8406_698d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a50_6552_adbd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a50_6552_adbd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a50_6552_adbd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a50_6552_adbd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a50_6552_adbd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a50_6552_adbd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a50_6552_adbd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a50_6552_adbd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6a50_6552_adbd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_def8_ad3c_96bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_def8_ad3c_96bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_def8_ad3c_96bb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_def8_ad3c_96bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_def8_ad3c_96bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_def8_ad3c_96bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_def8_ad3c_96bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_def8_ad3c_96bb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_def8_ad3c_96bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b3db_1e6f_874d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b3db_1e6f_874d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b3db_1e6f_874d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b3db_1e6f_874d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b3db_1e6f_874d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b3db_1e6f_874d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b3db_1e6f_874d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b3db_1e6f_874d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b3db_1e6f_874d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db4e_abe4_b099", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db4e_abe4_b099.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db4e_abe4_b099/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db4e_abe4_b099_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db4e_abe4_b099_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db4e_abe4_b099/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db4e_abe4_b099.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db4e_abe4_b099&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_db4e_abe4_b099"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ff7_032f_492b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ff7_032f_492b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ff7_032f_492b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ff7_032f_492b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ff7_032f_492b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ff7_032f_492b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ff7_032f_492b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ff7_032f_492b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8ff7_032f_492b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1a4_5aa6_4d5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1a4_5aa6_4d5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b1a4_5aa6_4d5f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b1a4_5aa6_4d5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b1a4_5aa6_4d5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b1a4_5aa6_4d5f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b1a4_5aa6_4d5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b1a4_5aa6_4d5f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b1a4_5aa6_4d5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef03_7432_921d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef03_7432_921d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ef03_7432_921d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ef03_7432_921d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ef03_7432_921d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ef03_7432_921d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ef03_7432_921d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ef03_7432_921d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ef03_7432_921d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ab1_fbfd_37aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ab1_fbfd_37aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6ab1_fbfd_37aa/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6ab1_fbfd_37aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6ab1_fbfd_37aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ab1_fbfd_37aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ab1_fbfd_37aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ab1_fbfd_37aa&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6ab1_fbfd_37aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9134_6af7_cdcd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9134_6af7_cdcd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9134_6af7_cdcd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9134_6af7_cdcd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9134_6af7_cdcd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9134_6af7_cdcd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9134_6af7_cdcd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9134_6af7_cdcd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9134_6af7_cdcd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f108_9936_9ac1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f108_9936_9ac1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f108_9936_9ac1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f108_9936_9ac1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f108_9936_9ac1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f108_9936_9ac1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f108_9936_9ac1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f108_9936_9ac1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f108_9936_9ac1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6155_d11e_aa40", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6155_d11e_aa40.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6155_d11e_aa40/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6155_d11e_aa40_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6155_d11e_aa40_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6155_d11e_aa40/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6155_d11e_aa40.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6155_d11e_aa40&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6155_d11e_aa40"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ff5_1748_e1d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ff5_1748_e1d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ff5_1748_e1d3/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ff5_1748_e1d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ff5_1748_e1d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ff5_1748_e1d3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ff5_1748_e1d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ff5_1748_e1d3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4ff5_1748_e1d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa95_3ac3_7719", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa95_3ac3_7719.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fa95_3ac3_7719/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fa95_3ac3_7719_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fa95_3ac3_7719_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fa95_3ac3_7719/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fa95_3ac3_7719.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fa95_3ac3_7719&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fa95_3ac3_7719"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4256_db8a_71a9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4256_db8a_71a9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4256_db8a_71a9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4256_db8a_71a9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4256_db8a_71a9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4256_db8a_71a9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4256_db8a_71a9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4256_db8a_71a9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4256_db8a_71a9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1b4_807d_6ab2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1b4_807d_6ab2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b1b4_807d_6ab2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b1b4_807d_6ab2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b1b4_807d_6ab2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b1b4_807d_6ab2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b1b4_807d_6ab2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b1b4_807d_6ab2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b1b4_807d_6ab2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7c6_afac_4adb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7c6_afac_4adb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e7c6_afac_4adb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e7c6_afac_4adb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e7c6_afac_4adb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e7c6_afac_4adb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e7c6_afac_4adb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e7c6_afac_4adb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e7c6_afac_4adb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b236_5657_f431", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b236_5657_f431.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b236_5657_f431/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b236_5657_f431_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b236_5657_f431_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b236_5657_f431/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b236_5657_f431.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b236_5657_f431&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b236_5657_f431"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_23ce_69d3_65cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_23ce_69d3_65cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_23ce_69d3_65cb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_23ce_69d3_65cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_23ce_69d3_65cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_23ce_69d3_65cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_23ce_69d3_65cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_23ce_69d3_65cb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_23ce_69d3_65cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ac92_06d9_ca1d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ac92_06d9_ca1d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ac92_06d9_ca1d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ac92_06d9_ca1d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ac92_06d9_ca1d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ac92_06d9_ca1d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ac92_06d9_ca1d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ac92_06d9_ca1d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ac92_06d9_ca1d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e5d_a7f6_72e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e5d_a7f6_72e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2e5d_a7f6_72e3/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2e5d_a7f6_72e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2e5d_a7f6_72e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2e5d_a7f6_72e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2e5d_a7f6_72e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2e5d_a7f6_72e3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2e5d_a7f6_72e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4def_02da_3d00", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4def_02da_3d00.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4def_02da_3d00/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4def_02da_3d00_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4def_02da_3d00_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4def_02da_3d00/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4def_02da_3d00.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4def_02da_3d00&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4def_02da_3d00"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d40_1e3a_cecc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d40_1e3a_cecc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5d40_1e3a_cecc/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5d40_1e3a_cecc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5d40_1e3a_cecc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5d40_1e3a_cecc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5d40_1e3a_cecc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5d40_1e3a_cecc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5d40_1e3a_cecc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95e6_f42c_06c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95e6_f42c_06c5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_95e6_f42c_06c5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_95e6_f42c_06c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_95e6_f42c_06c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_95e6_f42c_06c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_95e6_f42c_06c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_95e6_f42c_06c5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_95e6_f42c_06c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c99_29a7_8a23", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c99_29a7_8a23.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c99_29a7_8a23/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c99_29a7_8a23_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c99_29a7_8a23_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c99_29a7_8a23/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c99_29a7_8a23.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c99_29a7_8a23&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0c99_29a7_8a23"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21fb_d286_1b5c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21fb_d286_1b5c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_21fb_d286_1b5c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_21fb_d286_1b5c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_21fb_d286_1b5c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_21fb_d286_1b5c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_21fb_d286_1b5c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_21fb_d286_1b5c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_21fb_d286_1b5c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7bb_4313_78b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7bb_4313_78b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d7bb_4313_78b0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d7bb_4313_78b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d7bb_4313_78b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d7bb_4313_78b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d7bb_4313_78b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d7bb_4313_78b0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d7bb_4313_78b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5fd_c11b_b8fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5fd_c11b_b8fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5fd_c11b_b8fd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5fd_c11b_b8fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5fd_c11b_b8fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5fd_c11b_b8fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5fd_c11b_b8fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5fd_c11b_b8fd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a5fd_c11b_b8fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d97f_3b6e_8629", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d97f_3b6e_8629.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d97f_3b6e_8629/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d97f_3b6e_8629_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d97f_3b6e_8629_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d97f_3b6e_8629/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d97f_3b6e_8629.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d97f_3b6e_8629&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d97f_3b6e_8629"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c744_3f73_a638", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c744_3f73_a638.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c744_3f73_a638/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c744_3f73_a638_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c744_3f73_a638_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c744_3f73_a638/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c744_3f73_a638.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c744_3f73_a638&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c744_3f73_a638"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_11db_4c41_87a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_11db_4c41_87a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_11db_4c41_87a2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_11db_4c41_87a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_11db_4c41_87a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_11db_4c41_87a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_11db_4c41_87a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_11db_4c41_87a2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_11db_4c41_87a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc3a_eb0c_b1ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc3a_eb0c_b1ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc3a_eb0c_b1ec/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc3a_eb0c_b1ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc3a_eb0c_b1ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc3a_eb0c_b1ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc3a_eb0c_b1ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc3a_eb0c_b1ec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cc3a_eb0c_b1ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c84b_25fd_9e65", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c84b_25fd_9e65.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c84b_25fd_9e65/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c84b_25fd_9e65_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c84b_25fd_9e65_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c84b_25fd_9e65/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c84b_25fd_9e65.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c84b_25fd_9e65&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c84b_25fd_9e65"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebfc_fb9d_6189", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebfc_fb9d_6189.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ebfc_fb9d_6189/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ebfc_fb9d_6189_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ebfc_fb9d_6189_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ebfc_fb9d_6189/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ebfc_fb9d_6189.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ebfc_fb9d_6189&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ebfc_fb9d_6189"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7b4_3b0c_f476", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7b4_3b0c_f476.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f7b4_3b0c_f476/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f7b4_3b0c_f476_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f7b4_3b0c_f476_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f7b4_3b0c_f476/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f7b4_3b0c_f476.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f7b4_3b0c_f476&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f7b4_3b0c_f476"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_374b_e87e_8bb2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_374b_e87e_8bb2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_374b_e87e_8bb2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_374b_e87e_8bb2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_374b_e87e_8bb2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_374b_e87e_8bb2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_374b_e87e_8bb2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_374b_e87e_8bb2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_374b_e87e_8bb2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c68_63e3_74e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c68_63e3_74e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4c68_63e3_74e2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4c68_63e3_74e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4c68_63e3_74e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c68_63e3_74e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c68_63e3_74e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c68_63e3_74e2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4c68_63e3_74e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aed4_5fb3_571e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aed4_5fb3_571e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aed4_5fb3_571e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aed4_5fb3_571e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aed4_5fb3_571e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aed4_5fb3_571e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aed4_5fb3_571e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aed4_5fb3_571e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aed4_5fb3_571e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e742_428a_b1a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e742_428a_b1a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e742_428a_b1a0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e742_428a_b1a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e742_428a_b1a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e742_428a_b1a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e742_428a_b1a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e742_428a_b1a0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e742_428a_b1a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0380_80c0_660b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0380_80c0_660b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0380_80c0_660b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0380_80c0_660b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0380_80c0_660b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0380_80c0_660b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0380_80c0_660b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0380_80c0_660b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0380_80c0_660b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a9b_fcb6_96ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a9b_fcb6_96ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1a9b_fcb6_96ea/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1a9b_fcb6_96ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1a9b_fcb6_96ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1a9b_fcb6_96ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1a9b_fcb6_96ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1a9b_fcb6_96ea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1a9b_fcb6_96ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c62_a8cb_33c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c62_a8cb_33c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c62_a8cb_33c3/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c62_a8cb_33c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c62_a8cb_33c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c62_a8cb_33c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c62_a8cb_33c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c62_a8cb_33c3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5c62_a8cb_33c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b59_e8e8_98bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b59_e8e8_98bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0b59_e8e8_98bd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0b59_e8e8_98bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0b59_e8e8_98bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0b59_e8e8_98bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0b59_e8e8_98bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0b59_e8e8_98bd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0b59_e8e8_98bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b978_84b4_470a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b978_84b4_470a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b978_84b4_470a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b978_84b4_470a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b978_84b4_470a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b978_84b4_470a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b978_84b4_470a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b978_84b4_470a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b978_84b4_470a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f394_91fd_2d5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f394_91fd_2d5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f394_91fd_2d5f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f394_91fd_2d5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f394_91fd_2d5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f394_91fd_2d5f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f394_91fd_2d5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f394_91fd_2d5f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f394_91fd_2d5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7bc3_5322_a251", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7bc3_5322_a251.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7bc3_5322_a251/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7bc3_5322_a251_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7bc3_5322_a251_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7bc3_5322_a251/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7bc3_5322_a251.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7bc3_5322_a251&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7bc3_5322_a251"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddbf_488d_c9f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddbf_488d_c9f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ddbf_488d_c9f5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ddbf_488d_c9f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ddbf_488d_c9f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ddbf_488d_c9f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ddbf_488d_c9f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ddbf_488d_c9f5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ddbf_488d_c9f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2817_f25c_cf7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2817_f25c_cf7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2817_f25c_cf7b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2817_f25c_cf7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2817_f25c_cf7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2817_f25c_cf7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2817_f25c_cf7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2817_f25c_cf7b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2817_f25c_cf7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79b0_e766_ec29", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79b0_e766_ec29.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_79b0_e766_ec29/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_79b0_e766_ec29_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_79b0_e766_ec29_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_79b0_e766_ec29/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_79b0_e766_ec29.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_79b0_e766_ec29&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_79b0_e766_ec29"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd81_0ecd_1b90", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd81_0ecd_1b90.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fd81_0ecd_1b90/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fd81_0ecd_1b90_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fd81_0ecd_1b90_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fd81_0ecd_1b90/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fd81_0ecd_1b90.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fd81_0ecd_1b90&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fd81_0ecd_1b90"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8348_0a28_a661", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8348_0a28_a661.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8348_0a28_a661/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8348_0a28_a661_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8348_0a28_a661_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8348_0a28_a661/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8348_0a28_a661.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8348_0a28_a661&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8348_0a28_a661"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_29a7_df52_ad48", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_29a7_df52_ad48.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_29a7_df52_ad48/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_29a7_df52_ad48_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_29a7_df52_ad48_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_29a7_df52_ad48/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_29a7_df52_ad48.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_29a7_df52_ad48&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_29a7_df52_ad48"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2aa_f30b_0c0d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2aa_f30b_0c0d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f2aa_f30b_0c0d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f2aa_f30b_0c0d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f2aa_f30b_0c0d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f2aa_f30b_0c0d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f2aa_f30b_0c0d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f2aa_f30b_0c0d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f2aa_f30b_0c0d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e36_6aab_5a5d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e36_6aab_5a5d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2e36_6aab_5a5d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2e36_6aab_5a5d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2e36_6aab_5a5d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2e36_6aab_5a5d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2e36_6aab_5a5d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2e36_6aab_5a5d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2e36_6aab_5a5d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c992_1b9b_03eb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c992_1b9b_03eb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c992_1b9b_03eb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c992_1b9b_03eb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c992_1b9b_03eb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c992_1b9b_03eb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c992_1b9b_03eb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c992_1b9b_03eb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c992_1b9b_03eb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e394_46c3_ea72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e394_46c3_ea72.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e394_46c3_ea72/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e394_46c3_ea72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e394_46c3_ea72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e394_46c3_ea72/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e394_46c3_ea72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e394_46c3_ea72&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e394_46c3_ea72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d491_401f_37a9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d491_401f_37a9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d491_401f_37a9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d491_401f_37a9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d491_401f_37a9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d491_401f_37a9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d491_401f_37a9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d491_401f_37a9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d491_401f_37a9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ee0_70cc_c2f7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ee0_70cc_c2f7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ee0_70cc_c2f7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ee0_70cc_c2f7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ee0_70cc_c2f7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ee0_70cc_c2f7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ee0_70cc_c2f7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ee0_70cc_c2f7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7ee0_70cc_c2f7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfe6_dfb6_0344", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfe6_dfb6_0344.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dfe6_dfb6_0344/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dfe6_dfb6_0344_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dfe6_dfb6_0344_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dfe6_dfb6_0344/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dfe6_dfb6_0344.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dfe6_dfb6_0344&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dfe6_dfb6_0344"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ae6_130e_5db3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ae6_130e_5db3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ae6_130e_5db3/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ae6_130e_5db3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ae6_130e_5db3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ae6_130e_5db3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ae6_130e_5db3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ae6_130e_5db3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5ae6_130e_5db3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10a8_e2f2_3b8a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10a8_e2f2_3b8a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_10a8_e2f2_3b8a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_10a8_e2f2_3b8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_10a8_e2f2_3b8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_10a8_e2f2_3b8a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_10a8_e2f2_3b8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_10a8_e2f2_3b8a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_10a8_e2f2_3b8a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5a4_1658_8b7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5a4_1658_8b7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5a4_1658_8b7b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5a4_1658_8b7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5a4_1658_8b7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5a4_1658_8b7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5a4_1658_8b7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5a4_1658_8b7b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c5a4_1658_8b7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b3fa_8a5b_c396", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b3fa_8a5b_c396.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b3fa_8a5b_c396/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b3fa_8a5b_c396_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b3fa_8a5b_c396_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b3fa_8a5b_c396/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b3fa_8a5b_c396.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b3fa_8a5b_c396&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b3fa_8a5b_c396"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6447_0b53_f1d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6447_0b53_f1d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6447_0b53_f1d0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6447_0b53_f1d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6447_0b53_f1d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6447_0b53_f1d0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6447_0b53_f1d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6447_0b53_f1d0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6447_0b53_f1d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d200_e90c_aceb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d200_e90c_aceb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d200_e90c_aceb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d200_e90c_aceb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d200_e90c_aceb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d200_e90c_aceb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d200_e90c_aceb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d200_e90c_aceb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d200_e90c_aceb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c181_4a5b_f920", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c181_4a5b_f920.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c181_4a5b_f920/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c181_4a5b_f920_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c181_4a5b_f920_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c181_4a5b_f920/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c181_4a5b_f920.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c181_4a5b_f920&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c181_4a5b_f920"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f9a_e7f4_f0d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f9a_e7f4_f0d2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f9a_e7f4_f0d2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f9a_e7f4_f0d2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f9a_e7f4_f0d2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f9a_e7f4_f0d2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f9a_e7f4_f0d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f9a_e7f4_f0d2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2f9a_e7f4_f0d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_879e_48aa_5ae3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_879e_48aa_5ae3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_879e_48aa_5ae3/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_879e_48aa_5ae3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_879e_48aa_5ae3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_879e_48aa_5ae3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_879e_48aa_5ae3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_879e_48aa_5ae3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_879e_48aa_5ae3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6145_f379_eeb0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6145_f379_eeb0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6145_f379_eeb0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6145_f379_eeb0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6145_f379_eeb0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6145_f379_eeb0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6145_f379_eeb0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6145_f379_eeb0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6145_f379_eeb0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00b7_4bf0_4236", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00b7_4bf0_4236.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_00b7_4bf0_4236/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_00b7_4bf0_4236_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_00b7_4bf0_4236_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_00b7_4bf0_4236/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_00b7_4bf0_4236.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_00b7_4bf0_4236&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_00b7_4bf0_4236"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d017_c176_da37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d017_c176_da37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d017_c176_da37/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d017_c176_da37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d017_c176_da37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d017_c176_da37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d017_c176_da37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d017_c176_da37&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d017_c176_da37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0043_1958_f221", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0043_1958_f221.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0043_1958_f221/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0043_1958_f221_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0043_1958_f221_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0043_1958_f221/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0043_1958_f221.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0043_1958_f221&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0043_1958_f221"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab9a_fb18_725a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab9a_fb18_725a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab9a_fb18_725a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab9a_fb18_725a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab9a_fb18_725a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab9a_fb18_725a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab9a_fb18_725a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab9a_fb18_725a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ab9a_fb18_725a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cefc_19f6_aa60", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cefc_19f6_aa60.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cefc_19f6_aa60/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cefc_19f6_aa60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cefc_19f6_aa60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cefc_19f6_aa60/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cefc_19f6_aa60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cefc_19f6_aa60&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cefc_19f6_aa60"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a92_b1ec_2a80", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a92_b1ec_2a80.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a92_b1ec_2a80/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a92_b1ec_2a80_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a92_b1ec_2a80_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a92_b1ec_2a80/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a92_b1ec_2a80.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a92_b1ec_2a80&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0a92_b1ec_2a80"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_861e_fc17_fa86", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_861e_fc17_fa86.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_861e_fc17_fa86/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_861e_fc17_fa86_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_861e_fc17_fa86_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_861e_fc17_fa86/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_861e_fc17_fa86.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_861e_fc17_fa86&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_861e_fc17_fa86"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6ae_2efd_d0ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6ae_2efd_d0ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f6ae_2efd_d0ea/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f6ae_2efd_d0ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f6ae_2efd_d0ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f6ae_2efd_d0ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f6ae_2efd_d0ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f6ae_2efd_d0ea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f6ae_2efd_d0ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f64_7125_dfcd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f64_7125_dfcd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6f64_7125_dfcd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6f64_7125_dfcd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6f64_7125_dfcd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6f64_7125_dfcd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6f64_7125_dfcd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6f64_7125_dfcd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6f64_7125_dfcd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c74_c965_4d19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c74_c965_4d19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c74_c965_4d19/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c74_c965_4d19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c74_c965_4d19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c74_c965_4d19/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c74_c965_4d19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c74_c965_4d19&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5c74_c965_4d19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f40b_de01_f791", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f40b_de01_f791.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f40b_de01_f791/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f40b_de01_f791_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f40b_de01_f791_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f40b_de01_f791/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f40b_de01_f791.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f40b_de01_f791&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f40b_de01_f791"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c56_688a_131b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c56_688a_131b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2c56_688a_131b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 1st Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2c56_688a_131b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2c56_688a_131b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2c56_688a_131b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2c56_688a_131b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2c56_688a_131b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2c56_688a_131b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f92_6e84_2159", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f92_6e84_2159.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f92_6e84_2159/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 1st Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f92_6e84_2159_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f92_6e84_2159_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f92_6e84_2159/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f92_6e84_2159.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f92_6e84_2159&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0f92_6e84_2159"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c83_03dd_6389", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c83_03dd_6389.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c83_03dd_6389/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 1st Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c83_03dd_6389_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c83_03dd_6389_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c83_03dd_6389/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c83_03dd_6389.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c83_03dd_6389&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5c83_03dd_6389"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eed5_a43f_c87f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eed5_a43f_c87f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eed5_a43f_c87f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 3rd Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eed5_a43f_c87f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eed5_a43f_c87f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eed5_a43f_c87f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eed5_a43f_c87f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eed5_a43f_c87f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_eed5_a43f_c87f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1070_3776_646e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1070_3776_646e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1070_3776_646e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 3rd Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1070_3776_646e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1070_3776_646e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1070_3776_646e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1070_3776_646e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1070_3776_646e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1070_3776_646e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d384_3b56_de4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d384_3b56_de4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d384_3b56_de4d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 3rd Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d384_3b56_de4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d384_3b56_de4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d384_3b56_de4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d384_3b56_de4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d384_3b56_de4d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d384_3b56_de4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b8c_d055_8039", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b8c_d055_8039.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4b8c_d055_8039/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 5th Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4b8c_d055_8039_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4b8c_d055_8039_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4b8c_d055_8039/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4b8c_d055_8039.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4b8c_d055_8039&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4b8c_d055_8039"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_064e_2410_cfc1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_064e_2410_cfc1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_064e_2410_cfc1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 5th Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_064e_2410_cfc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_064e_2410_cfc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_064e_2410_cfc1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_064e_2410_cfc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_064e_2410_cfc1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_064e_2410_cfc1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_665d_3a46_ab3f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_665d_3a46_ab3f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_665d_3a46_ab3f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 5th Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_665d_3a46_ab3f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_665d_3a46_ab3f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_665d_3a46_ab3f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_665d_3a46_ab3f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_665d_3a46_ab3f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_665d_3a46_ab3f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4d9_8da7_6aaa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4d9_8da7_6aaa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f4d9_8da7_6aaa/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Standard Deviation at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f4d9_8da7_6aaa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f4d9_8da7_6aaa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f4d9_8da7_6aaa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f4d9_8da7_6aaa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f4d9_8da7_6aaa&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f4d9_8da7_6aaa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb93_4a1f_1adb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb93_4a1f_1adb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb93_4a1f_1adb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Standard Deviation at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb93_4a1f_1adb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb93_4a1f_1adb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb93_4a1f_1adb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb93_4a1f_1adb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb93_4a1f_1adb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fb93_4a1f_1adb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe6e_ac11_21b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe6e_ac11_21b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fe6e_ac11_21b7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Standard Deviation at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fe6e_ac11_21b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fe6e_ac11_21b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fe6e_ac11_21b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fe6e_ac11_21b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fe6e_ac11_21b7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fe6e_ac11_21b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_023b_25d4_a466", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_023b_25d4_a466.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_023b_25d4_a466/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (air.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, air.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_023b_25d4_a466_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_023b_25d4_a466_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_023b_25d4_a466/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_023b_25d4_a466.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_023b_25d4_a466&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_023b_25d4_a466"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1b99_ef6a_67ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1b99_ef6a_67ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1b99_ef6a_67ca/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (air.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, air.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1b99_ef6a_67ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1b99_ef6a_67ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1b99_ef6a_67ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1b99_ef6a_67ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1b99_ef6a_67ca&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1b99_ef6a_67ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4952_02fe_70bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4952_02fe_70bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4952_02fe_70bd/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (air.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, air.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4952_02fe_70bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4952_02fe_70bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4952_02fe_70bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4952_02fe_70bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4952_02fe_70bd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4952_02fe_70bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_befc_46b3_1b98", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_befc_46b3_1b98.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_befc_46b3_1b98/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (air.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, air.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_befc_46b3_1b98_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_befc_46b3_1b98_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_befc_46b3_1b98/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_befc_46b3_1b98.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_befc_46b3_1b98&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_befc_46b3_1b98"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e757_b374_857b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e757_b374_857b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e757_b374_857b/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (air.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, air.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e757_b374_857b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e757_b374_857b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e757_b374_857b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e757_b374_857b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e757_b374_857b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e757_b374_857b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f79d_1026_6bb9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f79d_1026_6bb9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f79d_1026_6bb9/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (air.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, air.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f79d_1026_6bb9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f79d_1026_6bb9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f79d_1026_6bb9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f79d_1026_6bb9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f79d_1026_6bb9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f79d_1026_6bb9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12db_144a_83f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12db_144a_83f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_12db_144a_83f3/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (cldc.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, cldc.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_12db_144a_83f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_12db_144a_83f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_12db_144a_83f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_12db_144a_83f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_12db_144a_83f3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_12db_144a_83f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43f0_c97d_69e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43f0_c97d_69e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_43f0_c97d_69e3/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (cldc.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, cldc.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_43f0_c97d_69e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_43f0_c97d_69e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_43f0_c97d_69e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_43f0_c97d_69e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_43f0_c97d_69e3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_43f0_c97d_69e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_67ce_94d0_740d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_67ce_94d0_740d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_67ce_94d0_740d/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (cldc.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, cldc.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_67ce_94d0_740d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_67ce_94d0_740d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_67ce_94d0_740d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_67ce_94d0_740d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_67ce_94d0_740d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_67ce_94d0_740d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae84_c73d_ae08", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae84_c73d_ae08.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae84_c73d_ae08/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (cldc.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, cldc.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae84_c73d_ae08_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae84_c73d_ae08_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae84_c73d_ae08/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae84_c73d_ae08.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae84_c73d_ae08&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ae84_c73d_ae08"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c153_7700_d858", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c153_7700_d858.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c153_7700_d858/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (cldc.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, cldc.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c153_7700_d858_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c153_7700_d858_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c153_7700_d858/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c153_7700_d858.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c153_7700_d858&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c153_7700_d858"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd14_e462_bdf7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd14_e462_bdf7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dd14_e462_bdf7/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (cldc.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, cldc.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dd14_e462_bdf7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dd14_e462_bdf7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dd14_e462_bdf7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dd14_e462_bdf7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dd14_e462_bdf7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_dd14_e462_bdf7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03d1_91c1_87b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03d1_91c1_87b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03d1_91c1_87b3/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (lflx.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, lflx.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03d1_91c1_87b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03d1_91c1_87b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03d1_91c1_87b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03d1_91c1_87b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03d1_91c1_87b3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_03d1_91c1_87b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_175a_9df6_a0c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_175a_9df6_a0c9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_175a_9df6_a0c9/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (lflx.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, lflx.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_175a_9df6_a0c9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_175a_9df6_a0c9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_175a_9df6_a0c9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_175a_9df6_a0c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_175a_9df6_a0c9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_175a_9df6_a0c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_632a_6de2_8c9b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_632a_6de2_8c9b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_632a_6de2_8c9b/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (lflx.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, lflx.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_632a_6de2_8c9b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_632a_6de2_8c9b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_632a_6de2_8c9b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_632a_6de2_8c9b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_632a_6de2_8c9b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_632a_6de2_8c9b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c74_2589_6d71", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c74_2589_6d71.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8c74_2589_6d71/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (lflx.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, lflx.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8c74_2589_6d71_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8c74_2589_6d71_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8c74_2589_6d71/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8c74_2589_6d71.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8c74_2589_6d71&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8c74_2589_6d71"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9f6_919c_edf3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9f6_919c_edf3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e9f6_919c_edf3/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (lflx.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, lflx.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e9f6_919c_edf3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e9f6_919c_edf3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e9f6_919c_edf3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e9f6_919c_edf3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e9f6_919c_edf3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e9f6_919c_edf3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f529_6a54_7ef3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f529_6a54_7ef3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f529_6a54_7ef3/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (lflx.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, lflx.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f529_6a54_7ef3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f529_6a54_7ef3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f529_6a54_7ef3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f529_6a54_7ef3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f529_6a54_7ef3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f529_6a54_7ef3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_084e_9947_3fec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_084e_9947_3fec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_084e_9947_3fec/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (qsminq.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, qsminq.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_084e_9947_3fec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_084e_9947_3fec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_084e_9947_3fec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_084e_9947_3fec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_084e_9947_3fec&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_084e_9947_3fec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e7d_ff1d_90aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e7d_ff1d_90aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1e7d_ff1d_90aa/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (qsminq.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, qsminq.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1e7d_ff1d_90aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1e7d_ff1d_90aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1e7d_ff1d_90aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1e7d_ff1d_90aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1e7d_ff1d_90aa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1e7d_ff1d_90aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d58_35b4_8906", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d58_35b4_8906.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2d58_35b4_8906/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (qsminq.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, qsminq.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2d58_35b4_8906_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2d58_35b4_8906_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d58_35b4_8906/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d58_35b4_8906.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d58_35b4_8906&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2d58_35b4_8906"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45d2_fc84_87f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45d2_fc84_87f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_45d2_fc84_87f6/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (qsminq.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, qsminq.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_45d2_fc84_87f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_45d2_fc84_87f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_45d2_fc84_87f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_45d2_fc84_87f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_45d2_fc84_87f6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_45d2_fc84_87f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e6a_b36f_c1b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e6a_b36f_c1b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6e6a_b36f_c1b0/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (qsminq.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, qsminq.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6e6a_b36f_c1b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6e6a_b36f_c1b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6e6a_b36f_c1b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6e6a_b36f_c1b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6e6a_b36f_c1b0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6e6a_b36f_c1b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ce5_afb6_5ed5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ce5_afb6_5ed5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ce5_afb6_5ed5/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (qsminq.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, qsminq.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ce5_afb6_5ed5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ce5_afb6_5ed5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ce5_afb6_5ed5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ce5_afb6_5ed5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ce5_afb6_5ed5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7ce5_afb6_5ed5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_081d_5f97_2852", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_081d_5f97_2852.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_081d_5f97_2852/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (rhum.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, rhum.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_081d_5f97_2852_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_081d_5f97_2852_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_081d_5f97_2852/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_081d_5f97_2852.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_081d_5f97_2852&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_081d_5f97_2852"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d55_c8ac_255b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d55_c8ac_255b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d55_c8ac_255b/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (rhum.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, rhum.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d55_c8ac_255b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d55_c8ac_255b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d55_c8ac_255b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d55_c8ac_255b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d55_c8ac_255b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1d55_c8ac_255b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20df_e5b5_5c43", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20df_e5b5_5c43.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_20df_e5b5_5c43/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (rhum.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, rhum.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_20df_e5b5_5c43_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_20df_e5b5_5c43_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_20df_e5b5_5c43/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_20df_e5b5_5c43.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_20df_e5b5_5c43&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_20df_e5b5_5c43"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5637_fe8e_d371", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5637_fe8e_d371.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5637_fe8e_d371/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (rhum.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, rhum.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5637_fe8e_d371_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5637_fe8e_d371_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5637_fe8e_d371/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5637_fe8e_d371.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5637_fe8e_d371&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5637_fe8e_d371"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c77_260a_f3f8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c77_260a_f3f8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6c77_260a_f3f8/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (rhum.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, rhum.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6c77_260a_f3f8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6c77_260a_f3f8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6c77_260a_f3f8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6c77_260a_f3f8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6c77_260a_f3f8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6c77_260a_f3f8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aaf8_0722_4331", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aaf8_0722_4331.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aaf8_0722_4331/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (rhum.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, rhum.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aaf8_0722_4331_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aaf8_0722_4331_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aaf8_0722_4331/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aaf8_0722_4331.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aaf8_0722_4331&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aaf8_0722_4331"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_423f_5e5c_159f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_423f_5e5c_159f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_423f_5e5c_159f/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (sflx.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, sflx.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_423f_5e5c_159f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_423f_5e5c_159f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_423f_5e5c_159f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_423f_5e5c_159f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_423f_5e5c_159f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_423f_5e5c_159f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4808_61e9_cc24", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4808_61e9_cc24.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4808_61e9_cc24/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (sflx.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, sflx.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4808_61e9_cc24_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4808_61e9_cc24_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4808_61e9_cc24/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4808_61e9_cc24.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4808_61e9_cc24&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4808_61e9_cc24"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53fb_51a1_98da", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53fb_51a1_98da.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_53fb_51a1_98da/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (sflx.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, sflx.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_53fb_51a1_98da_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_53fb_51a1_98da_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_53fb_51a1_98da/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_53fb_51a1_98da.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_53fb_51a1_98da&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_53fb_51a1_98da"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b22c_1aca_a4f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b22c_1aca_a4f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b22c_1aca_a4f1/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (sflx.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, sflx.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b22c_1aca_a4f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b22c_1aca_a4f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b22c_1aca_a4f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b22c_1aca_a4f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b22c_1aca_a4f1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b22c_1aca_a4f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc33_37a6_776a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc33_37a6_776a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc33_37a6_776a/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (sflx.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, sflx.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc33_37a6_776a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc33_37a6_776a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc33_37a6_776a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc33_37a6_776a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc33_37a6_776a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cc33_37a6_776a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e834_afbe_36ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e834_afbe_36ba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e834_afbe_36ba/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (sflx.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, sflx.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e834_afbe_36ba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e834_afbe_36ba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e834_afbe_36ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e834_afbe_36ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e834_afbe_36ba&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e834_afbe_36ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2aef_a77b_e8a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2aef_a77b_e8a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2aef_a77b_e8a7/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (shum.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, shum.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2aef_a77b_e8a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2aef_a77b_e8a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2aef_a77b_e8a7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2aef_a77b_e8a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2aef_a77b_e8a7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2aef_a77b_e8a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3344_e22d_9982", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3344_e22d_9982.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3344_e22d_9982/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (shum.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, shum.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3344_e22d_9982_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3344_e22d_9982_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3344_e22d_9982/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3344_e22d_9982.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3344_e22d_9982&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3344_e22d_9982"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6517_cb00_5f0b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6517_cb00_5f0b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6517_cb00_5f0b/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (shum.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, shum.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6517_cb00_5f0b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6517_cb00_5f0b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6517_cb00_5f0b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6517_cb00_5f0b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6517_cb00_5f0b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6517_cb00_5f0b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c88_44bf_1f8d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c88_44bf_1f8d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6c88_44bf_1f8d/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (shum.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, shum.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6c88_44bf_1f8d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6c88_44bf_1f8d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6c88_44bf_1f8d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6c88_44bf_1f8d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6c88_44bf_1f8d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6c88_44bf_1f8d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca4f_64c4_e2c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca4f_64c4_e2c5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca4f_64c4_e2c5/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (shum.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, shum.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca4f_64c4_e2c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca4f_64c4_e2c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca4f_64c4_e2c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca4f_64c4_e2c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca4f_64c4_e2c5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ca4f_64c4_e2c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec84_f4fc_340f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec84_f4fc_340f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ec84_f4fc_340f/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (shum.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, shum.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ec84_f4fc_340f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ec84_f4fc_340f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ec84_f4fc_340f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ec84_f4fc_340f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ec84_f4fc_340f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ec84_f4fc_340f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1661_7296_1d6b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1661_7296_1d6b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1661_7296_1d6b/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (slp.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, slp.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1661_7296_1d6b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1661_7296_1d6b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1661_7296_1d6b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1661_7296_1d6b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1661_7296_1d6b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1661_7296_1d6b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6256_72b3_cd14", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6256_72b3_cd14.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6256_72b3_cd14/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (slp.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, slp.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6256_72b3_cd14_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6256_72b3_cd14_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6256_72b3_cd14/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6256_72b3_cd14.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6256_72b3_cd14&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6256_72b3_cd14"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_888e_9dae_b0b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_888e_9dae_b0b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_888e_9dae_b0b6/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (slp.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, slp.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_888e_9dae_b0b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_888e_9dae_b0b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_888e_9dae_b0b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_888e_9dae_b0b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_888e_9dae_b0b6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_888e_9dae_b0b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0cf_efbe_03e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0cf_efbe_03e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a0cf_efbe_03e5/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (slp.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, slp.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a0cf_efbe_03e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a0cf_efbe_03e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a0cf_efbe_03e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a0cf_efbe_03e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a0cf_efbe_03e5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a0cf_efbe_03e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa15_5655_6505", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa15_5655_6505.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa15_5655_6505/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (slp.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, slp.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa15_5655_6505_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa15_5655_6505_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa15_5655_6505/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa15_5655_6505.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa15_5655_6505&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_aa15_5655_6505"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7da_bf3d_2880", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7da_bf3d_2880.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f7da_bf3d_2880/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (slp.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, slp.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f7da_bf3d_2880_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f7da_bf3d_2880_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f7da_bf3d_2880/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f7da_bf3d_2880.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f7da_bf3d_2880&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f7da_bf3d_2880"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_42e0_f32d_39bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_42e0_f32d_39bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_42e0_f32d_39bb/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (smina.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, smina.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_42e0_f32d_39bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_42e0_f32d_39bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_42e0_f32d_39bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_42e0_f32d_39bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_42e0_f32d_39bb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_42e0_f32d_39bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_870c_7efd_0b77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_870c_7efd_0b77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_870c_7efd_0b77/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (smina.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, smina.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_870c_7efd_0b77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_870c_7efd_0b77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_870c_7efd_0b77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_870c_7efd_0b77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_870c_7efd_0b77&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_870c_7efd_0b77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a62_c6dc_f7d8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a62_c6dc_f7d8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8a62_c6dc_f7d8/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (smina.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, smina.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8a62_c6dc_f7d8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8a62_c6dc_f7d8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8a62_c6dc_f7d8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8a62_c6dc_f7d8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8a62_c6dc_f7d8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8a62_c6dc_f7d8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9083_97d3_c02e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9083_97d3_c02e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9083_97d3_c02e/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (smina.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, smina.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9083_97d3_c02e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9083_97d3_c02e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9083_97d3_c02e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9083_97d3_c02e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9083_97d3_c02e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9083_97d3_c02e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7eb_0b49_2048", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7eb_0b49_2048.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e7eb_0b49_2048/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (smina.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, smina.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e7eb_0b49_2048_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e7eb_0b49_2048_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e7eb_0b49_2048/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e7eb_0b49_2048.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e7eb_0b49_2048&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e7eb_0b49_2048"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6ba_b64d_cdff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6ba_b64d_cdff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f6ba_b64d_cdff/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (smina.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, smina.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f6ba_b64d_cdff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f6ba_b64d_cdff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f6ba_b64d_cdff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f6ba_b64d_cdff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f6ba_b64d_cdff&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f6ba_b64d_cdff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03e7_378d_930c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03e7_378d_930c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03e7_378d_930c/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (sst.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, sst.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03e7_378d_930c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03e7_378d_930c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03e7_378d_930c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03e7_378d_930c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03e7_378d_930c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_03e7_378d_930c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dd8_dba6_d5da", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dd8_dba6_d5da.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1dd8_dba6_d5da/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (sst.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, sst.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1dd8_dba6_d5da_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1dd8_dba6_d5da_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1dd8_dba6_d5da/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1dd8_dba6_d5da.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1dd8_dba6_d5da&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1dd8_dba6_d5da"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fbe_2b48_7627", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fbe_2b48_7627.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1fbe_2b48_7627/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (sst.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, sst.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1fbe_2b48_7627_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1fbe_2b48_7627_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1fbe_2b48_7627/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1fbe_2b48_7627.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1fbe_2b48_7627&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1fbe_2b48_7627"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e49_f85c_ad5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e49_f85c_ad5b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e49_f85c_ad5b/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (sst.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, sst.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e49_f85c_ad5b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e49_f85c_ad5b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e49_f85c_ad5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e49_f85c_ad5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e49_f85c_ad5b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3e49_f85c_ad5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a27_3fed_fcdf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a27_3fed_fcdf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a27_3fed_fcdf/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (sst.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, sst.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a27_3fed_fcdf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a27_3fed_fcdf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a27_3fed_fcdf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a27_3fed_fcdf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a27_3fed_fcdf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7a27_3fed_fcdf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cbcf_3b93_ca63", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cbcf_3b93_ca63.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cbcf_3b93_ca63/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (sst.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, sst.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cbcf_3b93_ca63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cbcf_3b93_ca63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cbcf_3b93_ca63/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cbcf_3b93_ca63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cbcf_3b93_ca63&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cbcf_3b93_ca63"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4665_2b4b_28b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4665_2b4b_28b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4665_2b4b_28b0/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (uairt.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, uairt.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4665_2b4b_28b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4665_2b4b_28b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4665_2b4b_28b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4665_2b4b_28b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4665_2b4b_28b0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4665_2b4b_28b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ff5_ca75_aec1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ff5_ca75_aec1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ff5_ca75_aec1/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (uairt.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, uairt.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ff5_ca75_aec1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ff5_ca75_aec1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ff5_ca75_aec1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ff5_ca75_aec1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ff5_ca75_aec1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4ff5_ca75_aec1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7387_e80f_51c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7387_e80f_51c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7387_e80f_51c1/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (uairt.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, uairt.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7387_e80f_51c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7387_e80f_51c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7387_e80f_51c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7387_e80f_51c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7387_e80f_51c1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7387_e80f_51c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8265_9ae3_8e37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8265_9ae3_8e37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8265_9ae3_8e37/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (uairt.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, uairt.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8265_9ae3_8e37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8265_9ae3_8e37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8265_9ae3_8e37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8265_9ae3_8e37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8265_9ae3_8e37&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8265_9ae3_8e37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a89b_98a4_160a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a89b_98a4_160a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a89b_98a4_160a/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (uairt.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, uairt.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a89b_98a4_160a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a89b_98a4_160a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a89b_98a4_160a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a89b_98a4_160a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a89b_98a4_160a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a89b_98a4_160a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f701_6a31_dd21", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f701_6a31_dd21.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f701_6a31_dd21/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (uairt.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, uairt.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f701_6a31_dd21_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f701_6a31_dd21_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f701_6a31_dd21/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f701_6a31_dd21.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f701_6a31_dd21&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f701_6a31_dd21"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00c1_4a65_59b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00c1_4a65_59b1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_00c1_4a65_59b1/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (ulflx.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, ulflx.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_00c1_4a65_59b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_00c1_4a65_59b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_00c1_4a65_59b1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_00c1_4a65_59b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_00c1_4a65_59b1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_00c1_4a65_59b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f70_a414_df2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f70_a414_df2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f70_a414_df2f/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (ulflx.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, ulflx.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f70_a414_df2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f70_a414_df2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f70_a414_df2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f70_a414_df2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f70_a414_df2f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2f70_a414_df2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a933_a6e4_a754", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a933_a6e4_a754.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a933_a6e4_a754/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (ulflx.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, ulflx.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a933_a6e4_a754_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a933_a6e4_a754_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a933_a6e4_a754/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a933_a6e4_a754.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a933_a6e4_a754&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a933_a6e4_a754"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b2b6_f77c_c5d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b2b6_f77c_c5d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b2b6_f77c_c5d0/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (ulflx.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, ulflx.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b2b6_f77c_c5d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b2b6_f77c_c5d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b2b6_f77c_c5d0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b2b6_f77c_c5d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b2b6_f77c_c5d0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b2b6_f77c_c5d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9a9_0e6a_b8bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9a9_0e6a_b8bc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b9a9_0e6a_b8bc/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (ulflx.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, ulflx.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b9a9_0e6a_b8bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b9a9_0e6a_b8bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b9a9_0e6a_b8bc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b9a9_0e6a_b8bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b9a9_0e6a_b8bc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b9a9_0e6a_b8bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c97d_6582_19d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c97d_6582_19d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c97d_6582_19d7/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (ulflx.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, ulflx.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c97d_6582_19d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c97d_6582_19d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c97d_6582_19d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c97d_6582_19d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c97d_6582_19d7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c97d_6582_19d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ec0_d9c8_569b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ec0_d9c8_569b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ec0_d9c8_569b/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (upstr.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, upstr.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ec0_d9c8_569b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ec0_d9c8_569b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ec0_d9c8_569b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ec0_d9c8_569b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ec0_d9c8_569b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8ec0_d9c8_569b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b4c0_16db_364c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b4c0_16db_364c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b4c0_16db_364c/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (upstr.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, upstr.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b4c0_16db_364c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b4c0_16db_364c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b4c0_16db_364c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b4c0_16db_364c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b4c0_16db_364c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b4c0_16db_364c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be47_c56c_89ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be47_c56c_89ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_be47_c56c_89ea/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (upstr.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, upstr.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_be47_c56c_89ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_be47_c56c_89ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_be47_c56c_89ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_be47_c56c_89ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_be47_c56c_89ea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_be47_c56c_89ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_beb5_1fb8_0614", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_beb5_1fb8_0614.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_beb5_1fb8_0614/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (upstr.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, upstr.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_beb5_1fb8_0614_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_beb5_1fb8_0614_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_beb5_1fb8_0614/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_beb5_1fb8_0614.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_beb5_1fb8_0614&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_beb5_1fb8_0614"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0e8_1adb_957b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0e8_1adb_957b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f0e8_1adb_957b/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (upstr.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, upstr.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f0e8_1adb_957b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f0e8_1adb_957b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f0e8_1adb_957b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f0e8_1adb_957b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f0e8_1adb_957b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f0e8_1adb_957b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa60_f342_403b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa60_f342_403b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fa60_f342_403b/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (upstr.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, upstr.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fa60_f342_403b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fa60_f342_403b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fa60_f342_403b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fa60_f342_403b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fa60_f342_403b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fa60_f342_403b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15db_3e47_e32a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15db_3e47_e32a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_15db_3e47_e32a/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (uspeh.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, uspeh.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_15db_3e47_e32a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_15db_3e47_e32a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_15db_3e47_e32a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_15db_3e47_e32a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_15db_3e47_e32a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_15db_3e47_e32a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17c8_b8b0_6d6a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17c8_b8b0_6d6a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_17c8_b8b0_6d6a/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (uspeh.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, uspeh.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_17c8_b8b0_6d6a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_17c8_b8b0_6d6a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_17c8_b8b0_6d6a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_17c8_b8b0_6d6a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_17c8_b8b0_6d6a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_17c8_b8b0_6d6a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6cf7_dc5e_8bfc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6cf7_dc5e_8bfc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6cf7_dc5e_8bfc/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (uspeh.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, uspeh.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6cf7_dc5e_8bfc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6cf7_dc5e_8bfc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6cf7_dc5e_8bfc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6cf7_dc5e_8bfc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6cf7_dc5e_8bfc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6cf7_dc5e_8bfc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fad_c6f2_efc6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fad_c6f2_efc6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7fad_c6f2_efc6/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (uspeh.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, uspeh.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7fad_c6f2_efc6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7fad_c6f2_efc6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7fad_c6f2_efc6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7fad_c6f2_efc6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7fad_c6f2_efc6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7fad_c6f2_efc6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9ef_e080_b21f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9ef_e080_b21f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a9ef_e080_b21f/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (uspeh.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, uspeh.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9ef_e080_b21f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9ef_e080_b21f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9ef_e080_b21f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9ef_e080_b21f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9ef_e080_b21f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a9ef_e080_b21f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f015_f14c_1779", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f015_f14c_1779.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f015_f14c_1779/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (uspeh.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, uspeh.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f015_f14c_1779_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f015_f14c_1779_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f015_f14c_1779/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f015_f14c_1779.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f015_f14c_1779&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f015_f14c_1779"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b49_c84a_082a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b49_c84a_082a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0b49_c84a_082a/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (uwnd.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, uwnd.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0b49_c84a_082a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0b49_c84a_082a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0b49_c84a_082a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0b49_c84a_082a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0b49_c84a_082a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0b49_c84a_082a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d6b_cc7b_be04", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d6b_cc7b_be04.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d6b_cc7b_be04/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (uwnd.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, uwnd.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d6b_cc7b_be04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d6b_cc7b_be04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d6b_cc7b_be04/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d6b_cc7b_be04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d6b_cc7b_be04&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1d6b_cc7b_be04"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83b0_09e8_6229", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83b0_09e8_6229.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_83b0_09e8_6229/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (uwnd.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, uwnd.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_83b0_09e8_6229_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_83b0_09e8_6229_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_83b0_09e8_6229/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_83b0_09e8_6229.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_83b0_09e8_6229&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_83b0_09e8_6229"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86b9_ddd4_e69e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86b9_ddd4_e69e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_86b9_ddd4_e69e/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (uwnd.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, uwnd.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86b9_ddd4_e69e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86b9_ddd4_e69e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86b9_ddd4_e69e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86b9_ddd4_e69e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86b9_ddd4_e69e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_86b9_ddd4_e69e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b091_0dae_f03e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b091_0dae_f03e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b091_0dae_f03e/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (uwnd.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, uwnd.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b091_0dae_f03e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b091_0dae_f03e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b091_0dae_f03e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b091_0dae_f03e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b091_0dae_f03e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b091_0dae_f03e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e236_a762_afb9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e236_a762_afb9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e236_a762_afb9/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (uwnd.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, uwnd.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e236_a762_afb9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e236_a762_afb9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e236_a762_afb9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e236_a762_afb9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e236_a762_afb9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e236_a762_afb9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12da_5d50_bb49", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12da_5d50_bb49.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_12da_5d50_bb49/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vairt.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, vairt.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_12da_5d50_bb49_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_12da_5d50_bb49_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_12da_5d50_bb49/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_12da_5d50_bb49.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_12da_5d50_bb49&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_12da_5d50_bb49"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c8e_c24d_31bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c8e_c24d_31bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3c8e_c24d_31bd/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vairt.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, vairt.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3c8e_c24d_31bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3c8e_c24d_31bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c8e_c24d_31bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c8e_c24d_31bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c8e_c24d_31bd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3c8e_c24d_31bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f65_4265_82d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f65_4265_82d2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5f65_4265_82d2/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vairt.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, vairt.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5f65_4265_82d2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5f65_4265_82d2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5f65_4265_82d2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5f65_4265_82d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5f65_4265_82d2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5f65_4265_82d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6df4_06e3_6a31", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6df4_06e3_6a31.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6df4_06e3_6a31/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vairt.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, vairt.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6df4_06e3_6a31_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6df4_06e3_6a31_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6df4_06e3_6a31/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6df4_06e3_6a31.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6df4_06e3_6a31&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6df4_06e3_6a31"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b664_c818_e295", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b664_c818_e295.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b664_c818_e295/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vairt.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, vairt.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b664_c818_e295_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b664_c818_e295_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b664_c818_e295/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b664_c818_e295.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b664_c818_e295&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b664_c818_e295"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dca0_6847_3ed3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dca0_6847_3ed3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dca0_6847_3ed3/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vairt.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, vairt.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dca0_6847_3ed3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dca0_6847_3ed3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dca0_6847_3ed3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dca0_6847_3ed3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dca0_6847_3ed3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dca0_6847_3ed3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_168b_05c1_1c27", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_168b_05c1_1c27.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_168b_05c1_1c27/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vlflx.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, vlflx.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_168b_05c1_1c27_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_168b_05c1_1c27_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_168b_05c1_1c27/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_168b_05c1_1c27.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_168b_05c1_1c27&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_168b_05c1_1c27"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2607_7221_2c8e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2607_7221_2c8e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2607_7221_2c8e/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vlflx.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, vlflx.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2607_7221_2c8e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2607_7221_2c8e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2607_7221_2c8e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2607_7221_2c8e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2607_7221_2c8e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2607_7221_2c8e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4810_d310_e05b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4810_d310_e05b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4810_d310_e05b/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vlflx.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, vlflx.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4810_d310_e05b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4810_d310_e05b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4810_d310_e05b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4810_d310_e05b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4810_d310_e05b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4810_d310_e05b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48fc_5390_da28", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48fc_5390_da28.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_48fc_5390_da28/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vlflx.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, vlflx.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_48fc_5390_da28_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_48fc_5390_da28_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_48fc_5390_da28/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_48fc_5390_da28.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_48fc_5390_da28&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_48fc_5390_da28"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79ca_6926_ffc1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79ca_6926_ffc1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_79ca_6926_ffc1/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vlflx.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, vlflx.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_79ca_6926_ffc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_79ca_6926_ffc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_79ca_6926_ffc1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_79ca_6926_ffc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_79ca_6926_ffc1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_79ca_6926_ffc1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af3a_01cc_fabc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af3a_01cc_fabc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_af3a_01cc_fabc/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vlflx.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, vlflx.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_af3a_01cc_fabc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_af3a_01cc_fabc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_af3a_01cc_fabc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_af3a_01cc_fabc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_af3a_01cc_fabc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_af3a_01cc_fabc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_251c_5986_b636", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_251c_5986_b636.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_251c_5986_b636/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vpstr.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, vpstr.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_251c_5986_b636_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_251c_5986_b636_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_251c_5986_b636/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_251c_5986_b636.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_251c_5986_b636&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_251c_5986_b636"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a42_a23e_916a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a42_a23e_916a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4a42_a23e_916a/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vpstr.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, vpstr.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4a42_a23e_916a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4a42_a23e_916a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4a42_a23e_916a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4a42_a23e_916a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4a42_a23e_916a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4a42_a23e_916a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65e8_a2ef_516d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65e8_a2ef_516d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_65e8_a2ef_516d/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vpstr.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, vpstr.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_65e8_a2ef_516d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_65e8_a2ef_516d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_65e8_a2ef_516d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_65e8_a2ef_516d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_65e8_a2ef_516d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_65e8_a2ef_516d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7552_ba8e_291a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7552_ba8e_291a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7552_ba8e_291a/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vpstr.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, vpstr.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7552_ba8e_291a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7552_ba8e_291a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7552_ba8e_291a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7552_ba8e_291a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7552_ba8e_291a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7552_ba8e_291a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ea5_66c7_62a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ea5_66c7_62a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ea5_66c7_62a7/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vpstr.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, vpstr.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ea5_66c7_62a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ea5_66c7_62a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ea5_66c7_62a7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ea5_66c7_62a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ea5_66c7_62a7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8ea5_66c7_62a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad6c_ea69_9e38", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad6c_ea69_9e38.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ad6c_ea69_9e38/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vpstr.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, vpstr.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ad6c_ea69_9e38_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ad6c_ea69_9e38_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ad6c_ea69_9e38/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ad6c_ea69_9e38.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ad6c_ea69_9e38&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ad6c_ea69_9e38"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f61_0825_f912", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f61_0825_f912.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f61_0825_f912/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vspeh.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, vspeh.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f61_0825_f912_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f61_0825_f912_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f61_0825_f912/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f61_0825_f912.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f61_0825_f912&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1f61_0825_f912"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_599b_7926_3d56", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_599b_7926_3d56.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_599b_7926_3d56/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vspeh.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, vspeh.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_599b_7926_3d56_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_599b_7926_3d56_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_599b_7926_3d56/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_599b_7926_3d56.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_599b_7926_3d56&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_599b_7926_3d56"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81dd_b97c_06a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81dd_b97c_06a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_81dd_b97c_06a6/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vspeh.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, vspeh.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_81dd_b97c_06a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_81dd_b97c_06a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_81dd_b97c_06a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_81dd_b97c_06a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_81dd_b97c_06a6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_81dd_b97c_06a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8736_2549_eb0c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8736_2549_eb0c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8736_2549_eb0c/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vspeh.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, vspeh.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8736_2549_eb0c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8736_2549_eb0c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8736_2549_eb0c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8736_2549_eb0c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8736_2549_eb0c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8736_2549_eb0c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_949c_1121_6050", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_949c_1121_6050.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_949c_1121_6050/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vspeh.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, vspeh.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_949c_1121_6050_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_949c_1121_6050_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_949c_1121_6050/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_949c_1121_6050.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_949c_1121_6050&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_949c_1121_6050"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94ba_1978_2831", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94ba_1978_2831.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_94ba_1978_2831/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vspeh.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, vspeh.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_94ba_1978_2831_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_94ba_1978_2831_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_94ba_1978_2831/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_94ba_1978_2831.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_94ba_1978_2831&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_94ba_1978_2831"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_40fa_3d51_200d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_40fa_3d51_200d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_40fa_3d51_200d/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vwnd.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, vwnd.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_40fa_3d51_200d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_40fa_3d51_200d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_40fa_3d51_200d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_40fa_3d51_200d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_40fa_3d51_200d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_40fa_3d51_200d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_790c_840a_4d7f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_790c_840a_4d7f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_790c_840a_4d7f/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vwnd.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, vwnd.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_790c_840a_4d7f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_790c_840a_4d7f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_790c_840a_4d7f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_790c_840a_4d7f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_790c_840a_4d7f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_790c_840a_4d7f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ce1_6c3a_2dfc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ce1_6c3a_2dfc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ce1_6c3a_2dfc/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vwnd.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, vwnd.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ce1_6c3a_2dfc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ce1_6c3a_2dfc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ce1_6c3a_2dfc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ce1_6c3a_2dfc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ce1_6c3a_2dfc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7ce1_6c3a_2dfc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f0c_e3ec_4646", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f0c_e3ec_4646.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f0c_e3ec_4646/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vwnd.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, vwnd.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f0c_e3ec_4646_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f0c_e3ec_4646_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f0c_e3ec_4646/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f0c_e3ec_4646.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f0c_e3ec_4646&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9f0c_e3ec_4646"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd31_7906_5bd0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd31_7906_5bd0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dd31_7906_5bd0/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vwnd.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, vwnd.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dd31_7906_5bd0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dd31_7906_5bd0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dd31_7906_5bd0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dd31_7906_5bd0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dd31_7906_5bd0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dd31_7906_5bd0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd55_4eff_65a5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd55_4eff_65a5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fd55_4eff_65a5/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (vwnd.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, vwnd.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fd55_4eff_65a5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fd55_4eff_65a5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fd55_4eff_65a5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fd55_4eff_65a5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fd55_4eff_65a5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fd55_4eff_65a5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0130_cf57_9a4f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0130_cf57_9a4f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0130_cf57_9a4f/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (wspd.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, wspd.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0130_cf57_9a4f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0130_cf57_9a4f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0130_cf57_9a4f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0130_cf57_9a4f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0130_cf57_9a4f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0130_cf57_9a4f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_097b_c52c_924e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_097b_c52c_924e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_097b_c52c_924e/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (wspd.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, wspd.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_097b_c52c_924e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_097b_c52c_924e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_097b_c52c_924e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_097b_c52c_924e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_097b_c52c_924e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_097b_c52c_924e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_484c_9963_b977", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_484c_9963_b977.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_484c_9963_b977/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (wspd.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, wspd.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_484c_9963_b977_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_484c_9963_b977_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_484c_9963_b977/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_484c_9963_b977.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_484c_9963_b977&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_484c_9963_b977"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a6a8_71d8_616a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a6a8_71d8_616a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a6a8_71d8_616a/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (wspd.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, wspd.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a6a8_71d8_616a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a6a8_71d8_616a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a6a8_71d8_616a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a6a8_71d8_616a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a6a8_71d8_616a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a6a8_71d8_616a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d31f_04b7_66b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d31f_04b7_66b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d31f_04b7_66b3/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (wspd.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, wspd.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d31f_04b7_66b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d31f_04b7_66b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d31f_04b7_66b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d31f_04b7_66b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d31f_04b7_66b3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d31f_04b7_66b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8a1_cb82_d733", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8a1_cb82_d733.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f8a1_cb82_d733/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (wspd.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, wspd.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f8a1_cb82_d733_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f8a1_cb82_d733_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f8a1_cb82_d733/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f8a1_cb82_d733.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f8a1_cb82_d733&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f8a1_cb82_d733"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21f0_7604_59f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21f0_7604_59f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_21f0_7604_59f1/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (wspd3.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, wspd3.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_21f0_7604_59f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_21f0_7604_59f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_21f0_7604_59f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_21f0_7604_59f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_21f0_7604_59f1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_21f0_7604_59f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b16_fd49_1ba0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b16_fd49_1ba0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b16_fd49_1ba0/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (wspd3.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, wspd3.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b16_fd49_1ba0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b16_fd49_1ba0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b16_fd49_1ba0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b16_fd49_1ba0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b16_fd49_1ba0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5b16_fd49_1ba0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c09_fe1a_6ede", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c09_fe1a_6ede.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7c09_fe1a_6ede/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (wspd3.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, wspd3.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7c09_fe1a_6ede_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7c09_fe1a_6ede_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7c09_fe1a_6ede/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7c09_fe1a_6ede.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7c09_fe1a_6ede&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7c09_fe1a_6ede"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ec5_cabb_5113", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ec5_cabb_5113.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ec5_cabb_5113/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (wspd3.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, wspd3.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ec5_cabb_5113_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ec5_cabb_5113_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ec5_cabb_5113/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ec5_cabb_5113.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ec5_cabb_5113&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7ec5_cabb_5113"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0d5_3bf6_410a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0d5_3bf6_410a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a0d5_3bf6_410a/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (wspd3.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1981-2010, wspd3.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a0d5_3bf6_410a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a0d5_3bf6_410a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a0d5_3bf6_410a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a0d5_3bf6_410a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a0d5_3bf6_410a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a0d5_3bf6_410a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2a3_221e_b3cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2a3_221e_b3cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f2a3_221e_b3cf/request", "", "public", "ICOADS 2x2 Degree Enhanced, Climatology % Years (wspd3.ltm.perc), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Percentage of Years in Climatology (Top Dataset, LTMs1971-2000, wspd3.ltm.perc)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Percentage of Years in Climatology at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f2a3_221e_b3cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f2a3_221e_b3cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f2a3_221e_b3cf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f2a3_221e_b3cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f2a3_221e_b3cf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f2a3_221e_b3cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/esrlIcoads1ge", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/esrlIcoads1ge.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/esrlIcoads1ge/request", "", "public", "ICOADS, 1-degree, Enhanced, Monthly, 1960-present", "This dataset has the 1-degree, Global, Enhanced, simple gridded monthly\nsummary product (1960 to present) from the International Comprehensive\nOcean-Atmosphere Data Set (ICOADS), the most extensive collection of surface\nmarine data.\nTemporal Coverage:\n * Monthly values for 1960/01 - 2007/12.\n * Preliminary monthly values for 2008/01 - present.\nIMPORTANT: The time period of these products is defined in two segments.\n 1. Release 2.5 1960 through 2007\n 2. Following the Release 2.5 end date data are based exclusively on\n real-time GTS data with minimal quality control. These data should be\n considered preliminary and will be subject to change in new releases.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degC)\ncldc (Cloudiness Monthly Mean at Surface, okta)\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\nrhum (Relative Humidity Monthly Mean at Surface, %)\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degC)\nsst (Sea Surface Temperature Monthly Mean at Surface, degC)\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\nuwnd (u-wind Monthly Mean at Surface, m/s)\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/esrlIcoads1ge_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/esrlIcoads1ge_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/esrlIcoads1ge/index.json", "https://icoads.noaa.gov/data.icoads.html", "http://upwell.pfeg.noaa.gov/erddap/rss/esrlIcoads1ge.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=esrlIcoads1ge&showErrors=false&email=", "ICOADS", "esrlIcoads1ge"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/esrlIcoads1ge_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/esrlIcoads1ge_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/esrlIcoads1ge_LonPM180/request", "", "public", "ICOADS, 1-degree, Enhanced, Monthly, 1960-present, Lon+/-180", "This dataset has the 1-degree, Global, Enhanced, simple gridded monthly\nsummary product (1960 to present) from the International Comprehensive\nOcean-Atmosphere Data Set (ICOADS), the most extensive collection of surface\nmarine data.\nTemporal Coverage:\n * Monthly values for 1960/01 - 2007/12.\n * Preliminary monthly values for 2008/01 - present.\nIMPORTANT: The time period of these products is defined in two segments.\n 1. Release 2.5 1960 through 2007\n 2. Following the Release 2.5 end date data are based exclusively on\n real-time GTS data with minimal quality control. These data should be\n considered preliminary and will be subject to change in new releases.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degC)\ncldc (Cloudiness Monthly Mean at Surface, okta)\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\nrhum (Relative Humidity Monthly Mean at Surface, %)\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degC)\nsst (Sea Surface Temperature Monthly Mean at Surface, degC)\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\nuwnd (u-wind Monthly Mean at Surface, m/s)\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/esrlIcoads1ge_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/esrlIcoads1ge_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/esrlIcoads1ge_LonPM180/index.json", "https://icoads.noaa.gov/data.icoads.html", "http://upwell.pfeg.noaa.gov/erddap/rss/esrlIcoads1ge_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=esrlIcoads1ge_LonPM180&showErrors=false&email=", "ICOADS", "esrlIcoads1ge_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/esrlIcoads2ge", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/esrlIcoads2ge.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/esrlIcoads2ge/request", "", "public", "ICOADS, 2-degree, Enhanced, Monthly, 1800-present", "This dataset has the 2-degree, Global, Enhanced, simple gridded monthly\nsummary product (1800 to present) from the International Comprehensive\nOcean-Atmosphere Data Set (ICOADS), the most extensive collection of surface\nmarine data.\nTemporal Coverage:\n * Monthly values for 1800/01 - 2007/12.\n * Preliminary monthly values for 2008/01 - present.\nIMPORTANT: The time period of these products is defined in two segments.\n 1. Release 2.5 1800 through 2007\n 2. Following the Release 2.5 end date data are based exclusively on\n real-time GTS data with minimal quality control. These data should be\n considered preliminary and will be subject to change in new releases.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degC)\ncldc (Cloudiness Monthly Mean at Surface, okta)\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\nrhum (Relative Humidity Monthly Mean at Surface, %)\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degC)\nsst (Sea Surface Temperature Monthly Mean at Surface, degC)\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\nuwnd (u-wind Monthly Mean at Surface, m/s)\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/esrlIcoads2ge_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/esrlIcoads2ge_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/esrlIcoads2ge/index.json", "https://icoads.noaa.gov/data.icoads.html", "http://upwell.pfeg.noaa.gov/erddap/rss/esrlIcoads2ge.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=esrlIcoads2ge&showErrors=false&email=", "ICOADS", "esrlIcoads2ge"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/esrlIcoads2ge_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/esrlIcoads2ge_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/esrlIcoads2ge_LonPM180/request", "", "public", "ICOADS, 2-degree, Enhanced, Monthly, 1800-present, Lon+/-180", "This dataset has the 2-degree, Global, Enhanced, simple gridded monthly\nsummary product (1800 to present) from the International Comprehensive\nOcean-Atmosphere Data Set (ICOADS), the most extensive collection of surface\nmarine data.\nTemporal Coverage:\n * Monthly values for 1800/01 - 2007/12.\n * Preliminary monthly values for 2008/01 - present.\nIMPORTANT: The time period of these products is defined in two segments.\n 1. Release 2.5 1800 through 2007\n 2. Following the Release 2.5 end date data are based exclusively on\n real-time GTS data with minimal quality control. These data should be\n considered preliminary and will be subject to change in new releases.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degC)\ncldc (Cloudiness Monthly Mean at Surface, okta)\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\nrhum (Relative Humidity Monthly Mean at Surface, %)\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degC)\nsst (Sea Surface Temperature Monthly Mean at Surface, degC)\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\nuwnd (u-wind Monthly Mean at Surface, m/s)\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/esrlIcoads2ge_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/esrlIcoads2ge_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/esrlIcoads2ge_LonPM180/index.json", "http://icoads.noaa.gov/data.icoads.html", "http://upwell.pfeg.noaa.gov/erddap/rss/esrlIcoads2ge_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=esrlIcoads2ge_LonPM180&showErrors=false&email=", "ICOADS", "esrlIcoads2ge_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/esrlIcoads2gec50", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/esrlIcoads2gec50.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/esrlIcoads2gec50/request", "", "public", "ICOADS, 2-degree, Enhanced, Monthly, Long Term Mean 1950-1979", "This dataset has the long term mean (monthly climatology) of the 2-degree,\nGlobal, Enhanced, simple gridded monthly summary product (1950 - 1979) from\nthe International Comprehensive Ocean-Atmosphere Data Set (ICOADS), the most\nextensive collection of surface marine data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Long Term Mean at Surface, degC)\ncldc (Cloudiness Monthly Long Term Mean at Surface, okta)\nlflx (Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\nrhum (Relative Humidity Monthly Long Term Mean at Surface, %)\nsflx (Sensible Heat Parameter Monthly Long Term Mean at Surface, degC m/s)\nshum (Specific Humidity Monthly Long Term Mean at Surface, grams/kg)\nslp (Sea Level Pressure Monthly Long Term Mean at Surface, millibars)\nsst (Sea Surface Temperature Monthly Long Term Mean at Surface, degC)\nupstr (u-wind Stress Monthly Long Term Mean at Surface, m^2/s^2)\nuwnd (u-wind Monthly Long Term Mean at Surface, m/s)\nvpstr (v-wind Stress Monthly Long Term Mean at Surface, m^2/s^2)\nvwnd (v-wind Monthly Long Term Mean at Surface, m/s)\nwspd (Scalar Wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/esrlIcoads2gec50_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/esrlIcoads2gec50_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/esrlIcoads2gec50/index.json", "https://icoads.noaa.gov/data.icoads.html", "http://upwell.pfeg.noaa.gov/erddap/rss/esrlIcoads2gec50.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=esrlIcoads2gec50&showErrors=false&email=", "ICOADS", "esrlIcoads2gec50"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/esrlIcoads2gec50_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/esrlIcoads2gec50_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/esrlIcoads2gec50_LonPM180/request", "", "public", "ICOADS, 2-degree, Enhanced, Monthly, Long Term Mean 1950-1979, Lon+/-180", "This dataset has the long term mean (monthly climatology) of the 2-degree,\nGlobal, Enhanced, simple gridded monthly summary product (1950 - 1979) from\nthe International Comprehensive Ocean-Atmosphere Data Set (ICOADS), the most\nextensive collection of surface marine data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Long Term Mean at Surface, degC)\ncldc (Cloudiness Monthly Long Term Mean at Surface, okta)\nlflx (Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\nrhum (Relative Humidity Monthly Long Term Mean at Surface, %)\nsflx (Sensible Heat Parameter Monthly Long Term Mean at Surface, degC m/s)\nshum (Specific Humidity Monthly Long Term Mean at Surface, grams/kg)\nslp (Sea Level Pressure Monthly Long Term Mean at Surface, millibars)\nsst (Sea Surface Temperature Monthly Long Term Mean at Surface, degC)\nupstr (u-wind Stress Monthly Long Term Mean at Surface, m^2/s^2)\nuwnd (u-wind Monthly Long Term Mean at Surface, m/s)\nvpstr (v-wind Stress Monthly Long Term Mean at Surface, m^2/s^2)\nvwnd (v-wind Monthly Long Term Mean at Surface, m/s)\nwspd (Scalar Wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/esrlIcoads2gec50_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/esrlIcoads2gec50_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/esrlIcoads2gec50_LonPM180/index.json", "http://icoads.noaa.gov/data.icoads.html", "http://upwell.pfeg.noaa.gov/erddap/rss/esrlIcoads2gec50_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=esrlIcoads2gec50_LonPM180&showErrors=false&email=", "ICOADS", "esrlIcoads2gec50_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/esrlIcoads2gec71", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/esrlIcoads2gec71.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/esrlIcoads2gec71/request", "", "public", "ICOADS, 2-degree, Enhanced, Monthly, Long Term Mean 1971-2000", "This dataset has the long term mean (monthly climatology) of the 2-degree,\nGlobal, Enhanced, simple gridded monthly summary product (1971 - 2000) from\nthe International Comprehensive Ocean-Atmosphere Data Set (ICOADS), the most\nextensive collection of surface marine data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Long Term Mean at Surface, degC)\ncldc (Cloudiness Monthly Long Term Mean at Surface, okta)\nlflx (Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Long Term Mean at Surface, grams/kg)\nrhum (Relative Humidity Monthly Long Term Mean at Surface, %)\nsflx (Sensible Heat Parameter Monthly Long Term Mean at Surface, degC m/s)\nshum (Specific Humidity Monthly Long Term Mean at Surface, grams/kg)\nslp (Sea Level Pressure Monthly Long Term Mean at Surface, millibars)\nsmina (Sea-air Temperature Difference Monthly Long Term Mean at Surface, degC)\nsst (Sea Surface Temperature Monthly Long Term Mean at Surface, degC)\nuairt (Sensible Heat Trans Eastward Param Monthly Long Term Mean at Surface, degC m/s)\nulflx (Zonal Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\nupstr (u-wind Stress Monthly Long Term Mean at Surface, m^2/s^2)\nuspeh (Latent Heat Trans Eastward Param Monthly Long Term Mean at Surface, grams/kg m/s)\nuwnd (u-wind Monthly Long Term Mean at Surface, m/s)\nvairt (Sensible Heat Trans Northward Param Monthly Long Term Mean at Surface, degC m/s)\nvlflx (Meridional Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\nvpstr (v-wind Stress Monthly Long Term Mean at Surface, m^2/s^2)\nvspeh (Latent Heat Trans Northward Param Monthly Long Term Mean at Surface, grams/kg m/s)\nvwnd (v-wind Monthly Long Term Mean at Surface, m/s)\nwspd (Scalar Wind Monthly Long Term Mean at Surface, m/s)\nwspd3 (Scalar Wind Cubed Monthly Long Term Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/esrlIcoads2gec71_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/esrlIcoads2gec71_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/esrlIcoads2gec71/index.json", "https://icoads.noaa.gov/data.icoads.html", "http://upwell.pfeg.noaa.gov/erddap/rss/esrlIcoads2gec71.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=esrlIcoads2gec71&showErrors=false&email=", "ICOADS", "esrlIcoads2gec71"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/esrlIcoads2gec71_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/esrlIcoads2gec71_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/esrlIcoads2gec71_LonPM180/request", "", "public", "ICOADS, 2-degree, Enhanced, Monthly, Long Term Mean 1971-2000, Lon+/-180", "This dataset has the long term mean (monthly climatology) of the 2-degree,\nGlobal, Enhanced, simple gridded monthly summary product (1971 - 2000) from\nthe International Comprehensive Ocean-Atmosphere Data Set (ICOADS), the most\nextensive collection of surface marine data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Long Term Mean at Surface, degC)\ncldc (Cloudiness Monthly Long Term Mean at Surface, okta)\nlflx (Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Long Term Mean at Surface, grams/kg)\nrhum (Relative Humidity Monthly Long Term Mean at Surface, %)\nsflx (Sensible Heat Parameter Monthly Long Term Mean at Surface, degC m/s)\nshum (Specific Humidity Monthly Long Term Mean at Surface, grams/kg)\nslp (Sea Level Pressure Monthly Long Term Mean at Surface, millibars)\nsmina (Sea-air Temperature Difference Monthly Long Term Mean at Surface, degC)\nsst (Sea Surface Temperature Monthly Long Term Mean at Surface, degC)\nuairt (Sensible Heat Trans Eastward Param Monthly Long Term Mean at Surface, degC m/s)\nulflx (Zonal Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\nupstr (u-wind Stress Monthly Long Term Mean at Surface, m^2/s^2)\nuspeh (Latent Heat Trans Eastward Param Monthly Long Term Mean at Surface, grams/kg m/s)\nuwnd (u-wind Monthly Long Term Mean at Surface, m/s)\nvairt (Sensible Heat Trans Northward Param Monthly Long Term Mean at Surface, degC m/s)\nvlflx (Meridional Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\nvpstr (v-wind Stress Monthly Long Term Mean at Surface, m^2/s^2)\nvspeh (Latent Heat Trans Northward Param Monthly Long Term Mean at Surface, grams/kg m/s)\nvwnd (v-wind Monthly Long Term Mean at Surface, m/s)\nwspd (Scalar Wind Monthly Long Term Mean at Surface, m/s)\nwspd3 (Scalar Wind Cubed Monthly Long Term Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/esrlIcoads2gec71_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/esrlIcoads2gec71_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/esrlIcoads2gec71_LonPM180/index.json", "http://icoads.noaa.gov/data.icoads.html", "http://upwell.pfeg.noaa.gov/erddap/rss/esrlIcoads2gec71_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=esrlIcoads2gec71_LonPM180&showErrors=false&email=", "ICOADS", "esrlIcoads2gec71_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4df9_ce5e_d673", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4df9_ce5e_d673.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4df9_ce5e_d673/request", "", "public", "Indian River (S190) Bathymetric Digital Elevation Model (indian river S190 2018), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4df9_ce5e_d673_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4df9_ce5e_d673_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4df9_ce5e_d673/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4df9_ce5e_d673.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4df9_ce5e_d673&showErrors=false&email=", "NOAA", "noaa_ngdc_4df9_ce5e_d673"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/iprcAquariusOISSS7day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/iprcAquariusOISSS7day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/iprcAquariusOISSS7day/request", "", "public", "IPRC, Aquarius, Optimally Interpolated Salinity, 0.5\u00b0, Global, 7-Day, 2011-2015, v4.0", "Level 4 optimally interpolated, 0.5 degree, near-global, 7 day sea surface salinity (OISSS) product for version 4.0 of the Aquarius/SAC-D dataset. OISSS is a principal investigator produced dataset developed at the International Pacific Research Center (IPRC) of the University of Hawaii at Manoa, School of Ocean and Earth Science and Technology (SOEST). The optimal interpolation (OI) mapping procedure used to create this product corrects for systematic spatial biases in Aquarius SSS data with respect to Argo near-surface salinity observations and takes into account available statistical information about the signal and noise, specific to the Aquarius instrument. The product covers the entire duration of the Aquarius/SAC-D mission: 8/26/2011 - 6/7/2015. Further details on the data processing can be found in: Melnichenko, O., P. Hacker., N. Maximenko, G. Lagerloef, and J. Potemra (2016), Optimal interpolation of Aquarius sea surface salinity, J. Geophys. Res. Oceans, 121, 602-616, doi:10.1002/2015JC011343.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss (sea surface salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/iprcAquariusOISSS7day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/iprcAquariusOISSS7day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/iprcAquariusOISSS7day/index.json", "https://iprc.soest.hawaii.edu/users/oleg/oisss/glb/Technical_Notes.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/iprcAquariusOISSS7day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=iprcAquariusOISSS7day&showErrors=false&email=", "IPRC, NASA", "iprcAquariusOISSS7day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37eb_c4e6_9e14", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37eb_c4e6_9e14.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_37eb_c4e6_9e14/request", "", "public", "Jan longterm mean diurnal cycle air temperature from the NCEP Reanalysis (airjan.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for January, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_37eb_c4e6_9e14_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_37eb_c4e6_9e14_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_37eb_c4e6_9e14/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_37eb_c4e6_9e14.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_37eb_c4e6_9e14&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_37eb_c4e6_9e14"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b38_5574_10c2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b38_5574_10c2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b38_5574_10c2/request", "", "public", "Jan longterm mean diurnal cycle geopotential height from the NCEP Reanalysis, 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Diurnal Cycle Anomaly of Geopotential Height for January, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b38_5574_10c2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b38_5574_10c2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b38_5574_10c2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b38_5574_10c2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b38_5574_10c2&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5b38_5574_10c2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jpl_measures_ssha", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jpl_measures_ssha.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jpl_measures_ssha/request", "", "public", "JPL MEaSUREs Gridded Sea Surface Height Anomalies: Interim Version 1609", "Derived from multiple satellite altimeters, this dataset provides gridded sea surface height anomalies (SSHA) above mean sea level on a 1/6th-degree (~18.5-km) grid every 5 days. It contains interim heights with a delay of 2 weeks. Alternatively, there is a more accurate dataset available with a delay of about 3 months (https://dx.doi.org/10.5067/SLREF-CDRV1). These gridded data are derived from the SSHA data of TOPEX/Poseidon, Jason-1, Jason-2, and Jason-3 plus ERS-1, ERS-2, Envisat, SARAL-AltiKa, and/or CRyosat-2, depending on the date, from the Level 2 swath data accessed from the Radar Altimeter Database System (RADS). Gridding is accomplished via kriging, which gives the best linear prediction based upon prior knowledge of covariance. Through the Making Earth Science Data Records for Use in Research Environments (MEaSUREs) Program, NASA is continuing its commitment to expand our understanding of the Earth system using consistent records. Emphasis is placed on linking together multiple satellites into a constellation, developing the means of utilizing a multitude of data sources to form a coherent time series, and facilitating the use of extensive data in the development of comprehensive Earth system models.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][longitude][latitude]):\nSLA (Sea Level Anomaly Estimate, m)\nSLA_ERR (Sea Level Anomaly Error Estimate, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jpl_measures_ssha_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jpl_measures_ssha_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jpl_measures_ssha/index.json", "https://podaac.jpl.nasa.gov/dataset/SEA_SURFACE_HEIGHT_ALT_INTERIM_GRIDS_L4_2SATS_5DAY_6THDEG_V_JPL1609", "http://upwell.pfeg.noaa.gov/erddap/rss/jpl_measures_ssha.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jpl_measures_ssha&showErrors=false&email=", "NASA JPL", "jpl_measures_ssha"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplSMAPSSSv42_8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplSMAPSSSv42_8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplSMAPSSSv42_8day/request", "", "public", "JPL SMAP Sea Surface Salinity and Wind Speed, V4.2, 0.25x0.25\u00b0, 2015-present, 8 Day Composite", "This is version 4.2 of the Gaussian-weighted map gridding of Soil Moisture Active Passive (SMAP) L2B Sea Surface Salinity (SSS) and Wind Speed Product. This is the PI-produced JPL SMAP-SSS CAP, 8-day running mean, level 3 mapped, sea surface salinity product from the NASA Soil Moisture Active Passive (SMAP) observatory. It is based on the Combined Active-Passive (CAP) retrieval algorithm developed at JPL originally in the context of Aquarius/SAC-D and now extended to SMAP. Daily data files for this product are based on SSS averages spanning an 8-day moving time window. Associated file variables include: derived SSS and wind speed data from SMAP and ancillary surface salinity from HYCOM. SMAP data begins on April 1, 2015 and is ongoing, with a 7-day latency in processing and availability. L3 products are global in extent and gridded at 0.25degree x 0.25degree with an approximate spatial resolution of 60km.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmap_sss (SMAP sea surface salinity, PSU)\nanc_sss (HYCOM sea surface salinity, PSU)\nsmap_spd (SMAP 10 m wind speed, m s-1)\nsmap_high_spd (SMAP 10 m wind speed (using ancillary SSS), m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplSMAPSSSv42_8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplSMAPSSSv42_8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplSMAPSSSv42_8day/index.json", "https://podaac.jpl.nasa.gov/dataset/SMAP_JPL_L3_SSS_CAP_8DAY-RUNNINGMEAN_V42", "http://upwell.pfeg.noaa.gov/erddap/rss/jplSMAPSSSv42_8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplSMAPSSSv42_8day&showErrors=false&email=", "Jet Propulsion Laboratory", "jplSMAPSSSv42_8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplSMAPSSSv42_mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplSMAPSSSv42_mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplSMAPSSSv42_mday/request", "", "public", "JPL SMAP Sea Surface Salinity and Wind Speed, V4.2, 0.25x0.25\u00b0, 2015-present, Monthly Composite", "This is version 4.2 of the Gaussian-weighted map gridding of Soil Moisture Active Passive (SMAP) L2B Sea Surface Salinity (SSS) and Wind Speed Product. This is the PI-produced JPL SMAP-SSS CAP, level 3, monthly mapped sea surface salinity product from the NASA Soil Moisture Active Passive (SMAP) observatory. It is based on the Combined Active-Passive (CAP) retrieval algorithm developed at JPL originally in the context of Aquarius/SAC-D and now extended to SMAP. Associated file variables include: derived SSS and wind speed from SMAP and ancillary surface salinity from HYCOM. SMAP data begins on April 1, 2015 and is ongoing, with a 1 month latency in processing and availability. L3 products are global in extent and gridded at 0.25degree x 0.25degree with an approximate spatial resolution of 60km.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmap_sss (SMAP sea surface salinity, PSU)\nanc_sss (HYCOM sea surface salinity, PSU)\nsmap_spd (SMAP 10 m wind speed, m s-1)\nsmap_high_spd (SMAP 10 m wind speed (using ancillary SSS), m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplSMAPSSSv42_mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplSMAPSSSv42_mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplSMAPSSSv42_mday/index.json", "https://podaac.jpl.nasa.gov/dataset/SMAP_JPL_L3_SSS_CAP_MONTHLY_V42", "http://upwell.pfeg.noaa.gov/erddap/rss/jplSMAPSSSv42_mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplSMAPSSSv42_mday&showErrors=false&email=", "Jet Propulsion Laboratory", "jplSMAPSSSv42_mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedCap7DayV5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedCap7DayV5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAquariusL3WindSpeedCap7DayV5/request", "", "public", "JPL, Aquarius L3 Wind Speed CAP 7Day V5, Global, 1.0\u00b0, 2011-2015", "Version 5.0.cap Aquarius CAP Level 3 products contain mapped Aquarius sea surface salinity or wind speed data based on the Combined Active Passive (CAP) algorithm. CAP is a P.I. produced data set developed and provided by the JPL Climate Oceans and Solid Earth section. (For further details see https://podaac.jpl.nasa.gov/aquarius )\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwind_speed_cap (m/s)\nice_frac (Sea_Ice_Area_Fraction)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAquariusL3WindSpeedCap7DayV5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAquariusL3WindSpeedCap7DayV5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAquariusL3WindSpeedCap7DayV5/index.json", "https://podaac.jpl.nasa.gov/aquarius", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAquariusL3WindSpeedCap7DayV5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAquariusL3WindSpeedCap7DayV5&showErrors=false&email=", "JPL", "jplAquariusL3WindSpeedCap7DayV5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedCapMonthlyV5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedCapMonthlyV5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAquariusL3WindSpeedCapMonthlyV5/request", "", "public", "JPL, Aquarius L3 Wind Speed CAP Monthly V5, Global, 1.0\u00b0, 2011-2015", "Version 5.0.cap Aquarius CAP Level 3 products contain mapped Aquarius sea surface salinity or wind speed data based on the Combined Active Passive (CAP) algorithm. CAP is a P.I. produced data set developed and provided by the JPL Climate Oceans and Solid Earth section. (For further details see https://podaac.jpl.nasa.gov/aquarius )\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwind_speed_cap (m/s)\nice_frac (Sea_Ice_Area_Fraction)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAquariusL3WindSpeedCapMonthlyV5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAquariusL3WindSpeedCapMonthlyV5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAquariusL3WindSpeedCapMonthlyV5/index.json", "https://podaac.jpl.nasa.gov/aquarius", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAquariusL3WindSpeedCapMonthlyV5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAquariusL3WindSpeedCapMonthlyV5&showErrors=false&email=", "JPL", "jplAquariusL3WindSpeedCapMonthlyV5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedSmi28DayRMV5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedSmi28DayRMV5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAquariusL3WindSpeedSmi28DayRMV5/request", "", "public", "JPL, Aquarius L3 Wind Speed SMI 28Day-RunningMean V5, Global, 1.0\u00b0, 2011-2015", "Version 5.0.SMI Aquarius SMI Level 3 products contain the Standard Mapped Image (SMI) of Aquarius sea surface salinity or wind speed data. (For further details see https://podaac.jpl.nasa.gov/aquarius )\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwind_speed (m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAquariusL3WindSpeedSmi28DayRMV5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAquariusL3WindSpeedSmi28DayRMV5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAquariusL3WindSpeedSmi28DayRMV5/index.json", "https://podaac.jpl.nasa.gov/aquarius", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAquariusL3WindSpeedSmi28DayRMV5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAquariusL3WindSpeedSmi28DayRMV5&showErrors=false&email=", "NASA/GSFC OBPG", "jplAquariusL3WindSpeedSmi28DayRMV5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedSmi3MonthV5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedSmi3MonthV5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAquariusL3WindSpeedSmi3MonthV5/request", "", "public", "JPL, Aquarius L3 Wind Speed SMI 3Month V5, Global, 1.0\u00b0, 2011-2015", "Version 5.0.SMI Aquarius SMI Level 3 products contain the Standard Mapped Image (SMI) of Aquarius sea surface salinity or wind speed data. (For further details see https://podaac.jpl.nasa.gov/aquarius )\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwind_speed (m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAquariusL3WindSpeedSmi3MonthV5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAquariusL3WindSpeedSmi3MonthV5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAquariusL3WindSpeedSmi3MonthV5/index.json", "https://podaac.jpl.nasa.gov/aquarius", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAquariusL3WindSpeedSmi3MonthV5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAquariusL3WindSpeedSmi3MonthV5&showErrors=false&email=", "NASA/GSFC OBPG", "jplAquariusL3WindSpeedSmi3MonthV5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedSmi7DayV5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedSmi7DayV5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAquariusL3WindSpeedSmi7DayV5/request", "", "public", "JPL, Aquarius L3 Wind Speed SMI 7Day V5, Global, 1.0\u00b0, 2011-2015", "Version 5.0.SMI Aquarius SMI Level 3 products contain the Standard Mapped Image (SMI) of Aquarius sea surface salinity or wind speed data. (For further details see https://podaac.jpl.nasa.gov/aquarius )\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwind_speed (m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAquariusL3WindSpeedSmi7DayV5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAquariusL3WindSpeedSmi7DayV5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAquariusL3WindSpeedSmi7DayV5/index.json", "https://podaac.jpl.nasa.gov/aquarius", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAquariusL3WindSpeedSmi7DayV5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAquariusL3WindSpeedSmi7DayV5&showErrors=false&email=", "NASA/GSFC OBPG", "jplAquariusL3WindSpeedSmi7DayV5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedSmi7DayRMV5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedSmi7DayRMV5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAquariusL3WindSpeedSmi7DayRMV5/request", "", "public", "JPL, Aquarius L3 Wind Speed SMI 7Day-RunningMean V5, Global, 1.0\u00b0, 2011-2015", "Version 5.0.SMI Aquarius SMI Level 3 products contain the Standard Mapped Image (SMI) of Aquarius sea surface salinity or wind speed data. (For further details see https://podaac.jpl.nasa.gov/aquarius )\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwind_speed (m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAquariusL3WindSpeedSmi7DayRMV5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAquariusL3WindSpeedSmi7DayRMV5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAquariusL3WindSpeedSmi7DayRMV5/index.json", "https://podaac.jpl.nasa.gov/aquarius", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAquariusL3WindSpeedSmi7DayRMV5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAquariusL3WindSpeedSmi7DayRMV5&showErrors=false&email=", "NASA/GSFC OBPG", "jplAquariusL3WindSpeedSmi7DayRMV5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedSmiDailyV5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedSmiDailyV5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAquariusL3WindSpeedSmiDailyV5/request", "", "public", "JPL, Aquarius L3 Wind Speed SMI Daily V5, Global, 1.0\u00b0, 2011-2015", "Version 5.0.SMI Aquarius SMI Level 3 products contain the Standard Mapped Image (SMI) of Aquarius sea surface salinity or wind speed data. (For further details see https://podaac.jpl.nasa.gov/aquarius )\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwind_speed (m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAquariusL3WindSpeedSmiDailyV5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAquariusL3WindSpeedSmiDailyV5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAquariusL3WindSpeedSmiDailyV5/index.json", "https://podaac.jpl.nasa.gov/aquarius", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAquariusL3WindSpeedSmiDailyV5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAquariusL3WindSpeedSmiDailyV5&showErrors=false&email=", "NASA/GSFC OBPG", "jplAquariusL3WindSpeedSmiDailyV5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedSmiMonthlyV5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedSmiMonthlyV5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAquariusL3WindSpeedSmiMonthlyV5/request", "", "public", "JPL, Aquarius L3 Wind Speed SMI Monthly V5, Global, 1.0\u00b0, 2011-2015", "Version 5.0.SMI Aquarius SMI Level 3 products contain the Standard Mapped Image (SMI) of Aquarius sea surface salinity or wind speed data. (For further details see https://podaac.jpl.nasa.gov/aquarius )\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwind_speed (m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAquariusL3WindSpeedSmiMonthlyV5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAquariusL3WindSpeedSmiMonthlyV5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAquariusL3WindSpeedSmiMonthlyV5/index.json", "https://podaac.jpl.nasa.gov/aquarius", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAquariusL3WindSpeedSmiMonthlyV5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAquariusL3WindSpeedSmiMonthlyV5&showErrors=false&email=", "NASA/GSFC OBPG", "jplAquariusL3WindSpeedSmiMonthlyV5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c667_f1d9_c606", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c667_f1d9_c606.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c667_f1d9_c606/request", "", "public", "Jul longterm mean diurnal cycle air temperature from the NCEP Reanalysis (airjul.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for July, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c667_f1d9_c606_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c667_f1d9_c606_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c667_f1d9_c606/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c667_f1d9_c606.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c667_f1d9_c606&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c667_f1d9_c606"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_926f_083b_93d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_926f_083b_93d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_926f_083b_93d0/request", "", "public", "Jul longterm mean diurnal cycle geopotential height from the NCEP Reanalysis, 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Diurnal Cycle Anomaly of Geopotential Height for July, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_926f_083b_93d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_926f_083b_93d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_926f_083b_93d0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_926f_083b_93d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_926f_083b_93d0&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_926f_083b_93d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_88d9_6b45_421f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_88d9_6b45_421f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_88d9_6b45_421f/request", "", "public", "Juneau, Alaska Coastal Digital Elevation Model (Top Dataset, Regional, juneau 815 mhhw 2010), 1.4814814E-4\u00b0", "Juneau, Alaska Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_88d9_6b45_421f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_88d9_6b45_421f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_88d9_6b45_421f/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_88d9_6b45_421f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_88d9_6b45_421f&showErrors=false&email=", "NOAA", "noaa_ngdc_88d9_6b45_421f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_aa3a_0dfa_bef6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_aa3a_0dfa_bef6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_aa3a_0dfa_bef6/request", "", "public", "Kachemak Bay, Alaska Coastal Digital Elevation Model (kachemak bay 13 mhw 2010), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_aa3a_0dfa_bef6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_aa3a_0dfa_bef6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_aa3a_0dfa_bef6/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_aa3a_0dfa_bef6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_aa3a_0dfa_bef6&showErrors=false&email=", "NOAA", "noaa_ngdc_aa3a_0dfa_bef6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_dc62_a15d_af62", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_dc62_a15d_af62.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_dc62_a15d_af62/request", "", "public", "Kawaihae, Hawaii Coastal Digital Elevation Model (Top Dataset, Regional, kawaihae 13 mhw 2011), 9.259259E-5\u00b0", "Kawaihae, Hawaii Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_dc62_a15d_af62_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_dc62_a15d_af62_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_dc62_a15d_af62/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_dc62_a15d_af62.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_dc62_a15d_af62&showErrors=false&email=", "NOAA", "noaa_ngdc_dc62_a15d_af62"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQkd490Daily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQkd490Daily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQkd490Daily/request", "", "public", "Kd490, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Daily", "Level-3 Standard Mapped Image (SMI), Global, 4km, Kd490, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nkd_490 (Diffuse attenuation coefficient at 490 nm, kd2 algorithm, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQkd490Daily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQkd490Daily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQkd490Daily/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQkd490Daily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQkd490Daily&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQkd490Daily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQkd490Monthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQkd490Monthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQkd490Monthly/request", "", "public", "Kd490, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Monthly", "Level-3 Standard Mapped Image (SMI), Global, 4km, Kd490, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nkd_490 (Diffuse attenuation coefficient at 490 nm, kd2 algorithm, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQkd490Monthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQkd490Monthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQkd490Monthly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQkd490Monthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQkd490Monthly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQkd490Monthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQkd490Weekly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQkd490Weekly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQkd490Weekly/request", "", "public", "Kd490, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Weekly", "Level-3 Standard Mapped Image (SMI), Global, 4km, Kd490, Weekly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nkd_490 (Diffuse attenuation coefficient at 490 nm, kd2 algorithm, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQkd490Weekly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQkd490Weekly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQkd490Weekly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQkd490Weekly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQkd490Weekly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQkd490Weekly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNkdparMonthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNkdparMonthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNkdparMonthly/request", "", "public", "KDPAR, NOAA VIIRS, Near Real-Time, Global, Level 3, 2015-2016, EXPERIMENTAL, Monthly", "Visible and Infrared Imager/Radiometer Suite/Suomi-NPP (VIIRSN) Level-3 (WW00), Diffuse Attenuation Coefficient for PAR (kdpar), Near Real-Time, Global, Monthly, processed by NOAA. EXPERIMENTAL.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nkd_par (Diffuse attenuation coefficient for PAR, m^-1)\ngraphics (graphics overlay planes)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNkdparMonthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNkdparMonthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNkdparMonthly/index.json", "https://www.star.nesdis.noaa.gov/thredds/dodsC/CoastWatch/VIIRS/kdpar/Monthly/WW00.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNkdparMonthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNkdparMonthly&showErrors=false&email=", "NOAA/NESDIS Center for Satellite Applications and Research", "nesdisVHNkdparMonthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNkdparDaily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNkdparDaily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNkdparDaily/request", "", "public", "KDPAR, NOAA VIIRS, Near Real-Time, Global, Level 3, 2017-present, EXPERIMENTAL, Daily", "Visible and Infrared Imager/Radiometer Suite/Suomi-NPP (VIIRSN) Level-3 (WW00), Diffuse Attenuation Coefficient for PAR (kdpar), Near Real-Time, Global, Daily, processed by NOAA. EXPERIMENTAL.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nkd_par (Diffuse Attenuation Coefficient for PAR, m^-1)\ngraphics (graphics overlay planes)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNkdparDaily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNkdparDaily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNkdparDaily/index.json", "https://www.star.nesdis.noaa.gov/thredds/dodsC/CoastWatch/VIIRS/kdpar/Daily/WW00.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNkdparDaily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNkdparDaily&showErrors=false&email=", "NOAA/NESDIS Center for Satellite Applications and Research (STAR)", "nesdisVHNkdparDaily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNkdparWeekly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNkdparWeekly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNkdparWeekly/request", "", "public", "KDPAR, NOAA VIIRS, Near Real-Time, Global, Level 3, 2017-present, EXPERIMENTAL, Weekly", "Visible and Infrared Imager/Radiometer Suite/Suomi-NPP (VIIRSN) Level-3 (WW00), Diffuse Attenuation Coefficient for PAR (kdpar), Near Real-Time, Global, Weekly, processed by NOAA. EXPERIMENTAL.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nkd_par (Diffuse Attenuation Coefficient for PAR, m^-1)\ngraphics (graphics overlay planes)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNkdparWeekly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNkdparWeekly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNkdparWeekly/index.json", "https://www.star.nesdis.noaa.gov/thredds/dodsC/CoastWatch/VIIRS/kdpar/Weekly/WW00.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNkdparWeekly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNkdparWeekly&showErrors=false&email=", "NOAA/NESDIS Center for Satellite Applications and Research (STAR)", "nesdisVHNkdparWeekly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQkdparDaily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQkdparDaily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQkdparDaily/request", "", "public", "KdPAR, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Daily", "Level-3 Standard Mapped Image (SMI), Global, 4km, KdPAR, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nkd_par (K(PAR) Lee (1st optical depth), m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQkdparDaily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQkdparDaily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQkdparDaily/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQkdparDaily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQkdparDaily&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQkdparDaily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQkdparMonthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQkdparMonthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQkdparMonthly/request", "", "public", "KdPAR, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Monthly", "Level-3 Standard Mapped Image (SMI), Global, 4km, KdPAR, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nkd_par (K(PAR) Lee (1st optical depth), m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQkdparMonthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQkdparMonthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQkdparMonthly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQkdparMonthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQkdparMonthly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQkdparMonthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQkdparWeekly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQkdparWeekly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQkdparWeekly/request", "", "public", "KdPAR, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Weekly", "Level-3 Standard Mapped Image (SMI), Global, 4km, KdPAR, Weekly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nkd_par (K(PAR) Lee (1st optical depth), m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQkdparWeekly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQkdparWeekly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQkdparWeekly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQkdparWeekly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQkdparWeekly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQkdparWeekly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_25c3_6b52_db52", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_25c3_6b52_db52.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_25c3_6b52_db52/request", "", "public", "Keauhou, Hawaii Coastal Digital Elevation Model (Top Dataset, Regional, keauhou 13 mhw 2011), 9.259259E-5\u00b0", "Keauhou, Hawaii Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_25c3_6b52_db52_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_25c3_6b52_db52_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_25c3_6b52_db52/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_25c3_6b52_db52.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_25c3_6b52_db52&showErrors=false&email=", "NOAA", "noaa_ngdc_25c3_6b52_db52"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d3a1_5d33_33d8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d3a1_5d33_33d8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d3a1_5d33_33d8/request", "", "public", "Key West, Florida Coastal Digital Elevation Model (key west 13 navd88 2011), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d3a1_5d33_33d8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d3a1_5d33_33d8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d3a1_5d33_33d8/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d3a1_5d33_33d8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d3a1_5d33_33d8&showErrors=false&email=", "NOAA", "noaa_ngdc_d3a1_5d33_33d8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c915_0b4f_fdfb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c915_0b4f_fdfb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c915_0b4f_fdfb/request", "", "public", "Key West, Florida Coastal Digital Elevation Model (Top Dataset, Regional, key west 13 mhw 2011), 9.259259E-5\u00b0", "Key West, Florida Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c915_0b4f_fdfb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c915_0b4f_fdfb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c915_0b4f_fdfb/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c915_0b4f_fdfb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c915_0b4f_fdfb&showErrors=false&email=", "NOAA", "noaa_ngdc_c915_0b4f_fdfb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ca57_52d7_4f69", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ca57_52d7_4f69.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_ca57_52d7_4f69/request", "", "public", "Key West, Florida Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, KeyWestFL A)", "Key West, Florida Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_ca57_52d7_4f69_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_ca57_52d7_4f69_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ca57_52d7_4f69/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ca57_52d7_4f69.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ca57_52d7_4f69&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_ca57_52d7_4f69"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_797a_af34_c58c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_797a_af34_c58c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_797a_af34_c58c/request", "", "public", "Key West, Florida Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, KeyWestFL B)", "Key West, Florida Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_797a_af34_c58c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_797a_af34_c58c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_797a_af34_c58c/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_797a_af34_c58c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_797a_af34_c58c&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_797a_af34_c58c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e59e_3216_8d16", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e59e_3216_8d16.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e59e_3216_8d16/request", "", "public", "Key West, Florida Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, KeyWestFL C)", "Key West, Florida Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e59e_3216_8d16_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e59e_3216_8d16_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e59e_3216_8d16/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e59e_3216_8d16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e59e_3216_8d16&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_e59e_3216_8d16"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a8d2_d5ee_3f14", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a8d2_d5ee_3f14.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_a8d2_d5ee_3f14/request", "", "public", "King Cove, Alaska 8 arc-second Coastal Digital Elevation Model (king cove 8 mhhw 2013), 0.0022222223\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_a8d2_d5ee_3f14_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_a8d2_d5ee_3f14_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_a8d2_d5ee_3f14/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_a8d2_d5ee_3f14.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_a8d2_d5ee_3f14&showErrors=false&email=", "NOAA", "noaa_ngdc_a8d2_d5ee_3f14"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_14eb_14c1_5ee6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_14eb_14c1_5ee6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_14eb_14c1_5ee6/request", "", "public", "King Cove, Alaska 8/15 arc-second Coastal Digital Elevation Model (king cove 815 mhhw 2013), 1.4814814E-4\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_14eb_14c1_5ee6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_14eb_14c1_5ee6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_14eb_14c1_5ee6/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_14eb_14c1_5ee6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_14eb_14c1_5ee6&showErrors=false&email=", "NOAA", "noaa_ngdc_14eb_14c1_5ee6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f608_1a3b_326e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f608_1a3b_326e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f608_1a3b_326e/request", "", "public", "King Cove, Alaska 8/3 arc-second Coastal Digital Elevation Model (king cove 83 mhhw 2013), 7.4074074E-4\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f608_1a3b_326e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f608_1a3b_326e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f608_1a3b_326e/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f608_1a3b_326e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f608_1a3b_326e&showErrors=false&email=", "NOAA", "noaa_ngdc_f608_1a3b_326e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_958f_7e24_cc14", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_958f_7e24_cc14.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_958f_7e24_cc14/request", "", "public", "King Cove, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, KingCoveAK A), 0.01\u00b0", "King Cove, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_958f_7e24_cc14_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_958f_7e24_cc14_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_958f_7e24_cc14/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_958f_7e24_cc14.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_958f_7e24_cc14&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_958f_7e24_cc14"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c73f_4ea1_092c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c73f_4ea1_092c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c73f_4ea1_092c/request", "", "public", "King Cove, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, KingCoveAK B)", "King Cove, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c73f_4ea1_092c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c73f_4ea1_092c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c73f_4ea1_092c/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c73f_4ea1_092c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c73f_4ea1_092c&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_c73f_4ea1_092c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_95e8_6a6d_e070", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_95e8_6a6d_e070.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_95e8_6a6d_e070/request", "", "public", "King Cove, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, KingCoveAK C)", "King Cove, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_95e8_6a6d_e070_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_95e8_6a6d_e070_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_95e8_6a6d_e070/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_95e8_6a6d_e070.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_95e8_6a6d_e070&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_95e8_6a6d_e070"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3cbd_5890_f411", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3cbd_5890_f411.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3cbd_5890_f411/request", "", "public", "Kodiak, Alaska 1/3 arc-second Coastal Digital Elevation Model (kodiak 13 mhw 2013), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3cbd_5890_f411_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3cbd_5890_f411_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3cbd_5890_f411/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3cbd_5890_f411.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3cbd_5890_f411&showErrors=false&email=", "NOAA", "noaa_ngdc_3cbd_5890_f411"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_49f9_687b_63f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_49f9_687b_63f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_49f9_687b_63f6/request", "", "public", "Kodiak, Alaska 8 sec Coastal Digital Elevation Model (Top Dataset, Regional, kodiak 8 mhw 2002), 0.0022224505\u00b0", "Kodiak, Alaska 8 sec Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_49f9_687b_63f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_49f9_687b_63f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_49f9_687b_63f6/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_49f9_687b_63f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_49f9_687b_63f6&showErrors=false&email=", "NOAA", "noaa_ngdc_49f9_687b_63f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_067d_fc5c_ae4b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_067d_fc5c_ae4b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_067d_fc5c_ae4b/request", "", "public", "Kodiak, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, KodiakAK A)", "Kodiak, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_067d_fc5c_ae4b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_067d_fc5c_ae4b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_067d_fc5c_ae4b/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_067d_fc5c_ae4b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_067d_fc5c_ae4b&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_067d_fc5c_ae4b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2791_7ae2_0cb7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2791_7ae2_0cb7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2791_7ae2_0cb7/request", "", "public", "Kodiak, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, KodiakAK B)", "Kodiak, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2791_7ae2_0cb7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2791_7ae2_0cb7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2791_7ae2_0cb7/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2791_7ae2_0cb7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2791_7ae2_0cb7&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_2791_7ae2_0cb7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1e8a_ad1b_86f8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1e8a_ad1b_86f8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1e8a_ad1b_86f8/request", "", "public", "Kodiak, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, KodiakAK C)", "Kodiak, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1e8a_ad1b_86f8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1e8a_ad1b_86f8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1e8a_ad1b_86f8/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1e8a_ad1b_86f8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1e8a_ad1b_86f8&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_1e8a_ad1b_86f8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4da9_86c3_0e5d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4da9_86c3_0e5d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4da9_86c3_0e5d/request", "", "public", "La Push, Washington Coastal Digital Elevation Model (la push 13 mhw 2007), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4da9_86c3_0e5d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4da9_86c3_0e5d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4da9_86c3_0e5d/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4da9_86c3_0e5d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4da9_86c3_0e5d&showErrors=false&email=", "NOAA", "noaa_ngdc_4da9_86c3_0e5d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_180b_daf6_c043", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_180b_daf6_c043.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_180b_daf6_c043/request", "", "public", "La Push, Washington Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, LaPushWA A)", "La Push, Washington Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_180b_daf6_c043_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_180b_daf6_c043_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_180b_daf6_c043/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_180b_daf6_c043.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_180b_daf6_c043&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_180b_daf6_c043"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5fe8_30c2_4a9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5fe8_30c2_4a9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5fe8_30c2_4a9d/request", "", "public", "La Push, Washington Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, LaPushWA B), 0.005\u00b0", "La Push, Washington Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5fe8_30c2_4a9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5fe8_30c2_4a9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5fe8_30c2_4a9d/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5fe8_30c2_4a9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5fe8_30c2_4a9d&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_5fe8_30c2_4a9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0632_01ae_71da", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0632_01ae_71da.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0632_01ae_71da/request", "", "public", "La Push, Washington Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, LaPushWA C)", "La Push, Washington Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0632_01ae_71da_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0632_01ae_71da_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0632_01ae_71da/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0632_01ae_71da.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0632_01ae_71da&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_0632_01ae_71da"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b676_2037_6449", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b676_2037_6449.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_b676_2037_6449/request", "", "public", "Lahaina, Hawaii Coastal Digital Elevation Model (Top Dataset, Regional, lahaina 13 mhw 2007), 9.259259E-5\u00b0", "Lahaina, Hawaii Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_b676_2037_6449_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_b676_2037_6449_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_b676_2037_6449/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_b676_2037_6449.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_b676_2037_6449&showErrors=false&email=", "NOAA", "noaa_ngdc_b676_2037_6449"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b215_35bb_c099", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b215_35bb_c099.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_b215_35bb_c099/request", "", "public", "Lahaina, Hawaii Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, LahainaHI A), 0.033333335\u00b0", "Lahaina, Hawaii Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_b215_35bb_c099_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_b215_35bb_c099_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_b215_35bb_c099/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_b215_35bb_c099.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_b215_35bb_c099&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_b215_35bb_c099"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2287_f6cf_6055", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2287_f6cf_6055.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2287_f6cf_6055/request", "", "public", "Lahaina, Hawaii Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, LahainaHI B), 0.0033333334\u00b0", "Lahaina, Hawaii Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2287_f6cf_6055_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2287_f6cf_6055_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2287_f6cf_6055/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2287_f6cf_6055.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2287_f6cf_6055&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_2287_f6cf_6055"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_79a4_1680_e44f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_79a4_1680_e44f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_79a4_1680_e44f/request", "", "public", "Lahaina, Hawaii Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, LahainaHI C)", "Lahaina, Hawaii Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_79a4_1680_e44f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_79a4_1680_e44f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_79a4_1680_e44f/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_79a4_1680_e44f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_79a4_1680_e44f&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_79a4_1680_e44f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_3f0b_1285_0cf8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_3f0b_1285_0cf8.graph", "", "", "public", "Lake Erie, 2D, Lake Erie, 2D, Best Time Series (GLCFS, Lake Erie, Forecast, 2D) [nsigma]", "GLCFS - Lake Erie - Forecast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Erie 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma]):\nsigma (Sigma Stretched Vertical Coordinate at Nodes, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_3f0b_1285_0cf8/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_3f0b_1285_0cf8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_3f0b_1285_0cf8&showErrors=false&email=", "NOAA/GLERL", "glos_tds_3f0b_1285_0cf8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_7e9b_8638_fc0c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_7e9b_8638_fc0c.graph", "", "", "public", "Lake Erie, 2D, Lake Erie, 2D, Best Time Series (GLCFS, Lake Erie, Forecast, 2D) [ny][nx]", "GLCFS - Lake Erie - Forecast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Erie 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ny][nx]):\nlon (Longitude, degrees_east)\nlat (Latitude, degrees_north)\ndepth (Bathymetry, m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_7e9b_8638_fc0c/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_7e9b_8638_fc0c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_7e9b_8638_fc0c&showErrors=false&email=", "NOAA/GLERL", "glos_tds_7e9b_8638_fc0c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_9587_a89b_70e9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_9587_a89b_70e9.graph", "", "", "public", "Lake Erie, 2D, Lake Erie, 2D, Best Time Series (GLCFS, Lake Erie, Forecast, 2D) [time], 2018-present", "GLCFS - Lake Erie - Forecast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Erie 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_9587_a89b_70e9/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_9587_a89b_70e9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_9587_a89b_70e9&showErrors=false&email=", "NOAA/GLERL", "glos_tds_9587_a89b_70e9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_2016_9282_15cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_2016_9282_15cc.graph", "", "", "public", "Lake Erie, 2D, Lake Erie, 2D, Best Time Series (GLCFS, Lake Erie, Forecast, 2D) [time][ny][nx], 2018-present", "GLCFS - Lake Erie - Forecast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Erie 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\neta (Height Above Model Sea Level, meters)\nuc (Eastward Water Velocity at Surface, m/s)\nvc (Northward Water Velocity at Surface, m/s)\nutm (Depth-Averaged Eastward Water Velocity, m/s)\nvtm (Depth-Averaged Northward Water Velocity, m/s)\nwvh (Significant Wave Height, meters)\nwvd (Wave Direction, Degrees, Oceanographic Convention, 0=toward N, 90=toward E)\nwvp (Wave Period, seconds)\nci (Ice concentration, fraction)\nhi (Ice thickness, meters)\nui (Ice u-velocity, m/s)\nvi (Ice v-velocity, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_2016_9282_15cc/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_2016_9282_15cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_2016_9282_15cc&showErrors=false&email=", "NOAA/GLERL", "glos_tds_2016_9282_15cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_df27_f6b2_eed3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_df27_f6b2_eed3.graph", "", "", "public", "Lake Erie, 3D, Lake Erie, 3D, Best Time Series (GLCFS, Lake Erie, Forecast, 3D) [nsigma]", "GLCFS - Lake Erie - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Erie 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma]):\nsigma (Sigma Stretched Vertical Coordinate at Nodes, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_df27_f6b2_eed3/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_df27_f6b2_eed3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_df27_f6b2_eed3&showErrors=false&email=", "NOAA/GLERL", "glos_tds_df27_f6b2_eed3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_269c_f0a2_c431", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_269c_f0a2_c431.graph", "", "", "public", "Lake Erie, 3D, Lake Erie, 3D, Best Time Series (GLCFS, Lake Erie, Forecast, 3D) [nsigma][ny][nx]", "GLCFS - Lake Erie - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Erie 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma][ny][nx]):\nd3d (3D Depth at Nodes, meters)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_269c_f0a2_c431/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_269c_f0a2_c431.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_269c_f0a2_c431&showErrors=false&email=", "NOAA/GLERL", "glos_tds_269c_f0a2_c431"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_976e_41ad_58ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_976e_41ad_58ec.graph", "", "", "public", "Lake Erie, 3D, Lake Erie, 3D, Best Time Series (GLCFS, Lake Erie, Forecast, 3D) [ny][nx]", "GLCFS - Lake Erie - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Erie 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ny][nx]):\nlon (Longitude, degrees_east)\nlat (Latitude, degrees_north)\ndepth (Bathymetry, m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_976e_41ad_58ec/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_976e_41ad_58ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_976e_41ad_58ec&showErrors=false&email=", "NOAA/GLERL", "glos_tds_976e_41ad_58ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_db9c_07f2_f34a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_db9c_07f2_f34a.graph", "", "", "public", "Lake Erie, 3D, Lake Erie, 3D, Best Time Series (GLCFS, Lake Erie, Forecast, 3D) [time], 2018-present", "GLCFS - Lake Erie - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Erie 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_db9c_07f2_f34a/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_db9c_07f2_f34a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_db9c_07f2_f34a&showErrors=false&email=", "NOAA/GLERL", "glos_tds_db9c_07f2_f34a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_22ca_ba7a_247e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_22ca_ba7a_247e.graph", "", "", "public", "Lake Erie, 3D, Lake Erie, 3D, Best Time Series (GLCFS, Lake Erie, Forecast, 3D) [time][nsigma][ny][nx], 2018-present", "GLCFS - Lake Erie - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Erie 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][nsigma][ny][nx]):\ntemp (Temperature, degree_C)\nu (Eastward Water Velocity, m/s)\nv (Northward Water Velocity, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_22ca_ba7a_247e/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_22ca_ba7a_247e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_22ca_ba7a_247e&showErrors=false&email=", "NOAA/GLERL", "glos_tds_22ca_ba7a_247e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_0824_db24_91d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_0824_db24_91d2.graph", "", "", "public", "Lake Erie, 3D, Lake Erie, 3D, Best Time Series (GLCFS, Lake Erie, Forecast, 3D) [time][ny][nx], 2018-present", "GLCFS - Lake Erie - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Erie 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\neta (m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_0824_db24_91d2/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_0824_db24_91d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_0824_db24_91d2&showErrors=false&email=", "NOAA/GLERL", "glos_tds_0824_db24_91d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_ca5f_f575_220c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_ca5f_f575_220c.graph", "", "", "public", "Lake Erie, Nowcast, 2D, All Years, Lake Erie, Nowcast, 2D, All Years, Best Time Series [nsigma]", "GLCFS - Lake Erie - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Erie 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma]):\nsigma (Sigma Stretched Vertical Coordinate at Nodes, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_ca5f_f575_220c/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_ca5f_f575_220c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_ca5f_f575_220c&showErrors=false&email=", "NOAA/GLERL", "glos_tds_ca5f_f575_220c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_41a6_dd5a_5511", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_41a6_dd5a_5511.graph", "", "", "public", "Lake Erie, Nowcast, 2D, All Years, Lake Erie, Nowcast, 2D, All Years, Best Time Series [ny][nx]", "GLCFS - Lake Erie - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Erie 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ny][nx]):\ndepth (Bathymetry, m)\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_41a6_dd5a_5511/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_41a6_dd5a_5511.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_41a6_dd5a_5511&showErrors=false&email=", "NOAA/GLERL", "glos_tds_41a6_dd5a_5511"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_ff16_9dc5_defe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_ff16_9dc5_defe.graph", "", "", "public", "Lake Erie, Nowcast, 2D, All Years, Lake Erie, Nowcast, 2D, All Years, Best Time Series [time1], 2006-2018", "GLCFS - Lake Erie - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Erie 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime1_run (run times for coordinate = time1, seconds since 1970-01-01T00:00:00Z)\ntime1_offset (offset hour from start of run for coordinate = time1, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_ff16_9dc5_defe/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_ff16_9dc5_defe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_ff16_9dc5_defe&showErrors=false&email=", "NOAA/GLERL", "glos_tds_ff16_9dc5_defe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_fc26_f25a_1a20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_fc26_f25a_1a20.graph", "", "", "public", "Lake Erie, Nowcast, 2D, All Years, Lake Erie, Nowcast, 2D, All Years, Best Time Series [time1][ny][nx], 2006-2018", "GLCFS - Lake Erie - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Erie 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\neta (Height Above Model Sea Level, meters)\nuc (Eastward Water Velocity at Surface, m/s)\nvc (Northward Water Velocity at Surface, m/s)\nwvd (Wave Direction, Degrees, Oceanographic Convention, 0=toward N, 90=toward E)\nwvh (Significant Wave Height, meters)\nwvp (Wave Period, seconds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_fc26_f25a_1a20/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_fc26_f25a_1a20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_fc26_f25a_1a20&showErrors=false&email=", "NOAA/GLERL", "glos_tds_fc26_f25a_1a20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_af45_872b_80ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_af45_872b_80ca.graph", "", "", "public", "Lake Erie, Nowcast, 2D, All Years, Lake Erie, Nowcast, 2D, All Years, Best Time Series [time], 2010-2018", "GLCFS - Lake Erie - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Erie 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_af45_872b_80ca/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_af45_872b_80ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_af45_872b_80ca&showErrors=false&email=", "NOAA/GLERL", "glos_tds_af45_872b_80ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_db2c_2030_bd62", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_db2c_2030_bd62.graph", "", "", "public", "Lake Erie, Nowcast, 2D, All Years, Lake Erie, Nowcast, 2D, All Years, Best Time Series [time][ny][nx], 2010-2018", "GLCFS - Lake Erie - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Erie 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\nci (Ice concentration, fraction)\nhi (Ice thickness, meters)\nui (Ice u-velocity, m/s)\nutm (Depth-Averaged Eastward Water Velocity, m/s)\nvi (Ice v-velocity, m/s)\nvtm (Depth-Averaged Northward Water Velocity, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_db2c_2030_bd62/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_db2c_2030_bd62.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_db2c_2030_bd62&showErrors=false&email=", "NOAA/GLERL", "glos_tds_db2c_2030_bd62"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_1cc4_9074_4b90", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_1cc4_9074_4b90.graph", "", "", "public", "Lake Erie, Nowcast, 3D, All Years, Lake Erie, Nowcast, 3D, All Years, Best Time Series [nsigma]", "GLCFS - Lake Erie - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Erie 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma]):\nsigma (Sigma Stretched Vertical Coordinate at Nodes, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_1cc4_9074_4b90/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_1cc4_9074_4b90.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_1cc4_9074_4b90&showErrors=false&email=", "NOAA/GLERL", "glos_tds_1cc4_9074_4b90"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_eb2a_2b90_23a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_eb2a_2b90_23a1.graph", "", "", "public", "Lake Erie, Nowcast, 3D, All Years, Lake Erie, Nowcast, 3D, All Years, Best Time Series [nsigma][ny][nx]", "GLCFS - Lake Erie - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Erie 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma][ny][nx]):\nd3d (3D Depth at Nodes, meters)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_eb2a_2b90_23a1/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_eb2a_2b90_23a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_eb2a_2b90_23a1&showErrors=false&email=", "NOAA/GLERL", "glos_tds_eb2a_2b90_23a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_8604_dfdb_502a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_8604_dfdb_502a.graph", "", "", "public", "Lake Erie, Nowcast, 3D, All Years, Lake Erie, Nowcast, 3D, All Years, Best Time Series [ny][nx]", "GLCFS - Lake Erie - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Erie 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ny][nx]):\ndepth (Bathymetry, m)\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_8604_dfdb_502a/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_8604_dfdb_502a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_8604_dfdb_502a&showErrors=false&email=", "NOAA/GLERL", "glos_tds_8604_dfdb_502a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_ff06_f963_e2d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_ff06_f963_e2d3.graph", "", "", "public", "Lake Erie, Nowcast, 3D, All Years, Lake Erie, Nowcast, 3D, All Years, Best Time Series [time], 2006-2018", "GLCFS - Lake Erie - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Erie 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_ff06_f963_e2d3/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_ff06_f963_e2d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_ff06_f963_e2d3&showErrors=false&email=", "NOAA/GLERL", "glos_tds_ff06_f963_e2d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_d461_9cf7_3041", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_d461_9cf7_3041.graph", "", "", "public", "Lake Erie, Nowcast, 3D, All Years, Lake Erie, Nowcast, 3D, All Years, Best Time Series [time][nsigma][ny][nx], 2006-2018", "GLCFS - Lake Erie - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Erie 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][nsigma][ny][nx]):\ntemp (Temperature, degree_C)\nu (Eastward Water Velocity, m/s)\nv (Northward Water Velocity, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_d461_9cf7_3041/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_d461_9cf7_3041.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_d461_9cf7_3041&showErrors=false&email=", "NOAA/GLERL", "glos_tds_d461_9cf7_3041"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_7447_f4d8_9821", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_7447_f4d8_9821.graph", "", "", "public", "Lake Erie, Nowcast, 3D, All Years, Lake Erie, Nowcast, 3D, All Years, Best Time Series [time][ny][nx], 2006-2018", "GLCFS - Lake Erie - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Erie 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\neta (m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_7447_f4d8_9821/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_7447_f4d8_9821.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_7447_f4d8_9821&showErrors=false&email=", "NOAA/GLERL", "glos_tds_7447_f4d8_9821"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_bcae_d3b5_521c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_bcae_d3b5_521c.graph", "", "", "public", "Lake Huron, 2D, Lake Huron, 2D, Best Time Series (GLCFS, Lake Huron, Forecast, 2D) [nsigma]", "GLCFS - Lake Huron - Forecast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Huron 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma]):\nsigma (Sigma Stretched Vertical Coordinate at Nodes, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_bcae_d3b5_521c/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_bcae_d3b5_521c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_bcae_d3b5_521c&showErrors=false&email=", "NOAA/GLERL", "glos_tds_bcae_d3b5_521c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_627d_68c1_872d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_627d_68c1_872d.graph", "", "", "public", "Lake Huron, 2D, Lake Huron, 2D, Best Time Series (GLCFS, Lake Huron, Forecast, 2D) [ny][nx]", "GLCFS - Lake Huron - Forecast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Huron 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ny][nx]):\nlon (Longitude, degrees_east)\nlat (Latitude, degrees_north)\ndepth (Bathymetry, m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_627d_68c1_872d/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_627d_68c1_872d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_627d_68c1_872d&showErrors=false&email=", "NOAA/GLERL", "glos_tds_627d_68c1_872d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_74d6_7327_9e0d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_74d6_7327_9e0d.graph", "", "", "public", "Lake Huron, 2D, Lake Huron, 2D, Best Time Series (GLCFS, Lake Huron, Forecast, 2D) [time], 2018-present", "GLCFS - Lake Huron - Forecast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Huron 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_74d6_7327_9e0d/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_74d6_7327_9e0d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_74d6_7327_9e0d&showErrors=false&email=", "NOAA/GLERL", "glos_tds_74d6_7327_9e0d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_3199_a541_3fac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_3199_a541_3fac.graph", "", "", "public", "Lake Huron, 2D, Lake Huron, 2D, Best Time Series (GLCFS, Lake Huron, Forecast, 2D) [time][ny][nx], 2018-present", "GLCFS - Lake Huron - Forecast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Huron 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\neta (Height Above Model Sea Level, meters)\nuc (Eastward Water Velocity at Surface, m/s)\nvc (Northward Water Velocity at Surface, m/s)\nutm (Depth-Averaged Eastward Water Velocity, m/s)\nvtm (Depth-Averaged Northward Water Velocity, m/s)\nwvh (Significant Wave Height, meters)\nwvd (Wave Direction, Degrees, Oceanographic Convention, 0=toward N, 90=toward E)\nwvp (Wave Period, seconds)\nci (Ice concentration, fraction)\nhi (Ice thickness, meters)\nui (Ice u-velocity, m/s)\nvi (Ice v-velocity, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_3199_a541_3fac/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_3199_a541_3fac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_3199_a541_3fac&showErrors=false&email=", "NOAA/GLERL", "glos_tds_3199_a541_3fac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_f0cd_1ee8_f6e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_f0cd_1ee8_f6e0.graph", "", "", "public", "Lake Huron, 3D, Lake Huron, 3D, Best Time Series (GLCFS, Lake Huron, Forecast, 3D) [nsigma]", "GLCFS - Lake Huron - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Huron 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma]):\nsigma (Sigma Stretched Vertical Coordinate at Nodes, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_f0cd_1ee8_f6e0/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_f0cd_1ee8_f6e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_f0cd_1ee8_f6e0&showErrors=false&email=", "NOAA/GLERL", "glos_tds_f0cd_1ee8_f6e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_c030_0b34_3504", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_c030_0b34_3504.graph", "", "", "public", "Lake Huron, 3D, Lake Huron, 3D, Best Time Series (GLCFS, Lake Huron, Forecast, 3D) [nsigma][ny][nx]", "GLCFS - Lake Huron - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Huron 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma][ny][nx]):\nd3d (3D Depth at Nodes, meters)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_c030_0b34_3504/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_c030_0b34_3504.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_c030_0b34_3504&showErrors=false&email=", "NOAA/GLERL", "glos_tds_c030_0b34_3504"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_f70c_067a_70a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_f70c_067a_70a0.graph", "", "", "public", "Lake Huron, 3D, Lake Huron, 3D, Best Time Series (GLCFS, Lake Huron, Forecast, 3D) [ny][nx]", "GLCFS - Lake Huron - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Huron 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ny][nx]):\nlon (Longitude, degrees_east)\nlat (Latitude, degrees_north)\ndepth (Bathymetry, m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_f70c_067a_70a0/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_f70c_067a_70a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_f70c_067a_70a0&showErrors=false&email=", "NOAA/GLERL", "glos_tds_f70c_067a_70a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_da15_bccb_bbf8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_da15_bccb_bbf8.graph", "", "", "public", "Lake Huron, 3D, Lake Huron, 3D, Best Time Series (GLCFS, Lake Huron, Forecast, 3D) [time], 2018-present", "GLCFS - Lake Huron - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Huron 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_da15_bccb_bbf8/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_da15_bccb_bbf8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_da15_bccb_bbf8&showErrors=false&email=", "NOAA/GLERL", "glos_tds_da15_bccb_bbf8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_04e0_8899_bf64", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_04e0_8899_bf64.graph", "", "", "public", "Lake Huron, 3D, Lake Huron, 3D, Best Time Series (GLCFS, Lake Huron, Forecast, 3D) [time][nsigma][ny][nx], 2018-present", "GLCFS - Lake Huron - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Huron 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][nsigma][ny][nx]):\ntemp (Temperature, degree_C)\nu (Eastward Water Velocity, m/s)\nv (Northward Water Velocity, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_04e0_8899_bf64/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_04e0_8899_bf64.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_04e0_8899_bf64&showErrors=false&email=", "NOAA/GLERL", "glos_tds_04e0_8899_bf64"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_0457_17fa_72d6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_0457_17fa_72d6.graph", "", "", "public", "Lake Huron, 3D, Lake Huron, 3D, Best Time Series (GLCFS, Lake Huron, Forecast, 3D) [time][ny][nx], 2018-present", "GLCFS - Lake Huron - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Huron 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\neta (m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_0457_17fa_72d6/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_0457_17fa_72d6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_0457_17fa_72d6&showErrors=false&email=", "NOAA/GLERL", "glos_tds_0457_17fa_72d6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_645e_54b7_20ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_645e_54b7_20ff.graph", "", "", "public", "Lake Huron, Nowcast, 2D, All Years, Lake Huron, Nowcast, 2D, All Years, Best Time Series [nsigma]", "GLCFS - Lake Huron - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Huron 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma]):\nsigma (Sigma Stretched Vertical Coordinate at Nodes, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_645e_54b7_20ff/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_645e_54b7_20ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_645e_54b7_20ff&showErrors=false&email=", "NOAA/GLERL", "glos_tds_645e_54b7_20ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_884c_9fa4_8ff8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_884c_9fa4_8ff8.graph", "", "", "public", "Lake Huron, Nowcast, 2D, All Years, Lake Huron, Nowcast, 2D, All Years, Best Time Series [ny][nx]", "GLCFS - Lake Huron - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Huron 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ny][nx]):\ndepth (Bathymetry, m)\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_884c_9fa4_8ff8/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_884c_9fa4_8ff8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_884c_9fa4_8ff8&showErrors=false&email=", "NOAA/GLERL", "glos_tds_884c_9fa4_8ff8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_087c_3447_f124", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_087c_3447_f124.graph", "", "", "public", "Lake Huron, Nowcast, 2D, All Years, Lake Huron, Nowcast, 2D, All Years, Best Time Series [time1], 2006-2018", "GLCFS - Lake Huron - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Huron 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime1_run (run times for coordinate = time1, seconds since 1970-01-01T00:00:00Z)\ntime1_offset (offset hour from start of run for coordinate = time1, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_087c_3447_f124/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_087c_3447_f124.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_087c_3447_f124&showErrors=false&email=", "NOAA/GLERL", "glos_tds_087c_3447_f124"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_ea7b_c414_cef5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_ea7b_c414_cef5.graph", "", "", "public", "Lake Huron, Nowcast, 2D, All Years, Lake Huron, Nowcast, 2D, All Years, Best Time Series [time1][ny][nx], 2006-2018", "GLCFS - Lake Huron - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Huron 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\neta (Height Above Model Sea Level, meters)\nuc (Eastward Water Velocity at Surface, m/s)\nutm (Depth-Averaged Eastward Water Velocity, m/s)\nvc (Northward Water Velocity at Surface, m/s)\nvtm (Depth-Averaged Northward Water Velocity, m/s)\nwvd (Wave Direction, Degrees, Oceanographic Convention, 0=toward N, 90=toward E)\nwvh (Significant Wave Height, meters)\nwvp (Wave Period, seconds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_ea7b_c414_cef5/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_ea7b_c414_cef5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_ea7b_c414_cef5&showErrors=false&email=", "NOAA/GLERL", "glos_tds_ea7b_c414_cef5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_90b0_7bfc_ff34", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_90b0_7bfc_ff34.graph", "", "", "public", "Lake Huron, Nowcast, 2D, All Years, Lake Huron, Nowcast, 2D, All Years, Best Time Series [time], 2012-2018", "GLCFS - Lake Huron - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Huron 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_90b0_7bfc_ff34/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_90b0_7bfc_ff34.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_90b0_7bfc_ff34&showErrors=false&email=", "NOAA/GLERL", "glos_tds_90b0_7bfc_ff34"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_fc4b_5e05_b337", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_fc4b_5e05_b337.graph", "", "", "public", "Lake Huron, Nowcast, 2D, All Years, Lake Huron, Nowcast, 2D, All Years, Best Time Series [time][ny][nx], 2012-2018", "GLCFS - Lake Huron - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Huron 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\nci (Ice concentration, fraction)\nhi (Ice thickness, meters)\nui (Ice u-velocity, m/s)\nvi (Ice v-velocity, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_fc4b_5e05_b337/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_fc4b_5e05_b337.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_fc4b_5e05_b337&showErrors=false&email=", "NOAA/GLERL", "glos_tds_fc4b_5e05_b337"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_bf31_0bc3_b757", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_bf31_0bc3_b757.graph", "", "", "public", "Lake Huron, Nowcast, 3D, All Years, Lake Huron, Nowcast, 3D, All Years, Best Time Series [nsigma]", "GLCFS - Lake Huron - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Huron 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma]):\nsigma (Sigma Stretched Vertical Coordinate at Nodes, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_bf31_0bc3_b757/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_bf31_0bc3_b757.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_bf31_0bc3_b757&showErrors=false&email=", "NOAA/GLERL", "glos_tds_bf31_0bc3_b757"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_c92c_7342_fc22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_c92c_7342_fc22.graph", "", "", "public", "Lake Huron, Nowcast, 3D, All Years, Lake Huron, Nowcast, 3D, All Years, Best Time Series [nsigma][ny][nx]", "GLCFS - Lake Huron - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Huron 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma][ny][nx]):\nd3d (3D Depth at Nodes, meters)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_c92c_7342_fc22/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_c92c_7342_fc22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_c92c_7342_fc22&showErrors=false&email=", "NOAA/GLERL", "glos_tds_c92c_7342_fc22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_a56b_9fdb_f3f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_a56b_9fdb_f3f2.graph", "", "", "public", "Lake Huron, Nowcast, 3D, All Years, Lake Huron, Nowcast, 3D, All Years, Best Time Series [ny][nx]", "GLCFS - Lake Huron - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Huron 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ny][nx]):\ndepth (Bathymetry, m)\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_a56b_9fdb_f3f2/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_a56b_9fdb_f3f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_a56b_9fdb_f3f2&showErrors=false&email=", "NOAA/GLERL", "glos_tds_a56b_9fdb_f3f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_4014_2d8f_6d6d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_4014_2d8f_6d6d.graph", "", "", "public", "Lake Huron, Nowcast, 3D, All Years, Lake Huron, Nowcast, 3D, All Years, Best Time Series [time], 2006-2018", "GLCFS - Lake Huron - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Huron 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_4014_2d8f_6d6d/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_4014_2d8f_6d6d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_4014_2d8f_6d6d&showErrors=false&email=", "NOAA/GLERL", "glos_tds_4014_2d8f_6d6d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_e62e_c566_a84c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_e62e_c566_a84c.graph", "", "", "public", "Lake Huron, Nowcast, 3D, All Years, Lake Huron, Nowcast, 3D, All Years, Best Time Series [time][nsigma][ny][nx], 2006-2018", "GLCFS - Lake Huron - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Huron 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][nsigma][ny][nx]):\ntemp (Temperature, degree_C)\nu (Eastward Water Velocity, m/s)\nv (Northward Water Velocity, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_e62e_c566_a84c/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_e62e_c566_a84c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_e62e_c566_a84c&showErrors=false&email=", "NOAA/GLERL", "glos_tds_e62e_c566_a84c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_d892_6175_fed6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_d892_6175_fed6.graph", "", "", "public", "Lake Huron, Nowcast, 3D, All Years, Lake Huron, Nowcast, 3D, All Years, Best Time Series [time][ny][nx], 2006-2018", "GLCFS - Lake Huron - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Huron 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\neta (m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_d892_6175_fed6/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_d892_6175_fed6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_d892_6175_fed6&showErrors=false&email=", "NOAA/GLERL", "glos_tds_d892_6175_fed6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_cc2f_0d02_bb5c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_cc2f_0d02_bb5c.graph", "", "", "public", "Lake Michigan, 2D, Lake Michigan, 2D, Best Time Series [nsigma]", "GLCFS - Lake Michigan - Forecast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Michigan 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma]):\nsigma (Sigma Stretched Vertical Coordinate at Nodes, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_cc2f_0d02_bb5c/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_cc2f_0d02_bb5c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_cc2f_0d02_bb5c&showErrors=false&email=", "NOAA/GLERL", "glos_tds_cc2f_0d02_bb5c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_f115_f9f1_7b8d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_f115_f9f1_7b8d.graph", "", "", "public", "Lake Michigan, 2D, Lake Michigan, 2D, Best Time Series [ny][nx]", "GLCFS - Lake Michigan - Forecast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Michigan 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ny][nx]):\nlon (Longitude, degrees_east)\nlat (Latitude, degrees_north)\ndepth (Bathymetry, m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_f115_f9f1_7b8d/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_f115_f9f1_7b8d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_f115_f9f1_7b8d&showErrors=false&email=", "NOAA/GLERL", "glos_tds_f115_f9f1_7b8d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_e2ca_017f_af9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_e2ca_017f_af9f.graph", "", "", "public", "Lake Michigan, 2D, Lake Michigan, 2D, Best Time Series [time], 2018-present", "GLCFS - Lake Michigan - Forecast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Michigan 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_e2ca_017f_af9f/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_e2ca_017f_af9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_e2ca_017f_af9f&showErrors=false&email=", "NOAA/GLERL", "glos_tds_e2ca_017f_af9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_8dfe_3bc0_ca32", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_8dfe_3bc0_ca32.graph", "", "", "public", "Lake Michigan, 2D, Lake Michigan, 2D, Best Time Series [time][ny][nx], 2018-present", "GLCFS - Lake Michigan - Forecast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Michigan 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\neta (Height Above Model Sea Level, meters)\nuc (Eastward Water Velocity at Surface, m/s)\nvc (Northward Water Velocity at Surface, m/s)\nutm (Depth-Averaged Eastward Water Velocity, m/s)\nvtm (Depth-Averaged Northward Water Velocity, m/s)\nwvh (Significant Wave Height, meters)\nwvd (Wave Direction, Degrees, Oceanographic Convention, 0=toward N, 90=toward E)\nwvp (Wave Period, seconds)\nci (Ice concentration, fraction)\nhi (Ice thickness, meters)\nui (Ice u-velocity, m/s)\nvi (Ice v-velocity, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_8dfe_3bc0_ca32/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_8dfe_3bc0_ca32.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_8dfe_3bc0_ca32&showErrors=false&email=", "NOAA/GLERL", "glos_tds_8dfe_3bc0_ca32"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_907e_6a34_162c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_907e_6a34_162c.graph", "", "", "public", "Lake Michigan, 3D, Lake Michigan, 3D, Best Time Series [nsigma]", "GLCFS - Lake Michigan - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Michigan 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma]):\nsigma (Sigma Stretched Vertical Coordinate at Nodes, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_907e_6a34_162c/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_907e_6a34_162c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_907e_6a34_162c&showErrors=false&email=", "NOAA/GLERL", "glos_tds_907e_6a34_162c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_4bee_fc49_c24d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_4bee_fc49_c24d.graph", "", "", "public", "Lake Michigan, 3D, Lake Michigan, 3D, Best Time Series [nsigma][ny][nx]", "GLCFS - Lake Michigan - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Michigan 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma][ny][nx]):\nd3d (3D Depth at Nodes, meters)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_4bee_fc49_c24d/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_4bee_fc49_c24d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_4bee_fc49_c24d&showErrors=false&email=", "NOAA/GLERL", "glos_tds_4bee_fc49_c24d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_ec05_f3f7_7e18", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_ec05_f3f7_7e18.graph", "", "", "public", "Lake Michigan, 3D, Lake Michigan, 3D, Best Time Series [ny][nx]", "GLCFS - Lake Michigan - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Michigan 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ny][nx]):\nlon (Longitude, degrees_east)\nlat (Latitude, degrees_north)\ndepth (Bathymetry, m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_ec05_f3f7_7e18/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_ec05_f3f7_7e18.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_ec05_f3f7_7e18&showErrors=false&email=", "NOAA/GLERL", "glos_tds_ec05_f3f7_7e18"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_9f26_673f_7eb7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_9f26_673f_7eb7.graph", "", "", "public", "Lake Michigan, 3D, Lake Michigan, 3D, Best Time Series [time], 2018-present", "GLCFS - Lake Michigan - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Michigan 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_9f26_673f_7eb7/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_9f26_673f_7eb7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_9f26_673f_7eb7&showErrors=false&email=", "NOAA/GLERL", "glos_tds_9f26_673f_7eb7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_9499_5a4c_c1a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_9499_5a4c_c1a0.graph", "", "", "public", "Lake Michigan, 3D, Lake Michigan, 3D, Best Time Series [time][nsigma][ny][nx], 2018-present", "GLCFS - Lake Michigan - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Michigan 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][nsigma][ny][nx]):\ntemp (Temperature, degree_C)\nu (Eastward Water Velocity, m/s)\nv (Northward Water Velocity, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_9499_5a4c_c1a0/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_9499_5a4c_c1a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_9499_5a4c_c1a0&showErrors=false&email=", "NOAA/GLERL", "glos_tds_9499_5a4c_c1a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_ef7d_cac9_e4c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_ef7d_cac9_e4c9.graph", "", "", "public", "Lake Michigan, 3D, Lake Michigan, 3D, Best Time Series [time][ny][nx], 2018-present", "GLCFS - Lake Michigan - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Michigan 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\neta (m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_ef7d_cac9_e4c9/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_ef7d_cac9_e4c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_ef7d_cac9_e4c9&showErrors=false&email=", "NOAA/GLERL", "glos_tds_ef7d_cac9_e4c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_b47d_d9ac_f88c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_b47d_d9ac_f88c.graph", "", "", "public", "Lake Michigan, Nowcast, 2D, All Years, Lake Michigan, Nowcast, 2D, All Years, Best Time Series [nsigma]", "GLCFS - Lake Michigan - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Michigan 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma]):\nsigma (Sigma Stretched Vertical Coordinate at Nodes, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_b47d_d9ac_f88c/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_b47d_d9ac_f88c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_b47d_d9ac_f88c&showErrors=false&email=", "NOAA/GLERL", "glos_tds_b47d_d9ac_f88c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_533c_f656_3af7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_533c_f656_3af7.graph", "", "", "public", "Lake Michigan, Nowcast, 2D, All Years, Lake Michigan, Nowcast, 2D, All Years, Best Time Series [ny][nx]", "GLCFS - Lake Michigan - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Michigan 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ny][nx]):\ndepth (Bathymetry, m)\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_533c_f656_3af7/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_533c_f656_3af7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_533c_f656_3af7&showErrors=false&email=", "NOAA/GLERL", "glos_tds_533c_f656_3af7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_dc4f_edeb_8158", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_dc4f_edeb_8158.graph", "", "", "public", "Lake Michigan, Nowcast, 2D, All Years, Lake Michigan, Nowcast, 2D, All Years, Best Time Series [time1], 2006-2018", "GLCFS - Lake Michigan - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Michigan 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime1_run (run times for coordinate = time1, seconds since 1970-01-01T00:00:00Z)\ntime1_offset (offset hour from start of run for coordinate = time1, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_dc4f_edeb_8158/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_dc4f_edeb_8158.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_dc4f_edeb_8158&showErrors=false&email=", "NOAA/GLERL", "glos_tds_dc4f_edeb_8158"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_19c5_6338_0e95", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_19c5_6338_0e95.graph", "", "", "public", "Lake Michigan, Nowcast, 2D, All Years, Lake Michigan, Nowcast, 2D, All Years, Best Time Series [time1][ny][nx], 2006-2018", "GLCFS - Lake Michigan - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Michigan 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\neta (Height Above Model Sea Level, meters)\nuc (Eastward Water Velocity at Surface, m/s)\nutm (Depth-Averaged Eastward Water Velocity, m/s)\nvc (Northward Water Velocity at Surface, m/s)\nvtm (Depth-Averaged Northward Water Velocity, m/s)\nwvd (Wave Direction, Degrees, Oceanographic Convention, 0=toward N, 90=toward E)\nwvh (Significant Wave Height, meters)\nwvp (Wave Period, seconds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_19c5_6338_0e95/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_19c5_6338_0e95.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_19c5_6338_0e95&showErrors=false&email=", "NOAA/GLERL", "glos_tds_19c5_6338_0e95"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_1233_2eb7_15a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_1233_2eb7_15a7.graph", "", "", "public", "Lake Michigan, Nowcast, 2D, All Years, Lake Michigan, Nowcast, 2D, All Years, Best Time Series [time], 2012-2018", "GLCFS - Lake Michigan - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Michigan 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_1233_2eb7_15a7/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_1233_2eb7_15a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_1233_2eb7_15a7&showErrors=false&email=", "NOAA/GLERL", "glos_tds_1233_2eb7_15a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_9c83_8fc1_74f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_9c83_8fc1_74f3.graph", "", "", "public", "Lake Michigan, Nowcast, 2D, All Years, Lake Michigan, Nowcast, 2D, All Years, Best Time Series [time][ny][nx], 2012-2018", "GLCFS - Lake Michigan - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Michigan 2 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\nci (Ice concentration, fraction)\nhi (Ice thickness, meters)\nui (Ice u-velocity, m/s)\nvi (Ice v-velocity, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_9c83_8fc1_74f3/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_9c83_8fc1_74f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_9c83_8fc1_74f3&showErrors=false&email=", "NOAA/GLERL", "glos_tds_9c83_8fc1_74f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_0589_31e3_2a6d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_0589_31e3_2a6d.graph", "", "", "public", "Lake Michigan, Nowcast, 3D, All Years, Lake Michigan, Nowcast, 3D, All Years, Best Time Series [nsigma]", "GLCFS - Lake Michigan - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Michigan 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma]):\nsigma (Sigma Stretched Vertical Coordinate at Nodes, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_0589_31e3_2a6d/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_0589_31e3_2a6d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_0589_31e3_2a6d&showErrors=false&email=", "NOAA/GLERL", "glos_tds_0589_31e3_2a6d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_f3bf_371f_59ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_f3bf_371f_59ea.graph", "", "", "public", "Lake Michigan, Nowcast, 3D, All Years, Lake Michigan, Nowcast, 3D, All Years, Best Time Series [nsigma][ny][nx]", "GLCFS - Lake Michigan - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Michigan 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma][ny][nx]):\nd3d (3D Depth at Nodes, meters)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_f3bf_371f_59ea/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_f3bf_371f_59ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_f3bf_371f_59ea&showErrors=false&email=", "NOAA/GLERL", "glos_tds_f3bf_371f_59ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_bc18_a5d0_2ee5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_bc18_a5d0_2ee5.graph", "", "", "public", "Lake Michigan, Nowcast, 3D, All Years, Lake Michigan, Nowcast, 3D, All Years, Best Time Series [ny][nx]", "GLCFS - Lake Michigan - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Michigan 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ny][nx]):\ndepth (Bathymetry, m)\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_bc18_a5d0_2ee5/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_bc18_a5d0_2ee5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_bc18_a5d0_2ee5&showErrors=false&email=", "NOAA/GLERL", "glos_tds_bc18_a5d0_2ee5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_422d_f003_2461", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_422d_f003_2461.graph", "", "", "public", "Lake Michigan, Nowcast, 3D, All Years, Lake Michigan, Nowcast, 3D, All Years, Best Time Series [time], 2006-2018", "GLCFS - Lake Michigan - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Michigan 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_422d_f003_2461/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_422d_f003_2461.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_422d_f003_2461&showErrors=false&email=", "NOAA/GLERL", "glos_tds_422d_f003_2461"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_c2e0_f774_b037", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_c2e0_f774_b037.graph", "", "", "public", "Lake Michigan, Nowcast, 3D, All Years, Lake Michigan, Nowcast, 3D, All Years, Best Time Series [time][nsigma][ny][nx], 2006-2018", "GLCFS - Lake Michigan - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Michigan 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][nsigma][ny][nx]):\ntemp (Temperature, degree_C)\nu (Eastward Water Velocity, m/s)\nv (Northward Water Velocity, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_c2e0_f774_b037/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_c2e0_f774_b037.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_c2e0_f774_b037&showErrors=false&email=", "NOAA/GLERL", "glos_tds_c2e0_f774_b037"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_9f37_5b0b_ab8b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_9f37_5b0b_ab8b.graph", "", "", "public", "Lake Michigan, Nowcast, 3D, All Years, Lake Michigan, Nowcast, 3D, All Years, Best Time Series [time][ny][nx], 2006-2018", "GLCFS - Lake Michigan - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Michigan 2 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\neta (m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_9f37_5b0b_ab8b/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_9f37_5b0b_ab8b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_9f37_5b0b_ab8b&showErrors=false&email=", "NOAA/GLERL", "glos_tds_9f37_5b0b_ab8b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_e9c9_d288_9a37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_e9c9_d288_9a37.graph", "", "", "public", "Lake Ontario, 2D, Lake Ontario, 2D, Best Time Series (GLCFS, Lake Ontario, Forecast, 2D) [nsigma]", "GLCFS - Lake Ontario - Forecast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Ontario 5 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma]):\nsigma (Sigma Stretched Vertical Coordinate at Nodes, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_e9c9_d288_9a37/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_e9c9_d288_9a37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_e9c9_d288_9a37&showErrors=false&email=", "NOAA/GLERL", "glos_tds_e9c9_d288_9a37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_7f4f_5299_0617", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_7f4f_5299_0617.graph", "", "", "public", "Lake Ontario, 2D, Lake Ontario, 2D, Best Time Series (GLCFS, Lake Ontario, Forecast, 2D) [ny][nx]", "GLCFS - Lake Ontario - Forecast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Ontario 5 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ny][nx]):\nlon (Longitude, degrees_east)\nlat (Latitude, degrees_north)\ndepth (Bathymetry, m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_7f4f_5299_0617/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_7f4f_5299_0617.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_7f4f_5299_0617&showErrors=false&email=", "NOAA/GLERL", "glos_tds_7f4f_5299_0617"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_07b2_6e13_c6fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_07b2_6e13_c6fa.graph", "", "", "public", "Lake Ontario, 2D, Lake Ontario, 2D, Best Time Series (GLCFS, Lake Ontario, Forecast, 2D) [time], 2018-present", "GLCFS - Lake Ontario - Forecast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Ontario 5 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_07b2_6e13_c6fa/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_07b2_6e13_c6fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_07b2_6e13_c6fa&showErrors=false&email=", "NOAA/GLERL", "glos_tds_07b2_6e13_c6fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_7b76_6e00_8763", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_7b76_6e00_8763.graph", "", "", "public", "Lake Ontario, 2D, Lake Ontario, 2D, Best Time Series (GLCFS, Lake Ontario, Forecast, 2D) [time][ny][nx], 2018-present", "GLCFS - Lake Ontario - Forecast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Ontario 5 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\neta (Height Above Model Sea Level, meters)\nuc (Eastward Water Velocity at Surface, m/s)\nvc (Northward Water Velocity at Surface, m/s)\nutm (Depth-Averaged Eastward Water Velocity, m/s)\nvtm (Depth-Averaged Northward Water Velocity, m/s)\nwvh (Significant Wave Height, meters)\nwvd (Wave Direction, Degrees, Oceanographic Convention, 0=toward N, 90=toward E)\nwvp (Wave Period, seconds)\nci (Ice concentration, fraction)\nhi (Ice thickness, meters)\nui (Ice u-velocity, m/s)\nvi (Ice v-velocity, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_7b76_6e00_8763/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_7b76_6e00_8763.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_7b76_6e00_8763&showErrors=false&email=", "NOAA/GLERL", "glos_tds_7b76_6e00_8763"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_f3df_ecf0_83d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_f3df_ecf0_83d7.graph", "", "", "public", "Lake Ontario, 3D, Lake Ontario, 3D, Best Time Series (GLCFS, Lake Ontario, Forecast, 3D) [nsigma]", "GLCFS - Lake Ontario - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Ontario 5 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma]):\nsigma (Sigma Stretched Vertical Coordinate at Nodes, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_f3df_ecf0_83d7/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_f3df_ecf0_83d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_f3df_ecf0_83d7&showErrors=false&email=", "NOAA/GLERL", "glos_tds_f3df_ecf0_83d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_4892_fe9b_af08", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_4892_fe9b_af08.graph", "", "", "public", "Lake Ontario, 3D, Lake Ontario, 3D, Best Time Series (GLCFS, Lake Ontario, Forecast, 3D) [nsigma][ny][nx]", "GLCFS - Lake Ontario - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Ontario 5 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma][ny][nx]):\nd3d (3D Depth at Nodes, meters)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_4892_fe9b_af08/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_4892_fe9b_af08.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_4892_fe9b_af08&showErrors=false&email=", "NOAA/GLERL", "glos_tds_4892_fe9b_af08"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_e9e1_953b_79a3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_e9e1_953b_79a3.graph", "", "", "public", "Lake Ontario, 3D, Lake Ontario, 3D, Best Time Series (GLCFS, Lake Ontario, Forecast, 3D) [ny][nx]", "GLCFS - Lake Ontario - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Ontario 5 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ny][nx]):\nlon (Longitude, degrees_east)\nlat (Latitude, degrees_north)\ndepth (Bathymetry, m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_e9e1_953b_79a3/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_e9e1_953b_79a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_e9e1_953b_79a3&showErrors=false&email=", "NOAA/GLERL", "glos_tds_e9e1_953b_79a3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_a9dd_33b3_d493", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_a9dd_33b3_d493.graph", "", "", "public", "Lake Ontario, 3D, Lake Ontario, 3D, Best Time Series (GLCFS, Lake Ontario, Forecast, 3D) [time], 2018-present", "GLCFS - Lake Ontario - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Ontario 5 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_a9dd_33b3_d493/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_a9dd_33b3_d493.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_a9dd_33b3_d493&showErrors=false&email=", "NOAA/GLERL", "glos_tds_a9dd_33b3_d493"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_416f_6df5_f93a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_416f_6df5_f93a.graph", "", "", "public", "Lake Ontario, 3D, Lake Ontario, 3D, Best Time Series (GLCFS, Lake Ontario, Forecast, 3D) [time][nsigma][ny][nx], 2018-present", "GLCFS - Lake Ontario - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Ontario 5 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][nsigma][ny][nx]):\ntemp (Temperature, degree_C)\nu (Eastward Water Velocity, m/s)\nv (Northward Water Velocity, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_416f_6df5_f93a/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_416f_6df5_f93a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_416f_6df5_f93a&showErrors=false&email=", "NOAA/GLERL", "glos_tds_416f_6df5_f93a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_978e_ffad_87dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_978e_ffad_87dc.graph", "", "", "public", "Lake Ontario, 3D, Lake Ontario, 3D, Best Time Series (GLCFS, Lake Ontario, Forecast, 3D) [time][ny][nx], 2018-present", "GLCFS - Lake Ontario - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Ontario 5 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\neta (m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_978e_ffad_87dc/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_978e_ffad_87dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_978e_ffad_87dc&showErrors=false&email=", "NOAA/GLERL", "glos_tds_978e_ffad_87dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_e2dc_0676_696b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_e2dc_0676_696b.graph", "", "", "public", "Lake Ontario, Nowcast, 2D, All Years, Lake Ontario, Nowcast, 2D, All Years, Best Time Series [nsigma]", "GLCFS - Lake Ontario - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Ontario 5 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma]):\nsigma (Sigma Stretched Vertical Coordinate at Nodes, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_e2dc_0676_696b/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_e2dc_0676_696b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_e2dc_0676_696b&showErrors=false&email=", "NOAA/GLERL", "glos_tds_e2dc_0676_696b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_7d8a_e025_bc80", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_7d8a_e025_bc80.graph", "", "", "public", "Lake Ontario, Nowcast, 2D, All Years, Lake Ontario, Nowcast, 2D, All Years, Best Time Series [ny][nx]", "GLCFS - Lake Ontario - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Ontario 5 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ny][nx]):\ndepth (Bathymetry, m)\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_7d8a_e025_bc80/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_7d8a_e025_bc80.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_7d8a_e025_bc80&showErrors=false&email=", "NOAA/GLERL", "glos_tds_7d8a_e025_bc80"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_97ff_5937_bcf2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_97ff_5937_bcf2.graph", "", "", "public", "Lake Ontario, Nowcast, 2D, All Years, Lake Ontario, Nowcast, 2D, All Years, Best Time Series [time1], 2006-2018", "GLCFS - Lake Ontario - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Ontario 5 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime1_run (run times for coordinate = time1, seconds since 1970-01-01T00:00:00Z)\ntime1_offset (offset hour from start of run for coordinate = time1, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_97ff_5937_bcf2/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_97ff_5937_bcf2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_97ff_5937_bcf2&showErrors=false&email=", "NOAA/GLERL", "glos_tds_97ff_5937_bcf2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_a673_994e_564f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_a673_994e_564f.graph", "", "", "public", "Lake Ontario, Nowcast, 2D, All Years, Lake Ontario, Nowcast, 2D, All Years, Best Time Series [time1][ny][nx], 2006-2018", "GLCFS - Lake Ontario - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Ontario 5 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\neta (Height Above Model Sea Level, meters)\nuc (Eastward Water Velocity at Surface, m/s)\nvc (Northward Water Velocity at Surface, m/s)\nwvd (Wave Direction, Degrees, Oceanographic Convention, 0=toward N, 90=toward E)\nwvh (Significant Wave Height, meters)\nwvp (Wave Period, seconds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_a673_994e_564f/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_a673_994e_564f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_a673_994e_564f&showErrors=false&email=", "NOAA/GLERL", "glos_tds_a673_994e_564f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_6b79_0b93_7cbd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_6b79_0b93_7cbd.graph", "", "", "public", "Lake Ontario, Nowcast, 2D, All Years, Lake Ontario, Nowcast, 2D, All Years, Best Time Series [time], 2012-2018", "GLCFS - Lake Ontario - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Ontario 5 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_6b79_0b93_7cbd/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_6b79_0b93_7cbd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_6b79_0b93_7cbd&showErrors=false&email=", "NOAA/GLERL", "glos_tds_6b79_0b93_7cbd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_9a2a_2964_dc91", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_9a2a_2964_dc91.graph", "", "", "public", "Lake Ontario, Nowcast, 2D, All Years, Lake Ontario, Nowcast, 2D, All Years, Best Time Series [time][ny][nx], 2012-2018", "GLCFS - Lake Ontario - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Ontario 5 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\nci (Ice concentration, fraction)\nhi (Ice thickness, meters)\nui (Ice u-velocity, m/s)\nutm (Depth-Averaged Eastward Water Velocity, m/s)\nvi (Ice v-velocity, m/s)\nvtm (Depth-Averaged Northward Water Velocity, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_9a2a_2964_dc91/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_9a2a_2964_dc91.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_9a2a_2964_dc91&showErrors=false&email=", "NOAA/GLERL", "glos_tds_9a2a_2964_dc91"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_7b81_7494_5322", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_7b81_7494_5322.graph", "", "", "public", "Lake Ontario, Nowcast, 3D, All Years, Lake Ontario, Nowcast, 3D, All Years, Best Time Series [nsigma]", "GLCFS - Lake Ontario - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Ontario 5 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma]):\nsigma (Sigma Stretched Vertical Coordinate at Nodes, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_7b81_7494_5322/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_7b81_7494_5322.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_7b81_7494_5322&showErrors=false&email=", "NOAA/GLERL", "glos_tds_7b81_7494_5322"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_ff35_162d_9c94", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_ff35_162d_9c94.graph", "", "", "public", "Lake Ontario, Nowcast, 3D, All Years, Lake Ontario, Nowcast, 3D, All Years, Best Time Series [nsigma][ny][nx]", "GLCFS - Lake Ontario - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Ontario 5 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma][ny][nx]):\nd3d (3D Depth at Nodes, meters)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_ff35_162d_9c94/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_ff35_162d_9c94.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_ff35_162d_9c94&showErrors=false&email=", "NOAA/GLERL", "glos_tds_ff35_162d_9c94"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_f261_79b8_e4b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_f261_79b8_e4b6.graph", "", "", "public", "Lake Ontario, Nowcast, 3D, All Years, Lake Ontario, Nowcast, 3D, All Years, Best Time Series [ny][nx]", "GLCFS - Lake Ontario - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Ontario 5 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ny][nx]):\ndepth (Bathymetry, m)\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_f261_79b8_e4b6/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_f261_79b8_e4b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_f261_79b8_e4b6&showErrors=false&email=", "NOAA/GLERL", "glos_tds_f261_79b8_e4b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_db6d_138d_75c8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_db6d_138d_75c8.graph", "", "", "public", "Lake Ontario, Nowcast, 3D, All Years, Lake Ontario, Nowcast, 3D, All Years, Best Time Series [time], 2006-2018", "GLCFS - Lake Ontario - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Ontario 5 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_db6d_138d_75c8/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_db6d_138d_75c8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_db6d_138d_75c8&showErrors=false&email=", "NOAA/GLERL", "glos_tds_db6d_138d_75c8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_e02d_3013_57f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_e02d_3013_57f1.graph", "", "", "public", "Lake Ontario, Nowcast, 3D, All Years, Lake Ontario, Nowcast, 3D, All Years, Best Time Series [time][nsigma][ny][nx], 2006-2018", "GLCFS - Lake Ontario - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Ontario 5 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][nsigma][ny][nx]):\ntemp (Temperature, degree_C)\nu (Eastward Water Velocity, m/s)\nv (Northward Water Velocity, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_e02d_3013_57f1/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_e02d_3013_57f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_e02d_3013_57f1&showErrors=false&email=", "NOAA/GLERL", "glos_tds_e02d_3013_57f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_55e9_384b_20fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_55e9_384b_20fc.graph", "", "", "public", "Lake Ontario, Nowcast, 3D, All Years, Lake Ontario, Nowcast, 3D, All Years, Best Time Series [time][ny][nx], 2006-2018", "GLCFS - Lake Ontario - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Ontario 5 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\neta (m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_55e9_384b_20fc/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_55e9_384b_20fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_55e9_384b_20fc&showErrors=false&email=", "NOAA/GLERL", "glos_tds_55e9_384b_20fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_c920_a45b_42dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_c920_a45b_42dc.graph", "", "", "public", "Lake Superior, 2D, Lake Superior, 2D, Best Time Series [nsigma]", "GLCFS - Lake Superior - Forecast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Superior 10 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma]):\nsigma (Sigma Stretched Vertical Coordinate at Nodes, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_c920_a45b_42dc/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_c920_a45b_42dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_c920_a45b_42dc&showErrors=false&email=", "NOAA/GLERL", "glos_tds_c920_a45b_42dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_e1fd_7ee1_662b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_e1fd_7ee1_662b.graph", "", "", "public", "Lake Superior, 2D, Lake Superior, 2D, Best Time Series [ny][nx]", "GLCFS - Lake Superior - Forecast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Superior 10 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ny][nx]):\nlon (Longitude, degrees_east)\nlat (Latitude, degrees_north)\ndepth (Bathymetry, m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_e1fd_7ee1_662b/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_e1fd_7ee1_662b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_e1fd_7ee1_662b&showErrors=false&email=", "NOAA/GLERL", "glos_tds_e1fd_7ee1_662b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_df4b_d046_c1b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_df4b_d046_c1b9.graph", "", "", "public", "Lake Superior, 2D, Lake Superior, 2D, Best Time Series [time], 2018-present", "GLCFS - Lake Superior - Forecast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Superior 10 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_df4b_d046_c1b9/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_df4b_d046_c1b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_df4b_d046_c1b9&showErrors=false&email=", "NOAA/GLERL", "glos_tds_df4b_d046_c1b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_e584_4c08_ac1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_e584_4c08_ac1e.graph", "", "", "public", "Lake Superior, 2D, Lake Superior, 2D, Best Time Series [time][ny][nx], 2018-present", "GLCFS - Lake Superior - Forecast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Superior 10 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\neta (Height Above Model Sea Level, meters)\nuc (Eastward Water Velocity at Surface, m/s)\nvc (Northward Water Velocity at Surface, m/s)\nutm (Depth-Averaged Eastward Water Velocity, m/s)\nvtm (Depth-Averaged Northward Water Velocity, m/s)\nwvh (Significant Wave Height, meters)\nwvd (Wave Direction, Degrees, Oceanographic Convention, 0=toward N, 90=toward E)\nwvp (Wave Period, seconds)\nci (Ice concentration, fraction)\nhi (Ice thickness, meters)\nui (Ice u-velocity, m/s)\nvi (Ice v-velocity, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_e584_4c08_ac1e/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_e584_4c08_ac1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_e584_4c08_ac1e&showErrors=false&email=", "NOAA/GLERL", "glos_tds_e584_4c08_ac1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_4121_1528_2c7c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_4121_1528_2c7c.graph", "", "", "public", "Lake Superior, 3D, Lake Superior, 3D, Best Time Series [nsigma]", "GLCFS - Lake Superior - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Superior 10 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma]):\nsigma (Sigma Stretched Vertical Coordinate at Nodes, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_4121_1528_2c7c/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_4121_1528_2c7c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_4121_1528_2c7c&showErrors=false&email=", "NOAA/GLERL", "glos_tds_4121_1528_2c7c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_360d_aac0_0a60", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_360d_aac0_0a60.graph", "", "", "public", "Lake Superior, 3D, Lake Superior, 3D, Best Time Series [nsigma][ny][nx]", "GLCFS - Lake Superior - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Superior 10 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma][ny][nx]):\nd3d (3D Depth at Nodes, meters)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_360d_aac0_0a60/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_360d_aac0_0a60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_360d_aac0_0a60&showErrors=false&email=", "NOAA/GLERL", "glos_tds_360d_aac0_0a60"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_2a0f_9003_e633", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_2a0f_9003_e633.graph", "", "", "public", "Lake Superior, 3D, Lake Superior, 3D, Best Time Series [ny][nx]", "GLCFS - Lake Superior - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Superior 10 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ny][nx]):\nlon (Longitude, degrees_east)\nlat (Latitude, degrees_north)\ndepth (Bathymetry, m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_2a0f_9003_e633/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_2a0f_9003_e633.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_2a0f_9003_e633&showErrors=false&email=", "NOAA/GLERL", "glos_tds_2a0f_9003_e633"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_c0a4_560e_08ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_c0a4_560e_08ee.graph", "", "", "public", "Lake Superior, 3D, Lake Superior, 3D, Best Time Series [time], 2018-present", "GLCFS - Lake Superior - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Superior 10 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_c0a4_560e_08ee/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_c0a4_560e_08ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_c0a4_560e_08ee&showErrors=false&email=", "NOAA/GLERL", "glos_tds_c0a4_560e_08ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_5912_ca66_3f41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_5912_ca66_3f41.graph", "", "", "public", "Lake Superior, 3D, Lake Superior, 3D, Best Time Series [time][nsigma][ny][nx], 2018-present", "GLCFS - Lake Superior - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Superior 10 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][nsigma][ny][nx]):\ntemp (Temperature, degree_C)\nu (Eastward Water Velocity, m/s)\nv (Northward Water Velocity, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_5912_ca66_3f41/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_5912_ca66_3f41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_5912_ca66_3f41&showErrors=false&email=", "NOAA/GLERL", "glos_tds_5912_ca66_3f41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_7c06_e0b5_66b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_7c06_e0b5_66b5.graph", "", "", "public", "Lake Superior, 3D, Lake Superior, 3D, Best Time Series [time][ny][nx], 2018-present", "GLCFS - Lake Superior - Forecast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Superior 10 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 2x per day following the 0,12 Z Forecast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\neta (m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_7c06_e0b5_66b5/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_7c06_e0b5_66b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_7c06_e0b5_66b5&showErrors=false&email=", "NOAA/GLERL", "glos_tds_7c06_e0b5_66b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_557d_ddbb_5cb0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_557d_ddbb_5cb0.graph", "", "", "public", "Lake Superior, Nowcast, 2D, All Years, Lake Superior, Nowcast, 2D, All Years, Best Time Series [nsigma]", "GLCFS - Lake Superior - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Superior 10 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma]):\nsigma (Sigma Stretched Vertical Coordinate at Nodes, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_557d_ddbb_5cb0/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_557d_ddbb_5cb0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_557d_ddbb_5cb0&showErrors=false&email=", "NOAA/GLERL", "glos_tds_557d_ddbb_5cb0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_5173_537b_dafa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_5173_537b_dafa.graph", "", "", "public", "Lake Superior, Nowcast, 2D, All Years, Lake Superior, Nowcast, 2D, All Years, Best Time Series [ny][nx]", "GLCFS - Lake Superior - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Superior 10 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ny][nx]):\ndepth (Bathymetry, m)\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_5173_537b_dafa/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_5173_537b_dafa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_5173_537b_dafa&showErrors=false&email=", "NOAA/GLERL", "glos_tds_5173_537b_dafa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_605d_b2f8_370a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_605d_b2f8_370a.graph", "", "", "public", "Lake Superior, Nowcast, 2D, All Years, Lake Superior, Nowcast, 2D, All Years, Best Time Series [time1], 2006-2018", "GLCFS - Lake Superior - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Superior 10 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime1_run (run times for coordinate = time1, seconds since 1970-01-01T00:00:00Z)\ntime1_offset (offset hour from start of run for coordinate = time1, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_605d_b2f8_370a/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_605d_b2f8_370a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_605d_b2f8_370a&showErrors=false&email=", "NOAA/GLERL", "glos_tds_605d_b2f8_370a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_57cf_f2bd_5527", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_57cf_f2bd_5527.graph", "", "", "public", "Lake Superior, Nowcast, 2D, All Years, Lake Superior, Nowcast, 2D, All Years, Best Time Series [time1][ny][nx], 2006-2018", "GLCFS - Lake Superior - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Superior 10 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\neta (Height Above Model Sea Level, meters)\nuc (Eastward Water Velocity at Surface, m/s)\nvc (Northward Water Velocity at Surface, m/s)\nwvd (Wave Direction, Degrees, Oceanographic Convention, 0=toward N, 90=toward E)\nwvh (Significant Wave Height, meters)\nwvp (Wave Period, seconds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_57cf_f2bd_5527/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_57cf_f2bd_5527.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_57cf_f2bd_5527&showErrors=false&email=", "NOAA/GLERL", "glos_tds_57cf_f2bd_5527"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_383d_dbc0_05cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_383d_dbc0_05cf.graph", "", "", "public", "Lake Superior, Nowcast, 2D, All Years, Lake Superior, Nowcast, 2D, All Years, Best Time Series [time], 2012-2018", "GLCFS - Lake Superior - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Superior 10 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_383d_dbc0_05cf/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_383d_dbc0_05cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_383d_dbc0_05cf&showErrors=false&email=", "NOAA/GLERL", "glos_tds_383d_dbc0_05cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_3f84_2511_4f06", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_3f84_2511_4f06.graph", "", "", "public", "Lake Superior, Nowcast, 2D, All Years, Lake Superior, Nowcast, 2D, All Years, Best Time Series [time][ny][nx], 2012-2018", "GLCFS - Lake Superior - Nowcast - 2D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Superior 10 km bathymetric grid. 1-hourly model 2D output starting at validtime plus 1 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\nci (Ice concentration, fraction)\nhi (Ice thickness, meters)\nui (Ice u-velocity, m/s)\nutm (Depth-Averaged Eastward Water Velocity, m/s)\nvi (Ice v-velocity, m/s)\nvtm (Depth-Averaged Northward Water Velocity, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_3f84_2511_4f06/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_3f84_2511_4f06.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_3f84_2511_4f06&showErrors=false&email=", "NOAA/GLERL", "glos_tds_3f84_2511_4f06"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_34f9_e9bc_b1ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_34f9_e9bc_b1ac.graph", "", "", "public", "Lake Superior, Nowcast, 3D, All Years, Lake Superior, Nowcast, 3D, All Years, Best Time Series [nsigma]", "GLCFS - Lake Superior - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Superior 10 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma]):\nsigma (Sigma Stretched Vertical Coordinate at Nodes, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_34f9_e9bc_b1ac/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_34f9_e9bc_b1ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_34f9_e9bc_b1ac&showErrors=false&email=", "NOAA/GLERL", "glos_tds_34f9_e9bc_b1ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_fbef_9079_3134", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_fbef_9079_3134.graph", "", "", "public", "Lake Superior, Nowcast, 3D, All Years, Lake Superior, Nowcast, 3D, All Years, Best Time Series [nsigma][ny][nx]", "GLCFS - Lake Superior - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Superior 10 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nsigma][ny][nx]):\nd3d (3D Depth at Nodes, meters)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_fbef_9079_3134/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_fbef_9079_3134.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_fbef_9079_3134&showErrors=false&email=", "NOAA/GLERL", "glos_tds_fbef_9079_3134"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_728f_251b_62cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_728f_251b_62cd.graph", "", "", "public", "Lake Superior, Nowcast, 3D, All Years, Lake Superior, Nowcast, 3D, All Years, Best Time Series [ny][nx]", "GLCFS - Lake Superior - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Superior 10 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ny][nx]):\ndepth (Bathymetry, m)\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_728f_251b_62cd/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_728f_251b_62cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_728f_251b_62cd&showErrors=false&email=", "NOAA/GLERL", "glos_tds_728f_251b_62cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_eafd_64b3_d28b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_eafd_64b3_d28b.graph", "", "", "public", "Lake Superior, Nowcast, 3D, All Years, Lake Superior, Nowcast, 3D, All Years, Best Time Series [time], 2006-2018", "GLCFS - Lake Superior - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Superior 10 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_eafd_64b3_d28b/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_eafd_64b3_d28b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_eafd_64b3_d28b&showErrors=false&email=", "NOAA/GLERL", "glos_tds_eafd_64b3_d28b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_bc04_e526_3748", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_bc04_e526_3748.graph", "", "", "public", "Lake Superior, Nowcast, 3D, All Years, Lake Superior, Nowcast, 3D, All Years, Best Time Series [time][nsigma][ny][nx], 2006-2018", "GLCFS - Lake Superior - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Superior 10 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][nsigma][ny][nx]):\ntemp (Temperature, degree_C)\nu (Eastward Water Velocity, m/s)\nv (Northward Water Velocity, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_bc04_e526_3748/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_bc04_e526_3748.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_bc04_e526_3748&showErrors=false&email=", "NOAA/GLERL", "glos_tds_bc04_e526_3748"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_bb65_bbb7_4a30", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/glos_tds_bb65_bbb7_4a30.graph", "", "", "public", "Lake Superior, Nowcast, 3D, All Years, Lake Superior, Nowcast, 3D, All Years, Best Time Series [time][ny][nx], 2006-2018", "GLCFS - Lake Superior - Nowcast - 3D. Best time series, taking the data from the most recent run available. Great Lakes Coastal Forecasting System. Lake Superior 10 km bathymetric grid. 3-hourly model 3D output starting at validtime plus 3 hr. Generated 4x per day following the 0,6,12,18 Z Nowcast runs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ny][nx]):\neta (Height Above Model Sea Level, meters)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/glos_tds_bb65_bbb7_4a30/index.json", "https://www.glerl.noaa.gov/res/glcfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/glos_tds_bb65_bbb7_4a30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=glos_tds_bb65_bbb7_4a30&showErrors=false&email=", "NOAA/GLERL", "glos_tds_bb65_bbb7_4a30"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78b4_b080_f572", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78b4_b080_f572.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_78b4_b080_f572/request", "", "public", "land mask for 144x73 NCEP Reanalysis I dataset (Top Dataset, pressure, lsmask.14473), 2.5\u00b0, 0001", "land mask for 144x73 National Centers for Environmental Prediction (NCEP) Reanalysis I dataset. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlsmask (Surface land/sea mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_78b4_b080_f572_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_78b4_b080_f572_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_78b4_b080_f572/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_78b4_b080_f572.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_78b4_b080_f572&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_78b4_b080_f572"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_70dd_7569_ccec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_70dd_7569_ccec.graph", "", "", "public", "Latest Climatology of Ocean Winds, Latest Climatology of Ocean Winds, Best Time Series [time], 0000", "NOAA Multiple-Satellite Blended 0.25-degree Sea Winds - climatological monthly means. Best time series, taking the data from the most recent run available.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_70dd_7569_ccec/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/uv/clm_agg/Latest_Climatology_of_Ocean_Winds_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_70dd_7569_ccec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_70dd_7569_ccec&showErrors=false&email=", "NOAA NESDIS NCDC", "noaa_ncei_70dd_7569_ccec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_2dfc_4f16_15a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_2dfc_4f16_15a8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_2dfc_4f16_15a8/request", "", "public", "Latest Climatology of Ocean Winds, Latest Climatology of Ocean Winds, Best Time Series [time][zlev][lat][lon], 0.25\u00b0, 0000", "NOAA Multiple-Satellite Blended 0.25-degree Sea Winds - climatological monthly means. Best time series, taking the data from the most recent run available.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][zlev][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\nw (Sea Surface Wind: magnitude as scalar mean, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_2dfc_4f16_15a8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_2dfc_4f16_15a8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_2dfc_4f16_15a8/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/uv/clm_agg/Latest_Climatology_of_Ocean_Winds_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_2dfc_4f16_15a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_2dfc_4f16_15a8&showErrors=false&email=", "NOAA NESDIS NCDC", "noaa_ncei_2dfc_4f16_15a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_59f1_4ec1_1e85", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_59f1_4ec1_1e85.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_59f1_4ec1_1e85/request", "", "public", "Los Angeles, California Tsunami Forecast Grids for MOST Model (LosAngelesCA A)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_59f1_4ec1_1e85_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_59f1_4ec1_1e85_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_59f1_4ec1_1e85/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_59f1_4ec1_1e85.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_59f1_4ec1_1e85&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_59f1_4ec1_1e85"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7c6b_05d4_c62d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7c6b_05d4_c62d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7c6b_05d4_c62d/request", "", "public", "Los Angeles, California Tsunami Forecast Grids for MOST Model (LosAngelesCA B)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7c6b_05d4_c62d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7c6b_05d4_c62d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7c6b_05d4_c62d/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7c6b_05d4_c62d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7c6b_05d4_c62d&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_7c6b_05d4_c62d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a701_202f_ecda", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a701_202f_ecda.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_a701_202f_ecda/request", "", "public", "Los Angeles, California Tsunami Forecast Grids for MOST Model (LosAngelesCA C)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_a701_202f_ecda_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_a701_202f_ecda_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_a701_202f_ecda/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_a701_202f_ecda.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_a701_202f_ecda&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_a701_202f_ecda"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hmrg_bathytopo_1km_mhi", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hmrg_bathytopo_1km_mhi.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hmrg_bathytopo_1km_mhi/request", "", "public", "Main Hawaiian Islands Multibeam Bathymetry Synthesis: 1-km Bathymetry and Topography", "A 50-m resolution gridded synthesis of all available bathymetry (ocean depth) data for the main Hawaiian Islands, including ship-borne multibeam sonar surveys as well as the Smith and Sandwell measured and estimated global seafloor topography. Land topography from USGS DEMs are included in the grid as well.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (bathymetry and topography, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hmrg_bathytopo_1km_mhi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hmrg_bathytopo_1km_mhi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hmrg_bathytopo_1km_mhi/index.json", "http://www.soest.hawaii.edu/hmrg/multibeam/", "http://upwell.pfeg.noaa.gov/erddap/rss/hmrg_bathytopo_1km_mhi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hmrg_bathytopo_1km_mhi&showErrors=false&email=", "University of Hawaii", "hmrg_bathytopo_1km_mhi"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hmrg_bathy_50m_mhi", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hmrg_bathy_50m_mhi.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hmrg_bathy_50m_mhi/request", "", "public", "Main Hawaiian Islands Multibeam Bathymetry Synthesis: 50-m Bathymetry", "A 50-m resolution gridded synthesis of all available bathymetry (ocean depth) data for the main Hawaiian Islands, including ship-borne multibeam sonar surveys.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hmrg_bathy_50m_mhi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hmrg_bathy_50m_mhi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hmrg_bathy_50m_mhi/index.json", "http://www.soest.hawaii.edu/hmrg/multibeam/", "http://upwell.pfeg.noaa.gov/erddap/rss/hmrg_bathy_50m_mhi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hmrg_bathy_50m_mhi&showErrors=false&email=", "University of Hawaii", "hmrg_bathy_50m_mhi"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hmrg_bathytopo_50m_mhi", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hmrg_bathytopo_50m_mhi.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hmrg_bathytopo_50m_mhi/request", "", "public", "Main Hawaiian Islands Multibeam Bathymetry Synthesis: 50-m Bathymetry and Topography", "A 50-m resolution gridded synthesis of all available bathymetry (ocean depth) data for the main Hawaiian Islands, including ship-borne multibeam sonar surveys. Land topography from USGS DEMs are included in the grid as well.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (bathymetry and topography, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hmrg_bathytopo_50m_mhi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hmrg_bathytopo_50m_mhi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hmrg_bathytopo_50m_mhi/index.json", "http://www.soest.hawaii.edu/hmrg/multibeam/", "http://upwell.pfeg.noaa.gov/erddap/rss/hmrg_bathytopo_50m_mhi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hmrg_bathytopo_50m_mhi&showErrors=false&email=", "University of Hawaii", "hmrg_bathytopo_50m_mhi"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8b86_38f7_767b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8b86_38f7_767b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8b86_38f7_767b/request", "", "public", "Mayaguez, Puerto Rico Coastal Digital Elevation Model (mayaguez 13 mhw 2006), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8b86_38f7_767b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8b86_38f7_767b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8b86_38f7_767b/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8b86_38f7_767b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8b86_38f7_767b&showErrors=false&email=", "NOAA", "noaa_ngdc_8b86_38f7_767b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f0fe_f438_286c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f0fe_f438_286c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f0fe_f438_286c/request", "", "public", "Mayaguez, Puerto Rico Coastal Digital Elevation Model (mayaguez 13 mhw 2007), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f0fe_f438_286c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f0fe_f438_286c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f0fe_f438_286c/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f0fe_f438_286c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f0fe_f438_286c&showErrors=false&email=", "NOAA", "noaa_ngdc_f0fe_f438_286c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_79fd_f25a_0606", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_79fd_f25a_0606.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_79fd_f25a_0606/request", "", "public", "Mayaguez, Puerto Rico Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, MayaguezPR A)", "Mayaguez, Puerto Rico Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_79fd_f25a_0606_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_79fd_f25a_0606_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_79fd_f25a_0606/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_79fd_f25a_0606.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_79fd_f25a_0606&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_79fd_f25a_0606"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_44c9_135d_2fc2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_44c9_135d_2fc2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_44c9_135d_2fc2/request", "", "public", "Mayaguez, Puerto Rico Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, MayaguezPR B)", "Mayaguez, Puerto Rico Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_44c9_135d_2fc2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_44c9_135d_2fc2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_44c9_135d_2fc2/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_44c9_135d_2fc2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_44c9_135d_2fc2&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_44c9_135d_2fc2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0ce4_0814_e806", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0ce4_0814_e806.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0ce4_0814_e806/request", "", "public", "Mayaguez, Puerto Rico Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, MayaguezPR C)", "Mayaguez, Puerto Rico Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0ce4_0814_e806_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0ce4_0814_e806_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0ce4_0814_e806/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0ce4_0814_e806.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0ce4_0814_e806&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_0ce4_0814_e806"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee46_8e33_cee9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee46_8e33_cee9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ee46_8e33_cee9/request", "", "public", "mean Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, wspd.10m.day.ltm), 0001", "mean Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (daily Long Term Mean mean 10-meter wind speed, m s**-1)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ee46_8e33_cee9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ee46_8e33_cee9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ee46_8e33_cee9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ee46_8e33_cee9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ee46_8e33_cee9&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_ee46_8e33_cee9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e81b_c342_297e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e81b_c342_297e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e81b_c342_297e/request", "", "public", "Midway Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, Midway A)", "Midway Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e81b_c342_297e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e81b_c342_297e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e81b_c342_297e/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e81b_c342_297e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e81b_c342_297e&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_e81b_c342_297e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_fbee_9c67_4105", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_fbee_9c67_4105.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_fbee_9c67_4105/request", "", "public", "Midway Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, Midway B), 0.0016666666\u00b0", "Midway Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_fbee_9c67_4105_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_fbee_9c67_4105_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_fbee_9c67_4105/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_fbee_9c67_4105.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_fbee_9c67_4105&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_fbee_9c67_4105"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4121_cdaf_ed87", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4121_cdaf_ed87.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4121_cdaf_ed87/request", "", "public", "Midway Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, Midway C), 5.5555557E-4\u00b0", "Midway Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4121_cdaf_ed87_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4121_cdaf_ed87_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4121_cdaf_ed87/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4121_cdaf_ed87.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4121_cdaf_ed87&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_4121_cdaf_ed87"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c2d0_4a51_dcb7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c2d0_4a51_dcb7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c2d0_4a51_dcb7/request", "", "public", "Mobile, Alabama Coastal Digital Elevation Model (Top Dataset, Regional, mobile 13 mhw 2009), 9.259259E-5\u00b0", "Mobile, Alabama Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c2d0_4a51_dcb7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c2d0_4a51_dcb7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c2d0_4a51_dcb7/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c2d0_4a51_dcb7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c2d0_4a51_dcb7&showErrors=false&email=", "NOAA", "noaa_ngdc_c2d0_4a51_dcb7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0442_a2a0_cf5a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0442_a2a0_cf5a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0442_a2a0_cf5a/request", "", "public", "Mobile, Alabama Coastal Digital Elevation Model (Top Dataset, Regional, mobile 13 navd88 2009), 9.259259E-5\u00b0", "Mobile, Alabama Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0442_a2a0_cf5a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0442_a2a0_cf5a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0442_a2a0_cf5a/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0442_a2a0_cf5a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0442_a2a0_cf5a&showErrors=false&email=", "NOAA", "noaa_ngdc_0442_a2a0_cf5a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_99c2_e495_30e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_99c2_e495_30e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_99c2_e495_30e1/request", "", "public", "MODIS AQUA L3 CHLA DAILY 4KM R", "HMODISA Level-3 Standard Mapped Image (Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Chlorophyll-a (CHLA) DAILY 4KM R)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll a concentration, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_99c2_e495_30e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_99c2_e495_30e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_99c2_e495_30e1/index.json", "https://podaac.jpl.nasa.gov/dataset/MODIS_Aqua_L3_CHLA_Daily_4km_R", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_99c2_e495_30e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_99c2_e495_30e1&showErrors=false&email=", "NASA JPL", "nasa_jpl_99c2_e495_30e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_0d42_152d_f9ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_0d42_152d_f9ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_0d42_152d_f9ea/request", "", "public", "MODIS AQUA L3 CHLA MONTHLY 4KM R", "HMODISA Level-3 Standard Mapped Image (Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Chlorophyll-a (CHLA) MONTHLY 4KM R)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll a concentration, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_0d42_152d_f9ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_0d42_152d_f9ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_0d42_152d_f9ea/index.json", "https://podaac.jpl.nasa.gov/dataset/MODIS_Aqua_L3_CHLA_Monthly_4km_R", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_0d42_152d_f9ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_0d42_152d_f9ea&showErrors=false&email=", "NASA JPL", "nasa_jpl_0d42_152d_f9ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPIC1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPIC1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPIC1day/request", "", "public", "MODIS Aqua, Level-3 SMI, Global, 4km, Particulate Inorganic Carbon, 2003-present (1 Day Composite)", "MODIS Aqua, Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC) (1 Day Composite)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Calcite Concentration, Balch and Gordon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPIC1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPIC1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPIC1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MPIC_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPIC1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPIC1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMPIC1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPIC8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPIC8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPIC8day/request", "", "public", "MODIS Aqua, Level-3 SMI, Global, 4km, Particulate Inorganic Carbon, 2003-present (8 Day Composite)", "MODIS Aqua, Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC) (8 Day Composite)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Calcite Concentration, Balch and Gordon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPIC8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPIC8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPIC8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MPIC_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPIC8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPIC8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMPIC8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPICmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPICmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPICmday/request", "", "public", "MODIS Aqua, Level-3 SMI, Global, 4km, Particulate Inorganic Carbon, 2003-present (Monthly Composite)", "MODIS Aqua, Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC) (Monthly Composite)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Calcite Concentration, Balch and Gordon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPICmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPICmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPICmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MPIC_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPICmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPICmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdMPICmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPOC1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPOC1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPOC1day/request", "", "public", "MODIS Aqua, Level-3 SMI, Global, 4km, Particulate Organic Carbon, 2003-present (1 Day Composite)", "MODIS Aqua, Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC) (1 Day Composite)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, D. Stramski, 2007 (443/555 version), mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPOC1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPOC1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPOC1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MPOC_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPOC1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPOC1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMPOC1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPOC8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPOC8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPOC8day/request", "", "public", "MODIS Aqua, Level-3 SMI, Global, 4km, Particulate Organic Carbon, 2003-present (8 Day Composite)", "MODIS Aqua, Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC) (8 Day Composite)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, D. Stramski, 2007 (443/555 version), mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPOC8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPOC8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPOC8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MPOC_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPOC8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPOC8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMPOC8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPOCmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPOCmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPOCmday/request", "", "public", "MODIS Aqua, Level-3 SMI, Global, 4km, Particulate Organic Carbon, 2003-present (Monthly Composite)", "MODIS Aqua, Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC) (Monthly Composite)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, D. Stramski, 2007 (443/555 version), mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPOCmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPOCmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPOCmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MPOC_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPOCmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPOCmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdMPOCmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_23f6_8c6b_d378", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_23f6_8c6b_d378.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_23f6_8c6b_d378/request", "", "public", "Montauk, New York Coastal Digital Elevation Model (Top Dataset, Regional, montauk 13 mhw 2007), 9.259209E-5\u00b0", "Montauk, New York Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_23f6_8c6b_d378_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_23f6_8c6b_d378_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_23f6_8c6b_d378/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_23f6_8c6b_d378.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_23f6_8c6b_d378&showErrors=false&email=", "NOAA", "noaa_ngdc_23f6_8c6b_d378"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c961_4223_7b71", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c961_4223_7b71.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c961_4223_7b71/request", "", "public", "Montauk, New York Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, MontaukNY A), 0.013333\u00b0", "Montauk, New York Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c961_4223_7b71_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c961_4223_7b71_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c961_4223_7b71/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c961_4223_7b71.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c961_4223_7b71&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_c961_4223_7b71"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c267_4d91_185f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c267_4d91_185f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c267_4d91_185f/request", "", "public", "Montauk, New York Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, MontaukNY B)", "Montauk, New York Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c267_4d91_185f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c267_4d91_185f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c267_4d91_185f/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c267_4d91_185f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c267_4d91_185f&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_c267_4d91_185f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0f4c_8541_aa34", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0f4c_8541_aa34.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0f4c_8541_aa34/request", "", "public", "Montauk, New York Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, MontaukNY C)", "Montauk, New York Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0f4c_8541_aa34_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0f4c_8541_aa34_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0f4c_8541_aa34/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0f4c_8541_aa34.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0f4c_8541_aa34&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_0f4c_8541_aa34"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_41b0_e149_84bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_41b0_e149_84bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_41b0_e149_84bb/request", "", "public", "Monterey Bay (P080) Bathymetric Digital Elevation Model (monterey bay P080 2018), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_41b0_e149_84bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_41b0_e149_84bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_41b0_e149_84bb/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_41b0_e149_84bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_41b0_e149_84bb&showErrors=false&email=", "NOAA", "noaa_ngdc_41b0_e149_84bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c059_3f24_5a93", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c059_3f24_5a93.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c059_3f24_5a93/request", "", "public", "Monterey, California Coastal Digital Elevation Model (monterey 13 mhw 2012), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c059_3f24_5a93_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c059_3f24_5a93_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c059_3f24_5a93/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c059_3f24_5a93.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c059_3f24_5a93&showErrors=false&email=", "NOAA", "noaa_ngdc_c059_3f24_5a93"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cf8a_e288_2b53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cf8a_e288_2b53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_cf8a_e288_2b53/request", "", "public", "Monterey, California Coastal Digital Elevation Model (monterey 13 navd88 2012), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_cf8a_e288_2b53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_cf8a_e288_2b53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_cf8a_e288_2b53/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_cf8a_e288_2b53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_cf8a_e288_2b53&showErrors=false&email=", "NOAA", "noaa_ngdc_cf8a_e288_2b53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de03_6e0a_a087", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de03_6e0a_a087.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_de03_6e0a_a087/request", "", "public", "monthly interannual std air from the NCEP Reanalysis (Top Dataset, pressure, air.mon.inter.std), 2.5\u00b0, 0001", "monthly interannual std air from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Interannual Standard Deviation of Air Temperature by Month, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_de03_6e0a_a087_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_de03_6e0a_a087_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_de03_6e0a_a087/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_de03_6e0a_a087.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_de03_6e0a_a087&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_de03_6e0a_a087"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3125_433c_e9ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3125_433c_e9ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3125_433c_e9ab/request", "", "public", "monthly interannual std hgt from the NCEP Reanalysis (Top Dataset, pressure, hgt.mon.inter.std), 2.5\u00b0, 0001", "monthly interannual std hgt from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Monthly Interannual Standard Deviation of Geopotential Height, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3125_433c_e9ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3125_433c_e9ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3125_433c_e9ab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3125_433c_e9ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3125_433c_e9ab&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_3125_433c_e9ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a00_d29f_2aac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a00_d29f_2aac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9a00_d29f_2aac/request", "", "public", "monthly interannual std of air.tropp from the NCEP Reanalysis (air.mon.inter.std), 2.5\u00b0, 0001", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Interannual Standard Deviation of Air Temperature by Month, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9a00_d29f_2aac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9a00_d29f_2aac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9a00_d29f_2aac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9a00_d29f_2aac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9a00_d29f_2aac&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9a00_d29f_2aac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2995_99ac_daab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2995_99ac_daab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2995_99ac_daab/request", "", "public", "monthly interannual std of csulf.ntat from the NCEP Reanalysis (csulftop.mon.inter.std), 0001", "Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsulf (Interannual Standard Deviation of Clear Sky Upward Longwave Flux by Month, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2995_99ac_daab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2995_99ac_daab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2995_99ac_daab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2995_99ac_daab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2995_99ac_daab&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2995_99ac_daab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a40_7bc4_aada", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a40_7bc4_aada.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a40_7bc4_aada/request", "", "public", "monthly interannual std of csusf.ntat from the NCEP Reanalysis (csusftop.mon.inter.std), 0001", "Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsusf (Interannual Standard Deviation of Clear Sky Upward Shortwave Flux by Month, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a40_7bc4_aada_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a40_7bc4_aada_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a40_7bc4_aada/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a40_7bc4_aada.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a40_7bc4_aada&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5a40_7bc4_aada"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fd4_8594_57cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fd4_8594_57cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7fd4_8594_57cf/request", "", "public", "monthly interannual std of dswrf.ntat from the NCEP Reanalysis (dswrftop.mon.inter.std), 0001", "Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Interannual Standard Deviation of Downward Solar Radiation Flux by Month, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7fd4_8594_57cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7fd4_8594_57cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7fd4_8594_57cf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7fd4_8594_57cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7fd4_8594_57cf&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7fd4_8594_57cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c73a_7bae_8744", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c73a_7bae_8744.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c73a_7bae_8744/request", "", "public", "monthly interannual std of pres.tropp from the NCEP Reanalysis (pres.mon.inter.std), 2.5\u00b0, 0001", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Interannual Standard Deviation of Pressure by Month, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c73a_7bae_8744_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c73a_7bae_8744_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c73a_7bae_8744/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c73a_7bae_8744.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c73a_7bae_8744&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c73a_7bae_8744"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e9e_f7b3_b5b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e9e_f7b3_b5b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7e9e_f7b3_b5b7/request", "", "public", "monthly interannual std of ulwrf.ntat from the NCEP Reanalysis (ulwrftop.mon.inter.std), 0001", "Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Interannual Standard Deviation of Upward Longwave Radiation Flux by Month, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7e9e_f7b3_b5b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7e9e_f7b3_b5b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e9e_f7b3_b5b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e9e_f7b3_b5b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e9e_f7b3_b5b7&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7e9e_f7b3_b5b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13aa_eb61_91cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13aa_eb61_91cc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_13aa_eb61_91cc/request", "", "public", "monthly interannual std of uswrf.ntat from the NCEP Reanalysis (uswrftop.mon.inter.std), 0001", "Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Interannual Standard Deviation of Upward Solar Radiation Flux by Month, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_13aa_eb61_91cc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_13aa_eb61_91cc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_13aa_eb61_91cc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_13aa_eb61_91cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_13aa_eb61_91cc&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_13aa_eb61_91cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_074d_61b4_74a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_074d_61b4_74a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_074d_61b4_74a7/request", "", "public", "monthly interannual std omega from the NCEP Reanalysis (omega.mon.inter.std), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Interannual Stardard Deviation of Omega by Month, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_074d_61b4_74a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_074d_61b4_74a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_074d_61b4_74a7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_074d_61b4_74a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_074d_61b4_74a7&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_074d_61b4_74a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fdb_68ec_6c74", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fdb_68ec_6c74.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4fdb_68ec_6c74/request", "", "public", "monthly interannual std shum from the NCEP Reanalysis (shum.mon.inter.std), 2.5\u00b0, 0001", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Interannual Standard Deviation of Specific Humidity by Month, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4fdb_68ec_6c74_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4fdb_68ec_6c74_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4fdb_68ec_6c74/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4fdb_68ec_6c74.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4fdb_68ec_6c74&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_4fdb_68ec_6c74"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d45_f037_13b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d45_f037_13b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2d45_f037_13b0/request", "", "public", "monthly interannual std slp from the NCEP Reanalysis (Top Dataset, surface, slp.mon.inter.std), 2.5\u00b0, 0001", "monthly interannual std slp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Interannual Standard Deviation of Sea Level Pressure by Month, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2d45_f037_13b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2d45_f037_13b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d45_f037_13b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d45_f037_13b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d45_f037_13b0&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2d45_f037_13b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7815_a3fa_f366", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7815_a3fa_f366.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7815_a3fa_f366/request", "", "public", "monthly interannual std uwnd from the NCEP Reanalysis (uwnd.mon.inter.std), 2.5\u00b0, 0001", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Interannual Standard Deviation of U-Wind by Month, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7815_a3fa_f366_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7815_a3fa_f366_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7815_a3fa_f366/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7815_a3fa_f366.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7815_a3fa_f366&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7815_a3fa_f366"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6211_627a_a805", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6211_627a_a805.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6211_627a_a805/request", "", "public", "monthly interannual std vwnd from the NCEP Reanalysis (vwnd.mon.inter.std), 2.5\u00b0, 0001", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Interannual Standard Deviation of V-Wind by Month, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6211_627a_a805_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6211_627a_a805_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6211_627a_a805/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6211_627a_a805.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6211_627a_a805&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6211_627a_a805"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_946c_261f_6a98", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_946c_261f_6a98.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_946c_261f_6a98/request", "", "public", "monthly intraannual std of air.tropp from the NCEP Reanalysis (air.mon.intra.std), 2.5\u00b0, 0001", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Intraannual Standard Deviation of Air Temperature by Month, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_946c_261f_6a98_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_946c_261f_6a98_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_946c_261f_6a98/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_946c_261f_6a98.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_946c_261f_6a98&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_946c_261f_6a98"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e740_9090_64fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e740_9090_64fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e740_9090_64fc/request", "", "public", "monthly intraannual std of pres.tropp from the NCEP Reanalysis (pres.mon.intra.std), 2.5\u00b0, 0001", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Intraannual Standard Deviation of Pressure by Month, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e740_9090_64fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e740_9090_64fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e740_9090_64fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e740_9090_64fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e740_9090_64fc&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e740_9090_64fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ef0_620b_cdcb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ef0_620b_cdcb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0ef0_620b_cdcb/request", "", "public", "Monthly Long Term Mean from NOAA interpolated OLR Dataset (olr.mon.1981-2010.ltm), 2.5\u00b0, 0001", "Calculated from monthly means formed from Interpolated NOAA Outgoing Longwave Radiation (OLR) daily data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nolr (OLR longterm monthly means, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0ef0_620b_cdcb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0ef0_620b_cdcb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0ef0_620b_cdcb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.interp_OLR.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0ef0_620b_cdcb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0ef0_620b_cdcb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0ef0_620b_cdcb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_843c_4c9d_05a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_843c_4c9d_05a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_843c_4c9d_05a0/request", "", "public", "Monthly Long Term Mean from NOAA interpolated OLR Dataset (olr.mon.ltm), 2.5\u00b0, 0001", "Calculated from monthly means formed from Interpolated NOAA Outgoing Longwave Radiation (OLR) daily data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nolr (OLR longterm monthly means, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_843c_4c9d_05a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_843c_4c9d_05a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_843c_4c9d_05a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.interp_OLR.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_843c_4c9d_05a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_843c_4c9d_05a0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_843c_4c9d_05a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6976_179c_c7de", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6976_179c_c7de.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6976_179c_c7de/request", "", "public", "monthly ltm air from the NCEP Reanalysis (Top Dataset, pressure, air.mon.ltm), 2.5\u00b0, 0001", "monthly ltm air from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Long Term Mean of Air temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6976_179c_c7de_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6976_179c_c7de_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6976_179c_c7de/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6976_179c_c7de.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6976_179c_c7de&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6976_179c_c7de"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9895_94e7_c8d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9895_94e7_c8d1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9895_94e7_c8d1/request", "", "public", "monthly ltm air.sig995 from the NCEP Reanalysis (Top Dataset, surface, air.mon.ltm), 2.5\u00b0, 0001", "monthly ltm air.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Mean Air Temperature at sigma level 0.995, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9895_94e7_c8d1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9895_94e7_c8d1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9895_94e7_c8d1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9895_94e7_c8d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9895_94e7_c8d1&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9895_94e7_c8d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1db8_da8f_ee0d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1db8_da8f_ee0d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1db8_da8f_ee0d/request", "", "public", "monthly ltm air.sig995 from the NCEP Reanalysis (Top Dataset, surface, air.sig995.mon.ltm), 2.5\u00b0, 0001", "monthly ltm air.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Mean Air Temperature at sigma level 0.995, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1db8_da8f_ee0d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1db8_da8f_ee0d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1db8_da8f_ee0d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1db8_da8f_ee0d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1db8_da8f_ee0d&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_1db8_da8f_ee0d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b28_84f3_ea3e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b28_84f3_ea3e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8b28_84f3_ea3e/request", "", "public", "monthly ltm air.tropp from the NCEP Reanalysis (Top Dataset, tropopause, air.mon.ltm), 2.5\u00b0, 0001", "monthly ltm air.tropp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Mean of Air Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8b28_84f3_ea3e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8b28_84f3_ea3e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8b28_84f3_ea3e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8b28_84f3_ea3e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8b28_84f3_ea3e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8b28_84f3_ea3e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b670_fb41_70c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b670_fb41_70c5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b670_fb41_70c5/request", "", "public", "monthly ltm air.tropp from the NCEP Reanalysis (Top Dataset, tropopause, air.tropp.mon.ltm), 2.5\u00b0, 0001", "monthly ltm air.tropp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Mean of Air Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b670_fb41_70c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b670_fb41_70c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b670_fb41_70c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b670_fb41_70c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b670_fb41_70c5&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b670_fb41_70c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_47a7_180b_7e5c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_47a7_180b_7e5c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_47a7_180b_7e5c/request", "", "public", "monthly ltm csulf.ntat from the NCEP Reanalysis (Top Dataset, other gauss, csulf.ntat.mon.ltm), 0001", "monthly ltm csulf.ntat from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsulf (Monthly Long Term Mean of Clear Sky Upward Longwave Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_47a7_180b_7e5c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_47a7_180b_7e5c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_47a7_180b_7e5c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_47a7_180b_7e5c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_47a7_180b_7e5c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_47a7_180b_7e5c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c63_b7fb_9506", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c63_b7fb_9506.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c63_b7fb_9506/request", "", "public", "monthly ltm csusf.ntat from the NCEP Reanalysis (Top Dataset, other gauss, csusf.ntat.mon.ltm), 0001", "monthly ltm csusf.ntat from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsusf (Monthly Long Term Mean of Clear Sky Upward Shortwave Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c63_b7fb_9506_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c63_b7fb_9506_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c63_b7fb_9506/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c63_b7fb_9506.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c63_b7fb_9506&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9c63_b7fb_9506"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a605_0c40_2aaa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a605_0c40_2aaa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a605_0c40_2aaa/request", "", "public", "monthly ltm dswrf.ntat from the NCEP Reanalysis (Top Dataset, other gauss, dswrf.ntat.mon.ltm), 0001", "monthly ltm dswrf.ntat from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Monthly Long Term Mean of Downward Solar Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a605_0c40_2aaa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a605_0c40_2aaa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a605_0c40_2aaa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a605_0c40_2aaa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a605_0c40_2aaa&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a605_0c40_2aaa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_04ec_c988_fb79", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_04ec_c988_fb79.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_04ec_c988_fb79/request", "", "public", "monthly ltm hgt from the NCEP Reanalysis (Top Dataset, pressure, hgt.mon.ltm), 2.5\u00b0, 0001", "monthly ltm hgt from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Monthly Long Term mean geopotential height, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_04ec_c988_fb79_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_04ec_c988_fb79_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_04ec_c988_fb79/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_04ec_c988_fb79.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_04ec_c988_fb79&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_04ec_c988_fb79"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_426a_e948_0ce9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_426a_e948_0ce9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_426a_e948_0ce9/request", "", "public", "monthly ltm lftx from the NCEP Reanalysis (Top Dataset, surface, lftx.mon.ltm), 2.5\u00b0, 0001", "monthly ltm lftx from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlftx (Monthly Long Term Mean Surface Lifted Index, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_426a_e948_0ce9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_426a_e948_0ce9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_426a_e948_0ce9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_426a_e948_0ce9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_426a_e948_0ce9&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_426a_e948_0ce9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58b9_7d23_6c9c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58b9_7d23_6c9c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_58b9_7d23_6c9c/request", "", "public", "monthly ltm lftx4 from the NCEP Reanalysis (Top Dataset, surface, lftx4.mon.ltm), 2.5\u00b0, 0001", "monthly ltm lftx4 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlftx4 (Monthly Long Term Mean Surface Lifted Index, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_58b9_7d23_6c9c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_58b9_7d23_6c9c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_58b9_7d23_6c9c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_58b9_7d23_6c9c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_58b9_7d23_6c9c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_58b9_7d23_6c9c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8902_2f29_8de9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8902_2f29_8de9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8902_2f29_8de9/request", "", "public", "monthly ltm omega from the NCEP Reanalysis (Top Dataset, pressure, omega.mon.ltm), 2.5\u00b0, 0001", "monthly ltm omega from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Monthly Long Term Mean of Omega, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8902_2f29_8de9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8902_2f29_8de9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8902_2f29_8de9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8902_2f29_8de9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8902_2f29_8de9&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8902_2f29_8de9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8f0_040e_8c0a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8f0_040e_8c0a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a8f0_040e_8c0a/request", "", "public", "monthly ltm omega.sig995 from the NCEP Reanalysis (Top Dataset, surface, omega.sig995.mon.ltm), 2.5\u00b0, 0001", "monthly ltm omega.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Monthly Long Term Mean omega at sigma level 0.995, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a8f0_040e_8c0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a8f0_040e_8c0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a8f0_040e_8c0a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a8f0_040e_8c0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a8f0_040e_8c0a&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a8f0_040e_8c0a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_197b_cd1e_15b2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_197b_cd1e_15b2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_197b_cd1e_15b2/request", "", "public", "monthly ltm pottmp from the NCEP Reanalysis (Top Dataset, pressure, pottmp.mon.ltm), 2.5\u00b0, 0001", "monthly ltm pottmp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\npottmp (Monthly Long Term Mean of Potential Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_197b_cd1e_15b2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_197b_cd1e_15b2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_197b_cd1e_15b2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_197b_cd1e_15b2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_197b_cd1e_15b2&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_197b_cd1e_15b2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b6dc_a86e_594f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b6dc_a86e_594f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b6dc_a86e_594f/request", "", "public", "monthly ltm pr_wtr.eatm from the NCEP Reanalysis (Top Dataset, surface, pr wtr.eatm.mon.ltm), 2.5\u00b0, 0001", "monthly ltm pr_wtr.eatm from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Long Term Mean of Precipitable Water Content, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b6dc_a86e_594f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b6dc_a86e_594f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b6dc_a86e_594f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b6dc_a86e_594f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b6dc_a86e_594f&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b6dc_a86e_594f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9be_8a95_704e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9be_8a95_704e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c9be_8a95_704e/request", "", "public", "monthly ltm pr_wtr.eatm from the NCEP Reanalysis (Top Dataset, surface, pr wtr.mon.ltm), 2.5\u00b0, 0001", "monthly ltm pr_wtr.eatm from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Long Term Mean of Precipitable Water Content, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c9be_8a95_704e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c9be_8a95_704e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c9be_8a95_704e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c9be_8a95_704e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c9be_8a95_704e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c9be_8a95_704e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bab0_cec8_bc31", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bab0_cec8_bc31.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bab0_cec8_bc31/request", "", "public", "monthly ltm pres from the NCEP Reanalysis (Top Dataset, surface, pres.mon.ltm), 2.5\u00b0, 0001", "monthly ltm pres from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Mean of Surface Pressure, millibars)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bab0_cec8_bc31_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bab0_cec8_bc31_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bab0_cec8_bc31/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bab0_cec8_bc31.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bab0_cec8_bc31&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_bab0_cec8_bc31"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd39_41e6_bfe8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd39_41e6_bfe8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fd39_41e6_bfe8/request", "", "public", "monthly ltm pres.hcb from the NCEP Reanalysis (Top Dataset, other gauss, pres.hcb.mon.ltm), 0001", "monthly ltm pres.hcb from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Mean of High Cloud Bottom Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fd39_41e6_bfe8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fd39_41e6_bfe8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fd39_41e6_bfe8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fd39_41e6_bfe8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fd39_41e6_bfe8&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_fd39_41e6_bfe8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87f2_50f4_5736", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87f2_50f4_5736.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_87f2_50f4_5736/request", "", "public", "monthly ltm pres.hct from the NCEP Reanalysis (Top Dataset, other gauss, pres.hct.mon.ltm), 0001", "monthly ltm pres.hct from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Mean of High Cloud Top Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_87f2_50f4_5736_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_87f2_50f4_5736_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_87f2_50f4_5736/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_87f2_50f4_5736.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_87f2_50f4_5736&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_87f2_50f4_5736"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba21_3f8c_5422", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba21_3f8c_5422.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ba21_3f8c_5422/request", "", "public", "monthly ltm pres.lcb from the NCEP Reanalysis (Top Dataset, other gauss, pres.lcb.mon.ltm), 0001", "monthly ltm pres.lcb from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Mean of Low Cloud Bottom Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ba21_3f8c_5422_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ba21_3f8c_5422_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ba21_3f8c_5422/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ba21_3f8c_5422.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ba21_3f8c_5422&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_ba21_3f8c_5422"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca2b_d350_4236", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca2b_d350_4236.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca2b_d350_4236/request", "", "public", "monthly ltm pres.lct from the NCEP Reanalysis (Top Dataset, other gauss, pres.lct.mon.ltm), 0001", "monthly ltm pres.lct from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Mean of Low Cloud Top Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca2b_d350_4236_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca2b_d350_4236_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca2b_d350_4236/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca2b_d350_4236.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca2b_d350_4236&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_ca2b_d350_4236"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d38c_0eac_5b2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d38c_0eac_5b2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d38c_0eac_5b2d/request", "", "public", "monthly ltm pres.mcb from the NCEP Reanalysis (Top Dataset, other gauss, pres.mcb.mon.ltm), 0001", "monthly ltm pres.mcb from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Mean of Middle Cloud Bottom Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d38c_0eac_5b2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d38c_0eac_5b2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d38c_0eac_5b2d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d38c_0eac_5b2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d38c_0eac_5b2d&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d38c_0eac_5b2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f26f_58c3_08c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f26f_58c3_08c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f26f_58c3_08c0/request", "", "public", "monthly ltm pres.mct from the NCEP Reanalysis (Top Dataset, other gauss, pres.mct.mon.ltm), 0001", "monthly ltm pres.mct from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Mean of Middle Cloud Top Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f26f_58c3_08c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f26f_58c3_08c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f26f_58c3_08c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f26f_58c3_08c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f26f_58c3_08c0&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f26f_58c3_08c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_145e_c24f_98ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_145e_c24f_98ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_145e_c24f_98ec/request", "", "public", "monthly ltm pres.tropp from the NCEP Reanalysis (Top Dataset, tropopause, pres.mon.ltm), 2.5\u00b0, 0001", "monthly ltm pres.tropp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Mean of Pressure, millibars)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_145e_c24f_98ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_145e_c24f_98ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_145e_c24f_98ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_145e_c24f_98ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_145e_c24f_98ec&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_145e_c24f_98ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87fc_7325_abfd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87fc_7325_abfd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_87fc_7325_abfd/request", "", "public", "monthly ltm pres.tropp from the NCEP Reanalysis (Top Dataset, tropopause, pres.tropp.mon.ltm), 2.5\u00b0, 0001", "monthly ltm pres.tropp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Mean of Pressure, millibars)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_87fc_7325_abfd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_87fc_7325_abfd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_87fc_7325_abfd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_87fc_7325_abfd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_87fc_7325_abfd&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_87fc_7325_abfd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15ed_e4a5_989e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15ed_e4a5_989e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_15ed_e4a5_989e/request", "", "public", "monthly ltm rhum from the NCEP Reanalysis (Top Dataset, pressure, rhum.mon.ltm), 2.5\u00b0, 0001", "monthly ltm rhum from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Monthly Long Term Mean of Relative Humidity, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_15ed_e4a5_989e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_15ed_e4a5_989e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_15ed_e4a5_989e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_15ed_e4a5_989e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_15ed_e4a5_989e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_15ed_e4a5_989e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f169_30b3_5ef6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f169_30b3_5ef6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f169_30b3_5ef6/request", "", "public", "monthly ltm shum from the NCEP Reanalysis (Top Dataset, pressure, shum.mon.ltm), 2.5\u00b0, 0001", "monthly ltm shum from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Monthly Long Term Mean of Specific Humidity, grams/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f169_30b3_5ef6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f169_30b3_5ef6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f169_30b3_5ef6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f169_30b3_5ef6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f169_30b3_5ef6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f169_30b3_5ef6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f04_27fa_47dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f04_27fa_47dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f04_27fa_47dd/request", "", "public", "monthly ltm tcdc.eatm from the NCEP Reanalysis (Top Dataset, other gauss, tcdc.eatm.mon.ltm), 0001", "monthly ltm tcdc.eatm from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Mean of Total Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f04_27fa_47dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f04_27fa_47dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f04_27fa_47dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f04_27fa_47dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f04_27fa_47dd&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2f04_27fa_47dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e1a7_7db8_8be8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e1a7_7db8_8be8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e1a7_7db8_8be8/request", "", "public", "monthly ltm ulwrf.ntat from the NCEP Reanalysis (Top Dataset, other gauss, ulwrf.ntat.mon.ltm), 0001", "monthly ltm ulwrf.ntat from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Long Term Mean of Upward Longwave Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e1a7_7db8_8be8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e1a7_7db8_8be8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e1a7_7db8_8be8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e1a7_7db8_8be8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e1a7_7db8_8be8&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e1a7_7db8_8be8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_84b6_936c_194b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_84b6_936c_194b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_84b6_936c_194b/request", "", "public", "monthly ltm uswrf.ntat from the NCEP Reanalysis (Top Dataset, other gauss, uswrf.ntat.mon.ltm), 0001", "monthly ltm uswrf.ntat from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Long Term Mean of Upward Solar Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_84b6_936c_194b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_84b6_936c_194b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_84b6_936c_194b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_84b6_936c_194b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_84b6_936c_194b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_84b6_936c_194b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63ac_a16e_16d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63ac_a16e_16d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_63ac_a16e_16d5/request", "", "public", "monthly ltm uwnd from the NCEP Reanalysis (Top Dataset, pressure, uwnd.mon.ltm), 2.5\u00b0, 0001", "monthly ltm uwnd from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Monthly Long Term mean u wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_63ac_a16e_16d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_63ac_a16e_16d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_63ac_a16e_16d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_63ac_a16e_16d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_63ac_a16e_16d5&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_63ac_a16e_16d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9246_ccc4_7593", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9246_ccc4_7593.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9246_ccc4_7593/request", "", "public", "monthly ltm uwnd.sig995 from the NCEP Reanalysis (Top Dataset, surface, uwnd.mon.ltm), 2.5\u00b0, 0001", "monthly ltm uwnd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly Long Term Mean Zonal Wind at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9246_ccc4_7593_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9246_ccc4_7593_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9246_ccc4_7593/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9246_ccc4_7593.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9246_ccc4_7593&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9246_ccc4_7593"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c85_85ce_93db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c85_85ce_93db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7c85_85ce_93db/request", "", "public", "monthly ltm uwnd.sig995 from the NCEP Reanalysis (Top Dataset, surface, uwnd.sig995.mon.ltm), 2.5\u00b0, 0001", "monthly ltm uwnd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly Long Term Mean Zonal Wind at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7c85_85ce_93db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7c85_85ce_93db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7c85_85ce_93db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7c85_85ce_93db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7c85_85ce_93db&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7c85_85ce_93db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e58e_6561_7895", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e58e_6561_7895.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e58e_6561_7895/request", "", "public", "monthly ltm vwnd from the NCEP Reanalysis (Top Dataset, pressure, vwnd.mon.ltm), 2.5\u00b0, 0001", "monthly ltm vwnd from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Monthly Long Term mean v wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e58e_6561_7895_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e58e_6561_7895_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e58e_6561_7895/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e58e_6561_7895.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e58e_6561_7895&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e58e_6561_7895"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a099_9373_8f2c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a099_9373_8f2c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a099_9373_8f2c/request", "", "public", "monthly ltm vwnd.sig995 from the NCEP Reanalysis (Top Dataset, surface, vwnd.mon.ltm), 2.5\u00b0, 0001", "monthly ltm vwnd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly Long Term Mean Meridional Wind at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a099_9373_8f2c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a099_9373_8f2c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a099_9373_8f2c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a099_9373_8f2c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a099_9373_8f2c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a099_9373_8f2c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02ab_549a_71b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02ab_549a_71b1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_02ab_549a_71b1/request", "", "public", "monthly ltm vwnd.sig995 from the NCEP Reanalysis (Top Dataset, surface, vwnd.sig995.mon.ltm), 2.5\u00b0, 0001", "monthly ltm vwnd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly Long Term Mean Meridional Wind at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_02ab_549a_71b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_02ab_549a_71b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_02ab_549a_71b1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_02ab_549a_71b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_02ab_549a_71b1&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_02ab_549a_71b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38aa_edb4_9ebb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38aa_edb4_9ebb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_38aa_edb4_9ebb/request", "", "public", "monthly ltm wspd from the NCEP Reanalysis (Top Dataset, pressure, wspd.mon.ltm), 2.5\u00b0, 0001", "monthly ltm wspd from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nwspd (Monthly Long Term Mean Wind Speed, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_38aa_edb4_9ebb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_38aa_edb4_9ebb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_38aa_edb4_9ebb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_38aa_edb4_9ebb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_38aa_edb4_9ebb&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_38aa_edb4_9ebb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c8d9_d6da_e632", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c8d9_d6da_e632.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c8d9_d6da_e632/request", "", "public", "monthly ltm wspd.sig995 from the NCEP Reanalysis (Top Dataset, surface, wspd.mon.ltm), 2.5\u00b0, 0001", "monthly ltm wspd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Monthly Long Term Mean Wind Speed at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c8d9_d6da_e632_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c8d9_d6da_e632_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c8d9_d6da_e632/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c8d9_d6da_e632.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c8d9_d6da_e632&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c8d9_d6da_e632"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb59_7c67_d2a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb59_7c67_d2a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eb59_7c67_d2a6/request", "", "public", "monthly ltm wspd.sig995 from the NCEP Reanalysis (Top Dataset, surface, wspd.sig995.mon.ltm), 2.5\u00b0, 0001", "monthly ltm wspd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Monthly Long Term Mean Wind Speed at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eb59_7c67_d2a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eb59_7c67_d2a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb59_7c67_d2a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb59_7c67_d2a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb59_7c67_d2a6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_eb59_7c67_d2a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_500f_ce22_2524", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_500f_ce22_2524.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_500f_ce22_2524/request", "", "public", "monthly mean air from the NCEP Reanalysis (Top Dataset, pressure, air.mon.mean), 2.5\u00b0, 1948-present", "monthly mean air from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Mean of Air temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_500f_ce22_2524_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_500f_ce22_2524_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_500f_ce22_2524/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_500f_ce22_2524.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_500f_ce22_2524&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_500f_ce22_2524"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_996b_f4ec_46fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_996b_f4ec_46fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_996b_f4ec_46fc/request", "", "public", "monthly mean air.2m from the NCEP Reanalysis (Top Dataset, surface gauss, air.2m.mon.mean), 1948-present", "monthly mean air.2m from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Mean of Air Temperature, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_996b_f4ec_46fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_996b_f4ec_46fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_996b_f4ec_46fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_996b_f4ec_46fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_996b_f4ec_46fc&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_996b_f4ec_46fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d226_c018_84f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d226_c018_84f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d226_c018_84f2/request", "", "public", "monthly mean air.2m from the NCEP Reanalysis (Top Dataset, surface gauss, air2m.mon.mean), 1948-present", "monthly mean air.2m from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Mean of Air Temperature, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d226_c018_84f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d226_c018_84f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d226_c018_84f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d226_c018_84f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d226_c018_84f2&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d226_c018_84f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ac31_2c0b_c54b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ac31_2c0b_c54b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ac31_2c0b_c54b/request", "", "public", "monthly mean air.sig995 from the NCEP Reanalysis (Top Dataset, surface, air.mon.mean), 2.5\u00b0, 1948-present", "monthly mean air.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Mean Air Temperature at sigma level 0.995, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ac31_2c0b_c54b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ac31_2c0b_c54b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ac31_2c0b_c54b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ac31_2c0b_c54b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ac31_2c0b_c54b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_ac31_2c0b_c54b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3bbe_f770_79aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3bbe_f770_79aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3bbe_f770_79aa/request", "", "public", "monthly mean air.sig995 from the NCEP Reanalysis (Top Dataset, surface, air.sig995.mon.mean), 2.5\u00b0, 1948-present", "monthly mean air.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Mean Air Temperature at sigma level 0.995, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3bbe_f770_79aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3bbe_f770_79aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3bbe_f770_79aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3bbe_f770_79aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3bbe_f770_79aa&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_3bbe_f770_79aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86f3_16db_eeb7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86f3_16db_eeb7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_86f3_16db_eeb7/request", "", "public", "monthly mean air.tropp from the NCEP Reanalysis (Top Dataset, tropopause, air.mon.mean), 2.5\u00b0, 1948-present", "monthly mean air.tropp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Mean of Air Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86f3_16db_eeb7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86f3_16db_eeb7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86f3_16db_eeb7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86f3_16db_eeb7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86f3_16db_eeb7&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_86f3_16db_eeb7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57ae_b01a_e122", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57ae_b01a_e122.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_57ae_b01a_e122/request", "", "public", "monthly mean air.tropp from the NCEP Reanalysis (Top Dataset, tropopause, air.tropp.mon.mean), 2.5\u00b0, 1948-present", "monthly mean air.tropp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Mean of Air Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_57ae_b01a_e122_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_57ae_b01a_e122_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_57ae_b01a_e122/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_57ae_b01a_e122.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_57ae_b01a_e122&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_57ae_b01a_e122"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c145_9055_c890", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c145_9055_c890.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c145_9055_c890/request", "", "public", "monthly mean cfnlf.sfc from the NCEP Reanalysis (cfnlf.sfc.mon.mean), 1948-present", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncfnlf (Monthly Mean of Cloud Forcing Net Longwave Flux, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c145_9055_c890_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c145_9055_c890_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c145_9055_c890/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c145_9055_c890.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c145_9055_c890&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c145_9055_c890"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f078_5153_db55", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f078_5153_db55.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f078_5153_db55/request", "", "public", "monthly mean cfnlf.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, cfnlf.mon.mean), 1948-present", "monthly mean cfnlf.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncfnlf (Monthly Mean of Cloud Forcing Net Longwave Flux, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f078_5153_db55_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f078_5153_db55_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f078_5153_db55/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f078_5153_db55.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f078_5153_db55&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f078_5153_db55"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b94_f068_5c17", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b94_f068_5c17.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b94_f068_5c17/request", "", "public", "monthly mean cfnsf.sfc from the NCEP Reanalysis (cfnsf.sfc.mon.mean), 1948-present", "Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncfnsf (Monthly Mean Cloud Forcing Net Solar Flux at Surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b94_f068_5c17_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b94_f068_5c17_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b94_f068_5c17/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b94_f068_5c17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b94_f068_5c17&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7b94_f068_5c17"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f84f_1c2f_7568", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f84f_1c2f_7568.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f84f_1c2f_7568/request", "", "public", "monthly mean chi from the NCEP Reanalysis (Top Dataset, sigma, chi.mon.mean), 1948-present", "monthly mean chi from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from NCEP initialized reanalysis\n(daily means). It consists of T42 variables.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nchi (Monthly Mean of Velocity Potential, m*m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f84f_1c2f_7568_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f84f_1c2f_7568_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f84f_1c2f_7568/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/ncep.reanalysis.derived/sigma/chi.mon.mean.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f84f_1c2f_7568.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f84f_1c2f_7568&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f84f_1c2f_7568"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d97c_bbcb_4560", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d97c_bbcb_4560.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d97c_bbcb_4560/request", "", "public", "monthly mean chi from the NCEP Reanalysis (Top Dataset, spectral, chi.mon.mean), 1948-present", "monthly mean chi from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from NCEP initialized reanalysis\n(daily means). It consists of T42 variables.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nchi (Monthly Mean of Velocity Potential, m*m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d97c_bbcb_4560_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d97c_bbcb_4560_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d97c_bbcb_4560/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/ncep.reanalysis.derived/spectral/chi.mon.mean.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d97c_bbcb_4560.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d97c_bbcb_4560&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d97c_bbcb_4560"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f836_d765_4920", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f836_d765_4920.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f836_d765_4920/request", "", "public", "monthly mean cprat.sfc from the NCEP Reanalysis (cprat.sfc.mon.mean), 1948-present", "Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (Monthly Mean Convective Precipitation Rate at surface, Kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f836_d765_4920_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f836_d765_4920_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f836_d765_4920/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f836_d765_4920.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f836_d765_4920&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f836_d765_4920"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fcc8_c91f_38ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fcc8_c91f_38ba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fcc8_c91f_38ba/request", "", "public", "monthly mean csdlf.sfc from the NCEP Reanalysis (csdlf.sfc.mon.mean), 1948-present", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsdlf (Monthly Mean of Clear Sky Downward Longwave Flux, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fcc8_c91f_38ba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fcc8_c91f_38ba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fcc8_c91f_38ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fcc8_c91f_38ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fcc8_c91f_38ba&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_fcc8_c91f_38ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21c3_cd4c_2d5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21c3_cd4c_2d5b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_21c3_cd4c_2d5b/request", "", "public", "monthly mean csdlf.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, csdlf.mon.mean), 1948-present", "monthly mean csdlf.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsdlf (Monthly Mean of Clear Sky Downward Longwave Flux, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_21c3_cd4c_2d5b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_21c3_cd4c_2d5b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_21c3_cd4c_2d5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_21c3_cd4c_2d5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_21c3_cd4c_2d5b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_21c3_cd4c_2d5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50e6_c0c9_5369", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50e6_c0c9_5369.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_50e6_c0c9_5369/request", "", "public", "monthly mean csdsf.sfc from the NCEP Reanalysis (csdsf.sfc.mon.mean), 1948-present", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsdsf (Monthly Mean of Clear Sky Downward Solar Flux, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_50e6_c0c9_5369_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_50e6_c0c9_5369_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50e6_c0c9_5369/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50e6_c0c9_5369.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50e6_c0c9_5369&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_50e6_c0c9_5369"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b4c7_09cb_458e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b4c7_09cb_458e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b4c7_09cb_458e/request", "", "public", "monthly mean csdsf.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, csdsf.mon.mean), 1948-present", "monthly mean csdsf.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsdsf (Monthly Mean of Clear Sky Downward Solar Flux, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b4c7_09cb_458e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b4c7_09cb_458e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b4c7_09cb_458e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b4c7_09cb_458e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b4c7_09cb_458e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b4c7_09cb_458e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64fe_aa2e_c00d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64fe_aa2e_c00d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_64fe_aa2e_c00d/request", "", "public", "monthly mean csulf.ntat from the NCEP Reanalysis (csulf.ntat.mon.mean), 1948-present", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsulf (Monthly Mean of Clear Sky Upward Longwave Flux, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_64fe_aa2e_c00d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_64fe_aa2e_c00d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_64fe_aa2e_c00d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_64fe_aa2e_c00d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_64fe_aa2e_c00d&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_64fe_aa2e_c00d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f55_1783_7a71", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f55_1783_7a71.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f55_1783_7a71/request", "", "public", "monthly mean csusf.ntat from the NCEP Reanalysis (csusf.ntat.mon.mean), 1948-present", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsusf (Monthly Mean of Clear Sky Upward Shortwave Flux, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f55_1783_7a71_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f55_1783_7a71_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f55_1783_7a71/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f55_1783_7a71.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f55_1783_7a71&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9f55_1783_7a71"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d31_75ff_b9ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d31_75ff_b9ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2d31_75ff_b9ec/request", "", "public", "monthly mean csusf.sfc from the NCEP Reanalysis (csusf.sfc.mon.mean), 1948-present", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsusf (Monthly Mean of Clear Sky Upward Solar Flux, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2d31_75ff_b9ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2d31_75ff_b9ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d31_75ff_b9ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d31_75ff_b9ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d31_75ff_b9ec&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2d31_75ff_b9ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e152_c92c_e65f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e152_c92c_e65f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e152_c92c_e65f/request", "", "public", "monthly mean csusf.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, csusf.mon.mean), 1948-present", "monthly mean csusf.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsusf (Monthly Mean of Clear Sky Upward Solar Flux, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e152_c92c_e65f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e152_c92c_e65f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e152_c92c_e65f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e152_c92c_e65f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e152_c92c_e65f&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e152_c92c_e65f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9866_fdf1_738c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9866_fdf1_738c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9866_fdf1_738c/request", "", "public", "monthly mean daily tmax.2m from the NCEP Reanalysis (tmax.2m.mon.mean), 1948-present", "Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Mean Maximum Temperature at 2 m, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9866_fdf1_738c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9866_fdf1_738c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9866_fdf1_738c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9866_fdf1_738c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9866_fdf1_738c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9866_fdf1_738c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59c3_138a_f1ed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59c3_138a_f1ed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_59c3_138a_f1ed/request", "", "public", "monthly mean daily tmin.2m from the NCEP Reanalysis (tmin.2m.mon.mean), 1948-present", "Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Mean Minimum Temperature at 2 m, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_59c3_138a_f1ed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_59c3_138a_f1ed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_59c3_138a_f1ed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_59c3_138a_f1ed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_59c3_138a_f1ed&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_59c3_138a_f1ed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c425_5497_20d6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c425_5497_20d6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c425_5497_20d6/request", "", "public", "monthly mean div from the NCEP Reanalysis (Top Dataset, sigma, div.mon.mean), 1948-2013", "monthly mean div from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ndiv (Monthly Mean of Divergence, 1./s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c425_5497_20d6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c425_5497_20d6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c425_5497_20d6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c425_5497_20d6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c425_5497_20d6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c425_5497_20d6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b8e_2e82_1dd1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b8e_2e82_1dd1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2b8e_2e82_1dd1/request", "", "public", "monthly mean div from the NCEP Reanalysis (Top Dataset, spectral, div.mon.mean), 1948-2013", "monthly mean div from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ndiv (Monthly Mean of Divergence, 1./s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2b8e_2e82_1dd1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2b8e_2e82_1dd1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2b8e_2e82_1dd1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2b8e_2e82_1dd1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2b8e_2e82_1dd1&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2b8e_2e82_1dd1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c515_0a0b_5300", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c515_0a0b_5300.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c515_0a0b_5300/request", "", "public", "monthly mean dlwrf.sfc from the NCEP Reanalysis (dlwrf.sfc.mon.mean), 1948-present", "Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (Monthly Mean Downward Longwave Radiation Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c515_0a0b_5300_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c515_0a0b_5300_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c515_0a0b_5300/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c515_0a0b_5300.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c515_0a0b_5300&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c515_0a0b_5300"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65d7_137d_1542", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65d7_137d_1542.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_65d7_137d_1542/request", "", "public", "monthly mean dswrf.ntat from the NCEP Reanalysis (dswrf.ntat.mon.mean), 1948-present", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Monthly Mean of Downward Solar Radiation Flux, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_65d7_137d_1542_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_65d7_137d_1542_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_65d7_137d_1542/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_65d7_137d_1542.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_65d7_137d_1542&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_65d7_137d_1542"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bcc9_becd_8201", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bcc9_becd_8201.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bcc9_becd_8201/request", "", "public", "monthly mean dswrf.sfc from the NCEP Reanalysis (dswrf.sfc.mon.mean), 1948-present", "Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Monthly Mean Downward Solar Radiation Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bcc9_becd_8201_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bcc9_becd_8201_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bcc9_becd_8201/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bcc9_becd_8201.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bcc9_becd_8201&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_bcc9_becd_8201"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5273_69b3_7e79", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5273_69b3_7e79.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5273_69b3_7e79/request", "", "public", "monthly mean gflux.sfc from the NCEP Reanalysis (gflux.sfc.mon.mean), 1948-present", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Monthly Mean of Ground Heat Flux, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5273_69b3_7e79_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5273_69b3_7e79_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5273_69b3_7e79/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5273_69b3_7e79.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5273_69b3_7e79&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5273_69b3_7e79"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7b3_b61e_c9f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7b3_b61e_c9f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c7b3_b61e_c9f9/request", "", "public", "monthly mean gflux.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, gflux.mon.mean), 1948-present", "monthly mean gflux.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Monthly Mean of Ground Heat Flux, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c7b3_b61e_c9f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c7b3_b61e_c9f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c7b3_b61e_c9f9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c7b3_b61e_c9f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c7b3_b61e_c9f9&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c7b3_b61e_c9f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0105_6842_37b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0105_6842_37b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0105_6842_37b6/request", "", "public", "monthly mean hgt from the NCEP Reanalysis (Top Dataset, pressure, hgt.mon.mean), 2.5\u00b0, 1948-present", "monthly mean hgt from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Monthly mean geopotential height, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0105_6842_37b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0105_6842_37b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0105_6842_37b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0105_6842_37b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0105_6842_37b6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0105_6842_37b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_247b_01ee_878c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_247b_01ee_878c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_247b_01ee_878c/request", "", "public", "monthly mean icec.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, icec.sfc.mon.mean), 1948-present", "monthly mean icec.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Monthly Mean Ice Concentration at surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_247b_01ee_878c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_247b_01ee_878c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_247b_01ee_878c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_247b_01ee_878c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_247b_01ee_878c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_247b_01ee_878c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8584_cc1f_3f83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8584_cc1f_3f83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8584_cc1f_3f83/request", "", "public", "monthly mean lftx.sfc from the NCEP Reanalysis (Top Dataset, surface, lftx.sfc.mon.mean), 2.5\u00b0, 1948-present", "monthly mean lftx.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlftx (Monthly Mean Surface Lifted Index, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8584_cc1f_3f83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8584_cc1f_3f83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8584_cc1f_3f83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8584_cc1f_3f83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8584_cc1f_3f83&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8584_cc1f_3f83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b9f_33aa_c478", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b9f_33aa_c478.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2b9f_33aa_c478/request", "", "public", "monthly mean lftx4.sfc from the NCEP Reanalysis (Top Dataset, surface, lftx4.sfc.mon.mean), 2.5\u00b0, 1948-present", "monthly mean lftx4.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlftx4 (Monthly Mean Surface Lifted Index, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2b9f_33aa_c478_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2b9f_33aa_c478_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2b9f_33aa_c478/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2b9f_33aa_c478.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2b9f_33aa_c478&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2b9f_33aa_c478"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf40_ac26_1e66", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf40_ac26_1e66.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf40_ac26_1e66/request", "", "public", "monthly mean lhtfl.sfc from the NCEP Reanalysis (lhtfl.sfc.mon.mean), 1948-present", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Monthly Mean of Latent Heat Net Flux, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf40_ac26_1e66_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf40_ac26_1e66_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf40_ac26_1e66/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf40_ac26_1e66.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf40_ac26_1e66&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_bf40_ac26_1e66"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e47_7115_650c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e47_7115_650c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e47_7115_650c/request", "", "public", "monthly mean lhtfl.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, lhtfl.mon.mean), 1948-present", "monthly mean lhtfl.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Monthly Mean of Latent Heat Net Flux, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e47_7115_650c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e47_7115_650c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e47_7115_650c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e47_7115_650c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e47_7115_650c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_3e47_7115_650c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df70_a0bd_77f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df70_a0bd_77f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_df70_a0bd_77f5/request", "", "public", "monthly mean nbdsf.sfc from the NCEP Reanalysis (nbdsf.sfc.mon.mean), 1948-present", "Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnbdsf (Monthly Mean Near IR Beam Downward Solar Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_df70_a0bd_77f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_df70_a0bd_77f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_df70_a0bd_77f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_df70_a0bd_77f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_df70_a0bd_77f5&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_df70_a0bd_77f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7fe_5e75_cae3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7fe_5e75_cae3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c7fe_5e75_cae3/request", "", "public", "monthly mean nbdsf.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, nbdsf.mon.mean), 1948-present", "monthly mean nbdsf.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnbdsf (Monthly Mean Near IR Beam Downward Solar Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c7fe_5e75_cae3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c7fe_5e75_cae3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c7fe_5e75_cae3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c7fe_5e75_cae3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c7fe_5e75_cae3&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c7fe_5e75_cae3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7b2_152e_5d29", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7b2_152e_5d29.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d7b2_152e_5d29/request", "", "public", "monthly mean nddsf.sfc from the NCEP Reanalysis (nddsf.sfc.mon.mean), 1948-present", "Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnddsf (Monthly Mean Near IR Diffuse Downward Solar Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d7b2_152e_5d29_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d7b2_152e_5d29_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d7b2_152e_5d29/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d7b2_152e_5d29.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d7b2_152e_5d29&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d7b2_152e_5d29"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34b6_4159_b755", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34b6_4159_b755.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_34b6_4159_b755/request", "", "public", "monthly mean omega from the NCEP Reanalysis (Top Dataset, pressure, omega.mon.mean), 2.5\u00b0, 1948-present", "monthly mean omega from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Monthly Mean of Omega, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_34b6_4159_b755_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_34b6_4159_b755_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_34b6_4159_b755/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_34b6_4159_b755.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_34b6_4159_b755&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_34b6_4159_b755"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efc0_bee5_ba57", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efc0_bee5_ba57.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_efc0_bee5_ba57/request", "", "public", "monthly mean omega.sig995 from the NCEP Reanalysis (omega.sig995.mon.mean), 2.5\u00b0, 1948-present", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Monthly mean omega at sigma level 0.995, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_efc0_bee5_ba57_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_efc0_bee5_ba57_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_efc0_bee5_ba57/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_efc0_bee5_ba57.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_efc0_bee5_ba57&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_efc0_bee5_ba57"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e369_3e32_97be", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e369_3e32_97be.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e369_3e32_97be/request", "", "public", "monthly mean pevpr.sfc from the NCEP Reanalysis (pevpr.sfc.mon.mean), 1948-present", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Monthly Mean of Potential Evaporation Rate, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e369_3e32_97be_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e369_3e32_97be_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e369_3e32_97be/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e369_3e32_97be.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e369_3e32_97be&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e369_3e32_97be"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bee9_f1bc_0280", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bee9_f1bc_0280.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bee9_f1bc_0280/request", "", "public", "monthly mean pevpr.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, pevpr.mon.mean), 1948-present", "monthly mean pevpr.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Monthly Mean of Potential Evaporation Rate, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bee9_f1bc_0280_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bee9_f1bc_0280_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bee9_f1bc_0280/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bee9_f1bc_0280.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bee9_f1bc_0280&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_bee9_f1bc_0280"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2925_dccb_fda2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2925_dccb_fda2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2925_dccb_fda2/request", "", "public", "monthly mean pottmp from the NCEP Reanalysis (Top Dataset, pressure, pottmp.mon.mean), 2.5\u00b0, 1948-present", "monthly mean pottmp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\npottmp (Monthly Mean of Potential Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2925_dccb_fda2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2925_dccb_fda2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2925_dccb_fda2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2925_dccb_fda2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2925_dccb_fda2&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2925_dccb_fda2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_04f8_2e91_0fc3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_04f8_2e91_0fc3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_04f8_2e91_0fc3/request", "", "public", "monthly mean pottmp.sig995 from the NCEP Reanalysis (pottmp.sig995.mon.mean), 2.5\u00b0, 1948-present", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly mean potential temperature at sigma level 995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_04f8_2e91_0fc3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_04f8_2e91_0fc3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_04f8_2e91_0fc3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_04f8_2e91_0fc3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_04f8_2e91_0fc3&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_04f8_2e91_0fc3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edc8_d88b_a686", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edc8_d88b_a686.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_edc8_d88b_a686/request", "", "public", "monthly mean pr_wtr.eatm from the NCEP Reanalysis (Top Dataset, surface, pr wtr.eatm.mon.mean), 2.5\u00b0, 1948-present", "monthly mean pr_wtr.eatm from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Mean of Precipitable Water Content, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_edc8_d88b_a686_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_edc8_d88b_a686_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_edc8_d88b_a686/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_edc8_d88b_a686.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_edc8_d88b_a686&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_edc8_d88b_a686"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_450a_a471_acea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_450a_a471_acea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_450a_a471_acea/request", "", "public", "monthly mean pr_wtr.eatm from the NCEP Reanalysis (Top Dataset, surface, pr wtr.mon.mean), 2.5\u00b0, 1948-present", "monthly mean pr_wtr.eatm from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Mean of Precipitable Water Content, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_450a_a471_acea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_450a_a471_acea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_450a_a471_acea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_450a_a471_acea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_450a_a471_acea&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_450a_a471_acea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7f8_b41f_65db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7f8_b41f_65db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d7f8_b41f_65db/request", "", "public", "monthly mean prate.sfc from the NCEP Reanalysis (prate.sfc.mon.mean), 1948-present", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Monthly Mean of Precipitation Rate, Kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d7f8_b41f_65db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d7f8_b41f_65db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d7f8_b41f_65db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d7f8_b41f_65db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d7f8_b41f_65db&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d7f8_b41f_65db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e9f_290b_8745", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e9f_290b_8745.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1e9f_290b_8745/request", "", "public", "monthly mean prate.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, prate.mon.mean), 1948-present", "monthly mean prate.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Monthly Mean of Precipitation Rate, Kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1e9f_290b_8745_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1e9f_290b_8745_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1e9f_290b_8745/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1e9f_290b_8745.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1e9f_290b_8745&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_1e9f_290b_8745"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_07d5_cbbf_b94c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_07d5_cbbf_b94c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_07d5_cbbf_b94c/request", "", "public", "monthly mean pres.hcb from the NCEP Reanalysis (Top Dataset, other gauss, pres.hcb.mon.mean), 1948-present", "monthly mean pres.hcb from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Mean of High Cloud Bottom Pressure, Pascals)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_07d5_cbbf_b94c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_07d5_cbbf_b94c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_07d5_cbbf_b94c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_07d5_cbbf_b94c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_07d5_cbbf_b94c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_07d5_cbbf_b94c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94a6_a0e4_b8ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94a6_a0e4_b8ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_94a6_a0e4_b8ac/request", "", "public", "monthly mean pres.hct from the NCEP Reanalysis (Top Dataset, other gauss, pres.hct.mon.mean), 1948-present", "monthly mean pres.hct from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Mean of High Cloud Top Pressure, Pascals)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_94a6_a0e4_b8ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_94a6_a0e4_b8ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_94a6_a0e4_b8ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_94a6_a0e4_b8ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_94a6_a0e4_b8ac&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_94a6_a0e4_b8ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b6e_9caa_fbdc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b6e_9caa_fbdc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9b6e_9caa_fbdc/request", "", "public", "monthly mean pres.lcb from the NCEP Reanalysis (Top Dataset, other gauss, pres.lcb.mon.mean), 1948-present", "monthly mean pres.lcb from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Mean of Low Cloud Bottom Pressure, Pascals)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9b6e_9caa_fbdc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9b6e_9caa_fbdc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9b6e_9caa_fbdc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9b6e_9caa_fbdc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9b6e_9caa_fbdc&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9b6e_9caa_fbdc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_131e_cd21_ec69", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_131e_cd21_ec69.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_131e_cd21_ec69/request", "", "public", "monthly mean pres.lct from the NCEP Reanalysis (Top Dataset, other gauss, pres.lct.mon.mean), 1948-present", "monthly mean pres.lct from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Mean of Low Cloud Top Pressure, Pascals)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_131e_cd21_ec69_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_131e_cd21_ec69_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_131e_cd21_ec69/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_131e_cd21_ec69.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_131e_cd21_ec69&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_131e_cd21_ec69"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df57_681e_a782", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df57_681e_a782.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_df57_681e_a782/request", "", "public", "monthly mean pres.mcb from the NCEP Reanalysis (Top Dataset, other gauss, pres.mcb.mon.mean), 1948-present", "monthly mean pres.mcb from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Mean of Middle Cloud Bottom Pressure, Pascals)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_df57_681e_a782_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_df57_681e_a782_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_df57_681e_a782/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_df57_681e_a782.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_df57_681e_a782&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_df57_681e_a782"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7f1_b66e_86ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7f1_b66e_86ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c7f1_b66e_86ee/request", "", "public", "monthly mean pres.mct from the NCEP Reanalysis (Top Dataset, other gauss, pres.mct.mon.mean), 1948-present", "monthly mean pres.mct from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Mean of Middle Cloud Top Pressure, Pascals)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c7f1_b66e_86ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c7f1_b66e_86ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c7f1_b66e_86ee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c7f1_b66e_86ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c7f1_b66e_86ee&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c7f1_b66e_86ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_caa2_0d69_aab0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_caa2_0d69_aab0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_caa2_0d69_aab0/request", "", "public", "monthly mean pres.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, pres.sfc.mon.mean), 1948-present", "monthly mean pres.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Mean Surface Pressure, Pascals)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_caa2_0d69_aab0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_caa2_0d69_aab0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_caa2_0d69_aab0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_caa2_0d69_aab0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_caa2_0d69_aab0&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_caa2_0d69_aab0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e568_ccb3_4a33", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e568_ccb3_4a33.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e568_ccb3_4a33/request", "", "public", "monthly mean pres.sfc from the NCEP Reanalysis (Top Dataset, surface, pres.mon.mean), 2.5\u00b0, 1948-present", "monthly mean pres.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Mean of Surface Pressure, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e568_ccb3_4a33_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e568_ccb3_4a33_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e568_ccb3_4a33/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e568_ccb3_4a33.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e568_ccb3_4a33&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e568_ccb3_4a33"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1064_a6bc_e9a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1064_a6bc_e9a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1064_a6bc_e9a6/request", "", "public", "monthly mean pres.sfc from the NCEP Reanalysis (Top Dataset, surface, pres.sfc.mon.mean), 2.5\u00b0, 1948-present", "monthly mean pres.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Mean of Surface Pressure, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1064_a6bc_e9a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1064_a6bc_e9a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1064_a6bc_e9a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1064_a6bc_e9a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1064_a6bc_e9a6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_1064_a6bc_e9a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_032e_aac0_d99c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_032e_aac0_d99c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_032e_aac0_d99c/request", "", "public", "monthly mean pres.tropp from the NCEP Reanalysis (Top Dataset, tropopause, pres.mon.mean), 2.5\u00b0, 1948-present", "monthly mean pres.tropp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Mean of Pressure, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_032e_aac0_d99c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_032e_aac0_d99c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_032e_aac0_d99c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_032e_aac0_d99c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_032e_aac0_d99c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_032e_aac0_d99c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5be1_0586_6f12", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5be1_0586_6f12.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5be1_0586_6f12/request", "", "public", "monthly mean pres.tropp from the NCEP Reanalysis (Top Dataset, tropopause, pres.tropp.mon.mean), 2.5\u00b0, 1948-present", "monthly mean pres.tropp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Mean of Pressure, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5be1_0586_6f12_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5be1_0586_6f12_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5be1_0586_6f12/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5be1_0586_6f12.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5be1_0586_6f12&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5be1_0586_6f12"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b589_fd5a_98d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b589_fd5a_98d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b589_fd5a_98d7/request", "", "public", "monthly mean psi from the NCEP Reanalysis (Top Dataset, sigma, psi.mon.mean), 1948-present", "monthly mean psi from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from NCEP initialized reanalysis\n(daily means). It consists of T42 variables.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\npsi (Monthly Mean of Streamfunction, m*m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b589_fd5a_98d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b589_fd5a_98d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b589_fd5a_98d7/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/ncep.reanalysis.derived/sigma/psi.mon.mean.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b589_fd5a_98d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b589_fd5a_98d7&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b589_fd5a_98d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4026_405f_9ce1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4026_405f_9ce1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4026_405f_9ce1/request", "", "public", "monthly mean psi from the NCEP Reanalysis (Top Dataset, spectral, psi.mon.mean), 1948-present", "monthly mean psi from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from NCEP initialized reanalysis\n(daily means). It consists of T42 variables.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\npsi (Monthly Mean of Streamfunction, m*m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4026_405f_9ce1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4026_405f_9ce1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4026_405f_9ce1/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/ncep.reanalysis.derived/spectral/psi.mon.mean.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4026_405f_9ce1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4026_405f_9ce1&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_4026_405f_9ce1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0da9_9d03_8642", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0da9_9d03_8642.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0da9_9d03_8642/request", "", "public", "monthly mean rhum from the NCEP Reanalysis (Top Dataset, pressure, rhum.mon.mean), 2.5\u00b0, 1948-present", "monthly mean rhum from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Monthly Mean of Relative Humidity, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0da9_9d03_8642_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0da9_9d03_8642_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0da9_9d03_8642/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0da9_9d03_8642.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0da9_9d03_8642&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0da9_9d03_8642"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e82e_a2f7_7943", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e82e_a2f7_7943.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e82e_a2f7_7943/request", "", "public", "monthly mean rhum.sig995 from the NCEP Reanalysis (Top Dataset, surface, rhum.mon.mean), 2.5\u00b0, 1948-present", "monthly mean rhum.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Monthly Mean Relative Humidity at sigma level 0.995, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e82e_a2f7_7943_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e82e_a2f7_7943_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e82e_a2f7_7943/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e82e_a2f7_7943.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e82e_a2f7_7943&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e82e_a2f7_7943"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4c7_d713_ec33", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4c7_d713_ec33.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a4c7_d713_ec33/request", "", "public", "monthly mean rhum.sig995 from the NCEP Reanalysis (Top Dataset, surface, rhum.sig995.mon.mean), 2.5\u00b0, 1948-present", "monthly mean rhum.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Monthly Mean Relative Humidity at sigma level 0.995, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a4c7_d713_ec33_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a4c7_d713_ec33_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a4c7_d713_ec33/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a4c7_d713_ec33.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a4c7_d713_ec33&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a4c7_d713_ec33"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_229d_b58c_9b13", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_229d_b58c_9b13.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_229d_b58c_9b13/request", "", "public", "monthly mean runof.sfc from the NCEP Reanalysis (runof.sfc.mon.mean), 1948-present", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunof (Monthly Mean of Water Runoff, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_229d_b58c_9b13_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_229d_b58c_9b13_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_229d_b58c_9b13/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_229d_b58c_9b13.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_229d_b58c_9b13&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_229d_b58c_9b13"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17a7_d440_12a3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17a7_d440_12a3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_17a7_d440_12a3/request", "", "public", "monthly mean runof.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, runof.mon.mean), 1948-present", "monthly mean runof.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunof (Monthly Mean of Water Runoff, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_17a7_d440_12a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_17a7_d440_12a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_17a7_d440_12a3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_17a7_d440_12a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_17a7_d440_12a3&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_17a7_d440_12a3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9f9_438d_1101", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9f9_438d_1101.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e9f9_438d_1101/request", "", "public", "monthly mean sfcr.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, sfcr.sfc.mon.mean), 1948-present", "monthly mean sfcr.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsfcr (Monthly Mean Surface Roughness, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e9f9_438d_1101_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e9f9_438d_1101_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e9f9_438d_1101/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e9f9_438d_1101.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e9f9_438d_1101&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e9f9_438d_1101"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_792b_3bbe_9367", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_792b_3bbe_9367.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_792b_3bbe_9367/request", "", "public", "monthly mean shtfl.sfc from the NCEP Reanalysis (shtfl.sfc.mon.mean), 1948-present", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Monthly Mean of Sensible Heat Net Flux, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_792b_3bbe_9367_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_792b_3bbe_9367_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_792b_3bbe_9367/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_792b_3bbe_9367.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_792b_3bbe_9367&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_792b_3bbe_9367"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fa6_64bb_f9fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fa6_64bb_f9fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7fa6_64bb_f9fa/request", "", "public", "monthly mean shtfl.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, shtfl.mon.mean), 1948-present", "monthly mean shtfl.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Monthly Mean of Sensible Heat Net Flux, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7fa6_64bb_f9fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7fa6_64bb_f9fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7fa6_64bb_f9fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7fa6_64bb_f9fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7fa6_64bb_f9fa&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7fa6_64bb_f9fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f38_64c9_53a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f38_64c9_53a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f38_64c9_53a6/request", "", "public", "monthly mean shum from the NCEP Reanalysis (Top Dataset, pressure, shum.mon.mean), 2.5\u00b0, 1948-present", "monthly mean shum from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Monthly Mean of Specific Humidity, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f38_64c9_53a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f38_64c9_53a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f38_64c9_53a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f38_64c9_53a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f38_64c9_53a6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0f38_64c9_53a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0453_cec5_9d85", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0453_cec5_9d85.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0453_cec5_9d85/request", "", "public", "monthly mean shum.2m from the NCEP Reanalysis (Top Dataset, surface gauss, shum.2m.mon.mean), 1948-present", "monthly mean shum.2m from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Monthly Mean of Specific Humidity, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0453_cec5_9d85_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0453_cec5_9d85_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0453_cec5_9d85/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0453_cec5_9d85.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0453_cec5_9d85&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0453_cec5_9d85"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0abc_386a_3932", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0abc_386a_3932.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0abc_386a_3932/request", "", "public", "monthly mean shum.2m from the NCEP Reanalysis (Top Dataset, surface gauss, shum2m.mon.mean), 1948-present", "monthly mean shum.2m from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Monthly Mean of Specific Humidity, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0abc_386a_3932_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0abc_386a_3932_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0abc_386a_3932/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0abc_386a_3932.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0abc_386a_3932&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0abc_386a_3932"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4b2_bb7b_d37a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4b2_bb7b_d37a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a4b2_bb7b_d37a/request", "", "public", "monthly mean skt.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, skt.mon.mean), 1948-present", "monthly mean skt.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nskt (Monthly Mean of Skin Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a4b2_bb7b_d37a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a4b2_bb7b_d37a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a4b2_bb7b_d37a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a4b2_bb7b_d37a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a4b2_bb7b_d37a&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a4b2_bb7b_d37a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22b4_28fb_0c0e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22b4_28fb_0c0e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_22b4_28fb_0c0e/request", "", "public", "monthly mean skt.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, skt.sfc.mon.mean), 1948-present", "monthly mean skt.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nskt (Monthly Mean of Skin Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_22b4_28fb_0c0e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_22b4_28fb_0c0e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_22b4_28fb_0c0e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_22b4_28fb_0c0e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_22b4_28fb_0c0e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_22b4_28fb_0c0e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6fff_93b7_c67d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6fff_93b7_c67d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6fff_93b7_c67d/request", "", "public", "monthly mean slp from the NCEP Reanalysis (Top Dataset, surface, slp.mon.ltm), 2.5\u00b0, 0001", "monthly mean slp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Long Term Level Pressure, millibars)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6fff_93b7_c67d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6fff_93b7_c67d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6fff_93b7_c67d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6fff_93b7_c67d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6fff_93b7_c67d&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6fff_93b7_c67d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_118e_d5aa_117b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_118e_d5aa_117b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_118e_d5aa_117b/request", "", "public", "monthly mean slp from the NCEP Reanalysis (Top Dataset, surface, slp.mon.mean), 2.5\u00b0, 1948-present", "monthly mean slp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_118e_d5aa_117b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_118e_d5aa_117b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_118e_d5aa_117b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_118e_d5aa_117b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_118e_d5aa_117b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_118e_d5aa_117b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f34e_0f1e_6508", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f34e_0f1e_6508.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f34e_0f1e_6508/request", "", "public", "monthly mean soilw.0-10cm from the NCEP Reanalysis (soilw.0-10cm.mon.mean), 1948-present", "Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilw (Monthly Mean of Volumetric Soil Moisture, fraction)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f34e_0f1e_6508_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f34e_0f1e_6508_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f34e_0f1e_6508/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f34e_0f1e_6508.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f34e_0f1e_6508&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f34e_0f1e_6508"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12d0_37fd_ab5d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12d0_37fd_ab5d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_12d0_37fd_ab5d/request", "", "public", "monthly mean soilw.0-10cm from the NCEP Reanalysis (Top Dataset, surface gauss, soilw.mon.mean), 1948-present", "monthly mean soilw.0-10cm from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilw (Monthly Mean of Volumetric Soil Moisture, fraction)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_12d0_37fd_ab5d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_12d0_37fd_ab5d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_12d0_37fd_ab5d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_12d0_37fd_ab5d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_12d0_37fd_ab5d&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_12d0_37fd_ab5d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9bf_5934_eba4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9bf_5934_eba4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f9bf_5934_eba4/request", "", "public", "monthly mean soilw.10-200cm from the NCEP Reanalysis (soilw.10-200cm.mon.mean), 1948-present", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilw (Monthly Mean of Volumetric Soil Moisture, fraction)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f9bf_5934_eba4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f9bf_5934_eba4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f9bf_5934_eba4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f9bf_5934_eba4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f9bf_5934_eba4&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f9bf_5934_eba4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8526_f538_6b79", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8526_f538_6b79.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8526_f538_6b79/request", "", "public", "monthly mean soilw.10-200cm from the NCEP Reanalysis (soilw200.mon.mean), 1948-present", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilw (Monthly Mean of Volumetric Soil Moisture, fraction)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8526_f538_6b79_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8526_f538_6b79_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8526_f538_6b79/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8526_f538_6b79.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8526_f538_6b79&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8526_f538_6b79"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b3c5_ed3b_b5cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b3c5_ed3b_b5cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b3c5_ed3b_b5cb/request", "", "public", "monthly mean tcdc.eatm from the NCEP Reanalysis (Top Dataset, other gauss, tcdc.eatm.mon.mean), 1948-present", "monthly mean tcdc.eatm from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Mean of Total Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b3c5_ed3b_b5cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b3c5_ed3b_b5cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b3c5_ed3b_b5cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b3c5_ed3b_b5cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b3c5_ed3b_b5cb&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b3c5_ed3b_b5cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef84_cd04_b080", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef84_cd04_b080.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ef84_cd04_b080/request", "", "public", "monthly mean thickness_1000500 from the NCEP Reanalysis (thickness 1000500.mon.mean), 2.5\u00b0, 1948-present", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nthickness (Monthly Mean of Thickness, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ef84_cd04_b080_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ef84_cd04_b080_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ef84_cd04_b080/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ef84_cd04_b080.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ef84_cd04_b080&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_ef84_cd04_b080"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d60_9499_d255", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d60_9499_d255.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d60_9499_d255/request", "", "public", "monthly mean thickness_1000500 from the NCEP Reanalysis (thickness.mon.mean), 2.5\u00b0, 1948-present", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nthickness (Monthly Mean of Thickness, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d60_9499_d255_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d60_9499_d255_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d60_9499_d255/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d60_9499_d255.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d60_9499_d255&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8d60_9499_d255"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2d7_b8fe_ddbf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2d7_b8fe_ddbf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a2d7_b8fe_ddbf/request", "", "public", "monthly mean thickness_500200 from the NCEP Reanalysis (thickness 500200.mon.mean), 2.5\u00b0, 1948-present", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nthickness (Monthly Mean of Thickness, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a2d7_b8fe_ddbf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a2d7_b8fe_ddbf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a2d7_b8fe_ddbf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a2d7_b8fe_ddbf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a2d7_b8fe_ddbf&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a2d7_b8fe_ddbf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e55d_70db_0aa7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e55d_70db_0aa7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e55d_70db_0aa7/request", "", "public", "monthly mean thickness_850200 from the NCEP Reanalysis (thickness 850500.mon.mean), 2.5\u00b0, 1948-present", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nthickness (Monthly Mean of Thickness, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e55d_70db_0aa7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e55d_70db_0aa7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e55d_70db_0aa7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e55d_70db_0aa7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e55d_70db_0aa7&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e55d_70db_0aa7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4529_055d_cbb6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4529_055d_cbb6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4529_055d_cbb6/request", "", "public", "monthly mean tmp.0-10cm from the NCEP Reanalysis (tmp.0-10cm.mon.mean), 1948-present", "Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmp (Monthly Mean Temperature between 0-10 cm below ground level, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4529_055d_cbb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4529_055d_cbb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4529_055d_cbb6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4529_055d_cbb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4529_055d_cbb6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_4529_055d_cbb6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c20c_b47d_ca0e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c20c_b47d_ca0e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c20c_b47d_ca0e/request", "", "public", "monthly mean tmp.10-200cm from the NCEP Reanalysis (tmp.10-200cm.mon.mean), 1948-present", "Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmp (Monthly Mean Temperature between 10-200 cm below ground level, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c20c_b47d_ca0e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c20c_b47d_ca0e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c20c_b47d_ca0e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c20c_b47d_ca0e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c20c_b47d_ca0e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c20c_b47d_ca0e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba80_8770_8970", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba80_8770_8970.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ba80_8770_8970/request", "", "public", "monthly mean tmp.300cm from the NCEP Reanalysis (tmp.300cm.mon.mean), 1948-present", "Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmp (Monthly Mean Temperature at 300 cm below ground level, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ba80_8770_8970_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ba80_8770_8970_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ba80_8770_8970/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ba80_8770_8970.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ba80_8770_8970&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_ba80_8770_8970"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fcc_712c_59f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fcc_712c_59f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7fcc_712c_59f6/request", "", "public", "monthly mean u wind from the NCEP Reanalysis (Top Dataset, pressure, uwnd.mon.mean), 2.5\u00b0, 1948-present", "monthly mean u wind from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Monthly mean u wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7fcc_712c_59f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7fcc_712c_59f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7fcc_712c_59f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7fcc_712c_59f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7fcc_712c_59f6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7fcc_712c_59f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20b4_bad5_f32d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20b4_bad5_f32d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_20b4_bad5_f32d/request", "", "public", "monthly mean uflx.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, uflx.mon.mean), 1948-present", "monthly mean uflx.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Monthly Mean of Momentum Flux, U-Component, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_20b4_bad5_f32d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_20b4_bad5_f32d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_20b4_bad5_f32d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_20b4_bad5_f32d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_20b4_bad5_f32d&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_20b4_bad5_f32d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88e2_01ea_d958", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88e2_01ea_d958.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_88e2_01ea_d958/request", "", "public", "monthly mean uflx.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, uflx.sfc.mon.mean), 1948-present", "monthly mean uflx.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Monthly Mean of Momentum Flux, U-Component, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_88e2_01ea_d958_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_88e2_01ea_d958_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_88e2_01ea_d958/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_88e2_01ea_d958.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_88e2_01ea_d958&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_88e2_01ea_d958"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e17e_5762_c1e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e17e_5762_c1e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e17e_5762_c1e6/request", "", "public", "monthly mean ugwd.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, ugwd.mon.mean), 1948-present", "monthly mean ugwd.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Monthly Mean of Zonal Gravity Wave Stress, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e17e_5762_c1e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e17e_5762_c1e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e17e_5762_c1e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e17e_5762_c1e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e17e_5762_c1e6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e17e_5762_c1e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c58_bf00_07b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c58_bf00_07b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c58_bf00_07b6/request", "", "public", "monthly mean ugwd.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, ugwd.sfc.mon.mean), 1948-present", "monthly mean ugwd.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Monthly Mean of Zonal Gravity Wave Stress, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c58_bf00_07b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c58_bf00_07b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c58_bf00_07b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c58_bf00_07b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c58_bf00_07b6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5c58_bf00_07b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f226_fb55_a29e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f226_fb55_a29e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f226_fb55_a29e/request", "", "public", "monthly mean ulwrf.ntat from the NCEP Reanalysis (ulwrf.ntat.mon.mean), 1948-present", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Mean of Upward Longwave Radiation Flux, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f226_fb55_a29e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f226_fb55_a29e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f226_fb55_a29e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f226_fb55_a29e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f226_fb55_a29e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f226_fb55_a29e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f02_798d_6519", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f02_798d_6519.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f02_798d_6519/request", "", "public", "monthly mean ulwrf.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, ulwrf.mon.mean), 1948-present", "monthly mean ulwrf.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Mean of Upward Longwave Radiation Flux, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f02_798d_6519_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f02_798d_6519_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f02_798d_6519/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f02_798d_6519.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f02_798d_6519&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0f02_798d_6519"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c99_af81_6e2e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c99_af81_6e2e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c99_af81_6e2e/request", "", "public", "monthly mean ulwrf.sfc from the NCEP Reanalysis (ulwrf.sfc.mon.mean), 1948-present", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Mean of Upward Longwave Radiation Flux, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c99_af81_6e2e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c99_af81_6e2e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c99_af81_6e2e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c99_af81_6e2e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c99_af81_6e2e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5c99_af81_6e2e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e76_923a_f9c7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e76_923a_f9c7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e76_923a_f9c7/request", "", "public", "monthly mean uswrf.ntat from the NCEP Reanalysis (uswrf.ntat.mon.mean), 1948-present", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Mean of Upward Solar Radiation Flux, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e76_923a_f9c7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e76_923a_f9c7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e76_923a_f9c7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e76_923a_f9c7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e76_923a_f9c7&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9e76_923a_f9c7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6054_8ae5_679c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6054_8ae5_679c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6054_8ae5_679c/request", "", "public", "monthly mean uswrf.sfc from the NCEP Reanalysis (uswrf.sfc.mon.mean), 1948-present", "Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Mean Upward Solar Radiation Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6054_8ae5_679c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6054_8ae5_679c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6054_8ae5_679c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6054_8ae5_679c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6054_8ae5_679c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6054_8ae5_679c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f41_38e2_c36e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f41_38e2_c36e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f41_38e2_c36e/request", "", "public", "monthly mean uwnd.10m from the NCEP Reanalysis (Top Dataset, surface gauss, uwnd.10m.mon.mean), 1948-present", "monthly mean uwnd.10m from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly Mean of U-Wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f41_38e2_c36e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f41_38e2_c36e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f41_38e2_c36e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f41_38e2_c36e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f41_38e2_c36e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9f41_38e2_c36e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a916_73c5_60c8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a916_73c5_60c8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a916_73c5_60c8/request", "", "public", "monthly mean uwnd.10m from the NCEP Reanalysis (Top Dataset, surface gauss, uwnd10m.mon.mean), 1948-present", "monthly mean uwnd.10m from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly Mean of U-Wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a916_73c5_60c8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a916_73c5_60c8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a916_73c5_60c8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a916_73c5_60c8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a916_73c5_60c8&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a916_73c5_60c8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ad7_05f1_6245", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ad7_05f1_6245.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ad7_05f1_6245/request", "", "public", "monthly mean uwnd.sig995 from the NCEP Reanalysis (Top Dataset, surface, uwnd.mon.mean), 2.5\u00b0, 1948-present", "monthly mean uwnd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly Mean Zonal Wind at sigma level 0.995, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ad7_05f1_6245_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ad7_05f1_6245_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ad7_05f1_6245/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ad7_05f1_6245.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ad7_05f1_6245&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5ad7_05f1_6245"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a301_2f72_7155", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a301_2f72_7155.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a301_2f72_7155/request", "", "public", "monthly mean uwnd.sig995 from the NCEP Reanalysis (Top Dataset, surface, uwnd.sig995.mon.mean), 2.5\u00b0, 1948-present", "monthly mean uwnd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly Mean Zonal Wind at sigma level 0.995, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a301_2f72_7155_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a301_2f72_7155_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a301_2f72_7155/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a301_2f72_7155.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a301_2f72_7155&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a301_2f72_7155"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd02_6dcc_040a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd02_6dcc_040a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bd02_6dcc_040a/request", "", "public", "monthly mean v wind from the NCEP Reanalysis (Top Dataset, pressure, vwnd.mon.mean), 2.5\u00b0, 1948-present", "monthly mean v wind from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Monthly mean v wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bd02_6dcc_040a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bd02_6dcc_040a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bd02_6dcc_040a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bd02_6dcc_040a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bd02_6dcc_040a&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_bd02_6dcc_040a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_724d_44ae_0256", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_724d_44ae_0256.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_724d_44ae_0256/request", "", "public", "monthly mean vbdsf.sfc from the NCEP Reanalysis (vbdsf.sfc.mon.mean), 1948-present", "Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvbdsf (Monthly Mean Visible Beam Downward Solar Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_724d_44ae_0256_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_724d_44ae_0256_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_724d_44ae_0256/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_724d_44ae_0256.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_724d_44ae_0256&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_724d_44ae_0256"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc0d_7ba5_b617", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc0d_7ba5_b617.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc0d_7ba5_b617/request", "", "public", "monthly mean vddsf.sfc from the NCEP Reanalysis (vddsf.sfc.mon.mean), 1948-present", "Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvddsf (Monthly Mean Visible Diffuse Downward Solar Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc0d_7ba5_b617_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc0d_7ba5_b617_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc0d_7ba5_b617/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc0d_7ba5_b617.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc0d_7ba5_b617&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_fc0d_7ba5_b617"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a07_ebf0_29fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a07_ebf0_29fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1a07_ebf0_29fb/request", "", "public", "monthly mean vflx.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, vflx.mon.mean), 1948-present", "monthly mean vflx.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Monthly Mean of Momentum Flux, V-Component, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1a07_ebf0_29fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1a07_ebf0_29fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1a07_ebf0_29fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1a07_ebf0_29fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1a07_ebf0_29fb&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_1a07_ebf0_29fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4900_5190_6943", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4900_5190_6943.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4900_5190_6943/request", "", "public", "monthly mean vflx.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, vflx.sfc.mon.mean), 1948-present", "monthly mean vflx.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Monthly Mean of Momentum Flux, V-Component, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4900_5190_6943_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4900_5190_6943_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4900_5190_6943/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4900_5190_6943.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4900_5190_6943&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_4900_5190_6943"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b1d_2313_2b32", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b1d_2313_2b32.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2b1d_2313_2b32/request", "", "public", "monthly mean vgwd.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, vgwd.mon.mean), 1948-present", "monthly mean vgwd.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Monthly Mean of Meridional Gravity Wave Stress, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2b1d_2313_2b32_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2b1d_2313_2b32_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2b1d_2313_2b32/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2b1d_2313_2b32.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2b1d_2313_2b32&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2b1d_2313_2b32"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f685_6d3c_233c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f685_6d3c_233c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f685_6d3c_233c/request", "", "public", "monthly mean vgwd.sfc from the NCEP Reanalysis (Top Dataset, surface gauss, vgwd.sfc.mon.mean), 1948-present", "monthly mean vgwd.sfc from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Monthly Mean of Meridional Gravity Wave Stress, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f685_6d3c_233c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f685_6d3c_233c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f685_6d3c_233c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f685_6d3c_233c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f685_6d3c_233c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f685_6d3c_233c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4bc1_237b_c499", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4bc1_237b_c499.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4bc1_237b_c499/request", "", "public", "monthly mean vor from the NCEP Reanalysis (Top Dataset, sigma, vor.mon.mean), 1948-2013", "monthly mean vor from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvor (Monthly Mean of Vorticity, 1./s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4bc1_237b_c499_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4bc1_237b_c499_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4bc1_237b_c499/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4bc1_237b_c499.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4bc1_237b_c499&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_4bc1_237b_c499"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15ab_051c_eef2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15ab_051c_eef2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_15ab_051c_eef2/request", "", "public", "monthly mean vor from the NCEP Reanalysis (Top Dataset, spectral, vor.mon.mean), 1948-2013", "monthly mean vor from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvor (Monthly Mean of Vorticity, 1./s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_15ab_051c_eef2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_15ab_051c_eef2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_15ab_051c_eef2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_15ab_051c_eef2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_15ab_051c_eef2&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_15ab_051c_eef2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_49d8_1f9a_700c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_49d8_1f9a_700c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_49d8_1f9a_700c/request", "", "public", "monthly mean vwnd.10m from the NCEP Reanalysis (Top Dataset, surface gauss, vwnd.10m.mon.mean), 1948-present", "monthly mean vwnd.10m from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly Mean V wind at 10 m, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_49d8_1f9a_700c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_49d8_1f9a_700c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_49d8_1f9a_700c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_49d8_1f9a_700c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_49d8_1f9a_700c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_49d8_1f9a_700c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c03_5b4f_9cc1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c03_5b4f_9cc1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c03_5b4f_9cc1/request", "", "public", "monthly mean vwnd.10m from the NCEP Reanalysis (Top Dataset, surface gauss, vwnd10m.mon.mean), 1948-present", "monthly mean vwnd.10m from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly Mean V wind at 10 m, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c03_5b4f_9cc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c03_5b4f_9cc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c03_5b4f_9cc1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c03_5b4f_9cc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c03_5b4f_9cc1&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5c03_5b4f_9cc1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ba6_98ab_0ab6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ba6_98ab_0ab6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ba6_98ab_0ab6/request", "", "public", "monthly mean vwnd.sig995 from the NCEP Reanalysis (Top Dataset, surface, vwnd.mon.mean), 2.5\u00b0, 1948-present", "monthly mean vwnd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly Mean Meridional Wind at sigma level 0.995, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ba6_98ab_0ab6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ba6_98ab_0ab6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ba6_98ab_0ab6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ba6_98ab_0ab6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ba6_98ab_0ab6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8ba6_98ab_0ab6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9577_cb9f_94f8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9577_cb9f_94f8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9577_cb9f_94f8/request", "", "public", "monthly mean vwnd.sig995 from the NCEP Reanalysis (Top Dataset, surface, vwnd.sig995.mon.mean), 2.5\u00b0, 1948-present", "monthly mean vwnd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly Mean Meridional Wind at sigma level 0.995, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9577_cb9f_94f8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9577_cb9f_94f8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9577_cb9f_94f8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9577_cb9f_94f8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9577_cb9f_94f8&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9577_cb9f_94f8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63b1_8853_0875", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63b1_8853_0875.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_63b1_8853_0875/request", "", "public", "monthly mean weasd.sfc from the NCEP Reanalysis (weasd.sfc.mon.mean), 1948-present", "Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (Monthly Mean Water Equiv. of Accum. Snow Depth at surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_63b1_8853_0875_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_63b1_8853_0875_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_63b1_8853_0875/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_63b1_8853_0875.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_63b1_8853_0875&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_63b1_8853_0875"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a539_be77_78e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a539_be77_78e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a539_be77_78e5/request", "", "public", "monthly mean wind speed from 4-times daily u and v from NCEP/DOE Reanalysis 2 (wspd.mon.mean), 2.5\u00b0, 1979-present", "Data is from \nNational Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nwspd (Monthly Wind Speed on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a539_be77_78e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a539_be77_78e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a539_be77_78e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a539_be77_78e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a539_be77_78e5&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a539_be77_78e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1ad_6740_b672", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1ad_6740_b672.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f1ad_6740_b672/request", "", "public", "monthly mean wind speed from 4-times daily u and v from the NCEP Reanalysis (wspd.mon.mean), 2.5\u00b0, 1948-present", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nwspd (Monthly mean wind speed from daily wind speed (from daily vector winds), m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f1ad_6740_b672_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f1ad_6740_b672_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f1ad_6740_b672/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f1ad_6740_b672.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f1ad_6740_b672&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f1ad_6740_b672"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_31e4_c21e_4a49", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_31e4_c21e_4a49.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_31e4_c21e_4a49/request", "", "public", "monthly mean wsdp.10m from the NCEP Reanalysis (Top Dataset, surface gauss, wspd.10m.mon.mean), 1948-present", "monthly mean wsdp.10m from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Monthly Mean of 10m Wind Speed from daily wind speed (from daily vector winds), m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_31e4_c21e_4a49_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_31e4_c21e_4a49_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_31e4_c21e_4a49/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_31e4_c21e_4a49.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_31e4_c21e_4a49&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_31e4_c21e_4a49"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cdb_0524_16f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cdb_0524_16f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1cdb_0524_16f5/request", "", "public", "monthly mean wspd.sig995 from the NCEP Reanalysis (Top Dataset, surface, wspd.mon.mean), 2.5\u00b0, 1948-present", "monthly mean wspd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Monthly Mean Wind Speed at sigma level 0.995 from daily wind speed (from daily vector winds), m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1cdb_0524_16f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1cdb_0524_16f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1cdb_0524_16f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1cdb_0524_16f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1cdb_0524_16f5&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_1cdb_0524_16f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06d7_e4c3_b877", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06d7_e4c3_b877.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_06d7_e4c3_b877/request", "", "public", "monthly mean wspd.sig995 from the NCEP Reanalysis (Top Dataset, surface, wspd.sig995.mon.mean), 2.5\u00b0, 1948-present", "monthly mean wspd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Monthly Mean Wind Speed at sigma level 0.995 from daily wind speed (from daily vector winds), m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_06d7_e4c3_b877_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_06d7_e4c3_b877_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_06d7_e4c3_b877/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_06d7_e4c3_b877.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_06d7_e4c3_b877&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_06d7_e4c3_b877"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6ae_ba73_10fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6ae_ba73_10fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d6ae_ba73_10fb/request", "", "public", "Monthly means of OLR from interpolated OLR dataset (Top Dataset, interp OLR, olr.mon.mean), 2.5\u00b0, 1974-2017", "Monthly means of Outgoing Longwave Radiation (OLR) from interpolated OLR dataset. Data is interpolated in time and space from NOAA twice-daily OLR values and averaged to once daily (from which means are calculated)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nolr (OLR monthly means, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d6ae_ba73_10fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d6ae_ba73_10fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d6ae_ba73_10fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.interp_OLR.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d6ae_ba73_10fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d6ae_ba73_10fb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d6ae_ba73_10fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7373_a485_f9ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7373_a485_f9ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7373_a485_f9ec/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel sprd, cape.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Monthly Long Term CAPE Spread, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7373_a485_f9ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7373_a485_f9ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7373_a485_f9ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7373_a485_f9ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7373_a485_f9ec&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7373_a485_f9ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63a3_b7cb_e857", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63a3_b7cb_e857.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_63a3_b7cb_e857/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel sprd, cape.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Monthly CAPE Spread, J/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_63a3_b7cb_e857_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_63a3_b7cb_e857_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_63a3_b7cb_e857/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_63a3_b7cb_e857.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_63a3_b7cb_e857&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_63a3_b7cb_e857"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c1f_3128_8b29", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c1f_3128_8b29.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7c1f_3128_8b29/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel sprd, cin.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Monthly Long Term CIN Spread, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7c1f_3128_8b29_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7c1f_3128_8b29_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7c1f_3128_8b29/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7c1f_3128_8b29.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7c1f_3128_8b29&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7c1f_3128_8b29"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5217_d781_446b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5217_d781_446b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5217_d781_446b/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel sprd, cin.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Monthly CIN Spread, J/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5217_d781_446b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5217_d781_446b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5217_d781_446b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5217_d781_446b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5217_d781_446b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5217_d781_446b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e14_118e_4eb0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e14_118e_4eb0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6e14_118e_4eb0/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel sprd, prmsl.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Monthly Long Term Pressure Spread at Mean Sea Level, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6e14_118e_4eb0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6e14_118e_4eb0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6e14_118e_4eb0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6e14_118e_4eb0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6e14_118e_4eb0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6e14_118e_4eb0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cb6_5e95_1e51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cb6_5e95_1e51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8cb6_5e95_1e51/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, air.sig995.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8cb6_5e95_1e51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8cb6_5e95_1e51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8cb6_5e95_1e51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8cb6_5e95_1e51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8cb6_5e95_1e51&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8cb6_5e95_1e51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fadf_b89a_8c37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fadf_b89a_8c37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fadf_b89a_8c37/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, air.tropo.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fadf_b89a_8c37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fadf_b89a_8c37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fadf_b89a_8c37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fadf_b89a_8c37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fadf_b89a_8c37&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fadf_b89a_8c37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc9b_5b0a_3283", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc9b_5b0a_3283.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bc9b_5b0a_3283/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, air.tropo.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bc9b_5b0a_3283_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bc9b_5b0a_3283_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bc9b_5b0a_3283/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bc9b_5b0a_3283.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bc9b_5b0a_3283&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bc9b_5b0a_3283"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ec9_f808_b856", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ec9_f808_b856.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ec9_f808_b856/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, cape.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Monthly Long Term CAPE, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ec9_f808_b856_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ec9_f808_b856_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ec9_f808_b856/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ec9_f808_b856.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ec9_f808_b856&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8ec9_f808_b856"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3293_1ba6_045b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3293_1ba6_045b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3293_1ba6_045b/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, cape.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Monthly CAPE, J/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3293_1ba6_045b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3293_1ba6_045b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3293_1ba6_045b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3293_1ba6_045b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3293_1ba6_045b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3293_1ba6_045b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_46f1_c249_382d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_46f1_c249_382d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_46f1_c249_382d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, cin.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Monthly Long Term CAPE, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_46f1_c249_382d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_46f1_c249_382d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_46f1_c249_382d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_46f1_c249_382d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_46f1_c249_382d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_46f1_c249_382d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17f3_2d2c_b01f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17f3_2d2c_b01f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_17f3_2d2c_b01f/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, cin.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Monthly CAPE, J/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_17f3_2d2c_b01f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_17f3_2d2c_b01f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_17f3_2d2c_b01f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_17f3_2d2c_b01f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_17f3_2d2c_b01f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_17f3_2d2c_b01f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b488_ecf6_2a14", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b488_ecf6_2a14.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b488_ecf6_2a14/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, hgt.tropo.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Monthly Long Term Geopotential Heights at Tropopause, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b488_ecf6_2a14_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b488_ecf6_2a14_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b488_ecf6_2a14/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b488_ecf6_2a14.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b488_ecf6_2a14&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b488_ecf6_2a14"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8885_c3a2_11e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8885_c3a2_11e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8885_c3a2_11e6/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, hgt.tropo.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Monthly Geopotential Heights at Tropopause, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8885_c3a2_11e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8885_c3a2_11e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8885_c3a2_11e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8885_c3a2_11e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8885_c3a2_11e6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8885_c3a2_11e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5059_d429_e82f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5059_d429_e82f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5059_d429_e82f/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, pres.sfc.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Pressure at Surface, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5059_d429_e82f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5059_d429_e82f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5059_d429_e82f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5059_d429_e82f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5059_d429_e82f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5059_d429_e82f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a7a_33f0_e4c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a7a_33f0_e4c5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8a7a_33f0_e4c5/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, pres.sfc.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Pressure at Surface, Pa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8a7a_33f0_e4c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8a7a_33f0_e4c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8a7a_33f0_e4c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8a7a_33f0_e4c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8a7a_33f0_e4c5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8a7a_33f0_e4c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c295_3327_a170", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c295_3327_a170.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c295_3327_a170/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, pres.tropo.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Pressure at Tropopause, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c295_3327_a170_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c295_3327_a170_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c295_3327_a170/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c295_3327_a170.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c295_3327_a170&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c295_3327_a170"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3315_cc02_8a0d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3315_cc02_8a0d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3315_cc02_8a0d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, prmsl.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Monthly Long Term Pressure at Mean Sea Level, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3315_cc02_8a0d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3315_cc02_8a0d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3315_cc02_8a0d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3315_cc02_8a0d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3315_cc02_8a0d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3315_cc02_8a0d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a90b_55cd_0e9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a90b_55cd_0e9f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a90b_55cd_0e9f/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, prmsl.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Monthly Pressure at Mean Sea Level, Pa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a90b_55cd_0e9f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a90b_55cd_0e9f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a90b_55cd_0e9f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a90b_55cd_0e9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a90b_55cd_0e9f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a90b_55cd_0e9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a93_3b85_f22a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a93_3b85_f22a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a93_3b85_f22a/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, tco3.eatm.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Monthly Long Term Total Columnar Ozone, Dobsons)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a93_3b85_f22a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a93_3b85_f22a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a93_3b85_f22a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a93_3b85_f22a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a93_3b85_f22a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5a93_3b85_f22a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91bd_0a7d_92ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91bd_0a7d_92ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_91bd_0a7d_92ea/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, tco3.eatm.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Monthly Total Columnar Ozone, Dobsons)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_91bd_0a7d_92ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_91bd_0a7d_92ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_91bd_0a7d_92ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_91bd_0a7d_92ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_91bd_0a7d_92ea&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_91bd_0a7d_92ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1284_09b0_b2db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1284_09b0_b2db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1284_09b0_b2db/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, uwnd.tropo.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly Long Term U-wind at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1284_09b0_b2db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1284_09b0_b2db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1284_09b0_b2db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1284_09b0_b2db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1284_09b0_b2db&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1284_09b0_b2db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0afa_e782_88f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0afa_e782_88f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0afa_e782_88f5/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, vwnd.tropo.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly Long Term V-wind at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0afa_e782_88f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0afa_e782_88f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0afa_e782_88f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0afa_e782_88f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0afa_e782_88f5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0afa_e782_88f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c93d_1cb4_ec67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c93d_1cb4_ec67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c93d_1cb4_ec67/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, air.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c93d_1cb4_ec67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c93d_1cb4_ec67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c93d_1cb4_ec67/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c93d_1cb4_ec67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c93d_1cb4_ec67&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c93d_1cb4_ec67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efee_45c6_e9ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efee_45c6_e9ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_efee_45c6_e9ce/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, air.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_efee_45c6_e9ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_efee_45c6_e9ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_efee_45c6_e9ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_efee_45c6_e9ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_efee_45c6_e9ce&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_efee_45c6_e9ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6114_e46b_3560", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6114_e46b_3560.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6114_e46b_3560/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, hgt.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Monthly Long Term Geopotential Heights Spread on Pressure Levels, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6114_e46b_3560_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6114_e46b_3560_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6114_e46b_3560/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6114_e46b_3560.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6114_e46b_3560&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6114_e46b_3560"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95f5_ed56_f4f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95f5_ed56_f4f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_95f5_ed56_f4f1/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, hgt.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Monthly Geopotential Heights Spread on Pressure Levels, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_95f5_ed56_f4f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_95f5_ed56_f4f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_95f5_ed56_f4f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_95f5_ed56_f4f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_95f5_ed56_f4f1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_95f5_ed56_f4f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d193_53bf_8873", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d193_53bf_8873.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d193_53bf_8873/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, omega.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Monthly Long Term Omega Spread on Pressure Levels, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d193_53bf_8873_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d193_53bf_8873_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d193_53bf_8873/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d193_53bf_8873.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d193_53bf_8873&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d193_53bf_8873"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6bc0_0f3c_9dd4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6bc0_0f3c_9dd4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6bc0_0f3c_9dd4/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, omega.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Monthly Omega Spread on Pressure Levels, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6bc0_0f3c_9dd4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6bc0_0f3c_9dd4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6bc0_0f3c_9dd4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6bc0_0f3c_9dd4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6bc0_0f3c_9dd4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6bc0_0f3c_9dd4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9fd1_5590_a9ad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9fd1_5590_a9ad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9fd1_5590_a9ad/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, rhum.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Monthly Long Term Relative Humidity Spread on Pressure Levels, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9fd1_5590_a9ad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9fd1_5590_a9ad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9fd1_5590_a9ad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9fd1_5590_a9ad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9fd1_5590_a9ad&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9fd1_5590_a9ad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7d3_8547_a858", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7d3_8547_a858.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f7d3_8547_a858/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, rhum.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Monthly Relative Humidity Spread on Pressure Levels, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f7d3_8547_a858_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f7d3_8547_a858_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f7d3_8547_a858/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f7d3_8547_a858.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f7d3_8547_a858&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f7d3_8547_a858"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c78_8b36_45d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c78_8b36_45d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8c78_8b36_45d5/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, shum.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Monthly Long Term Specific Humidity Spread on Pressure Levels, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8c78_8b36_45d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8c78_8b36_45d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8c78_8b36_45d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8c78_8b36_45d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8c78_8b36_45d5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8c78_8b36_45d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_778c_a0d6_f3c8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_778c_a0d6_f3c8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_778c_a0d6_f3c8/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, shum.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Monthly Specific Humidity Spread on Pressure Levels, kg/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_778c_a0d6_f3c8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_778c_a0d6_f3c8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_778c_a0d6_f3c8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_778c_a0d6_f3c8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_778c_a0d6_f3c8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_778c_a0d6_f3c8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d85d_5b50_3b39", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d85d_5b50_3b39.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d85d_5b50_3b39/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, uwnd.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Monthly Long Term U-wind Spread on Pressure Levels, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d85d_5b50_3b39_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d85d_5b50_3b39_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d85d_5b50_3b39/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d85d_5b50_3b39.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d85d_5b50_3b39&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d85d_5b50_3b39"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8049_f1e9_1435", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8049_f1e9_1435.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8049_f1e9_1435/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, uwnd.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Monthly U-wind Spread on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8049_f1e9_1435_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8049_f1e9_1435_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8049_f1e9_1435/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8049_f1e9_1435.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8049_f1e9_1435&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8049_f1e9_1435"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54b1_a4cc_78c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54b1_a4cc_78c9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54b1_a4cc_78c9/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, vwnd.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Monthly Long Term V-wind Spread on Pressure Levels, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54b1_a4cc_78c9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54b1_a4cc_78c9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54b1_a4cc_78c9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54b1_a4cc_78c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54b1_a4cc_78c9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_54b1_a4cc_78c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2aed_c585_0f86", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2aed_c585_0f86.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2aed_c585_0f86/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, vwnd.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Monthly V-wind Spread on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2aed_c585_0f86_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2aed_c585_0f86_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2aed_c585_0f86/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2aed_c585_0f86.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2aed_c585_0f86&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2aed_c585_0f86"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6eab_9fe9_284f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6eab_9fe9_284f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6eab_9fe9_284f/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, air.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Long Term Air Temperature on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6eab_9fe9_284f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6eab_9fe9_284f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6eab_9fe9_284f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6eab_9fe9_284f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6eab_9fe9_284f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6eab_9fe9_284f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aab0_5e09_779b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aab0_5e09_779b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aab0_5e09_779b/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, air.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aab0_5e09_779b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aab0_5e09_779b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aab0_5e09_779b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aab0_5e09_779b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aab0_5e09_779b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_aab0_5e09_779b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7186_138d_537c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7186_138d_537c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7186_138d_537c/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, hgt.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Monthly Long Term Geopotential Heights on Pressure Levels, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7186_138d_537c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7186_138d_537c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7186_138d_537c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7186_138d_537c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7186_138d_537c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7186_138d_537c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4cb6_bc4d_a40d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4cb6_bc4d_a40d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4cb6_bc4d_a40d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, hgt.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Monthly Geopotential Heights on Pressure Levels, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4cb6_bc4d_a40d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4cb6_bc4d_a40d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4cb6_bc4d_a40d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4cb6_bc4d_a40d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4cb6_bc4d_a40d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4cb6_bc4d_a40d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_32eb_8582_55db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_32eb_8582_55db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_32eb_8582_55db/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, omega.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Monthly Long Term Omega on Pressure Levels, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_32eb_8582_55db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_32eb_8582_55db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_32eb_8582_55db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_32eb_8582_55db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_32eb_8582_55db&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_32eb_8582_55db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73b3_1713_be96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73b3_1713_be96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_73b3_1713_be96/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, omega.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Monthly Omega on Pressure Levels, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_73b3_1713_be96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_73b3_1713_be96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_73b3_1713_be96/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_73b3_1713_be96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_73b3_1713_be96&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_73b3_1713_be96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_11f5_5883_f597", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_11f5_5883_f597.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_11f5_5883_f597/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, rhum.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Monthly Long Term Relative Humidity on Pressure Levels, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_11f5_5883_f597_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_11f5_5883_f597_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_11f5_5883_f597/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_11f5_5883_f597.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_11f5_5883_f597&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_11f5_5883_f597"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5078_2c6f_d3b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5078_2c6f_d3b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5078_2c6f_d3b3/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, rhum.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Monthly Relative Humidity on Pressure Levels, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5078_2c6f_d3b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5078_2c6f_d3b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5078_2c6f_d3b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5078_2c6f_d3b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5078_2c6f_d3b3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5078_2c6f_d3b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4848_94f3_0a89", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4848_94f3_0a89.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4848_94f3_0a89/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, shum.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Monthly Long Term Specific Humidity on Pressure Levels, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4848_94f3_0a89_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4848_94f3_0a89_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4848_94f3_0a89/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4848_94f3_0a89.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4848_94f3_0a89&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4848_94f3_0a89"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0435_d257_4fcd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0435_d257_4fcd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0435_d257_4fcd/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, shum.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Monthly Specific Humidity on Pressure Levels, kg/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0435_d257_4fcd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0435_d257_4fcd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0435_d257_4fcd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0435_d257_4fcd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0435_d257_4fcd&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0435_d257_4fcd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1812_4c56_c18a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1812_4c56_c18a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1812_4c56_c18a/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, uwnd.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Monthly Long Term U-wind on Pressure Levels, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1812_4c56_c18a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1812_4c56_c18a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1812_4c56_c18a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1812_4c56_c18a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1812_4c56_c18a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1812_4c56_c18a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0fa_d543_0728", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0fa_d543_0728.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a0fa_d543_0728/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, uwnd.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Monthly U-wind on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a0fa_d543_0728_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a0fa_d543_0728_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a0fa_d543_0728/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a0fa_d543_0728.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a0fa_d543_0728&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a0fa_d543_0728"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cfc_eaca_d97f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cfc_eaca_d97f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7cfc_eaca_d97f/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, vwnd.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Monthly Long Term V-wind on Pressure Levels, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7cfc_eaca_d97f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7cfc_eaca_d97f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7cfc_eaca_d97f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7cfc_eaca_d97f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7cfc_eaca_d97f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7cfc_eaca_d97f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0355_82d9_e0d8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0355_82d9_e0d8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0355_82d9_e0d8/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, vwnd.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Monthly V-wind on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0355_82d9_e0d8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0355_82d9_e0d8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0355_82d9_e0d8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0355_82d9_e0d8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0355_82d9_e0d8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0355_82d9_e0d8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ee2_f669_66bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ee2_f669_66bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ee2_f669_66bb/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ee2_f669_66bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ee2_f669_66bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ee2_f669_66bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ee2_f669_66bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ee2_f669_66bb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3ee2_f669_66bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae8a_3bb2_d412", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae8a_3bb2_d412.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae8a_3bb2_d412/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae8a_3bb2_d412_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae8a_3bb2_d412_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae8a_3bb2_d412/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae8a_3bb2_d412.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae8a_3bb2_d412&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ae8a_3bb2_d412"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d88_b808_0b86", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d88_b808_0b86.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7d88_b808_0b86/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7d88_b808_0b86_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7d88_b808_0b86_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7d88_b808_0b86/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7d88_b808_0b86.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7d88_b808_0b86&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7d88_b808_0b86"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd0b_34e4_82bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd0b_34e4_82bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bd0b_34e4_82bb/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bd0b_34e4_82bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bd0b_34e4_82bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bd0b_34e4_82bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bd0b_34e4_82bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bd0b_34e4_82bb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bd0b_34e4_82bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c2a_38ed_f5fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c2a_38ed_f5fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c2a_38ed_f5fa/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at Surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c2a_38ed_f5fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c2a_38ed_f5fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c2a_38ed_f5fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c2a_38ed_f5fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c2a_38ed_f5fa&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5c2a_38ed_f5fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f5c_be24_028d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f5c_be24_028d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6f5c_be24_028d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6f5c_be24_028d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6f5c_be24_028d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6f5c_be24_028d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6f5c_be24_028d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6f5c_be24_028d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6f5c_be24_028d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_967e_324f_e2a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_967e_324f_e2a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_967e_324f_e2a0/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_967e_324f_e2a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_967e_324f_e2a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_967e_324f_e2a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_967e_324f_e2a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_967e_324f_e2a0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_967e_324f_e2a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7d9_c99e_2d9a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7d9_c99e_2d9a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e7d9_c99e_2d9a/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at Surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e7d9_c99e_2d9a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e7d9_c99e_2d9a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e7d9_c99e_2d9a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e7d9_c99e_2d9a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e7d9_c99e_2d9a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e7d9_c99e_2d9a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5144_348c_966b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5144_348c_966b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5144_348c_966b/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, albedo.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nalbedo (Monthly Long Term Albedo at Surface, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5144_348c_966b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5144_348c_966b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5144_348c_966b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5144_348c_966b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5144_348c_966b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5144_348c_966b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5ce_7581_d20e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5ce_7581_d20e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d5ce_7581_d20e/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, albedo.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nalbedo (Monthly Long Term Albedo Spread at surface, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d5ce_7581_d20e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d5ce_7581_d20e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d5ce_7581_d20e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d5ce_7581_d20e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d5ce_7581_d20e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d5ce_7581_d20e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b75_9389_b76f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b75_9389_b76f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b75_9389_b76f/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, albedo.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nalbedo (Monthly Albedo at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b75_9389_b76f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b75_9389_b76f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b75_9389_b76f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b75_9389_b76f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b75_9389_b76f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6b75_9389_b76f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9272_1081_9370", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9272_1081_9370.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9272_1081_9370/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, albedo.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nalbedo (Monthly Albedo Spread at surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9272_1081_9370_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9272_1081_9370_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9272_1081_9370/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9272_1081_9370.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9272_1081_9370&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9272_1081_9370"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13fa_854b_f3b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13fa_854b_f3b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_13fa_854b_f3b0/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, cprat.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (Monthly Long Term Convective Precipitation Rate Spread, kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_13fa_854b_f3b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_13fa_854b_f3b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_13fa_854b_f3b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_13fa_854b_f3b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_13fa_854b_f3b0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_13fa_854b_f3b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f9b_2efb_e3aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f9b_2efb_e3aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f9b_2efb_e3aa/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, cprat.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (Monthly Long Term Convective Precipitation Rate, kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f9b_2efb_e3aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f9b_2efb_e3aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f9b_2efb_e3aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f9b_2efb_e3aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f9b_2efb_e3aa&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9f9b_2efb_e3aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_242c_282e_754c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_242c_282e_754c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_242c_282e_754c/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, cprat.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (Monthly Convective Precipitation Rate Spread, kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_242c_282e_754c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_242c_282e_754c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_242c_282e_754c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_242c_282e_754c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_242c_282e_754c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_242c_282e_754c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab7d_f088_5dc4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab7d_f088_5dc4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab7d_f088_5dc4/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, cprat.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (Monthly Convective Precipitation Rate, kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab7d_f088_5dc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab7d_f088_5dc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab7d_f088_5dc4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab7d_f088_5dc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab7d_f088_5dc4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ab7d_f088_5dc4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_717c_d196_6921", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_717c_d196_6921.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_717c_d196_6921/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, cwork.eatm.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncwork (Monthly Long Term Cloud Work Function Spread, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_717c_d196_6921_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_717c_d196_6921_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_717c_d196_6921/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_717c_d196_6921.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_717c_d196_6921&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_717c_d196_6921"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b412_e481_b6b2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b412_e481_b6b2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b412_e481_b6b2/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, cwork.eatm.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncwork (Monthly Long Term Cloud Work Function, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b412_e481_b6b2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b412_e481_b6b2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b412_e481_b6b2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b412_e481_b6b2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b412_e481_b6b2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b412_e481_b6b2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a27_eadf_c9c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a27_eadf_c9c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a27_eadf_c9c4/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, cwork.eatm.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncwork (Monthly Cloud Work Function Spread, J/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a27_eadf_c9c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a27_eadf_c9c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a27_eadf_c9c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a27_eadf_c9c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a27_eadf_c9c4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0a27_eadf_c9c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a40b_f274_c4e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a40b_f274_c4e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a40b_f274_c4e0/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, cwork.eatm.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncwork (Monthly Cloud Work Function, J/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a40b_f274_c4e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a40b_f274_c4e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a40b_f274_c4e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a40b_f274_c4e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a40b_f274_c4e0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a40b_f274_c4e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a0a_1748_17cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a0a_1748_17cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a0a_1748_17cf/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, dlwrf.sfc.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (Monthly Long Term Downward Longwave Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a0a_1748_17cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a0a_1748_17cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a0a_1748_17cf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a0a_1748_17cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a0a_1748_17cf&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0a0a_1748_17cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59aa_12db_dc45", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59aa_12db_dc45.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_59aa_12db_dc45/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, dlwrf.sfc.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (Monthly Long Term Downward Longwave Radiation Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_59aa_12db_dc45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_59aa_12db_dc45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_59aa_12db_dc45/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_59aa_12db_dc45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_59aa_12db_dc45&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_59aa_12db_dc45"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_031d_d672_dc84", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_031d_d672_dc84.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_031d_d672_dc84/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, dlwrf.sfc.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (Monthly Downward Longwave Radiation Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_031d_d672_dc84_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_031d_d672_dc84_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_031d_d672_dc84/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_031d_d672_dc84.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_031d_d672_dc84&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_031d_d672_dc84"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b8c_713b_a1a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b8c_713b_a1a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2b8c_713b_a1a2/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, dlwrf.sfc.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (Monthly Downward Longwave Radiation Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2b8c_713b_a1a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2b8c_713b_a1a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2b8c_713b_a1a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2b8c_713b_a1a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2b8c_713b_a1a2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2b8c_713b_a1a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64f0_4003_3239", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64f0_4003_3239.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_64f0_4003_3239/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, dswrf.sfc.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Monthly Long Term Downward Solar Radiation Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_64f0_4003_3239_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_64f0_4003_3239_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_64f0_4003_3239/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_64f0_4003_3239.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_64f0_4003_3239&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_64f0_4003_3239"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b222_04f5_21f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b222_04f5_21f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b222_04f5_21f1/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, dswrf.sfc.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Monthly Long Term Downward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b222_04f5_21f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b222_04f5_21f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b222_04f5_21f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b222_04f5_21f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b222_04f5_21f1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b222_04f5_21f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2181_23b9_65b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2181_23b9_65b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2181_23b9_65b7/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, dswrf.sfc.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Monthly Downward Solar Radiation Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2181_23b9_65b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2181_23b9_65b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2181_23b9_65b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2181_23b9_65b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2181_23b9_65b7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2181_23b9_65b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e35c_afe9_64e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e35c_afe9_64e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e35c_afe9_64e0/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, dswrf.sfc.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Monthly Downward Solar Radiation Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e35c_afe9_64e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e35c_afe9_64e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e35c_afe9_64e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e35c_afe9_64e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e35c_afe9_64e0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e35c_afe9_64e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1652_df28_46d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1652_df28_46d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1652_df28_46d7/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, gflux.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Monthly Long Term Ground Heat Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1652_df28_46d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1652_df28_46d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1652_df28_46d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1652_df28_46d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1652_df28_46d7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1652_df28_46d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cdd_d82c_7f7f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cdd_d82c_7f7f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1cdd_d82c_7f7f/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, gflux.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Monthly Long Term Ground Heat Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1cdd_d82c_7f7f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1cdd_d82c_7f7f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1cdd_d82c_7f7f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1cdd_d82c_7f7f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1cdd_d82c_7f7f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1cdd_d82c_7f7f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5585_81f9_9d42", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5585_81f9_9d42.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5585_81f9_9d42/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, gflux.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Monthly Ground Heat Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5585_81f9_9d42_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5585_81f9_9d42_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5585_81f9_9d42/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5585_81f9_9d42.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5585_81f9_9d42&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5585_81f9_9d42"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b454_66ea_9aac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b454_66ea_9aac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b454_66ea_9aac/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, gflux.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Monthly Ground Heat Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b454_66ea_9aac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b454_66ea_9aac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b454_66ea_9aac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b454_66ea_9aac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b454_66ea_9aac&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b454_66ea_9aac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d2e_d703_6f6c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d2e_d703_6f6c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d2e_d703_6f6c/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, hpbl.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhpbl (Monthly Long Term Height Spread of Pressure Boundary Layer, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d2e_d703_6f6c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d2e_d703_6f6c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d2e_d703_6f6c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d2e_d703_6f6c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d2e_d703_6f6c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1d2e_d703_6f6c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a33b_9f3d_8e53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a33b_9f3d_8e53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a33b_9f3d_8e53/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, hpbl.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhpbl (Monthly Long Term Height of Pressure Boundary Layer, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a33b_9f3d_8e53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a33b_9f3d_8e53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a33b_9f3d_8e53/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a33b_9f3d_8e53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a33b_9f3d_8e53&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a33b_9f3d_8e53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e350_365b_6cf2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e350_365b_6cf2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e350_365b_6cf2/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, hpbl.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhpbl (Monthly Height of Pressure Boundary Layer, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e350_365b_6cf2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e350_365b_6cf2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e350_365b_6cf2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e350_365b_6cf2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e350_365b_6cf2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e350_365b_6cf2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eaf3_b683_af8c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eaf3_b683_af8c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eaf3_b683_af8c/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, hpbl.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhpbl (Monthly Height Spread of Pressure Boundary Layer, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eaf3_b683_af8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eaf3_b683_af8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eaf3_b683_af8c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eaf3_b683_af8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eaf3_b683_af8c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_eaf3_b683_af8c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00b3_b9b7_d909", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00b3_b9b7_d909.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_00b3_b9b7_d909/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, icec.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Monthly Long Term Ice Concentration at surface, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_00b3_b9b7_d909_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_00b3_b9b7_d909_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_00b3_b9b7_d909/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_00b3_b9b7_d909.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_00b3_b9b7_d909&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_00b3_b9b7_d909"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35b2_8bca_9802", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35b2_8bca_9802.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_35b2_8bca_9802/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, icec.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Monthly Ice Concentration at surface, frac.)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_35b2_8bca_9802_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_35b2_8bca_9802_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_35b2_8bca_9802/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_35b2_8bca_9802.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_35b2_8bca_9802&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_35b2_8bca_9802"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4bb1_7022_537b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4bb1_7022_537b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4bb1_7022_537b/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, icet.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicet (Monthly Long Term Ice Thickness Spread at Surface, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4bb1_7022_537b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4bb1_7022_537b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4bb1_7022_537b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4bb1_7022_537b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4bb1_7022_537b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4bb1_7022_537b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1d4_d2f3_8390", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1d4_d2f3_8390.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a1d4_d2f3_8390/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, icet.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicet (Monthly Long Term Ice Thickness at Surface, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a1d4_d2f3_8390_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a1d4_d2f3_8390_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a1d4_d2f3_8390/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a1d4_d2f3_8390.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a1d4_d2f3_8390&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a1d4_d2f3_8390"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c3f_9f2e_8efd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c3f_9f2e_8efd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4c3f_9f2e_8efd/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, icet.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicet (Monthly Ice Thickness Spread at Surface, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4c3f_9f2e_8efd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4c3f_9f2e_8efd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c3f_9f2e_8efd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c3f_9f2e_8efd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c3f_9f2e_8efd&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4c3f_9f2e_8efd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63f0_0a70_4a2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63f0_0a70_4a2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_63f0_0a70_4a2f/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, icet.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicet (Monthly Ice Thickness at Surface, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_63f0_0a70_4a2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_63f0_0a70_4a2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_63f0_0a70_4a2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_63f0_0a70_4a2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_63f0_0a70_4a2f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_63f0_0a70_4a2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdf1_7cfd_3821", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdf1_7cfd_3821.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bdf1_7cfd_3821/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, lhtfl.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Monthly Long Term Latent Heat Net Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bdf1_7cfd_3821_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bdf1_7cfd_3821_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bdf1_7cfd_3821/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bdf1_7cfd_3821.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bdf1_7cfd_3821&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bdf1_7cfd_3821"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7d0_3692_f197", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7d0_3692_f197.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f7d0_3692_f197/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, lhtfl.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Monthly Long Term Latent Heat Net Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f7d0_3692_f197_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f7d0_3692_f197_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f7d0_3692_f197/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f7d0_3692_f197.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f7d0_3692_f197&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f7d0_3692_f197"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d21_7bad_e332", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d21_7bad_e332.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0d21_7bad_e332/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, lhtfl.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Monthly Latent Heat Net Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0d21_7bad_e332_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0d21_7bad_e332_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0d21_7bad_e332/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0d21_7bad_e332.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0d21_7bad_e332&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0d21_7bad_e332"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5b7_a39d_27c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5b7_a39d_27c5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5b7_a39d_27c5/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, lhtfl.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Monthly Latent Heat Net Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5b7_a39d_27c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5b7_a39d_27c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5b7_a39d_27c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5b7_a39d_27c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5b7_a39d_27c5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e5b7_a39d_27c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f46_369d_79a5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f46_369d_79a5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6f46_369d_79a5/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, pevpr.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Monthly Long Term Potential Evaporation Rate at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6f46_369d_79a5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6f46_369d_79a5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6f46_369d_79a5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6f46_369d_79a5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6f46_369d_79a5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6f46_369d_79a5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea99_8364_bd41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea99_8364_bd41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ea99_8364_bd41/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, pevpr.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Monthly Long Term Potential Evaporation Rate Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ea99_8364_bd41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ea99_8364_bd41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ea99_8364_bd41/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ea99_8364_bd41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ea99_8364_bd41&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ea99_8364_bd41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2439_da3f_18af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2439_da3f_18af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2439_da3f_18af/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, pevpr.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Monthly Potential Evaporation Rate at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2439_da3f_18af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2439_da3f_18af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2439_da3f_18af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2439_da3f_18af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2439_da3f_18af&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2439_da3f_18af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9517_356e_f505", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9517_356e_f505.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9517_356e_f505/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, pevpr.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Monthly Potential Evaporation Rate Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9517_356e_f505_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9517_356e_f505_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9517_356e_f505/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9517_356e_f505.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9517_356e_f505&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9517_356e_f505"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_275e_ea7a_34e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_275e_ea7a_34e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_275e_ea7a_34e1/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, pr wtr.eatm.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Long Term Precipitable Water Spread for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_275e_ea7a_34e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_275e_ea7a_34e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_275e_ea7a_34e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_275e_ea7a_34e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_275e_ea7a_34e1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_275e_ea7a_34e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a67_bc0f_47b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a67_bc0f_47b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4a67_bc0f_47b6/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, pr wtr.eatm.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Long Term Precipitable Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4a67_bc0f_47b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4a67_bc0f_47b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4a67_bc0f_47b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4a67_bc0f_47b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4a67_bc0f_47b6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4a67_bc0f_47b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2a01_e935_1ec9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2a01_e935_1ec9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2a01_e935_1ec9/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, pr wtr.eatm.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Precipitable Water Spread for entire atmosphere, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2a01_e935_1ec9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2a01_e935_1ec9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2a01_e935_1ec9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2a01_e935_1ec9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2a01_e935_1ec9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2a01_e935_1ec9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b41_ba16_f95f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b41_ba16_f95f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b41_ba16_f95f/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, pr wtr.eatm.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Precipitable Water for entire atmosphere, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b41_ba16_f95f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b41_ba16_f95f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b41_ba16_f95f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b41_ba16_f95f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b41_ba16_f95f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5b41_ba16_f95f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e96_bc40_915e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e96_bc40_915e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e96_bc40_915e/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, prate.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Monthly Long Term Precipitation Rate at surface, kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e96_bc40_915e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e96_bc40_915e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e96_bc40_915e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e96_bc40_915e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e96_bc40_915e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9e96_bc40_915e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eede_73cf_efd3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eede_73cf_efd3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eede_73cf_efd3/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, prate.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Monthly Long Term Precipitation Rate Spread at surface, kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eede_73cf_efd3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eede_73cf_efd3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eede_73cf_efd3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eede_73cf_efd3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eede_73cf_efd3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_eede_73cf_efd3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6343_74ab_c935", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6343_74ab_c935.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6343_74ab_c935/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, prate.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Monthly Precipitation Rate Spread at surface, kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6343_74ab_c935_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6343_74ab_c935_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6343_74ab_c935/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6343_74ab_c935.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6343_74ab_c935&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6343_74ab_c935"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6cd3_5889_c5f7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6cd3_5889_c5f7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6cd3_5889_c5f7/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, prate.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Monthly Precipitation Rate at surface, kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6cd3_5889_c5f7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6cd3_5889_c5f7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6cd3_5889_c5f7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6cd3_5889_c5f7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6cd3_5889_c5f7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6cd3_5889_c5f7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b4b0_659a_3898", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b4b0_659a_3898.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b4b0_659a_3898/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, press.sfc.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npress (Monthly Long Term Pressure Spread at surface, Pascal)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b4b0_659a_3898_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b4b0_659a_3898_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b4b0_659a_3898/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b4b0_659a_3898.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b4b0_659a_3898&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b4b0_659a_3898"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dece_7316_5b27", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dece_7316_5b27.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dece_7316_5b27/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, press.sfc.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npress (Monthly Long Term Pressure at surface, Pascal)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dece_7316_5b27_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dece_7316_5b27_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dece_7316_5b27/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dece_7316_5b27.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dece_7316_5b27&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_dece_7316_5b27"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_063f_b5b3_bad3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_063f_b5b3_bad3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_063f_b5b3_bad3/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, press.sfc.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npress (Monthly Pressure Spread at surface, Pascal)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_063f_b5b3_bad3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_063f_b5b3_bad3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_063f_b5b3_bad3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_063f_b5b3_bad3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_063f_b5b3_bad3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_063f_b5b3_bad3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa72_9a94_3723", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa72_9a94_3723.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fa72_9a94_3723/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, press.sfc.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npress (Monthly Pressure at surface, Pascal)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fa72_9a94_3723_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fa72_9a94_3723_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fa72_9a94_3723/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fa72_9a94_3723.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fa72_9a94_3723&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fa72_9a94_3723"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2dd2_7c6c_8422", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2dd2_7c6c_8422.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2dd2_7c6c_8422/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, runoff.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunoff (Monthly Long Term Water Runoff Spread at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2dd2_7c6c_8422_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2dd2_7c6c_8422_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2dd2_7c6c_8422/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2dd2_7c6c_8422.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2dd2_7c6c_8422&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2dd2_7c6c_8422"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f229_e069_3974", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f229_e069_3974.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f229_e069_3974/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, runoff.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunoff (Monthly Long Term Water Runoff at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f229_e069_3974_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f229_e069_3974_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f229_e069_3974/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f229_e069_3974.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f229_e069_3974&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f229_e069_3974"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8af5_3016_e93f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8af5_3016_e93f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8af5_3016_e93f/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, runoff.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunoff (Monthly Water Runoff Spread at surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8af5_3016_e93f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8af5_3016_e93f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8af5_3016_e93f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8af5_3016_e93f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8af5_3016_e93f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8af5_3016_e93f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a924_92cf_b85f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a924_92cf_b85f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a924_92cf_b85f/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, runoff.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunoff (Monthly Water Runoff at surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a924_92cf_b85f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a924_92cf_b85f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a924_92cf_b85f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a924_92cf_b85f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a924_92cf_b85f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a924_92cf_b85f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4053_32f4_2764", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4053_32f4_2764.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4053_32f4_2764/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, shtfl.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Monthly Long Term Sensible Heat Net Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4053_32f4_2764_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4053_32f4_2764_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4053_32f4_2764/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4053_32f4_2764.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4053_32f4_2764&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4053_32f4_2764"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ece6_de0e_68e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ece6_de0e_68e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ece6_de0e_68e6/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, shtfl.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Monthly Long Term Sensible Heat Net Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ece6_de0e_68e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ece6_de0e_68e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ece6_de0e_68e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ece6_de0e_68e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ece6_de0e_68e6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ece6_de0e_68e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ad8_12f2_0024", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ad8_12f2_0024.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0ad8_12f2_0024/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, shtfl.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Monthly Sensible Heat Net Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0ad8_12f2_0024_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0ad8_12f2_0024_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0ad8_12f2_0024/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0ad8_12f2_0024.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0ad8_12f2_0024&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0ad8_12f2_0024"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a61c_89a0_7605", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a61c_89a0_7605.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a61c_89a0_7605/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, shtfl.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Monthly Sensible Heat Net Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a61c_89a0_7605_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a61c_89a0_7605_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a61c_89a0_7605/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a61c_89a0_7605.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a61c_89a0_7605&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a61c_89a0_7605"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f64_b155_2171", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f64_b155_2171.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f64_b155_2171/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, shum.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Monthly Long Term Specific Humidity Spread at 2 m, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f64_b155_2171_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f64_b155_2171_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f64_b155_2171/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f64_b155_2171.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f64_b155_2171&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8f64_b155_2171"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aac1_6bc2_781e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aac1_6bc2_781e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aac1_6bc2_781e/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, shum.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Monthly Long Term Specific Humidity at 2 m, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aac1_6bc2_781e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aac1_6bc2_781e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aac1_6bc2_781e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aac1_6bc2_781e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aac1_6bc2_781e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_aac1_6bc2_781e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2114_8a6f_a9ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2114_8a6f_a9ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2114_8a6f_a9ae/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, shum.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Monthly Specific Humidity Spread at 2 m, kg/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2114_8a6f_a9ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2114_8a6f_a9ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2114_8a6f_a9ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2114_8a6f_a9ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2114_8a6f_a9ae&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2114_8a6f_a9ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_453a_ea86_38b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_453a_ea86_38b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_453a_ea86_38b9/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, shum.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Monthly Specific Humidity at 2 m, kg/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_453a_ea86_38b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_453a_ea86_38b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_453a_ea86_38b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_453a_ea86_38b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_453a_ea86_38b9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_453a_ea86_38b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b92_00bd_8b78", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b92_00bd_8b78.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4b92_00bd_8b78/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, snod.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnod (Monthly Long Term Snow Depth Spread at Surface, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4b92_00bd_8b78_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4b92_00bd_8b78_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4b92_00bd_8b78/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4b92_00bd_8b78.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4b92_00bd_8b78&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4b92_00bd_8b78"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c069_c98f_0c24", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c069_c98f_0c24.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c069_c98f_0c24/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, snod.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnod (Monthly Long Term Snow Depth at Surface, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c069_c98f_0c24_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c069_c98f_0c24_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c069_c98f_0c24/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c069_c98f_0c24.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c069_c98f_0c24&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c069_c98f_0c24"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_267b_49f5_6777", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_267b_49f5_6777.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_267b_49f5_6777/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, snod.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnod (Monthly Snow Depth at Surface, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_267b_49f5_6777_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_267b_49f5_6777_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_267b_49f5_6777/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_267b_49f5_6777.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_267b_49f5_6777&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_267b_49f5_6777"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38d5_40b0_be74", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38d5_40b0_be74.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_38d5_40b0_be74/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, snod.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnod (Monthly Snow Depth Spread at Surface, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_38d5_40b0_be74_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_38d5_40b0_be74_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_38d5_40b0_be74/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_38d5_40b0_be74.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_38d5_40b0_be74&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_38d5_40b0_be74"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f2d_85a0_99e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f2d_85a0_99e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f2d_85a0_99e0/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, snowc.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowc (Monthly Long Term Snow Cover at Surface, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f2d_85a0_99e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f2d_85a0_99e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f2d_85a0_99e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f2d_85a0_99e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f2d_85a0_99e0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1f2d_85a0_99e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3af5_5cb4_1ed3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3af5_5cb4_1ed3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3af5_5cb4_1ed3/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, snowc.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowc (Monthly Long Term Snow Cover Spread at Surface, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3af5_5cb4_1ed3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3af5_5cb4_1ed3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3af5_5cb4_1ed3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3af5_5cb4_1ed3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3af5_5cb4_1ed3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3af5_5cb4_1ed3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f0a_71f2_82bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f0a_71f2_82bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3f0a_71f2_82bb/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, snowc.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowc (Monthly Snow Cover at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3f0a_71f2_82bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3f0a_71f2_82bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3f0a_71f2_82bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3f0a_71f2_82bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3f0a_71f2_82bb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3f0a_71f2_82bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6181_88fc_c5bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6181_88fc_c5bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6181_88fc_c5bb/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, snowc.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowc (Monthly Snow Cover Spread at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6181_88fc_c5bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6181_88fc_c5bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6181_88fc_c5bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6181_88fc_c5bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6181_88fc_c5bb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6181_88fc_c5bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45b2_cfbf_b8e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45b2_cfbf_b8e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_45b2_cfbf_b8e2/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, soilm.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (Monthly Long Term Soil Moisture Content at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_45b2_cfbf_b8e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_45b2_cfbf_b8e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_45b2_cfbf_b8e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_45b2_cfbf_b8e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_45b2_cfbf_b8e2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_45b2_cfbf_b8e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c225_bc5b_105c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c225_bc5b_105c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c225_bc5b_105c/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, soilm.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (Monthly Long Term Soil Moisture Content Spread at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c225_bc5b_105c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c225_bc5b_105c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c225_bc5b_105c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c225_bc5b_105c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c225_bc5b_105c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c225_bc5b_105c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1825_52c5_4272", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1825_52c5_4272.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1825_52c5_4272/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, soilm.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (Monthly Soil Moisture Content Spread at Surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1825_52c5_4272_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1825_52c5_4272_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1825_52c5_4272/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1825_52c5_4272.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1825_52c5_4272&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1825_52c5_4272"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd6a_0586_4e5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd6a_0586_4e5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dd6a_0586_4e5f/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, soilm.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (Monthly Soil Moisture Content at Surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dd6a_0586_4e5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dd6a_0586_4e5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dd6a_0586_4e5f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dd6a_0586_4e5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dd6a_0586_4e5f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_dd6a_0586_4e5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_534f_cd34_e6b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_534f_cd34_e6b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_534f_cd34_e6b7/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ssrunoff.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssrunoff (Monthly Long Term Storm Surface Runoff at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_534f_cd34_e6b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_534f_cd34_e6b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_534f_cd34_e6b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_534f_cd34_e6b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_534f_cd34_e6b7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_534f_cd34_e6b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f6c_2790_66a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f6c_2790_66a8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f6c_2790_66a8/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ssrunoff.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssrunoff (Monthly Long Term Storm Surface Runoff Spread at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f6c_2790_66a8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f6c_2790_66a8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f6c_2790_66a8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f6c_2790_66a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f6c_2790_66a8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8f6c_2790_66a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24eb_da9e_2106", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24eb_da9e_2106.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_24eb_da9e_2106/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ssrunoff.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssrunoff (Monthly Storm Surface Runoff at Surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_24eb_da9e_2106_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_24eb_da9e_2106_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_24eb_da9e_2106/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_24eb_da9e_2106.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_24eb_da9e_2106&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_24eb_da9e_2106"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c678_b77e_2f42", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c678_b77e_2f42.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c678_b77e_2f42/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ssrunoff.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssrunoff (Monthly Storm Surface Runoff Spread at Surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c678_b77e_2f42_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c678_b77e_2f42_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c678_b77e_2f42/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c678_b77e_2f42.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c678_b77e_2f42&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c678_b77e_2f42"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_04e9_dcb7_afb5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_04e9_dcb7_afb5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_04e9_dcb7_afb5/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.bndrylyr.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Boundary Layer Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_04e9_dcb7_afb5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_04e9_dcb7_afb5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_04e9_dcb7_afb5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_04e9_dcb7_afb5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_04e9_dcb7_afb5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_04e9_dcb7_afb5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea79_b5f0_f94f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea79_b5f0_f94f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ea79_b5f0_f94f/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.bndrylyr.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Boundary Layer Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ea79_b5f0_f94f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ea79_b5f0_f94f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ea79_b5f0_f94f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ea79_b5f0_f94f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ea79_b5f0_f94f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ea79_b5f0_f94f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b8b_6457_3d4a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b8b_6457_3d4a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4b8b_6457_3d4a/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.convcld.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Convective Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4b8b_6457_3d4a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4b8b_6457_3d4a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4b8b_6457_3d4a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4b8b_6457_3d4a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4b8b_6457_3d4a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4b8b_6457_3d4a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b88_fd58_a7d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b88_fd58_a7d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b88_fd58_a7d9/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.convcld.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Convective Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b88_fd58_a7d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b88_fd58_a7d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b88_fd58_a7d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b88_fd58_a7d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b88_fd58_a7d9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7b88_fd58_a7d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9752_f888_a79a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9752_f888_a79a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9752_f888_a79a/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.convcld.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Convective Cloud Cover Spread, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9752_f888_a79a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9752_f888_a79a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9752_f888_a79a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9752_f888_a79a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9752_f888_a79a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9752_f888_a79a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c4ba_f3e1_16c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c4ba_f3e1_16c5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c4ba_f3e1_16c5/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.convcld.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Convective Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c4ba_f3e1_16c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c4ba_f3e1_16c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c4ba_f3e1_16c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c4ba_f3e1_16c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c4ba_f3e1_16c5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c4ba_f3e1_16c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a9a_a71c_d2af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a9a_a71c_d2af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a9a_a71c_d2af/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.eatm.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Total Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a9a_a71c_d2af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a9a_a71c_d2af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a9a_a71c_d2af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a9a_a71c_d2af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a9a_a71c_d2af&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5a9a_a71c_d2af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_feab_4b77_c35c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_feab_4b77_c35c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_feab_4b77_c35c/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.eatm.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Total Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_feab_4b77_c35c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_feab_4b77_c35c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_feab_4b77_c35c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_feab_4b77_c35c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_feab_4b77_c35c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_feab_4b77_c35c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a72_a80c_e527", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a72_a80c_e527.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a72_a80c_e527/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.eatm.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Total Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a72_a80c_e527_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a72_a80c_e527_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a72_a80c_e527/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a72_a80c_e527.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a72_a80c_e527&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3a72_a80c_e527"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be79_0f34_268e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be79_0f34_268e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_be79_0f34_268e/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.eatm.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Total Cloud Cover Spread, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_be79_0f34_268e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_be79_0f34_268e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_be79_0f34_268e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_be79_0f34_268e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_be79_0f34_268e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_be79_0f34_268e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4408_db1c_a926", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4408_db1c_a926.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4408_db1c_a926/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.lowcld.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Low Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4408_db1c_a926_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4408_db1c_a926_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4408_db1c_a926/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4408_db1c_a926.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4408_db1c_a926&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4408_db1c_a926"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f813_dd12_7c69", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f813_dd12_7c69.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f813_dd12_7c69/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.lowcld.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Low Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f813_dd12_7c69_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f813_dd12_7c69_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f813_dd12_7c69/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f813_dd12_7c69.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f813_dd12_7c69&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f813_dd12_7c69"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95a3_72a2_940d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95a3_72a2_940d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_95a3_72a2_940d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.lowcld.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Low Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_95a3_72a2_940d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_95a3_72a2_940d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_95a3_72a2_940d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_95a3_72a2_940d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_95a3_72a2_940d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_95a3_72a2_940d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6d8_4df2_52c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6d8_4df2_52c9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f6d8_4df2_52c9/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.lowcld.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Low Cloud Cover Spread, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f6d8_4df2_52c9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f6d8_4df2_52c9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f6d8_4df2_52c9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f6d8_4df2_52c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f6d8_4df2_52c9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f6d8_4df2_52c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_84cb_e75b_7ed4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_84cb_e75b_7ed4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_84cb_e75b_7ed4/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.midcld.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Middle Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_84cb_e75b_7ed4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_84cb_e75b_7ed4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_84cb_e75b_7ed4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_84cb_e75b_7ed4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_84cb_e75b_7ed4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_84cb_e75b_7ed4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b3c5_3719_d092", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b3c5_3719_d092.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b3c5_3719_d092/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.midcld.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Middle Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b3c5_3719_d092_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b3c5_3719_d092_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b3c5_3719_d092/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b3c5_3719_d092.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b3c5_3719_d092&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b3c5_3719_d092"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c9d_40d6_3115", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c9d_40d6_3115.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c9d_40d6_3115/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.midcld.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Middle Cloud Cover Spread, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c9d_40d6_3115_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c9d_40d6_3115_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c9d_40d6_3115/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c9d_40d6_3115.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c9d_40d6_3115&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0c9d_40d6_3115"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee59_e7a8_0cd3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee59_e7a8_0cd3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ee59_e7a8_0cd3/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.midcld.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Middle Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ee59_e7a8_0cd3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ee59_e7a8_0cd3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ee59_e7a8_0cd3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ee59_e7a8_0cd3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ee59_e7a8_0cd3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ee59_e7a8_0cd3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad84_40ab_5975", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad84_40ab_5975.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ad84_40ab_5975/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.topcld.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Top Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ad84_40ab_5975_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ad84_40ab_5975_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ad84_40ab_5975/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ad84_40ab_5975.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ad84_40ab_5975&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ad84_40ab_5975"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6a8_f298_e546", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6a8_f298_e546.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f6a8_f298_e546/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.topcld.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Top Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f6a8_f298_e546_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f6a8_f298_e546_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f6a8_f298_e546/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f6a8_f298_e546.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f6a8_f298_e546&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f6a8_f298_e546"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b0f_dccc_8962", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b0f_dccc_8962.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b0f_dccc_8962/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.topcld.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Top Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b0f_dccc_8962_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b0f_dccc_8962_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b0f_dccc_8962/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b0f_dccc_8962.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b0f_dccc_8962&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6b0f_dccc_8962"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f923_564b_5bc8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f923_564b_5bc8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f923_564b_5bc8/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tcdc.topcld.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Top Cloud Cover Spread, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f923_564b_5bc8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f923_564b_5bc8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f923_564b_5bc8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f923_564b_5bc8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f923_564b_5bc8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f923_564b_5bc8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4211_7a90_8734", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4211_7a90_8734.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4211_7a90_8734/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Long Term Maximum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4211_7a90_8734_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4211_7a90_8734_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4211_7a90_8734/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4211_7a90_8734.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4211_7a90_8734&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4211_7a90_8734"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8988_e9b0_8d79", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8988_e9b0_8d79.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8988_e9b0_8d79/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Long Term Maximum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8988_e9b0_8d79_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8988_e9b0_8d79_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8988_e9b0_8d79/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8988_e9b0_8d79.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8988_e9b0_8d79&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8988_e9b0_8d79"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1931_de51_6cf0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1931_de51_6cf0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1931_de51_6cf0/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Maximum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1931_de51_6cf0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1931_de51_6cf0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1931_de51_6cf0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1931_de51_6cf0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1931_de51_6cf0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1931_de51_6cf0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_328f_9e9b_125d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_328f_9e9b_125d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_328f_9e9b_125d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Maximum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_328f_9e9b_125d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_328f_9e9b_125d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_328f_9e9b_125d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_328f_9e9b_125d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_328f_9e9b_125d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_328f_9e9b_125d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d151_f808_34e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d151_f808_34e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d151_f808_34e5/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Long Term Minimum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d151_f808_34e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d151_f808_34e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d151_f808_34e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d151_f808_34e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d151_f808_34e5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d151_f808_34e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5b4_2629_cd6f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5b4_2629_cd6f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5b4_2629_cd6f/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Long Term Minimum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5b4_2629_cd6f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5b4_2629_cd6f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5b4_2629_cd6f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5b4_2629_cd6f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5b4_2629_cd6f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e5b4_2629_cd6f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_624c_b357_05f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_624c_b357_05f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_624c_b357_05f2/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Minimum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_624c_b357_05f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_624c_b357_05f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_624c_b357_05f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_624c_b357_05f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_624c_b357_05f2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_624c_b357_05f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bacc_d99c_0451", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bacc_d99c_0451.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bacc_d99c_0451/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Minimum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bacc_d99c_0451_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bacc_d99c_0451_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bacc_d99c_0451/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bacc_d99c_0451.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bacc_d99c_0451&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bacc_d99c_0451"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d86_a46f_101e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d86_a46f_101e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0d86_a46f_101e/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, trans.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntrans (Monthly Long Term Transpiration at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0d86_a46f_101e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0d86_a46f_101e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0d86_a46f_101e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0d86_a46f_101e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0d86_a46f_101e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0d86_a46f_101e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20a4_1235_6abe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20a4_1235_6abe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_20a4_1235_6abe/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, trans.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntrans (Monthly Long Term Transpiration Spread at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_20a4_1235_6abe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_20a4_1235_6abe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_20a4_1235_6abe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_20a4_1235_6abe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_20a4_1235_6abe&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_20a4_1235_6abe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2102_9861_8842", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2102_9861_8842.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2102_9861_8842/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, trans.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntrans (Monthly Transpiration at Surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2102_9861_8842_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2102_9861_8842_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2102_9861_8842/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2102_9861_8842.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2102_9861_8842&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2102_9861_8842"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cab_f987_19e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cab_f987_19e8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2cab_f987_19e8/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, trans.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntrans (Monthly Transpiration Spread at Surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2cab_f987_19e8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2cab_f987_19e8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2cab_f987_19e8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2cab_f987_19e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2cab_f987_19e8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2cab_f987_19e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ca7_e07f_b217", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ca7_e07f_b217.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ca7_e07f_b217/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uflx.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Monthly Long Term Momentum Flux Spread, u-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ca7_e07f_b217_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ca7_e07f_b217_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ca7_e07f_b217/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ca7_e07f_b217.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ca7_e07f_b217&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3ca7_e07f_b217"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_721c_f702_0780", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_721c_f702_0780.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_721c_f702_0780/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uflx.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Monthly Long Term Momentum Flux, u-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_721c_f702_0780_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_721c_f702_0780_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_721c_f702_0780/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_721c_f702_0780.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_721c_f702_0780&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_721c_f702_0780"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c351_bec5_1e6a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c351_bec5_1e6a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c351_bec5_1e6a/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uflx.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Monthly Momentum Flux Spread, u-component at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c351_bec5_1e6a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c351_bec5_1e6a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c351_bec5_1e6a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c351_bec5_1e6a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c351_bec5_1e6a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c351_bec5_1e6a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f924_37ed_0900", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f924_37ed_0900.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f924_37ed_0900/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uflx.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Monthly Momentum Flux, u-component at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f924_37ed_0900_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f924_37ed_0900_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f924_37ed_0900/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f924_37ed_0900.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f924_37ed_0900&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f924_37ed_0900"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38e1_e00b_2d4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38e1_e00b_2d4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_38e1_e00b_2d4d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ugwd.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Monthly Long Term Zonal Gravity Wave Stress Spread at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_38e1_e00b_2d4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_38e1_e00b_2d4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_38e1_e00b_2d4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_38e1_e00b_2d4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_38e1_e00b_2d4d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_38e1_e00b_2d4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d56_e5d2_07fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d56_e5d2_07fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d56_e5d2_07fe/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ugwd.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Monthly Long Term Zonal Gravity Wave Stress at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d56_e5d2_07fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d56_e5d2_07fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d56_e5d2_07fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d56_e5d2_07fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d56_e5d2_07fe&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6d56_e5d2_07fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1560_39ba_d9ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1560_39ba_d9ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1560_39ba_d9ac/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ugwd.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Monthly Zonal Gravity Wave Stress at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1560_39ba_d9ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1560_39ba_d9ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1560_39ba_d9ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1560_39ba_d9ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1560_39ba_d9ac&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1560_39ba_d9ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_526f_04da_275c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_526f_04da_275c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_526f_04da_275c/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ugwd.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Monthly Zonal Gravity Wave Stress Spread at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_526f_04da_275c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_526f_04da_275c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_526f_04da_275c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_526f_04da_275c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_526f_04da_275c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_526f_04da_275c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e64_28f4_d720", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e64_28f4_d720.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7e64_28f4_d720/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ulwrf.ntat.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Long Term Upward Longwave Radiation Flux Spread at nominal top of atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7e64_28f4_d720_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7e64_28f4_d720_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e64_28f4_d720/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e64_28f4_d720.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e64_28f4_d720&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7e64_28f4_d720"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2ac_a0cb_ddf2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2ac_a0cb_ddf2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d2ac_a0cb_ddf2/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ulwrf.ntat.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Long Term Upward Longwave Radiation Flux at nominal top of atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d2ac_a0cb_ddf2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d2ac_a0cb_ddf2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d2ac_a0cb_ddf2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d2ac_a0cb_ddf2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d2ac_a0cb_ddf2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d2ac_a0cb_ddf2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a32c_4b9f_13e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a32c_4b9f_13e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a32c_4b9f_13e1/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ulwrf.ntat.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Upward Longwave Radiation Flux at nominal top of atmosphere, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a32c_4b9f_13e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a32c_4b9f_13e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a32c_4b9f_13e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a32c_4b9f_13e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a32c_4b9f_13e1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a32c_4b9f_13e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8ed_54e6_677f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8ed_54e6_677f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b8ed_54e6_677f/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ulwrf.ntat.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Upward Longwave Radiation Flux Spread at nominal top of atmosphere, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b8ed_54e6_677f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b8ed_54e6_677f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b8ed_54e6_677f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b8ed_54e6_677f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b8ed_54e6_677f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b8ed_54e6_677f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_684b_4f1c_629b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_684b_4f1c_629b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_684b_4f1c_629b/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ulwrf.sfc.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Long Term Upward Longwave Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_684b_4f1c_629b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_684b_4f1c_629b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_684b_4f1c_629b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_684b_4f1c_629b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_684b_4f1c_629b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_684b_4f1c_629b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f205_e462_bea4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f205_e462_bea4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f205_e462_bea4/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ulwrf.sfc.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Long Term Upward Longwave Radiation Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f205_e462_bea4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f205_e462_bea4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f205_e462_bea4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f205_e462_bea4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f205_e462_bea4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f205_e462_bea4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4080_8713_afd4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4080_8713_afd4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4080_8713_afd4/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ulwrf.sfc.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Upward Longwave Radiation Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4080_8713_afd4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4080_8713_afd4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4080_8713_afd4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4080_8713_afd4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4080_8713_afd4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4080_8713_afd4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5513_75c0_a054", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5513_75c0_a054.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5513_75c0_a054/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, ulwrf.sfc.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Upward Longwave Radiation Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5513_75c0_a054_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5513_75c0_a054_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5513_75c0_a054/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5513_75c0_a054.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5513_75c0_a054&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5513_75c0_a054"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08e0_cd57_166b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08e0_cd57_166b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_08e0_cd57_166b/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uswrf.ntat.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Long Term Upward Solar Radiation Flux at nominal top of atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_08e0_cd57_166b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_08e0_cd57_166b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_08e0_cd57_166b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_08e0_cd57_166b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_08e0_cd57_166b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_08e0_cd57_166b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4030_28b1_4194", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4030_28b1_4194.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4030_28b1_4194/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uswrf.ntat.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Long Term Upward Solar Radiation Flux Spread at nominal top of atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4030_28b1_4194_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4030_28b1_4194_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4030_28b1_4194/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4030_28b1_4194.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4030_28b1_4194&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4030_28b1_4194"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d6c_aad0_1e5c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d6c_aad0_1e5c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2d6c_aad0_1e5c/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uswrf.ntat.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Upward Solar Radiation Flux Spread at nominal top of atmosphere, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2d6c_aad0_1e5c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2d6c_aad0_1e5c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d6c_aad0_1e5c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d6c_aad0_1e5c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d6c_aad0_1e5c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2d6c_aad0_1e5c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9896_ef83_5bd9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9896_ef83_5bd9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9896_ef83_5bd9/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uswrf.ntat.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Upward Solar Radiation Flux at nominal top of atmosphere, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9896_ef83_5bd9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9896_ef83_5bd9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9896_ef83_5bd9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9896_ef83_5bd9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9896_ef83_5bd9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9896_ef83_5bd9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6429_2b22_e9e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6429_2b22_e9e8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6429_2b22_e9e8/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uswrf.sfc.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Long Term Upward Solar Radiation Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6429_2b22_e9e8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6429_2b22_e9e8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6429_2b22_e9e8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6429_2b22_e9e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6429_2b22_e9e8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6429_2b22_e9e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b8d_25a4_bad8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b8d_25a4_bad8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b8d_25a4_bad8/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uswrf.sfc.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Long Term Upward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b8d_25a4_bad8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b8d_25a4_bad8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b8d_25a4_bad8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b8d_25a4_bad8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b8d_25a4_bad8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6b8d_25a4_bad8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97bb_2aa4_2661", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97bb_2aa4_2661.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_97bb_2aa4_2661/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uswrf.sfc.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Upward Solar Radiation Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_97bb_2aa4_2661_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_97bb_2aa4_2661_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_97bb_2aa4_2661/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_97bb_2aa4_2661.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_97bb_2aa4_2661&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_97bb_2aa4_2661"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f242_166e_d84b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f242_166e_d84b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f242_166e_d84b/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uswrf.sfc.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Upward Solar Radiation Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f242_166e_d84b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f242_166e_d84b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f242_166e_d84b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f242_166e_d84b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f242_166e_d84b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f242_166e_d84b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b39_5d16_eea0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b39_5d16_eea0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b39_5d16_eea0/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uwnd.10m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly Long Term U-wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b39_5d16_eea0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b39_5d16_eea0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b39_5d16_eea0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b39_5d16_eea0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b39_5d16_eea0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5b39_5d16_eea0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa63_6fae_4ab4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa63_6fae_4ab4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fa63_6fae_4ab4/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uwnd.10m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly Long Term U-wind Spread, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fa63_6fae_4ab4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fa63_6fae_4ab4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fa63_6fae_4ab4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fa63_6fae_4ab4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fa63_6fae_4ab4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fa63_6fae_4ab4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4799_b07a_686d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4799_b07a_686d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4799_b07a_686d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uwnd.10m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly U-wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4799_b07a_686d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4799_b07a_686d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4799_b07a_686d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4799_b07a_686d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4799_b07a_686d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4799_b07a_686d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6864_e53e_a184", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6864_e53e_a184.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6864_e53e_a184/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, uwnd.10m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly U-wind Spread, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6864_e53e_a184_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6864_e53e_a184_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6864_e53e_a184/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6864_e53e_a184.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6864_e53e_a184&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6864_e53e_a184"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01af_86e2_1200", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01af_86e2_1200.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_01af_86e2_1200/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, vflx.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Monthly Long Term Momentum Flux, v-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_01af_86e2_1200_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_01af_86e2_1200_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_01af_86e2_1200/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_01af_86e2_1200.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_01af_86e2_1200&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_01af_86e2_1200"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6094_63a5_4064", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6094_63a5_4064.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6094_63a5_4064/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, vflx.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Monthly Long Term Momentum Flux Spread, v-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6094_63a5_4064_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6094_63a5_4064_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6094_63a5_4064/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6094_63a5_4064.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6094_63a5_4064&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6094_63a5_4064"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ea6_f044_0cf2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ea6_f044_0cf2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ea6_f044_0cf2/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, vflx.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Monthly Momentum Flux, v-component at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ea6_f044_0cf2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ea6_f044_0cf2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ea6_f044_0cf2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ea6_f044_0cf2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ea6_f044_0cf2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3ea6_f044_0cf2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87ad_ee53_7cf8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87ad_ee53_7cf8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_87ad_ee53_7cf8/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, vflx.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Monthly Momentum Flux Spread, v-component at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_87ad_ee53_7cf8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_87ad_ee53_7cf8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_87ad_ee53_7cf8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_87ad_ee53_7cf8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_87ad_ee53_7cf8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_87ad_ee53_7cf8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7063_54ed_0162", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7063_54ed_0162.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7063_54ed_0162/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, vgwd.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Monthly Long Term Meridional Gravity Wave Stress at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7063_54ed_0162_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7063_54ed_0162_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7063_54ed_0162/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7063_54ed_0162.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7063_54ed_0162&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7063_54ed_0162"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ed7_646b_8735", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ed7_646b_8735.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ed7_646b_8735/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, vgwd.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Monthly Long Term Meridional Gravity Wave Stress Spread at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ed7_646b_8735_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ed7_646b_8735_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ed7_646b_8735/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ed7_646b_8735.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ed7_646b_8735&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7ed7_646b_8735"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70e9_e0e4_ddec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70e9_e0e4_ddec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_70e9_e0e4_ddec/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, vgwd.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Monthly Meridional Gravity Wave Stress at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_70e9_e0e4_ddec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_70e9_e0e4_ddec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_70e9_e0e4_ddec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_70e9_e0e4_ddec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_70e9_e0e4_ddec&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_70e9_e0e4_ddec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9293_63a2_192c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9293_63a2_192c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9293_63a2_192c/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, vgwd.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Monthly Meridional Gravity Wave Stress Spread at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9293_63a2_192c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9293_63a2_192c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9293_63a2_192c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9293_63a2_192c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9293_63a2_192c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9293_63a2_192c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08dd_01ad_837c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08dd_01ad_837c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_08dd_01ad_837c/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, vwnd.10m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly Long Term V wind Spread, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_08dd_01ad_837c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_08dd_01ad_837c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_08dd_01ad_837c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_08dd_01ad_837c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_08dd_01ad_837c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_08dd_01ad_837c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6a6_aa79_a4f4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6a6_aa79_a4f4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e6a6_aa79_a4f4/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, vwnd.10m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly Long Term V wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e6a6_aa79_a4f4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e6a6_aa79_a4f4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e6a6_aa79_a4f4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e6a6_aa79_a4f4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e6a6_aa79_a4f4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e6a6_aa79_a4f4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70a5_5ee7_0d31", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70a5_5ee7_0d31.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_70a5_5ee7_0d31/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, vwnd.10m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly V wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_70a5_5ee7_0d31_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_70a5_5ee7_0d31_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_70a5_5ee7_0d31/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_70a5_5ee7_0d31.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_70a5_5ee7_0d31&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_70a5_5ee7_0d31"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b3a_ceb3_6f37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b3a_ceb3_6f37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b3a_ceb3_6f37/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, vwnd.10m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly V wind Spread, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b3a_ceb3_6f37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b3a_ceb3_6f37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b3a_ceb3_6f37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b3a_ceb3_6f37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b3a_ceb3_6f37&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7b3a_ceb3_6f37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1104_9630_6c7a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1104_9630_6c7a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1104_9630_6c7a/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, weasd.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (Monthly Long Term Water Equiv. of Accum. Snow Depth Spread at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1104_9630_6c7a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1104_9630_6c7a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1104_9630_6c7a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1104_9630_6c7a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1104_9630_6c7a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1104_9630_6c7a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b67d_73d1_3454", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b67d_73d1_3454.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b67d_73d1_3454/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, weasd.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (Monthly Long Term Water Equiv. of Accum. Snow Depth at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b67d_73d1_3454_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b67d_73d1_3454_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b67d_73d1_3454/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b67d_73d1_3454.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b67d_73d1_3454&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b67d_73d1_3454"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7683_5a15_777d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7683_5a15_777d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7683_5a15_777d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, weasd.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (Monthly Water Equiv. of Accum. Snow Depth at surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7683_5a15_777d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7683_5a15_777d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7683_5a15_777d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7683_5a15_777d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7683_5a15_777d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7683_5a15_777d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9223_66bc_72e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9223_66bc_72e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9223_66bc_72e2/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, weasd.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (Monthly Water Equiv. of Accum. Snow Depth Spread at surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9223_66bc_72e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9223_66bc_72e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9223_66bc_72e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9223_66bc_72e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9223_66bc_72e2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9223_66bc_72e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1308_b4d6_3ae9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1308_b4d6_3ae9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1308_b4d6_3ae9/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, soill.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoill (Monthly Long Term Liquid Volumetric Soil Moisture (non-frozen) Fraction Spread, 1)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1308_b4d6_3ae9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1308_b4d6_3ae9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1308_b4d6_3ae9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1308_b4d6_3ae9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1308_b4d6_3ae9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1308_b4d6_3ae9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d87a_3f1f_6050", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d87a_3f1f_6050.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d87a_3f1f_6050/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, soill.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoill (Monthly Long Term Liquid Volumetric Soil Moisture (non-frozen) Fraction, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d87a_3f1f_6050_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d87a_3f1f_6050_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d87a_3f1f_6050/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d87a_3f1f_6050.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d87a_3f1f_6050&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d87a_3f1f_6050"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_197d_7e9c_5e6e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_197d_7e9c_5e6e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_197d_7e9c_5e6e/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, soill.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoill (Monthly Liquid Volumetric Soil Moisture (non-frozen) Fraction Spread, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_197d_7e9c_5e6e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_197d_7e9c_5e6e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_197d_7e9c_5e6e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_197d_7e9c_5e6e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_197d_7e9c_5e6e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_197d_7e9c_5e6e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92b4_769a_01fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92b4_769a_01fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_92b4_769a_01fc/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, soill.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoill (Monthly Liquid Volumetric Soil Moisture (non-frozen) Fraction, frac.)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_92b4_769a_01fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_92b4_769a_01fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_92b4_769a_01fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_92b4_769a_01fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_92b4_769a_01fc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_92b4_769a_01fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_430a_8fc5_56f4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_430a_8fc5_56f4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_430a_8fc5_56f4/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, soilw.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoilw (Monthly Long Term Volumetric Soil Moisture, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_430a_8fc5_56f4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_430a_8fc5_56f4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_430a_8fc5_56f4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_430a_8fc5_56f4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_430a_8fc5_56f4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_430a_8fc5_56f4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4c0_10bd_36f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4c0_10bd_36f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a4c0_10bd_36f9/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, soilw.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoilw (Monthly Long Term Volumetric Soil Moisture Spread, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a4c0_10bd_36f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a4c0_10bd_36f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a4c0_10bd_36f9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a4c0_10bd_36f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a4c0_10bd_36f9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a4c0_10bd_36f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_159e_fba1_470f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_159e_fba1_470f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_159e_fba1_470f/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, soilw.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoilw (Monthly Volumetric Soil Moisture, frac.)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_159e_fba1_470f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_159e_fba1_470f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_159e_fba1_470f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_159e_fba1_470f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_159e_fba1_470f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_159e_fba1_470f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6088_82bb_69b4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6088_82bb_69b4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6088_82bb_69b4/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, soilw.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoilw (Monthly Volumetric Soil Moisture Spread, frac.)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6088_82bb_69b4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6088_82bb_69b4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6088_82bb_69b4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6088_82bb_69b4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6088_82bb_69b4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6088_82bb_69b4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56c6_a4bb_8ad3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56c6_a4bb_8ad3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_56c6_a4bb_8ad3/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Long Term Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_56c6_a4bb_8ad3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_56c6_a4bb_8ad3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_56c6_a4bb_8ad3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_56c6_a4bb_8ad3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_56c6_a4bb_8ad3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_56c6_a4bb_8ad3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_905b_262c_f5c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_905b_262c_f5c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_905b_262c_f5c0/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Long Term Soil Temperature Spread, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_905b_262c_f5c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_905b_262c_f5c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_905b_262c_f5c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_905b_262c_f5c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_905b_262c_f5c0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_905b_262c_f5c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ec6_5a5a_201d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ec6_5a5a_201d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ec6_5a5a_201d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Soil Temperature, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ec6_5a5a_201d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ec6_5a5a_201d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ec6_5a5a_201d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ec6_5a5a_201d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ec6_5a5a_201d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3ec6_5a5a_201d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa13_331a_881b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa13_331a_881b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa13_331a_881b/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Soil Temperature Spread, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa13_331a_881b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa13_331a_881b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa13_331a_881b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa13_331a_881b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa13_331a_881b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_aa13_331a_881b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b077_f03b_b4a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b077_f03b_b4a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b077_f03b_b4a1/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sig995.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b077_f03b_b4a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b077_f03b_b4a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b077_f03b_b4a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b077_f03b_b4a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b077_f03b_b4a1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b077_f03b_b4a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9118_5c8e_5fc3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9118_5c8e_5fc3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9118_5c8e_5fc3/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sig995.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9118_5c8e_5fc3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9118_5c8e_5fc3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9118_5c8e_5fc3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9118_5c8e_5fc3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9118_5c8e_5fc3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9118_5c8e_5fc3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6fe_d15d_3825", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6fe_d15d_3825.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e6fe_d15d_3825/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.tropo.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e6fe_d15d_3825_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e6fe_d15d_3825_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e6fe_d15d_3825/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e6fe_d15d_3825.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e6fe_d15d_3825&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e6fe_d15d_3825"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5b1_3ac5_5570", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5b1_3ac5_5570.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5b1_3ac5_5570/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.tropo.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5b1_3ac5_5570_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5b1_3ac5_5570_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5b1_3ac5_5570/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5b1_3ac5_5570.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5b1_3ac5_5570&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a5b1_3ac5_5570"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d54d_29b6_5e96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d54d_29b6_5e96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d54d_29b6_5e96/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cape.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Long Term Mean Monthly CAPE, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d54d_29b6_5e96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d54d_29b6_5e96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d54d_29b6_5e96/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d54d_29b6_5e96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d54d_29b6_5e96&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d54d_29b6_5e96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96c5_8ac8_f767", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96c5_8ac8_f767.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_96c5_8ac8_f767/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cape.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Monthly CAPE, J/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_96c5_8ac8_f767_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_96c5_8ac8_f767_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_96c5_8ac8_f767/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_96c5_8ac8_f767.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_96c5_8ac8_f767&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_96c5_8ac8_f767"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c750_1755_927d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c750_1755_927d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c750_1755_927d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cin.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Long Term Mean Monthly CAPE, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c750_1755_927d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c750_1755_927d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c750_1755_927d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c750_1755_927d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c750_1755_927d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c750_1755_927d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f225_6e1e_47e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f225_6e1e_47e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f225_6e1e_47e0/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cin.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Monthly CAPE, J/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f225_6e1e_47e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f225_6e1e_47e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f225_6e1e_47e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f225_6e1e_47e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f225_6e1e_47e0&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f225_6e1e_47e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b7c_de81_63b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b7c_de81_63b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8b7c_de81_63b0/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cldwtr.eatm.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldwtr (Long Term Mean Monthly Cloud Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8b7c_de81_63b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8b7c_de81_63b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8b7c_de81_63b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8b7c_de81_63b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8b7c_de81_63b0&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8b7c_de81_63b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_611c_17b6_fc8c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_611c_17b6_fc8c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_611c_17b6_fc8c/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cldwtr.eatm.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldwtr (Monthly Cloud Water for entire atmosphere, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_611c_17b6_fc8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_611c_17b6_fc8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_611c_17b6_fc8c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_611c_17b6_fc8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_611c_17b6_fc8c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_611c_17b6_fc8c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28a6_1a79_30d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28a6_1a79_30d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28a6_1a79_30d0/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, hgt.tropo.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Long Term Mean Monthly Geopotential Heights at Tropopause, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28a6_1a79_30d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28a6_1a79_30d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28a6_1a79_30d0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28a6_1a79_30d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28a6_1a79_30d0&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_28a6_1a79_30d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_49e8_eb25_3ca3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_49e8_eb25_3ca3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_49e8_eb25_3ca3/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, hgt.tropo.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Monthly Geopotential Heights at Tropopause, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_49e8_eb25_3ca3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_49e8_eb25_3ca3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_49e8_eb25_3ca3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_49e8_eb25_3ca3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_49e8_eb25_3ca3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_49e8_eb25_3ca3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff4f_b727_8e70", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff4f_b727_8e70.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff4f_b727_8e70/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, omega.sig995.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Long Term Mean Monthly Omega at sigma level 0.995, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff4f_b727_8e70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff4f_b727_8e70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff4f_b727_8e70/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff4f_b727_8e70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff4f_b727_8e70&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_ff4f_b727_8e70"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_820b_e70f_084b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_820b_e70f_084b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_820b_e70f_084b/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, omega.sig995.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Monthly Omega at sigma level 0.995, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_820b_e70f_084b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_820b_e70f_084b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_820b_e70f_084b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_820b_e70f_084b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_820b_e70f_084b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_820b_e70f_084b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_508d_e781_161d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_508d_e781_161d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_508d_e781_161d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pottmp.sig995.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean Monthly Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_508d_e781_161d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_508d_e781_161d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_508d_e781_161d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_508d_e781_161d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_508d_e781_161d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_508d_e781_161d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d32b_2d9d_2af1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d32b_2d9d_2af1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d32b_2d9d_2af1/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pottmp.sig995.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Potential Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d32b_2d9d_2af1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d32b_2d9d_2af1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d32b_2d9d_2af1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d32b_2d9d_2af1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d32b_2d9d_2af1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d32b_2d9d_2af1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37a6_b25c_7e36", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37a6_b25c_7e36.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_37a6_b25c_7e36/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pr wtr.eatm.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Long Term Mean Monthly Precipitable Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_37a6_b25c_7e36_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_37a6_b25c_7e36_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_37a6_b25c_7e36/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_37a6_b25c_7e36.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_37a6_b25c_7e36&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_37a6_b25c_7e36"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bcb8_71ec_c244", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bcb8_71ec_c244.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bcb8_71ec_c244/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pr wtr.eatm.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Precipitable Water for entire atmosphere, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bcb8_71ec_c244_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bcb8_71ec_c244_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bcb8_71ec_c244/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bcb8_71ec_c244.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bcb8_71ec_c244&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_bcb8_71ec_c244"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_984e_a3fc_d40e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_984e_a3fc_d40e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_984e_a3fc_d40e/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pres.sfc.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean Monthly Pressure at Surface, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_984e_a3fc_d40e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_984e_a3fc_d40e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_984e_a3fc_d40e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_984e_a3fc_d40e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_984e_a3fc_d40e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_984e_a3fc_d40e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9dd7_3fbe_a7e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9dd7_3fbe_a7e4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9dd7_3fbe_a7e4/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pres.sfc.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Pressure at Surface, Pa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9dd7_3fbe_a7e4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9dd7_3fbe_a7e4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9dd7_3fbe_a7e4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9dd7_3fbe_a7e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9dd7_3fbe_a7e4&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9dd7_3fbe_a7e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b7af_410b_0a8f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b7af_410b_0a8f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b7af_410b_0a8f/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pres.tropo.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean Monthly Pressure at Tropopause, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b7af_410b_0a8f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b7af_410b_0a8f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b7af_410b_0a8f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b7af_410b_0a8f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b7af_410b_0a8f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b7af_410b_0a8f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13a4_066a_82b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13a4_066a_82b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_13a4_066a_82b7/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pres.tropo.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Pressure at Tropopause, Pa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_13a4_066a_82b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_13a4_066a_82b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_13a4_066a_82b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_13a4_066a_82b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_13a4_066a_82b7&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_13a4_066a_82b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d6d_f935_11d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d6d_f935_11d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d6d_f935_11d9/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, prmsl.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Long Term Mean Monthly Pressure at Mean Sea Level, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d6d_f935_11d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d6d_f935_11d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d6d_f935_11d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d6d_f935_11d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d6d_f935_11d9&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_1d6d_f935_11d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8ac_8858_87a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8ac_8858_87a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a8ac_8858_87a2/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, prmsl.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Monthly Pressure at Mean Sea Level, Pa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a8ac_8858_87a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a8ac_8858_87a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a8ac_8858_87a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a8ac_8858_87a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a8ac_8858_87a2&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a8ac_8858_87a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99cd_73a4_4d50", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99cd_73a4_4d50.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99cd_73a4_4d50/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, rhum.sig995.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Long Term Mean Monthly Relative Humidity at sigma level 0.995, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99cd_73a4_4d50_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99cd_73a4_4d50_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99cd_73a4_4d50/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99cd_73a4_4d50.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99cd_73a4_4d50&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_99cd_73a4_4d50"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_61fc_79de_8ba2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_61fc_79de_8ba2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_61fc_79de_8ba2/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, rhum.sig995.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Monthly Relative Humidity at sigma level 0.995, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_61fc_79de_8ba2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_61fc_79de_8ba2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_61fc_79de_8ba2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_61fc_79de_8ba2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_61fc_79de_8ba2&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_61fc_79de_8ba2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1793_0588_e0c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1793_0588_e0c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1793_0588_e0c0/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tco3.eatm.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Long Term Mean Monthly Total Columnar Ozone, Dobsons)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1793_0588_e0c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1793_0588_e0c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1793_0588_e0c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1793_0588_e0c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1793_0588_e0c0&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_1793_0588_e0c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a99e_1b9f_208a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a99e_1b9f_208a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a99e_1b9f_208a/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tco3.eatm.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Monthly Total Columnar Ozone, Dobsons)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a99e_1b9f_208a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a99e_1b9f_208a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a99e_1b9f_208a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a99e_1b9f_208a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a99e_1b9f_208a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a99e_1b9f_208a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_120e_10e5_150e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_120e_10e5_150e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_120e_10e5_150e/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uwnd.sig995.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean Monthly U-wind at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_120e_10e5_150e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_120e_10e5_150e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_120e_10e5_150e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_120e_10e5_150e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_120e_10e5_150e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_120e_10e5_150e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1ed_8300_1448", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1ed_8300_1448.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f1ed_8300_1448/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uwnd.sig995.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly U-wind at sigma level 0.995, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f1ed_8300_1448_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f1ed_8300_1448_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f1ed_8300_1448/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f1ed_8300_1448.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f1ed_8300_1448&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f1ed_8300_1448"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d95d_7cda_29f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d95d_7cda_29f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d95d_7cda_29f6/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uwnd.tropo.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean Monthly U-wind at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d95d_7cda_29f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d95d_7cda_29f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d95d_7cda_29f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d95d_7cda_29f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d95d_7cda_29f6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d95d_7cda_29f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c80_b7c0_8c65", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c80_b7c0_8c65.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4c80_b7c0_8c65/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uwnd.tropo.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly U-wind at Tropopause, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4c80_b7c0_8c65_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4c80_b7c0_8c65_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c80_b7c0_8c65/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c80_b7c0_8c65.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c80_b7c0_8c65&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4c80_b7c0_8c65"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b94e_33df_9ba3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b94e_33df_9ba3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b94e_33df_9ba3/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vwnd.sig995.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean Monthly V-wind at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b94e_33df_9ba3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b94e_33df_9ba3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b94e_33df_9ba3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b94e_33df_9ba3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b94e_33df_9ba3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b94e_33df_9ba3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9cf_f4bf_4036", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9cf_f4bf_4036.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c9cf_f4bf_4036/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vwnd.sig995.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly V-wind at sigma level 0.995, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c9cf_f4bf_4036_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c9cf_f4bf_4036_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c9cf_f4bf_4036/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c9cf_f4bf_4036.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c9cf_f4bf_4036&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c9cf_f4bf_4036"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_46cc_ff17_c4c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_46cc_ff17_c4c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_46cc_ff17_c4c3/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vwnd.tropo.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean Monthly V-wind at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_46cc_ff17_c4c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_46cc_ff17_c4c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_46cc_ff17_c4c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_46cc_ff17_c4c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_46cc_ff17_c4c3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_46cc_ff17_c4c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_984a_2f4f_8a46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_984a_2f4f_8a46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_984a_2f4f_8a46/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vwnd.tropo.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly V-wind at Tropopause, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_984a_2f4f_8a46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_984a_2f4f_8a46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_984a_2f4f_8a46/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_984a_2f4f_8a46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_984a_2f4f_8a46&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_984a_2f4f_8a46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f01f_43cf_686b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f01f_43cf_686b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f01f_43cf_686b/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, air.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f01f_43cf_686b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f01f_43cf_686b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f01f_43cf_686b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f01f_43cf_686b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f01f_43cf_686b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f01f_43cf_686b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_808e_0b04_f524", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_808e_0b04_f524.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_808e_0b04_f524/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, air.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_808e_0b04_f524_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_808e_0b04_f524_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_808e_0b04_f524/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_808e_0b04_f524.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_808e_0b04_f524&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_808e_0b04_f524"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_638d_214b_53fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_638d_214b_53fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_638d_214b_53fb/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, hgt.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Long Term Mean Monthly Geopotential Heights on Pressure Levels, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_638d_214b_53fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_638d_214b_53fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_638d_214b_53fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_638d_214b_53fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_638d_214b_53fb&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_638d_214b_53fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3098_b4ac_5140", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3098_b4ac_5140.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3098_b4ac_5140/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, hgt.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Monthly Geopotential Heights on Pressure Levels, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3098_b4ac_5140_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3098_b4ac_5140_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3098_b4ac_5140/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3098_b4ac_5140.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3098_b4ac_5140&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3098_b4ac_5140"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_36bd_aee8_c4af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_36bd_aee8_c4af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_36bd_aee8_c4af/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, omega.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Long Term Mean Monthly Omega on Pressure Levels, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_36bd_aee8_c4af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_36bd_aee8_c4af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_36bd_aee8_c4af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_36bd_aee8_c4af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_36bd_aee8_c4af&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_36bd_aee8_c4af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fee6_4e47_1ca3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fee6_4e47_1ca3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fee6_4e47_1ca3/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, omega.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Monthly Omega on Pressure Levels, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fee6_4e47_1ca3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fee6_4e47_1ca3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fee6_4e47_1ca3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fee6_4e47_1ca3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fee6_4e47_1ca3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_fee6_4e47_1ca3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a2e_1bef_55b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a2e_1bef_55b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1a2e_1bef_55b6/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, rhum.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Long Term Mean Monthly Relative Humidity on Pressure Levels, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1a2e_1bef_55b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1a2e_1bef_55b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1a2e_1bef_55b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1a2e_1bef_55b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1a2e_1bef_55b6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_1a2e_1bef_55b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fef2_4655_1c29", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fef2_4655_1c29.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fef2_4655_1c29/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, rhum.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Monthly Relative Humidity on Pressure Levels, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fef2_4655_1c29_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fef2_4655_1c29_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fef2_4655_1c29/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fef2_4655_1c29.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fef2_4655_1c29&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_fef2_4655_1c29"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c738_0e47_f2c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c738_0e47_f2c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c738_0e47_f2c0/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, shum.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Long Term Mean Monthly Specific Humidity on Pressure Levels, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c738_0e47_f2c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c738_0e47_f2c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c738_0e47_f2c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c738_0e47_f2c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c738_0e47_f2c0&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c738_0e47_f2c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7dfe_3602_d7fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7dfe_3602_d7fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7dfe_3602_d7fd/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, shum.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Monthly Specific Humidity on Pressure Levels, kg/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7dfe_3602_d7fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7dfe_3602_d7fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7dfe_3602_d7fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7dfe_3602_d7fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7dfe_3602_d7fd&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7dfe_3602_d7fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2571_5f8c_77c7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2571_5f8c_77c7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2571_5f8c_77c7/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, uwnd.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Long Term Mean Monthly U-wind on Pressure Levels, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2571_5f8c_77c7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2571_5f8c_77c7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2571_5f8c_77c7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2571_5f8c_77c7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2571_5f8c_77c7&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2571_5f8c_77c7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e6a_1df2_8133", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e6a_1df2_8133.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5e6a_1df2_8133/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, uwnd.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Monthly U-wind on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5e6a_1df2_8133_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5e6a_1df2_8133_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5e6a_1df2_8133/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5e6a_1df2_8133.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5e6a_1df2_8133&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5e6a_1df2_8133"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8052_2ad4_ae6e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8052_2ad4_ae6e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8052_2ad4_ae6e/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, vwnd.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Long Term Mean Monthly V-wind on Pressure Levels, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8052_2ad4_ae6e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8052_2ad4_ae6e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8052_2ad4_ae6e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8052_2ad4_ae6e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8052_2ad4_ae6e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8052_2ad4_ae6e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3d6_5b02_9bac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3d6_5b02_9bac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c3d6_5b02_9bac/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, vwnd.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Monthly V-wind on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c3d6_5b02_9bac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c3d6_5b02_9bac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c3d6_5b02_9bac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c3d6_5b02_9bac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c3d6_5b02_9bac&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c3d6_5b02_9bac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4cd5_2f5d_859e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4cd5_2f5d_859e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4cd5_2f5d_859e/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, soill.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoill (Long Term Mean Monthly Liquid Volumetric Soil Moisture (non-frozen) Fraction, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4cd5_2f5d_859e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4cd5_2f5d_859e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4cd5_2f5d_859e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4cd5_2f5d_859e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4cd5_2f5d_859e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4cd5_2f5d_859e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf54_ed95_084d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf54_ed95_084d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf54_ed95_084d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, soill.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoill (Long Term Mean Monthly Liquid Volumetric Soil Moisture (non-frozen) Fraction Spread, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf54_ed95_084d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf54_ed95_084d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf54_ed95_084d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf54_ed95_084d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf54_ed95_084d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_cf54_ed95_084d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ec8_6cc3_4b86", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ec8_6cc3_4b86.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ec8_6cc3_4b86/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, soill.mon.mean), 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoill (Monthly Liquid Volumetric Soil Moisture (non-frozen) Fraction, frac.)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ec8_6cc3_4b86_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ec8_6cc3_4b86_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ec8_6cc3_4b86/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ec8_6cc3_4b86.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ec8_6cc3_4b86&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_1ec8_6cc3_4b86"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a2d_21dd_7f80", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a2d_21dd_7f80.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4a2d_21dd_7f80/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, soill.mon.mean), 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoill (Monthly Liquid Volumetric Soil Moisture (non-frozen) Fraction Spread, frac.)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4a2d_21dd_7f80_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4a2d_21dd_7f80_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4a2d_21dd_7f80/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4a2d_21dd_7f80.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4a2d_21dd_7f80&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4a2d_21dd_7f80"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_087c_95f7_92d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_087c_95f7_92d1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_087c_95f7_92d1/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, soilw.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoilw (Long Term Mean Monthly Volumetric Soil Moisture Spread, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_087c_95f7_92d1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_087c_95f7_92d1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_087c_95f7_92d1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_087c_95f7_92d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_087c_95f7_92d1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_087c_95f7_92d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f25_e4b2_25ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f25_e4b2_25ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f25_e4b2_25ee/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, soilw.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoilw (Long Term Mean Monthly Volumetric Soil Moisture, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f25_e4b2_25ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f25_e4b2_25ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f25_e4b2_25ee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f25_e4b2_25ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f25_e4b2_25ee&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9f25_e4b2_25ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a3c9_033f_7419", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a3c9_033f_7419.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a3c9_033f_7419/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, soilw.mon.mean), 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoilw (Monthly Volumetric Soil Moisture Spread, frac.)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a3c9_033f_7419_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a3c9_033f_7419_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a3c9_033f_7419/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a3c9_033f_7419.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a3c9_033f_7419&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a3c9_033f_7419"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e68e_bb87_30d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e68e_bb87_30d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e68e_bb87_30d7/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, soilw.mon.mean), 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoilw (Monthly Volumetric Soil Moisture, frac.)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e68e_bb87_30d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e68e_bb87_30d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e68e_bb87_30d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e68e_bb87_30d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e68e_bb87_30d7&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e68e_bb87_30d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e5c_f7ed_dc4e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e5c_f7ed_dc4e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e5c_f7ed_dc4e/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, tsoil.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Long Term Mean Monthly Soil Temperature Spread, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e5c_f7ed_dc4e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e5c_f7ed_dc4e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e5c_f7ed_dc4e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e5c_f7ed_dc4e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e5c_f7ed_dc4e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0e5c_f7ed_dc4e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b78c_38d4_da29", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b78c_38d4_da29.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b78c_38d4_da29/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, tsoil.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Long Term Mean Monthly Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b78c_38d4_da29_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b78c_38d4_da29_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b78c_38d4_da29/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b78c_38d4_da29.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b78c_38d4_da29&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b78c_38d4_da29"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0257_dc9e_799e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0257_dc9e_799e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0257_dc9e_799e/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, tsoil.mon.mean), 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Soil Temperature, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0257_dc9e_799e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0257_dc9e_799e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0257_dc9e_799e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0257_dc9e_799e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0257_dc9e_799e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0257_dc9e_799e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1207_e277_400e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1207_e277_400e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1207_e277_400e/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, tsoil.mon.mean), 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Soil Temperature Spread, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1207_e277_400e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1207_e277_400e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1207_e277_400e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1207_e277_400e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1207_e277_400e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_1207_e277_400e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e603_9cda_9a41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e603_9cda_9a41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e603_9cda_9a41/request", "", "public", "monthly total std of air from the NCEP Reanalysis (Top Dataset, pressure, air.mon.total.std), 2.5\u00b0, 0001", "monthly total std of air from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Total Interannual Stardard Deviation of Air Temperature by Month, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e603_9cda_9a41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e603_9cda_9a41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e603_9cda_9a41/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e603_9cda_9a41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e603_9cda_9a41&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e603_9cda_9a41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3a7_0575_988c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3a7_0575_988c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d3a7_0575_988c/request", "", "public", "monthly total std of hgt from the NCEP Reanalysis (Top Dataset, pressure, hgt.mon.total.std), 2.5\u00b0, 0001", "monthly total std of hgt from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Total Interannual Standard Deviation of Geopotential Height by Month, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d3a7_0575_988c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d3a7_0575_988c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d3a7_0575_988c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d3a7_0575_988c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d3a7_0575_988c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d3a7_0575_988c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_366c_66a5_6449", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_366c_66a5_6449.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_366c_66a5_6449/request", "", "public", "monthly total std of omega from the NCEP Reanalysis (omega.mon.total.std), 2.5\u00b0, 0001", "Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Total Interannual Stardard Deviation of Omega, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_366c_66a5_6449_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_366c_66a5_6449_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_366c_66a5_6449/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_366c_66a5_6449.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_366c_66a5_6449&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_366c_66a5_6449"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c04_db06_98dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c04_db06_98dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2c04_db06_98dc/request", "", "public", "monthly total std of rhum from the NCEP Reanalysis (Top Dataset, pressure, rhum.mon.total.std), 2.5\u00b0, 0001", "monthly total std of rhum from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Total Interannual Standard Deviation of Relative Humidity by Month, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2c04_db06_98dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2c04_db06_98dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2c04_db06_98dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2c04_db06_98dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2c04_db06_98dc&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2c04_db06_98dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ace_94fe_1a43", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ace_94fe_1a43.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ace_94fe_1a43/request", "", "public", "monthly total std of uwnd from the NCEP Reanalysis (Top Dataset, pressure, uwnd.mon.total.std), 2.5\u00b0, 0001", "monthly total std of uwnd from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Total Standard Deviation of U-Wind by Month, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ace_94fe_1a43_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ace_94fe_1a43_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ace_94fe_1a43/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ace_94fe_1a43.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ace_94fe_1a43&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7ace_94fe_1a43"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa74_df53_4fed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa74_df53_4fed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa74_df53_4fed/request", "", "public", "monthly total std of vwnd from the NCEP Reanalysis (Top Dataset, pressure, vwnd.mon.total.std), 2.5\u00b0, 0001", "monthly total std of vwnd from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Total Interannual Standard Deviation of V-Wind by Month, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa74_df53_4fed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa74_df53_4fed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa74_df53_4fed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa74_df53_4fed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa74_df53_4fed&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_aa74_df53_4fed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cc75_7f44_c091", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cc75_7f44_c091.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_cc75_7f44_c091/request", "", "public", "Morehead City, North Carolina Coastal Digital Elevation Model (morehead city 13 mhw 2011), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_cc75_7f44_c091_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_cc75_7f44_c091_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_cc75_7f44_c091/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_cc75_7f44_c091.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_cc75_7f44_c091&showErrors=false&email=", "NOAA", "noaa_ngdc_cc75_7f44_c091"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e9cb_147f_9c08", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e9cb_147f_9c08.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e9cb_147f_9c08/request", "", "public", "Morehead City, North Carolina Coastal Digital Elevation Model (morehead city 13 navd88 2011), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e9cb_147f_9c08_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e9cb_147f_9c08_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e9cb_147f_9c08/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e9cb_147f_9c08.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e9cb_147f_9c08&showErrors=false&email=", "NOAA", "noaa_ngdc_e9cb_147f_9c08"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_af97_1bc7_3b70", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_af97_1bc7_3b70.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_af97_1bc7_3b70/request", "", "public", "Morehead City, North Carolina Tsunami Forecast Grids for MOST Model (MoreheadCityNC A)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_af97_1bc7_3b70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_af97_1bc7_3b70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_af97_1bc7_3b70/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_af97_1bc7_3b70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_af97_1bc7_3b70&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_af97_1bc7_3b70"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ef0d_33cb_e31b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ef0d_33cb_e31b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_ef0d_33cb_e31b/request", "", "public", "Morehead City, North Carolina Tsunami Forecast Grids for MOST Model (MoreheadCityNC B)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_ef0d_33cb_e31b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_ef0d_33cb_e31b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ef0d_33cb_e31b/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ef0d_33cb_e31b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ef0d_33cb_e31b&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_ef0d_33cb_e31b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b37b_92cf_ae17", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b37b_92cf_ae17.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_b37b_92cf_ae17/request", "", "public", "Morehead City, North Carolina Tsunami Forecast Grids for MOST Model (MoreheadCityNC C)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_b37b_92cf_ae17_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_b37b_92cf_ae17_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_b37b_92cf_ae17/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_b37b_92cf_ae17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_b37b_92cf_ae17&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_b37b_92cf_ae17"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplMURSST41anom1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplMURSST41anom1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplMURSST41anom1day/request", "", "public", "Multi-scale Ultra-high Resolution (MUR) SST Analysis Anomaly fv04.1, Global, 0.01\u00b0, 2002-present, Daily", "A daily Sea Surface Temperature (SST) Anomaly product created by ERD based on JPL MUR's climatology (2003-2014) of the Jet Propulsion Laboratory's (JPL) Multi-scale Ultra-high Resolution (MUR), merged, multi-sensor L4 v4.1 Foundation SST analysis product (part of the Group for High-Resolution Sea Surface Temperature (GHRSST) project).\n \nThe data for the most recent 4 days is usually revised everyday. The data for other days is sometimes revised.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsstAnom (sea surface temperature anomaly, degree_C)\nmask (sea/land field composite mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplMURSST41anom1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplMURSST41anom1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplMURSST41anom1day/index.json", "https://podaac.jpl.nasa.gov/dataset/MUR-JPL-L4-GLOB-v4.1", "http://upwell.pfeg.noaa.gov/erddap/rss/jplMURSST41anom1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplMURSST41anom1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD and NOAA NESDIS CoastWatch WCRN", "jplMURSST41anom1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplMURSST41anommday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplMURSST41anommday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplMURSST41anommday/request", "", "public", "Multi-scale Ultra-high Resolution (MUR) SST Analysis Anomaly fv04.1, Global, 0.01\u00b0, 2002-present, Monthly", "This monthly Sea Surface Temperature (SST) Anomaly product is a simple mean of the daily anomaly product created by ERD for a given month. The daily anomalies were created by ERD based on JPL MUR's climatology (2003-2014) of the Jet Propulsion Laboratory's (JPL) Multi-scale Ultra-high Resolution (MUR), merged, multi-sensor L4 v4.1 Foundation SST analysis product (part of the Group for High-Resolution Sea Surface Temperature (GHRSST) project).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsstAnom (Sea Surface Temperature Anomaly Monthly Mean, degree_C)\nmask (sea/land field composite mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplMURSST41anommday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplMURSST41anommday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplMURSST41anommday/index.json", "https://podaac.jpl.nasa.gov/dataset/MUR-JPL-L4-GLOB-v4.1", "http://upwell.pfeg.noaa.gov/erddap/rss/jplMURSST41anommday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplMURSST41anommday&showErrors=false&email=", "NOAA NMFS SWFSC ERD and NOAA NESDIS CoastWatch WCRN", "jplMURSST41anommday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplMURSST", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplMURSST.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplMURSST/request", "", "public", "Multi-scale Ultra-high Resolution (MUR) SST Analysis fv04.0, Global, 0.011\u00b0, 2002-2017, Daily, DEPRECATED", "(This is now DEPRECATED. See the newer version 4.1 of this dataset: jplMURSST41.) \nThis daily, global, Multi-scale, Ultra-high Resolution (MUR) Sea Surface Temperature (SST) 1-km data set, Version 4.0, is produced at JPL under the NASA MEaSUREs program. For details, see https://mur.jpl.nasa.gov/ . This dataset is part of the Multi-sensor Improved Sea Surface Temperatures (MISST) project, which is part of the Group for High-Resolution Sea Surface Temperature (GHRSST) project. Before 2015-05-05, this dataset had the latest files available from JPL (various versions at various times). Starting 2015-05-05, this dataset has entirely fv04 files.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (Analysed Sea Surface Temperature, degree_C)\nanalysis_error (Estimated Error Standard Deviation of analysed_sst, degree_C)\nmask (Sea/Land Field Composite Mask)\nsea_ice_fraction (Sea Ice Area Fraction, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplMURSST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplMURSST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplMURSST/index.json", "https://mur.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplMURSST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplMURSST&showErrors=false&email=", "NASA JPL", "jplMURSST"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplMURSST41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplMURSST41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplMURSST41/request", "", "public", "Multi-scale Ultra-high Resolution (MUR) SST Analysis fv04.1, Global, 0.01\u00b0, 2002-present, Daily", "This is a merged, multi-sensor L4 Foundation Sea Surface Temperature (SST) analysis product from Jet Propulsion Laboratory (JPL). This daily, global, Multi-scale, Ultra-high Resolution (MUR) Sea Surface Temperature (SST) 1-km data set, Version 4.1, is produced at JPL under the NASA MEaSUREs program. For details, see https://podaac.jpl.nasa.gov/dataset/MUR-JPL-L4-GLOB-v4.1 . This dataset is part of the Group for High-Resolution Sea Surface Temperature (GHRSST) project. The data for the most recent 4 days is usually revised everyday. The data for other days is sometimes revised.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (Analysed Sea Surface Temperature, degree_C)\nanalysis_error (Estimated Error Standard Deviation of analysed_sst, degree_C)\nmask (Sea/Land Field Composite Mask)\nsea_ice_fraction (Sea Ice Area Fraction, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplMURSST41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplMURSST41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplMURSST41/index.json", "https://podaac.jpl.nasa.gov/dataset/MUR-JPL-L4-GLOB-v4.1", "http://upwell.pfeg.noaa.gov/erddap/rss/jplMURSST41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplMURSST41&showErrors=false&email=", "NASA JPL", "jplMURSST41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplMURSST41mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplMURSST41mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplMURSST41mday/request", "", "public", "Multi-scale Ultra-high Resolution (MUR) SST Analysis fv04.1, Global, 0.01\u00b0, 2002-present, Monthly", "A monthly mean Sea Surface Temperature (SST) product created by NOAA NMFS SWFSC ERD based on the daily, global, Multi-scale, Ultra-high Resolution (MUR) Sea Surface Temperature (SST) 1-km data set, Version 4.1, which is produced at the NASA Jet Propulsion Laboratory (JPL) under the NASA MEaSUREs program. For details of the source dataset, see https://podaac.jpl.nasa.gov/dataset/MUR-JPL-L4-GLOB-v4.1 . The source dataset is part of the Group for High-Resolution Sea Surface Temperature (GHRSST) project.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean, degree_C)\nnobs (Number of Observations)\nmask (Sea/Land Field Composite Mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplMURSST41mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplMURSST41mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplMURSST41mday/index.json", "https://podaac.jpl.nasa.gov/Multi-scale_Ultra-high_Resolution_MUR-SST", "http://upwell.pfeg.noaa.gov/erddap/rss/jplMURSST41mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplMURSST41mday&showErrors=false&email=", "NOAA ERD and CoastWatch West Coast Regional Node", "jplMURSST41mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplMURSST41clim", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplMURSST41clim.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplMURSST41clim/request", "", "public", "Multi-scale Ultra-high Resolution (MUR) SST Daily Climatology 2003-2014, fv04.1, Global, 0.01\u00b0", "This JPL MUR SST daily climatology v4.1 (2003-2014) is from ftp://mariana.jpl.nasa.gov/mur_sst/tmchin/seasonal/ and is based on the Jet Propulsion Laboratory's (JPL) Multi-scale Ultra-high Resolution (MUR), merged, multi-sensor L4 v4.1 Foundation SST analysis product (part of the Group for High-Resolution Sea Surface Temperature (GHRSST) project).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [dayOfYear][latitude][longitude]):\nmean_sst (2003-2014 Climatological Mean Sea Surface Temperature, degree_C)\nstandard_deviation (standard deviation of mean_sst, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplMURSST41clim_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplMURSST41clim_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplMURSST41clim/index.json", "https://podaac.jpl.nasa.gov/dataset/MUR-JPL-L4-GLOB-v4.1", "http://upwell.pfeg.noaa.gov/erddap/rss/jplMURSST41clim.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplMURSST41clim&showErrors=false&email=", "NOAA NMFS SWFSC ERD and NOAA NESDIS CoastWatch WCRN", "jplMURSST41clim"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_17e2_f126_1b41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_17e2_f126_1b41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_17e2_f126_1b41/request", "", "public", "Myrtle Beach, South Carolina Coastal Digital Elevation Model (myrtle beach 1 mhw 2006), 2.7777778E-4\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_17e2_f126_1b41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_17e2_f126_1b41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_17e2_f126_1b41/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_17e2_f126_1b41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_17e2_f126_1b41&showErrors=false&email=", "NOAA", "noaa_ngdc_17e2_f126_1b41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7c3d_34db_673f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7c3d_34db_673f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7c3d_34db_673f/request", "", "public", "Myrtle Beach, South Carolina Coastal Digital Elevation Model (myrtle beach 13 mhw 2006), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7c3d_34db_673f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7c3d_34db_673f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7c3d_34db_673f/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7c3d_34db_673f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7c3d_34db_673f&showErrors=false&email=", "NOAA", "noaa_ngdc_7c3d_34db_673f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2d84_5ca1_c33d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2d84_5ca1_c33d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2d84_5ca1_c33d/request", "", "public", "Myrtle Beach, South Carolina Tsunami Forecast Grids for MOST Model (MyrtleBeachSC A), 0.02\u00b0", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2d84_5ca1_c33d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2d84_5ca1_c33d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2d84_5ca1_c33d/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2d84_5ca1_c33d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2d84_5ca1_c33d&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_2d84_5ca1_c33d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_695d_f3c5_b530", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_695d_f3c5_b530.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_695d_f3c5_b530/request", "", "public", "Myrtle Beach, South Carolina Tsunami Forecast Grids for MOST Model (MyrtleBeachSC B), 0.0025\u00b0", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_695d_f3c5_b530_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_695d_f3c5_b530_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_695d_f3c5_b530/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_695d_f3c5_b530.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_695d_f3c5_b530&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_695d_f3c5_b530"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cb42_16cb_b90d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cb42_16cb_b90d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_cb42_16cb_b90d/request", "", "public", "Myrtle Beach, South Carolina Tsunami Forecast Grids for MOST Model (MyrtleBeachSC C), 8.3333335E-4\u00b0", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_cb42_16cb_b90d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_cb42_16cb_b90d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_cb42_16cb_b90d/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_cb42_16cb_b90d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_cb42_16cb_b90d&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_cb42_16cb_b90d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_553a_68e0_497d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_553a_68e0_497d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_553a_68e0_497d/request", "", "public", "Nantucket, Massachusetts Coastal Digital Elevation Model (nantucket 13 mhw 2008), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_553a_68e0_497d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_553a_68e0_497d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_553a_68e0_497d/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_553a_68e0_497d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_553a_68e0_497d&showErrors=false&email=", "NOAA", "noaa_ngdc_553a_68e0_497d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5386_5610_ad54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5386_5610_ad54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5386_5610_ad54/request", "", "public", "Nantucket, Massachusetts Tsunami Forecast Grids for MOST Model (NantucketMA A)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5386_5610_ad54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5386_5610_ad54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5386_5610_ad54/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5386_5610_ad54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5386_5610_ad54&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_5386_5610_ad54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_96ed_b118_e5e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_96ed_b118_e5e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_96ed_b118_e5e1/request", "", "public", "Nantucket, Massachusetts Tsunami Forecast Grids for MOST Model (NantucketMA B)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_96ed_b118_e5e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_96ed_b118_e5e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_96ed_b118_e5e1/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_96ed_b118_e5e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_96ed_b118_e5e1&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_96ed_b118_e5e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_abea_d38a_7819", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_abea_d38a_7819.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_abea_d38a_7819/request", "", "public", "Nantucket, Massachusetts Tsunami Forecast Grids for MOST Model (NantucketMA C)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_abea_d38a_7819_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_abea_d38a_7819_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_abea_d38a_7819/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_abea_d38a_7819.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_abea_d38a_7819&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_abea_d38a_7819"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_a8f3_c2d4_2227", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_a8f3_c2d4_2227.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/northerngulfinstitute_a8f3_c2d4_2227/request", "", "public", "NAVO NCOM Model (EDAC): Fukushima Regional Forecast [time][depth][latitude][longitude]", "Preliminary U.S. Naval Research Laboratory (NRL) Navy Coastal Ocean Model (NCOM) Relocatable 1km forecast model for Fukushima Region.\n\nUSERS ARE REMINDED TO USE THIS 1KM NCOM DATA WITH CAUTION. THE MODEL WAS\nINITIATED ON 18 MARCH SO IT HAS NOT TOTALLY SPUN UP, NOR HAS IT BEEN FULLY\nEVALUATED FOR STRENGTHS AND WEAKNESSES. THESE FORECASTS ARE BEING PROVIDED\nAS PRELIMINARY GUIDANCE TO SUPPORT EMERGENCY REQUESTS FOR HIGH-RESOLUTION\nOCEAN INFORMATION. NAVOCEANO EXPECTS TO CONTINUE TO MAKE CHANGES AND \nIMPROVEMENTS OVER THE NEXT FEW WEEKS.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_u (Eastward Water Velocity, m s-1)\nwater_v (Northward Water Velocity, m s-1)\nwater_temp (Water Temperature, degC)\nsalinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/northerngulfinstitute_a8f3_c2d4_2227_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/northerngulfinstitute_a8f3_c2d4_2227_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/northerngulfinstitute_a8f3_c2d4_2227/index.json", "http://www7320.nrlssc.navy.mil/global_ncom/", "http://upwell.pfeg.noaa.gov/erddap/rss/northerngulfinstitute_a8f3_c2d4_2227.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=northerngulfinstitute_a8f3_c2d4_2227&showErrors=false&email=", "Naval Research Laboratory", "northerngulfinstitute_a8f3_c2d4_2227"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_1412_d11d_1e9b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_1412_d11d_1e9b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/northerngulfinstitute_1412_d11d_1e9b/request", "", "public", "NAVO NCOM Model (EDAC): Fukushima Regional Forecast [time][latitude][longitude]", "Preliminary U.S. Naval Research Laboratory (NRL) Navy Coastal Ocean Model (NCOM) Relocatable 1km forecast model for Fukushima Region.\n\nUSERS ARE REMINDED TO USE THIS 1KM NCOM DATA WITH CAUTION. THE MODEL WAS\nINITIATED ON 18 MARCH SO IT HAS NOT TOTALLY SPUN UP, NOR HAS IT BEEN FULLY\nEVALUATED FOR STRENGTHS AND WEAKNESSES. THESE FORECASTS ARE BEING PROVIDED\nAS PRELIMINARY GUIDANCE TO SUPPORT EMERGENCY REQUESTS FOR HIGH-RESOLUTION\nOCEAN INFORMATION. NAVOCEANO EXPECTS TO CONTINUE TO MAKE CHANGES AND \nIMPROVEMENTS OVER THE NEXT FEW WEEKS.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_temp_flux (model surface temperature flux, degC m s-1)\nsurf_salt_flux (model surface salinity flux, PSU m s-1)\nsurf_solar_flux (model surface shortwave flux, degC m s-1)\nsurf_roughness (model surface roughness, m)\nsurf_wnd_stress_gridx (Grid x Surface Wind Stress, newton meter-2)\nsurf_wnd_stress_gridy (Grid y Surface Wind Stress, newton meter-2)\nsurf_atm_press (Surface Atmospherics Pressure, Pascal)\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/northerngulfinstitute_1412_d11d_1e9b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/northerngulfinstitute_1412_d11d_1e9b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/northerngulfinstitute_1412_d11d_1e9b/index.json", "http://www7320.nrlssc.navy.mil/global_ncom/", "http://upwell.pfeg.noaa.gov/erddap/rss/northerngulfinstitute_1412_d11d_1e9b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=northerngulfinstitute_1412_d11d_1e9b&showErrors=false&email=", "Naval Research Laboratory", "northerngulfinstitute_1412_d11d_1e9b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_7a97_cb6f_a9db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_7a97_cb6f_a9db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/whoi_7a97_cb6f_a9db/request", "", "public", "NAVO NCOM Model (WHOI): Fukushima Regional Forecast [time][depth][latitude][longitude]", "Preliminary U.S. Naval Research Laboratory (NRL) Navy Coastal Ocean Model (NCOM) Relocatable 1km forecast model for Fukushima Region.\n\nUSERS ARE REMINDED TO USE THIS 1KM NCOM DATA WITH CAUTION. THE MODEL WAS\nINITIATED ON 18 MARCH SO IT HAS NOT TOTALLY SPUN UP, NOR HAS IT BEEN FULLY\nEVALUATED FOR STRENGTHS AND WEAKNESSES. THESE FORECASTS ARE BEING PROVIDED\nAS PRELIMINARY GUIDANCE TO SUPPORT EMERGENCY REQUESTS FOR HIGH-RESOLUTION\nOCEAN INFORMATION. NAVOCEANO EXPECTS TO CONTINUE TO MAKE CHANGES AND \nIMPROVEMENTS OVER THE NEXT FEW WEEKS.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalinity (Sea Water Practical Salinity, PSU)\nwater_temp (Water Temperature, degC)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whoi_7a97_cb6f_a9db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whoi_7a97_cb6f_a9db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_7a97_cb6f_a9db/index.json", "http://www7320.nrlssc.navy.mil/global_ncom/", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_7a97_cb6f_a9db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_7a97_cb6f_a9db&showErrors=false&email=", "Naval Research Laboratory", "whoi_7a97_cb6f_a9db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_4a75_e5e1_6640", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_4a75_e5e1_6640.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/whoi_4a75_e5e1_6640/request", "", "public", "NAVO NCOM Model (WHOI): Fukushima Regional Forecast [time][latitude][longitude]", "Preliminary U.S. Naval Research Laboratory (NRL) Navy Coastal Ocean Model (NCOM) Relocatable 1km forecast model for Fukushima Region.\n\nUSERS ARE REMINDED TO USE THIS 1KM NCOM DATA WITH CAUTION. THE MODEL WAS\nINITIATED ON 18 MARCH SO IT HAS NOT TOTALLY SPUN UP, NOR HAS IT BEEN FULLY\nEVALUATED FOR STRENGTHS AND WEAKNESSES. THESE FORECASTS ARE BEING PROVIDED\nAS PRELIMINARY GUIDANCE TO SUPPORT EMERGENCY REQUESTS FOR HIGH-RESOLUTION\nOCEAN INFORMATION. NAVOCEANO EXPECTS TO CONTINUE TO MAKE CHANGES AND \nIMPROVEMENTS OVER THE NEXT FEW WEEKS.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_atm_press (Surface Atmospherics Pressure, Pascal)\nsurf_el (Water Surface Elevation, meter)\nsurf_roughness (model surface roughness, m)\nsurf_salt_flux (model surface salinity flux, psu-m/s)\nsurf_solar_flux (model surface shortwave flux, degC-m/s)\nsurf_temp_flux (model surface temperature flux, degC-m/s)\nsurf_wnd_stress_gridx (Grid x Surface Wind Stress, newton/meter2)\nsurf_wnd_stress_gridy (Grid y Surface Wind Stress, newton/meter2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whoi_4a75_e5e1_6640_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whoi_4a75_e5e1_6640_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_4a75_e5e1_6640/index.json", "http://www7320.nrlssc.navy.mil/global_ncom/", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_4a75_e5e1_6640.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_4a75_e5e1_6640&showErrors=false&email=", "Naval Research Laboratory", "whoi_4a75_e5e1_6640"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_0bc3_0230_8add", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_0bc3_0230_8add.graph", "", "", "public", "NAVO NCOM: Fukushima Regional Forecast (Fukushima best) [time], 2011", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: Fukushima Regional Forecast. Best time series, taking the data from the most recent run available. Fukushima Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/northerngulfinstitute_edac_dap3_0bc3_0230_8add/index.json", "http://edac-dap3.northerngulfinstitute.org/thredds/dodsC/ncom_fukushima_agg/Fukushima_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/northerngulfinstitute_edac_dap3_0bc3_0230_8add.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=northerngulfinstitute_edac_dap3_0bc3_0230_8add&showErrors=false&email=", "Naval Research Laboratory", "northerngulfinstitute_edac_dap3_0bc3_0230_8add"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_0a94_4f88_8950", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_0a94_4f88_8950.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/northerngulfinstitute_edac_dap3_0a94_4f88_8950/request", "", "public", "NAVO NCOM: Fukushima Regional Forecast (Fukushima best) [time][depth][lat][lon], 2011", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: Fukushima Regional Forecast. Best time series, taking the data from the most recent run available. Fukushima Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/northerngulfinstitute_edac_dap3_0a94_4f88_8950_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/northerngulfinstitute_edac_dap3_0a94_4f88_8950_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/northerngulfinstitute_edac_dap3_0a94_4f88_8950/index.json", "http://edac-dap3.northerngulfinstitute.org/thredds/dodsC/ncom_fukushima_agg/Fukushima_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/northerngulfinstitute_edac_dap3_0a94_4f88_8950.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=northerngulfinstitute_edac_dap3_0a94_4f88_8950&showErrors=false&email=", "Naval Research Laboratory", "northerngulfinstitute_edac_dap3_0a94_4f88_8950"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_2689_8c24_7dcb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_2689_8c24_7dcb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/northerngulfinstitute_edac_dap3_2689_8c24_7dcb/request", "", "public", "NAVO NCOM: Fukushima Regional Forecast (Fukushima best) [time][lat][lon], 2011", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: Fukushima Regional Forecast. Best time series, taking the data from the most recent run available. Fukushima Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_temp_flux (model surface temperature flux, degC-m/s)\nsurf_salt_flux (model surface salinity flux, psu-m/s)\nsurf_solar_flux (model surface shortwave flux, degC-m/s)\nsurf_roughness (model surface roughness, m)\nsurf_wnd_stress_gridx (Grid x Surface Wind Stress, newton/meter2)\nsurf_wnd_stress_gridy (Grid y Surface Wind Stress, newton/meter2)\nsurf_atm_press (Surface Atmospherics Pressure, Pascal)\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/northerngulfinstitute_edac_dap3_2689_8c24_7dcb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/northerngulfinstitute_edac_dap3_2689_8c24_7dcb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/northerngulfinstitute_edac_dap3_2689_8c24_7dcb/index.json", "http://edac-dap3.northerngulfinstitute.org/thredds/dodsC/ncom_fukushima_agg/Fukushima_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/northerngulfinstitute_edac_dap3_2689_8c24_7dcb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=northerngulfinstitute_edac_dap3_2689_8c24_7dcb&showErrors=false&email=", "Naval Research Laboratory", "northerngulfinstitute_edac_dap3_2689_8c24_7dcb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_0af0_65c0_a7a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_0af0_65c0_a7a7.graph", "", "", "public", "NAVO NCOM: Sendai Regional Forecast (Sendai, Sendai, Best Time Series) [time], 2011", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: Sendai Regional Forecast. Best time series, taking the data from the most recent run available. Sendai Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/northerngulfinstitute_edac_dap3_0af0_65c0_a7a7/index.json", "http://edac-dap3.northerngulfinstitute.org/thredds/dodsC/ncom_sendai_agg/Sendai_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/northerngulfinstitute_edac_dap3_0af0_65c0_a7a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=northerngulfinstitute_edac_dap3_0af0_65c0_a7a7&showErrors=false&email=", "Naval Research Laboratory", "northerngulfinstitute_edac_dap3_0af0_65c0_a7a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3/request", "", "public", "NAVO NCOM: Sendai Regional Forecast (Sendai, Sendai, Best Time Series) [time][depth][lat][lon], 2011", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: Sendai Regional Forecast. Best time series, taking the data from the most recent run available. Sendai Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalinity (PSU)\nwater_temp (Water Temperature, degree_C)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3/index.json", "http://edac-dap3.northerngulfinstitute.org/thredds/dodsC/ncom_sendai_agg/Sendai_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=northerngulfinstitute_edac_dap3_5b80_cc18_d8b3&showErrors=false&email=", "Naval Research Laboratory", "northerngulfinstitute_edac_dap3_5b80_cc18_d8b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_8458_8884_5b0c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_8458_8884_5b0c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/northerngulfinstitute_edac_dap3_8458_8884_5b0c/request", "", "public", "NAVO NCOM: Sendai Regional Forecast (Sendai, Sendai, Best Time Series) [time][lat][lon], 2011", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: Sendai Regional Forecast. Best time series, taking the data from the most recent run available. Sendai Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/northerngulfinstitute_edac_dap3_8458_8884_5b0c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/northerngulfinstitute_edac_dap3_8458_8884_5b0c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/northerngulfinstitute_edac_dap3_8458_8884_5b0c/index.json", "http://edac-dap3.northerngulfinstitute.org/thredds/dodsC/ncom_sendai_agg/Sendai_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/northerngulfinstitute_edac_dap3_8458_8884_5b0c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=northerngulfinstitute_edac_dap3_8458_8884_5b0c&showErrors=false&email=", "Naval Research Laboratory", "northerngulfinstitute_edac_dap3_8458_8884_5b0c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e8d3_f614_6c50", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e8d3_f614_6c50.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_e8d3_f614_6c50/request", "", "public", "NAVOCEANO 10km Analyzed SST (GHRSST NAVO-L4HR1m-GLOB-K10 SST)", "Naval Oceanographic Office (NAVOCEANO) 10km Analyzed Sea Surface Temperature. Distribution Statement: Approved for public release. Distribution unlimited. (Global High-Resolution Sea Surface Temperature (GHRSST) Naval Oceanography (NAVO)-L4HR1m-GLOB-K10 SST)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (Analyzed Sea Surface Temperature, degree_C)\nanalysis_error (degree_C)\nmask (Land Sea Mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_e8d3_f614_6c50_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_e8d3_f614_6c50_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_e8d3_f614_6c50/index.json", "https://podaac.jpl.nasa.gov/dataset/NAVO-L4HR1m-GLOB-K10_SST", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_e8d3_f614_6c50.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_e8d3_f614_6c50&showErrors=false&email=", "Naval Oceanographic Office", "nasa_jpl_e8d3_f614_6c50"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem05D10mWind", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem05D10mWind.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNavgem05D10mWind/request", "", "public", "Navy Global Environmental Model (NAVGEM), 0.5 degree, 2013-present, 10 m Wind", "Navy Global Environmental Model (NAVGEM) is a global numerical weather prediction computer model. It replaced NOGAPS as the prime model in the middle of February 2013 at the Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) Weather model synoptic site. [Wikipedia]\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][height_above_ground][latitude][longitude]):\nwnd_ucmp_height_above_ground (Eastward Wind, m/s)\nwnd_vcmp_height_above_ground (Northward Wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNavgem05D10mWind_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNavgem05D10mWind_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNavgem05D10mWind/index.json", "https://en.wikipedia.org/wiki/NAVGEM", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNavgem05D10mWind.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNavgem05D10mWind&showErrors=false&email=", "FNMOC", "erdNavgem05D10mWind"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem05D10mWind_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem05D10mWind_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNavgem05D10mWind_LonPM180/request", "", "public", "Navy Global Environmental Model (NAVGEM), 0.5 degree, 2013-present, 10 m Wind, Lon+/-180", "Navy Global Environmental Model (NAVGEM) is a global numerical weather prediction computer model. It replaced NOGAPS as the prime model in the middle of February 2013 at the Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) Weather model synoptic site. [Wikipedia]\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][height_above_ground][latitude][longitude]):\nwnd_ucmp_height_above_ground (Eastward Wind, m/s)\nwnd_vcmp_height_above_ground (Northward Wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNavgem05D10mWind_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNavgem05D10mWind_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNavgem05D10mWind_LonPM180/index.json", "https://en.wikipedia.org/wiki/NAVGEM", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNavgem05D10mWind_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNavgem05D10mWind_LonPM180&showErrors=false&email=", "FNMOC", "erdNavgem05D10mWind_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem05D20mWind", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem05D20mWind.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNavgem05D20mWind/request", "", "public", "Navy Global Environmental Model (NAVGEM), 0.5 degree, 2013-present, 20 m Wind", "Navy Global Environmental Model (NAVGEM) is a global numerical weather prediction computer model. It replaced NOGAPS as the prime model in the middle of February 2013 at the Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) Weather model synoptic site. [Wikipedia]\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][height_above_ground][latitude][longitude]):\nwnd_ucmp_height_above_ground (Eastward Wind, m/s)\nwnd_vcmp_height_above_ground (Northward Wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNavgem05D20mWind_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNavgem05D20mWind_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNavgem05D20mWind/index.json", "https://en.wikipedia.org/wiki/NAVGEM", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNavgem05D20mWind.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNavgem05D20mWind&showErrors=false&email=", "FNMOC", "erdNavgem05D20mWind"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem05D20mWind_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem05D20mWind_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNavgem05D20mWind_LonPM180/request", "", "public", "Navy Global Environmental Model (NAVGEM), 0.5 degree, 2013-present, 20 m Wind, Lon+/-180", "Navy Global Environmental Model (NAVGEM) is a global numerical weather prediction computer model. It replaced NOGAPS as the prime model in the middle of February 2013 at the Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) Weather model synoptic site. [Wikipedia]\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][height_above_ground][latitude][longitude]):\nwnd_ucmp_height_above_ground (Eastward Wind, m/s)\nwnd_vcmp_height_above_ground (Northward Wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNavgem05D20mWind_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNavgem05D20mWind_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNavgem05D20mWind_LonPM180/index.json", "https://en.wikipedia.org/wiki/NAVGEM", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNavgem05D20mWind_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNavgem05D20mWind_LonPM180&showErrors=false&email=", "FNMOC", "erdNavgem05D20mWind_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem05D500mb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem05D500mb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNavgem05D500mb/request", "", "public", "Navy Global Environmental Model (NAVGEM), 0.5 degree, 2013-present, 500 hPa Height", "Navy Global Environmental Model (NAVGEM) is a global numerical weather prediction computer model. It replaced NOGAPS as the prime model in the middle of February 2013 at the Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) Weather model synoptic site. [Wikipedia]\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][isobaric][latitude][longitude]):\ngeop_ht_isobaric (Geopotential Height (500 hPa), gpm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNavgem05D500mb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNavgem05D500mb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNavgem05D500mb/index.json", "https://en.wikipedia.org/wiki/NAVGEM", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNavgem05D500mb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNavgem05D500mb&showErrors=false&email=", "FNMOC", "erdNavgem05D500mb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem05D500mb_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem05D500mb_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNavgem05D500mb_LonPM180/request", "", "public", "Navy Global Environmental Model (NAVGEM), 0.5 degree, 2013-present, 500 hPa Height, Lon+/-180", "Navy Global Environmental Model (NAVGEM) is a global numerical weather prediction computer model. It replaced NOGAPS as the prime model in the middle of February 2013 at the Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) Weather model synoptic site. [Wikipedia]\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][isobaric][latitude][longitude]):\ngeop_ht_isobaric (Geopotential Height (500 hPa), gpm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNavgem05D500mb_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNavgem05D500mb_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNavgem05D500mb_LonPM180/index.json", "https://en.wikipedia.org/wiki/NAVGEM", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNavgem05D500mb_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNavgem05D500mb_LonPM180&showErrors=false&email=", "FNMOC", "erdNavgem05D500mb_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem05DPres", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem05DPres.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNavgem05DPres/request", "", "public", "Navy Global Environmental Model (NAVGEM), 0.5 degree, 2013-present, Pressure MSL", "Navy Global Environmental Model (NAVGEM) is a global numerical weather prediction computer model. It replaced NOGAPS as the prime model in the middle of February 2013 at the Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) Weather model synoptic site. [Wikipedia]\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres_reduced_msl (Pressure (adjusted to Mean Sea Level), hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNavgem05DPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNavgem05DPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNavgem05DPres/index.json", "https://en.wikipedia.org/wiki/NAVGEM", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNavgem05DPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNavgem05DPres&showErrors=false&email=", "FNMOC", "erdNavgem05DPres"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem05DPres_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem05DPres_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNavgem05DPres_LonPM180/request", "", "public", "Navy Global Environmental Model (NAVGEM), 0.5 degree, 2013-present, Pressure MSL, Lon+/-180", "Navy Global Environmental Model (NAVGEM) is a global numerical weather prediction computer model. It replaced NOGAPS as the prime model in the middle of February 2013 at the Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) Weather model synoptic site. [Wikipedia]\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres_reduced_msl (Pressure (adjusted to Mean Sea Level), hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNavgem05DPres_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNavgem05DPres_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNavgem05DPres_LonPM180/index.json", "https://en.wikipedia.org/wiki/NAVGEM", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNavgem05DPres_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNavgem05DPres_LonPM180&showErrors=false&email=", "FNMOC", "erdNavgem05DPres_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem1D10mWind", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem1D10mWind.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNavgem1D10mWind/request", "", "public", "Navy Global Environmental Model (NAVGEM), 1 degree, 2013-present, 10 m Wind", "Navy Global Environmental Model (NAVGEM) is a global numerical weather prediction computer model. It replaced NOGAPS as the prime model in the middle of February 2013 at the Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) Weather model synoptic site. [Wikipedia]\n\nBUG: Because of a bug in THREDDS aggregations, the last time point of this dataset is an invalid time ~4 days in the future and has all missing values. All of the rest of this dataset (with data as recent as now-2days) is correct.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][height_above_ground][latitude][longitude]):\nwnd_ucmp_height_above_ground (Eastward Wind, m/s)\nwnd_vcmp_height_above_ground (Northward Wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNavgem1D10mWind_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNavgem1D10mWind_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNavgem1D10mWind/index.json", "https://en.wikipedia.org/wiki/NAVGEM", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNavgem1D10mWind.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNavgem1D10mWind&showErrors=false&email=", "FNMOC", "erdNavgem1D10mWind"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem1D10mWind_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem1D10mWind_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNavgem1D10mWind_LonPM180/request", "", "public", "Navy Global Environmental Model (NAVGEM), 1 degree, 2013-present, 10 m Wind, Lon+/-180", "Navy Global Environmental Model (NAVGEM) is a global numerical weather prediction computer model. It replaced NOGAPS as the prime model in the middle of February 2013 at the Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) Weather model synoptic site. [Wikipedia]\n\nBUG: Because of a bug in THREDDS aggregations, the last time point of this dataset is an invalid time ~4 days in the future and has all missing values. All of the rest of this dataset (with data as recent as now-2days) is correct.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][height_above_ground][latitude][longitude]):\nwnd_ucmp_height_above_ground (Eastward Wind, m/s)\nwnd_vcmp_height_above_ground (Northward Wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNavgem1D10mWind_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNavgem1D10mWind_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNavgem1D10mWind_LonPM180/index.json", "https://en.wikipedia.org/wiki/NAVGEM", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNavgem1D10mWind_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNavgem1D10mWind_LonPM180&showErrors=false&email=", "FNMOC", "erdNavgem1D10mWind_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem1D20mWind", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem1D20mWind.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNavgem1D20mWind/request", "", "public", "Navy Global Environmental Model (NAVGEM), 1 degree, 2013-present, 20 m Wind", "Navy Global Environmental Model (NAVGEM) is a global numerical weather prediction computer model. It replaced NOGAPS as the prime model in the middle of February 2013 at the Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) Weather model synoptic site. [Wikipedia]\n\nBUG: Because of a bug in THREDDS aggregations, the last ~16 time points of this dataset have all missing values. All of the rest of this dataset (with data as recent as now-2days) is correct.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][height_above_ground][latitude][longitude]):\nwnd_ucmp_height_above_ground (Eastward Wind, m/s)\nwnd_vcmp_height_above_ground (Northward Wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNavgem1D20mWind_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNavgem1D20mWind_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNavgem1D20mWind/index.json", "https://en.wikipedia.org/wiki/NAVGEM", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNavgem1D20mWind.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNavgem1D20mWind&showErrors=false&email=", "FNMOC", "erdNavgem1D20mWind"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem1D20mWind_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem1D20mWind_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNavgem1D20mWind_LonPM180/request", "", "public", "Navy Global Environmental Model (NAVGEM), 1 degree, 2013-present, 20 m Wind, Lon+/-180", "Navy Global Environmental Model (NAVGEM) is a global numerical weather prediction computer model. It replaced NOGAPS as the prime model in the middle of February 2013 at the Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) Weather model synoptic site. [Wikipedia]\n\nBUG: Because of a bug in THREDDS aggregations, the last ~16 time points of this dataset have all missing values. All of the rest of this dataset (with data as recent as now-2days) is correct.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][height_above_ground][latitude][longitude]):\nwnd_ucmp_height_above_ground (Eastward Wind, m/s)\nwnd_vcmp_height_above_ground (Northward Wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNavgem1D20mWind_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNavgem1D20mWind_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNavgem1D20mWind_LonPM180/index.json", "https://en.wikipedia.org/wiki/NAVGEM", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNavgem1D20mWind_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNavgem1D20mWind_LonPM180&showErrors=false&email=", "FNMOC", "erdNavgem1D20mWind_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem1D500mb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem1D500mb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNavgem1D500mb/request", "", "public", "Navy Global Environmental Model (NAVGEM), 1 degree, 2013-present, 500 hPa Height", "Navy Global Environmental Model (NAVGEM) is a global numerical weather prediction computer model. It replaced NOGAPS as the prime model in the middle of February 2013 at the Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) Weather model synoptic site. [Wikipedia]\n\nBUG: Because of a bug in THREDDS aggregations, the last time point of this dataset is an invalid time ~4 days in the future and has all missing values. All of the rest of this dataset (with data as recent as now-2days) is correct.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][isobaric][latitude][longitude]):\ngeop_ht_isobaric (Geopotential Height (500 hPa), gpm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNavgem1D500mb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNavgem1D500mb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNavgem1D500mb/index.json", "https://en.wikipedia.org/wiki/NAVGEM", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNavgem1D500mb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNavgem1D500mb&showErrors=false&email=", "FNMOC", "erdNavgem1D500mb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem1D500mb_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem1D500mb_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNavgem1D500mb_LonPM180/request", "", "public", "Navy Global Environmental Model (NAVGEM), 1 degree, 2013-present, 500 hPa Height, Lon+/-180", "Navy Global Environmental Model (NAVGEM) is a global numerical weather prediction computer model. It replaced NOGAPS as the prime model in the middle of February 2013 at the Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) Weather model synoptic site. [Wikipedia]\n\nBUG: Because of a bug in THREDDS aggregations, the last time point of this dataset is an invalid time ~4 days in the future and has all missing values. All of the rest of this dataset (with data as recent as now-2days) is correct.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][isobaric][latitude][longitude]):\ngeop_ht_isobaric (Geopotential Height (500 hPa), gpm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNavgem1D500mb_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNavgem1D500mb_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNavgem1D500mb_LonPM180/index.json", "https://en.wikipedia.org/wiki/NAVGEM", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNavgem1D500mb_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNavgem1D500mb_LonPM180&showErrors=false&email=", "FNMOC", "erdNavgem1D500mb_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem1DPres", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem1DPres.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNavgem1DPres/request", "", "public", "Navy Global Environmental Model (NAVGEM), 1 degree, 2013-present, Pressure MSL", "Navy Global Environmental Model (NAVGEM) is a global numerical weather prediction computer model. It replaced NOGAPS as the prime model in the middle of February 2013 at the Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) Weather model synoptic site. [Wikipedia]\n\nBUG: Because of a bug in THREDDS aggregations, the last time point of this dataset is an invalid time ~4 days in the future and has all missing values. All of the rest of this dataset (with data as recent as now-2days) is correct.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres_reduced_msl (Pressure (adjusted to Mean Sea Level), hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNavgem1DPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNavgem1DPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNavgem1DPres/index.json", "https://en.wikipedia.org/wiki/NAVGEM", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNavgem1DPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNavgem1DPres&showErrors=false&email=", "FNMOC", "erdNavgem1DPres"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem1DPres_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem1DPres_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNavgem1DPres_LonPM180/request", "", "public", "Navy Global Environmental Model (NAVGEM), 1 degree, 2013-present, Pressure MSL, Lon+/-180", "Navy Global Environmental Model (NAVGEM) is a global numerical weather prediction computer model. It replaced NOGAPS as the prime model in the middle of February 2013 at the Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) Weather model synoptic site. [Wikipedia]\n\nBUG: Because of a bug in THREDDS aggregations, the last time point of this dataset is an invalid time ~4 days in the future and has all missing values. All of the rest of this dataset (with data as recent as now-2days) is correct.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres_reduced_msl (Pressure (adjusted to Mean Sea Level), hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNavgem1DPres_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNavgem1DPres_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNavgem1DPres_LonPM180/index.json", "https://en.wikipedia.org/wiki/NAVGEM", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNavgem1DPres_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNavgem1DPres_LonPM180&showErrors=false&email=", "FNMOC", "erdNavgem1DPres_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNogaps1D10mWind", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNogaps1D10mWind.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNogaps1D10mWind/request", "", "public", "Navy Operational Global Atmospheric Prediction System (NOGAPS), 1 degree, 2012-2013, 10 m Wind", "The Navy Operational Global Atmospheric Prediction System (NOGAPS) is a global numerical weather prediction computer model run by the United States Navy's Fleet Numerical Meteorology and Oceanography Center (FNMOC). It is run four times a day to produce weather forecasts. NOGAPS was replaced by the NAVGEM in February 2013.[Wikipedia]\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][height_above_ground][latitude][longitude]):\nwnd_ucmp_height_above_ground (Eastward Wind, m/s)\nwnd_vcmp_height_above_ground (Northward Wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNogaps1D10mWind_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNogaps1D10mWind_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNogaps1D10mWind/index.json", "https://en.wikipedia.org/wiki/Navy_Operational_Global_Atmospheric_Prediction_System", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNogaps1D10mWind.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNogaps1D10mWind&showErrors=false&email=", "FNMOC", "erdNogaps1D10mWind"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNogaps1D10mWind_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNogaps1D10mWind_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNogaps1D10mWind_LonPM180/request", "", "public", "Navy Operational Global Atmospheric Prediction System (NOGAPS), 1 degree, 2012-2013, 10 m Wind, Lon+/-180", "The Navy Operational Global Atmospheric Prediction System (NOGAPS) is a global numerical weather prediction computer model run by the United States Navy's Fleet Numerical Meteorology and Oceanography Center (FNMOC). It is run four times a day to produce weather forecasts. NOGAPS was replaced by the NAVGEM in February 2013.[Wikipedia]\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][height_above_ground][latitude][longitude]):\nwnd_ucmp_height_above_ground (Eastward Wind, m/s)\nwnd_vcmp_height_above_ground (Northward Wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNogaps1D10mWind_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNogaps1D10mWind_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNogaps1D10mWind_LonPM180/index.json", "https://en.wikipedia.org/wiki/Navy_Operational_Global_Atmospheric_Prediction_System", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNogaps1D10mWind_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNogaps1D10mWind_LonPM180&showErrors=false&email=", "FNMOC", "erdNogaps1D10mWind_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNogaps1D20mWind", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNogaps1D20mWind.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNogaps1D20mWind/request", "", "public", "Navy Operational Global Atmospheric Prediction System (NOGAPS), 1 degree, 2012-2013, 20 m Wind", "The Navy Operational Global Atmospheric Prediction System (NOGAPS) is a global numerical weather prediction computer model run by the United States Navy's Fleet Numerical Meteorology and Oceanography Center (FNMOC). It is run four times a day to produce weather forecasts. NOGAPS was replaced by the NAVGEM in February 2013.[Wikipedia]\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][height_above_ground][latitude][longitude]):\nwnd_ucmp_height_above_ground (Eastward Wind, m/s)\nwnd_vcmp_height_above_ground (Northward Wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNogaps1D20mWind_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNogaps1D20mWind_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNogaps1D20mWind/index.json", "https://en.wikipedia.org/wiki/Navy_Operational_Global_Atmospheric_Prediction_System", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNogaps1D20mWind.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNogaps1D20mWind&showErrors=false&email=", "FNMOC", "erdNogaps1D20mWind"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNogaps1D20mWind_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNogaps1D20mWind_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNogaps1D20mWind_LonPM180/request", "", "public", "Navy Operational Global Atmospheric Prediction System (NOGAPS), 1 degree, 2012-2013, 20 m Wind, Lon+/-180", "The Navy Operational Global Atmospheric Prediction System (NOGAPS) is a global numerical weather prediction computer model run by the United States Navy's Fleet Numerical Meteorology and Oceanography Center (FNMOC). It is run four times a day to produce weather forecasts. NOGAPS was replaced by the NAVGEM in February 2013.[Wikipedia]\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][height_above_ground][latitude][longitude]):\nwnd_ucmp_height_above_ground (Eastward Wind, m/s)\nwnd_vcmp_height_above_ground (Northward Wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNogaps1D20mWind_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNogaps1D20mWind_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNogaps1D20mWind_LonPM180/index.json", "https://en.wikipedia.org/wiki/Navy_Operational_Global_Atmospheric_Prediction_System", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNogaps1D20mWind_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNogaps1D20mWind_LonPM180&showErrors=false&email=", "FNMOC", "erdNogaps1D20mWind_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNogaps1D500mb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNogaps1D500mb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNogaps1D500mb/request", "", "public", "Navy Operational Global Atmospheric Prediction System (NOGAPS), 1 degree, 2012-2013, 500 hPa Height", "The Navy Operational Global Atmospheric Prediction System (NOGAPS) is a global numerical weather prediction computer model run by the United States Navy's Fleet Numerical Meteorology and Oceanography Center (FNMOC). It is run four times a day to produce weather forecasts. NOGAPS was replaced by the NAVGEM in February 2013.[Wikipedia]\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][isobaric][latitude][longitude]):\ngeop_ht_isobaric (Geopotential Height (500 hPa), gpm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNogaps1D500mb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNogaps1D500mb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNogaps1D500mb/index.json", "https://en.wikipedia.org/wiki/Navy_Operational_Global_Atmospheric_Prediction_System", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNogaps1D500mb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNogaps1D500mb&showErrors=false&email=", "FNMOC", "erdNogaps1D500mb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNogaps1D500mb_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNogaps1D500mb_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNogaps1D500mb_LonPM180/request", "", "public", "Navy Operational Global Atmospheric Prediction System (NOGAPS), 1 degree, 2012-2013, 500 hPa Height, Lon+/-180", "The Navy Operational Global Atmospheric Prediction System (NOGAPS) is a global numerical weather prediction computer model run by the United States Navy's Fleet Numerical Meteorology and Oceanography Center (FNMOC). It is run four times a day to produce weather forecasts. NOGAPS was replaced by the NAVGEM in February 2013.[Wikipedia]\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][isobaric][latitude][longitude]):\ngeop_ht_isobaric (Geopotential Height (500 hPa), gpm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNogaps1D500mb_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNogaps1D500mb_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNogaps1D500mb_LonPM180/index.json", "https://en.wikipedia.org/wiki/Navy_Operational_Global_Atmospheric_Prediction_System", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNogaps1D500mb_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNogaps1D500mb_LonPM180&showErrors=false&email=", "FNMOC", "erdNogaps1D500mb_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNogaps1DPres", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNogaps1DPres.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNogaps1DPres/request", "", "public", "Navy Operational Global Atmospheric Prediction System (NOGAPS), 1 degree, 2013-2013, Pressure MSL", "The Navy Operational Global Atmospheric Prediction System (NOGAPS) is a global numerical weather prediction computer model run by the United States Navy's Fleet Numerical Meteorology and Oceanography Center (FNMOC). It is run four times a day to produce weather forecasts. NOGAPS was replaced by the NAVGEM in February 2013.[Wikipedia]\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres_reduced_msl (Pressure (adjusted to Mean Sea Level), hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNogaps1DPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNogaps1DPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNogaps1DPres/index.json", "https://en.wikipedia.org/wiki/Navy_Operational_Global_Atmospheric_Prediction_System", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNogaps1DPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNogaps1DPres&showErrors=false&email=", "FNMOC", "erdNogaps1DPres"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNogaps1DPres_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNogaps1DPres_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNogaps1DPres_LonPM180/request", "", "public", "Navy Operational Global Atmospheric Prediction System (NOGAPS), 1 degree, 2013-2013, Pressure MSL, Lon+/-180", "The Navy Operational Global Atmospheric Prediction System (NOGAPS) is a global numerical weather prediction computer model run by the United States Navy's Fleet Numerical Meteorology and Oceanography Center (FNMOC). It is run four times a day to produce weather forecasts. NOGAPS was replaced by the NAVGEM in February 2013.[Wikipedia]\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres_reduced_msl (Pressure (adjusted to Mean Sea Level), hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNogaps1DPres_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNogaps1DPres_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNogaps1DPres_LonPM180/index.json", "https://en.wikipedia.org/wiki/Navy_Operational_Global_Atmospheric_Prediction_System", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNogaps1DPres_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNogaps1DPres_LonPM180&showErrors=false&email=", "FNMOC", "erdNogaps1DPres_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f3fb_d291_e75c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f3fb_d291_e75c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f3fb_d291_e75c/request", "", "public", "Nawiliwili, Hawaii Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, NawiliwiliHI A)", "Nawiliwili, Hawaii Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f3fb_d291_e75c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f3fb_d291_e75c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f3fb_d291_e75c/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f3fb_d291_e75c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f3fb_d291_e75c&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_f3fb_d291_e75c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_538a_af3d_2120", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_538a_af3d_2120.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_538a_af3d_2120/request", "", "public", "Nawiliwili, Hawaii Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, NawiliwiliHI B)", "Nawiliwili, Hawaii Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_538a_af3d_2120_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_538a_af3d_2120_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_538a_af3d_2120/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_538a_af3d_2120.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_538a_af3d_2120&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_538a_af3d_2120"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_06e4_40fd_ef69", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_06e4_40fd_ef69.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_06e4_40fd_ef69/request", "", "public", "Nawiliwili, Hawaii Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, NawiliwiliHI C)", "Nawiliwili, Hawaii Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_06e4_40fd_ef69_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_06e4_40fd_ef69_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_06e4_40fd_ef69/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_06e4_40fd_ef69.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_06e4_40fd_ef69&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_06e4_40fd_ef69"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplNceiAvhrrOisstL4V2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplNceiAvhrrOisstL4V2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplNceiAvhrrOisstL4V2/request", "", "public", "NCEI global 0.25\u00b0 daily SST analysis based mainly on Advanced Very High Resolution Radiometer, V2.0, Final, 1981-present", "National Centers for Environmental Information (NCEI) global 0.25 deg daily sea surface temperature analysis based mainly on Advanced Very High Resolution Radiometer (AVHRR), final. NOAA's 1/4-degree Daily Optimum Interpolation Sea Surface Temperature (OISST) (sometimes referred to as Reynold's SST, which however also refers to earlier products at different resolution), currently available as version 2, is created by interpolating and extrapolating SST observations from different sources, resulting in a smoothed complete field. The sources of data are satellite (AVHRR) and in situ platforms (i.e., ships and buoys), and the specific datasets employed may change over. At the marginal ice zone, sea ice concentrations are used to generate proxy SSTs. A preliminary version of this file is produced in near-real time (1-day latency), and then replaced with a final version after 2 weeks. Note that this is the AVHRR-ONLY DOISST, available from Oct 1981, but there is a companion DOISST product that includes microwave satellite data, available from June 2002.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nmask (sea/land field composite mask)\nsea_ice_fraction (sea ice area fraction, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplNceiAvhrrOisstL4V2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplNceiAvhrrOisstL4V2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplNceiAvhrrOisstL4V2/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_OI-NCEI-L4-GLOB-v2.0", "http://upwell.pfeg.noaa.gov/erddap/rss/jplNceiAvhrrOisstL4V2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplNceiAvhrrOisstL4V2&showErrors=false&email=", "NCEI", "jplNceiAvhrrOisstL4V2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5027_aace_6b8c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5027_aace_6b8c.graph", "", "", "public", "NCEP North American Regional Reanalysis Data (Top Dataset, time invariant, hgt.sfc) [time][y][x], 1800", "National Centers for Environmental Prediction (NCEP) North American Regional Reanalysis Data. data is from NCEP NARR (8x/day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nhgt (Surface Geopotential Height, m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5027_aace_6b8c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5027_aace_6b8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5027_aace_6b8c&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_5027_aace_6b8c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe4a_f748_0f8d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe4a_f748_0f8d.graph", "", "", "public", "NCEP North American Regional Reanalysis Data (Top Dataset, time invariant, hgt.sfc) [y][x]", "National Centers for Environmental Prediction (NCEP) North American Regional Reanalysis Data. data is from NCEP NARR (8x/day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fe4a_f748_0f8d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fe4a_f748_0f8d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fe4a_f748_0f8d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_fe4a_f748_0f8d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_566b_3fda_7b5a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_566b_3fda_7b5a.graph", "", "", "public", "NCEP North American Regional Reanalysis Data (Top Dataset, time invariant, land) [time][y][x], 1979", "National Centers for Environmental Prediction (NCEP) North American Regional Reanalysis Data. data is from NCEP NARR (8x/day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nland (time-invariant Land-sea Mask, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_566b_3fda_7b5a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_566b_3fda_7b5a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_566b_3fda_7b5a&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_566b_3fda_7b5a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d2e_6930_7c4e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d2e_6930_7c4e.graph", "", "", "public", "NCEP North American Regional Reanalysis Data (Top Dataset, time invariant, land) [y][x]", "National Centers for Environmental Prediction (NCEP) North American Regional Reanalysis Data. data is from NCEP NARR (8x/day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9d2e_6930_7c4e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9d2e_6930_7c4e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9d2e_6930_7c4e&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_9d2e_6930_7c4e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b248_0ade_c33f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b248_0ade_c33f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b248_0ade_c33f/request", "", "public", "NCEP Reanalysis Diurnal Cycle Surface Air Temperature (airsfcapr.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for April, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b248_0ade_c33f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b248_0ade_c33f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b248_0ade_c33f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b248_0ade_c33f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b248_0ade_c33f&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b248_0ade_c33f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0b0_2f2e_629c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0b0_2f2e_629c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f0b0_2f2e_629c/request", "", "public", "NCEP Reanalysis Diurnal Cycle Surface Air Temperature (airsfcjan.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for January, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f0b0_2f2e_629c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f0b0_2f2e_629c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f0b0_2f2e_629c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f0b0_2f2e_629c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f0b0_2f2e_629c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f0b0_2f2e_629c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e20_c60c_81f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e20_c60c_81f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4e20_c60c_81f2/request", "", "public", "NCEP Reanalysis Diurnal Cycle Surface Air Temperature (airsfcjul.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for July, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4e20_c60c_81f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4e20_c60c_81f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4e20_c60c_81f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4e20_c60c_81f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4e20_c60c_81f2&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_4e20_c60c_81f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fced_49d1_25d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fced_49d1_25d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fced_49d1_25d5/request", "", "public", "NCEP Reanalysis Diurnal Cycle Surface Air Temperature (airsfcoct.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for October, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fced_49d1_25d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fced_49d1_25d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fced_49d1_25d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fced_49d1_25d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fced_49d1_25d5&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_fced_49d1_25d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0d1_53a5_c707", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0d1_53a5_c707.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f0d1_53a5_c707/request", "", "public", "NCEP Reanalysis Diurnal Cycle Surface Pressure (Top Dataset, surface, presapr.mon.dailyanom), 2.5\u00b0, 0001", "National Centers for Environmental Prediction (NCEP) Reanalysis Diurnal Cycle Surface Pressure. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Diurnal Cycle Anomaly of Surface Pressure for April, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f0d1_53a5_c707_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f0d1_53a5_c707_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f0d1_53a5_c707/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f0d1_53a5_c707.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f0d1_53a5_c707&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f0d1_53a5_c707"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_468f_6e85_8951", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_468f_6e85_8951.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_468f_6e85_8951/request", "", "public", "NCEP Reanalysis Diurnal Cycle Surface Pressure (Top Dataset, surface, presjan.mon.dailyanom), 2.5\u00b0, 0001", "National Centers for Environmental Prediction (NCEP) Reanalysis Diurnal Cycle Surface Pressure. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Diurnal Cycle Anomaly of Surface Pressure for January, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_468f_6e85_8951_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_468f_6e85_8951_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_468f_6e85_8951/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_468f_6e85_8951.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_468f_6e85_8951&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_468f_6e85_8951"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d4d_e7f9_c20c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d4d_e7f9_c20c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d4d_e7f9_c20c/request", "", "public", "NCEP Reanalysis Diurnal Cycle Surface Pressure (Top Dataset, surface, presjul.mon.dailyanom), 2.5\u00b0, 0001", "National Centers for Environmental Prediction (NCEP) Reanalysis Diurnal Cycle Surface Pressure. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Diurnal Cycle Anomaly of Surface Pressure for July, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d4d_e7f9_c20c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d4d_e7f9_c20c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d4d_e7f9_c20c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d4d_e7f9_c20c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d4d_e7f9_c20c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_3d4d_e7f9_c20c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afc6_606b_fa65", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afc6_606b_fa65.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_afc6_606b_fa65/request", "", "public", "NCEP Reanalysis Diurnal Cycle Surface Pressure (Top Dataset, surface, presoct.mon.dailyanom), 2.5\u00b0, 0001", "National Centers for Environmental Prediction (NCEP) Reanalysis Diurnal Cycle Surface Pressure. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Diurnal Cycle Anomaly of Surface Pressure for October, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_afc6_606b_fa65_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_afc6_606b_fa65_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_afc6_606b_fa65/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_afc6_606b_fa65.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_afc6_606b_fa65&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_afc6_606b_fa65"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a16_da54_4900", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a16_da54_4900.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a16_da54_4900/request", "", "public", "NCEP Reanalysis monthly intraseasonal std (Top Dataset, surface, pres.mon.intra.std), 2.5\u00b0, 0001", "National Centers for Environmental Prediction (NCEP) Reanalysis monthly intraseasonal std. Data is derived form NCEP/National Center for Atmospheric Research (NCAR) Reanalysis I dataset\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Intraseasonal Standard Deviation, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a16_da54_4900_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a16_da54_4900_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a16_da54_4900/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a16_da54_4900.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a16_da54_4900&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7a16_da54_4900"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e063_472c_e1a4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e063_472c_e1a4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e063_472c_e1a4/request", "", "public", "NCEP Reanalysis monthly mean 10 m wind speed (Top Dataset, surface gauss, wspd.10m.mon.ltm), 0001", "National Centers for Environmental Prediction (NCEP) Reanalysis monthly mean 10 m wind speed. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Monthly Long Term Mean of Wind Speed, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e063_472c_e1a4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e063_472c_e1a4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e063_472c_e1a4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e063_472c_e1a4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e063_472c_e1a4&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e063_472c_e1a4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f98_2222_d832", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f98_2222_d832.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f98_2222_d832/request", "", "public", "NCEP Reanalysis monthly mean surface relative humidity (rhum.sig995.mon.1981-2010.ltm), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Monthly Long Term Mean Relative Humidity at sigma level 0.995, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f98_2222_d832_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f98_2222_d832_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f98_2222_d832/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f98_2222_d832.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f98_2222_d832&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0f98_2222_d832"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ce5_fb5e_8310", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ce5_fb5e_8310.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6ce5_fb5e_8310/request", "", "public", "NCEP Reanalysis monthly mean surface relative humidity (rhum.sig995.mon.ltm), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Monthly Long Term Mean Relative Humidity at sigma level 0.995, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6ce5_fb5e_8310_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6ce5_fb5e_8310_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ce5_fb5e_8310/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ce5_fb5e_8310.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ce5_fb5e_8310&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6ce5_fb5e_8310"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9574_847f_aa0e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9574_847f_aa0e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9574_847f_aa0e/request", "", "public", "NCEP Reanalysis monthly mean surface relative humidity (Top Dataset, surface, rhum.mon.ltm), 2.5\u00b0, 0001", "National Centers for Environmental Prediction (NCEP) Reanalysis monthly mean surface relative humidity. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Monthly Long Term Mean Relative Humidity at sigma level 0.995, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9574_847f_aa0e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9574_847f_aa0e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9574_847f_aa0e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9574_847f_aa0e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9574_847f_aa0e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9574_847f_aa0e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/esrlNcepRe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/esrlNcepRe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/esrlNcepRe/request", "", "public", "NCEP/NCAR Reanalysis (1948-present)", "The NCEP/NCAR Reanalysis 1 project is using a state-of-the-art analysis/forecast system to perform data assimilation using past data from 1948 to the present. Data is from NMC initialized reanalysis (4x/day). See the PROBLEMS LIST at https://www.esrl.noaa.gov/psd/data/reanalysis/problems.shtml\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (mean Daily Air temperature at sigma level 995, degK)\nlftx (mean Daily Surface Lifted Index, degK)\nlftx4 (mean Daily Best (4-layer) Lifted Index, degK)\nomega (mean Daily omega at sigma level 0.995, Pascal/s)\npottmp (mean Daily potential temperature at sigma level 995, degK)\npr_wtr (mean Daily Precipitable Water for entire atmosphere, kg/m^2)\npres (mean Daily Pressure at surface, Pascals)\nrhum (mean Daily relative humidity at sigma level 995, percent)\nslp (mean Daily Sea Level Pressure, Pascals)\nuwnd (mean Daily u-wind at sigma level 995, m/s)\nvwnd (mean Daily v wind at sigma level 995, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/esrlNcepRe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/esrlNcepRe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/esrlNcepRe/index.json", "https://www.esrl.noaa.gov/psd/data/reanalysis/reanalysis.shtml", "http://upwell.pfeg.noaa.gov/erddap/rss/esrlNcepRe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=esrlNcepRe&showErrors=false&email=", "NCEP, NCAR, NOAA ESRL", "esrlNcepRe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/esrlNcepRe_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/esrlNcepRe_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/esrlNcepRe_LonPM180/request", "", "public", "NCEP/NCAR Reanalysis (1948-present), Lon+/-180", "The NCEP/NCAR Reanalysis 1 project is using a state-of-the-art analysis/forecast system to perform data assimilation using past data from 1948 to the present. Data is from NMC initialized reanalysis (4x/day). See the PROBLEMS LIST at https://www.esrl.noaa.gov/psd/data/reanalysis/problems.shtml\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (mean Daily Air temperature at sigma level 995, degK)\nlftx (mean Daily Surface Lifted Index, degK)\nlftx4 (mean Daily Best (4-layer) Lifted Index, degK)\nomega (mean Daily omega at sigma level 0.995, Pascal/s)\npottmp (mean Daily potential temperature at sigma level 995, degK)\npr_wtr (mean Daily Precipitable Water for entire atmosphere, kg/m^2)\npres (mean Daily Pressure at surface, Pascals)\nrhum (mean Daily relative humidity at sigma level 995, percent)\nslp (mean Daily Sea Level Pressure, Pascals)\nuwnd (mean Daily u-wind at sigma level 995, m/s)\nvwnd (mean Daily v wind at sigma level 995, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/esrlNcepRe_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/esrlNcepRe_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/esrlNcepRe_LonPM180/index.json", "https://www.esrl.noaa.gov/psd/data/reanalysis/reanalysis.shtml", "http://upwell.pfeg.noaa.gov/erddap/rss/esrlNcepRe_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=esrlNcepRe_LonPM180&showErrors=false&email=", "NCEP, NCAR, NOAA ESRL", "esrlNcepRe_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_471c_9422_782d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_471c_9422_782d.graph", "", "", "public", "NCOM Region 1, NCOM Region 1, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 1 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_471c_9422_782d/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_471c_9422_782d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_471c_9422_782d&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_471c_9422_782d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_8c7a_4281_add4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_8c7a_4281_add4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_8c7a_4281_add4/request", "", "public", "NCOM Region 1, NCOM Region 1, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 1 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_8c7a_4281_add4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_8c7a_4281_add4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_8c7a_4281_add4/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_8c7a_4281_add4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_8c7a_4281_add4&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_8c7a_4281_add4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_42cc_a9de_41af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_42cc_a9de_41af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_42cc_a9de_41af/request", "", "public", "NCOM Region 1, NCOM Region 1, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 1 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_42cc_a9de_41af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_42cc_a9de_41af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_42cc_a9de_41af/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_42cc_a9de_41af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_42cc_a9de_41af&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_42cc_a9de_41af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5325_cd6e_43de", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5325_cd6e_43de.graph", "", "", "public", "NCOM Region 10, NCOM Region 10, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 10 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_5325_cd6e_43de/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_5325_cd6e_43de.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_5325_cd6e_43de&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_5325_cd6e_43de"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_603c_bf5b_abc8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_603c_bf5b_abc8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_603c_bf5b_abc8/request", "", "public", "NCOM Region 10, NCOM Region 10, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 10 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalinity (PSU)\nwater_temp (Water Temperature, degree_C)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_603c_bf5b_abc8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_603c_bf5b_abc8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_603c_bf5b_abc8/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_603c_bf5b_abc8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_603c_bf5b_abc8&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_603c_bf5b_abc8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_23e1_3acd_99d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_23e1_3acd_99d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_23e1_3acd_99d0/request", "", "public", "NCOM Region 10, NCOM Region 10, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 10 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_23e1_3acd_99d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_23e1_3acd_99d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_23e1_3acd_99d0/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_23e1_3acd_99d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_23e1_3acd_99d0&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_23e1_3acd_99d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_6858_1b33_06bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_6858_1b33_06bd.graph", "", "", "public", "NCOM Region 2, NCOM Region 2, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 2 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_6858_1b33_06bd/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_6858_1b33_06bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_6858_1b33_06bd&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_6858_1b33_06bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_32dc_2bcd_70ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_32dc_2bcd_70ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_32dc_2bcd_70ea/request", "", "public", "NCOM Region 2, NCOM Region 2, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 2 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalinity (PSU)\nwater_temp (Water Temperature, degree_C)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_32dc_2bcd_70ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_32dc_2bcd_70ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_32dc_2bcd_70ea/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_32dc_2bcd_70ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_32dc_2bcd_70ea&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_32dc_2bcd_70ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_e024_ac82_0c11", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_e024_ac82_0c11.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_e024_ac82_0c11/request", "", "public", "NCOM Region 2, NCOM Region 2, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 2 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_e024_ac82_0c11_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_e024_ac82_0c11_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_e024_ac82_0c11/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_e024_ac82_0c11.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_e024_ac82_0c11&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_e024_ac82_0c11"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_ebff_3cc4_a0c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_ebff_3cc4_a0c9.graph", "", "", "public", "NCOM Region 5, NCOM Region 5, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 5 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_ebff_3cc4_a0c9/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_ebff_3cc4_a0c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_ebff_3cc4_a0c9&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_ebff_3cc4_a0c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_750c_0664_336a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_750c_0664_336a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_750c_0664_336a/request", "", "public", "NCOM Region 5, NCOM Region 5, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 5 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_750c_0664_336a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_750c_0664_336a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_750c_0664_336a/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_750c_0664_336a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_750c_0664_336a&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_750c_0664_336a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_071d_34e8_7a21", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_071d_34e8_7a21.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_071d_34e8_7a21/request", "", "public", "NCOM Region 5, NCOM Region 5, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 5 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_071d_34e8_7a21_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_071d_34e8_7a21_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_071d_34e8_7a21/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_071d_34e8_7a21.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_071d_34e8_7a21&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_071d_34e8_7a21"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_7309_f69a_991a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_7309_f69a_991a.graph", "", "", "public", "NCOM Region 6, NCOM Region 6, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 6 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_7309_f69a_991a/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_7309_f69a_991a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_7309_f69a_991a&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_7309_f69a_991a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_bad7_0640_6d9a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_bad7_0640_6d9a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_bad7_0640_6d9a/request", "", "public", "NCOM Region 6, NCOM Region 6, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 6 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalinity (PSU)\nwater_temp (Water Temperature, degree_C)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_bad7_0640_6d9a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_bad7_0640_6d9a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_bad7_0640_6d9a/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_bad7_0640_6d9a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_bad7_0640_6d9a&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_bad7_0640_6d9a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_b8d7_7054_47d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_b8d7_7054_47d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_b8d7_7054_47d4/request", "", "public", "NCOM Region 6, NCOM Region 6, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 6 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_b8d7_7054_47d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_b8d7_7054_47d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_b8d7_7054_47d4/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_b8d7_7054_47d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_b8d7_7054_47d4&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_b8d7_7054_47d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_40a9_d027_7372", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_40a9_d027_7372.graph", "", "", "public", "NCOM Region 7, NCOM Region 7, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 7 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_40a9_d027_7372/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_40a9_d027_7372.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_40a9_d027_7372&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_40a9_d027_7372"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_bf9d_4a29_a5d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_bf9d_4a29_a5d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_bf9d_4a29_a5d3/request", "", "public", "NCOM Region 7, NCOM Region 7, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 7 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalinity (PSU)\nwater_temp (Water Temperature, degree_C)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_bf9d_4a29_a5d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_bf9d_4a29_a5d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_bf9d_4a29_a5d3/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_bf9d_4a29_a5d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_bf9d_4a29_a5d3&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_bf9d_4a29_a5d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5670_aa0a_3848", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5670_aa0a_3848.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_5670_aa0a_3848/request", "", "public", "NCOM Region 7, NCOM Region 7, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 7 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_5670_aa0a_3848_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_5670_aa0a_3848_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_5670_aa0a_3848/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_5670_aa0a_3848.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_5670_aa0a_3848&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_5670_aa0a_3848"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_15eb_3b9f_e2b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_15eb_3b9f_e2b1.graph", "", "", "public", "NCOM SFC 8, NCOM SFC 8, Best Time Series [time], 2009-2013", "Best time series, taking the data from the most recent run available. Aggregation of SFC 8 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_15eb_3b9f_e2b1/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_15eb_3b9f_e2b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_15eb_3b9f_e2b1&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_15eb_3b9f_e2b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_a560_b65b_e33f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_a560_b65b_e33f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_a560_b65b_e33f/request", "", "public", "NCOM SFC 8, NCOM SFC 8, Best Time Series [time][lat][lon], 0.125\u00b0, 2009-2013", "Best time series, taking the data from the most recent run available. Aggregation of SFC 8 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\nwater_u (Eastward Water Velocity, m/s)\nwater_v (Northward Water Velocity, m/s)\nsurf_el (Water Surface Elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_a560_b65b_e33f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_a560_b65b_e33f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_a560_b65b_e33f/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_a560_b65b_e33f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_a560_b65b_e33f&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_a560_b65b_e33f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_df8c_8539_aee5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_df8c_8539_aee5.graph", "", "", "public", "NCOM SFC8 Hindcast, NCOM SFC8 Hindcast, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_df8c_8539_aee5/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_df8c_8539_aee5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_df8c_8539_aee5&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_df8c_8539_aee5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_1643_41a8_1d04", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_1643_41a8_1d04.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_1643_41a8_1d04/request", "", "public", "NCOM SFC8 Hindcast, NCOM SFC8 Hindcast, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\nwater_u (Eastward Water Velocity, m/s)\nwater_v (Northward Water Velocity, m/s)\nsurf_el (Water Surface Elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_1643_41a8_1d04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_1643_41a8_1d04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_1643_41a8_1d04/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_1643_41a8_1d04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_1643_41a8_1d04&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_1643_41a8_1d04"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7acc_fd8a_b533", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7acc_fd8a_b533.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7acc_fd8a_b533/request", "", "public", "Neah Bay, Washington Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, NeahBayWA A), 0.02\u00b0", "Neah Bay, Washington Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7acc_fd8a_b533_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7acc_fd8a_b533_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7acc_fd8a_b533/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7acc_fd8a_b533.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7acc_fd8a_b533&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_7acc_fd8a_b533"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4697_2b75_942a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4697_2b75_942a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4697_2b75_942a/request", "", "public", "Neah Bay, Washington Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, NeahBayWA B)", "Neah Bay, Washington Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4697_2b75_942a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4697_2b75_942a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4697_2b75_942a/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4697_2b75_942a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4697_2b75_942a&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_4697_2b75_942a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_eed0_c654_d45d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_eed0_c654_d45d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_eed0_c654_d45d/request", "", "public", "Neah Bay, Washington Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, NeahBayWA C)", "Neah Bay, Washington Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_eed0_c654_d45d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_eed0_c654_d45d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_eed0_c654_d45d/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_eed0_c654_d45d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_eed0_c654_d45d&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_eed0_c654_d45d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/miamicurrents", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/miamicurrents.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/miamicurrents/request", "", "public", "Near Real Time Geostrophic Currents", "Near Real Time Geostrophic Currents\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nu_current (Eastward Sea Water Velocity, m/s)\nv_current (Northward Sea Water Velocity, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/miamicurrents_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/miamicurrents_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/miamicurrents/index.json", "http://www.aoml.noaa.gov/phod/dataphod/work/trinanes/INTERFACE/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/miamicurrents.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=miamicurrents&showErrors=false&email=", "CoastWatch Caribb-NOAA AOML", "miamicurrents"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3990_a208_40c2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3990_a208_40c2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3990_a208_40c2/request", "", "public", "New Orleans, Louisiana Coastal Digital Elevation Model (new orleans 13 mhw 2010), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3990_a208_40c2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3990_a208_40c2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3990_a208_40c2/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3990_a208_40c2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3990_a208_40c2&showErrors=false&email=", "NOAA", "noaa_ngdc_3990_a208_40c2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2ad7_912b_b952", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2ad7_912b_b952.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2ad7_912b_b952/request", "", "public", "New Orleans, Louisiana Coastal Digital Elevation Model (new orleans 13 navd88 2010), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2ad7_912b_b952_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2ad7_912b_b952_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2ad7_912b_b952/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2ad7_912b_b952.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2ad7_912b_b952&showErrors=false&email=", "NOAA", "noaa_ngdc_2ad7_912b_b952"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_132a_a536_5512", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_132a_a536_5512.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_132a_a536_5512/request", "", "public", "Newport, Oregon Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, NewportOR A), 0.01\u00b0", "Newport, Oregon Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_132a_a536_5512_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_132a_a536_5512_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_132a_a536_5512/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_132a_a536_5512.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_132a_a536_5512&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_132a_a536_5512"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b015_c62f_6b5c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b015_c62f_6b5c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_b015_c62f_6b5c/request", "", "public", "Newport, Oregon Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, NewportOR B), 0.001667\u00b0", "Newport, Oregon Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_b015_c62f_6b5c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_b015_c62f_6b5c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_b015_c62f_6b5c/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_b015_c62f_6b5c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_b015_c62f_6b5c&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_b015_c62f_6b5c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_41f4_8c64_c302", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_41f4_8c64_c302.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_41f4_8c64_c302/request", "", "public", "Newport, Oregon Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, NewportOR C)", "Newport, Oregon Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_41f4_8c64_c302_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_41f4_8c64_c302_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_41f4_8c64_c302/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_41f4_8c64_c302.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_41f4_8c64_c302&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_41f4_8c64_c302"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw410Daily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw410Daily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw410Daily/request", "", "public", "nLw410, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Daily", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw410, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_410 (Normalized water-leaving radiance at 410 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw410Daily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw410Daily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw410Daily/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw410Daily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw410Daily&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw410Daily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw410Monthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw410Monthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw410Monthly/request", "", "public", "nLw410, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Monthly", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw410, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_410 (Normalized water-leaving radiance at 410 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw410Monthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw410Monthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw410Monthly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw410Monthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw410Monthly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw410Monthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw410Weekly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw410Weekly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw410Weekly/request", "", "public", "nLw410, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Weekly", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw410, Weekly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_410 (Normalized water-leaving radiance at 410 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw410Weekly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw410Weekly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw410Weekly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw410Weekly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw410Weekly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw410Weekly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw443Daily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw443Daily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw443Daily/request", "", "public", "nLw443, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Daily", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw443, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_443 (Normalized water-leaving radiance at 443 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw443Daily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw443Daily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw443Daily/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw443Daily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw443Daily&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw443Daily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw443Monthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw443Monthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw443Monthly/request", "", "public", "nLw443, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Monthly", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw443, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_443 (Normalized water-leaving radiance at 443 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw443Monthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw443Monthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw443Monthly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw443Monthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw443Monthly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw443Monthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw443Weekly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw443Weekly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw443Weekly/request", "", "public", "nLw443, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Weekly", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw443, Weekly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_443 (Normalized water-leaving radiance at 443 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw443Weekly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw443Weekly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw443Weekly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw443Weekly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw443Weekly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw443Weekly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw486Daily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw486Daily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw486Daily/request", "", "public", "nLw486, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Daily", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw486, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_486 (Normalized water-leaving radiance at 486 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw486Daily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw486Daily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw486Daily/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw486Daily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw486Daily&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw486Daily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw486Monthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw486Monthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw486Monthly/request", "", "public", "nLw486, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Monthly", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw486, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_486 (Normalized water-leaving radiance at 486 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw486Monthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw486Monthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw486Monthly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw486Monthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw486Monthly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw486Monthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw486Weekly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw486Weekly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw486Weekly/request", "", "public", "nLw486, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Weekly", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw486, Weekly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_486 (Normalized water-leaving radiance at 486 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw486Weekly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw486Weekly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw486Weekly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw486Weekly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw486Weekly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw486Weekly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw551Daily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw551Daily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw551Daily/request", "", "public", "nLw551, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Daily", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw551, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_551 (Normalized water-leaving radiance at 551 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw551Daily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw551Daily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw551Daily/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw551Daily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw551Daily&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw551Daily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw551Monthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw551Monthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw551Monthly/request", "", "public", "nLw551, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Monthly", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw551, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_551 (Normalized water-leaving radiance at 551 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw551Monthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw551Monthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw551Monthly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw551Monthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw551Monthly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw551Monthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw551Weekly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw551Weekly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw551Weekly/request", "", "public", "nLw551, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Weekly", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw551, Weekly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_551 (Normalized water-leaving radiance at 551 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw551Weekly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw551Weekly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw551Weekly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw551Weekly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw551Weekly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw551Weekly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw671Daily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw671Daily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw671Daily/request", "", "public", "nLw671, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Daily", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw671, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_671 (Normalized water-leaving radiance at 671 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw671Daily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw671Daily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw671Daily/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw671Daily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw671Daily&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw671Daily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw671Monthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw671Monthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw671Monthly/request", "", "public", "nLw671, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Monthly", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw671, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_671 (Normalized water-leaving radiance at 671 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw671Monthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw671Monthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw671Monthly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw671Monthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw671Monthly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw671Monthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw671Weekly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw671Weekly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw671Weekly/request", "", "public", "nLw671, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Weekly", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw671, Weekly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_671 (Normalized water-leaving radiance at 671 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw671Weekly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw671Weekly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw671Weekly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw671Weekly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw671Weekly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw671Weekly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisSSH1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisSSH1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisSSH1day/request", "", "public", "NOAA CoastWatch, Sea Surface Height Anomalies from Altimetry, Global, 2017-present, EXPERIMENTAL", "The altimetry data are from RADS (http://rads.tudelft.nl/rads/rads.shtml), the Radar Altimetry Database System, first developed at Delft University of Technology, now also at the NOAA and the European Organisation for the Exploitation of Meteorological Satellites (EUMETSAT). The RADS data for each mission is updated with state of the art corrections for tides, atmospheric path delay, etc. Because they are all computed consistently between the various missions, this avoids the possibility of introducing biases and drifts because of the different implementation of the various corrections by different agencies. The goals of RADS are to provide a homogenous dataset of sea level anomalies, wave heights, and wind speeds, along with database selection and analysis tools.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsla (Sea Level Anomalies, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisSSH1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisSSH1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisSSH1day/index.json", "https://coastwatch.noaa.gov/cw_html/SSH_SeaLevelAnomaly.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisSSH1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisSSH1day&showErrors=false&email=", "NOAA/NESDIS Center for Satellite Applications and Research", "nesdisSSH1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_51b7_a8fb_3094", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_51b7_a8fb_3094.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_aoml_51b7_a8fb_3094/request", "", "public", "NOAA Coral Reef Watch 25km Ocean Acidification, Caribbean, Preliminary, 0.25\u00b0, 2016-present", "Archived NOAA Coral Reef Watch 25km Ocean Acidification Product Suite for the Greater Caribbean Region Quality Flag = Preliminary. This is the Coral Reef Watch Ocean Acidification Product Suite produced monthly in conjunction with NOAA CoastWatch. CoastWatch Utilities, including CoastWatch Data Analysis Tool (CDAT), v3.2.1 or higher (https://coastwatch.noaa.gov/cw_software.html) can be used for viewing, analyzing, and plotting the data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST (NOAA Coral Reef Watch Experimental Ocean Acidification Product Suite - NOAA OI AVHRR-AMSRE SST 25km, degree_C)\nSSS (NOAA Coral Reef Watch Experimental Ocean Acidification Product Suite - IASNFS SSS interpolated to 25km, PSU)\npCO2sw (NOAA Coral Reef Watch Experimental Ocean Acidification Product Suite - pCO2sw 25km, uatm)\nTA (NOAA Coral Reef Watch Experimental Ocean Acidification Product Suite - Total Alkalinity (TA) 25km, \u00b5mole/kg)\nTC (NOAA Coral Reef Watch Experimental Ocean Acidification Product Suite - Total Inorganic Carbon (TC) 25km, \u00b5mole/kg)\npH (NOAA Coral Reef Watch Experimental Ocean Acidification Product Suite - pH 25km, Total Scale)\nSSA (NOAA Coral Reef Watch Experimental Ocean Acidification Product Suite - Saturation State (argonite) 25km, Omega)\nHCO3 (NOAA Coral Reef Watch Experimental Ocean Acidification Product Suite - Bicarbonate Ion Concentration (HCO3-) 25km, \u00b5mole/kg)\nCO3 (NOAA Coral Reef Watch Experimental Ocean Acidification Product Suite - Carbonate Ion Concentration (CO3--) 25km, \u00b5mole/kg)\nsurface_flag (Pixel characteristics flag array)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_aoml_51b7_a8fb_3094_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_aoml_51b7_a8fb_3094_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_aoml_51b7_a8fb_3094/index.json", "https://cwcgom.aoml.noaa.gov/thredds/dodsC/OCEAN_ACIDIFICATION/ACIDIFICATION.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_aoml_51b7_a8fb_3094.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_aoml_51b7_a8fb_3094&showErrors=false&email=", "USDOC/NOAA Coral Reef Watch", "noaa_aoml_51b7_a8fb_3094"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nceiErsstv4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nceiErsstv4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nceiErsstv4/request", "", "public", "NOAA ERSSTv4 (in situ only), 2\u00b0, Global, Monthly, 1854-present", "The Extended Reconstructed Sea Surface Temperature (ERSST) dataset is a global monthly sea surface temperature dataset derived from the International Comprehensive Ocean-Atmosphere Dataset (ICOADS). It is produced on a 2\u00b0 \u00d7 2\u00b0 grid with spatial completeness enhanced using statistical methods. This monthly analysis begins in January 1854 continuing to the present and includes anomalies computed with respect to a 1971-2000 monthly climatology. \n\nThis dataset is ERSST version 4. Please see the newer version 5.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsst (Extended reconstructed sea surface temperature, degree_C)\nssta (Extended reconstructed SST anomalies, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nceiErsstv4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nceiErsstv4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nceiErsstv4/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/extended-reconstructed-sea-surface-temperature-ersst-v4", "http://upwell.pfeg.noaa.gov/erddap/rss/nceiErsstv4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nceiErsstv4&showErrors=false&email=", "NOAA/NESDIS/NCEI/CCOG", "nceiErsstv4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nceiErsstv5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nceiErsstv5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nceiErsstv5/request", "", "public", "NOAA ERSSTv5 (in situ only), 2\u00b0, Global, Monthly, 1854-present", "The Extended Reconstructed Sea Surface Temperature (ERSST) dataset is a global monthly sea surface temperature dataset derived from the International Comprehensive Ocean-Atmosphere Dataset (ICOADS). It is produced on a 2\u00b0 \u00d7 2\u00b0 grid with spatial completeness enhanced using statistical methods. This monthly analysis begins in January 1854 continuing to the present and includes anomalies computed with respect to a 1971-2000 monthly climatology.\n\nThis is the newest version of ERSST, version 5\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsst (Extended reconstructed sea surface temperature, degree_C)\nssta (Extended reconstructed SST anomalies, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nceiErsstv5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nceiErsstv5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nceiErsstv5/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/extended-reconstructed-sea-surface-temperature-ersst-v5", "http://upwell.pfeg.noaa.gov/erddap/rss/nceiErsstv5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nceiErsstv5&showErrors=false&email=", "NOAA/NESDIS/NCEI/CCOG", "nceiErsstv5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2782_f239_e546", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2782_f239_e546.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2782_f239_e546/request", "", "public", "NOAA Extended Reconstructed SST (ERSST), Version 4 (in situ only) (sst.mnmean.v4), 2.0\u00b0, 1854-present", "NOAA Extended Reconstructed Sea Surface Temperature (ERSST), Version 4 (in situ only). In situ data: ICOADS2.5 before 2007 and National Centers for Environmental Prediction (NCEP) in situ data from 2008 to present. Ice data: Hadley Centre Sea Ice and Sea Surface Temperature (HadISST) ice before 2010 and NCEP ice after 2010.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Means of Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2782_f239_e546_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2782_f239_e546_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2782_f239_e546/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.ersst.v4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2782_f239_e546.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2782_f239_e546&showErrors=false&email=", "This version written at NOAA/ESRL PSD: obtained from NOAA/NESDIS/NCDC", "noaa_esrl_2782_f239_e546"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d0e_a34f_5bb9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d0e_a34f_5bb9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d0e_a34f_5bb9/request", "", "public", "NOAA Extended Reconstructed SST (ERSST), Version 4 (in situ only) (sst.mon.1971-2000.ltm.v4), 2.0\u00b0, 0001", "NOAA Extended Reconstructed Sea Surface Temperature (ERSST), Version 4 (in situ only). In situ data: ICOADS2.5 before 2007 and National Centers for Environmental Prediction (NCEP) in situ data from 2008 to present. Ice data: Hadley Centre Sea Ice and Sea Surface Temperature (HadISST) ice before 2010 and NCEP ice after 2010.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Long Term Mean Monthly Means of Sea Surface Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d0e_a34f_5bb9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d0e_a34f_5bb9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d0e_a34f_5bb9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.ersst.v4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d0e_a34f_5bb9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d0e_a34f_5bb9&showErrors=false&email=", "This version written at NOAA/ESRL PSD: obtained from NOAA/NESDIS/NCDC", "noaa_esrl_6d0e_a34f_5bb9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5ee_629d_2cea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5ee_629d_2cea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5ee_629d_2cea/request", "", "public", "NOAA Extended Reconstructed SST (ERSST), Version 4 (in situ only) (sst.mon.1981-2010.ltm.v4), 2.0\u00b0, 0001", "NOAA Extended Reconstructed Sea Surface Temperature (ERSST), Version 4 (in situ only). In situ data: ICOADS2.5 before 2007 and National Centers for Environmental Prediction (NCEP) in situ data from 2008 to present. Ice data: Hadley Centre Sea Ice and Sea Surface Temperature (HadISST) ice before 2010 and NCEP ice after 2010.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Long Term Mean Monthly Means of Sea Surface Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5ee_629d_2cea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5ee_629d_2cea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5ee_629d_2cea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.ersst.v4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5ee_629d_2cea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5ee_629d_2cea&showErrors=false&email=", "This version written at NOAA/ESRL PSD: obtained from NOAA/NESDIS/NCDC", "noaa_esrl_b5ee_629d_2cea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/NOAA_DHW_5km", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/NOAA_DHW_5km.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/NOAA_DHW_5km/request", "", "public", "NOAA Global Coral Bleaching Monitoring Products: Daily 5-km", "Contains a suite of NOAA Coral Reef Watch (CRW) version 3.1 operational global satellite coral bleaching thermal stress monitoring products at 5-km resolution produced daily in near real-time, including sea surface temperature (SST), SST anomaly, HotSpot, Degree Heating Week (DHW), and a 7-day maximum Bleaching Alert Area (BAA). These data are based on CoralTemp Version 1.0, a daily global 5-km sea surface temperature dataset combined from: (1.) NOAA/NESDIS operational near-real-time daily global 5-km geostationary-polar-orbiting (geo-polar) blended night-only SST analysis, (2.) NOAA/NESDIS 2002-2016 reprocessed daily global 5-km geo-polar blended night-only SST analysis, and (3.) United Kingdom Met Office 1985-2002 daily global 5-km night-only SST reanalysis of Operational SST and Sea Ice Analysis (OSTIA). The SST anomaly is the difference of SST compared to daily SST climatology. The coral bleaching HotSpot is a special type of sea surface temperature (SST) anomaly and shows the difference of SST compared to a coral bleaching SST threshold climatology. DHW is the accumulation of Coral Bleaching HotSpots over a period of 12 consecutive weeks. The DHW value at any particular location at any particular time is the summation of the product of HotSpot values which are at least 1 deg C above the bleaching threshold SST and their durations in weeks over the most recent 12-week period. One DHW is equivalent to 1 week of SST at 1 deg C above the threshold or 0.5 week of SST at 2 deg C above the threshold, etc. The units for DHW are deg C-weeks, combining the intensity and duration of thermal stress into one single number. Based on research at Coral Reef Watch, when the thermal stress reaches 4 deg C-weeks, you can expect to see significant coral bleaching, especially in more sensitive species. When thermal stress is 8 deg C-weeks or higher, you would likely see widespread bleaching and mortality from the thermal stress.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nCRW_DHW (degree heating week, Celsius weeks)\nCRW_HOTSPOT (coral bleaching hotspot, Celsius)\nCRW_BAA (bleaching alert area (7-day max), 1)\nCRW_SST (sea surface temperature, Celsius)\nCRW_SSTANOMALY (sea surface temperature anomaly, Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/NOAA_DHW_5km_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/NOAA_DHW_5km_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/NOAA_DHW_5km/index.json", "http://coralreefwatch.noaa.gov/satellite/", "http://upwell.pfeg.noaa.gov/erddap/rss/NOAA_DHW_5km.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=NOAA_DHW_5km&showErrors=false&email=", "NOAA Coral Reef Watch", "NOAA_DHW_5km"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee5a_ce91_ddfd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee5a_ce91_ddfd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ee5a_ce91_ddfd/request", "", "public", "NOAA Highly Reflective Clouds, 25N-25S (Top Dataset, noaa hrc, hrc.dailies), 1.0\u00b0, 1971-1988", "NOAA Highly Reflective Clouds, 25N-25S (Top Dataset, noaa hrc, hrc.dailies)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhrc (Highly Reflective Clouds Daily Values)\nmissflag (HRC missing flag; 1=missing, 0=present)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ee5a_ce91_ddfd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ee5a_ce91_ddfd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ee5a_ce91_ddfd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.hrc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ee5a_ce91_ddfd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ee5a_ce91_ddfd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ee5a_ce91_ddfd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_926d_c89d_8a2c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_926d_c89d_8a2c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_926d_c89d_8a2c/request", "", "public", "NOAA Highly Reflective Clouds, 25N-25S (Top Dataset, noaa hrc, hrc.ltmstddev), 1.0\u00b0, 0001", "NOAA Highly Reflective Clouds, 25N-25S (Top Dataset, noaa hrc, hrc.ltmstddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhrc (Highly Reflective Clouds Long Term Monthly Standard Deviation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_926d_c89d_8a2c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_926d_c89d_8a2c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_926d_c89d_8a2c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.hrc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_926d_c89d_8a2c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_926d_c89d_8a2c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_926d_c89d_8a2c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48f5_2582_1f7c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48f5_2582_1f7c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_48f5_2582_1f7c/request", "", "public", "NOAA Highly Reflective Clouds, 25N-25S (Top Dataset, noaa hrc, hrc.monthlies), 1.0\u00b0, 1971-1985", "NOAA Highly Reflective Clouds, 25N-25S (Top Dataset, noaa hrc, hrc.monthlies)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhrc (Highly Reflective Clouds Monthly Mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_48f5_2582_1f7c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_48f5_2582_1f7c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_48f5_2582_1f7c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.hrc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_48f5_2582_1f7c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_48f5_2582_1f7c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_48f5_2582_1f7c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3633_740f_9dde", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3633_740f_9dde.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3633_740f_9dde/request", "", "public", "NOAA Highly Reflective Clouds, 25N-25S (Top Dataset, noaa hrc, hrc.nmissdays), 1.0\u00b0, 1971-1985", "NOAA Highly Reflective Clouds, 25N-25S (Top Dataset, noaa hrc, hrc.nmissdays)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhrc (Highly Reflective Clouds Monthly Missing Days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3633_740f_9dde_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3633_740f_9dde_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3633_740f_9dde/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.hrc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3633_740f_9dde.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3633_740f_9dde&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3633_740f_9dde"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6079_d4c9_5c44", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6079_d4c9_5c44.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6079_d4c9_5c44/request", "", "public", "NOAA Highly Reflective Clouds, 25N-25S (Top Dataset, noaa hrc, hrc.normltm), 1.0\u00b0, 0001", "NOAA Highly Reflective Clouds, 25N-25S (Top Dataset, noaa hrc, hrc.normltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhrc (Highly Reflective Clouds Normalized Long Term Monthly Mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6079_d4c9_5c44_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6079_d4c9_5c44_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6079_d4c9_5c44/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.hrc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6079_d4c9_5c44.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6079_d4c9_5c44&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6079_d4c9_5c44"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d54_f835_418e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d54_f835_418e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9d54_f835_418e/request", "", "public", "NOAA Merged Land-Ocean Surface Temperature (Top Dataset, mlost, air.mon.anom.v3.54), 5.0\u00b0, 1880-2015", "NOAA Merged Land-Ocean Surface Temperature Analysis (Top Dataset, mlost, air.mon.anom.v3.54)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Surface Air Temperature and SST Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9d54_f835_418e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9d54_f835_418e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9d54_f835_418e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.mlost.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9d54_f835_418e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9d54_f835_418e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9d54_f835_418e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89c1_20dd_0d9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89c1_20dd_0d9f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_89c1_20dd_0d9f/request", "", "public", "NOAA Merged Land-Ocean Surface Temperature (Top Dataset, noaaglobaltemp, lsmask), 5.0\u00b0, 2000", "NOAA Merged Land-Ocean Surface Temperature Analysis (Top Dataset, noaaglobaltemp, lsmask)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlsmask (Surface Air Temperature and SST Land Mask, fraction)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_89c1_20dd_0d9f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_89c1_20dd_0d9f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_89c1_20dd_0d9f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaaglobaltemp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_89c1_20dd_0d9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_89c1_20dd_0d9f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_89c1_20dd_0d9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_2a88_6d42_7510", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_2a88_6d42_7510.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_2a88_6d42_7510/request", "", "public", "NOAA Multiple-Satellite Blended 0.25-degree Sea Winds, climatological monthly means, 0000", "NOAA Multiple-Satellite Blended 0.25-degree Sea Winds - climatological monthly means. Gridded and blended sea surface vector winds from multiple satellites with direction from National Centers for Environmental Prediction (NCEP) Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present. Climatological (1995-2005) monthlies in this dataset; 6-hourly, daily & monthly resolutions are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (u,v) means and scalar mean speed w for comparison\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][zlev][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\nw (Sea Surface Wind: magnitude as scalar mean, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_2a88_6d42_7510_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_2a88_6d42_7510_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_2a88_6d42_7510/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/uv/clm/uvclm95to05.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_2a88_6d42_7510.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_2a88_6d42_7510&showErrors=false&email=", "NOAA NESDIS NCDC", "noaa_ncei_2a88_6d42_7510"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_891e_c20a_81e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_891e_c20a_81e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_891e_c20a_81e2/request", "", "public", "NOAA Optimum Interpolation (OI) SST V2 (Top Dataset, noaa.oisst.v2, lsmask), 1.0\u00b0, 1981", "NOAA Optimum Interpolation (OI) Sea Surface Temperature (SST) V2. Data described in Reynolds, R.W., N.A. Rayner, T.M.\nSmith, D.C. Stokes, and W. Wang, 2002: An Improved In Situ and Satellite\nSST Analysis for Climate, J. Climate\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nmask (Land Sea Mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_891e_c20a_81e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_891e_c20a_81e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_891e_c20a_81e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.oisst.v2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_891e_c20a_81e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_891e_c20a_81e2&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_891e_c20a_81e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ae4_472e_343f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ae4_472e_343f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ae4_472e_343f/request", "", "public", "NOAA Optimum Interpolation (OI) SST V2 (Top Dataset, noaa.oisst.v2, sst.mnmean), 1.0\u00b0, 1981-present", "NOAA Optimum Interpolation (OI) Sea Surface Temperature (SST) V2. Data described in Reynolds, R.W., N.A. Rayner, T.M.\nSmith, D.C. Stokes, and W. Wang, 2002: An Improved In Situ and Satellite\nSST Analysis for Climate, J. Climate\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Mean of Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ae4_472e_343f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ae4_472e_343f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ae4_472e_343f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.oisst.v2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ae4_472e_343f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ae4_472e_343f&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7ae4_472e_343f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_27b6_71b3_4838", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_27b6_71b3_4838.graph", "", "", "public", "NOAA/NCDC Blended 6-hourly 0.25-degree Sea Surface Winds (of 6h Ocean Wind best) [time], 1987-2011", "Best time series, taking the data from the most recent run available.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_27b6_71b3_4838/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/uv/6h_agg/Aggregation_of_6h_Ocean_Wind_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_27b6_71b3_4838.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_27b6_71b3_4838&showErrors=false&email=", "NOAA NESDIS NCDC", "noaa_ncei_27b6_71b3_4838"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_904f_b79e_6634", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_904f_b79e_6634.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_904f_b79e_6634/request", "", "public", "NOAA/NCDC Blended 6-hourly 0.25-degree Sea Surface Winds (of 6h Ocean Wind best) [time][zlev][lat][lon], 1987-2011", "Best time series, taking the data from the most recent run available.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][zlev][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_904f_b79e_6634_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_904f_b79e_6634_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_904f_b79e_6634/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/uv/6h_agg/Aggregation_of_6h_Ocean_Wind_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_904f_b79e_6634.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_904f_b79e_6634&showErrors=false&email=", "NOAA NESDIS NCDC", "noaa_ncei_904f_b79e_6634"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOw6hrStrs", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOw6hrStrs.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOw6hrStrs/request", "", "public", "NOAA/NCDC Blended 6-Hourly Global 0.25\u00b0 Sea Surface Wind Stress, 1987-2011", "Gridded and blended sea surface windstresses from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present, 6-hourly resolution in this dataset; daily and monthly are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Sea Surface Wind Stress: x-component, N m-2)\ntauy (Sea Surface Wind Stress: y-component, N m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOw6hrStrs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOw6hrStrs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOw6hrStrs/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOw6hrStrs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOw6hrStrs&showErrors=false&email=", "NOAA NCEI", "ncdcOw6hrStrs"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOw6hrStrs_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOw6hrStrs_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOw6hrStrs_LonPM180/request", "", "public", "NOAA/NCDC Blended 6-Hourly Global 0.25\u00b0 Sea Surface Wind Stress, 1987-2011, Lon+/-180", "Gridded and blended sea surface windstresses from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present, 6-hourly resolution in this dataset; daily and monthly are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Sea Surface Wind Stress: x-component, N m-2)\ntauy (Sea Surface Wind Stress: y-component, N m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOw6hrStrs_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOw6hrStrs_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOw6hrStrs_LonPM180/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOw6hrStrs_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOw6hrStrs_LonPM180&showErrors=false&email=", "NOAA NCEI", "ncdcOw6hrStrs_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOw6hr", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOw6hr.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOw6hr/request", "", "public", "NOAA/NCDC Blended 6-Hourly Global 0.25\u00b0 Sea Surface Winds, 1987-2011", "Gridded and blended sea surface vector winds from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present, 6-hourly resolution in this dataset; daily and monthly are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (u,v) means and scalar mean speed w for comparison\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOw6hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOw6hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOw6hr/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOw6hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOw6hr&showErrors=false&email=", "NOAA NCEI", "ncdcOw6hr"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOw6hr_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOw6hr_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOw6hr_LonPM180/request", "", "public", "NOAA/NCDC Blended 6-Hourly Global 0.25\u00b0 Sea Surface Winds, 1987-2011, Lon+/-180", "Gridded and blended sea surface vector winds from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present, 6-hourly resolution in this dataset; daily and monthly are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (u,v) means and scalar mean speed w for comparison\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOw6hr_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOw6hr_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOw6hr_LonPM180/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOw6hr_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOw6hr_LonPM180&showErrors=false&email=", "NOAA NCEI", "ncdcOw6hr_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOw6hrP", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOw6hrP.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOw6hrP/request", "", "public", "NOAA/NCDC Blended 6-Hourly Global 0.25\u00b0 Sea Surface Winds, Preliminary, 2011-Present", "Gridded and blended sea surface vector winds from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present, 6-hourly resolution in this dataset; daily and monthly are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (u,v) means and scalar mean speed w for comparison\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOw6hrP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOw6hrP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOw6hrP/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOw6hrP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOw6hrP&showErrors=false&email=", "NOAA NCEI", "ncdcOw6hrP"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOw6hrP_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOw6hrP_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOw6hrP_LonPM180/request", "", "public", "NOAA/NCDC Blended 6-Hourly Global 0.25\u00b0 Sea Surface Winds, Preliminary, 2011-Present, Lon+/-180", "Gridded and blended sea surface vector winds from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present, 6-hourly resolution in this dataset; daily and monthly are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (u,v) means and scalar mean speed w for comparison\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOw6hrP_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOw6hrP_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOw6hrP_LonPM180/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOw6hrP_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOw6hrP_LonPM180&showErrors=false&email=", "NOAA NCEI", "ncdcOw6hrP_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwDlyStrs", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwDlyStrs.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOwDlyStrs/request", "", "public", "NOAA/NCDC Blended Daily Global 0.25\u00b0 Sea Surface Wind Stress, 1987-2011", "Gridded and blended sea surface windstresses from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present, daily resolution in this dataset; 6-hourly and monthly are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (taux,tauy) means & mean tau as scalar means\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Sea Surface Wind Stress: x-component, N m-2)\ntauy (Sea Surface Wind Stress: y-component, N m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOwDlyStrs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOwDlyStrs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOwDlyStrs/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOwDlyStrs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOwDlyStrs&showErrors=false&email=", "NOAA NCEI", "ncdcOwDlyStrs"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwDlyStrs_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwDlyStrs_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOwDlyStrs_LonPM180/request", "", "public", "NOAA/NCDC Blended Daily Global 0.25\u00b0 Sea Surface Wind Stress, 1987-2011, Lon+/-180", "Gridded and blended sea surface windstresses from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present, daily resolution in this dataset; 6-hourly and monthly are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (taux,tauy) means & mean tau as scalar means\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Sea Surface Wind Stress: x-component, N m-2)\ntauy (Sea Surface Wind Stress: y-component, N m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOwDlyStrs_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOwDlyStrs_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOwDlyStrs_LonPM180/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOwDlyStrs_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOwDlyStrs_LonPM180&showErrors=false&email=", "NOAA NCEI", "ncdcOwDlyStrs_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwDly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwDly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOwDly/request", "", "public", "NOAA/NCDC Blended Daily Global 0.25\u00b0 Sea Surface Winds, 1987-2011", "Gridded and blended sea surface vector winds from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present, daily resolution in this dataset; 6-hourly and monthly are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (u,v) means and scalar mean speed w for comparison\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\nw (Sea Surface Wind: speed as scalar means, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOwDly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOwDly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOwDly/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOwDly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOwDly&showErrors=false&email=", "NOAA NCEI", "ncdcOwDly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwDly_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwDly_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOwDly_LonPM180/request", "", "public", "NOAA/NCDC Blended Daily Global 0.25\u00b0 Sea Surface Winds, 1987-2011, Lon+/-180", "Gridded and blended sea surface vector winds from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present, daily resolution in this dataset; 6-hourly and monthly are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (u,v) means and scalar mean speed w for comparison\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\nw (Sea Surface Wind: speed as scalar means, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOwDly_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOwDly_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOwDly_LonPM180/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOwDly_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOwDly_LonPM180&showErrors=false&email=", "NOAA NCEI", "ncdcOwDly_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwDlyP", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwDlyP.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOwDlyP/request", "", "public", "NOAA/NCDC Blended Daily Global 0.25\u00b0 Sea Surface Winds, Preliminary, 2011-Present", "Gridded and blended sea surface vector winds from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present, daily resolution in this dataset; 6-hourly and monthly are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (u,v) means and scalar mean speed w for comparison\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\nw (Sea Surface Wind: speed as scalar means, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOwDlyP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOwDlyP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOwDlyP/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOwDlyP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOwDlyP&showErrors=false&email=", "NOAA NCEI", "ncdcOwDlyP"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwDlyP_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwDlyP_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOwDlyP_LonPM180/request", "", "public", "NOAA/NCDC Blended Daily Global 0.25\u00b0 Sea Surface Winds, Preliminary, 2011-Present, Lon+/-180", "Gridded and blended sea surface vector winds from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present, daily resolution in this dataset; 6-hourly and monthly are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (u,v) means and scalar mean speed w for comparison\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\nw (Sea Surface Wind: speed as scalar means, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOwDlyP_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOwDlyP_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOwDlyP_LonPM180/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOwDlyP_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOwDlyP_LonPM180&showErrors=false&email=", "NOAA NCEI", "ncdcOwDlyP_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwClm9505", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwClm9505.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOwClm9505/request", "", "public", "NOAA/NCDC Blended Global 0.25\u00b0 Sea Winds, Climatological Monthly Means, 1995-2005", "Gridded and blended sea surface vector winds from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present. Climatological (1995-2005) monthlies in this dataset; 6-hourly, daily & monthly resolutions are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (u,v) means and scalar mean speed w for comparison\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\nw (Sea Surface Wind: speed as scalar means, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOwClm9505_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOwClm9505_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOwClm9505/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOwClm9505.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOwClm9505&showErrors=false&email=", "NOAA NCEI", "ncdcOwClm9505"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwClm9505_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwClm9505_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOwClm9505_LonPM180/request", "", "public", "NOAA/NCDC Blended Global 0.25\u00b0 Sea Winds, Climatological Monthly Means, 1995-2005, Lon+/-180", "Gridded and blended sea surface vector winds from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present. Climatological (1995-2005) monthlies in this dataset; 6-hourly, daily & monthly resolutions are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (u,v) means and scalar mean speed w for comparison\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\nw (Sea Surface Wind: speed as scalar means, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOwClm9505_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOwClm9505_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOwClm9505_LonPM180/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOwClm9505_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOwClm9505_LonPM180&showErrors=false&email=", "NOAA NCEI", "ncdcOwClm9505_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwMonStrs", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwMonStrs.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOwMonStrs/request", "", "public", "NOAA/NCDC Blended Monthly Global 0.25\u00b0 Sea Surface Wind Stress, 1987-2011", "Gridded and blended sea surface windstresses from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present, monthly resolution in this dataset; 6-hourly and daily are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (taux,tauy) means & mean tau as scalar means\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Sea Surface Wind Stress: x-component, N m-2)\ntauy (Sea Surface Wind Stress: y-component, N m-2)\ntau (Sea Surface Wind Stress: amplitude as scalar mean, N m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOwMonStrs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOwMonStrs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOwMonStrs/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOwMonStrs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOwMonStrs&showErrors=false&email=", "NOAA NCEI", "ncdcOwMonStrs"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwMonStrs_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwMonStrs_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOwMonStrs_LonPM180/request", "", "public", "NOAA/NCDC Blended Monthly Global 0.25\u00b0 Sea Surface Wind Stress, 1987-2011, Lon+/-180", "Gridded and blended sea surface windstresses from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present, monthly resolution in this dataset; 6-hourly and daily are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (taux,tauy) means & mean tau as scalar means\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Sea Surface Wind Stress: x-component, N m-2)\ntauy (Sea Surface Wind Stress: y-component, N m-2)\ntau (Sea Surface Wind Stress: amplitude as scalar mean, N m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOwMonStrs_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOwMonStrs_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOwMonStrs_LonPM180/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOwMonStrs_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOwMonStrs_LonPM180&showErrors=false&email=", "NOAA NCEI", "ncdcOwMonStrs_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwMon", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwMon.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOwMon/request", "", "public", "NOAA/NCDC Blended Monthly Global 0.25\u00b0 Sea Surface Winds, 1987-2011", "Gridded and blended sea surface vector winds from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present, monthly resolution in this dataset; 6-hourly and daily are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (u,v) means and scalar mean speed w for comparison\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\nw (Sea Surface Wind: speed as scalar means, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOwMon_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOwMon_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOwMon/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOwMon.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOwMon&showErrors=false&email=", "NOAA NCEI", "ncdcOwMon"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwMon_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwMon_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOwMon_LonPM180/request", "", "public", "NOAA/NCDC Blended Monthly Global 0.25\u00b0 Sea Surface Winds, 1987-2011, Lon+/-180", "Gridded and blended sea surface vector winds from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present, monthly resolution in this dataset; 6-hourly and daily are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (u,v) means and scalar mean speed w for comparison\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\nw (Sea Surface Wind: speed as scalar means, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOwMon_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOwMon_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOwMon_LonPM180/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOwMon_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOwMon_LonPM180&showErrors=false&email=", "NOAA NCEI", "ncdcOwMon_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a2f_0bd6_7d46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a2f_0bd6_7d46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a2f_0bd6_7d46/request", "", "public", "NOAA/NCEP GHCN CAMS Monthly Temperature (Top Dataset, ghcncams, air.mon.mean), 0.5\u00b0, 1948-present", "NOAA/National Centers for Environmental Prediction (NCEP) Global Historical Climatology Network (GHCN) Climate Anomaly Monitoring System (CAMS) Monthly Temperature (Top Dataset, ghcncams, air.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly mean of surface temperature, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a2f_0bd6_7d46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a2f_0bd6_7d46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a2f_0bd6_7d46/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ghcncams.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a2f_0bd6_7d46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a2f_0bd6_7d46&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7a2f_0bd6_7d46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/NCEP_Global_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/NCEP_Global_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/NCEP_Global_Best/request", "", "public", "NOAA/NCEP Global Forecast System (GFS) Atmospheric Model", "U.S. National Oceanic and Atmospheric Administration (NOAA) National Centers for Environmental Prediction (NCEP) Global Forecast System (GFS) numerical weather prediction model 8-day, 3-hourly forecast for the globe at approximately 50-km or 0.5-deg resolution.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmpsfc (surface air temperature, K)\ntmp2m (air temperature at 2m, K)\nugrd10m (eastward wind velocity at 10m, m s-1)\nvgrd10m (northward wind velocity at 10m, m s-1)\npratesfc (rainfall rate, kg m-2 s-1)\nrh2m (relative humidity at 2m, %)\nprmslmsl (mean sea level pressure, Pa)\ndlwrfsfc (net downward longwave radiation flux, W m-2)\ndswrfsfc (net downward shortwave radiation flux, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/NCEP_Global_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/NCEP_Global_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/NCEP_Global_Best/index.json", "http://www.nco.ncep.noaa.gov/pmb/products/gfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/NCEP_Global_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=NCEP_Global_Best&showErrors=false&email=", "NOAA NCEP", "NCEP_Global_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/NCEP_Pacific_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/NCEP_Pacific_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/NCEP_Pacific_Best/request", "", "public", "NOAA/NCEP Global Forecast System (GFS) Atmospheric Model: Pacific", "U.S. National Oceanic and Atmospheric Administration (NOAA) National Centers for Environmental Prediction (NCEP) Global Forecast System (GFS) numerical weather prediction model 8-day, 3-hourly forecast for the Pacific region at approximately 25-km or 0.25-deg resolution.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmpsfc (surface air temperature, K)\ntmp2m (air temperature at 2m, K)\nugrd10m (eastward wind velocity at 10m, m s-1)\nvgrd10m (northward wind velocity at 10m, m s-1)\npratesfc (rainfall rate, kg m-2 s-1)\nrh2m (relative humidity at 2m, %)\nprmslmsl (mean sea level pressure, Pa)\ndlwrfsfc (net downward longwave radiation flux, W m-2)\ndswrfsfc (net downward shortwave radiation flux, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/NCEP_Pacific_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/NCEP_Pacific_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/NCEP_Pacific_Best/index.json", "http://www.nco.ncep.noaa.gov/pmb/products/gfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/NCEP_Pacific_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=NCEP_Pacific_Best&showErrors=false&email=", "NOAA NCEP", "NCEP_Pacific_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ngdc_bathy_10m_tutuila", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ngdc_bathy_10m_tutuila.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ngdc_bathy_10m_tutuila/request", "", "public", "NOAA/NGDC 10-m Bathymetry: American Samoa: Tutuila", "A 10-m (1/3 arc-second) resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding the island of Tutuila in American Samoa. It is referenced to a vertical tidal datum of Mean High Water (MHW) and was compiled from various data sources including: NOAA National Geophysical Data Center (NGDC); the U.S. Geological Survey (USGS); Naval Oceanographic Office (NAVOCEANO); Gaia Geo Analytical; and other federal, state, and local government agencies, academic institutions, and private companies. Developed for the National Tsunami Hazard Mitigation Program (NTHMP) to support NOAA's tsunami forecasting and modeling efforts. Not to be used for navigational purposes. For further details, please see: https://www.ngdc.noaa.gov/dem/squareCellGrid/download/4610\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ngdc_bathy_10m_tutuila_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ngdc_bathy_10m_tutuila_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ngdc_bathy_10m_tutuila/index.json", "https://www.ngdc.noaa.gov/dem/squareCellGrid/download/4610", "http://upwell.pfeg.noaa.gov/erddap/rss/ngdc_bathy_10m_tutuila.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ngdc_bathy_10m_tutuila&showErrors=false&email=", "NOAA NGDC", "ngdc_bathy_10m_tutuila"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ngdc_bathy_10m_guam", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ngdc_bathy_10m_guam.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ngdc_bathy_10m_guam/request", "", "public", "NOAA/NGDC 10-m Bathymetry: Guam", "A 10-m (1/3 arc-second) resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding the island of Guam. It is referenced to a vertical tidal datum of Mean High Water (MHW) and was compiled from various data sources including: NOAA National Geophysical Data Center (NGDC); the U.S. Geological Survey (USGS); Naval Oceanographic Office (NAVOCEANO); Gaia Geo Analytical; and other federal, state, and local government agencies, academic institutions, and private companies. Developed for the National Tsunami Hazard Mitigation Program (NTHMP) to support NOAA's tsunami forecasting and modeling efforts. Not to be used for navigational purposes. When using these data, please cite: Chamberlin, C., 2008. A digital elevation model of Guam for tsunami inundation modeling, NOAA Pacific Marine Environmental Laboratory technical report, Seattle, WA, 7 pp. For further details, please see: https://www.ngdc.noaa.gov/dem/squareCellGrid/download/586\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ngdc_bathy_10m_guam_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ngdc_bathy_10m_guam_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ngdc_bathy_10m_guam/index.json", "https://www.ngdc.noaa.gov/dem/squareCellGrid/download/586", "http://upwell.pfeg.noaa.gov/erddap/rss/ngdc_bathy_10m_guam.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ngdc_bathy_10m_guam&showErrors=false&email=", "NOAA NGDC", "ngdc_bathy_10m_guam"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ngdc_bathy_10m_wake", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ngdc_bathy_10m_wake.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ngdc_bathy_10m_wake/request", "", "public", "NOAA/NGDC 10-m Bathymetry: USMOI: Wake Island", "A 10-m (1/3 arc-second) resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Wake Island in the Central Pacific Ocean, one of the U.S. Minor Outlying Islands (USMOI). It covers the three low coral islands--Peale, Wake, and Wilkes--that make up the island, and extends onto the slopes of its volcanic pedestal. It is referenced to a vertical tidal datum of Mean High Water (MHW) and was compiled from various data sources including: NOAA National Geophysical Data Center (NGDC); the U.S. National Ocean Service (NOS), the U.S. Geological Survey (USGS), the U.S. Army Corps of Engineers (USACE), the Federal Emergency Management Agency (FEMA), and other federal, state, and local government agencies, academic institutions, and private companies. Developed for the National Tsunami Hazard Mitigation Program (NTHMP) to support NOAA's tsunami forecasting and modeling efforts. Not to be used for navigational purposes. When using these data, please cite: Grothe, P.R., L.A. Taylor, B.W. Eakins, K.S. Carignan, R.R. Warnken, E. Lim, and R.J. Caldwell, 2010. Digital Elevation Models of Wake Island: Procedures, Data Sources and Analysis, NOAA Technical Memorandum NESDIS NGDC-32, Dept. of Commerce, Boulder, CO, 22 pp. For further details, please see: https://www.ngdc.noaa.gov/dem/squareCellGrid/download/634\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ngdc_bathy_10m_wake_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ngdc_bathy_10m_wake_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ngdc_bathy_10m_wake/index.json", "https://www.ngdc.noaa.gov/dem/squareCellGrid/download/634", "http://upwell.pfeg.noaa.gov/erddap/rss/ngdc_bathy_10m_wake.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ngdc_bathy_10m_wake&showErrors=false&email=", "NOAA NGDC", "ngdc_bathy_10m_wake"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ngdc_bathy_180m_mariana", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ngdc_bathy_180m_mariana.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ngdc_bathy_180m_mariana/request", "", "public", "NOAA/NGDC 180-m Bathymetry: Mariana Trench", "A 180-m (6 arc-second) resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) of the Western Pacific Ocean surrounding the Mariana Trench, the deepest part of the Earth's oceans. The extent of the DEM encompasses not only the Mariana Trench, but also the West Mariana Ridge and the East Mariana Ridge, the island of Guam, and the Commonwealth of the Northern Mariana Islands (CNMI). It was compiled from various data sources including international, federal, and academic partners. Not to be used for navigational purposes. When using these data, please cite: Lim, E., M.G. Sutherland, D.Z. Friday, B.W. Eakins, and S.J. McLean, 2013. Bathymetric Digital Elevation Model of the Mariana Trench, NOAA National Geophysical Data Center, U.S. Dept. of Commerce, Boulder, CO, 4 pp. For further details, please see: https://www.ngdc.noaa.gov/dem/squareCellGrid/download/4870\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ngdc_bathy_180m_mariana_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ngdc_bathy_180m_mariana_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ngdc_bathy_180m_mariana/index.json", "https://www.ngdc.noaa.gov/dem/squareCellGrid/download/4870", "http://upwell.pfeg.noaa.gov/erddap/rss/ngdc_bathy_180m_mariana.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ngdc_bathy_180m_mariana&showErrors=false&email=", "NOAA NGDC", "ngdc_bathy_180m_mariana"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ngdc_bathy_90m_amsamoa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ngdc_bathy_90m_amsamoa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ngdc_bathy_90m_amsamoa/request", "", "public", "NOAA/NGDC 90-m Bathymetry: American Samoa", "A 90-m (3 arc-second) resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding American Samoa, including the islands of Tutuila, Ofu, Olosega, and Tau. It is referenced to a vertical tidal datum of Mean High Water (MHW) and was compiled from various data sources including: NOAA National Geophysical Data Center (NGDC); the U.S. Geological Survey (USGS); Naval Oceanographic Office (NAVOCEANO); Gaia Geo Analytical; and other federal, state, and local government agencies, academic institutions, and private companies. Developed for the National Tsunami Hazard Mitigation Program (NTHMP) to support NOAA's tsunami forecasting and modeling efforts. Not to be used for navigational purposes. When using these data, please cite: Lim, E., L.A. Taylor, B.W. Eakins, K.S. Carignan, P.R. Grothe, R.J. Caldwell, and D.Z. Friday 2010. Digital Elevation Models of Pago Pago, American Samoa: Procedures, Data Sources and Analysis, NOAA Technical Memorandum NESDIS NGDC-36, Dept. of Commerce, Boulder, CO, 26 pp. For further details, please see: https://www.ngdc.noaa.gov/dem/squareCellGrid/download/647\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ngdc_bathy_90m_amsamoa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ngdc_bathy_90m_amsamoa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ngdc_bathy_90m_amsamoa/index.json", "https://www.ngdc.noaa.gov/dem/squareCellGrid/download/647", "http://upwell.pfeg.noaa.gov/erddap/rss/ngdc_bathy_90m_amsamoa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ngdc_bathy_90m_amsamoa&showErrors=false&email=", "NOAA NGDC", "ngdc_bathy_90m_amsamoa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_1m_apra", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_1m_apra.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_1m_apra/request", "", "public", "NOAA/PIBHMC 1-m Bathymetry: Guam: Apra Harbor", "A 1-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Apra Harbor on the west coast of Guam compiled from ship-borne multibeam sonar surveys. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_apra.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_1m_apra_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_1m_apra_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_1m_apra/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_apra.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_1m_apra.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_1m_apra&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_1m_apra"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_10m_swains", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_10m_swains.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_10m_swains/request", "", "public", "NOAA/PIBHMC 10-m Bathymetry: American Samoa: Swains", "A 10-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Swains Island in American Samoa compiled from ship-borne multibeam sonar surveys. Almost complete bottom coverage was achieved in depths between 8 and 300 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_amsamoa_swains.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_10m_swains_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_10m_swains_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_10m_swains/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_amsamoa_swains.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_10m_swains.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_10m_swains&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_10m_swains"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_10m_agrihan", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_10m_agrihan.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_10m_agrihan/request", "", "public", "NOAA/PIBHMC 10-m Bathymetry: CNMI: Agrihan", "A 10-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Agrihan Island in the Commonwealth of the Northern Mariana Islands (CNMI) compiled from ship-borne multibeam sonar surveys. Almost complete bottom coverage was achieved in depths between 4 and 800 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_agr.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_10m_agrihan_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_10m_agrihan_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_10m_agrihan/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_agr.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_10m_agrihan.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_10m_agrihan&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_10m_agrihan"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_10m_alamagan", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_10m_alamagan.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_10m_alamagan/request", "", "public", "NOAA/PIBHMC 10-m Bathymetry: CNMI: Alamagan", "A 10-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Alamagan Island in the Commonwealth of the Northern Mariana Islands (CNMI) compiled from ship-borne multibeam sonar surveys merged with coastal bathymetry derived from multipectral IKONOS satellite data. Almost complete bottom coverage was achieved in depths between 0 and 800 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_ala.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_10m_alamagan_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_10m_alamagan_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_10m_alamagan/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_ala.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_10m_alamagan.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_10m_alamagan&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_10m_alamagan"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_10m_asuncion", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_10m_asuncion.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_10m_asuncion/request", "", "public", "NOAA/PIBHMC 10-m Bathymetry: CNMI: Asuncion", "A 10-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Asuncion Island in the Commonwealth of the Northern Mariana Islands (CNMI) compiled from ship-borne multibeam sonar surveys merged with coastal bathymetry derived from multipectral IKONOS satellite data. Almost complete bottom coverage was achieved in depths between 0 and 800 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_asu.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_10m_asuncion_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_10m_asuncion_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_10m_asuncion/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_asu.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_10m_asuncion.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_10m_asuncion&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_10m_asuncion"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_10m_pajaros", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_10m_pajaros.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_10m_pajaros/request", "", "public", "NOAA/PIBHMC 10-m Bathymetry: CNMI: Farallon De Pajaros", "A 10-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding the island of Farallon de Pajaros in the Commonwealth of the Northern Mariana Islands (CNMI) compiled from ship-borne multibeam sonar surveys. Almost complete bottom coverage was achieved in depths between 4 and 800 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_fdp.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_10m_pajaros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_10m_pajaros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_10m_pajaros/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_fdp.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_10m_pajaros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_10m_pajaros&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_10m_pajaros"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_10m_guguan", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_10m_guguan.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_10m_guguan/request", "", "public", "NOAA/PIBHMC 10-m Bathymetry: CNMI: Guguan", "A 10-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Guguan Island in the Commonwealth of the Northern Mariana Islands (CNMI) compiled from ship-borne multibeam sonar surveys. Almost complete bottom coverage was achieved in depths between 7 and 800 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_gug.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_10m_guguan_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_10m_guguan_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_10m_guguan/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_gug.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_10m_guguan.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_10m_guguan&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_10m_guguan"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_10m_maug", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_10m_maug.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_10m_maug/request", "", "public", "NOAA/PIBHMC 10-m Bathymetry: CNMI: Maug", "A 10-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Maug Island in the Commonwealth of the Northern Mariana Islands (CNMI) compiled from ship-borne multibeam sonar surveys merged with coastal bathymetry derived from multipectral IKONOS satellite data. Almost complete bottom coverage was achieved in depths between 0 and 800 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_mau.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_10m_maug_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_10m_maug_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_10m_maug/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_mau.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_10m_maug.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_10m_maug&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_10m_maug"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_10m_pagan", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_10m_pagan.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_10m_pagan/request", "", "public", "NOAA/PIBHMC 10-m Bathymetry: CNMI: Pagan", "A 10-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Pagan Island in the Commonwealth of the Northern Mariana Islands (CNMI) compiled from ship-borne multibeam sonar surveys. Almost complete bottom coverage was achieved in depths between 5 and 800 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_pag.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_10m_pagan_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_10m_pagan_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_10m_pagan/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_pag.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_10m_pagan.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_10m_pagan&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_10m_pagan"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_10m_sarigan", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_10m_sarigan.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_10m_sarigan/request", "", "public", "NOAA/PIBHMC 10-m Bathymetry: CNMI: Sarigan", "A 10-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Sarigan Island in the Commonwealth of the Northern Mariana Islands (CNMI) compiled from ship-borne multibeam sonar surveys merged with coastal bathymetry derived from multipectral WorldView-2 (WV-2) satellite data. Almost complete bottom coverage was achieved in depths between 0 and 800 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_sar.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_10m_sarigan_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_10m_sarigan_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_10m_sarigan/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_sar.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_10m_sarigan.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_10m_sarigan&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_10m_sarigan"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_10m_supply", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_10m_supply.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_10m_supply/request", "", "public", "NOAA/PIBHMC 10-m Bathymetry: CNMI: Supply Reef", "A 10-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Supply Reef in the Commonwealth of the Northern Mariana Islands (CNMI) compiled from ship-borne multibeam sonar surveys. Supply Reef is an active submarine volcano located approximately 547 km north of Saipan and 10 km northwest of Maug Island. Almost complete bottom coverage was achieved in depths between 8 and 800 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_sup.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_10m_supply_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_10m_supply_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_10m_supply/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_sup.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_10m_supply.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_10m_supply&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_10m_supply"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_2m_agrihan", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_2m_agrihan.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_2m_agrihan/request", "", "public", "NOAA/PIBHMC 2-m Bathymetry: CNMI: Agrihan", "A 2-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Agrihan Island in the Commonwealth of the Northern Mariana Islands (CNMI) derived from multipectral WorldView-2 (WV-2) satellite data. Almost complete bottom coverage was achieved in depths between 0 and 20 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_agr.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_2m_agrihan_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_2m_agrihan_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_2m_agrihan/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_agr.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_2m_agrihan.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_2m_agrihan&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_2m_agrihan"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_20m_nebank", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_20m_nebank.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_20m_nebank/request", "", "public", "NOAA/PIBHMC 20-m Bathymetry: American Samoa: Northeast Bank", "A 20-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Northeast Bank in American Samoa compiled from ship-borne multibeam sonar surveys. Northeast Bank (also called Muli Seamount) lies approximately 60 km northeast of Tutuila and 50 km northwest of Ofu Island. Almost complete bottom coverage was achieved in depths between 48 and 1822 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_amsamoa_neb.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_20m_nebank_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_20m_nebank_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_20m_nebank/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_amsamoa_neb.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_20m_nebank.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_20m_nebank&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_20m_nebank"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_20m_jarvis", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_20m_jarvis.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_20m_jarvis/request", "", "public", "NOAA/PIBHMC 20-m Bathymetry: USMOI: Jarvis Island", "A 20-m resolution gridded digital elevation model (DEM) compiled from ship-borne multibeam sonar surveys for the bathymetry (ocean depth) surrounding Jarvis Island in the Central Pacific Ocean, a U.S. Minor Outlying Island (USMOI). Almost complete bottom coverage was achieved in depths between 3 and 3600 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_pria_jar_bathy.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_20m_jarvis_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_20m_jarvis_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_20m_jarvis/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_pria_jar_bathy.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_20m_jarvis.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_20m_jarvis&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_20m_jarvis"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_20m_johnston", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_20m_johnston.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_20m_johnston/request", "", "public", "NOAA/PIBHMC 20-m Bathymetry: USMOI: Johnston Atoll", "A 20-m resolution gridded digital elevation model (DEM) compiled from ship-borne multibeam sonar surveys for the bathymetry (ocean depth) surrounding Johnston Atoll in the Central Pacific Ocean, a U.S. Minor Outlying Island (USMOI). Almost complete bottom coverage was achieved in depths between 8 and 4100 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_pria_joh_bathy.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_20m_johnston_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_20m_johnston_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_20m_johnston/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_pria_joh_bathy.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_20m_johnston.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_20m_johnston&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_20m_johnston"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_20m_kingman", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_20m_kingman.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_20m_kingman/request", "", "public", "NOAA/PIBHMC 20-m Bathymetry: USMOI: Kingman Reef", "A 20-m resolution gridded digital elevation model (DEM) compiled from ship-borne multibeam sonar surveys for the bathymetry (ocean depth) surrounding Kingman Reef in the Central Pacific Ocean, a U.S. Minor Outlying Island (USMOI). Almost complete bottom coverage was achieved in depths between 3 and 3500 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_pria_kin_bathy.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_20m_kingman_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_20m_kingman_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_20m_kingman/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_pria_kin_bathy.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_20m_kingman.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_20m_kingman&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_20m_kingman"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_40m_rose", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_40m_rose.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_40m_rose/request", "", "public", "NOAA/PIBHMC 40-m Bathymetry: American Samoa: Rose Atoll", "A 40-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Rose Atoll in American Samoa compiled from ship-borne multibeam sonar surveys. Almost complete bottom coverage was achieved in depths between 2 and 4655 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_amsamoa_rose.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_40m_rose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_40m_rose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_40m_rose/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_amsamoa_rose.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_40m_rose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_40m_rose&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_40m_rose"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_40m_swains", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_40m_swains.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_40m_swains/request", "", "public", "NOAA/PIBHMC 40-m Bathymetry: American Samoa: Swains", "A 40-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Swains Island in American Samoa compiled from ship-borne multibeam sonar surveys. Almost complete bottom coverage was achieved in depths between 7 and 4800 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_amsamoa_swains.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_40m_swains_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_40m_swains_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_40m_swains/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_amsamoa_swains.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_40m_swains.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_40m_swains&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_40m_swains"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_40m_twoperbank", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_40m_twoperbank.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_40m_twoperbank/request", "", "public", "NOAA/PIBHMC 40-m Bathymetry: American Samoa: Two Percent Bank", "A 40-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Two Percent Bank in American Samoa compiled from ship-borne multibeam sonar surveys. Two Percent Bank (also called Tulaga Seamount) lies approximately 70 km southeast of Tutuila and 60 km southwest of Ofu Island. Almost complete bottom coverage was achieved in depths between 78 and 2221 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_amsamoa_two.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_40m_twoperbank_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_40m_twoperbank_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_40m_twoperbank/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_amsamoa_two.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_40m_twoperbank.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_40m_twoperbank&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_40m_twoperbank"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_40m_vailuluu", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_40m_vailuluu.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_40m_vailuluu/request", "", "public", "NOAA/PIBHMC 40-m Bathymetry: American Samoa: Vailuluu", "A 40-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Vailuluu Seamount in American Samoa compiled from ship-borne multibeam sonar surveys. Vailuluu Seamount is an active submarine volcano located approximately 50 km to the east of Tau Island. Almost complete bottom coverage was achieved in depths between 583 and 3017 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_amsamoa_vailuluu.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_40m_vailuluu_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_40m_vailuluu_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_40m_vailuluu/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_amsamoa_vailuluu.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_40m_vailuluu.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_40m_vailuluu&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_40m_vailuluu"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_40m_baker", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_40m_baker.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_40m_baker/request", "", "public", "NOAA/PIBHMC 40-m Bathymetry: USMOI: Baker Island", "A 40-m resolution gridded digital elevation model (DEM) compiled from ship-borne multibeam sonar surveys for the bathymetry (ocean depth) surrounding Baker Island in the Central Pacific Ocean, a U.S. Minor Outlying Island (USMOI). Almost complete bottom coverage was achieved in depths between 8 and 4700 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_pria_bak_bathy.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_40m_baker_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_40m_baker_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_40m_baker/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_pria_bak_bathy.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_40m_baker.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_40m_baker&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_40m_baker"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_40m_howland", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_40m_howland.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_40m_howland/request", "", "public", "NOAA/PIBHMC 40-m Bathymetry: USMOI: Howland Island", "A 40-m resolution gridded digital elevation model (DEM) compiled from ship-borne multibeam sonar surveys for the bathymetry (ocean depth) surrounding Howland Island in the Central Pacific Ocean, a U.S. Minor Outlying Island (USMOI). Almost complete bottom coverage was achieved in depths between 8 and 3800 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_pria_how_bathy.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_40m_howland_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_40m_howland_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_40m_howland/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_pria_how_bathy.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_40m_howland.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_40m_howland&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_40m_howland"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_40m_palmyra", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_40m_palmyra.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_40m_palmyra/request", "", "public", "NOAA/PIBHMC 40-m Bathymetry: USMOI: Palmyra Atoll", "A 40-m resolution gridded digital elevation model (DEM) compiled from ship-borne multibeam sonar surveys for the bathymetry (ocean depth) of the lagoon, shelf, and slope environments of Palmyra Atoll in the Central Pacific Ocean, a U.S. Minor Outlying Island (USMOI). Almost complete bottom coverage was achieved in depths between 3 and 3500 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_pria_pal_bathy.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_40m_palmyra_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_40m_palmyra_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_40m_palmyra/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_pria_pal_bathy.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_40m_palmyra.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_40m_palmyra&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_40m_palmyra"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_nebank", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_nebank.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_5m_nebank/request", "", "public", "NOAA/PIBHMC 5-m Bathymetry: American Samoa: Northeast Bank", "A 5-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Northeast Bank in American Samoa compiled from ship-borne multibeam sonar surveys. Northeast Bank (also called Muli Seamount) lies approximately 60 km northeast of Tutuila and 50 km northwest of Ofu Island. Almost complete bottom coverage was achieved in depths between 48 and 150 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_amsamoa_neb.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_5m_nebank_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_5m_nebank_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_5m_nebank/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_amsamoa_neb.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_5m_nebank.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_5m_nebank&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_5m_nebank"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_ofuolosega", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_ofuolosega.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_5m_ofuolosega/request", "", "public", "NOAA/PIBHMC 5-m Bathymetry: American Samoa: Ofu And Olosega", "A 5-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding the islands of Ofu and Olosega in American Samoa compiled from ship-borne multibeam sonar surveys merged with coastal bathymetry derived from multipectral IKONOS satellite data. Almost complete bottom coverage was achieved in depths between 0 and 300 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_amsamoa_ofu.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_5m_ofuolosega_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_5m_ofuolosega_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_5m_ofuolosega/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_amsamoa_ofu.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_5m_ofuolosega.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_5m_ofuolosega&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_5m_ofuolosega"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_rose", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_rose.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_5m_rose/request", "", "public", "NOAA/PIBHMC 5-m Bathymetry: American Samoa: Rose Atoll", "A 5-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Rose Atoll in American Samoa compiled from ship-borne multibeam sonar surveys merged with coastal bathymetry derived from multipectral IKONOS satellite data. Almost complete bottom coverage was achieved in depths between 0 and 300 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_amsamoa_rose.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_5m_rose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_5m_rose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_5m_rose/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_amsamoa_rose.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_5m_rose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_5m_rose&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_5m_rose"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_swains", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_swains.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_5m_swains/request", "", "public", "NOAA/PIBHMC 5-m Bathymetry: American Samoa: Swains", "A 5-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Swains Island in American Samoa compiled from ship-borne multibeam sonar surveys merged with coastal bathymetry derived from multipectral WorldView-2 (WV-2) satellite data. Almost complete bottom coverage was achieved in depths between 3 and 383 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_amsamoa_swains.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_5m_swains_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_5m_swains_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_5m_swains/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_amsamoa_swains.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_5m_swains.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_5m_swains&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_5m_swains"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_tau", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_tau.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_5m_tau/request", "", "public", "NOAA/PIBHMC 5-m Bathymetry: American Samoa: Tau", "A 5-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Tau Island in American Samoa compiled from ship-borne multibeam sonar surveys merged with coastal bathymetry derived from multipectral IKONOS satellite data. Almost complete bottom coverage was achieved in depths between 0 and 350 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_amsamoa_tau.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_5m_tau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_5m_tau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_5m_tau/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_amsamoa_tau.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_5m_tau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_5m_tau&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_5m_tau"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_tutuila", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_tutuila.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_5m_tutuila/request", "", "public", "NOAA/PIBHMC 5-m Bathymetry: American Samoa: Tutuila", "A 5-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Tutuila Island in American Samoa compiled from ship-borne multibeam sonar surveys merged with coastal bathymetry derived from multipectral IKONOS satellite data. Almost complete bottom coverage was achieved in depths between 0 and 250 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_amsamoa_tutuila.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_5m_tutuila_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_5m_tutuila_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_5m_tutuila/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_amsamoa_tutuila.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_5m_tutuila.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_5m_tutuila&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_5m_tutuila"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_alamagan", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_alamagan.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_5m_alamagan/request", "", "public", "NOAA/PIBHMC 5-m Bathymetry: CNMI: Alamagan", "A 5-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Alamagan Island in the Commonwealth of the Northern Mariana Islands (CNMI) compiled from ship-borne multibeam sonar surveys merged with coastal bathymetry derived from multipectral IKONOS satellite data. Almost complete bottom coverage was achieved in depths between 0 and 380 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_ala.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_5m_alamagan_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_5m_alamagan_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_5m_alamagan/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_ala.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_5m_alamagan.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_5m_alamagan&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_5m_alamagan"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_asuncion", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_asuncion.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_5m_asuncion/request", "", "public", "NOAA/PIBHMC 5-m Bathymetry: CNMI: Asuncion", "A 5-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Asuncion Island in the Commonwealth of the Northern Mariana Islands (CNMI) compiled from ship-borne multibeam sonar surveys merged with coastal bathymetry derived from multipectral IKONOS satellite data. Almost complete bottom coverage was achieved in depths between 0 and 500 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_asu.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_5m_asuncion_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_5m_asuncion_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_5m_asuncion/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_asu.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_5m_asuncion.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_5m_asuncion&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_5m_asuncion"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_medinilla", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_medinilla.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_5m_medinilla/request", "", "public", "NOAA/PIBHMC 5-m Bathymetry: CNMI: Farallon De Medinilla", "A 5-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding the island of Farallon de Medinilla in the Commonwealth of the Northern Mariana Islands (CNMI) compiled from ship-borne multibeam sonar surveys. Almost complete bottom coverage was achieved in depths between 31 and 468 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_fdm.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_5m_medinilla_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_5m_medinilla_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_5m_medinilla/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_fdm.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_5m_medinilla.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_5m_medinilla&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_5m_medinilla"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_marpi", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_marpi.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_5m_marpi/request", "", "public", "NOAA/PIBHMC 5-m Bathymetry: CNMI: Marpi Bank", "A 5-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Marpi Bank in the Commonwealth of the Northern Mariana Islands (CNMI) compiled from ship-borne multibeam sonar surveys. Marpi Bank is a steep-sided, flat-topped submerged bank approximately 28 km north of Saipan. Almost complete bottom coverage was achieved in depths between 53 and 400 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_sai.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_5m_marpi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_5m_marpi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_5m_marpi/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_sai.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_5m_marpi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_5m_marpi&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_5m_marpi"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_maug", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_maug.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_5m_maug/request", "", "public", "NOAA/PIBHMC 5-m Bathymetry: CNMI: Maug", "A 5-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Maug Island in the Commonwealth of the Northern Mariana Islands (CNMI) compiled from ship-borne multibeam sonar surveys merged with coastal bathymetry derived from multipectral IKONOS satellite data. Almost complete bottom coverage was achieved in depths between 0 and 500 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_mau.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_5m_maug_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_5m_maug_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_5m_maug/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_mau.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_5m_maug.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_5m_maug&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_5m_maug"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_rota", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_rota.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_5m_rota/request", "", "public", "NOAA/PIBHMC 5-m Bathymetry: CNMI: Rota", "A 5-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Rota Island in the Commonwealth of the Northern Mariana Islands (CNMI) compiled from ship-borne multibeam sonar surveys merged with coastal bathymetry derived from multipectral WorldView-2 (WV-2) satellite data. Almost complete bottom coverage was achieved in depths between 0 and 500 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_rot.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_5m_rota_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_5m_rota_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_5m_rota/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_rot.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_5m_rota.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_5m_rota&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_5m_rota"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_saipan", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_saipan.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_5m_saipan/request", "", "public", "NOAA/PIBHMC 5-m Bathymetry: CNMI: Saipan", "A 5-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding the island of Saipan in the Commonwealth of the Northern Mariana Islands (CNMI) compiled from ship-borne multibeam sonar surveys merged with coastal bathymetry derived from multipectral WorldView-2 (WV-2) satellite data and aerial LiDAR data. Almost complete bottom coverage was achieved in depths between 0 and 600 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_sai.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_5m_saipan_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_5m_saipan_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_5m_saipan/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_sai.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_5m_saipan.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_5m_saipan&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_5m_saipan"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_tinian", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_tinian.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_5m_tinian/request", "", "public", "NOAA/PIBHMC 5-m Bathymetry: CNMI: Tinian", "A 5-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Tinian Island in the Commonwealth of the Northern Mariana Islands (CNMI) compiled from ship-borne multibeam sonar surveys merged with coastal bathymetry derived from multipectral IKONOS satellite data and aerial LiDAR data. Includes nearby Aguijan Island and Tatsumi Bank. Almost complete bottom coverage was achieved in depths between 0 and 400 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_tin.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_5m_tinian_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_5m_tinian_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_5m_tinian/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_tin.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_5m_tinian.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_5m_tinian&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_5m_tinian"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_guam", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_guam.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_5m_guam/request", "", "public", "NOAA/PIBHMC 5-m Bathymetry: Guam", "A 5-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Guam compiled from ship-borne multibeam sonar surveys merged with bathymetry derived from aerial LiDAR data. Almost complete bottom coverage was achieved in depths between 0 and 400 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_gua.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_5m_guam_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_5m_guam_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_5m_guam/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_gua.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_5m_guam.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_5m_guam&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_5m_guam"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_baker", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_baker.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_5m_baker/request", "", "public", "NOAA/PIBHMC 5-m Bathymetry: USMOI: Baker Island", "A 5-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Baker Island in the Central Pacific Ocean, a U.S. Minor Outlying Island (USMOI), compiled from ship-borne multibeam sonar surveys merged with coastal bathymetry derived from multipectral WorldView-2 (WV-2) satellite data. Almost complete bottom coverage was achieved in depths between 0 and 300 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_pria_bak.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_5m_baker_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_5m_baker_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_5m_baker/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_pria_bak.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_5m_baker.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_5m_baker&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_5m_baker"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_howland", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_howland.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_5m_howland/request", "", "public", "NOAA/PIBHMC 5-m Bathymetry: USMOI: Howland Island", "A 5-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Howland Island in the Central Pacific Ocean, a U.S. Minor Outlying Island (USMOI), compiled from ship-borne multibeam sonar surveys. Almost complete bottom coverage was achieved in depths between 3 and 300 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_pria_how.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_5m_howland_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_5m_howland_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_5m_howland/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_pria_how.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_5m_howland.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_5m_howland&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_5m_howland"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_jarvis", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_jarvis.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_5m_jarvis/request", "", "public", "NOAA/PIBHMC 5-m Bathymetry: USMOI: Jarvis Island", "A 5-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Jarvis Island in the Central Pacific Ocean, a U.S. Minor Outlying Island (USMOI), compiled from ship-borne multibeam sonar surveys. Almost complete bottom coverage was achieved in depths between 3 and 300 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_pria_jar.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_5m_jarvis_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_5m_jarvis_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_5m_jarvis/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_pria_jar.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_5m_jarvis.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_5m_jarvis&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_5m_jarvis"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_johnston", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_johnston.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_5m_johnston/request", "", "public", "NOAA/PIBHMC 5-m Bathymetry: USMOI: Johnston Atoll", "A 5-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Johnston Atoll in the Central Pacific Ocean, a U.S. Minor Outlying Island (USMOI), compiled from ship-borne multibeam sonar surveys merged with coastal bathymetry derived from multipectral IKONOS satellite data. Almost complete bottom coverage was achieved in depths between 0 and 150 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_pria_joh.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_5m_johnston_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_5m_johnston_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_5m_johnston/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_pria_joh.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_5m_johnston.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_5m_johnston&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_5m_johnston"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_kingman", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_kingman.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_5m_kingman/request", "", "public", "NOAA/PIBHMC 5-m Bathymetry: USMOI: Kingman Reef", "A 5-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Kingman Reef in the Central Pacific Ocean, a U.S. Minor Outlying Island (USMOI), compiled from ship-borne multibeam sonar surveys merged with coastal bathymetry derived from multipectral IKONOS satellite data. Almost complete bottom coverage was achieved in depths between 0 and 345 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_pria_kin.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_5m_kingman_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_5m_kingman_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_5m_kingman/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_pria_kin.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_5m_kingman.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_5m_kingman&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_5m_kingman"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_palmyra", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_5m_palmyra.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_5m_palmyra/request", "", "public", "NOAA/PIBHMC 5-m Bathymetry: USMOI: Palmyra Atoll", "A 5-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Palmyra Atoll in the Central Pacific Ocean, a U.S. Minor Outlying Island (USMOI), compiled from ship-borne multibeam sonar surveys merged with coastal bathymetry derived from multipectral IKONOS satellite data. Almost complete bottom coverage was achieved in depths between 0 and 300 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_pria_pal.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_5m_palmyra_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_5m_palmyra_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_5m_palmyra/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_pria_pal.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_5m_palmyra.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_5m_palmyra&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_5m_palmyra"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_60m_rota", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_60m_rota.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_60m_rota/request", "", "public", "NOAA/PIBHMC 60-m Bathymetry: CNMI: Rota", "A 60-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Rota Island in the Commonwealth of the Northern Mariana Islands (CNMI) compiled from ship-borne multibeam sonar surveys. Almost complete bottom coverage was achieved in depths between 5 and 1890 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_rot.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_60m_rota_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_60m_rota_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_60m_rota/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_rot.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_60m_rota.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_60m_rota&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_60m_rota"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_60m_guam", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pibhmc_bathy_60m_guam.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pibhmc_bathy_60m_guam/request", "", "public", "NOAA/PIBHMC 60-m Bathymetry: Guam", "A 60-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) surrounding Guam compiled from ship-borne multibeam sonar surveys. Almost complete bottom coverage was achieved in depths between 3 and 3500 m. Data collected by the NOAA Coral Reef Ecosystem Division (CRED) Pacific Islands Benthic Habitat Mapping Center (PIBHMC) in support of NOAA's Coral Reef Conservation Program. Not to be used for navigational purposes. For further details, please see: http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_gua.htm\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pibhmc_bathy_60m_guam_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pibhmc_bathy_60m_guam_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pibhmc_bathy_60m_guam/index.json", "http://www.soest.hawaii.edu/pibhmc/pibhmc_cnmi_gua.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/pibhmc_bathy_60m_guam.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pibhmc_bathy_60m_guam&showErrors=false&email=", "NOAA PIBHMC", "pibhmc_bathy_60m_guam"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fdf_6cd9_f75a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fdf_6cd9_f75a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1fdf_6cd9_f75a/request", "", "public", "NODC (Levitus) World Ocean Atlas Annual LTM (Top Dataset, nodc.woa94, otemp.hr.annltm), 0.25\u00b0, 0001", "National Oceanographic Data Center (NODC) (Levitus) World Ocean Atlas Annual Long Term Mean (LTM) (Top Dataset, nodc.woa94, otemp.hr.annltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Annual LTM Ocean Temp. on Multiple Levels, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1fdf_6cd9_f75a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1fdf_6cd9_f75a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1fdf_6cd9_f75a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa94.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1fdf_6cd9_f75a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1fdf_6cd9_f75a&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_1fdf_6cd9_f75a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34e9_e1f4_85e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34e9_e1f4_85e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_34e9_e1f4_85e1/request", "", "public", "NODC (Levitus) World Ocean Atlas Annual LTM (Top Dataset, nodc.woa94, salt.hr.annltm), 0.25\u00b0, 0001", "National Oceanographic Data Center (NODC) (Levitus) World Ocean Atlas Annual Long Term Mean (LTM) (Top Dataset, nodc.woa94, salt.hr.annltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Annual LTM Salinity on Multiple Levels, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_34e9_e1f4_85e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_34e9_e1f4_85e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_34e9_e1f4_85e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa94.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_34e9_e1f4_85e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_34e9_e1f4_85e1&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_34e9_e1f4_85e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec71_3e31_f5ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec71_3e31_f5ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ec71_3e31_f5ff/request", "", "public", "NODC (Levitus) World Ocean Atlas Monthly LTM (Top Dataset, nodc.woa94, chi.mon.ltm), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) (Levitus) World Ocean Atlas Monthly Long Term Mean (LTM) (Top Dataset, nodc.woa94, chi.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Monthly LTM Salinity Nobs on Multiple Levels, observations)\nmask (if nobs > 4, then 1 else 0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ec71_3e31_f5ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ec71_3e31_f5ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ec71_3e31_f5ff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa94.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ec71_3e31_f5ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ec71_3e31_f5ff&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_ec71_3e31_f5ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12a4_5e5f_007a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12a4_5e5f_007a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_12a4_5e5f_007a/request", "", "public", "NODC (Levitus) World Ocean Atlas Monthly LTM (Top Dataset, nodc.woa94, mldpd.mnltm), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) (Levitus) World Ocean Atlas Monthly Long Term Mean (LTM) (Top Dataset, nodc.woa94, mldpd.mnltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nmldpd (Monthly LTM Mixed Layer Depth via Potential Density, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_12a4_5e5f_007a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_12a4_5e5f_007a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_12a4_5e5f_007a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa94.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_12a4_5e5f_007a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_12a4_5e5f_007a&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_12a4_5e5f_007a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca17_1cab_ca59", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca17_1cab_ca59.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca17_1cab_ca59/request", "", "public", "NODC (Levitus) World Ocean Atlas Monthly LTM (Top Dataset, nodc.woa94, mldpt.mnltm), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) (Levitus) World Ocean Atlas Monthly Long Term Mean (LTM) (Top Dataset, nodc.woa94, mldpt.mnltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nmldpt (Monthly LTM Mixed Layer Depth via Potential Temperature, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca17_1cab_ca59_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca17_1cab_ca59_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca17_1cab_ca59/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa94.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca17_1cab_ca59.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca17_1cab_ca59&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_ca17_1cab_ca59"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4278_5963_7f2c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4278_5963_7f2c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4278_5963_7f2c/request", "", "public", "NODC (Levitus) World Ocean Atlas Monthly LTM (Top Dataset, nodc.woa94, otemp.mnltm), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) (Levitus) World Ocean Atlas Monthly Long Term Mean (LTM) (Top Dataset, nodc.woa94, otemp.mnltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Monthly LTM Ocean Temperature on Multiple Levels, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4278_5963_7f2c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4278_5963_7f2c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4278_5963_7f2c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa94.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4278_5963_7f2c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4278_5963_7f2c&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_4278_5963_7f2c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb14_2486_1033", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb14_2486_1033.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb14_2486_1033/request", "", "public", "NODC (Levitus) World Ocean Atlas Monthly LTM (Top Dataset, nodc.woa94, otemp.nobs.mnltm), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) (Levitus) World Ocean Atlas Monthly Long Term Mean (LTM) (Top Dataset, nodc.woa94, otemp.nobs.mnltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Monthly LTM Ocean Temperature Nobs on Multiple Levels, observations)\nmask (if nobs > 4, then 1 else 0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb14_2486_1033_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb14_2486_1033_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb14_2486_1033/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa94.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb14_2486_1033.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb14_2486_1033&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_cb14_2486_1033"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_283c_1d90_8f36", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_283c_1d90_8f36.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_283c_1d90_8f36/request", "", "public", "NODC (Levitus) World Ocean Atlas Monthly LTM (Top Dataset, nodc.woa94, salt.mnltm), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) (Levitus) World Ocean Atlas Monthly Long Term Mean (LTM) (Top Dataset, nodc.woa94, salt.mnltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Monthly LTM Salinity on Multiple Levels, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_283c_1d90_8f36_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_283c_1d90_8f36_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_283c_1d90_8f36/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa94.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_283c_1d90_8f36.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_283c_1d90_8f36&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_283c_1d90_8f36"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c66a_ec83_f9c2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c66a_ec83_f9c2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c66a_ec83_f9c2/request", "", "public", "NODC (Levitus) World Ocean Atlas Monthly LTM (Top Dataset, nodc.woa94, salt.nobs.mnltm), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) (Levitus) World Ocean Atlas Monthly Long Term Mean (LTM) (Top Dataset, nodc.woa94, salt.nobs.mnltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Monthly LTM Salinity Nobs on Multiple Levels, observations)\nmask (if nobs > 4, then 1 else 0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c66a_ec83_f9c2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c66a_ec83_f9c2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c66a_ec83_f9c2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa94.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c66a_ec83_f9c2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c66a_ec83_f9c2&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_c66a_ec83_f9c2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e37_91d6_dd04", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e37_91d6_dd04.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e37_91d6_dd04/request", "", "public", "NODC World Ocean Atlas 1998 (Top Dataset, masks, basin), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, masks, basin)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nbasin (Basin Index 1-57)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e37_91d6_dd04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e37_91d6_dd04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e37_91d6_dd04/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e37_91d6_dd04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e37_91d6_dd04&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_0e37_91d6_dd04"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6ce0_24e6_6a90", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6ce0_24e6_6a90.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6ce0_24e6_6a90/request", "", "public", "Northeast Pacific Regional Climatology : salinity Annual 0.10 degree (salinity annual tenth), 0.100000024\u00b0, 0000", "Climatological mean salinity for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6ce0_24e6_6a90_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6ce0_24e6_6a90_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6ce0_24e6_6a90/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6ce0_24e6_6a90.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6ce0_24e6_6a90&showErrors=false&email=", "NOAA", "noaa_nodc_6ce0_24e6_6a90"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a2c0_af26_3943", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a2c0_af26_3943.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_a2c0_af26_3943/request", "", "public", "Northeast Pacific Regional Climatology : salinity Annual 0.25 degree (salinity annual quarter), 0000", "Climatological mean salinity for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_a2c0_af26_3943_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_a2c0_af26_3943_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_a2c0_af26_3943/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_a2c0_af26_3943.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_a2c0_af26_3943&showErrors=false&email=", "NOAA", "noaa_nodc_a2c0_af26_3943"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6f00_9648_53de", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6f00_9648_53de.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6f00_9648_53de/request", "", "public", "Northeast Pacific Regional Climatology : salinity Annual 1.00 degree (salinity annual one), 0000", "Climatological mean salinity for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6f00_9648_53de_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6f00_9648_53de_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6f00_9648_53de/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6f00_9648_53de.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6f00_9648_53de&showErrors=false&email=", "NOAA", "noaa_nodc_6f00_9648_53de"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5e9d_7b31_f15d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5e9d_7b31_f15d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_5e9d_7b31_f15d/request", "", "public", "Northeast Pacific Regional Climatology : salinity November 0.10 degree (salinity monthly tenth), 0.100000024\u00b0, 0000", "Climatological mean salinity for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_5e9d_7b31_f15d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_5e9d_7b31_f15d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_5e9d_7b31_f15d/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_5e9d_7b31_f15d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_5e9d_7b31_f15d&showErrors=false&email=", "NOAA", "noaa_nodc_5e9d_7b31_f15d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e6e0_e98e_47a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e6e0_e98e_47a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e6e0_e98e_47a6/request", "", "public", "Northeast Pacific Regional Climatology : salinity November 0.25 degree, 0000", "Climatological mean salinity for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e6e0_e98e_47a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e6e0_e98e_47a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e6e0_e98e_47a6/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e6e0_e98e_47a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e6e0_e98e_47a6&showErrors=false&email=", "NOAA", "noaa_nodc_e6e0_e98e_47a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ee9f_3ed7_86ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ee9f_3ed7_86ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_ee9f_3ed7_86ee/request", "", "public", "Northeast Pacific Regional Climatology : salinity November 1.00 degree (salinity monthly one), 0000", "Climatological mean salinity for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_ee9f_3ed7_86ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_ee9f_3ed7_86ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_ee9f_3ed7_86ee/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_ee9f_3ed7_86ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_ee9f_3ed7_86ee&showErrors=false&email=", "NOAA", "noaa_nodc_ee9f_3ed7_86ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7a60_6a8c_e2ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7a60_6a8c_e2ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7a60_6a8c_e2ea/request", "", "public", "Northeast Pacific Regional Climatology : salinity Summer (Jul-Sep) 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean salinity for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7a60_6a8c_e2ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7a60_6a8c_e2ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7a60_6a8c_e2ea/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7a60_6a8c_e2ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7a60_6a8c_e2ea&showErrors=false&email=", "NOAA", "noaa_nodc_7a60_6a8c_e2ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4bcf_d2e2_d62c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4bcf_d2e2_d62c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_4bcf_d2e2_d62c/request", "", "public", "Northeast Pacific Regional Climatology : salinity Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean salinity for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_4bcf_d2e2_d62c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_4bcf_d2e2_d62c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_4bcf_d2e2_d62c/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_4bcf_d2e2_d62c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_4bcf_d2e2_d62c&showErrors=false&email=", "NOAA", "noaa_nodc_4bcf_d2e2_d62c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e542_7291_e227", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e542_7291_e227.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e542_7291_e227/request", "", "public", "Northeast Pacific Regional Climatology : salinity Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean salinity for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e542_7291_e227_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e542_7291_e227_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e542_7291_e227/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e542_7291_e227.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e542_7291_e227&showErrors=false&email=", "NOAA", "noaa_nodc_e542_7291_e227"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e2e7_50cb_cbd1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e2e7_50cb_cbd1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e2e7_50cb_cbd1/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Annual 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e2e7_50cb_cbd1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e2e7_50cb_cbd1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e2e7_50cb_cbd1/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e2e7_50cb_cbd1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e2e7_50cb_cbd1&showErrors=false&email=", "NOAA", "noaa_nodc_e2e7_50cb_cbd1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_d038_1191_14f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_d038_1191_14f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_d038_1191_14f1/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_d038_1191_14f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_d038_1191_14f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_d038_1191_14f1/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_d038_1191_14f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_d038_1191_14f1&showErrors=false&email=", "NOAA", "noaa_nodc_d038_1191_14f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6341_06e2_a6ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6341_06e2_a6ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6341_06e2_a6ee/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6341_06e2_a6ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6341_06e2_a6ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6341_06e2_a6ee/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6341_06e2_a6ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6341_06e2_a6ee&showErrors=false&email=", "NOAA", "noaa_nodc_6341_06e2_a6ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0265_d582_2eb1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0265_d582_2eb1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_0265_d582_2eb1/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature November 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_0265_d582_2eb1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_0265_d582_2eb1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_0265_d582_2eb1/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_0265_d582_2eb1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_0265_d582_2eb1&showErrors=false&email=", "NOAA", "noaa_nodc_0265_d582_2eb1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1a13_9f47_37a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1a13_9f47_37a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_1a13_9f47_37a0/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_1a13_9f47_37a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_1a13_9f47_37a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_1a13_9f47_37a0/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_1a13_9f47_37a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_1a13_9f47_37a0&showErrors=false&email=", "NOAA", "noaa_nodc_1a13_9f47_37a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3595_6fdf_7375", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3595_6fdf_7375.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_3595_6fdf_7375/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_3595_6fdf_7375_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_3595_6fdf_7375_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_3595_6fdf_7375/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_3595_6fdf_7375.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_3595_6fdf_7375&showErrors=false&email=", "NOAA", "noaa_nodc_3595_6fdf_7375"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_24b8_8410_a9b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_24b8_8410_a9b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_24b8_8410_a9b0/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_24b8_8410_a9b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_24b8_8410_a9b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_24b8_8410_a9b0/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_24b8_8410_a9b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_24b8_8410_a9b0&showErrors=false&email=", "NOAA", "noaa_nodc_24b8_8410_a9b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2f98_8b54_19cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2f98_8b54_19cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_2f98_8b54_19cd/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_2f98_8b54_19cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_2f98_8b54_19cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_2f98_8b54_19cd/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_2f98_8b54_19cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_2f98_8b54_19cd&showErrors=false&email=", "NOAA", "noaa_nodc_2f98_8b54_19cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e86b_8826_9294", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e86b_8826_9294.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e86b_8826_9294/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e86b_8826_9294_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e86b_8826_9294_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e86b_8826_9294/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e86b_8826_9294.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e86b_8826_9294&showErrors=false&email=", "NOAA", "noaa_nodc_e86b_8826_9294"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7236_9b3b_b796", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7236_9b3b_b796.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7236_9b3b_b796/request", "", "public", "Northern California 36 sec Coastal Digital Elevation Model (northern california 36 msl 2005), 0.01\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7236_9b3b_b796_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7236_9b3b_b796_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7236_9b3b_b796/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7236_9b3b_b796.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7236_9b3b_b796&showErrors=false&email=", "NOAA", "noaa_ngdc_7236_9b3b_b796"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b953_4f7b_a079", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b953_4f7b_a079.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b953_4f7b_a079/request", "", "public", "Northern Hemisphere EASE-Grid Snow Cover and Sea Ice Extent (snowcover.mon.ltm), 1.0\u00b0, 0001", "Snow Cover extent derived from weekly values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowcover (Longterm Monthly Means Snowcover Extent, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b953_4f7b_a079_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b953_4f7b_a079_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b953_4f7b_a079/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.snowcover.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b953_4f7b_a079.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b953_4f7b_a079&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b953_4f7b_a079"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a3da_950d_3b9e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a3da_950d_3b9e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a3da_950d_3b9e/request", "", "public", "Northern Hemisphere EASE-Grid Snow Cover and Sea Ice Extent (snowcover.mon.mean), 1.0\u00b0, 1971-1995", "Snow Cover extent derived from weekly values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowcover (Monthly Means Snowcover Extent, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a3da_950d_3b9e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a3da_950d_3b9e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a3da_950d_3b9e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.snowcover.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a3da_950d_3b9e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a3da_950d_3b9e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a3da_950d_3b9e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_9998_9d97_a220", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_9998_9d97_a220.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_9998_9d97_a220/request", "", "public", "Northwest Atlantic regional climatology : salinity Annual 0.10 degree (salinity annual tenth), 0000", "Climatological mean salinity for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_9998_9d97_a220_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_9998_9d97_a220_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_9998_9d97_a220/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_9998_9d97_a220.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_9998_9d97_a220&showErrors=false&email=", "NCEI", "noaa_nodc_9998_9d97_a220"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_eaf7_a437_2d4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_eaf7_a437_2d4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_eaf7_a437_2d4d/request", "", "public", "Northwest Atlantic regional climatology : salinity Annual 0.25 degree (salinity annual quarter), 0000", "Climatological mean salinity for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_eaf7_a437_2d4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_eaf7_a437_2d4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_eaf7_a437_2d4d/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_eaf7_a437_2d4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_eaf7_a437_2d4d&showErrors=false&email=", "NCEI", "noaa_nodc_eaf7_a437_2d4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2289_19a6_2195", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2289_19a6_2195.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_2289_19a6_2195/request", "", "public", "Northwest Atlantic regional climatology : salinity Annual 1.00 degree (salinity annual one), 0000", "Climatological mean salinity for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_2289_19a6_2195_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_2289_19a6_2195_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_2289_19a6_2195/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_2289_19a6_2195.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_2289_19a6_2195&showErrors=false&email=", "NCEI", "noaa_nodc_2289_19a6_2195"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b69a_d3d5_41a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b69a_d3d5_41a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b69a_d3d5_41a1/request", "", "public", "Northwest Atlantic regional climatology : salinity November 0.10 degree, 0000", "Climatological mean salinity for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b69a_d3d5_41a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b69a_d3d5_41a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b69a_d3d5_41a1/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b69a_d3d5_41a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b69a_d3d5_41a1&showErrors=false&email=", "NCEI", "noaa_nodc_b69a_d3d5_41a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b57f_be6b_b0a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b57f_be6b_b0a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b57f_be6b_b0a1/request", "", "public", "Northwest Atlantic regional climatology : salinity November 0.25 degree, 0000", "Climatological mean salinity for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b57f_be6b_b0a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b57f_be6b_b0a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b57f_be6b_b0a1/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b57f_be6b_b0a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b57f_be6b_b0a1&showErrors=false&email=", "NCEI", "noaa_nodc_b57f_be6b_b0a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_eb37_aab3_dd84", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_eb37_aab3_dd84.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_eb37_aab3_dd84/request", "", "public", "Northwest Atlantic regional climatology : salinity November 1.00 degree (salinity monthly one), 0000", "Climatological mean salinity for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_eb37_aab3_dd84_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_eb37_aab3_dd84_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_eb37_aab3_dd84/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_eb37_aab3_dd84.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_eb37_aab3_dd84&showErrors=false&email=", "NCEI", "noaa_nodc_eb37_aab3_dd84"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b35a_0cde_9cb7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b35a_0cde_9cb7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b35a_0cde_9cb7/request", "", "public", "Northwest Atlantic regional climatology : salinity Summer (Jul-Sep) 0.10 degree, 0000", "Climatological mean salinity for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b35a_0cde_9cb7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b35a_0cde_9cb7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b35a_0cde_9cb7/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b35a_0cde_9cb7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b35a_0cde_9cb7&showErrors=false&email=", "NCEI", "noaa_nodc_b35a_0cde_9cb7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2a70_ce85_0a96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2a70_ce85_0a96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_2a70_ce85_0a96/request", "", "public", "Northwest Atlantic regional climatology : salinity Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean salinity for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_2a70_ce85_0a96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_2a70_ce85_0a96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_2a70_ce85_0a96/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_2a70_ce85_0a96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_2a70_ce85_0a96&showErrors=false&email=", "NCEI", "noaa_nodc_2a70_ce85_0a96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a0cf_5302_291d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a0cf_5302_291d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_a0cf_5302_291d/request", "", "public", "Northwest Atlantic regional climatology : salinity Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean salinity for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_a0cf_5302_291d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_a0cf_5302_291d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_a0cf_5302_291d/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_a0cf_5302_291d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_a0cf_5302_291d&showErrors=false&email=", "NCEI", "noaa_nodc_a0cf_5302_291d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_180a_4a5a_1752", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_180a_4a5a_1752.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_180a_4a5a_1752/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature Annual 0.10 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_180a_4a5a_1752_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_180a_4a5a_1752_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_180a_4a5a_1752/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_180a_4a5a_1752.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_180a_4a5a_1752&showErrors=false&email=", "NCEI", "noaa_nodc_180a_4a5a_1752"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cff1_8339_4f48", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cff1_8339_4f48.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_cff1_8339_4f48/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_cff1_8339_4f48_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_cff1_8339_4f48_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_cff1_8339_4f48/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_cff1_8339_4f48.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_cff1_8339_4f48&showErrors=false&email=", "NCEI", "noaa_nodc_cff1_8339_4f48"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_315c_33bd_35b2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_315c_33bd_35b2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_315c_33bd_35b2/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_315c_33bd_35b2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_315c_33bd_35b2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_315c_33bd_35b2/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_315c_33bd_35b2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_315c_33bd_35b2&showErrors=false&email=", "NCEI", "noaa_nodc_315c_33bd_35b2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_241d_ee2f_0868", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_241d_ee2f_0868.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_241d_ee2f_0868/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature November 0.10 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_241d_ee2f_0868_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_241d_ee2f_0868_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_241d_ee2f_0868/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_241d_ee2f_0868.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_241d_ee2f_0868&showErrors=false&email=", "NCEI", "noaa_nodc_241d_ee2f_0868"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8cc7_027b_fa4e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8cc7_027b_fa4e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_8cc7_027b_fa4e/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_8cc7_027b_fa4e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_8cc7_027b_fa4e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_8cc7_027b_fa4e/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_8cc7_027b_fa4e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_8cc7_027b_fa4e&showErrors=false&email=", "NCEI", "noaa_nodc_8cc7_027b_fa4e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e243_70b4_e532", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e243_70b4_e532.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e243_70b4_e532/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e243_70b4_e532_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e243_70b4_e532_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e243_70b4_e532/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e243_70b4_e532.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e243_70b4_e532&showErrors=false&email=", "NCEI", "noaa_nodc_e243_70b4_e532"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2d23_8f3b_dbc9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2d23_8f3b_dbc9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_2d23_8f3b_dbc9/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature Summer (Jul-Sep) 0.10 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_2d23_8f3b_dbc9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_2d23_8f3b_dbc9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_2d23_8f3b_dbc9/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_2d23_8f3b_dbc9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_2d23_8f3b_dbc9&showErrors=false&email=", "NCEI", "noaa_nodc_2d23_8f3b_dbc9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a58e_0a09_068a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a58e_0a09_068a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_a58e_0a09_068a/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_a58e_0a09_068a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_a58e_0a09_068a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_a58e_0a09_068a/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_a58e_0a09_068a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_a58e_0a09_068a&showErrors=false&email=", "NCEI", "noaa_nodc_a58e_0a09_068a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a363_af52_bfdb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a363_af52_bfdb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_a363_af52_bfdb/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_a363_af52_bfdb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_a363_af52_bfdb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_a363_af52_bfdb/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_a363_af52_bfdb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_a363_af52_bfdb&showErrors=false&email=", "NCEI", "noaa_nodc_a363_af52_bfdb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hurl_bathy_60m_nwhi", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hurl_bathy_60m_nwhi.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hurl_bathy_60m_nwhi/request", "", "public", "Northwestern Hawaiian Islands Multibeam Bathymetry Synthesis: 60-m Bathymetry", "A 60-m resolution gridded synthesis of all available bathymetry (ocean depth) data for the Northwestern Hawaiian Islands (NWHI), including ship-borne multibeam sonar surveys merged with lower resolution (1-km) global bathymetry from SRTM30+. Because of its remote location, dedicated multibeam mapping of the NWHI region began only in the year 2000. In an effort to consolidate the more recent systematic surveys with older transit data swaths for this region, a synthesis of all existing multibeam data was undertaken beginning in 2009, with a fourth revision completed in mid 2015.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hurl_bathy_60m_nwhi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hurl_bathy_60m_nwhi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hurl_bathy_60m_nwhi/index.json", "http://www.soest.hawaii.edu/HURL/", "http://upwell.pfeg.noaa.gov/erddap/rss/hurl_bathy_60m_nwhi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hurl_bathy_60m_nwhi&showErrors=false&email=", "University of Hawaii", "hurl_bathy_60m_nwhi"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hycom_gom310D", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hycom_gom310D.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hycom_gom310D/request", "", "public", "NRL HYCOM 1/25 deg model output, Gulf of Mexico, 10.04 Expt 31.0, 2009-2014, At Depths", "NRL HYCOM 1/25 deg model output, Gulf of Mexico, 10.04 Expt 31.0, 2009-2014, At Depths\n\nThe HYCOM consortium is a multi-institutional effort sponsored by the\nNational Ocean Partnership Program (NOPP), as part of the U. S. Global Ocean\nData Assimilation Experiment (GODAE), to develop and evaluate a\ndata-assimilative hybrid isopycnal-sigma-pressure (generalized) coordinate\nocean model (called HYbrid Coordinate Ocean Model or HYCOM).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature (Sea Water Temperature, degC)\nsalinity (Sea Water Practical Salinity, psu)\nu (Eastward Sea Water Velocity, m/s)\nv (Northward Sea Water Velocity, m/s)\nw_velocity (Upward Sea Water Velocity, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hycom_gom310D_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hycom_gom310D_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hycom_gom310D/index.json", "http://www.hycom.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/hycom_gom310D.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hycom_gom310D&showErrors=false&email=", "Naval Research Laboratory", "hycom_gom310D"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hycom_gom310S", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hycom_gom310S.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hycom_gom310S/request", "", "public", "NRL HYCOM 1/25 deg model output, Gulf of Mexico, 10.04 Expt 31.0, 2009-2014, At Surface", "NRL HYCOM 1/25 deg model output, Gulf of Mexico, 10.04 Expt 31.0, 2009-2014, At Surface\n\nThe HYCOM consortium is a multi-institutional effort sponsored by the\nNational Ocean Partnership Program (NOPP), as part of the U. S. Global Ocean\nData Assimilation Experiment (GODAE), to develop and evaluate a\ndata-assimilative hybrid isopycnal-sigma-pressure (generalized) coordinate\nocean model (called HYbrid Coordinate Ocean Model or HYCOM).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nmld (Mixed Layer Thickness (0.20 degC), m)\nmlp (MLT (0.03 kg/m3) [31.0H], m)\nqtot (Surface Heat Flux, w/m2)\nemp (Surface Water Flux, kg/m2/s)\nsurface_temperature_trend (degC/day)\nsurface_salinity_trend (PSU/day)\nssh (Sea Surface Height, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hycom_gom310S_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hycom_gom310S_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hycom_gom310S/index.json", "http://www.hycom.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/hycom_gom310S.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hycom_gom310S&showErrors=false&email=", "Naval Research Laboratory", "hycom_gom310S"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e909D", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e909D.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nrlHycomGLBu008e909D/request", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 90.9, Global, 1/12 deg, 2012-2013, at Depths", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 90.9, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degC)\nsalinity (Sea Water Practical Salinity, PSU)\nwater_u (Eastward Water Velocity, m/s)\nwater_v (Northward Water Velocity, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nrlHycomGLBu008e909D_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nrlHycomGLBu008e909D_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e909D/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_90.9.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e909D.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e909D&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e909D"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e909D_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e909D_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nrlHycomGLBu008e909D_LonPM180/request", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 90.9, Global, 1/12 deg, 2012-2013, at Depths, Lon+/-180", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 90.9, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degC)\nsalinity (Sea Water Practical Salinity, PSU)\nwater_u (Eastward Water Velocity, m/s)\nwater_v (Northward Water Velocity, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nrlHycomGLBu008e909D_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nrlHycomGLBu008e909D_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e909D_LonPM180/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_90.9.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e909D_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e909D_LonPM180&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e909D_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e909S", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e909S.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nrlHycomGLBu008e909S/request", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 90.9, Global, 1/12 deg, 2012-2013, at Surface", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 90.9, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nrlHycomGLBu008e909S_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nrlHycomGLBu008e909S_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e909S/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_90.9.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e909S.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e909S&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e909S"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e909S_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e909S_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nrlHycomGLBu008e909S_LonPM180/request", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 90.9, Global, 1/12 deg, 2012-2013, at Surface, Lon+/-180", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 90.9, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nrlHycomGLBu008e909S_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nrlHycomGLBu008e909S_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e909S_LonPM180/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_90.9.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e909S_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e909S_LonPM180&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e909S_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e910D", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e910D.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nrlHycomGLBu008e910D/request", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 91.0, Global, 1/12 deg, 2013-2014, at Depths", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 91.0, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degC)\nsalinity (Sea Water Practical Salinity, PSU)\nwater_u (Eastward Water Velocity, m/s)\nwater_v (Northward Water Velocity, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nrlHycomGLBu008e910D_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nrlHycomGLBu008e910D_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e910D/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_91.0.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e910D.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e910D&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e910D"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e910D_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e910D_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nrlHycomGLBu008e910D_LonPM180/request", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 91.0, Global, 1/12 deg, 2013-2014, at Depths, Lon+/-180", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 91.0, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degC)\nsalinity (Sea Water Practical Salinity, PSU)\nwater_u (Eastward Water Velocity, m/s)\nwater_v (Northward Water Velocity, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nrlHycomGLBu008e910D_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nrlHycomGLBu008e910D_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e910D_LonPM180/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_91.0.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e910D_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e910D_LonPM180&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e910D_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e910S", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e910S.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nrlHycomGLBu008e910S/request", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 91.0, Global, 1/12 deg, 2013-2014, at Surface", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 91.0, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nrlHycomGLBu008e910S_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nrlHycomGLBu008e910S_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e910S/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_91.0.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e910S.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e910S&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e910S"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e910S_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e910S_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nrlHycomGLBu008e910S_LonPM180/request", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 91.0, Global, 1/12 deg, 2013-2014, at Surface, Lon+/-180", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 91.0, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nrlHycomGLBu008e910S_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nrlHycomGLBu008e910S_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e910S_LonPM180/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_91.0.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e910S_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e910S_LonPM180&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e910S_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e911D", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e911D.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nrlHycomGLBu008e911D/request", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 91.1, Global, 1/12 deg, 2014-2016, at Depths", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 91.1, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degC)\nsalinity (Sea Water Practical Salinity, PSU)\nwater_u (Eastward Water Velocity, m/s)\nwater_v (Northward Water Velocity, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nrlHycomGLBu008e911D_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nrlHycomGLBu008e911D_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e911D/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_91.1.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e911D.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e911D&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e911D"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e911D_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e911D_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nrlHycomGLBu008e911D_LonPM180/request", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 91.1, Global, 1/12 deg, 2014-2016, at Depths, Lon+/-180", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 91.1, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degC)\nsalinity (Sea Water Practical Salinity, PSU)\nwater_u (Eastward Water Velocity, m/s)\nwater_v (Northward Water Velocity, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nrlHycomGLBu008e911D_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nrlHycomGLBu008e911D_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e911D_LonPM180/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_91.1.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e911D_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e911D_LonPM180&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e911D_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e911S", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e911S.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nrlHycomGLBu008e911S/request", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 91.1, Global, 1/12 deg, 2014-2016, at Surface", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 91.1, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nrlHycomGLBu008e911S_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nrlHycomGLBu008e911S_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e911S/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_91.1.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e911S.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e911S&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e911S"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e911S_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e911S_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nrlHycomGLBu008e911S_LonPM180/request", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 91.1, Global, 1/12 deg, 2014-2016, at Surface, Lon+/-180", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 91.1, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nrlHycomGLBu008e911S_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nrlHycomGLBu008e911S_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e911S_LonPM180/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_91.1.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e911S_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e911S_LonPM180&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e911S_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e911T", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e911T.graph", "", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 91.1, Global, 1/12 deg, 2014-2016, Time", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 91.1, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntau (Tau (hours since analysis), hours)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e911T/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_91.1.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e911T.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e911T&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e911T"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e912D", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e912D.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nrlHycomGLBu008e912D/request", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 91.2, Global, 1/12 deg, 2016 to Now + Forecasts, at Depths", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 91.2, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degC)\nsalinity (Sea Water Practical Salinity, PSU)\nwater_u (Eastward Water Velocity, m/s)\nwater_v (Northward Water Velocity, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nrlHycomGLBu008e912D_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nrlHycomGLBu008e912D_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e912D/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_91.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e912D.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e912D&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e912D"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e912D_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e912D_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nrlHycomGLBu008e912D_LonPM180/request", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 91.2, Global, 1/12 deg, 2016 to Now + Forecasts, at Depths, Lon+/-180", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 91.2, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degC)\nsalinity (Sea Water Practical Salinity, PSU)\nwater_u (Eastward Water Velocity, m/s)\nwater_v (Northward Water Velocity, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nrlHycomGLBu008e912D_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nrlHycomGLBu008e912D_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e912D_LonPM180/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_91.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e912D_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e912D_LonPM180&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e912D_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e912S", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e912S.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nrlHycomGLBu008e912S/request", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 91.2, Global, 1/12 deg, 2016 to Now + Forecasts, at Surface", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 91.2, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nrlHycomGLBu008e912S_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nrlHycomGLBu008e912S_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e912S/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_91.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e912S.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e912S&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e912S"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e912S_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e912S_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nrlHycomGLBu008e912S_LonPM180/request", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 91.2, Global, 1/12 deg, 2016 to Now + Forecasts, at Surface, Lon+/-180", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 91.2, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nrlHycomGLBu008e912S_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nrlHycomGLBu008e912S_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e912S_LonPM180/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_91.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e912S_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e912S_LonPM180&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e912S_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e912T", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e912T.graph", "", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 91.2, Global, 1/12 deg, 2016 to Now + Forecasts, Time", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 91.2, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntau (Tau (hours since analysis), hours)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e912T/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_91.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e912T.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e912T&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e912T"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/stevens_tech_dl_633f_146d_7ecc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/stevens_tech_dl_633f_146d_7ecc.graph", "", "", "public", "NYHOPS New York Bight Apex Subdomain, NYHOPS Forecast Collection for the New York Bight Apex, NYHOPS Forecast Collection for the New York Bight Apex, Best Time Series [time], 2018", "New York Harbor Observing and Prediction System (NYHOPS) Forecast Model Results. Best time series, taking the data from the most recent run available. 3D Marine Nowcast/Forecast System for the New York Bight Apex NYHOPS subdomain. Currents, waves, surface meteorology, and water conditions.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_offset (hour offset from start of run for coordinate = time, hour)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/stevens_tech_dl_633f_146d_7ecc/index.json", "http://hudson.dl.stevens-tech.edu/maritimeforecast/", "http://upwell.pfeg.noaa.gov/erddap/rss/stevens_tech_dl_633f_146d_7ecc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stevens_tech_dl_633f_146d_7ecc&showErrors=false&email=", "Stevens Institute of Technology", "stevens_tech_dl_633f_146d_7ecc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/stevens_tech_dl_904d_5f05_945c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/stevens_tech_dl_904d_5f05_945c.graph", "", "", "public", "NYHOPS New York Bight Apex Subdomain, NYHOPS Forecast Collection for the New York Bight Apex, NYHOPS Forecast Collection for the New York Bight Apex, Best Time Series [ypos][xpos]", "New York Harbor Observing and Prediction System (NYHOPS) Forecast Model Results. Best time series, taking the data from the most recent run available. 3D Marine Nowcast/Forecast System for the New York Bight Apex NYHOPS subdomain. Currents, waves, surface meteorology, and water conditions.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ypos][xpos]):\nx (Corner longitude, degrees_east)\ny (Corner latitude, degrees_north)\nDUM (U1-direction mask)\nDVM (V1-direction mask)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/stevens_tech_dl_904d_5f05_945c/index.json", "http://hudson.dl.stevens-tech.edu/maritimeforecast/", "http://upwell.pfeg.noaa.gov/erddap/rss/stevens_tech_dl_904d_5f05_945c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stevens_tech_dl_904d_5f05_945c&showErrors=false&email=", "Stevens Institute of Technology", "stevens_tech_dl_904d_5f05_945c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/stevens_tech_dl_8d8d_3225_f138", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/stevens_tech_dl_8d8d_3225_f138.graph", "", "", "public", "NYHOPS New York Bight Apex Subdomain, NYHOPS Forecast Collection for the New York Bight Apex, NYHOPS Forecast Collection for the New York Bight Apex, Forecast Model Run Collection (2D time coordinates) [ypos][xpos]", "New York Harbor Observing and Prediction System (NYHOPS) Forecast Model Results. Forecast Model Run Collection (2D time coordinates). 3D Marine Nowcast/Forecast System for the New York Bight Apex NYHOPS subdomain. Currents, waves, surface meteorology, and water conditions.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ypos][xpos]):\nx (Corner longitude, degrees_east)\ny (Corner latitude, degrees_north)\nDUM (U1-direction mask)\nDVM (V1-direction mask)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/stevens_tech_dl_8d8d_3225_f138/index.json", "http://hudson.dl.stevens-tech.edu/maritimeforecast/", "http://upwell.pfeg.noaa.gov/erddap/rss/stevens_tech_dl_8d8d_3225_f138.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stevens_tech_dl_8d8d_3225_f138&showErrors=false&email=", "Stevens Institute of Technology", "stevens_tech_dl_8d8d_3225_f138"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/stevens_tech_dl_6033_4ac0_7923", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/stevens_tech_dl_6033_4ac0_7923.graph", "", "", "public", "NYHOPS New York Bight Subdomain, NYHOPS Forecast Collection for the New York Bight, NYHOPS Forecast Collection for the New York Bight, Best Time Series [time], 2018", "New York Harbor Observing and Prediction System (NYHOPS) Forecast Model Results. Best time series, taking the data from the most recent run available. 3D Marine Nowcast/Forecast System for the New York Bight NYHOPS subdomain. Currents, waves, surface meteorology, and water conditions.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_offset (hour offset from start of run for coordinate = time, hour)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/stevens_tech_dl_6033_4ac0_7923/index.json", "http://hudson.dl.stevens-tech.edu/maritimeforecast/", "http://upwell.pfeg.noaa.gov/erddap/rss/stevens_tech_dl_6033_4ac0_7923.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stevens_tech_dl_6033_4ac0_7923&showErrors=false&email=", "Stevens Institute of Technology", "stevens_tech_dl_6033_4ac0_7923"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/stevens_tech_dl_917d_19b3_b48c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/stevens_tech_dl_917d_19b3_b48c.graph", "", "", "public", "NYHOPS New York Bight Subdomain, NYHOPS Forecast Collection for the New York Bight, NYHOPS Forecast Collection for the New York Bight, Best Time Series [ypos][xpos]", "New York Harbor Observing and Prediction System (NYHOPS) Forecast Model Results. Best time series, taking the data from the most recent run available. 3D Marine Nowcast/Forecast System for the New York Bight NYHOPS subdomain. Currents, waves, surface meteorology, and water conditions.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ypos][xpos]):\nx (Corner longitude, degrees_east)\ny (Corner latitude, degrees_north)\nDUM (U1-direction mask)\nDVM (V1-direction mask)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/stevens_tech_dl_917d_19b3_b48c/index.json", "http://hudson.dl.stevens-tech.edu/maritimeforecast/", "http://upwell.pfeg.noaa.gov/erddap/rss/stevens_tech_dl_917d_19b3_b48c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stevens_tech_dl_917d_19b3_b48c&showErrors=false&email=", "Stevens Institute of Technology", "stevens_tech_dl_917d_19b3_b48c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/stevens_tech_dl_d527_7676_1a45", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/stevens_tech_dl_d527_7676_1a45.graph", "", "", "public", "NYHOPS New York Bight Subdomain, NYHOPS Forecast Collection for the New York Bight, NYHOPS Forecast Collection for the New York Bight, Forecast Model Run Collection (2D time coordinates) [ypos][xpos]", "New York Harbor Observing and Prediction System (NYHOPS) Forecast Model Results. Forecast Model Run Collection (2D time coordinates). 3D Marine Nowcast/Forecast System for the New York Bight NYHOPS subdomain. Currents, waves, surface meteorology, and water conditions.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ypos][xpos]):\nx (Corner longitude, degrees_east)\ny (Corner latitude, degrees_north)\nDUM (U1-direction mask)\nDVM (V1-direction mask)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/stevens_tech_dl_d527_7676_1a45/index.json", "http://hudson.dl.stevens-tech.edu/maritimeforecast/", "http://upwell.pfeg.noaa.gov/erddap/rss/stevens_tech_dl_d527_7676_1a45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stevens_tech_dl_d527_7676_1a45&showErrors=false&email=", "Stevens Institute of Technology", "stevens_tech_dl_d527_7676_1a45"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bb68_a844_aa19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bb68_a844_aa19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_bb68_a844_aa19/request", "", "public", "Oahu, Hawaii Coastal Digital Elevation Model (Top Dataset, Regional, oahu 13 mhw 2011), 9.259259E-5\u00b0", "Oahu, Hawaii Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_bb68_a844_aa19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_bb68_a844_aa19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_bb68_a844_aa19/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_bb68_a844_aa19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_bb68_a844_aa19&showErrors=false&email=", "NOAA", "noaa_ngdc_bb68_a844_aa19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e1b2_3228_f482", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e1b2_3228_f482.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_e1b2_3228_f482/request", "", "public", "Obs-AMSRE model output prepared for obs4MIPs NASA-JPL observation", "Obs-Advanced Microwave Scanning Radiometer on EOS (AMSRE) model output prepared for Observations for Model Intercomparisons (obs4MIPs) NASA-Jet Propulsion Laboratory (JPL) observation (AMSRE L3 Sea Surface Temperature (SST) 1DEG 1MO)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntos (Sea Surface Temperature, K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_e1b2_3228_f482_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_e1b2_3228_f482_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_e1b2_3228_f482/index.json", "https://podaac.jpl.nasa.gov/dataset/AMSRE_L3_SST_1DEG_1MO", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_e1b2_3228_f482.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_e1b2_3228_f482&showErrors=false&email=", "Remote Sensing Systems", "nasa_jpl_e1b2_3228_f482"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_a71b_0399_68ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_a71b_0399_68ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_a71b_0399_68ee/request", "", "public", "Obs-AMSRE model output prepared for obs4MIPs NASA-JPL observation (AMSRE L3 SST 1DEG 1MO), 1.0\u00b0, 2002-2010", "Obs-Advanced Microwave Scanning Radiometer on EOS (AMSRE) model output prepared for Observations for Model Intercomparisons (obs4MIPs) NASA-Jet Propulsion Laboratory (JPL) observation (Top Dataset, amsre, AMSRE L3 Sea Surface Temperature (SST) 1DEG 1MO)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntos (Sea Surface Temperature, K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_a71b_0399_68ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_a71b_0399_68ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_a71b_0399_68ee/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_a71b_0399_68ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_a71b_0399_68ee&showErrors=false&email=", "Remote Sensing Systems", "nasa_jpl_a71b_0399_68ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_2ae4_6f86_afe8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_2ae4_6f86_afe8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_2ae4_6f86_afe8/request", "", "public", "Obs-AVISO model output prepared for obs4MIPs NASA-JPL observation (zos AVISO L4 199210-201012), 1.0\u00b0", "gridded sea surface heights above geoid\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzos (Sea Surface Height Above Geoid, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_2ae4_6f86_afe8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_2ae4_6f86_afe8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_2ae4_6f86_afe8/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_2ae4_6f86_afe8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_2ae4_6f86_afe8&showErrors=false&email=", "Centre National d'Etudes Spatiales", "nasa_jpl_2ae4_6f86_afe8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_0648_3b67_1926", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_0648_3b67_1926.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_0648_3b67_1926/request", "", "public", "Obs-QuikSCAT model output prepared for obs4MIPs NASA-JPL observation, 1.0\u00b0, 1999-2009", "Obs-QuikSCAT model output prepared for Observations for Model Intercomparisons (obs4MIPs) NASA-Jet Propulsion Laboratory (JPL) observation (Top Dataset, wind 1deg 1mo, vas QuikSCAT L2B v20110531 199908-200910)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvas (Northward Near-Surface Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_0648_3b67_1926_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_0648_3b67_1926_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_0648_3b67_1926/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_0648_3b67_1926.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_0648_3b67_1926&showErrors=false&email=", "National Aeronautics and Space Administration, Jet Propulsion Laboratory", "nasa_jpl_0648_3b67_1926"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_d5b4_5832_8092", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_d5b4_5832_8092.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_d5b4_5832_8092/request", "", "public", "Obs-QuikSCAT model output prepared for obs4MIPs NASA-JPL observation, 1.0\u00b0, 1999-2009", "Obs-QuikSCAT model output prepared for Observations for Model Intercomparisons (obs4MIPs) NASA-Jet Propulsion Laboratory (JPL) observation (Top Dataset, wind 1deg 1mo, uas QuikSCAT L2B v20110531 199908-200910)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuas (Eastward Near-Surface Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_d5b4_5832_8092_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_d5b4_5832_8092_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_d5b4_5832_8092/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_d5b4_5832_8092.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_d5b4_5832_8092&showErrors=false&email=", "National Aeronautics and Space Administration, Jet Propulsion Laboratory", "nasa_jpl_d5b4_5832_8092"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_80a6_0764_61e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_80a6_0764_61e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_80a6_0764_61e3/request", "", "public", "Ocean City, Maryland Coastal Digital Elevation Model (ocean city 13 mhw 2009), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_80a6_0764_61e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_80a6_0764_61e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_80a6_0764_61e3/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_80a6_0764_61e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_80a6_0764_61e3&showErrors=false&email=", "NOAA", "noaa_ngdc_80a6_0764_61e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f161_c113_ee61", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f161_c113_ee61.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f161_c113_ee61/request", "", "public", "Ocean City, Maryland Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, OceanCityMD A)", "Ocean City, Maryland Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f161_c113_ee61_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f161_c113_ee61_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f161_c113_ee61/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f161_c113_ee61.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f161_c113_ee61&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_f161_c113_ee61"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8f41_3985_38d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8f41_3985_38d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8f41_3985_38d5/request", "", "public", "Ocean City, Maryland Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, OceanCityMD B)", "Ocean City, Maryland Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8f41_3985_38d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8f41_3985_38d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8f41_3985_38d5/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8f41_3985_38d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8f41_3985_38d5&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_8f41_3985_38d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1916_fe25_c392", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1916_fe25_c392.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1916_fe25_c392/request", "", "public", "Ocean City, Maryland Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, OceanCityMD C)", "Ocean City, Maryland Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1916_fe25_c392_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1916_fe25_c392_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1916_fe25_c392/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1916_fe25_c392.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1916_fe25_c392&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_1916_fe25_c392"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a71e_9825_5150", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a71e_9825_5150.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a71e_9825_5150/request", "", "public", "Oct longterm mean diurnal cycle air temperature from the NCEP Reanalysis (airoct.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for October, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a71e_9825_5150_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a71e_9825_5150_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a71e_9825_5150/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a71e_9825_5150.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a71e_9825_5150&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a71e_9825_5150"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26a0_cd9c_1844", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26a0_cd9c_1844.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_26a0_cd9c_1844/request", "", "public", "Oct longterm mean diurnal cycle geopotential height from the NCEP Reanalysis, 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Diurnal Cycle Anomaly of Geopotential Height for October, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_26a0_cd9c_1844_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_26a0_cd9c_1844_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_26a0_cd9c_1844/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_26a0_cd9c_1844.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_26a0_cd9c_1844&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_26a0_cd9c_1844"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_4bd7_051b_1ea8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_4bd7_051b_1ea8.graph", "", "", "public", "of 6h Ocean Wind Stress, of 6h Ocean Wind Stress, Best Time Series [time], 1987-2011", "NOAA/National Climatic Data Center (NCDC) Blended 6-hourly 0.25-degree Sea Surface Wind Stress. Best time series, taking the data from the most recent run available.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_4bd7_051b_1ea8/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/uv/6h_strs_agg/Aggregation_of_6h_Ocean_Wind_Stress_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_4bd7_051b_1ea8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_4bd7_051b_1ea8&showErrors=false&email=", "NOAA NESDIS NCDC", "noaa_ncei_4bd7_051b_1ea8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_2477_560a_c887", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_2477_560a_c887.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_2477_560a_c887/request", "", "public", "of 6h Ocean Wind Stress, of 6h Ocean Wind Stress, Best Time Series [time][zlev][lat][lon], 0.25\u00b0, 1987-2011", "NOAA/National Climatic Data Center (NCDC) Blended 6-hourly 0.25-degree Sea Surface Wind Stress. Best time series, taking the data from the most recent run available.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][zlev][latitude][longitude]):\ntaux (Sea Surface Wind Stress: x-component, N/m**2)\ntauy (Sea Surface Wind Stress: y-component, N/m**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_2477_560a_c887_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_2477_560a_c887_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_2477_560a_c887/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/uv/6h_strs_agg/Aggregation_of_6h_Ocean_Wind_Stress_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_2477_560a_c887.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_2477_560a_c887&showErrors=false&email=", "NOAA NESDIS NCDC", "noaa_ncei_2477_560a_c887"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_5cf4_503d_453c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_5cf4_503d_453c.graph", "", "", "public", "of Daily Ocean Wind Stress, of Daily Ocean Wind Stress, Best Time Series [time], 1987-2011", "NOAA/National Climatic Data Center (NCDC) Blended daily 0.25-degree Sea Surface Wind Stress. Best time series, taking the data from the most recent run available.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_5cf4_503d_453c/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/uv/daily_strs_agg/Aggregation_of_Daily_Ocean_Wind_Stress_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_5cf4_503d_453c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_5cf4_503d_453c&showErrors=false&email=", "NOAA NESDIS NCDC", "noaa_ncei_5cf4_503d_453c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_4295_9cab_14df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_4295_9cab_14df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_4295_9cab_14df/request", "", "public", "of Daily Ocean Wind Stress, of Daily Ocean Wind Stress, Best Time Series [time][zlev][lat][lon], 0.25\u00b0, 1987-2011", "NOAA/National Climatic Data Center (NCDC) Blended daily 0.25-degree Sea Surface Wind Stress. Best time series, taking the data from the most recent run available.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][zlev][latitude][longitude]):\ntaux (Sea Surface Wind Stress: x-component, N/m**2)\ntauy (Sea Surface Wind Stress: y-component, N/m**2)\ntau (Sea Surface Wind Stress: amplitude as scalar mean, N/m**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_4295_9cab_14df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_4295_9cab_14df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_4295_9cab_14df/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/uv/daily_strs_agg/Aggregation_of_Daily_Ocean_Wind_Stress_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_4295_9cab_14df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_4295_9cab_14df&showErrors=false&email=", "NOAA NESDIS NCDC", "noaa_ncei_4295_9cab_14df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_ff07_6433_a996", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_ff07_6433_a996.graph", "", "", "public", "of Daily Ocean Wind, of Daily Ocean Wind, Best Time Series [time], 1987-2011", "NOAA/National Climatic Data Center (NCDC) Blended daily 0.25-degree Sea Surface Winds. Best time series, taking the data from the most recent run available.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_ff07_6433_a996/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/uv/daily_agg/Aggregation_of_Daily_Ocean_Wind_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_ff07_6433_a996.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_ff07_6433_a996&showErrors=false&email=", "NOAA NESDIS NCDC", "noaa_ncei_ff07_6433_a996"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_a9c8_dc63_181e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_a9c8_dc63_181e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_a9c8_dc63_181e/request", "", "public", "of Daily Ocean Wind, of Daily Ocean Wind, Best Time Series [time][zlev][lat][lon], 0.25\u00b0, 1987-2011", "NOAA/National Climatic Data Center (NCDC) Blended daily 0.25-degree Sea Surface Winds. Best time series, taking the data from the most recent run available.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][zlev][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\nw (Sea Surface Wind: speed as scalar means, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_a9c8_dc63_181e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_a9c8_dc63_181e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_a9c8_dc63_181e/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/uv/daily_agg/Aggregation_of_Daily_Ocean_Wind_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_a9c8_dc63_181e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_a9c8_dc63_181e&showErrors=false&email=", "NOAA NESDIS NCDC", "noaa_ncei_a9c8_dc63_181e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_1468_5321_89db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_1468_5321_89db.graph", "", "", "public", "of Monthly Ocean Wind Stress, of Monthly Ocean Wind Stress, Best Time Series [time], 1987-2011", "NOAA/National Climatic Data Center (NCDC) Blended monthly 0.25-degree Sea Surface Wind Stress. Best time series, taking the data from the most recent run available.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_1468_5321_89db/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/uv/monthly_strs_agg/Aggregation_of_Monthly_Ocean_Wind_Stress_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_1468_5321_89db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_1468_5321_89db&showErrors=false&email=", "NOAA NESDIS NCDC", "noaa_ncei_1468_5321_89db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_6840_5cfc_1833", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_6840_5cfc_1833.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_6840_5cfc_1833/request", "", "public", "of Monthly Ocean Wind Stress, of Monthly Ocean Wind Stress, Best Time Series [time][zlev][lat][lon], 0.25\u00b0, 1987-2011", "NOAA/National Climatic Data Center (NCDC) Blended monthly 0.25-degree Sea Surface Wind Stress. Best time series, taking the data from the most recent run available.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][zlev][latitude][longitude]):\ntaux (Sea Surface Wind Stress: x-component, N/m**2)\ntauy (Sea Surface Wind Stress: y-component, N/m**2)\ntau (Sea Surface Wind Stress: amplitude as scalar mean, N/m**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_6840_5cfc_1833_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_6840_5cfc_1833_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_6840_5cfc_1833/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/uv/monthly_strs_agg/Aggregation_of_Monthly_Ocean_Wind_Stress_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_6840_5cfc_1833.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_6840_5cfc_1833&showErrors=false&email=", "NOAA NESDIS NCDC", "noaa_ncei_6840_5cfc_1833"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_ef8e_c54d_f632", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_ef8e_c54d_f632.graph", "", "", "public", "of Monthly Ocean Wind, of Monthly Ocean Wind, Best Time Series [time], 1987-2011", "NOAA/National Climatic Data Center (NCDC) Blended monthly 0.25-degree Sea Surface Winds. Best time series, taking the data from the most recent run available.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_ef8e_c54d_f632/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/uv/monthly_agg/Aggregation_of_Monthly_Ocean_Wind_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_ef8e_c54d_f632.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_ef8e_c54d_f632&showErrors=false&email=", "NOAA NESDIS NCDC", "noaa_ncei_ef8e_c54d_f632"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_529e_2c3d_b4ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_529e_2c3d_b4ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_529e_2c3d_b4ff/request", "", "public", "of Monthly Ocean Wind, of Monthly Ocean Wind, Best Time Series [time][zlev][lat][lon], 0.25\u00b0, 1987-2011", "NOAA/National Climatic Data Center (NCDC) Blended monthly 0.25-degree Sea Surface Winds. Best time series, taking the data from the most recent run available.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][zlev][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\nw (Sea Surface Wind: speed as scalar means, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_529e_2c3d_b4ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_529e_2c3d_b4ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_529e_2c3d_b4ff/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/uv/monthly_agg/Aggregation_of_Monthly_Ocean_Wind_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_529e_2c3d_b4ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_529e_2c3d_b4ff&showErrors=false&email=", "NOAA NESDIS NCDC", "noaa_ncei_529e_2c3d_b4ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_f6e2_8429_f317", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_f6e2_8429_f317.graph", "", "", "public", "OISST Daily AVHRR AMSR Feature Collection, OISST Daily AVHRR AMSR Feature Collection, Best Time Series [time], 2002-2011", "Daily-Optimum Interpolation (OI)-V2, Interim, Data (Ship, Buoy, Advanced Microwave Scanning Radiometer (AMSR), Advanced Very High Resolution Radiometer (AVHRR): NOAA19, METOP, National Centers for Environmental Prediction (NCEP)-ice). Best time series, taking the data from the most recent run available. Aggregation filename pattern: amsr-avhrr-v2.*.nc\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_f6e2_8429_f317/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/ncFC/fc-oisst-daily-avhrr-amsr-dly/OISST_Daily_AVHRR_AMSR_Feature_Collection_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_f6e2_8429_f317.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_f6e2_8429_f317&showErrors=false&email=", "NOAA", "noaa_ncei_f6e2_8429_f317"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_47c6_fd90_627c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_47c6_fd90_627c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_47c6_fd90_627c/request", "", "public", "OISST Daily AVHRR AMSR Feature Collection, OISST Daily AVHRR AMSR Feature Collection, Best Time Series [time][zlev][lat][lon], 0.25\u00b0, 2002-2011", "Daily-Optimum Interpolation (OI)-V2, Interim, Data (Ship, Buoy, Advanced Microwave Scanning Radiometer (AMSR), Advanced Very High Resolution Radiometer (AVHRR): NOAA19, METOP, National Centers for Environmental Prediction (NCEP)-ice). Best time series, taking the data from the most recent run available. Aggregation filename pattern: amsr-avhrr-v2.*.nc\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][zlev][latitude][longitude]):\nsst (Daily sea surface temperature, degree_C)\nanom (Daily sea surface temperature anomalies, degree_C)\nerr (Estimated error standard deviation of analysed_sst, degree_C)\nice (Sea ice concentration, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_47c6_fd90_627c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_47c6_fd90_627c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_47c6_fd90_627c/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/ncFC/fc-oisst-daily-avhrr-amsr-dly/OISST_Daily_AVHRR_AMSR_Feature_Collection_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_47c6_fd90_627c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_47c6_fd90_627c&showErrors=false&email=", "NOAA", "noaa_ncei_47c6_fd90_627c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_e7fc_68cb_0584", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_e7fc_68cb_0584.graph", "", "", "public", "OISST Daily AVHRR-only Feature Collection, OISST Daily AVHRR-only Feature Collection, Best Time Series [time], 1981-present", "National Centers for Environmental Information (NCEI) Daily-Optimum Interpolation Sea Surface Temperature (OISST)-V2 based mainly on Advanced Very High Resolution Radiometer (AVHRR), Final. Best time series, taking the data from the most recent run available. Aggregation of OISST files, not including preliminary files\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_e7fc_68cb_0584/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/ncFC/fc-oisst-daily-avhrr-only-dly/OISST_Daily_AVHRR-only_Feature_Collection_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_e7fc_68cb_0584.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_e7fc_68cb_0584&showErrors=false&email=", "NOAA", "noaa_ncei_e7fc_68cb_0584"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_9bc6_2d0d_9403", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_9bc6_2d0d_9403.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_9bc6_2d0d_9403/request", "", "public", "OISST Daily AVHRR-only Feature Collection, OISST Daily AVHRR-only Feature Collection, Best Time Series [time][zlev][lat][lon], 0.25\u00b0, 1981-present", "National Centers for Environmental Information (NCEI) Daily-Optimum Interpolation Sea Surface Temperature (OISST)-V2 based mainly on Advanced Very High Resolution Radiometer (AVHRR), Final. Best time series, taking the data from the most recent run available. Aggregation of OISST files, not including preliminary files\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nice (Sea ice concentration, percent)\nerr (Estimated error standard deviation of analysed_sst, degree_C)\nanom (Daily sea surface temperature anomalies, degree_C)\nsst (Daily sea surface temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_9bc6_2d0d_9403_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_9bc6_2d0d_9403_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_9bc6_2d0d_9403/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/ncFC/fc-oisst-daily-avhrr-only-dly/OISST_Daily_AVHRR-only_Feature_Collection_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_9bc6_2d0d_9403.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_9bc6_2d0d_9403&showErrors=false&email=", "NOAA", "noaa_ncei_9bc6_2d0d_9403"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_e0da_f05c_ce3a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_e0da_f05c_ce3a.graph", "", "", "public", "OISST Preliminary Daily AVHRR-only Feature Collection, OISST Preliminary Daily AVHRR-only Feature Collection, Best Time Series [time], 2018-present", "National Centers for Environmental Information (NCEI) Daily-Optimum Interpolation Sea Surface Temperature (OISST)-V2 based mainly on Advanced Very High Resolution Radiometer (AVHRR), Interim. Best time series, taking the data from the most recent run available. Aggregation of preliminary OISST Files\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_e0da_f05c_ce3a/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/ncFC/fc-oisst-daily-avhrr-only-dly-prelim/OISST_Preliminary_Daily_AVHRR-only_Feature_Collection_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_e0da_f05c_ce3a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_e0da_f05c_ce3a&showErrors=false&email=", "NOAA", "noaa_ncei_e0da_f05c_ce3a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_bc65_340f_d832", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_bc65_340f_d832.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_bc65_340f_d832/request", "", "public", "OISST Preliminary Daily AVHRR-only Feature Collection, OISST Preliminary Daily AVHRR-only Feature Collection, Best Time Series [time][zlev][lat][lon], 0.25\u00b0, 2018-present", "National Centers for Environmental Information (NCEI) Daily-Optimum Interpolation Sea Surface Temperature (OISST)-V2 based mainly on Advanced Very High Resolution Radiometer (AVHRR), Interim. Best time series, taking the data from the most recent run available. Aggregation of preliminary OISST Files\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nice (Sea ice concentration, percent)\nerr (Estimated error standard deviation of analysed_sst, degree_C)\nanom (Daily sea surface temperature anomalies, degree_C)\nsst (Daily sea surface temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_bc65_340f_d832_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_bc65_340f_d832_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_bc65_340f_d832/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/ncFC/fc-oisst-daily-avhrr-only-dly-prelim/OISST_Preliminary_Daily_AVHRR-only_Feature_Collection_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_bc65_340f_d832.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_bc65_340f_d832&showErrors=false&email=", "NOAA", "noaa_ncei_bc65_340f_d832"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplOscar", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplOscar.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplOscar/request", "", "public", "OSCAR Sea Surface Velocity, 1/3\u00b0, L4, Global, 1992-present, 5 Day Composite", "Ocean Surface Current Analyses Real-time (OSCAR) is a NASA funded research project and global surface current database. OSCAR global ocean surface mixed layer velocities are calculated from satellite-sensed sea surface height gradients, ocean vector winds, and sea surface temperature fields using geostrophy, Ekman, and thermal wind dynamics. OSCAR's continuing improvement depends on better modeling of the momentum transfer both within and across the boundaries of the turbulent mixed layer. A main research objective of the OSCAR project is to improve the generation of surface currents by ocean vector winds, and in doing so further our understanding of the mechanisms behind the transfer of momentum between the atmosphere and the ocean through the planetary boundary layer. Surface currents are provided on global grid every ~5 days, dating from 1992 to present day, with daily updates and near-real-time availability. \n* Principal Investigator: Kathleen Dohan (kdohan@esr.org). Co-Investigator: Gary Lagerloef (lager@esr.org). \n* Maximum Mask velocity is the geostrophic component at all points + any concurrent Ekman and buoyancy components.\n* Longitude extends from 20 E to 420 E to avoid a break in major ocean basins. Data repeats in overlap region.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nu (Ocean Surface Zonal Currents, meter/sec)\nv (Ocean Surface Meridional Currents, meter/sec)\num (Ocean Surface Zonal Currents Maximum Mask, meter/sec)\nvm (Ocean Surface Meridional Currents Maximum Mask, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplOscar_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplOscar_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplOscar/index.json", "https://www.esr.org/research/oscar/oscar-surface-currents/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplOscar.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplOscar&showErrors=false&email=", "ESR", "jplOscar"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplOscar_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplOscar_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplOscar_LonPM180/request", "", "public", "OSCAR Sea Surface Velocity, 1/3\u00b0, L4, Global, 1992-present, 5 Day Composite, Lon+/-180", "Ocean Surface Current Analyses Real-time (OSCAR) is a NASA funded research project and global surface current database. OSCAR global ocean surface mixed layer velocities are calculated from satellite-sensed sea surface height gradients, ocean vector winds, and sea surface temperature fields using geostrophy, Ekman, and thermal wind dynamics. OSCAR's continuing improvement depends on better modeling of the momentum transfer both within and across the boundaries of the turbulent mixed layer. A main research objective of the OSCAR project is to improve the generation of surface currents by ocean vector winds, and in doing so further our understanding of the mechanisms behind the transfer of momentum between the atmosphere and the ocean through the planetary boundary layer. Surface currents are provided on global grid every ~5 days, dating from 1992 to present day, with daily updates and near-real-time availability. \n* Principal Investigator: Kathleen Dohan (kdohan@esr.org). Co-Investigator: Gary Lagerloef (lager@esr.org). \n* Maximum Mask velocity is the geostrophic component at all points + any concurrent Ekman and buoyancy components.\n* Longitude extends from 20 E to 420 E to avoid a break in major ocean basins. Data repeats in overlap region.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nu (Ocean Surface Zonal Currents, meter/sec)\nv (Ocean Surface Meridional Currents, meter/sec)\num (Ocean Surface Zonal Currents Maximum Mask, meter/sec)\nvm (Ocean Surface Meridional Currents Maximum Mask, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplOscar_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplOscar_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplOscar_LonPM180/index.json", "https://www.esr.org/research/oscar/oscar-surface-currents/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplOscar_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplOscar_LonPM180&showErrors=false&email=", "ESR", "jplOscar_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_eb99_b146_f2d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_eb99_b146_f2d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_eb99_b146_f2d5/request", "", "public", "OSCAR Third Degree Resolution Ocean Surface Currents, 1992-current YEARS OSCAR Third Degree Resolution Ocean Surface Currents Time, 0.33333334\u00b0", "OSCAR Third Degree Sea Surface Velocity\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nu (Ocean Surface Zonal Currents, meter/sec)\nv (Ocean Surface Meridional Currents, meter/sec)\num (Ocean Surface Zonal Currents Maximum Mask, meter/sec)\nvm (Ocean Surface Meridional Currents Maximum Mask, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_eb99_b146_f2d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_eb99_b146_f2d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_eb99_b146_f2d5/index.json", "https://podaac.jpl.nasa.gov/dataset/OSCAR_L4_OC_third-deg", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_eb99_b146_f2d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_eb99_b146_f2d5&showErrors=false&email=", "ESR", "nasa_jpl_eb99_b146_f2d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_304a_c448_8cd7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_304a_c448_8cd7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_304a_c448_8cd7/request", "", "public", "OSCAR Third Degree Resolution Ocean Surface Currents, FOR LAS 1992-current YEARS OSCAR Third Degree Resolution Ocean Surface Currents Time, 0.33333334\u00b0", "OSCAR Third Degree Sea Surface Velocity\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nu (Ocean Surface Zonal Currents, meter/sec)\nv (Ocean Surface Meridional Currents, meter/sec)\num (Ocean Surface Zonal Currents Maximum Mask, meter/sec)\nvm (Ocean Surface Meridional Currents Maximum Mask, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_304a_c448_8cd7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_304a_c448_8cd7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_304a_c448_8cd7/index.json", "https://podaac.jpl.nasa.gov/dataset/OSCAR_L4_OC_third-deg", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_304a_c448_8cd7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_304a_c448_8cd7&showErrors=false&email=", "ESR", "nasa_jpl_304a_c448_8cd7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasNoix", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasNoix.graph", "", "", "public", "Oscillation Indices (NOI,SOI*,SOI), monthly", "Northern and Southern Oscillation Indices - The NOI (extratropical-based Northern Oscillation Index) and its analog, the SOI* (extratropical-based Southern Oscillation Index) are new indices of midlatitude climate fluctuations that show interesting relationships with fluctuations in marine ecosystems and populations. They reflect the variability in equatorial and extratropical teleconnections and represent a wide range of local and remote climate signals. The indices are counterparts to the traditional SOI (Southern Oscillation Index) that relate variability in the atmospheric forcing of climate change in northern and southern midlatitude hemisphere regions.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\nnoix\nsoix\nsoi\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasNoix/index.json", "https://oceanview.pfeg.noaa.gov/thredds/catalog/noi/catalog.html?dataset=noiScan/noix.nc", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasNoix.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasNoix&showErrors=false&email=", "NOAA ERD", "erdlasNoix"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplOsiSafSeviriSstL3V10", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplOsiSafSeviriSstL3V10.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplOsiSafSeviriSstL3V10/request", "", "public", "OSI SAF, GHRSST, Group for High Resolution SST, SEVIRI IO SST-OSISAF-L3C-v1.0 (SST), Eurasia-Africa, 0.05\u00b0, Hourly, 2017-present", "Sea Surface Temperature from EUMETSAT Ocean and Sea Ice (OSI) Satellite Application Facility (SAF). The L3C product derived from Meteosat Second Generation (MSG)/Spinning Enhanced Visible and Infrared Imager (SEVIRI) brightness temperatures.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (sea surface subskin temperature, degree_C)\nsst_dtime (time difference from reference time, seconds)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (deviation from SST analysis or reference climatology, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nadi_dtime_from_sst (time difference of ADI data from sst measurement, hour)\nsources_of_adi (sources of aerosol dynamic indicator)\nl2p_flags\nquality_level (quality level of SST pixel)\nsatellite_zenith_angle (angular_degree)\nsolar_zenith_angle (angular_degree)\nor_latitude (original latitude of the SST value, degrees_north)\nor_longitude (original longitude of the SST value, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplOsiSafSeviriSstL3V10_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplOsiSafSeviriSstL3V10_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplOsiSafSeviriSstL3V10/index.json", "https://podaac.jpl.nasa.gov/dataset/SEVIRI_IO_SST-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/jplOsiSafSeviriSstL3V10.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplOsiSafSeviriSstL3V10&showErrors=false&email=", "OSISAF", "jplOsiSafSeviriSstL3V10"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_osmc_ec08_5376_efa9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_osmc_ec08_5376_efa9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_osmc_ec08_5376_efa9/request", "", "public", "OSMC gridded summaries, OSMC all platform ALL vars Agg (osmcAllAggAll), 3.0\u00b0, 2004-2018", "Observing System Monitoring Center (OSMC) gridded summaries, OSMC all platform ALL vars Agg\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nALL (ALL all Observations)\nSST (SST all Observations)\nATMP (ATMP all Observations)\nCLOUDS (CLOUDS all Observations)\nPRECIP (PRECIP all Observations)\nSSS (SSS all Observations, PSU)\nWATERLEVEL (WATERLEVEL all Observations)\nWINDDIR (WINDDIR all Observations)\nWINDSPD (WINDSPD all Observations)\nWVHT (WVHT all Observations)\nZSAL (ZSAL all Observations, PSU)\nZTMP (ZTMP all Observations)\nDEWPOINT (DEWPOINT all Observations)\nSLP (SLP all Observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_osmc_ec08_5376_efa9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_osmc_ec08_5376_efa9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_osmc_ec08_5376_efa9/index.json", "http://osmc.noaa.gov/thredds/dodsC/osmcAllAggAll.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_osmc_ec08_5376_efa9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_osmc_ec08_5376_efa9&showErrors=false&email=", "NOAA OSMC", "noaa_osmc_ec08_5376_efa9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_osmc_39d6_ad68_9854", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_osmc_39d6_ad68_9854.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_osmc_39d6_ad68_9854/request", "", "public", "OSMC gridded summaries, OSMC drifter ALL vars Agg (osmcDrifterAggAll), 3.0\u00b0, 2004-2018", "Observing System Monitoring Center (OSMC) gridded summaries, OSMC drifter ALL vars Agg\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nALL (ALL drifter Observations)\nSST (SST drifter Observations)\nATMP (ATMP drifter Observations)\nCLOUDS (CLOUDS drifter Observations)\nPRECIP (PRECIP drifter Observations)\nSSS (SSS drifter Observations, PSU)\nWATERLEVEL (WATERLEVEL drifter Observations)\nWINDDIR (WINDDIR drifter Observations)\nWINDSPD (WINDSPD drifter Observations)\nWVHT (WVHT drifter Observations)\nZSAL (ZSAL drifter Observations, PSU)\nZTMP (ZTMP drifter Observations)\nDEWPOINT (DEWPOINT drifter Observations)\nSLP (SLP drifter Observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_osmc_39d6_ad68_9854_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_osmc_39d6_ad68_9854_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_osmc_39d6_ad68_9854/index.json", "http://osmc.noaa.gov/thredds/dodsC/osmcDrifterAggAll.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_osmc_39d6_ad68_9854.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_osmc_39d6_ad68_9854&showErrors=false&email=", "NOAA OSMC", "noaa_osmc_39d6_ad68_9854"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_osmc_a2bf_9eaa_c194", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_osmc_a2bf_9eaa_c194.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_osmc_a2bf_9eaa_c194/request", "", "public", "OSMC gridded summaries, OSMC Moored Buoy ALL vars Agg (osmcMooredAggAll), 3.0\u00b0, 2004-2018", "Observing System Monitoring Center (OSMC) gridded summaries, OSMC Moored Buoy ALL vars Agg\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nALL (ALL moored Observations)\nSST (SST moored Observations)\nATMP (ATMP moored Observations)\nCLOUDS (CLOUDS moored Observations)\nPRECIP (PRECIP moored Observations)\nSSS (SSS moored Observations, PSU)\nWATERLEVEL (WATERLEVEL moored Observations)\nWINDDIR (WINDDIR moored Observations)\nWINDSPD (WINDSPD moored Observations)\nWVHT (WVHT moored Observations)\nZSAL (ZSAL moored Observations, PSU)\nZTMP (ZTMP moored Observations)\nDEWPOINT (DEWPOINT moored Observations)\nSLP (SLP moored Observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_osmc_a2bf_9eaa_c194_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_osmc_a2bf_9eaa_c194_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_osmc_a2bf_9eaa_c194/index.json", "http://osmc.noaa.gov/thredds/dodsC/osmcMooredAggAll.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_osmc_a2bf_9eaa_c194.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_osmc_a2bf_9eaa_c194&showErrors=false&email=", "NOAA OSMC", "noaa_osmc_a2bf_9eaa_c194"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_osmc_ccec_1b2d_3628", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_osmc_ccec_1b2d_3628.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_osmc_ccec_1b2d_3628/request", "", "public", "OSMC gridded summaries, OSMC Profile ALL vars Agg (osmcProfileAggAll), 3.0\u00b0, 2004-2018", "Observing System Monitoring Center (OSMC) gridded summaries, OSMC Profile ALL vars Agg\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nALL (ALL profile Observations)\nSST (SST profile Observations)\nATMP (ATMP profile Observations)\nCLOUDS (CLOUDS profile Observations)\nPRECIP (PRECIP profile Observations)\nSSS (SSS profile Observations, PSU)\nWATERLEVEL (WATERLEVEL profile Observations)\nWINDDIR (WINDDIR profile Observations)\nWINDSPD (WINDSPD profile Observations)\nWVHT (WVHT profile Observations)\nZSAL (ZSAL profile Observations, PSU)\nZTMP (ZTMP profile Observations)\nDEWPOINT (DEWPOINT profile Observations)\nSLP (SLP profile Observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_osmc_ccec_1b2d_3628_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_osmc_ccec_1b2d_3628_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_osmc_ccec_1b2d_3628/index.json", "http://osmc.noaa.gov/thredds/dodsC/osmcProfileAggAll.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_osmc_ccec_1b2d_3628.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_osmc_ccec_1b2d_3628&showErrors=false&email=", "NOAA OSMC", "noaa_osmc_ccec_1b2d_3628"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_osmc_ee67_b1b9_4d7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_osmc_ee67_b1b9_4d7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_osmc_ee67_b1b9_4d7b/request", "", "public", "OSMC gridded summaries, OSMC Ship ALL vars Agg (osmcShipAggAll), 3.0\u00b0, 2004-2018", "Observing System Monitoring Center (OSMC) gridded summaries, OSMC Ship ALL vars Agg\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nALL (ALL ship Observations)\nSST (SST ship Observations)\nATMP (ATMP ship Observations)\nCLOUDS (CLOUDS ship Observations)\nPRECIP (PRECIP ship Observations)\nSSS (SSS ship Observations, PSU)\nWATERLEVEL (WATERLEVEL ship Observations)\nWINDDIR (WINDDIR ship Observations)\nWINDSPD (WINDSPD ship Observations)\nWVHT (WVHT ship Observations)\nZSAL (ZSAL ship Observations, PSU)\nZTMP (ZTMP ship Observations)\nDEWPOINT (DEWPOINT ship Observations)\nSLP (SLP ship Observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_osmc_ee67_b1b9_4d7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_osmc_ee67_b1b9_4d7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_osmc_ee67_b1b9_4d7b/index.json", "http://osmc.noaa.gov/thredds/dodsC/osmcShipAggAll.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_osmc_ee67_b1b9_4d7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_osmc_ee67_b1b9_4d7b&showErrors=false&email=", "NOAA OSMC", "noaa_osmc_ee67_b1b9_4d7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_osmc_ce52_473e_8851", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_osmc_ce52_473e_8851.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_osmc_ce52_473e_8851/request", "", "public", "OSMC gridded summaries, OSMC Shore ALL vars Agg (osmcShoreAggAll), 3.0\u00b0, 2004-2018", "Observing System Monitoring Center (OSMC) gridded summaries, OSMC Shore ALL vars Agg\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nALL (ALL shore Observations)\nSST (SST shore Observations)\nATMP (ATMP shore Observations)\nCLOUDS (CLOUDS shore Observations)\nPRECIP (PRECIP shore Observations)\nSSS (SSS shore Observations, PSU)\nWATERLEVEL (WATERLEVEL shore Observations)\nWINDDIR (WINDDIR shore Observations)\nWINDSPD (WINDSPD shore Observations)\nWVHT (WVHT shore Observations)\nZSAL (ZSAL shore Observations, PSU)\nZTMP (ZTMP shore Observations)\nDEWPOINT (DEWPOINT shore Observations)\nSLP (SLP shore Observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_osmc_ce52_473e_8851_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_osmc_ce52_473e_8851_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_osmc_ce52_473e_8851/index.json", "http://osmc.noaa.gov/thredds/dodsC/osmcShoreAggAll.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_osmc_ce52_473e_8851.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_osmc_ce52_473e_8851&showErrors=false&email=", "NOAA OSMC", "noaa_osmc_ce52_473e_8851"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_osmc_f137_adee_198c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_osmc_f137_adee_198c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_osmc_f137_adee_198c/request", "", "public", "OSMC gridded summaries, OSMC Tide ALL vars Agg (osmcTideAggAll), 3.0\u00b0, 2004-2018", "Observing System Monitoring Center (OSMC) gridded summaries, OSMC Tide ALL vars Agg\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nALL (ALL tide Observations)\nSST (SST tide Observations)\nATMP (ATMP tide Observations)\nCLOUDS (CLOUDS tide Observations)\nPRECIP (PRECIP tide Observations)\nSSS (SSS tide Observations, PSU)\nWATERLEVEL (WATERLEVEL tide Observations)\nWINDDIR (WINDDIR tide Observations)\nWINDSPD (WINDSPD tide Observations)\nWVHT (WVHT tide Observations)\nZSAL (ZSAL tide Observations, PSU)\nZTMP (ZTMP tide Observations)\nDEWPOINT (DEWPOINT tide Observations)\nSLP (SLP tide Observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_osmc_f137_adee_198c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_osmc_f137_adee_198c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_osmc_f137_adee_198c/index.json", "http://osmc.noaa.gov/thredds/dodsC/osmcTideAggAll.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_osmc_f137_adee_198c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_osmc_f137_adee_198c&showErrors=false&email=", "NOAA OSMC", "noaa_osmc_f137_adee_198c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_osmc_a409_dae7_168d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_osmc_a409_dae7_168d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_osmc_a409_dae7_168d/request", "", "public", "OSMC old gridded summaries, OSMC All 1x1 Obs (Number of valid NCEP obs) (osmc valid obs all), 1.0\u00b0, 1998-2012", "Number of valid National Centers for Environmental Prediction (NCEP) obs (Observing System Monitoring Center (OSMC) old gridded summaries, OSMC All 1x1 Obs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST_OBS (Number of valid NCEP SST observations, Obs count)\nSLP_OBS (Number of valid NCEP SLP observations, Obs count)\nCLOUD_OBS (Number of valid NCEP Cloud observations, Obs count)\nDEWPT_OBS (Number of valid NCEP dew point observations, Obs count)\nWIND_OBS (Number of valid wind dir/spd observations, Obs count)\nATEMP_OBS (Number of valid air temp observations, Obs count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_osmc_a409_dae7_168d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_osmc_a409_dae7_168d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_osmc_a409_dae7_168d/index.json", "http://osmc.noaa.gov/thredds/dodsC/osmc_valid_obs_all.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_osmc_a409_dae7_168d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_osmc_a409_dae7_168d&showErrors=false&email=", "NOAA OSMC", "noaa_osmc_a409_dae7_168d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_osmc_e7c6_a9f0_ee43", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_osmc_e7c6_a9f0_ee43.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_osmc_e7c6_a9f0_ee43/request", "", "public", "OSMC old gridded summaries, OSMC Drifting Buoy 1x1 Obs (Number of valid NCEP drifting buoy obs), 1.0\u00b0, 1998-2012", "Number of valid National Centers for Environmental Prediction (NCEP) drifting buoy obs (Observing System Monitoring Center (OSMC) old gridded summaries, OSMC Drifting Buoy 1x1 Obs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST_OBS (Number of valid NCEP drifting buoy SST observations, Obs count)\nSLP_OBS (Number of valid NCEP drifting buoy SLP observations, Obs count)\nCLOUD_OBS (Number of valid NCEP drifting buoy Cloud observations, Obs count)\nDEWPT_OBS (Number of valid NCEP drifting buoy dew point observations, Obs count)\nWIND_OBS (Number of valid wind drifting buoy dir/spd observations, Obs count)\nATEMP_OBS (Number of valid drifting buoy air temp observations, Obs count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_osmc_e7c6_a9f0_ee43_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_osmc_e7c6_a9f0_ee43_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_osmc_e7c6_a9f0_ee43/index.json", "http://osmc.noaa.gov/thredds/dodsC/osmc_valid_obs_dbuoy.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_osmc_e7c6_a9f0_ee43.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_osmc_e7c6_a9f0_ee43&showErrors=false&email=", "NOAA OSMC", "noaa_osmc_e7c6_a9f0_ee43"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_osmc_3ad4_7bd6_1a3b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_osmc_3ad4_7bd6_1a3b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_osmc_3ad4_7bd6_1a3b/request", "", "public", "OSMC old gridded summaries, OSMC Moored Buoy 1x1 Obs (Number of valid NCEP fixed buoy/CMAN obs), 1.0\u00b0, 1998-2012", "Number of valid National Centers for Environmental Prediction (NCEP) fixed buoy/Coastal Marine Automated Networks (CMAN) obs (Observing System Monitoring Center (OSMC) old gridded summaries, OSMC Moored Buoy 1x1 Obs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST_OBS (Number of valid NCEP fixed buoy/CMAN SST observations, Obs count)\nSLP_OBS (Number of valid NCEP fixed buoy/CMAN SLP observations, Obs count)\nCLOUD_OBS (Number of valid NCEP fixed buoy/CMAN Cloud observations, Obs count)\nDEWPT_OBS (Number of valid NCEP fixed buoy/CMAN dew point observations, Obs count)\nWIND_OBS (Number of valid wind fixed buoy/CMAN dir/spd observations, Obs count)\nATEMP_OBS (Number of valid fixed buoy/CMAN air temp observations, Obs count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_osmc_3ad4_7bd6_1a3b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_osmc_3ad4_7bd6_1a3b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_osmc_3ad4_7bd6_1a3b/index.json", "http://osmc.noaa.gov/thredds/dodsC/osmc_valid_obs_fbuoy.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_osmc_3ad4_7bd6_1a3b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_osmc_3ad4_7bd6_1a3b&showErrors=false&email=", "NOAA OSMC", "noaa_osmc_3ad4_7bd6_1a3b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_osmc_01c7_f7ed_143e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_osmc_01c7_f7ed_143e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_osmc_01c7_f7ed_143e/request", "", "public", "OSMC old gridded summaries, OSMC SHIP 1x1 Obs (Number of valid NCEP ship obs), 1.0\u00b0, 1998-2012", "Number of valid National Centers for Environmental Prediction (NCEP) ship obs (Observing System Monitoring Center (OSMC) old gridded summaries, OSMC SHIP 1x1 Obs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST_OBS (Number of valid NCEP ship SST observations, Obs count)\nSLP_OBS (Number of valid NCEP ship SLP observations, Obs count)\nCLOUD_OBS (Number of valid NCEP ship Cloud observations, Obs count)\nDEWPT_OBS (Number of valid NCEP ship dew point observations, Obs count)\nWIND_OBS (Number of valid wind ship dir/spd observations, Obs count)\nATEMP_OBS (Number of valid ship air temp observations, Obs count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_osmc_01c7_f7ed_143e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_osmc_01c7_f7ed_143e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_osmc_01c7_f7ed_143e/index.json", "http://osmc.noaa.gov/thredds/dodsC/osmc_valid_obs_ship.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_osmc_01c7_f7ed_143e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_osmc_01c7_f7ed_143e&showErrors=false&email=", "NOAA OSMC", "noaa_osmc_01c7_f7ed_143e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c4c3_a5d2_677e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c4c3_a5d2_677e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c4c3_a5d2_677e/request", "", "public", "Ossabaw Sound (S130) Bathymetric Digital Elevation Model (ossabaw sound S130 2018), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c4c3_a5d2_677e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c4c3_a5d2_677e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c4c3_a5d2_677e/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c4c3_a5d2_677e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c4c3_a5d2_677e&showErrors=false&email=", "NOAA", "noaa_ngdc_c4c3_a5d2_677e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/osu2ChlaAnom", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/osu2ChlaAnom.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/osu2ChlaAnom/request", "", "public", "OSU Chlorophyll Anomaly V2, MODIS Aqua, West US, 2003-present", "This suite of CHLA and SST climatology and anomaly data products are derived from daily, 0.0125 degree x 0.0125 degree, MODIS Aqua CHLA and SST fields that cover the California Current System (22N - 51N, 155W - 105W) for the 11-year period July 2002 through June 2013. These daily fields, obtained from the NOAA CoastWatch West Coast Regional Node website, were processed using a successive 3x3, 5x5 and 7x7 grid cell hybrid median filtering technique. This technique was found to effectively reduce noise in the daily fields while maintaining features and detail in important regions such as capes and headlands. The resulting median filtered daily fields were then linearly interpolated to a 0.025 x 0.025 degree grid and averaged to create 132 monthly mean fields. The seasonal cycles at each 0.025 degree x 0.025 degree grid cell were obtained by fitting each multiyear time series of monthly means to a nine-parameter regression model consisting of a constant plus four harmonics (frequencies of N/(1-year), N-1,4; Risien and Chelton 2008, JPO). Even with the median filtering and the temporal averaging of the daily fields, the highly inhomogeneous nature of the MODIS fields still resulted in regression coefficients that were excessively noisy. We therefore applied the same successive 3x3, 5x5 and 7x7 hybrid median filtering technique, described above, to the regression coefficients before finally spatially smoothing the coefficients using a loess smoother (Schlax et al. 2001, JTECH) with filter cutoff wavelengths of 0.25 degree latitude by 0.25 degree longitude. The seasonal cycles were then calculated from the filtered regression coefficients for each 0.025 degree x 0.025 degree grid cell using the mean and all four harmonics. It is important to note that THIS SUITE OF DATA PRODUCTS IS HIGHLY EXPERIMENTAL and is strictly intended for scientific evaluation by experienced marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchla_anomaly (Chlorophyll Anomaly, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/osu2ChlaAnom_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/osu2ChlaAnom_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/osu2ChlaAnom/index.json", "http://cioss.coas.oregonstate.edu/CIOSS/Documents/Published_Reports/Risien_USWC-Sat-Climatology_5-8-14.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/osu2ChlaAnom.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=osu2ChlaAnom&showErrors=false&email=", "Oregon State University", "osu2ChlaAnom"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/osuChlaAnom", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/osuChlaAnom.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/osuChlaAnom/request", "", "public", "OSU Chlorophyll Anomaly, MODIS Aqua, West US, 2002-2016, DEPRECATED", "This suite of CHLA and SST climatology and anomaly data products are derived from daily, 0.0125 degree x 0.0125 degree, MODIS Aqua CHLA and SST fields that cover the California Current System (22N - 51N, 155W - 105W) for the 11-year period July 2002 through June 2013. These daily fields, obtained from the NOAA CoastWatch West Coast Regional Node website, were processed using a successive 3x3, 5x5 and 7x7 grid cell hybrid median filtering technique. This technique was found to effectively reduce noise in the daily fields while maintaining features and detail in important regions such as capes and headlands. The resulting median filtered daily fields were then linearly interpolated to a 0.025 x 0.025 degree grid and averaged to create 132 monthly mean fields. The seasonal cycles at each 0.025 degree x 0.025 degree grid cell were obtained by fitting each multiyear time series of monthly means to a nine-parameter regression model consisting of a constant plus four harmonics (frequencies of N/(1-year), N-1,4; Risien and Chelton 2008, JPO). Even with the median filtering and the temporal averaging of the daily fields, the highly inhomogeneous nature of the MODIS fields still resulted in regression coefficients that were excessively noisy. We therefore applied the same successive 3x3, 5x5 and 7x7 hybrid median filtering technique, described above, to the regression coefficients before finally spatially smoothing the coefficients using a loess smoother (Schlax et al. 2001, JTECH) with filter cutoff wavelengths of 0.25 degree latitude by 0.25 degree longitude. The seasonal cycles were then calculated from the filtered regression coefficients for each 0.025 degree x 0.025 degree grid cell using the mean and all four harmonics. It is important to note that THIS SUITE OF DATA PRODUCTS IS HIGHLY EXPERIMENTAL and is strictly intended for scientific evaluation by experienced marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchla_anomaly (Chlorophyll Anomaly, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/osuChlaAnom_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/osuChlaAnom_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/osuChlaAnom/index.json", "http://cioss.coas.oregonstate.edu/CIOSS/Documents/Published_Reports/Risien_USWC-Sat-Climatology_5-8-14.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/osuChlaAnom.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=osuChlaAnom&showErrors=false&email=", "Oregon State University", "osuChlaAnom"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/osuBloomsModisChla", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/osuBloomsModisChla.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/osuBloomsModisChla/request", "", "public", "OSU Chlorophyll Bloom Product, Aqua Modis, Northwest US, 2002-present", "This product was developed for the Oregon coast based on the observed change between running 8-day composite chlorophyll-a (CHL) data obtained by the MODerate Resolution Imaging Spectraradiometer aboard Aqua (MODIS-Aqua). This product was optimized to detect bloom onset via satellite in Oregon's coastal waters, a region typified by high frequency biological variance yet pervasive cloud cover (see McKibben et al. 2012, JGR-Oceans). The product is based on running relative differences between successive 8-day products. A current composite (an average of the previous 8 days) and a reference composite (an average of the 8-day period immediately preceding the current composite). The reference is differenced from the current, then the result is normalized to the reference. Resulting daily imagery highlights the geographic locations of greatest relative change observed between weekly average CHL, providing a way to track onset and advection of active blooms over time. Note the product is optimized to work best in the coastal waters of Oregon, although it is operational further offshore and to the north or south as satellite coverage permits (coverage is increasingly better to the south and worst further offshore and to the north of Oregon).The bloom product accessible from this page is based on the MODIS CHL product and shows the percent relative change in CHL over time. THIS IS AN EXPERIMENTAL PRODUCT - intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nprc_chla (Percent Relative Change in Chlorophyll-a Concentration, OC3 Algorithm, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/osuBloomsModisChla_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/osuBloomsModisChla_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/osuBloomsModisChla/index.json", "https://oceanwatch.pfeg.noaa.gov/thredds/dodsC/satellite/OSU/blooms/modisChla.html", "http://upwell.pfeg.noaa.gov/erddap/rss/osuBloomsModisChla.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=osuBloomsModisChla&showErrors=false&email=", "Oregon State University", "osuBloomsModisChla"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/osuBloomsViirsChla", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/osuBloomsViirsChla.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/osuBloomsViirsChla/request", "", "public", "OSU Chlorophyll Bloom Product, VIIRS Suomi-NPP, Northwest US, 2012-present", "This product was developed for the Oregon coast based on the observed change between running 8-day composite chlorophyll-a (CHL) data obtained by the VIIRS aboard the Suomi-NPP spacecraft. This product was optimized to detect bloom onset via satellite in the coastal waters of Oregon, a region typified by high frequency biological variance yet pervasive cloud cover (see McKibben et al. 2012, JGR-Oceans). The product is based on running relative differences between successive 8-day products. A current composite (an average of the previous 8 days) and a reference composite (an average of the 8-day period immediately preceding the current composite). The reference is differenced from the current, then the result is normalized to the reference. Resulting daily imagery highlights the geographic locations of greatest relative change observed between weekly average CHL, providing a way to track onset and advection of active blooms over time. Note the product is optimized to work best in the coastal waters of Oregon, although it is operational further offshore and to the north or south as satellite coverage permits (coverage is increasingly better to the south and worst further offshore and to the north of Oregon). The bloom product accessible from this page is based on the VIIRS CHL product and shows the percent relative change in CHL over time. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nprc_chla (Percent Relative Change in Chlorophyll-a Concentration, OC3 Algorithm, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/osuBloomsViirsChla_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/osuBloomsViirsChla_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/osuBloomsViirsChla/index.json", "https://oceanwatch.pfeg.noaa.gov/thredds/dodsC/satellite/OSU/blooms/viirsChla.html", "http://upwell.pfeg.noaa.gov/erddap/rss/osuBloomsViirsChla.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=osuBloomsViirsChla&showErrors=false&email=", "Oregon State University", "osuBloomsViirsChla"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/osu2ChlaClimate", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/osu2ChlaClimate.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/osu2ChlaClimate/request", "", "public", "OSU Chlorophyll Climatology V2, MODIS Aqua, West US, 2002-2003", "This suite of CHLA and SST climatology and anomaly data products are derived from daily, 0.0125 degree x 0.0125 degree, MODIS Aqua CHLA and SST fields that cover the California Current System (22N - 51N, 155W - 105W) for the 11-year period July 2002 through June 2013. These daily fields, obtained from the NOAA CoastWatch West Coast Regional Node website, were processed using a successive 3x3, 5x5 and 7x7 grid cell hybrid median filtering technique. This technique was found to effectively reduce noise in the daily fields while maintaining features and detail in important regions such as capes and headlands. The resulting median filtered daily fields were then linearly interpolated to a 0.025 degree x 0.025 degree grid and averaged to create 132 monthly mean fields. The seasonal cycles at each 0.025 degree x 0.025 degree grid cell were obtained by fitting each multiyear time series of monthly means to a nine-parameter regression model consisting of a constant plus four harmonics (frequencies of N/(1-year), N-1,4; Risien and Chelton 2008, JPO). Even with the median filtering and the temporal averaging of the daily fields, the highly inhomogeneous nature of the MODIS fields still resulted in regression coefficients that were excessively noisy. We therefore applied the same successive 3x3, 5x5 and 7x7 hybrid median filtering technique, described above, to the regression coefficients before finally spatially smoothing the coefficients using a loess smoother (Schlax et al. 2001, JTECH) with filter cutoff wavelengths of 0.25 degree latitude by 0.25 degree longitude. The seasonal cycles were then calculated from the filtered regression coefficients for each 0.025 degree x 0.025 degree grid cell using the mean and all four harmonics. It is important to note that THIS SUITE OF DATA PRODUCTS IS HIGHLY EXPERIMENTAL and is strictly intended for scientific evaluation by experienced marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchla (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/osu2ChlaClimate_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/osu2ChlaClimate_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/osu2ChlaClimate/index.json", "http://cioss.coas.oregonstate.edu/CIOSS/Documents/Published_Reports/Risien_USWC-Sat-Climatology_5-8-14.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/osu2ChlaClimate.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=osu2ChlaClimate&showErrors=false&email=", "Oregon State University", "osu2ChlaClimate"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/osuChlaClimate", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/osuChlaClimate.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/osuChlaClimate/request", "", "public", "OSU Chlorophyll Climatology, MODIS Aqua, West US, 2002-2003, DEPRECATED", "This suite of CHLA and SST climatology and anomaly data products are derived from daily, 0.0125 degree x 0.0125 degree, MODIS Aqua CHLA and SST fields that cover the California Current System (22N - 51N, 155W - 105W) for the 11-year period July 2002 through June 2013. These daily fields, obtained from the NOAA CoastWatch West Coast Regional Node website, were processed using a successive 3x3, 5x5 and 7x7 grid cell hybrid median filtering technique. This technique was found to effectively reduce noise in the daily fields while maintaining features and detail in important regions such as capes and headlands. The resulting median filtered daily fields were then linearly interpolated to a 0.025 degree x 0.025 degree grid and averaged to create 132 monthly mean fields. The seasonal cycles at each 0.025 degree x 0.025 degree grid cell were obtained by fitting each multiyear time series of monthly means to a nine-parameter regression model consisting of a constant plus four harmonics (frequencies of N/(1-year), N-1,4; Risien and Chelton 2008, JPO). Even with the median filtering and the temporal averaging of the daily fields, the highly inhomogeneous nature of the MODIS fields still resulted in regression coefficients that were excessively noisy. We therefore applied the same successive 3x3, 5x5 and 7x7 hybrid median filtering technique, described above, to the regression coefficients before finally spatially smoothing the coefficients using a loess smoother (Schlax et al. 2001, JTECH) with filter cutoff wavelengths of 0.25 degree latitude by 0.25 degree longitude. The seasonal cycles were then calculated from the filtered regression coefficients for each 0.025 degree x 0.025 degree grid cell using the mean and all four harmonics. It is important to note that THIS SUITE OF DATA PRODUCTS IS HIGHLY EXPERIMENTAL and is strictly intended for scientific evaluation by experienced marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchla (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/osuChlaClimate_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/osuChlaClimate_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/osuChlaClimate/index.json", "http://cioss.coas.oregonstate.edu/CIOSS/Documents/Published_Reports/Risien_USWC-Sat-Climatology_5-8-14.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/osuChlaClimate.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=osuChlaClimate&showErrors=false&email=", "Oregon State University", "osuChlaClimate"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/osuBloomsModisCflh", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/osuBloomsModisCflh.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/osuBloomsModisCflh/request", "", "public", "OSU FLH Bloom Product, Aqua Modis, Northwest US, 2002-present", "Two bloom products were developed for the Oregon coast based on the observed change between running 8-day composite chlorophyll-a (CHL) and fluorescence line-height (FLH) products obtained by the MODerate Resolution Imaging Spectraradiometer aboard Aqua (MODIS-Aqua). These products were optimized to detect bloom onset via satellite in Oregon's coastal waters, a region typified by high frequency biological variance yet pervasive cloud cover (see McKibben et al. 2012, JGR-Oceans). The products are based on running relative differences between successive 8-day products: a current composite (an average of the previous 8 days) and a reference composite (an average of the 8-day period immediately preceding the current composite). The reference is differenced from the current, then the result is normalized to the reference. Resulting daily imagery highlights the geographic locations of greatest relative change observed between weekly average CHL or FLH over time, providing a way to track onset and advection of active blooms over time. Note the product is optimized to work best in Oregon's coastal waters, although it is operational further offshore and to the north or south as satellite coverage permits (coverage is increasingly better to the south and worst further offshore and to the north of Oregon). The bloom product accessible from this page is based on MODIS-Aqua FLH and shows the percent relative change in FLH over time. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nprc_cflh (Percent Relative Change in Fluorescence Line Height, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/osuBloomsModisCflh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/osuBloomsModisCflh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/osuBloomsModisCflh/index.json", "https://oceanwatch.pfeg.noaa.gov/thredds/dodsC/satellite/OSU/blooms/modiscflh.html", "http://upwell.pfeg.noaa.gov/erddap/rss/osuBloomsModisCflh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=osuBloomsModisCflh&showErrors=false&email=", "Oregon State University", "osuBloomsModisCflh"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/osu2SstAnom", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/osu2SstAnom.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/osu2SstAnom/request", "", "public", "OSU SST Anomaly V2, MODIS Aqua, West US, July 2002-present", "This suite of CHLA and SST climatology and anomaly data products are derived from daily, 0.0125 degree x 0.0125 degree, MODIS Aqua CHLA and SST fields that cover the California Current System (22N - 51N, 155W - 105W) for the 11-year period July 2002 through June 2013. These daily fields, obtained from the NOAA CoastWatch West Coast Regional Node website, were processed using a successive 3x3, 5x5 and 7x7 grid cell hybrid median filtering technique. This technique was found to effectively reduce noise in the daily fields while maintaining features and detail in important regions such as capes and headlands. The resulting median filtered daily fields were then linearly interpolated to a 0.025 x 0.025 degree grid and averaged to create 132 monthly mean fields. The seasonal cycles at each 0.025 degree x 0.025 degree grid cell were obtained by fitting each multiyear time series of monthly means to a nine-parameter regression model consisting of a constant plus four harmonics (frequencies of N/(1-year), N-1,4; Risien and Chelton 2008, JPO). Even with the median filtering and the temporal averaging of the daily fields, the highly inhomogeneous nature of the MODIS fields still resulted in regression coefficients that were excessively noisy. We therefore applied the same successive 3x3, 5x5 and 7x7 hybrid median filtering technique, described above, to the regression coefficients before finally spatially smoothing the coefficients using a loess smoother (Schlax et al. 2001, JTECH) with filter cutoff wavelengths of 0.25 degree latitude by 0.25 degree longitude. The seasonal cycles were then calculated from the filtered regression coefficients for each 0.025 degree x 0.025 degree grid cell using the mean and all four harmonics. It is important to note that THIS SUITE OF DATA PRODUCTS IS HIGHLY EXPERIMENTAL and is strictly intended for scientific evaluation by experienced marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst_anomaly (Sea Surface Temperature Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/osu2SstAnom_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/osu2SstAnom_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/osu2SstAnom/index.json", "http://cioss.coas.oregonstate.edu/CIOSS/Documents/Published_Reports/Risien_USWC-Sat-Climatology_5-8-14.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/osu2SstAnom.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=osu2SstAnom&showErrors=false&email=", "Oregon State University - College of Earth, Ocean, and Atmospheric Sciences", "osu2SstAnom"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/osuSstAnom", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/osuSstAnom.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/osuSstAnom/request", "", "public", "OSU SST Anomaly, MODIS Aqua, West US, July 2002-2018, DEPRECATED", "This suite of CHLA and SST climatology and anomaly data products are derived from daily, 0.0125 degree x 0.0125 degree, MODIS Aqua CHLA and SST fields that cover the California Current System (22N - 51N, 155W - 105W) for the 11-year period July 2002 through June 2013. These daily fields, obtained from the NOAA CoastWatch West Coast Regional Node website, were processed using a successive 3x3, 5x5 and 7x7 grid cell hybrid median filtering technique. This technique was found to effectively reduce noise in the daily fields while maintaining features and detail in important regions such as capes and headlands. The resulting median filtered daily fields were then linearly interpolated to a 0.025 x 0.025 degree grid and averaged to create 132 monthly mean fields. The seasonal cycles at each 0.025 degree x 0.025 degree grid cell were obtained by fitting each multiyear time series of monthly means to a nine-parameter regression model consisting of a constant plus four harmonics (frequencies of N/(1-year), N-1,4; Risien and Chelton 2008, JPO). Even with the median filtering and the temporal averaging of the daily fields, the highly inhomogeneous nature of the MODIS fields still resulted in regression coefficients that were excessively noisy. We therefore applied the same successive 3x3, 5x5 and 7x7 hybrid median filtering technique, described above, to the regression coefficients before finally spatially smoothing the coefficients using a loess smoother (Schlax et al. 2001, JTECH) with filter cutoff wavelengths of 0.25 degree latitude by 0.25 degree longitude. The seasonal cycles were then calculated from the filtered regression coefficients for each 0.025 degree x 0.025 degree grid cell using the mean and all four harmonics. It is important to note that THIS SUITE OF DATA PRODUCTS IS HIGHLY EXPERIMENTAL and is strictly intended for scientific evaluation by experienced marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst_anomaly (Sea Surface Temperature Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/osuSstAnom_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/osuSstAnom_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/osuSstAnom/index.json", "http://cioss.coas.oregonstate.edu/CIOSS/Documents/Published_Reports/Risien_USWC-Sat-Climatology_5-8-14.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/osuSstAnom.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=osuSstAnom&showErrors=false&email=", "Oregon State University - College of Earth, Ocean, and Atmospheric Sciences", "osuSstAnom"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/osu2SstClimate", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/osu2SstClimate.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/osu2SstClimate/request", "", "public", "OSU SST Climatology V2, MODIS Aqua, West US, 2002-2003", "This suite of CHLA and SST climatology and anomaly data products are derived from daily, 0.0125 degree x 0.0125 degree, MODIS Aqua CHLA and SST fields that cover the California Current System (22N - 51N, 155W - 105W) for the 11-year period July 2002 through June 2013. These daily fields, obtained from the NOAA CoastWatch West Coast Regional Node website, were processed using a successive 3x3, 5x5 and 7x7 grid cell hybrid median filtering technique. This technique was found to effectively reduce noise in the daily fields while maintaining features and detail in important regions such as capes and headlands. The resulting median filtered daily fields were then linearly interpolated to a 0.025 degree x 0.025 degree grid and averaged to create 132 monthly mean fields. The seasonal cycles at each 0.025 degree x 0.025 degree grid cell were obtained by fitting each multiyear time series of monthly means to a nine-parameter regression model consisting of a constant plus four harmonics (frequencies of N/(1-year), N-1,4; Risien and Chelton 2008, JPO). Even with the median filtering and the temporal averaging of the daily fields, the highly inhomogeneous nature of the MODIS fields still resulted in regression coefficients that were excessively noisy. We therefore applied the same successive 3x3, 5x5 and 7x7 hybrid median filtering technique, described above, to the regression coefficients before finally spatially smoothing the coefficients using a loess smoother (Schlax et al. 2001, JTECH) with filter cutoff wavelengths of 0.25 degree latitude by 0.25 degree longitude. The seasonal cycles were then calculated from the filtered regression coefficients for each 0.025 degree x 0.025 degree grid cell using the mean and all four harmonics. It is important to note that THIS SUITE OF DATA PRODUCTS IS HIGHLY EXPERIMENTAL and is strictly intended for scientific evaluation by experienced marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/osu2SstClimate_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/osu2SstClimate_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/osu2SstClimate/index.json", "http://cioss.coas.oregonstate.edu/CIOSS/Documents/Published_Reports/Risien_USWC-Sat-Climatology_5-8-14.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/osu2SstClimate.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=osu2SstClimate&showErrors=false&email=", "Oregon State University - College of Earth, Ocean, and Atmospheric Sciences", "osu2SstClimate"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/osuSstClimate", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/osuSstClimate.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/osuSstClimate/request", "", "public", "OSU SST Climatology, MODIS Aqua, West US, 2002-2003, DEPRECATED", "This suite of CHLA and SST climatology and anomaly data products are derived from daily, 0.0125 degree x 0.0125 degree, MODIS Aqua CHLA and SST fields that cover the California Current System (22N - 51N, 155W - 105W) for the 11-year period July 2002 through June 2013. These daily fields, obtained from the NOAA CoastWatch West Coast Regional Node website, were processed using a successive 3x3, 5x5 and 7x7 grid cell hybrid median filtering technique. This technique was found to effectively reduce noise in the daily fields while maintaining features and detail in important regions such as capes and headlands. The resulting median filtered daily fields were then linearly interpolated to a 0.025 degree x 0.025 degree grid and averaged to create 132 monthly mean fields. The seasonal cycles at each 0.025 degree x 0.025 degree grid cell were obtained by fitting each multiyear time series of monthly means to a nine-parameter regression model consisting of a constant plus four harmonics (frequencies of N/(1-year), N-1,4; Risien and Chelton 2008, JPO). Even with the median filtering and the temporal averaging of the daily fields, the highly inhomogeneous nature of the MODIS fields still resulted in regression coefficients that were excessively noisy. We therefore applied the same successive 3x3, 5x5 and 7x7 hybrid median filtering technique, described above, to the regression coefficients before finally spatially smoothing the coefficients using a loess smoother (Schlax et al. 2001, JTECH) with filter cutoff wavelengths of 0.25 degree latitude by 0.25 degree longitude. The seasonal cycles were then calculated from the filtered regression coefficients for each 0.025 degree x 0.025 degree grid cell using the mean and all four harmonics. It is important to note that THIS SUITE OF DATA PRODUCTS IS HIGHLY EXPERIMENTAL and is strictly intended for scientific evaluation by experienced marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/osuSstClimate_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/osuSstClimate_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/osuSstClimate/index.json", "http://cioss.coas.oregonstate.edu/CIOSS/Documents/Published_Reports/Risien_USWC-Sat-Climatology_5-8-14.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/osuSstClimate.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=osuSstClimate&showErrors=false&email=", "Oregon State University - College of Earth, Ocean, and Atmospheric Sciences", "osuSstClimate"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4158_28f4_b02e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4158_28f4_b02e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4158_28f4_b02e/request", "", "public", "Outgoing Longwave Radiation-Daily Climate Data Record, LTM: from NOAA NCDC: regridded to -90 to 90 at NOAA/ESRL PSD, 1.0\u00b0, 0001", "The product contains the 1-degree by 1-degree daily mean outgoing longwave radiation flux at the top of the atmosphere derived from HIRS radiance observations onboard NOAA Television Infrared Observation Satellite (TIROS)-N series and MetOp satellites. The OLR retrieval uses multispectral regression models (Ellingson et al., 1989, Lee, 2014). The CDR processing includes HIRS radiance calibration, inter-satellite HIRS OLR calibration, normalization of geostationary-based OLR retrieval to HIRS, and grid-based 7-day boxcar temporal integration assisted with Imager-based OLR derived from Gridsat CDR data (Lee, 2014).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nolr (Daily long term mean outgoing longwave radiation, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4158_28f4_b02e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4158_28f4_b02e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4158_28f4_b02e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.olrdcdr.interp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4158_28f4_b02e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4158_28f4_b02e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4158_28f4_b02e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3433_2a4d_737e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3433_2a4d_737e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3433_2a4d_737e/request", "", "public", "Pago Pago, American Samoa Coastal Digital Elevation Model (pago pago 13 mhw 2009), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3433_2a4d_737e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3433_2a4d_737e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3433_2a4d_737e/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3433_2a4d_737e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3433_2a4d_737e&showErrors=false&email=", "NOAA", "noaa_ngdc_3433_2a4d_737e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ae8c_34c7_7fca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ae8c_34c7_7fca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_ae8c_34c7_7fca/request", "", "public", "Pago Pago, American Samoa Coastal Digital Elevation Model (pago pago 3 mhw 2009), 8.3333335E-4\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_ae8c_34c7_7fca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_ae8c_34c7_7fca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ae8c_34c7_7fca/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ae8c_34c7_7fca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ae8c_34c7_7fca&showErrors=false&email=", "NOAA", "noaa_ngdc_ae8c_34c7_7fca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7ba1_c90d_7aca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7ba1_c90d_7aca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7ba1_c90d_7aca/request", "", "public", "Pago Pago, American Samoa Tsunami Forecast Grids for MOST Model (PagoPagoAS A), 0.01\u00b0", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7ba1_c90d_7aca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7ba1_c90d_7aca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7ba1_c90d_7aca/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7ba1_c90d_7aca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7ba1_c90d_7aca&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_7ba1_c90d_7aca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0d58_81d1_b0b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0d58_81d1_b0b1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0d58_81d1_b0b1/request", "", "public", "Pago Pago, American Samoa Tsunami Forecast Grids for MOST Model (PagoPagoAS B)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0d58_81d1_b0b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0d58_81d1_b0b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0d58_81d1_b0b1/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0d58_81d1_b0b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0d58_81d1_b0b1&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_0d58_81d1_b0b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4eaf_3dfc_d42e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4eaf_3dfc_d42e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4eaf_3dfc_d42e/request", "", "public", "Pago Pago, American Samoa Tsunami Forecast Grids for MOST Model (PagoPagoAS C)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4eaf_3dfc_d42e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4eaf_3dfc_d42e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4eaf_3dfc_d42e/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4eaf_3dfc_d42e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4eaf_3dfc_d42e&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_4eaf_3dfc_d42e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_41ce_719c_f12a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_41ce_719c_f12a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_41ce_719c_f12a/request", "", "public", "Palm Beach, Florida Coastal Digital Elevation Model (palm beach 13 mhw 2010), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_41ce_719c_f12a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_41ce_719c_f12a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_41ce_719c_f12a/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_41ce_719c_f12a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_41ce_719c_f12a&showErrors=false&email=", "NOAA", "noaa_ngdc_41ce_719c_f12a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6622_4a1d_e205", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6622_4a1d_e205.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_6622_4a1d_e205/request", "", "public", "Palm Beach, Florida Coastal Digital Elevation Model (palm beach 13 navd88 2010), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_6622_4a1d_e205_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_6622_4a1d_e205_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6622_4a1d_e205/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6622_4a1d_e205.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6622_4a1d_e205&showErrors=false&email=", "NOAA", "noaa_ngdc_6622_4a1d_e205"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3a74_8560_d822", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3a74_8560_d822.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3a74_8560_d822/request", "", "public", "Palm Beach, Florida Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, PalmBeachFL A), 0.005\u00b0", "Palm Beach, Florida Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3a74_8560_d822_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3a74_8560_d822_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3a74_8560_d822/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3a74_8560_d822.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3a74_8560_d822&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_3a74_8560_d822"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6bcc_b747_f58e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6bcc_b747_f58e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_6bcc_b747_f58e/request", "", "public", "Palm Beach, Florida Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, PalmBeachFL B), 0.0025\u00b0", "Palm Beach, Florida Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_6bcc_b747_f58e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_6bcc_b747_f58e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6bcc_b747_f58e/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6bcc_b747_f58e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6bcc_b747_f58e&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_6bcc_b747_f58e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bf30_82aa_7cff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bf30_82aa_7cff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_bf30_82aa_7cff/request", "", "public", "Palm Beach, Florida Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, PalmBeachFL C)", "Palm Beach, Florida Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_bf30_82aa_7cff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_bf30_82aa_7cff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_bf30_82aa_7cff/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_bf30_82aa_7cff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_bf30_82aa_7cff&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_bf30_82aa_7cff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_74f7_acd6_8a50", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_74f7_acd6_8a50.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_74f7_acd6_8a50/request", "", "public", "Panama City, Florida Coastal Digital Elevation Model (panama city 13 mhw 2010), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_74f7_acd6_8a50_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_74f7_acd6_8a50_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_74f7_acd6_8a50/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_74f7_acd6_8a50.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_74f7_acd6_8a50&showErrors=false&email=", "NOAA", "noaa_ngdc_74f7_acd6_8a50"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4b1a_4ceb_1fbb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4b1a_4ceb_1fbb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4b1a_4ceb_1fbb/request", "", "public", "Panama City, Florida Coastal Digital Elevation Model (panama city 13 navd88 2010), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4b1a_4ceb_1fbb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4b1a_4ceb_1fbb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4b1a_4ceb_1fbb/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4b1a_4ceb_1fbb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4b1a_4ceb_1fbb&showErrors=false&email=", "NOAA", "noaa_ngdc_4b1a_4ceb_1fbb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c8ce_b30d_b86e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c8ce_b30d_b86e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c8ce_b30d_b86e/request", "", "public", "Pearl Harbor, Hawaii Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, PearlHarborHI A)", "Pearl Harbor, Hawaii Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c8ce_b30d_b86e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c8ce_b30d_b86e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c8ce_b30d_b86e/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c8ce_b30d_b86e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c8ce_b30d_b86e&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_c8ce_b30d_b86e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e1e9_d835_6030", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e1e9_d835_6030.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e1e9_d835_6030/request", "", "public", "Pearl Harbor, Hawaii Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, PearlHarborHI B), 0.005\u00b0", "Pearl Harbor, Hawaii Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e1e9_d835_6030_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e1e9_d835_6030_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e1e9_d835_6030/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e1e9_d835_6030.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e1e9_d835_6030&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_e1e9_d835_6030"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a767_5a47_2104", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a767_5a47_2104.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_a767_5a47_2104/request", "", "public", "Pearl Harbor, Hawaii Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, PearlHarborHI C)", "Pearl Harbor, Hawaii Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_a767_5a47_2104_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_a767_5a47_2104_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_a767_5a47_2104/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_a767_5a47_2104.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_a767_5a47_2104&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_a767_5a47_2104"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_84ee_72d9_07e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_84ee_72d9_07e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_84ee_72d9_07e2/request", "", "public", "Pensacola Bay (G130) Bathymetric Digital Elevation Model (pensacola bay G130 2018), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_84ee_72d9_07e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_84ee_72d9_07e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_84ee_72d9_07e2/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_84ee_72d9_07e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_84ee_72d9_07e2&showErrors=false&email=", "NOAA", "noaa_ngdc_84ee_72d9_07e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2126_15f3_b9d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2126_15f3_b9d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2126_15f3_b9d3/request", "", "public", "Perdido Bay (G140) Bathymetric Digital Elevation Model (perdido bay G140 2018), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2126_15f3_b9d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2126_15f3_b9d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2126_15f3_b9d3/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2126_15f3_b9d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2126_15f3_b9d3&showErrors=false&email=", "NOAA", "noaa_ngdc_2126_15f3_b9d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_381b_b403_2a0c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_381b_b403_2a0c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_381b_b403_2a0c/request", "", "public", "Perryville and Ivanof Bay, Alaska 1/3 arc-second Coastal Digital Elevation Model, 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_381b_b403_2a0c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_381b_b403_2a0c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_381b_b403_2a0c/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_381b_b403_2a0c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_381b_b403_2a0c&showErrors=false&email=", "NOAA", "noaa_ngdc_381b_b403_2a0c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar01day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar01day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWpar01day/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (1 Day Composite)", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWpar01day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWpar01day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWpar01day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWpar01day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWpar01day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWpar01day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar01day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar01day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWpar01day_LonPM180/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (1 Day Composite), Lon+/-180", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWpar01day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWpar01day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWpar01day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWpar01day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWpar01day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWpar01day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar014day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar014day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWpar014day/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (14 Day Composite)", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWpar014day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWpar014day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWpar014day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWpar014day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWpar014day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWpar014day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar014day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar014day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWpar014day_LonPM180/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (14 Day Composite), Lon+/-180", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWpar014day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWpar014day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWpar014day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWpar014day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWpar014day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWpar014day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar03day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar03day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWpar03day/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (3 Day Composite)", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWpar03day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWpar03day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWpar03day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWpar03day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWpar03day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWpar03day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar03day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar03day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWpar03day_LonPM180/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (3 Day Composite), Lon+/-180", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWpar03day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWpar03day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWpar03day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWpar03day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWpar03day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWpar03day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar08day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar08day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWpar08day/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (8 Day Composite)", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWpar08day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWpar08day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWpar08day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWpar08day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWpar08day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWpar08day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar08day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar08day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWpar08day_LonPM180/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (8 Day Composite), Lon+/-180", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWpar08day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWpar08day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWpar08day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWpar08day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWpar08day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWpar08day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar0mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar0mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWpar0mday/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (Monthly Composite)", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWpar0mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWpar0mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWpar0mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWpar0mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWpar0mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWpar0mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar0mday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar0mday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWpar0mday_LonPM180/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (Monthly Composite), Lon+/-180", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWpar0mday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWpar0mday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWpar0mday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWpar0mday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWpar0mday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWpar0mday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHpar01day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHpar01day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHpar01day/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, 2002-2010, DEPRECATED OLDER VERSION (1 Day Composite)", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHpar01day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHpar01day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHpar01day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHpar01day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHpar01day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHpar01day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHpar08day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHpar08day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHpar08day/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, 2002-2013, DEPRECATED OLDER VERSION (8 Day Composite)", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHpar08day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHpar08day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHpar08day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHpar08day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHpar08day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHpar08day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHpar0mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHpar0mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHpar0mday/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, 2002-2013, DEPRECATED OLDER VERSION (Monthly Composite)", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHpar0mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHpar0mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHpar0mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHpar0mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHpar0mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHpar0mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEpar01day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEpar01day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEpar01day/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, East US, 2002-2012 (1 Day Composite)", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEpar01day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEpar01day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEpar01day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEpar01day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEpar01day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEpar01day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEpar014day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEpar014day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEpar014day/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, East US, 2002-2012 (14 Day Composite)", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEpar014day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEpar014day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEpar014day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEpar014day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEpar014day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEpar014day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEpar03day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEpar03day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEpar03day/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, East US, 2002-2012 (3 Day Composite)", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEpar03day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEpar03day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEpar03day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEpar03day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEpar03day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEpar03day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEpar08day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEpar08day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEpar08day/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, East US, 2002-2012 (8 Day Composite)", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEpar08day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEpar08day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEpar08day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEpar08day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEpar08day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEpar08day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEpar0mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEpar0mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEpar0mday/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, East US, 2002-2012 (Monthly Composite)", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEpar0mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEpar0mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEpar0mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEpar0mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEpar0mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEpar0mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGpar01day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGpar01day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGpar01day/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (1 Day Composite)", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGpar01day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGpar01day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGpar01day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGpar01day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGpar01day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGpar01day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGpar014day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGpar014day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGpar014day/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (14 Day Composite)", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGpar014day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGpar014day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGpar014day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGpar014day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGpar014day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGpar014day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGpar03day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGpar03day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGpar03day/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (3 Day Composite)", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGpar03day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGpar03day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGpar03day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGpar03day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGpar03day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGpar03day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGpar08day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGpar08day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGpar08day/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (8 Day Composite)", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGpar08day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGpar08day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGpar08day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGpar08day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGpar08day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGpar08day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGpar0mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGpar0mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGpar0mday/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (Monthly Composite)", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGpar0mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGpar0mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGpar0mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGpar0mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGpar0mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGpar0mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1par01day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1par01day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1par01day/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (1 Day Composite)", "This dataset has Level 3, Standard Mapped Image, 4km, photosynthetically available radiation (PAR) data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, R. Frouin, einstein m^-2 day^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1par01day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1par01day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1par01day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_par_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1par01day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1par01day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1par01day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1par08day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1par08day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1par08day/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (8 Day Composite)", "This dataset has Level 3, Standard Mapped Image, 4km, photosynthetically available radiation (PAR) data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, R. Frouin, einstein m^-2 day^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1par08day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1par08day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1par08day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_par_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1par08day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1par08day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1par08day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1par0mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1par0mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1par0mday/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (Monthly Composite)", "This dataset has Level 3, Standard Mapped Image, 4km, photosynthetically available radiation (PAR) data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, R. Frouin, einstein m^-2 day^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1par0mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1par0mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1par0mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_par_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1par0mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1par0mday&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1par0mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1551_3f55_44e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1551_3f55_44e8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1551_3f55_44e8/request", "", "public", "Point Reyes, California Tsunami Forecast Grids for MOST Model (PointReyesCA A)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1551_3f55_44e8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1551_3f55_44e8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1551_3f55_44e8/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1551_3f55_44e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1551_3f55_44e8&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_1551_3f55_44e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3f21_b3ff_26b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3f21_b3ff_26b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3f21_b3ff_26b6/request", "", "public", "Point Reyes, California Tsunami Forecast Grids for MOST Model (PointReyesCA B)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3f21_b3ff_26b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3f21_b3ff_26b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3f21_b3ff_26b6/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3f21_b3ff_26b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3f21_b3ff_26b6&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_3f21_b3ff_26b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e091_f6c3_734e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e091_f6c3_734e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e091_f6c3_734e/request", "", "public", "Point Reyes, California Tsunami Forecast Grids for MOST Model (PointReyesCA C)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e091_f6c3_734e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e091_f6c3_734e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e091_f6c3_734e/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e091_f6c3_734e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e091_f6c3_734e&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_e091_f6c3_734e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_31ff_66a6_364b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_31ff_66a6_364b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_31ff_66a6_364b/request", "", "public", "Ponce, Puerto Rico Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, PoncePR A)", "Ponce, Puerto Rico Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_31ff_66a6_364b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_31ff_66a6_364b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_31ff_66a6_364b/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_31ff_66a6_364b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_31ff_66a6_364b&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_31ff_66a6_364b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_88b5_1c92_e5e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_88b5_1c92_e5e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_88b5_1c92_e5e2/request", "", "public", "Ponce, Puerto Rico Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, PoncePR B)", "Ponce, Puerto Rico Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_88b5_1c92_e5e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_88b5_1c92_e5e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_88b5_1c92_e5e2/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_88b5_1c92_e5e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_88b5_1c92_e5e2&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_88b5_1c92_e5e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_753e_06a6_b27e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_753e_06a6_b27e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_753e_06a6_b27e/request", "", "public", "Ponce, Puerto Rico Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, PoncePR C)", "Ponce, Puerto Rico Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_753e_06a6_b27e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_753e_06a6_b27e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_753e_06a6_b27e/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_753e_06a6_b27e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_753e_06a6_b27e&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_753e_06a6_b27e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ac1f_f840_79dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ac1f_f840_79dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_ac1f_f840_79dd/request", "", "public", "Port Alexander Alaska Coastal Digital Elevation Model (port alexander 13 mhw 2011), 9.259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_ac1f_f840_79dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_ac1f_f840_79dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ac1f_f840_79dd/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ac1f_f840_79dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ac1f_f840_79dd&showErrors=false&email=", "NOAA", "noaa_ngdc_ac1f_f840_79dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_fb26_b42e_0285", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_fb26_b42e_0285.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_fb26_b42e_0285/request", "", "public", "Port Alexander, Alaska Tsunami Forecast Grids for MOST Model (PortAlexanderAK A), 0.025\u00b0", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_fb26_b42e_0285_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_fb26_b42e_0285_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_fb26_b42e_0285/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_fb26_b42e_0285.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_fb26_b42e_0285&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_fb26_b42e_0285"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3e25_f908_5d33", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3e25_f908_5d33.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3e25_f908_5d33/request", "", "public", "Port Alexander, Alaska Tsunami Forecast Grids for MOST Model (PortAlexanderAK B), 0.005\u00b0", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3e25_f908_5d33_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3e25_f908_5d33_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3e25_f908_5d33/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3e25_f908_5d33.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3e25_f908_5d33&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_3e25_f908_5d33"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b398_55f2_a574", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b398_55f2_a574.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_b398_55f2_a574/request", "", "public", "Port Alexander, Alaska Tsunami Forecast Grids for MOST Model (PortAlexanderAK C)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_b398_55f2_a574_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_b398_55f2_a574_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_b398_55f2_a574/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_b398_55f2_a574.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_b398_55f2_a574&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_b398_55f2_a574"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2aee_26c5_4aa9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2aee_26c5_4aa9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2aee_26c5_4aa9/request", "", "public", "Port Angeles, Washington Tsunami Forecast Grids for MOST Model (PortAngelesWA A), 0.02\u00b0", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2aee_26c5_4aa9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2aee_26c5_4aa9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2aee_26c5_4aa9/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2aee_26c5_4aa9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2aee_26c5_4aa9&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_2aee_26c5_4aa9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_070c_59d3_4322", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_070c_59d3_4322.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_070c_59d3_4322/request", "", "public", "Port Angeles, Washington Tsunami Forecast Grids for MOST Model (PortAngelesWA B)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_070c_59d3_4322_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_070c_59d3_4322_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_070c_59d3_4322/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_070c_59d3_4322.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_070c_59d3_4322&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_070c_59d3_4322"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ce2c_82ef_65ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ce2c_82ef_65ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_ce2c_82ef_65ea/request", "", "public", "Port Angeles, Washington Tsunami Forecast Grids for MOST Model (PortAngelesWA C)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_ce2c_82ef_65ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_ce2c_82ef_65ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ce2c_82ef_65ea/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ce2c_82ef_65ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ce2c_82ef_65ea&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_ce2c_82ef_65ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_532d_1152_ff4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_532d_1152_ff4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_532d_1152_ff4d/request", "", "public", "Port Orford, Oregon Coastal Digital Elevation Model (port orford 13 mhw 2008), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_532d_1152_ff4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_532d_1152_ff4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_532d_1152_ff4d/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_532d_1152_ff4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_532d_1152_ff4d&showErrors=false&email=", "NOAA", "noaa_ngdc_532d_1152_ff4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_45f3_b4f1_f813", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_45f3_b4f1_f813.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_45f3_b4f1_f813/request", "", "public", "Port Orford, Oregon Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, PortOrfordOR A), 0.02\u00b0", "Port Orford, Oregon Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_45f3_b4f1_f813_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_45f3_b4f1_f813_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_45f3_b4f1_f813/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_45f3_b4f1_f813.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_45f3_b4f1_f813&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_45f3_b4f1_f813"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5163_b10d_f61b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5163_b10d_f61b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5163_b10d_f61b/request", "", "public", "Port Orford, Oregon Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, PortOrfordOR B)", "Port Orford, Oregon Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5163_b10d_f61b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5163_b10d_f61b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5163_b10d_f61b/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5163_b10d_f61b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5163_b10d_f61b&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_5163_b10d_f61b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2888_d975_66c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2888_d975_66c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2888_d975_66c1/request", "", "public", "Port Orford, Oregon Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, PortOrfordOR C)", "Port Orford, Oregon Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2888_d975_66c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2888_d975_66c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2888_d975_66c1/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2888_d975_66c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2888_d975_66c1&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_2888_d975_66c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_43ad_9367_81a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_43ad_9367_81a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_43ad_9367_81a7/request", "", "public", "Port San Luis, California Coastal Digital Elevation Model (port san luis 13 mhw 2011), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_43ad_9367_81a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_43ad_9367_81a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_43ad_9367_81a7/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_43ad_9367_81a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_43ad_9367_81a7&showErrors=false&email=", "NOAA", "noaa_ngdc_43ad_9367_81a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9307_9837_b06c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9307_9837_b06c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9307_9837_b06c/request", "", "public", "Port San Luis, California Coastal Digital Elevation Model (port san luis 13 navd88 2011), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9307_9837_b06c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9307_9837_b06c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9307_9837_b06c/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9307_9837_b06c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9307_9837_b06c&showErrors=false&email=", "NOAA", "noaa_ngdc_9307_9837_b06c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_75c3_ce09_d60d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_75c3_ce09_d60d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_75c3_ce09_d60d/request", "", "public", "Port San Luis, California Tsunami Forecast Grids for MOST Model (PortSanLuisCA A)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_75c3_ce09_d60d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_75c3_ce09_d60d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_75c3_ce09_d60d/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_75c3_ce09_d60d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_75c3_ce09_d60d&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_75c3_ce09_d60d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d235_bfe6_5aa6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d235_bfe6_5aa6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d235_bfe6_5aa6/request", "", "public", "Port San Luis, California Tsunami Forecast Grids for MOST Model (PortSanLuisCA B), 0.005\u00b0", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d235_bfe6_5aa6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d235_bfe6_5aa6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d235_bfe6_5aa6/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d235_bfe6_5aa6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d235_bfe6_5aa6&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_d235_bfe6_5aa6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9000_28ba_8dfb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9000_28ba_8dfb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9000_28ba_8dfb/request", "", "public", "Port San Luis, California Tsunami Forecast Grids for MOST Model (PortSanLuisCA C)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9000_28ba_8dfb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9000_28ba_8dfb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9000_28ba_8dfb/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9000_28ba_8dfb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9000_28ba_8dfb&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_9000_28ba_8dfb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bcda_5eec_7c37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bcda_5eec_7c37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_bcda_5eec_7c37/request", "", "public", "Port Townsend, Washington Coastal Digital Elevation Model (port townsend 13 mhw 2011), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_bcda_5eec_7c37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_bcda_5eec_7c37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_bcda_5eec_7c37/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_bcda_5eec_7c37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_bcda_5eec_7c37&showErrors=false&email=", "NOAA", "noaa_ngdc_bcda_5eec_7c37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6e72_485d_553f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6e72_485d_553f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_6e72_485d_553f/request", "", "public", "Port Townsend, Washington Coastal Digital Elevation Model (port townsend 13 navd88 2011), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_6e72_485d_553f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_6e72_485d_553f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6e72_485d_553f/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6e72_485d_553f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6e72_485d_553f&showErrors=false&email=", "NOAA", "noaa_ngdc_6e72_485d_553f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1e35_5707_797b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1e35_5707_797b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1e35_5707_797b/request", "", "public", "Portland, Maine Coastal Digital Elevation Model (Top Dataset, Regional, portland 13 mhw 2008), 9.259259E-5\u00b0", "Portland, Maine Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1e35_5707_797b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1e35_5707_797b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1e35_5707_797b/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1e35_5707_797b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1e35_5707_797b&showErrors=false&email=", "NOAA", "noaa_ngdc_1e35_5707_797b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c028_172b_2bf2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c028_172b_2bf2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c028_172b_2bf2/request", "", "public", "Portland, Maine Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, PortlandME A)", "Portland, Maine Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c028_172b_2bf2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c028_172b_2bf2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c028_172b_2bf2/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c028_172b_2bf2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c028_172b_2bf2&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_c028_172b_2bf2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5e40_801f_2f28", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5e40_801f_2f28.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5e40_801f_2f28/request", "", "public", "Portland, Maine Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, PortlandME B)", "Portland, Maine Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5e40_801f_2f28_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5e40_801f_2f28_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5e40_801f_2f28/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5e40_801f_2f28.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5e40_801f_2f28&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_5e40_801f_2f28"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3ef8_2432_8adf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3ef8_2432_8adf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3ef8_2432_8adf/request", "", "public", "Portland, Maine Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, PortlandME C)", "Portland, Maine Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3ef8_2432_8adf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3ef8_2432_8adf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3ef8_2432_8adf/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3ef8_2432_8adf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3ef8_2432_8adf&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_3ef8_2432_8adf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_804e_1b41_c312", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_804e_1b41_c312.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_804e_1b41_c312/request", "", "public", "Precipitation Reconstruction (PREC): 2.5x2.5 (Top Dataset, prec, precip.mon.anom), 1948-present", "Precipitation Reconstruction (PREC): 2.5x2.5 (Top Dataset, prec, precip.mon.anom)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Average Monthly Rate of Precipitation, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_804e_1b41_c312_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_804e_1b41_c312_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_804e_1b41_c312/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.prec.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_804e_1b41_c312.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_804e_1b41_c312&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_804e_1b41_c312"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7da8_1d08_3981", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7da8_1d08_3981.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7da8_1d08_3981/request", "", "public", "Precipitation Reconstruction over Land (PREC/L) 2.5x2.5: Number of Gauges, 1948-present", "Precipitation Reconstruction over Land (PREC/L) 2.5x2.5: Number of Gauges (Top Dataset, 2.5deg, precip.mon.number gauges.2.5x2.5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Number of Gauges in Grid Cell for Average Monthly Rate of Precipitation, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7da8_1d08_3981_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7da8_1d08_3981_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7da8_1d08_3981/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.precl.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7da8_1d08_3981.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7da8_1d08_3981&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7da8_1d08_3981"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce46_d88a_1596", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce46_d88a_1596.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ce46_d88a_1596/request", "", "public", "Precipitation Reconstruction over Land (PREC/L): 0.5x0.5 (precip.mon.1981-2010.ltm.0.5x0.5), 0001", "Precipitation Reconstruction over Land (PREC/L): 0.5x0.5 (Top Dataset, 0.5deg, precip.mon.1981-2010.ltm.0.5x0.5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Average Long Term Monthly Rate of Precipitation, mm/day)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ce46_d88a_1596_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ce46_d88a_1596_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ce46_d88a_1596/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.precl.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ce46_d88a_1596.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ce46_d88a_1596&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ce46_d88a_1596"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b610_2092_26c2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b610_2092_26c2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b610_2092_26c2/request", "", "public", "Precipitation Reconstruction over Land (PREC/L): 0.5x0.5 (precip.mon.ltm.0.5x0.5), 0001", "Precipitation Reconstruction over Land (PREC/L): 0.5x0.5 (Top Dataset, 0.5deg, precip.mon.ltm.0.5x0.5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Average Long Term Monthly Rate of Precipitation, mm/day)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b610_2092_26c2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b610_2092_26c2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b610_2092_26c2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.precl.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b610_2092_26c2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b610_2092_26c2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b610_2092_26c2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5bd2_5532_b24f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5bd2_5532_b24f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5bd2_5532_b24f/request", "", "public", "Precipitation Reconstruction over Land (PREC/L): 0.5x0.5 (precip.mon.mean.0.5x0.5), 1948-2012", "Precipitation Reconstruction over Land (PREC/L): 0.5x0.5 (Top Dataset, 0.5deg, precip.mon.mean.0.5x0.5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Average Monthly Rate of Precipitation, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5bd2_5532_b24f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5bd2_5532_b24f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5bd2_5532_b24f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.precl.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5bd2_5532_b24f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5bd2_5532_b24f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5bd2_5532_b24f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f6b_ab42_639d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f6b_ab42_639d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f6b_ab42_639d/request", "", "public", "Precipitation Reconstruction over Land (PREC/L): 0.5x0.5: Number of Gauges, 1948-2012", "Precipitation Reconstruction over Land (PREC/L): 0.5x0.5: Number of Gauges (Top Dataset, 0.5deg, precip.mon.number gauges.0.5x0.5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Number of Gauges in Grid Cell for Average Monthly Rate of Precipitation, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f6b_ab42_639d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f6b_ab42_639d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f6b_ab42_639d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.precl.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f6b_ab42_639d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f6b_ab42_639d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1f6b_ab42_639d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0460_03e4_917f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0460_03e4_917f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0460_03e4_917f/request", "", "public", "Precipitation Reconstruction over Land (PREC/L): 1.0x1.0 (precip.mon.1981-2010.ltm.1x1), 0001", "Precipitation Reconstruction over Land (PREC/L): 1.0x1.0 (Top Dataset, 1.0deg, precip.mon.1981-2010.ltm.1x1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Average Long Term Monthly Rate of Precipitation, mm/day)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0460_03e4_917f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0460_03e4_917f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0460_03e4_917f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.precl.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0460_03e4_917f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0460_03e4_917f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0460_03e4_917f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b6fa_0ac4_30d8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b6fa_0ac4_30d8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b6fa_0ac4_30d8/request", "", "public", "Precipitation Reconstruction over Land (PREC/L): 1.0x1.0 (precip.mon.ltm.1x1), 0001", "Precipitation Reconstruction over Land (PREC/L): 1.0x1.0 (Top Dataset, 1.0deg, precip.mon.ltm.1x1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Average Long Term Monthly Rate of Precipitation, mm/day)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b6fa_0ac4_30d8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b6fa_0ac4_30d8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b6fa_0ac4_30d8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.precl.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b6fa_0ac4_30d8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b6fa_0ac4_30d8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b6fa_0ac4_30d8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_90b6_27d6_304e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_90b6_27d6_304e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_90b6_27d6_304e/request", "", "public", "Precipitation Reconstruction over Land (PREC/L): 1.0x1.0 (precip.mon.mean.1x1), 1948-present", "Precipitation Reconstruction over Land (PREC/L): 1.0x1.0 (Top Dataset, 1.0deg, precip.mon.mean.1x1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Average Monthly Rate of Precipitation, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_90b6_27d6_304e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_90b6_27d6_304e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_90b6_27d6_304e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.precl.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_90b6_27d6_304e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_90b6_27d6_304e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_90b6_27d6_304e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d92_aa30_ae9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d92_aa30_ae9f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9d92_aa30_ae9f/request", "", "public", "Precipitation Reconstruction over Land (PREC/L): 1.0x1.0: Number of Gauges, 1948-present", "Precipitation Reconstruction over Land (PREC/L): 1.0x1.0: Number of Gauges (Top Dataset, 1.0deg, precip.mon.number gauges.1x1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Number of Gauges in Grid Cell for Average Monthly Rate of Precipitation, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9d92_aa30_ae9f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9d92_aa30_ae9f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9d92_aa30_ae9f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.precl.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9d92_aa30_ae9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9d92_aa30_ae9f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9d92_aa30_ae9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78a3_8fa3_1d01", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78a3_8fa3_1d01.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_78a3_8fa3_1d01/request", "", "public", "Precipitation Reconstruction over Land (PREC/L): 2.5x2.5 (precip.mon.1981-2010.ltm.2.5x2.5), 0001", "Precipitation Reconstruction over Land (PREC/L): 2.5x2.5 (Top Dataset, 2.5deg, precip.mon.1981-2010.ltm.2.5x2.5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Average Long Term Monthly Rate of Precipitation, mm/day)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_78a3_8fa3_1d01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_78a3_8fa3_1d01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_78a3_8fa3_1d01/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.precl.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_78a3_8fa3_1d01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_78a3_8fa3_1d01&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_78a3_8fa3_1d01"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b28_d639_4cbc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b28_d639_4cbc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0b28_d639_4cbc/request", "", "public", "Precipitation Reconstruction over Land (PREC/L): 2.5x2.5 (precip.mon.ltm.2.5x2.5), 0001", "Precipitation Reconstruction over Land (PREC/L): 2.5x2.5 (Top Dataset, 2.5deg, precip.mon.ltm.2.5x2.5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Average Long Term Monthly Rate of Precipitation, mm/day)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0b28_d639_4cbc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0b28_d639_4cbc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0b28_d639_4cbc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.precl.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0b28_d639_4cbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0b28_d639_4cbc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0b28_d639_4cbc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73da_ab22_0afe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73da_ab22_0afe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_73da_ab22_0afe/request", "", "public", "Precipitation Reconstruction over Land (PREC/L): 2.5x2.5 (precip.mon.mean.2.5x2.5), 1948-present", "Precipitation Reconstruction over Land (PREC/L): 2.5x2.5 (Top Dataset, 2.5deg, precip.mon.mean.2.5x2.5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Average Monthly Rate of Precipitation, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_73da_ab22_0afe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_73da_ab22_0afe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_73da_ab22_0afe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.precl.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_73da_ab22_0afe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_73da_ab22_0afe&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_73da_ab22_0afe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_d3c0_75a7_82e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_d3c0_75a7_82e3.graph", "", "", "public", "Preliminary of 6h Ocean Wind, Preliminary of 6h Ocean Wind, Best Time Series [time], 2011-present", "NOAA/National Climatic Data Center (NCDC) Blended 6-hourly 0.25-degree Sea Surface Winds. Best time series, taking the data from the most recent run available.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_d3c0_75a7_82e3/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/uv/6h_agg_rt/Preliminary_Aggregation_of_6h_Ocean_Wind_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_d3c0_75a7_82e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_d3c0_75a7_82e3&showErrors=false&email=", "NOAA NESDIS NCDC", "noaa_ncei_d3c0_75a7_82e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_1172_ce2a_d49a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_1172_ce2a_d49a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_1172_ce2a_d49a/request", "", "public", "Preliminary of 6h Ocean Wind, Preliminary of 6h Ocean Wind, Best Time Series [time][zlev][lat][lon], 0.25\u00b0, 2011-present", "NOAA/National Climatic Data Center (NCDC) Blended 6-hourly 0.25-degree Sea Surface Winds. Best time series, taking the data from the most recent run available.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][zlev][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_1172_ce2a_d49a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_1172_ce2a_d49a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_1172_ce2a_d49a/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/uv/6h_agg_rt/Preliminary_Aggregation_of_6h_Ocean_Wind_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_1172_ce2a_d49a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_1172_ce2a_d49a&showErrors=false&email=", "NOAA NESDIS NCDC", "noaa_ncei_1172_ce2a_d49a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_f46f_27f0_19bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_f46f_27f0_19bf.graph", "", "", "public", "Preliminary of Daily Ocean Wind, Preliminary of Daily Ocean Wind, Best Time Series [time], 2011-present", "NOAA/National Climatic Data Center (NCDC) Blended daily 0.25-degree Sea Surface Winds. Best time series, taking the data from the most recent run available.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_f46f_27f0_19bf/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/uv/daily_agg_rt/Preliminary_Aggregation_of_Daily_Ocean_Wind_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_f46f_27f0_19bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_f46f_27f0_19bf&showErrors=false&email=", "NOAA NESDIS NCDC", "noaa_ncei_f46f_27f0_19bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_3d36_a966_1e45", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_3d36_a966_1e45.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_3d36_a966_1e45/request", "", "public", "Preliminary of Daily Ocean Wind, Preliminary of Daily Ocean Wind, Best Time Series [time][zlev][lat][lon], 0.25\u00b0, 2011-present", "NOAA/National Climatic Data Center (NCDC) Blended daily 0.25-degree Sea Surface Winds. Best time series, taking the data from the most recent run available.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][zlev][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\nw (Sea Surface Wind: speed as scalar means, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_3d36_a966_1e45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_3d36_a966_1e45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_3d36_a966_1e45/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/uv/daily_agg_rt/Preliminary_Aggregation_of_Daily_Ocean_Wind_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_3d36_a966_1e45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_3d36_a966_1e45&showErrors=false&email=", "NOAA NESDIS NCDC", "noaa_ncei_3d36_a966_1e45"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPNbfp28day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPNbfp28day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPNbfp28day/request", "", "public", "Primary Productivity, Aqua MODIS and GOES Imager, Global, 2006-2007, EXPERIMENTAL (8 Day Composite)", "Primary Productivity is calculated from NASA Aqua MODIS Chl a and NOAA GOES Imager SST data. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPNbfp28day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPNbfp28day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPNbfp28day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PN_bfp2_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPNbfp28day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPNbfp28day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdPNbfp28day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPNbfp28day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPNbfp28day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPNbfp28day_LonPM180/request", "", "public", "Primary Productivity, Aqua MODIS and GOES Imager, Global, 2006-2007, EXPERIMENTAL (8 Day Composite), Lon+/-180", "Primary Productivity is calculated from NASA Aqua MODIS Chl a and NOAA GOES Imager SST data. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPNbfp28day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPNbfp28day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPNbfp28day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PN_bfp2_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPNbfp28day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPNbfp28day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdPNbfp28day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPPbfp28day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPPbfp28day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPPbfp28day/request", "", "public", "Primary Productivity, Aqua MODIS and Pathfinder, Global, 2002-2013, EXPERIMENTAL, DEPRECATED OLDER VERSION (8 Day Composite)", "Primary Productivity is calculated from NASA Aqua MODIS Chl a SST data. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPPbfp28day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPPbfp28day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPPbfp28day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PP_bfp2_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPPbfp28day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPPbfp28day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdPPbfp28day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPPbfp28day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPPbfp28day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPPbfp28day_LonPM180/request", "", "public", "Primary Productivity, Aqua MODIS and Pathfinder, Global, 2002-2013, EXPERIMENTAL, DEPRECATED OLDER VERSION (8 Day Composite), Lon+/-180", "Primary Productivity is calculated from NASA Aqua MODIS Chl a SST data. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPPbfp28day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPPbfp28day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPPbfp28day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PP_bfp2_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPPbfp28day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPPbfp28day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdPPbfp28day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPPbfp2mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPPbfp2mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPPbfp2mday/request", "", "public", "Primary Productivity, Aqua MODIS and Pathfinder, Global, 2002-2013, EXPERIMENTAL, DEPRECATED OLDER VERSION (Monthly Composite)", "Primary Productivity is calculated from NASA Aqua MODIS Chl a SST data. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPPbfp2mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPPbfp2mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPPbfp2mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PP_bfp2_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPPbfp2mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPPbfp2mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdPPbfp2mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPPbfp2mday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPPbfp2mday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPPbfp2mday_LonPM180/request", "", "public", "Primary Productivity, Aqua MODIS and Pathfinder, Global, 2002-2013, EXPERIMENTAL, DEPRECATED OLDER VERSION (Monthly Composite), Lon+/-180", "Primary Productivity is calculated from NASA Aqua MODIS Chl a SST data. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPPbfp2mday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPPbfp2mday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPPbfp2mday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PP_bfp2_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPPbfp2mday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPPbfp2mday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdPPbfp2mday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1pp1day/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, Global, 2003-present, EXPERIMENTAL (1 Day Composite)", "calculates vertically integrated primary productivity using the Behrenfield - Falkowski method and satellite-based measurements of Chlorophyll a, incident visible surface irradiance, and sea surface temperature. see (Behrenfield and Falkowski, L&O 1997).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1pp1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1pp1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1pp1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PPMH_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1pp1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1pp1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMH1pp1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1pp3day/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, Global, 2003-present, EXPERIMENTAL (3 Day Composite)", "calculates the composite of vertically integrated primary productivity one day files that use the Behrenfield - Falkowski method and satellite-based measurements of Chlorophyll a, incident visible surface irradiance, and sea surface temperature. see (Behrenfield and Falkowski, L&O 1997).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\nnobs (Number of observations in composite, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1pp3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1pp3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1pp3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PPMH_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1pp3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1pp3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMH1pp3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1pp8day/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, Global, 2003-present, EXPERIMENTAL (8 Day Composite)", "calculates the composite of vertically integrated primary productivity one day files that use the Behrenfield - Falkowski method and satellite-based measurements of Chlorophyll a, incident visible surface irradiance, and sea surface temperature. see (Behrenfield and Falkowski, L&O 1997).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\nnobs (Number of observations in composite, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1pp8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1pp8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1pp8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PPMH_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1pp8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1pp8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMH1pp8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1ppmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1ppmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1ppmday/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, Global, 2003-present, EXPERIMENTAL (Monthly Composite)", "calculates the composite of vertically integrated primary productivity one day files that use the Behrenfield - Falkowski method and satellite-based measurements of Chlorophyll a, incident visible surface irradiance, and sea surface temperature. see (Behrenfield and Falkowski, L&O 1997).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1ppmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1ppmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1ppmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PPMH_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1ppmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1ppmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMH1ppmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpp1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpp1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWpp1day/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, West Coast, 1-Day, 2003-present, EXPERIMENTAL", "Primary Productivity is calculated from NASA Aqua MODIS Chl_a, SST and Par data using the Behrenfield-Falkowski method (Behrenfield and Falkowski, Limnology and Oceanography 1997). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWpp1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWpp1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWpp1day/index.json", "https://oceanwatch.pfeg.noaa.gov/thredds/dodsC/satellite/PPMW/1day.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWpp1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWpp1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWpp1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpp1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpp1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWpp1day_LonPM180/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, West Coast, 1-Day, 2003-present, EXPERIMENTAL, Lon+/-180", "Primary Productivity is calculated from NASA Aqua MODIS Chl_a, SST and Par data using the Behrenfield-Falkowski method (Behrenfield and Falkowski, Limnology and Oceanography 1997). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWpp1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWpp1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWpp1day_LonPM180/index.json", "https://oceanwatch.pfeg.noaa.gov/thredds/dodsC/satellite/PPMW/1day.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWpp1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWpp1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWpp1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpp3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpp3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWpp3day/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, West Coast, 3-Day, 2003-present, EXPERIMENTAL", "Primary Productivity is calculated from NASA Aqua MODIS Chl_a, SST and Par data using the Behrenfield-Falkowski method (Behrenfield and Falkowski, Limnology and Oceanography 1997). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\nnobs (Number of Observations in Composite)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWpp3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWpp3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWpp3day/index.json", "https://oceanwatch.pfeg.noaa.gov/thredds/dodsC/satellite/PPMW/3day.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWpp3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWpp3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWpp3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpp3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpp3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWpp3day_LonPM180/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, West Coast, 3-Day, 2003-present, EXPERIMENTAL, Lon+/-180", "Primary Productivity is calculated from NASA Aqua MODIS Chl_a, SST and Par data using the Behrenfield-Falkowski method (Behrenfield and Falkowski, Limnology and Oceanography 1997). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\nnobs (Number of Observations in Composite)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWpp3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWpp3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWpp3day_LonPM180/index.json", "https://oceanwatch.pfeg.noaa.gov/thredds/dodsC/satellite/PPMW/3day.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWpp3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWpp3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWpp3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPPbfp18day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPPbfp18day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPPbfp18day/request", "", "public", "Primary Productivity, SeaWiFS and Pathfinder, Global, 1997-2010, EXPERIMENTAL (8 Day Composite)", "Primary Productivity is calculated from SeaWiFS Chl a, Pathfinder SST, and SeaWiFS PAR data. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPPbfp18day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPPbfp18day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPPbfp18day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PP_bfp1_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPPbfp18day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPPbfp18day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdPPbfp18day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPPbfp18day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPPbfp18day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPPbfp18day_LonPM180/request", "", "public", "Primary Productivity, SeaWiFS and Pathfinder, Global, 1997-2010, EXPERIMENTAL (8 Day Composite), Lon+/-180", "Primary Productivity is calculated from SeaWiFS Chl a, Pathfinder SST, and SeaWiFS PAR data. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPPbfp18day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPPbfp18day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPPbfp18day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PP_bfp1_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPPbfp18day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPPbfp18day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdPPbfp18day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPPbfp1mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPPbfp1mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPPbfp1mday/request", "", "public", "Primary Productivity, SeaWiFS and Pathfinder, Global, 1997-2010, EXPERIMENTAL (Monthly Composite)", "Primary Productivity is calculated from SeaWiFS Chl a, Pathfinder SST, and SeaWiFS PAR data. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPPbfp1mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPPbfp1mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPPbfp1mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PP_bfp1_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPPbfp1mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPPbfp1mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdPPbfp1mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPPbfp1mday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPPbfp1mday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPPbfp1mday_LonPM180/request", "", "public", "Primary Productivity, SeaWiFS and Pathfinder, Global, 1997-2010, EXPERIMENTAL (Monthly Composite), Lon+/-180", "Primary Productivity is calculated from SeaWiFS Chl a, Pathfinder SST, and SeaWiFS PAR data. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPPbfp1mday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPPbfp1mday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPPbfp1mday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PP_bfp1_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPPbfp1mday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPPbfp1mday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdPPbfp1mday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0956_3090_7e2c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0956_3090_7e2c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0956_3090_7e2c/request", "", "public", "Prince William Sound, Alaska Coastal Digital Elevation Model (prince william sound 8 mhhw 2009), 0.0022222223\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0956_3090_7e2c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0956_3090_7e2c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0956_3090_7e2c/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0956_3090_7e2c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0956_3090_7e2c&showErrors=false&email=", "NOAA", "noaa_ngdc_0956_3090_7e2c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0f95_4f7b_5bda", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0f95_4f7b_5bda.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0f95_4f7b_5bda/request", "", "public", "Prince William Sound, Alaska Coastal Digital Elevation Model, 7.4074074E-4\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0f95_4f7b_5bda_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0f95_4f7b_5bda_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0f95_4f7b_5bda/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0f95_4f7b_5bda.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0f95_4f7b_5bda&showErrors=false&email=", "NOAA", "noaa_ngdc_0f95_4f7b_5bda"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28a5_c3e8_117d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28a5_c3e8_117d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28a5_c3e8_117d/request", "", "public", "Princeton University Hydroclimatology Group 61-yr (1948-2008) Palmer Drought Severity Index (PDSI) dataset, 1.0\u00b0", "Forcings are an update to the original version reported in Sheffield et al., J. Climate (2006). Updates include: i) extension to 2008; ii) improved sampling procedure for correction of rain day statistics; iii) use of latest versions of Climatic Research Unit (CRU), SRB and Tropical Rainfall Measuring Mission (TRMM) products; iv) improved consistency between specific and relative humidity and air temperature; v) correction of relative humidity trends. See Sheffield et al., J. Climate (2006) for details of the observations used and the bias correction and downscaling methodology.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][z][latitude][longitude]):\npdsi_pm (self-calibrating Palmer Drought Severity Index with Penman-Monteith PE)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28a5_c3e8_117d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28a5_c3e8_117d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28a5_c3e8_117d/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Sheffield/pdsi_pm_prec_cruV3.10_rnet_pgf_sc_monthly_1948-2008.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28a5_c3e8_117d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28a5_c3e8_117d&showErrors=false&email=", "Princeton University", "noaa_esrl_28a5_c3e8_117d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c6e_7cb7_4567", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c6e_7cb7_4567.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7c6e_7cb7_4567/request", "", "public", "Princeton University Hydroclimatology Group 61-yr (1948-2008) Palmer Drought Severity Index (PDSI) dataset, 1.0\u00b0", "Forcings are an update to the original version reported in Sheffield et al., J. Climate (2006). Updates include: i) extension to 2008; ii) improved sampling procedure for correction of rain day statistics; iii) use of latest versions of Climatic Research Unit (CRU), SRB and Tropical Rainfall Measuring Mission (TRMM) products; iv) improved consistency between specific and relative humidity and air temperature; v) correction of relative humidity trends. See Sheffield et al., J. Climate (2006) for details of the observations used and the bias correction and downscaling methodology.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][z][latitude][longitude]):\npdsi_pm (self-calibrating Palmer Drought Severity Index with Penman-Monteith PE)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7c6e_7cb7_4567_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7c6e_7cb7_4567_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7c6e_7cb7_4567/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Sheffield/pdsi_pm_prec_gpccV4_rnet_pgf_sc_monthly_1948-2007.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7c6e_7cb7_4567.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7c6e_7cb7_4567&showErrors=false&email=", "Princeton University", "noaa_esrl_7c6e_7cb7_4567"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bafd_3238_fe9c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bafd_3238_fe9c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bafd_3238_fe9c/request", "", "public", "Princeton University Hydroclimatology Group 61-yr (1948-2008) Palmer Drought Severity Index (PDSI) dataset, 1.0\u00b0", "Forcings are an update to the original version reported in Sheffield et al., J. Climate (2006). Updates include: i) extension to 2008; ii) improved sampling procedure for correction of rain day statistics; iii) use of latest versions of Climatic Research Unit (CRU), SRB and Tropical Rainfall Measuring Mission (TRMM) products; iv) improved consistency between specific and relative humidity and air temperature; v) correction of relative humidity trends. See Sheffield et al., J. Climate (2006) for details of the observations used and the bias correction and downscaling methodology.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][z][latitude][longitude]):\npdsi_pm (self-calibrating Palmer Drought Severity Index with Penman-Monteith PE)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bafd_3238_fe9c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bafd_3238_fe9c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bafd_3238_fe9c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Sheffield/pdsi_pm_prec_willmottV2.01_rnet_pgf_sc_monthly_1948-2008.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bafd_3238_fe9c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bafd_3238_fe9c&showErrors=false&email=", "Princeton University", "noaa_esrl_bafd_3238_fe9c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c35b_b3ad_abc4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c35b_b3ad_abc4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c35b_b3ad_abc4/request", "", "public", "Princeton University Hydroclimatology Group 61-yr (1948-2008) Palmer Drought Severity Index (PDSI) dataset, 1.0\u00b0", "Forcings are an update to the original version reported in Sheffield et al., J. Climate (2006). Updates include: i) extension to 2008; ii) improved sampling procedure for correction of rain day statistics; iii) use of latest versions of Climatic Research Unit (CRU), SRB and Tropical Rainfall Measuring Mission (TRMM) products; iv) improved consistency between specific and relative humidity and air temperature; v) correction of relative humidity trends. See Sheffield et al., J. Climate (2006) for details of the observations used and the bias correction and downscaling methodology.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][z][latitude][longitude]):\npdsi_pm (self-calibrating Palmer Drought Severity Index with Thornthwaite PE)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c35b_b3ad_abc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c35b_b3ad_abc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c35b_b3ad_abc4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Sheffield/pdsi_pm_prec_cpcV1.0_rnet_pgf_sc_monthly_1948-2008.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c35b_b3ad_abc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c35b_b3ad_abc4&showErrors=false&email=", "Princeton University", "noaa_esrl_c35b_b3ad_abc4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdc5_3ecb_d06e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdc5_3ecb_d06e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bdc5_3ecb_d06e/request", "", "public", "Princeton University Hydroclimatology Group 61-yr (1948-2012) Palmer Drought Severity Index (PDSI) dataset, 1.0\u00b0", "Forcings are an update to the original version reported in Sheffield et al., J. Climate (2006). Updates include: i) extension to 2012; ii) improved sampling procedure for correction of rain day statistics; iii) use of latest versions of Climatic Research Unit (CRU), SRB and Tropical Rainfall Measuring Mission (TRMM) products; iv) improved consistency between specific and relative humidity and air temperature; v) correction of relative humidity trends. See Sheffield et al., J. Climate (2006) for details of the observations used and the bias correction and downscaling methodology.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][z][latitude][longitude]):\npdsi_pm (self-calibrating Palmer Drought Severity Index with Penman-Monteith PE)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bdc5_3ecb_d06e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bdc5_3ecb_d06e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bdc5_3ecb_d06e/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Sheffield/pdsi_pm_prec_cruV3.21_rnet_pgfV2_sc_monthly_1948-2012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bdc5_3ecb_d06e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bdc5_3ecb_d06e&showErrors=false&email=", "Princeton University", "noaa_esrl_bdc5_3ecb_d06e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ec3b_b105_01d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ec3b_b105_01d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_ec3b_b105_01d4/request", "", "public", "Puget Sound 1/3 arc-second MHW Coastal Digital Elevation Model (puget sound 13 mhw 2014), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_ec3b_b105_01d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_ec3b_b105_01d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ec3b_b105_01d4/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ec3b_b105_01d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ec3b_b105_01d4&showErrors=false&email=", "NOAA", "noaa_ngdc_ec3b_b105_01d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d065_3f85_d795", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d065_3f85_d795.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d065_3f85_d795/request", "", "public", "Puget Sound 1/3 arc-second NAVD 88 Coastal Digital Elevation Model (puget sound 13 navd88 2014), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d065_3f85_d795_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d065_3f85_d795_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d065_3f85_d795/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d065_3f85_d795.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d065_3f85_d795&showErrors=false&email=", "NOAA", "noaa_ngdc_d065_3f85_d795"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_b7b7_9f5e_79c1", "", "", "", "", "", "public", "Quantitative Precipitation Estimate (Top Dataset, abrfc, qpe-abrfc-24hr-) [n_valtimes]", "Quantitative Precipitation Estimate (Top Dataset, abrfc, qpe-abrfc-24hr-)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [n_valtimes]):\nvaltimeMINUSreftime (Valtime MINUSreftime, seconds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_b7b7_9f5e_79c1/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/rfc_qpe_files/abrfc/qpe-abrfc-24hr-Aggregation.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_b7b7_9f5e_79c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_b7b7_9f5e_79c1&showErrors=false&email=", "NOAA NCEI", "noaa_ncei_b7b7_9f5e_79c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_da7f_7327_4438", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_da7f_7327_4438.graph", "", "", "public", "Quantitative Precipitation Estimate (Top Dataset, abrfc, qpe-abrfc-24hr-) [time][y][x], 1994-2016", "Quantitative Precipitation Estimate (Top Dataset, abrfc, qpe-abrfc-24hr-)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nTotal_precipitation (24 hr Precip, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_da7f_7327_4438/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/rfc_qpe_files/abrfc/qpe-abrfc-24hr-Aggregation.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_da7f_7327_4438.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_da7f_7327_4438&showErrors=false&email=", "NOAA NCEI", "noaa_ncei_da7f_7327_4438"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplQSWindMon", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplQSWindMon.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplQSWindMon/request", "", "public", "QuikSCAT Model Output, obs4MIPs NASA-JPL, Global, 1 Degree, 1999-2009, Monthly", "This dataset contains ocean surface Eastward wind from SeaWinds on QuikSCAT binned and averaged monthly on 1 degree grids. The coverage is from August 1999 through October 2009. The QuikSCAT Project produced this dataset in support of the CMIP5 (Coupled Model Intercomparison Project Phase 5) under the World Climate Research Program (WCRP) and was first made available via the Earth System Grid. This dataset was derived directly from the QuikSCAT Level 2B dataset, which can be accessed here: https://podaac.jpl.nasa.gov/dataset/QSCAT_LEVEL_2B. The SeaWinds instrument is a conical scanning pencil-beam radar, with dual-beam and dual-polarization capability, operating at Ku-band to provide all-weather ocean surface wind vector retrievals. For more information on the QuikSCAT platform and mission, please visit\nhttps://podaac.jpl.nasa.gov/OceanWind/QuikSCAT .\nFor more information about this dataset, please see the documents in\nftp://podaac.jpl.nasa.gov/allData/climate_intercomparison/wind/docs/ and\nftp://podaac.jpl.nasa.gov/OceanWinds/quikscat/L3/wind_1deg_1mo/docs/ .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsfcWind (Near-Surface Wind Speed, m s-1)\nsfcWindNobs (Near-Surface Wind Speed Number of Observations, 1)\nsfcWindStderr (Near-Surface Wind Speed Standard Error, m s-1)\nuas (Eastward Near-Surface Wind, m s-1)\nuasNobs (Eastward Near-Surface Wind Number of Observations, 1)\nuasStderr (Eastward Near-Surface Wind Standard Error, m s-1)\nvas (Northward Near-Surface Wind, m s-1)\nvasNobs (Northward Near-Surface Wind Number of Observations, 1)\nvasStderr (Northward Near-Surface Wind Standard Error, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplQSWindMon_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplQSWindMon_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplQSWindMon/index.json", "https://podaac.jpl.nasa.gov/dataset/QSCAT_L3_SFC_EASTWARD_WIND_1DEG_1MO", "http://upwell.pfeg.noaa.gov/erddap/rss/jplQSWindMon.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplQSWindMon&showErrors=false&email=", "NASA JPL", "jplQSWindMon"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplQSWindMon_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplQSWindMon_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplQSWindMon_LonPM180/request", "", "public", "QuikSCAT Model Output, obs4MIPs NASA-JPL, Global, 1 Degree, 1999-2009, Monthly, Lon+/-180", "This dataset contains ocean surface Eastward wind from SeaWinds on QuikSCAT binned and averaged monthly on 1 degree grids. The coverage is from August 1999 through October 2009. The QuikSCAT Project produced this dataset in support of the CMIP5 (Coupled Model Intercomparison Project Phase 5) under the World Climate Research Program (WCRP) and was first made available via the Earth System Grid. This dataset was derived directly from the QuikSCAT Level 2B dataset, which can be accessed here: https://podaac.jpl.nasa.gov/dataset/QSCAT_LEVEL_2B. The SeaWinds instrument is a conical scanning pencil-beam radar, with dual-beam and dual-polarization capability, operating at Ku-band to provide all-weather ocean surface wind vector retrievals. For more information on the QuikSCAT platform and mission, please visit\nhttps://podaac.jpl.nasa.gov/OceanWind/QuikSCAT .\nFor more information about this dataset, please see the documents in\nftp://podaac.jpl.nasa.gov/allData/climate_intercomparison/wind/docs/ and\nftp://podaac.jpl.nasa.gov/OceanWinds/quikscat/L3/wind_1deg_1mo/docs/ .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsfcWind (Near-Surface Wind Speed, m s-1)\nsfcWindNobs (Near-Surface Wind Speed Number of Observations, 1)\nsfcWindStderr (Near-Surface Wind Speed Standard Error, m s-1)\nuas (Eastward Near-Surface Wind, m s-1)\nuasNobs (Eastward Near-Surface Wind Number of Observations, 1)\nuasStderr (Eastward Near-Surface Wind Standard Error, m s-1)\nvas (Northward Near-Surface Wind, m s-1)\nvasNobs (Northward Near-Surface Wind Number of Observations, 1)\nvasStderr (Northward Near-Surface Wind Standard Error, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplQSWindMon_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplQSWindMon_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplQSWindMon_LonPM180/index.json", "https://podaac.jpl.nasa.gov/dataset/QSCAT_L3_SFC_EASTWARD_WIND_1DEG_1MO", "http://upwell.pfeg.noaa.gov/erddap/rss/jplQSWindMon_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplQSWindMon_LonPM180&showErrors=false&email=", "NASA JPL", "jplQSWindMon_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_MARI_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): CNMI: 2-D Variables", "Regional Ocean Modeling System (ROMS) 6-day, 3-hourly forecast for the region surrounding the Western North Pacific, including Guam and the Commonwealth of the Northern Mariana Islands (CNMI), at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the Western North Pacific (WRF_CNMI) at approximately 12-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_MARI_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_MARI_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_MARI_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-wnpacific/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_MARI_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_MARI_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_MARI_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_MARI_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): CNMI: 3-D Variables", "Regional Ocean Modeling System (ROMS) 6-day, 3-hourly forecast for the region surrounding the Western North Pacific, including Guam and the Commonwealth of the Northern Mariana Islands (CNMI), at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the Western North Pacific (WRF_CNMI) at approximately 12-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_MARI_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_MARI_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_MARI_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-wnpacific/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_MARI_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_MARI_Best&showErrors=false&email=", "University of Hawaii", "ROMS_MARI_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_Assim_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_Assim_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_MARI_Assim_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): CNMI: Data Assimilating: 2-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly data assimilating hindcast for the region surrounding the Western North Pacific, including Guam and the Commonwealth of the Northern Mariana Islands (CNMI), at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the Western North Pacific (WRF_CNMI) at approximately 12-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast). Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_MARI_Assim_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_MARI_Assim_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_MARI_Assim_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/metadata/roms_mari_assimilation.html", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_MARI_Assim_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_MARI_Assim_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_MARI_Assim_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_Assim_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_Assim_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_MARI_Assim_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): CNMI: Data Assimilating: 3-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly data assimilating hindcast for the region surrounding the Western North Pacific, including Guam and the Commonwealth of the Northern Mariana Islands (CNMI), at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the Western North Pacific (WRF_CNMI) at approximately 12-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast). Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_MARI_Assim_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_MARI_Assim_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_MARI_Assim_Best/index.json", "http://www.pacioos.hawaii.edu/metadata/roms_mari_assimilation.html", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_MARI_Assim_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_MARI_Assim_Best&showErrors=false&email=", "University of Hawaii", "ROMS_MARI_Assim_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARIG_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARIG_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_MARIG_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Guam: 2-D Variables", "Regional Ocean Modeling System (ROMS) 6-day, 3-hourly forecast for the region surrounding Guam and parts of the Commonwealth of the Northern Mariana Islands (CNMI) at approximately 2-km resolution. Boundary conditions provided by the wider ROMS model for the region surrounding the Western North Pacific (ROMS_MARI) at approximately 4-km resolution. Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding Guam and parts of the Commonwealth of the Northern Mariana Islands (CNMI) (WRF_Guam) at approximately 3-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_MARIG_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_MARIG_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_MARIG_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-mariana/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_MARIG_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_MARIG_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_MARIG_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARIG_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARIG_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_MARIG_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Guam: 3-D Variables", "Regional Ocean Modeling System (ROMS) 6-day, 3-hourly forecast for the region surrounding Guam and parts of the Commonwealth of the Northern Mariana Islands (CNMI) at approximately 2-km resolution. Boundary conditions provided by the wider ROMS model for the region surrounding the Western North Pacific (ROMS_MARI) at approximately 4-km resolution. Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding Guam and parts of the Commonwealth of the Northern Mariana Islands (CNMI) (WRF_Guam) at approximately 3-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_MARIG_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_MARIG_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_MARIG_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-mariana/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_MARIG_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_MARIG_Best&showErrors=false&email=", "University of Hawaii", "ROMS_MARIG_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_HIIG_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Main Hawaiian Islands: 2-D Variables", "Regional Ocean Modeling System (ROMS) 7-day, 3-hourly forecast for the region surrounding the main Hawaiian Islands at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the main Hawaiian Islands (WRF_HI) at approximately 6-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; surface currents from PacIOOS high-frequency radios (HFR); and in-situ water temperature and salinity profiles from ARGO floats and ocean glider autonomous underwater vehicles (AUV). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_HIIG_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_HIIG_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_HIIG_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-hawaii/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_HIIG_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_HIIG_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_HIIG_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_HIIG_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Main Hawaiian Islands: 3-D Variables", "Regional Ocean Modeling System (ROMS) 7-day, 3-hourly forecast for the region surrounding the main Hawaiian Islands at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the main Hawaiian Islands (WRF_HI) at approximately 6-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; surface currents from PacIOOS high-frequency radios (HFR); and in-situ water temperature and salinity profiles from ARGO floats and ocean glider autonomous underwater vehicles (AUV). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_HIIG_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_HIIG_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_HIIG_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-hawaii/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_HIIG_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_HIIG_Best&showErrors=false&email=", "University of Hawaii", "ROMS_HIIG_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_Assim_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_Assim_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_HIIG_Assim_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Main Hawaiian Islands: Data Assimilating: 2-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly data assimilating hindcast for the region surrounding the main Hawaiian Islands at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the main Hawaiian Islands (WRF_HI) at approximately 6-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast). Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; surface currents from PacIOOS high-frequency radios (HFR); and in-situ water temperature and salinity profiles from ARGO floats and ocean glider autonomous underwater vehicles (AUV). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_HIIG_Assim_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_HIIG_Assim_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_HIIG_Assim_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/metadata/roms_hiig_assimilation.html", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_HIIG_Assim_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_HIIG_Assim_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_HIIG_Assim_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_Assim_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_Assim_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_HIIG_Assim_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Main Hawaiian Islands: Data Assimilating: 3-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly data assimilating hindcast for the region surrounding the main Hawaiian Islands at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the main Hawaiian Islands (WRF_HI) at approximately 6-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast). Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; surface currents from PacIOOS high-frequency radios (HFR); and in-situ water temperature and salinity profiles from ARGO floats and ocean glider autonomous underwater vehicles (AUV). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_HIIG_Assim_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_HIIG_Assim_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_HIIG_Assim_Best/index.json", "http://www.pacioos.hawaii.edu/metadata/roms_hiig_assimilation.html", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_HIIG_Assim_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_HIIG_Assim_Best&showErrors=false&email=", "University of Hawaii", "ROMS_HIIG_Assim_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIOMSG_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIOMSG_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_HIOMSG_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Oahu South Shore: 2-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly forecast for the region surrounding the south shore of the island of Oahu at approximately 200-m resolution. Boundary conditions provided by the wider ROMS model for the region surrounding the island of Oahu (ROMS_HIOG) at approximately 1-km resolution. Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the island of Oahu (WRF_OA) at approximately 1.5-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; surface currents from PacIOOS high-frequency radios (HFR); and in-situ water temperature and salinity profiles from ARGO floats and ocean glider autonomous underwater vehicles (AUV). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_HIOMSG_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_HIOMSG_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_HIOMSG_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-southoahu/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_HIOMSG_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_HIOMSG_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_HIOMSG_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIOMSG_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIOMSG_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_HIOMSG_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Oahu South Shore: 3-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly forecast for the region surrounding the south shore of the island of Oahu at approximately 200-m resolution. Boundary conditions provided by the wider ROMS model for the region surrounding the island of Oahu (ROMS_HIOG) at approximately 1-km resolution. Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the island of Oahu (WRF_OA) at approximately 1.5-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; surface currents from PacIOOS high-frequency radios (HFR); and in-situ water temperature and salinity profiles from ARGO floats and ocean glider autonomous underwater vehicles (AUV). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_HIOMSG_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_HIOMSG_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_HIOMSG_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-southoahu/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_HIOMSG_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_HIOMSG_Best&showErrors=false&email=", "University of Hawaii", "ROMS_HIOMSG_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_Samoa_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Samoa: 2-D Variables", "Regional Ocean Modeling System (ROMS) 7-day, 3-hourly forecast for the region surrounding the islands of Samoa at approximately 3-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the islands of Samoa (WRF_Samoa) at approximately 3-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_Samoa_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_Samoa_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_Samoa_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-samoa/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_Samoa_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_Samoa_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_Samoa_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_Samoa_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Samoa: 3-D Variables", "Regional Ocean Modeling System (ROMS) 7-day, 3-hourly forecast for the region surrounding the islands of Samoa at approximately 3-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the islands of Samoa (WRF_Samoa) at approximately 3-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_Samoa_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_Samoa_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_Samoa_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-samoa/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_Samoa_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_Samoa_Best&showErrors=false&email=", "University of Hawaii", "ROMS_Samoa_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_Assim_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_Assim_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_Samoa_Assim_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Samoa: Data Assimilating: 2-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly data assimilating hindcast for the region surrounding the islands of Samoa at approximately 3-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the islands of Samoa (WRF_Samoa) at approximately 3-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast). Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_Samoa_Assim_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_Samoa_Assim_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_Samoa_Assim_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/metadata/roms_samoa_assimilation.html", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_Samoa_Assim_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_Samoa_Assim_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_Samoa_Assim_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_Assim_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_Assim_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_Samoa_Assim_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Samoa: Data Assimilating: 3-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly data assimilating hindcast for the region surrounding the islands of Samoa at approximately 3-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the islands of Samoa (WRF_Samoa) at approximately 3-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast). Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_Samoa_Assim_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_Samoa_Assim_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_Samoa_Assim_Best/index.json", "http://www.pacioos.hawaii.edu/metadata/roms_samoa_assimilation.html", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_Samoa_Assim_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_Samoa_Assim_Best&showErrors=false&email=", "University of Hawaii", "ROMS_Samoa_Assim_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ecocast", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ecocast.graph", "", "", "public", "Relative Bycatch:Target Catch Probability Product (daily), EcoCast Project", "The Relative Bycatch:Target Catch Probability Product is produced using a data-driven, multi-species predictive habitat modelling framework. First, boosted regression tree models were fit to determine the habitat preferences of the target species, broadbill swordfish (Xiphias gladius), and three bycatch-sensitive species that interact with the California drift gillnet fishery (leatherback sea turtle (Dermochelys coricea), blue shark (Prionace glauca), California sea lion (Zalophus californianus)). Then, individual species weightings were set to reflect the level of bycatch and management concern for each species. Prediction layers for each species were then combined into a single surface by multiplying the layer by the species weighting, summing the layers, and then re-calculating the range of values in the final predictive surface from -1 (low catch & high bycatch probabilities) to 1 (high catch & low bycatch probabilities).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\necocast (EcoCast Relative Bycatch-Target Catch Probability Product, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ecocast_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ecocast_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHr6678day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHr6678day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHr6678day/request", "", "public", "Remote Sensing Reflectance at 667 nm, Aqua MODIS, NPP, 2002-2013, DEPRECATED OLDER VERSION (8 Day Composite)", "MODIS measures the remote sensing reflectance (Rrs) at 667nm. This can be used to view very high concentrations of phytoplankton in the very surface of the water.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nr667 (Remote Sensing Reflectance at 667 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHr6678day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHr6678day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHr6678day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_r667_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHr6678day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHr6678day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHr6678day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHr667mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHr667mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHr667mday/request", "", "public", "Remote Sensing Reflectance at 667 nm, Aqua MODIS, NPP, 2002-2013, DEPRECATED OLDER VERSION (Monthly Composite)", "MODIS measures the remote sensing reflectance (Rrs) at 667nm. This can be used to view very high concentrations of phytoplankton in the very surface of the water.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nr667 (Remote Sensing Reflectance at 667 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHr667mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHr667mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHr667mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_r667_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHr667mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHr667mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHr667mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEr6671day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEr6671day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEr6671day/request", "", "public", "Remote Sensing Reflectance at 667 nm, Aqua MODIS, NPP, East US, 2002-2012 (1 Day Composite)", "MODIS measures the remote sensing reflectance (Rrs) at 667nm. This can be used to view very high concentrations of phytoplankton in the very surface of the water.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nr667 (Remote Sensing Reflectance at 667 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEr6671day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEr6671day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEr6671day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_r667_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEr6671day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEr6671day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEr6671day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEr66714day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEr66714day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEr66714day/request", "", "public", "Remote Sensing Reflectance at 667 nm, Aqua MODIS, NPP, East US, 2002-2012 (14 Day Composite)", "MODIS measures the remote sensing reflectance (Rrs) at 667nm. This can be used to view very high concentrations of phytoplankton in the very surface of the water.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nr667 (Remote Sensing Reflectance at 667 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEr66714day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEr66714day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEr66714day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_r667_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEr66714day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEr66714day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEr66714day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEr6673day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEr6673day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEr6673day/request", "", "public", "Remote Sensing Reflectance at 667 nm, Aqua MODIS, NPP, East US, 2002-2012 (3 Day Composite)", "MODIS measures the remote sensing reflectance (Rrs) at 667nm. This can be used to view very high concentrations of phytoplankton in the very surface of the water.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nr667 (Remote Sensing Reflectance at 667 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEr6673day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEr6673day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEr6673day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_r667_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEr6673day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEr6673day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEr6673day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEr6678day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEr6678day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEr6678day/request", "", "public", "Remote Sensing Reflectance at 667 nm, Aqua MODIS, NPP, East US, 2002-2012 (8 Day Composite)", "MODIS measures the remote sensing reflectance (Rrs) at 667nm. This can be used to view very high concentrations of phytoplankton in the very surface of the water.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nr667 (Remote Sensing Reflectance at 667 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEr6678day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEr6678day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEr6678day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_r667_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEr6678day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEr6678day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEr6678day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEr667mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEr667mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEr667mday/request", "", "public", "Remote Sensing Reflectance at 667 nm, Aqua MODIS, NPP, East US, 2002-2012 (Monthly Composite)", "MODIS measures the remote sensing reflectance (Rrs) at 667nm. This can be used to view very high concentrations of phytoplankton in the very surface of the water.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nr667 (Remote Sensing Reflectance at 667 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEr667mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEr667mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEr667mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_r667_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEr667mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEr667mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEr667mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGr6671day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGr6671day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGr6671day/request", "", "public", "Remote Sensing Reflectance at 667 nm, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (1 Day Composite)", "MODIS measures the remote sensing reflectance (Rrs) at 667nm. This can be used to view very high concentrations of phytoplankton in the very surface of the water.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nr667 (Remote Sensing Reflectance at 667 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGr6671day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGr6671day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGr6671day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_r667_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGr6671day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGr6671day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGr6671day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGr66714day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGr66714day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGr66714day/request", "", "public", "Remote Sensing Reflectance at 667 nm, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (14 Day Composite)", "MODIS measures the remote sensing reflectance (Rrs) at 667nm. This can be used to view very high concentrations of phytoplankton in the very surface of the water.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nr667 (Remote Sensing Reflectance at 667 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGr66714day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGr66714day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGr66714day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_r667_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGr66714day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGr66714day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGr66714day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGr6673day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGr6673day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGr6673day/request", "", "public", "Remote Sensing Reflectance at 667 nm, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (3 Day Composite)", "MODIS measures the remote sensing reflectance (Rrs) at 667nm. This can be used to view very high concentrations of phytoplankton in the very surface of the water.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nr667 (Remote Sensing Reflectance at 667 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGr6673day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGr6673day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGr6673day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_r667_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGr6673day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGr6673day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGr6673day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGr6678day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGr6678day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGr6678day/request", "", "public", "Remote Sensing Reflectance at 667 nm, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (8 Day Composite)", "MODIS measures the remote sensing reflectance (Rrs) at 667nm. This can be used to view very high concentrations of phytoplankton in the very surface of the water.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nr667 (Remote Sensing Reflectance at 667 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGr6678day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGr6678day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGr6678day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_r667_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGr6678day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGr6678day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGr6678day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGr667mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGr667mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGr667mday/request", "", "public", "Remote Sensing Reflectance at 667 nm, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (Monthly Composite)", "MODIS measures the remote sensing reflectance (Rrs) at 667nm. This can be used to view very high concentrations of phytoplankton in the very surface of the water.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nr667 (Remote Sensing Reflectance at 667 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGr667mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGr667mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGr667mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_r667_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGr667mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGr667mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGr667mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTr6678day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTr6678day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTr6678day/request", "", "public", "Remote Sensing Reflectance at 667 nm, Terra MODIS, NPP, Global, 2000-2013, Science Quality (8 Day Composite)", "MODIS measures the remote sensing reflectance (Rrs) at 667nm. This can be used to view very high concentrations of phytoplankton in the very surface of the water.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nr667 (Remote Sensing Reflectance at 667 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTr6678day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTr6678day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTr6678day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_r667_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTr6678day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTr6678day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTr6678day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTr6678day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTr6678day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTr6678day_LonPM180/request", "", "public", "Remote Sensing Reflectance at 667 nm, Terra MODIS, NPP, Global, 2000-2013, Science Quality (8 Day Composite), Lon+/-180", "MODIS measures the remote sensing reflectance (Rrs) at 667nm. This can be used to view very high concentrations of phytoplankton in the very surface of the water.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nr667 (Remote Sensing Reflectance at 667 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTr6678day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTr6678day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTr6678day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_r667_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTr6678day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTr6678day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTr6678day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTr667mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTr667mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTr667mday/request", "", "public", "Remote Sensing Reflectance at 667 nm, Terra MODIS, NPP, Global, 2000-2013, Science Quality (Monthly Composite)", "MODIS measures the remote sensing reflectance (Rrs) at 667nm. This can be used to view very high concentrations of phytoplankton in the very surface of the water.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nr667 (Remote Sensing Reflectance at 667 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTr667mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTr667mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTr667mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_r667_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTr667mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTr667mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTr667mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTr667mday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTr667mday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTr667mday_LonPM180/request", "", "public", "Remote Sensing Reflectance at 667 nm, Terra MODIS, NPP, Global, 2000-2013, Science Quality (Monthly Composite), Lon+/-180", "MODIS measures the remote sensing reflectance (Rrs) at 667nm. This can be used to view very high concentrations of phytoplankton in the very surface of the water.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nr667 (Remote Sensing Reflectance at 667 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTr667mday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTr667mday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTr667mday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_r667_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTr667mday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTr667mday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTr667mday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_5d32_127d_73a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_5d32_127d_73a1.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC Averages [boundary]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) Averages. Best time series, excluding offset hours less than 25.0 FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [boundary]):\nFSobc_in (free-surface inflow, nudging inverse time scale, second-1)\nFSobc_out (free-surface outflow, nudging inverse time scale, second-1)\nM2obc_in (2D momentum inflow, nudging inverse time scale, second-1)\nM2obc_out (2D momentum outflow, nudging inverse time scale, second-1)\nM3obc_in (3D momentum inflow, nudging inverse time scale, second-1)\nM3obc_out (3D momentum outflow, nudging inverse time scale, second-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_5d32_127d_73a1/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_5d32_127d_73a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_5d32_127d_73a1&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_5d32_127d_73a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_7e03_abc3_35a5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_7e03_abc3_35a5.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC Averages [boundary][tracer]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) Averages. Best time series, excluding offset hours less than 25.0 FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [boundary][tracer]):\nTobc_in (tracers inflow, nudging inverse time scale, second-1)\nTobc_out (tracers outflow, nudging inverse time scale, second-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_7e03_abc3_35a5/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_7e03_abc3_35a5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_7e03_abc3_35a5&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_7e03_abc3_35a5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_55c7_da17_efc9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_55c7_da17_efc9.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC Averages [eta_psi][xi_psi]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) Averages. Best time series, excluding offset hours less than 25.0 FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eta_psi][xi_psi]):\nlon_psi (longitude of PSI-points, degrees_east)\nlat_psi (latitude of PSI-points, degrees_north)\nmask_psi (mask on psi-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_55c7_da17_efc9/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_55c7_da17_efc9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_55c7_da17_efc9&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_55c7_da17_efc9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_a698_46a8_dc7c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_a698_46a8_dc7c.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC Averages [eta_rho][xi_rho]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) Averages. Best time series, excluding offset hours less than 25.0 FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eta_rho][xi_rho]):\nlon_rho (longitude of RHO-points, degrees_east)\nlat_rho (latitude of RHO-points, degrees_north)\nh (bathymetry at RHO-points, meter)\nf (Coriolis parameter at RHO-points, second-1)\npm (curvilinear coordinate metric in XI, meter-1)\npn (curvilinear coordinate metric in ETA, meter-1)\nangle (angle between XI-axis and EAST, radians)\nmask_rho (mask on RHO-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_a698_46a8_dc7c/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_a698_46a8_dc7c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_a698_46a8_dc7c&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_a698_46a8_dc7c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_d463_322b_3cbb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_d463_322b_3cbb.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC Averages [eta_u][xi_u]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) Averages. Best time series, excluding offset hours less than 25.0 FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eta_u][xi_u]):\nlon_u (longitude of U-points, degrees_east)\nlat_u (latitude of U-points, degrees_north)\nmask_u (mask on U-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_d463_322b_3cbb/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_d463_322b_3cbb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_d463_322b_3cbb&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_d463_322b_3cbb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_fc0d_aef8_2e45", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_fc0d_aef8_2e45.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC Averages [eta_v][xi_v]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) Averages. Best time series, excluding offset hours less than 25.0 FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eta_v][xi_v]):\nlon_v (longitude of V-points, degrees_east)\nlat_v (latitude of V-points, degrees_north)\nmask_v (mask on V-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_fc0d_aef8_2e45/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_fc0d_aef8_2e45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_fc0d_aef8_2e45&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_fc0d_aef8_2e45"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_3ba5_3954_52aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_3ba5_3954_52aa.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC Averages [s_rho]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) Averages. Best time series, excluding offset hours less than 25.0 FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [s_rho]):\nCs_r (S-coordinate stretching curves at RHO-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_3ba5_3954_52aa/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_3ba5_3954_52aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_3ba5_3954_52aa&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_3ba5_3954_52aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_6c35_d1a7_f982", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_6c35_d1a7_f982.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC Averages [s_w]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) Averages. Best time series, excluding offset hours less than 25.0 FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [s_w]):\nCs_w (S-coordinate stretching curves at W-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_6c35_d1a7_f982/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_6c35_d1a7_f982.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_6c35_d1a7_f982&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_6c35_d1a7_f982"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_de6d_acd9_ad53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_de6d_acd9_ad53.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC Averages [time]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) Averages. Best time series, excluding offset hours less than 25.0 FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_de6d_acd9_ad53/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_de6d_acd9_ad53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_de6d_acd9_ad53&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_de6d_acd9_ad53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_d868_b85c_c04c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_d868_b85c_c04c.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC Averages [time][eta_rho][xi_rho]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) Averages. Best time series, excluding offset hours less than 25.0 FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][eta_rho][xi_rho]):\nzeta (time-averaged free-surface, meter)\nshflux (time-averaged surface net heat flux, watt meter-2)\nssflux (time-averaged surface net salt flux, (E-P)*SALT, meter second-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_d868_b85c_c04c/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_d868_b85c_c04c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_d868_b85c_c04c&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_d868_b85c_c04c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_9a12_60ba_d4e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_9a12_60ba_d4e2.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC Averages [time][eta_u][xi_u]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) Averages. Best time series, excluding offset hours less than 25.0 FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][eta_u][xi_u]):\nubar (time-averaged vertically integrated u-momentum component, meter second-1)\nsustr (time-averaged surface u-momentum stress, newton meter-2)\nbustr (time-averaged bottom u-momentum stress, newton meter-2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_9a12_60ba_d4e2/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_9a12_60ba_d4e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_9a12_60ba_d4e2&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_9a12_60ba_d4e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_c76b_3c77_130d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_c76b_3c77_130d.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC Averages [time][eta_v][xi_v]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) Averages. Best time series, excluding offset hours less than 25.0 FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][eta_v][xi_v]):\nvbar (time-averaged vertically integrated v-momentum component, meter second-1)\nsvstr (time-averaged surface v-momentum stress, newton meter-2)\nbvstr (time-averaged bottom v-momentum stress, newton meter-2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_c76b_3c77_130d/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_c76b_3c77_130d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_c76b_3c77_130d&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_c76b_3c77_130d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_770d_d5d7_5176", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_770d_d5d7_5176.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC Averages [time][s_rho][eta_rho][xi_rho]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) Averages. Best time series, excluding offset hours less than 25.0 FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][s_rho][eta_rho][xi_rho]):\ntemp (time-averaged potential temperature, degree_C)\nsalt (time-averaged salinity, PSU)\nrho (time-averaged density anomaly, kilogram meter-3)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_770d_d5d7_5176/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_770d_d5d7_5176.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_770d_d5d7_5176&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_770d_d5d7_5176"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_e2d9_575b_87ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_e2d9_575b_87ae.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC Averages [time][s_rho][eta_u][xi_u]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) Averages. Best time series, excluding offset hours less than 25.0 FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][s_rho][eta_u][xi_u]):\nu (time-averaged u-momentum component, meter second-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_e2d9_575b_87ae/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_e2d9_575b_87ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_e2d9_575b_87ae&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_e2d9_575b_87ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_7dd7_7813_78ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_7dd7_7813_78ee.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC Averages [time][s_rho][eta_v][xi_v]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) Averages. Best time series, excluding offset hours less than 25.0 FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][s_rho][eta_v][xi_v]):\nv (time-averaged v-momentum component, meter second-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_7dd7_7813_78ee/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_7dd7_7813_78ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_7dd7_7813_78ee&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_7dd7_7813_78ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_8f0c_8a58_de02", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_8f0c_8a58_de02.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC Averages [time][s_w][eta_rho][xi_rho]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) Averages. Best time series, excluding offset hours less than 25.0 FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][s_w][eta_rho][xi_rho]):\nomega (time-averaged S-coordinate vertical momentum component, meter3 second-1)\nw (time-averaged vertical momentum component, meter second-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_8f0c_8a58_de02/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_8f0c_8a58_de02.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_8f0c_8a58_de02&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_8f0c_8a58_de02"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_a685_50f6_120e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_a685_50f6_120e.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC Averages [tracer]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) Averages. Best time series, excluding offset hours less than 25.0 FMRC datasets for averages operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [tracer]):\nnl_tnu2 (nonlinear model Laplacian mixing coefficient for tracers, meter2 second-1)\nAkt_bak (background vertical mixing coefficient for tracers, meter2 second-1)\nTnudg (Tracers nudging/relaxation inverse time scale, day-1)\nLtracerSrc (tracer point sources and sink activation switch)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_a685_50f6_120e/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_a685_50f6_120e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_a685_50f6_120e&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_a685_50f6_120e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_092d_2e92_7421", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_092d_2e92_7421.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC History [boundary]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) History. Best time series, excluding offset hours less than 25.0 FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [boundary]):\nFSobc_in (free-surface inflow, nudging inverse time scale, second-1)\nFSobc_out (free-surface outflow, nudging inverse time scale, second-1)\nM2obc_in (2D momentum inflow, nudging inverse time scale, second-1)\nM2obc_out (2D momentum outflow, nudging inverse time scale, second-1)\nM3obc_in (3D momentum inflow, nudging inverse time scale, second-1)\nM3obc_out (3D momentum outflow, nudging inverse time scale, second-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_092d_2e92_7421/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_092d_2e92_7421.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_092d_2e92_7421&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_092d_2e92_7421"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_f7c5_bef5_3e86", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_f7c5_bef5_3e86.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC History [boundary][tracer]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) History. Best time series, excluding offset hours less than 25.0 FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [boundary][tracer]):\nTobc_in (tracers inflow, nudging inverse time scale, second-1)\nTobc_out (tracers outflow, nudging inverse time scale, second-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_f7c5_bef5_3e86/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_f7c5_bef5_3e86.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_f7c5_bef5_3e86&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_f7c5_bef5_3e86"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_012b_850b_0db1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_012b_850b_0db1.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC History [eta_psi][xi_psi]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) History. Best time series, excluding offset hours less than 25.0 FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eta_psi][xi_psi]):\nlon_psi (longitude of PSI-points, degrees_east)\nlat_psi (latitude of PSI-points, degrees_north)\nmask_psi (mask on psi-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_012b_850b_0db1/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_012b_850b_0db1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_012b_850b_0db1&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_012b_850b_0db1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_e19a_ae5f_26f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_e19a_ae5f_26f0.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC History [eta_rho][xi_rho]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) History. Best time series, excluding offset hours less than 25.0 FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eta_rho][xi_rho]):\nlon_rho (longitude of RHO-points, degrees_east)\nlat_rho (latitude of RHO-points, degrees_north)\nh (bathymetry at RHO-points, meter)\nf (Coriolis parameter at RHO-points, second-1)\npm (curvilinear coordinate metric in XI, meter-1)\npn (curvilinear coordinate metric in ETA, meter-1)\nangle (angle between XI-axis and EAST, radians)\nmask_rho (mask on RHO-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_e19a_ae5f_26f0/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_e19a_ae5f_26f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_e19a_ae5f_26f0&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_e19a_ae5f_26f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_f28b_fcf9_c617", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_f28b_fcf9_c617.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC History [eta_u][xi_u]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) History. Best time series, excluding offset hours less than 25.0 FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eta_u][xi_u]):\nlon_u (longitude of U-points, degrees_east)\nlat_u (latitude of U-points, degrees_north)\nmask_u (mask on U-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_f28b_fcf9_c617/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_f28b_fcf9_c617.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_f28b_fcf9_c617&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_f28b_fcf9_c617"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_76ae_ec4c_70dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_76ae_ec4c_70dc.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC History [eta_v][xi_v]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) History. Best time series, excluding offset hours less than 25.0 FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eta_v][xi_v]):\nlon_v (longitude of V-points, degrees_east)\nlat_v (latitude of V-points, degrees_north)\nmask_v (mask on V-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_76ae_ec4c_70dc/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_76ae_ec4c_70dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_76ae_ec4c_70dc&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_76ae_ec4c_70dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_9ea0_dba8_257e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_9ea0_dba8_257e.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC History [s_rho]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) History. Best time series, excluding offset hours less than 25.0 FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [s_rho]):\nCs_r (S-coordinate stretching curves at RHO-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_9ea0_dba8_257e/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_9ea0_dba8_257e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_9ea0_dba8_257e&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_9ea0_dba8_257e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_2c5e_c545_a469", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_2c5e_c545_a469.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC History [s_w]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) History. Best time series, excluding offset hours less than 25.0 FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [s_w]):\nCs_w (S-coordinate stretching curves at W-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_2c5e_c545_a469/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_2c5e_c545_a469.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_2c5e_c545_a469&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_2c5e_c545_a469"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_850e_66dc_acbb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_850e_66dc_acbb.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC History [time]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) History. Best time series, excluding offset hours less than 25.0 FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_850e_66dc_acbb/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_850e_66dc_acbb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_850e_66dc_acbb&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_850e_66dc_acbb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_82d6_01ee_5061", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_82d6_01ee_5061.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC History [time][eta_rho][xi_rho]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) History. Best time series, excluding offset hours less than 25.0 FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][eta_rho][xi_rho]):\nzeta (free-surface, meter)\nshflux (surface net heat flux, watt meter-2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_82d6_01ee_5061/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_82d6_01ee_5061.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_82d6_01ee_5061&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_82d6_01ee_5061"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_9f1c_af02_6c9e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_9f1c_af02_6c9e.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC History [time][eta_u][xi_u]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) History. Best time series, excluding offset hours less than 25.0 FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][eta_u][xi_u]):\nubar (vertically integrated u-momentum component, meter second-1)\nDU_avg1 (time averaged u-flux for 2D equations, meter3 second-1)\nDU_avg2 (time averaged u-flux for 3D equations coupling, meter3 second-1)\nsustr (surface u-momentum stress, newton meter-2)\nbustr (bottom u-momentum stress, newton meter-2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_9f1c_af02_6c9e/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_9f1c_af02_6c9e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_9f1c_af02_6c9e&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_9f1c_af02_6c9e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_75b9_afd3_642e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_75b9_afd3_642e.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC History [time][eta_v][xi_v]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) History. Best time series, excluding offset hours less than 25.0 FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][eta_v][xi_v]):\nvbar (vertically integrated v-momentum component, meter second-1)\nDV_avg1 (time averaged v-flux for 2D equations, meter3 second-1)\nDV_avg2 (time averaged v-flux for 3D equations coupling, meter3 second-1)\nsvstr (surface v-momentum stress, newton meter-2)\nbvstr (bottom v-momentum stress, newton meter-2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_75b9_afd3_642e/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_75b9_afd3_642e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_75b9_afd3_642e&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_75b9_afd3_642e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_9029_94a8_f9cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_9029_94a8_f9cd.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC History [time][s_rho][eta_rho][xi_rho]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) History. Best time series, excluding offset hours less than 25.0 FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][s_rho][eta_rho][xi_rho]):\ntemp (potential temperature, degree_C)\nsalt (salinity, PSU)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_9029_94a8_f9cd/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_9029_94a8_f9cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_9029_94a8_f9cd&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_9029_94a8_f9cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_22e9_0d64_9d65", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_22e9_0d64_9d65.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC History [time][s_rho][eta_u][xi_u]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) History. Best time series, excluding offset hours less than 25.0 FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][s_rho][eta_u][xi_u]):\nu (u-momentum component, meter second-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_22e9_0d64_9d65/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_22e9_0d64_9d65.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_22e9_0d64_9d65&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_22e9_0d64_9d65"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_7677_671c_96b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_7677_671c_96b9.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC History [time][s_rho][eta_v][xi_v]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) History. Best time series, excluding offset hours less than 25.0 FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][s_rho][eta_v][xi_v]):\nv (v-momentum component, meter second-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_7677_671c_96b9/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_7677_671c_96b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_7677_671c_96b9&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_7677_671c_96b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_fc86_488a_0b1f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_fc86_488a_0b1f.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC History [time][s_w][eta_rho][xi_rho]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) History. Best time series, excluding offset hours less than 25.0 FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][s_w][eta_rho][xi_rho]):\nw (vertical momentum component, meter second-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_fc86_488a_0b1f/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_fc86_488a_0b1f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_fc86_488a_0b1f&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_fc86_488a_0b1f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_933e_4a3d_4536", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/rutgers_marine_933e_4a3d_4536.graph", "", "", "public", "ROMS ESPRESSO IS4DVAR Forecast, v2 2013-present FMRC History [tracer]", "Regional Ocean Modeling System (ROMS) Experimental System for Predicting Shelf and Slope Optics (ESPRESSO) Real-Time Operational IS4DVAR Forecast System Version 2 (NEW) 2013-present Forecast Model Run Collection (FMRC) History. Best time series, excluding offset hours less than 25.0 FMRC datasets for history operational nowcast/forecast system version 2 for maracoos project (https://maracoos.org). grid configuration and assimilation system the same as for the ~6 km resolution roms espresso experiment. these simulations are forced by ncep nam operational atmospheric forcing, boundary conditions are from hycom-ncoda 1/12 deg model; tides are from ADvanced CIRCulation (adcirc) model. assimilated data: sst (avhrr and blended mw+ir), hf radar, along track ssh from jason2.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [tracer]):\nnl_tnu2 (nonlinear model Laplacian mixing coefficient for tracers, meter2 second-1)\nAkt_bak (background vertical mixing coefficient for tracers, meter2 second-1)\nTnudg (Tracers nudging/relaxation inverse time scale, day-1)\nLtracerSrc (tracer point sources and sink activation switch)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/rutgers_marine_933e_4a3d_4536/index.json", "https://www.myroms.org/applications/espresso/", "http://upwell.pfeg.noaa.gov/erddap/rss/rutgers_marine_933e_4a3d_4536.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rutgers_marine_933e_4a3d_4536&showErrors=false&email=", "MARINE.RUTGERS", "rutgers_marine_933e_4a3d_4536"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DFore3hrlyDiag", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DFore3hrlyDiag.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG2DFore3hrlyDiag/request", "", "public", "RTOFS Forecast, 2D, 3-Hourly Diagnostic, Global, Latest Model Run, today - today+8days", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nssh (Sea Surface Elevation, m)\nice_coverage (Sea Ice Area Fraction, 1)\nice_thickness (Sea Ice Thickness, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG2DFore3hrlyDiag_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG2DFore3hrlyDiag_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG2DFore3hrlyDiag/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG2DFore3hrlyDiag.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG2DFore3hrlyDiag&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG2DFore3hrlyDiag"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DFore3hrlyDiag_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DFore3hrlyDiag_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG2DFore3hrlyDiag_LonPM180/request", "", "public", "RTOFS Forecast, 2D, 3-Hourly Diagnostic, Global, Latest Model Run, today - today+8days, Lon+/-180", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nssh (Sea Surface Elevation, m)\nice_coverage (Sea Ice Area Fraction, 1)\nice_thickness (Sea Ice Thickness, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG2DFore3hrlyDiag_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG2DFore3hrlyDiag_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG2DFore3hrlyDiag_LonPM180/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG2DFore3hrlyDiag_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG2DFore3hrlyDiag_LonPM180&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG2DFore3hrlyDiag_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DFore3hrlyProg", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DFore3hrlyProg.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG2DFore3hrlyProg/request", "", "public", "RTOFS Forecast, 2D, 3-Hourly Prognostic, Global, Latest Model Run, today - today+8days", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nsss (Sea Water Practical Salinity, PSU)\nu_velocity (Eastward Sea Water Velocity, m s-1)\nv_velocity (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG2DFore3hrlyProg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG2DFore3hrlyProg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG2DFore3hrlyProg/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG2DFore3hrlyProg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG2DFore3hrlyProg&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG2DFore3hrlyProg"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DFore3hrlyProg_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DFore3hrlyProg_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG2DFore3hrlyProg_LonPM180/request", "", "public", "RTOFS Forecast, 2D, 3-Hourly Prognostic, Global, Latest Model Run, today - today+8days, Lon+/-180", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nsss (Sea Water Practical Salinity, PSU)\nu_velocity (Eastward Sea Water Velocity, m s-1)\nv_velocity (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG2DFore3hrlyProg_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG2DFore3hrlyProg_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG2DFore3hrlyProg_LonPM180/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG2DFore3hrlyProg_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG2DFore3hrlyProg_LonPM180&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG2DFore3hrlyProg_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DForeDailyDiag", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DForeDailyDiag.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG2DForeDailyDiag/request", "", "public", "RTOFS Forecast, 2D, Daily Diagnostic, Global, Latest Model Run, today - today+8days", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nssh (Sea Surface Elevation, m)\nice_coverage (Sea Ice Area Fraction, 1)\nice_thickness (Sea Ice Thickness, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG2DForeDailyDiag_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG2DForeDailyDiag_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG2DForeDailyDiag/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG2DForeDailyDiag.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG2DForeDailyDiag&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG2DForeDailyDiag"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DForeDailyDiag_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DForeDailyDiag_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG2DForeDailyDiag_LonPM180/request", "", "public", "RTOFS Forecast, 2D, Daily Diagnostic, Global, Latest Model Run, today - today+8days, Lon+/-180", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nssh (Sea Surface Elevation, m)\nice_coverage (Sea Ice Area Fraction, 1)\nice_thickness (Sea Ice Thickness, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG2DForeDailyDiag_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG2DForeDailyDiag_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG2DForeDailyDiag_LonPM180/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG2DForeDailyDiag_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG2DForeDailyDiag_LonPM180&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG2DForeDailyDiag_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DForeDailyProg", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DForeDailyProg.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG2DForeDailyProg/request", "", "public", "RTOFS Forecast, 2D, Daily Prognostic, Global, Latest Model Run, today - today+8days", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nsss (Sea Water Practical Salinity, PSU)\nu_velocity (Eastward Sea Water Velocity, m s-1)\nv_velocity (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG2DForeDailyProg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG2DForeDailyProg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG2DForeDailyProg/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG2DForeDailyProg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG2DForeDailyProg&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG2DForeDailyProg"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DForeDailyProg_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DForeDailyProg_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG2DForeDailyProg_LonPM180/request", "", "public", "RTOFS Forecast, 2D, Daily Prognostic, Global, Latest Model Run, today - today+8days, Lon+/-180", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nsss (Sea Water Practical Salinity, PSU)\nu_velocity (Eastward Sea Water Velocity, m s-1)\nv_velocity (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG2DForeDailyProg_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG2DForeDailyProg_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG2DForeDailyProg_LonPM180/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG2DForeDailyProg_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG2DForeDailyProg_LonPM180&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG2DForeDailyProg_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DFore6hrlyR1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DFore6hrlyR1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG3DFore6hrlyR1/request", "", "public", "RTOFS Forecast, 3D, 6-Hourly, Region 1 (US East), Latest Model Run, today - today+8days", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntemperature (Sea Water Potential Temperature, degree_C)\nsalinity (Sea Water Practical Salinity, PSU)\nu (Eastward Sea Water Velocity, m s-1)\nv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG3DFore6hrlyR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG3DFore6hrlyR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG3DFore6hrlyR1/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG3DFore6hrlyR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG3DFore6hrlyR1&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG3DFore6hrlyR1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DFore6hrlyR2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DFore6hrlyR2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG3DFore6hrlyR2/request", "", "public", "RTOFS Forecast, 3D, 6-Hourly, Region 2 (US West), Latest Model Run, today - today+8days", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntemperature (Sea Water Potential Temperature, degree_C)\nsalinity (Sea Water Practical Salinity, PSU)\nu (Eastward Sea Water Velocity, m s-1)\nv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG3DFore6hrlyR2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG3DFore6hrlyR2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG3DFore6hrlyR2/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG3DFore6hrlyR2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG3DFore6hrlyR2&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG3DFore6hrlyR2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DForeDaily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DForeDaily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG3DForeDaily/request", "", "public", "RTOFS Forecast, 3D, Daily, Global, Latest Model Run, today - today+8days", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntemperature (Sea Water Potential Temperature, degree_C)\nsalinity (Sea Water Practical Salinity, PSU)\nu (Eastward Sea Water Velocity, m s-1)\nv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG3DForeDaily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG3DForeDaily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG3DForeDaily/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG3DForeDaily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG3DForeDaily&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG3DForeDaily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DForeDaily_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DForeDaily_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG3DForeDaily_LonPM180/request", "", "public", "RTOFS Forecast, 3D, Daily, Global, Latest Model Run, today - today+8days, Lon+/-180", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntemperature (Sea Water Potential Temperature, degree_C)\nsalinity (Sea Water Practical Salinity, PSU)\nu (Eastward Sea Water Velocity, m s-1)\nv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG3DForeDaily_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG3DForeDaily_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG3DForeDaily_LonPM180/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG3DForeDaily_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG3DForeDaily_LonPM180&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG3DForeDaily_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DNow3hrlyDiag", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DNow3hrlyDiag.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG2DNow3hrlyDiag/request", "", "public", "RTOFS Nowcast, 2D, 3-Hourly Diagnostic, Global, Latest Model Run, today-2days - today", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nssh (Sea Surface Elevation, m)\nice_coverage (Sea Ice Area Fraction, 1)\nice_thickness (Sea Ice Thickness, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG2DNow3hrlyDiag_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG2DNow3hrlyDiag_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG2DNow3hrlyDiag/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG2DNow3hrlyDiag.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG2DNow3hrlyDiag&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG2DNow3hrlyDiag"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DNow3hrlyDiag_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DNow3hrlyDiag_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG2DNow3hrlyDiag_LonPM180/request", "", "public", "RTOFS Nowcast, 2D, 3-Hourly Diagnostic, Global, Latest Model Run, today-2days - today, Lon+/-180", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nssh (Sea Surface Elevation, m)\nice_coverage (Sea Ice Area Fraction, 1)\nice_thickness (Sea Ice Thickness, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG2DNow3hrlyDiag_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG2DNow3hrlyDiag_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG2DNow3hrlyDiag_LonPM180/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG2DNow3hrlyDiag_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG2DNow3hrlyDiag_LonPM180&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG2DNow3hrlyDiag_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DNow3hrlyProg", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DNow3hrlyProg.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG2DNow3hrlyProg/request", "", "public", "RTOFS Nowcast, 2D, 3-Hourly Prognostic, Global, Latest Model Run, today-2days - today", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nsss (Sea Water Practical Salinity, PSU)\nu_velocity (Eastward Sea Water Velocity, m s-1)\nv_velocity (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG2DNow3hrlyProg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG2DNow3hrlyProg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG2DNow3hrlyProg/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG2DNow3hrlyProg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG2DNow3hrlyProg&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG2DNow3hrlyProg"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DNow3hrlyProg_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DNow3hrlyProg_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG2DNow3hrlyProg_LonPM180/request", "", "public", "RTOFS Nowcast, 2D, 3-Hourly Prognostic, Global, Latest Model Run, today-2days - today, Lon+/-180", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nsss (Sea Water Practical Salinity, PSU)\nu_velocity (Eastward Sea Water Velocity, m s-1)\nv_velocity (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG2DNow3hrlyProg_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG2DNow3hrlyProg_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG2DNow3hrlyProg_LonPM180/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG2DNow3hrlyProg_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG2DNow3hrlyProg_LonPM180&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG2DNow3hrlyProg_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DNowDailyDiag", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DNowDailyDiag.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG2DNowDailyDiag/request", "", "public", "RTOFS Nowcast, 2D, Daily Diagnostic, Global, Latest Model Run, today-2days - today", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nssh (Sea Surface Elevation, m)\nice_coverage (Sea Ice Area Fraction, 1)\nice_thickness (Sea Ice Thickness, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG2DNowDailyDiag_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG2DNowDailyDiag_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG2DNowDailyDiag/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG2DNowDailyDiag.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG2DNowDailyDiag&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG2DNowDailyDiag"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DNowDailyDiag_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DNowDailyDiag_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG2DNowDailyDiag_LonPM180/request", "", "public", "RTOFS Nowcast, 2D, Daily Diagnostic, Global, Latest Model Run, today-2days - today, Lon+/-180", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nssh (Sea Surface Elevation, m)\nice_coverage (Sea Ice Area Fraction, 1)\nice_thickness (Sea Ice Thickness, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG2DNowDailyDiag_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG2DNowDailyDiag_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG2DNowDailyDiag_LonPM180/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG2DNowDailyDiag_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG2DNowDailyDiag_LonPM180&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG2DNowDailyDiag_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DNowDailyProg", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DNowDailyProg.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG2DNowDailyProg/request", "", "public", "RTOFS Nowcast, 2D, Daily Prognostic, Global, Latest Model Run, today-2days - today", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nsss (Sea Water Practical Salinity, PSU)\nu_velocity (Eastward Sea Water Velocity, m s-1)\nv_velocity (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG2DNowDailyProg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG2DNowDailyProg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG2DNowDailyProg/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG2DNowDailyProg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG2DNowDailyProg&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG2DNowDailyProg"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DNowDailyProg_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DNowDailyProg_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG2DNowDailyProg_LonPM180/request", "", "public", "RTOFS Nowcast, 2D, Daily Prognostic, Global, Latest Model Run, today-2days - today, Lon+/-180", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nsss (Sea Water Practical Salinity, PSU)\nu_velocity (Eastward Sea Water Velocity, m s-1)\nv_velocity (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG2DNowDailyProg_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG2DNowDailyProg_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG2DNowDailyProg_LonPM180/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG2DNowDailyProg_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG2DNowDailyProg_LonPM180&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG2DNowDailyProg_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DNow6hrlyR1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DNow6hrlyR1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG3DNow6hrlyR1/request", "", "public", "RTOFS Nowcast, 3D, 6-Hourly, Region 1 (US East), Latest Model Run, today-2days - today", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntemperature (Sea Water Potential Temperature, degree_C)\nsalinity (Sea Water Practical Salinity, PSU)\nu (Eastward Sea Water Velocity, m s-1)\nv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG3DNow6hrlyR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG3DNow6hrlyR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG3DNow6hrlyR1/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG3DNow6hrlyR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG3DNow6hrlyR1&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG3DNow6hrlyR1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DNow6hrlyR2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DNow6hrlyR2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG3DNow6hrlyR2/request", "", "public", "RTOFS Nowcast, 3D, 6-Hourly, Region 2 (US West), Latest Model Run, today-2days - today", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntemperature (Sea Water Potential Temperature, degree_C)\nsalinity (Sea Water Practical Salinity, PSU)\nu (Eastward Sea Water Velocity, m s-1)\nv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG3DNow6hrlyR2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG3DNow6hrlyR2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG3DNow6hrlyR2/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG3DNow6hrlyR2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG3DNow6hrlyR2&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG3DNow6hrlyR2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DNowDaily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DNowDaily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG3DNowDaily/request", "", "public", "RTOFS Nowcast, 3D, Daily, Global, Latest Model Run, today-2days - today", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntemperature (Sea Water Potential Temperature, degree_C)\nsalinity (Sea Water Practical Salinity, PSU)\nu (Eastward Sea Water Velocity, m s-1)\nv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG3DNowDaily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG3DNowDaily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG3DNowDaily/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG3DNowDaily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG3DNowDaily&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG3DNowDaily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DNowDaily_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DNowDaily_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG3DNowDaily_LonPM180/request", "", "public", "RTOFS Nowcast, 3D, Daily, Global, Latest Model Run, today-2days - today, Lon+/-180", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntemperature (Sea Water Potential Temperature, degree_C)\nsalinity (Sea Water Practical Salinity, PSU)\nu (Eastward Sea Water Velocity, m s-1)\nv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG3DNowDaily_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG3DNowDaily_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG3DNowDaily_LonPM180/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG3DNowDaily_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG3DNowDaily_LonPM180&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG3DNowDaily_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3b6f_e6f1_4412", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3b6f_e6f1_4412.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3b6f_e6f1_4412/request", "", "public", "Saco Bay (N110) Bathymetric Digital Elevation Model (Top Dataset, Regional, saco bay N110 2018), 9.259259E-5\u00b0", "Saco Bay (N110) Bathymetric Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3b6f_e6f1_4412_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3b6f_e6f1_4412_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3b6f_e6f1_4412/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3b6f_e6f1_4412.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3b6f_e6f1_4412&showErrors=false&email=", "NOAA", "noaa_ngdc_3b6f_e6f1_4412"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_90bc_90fd_c820", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_90bc_90fd_c820.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_90bc_90fd_c820/request", "", "public", "San Diego Bay (P020) Bathymetric Digital Elevation Model (san diego bay P020 2017), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_90bc_90fd_c820_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_90bc_90fd_c820_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_90bc_90fd_c820/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_90bc_90fd_c820.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_90bc_90fd_c820&showErrors=false&email=", "NOAA", "noaa_ngdc_90bc_90fd_c820"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8173_13a8_ad88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8173_13a8_ad88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8173_13a8_ad88/request", "", "public", "San Diego, California Coastal Digital Elevation Model (san diego 13 mhw 2012), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8173_13a8_ad88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8173_13a8_ad88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8173_13a8_ad88/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8173_13a8_ad88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8173_13a8_ad88&showErrors=false&email=", "NOAA", "noaa_ngdc_8173_13a8_ad88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a82f_1b96_5919", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a82f_1b96_5919.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_a82f_1b96_5919/request", "", "public", "San Diego, California Coastal Digital Elevation Model (san diego 13 navd88 2012), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_a82f_1b96_5919_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_a82f_1b96_5919_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_a82f_1b96_5919/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_a82f_1b96_5919.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_a82f_1b96_5919&showErrors=false&email=", "NOAA", "noaa_ngdc_a82f_1b96_5919"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ec9d_8632_6ca3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ec9d_8632_6ca3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_ec9d_8632_6ca3/request", "", "public", "San Diego, California Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, SanDiegoCA A)", "San Diego, California Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_ec9d_8632_6ca3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_ec9d_8632_6ca3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ec9d_8632_6ca3/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ec9d_8632_6ca3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ec9d_8632_6ca3&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_ec9d_8632_6ca3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_37a0_3fc1_f867", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_37a0_3fc1_f867.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_37a0_3fc1_f867/request", "", "public", "San Diego, California Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, SanDiegoCA B)", "San Diego, California Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_37a0_3fc1_f867_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_37a0_3fc1_f867_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_37a0_3fc1_f867/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_37a0_3fc1_f867.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_37a0_3fc1_f867&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_37a0_3fc1_f867"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6eba_8e98_e941", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6eba_8e98_e941.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_6eba_8e98_e941/request", "", "public", "San Diego, California Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, SanDiegoCA C)", "San Diego, California Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_6eba_8e98_e941_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_6eba_8e98_e941_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6eba_8e98_e941/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6eba_8e98_e941.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6eba_8e98_e941&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_6eba_8e98_e941"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_893d_3c7d_ebc1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_893d_3c7d_ebc1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_893d_3c7d_ebc1/request", "", "public", "San Francisco Bay (P090) Bathymetric Digital Elevation Model (san francisco bay P090 2018), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_893d_3c7d_ebc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_893d_3c7d_ebc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_893d_3c7d_ebc1/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_893d_3c7d_ebc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_893d_3c7d_ebc1&showErrors=false&email=", "NOAA", "noaa_ngdc_893d_3c7d_ebc1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_31ae_16fe_e15f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_31ae_16fe_e15f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_31ae_16fe_e15f/request", "", "public", "San Francisco Bay, California Coastal Digital Elevation Model (san francisco 13 mhw 2010), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_31ae_16fe_e15f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_31ae_16fe_e15f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_31ae_16fe_e15f/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_31ae_16fe_e15f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_31ae_16fe_e15f&showErrors=false&email=", "NOAA", "noaa_ngdc_31ae_16fe_e15f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bafe_921a_1d0a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bafe_921a_1d0a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_bafe_921a_1d0a/request", "", "public", "San Francisco Bay, California Coastal Digital Elevation Model (san francisco 13 navd88 2010), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_bafe_921a_1d0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_bafe_921a_1d0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_bafe_921a_1d0a/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_bafe_921a_1d0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_bafe_921a_1d0a&showErrors=false&email=", "NOAA", "noaa_ngdc_bafe_921a_1d0a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8ed5_e883_46f4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8ed5_e883_46f4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8ed5_e883_46f4/request", "", "public", "San Francisco, California Tsunami Forecast Grids for MOST Model (SanFranciscoCA A), 0.008333334\u00b0", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8ed5_e883_46f4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8ed5_e883_46f4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8ed5_e883_46f4/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8ed5_e883_46f4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8ed5_e883_46f4&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_8ed5_e883_46f4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6aa1_7132_743c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6aa1_7132_743c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_6aa1_7132_743c/request", "", "public", "San Francisco, California Tsunami Forecast Grids for MOST Model (SanFranciscoCA B), 0.0016666666\u00b0", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_6aa1_7132_743c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_6aa1_7132_743c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6aa1_7132_743c/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6aa1_7132_743c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6aa1_7132_743c&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_6aa1_7132_743c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8ff2_9f0d_9651", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8ff2_9f0d_9651.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8ff2_9f0d_9651/request", "", "public", "San Francisco, California Tsunami Forecast Grids for MOST Model (SanFranciscoCA C)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8ff2_9f0d_9651_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8ff2_9f0d_9651_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8ff2_9f0d_9651/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8ff2_9f0d_9651.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8ff2_9f0d_9651&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_8ff2_9f0d_9651"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1780_f175_4daf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1780_f175_4daf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1780_f175_4daf/request", "", "public", "San Juan, Puerto Rico Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, SanJuanPR A)", "San Juan, Puerto Rico Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1780_f175_4daf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1780_f175_4daf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1780_f175_4daf/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1780_f175_4daf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1780_f175_4daf&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_1780_f175_4daf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_07fe_419f_9be3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_07fe_419f_9be3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_07fe_419f_9be3/request", "", "public", "San Juan, Puerto Rico Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, SanJuanPR B)", "San Juan, Puerto Rico Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_07fe_419f_9be3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_07fe_419f_9be3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_07fe_419f_9be3/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_07fe_419f_9be3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_07fe_419f_9be3&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_07fe_419f_9be3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_694e_6917_9728", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_694e_6917_9728.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_694e_6917_9728/request", "", "public", "San Juan, Puerto Rico Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, SanJuanPR C)", "San Juan, Puerto Rico Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_694e_6917_9728_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_694e_6917_9728_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_694e_6917_9728/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_694e_6917_9728.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_694e_6917_9728&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_694e_6917_9728"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_84ba_a403_2080", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_84ba_a403_2080.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_84ba_a403_2080/request", "", "public", "San Pedro Bay (P050) Bathymetric Digital Elevation Model (san pedro bay P050 2018), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_84ba_a403_2080_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_84ba_a403_2080_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_84ba_a403_2080/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_84ba_a403_2080.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_84ba_a403_2080&showErrors=false&email=", "NOAA", "noaa_ngdc_84ba_a403_2080"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_63bd_fe26_6765", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_63bd_fe26_6765.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_63bd_fe26_6765/request", "", "public", "Sand Point, Alaska MHW Coastal Digital Elevation Model (sand point 13 mhw 2012), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (Topography (m), meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_63bd_fe26_6765_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_63bd_fe26_6765_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_63bd_fe26_6765/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_63bd_fe26_6765.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_63bd_fe26_6765&showErrors=false&email=", "NOAA", "noaa_ngdc_63bd_fe26_6765"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_975a_9754_051e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_975a_9754_051e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_975a_9754_051e/request", "", "public", "Sand Point, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, SandPointAK A)", "Sand Point, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_975a_9754_051e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_975a_9754_051e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_975a_9754_051e/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_975a_9754_051e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_975a_9754_051e&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_975a_9754_051e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6780_03ab_f512", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6780_03ab_f512.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_6780_03ab_f512/request", "", "public", "Sand Point, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, SandPointAK B), 0.005\u00b0", "Sand Point, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_6780_03ab_f512_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_6780_03ab_f512_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6780_03ab_f512/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6780_03ab_f512.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6780_03ab_f512&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_6780_03ab_f512"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9542_9b17_ccd5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9542_9b17_ccd5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9542_9b17_ccd5/request", "", "public", "Sand Point, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, SandPointAK C)", "Sand Point, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9542_9b17_ccd5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9542_9b17_ccd5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9542_9b17_ccd5/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9542_9b17_ccd5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9542_9b17_ccd5&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_9542_9b17_ccd5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_463c_f046_f829", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_463c_f046_f829.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_463c_f046_f829/request", "", "public", "Santa Barbara, California Coastal Digital Elevation Model (santa barbara 13 mhw 2008), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_463c_f046_f829_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_463c_f046_f829_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_463c_f046_f829/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_463c_f046_f829.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_463c_f046_f829&showErrors=false&email=", "NOAA", "noaa_ngdc_463c_f046_f829"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_676a_383b_72f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_676a_383b_72f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_676a_383b_72f0/request", "", "public", "Santa Barbara, California Tsunami Forecast Grids for MOST Model (SantaBarbaraCA A), 0.016666668\u00b0", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_676a_383b_72f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_676a_383b_72f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_676a_383b_72f0/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_676a_383b_72f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_676a_383b_72f0&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_676a_383b_72f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8f18_9d1c_90b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8f18_9d1c_90b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8f18_9d1c_90b8/request", "", "public", "Santa Barbara, California Tsunami Forecast Grids for MOST Model (SantaBarbaraCA B), 0.0033333334\u00b0", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8f18_9d1c_90b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8f18_9d1c_90b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8f18_9d1c_90b8/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8f18_9d1c_90b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8f18_9d1c_90b8&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_8f18_9d1c_90b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_00ee_4d5b_c866", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_00ee_4d5b_c866.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_00ee_4d5b_c866/request", "", "public", "Santa Barbara, California Tsunami Forecast Grids for MOST Model (SantaBarbaraCA C), 3.3333333E-4\u00b0", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_00ee_4d5b_c866_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_00ee_4d5b_c866_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_00ee_4d5b_c866/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_00ee_4d5b_c866.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_00ee_4d5b_c866&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_00ee_4d5b_c866"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1235_e694_6b82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1235_e694_6b82.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1235_e694_6b82/request", "", "public", "Santa Monica Bay (P060) Bathymetric Digital Elevation Model (santa monica bay P060 2018), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1235_e694_6b82_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1235_e694_6b82_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1235_e694_6b82/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1235_e694_6b82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1235_e694_6b82&showErrors=false&email=", "NOAA", "noaa_ngdc_1235_e694_6b82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5387_7177_be34", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5387_7177_be34.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5387_7177_be34/request", "", "public", "Santa Monica, California Coastal Digital Elevation Model (santa monica 13 mhw 2010), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5387_7177_be34_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5387_7177_be34_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5387_7177_be34/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5387_7177_be34.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5387_7177_be34&showErrors=false&email=", "NOAA", "noaa_ngdc_5387_7177_be34"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8721_3372_8dff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8721_3372_8dff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8721_3372_8dff/request", "", "public", "Santa Monica, California Coastal Digital Elevation Model (santa monica 13 navd88 2010), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8721_3372_8dff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8721_3372_8dff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8721_3372_8dff/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8721_3372_8dff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8721_3372_8dff&showErrors=false&email=", "NOAA", "noaa_ngdc_8721_3372_8dff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4473_4952_6b82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4473_4952_6b82.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4473_4952_6b82/request", "", "public", "Santa Monica, California Tsunami Forecast Grids for MOST Model (SantaMonicaCA A)", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4473_4952_6b82_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4473_4952_6b82_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4473_4952_6b82/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4473_4952_6b82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4473_4952_6b82&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_4473_4952_6b82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a2be_2b06_5227", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a2be_2b06_5227.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_a2be_2b06_5227/request", "", "public", "Santa Monica, California Tsunami Forecast Grids for MOST Model (SantaMonicaCA B), 0.0033333334\u00b0", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_a2be_2b06_5227_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_a2be_2b06_5227_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_a2be_2b06_5227/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_a2be_2b06_5227.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_a2be_2b06_5227&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_a2be_2b06_5227"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_380c_19a1_2016", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_380c_19a1_2016.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_380c_19a1_2016/request", "", "public", "Santa Monica, California Tsunami Forecast Grids for MOST Model (SantaMonicaCA C), 5.5555557E-4\u00b0", "Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_380c_19a1_2016_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_380c_19a1_2016_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_380c_19a1_2016/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_380c_19a1_2016.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_380c_19a1_2016&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_380c_19a1_2016"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_be75_d88e_2e99", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_be75_d88e_2e99.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_be75_d88e_2e99/request", "", "public", "Sarasota Bay (G060) Bathymetric Digital Elevation Model (sarasota bay G060 2017), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_be75_d88e_2e99_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_be75_d88e_2e99_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_be75_d88e_2e99/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_be75_d88e_2e99.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_be75_d88e_2e99&showErrors=false&email=", "NOAA", "noaa_ngdc_be75_d88e_2e99"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0b51_169a_fc75", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0b51_169a_fc75.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0b51_169a_fc75/request", "", "public", "Savannah, Georgia Coastal Digital Elevation Model (Top Dataset, Regional, savannah 13 mhw 2006), 9.259259E-5\u00b0", "Savannah, Georgia Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0b51_169a_fc75_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0b51_169a_fc75_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0b51_169a_fc75/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0b51_169a_fc75.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0b51_169a_fc75&showErrors=false&email=", "NOAA", "noaa_ngdc_0b51_169a_fc75"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6fb2_33a4_8eb2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6fb2_33a4_8eb2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_6fb2_33a4_8eb2/request", "", "public", "Savannah, Georgia Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, SavannahGA A)", "Savannah, Georgia Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_6fb2_33a4_8eb2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_6fb2_33a4_8eb2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6fb2_33a4_8eb2/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6fb2_33a4_8eb2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6fb2_33a4_8eb2&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_6fb2_33a4_8eb2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_15be_cdff_81be", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_15be_cdff_81be.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_15be_cdff_81be/request", "", "public", "Savannah, Georgia Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, SavannahGA B)", "Savannah, Georgia Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_15be_cdff_81be_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_15be_cdff_81be_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_15be_cdff_81be/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_15be_cdff_81be.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_15be_cdff_81be&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_15be_cdff_81be"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9e8d_2097_55f8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9e8d_2097_55f8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9e8d_2097_55f8/request", "", "public", "Savannah, Georgia Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, SavannahGA C)", "Savannah, Georgia Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9e8d_2097_55f8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9e8d_2097_55f8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9e8d_2097_55f8/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9e8d_2097_55f8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9e8d_2097_55f8&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_9e8d_2097_55f8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2ca6_3957_1de4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2ca6_3957_1de4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_2ca6_3957_1de4/request", "", "public", "Sea Surface Height Deviation, Aviso, 0.25 degrees, Global, Science Quality (aviso ssh), 1992-2010", "Aviso Sea Surface Height Deviation is the deviation from the mean geoid as measured from 1993 - 1995. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nTAsshd (Sea Surface Height Deviation, Aviso, 0.25 degrees, Global, Science Quality, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_2ca6_3957_1de4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_2ca6_3957_1de4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_2ca6_3957_1de4/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/node/aviso_ssh.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_2ca6_3957_1de4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_2ca6_3957_1de4&showErrors=false&email=", "NOAA CoastWatch WCN", "noaa_nodc_2ca6_3957_1de4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAsshmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAsshmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTAsshmday/request", "", "public", "Sea Surface Height, Absolute, Aviso, 0.25 degrees, Global, 1992-2010, Science Quality (Monthly Composite)", "Aviso Absolute Sea Surface Height is the Sea Surface Height Deviation plus the long term mean dynamic height. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nssh (Absolute Sea Surface Height, m)\nsshd (Sea Surface Height Deviation, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTAsshmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTAsshmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTAsshmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TA_sshl_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTAsshmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTAsshmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTAsshmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAsshmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAsshmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTAsshmday_LonPM180/request", "", "public", "Sea Surface Height, Absolute, Aviso, 0.25 degrees, Global, 1992-2010, Science Quality (Monthly Composite), Lon+/-180", "Aviso Absolute Sea Surface Height is the Sea Surface Height Deviation plus the long term mean dynamic height. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nssh (Absolute Sea Surface Height, m)\nsshd (Sea Surface Height Deviation, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTAsshmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTAsshmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTAsshmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TA_sshl_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTAsshmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTAsshmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTAsshmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAssh1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAssh1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTAssh1day/request", "", "public", "Sea Surface Height, Absolute, Aviso, 0.25 degrees, Global, 1992-2012, Science Quality (1 Day Composite)", "Aviso Absolute Sea Surface Height is the Sea Surface Height Deviation plus the long term mean dynamic height. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nssh (Absolute Sea Surface Height, m)\nsshd (Sea Surface Height Deviation, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTAssh1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTAssh1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTAssh1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TA_sshl_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTAssh1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTAssh1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTAssh1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAssh1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAssh1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTAssh1day_LonPM180/request", "", "public", "Sea Surface Height, Absolute, Aviso, 0.25 degrees, Global, 1992-2012, Science Quality (1 Day Composite), Lon+/-180", "Aviso Absolute Sea Surface Height is the Sea Surface Height Deviation plus the long term mean dynamic height. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nssh (Absolute Sea Surface Height, m)\nsshd (Sea Surface Height Deviation, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTAssh1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTAssh1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTAssh1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TA_sshl_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTAssh1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTAssh1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTAssh1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nceiSMOS30sss3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nceiSMOS30sss3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nceiSMOS30sss3day/request", "", "public", "Sea Surface Salinity from SMOS level-2, Gridded 3-Day Mean, v3.0, Global, 1\u00b0, 2010-2017", "This dataset is created by National Centers for Environmental Information (NCEI) Satellite Oceanography Group from SMOS level-2 Sea Surface Salinity User Data Product (Version 6.22), calculated from using 1.0x1.0 (lon/lat) degree box average\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss1 (3-days average of Sea Surface Salinity using roughness model 1, psu)\nsss1_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 1, count)\nsss1_qi (3-days average of quality index for sss1: lower=better., count)\nsss2 (3-days average of Sea Surface Salinity using roughness model 2, psu)\nsss2_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 2, count)\nsss2_qi (3-days average of quality index for sss2: lower=better., count)\nsss3 (3-days average of Sea Surface Salinity using roughness model 3, psu)\nsss3_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 3, count)\nsss3_qi (3-days average of quality index for sss3: lower=better., count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nceiSMOS30sss3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nceiSMOS30sss3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nceiSMOS30sss3day/index.json", "https://www.nodc.noaa.gov/SatelliteData/sss/", "http://upwell.pfeg.noaa.gov/erddap/rss/nceiSMOS30sss3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nceiSMOS30sss3day&showErrors=false&email=", "NOAA NCEI", "nceiSMOS30sss3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nceiSMOS30sssMonthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nceiSMOS30sssMonthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nceiSMOS30sssMonthly/request", "", "public", "Sea Surface Salinity from SMOS level-2, Gridded Monthly Mean, v3.0, Global, 1\u00b0, 2010-2017", "This dataset is created by National Centers for Environmental Information (NCEI) Satellite Oceanography Group from SMOS level-2 Sea Surface Salinity User Data Product (Version 6.22), calculated from using 1.0x1.0 (lon/lat) degree box average\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss1 (Monthly mean of Sea Surface Salinity using roughness model 1, psu)\nsss1_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 1, count)\nsss1_qi (Monthly mean of quality index for sss1: lower=better., count)\nsss2 (Monthly mean of Sea Surface Salinity using roughness model 2, psu)\nsss2_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 2, count)\nsss2_qi (Monthly mean of quality index for sss2: lower=better., count)\nsss3 (Monthly mean of Sea Surface Salinity using roughness model 3, psu)\nsss3_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 3, count)\nsss3_qi (Monthly mean of quality index for sss3: lower=better., count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nceiSMOS30sssMonthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nceiSMOS30sssMonthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nceiSMOS30sssMonthly/index.json", "https://www.nodc.noaa.gov/SatelliteData/sss/", "http://upwell.pfeg.noaa.gov/erddap/rss/nceiSMOS30sssMonthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nceiSMOS30sssMonthly&showErrors=false&email=", "NOAA NCEI", "nceiSMOS30sssMonthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_fb1a_ed56_6ad3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_fb1a_ed56_6ad3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_fb1a_ed56_6ad3/request", "", "public", "Seaside, Oregon Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, SeasideOR A), 0.02\u00b0", "Seaside, Oregon Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_fb1a_ed56_6ad3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_fb1a_ed56_6ad3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_fb1a_ed56_6ad3/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_fb1a_ed56_6ad3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_fb1a_ed56_6ad3&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_fb1a_ed56_6ad3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cd84_b585_7c24", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cd84_b585_7c24.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_cd84_b585_7c24/request", "", "public", "Seaside, Oregon Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, SeasideOR B), 0.0033333334\u00b0", "Seaside, Oregon Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_cd84_b585_7c24_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_cd84_b585_7c24_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_cd84_b585_7c24/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_cd84_b585_7c24.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_cd84_b585_7c24&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_cd84_b585_7c24"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bf46_0ab2_f03a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bf46_0ab2_f03a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_bf46_0ab2_f03a/request", "", "public", "Seaside, Oregon Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, SeasideOR C), 3.72E-4\u00b0", "Seaside, Oregon Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_bf46_0ab2_f03a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_bf46_0ab2_f03a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_bf46_0ab2_f03a/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_bf46_0ab2_f03a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_bf46_0ab2_f03a&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_bf46_0ab2_f03a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_38d1_a491_2b01", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_38d1_a491_2b01.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_38d1_a491_2b01/request", "", "public", "SEAWIFS L3 CHLA DAILY 9KM R", "Sea-Wide Field-of-View Sensor (SeaWiFS) Level-3 Standard Mapped Image (SEAWIFS L3 Chlorophyll-a (CHLA) DAILY 9KM R)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll a concentration, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_38d1_a491_2b01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_38d1_a491_2b01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_38d1_a491_2b01/index.json", "https://podaac.jpl.nasa.gov/dataset/SeaWiFS_L3_CHLA_Daily_9km_R", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_38d1_a491_2b01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_38d1_a491_2b01&showErrors=false&email=", "NASA JPL", "nasa_jpl_38d1_a491_2b01"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3d54_7687_3543", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3d54_7687_3543.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_3d54_7687_3543/request", "", "public", "SEAWIFS L3 CHLA MONTHLY 9KM R", "Sea-Wide Field-of-View Sensor (SeaWiFS) Level-3 Standard Mapped Image (SEAWIFS L3 Chlorophyll-a (CHLA) MONTHLY 9KM R)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll a concentration, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_3d54_7687_3543_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_3d54_7687_3543_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_3d54_7687_3543/index.json", "https://podaac.jpl.nasa.gov/dataset/SeaWiFS_L3_CHLA_Monthly_9km_R", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_3d54_7687_3543.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_3d54_7687_3543&showErrors=false&email=", "NASA JPL", "nasa_jpl_3d54_7687_3543"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_7463_79c3_6896", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_7463_79c3_6896.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_7463_79c3_6896/request", "", "public", "SEAWINDS LEVEL 3 AMSR [latitude][longitude][pass]", "SEAWINDS LEVEL 3 Advanced Microwave Scanning Radiometer (AMSR). NASA Jet Propulsion Laboratory (JPL) data from https://thredds.jpl.nasa.gov/thredds/dodsC/ncml_aggregation/OceanWinds/seawinds/aggregate__SEAWINDS_LEVEL_3_AMSR.ncml.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude][pass]):\nrep_wind_velocity_u (m/sec)\nrep_wind_velocity_v (m/sec)\nrep_atten_corr (dB)\nrep_time_of_day\nrep_rain_probability\nrep_srad_rain_rate (km*mm/hr)\nrep_amsr_rain_indicator\nrain_flag\nnull_data_indicator\ngrid_cell_quality_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_7463_79c3_6896_fgdc.xml", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_7463_79c3_6896/index.json", "https://podaac.jpl.nasa.gov/dataset/SEAWINDS_LEVEL_3_AMSR", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_7463_79c3_6896.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_7463_79c3_6896&showErrors=false&email=", "NASA JPL", "nasa_jpl_7463_79c3_6896"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_c5aa_8b81_a372", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_c5aa_8b81_a372.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_c5aa_8b81_a372/request", "", "public", "SEAWINDS LEVEL 3 AMSR [time][latitude][longitude][pass]", "SEAWINDS LEVEL 3 Advanced Microwave Scanning Radiometer (AMSR). NASA Jet Propulsion Laboratory (JPL) data from https://thredds.jpl.nasa.gov/thredds/dodsC/ncml_aggregation/OceanWinds/seawinds/aggregate__SEAWINDS_LEVEL_3_AMSR.ncml.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude][pass]):\nrep_wind_speed (m/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_c5aa_8b81_a372_fgdc.xml", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_c5aa_8b81_a372/index.json", "https://podaac.jpl.nasa.gov/dataset/SEAWINDS_LEVEL_3_AMSR", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_c5aa_8b81_a372.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_c5aa_8b81_a372&showErrors=false&email=", "NASA JPL", "nasa_jpl_c5aa_8b81_a372"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_cbcc_2a46_9301", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_cbcc_2a46_9301.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_cbcc_2a46_9301/request", "", "public", "SEAWINDS LEVEL 3 V2 [latitude][longitude][pass]", "SEAWINDS LEVEL 3 V2. NASA Jet Propulsion Laboratory (JPL) data from https://thredds.jpl.nasa.gov/thredds/dodsC/ncml_aggregation/OceanWinds/seawinds/aggregate__SEAWINDS_LEVEL_3_V2.ncml.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude][pass]):\nrep_wind_velocity_u (m/sec)\nrep_wind_velocity_v (m/sec)\nrep_atten_corr (dB)\nrep_time_of_day\nrep_rain_probability\nrep_srad_rain_rate (km*mm/hr)\nrep_amsr_rain_indicator\nrain_flag\nnull_data_indicator\ngrid_cell_quality_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_cbcc_2a46_9301_fgdc.xml", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_cbcc_2a46_9301/index.json", "https://podaac.jpl.nasa.gov/dataset/SEAWINDS_LEVEL_3_V2", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_cbcc_2a46_9301.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_cbcc_2a46_9301&showErrors=false&email=", "NASA JPL", "nasa_jpl_cbcc_2a46_9301"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_f1ba_0351_2cc7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_f1ba_0351_2cc7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_f1ba_0351_2cc7/request", "", "public", "SEAWINDS LEVEL 3 V2 [time][latitude][longitude][pass]", "SEAWINDS LEVEL 3 V2. NASA Jet Propulsion Laboratory (JPL) data from https://thredds.jpl.nasa.gov/thredds/dodsC/ncml_aggregation/OceanWinds/seawinds/aggregate__SEAWINDS_LEVEL_3_V2.ncml.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude][pass]):\nrep_wind_speed (m/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_f1ba_0351_2cc7_fgdc.xml", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_f1ba_0351_2cc7/index.json", "https://podaac.jpl.nasa.gov/dataset/SEAWINDS_LEVEL_3_V2", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_f1ba_0351_2cc7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_f1ba_0351_2cc7&showErrors=false&email=", "NASA JPL", "nasa_jpl_f1ba_0351_2cc7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_d54e_605a_aeff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_d54e_605a_aeff.graph", "", "", "public", "SeaWinds on QuikSCAT Arctic Sea Ice Age Classification (BYU/SCP) [time][ygrid][xgrid], 2002-2009", "QuikSCAT sea ice age claassifications using Advanced Microwave Scanning Radiometer on EOS (AMSR-E) ocean/ice edge masking algorithm and SIR spatial enhancement algorithm using Sigma-0 egg retrievals.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ygrid][xgrid]):\nage_of_sea_ice (Sea ice age classification)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_d54e_605a_aeff/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_d54e_605a_aeff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_d54e_605a_aeff&showErrors=false&email=", "Brigham Young University SCP, Provo, UT", "nasa_jpl_d54e_605a_aeff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_c4fd_2ee0_606b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_c4fd_2ee0_606b.graph", "", "", "public", "SeaWinds on QuikSCAT Arctic Sea Ice Age Classification (BYU/SCP) [ygrid][xgrid]", "QuikSCAT sea ice age claassifications using Advanced Microwave Scanning Radiometer on EOS (AMSR-E) ocean/ice edge masking algorithm and SIR spatial enhancement algorithm using Sigma-0 egg retrievals.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ygrid][xgrid]):\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_c4fd_2ee0_606b/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_c4fd_2ee0_606b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_c4fd_2ee0_606b&showErrors=false&email=", "Brigham Young University SCP, Provo, UT", "nasa_jpl_c4fd_2ee0_606b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e320_7c90_50ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e320_7c90_50ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e320_7c90_50ac/request", "", "public", "Seward, Alaska 1 sec Coastal Digital Elevation Model (Top Dataset, Regional, seward 1 mhw 2002), 2.4700412E-4\u00b0", "Seward, Alaska 1 sec Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e320_7c90_50ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e320_7c90_50ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e320_7c90_50ac/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e320_7c90_50ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e320_7c90_50ac&showErrors=false&email=", "NOAA", "noaa_ngdc_e320_7c90_50ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9ad8_0dbd_107d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9ad8_0dbd_107d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9ad8_0dbd_107d/request", "", "public", "Seward, Alaska 1/3 sec Coastal Digital Elevation Model (seward 13 mhw 2002), 9.2595896E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9ad8_0dbd_107d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9ad8_0dbd_107d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9ad8_0dbd_107d/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9ad8_0dbd_107d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9ad8_0dbd_107d&showErrors=false&email=", "NOAA", "noaa_ngdc_9ad8_0dbd_107d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7651_fa6a_e7f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7651_fa6a_e7f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7651_fa6a_e7f9/request", "", "public", "Seward, Alaska 3 sec Coastal Digital Elevation Model (Top Dataset, Regional, seward 3 mhw 2002), 7.4075756E-4\u00b0", "Seward, Alaska 3 sec Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7651_fa6a_e7f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7651_fa6a_e7f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7651_fa6a_e7f9/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7651_fa6a_e7f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7651_fa6a_e7f9&showErrors=false&email=", "NOAA", "noaa_ngdc_7651_fa6a_e7f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_40e1_6d20_daa3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_40e1_6d20_daa3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_40e1_6d20_daa3/request", "", "public", "Seward, Alaska 8 sec Coastal Digital Elevation Model (Top Dataset, Regional, seward 8 mhw 2002), 0.0022222062\u00b0", "Seward, Alaska 8 sec Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_40e1_6d20_daa3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_40e1_6d20_daa3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_40e1_6d20_daa3/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_40e1_6d20_daa3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_40e1_6d20_daa3&showErrors=false&email=", "NOAA", "noaa_ngdc_40e1_6d20_daa3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a356_86eb_603e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a356_86eb_603e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_a356_86eb_603e/request", "", "public", "Seward, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, SewardAK A), 0.033333335\u00b0", "Seward, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_a356_86eb_603e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_a356_86eb_603e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_a356_86eb_603e/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_a356_86eb_603e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_a356_86eb_603e&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_a356_86eb_603e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3d41_18a6_f8f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3d41_18a6_f8f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3d41_18a6_f8f6/request", "", "public", "Seward, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, SewardAK B), 0.0025\u00b0", "Seward, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3d41_18a6_f8f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3d41_18a6_f8f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3d41_18a6_f8f6/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3d41_18a6_f8f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3d41_18a6_f8f6&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_3d41_18a6_f8f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e55d_2154_c114", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e55d_2154_c114.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e55d_2154_c114/request", "", "public", "Seward, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, SewardAK C), 8.3333335E-4\u00b0", "Seward, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e55d_2154_c114_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e55d_2154_c114_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e55d_2154_c114/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e55d_2154_c114.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e55d_2154_c114&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_e55d_2154_c114"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e1aa_91e2_4321", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e1aa_91e2_4321.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e1aa_91e2_4321/request", "", "public", "Shemya Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, ShemyaAK A)", "Shemya Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e1aa_91e2_4321_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e1aa_91e2_4321_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e1aa_91e2_4321/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e1aa_91e2_4321.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e1aa_91e2_4321&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_e1aa_91e2_4321"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1128_1997_dd9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1128_1997_dd9f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1128_1997_dd9f/request", "", "public", "Shemya Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, ShemyaAK B)", "Shemya Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1128_1997_dd9f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1128_1997_dd9f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1128_1997_dd9f/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1128_1997_dd9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1128_1997_dd9f&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_1128_1997_dd9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8aa9_babe_344f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8aa9_babe_344f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8aa9_babe_344f/request", "", "public", "Shemya Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, ShemyaAK C)", "Shemya Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8aa9_babe_344f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8aa9_babe_344f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8aa9_babe_344f/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8aa9_babe_344f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8aa9_babe_344f&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_8aa9_babe_344f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_99ac_17ad_2a81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_99ac_17ad_2a81.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_99ac_17ad_2a81/request", "", "public", "Shemya, Alaska Coastal Digital Elevation Model (Top Dataset, Regional, shemya 1 mhw 2009), 2.7777778E-4\u00b0", "Shemya, Alaska Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_99ac_17ad_2a81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_99ac_17ad_2a81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_99ac_17ad_2a81/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_99ac_17ad_2a81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_99ac_17ad_2a81&showErrors=false&email=", "NOAA", "noaa_ngdc_99ac_17ad_2a81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/SWAN_Big_Island_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/SWAN_Big_Island_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/SWAN_Big_Island_Best/request", "", "public", "Simulating WAves Nearshore (SWAN) Regional Wave Model: Big Island", "Simulating WAves Nearshore (SWAN) regional wave model 7-day output with a 5-day hourly forecast for the Big Island of Hawaii at approximately 500-m resolution. This high-resolution model is utilized to capture shallow water effects and nearshore coastal dynamics such as refracting, shoaling, and smaller scale shadowing. It is run directly after the Hawaii regional WaveWatch III (WW3) wave model has completed. Please note that this nested model setup is in the testing and validation phase. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nmdir (mean wave direction, degrees)\nmper (mean wave period, second)\npdir (peak wave direction, degrees)\npper (peak wave period, second)\nshgt (significant wave height, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/SWAN_Big_Island_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/SWAN_Big_Island_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/SWAN_Big_Island_Best/index.json", "http://www.pacioos.hawaii.edu/waves/model-hawaiiisland/", "http://upwell.pfeg.noaa.gov/erddap/rss/SWAN_Big_Island_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=SWAN_Big_Island_Best&showErrors=false&email=", "University of Hawaii", "SWAN_Big_Island_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/SWAN_Guam_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/SWAN_Guam_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/SWAN_Guam_Best/request", "", "public", "Simulating WAves Nearshore (SWAN) Regional Wave Model: Guam", "Simulating WAves Nearshore (SWAN) regional wave model 7-day output with a 5-day hourly forecast for the island of Guam at approximately 500-m resolution. This high-resolution model is utilized to capture shallow water effects and nearshore coastal dynamics such as refracting, shoaling, and smaller scale shadowing. It is run directly after the Mariana Islands regional WaveWatch III (WW3) wave model has completed. Please note that this nested model setup is in the testing and validation phase. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nmdir (mean wave direction, degrees)\nmper (mean wave period, second)\npdir (peak wave direction, degrees)\npper (peak wave period, second)\nshgt (significant wave height, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/SWAN_Guam_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/SWAN_Guam_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/SWAN_Guam_Best/index.json", "http://www.pacioos.hawaii.edu/waves/model-guam/", "http://upwell.pfeg.noaa.gov/erddap/rss/SWAN_Guam_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=SWAN_Guam_Best&showErrors=false&email=", "University of Hawaii", "SWAN_Guam_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/SWAN_Apra_Harbor_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/SWAN_Apra_Harbor_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/SWAN_Apra_Harbor_Best/request", "", "public", "Simulating WAves Nearshore (SWAN) Regional Wave Model: Guam: Apra Harbor", "Simulating WAves Nearshore (SWAN) regional wave model 7-day output with a 5-day hourly forecast for Apra Harbor on the island of Guam at approximately 50-m resolution. This high-resolution model is utilized to capture shallow water effects and nearshore coastal dynamics such as refracting, shoaling, and smaller scale shadowing. It is run directly after the Mariana Islands regional WaveWatch III (WW3) wave model has completed. Please note that this nested model setup is in the testing and validation phase. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nmdir (mean wave direction, degrees)\nmper (mean wave period, second)\npdir (peak wave direction, degrees)\npper (peak wave period, second)\nshgt (significant wave height, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/SWAN_Apra_Harbor_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/SWAN_Apra_Harbor_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/SWAN_Apra_Harbor_Best/index.json", "http://www.pacioos.hawaii.edu/waves/model-apra/", "http://upwell.pfeg.noaa.gov/erddap/rss/SWAN_Apra_Harbor_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=SWAN_Apra_Harbor_Best&showErrors=false&email=", "University of Hawaii", "SWAN_Apra_Harbor_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/SWAN_Kauai_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/SWAN_Kauai_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/SWAN_Kauai_Best/request", "", "public", "Simulating WAves Nearshore (SWAN) Regional Wave Model: Kauai", "Simulating WAves Nearshore (SWAN) regional wave model 7-day output with a 5-day hourly forecast for the Hawaiian islands of Kauai and Niihau at approximately 500-m resolution. This high-resolution model is utilized to capture shallow water effects and nearshore coastal dynamics such as refracting, shoaling, and smaller scale shadowing. It is run directly after the Hawaii regional WaveWatch III (WW3) wave model has completed. Please note that this nested model setup is in the testing and validation phase. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nmdir (mean wave direction, degrees)\nmper (mean wave period, second)\npdir (peak wave direction, degrees)\npper (peak wave period, second)\nshgt (significant wave height, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/SWAN_Kauai_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/SWAN_Kauai_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/SWAN_Kauai_Best/index.json", "http://www.pacioos.hawaii.edu/waves/model-kauai/", "http://upwell.pfeg.noaa.gov/erddap/rss/SWAN_Kauai_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=SWAN_Kauai_Best&showErrors=false&email=", "University of Hawaii", "SWAN_Kauai_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/SWAN_Maui_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/SWAN_Maui_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/SWAN_Maui_Best/request", "", "public", "Simulating WAves Nearshore (SWAN) Regional Wave Model: Maui", "Simulating WAves Nearshore (SWAN) regional wave model 7-day output with a 5-day hourly forecast for the Hawaiian islands of Maui County (Maui, Molokai, Lanai, and Kahoolawe) at approximately 500-m resolution. This high-resolution model is utilized to capture shallow water effects and nearshore coastal dynamics such as refracting, shoaling, and smaller scale shadowing. It is run directly after the Hawaii regional WaveWatch III (WW3) wave model has completed. Please note that this nested model setup is in the testing and validation phase. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nmdir (mean wave direction, degrees)\nmper (mean wave period, second)\npdir (peak wave direction, degrees)\npper (peak wave period, second)\nshgt (significant wave height, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/SWAN_Maui_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/SWAN_Maui_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/SWAN_Maui_Best/index.json", "http://www.pacioos.hawaii.edu/waves/model-maui/", "http://upwell.pfeg.noaa.gov/erddap/rss/SWAN_Maui_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=SWAN_Maui_Best&showErrors=false&email=", "University of Hawaii", "SWAN_Maui_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/SWAN_Oahu_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/SWAN_Oahu_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/SWAN_Oahu_Best/request", "", "public", "Simulating WAves Nearshore (SWAN) Regional Wave Model: Oahu", "Simulating WAves Nearshore (SWAN) regional wave model 7-day output with a 5-day hourly forecast for the Hawaiian island of Oahu at approximately 500-m resolution. This high-resolution model is utilized to capture shallow water effects and nearshore coastal dynamics such as refracting, shoaling, and smaller scale shadowing. It is run directly after the Hawaii regional WaveWatch III (WW3) wave model has completed. Please note that this nested model setup is in the testing and validation phase. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nmdir (mean wave direction, degrees)\nmper (mean wave period, second)\npdir (peak wave direction, degrees)\npper (peak wave period, second)\nshgt (significant wave height, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/SWAN_Oahu_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/SWAN_Oahu_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/SWAN_Oahu_Best/index.json", "http://www.pacioos.hawaii.edu/waves/model-oahu/", "http://upwell.pfeg.noaa.gov/erddap/rss/SWAN_Oahu_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=SWAN_Oahu_Best&showErrors=false&email=", "University of Hawaii", "SWAN_Oahu_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/SWAN_Tutuila_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/SWAN_Tutuila_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/SWAN_Tutuila_Best/request", "", "public", "Simulating WAves Nearshore (SWAN) Regional Wave Model: Tutuila, American Samoa", "Simulating WAves Nearshore (SWAN) regional wave model 7-day output with a 5-day hourly forecast for the island of Tutuila, American Samoa at approximately 500-m resolution. This high-resolution model is utilized to capture shallow water effects and nearshore coastal dynamics such as refracting, shoaling, and smaller scale shadowing. It is run directly after the Samoa regional WaveWatch III (WW3) wave model has completed. Please note that this nested model setup is in the testing and validation phase. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nmdir (mean wave direction, degrees)\nmper (mean wave period, second)\npdir (peak wave direction, degrees)\npper (peak wave period, second)\nshgt (significant wave height, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/SWAN_Tutuila_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/SWAN_Tutuila_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/SWAN_Tutuila_Best/index.json", "http://www.pacioos.hawaii.edu/waves/model-tutuila/", "http://upwell.pfeg.noaa.gov/erddap/rss/SWAN_Tutuila_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=SWAN_Tutuila_Best&showErrors=false&email=", "University of Hawaii", "SWAN_Tutuila_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_da39_9690_9e50", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_da39_9690_9e50.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_da39_9690_9e50/request", "", "public", "Sitka, Alaska Coastal Digital Elevation Model (Top Dataset, Regional, sitka 13 mhw 2011), 9.259259E-5\u00b0", "Sitka, Alaska Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_da39_9690_9e50_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_da39_9690_9e50_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_da39_9690_9e50/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_da39_9690_9e50.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_da39_9690_9e50&showErrors=false&email=", "NOAA", "noaa_ngdc_da39_9690_9e50"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4017_f2e3_4fef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4017_f2e3_4fef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4017_f2e3_4fef/request", "", "public", "Sitka, Alaska Coastal Digital Elevation Model (Top Dataset, Regional, sitka 3 mhw 2011), 8.3333335E-4\u00b0", "Sitka, Alaska Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4017_f2e3_4fef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4017_f2e3_4fef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4017_f2e3_4fef/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4017_f2e3_4fef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4017_f2e3_4fef&showErrors=false&email=", "NOAA", "noaa_ngdc_4017_f2e3_4fef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d6e2_0c5b_7c4c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d6e2_0c5b_7c4c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d6e2_0c5b_7c4c/request", "", "public", "Sitka, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, SitkaAK A)", "Sitka, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d6e2_0c5b_7c4c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d6e2_0c5b_7c4c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d6e2_0c5b_7c4c/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d6e2_0c5b_7c4c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d6e2_0c5b_7c4c&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_d6e2_0c5b_7c4c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_426e_5fd1_20bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_426e_5fd1_20bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_426e_5fd1_20bf/request", "", "public", "Sitka, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, SitkaAK B)", "Sitka, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_426e_5fd1_20bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_426e_5fd1_20bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_426e_5fd1_20bf/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_426e_5fd1_20bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_426e_5fd1_20bf&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_426e_5fd1_20bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6b8b_152b_0d69", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6b8b_152b_0d69.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_6b8b_152b_0d69/request", "", "public", "Sitka, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, SitkaAK C)", "Sitka, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_6b8b_152b_0d69_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_6b8b_152b_0d69_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6b8b_152b_0d69/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6b8b_152b_0d69.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6b8b_152b_0d69&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_6b8b_152b_0d69"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_9d34_0512_2367", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_9d34_0512_2367.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hawaii_9d34_0512_2367/request", "", "public", "SODA - POP 2.1.6 Monthly Means, 1958-2008 (At Depths)", "Simple Ocean Data Assimilation (SODA) version 2.1.6 - A reanalysis of ocean \nclimate. SODA uses the GFDL modular ocean model version 2.2. The model is \nforced by observed surface wind stresses from the COADS data set (from 1958 \nto 1992) and from NCEP (after 1992). Note that the wind stresses were \ndetrended before use due to inconsistencies with observed sea level pressure \ntrends. The model is also constrained by constant assimilation of observed \ntemperatures, salinities, and altimetry using an optimal data assimilation \ntechnique. The observed data comes from: 1) The World Ocean Atlas 1994 which \ncontains ocean temperatures and salinities from mechanical \nbathythermographs, expendable bathythermographs and conductivity-temperature-\ndepth probes. 2) The expendable bathythermograph archive 3) The TOGA-TAO \nthermistor array 4) The Soviet SECTIONS tropical program 5) Satellite \naltimetry from Geosat, ERS/1 and TOPEX/Poseidon. \nWe are now exploring an eddy-permitting reanalysis based on the Parallel \nOcean Program POP-1.4 model with 40 levels in the vertical and a 0.4x0.25 \ndegree displaced pole grid (25 km resolution in the western North \nAtlantic). The first version of this we will release is SODA1.2, a \nreanalysis driven by ERA-40 winds covering the period 1958-2001 (extended to \nthe current year using available altimetry).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (Sea Water Temperature, degree_C)\nsalt (Sea Water Practical Salinity, PSU)\nu (Eastward Sea Water Velocity, m s-1)\nv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_9d34_0512_2367_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_9d34_0512_2367_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_9d34_0512_2367/index.json", "https://www.atmos.umd.edu/~ocean/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_9d34_0512_2367.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_9d34_0512_2367&showErrors=false&email=", "TAMU/UMD", "hawaii_9d34_0512_2367"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_9d34_0512_2367_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_9d34_0512_2367_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hawaii_9d34_0512_2367_LonPM180/request", "", "public", "SODA - POP 2.1.6 Monthly Means, 1958-2008 (At Depths), Lon+/-180", "Simple Ocean Data Assimilation (SODA) version 2.1.6 - A reanalysis of ocean \nclimate. SODA uses the GFDL modular ocean model version 2.2. The model is \nforced by observed surface wind stresses from the COADS data set (from 1958 \nto 1992) and from NCEP (after 1992). Note that the wind stresses were \ndetrended before use due to inconsistencies with observed sea level pressure \ntrends. The model is also constrained by constant assimilation of observed \ntemperatures, salinities, and altimetry using an optimal data assimilation \ntechnique. The observed data comes from: 1) The World Ocean Atlas 1994 which \ncontains ocean temperatures and salinities from mechanical \nbathythermographs, expendable bathythermographs and conductivity-temperature-\ndepth probes. 2) The expendable bathythermograph archive 3) The TOGA-TAO \nthermistor array 4) The Soviet SECTIONS tropical program 5) Satellite \naltimetry from Geosat, ERS/1 and TOPEX/Poseidon. \nWe are now exploring an eddy-permitting reanalysis based on the Parallel \nOcean Program POP-1.4 model with 40 levels in the vertical and a 0.4x0.25 \ndegree displaced pole grid (25 km resolution in the western North \nAtlantic). The first version of this we will release is SODA1.2, a \nreanalysis driven by ERA-40 winds covering the period 1958-2001 (extended to \nthe current year using available altimetry).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (Sea Water Temperature, degree_C)\nsalt (Sea Water Practical Salinity, PSU)\nu (Eastward Sea Water Velocity, m s-1)\nv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_9d34_0512_2367_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_9d34_0512_2367_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_9d34_0512_2367_LonPM180/index.json", "https://www.atmos.umd.edu/~ocean/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_9d34_0512_2367_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_9d34_0512_2367_LonPM180&showErrors=false&email=", "TAMU/UMD", "hawaii_9d34_0512_2367_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_6350_6f20_00bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_6350_6f20_00bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hawaii_6350_6f20_00bf/request", "", "public", "SODA - POP 2.1.6 Monthly Means, 1958-2008 (At Surface)", "Simple Ocean Data Assimilation (SODA) version 2.1.6 - A reanalysis of ocean \nclimate. SODA uses the GFDL modular ocean model version 2.2. The model is \nforced by observed surface wind stresses from the COADS data set (from 1958 \nto 1992) and from NCEP (after 1992). Note that the wind stresses were \ndetrended before use due to inconsistencies with observed sea level pressure \ntrends. The model is also constrained by constant assimilation of observed \ntemperatures, salinities, and altimetry using an optimal data assimilation \ntechnique. The observed data comes from: 1) The World Ocean Atlas 1994 which \ncontains ocean temperatures and salinities from mechanical \nbathythermographs, expendable bathythermographs and conductivity-temperature-\ndepth probes. 2) The expendable bathythermograph archive 3) The TOGA-TAO \nthermistor array 4) The Soviet SECTIONS tropical program 5) Satellite \naltimetry from Geosat, ERS/1 and TOPEX/Poseidon. \nWe are now exploring an eddy-permitting reanalysis based on the Parallel \nOcean Program POP-1.4 model with 40 levels in the vertical and a 0.4x0.25 \ndegree displaced pole grid (25 km resolution in the western North \nAtlantic). The first version of this we will release is SODA1.2, a \nreanalysis driven by ERA-40 winds covering the period 1958-2001 (extended to \nthe current year using available altimetry).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\nssh (Sea Level, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_6350_6f20_00bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_6350_6f20_00bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_6350_6f20_00bf/index.json", "https://www.atmos.umd.edu/~ocean/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_6350_6f20_00bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_6350_6f20_00bf&showErrors=false&email=", "TAMU/UMD", "hawaii_6350_6f20_00bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_6350_6f20_00bf_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_6350_6f20_00bf_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hawaii_6350_6f20_00bf_LonPM180/request", "", "public", "SODA - POP 2.1.6 Monthly Means, 1958-2008 (At Surface), Lon+/-180", "Simple Ocean Data Assimilation (SODA) version 2.1.6 - A reanalysis of ocean \nclimate. SODA uses the GFDL modular ocean model version 2.2. The model is \nforced by observed surface wind stresses from the COADS data set (from 1958 \nto 1992) and from NCEP (after 1992). Note that the wind stresses were \ndetrended before use due to inconsistencies with observed sea level pressure \ntrends. The model is also constrained by constant assimilation of observed \ntemperatures, salinities, and altimetry using an optimal data assimilation \ntechnique. The observed data comes from: 1) The World Ocean Atlas 1994 which \ncontains ocean temperatures and salinities from mechanical \nbathythermographs, expendable bathythermographs and conductivity-temperature-\ndepth probes. 2) The expendable bathythermograph archive 3) The TOGA-TAO \nthermistor array 4) The Soviet SECTIONS tropical program 5) Satellite \naltimetry from Geosat, ERS/1 and TOPEX/Poseidon. \nWe are now exploring an eddy-permitting reanalysis based on the Parallel \nOcean Program POP-1.4 model with 40 levels in the vertical and a 0.4x0.25 \ndegree displaced pole grid (25 km resolution in the western North \nAtlantic). The first version of this we will release is SODA1.2, a \nreanalysis driven by ERA-40 winds covering the period 1958-2001 (extended to \nthe current year using available altimetry).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\nssh (Sea Level, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_6350_6f20_00bf_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_6350_6f20_00bf_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_6350_6f20_00bf_LonPM180/index.json", "https://www.atmos.umd.edu/~ocean/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_6350_6f20_00bf_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_6350_6f20_00bf_LonPM180&showErrors=false&email=", "TAMU/UMD", "hawaii_6350_6f20_00bf_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_d90f_20ee_c4cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_d90f_20ee_c4cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hawaii_d90f_20ee_c4cb/request", "", "public", "SODA - POP 2.2.4 Monthly Means, 1871-2010 (At Depths)", "Simple Ocean Data Assimilation (SODA) version 2.2.4 - A reanalysis of ocean \nclimate. SODA uses the GFDL modular ocean model version 2.2. The model is \nforced by observed surface wind stresses from the COADS data set (from 1958 \nto 1992) and from NCEP (after 1992). Note that the wind stresses were \ndetrended before use due to inconsistencies with observed sea level pressure \ntrends. The model is also constrained by constant assimilation of observed \ntemperatures, salinities, and altimetry using an optimal data assimilation \ntechnique. The observed data comes from: 1) The World Ocean Atlas 1994 which \ncontains ocean temperatures and salinities from mechanical \nbathythermographs, expendable bathythermographs and conductivity-temperature-\ndepth probes. 2) The expendable bathythermograph archive 3) The TOGA-TAO \nthermistor array 4) The Soviet SECTIONS tropical program 5) Satellite \naltimetry from Geosat, ERS/1 and TOPEX/Poseidon. \nWe are now exploring an eddy-permitting reanalysis based on the Parallel \nOcean Program POP-1.4 model with 40 levels in the vertical and a 0.4x0.25 \ndegree displaced pole grid (25 km resolution in the western North \nAtlantic). The first version of this we will release is SODA1.2, a \nreanalysis driven by ERA-40 winds covering the period 1958-2001 (extended to \nthe current year using available altimetry).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (Sea Water Temperature, degree_C)\nsalt (Sea Water Practical Salinity, PSU)\nu (Eastward Sea Water Velocity, m s-1)\nv (Northward Sea Water Velocity, m s-1)\nw (Upward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_d90f_20ee_c4cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_d90f_20ee_c4cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_d90f_20ee_c4cb/index.json", "https://www.atmos.umd.edu/~ocean/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_d90f_20ee_c4cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_d90f_20ee_c4cb&showErrors=false&email=", "TAMU/UMD", "hawaii_d90f_20ee_c4cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_d90f_20ee_c4cb_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_d90f_20ee_c4cb_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hawaii_d90f_20ee_c4cb_LonPM180/request", "", "public", "SODA - POP 2.2.4 Monthly Means, 1871-2010 (At Depths), Lon+/-180", "Simple Ocean Data Assimilation (SODA) version 2.2.4 - A reanalysis of ocean \nclimate. SODA uses the GFDL modular ocean model version 2.2. The model is \nforced by observed surface wind stresses from the COADS data set (from 1958 \nto 1992) and from NCEP (after 1992). Note that the wind stresses were \ndetrended before use due to inconsistencies with observed sea level pressure \ntrends. The model is also constrained by constant assimilation of observed \ntemperatures, salinities, and altimetry using an optimal data assimilation \ntechnique. The observed data comes from: 1) The World Ocean Atlas 1994 which \ncontains ocean temperatures and salinities from mechanical \nbathythermographs, expendable bathythermographs and conductivity-temperature-\ndepth probes. 2) The expendable bathythermograph archive 3) The TOGA-TAO \nthermistor array 4) The Soviet SECTIONS tropical program 5) Satellite \naltimetry from Geosat, ERS/1 and TOPEX/Poseidon. \nWe are now exploring an eddy-permitting reanalysis based on the Parallel \nOcean Program POP-1.4 model with 40 levels in the vertical and a 0.4x0.25 \ndegree displaced pole grid (25 km resolution in the western North \nAtlantic). The first version of this we will release is SODA1.2, a \nreanalysis driven by ERA-40 winds covering the period 1958-2001 (extended to \nthe current year using available altimetry).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (Sea Water Temperature, degree_C)\nsalt (Sea Water Practical Salinity, PSU)\nu (Eastward Sea Water Velocity, m s-1)\nv (Northward Sea Water Velocity, m s-1)\nw (Upward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_d90f_20ee_c4cb_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_d90f_20ee_c4cb_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_d90f_20ee_c4cb_LonPM180/index.json", "https://www.atmos.umd.edu/~ocean/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_d90f_20ee_c4cb_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_d90f_20ee_c4cb_LonPM180&showErrors=false&email=", "TAMU/UMD", "hawaii_d90f_20ee_c4cb_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_3e19_7ccd_16ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_3e19_7ccd_16ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hawaii_3e19_7ccd_16ff/request", "", "public", "SODA - POP 2.2.4 Monthly Means, 1871-2010 (At Surface)", "Simple Ocean Data Assimilation (SODA) version 2.2.4 - A reanalysis of ocean \nclimate. SODA uses the GFDL modular ocean model version 2.2. The model is \nforced by observed surface wind stresses from the COADS data set (from 1958 \nto 1992) and from NCEP (after 1992). Note that the wind stresses were \ndetrended before use due to inconsistencies with observed sea level pressure \ntrends. The model is also constrained by constant assimilation of observed \ntemperatures, salinities, and altimetry using an optimal data assimilation \ntechnique. The observed data comes from: 1) The World Ocean Atlas 1994 which \ncontains ocean temperatures and salinities from mechanical \nbathythermographs, expendable bathythermographs and conductivity-temperature-\ndepth probes. 2) The expendable bathythermograph archive 3) The TOGA-TAO \nthermistor array 4) The Soviet SECTIONS tropical program 5) Satellite \naltimetry from Geosat, ERS/1 and TOPEX/Poseidon. \nWe are now exploring an eddy-permitting reanalysis based on the Parallel \nOcean Program POP-1.4 model with 40 levels in the vertical and a 0.4x0.25 \ndegree displaced pole grid (25 km resolution in the western North \nAtlantic). The first version of this we will release is SODA1.2, a \nreanalysis driven by ERA-40 winds covering the period 1958-2001 (extended to \nthe current year using available altimetry).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\nssh (Sea Level, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_3e19_7ccd_16ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_3e19_7ccd_16ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_3e19_7ccd_16ff/index.json", "https://www.atmos.umd.edu/~ocean/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_3e19_7ccd_16ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_3e19_7ccd_16ff&showErrors=false&email=", "TAMU/UMD", "hawaii_3e19_7ccd_16ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_3e19_7ccd_16ff_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_3e19_7ccd_16ff_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hawaii_3e19_7ccd_16ff_LonPM180/request", "", "public", "SODA - POP 2.2.4 Monthly Means, 1871-2010 (At Surface), Lon+/-180", "Simple Ocean Data Assimilation (SODA) version 2.2.4 - A reanalysis of ocean \nclimate. SODA uses the GFDL modular ocean model version 2.2. The model is \nforced by observed surface wind stresses from the COADS data set (from 1958 \nto 1992) and from NCEP (after 1992). Note that the wind stresses were \ndetrended before use due to inconsistencies with observed sea level pressure \ntrends. The model is also constrained by constant assimilation of observed \ntemperatures, salinities, and altimetry using an optimal data assimilation \ntechnique. The observed data comes from: 1) The World Ocean Atlas 1994 which \ncontains ocean temperatures and salinities from mechanical \nbathythermographs, expendable bathythermographs and conductivity-temperature-\ndepth probes. 2) The expendable bathythermograph archive 3) The TOGA-TAO \nthermistor array 4) The Soviet SECTIONS tropical program 5) Satellite \naltimetry from Geosat, ERS/1 and TOPEX/Poseidon. \nWe are now exploring an eddy-permitting reanalysis based on the Parallel \nOcean Program POP-1.4 model with 40 levels in the vertical and a 0.4x0.25 \ndegree displaced pole grid (25 km resolution in the western North \nAtlantic). The first version of this we will release is SODA1.2, a \nreanalysis driven by ERA-40 winds covering the period 1958-2001 (extended to \nthe current year using available altimetry).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\nssh (Sea Level, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_3e19_7ccd_16ff_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_3e19_7ccd_16ff_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_3e19_7ccd_16ff_LonPM180/index.json", "https://www.atmos.umd.edu/~ocean/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_3e19_7ccd_16ff_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_3e19_7ccd_16ff_LonPM180&showErrors=false&email=", "TAMU/UMD", "hawaii_3e19_7ccd_16ff_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSoda331oceanmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSoda331oceanmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSoda331oceanmday/request", "", "public", "SODA 3.3.1 Ocean State, 1/2\u00b0, Global, 1980-2015, Monthly Composite", "SODA3.3.1 ocean state, forced by MERRA2. The goal of SODA is to reconstruct the historical physical (and eventually biogeochemical) history of the ocean. As its name implies, the Simple Ocean Data Assimilation ocean/sea ice reanalysis (SODA) uses a simple architecture based on community standard codes with resolution chosen to match available data and the scales of motion that are resolvable. Agreement with direct measurements (to within observational error estimates) as well as unbiased statistics are expected. Please cite: Carton, Chepurin, and Chen (2017).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (Potential temperature, degrees C)\nsalt (Practical Salinity, PSU)\nwt (dia-surface velocity T-points, m/sec)\nprho (potential density referenced to 0 dbar, kg/m^3)\nu (i-current, m/sec)\nv (j-current, m/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSoda331oceanmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSoda331oceanmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSoda331oceanmday/index.json", "http://www.soda.umd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSoda331oceanmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSoda331oceanmday&showErrors=false&email=", "University of Maryland", "erdSoda331oceanmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSoda331oceanmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSoda331oceanmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSoda331oceanmday_LonPM180/request", "", "public", "SODA 3.3.1 Ocean State, 1/2\u00b0, Global, 1980-2015, Monthly Composite, Lon+/-180", "SODA3.3.1 ocean state, forced by MERRA2. The goal of SODA is to reconstruct the historical physical (and eventually biogeochemical) history of the ocean. As its name implies, the Simple Ocean Data Assimilation ocean/sea ice reanalysis (SODA) uses a simple architecture based on community standard codes with resolution chosen to match available data and the scales of motion that are resolvable. Agreement with direct measurements (to within observational error estimates) as well as unbiased statistics are expected. Please cite: Carton, Chepurin, and Chen (2017).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (Potential temperature, degrees C)\nsalt (Practical Salinity, PSU)\nwt (dia-surface velocity T-points, m/sec)\nprho (potential density referenced to 0 dbar, kg/m^3)\nu (i-current, m/sec)\nv (j-current, m/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSoda331oceanmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSoda331oceanmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSoda331oceanmday_LonPM180/index.json", "http://www.soda.umd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSoda331oceanmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSoda331oceanmday_LonPM180&showErrors=false&email=", "University of Maryland", "erdSoda331oceanmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSoda331icemday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSoda331icemday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSoda331icemday/request", "", "public", "SODA 3.3.1 Sea Ice Concentration, 1/2\u00b0, Global, 1980-2015, Monthly Composite", "SODA3.3.1 ice state, forced by MERRA2. The goal of SODA is to reconstruct the historical physical (and eventually biogeochemical) history of the ocean. As its name implies, the Simple Ocean Data Assimilation ocean/sea ice reanalysis (SODA) uses a simple architecture based on community standard codes with resolution chosen to match available data and the scales of motion that are resolvable. Agreement with direct measurements (to within observational error estimates) as well as unbiased statistics are expected. Please cite: Carton, Chepurin, and Chen (2017).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ncn (Sea Ice Concentration, 0-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSoda331icemday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSoda331icemday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSoda331icemday/index.json", "http://www.soda.umd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSoda331icemday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSoda331icemday&showErrors=false&email=", "University of Maryland", "erdSoda331icemday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSoda331icemday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSoda331icemday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSoda331icemday_LonPM180/request", "", "public", "SODA 3.3.1 Sea Ice Concentration, 1/2\u00b0, Global, 1980-2015, Monthly Composite, Lon+/-180", "SODA3.3.1 ice state, forced by MERRA2. The goal of SODA is to reconstruct the historical physical (and eventually biogeochemical) history of the ocean. As its name implies, the Simple Ocean Data Assimilation ocean/sea ice reanalysis (SODA) uses a simple architecture based on community standard codes with resolution chosen to match available data and the scales of motion that are resolvable. Agreement with direct measurements (to within observational error estimates) as well as unbiased statistics are expected. Please cite: Carton, Chepurin, and Chen (2017).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ncn (Sea Ice Concentration, 0-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSoda331icemday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSoda331icemday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSoda331icemday_LonPM180/index.json", "http://www.soda.umd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSoda331icemday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSoda331icemday_LonPM180&showErrors=false&email=", "University of Maryland", "erdSoda331icemday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/sopac_bathy_5m_majuro_lagoon", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/sopac_bathy_5m_majuro_lagoon.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/sopac_bathy_5m_majuro_lagoon/request", "", "public", "SOPAC 5-m Bathymetry: RMI: Majuro: Lagoon", "A 5-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) of the lagoon environment of Majuro Atoll in the Republic of the Marshall Islands (RMI). Compiled from ship-borne multibeam sonar surveys conducted from 2003-2006 by the Secretariat of the Pacific Community (SPC) Applied Geoscience and Technology Division (SOPAC). This work was implemented through the project \"Reducing Vulnerability of Pacific States\" funded by the European Development Fund. Not to be used for navigational purposes.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sopac_bathy_5m_majuro_lagoon_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sopac_bathy_5m_majuro_lagoon_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sopac_bathy_5m_majuro_lagoon/index.json", "http://www.sopac.org", "http://upwell.pfeg.noaa.gov/erddap/rss/sopac_bathy_5m_majuro_lagoon.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sopac_bathy_5m_majuro_lagoon&showErrors=false&email=", "SOPAC", "sopac_bathy_5m_majuro_lagoon"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/sopac_bathy_50m_majuro_reef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/sopac_bathy_50m_majuro_reef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/sopac_bathy_50m_majuro_reef/request", "", "public", "SOPAC 50-m Bathymetry: RMI: Majuro: Reef", "A 50-m resolution gridded digital elevation model (DEM) for the bathymetry (ocean depth) of the eastern reef of Majuro Atoll in the Republic of the Marshall Islands (RMI). Compiled from ship-borne multibeam sonar surveys conducted from 2003-2006 by the Secretariat of the Pacific Community (SPC) Applied Geoscience and Technology Division (SOPAC). This work was implemented through the project \"Reducing Vulnerability of Pacific States\" funded by the European Development Fund. Not to be used for navigational purposes.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sopac_bathy_50m_majuro_reef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sopac_bathy_50m_majuro_reef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sopac_bathy_50m_majuro_reef/index.json", "http://www.sopac.org", "http://upwell.pfeg.noaa.gov/erddap/rss/sopac_bathy_50m_majuro_reef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sopac_bathy_50m_majuro_reef&showErrors=false&email=", "SOPAC", "sopac_bathy_50m_majuro_reef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0115_0cb8_fd49", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0115_0cb8_fd49.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0115_0cb8_fd49/request", "", "public", "South Padre Island, Texas Coastal Digital Elevation Model (south padre island 13 mhw 2012), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0115_0cb8_fd49_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0115_0cb8_fd49_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0115_0cb8_fd49/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0115_0cb8_fd49.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0115_0cb8_fd49&showErrors=false&email=", "NOAA", "noaa_ngdc_0115_0cb8_fd49"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_55e8_53ea_9ec7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_55e8_53ea_9ec7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_55e8_53ea_9ec7/request", "", "public", "South Padre Island, Texas Coastal Digital Elevation Model (south padre island 13 navd88 2012), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_55e8_53ea_9ec7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_55e8_53ea_9ec7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_55e8_53ea_9ec7/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_55e8_53ea_9ec7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_55e8_53ea_9ec7&showErrors=false&email=", "NOAA", "noaa_ngdc_55e8_53ea_9ec7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/srtm30plus_v11_bathy", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/srtm30plus_v11_bathy.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/srtm30plus_v11_bathy/request", "", "public", "SRTM30+ Global 1-km Digital Elevation Model (DEM): Version 11: Bathymetry", "Global 1-km resolution bathymetry from the 30 arc-second SRTM30+ gridded digital elevation model (DEM). Based on the Smith and Sandwell global 1 arc-minute grid between latitudes +/- 81 degrees. Higher resolution grids have been added from the LDEO Ridge Multibeam Synthesis Project, the JAMSTEC Data Site for Research Cruises, and the NGDC Coastal Relief Model. Arctic bathymetry is from the International Bathymetric Chart of the Oceans (IBCAO).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/srtm30plus_v11_bathy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/srtm30plus_v11_bathy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/srtm30plus_v11_bathy/index.json", "http://topex.ucsd.edu/WWW_html/srtm30_plus.html", "http://upwell.pfeg.noaa.gov/erddap/rss/srtm30plus_v11_bathy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=srtm30plus_v11_bathy&showErrors=false&email=", "Scripps", "srtm30plus_v11_bathy"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/srtm30plus_v11_land", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/srtm30plus_v11_land.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/srtm30plus_v11_land/request", "", "public", "SRTM30+ Global 1-km Digital Elevation Model (DEM): Version 11: Land Surface", "A global 1-km resolution land surface digital elevation model (DEM) derived from United States Geological Survey (USGS) 30 arc-second SRTM30 gridded DEM data created from the NASA Shuttle Radar Topography Mission (SRTM). GTOPO30 data are used for high latitudes where SRTM data are not available.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/srtm30plus_v11_land_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/srtm30plus_v11_land_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/srtm30plus_v11_land/index.json", "http://topex.ucsd.edu/WWW_html/srtm30_plus.html", "http://upwell.pfeg.noaa.gov/erddap/rss/srtm30plus_v11_land.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=srtm30plus_v11_land&showErrors=false&email=", "Scripps", "srtm30plus_v11_land"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/srtm30plus", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/srtm30plus.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/srtm30plus/request", "", "public", "SRTM30_PLUS Estimated Topography, 30 seconds, Global, v11", "One GMT file, topo30.grd, with the entire global topography. The grid resolution is 30 seconds which is roughly 0.55km at the equator. The data are pixel registered.\n\nLand data are based on the 1-km averages of topography derived from the USGS SRTM30 grided DEM data product created with data from the NASA Shuttle Radar Topography Mission (https://www2.jpl.nasa.gov/srtm/). GTOPO30 data (http://www1.gsi.go.jp/geowww/globalmap-gsi/gtopo30/gtopo30.html) are used for high latitudes where SRTM data are not available.\n\nOcean data are based on the Smith and Sandwell global 1-minute grid (https://topex.ucsd.edu/WWW_html/mar_topo.html) between latitudes +/-81 degrees. Higher resolution grids have been added from the LDEO Ridge Multibeam Synthesis Project ( https://www.gmrt.org/ ), the JAMSTEC Data Site for Research Cruises (https://www.godac.jamstec.go.jp/darwin/e), and the NGDC Coastal Relief Model (https://www.ngdc.noaa.gov/mgg/coastal/coastal.html). Arctic bathymetry is from the International Bathymetric Chart of the Oceans (IBCAO) (https://www.ngdc.noaa.gov/mgg/bathymetry/arctic/arctic.html) [Jakobsson et al., 2003].\n\nMatching files of source identification number are available for determining the data source for every pixel.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (Altitude, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/srtm30plus_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/srtm30plus_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/srtm30plus/index.json", "https://topex.ucsd.edu/WWW_html/srtm30_plus.html", "http://upwell.pfeg.noaa.gov/erddap/rss/srtm30plus.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=srtm30plus&showErrors=false&email=", "SIO, NOAA, U.S. Navy, NGA, GEBCO", "srtm30plus"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/srtm30plus_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/srtm30plus_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/srtm30plus_LonPM180/request", "", "public", "SRTM30_PLUS Estimated Topography, 30 seconds, Global, v11, Lon+/-180", "One GMT file, topo30.grd, with the entire global topography. The grid resolution is 30 seconds which is roughly 0.55km at the equator. The data are pixel registered.\n\nLand data are based on the 1-km averages of topography derived from the USGS SRTM30 grided DEM data product created with data from the NASA Shuttle Radar Topography Mission (https://www2.jpl.nasa.gov/srtm/). GTOPO30 data (http://www1.gsi.go.jp/geowww/globalmap-gsi/gtopo30/gtopo30.html) are used for high latitudes where SRTM data are not available.\n\nOcean data are based on the Smith and Sandwell global 1-minute grid (https://topex.ucsd.edu/WWW_html/mar_topo.html) between latitudes +/-81 degrees. Higher resolution grids have been added from the LDEO Ridge Multibeam Synthesis Project ( https://www.gmrt.org/ ), the JAMSTEC Data Site for Research Cruises (https://www.godac.jamstec.go.jp/darwin/e), and the NGDC Coastal Relief Model (https://www.ngdc.noaa.gov/mgg/coastal/coastal.html). Arctic bathymetry is from the International Bathymetric Chart of the Oceans (IBCAO) (https://www.ngdc.noaa.gov/mgg/bathymetry/arctic/arctic.html) [Jakobsson et al., 2003].\n\nMatching files of source identification number are available for determining the data source for every pixel.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (Altitude, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/srtm30plus_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/srtm30plus_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/srtm30plus_LonPM180/index.json", "https://topex.ucsd.edu/WWW_html/srtm30_plus.html", "http://upwell.pfeg.noaa.gov/erddap/rss/srtm30plus_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=srtm30plus_LonPM180&showErrors=false&email=", "SIO, NOAA, U.S. Navy, NGA, GEBCO", "srtm30plus_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanmmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanmmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGtanmmday/request", "", "public", "SST Anomaly, POES AVHRR, Casey and Cornillon Climatology, Global, 2003-2016 (Monthly Composite)", "NOAA CoastWatch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database by Casey and Cornillon. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGtanmmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGtanmmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGtanmmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_tanm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGtanmmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGtanmmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGtanmmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanmmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanmmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGtanmmday_LonPM180/request", "", "public", "SST Anomaly, POES AVHRR, Casey and Cornillon Climatology, Global, 2003-2016 (Monthly Composite), Lon+/-180", "NOAA CoastWatch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database by Casey and Cornillon. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGtanmmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGtanmmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGtanmmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_tanm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGtanmmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGtanmmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGtanmmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGtanm1day/request", "", "public", "SST Anomaly, POES AVHRR, Casey and Cornillon Climatology, Global, 2006-2016 (1 Day Composite)", "NOAA CoastWatch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database by Casey and Cornillon. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGtanm1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGtanm1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGtanm1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_tanm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGtanm1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGtanm1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGtanm1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGtanm1day_LonPM180/request", "", "public", "SST Anomaly, POES AVHRR, Casey and Cornillon Climatology, Global, 2006-2016 (1 Day Composite), Lon+/-180", "NOAA CoastWatch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database by Casey and Cornillon. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGtanm1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGtanm1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGtanm1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_tanm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGtanm1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGtanm1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGtanm1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGtanm14day/request", "", "public", "SST Anomaly, POES AVHRR, Casey and Cornillon Climatology, Global, 2006-2016 (14 Day Composite)", "NOAA CoastWatch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database by Casey and Cornillon. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGtanm14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGtanm14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGtanm14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_tanm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGtanm14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGtanm14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGtanm14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGtanm14day_LonPM180/request", "", "public", "SST Anomaly, POES AVHRR, Casey and Cornillon Climatology, Global, 2006-2016 (14 Day Composite), Lon+/-180", "NOAA CoastWatch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database by Casey and Cornillon. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGtanm14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGtanm14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGtanm14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_tanm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGtanm14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGtanm14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGtanm14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGtanm3day/request", "", "public", "SST Anomaly, POES AVHRR, Casey and Cornillon Climatology, Global, 2006-2016 (3 Day Composite)", "NOAA CoastWatch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database by Casey and Cornillon. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGtanm3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGtanm3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGtanm3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_tanm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGtanm3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGtanm3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGtanm3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGtanm3day_LonPM180/request", "", "public", "SST Anomaly, POES AVHRR, Casey and Cornillon Climatology, Global, 2006-2016 (3 Day Composite), Lon+/-180", "NOAA CoastWatch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database by Casey and Cornillon. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGtanm3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGtanm3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGtanm3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_tanm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGtanm3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGtanm3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGtanm3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGtanm8day/request", "", "public", "SST Anomaly, POES AVHRR, Casey and Cornillon Climatology, Global, 2006-2016 (8 Day Composite)", "NOAA CoastWatch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database by Casey and Cornillon. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGtanm8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGtanm8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGtanm8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_tanm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGtanm8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGtanm8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGtanm8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGtanm8day_LonPM180/request", "", "public", "SST Anomaly, POES AVHRR, Casey and Cornillon Climatology, Global, 2006-2016 (8 Day Composite), Lon+/-180", "NOAA CoastWatch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database by Casey and Cornillon. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGtanm8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGtanm8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGtanm8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_tanm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGtanm8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGtanm8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGtanm8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm5day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm5day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGtanm5day/request", "", "public", "SST Anomaly, POES AVHRR, Casey and Cornillon Climatology, Global, 2007-2016 (5 Day Composite)", "NOAA CoastWatch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database by Casey and Cornillon. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGtanm5day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGtanm5day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGtanm5day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_tanm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGtanm5day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGtanm5day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGtanm5day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm5day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm5day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGtanm5day_LonPM180/request", "", "public", "SST Anomaly, POES AVHRR, Casey and Cornillon Climatology, Global, 2007-2016 (5 Day Composite), Lon+/-180", "NOAA CoastWatch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database by Casey and Cornillon. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGtanm5day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGtanm5day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGtanm5day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_tanm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGtanm5day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGtanm5day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGtanm5day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/FRD_SSTgradsmo", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/FRD_SSTgradsmo.graph", "", "", "public", "SST smoothed frontal gradients", "An improved automatic detection of mesoscale fronts, derived from Cayula, J. F., & Cornillon, P. (1992) and Cayula, J. F., & Cornillon, P. (1995), using the new method described by Nieto et al. (2012)\n\nNieto, Karen, Demarcq, H. and McClatchie, S. \"Mesoscale frontal structures in the Canary Upwelling System: new front and filament detection algorithms applied to spatial and temporal patterns\". Remote Sensing of the Environment 123, 2012 (pp.339-346)\"\n\nCayula, J. F., & Cornillon, P. (1992). Edge detection algorithm for SST images. Journal of Atmospheric and Oceanic Technology, 9, 67-80.\n\nCayula, J. F., & Cornillon, P. (1995). Multi-image edge detection for SST images. Journal of Atmospheric and Oceanic Technology, 12, 821-829.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSSTgrad (SST Edge-Gradient monthly, degrees C / km)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRD_SSTgradsmo_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRD_SSTgradsmo_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRD_SSTgradsmo/index.json", "https://oceanview.pfeg.noaa.gov/FRD/SSTgradsmo_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/FRD_SSTgradsmo.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRD_SSTgradsmo&showErrors=false&email=", "NOAA/NMFS/SWFSC", "FRD_SSTgradsmo"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAAssta1day/request", "", "public", "SST, Aqua AMSR-E, Near Real Time, Global, 2002-2011 (1 Day Composite)", "NOAA OceanWatch provides sea surface temperature (SST) products derived from microwave sensors, which can measure ocean temperatures even in the presence of clouds. This data is provided at moderate spatial resolution (0.025 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAAssta1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAAssta1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAAssta1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAAssta1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAAssta1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAAssta1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAAssta1day_LonPM180/request", "", "public", "SST, Aqua AMSR-E, Near Real Time, Global, 2002-2011 (1 Day Composite), Lon+/-180", "NOAA OceanWatch provides sea surface temperature (SST) products derived from microwave sensors, which can measure ocean temperatures even in the presence of clouds. This data is provided at moderate spatial resolution (0.025 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAAssta1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAAssta1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAAssta1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAAssta1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAAssta1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAAssta1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAsstamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAsstamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAAsstamday/request", "", "public", "SST, Aqua AMSR-E, Near Real Time, Global, 2005-2011 (Monthly Composite)", "NOAA OceanWatch provides sea surface temperature (SST) products derived from microwave sensors, which can measure ocean temperatures even in the presence of clouds. This data is provided at moderate spatial resolution (0.025 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAAsstamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAAsstamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAAsstamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAAsstamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAAsstamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAAsstamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAsstamday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAsstamday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAAsstamday_LonPM180/request", "", "public", "SST, Aqua AMSR-E, Near Real Time, Global, 2005-2011 (Monthly Composite), Lon+/-180", "NOAA OceanWatch provides sea surface temperature (SST) products derived from microwave sensors, which can measure ocean temperatures even in the presence of clouds. This data is provided at moderate spatial resolution (0.025 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAAsstamday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAAsstamday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAAsstamday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAAsstamday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAAsstamday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAAsstamday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAAssta14day/request", "", "public", "SST, Aqua AMSR-E, Near Real Time, Global, 2007-2011 (14 Day Composite)", "NOAA OceanWatch provides sea surface temperature (SST) products derived from microwave sensors, which can measure ocean temperatures even in the presence of clouds. This data is provided at moderate spatial resolution (0.025 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAAssta14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAAssta14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAAssta14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAAssta14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAAssta14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAAssta14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAAssta14day_LonPM180/request", "", "public", "SST, Aqua AMSR-E, Near Real Time, Global, 2007-2011 (14 Day Composite), Lon+/-180", "NOAA OceanWatch provides sea surface temperature (SST) products derived from microwave sensors, which can measure ocean temperatures even in the presence of clouds. This data is provided at moderate spatial resolution (0.025 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAAssta14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAAssta14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAAssta14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAAssta14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAAssta14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAAssta14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAAssta3day/request", "", "public", "SST, Aqua AMSR-E, Near Real Time, Global, 2007-2011 (3 Day Composite)", "NOAA OceanWatch provides sea surface temperature (SST) products derived from microwave sensors, which can measure ocean temperatures even in the presence of clouds. This data is provided at moderate spatial resolution (0.025 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAAssta3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAAssta3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAAssta3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAAssta3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAAssta3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAAssta3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAAssta3day_LonPM180/request", "", "public", "SST, Aqua AMSR-E, Near Real Time, Global, 2007-2011 (3 Day Composite), Lon+/-180", "NOAA OceanWatch provides sea surface temperature (SST) products derived from microwave sensors, which can measure ocean temperatures even in the presence of clouds. This data is provided at moderate spatial resolution (0.025 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAAssta3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAAssta3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAAssta3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAAssta3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAAssta3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAAssta3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta5day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta5day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAAssta5day/request", "", "public", "SST, Aqua AMSR-E, Near Real Time, Global, 2007-2011 (5 Day Composite)", "NOAA OceanWatch provides sea surface temperature (SST) products derived from microwave sensors, which can measure ocean temperatures even in the presence of clouds. This data is provided at moderate spatial resolution (0.025 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAAssta5day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAAssta5day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAAssta5day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAAssta5day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAAssta5day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAAssta5day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta5day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta5day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAAssta5day_LonPM180/request", "", "public", "SST, Aqua AMSR-E, Near Real Time, Global, 2007-2011 (5 Day Composite), Lon+/-180", "NOAA OceanWatch provides sea surface temperature (SST) products derived from microwave sensors, which can measure ocean temperatures even in the presence of clouds. This data is provided at moderate spatial resolution (0.025 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAAssta5day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAAssta5day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAAssta5day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAAssta5day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAAssta5day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAAssta5day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAAssta8day/request", "", "public", "SST, Aqua AMSR-E, Near Real Time, Global, 2007-2011 (8 Day Composite)", "NOAA OceanWatch provides sea surface temperature (SST) products derived from microwave sensors, which can measure ocean temperatures even in the presence of clouds. This data is provided at moderate spatial resolution (0.025 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAAssta8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAAssta8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAAssta8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAAssta8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAAssta8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAAssta8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAAssta8day_LonPM180/request", "", "public", "SST, Aqua AMSR-E, Near Real Time, Global, 2007-2011 (8 Day Composite), Lon+/-180", "NOAA OceanWatch provides sea surface temperature (SST) products derived from microwave sensors, which can measure ocean temperatures even in the presence of clouds. This data is provided at moderate spatial resolution (0.025 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAAssta8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAAssta8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAAssta8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAAssta8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAAssta8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAAssta8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstd1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstd1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWsstd1day/request", "", "public", "SST, Aqua MODIS, NPP, 0.0125\u00b0, West US, Day time (11 microns), 2002-present (1 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWsstd1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWsstd1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWsstd1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWsstd1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWsstd1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWsstd1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstd1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstd1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWsstd1day_LonPM180/request", "", "public", "SST, Aqua MODIS, NPP, 0.0125\u00b0, West US, Day time (11 microns), 2002-present (1 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWsstd1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWsstd1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWsstd1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWsstd1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWsstd1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWsstd1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstd14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstd14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWsstd14day/request", "", "public", "SST, Aqua MODIS, NPP, 0.0125\u00b0, West US, Day time (11 microns), 2002-present (14 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWsstd14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWsstd14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWsstd14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWsstd14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWsstd14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWsstd14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstd14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstd14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWsstd14day_LonPM180/request", "", "public", "SST, Aqua MODIS, NPP, 0.0125\u00b0, West US, Day time (11 microns), 2002-present (14 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWsstd14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWsstd14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWsstd14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWsstd14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWsstd14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWsstd14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstd3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstd3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWsstd3day/request", "", "public", "SST, Aqua MODIS, NPP, 0.0125\u00b0, West US, Day time (11 microns), 2002-present (3 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWsstd3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWsstd3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWsstd3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWsstd3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWsstd3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWsstd3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstd3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstd3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWsstd3day_LonPM180/request", "", "public", "SST, Aqua MODIS, NPP, 0.0125\u00b0, West US, Day time (11 microns), 2002-present (3 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWsstd3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWsstd3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWsstd3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWsstd3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWsstd3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWsstd3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstd8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstd8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWsstd8day/request", "", "public", "SST, Aqua MODIS, NPP, 0.0125\u00b0, West US, Day time (11 microns), 2002-present (8 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWsstd8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWsstd8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWsstd8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWsstd8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWsstd8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWsstd8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstd8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstd8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWsstd8day_LonPM180/request", "", "public", "SST, Aqua MODIS, NPP, 0.0125\u00b0, West US, Day time (11 microns), 2002-present (8 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWsstd8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWsstd8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWsstd8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWsstd8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWsstd8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWsstd8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstdmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstdmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWsstdmday/request", "", "public", "SST, Aqua MODIS, NPP, 0.0125\u00b0, West US, Day time (11 microns), 2002-present (Monthly Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWsstdmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWsstdmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWsstdmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWsstdmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWsstdmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWsstdmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstdmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstdmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWsstdmday_LonPM180/request", "", "public", "SST, Aqua MODIS, NPP, 0.0125\u00b0, West US, Day time (11 microns), 2002-present (Monthly Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWsstdmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWsstdmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWsstdmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWsstdmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWsstdmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWsstdmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBsstd1day/request", "", "public", "SST, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, Daytime, 2006-present (1 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBsstd1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBsstd1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBsstd1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBsstd1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBsstd1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBsstd1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBsstd1day_LonPM180/request", "", "public", "SST, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, Daytime, 2006-present (1 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBsstd1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBsstd1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBsstd1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBsstd1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBsstd1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBsstd1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBsstd14day/request", "", "public", "SST, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, Daytime, 2006-present (14 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBsstd14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBsstd14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBsstd14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBsstd14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBsstd14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBsstd14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBsstd14day_LonPM180/request", "", "public", "SST, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, Daytime, 2006-present (14 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBsstd14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBsstd14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBsstd14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBsstd14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBsstd14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBsstd14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBsstd3day/request", "", "public", "SST, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, Daytime, 2006-present (3 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBsstd3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBsstd3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBsstd3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBsstd3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBsstd3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBsstd3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBsstd3day_LonPM180/request", "", "public", "SST, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, Daytime, 2006-present (3 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBsstd3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBsstd3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBsstd3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBsstd3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBsstd3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBsstd3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd5day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd5day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBsstd5day/request", "", "public", "SST, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, Daytime, 2006-present (5 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBsstd5day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBsstd5day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBsstd5day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBsstd5day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBsstd5day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBsstd5day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd5day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd5day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBsstd5day_LonPM180/request", "", "public", "SST, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, Daytime, 2006-present (5 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBsstd5day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBsstd5day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBsstd5day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBsstd5day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBsstd5day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBsstd5day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBsstd8day/request", "", "public", "SST, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, Daytime, 2006-present (8 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBsstd8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBsstd8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBsstd8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBsstd8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBsstd8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBsstd8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBsstd8day_LonPM180/request", "", "public", "SST, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, Daytime, 2006-present (8 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBsstd8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBsstd8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBsstd8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBsstd8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBsstd8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBsstd8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstdmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstdmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBsstdmday/request", "", "public", "SST, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, Daytime, 2006-present (Monthly Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBsstdmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBsstdmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBsstdmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBsstdmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBsstdmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBsstdmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstdmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstdmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBsstdmday_LonPM180/request", "", "public", "SST, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, Daytime, 2006-present (Monthly Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBsstdmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBsstdmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBsstdmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBsstdmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBsstdmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBsstdmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstd1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstd1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1sstd1day/request", "", "public", "SST, Aqua MODIS, NPP, 4km, Daytime (11 microns), 2003-present (1 Day Composite)", "NOAA CoastWatch provides (mask-applied) global, 11km, Level 3, Standard Mapped Image (SMI), 4km, daytime SST data from NASA's Aqua Spacecraft. This is 1-day composite data. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Masked Daytime Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1sstd1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1sstd1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1sstd1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_sstMask_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1sstd1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1sstd1day&showErrors=false&email=", "NOAA SWFSC ERD", "erdMH1sstd1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstd8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstd8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1sstd8day/request", "", "public", "SST, Aqua MODIS, NPP, 4km, Daytime (11 microns), 2003-present (8 Day Composite)", "NOAA CoastWatch provides (mask-applied) global, 11km, Level 3, Standard Mapped Image (SMI), 4km, daytime SST data from NASA's Aqua Spacecraft. This is 8-day composite data. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Masked Daytime Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1sstd8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1sstd8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1sstd8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_sstMask_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1sstd8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1sstd8day&showErrors=false&email=", "NOAA SWFSC ERD", "erdMH1sstd8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstdmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstdmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1sstdmday/request", "", "public", "SST, Aqua MODIS, NPP, 4km, Daytime (11 microns), 2003-present (Monthly Composite)", "NOAA CoastWatch provides (mask-applied) global, 11km, Level 3, Standard Mapped Image (SMI), 4km, daytime SST data from NASA's Aqua Spacecraft. This is monthly composite data. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Masked Daytime Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1sstdmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1sstdmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1sstdmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_sstMask_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1sstdmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1sstdmday&showErrors=false&email=", "NOAA SWFSC ERD", "erdMH1sstdmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHsstd1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHsstd1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHsstd1day/request", "", "public", "SST, Aqua MODIS, NPP, Daytime (11 microns), 2002-2006, DEPRECATED OLDER VERSION (1 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHsstd1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHsstd1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHsstd1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHsstd1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHsstd1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHsstd1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHsstd8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHsstd8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHsstd8day/request", "", "public", "SST, Aqua MODIS, NPP, Daytime (11 microns), 2002-2013, DEPRECATED OLDER VERSION (8 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHsstd8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHsstd8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHsstd8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHsstd8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHsstd8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHsstd8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHsstdmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHsstdmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHsstdmday/request", "", "public", "SST, Aqua MODIS, NPP, Daytime (11 microns), 2002-2013, DEPRECATED OLDER VERSION (Monthly Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHsstdmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHsstdmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHsstdmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHsstdmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHsstdmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHsstdmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEssta14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEssta14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEssta14day/request", "", "public", "SST, Aqua MODIS, NPP, East US, Daytime and Nighttime (11 microns), 2002-2010 (14 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEssta14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEssta14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEssta14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEssta14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEssta14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEssta14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEssta8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEssta8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEssta8day/request", "", "public", "SST, Aqua MODIS, NPP, East US, Daytime and Nighttime (11 microns), 2002-2010 (8 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEssta8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEssta8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEssta8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEssta8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEssta8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEssta8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEssta1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEssta1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEssta1day/request", "", "public", "SST, Aqua MODIS, NPP, East US, Daytime and Nighttime (11 microns), 2002-2011 (1 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEssta1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEssta1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEssta1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEssta1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEssta1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEssta1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEssta3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEssta3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEssta3day/request", "", "public", "SST, Aqua MODIS, NPP, East US, Daytime and Nighttime (11 microns), 2002-2011 (3 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEssta3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEssta3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEssta3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEssta3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEssta3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEssta3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEsstamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEsstamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEsstamday/request", "", "public", "SST, Aqua MODIS, NPP, East US, Daytime and Nighttime (11 microns), 2002-2011 (Monthly Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEsstamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEsstamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEsstamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEsstamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEsstamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEsstamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsstd1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsstd1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGsstd1day/request", "", "public", "SST, Aqua MODIS, NPP, Gulf of Mexico, Daytime (11 microns), 2000-2012 (1 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGsstd1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGsstd1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGsstd1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGsstd1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGsstd1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGsstd1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsstd14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsstd14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGsstd14day/request", "", "public", "SST, Aqua MODIS, NPP, Gulf of Mexico, Daytime (11 microns), 2002-2012 (14 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGsstd14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGsstd14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGsstd14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGsstd14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGsstd14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGsstd14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsstd3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsstd3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGsstd3day/request", "", "public", "SST, Aqua MODIS, NPP, Gulf of Mexico, Daytime (11 microns), 2002-2012 (3 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGsstd3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGsstd3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGsstd3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGsstd3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGsstd3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGsstd3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsstd8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsstd8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGsstd8day/request", "", "public", "SST, Aqua MODIS, NPP, Gulf of Mexico, Daytime (11 microns), 2002-2012 (8 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGsstd8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGsstd8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGsstd8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGsstd8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGsstd8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGsstd8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsstdmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsstdmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGsstdmday/request", "", "public", "SST, Aqua MODIS, NPP, Gulf of Mexico, Daytime (11 microns), 2002-2012 (Monthly Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGsstdmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGsstdmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGsstdmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGsstdmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGsstdmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGsstdmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGssta1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGssta1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGssta1day/request", "", "public", "SST, Aqua MODIS, NPP, Gulf of Mexico, Daytime and Nighttime (11 microns), 2002-2012 (1 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGssta1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGssta1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGssta1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGssta1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGssta1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGssta1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGssta14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGssta14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGssta14day/request", "", "public", "SST, Aqua MODIS, NPP, Gulf of Mexico, Daytime and Nighttime (11 microns), 2002-2012 (14 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGssta14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGssta14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGssta14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGssta14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGssta14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGssta14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGssta3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGssta3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGssta3day/request", "", "public", "SST, Aqua MODIS, NPP, Gulf of Mexico, Daytime and Nighttime (11 microns), 2002-2012 (3 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGssta3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGssta3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGssta3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGssta3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGssta3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGssta3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGssta8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGssta8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGssta8day/request", "", "public", "SST, Aqua MODIS, NPP, Gulf of Mexico, Daytime and Nighttime (11 microns), 2002-2012 (8 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGssta8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGssta8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGssta8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGssta8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGssta8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGssta8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsstamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsstamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGsstamday/request", "", "public", "SST, Aqua MODIS, NPP, Gulf of Mexico, Daytime and Nighttime (11 microns), 2002-2012 (Monthly Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGsstamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGsstamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGsstamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGsstamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGsstamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGsstamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsstn1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsstn1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGsstn1day/request", "", "public", "SST, Aqua MODIS, NPP, Gulf of Mexico, Nighttime (11 microns), 2002-2012 (1 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGsstn1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGsstn1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGsstn1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_sstn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGsstn1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGsstn1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGsstn1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsstn14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsstn14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGsstn14day/request", "", "public", "SST, Aqua MODIS, NPP, Gulf of Mexico, Nighttime (11 microns), 2002-2012 (14 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGsstn14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGsstn14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGsstn14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_sstn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGsstn14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGsstn14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGsstn14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsstn3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsstn3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGsstn3day/request", "", "public", "SST, Aqua MODIS, NPP, Gulf of Mexico, Nighttime (11 microns), 2002-2012 (3 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGsstn3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGsstn3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGsstn3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_sstn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGsstn3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGsstn3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGsstn3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsstn8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsstn8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGsstn8day/request", "", "public", "SST, Aqua MODIS, NPP, Gulf of Mexico, Nighttime (11 microns), 2002-2012 (8 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGsstn8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGsstn8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGsstn8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_sstn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGsstn8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGsstn8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGsstn8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsstnmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsstnmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGsstnmday/request", "", "public", "SST, Aqua MODIS, NPP, Gulf of Mexico, Nighttime (11 microns), 2002-2012 (Monthly Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGsstnmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGsstnmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGsstnmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_sstn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGsstnmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGsstnmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGsstnmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsst41day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsst41day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGsst41day/request", "", "public", "SST, Aqua MODIS, NPP, Gulf of Mexico, Nighttime (4 microns), 2002-2012 (1 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGsst41day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGsst41day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGsst41day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_sst4_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGsst41day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGsst41day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGsst41day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsst414day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsst414day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGsst414day/request", "", "public", "SST, Aqua MODIS, NPP, Gulf of Mexico, Nighttime (4 microns), 2002-2012 (14 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGsst414day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGsst414day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGsst414day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_sst4_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGsst414day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGsst414day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGsst414day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsst43day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsst43day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGsst43day/request", "", "public", "SST, Aqua MODIS, NPP, Gulf of Mexico, Nighttime (4 microns), 2002-2012 (3 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGsst43day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGsst43day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGsst43day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_sst4_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGsst43day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGsst43day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGsst43day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsst48day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsst48day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGsst48day/request", "", "public", "SST, Aqua MODIS, NPP, Gulf of Mexico, Nighttime (4 microns), 2002-2012 (8 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGsst48day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGsst48day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGsst48day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_sst4_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGsst48day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGsst48day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGsst48day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsst4mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGsst4mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGsst4mday/request", "", "public", "SST, Aqua MODIS, NPP, Gulf of Mexico, Nighttime (4 microns), 2002-2012 (Monthly Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGsst4mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGsst4mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGsst4mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_sst4_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGsst4mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGsst4mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGsst4mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPsstd8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPsstd8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPsstd8day/request", "", "public", "SST, Aqua MODIS, NPP, Indonesia, Daytime, 2002-2012 (8 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPsstd8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPsstd8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPsstd8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPsstd8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPsstd8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPsstd8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPsstd1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPsstd1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPsstd1day/request", "", "public", "SST, Aqua MODIS, NPP, Indonesia, Daytime, 2002-2013 (1 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPsstd1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPsstd1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPsstd1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPsstd1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPsstd1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPsstd1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPsstd14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPsstd14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPsstd14day/request", "", "public", "SST, Aqua MODIS, NPP, Indonesia, Daytime, 2002-2013 (14 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPsstd14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPsstd14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPsstd14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPsstd14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPsstd14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPsstd14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPsstd3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPsstd3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPsstd3day/request", "", "public", "SST, Aqua MODIS, NPP, Indonesia, Daytime, 2002-2013 (3 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPsstd3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPsstd3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPsstd3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPsstd3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPsstd3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPsstd3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPsstdmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPsstdmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPsstdmday/request", "", "public", "SST, Aqua MODIS, NPP, Indonesia, Daytime, 2002-2013 (Monthly Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPsstdmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPsstdmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPsstdmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPsstdmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPsstdmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPsstdmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHsstn8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHsstn8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHsstn8day/request", "", "public", "SST, Aqua MODIS, NPP, Nighttime (11 microns), 2002-2013, DEPRECATED OLDER VERSION (8 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHsstn8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHsstn8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHsstn8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_sstn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHsstn8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHsstn8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHsstn8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHsstnmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHsstnmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHsstnmday/request", "", "public", "SST, Aqua MODIS, NPP, Nighttime (11 microns), 2002-2013, DEPRECATED OLDER VERSION (Monthly Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHsstnmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHsstnmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHsstnmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_sstn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHsstnmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHsstnmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHsstnmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHsst48day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHsst48day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHsst48day/request", "", "public", "SST, Aqua MODIS, NPP, Nighttime (4 microns), 2002-2013, DEPRECATED OLDER VERSION (8 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHsst48day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHsst48day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHsst48day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_sst4_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHsst48day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHsst48day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHsst48day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHsst4mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHsst4mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHsst4mday/request", "", "public", "SST, Aqua MODIS, NPP, Nighttime (4 microns), 2002-2013, DEPRECATED OLDER VERSION (Monthly Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHsst4mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHsst4mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHsst4mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_sst4_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHsst4mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHsst4mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHsst4mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHsst41day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHsst41day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHsst41day/request", "", "public", "SST, Aqua MODIS, NPP, Nighttime (4 microns), 2011-2012, DEPRECATED OLDER VERSION (1 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHsst41day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHsst41day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHsst41day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_sst4_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHsst41day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHsst41day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHsst41day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdBAsstamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdBAsstamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdBAsstamday/request", "", "public", "SST, Blended, Global, 2002-2013, EXPERIMENTAL (Monthly Composite)", "NOAA OceanWatch provides a blended sea surface temperature (SST) products derived from both microwave and infrared sensors carried on multiple platforms. The microwave instruments can measure ocean temperatures even in the presence of clouds, though the resolution is a bit coarse when considering features typical of the coastal environment. These are complemented by the relatively fine measurements of infrared sensors. The blended data are provided at moderate spatial resolution (0.1 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft, NOAA's Advanced Very High Resolution Radiometer, NOAA GOES Imager, and NASA's Moderate Resolution Imaging Spectrometer (MODIS). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdBAsstamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdBAsstamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdBAsstamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/BA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdBAsstamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdBAsstamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdBAsstamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdBAsstamday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdBAsstamday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdBAsstamday_LonPM180/request", "", "public", "SST, Blended, Global, 2002-2013, EXPERIMENTAL (Monthly Composite), Lon+/-180", "NOAA OceanWatch provides a blended sea surface temperature (SST) products derived from both microwave and infrared sensors carried on multiple platforms. The microwave instruments can measure ocean temperatures even in the presence of clouds, though the resolution is a bit coarse when considering features typical of the coastal environment. These are complemented by the relatively fine measurements of infrared sensors. The blended data are provided at moderate spatial resolution (0.1 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft, NOAA's Advanced Very High Resolution Radiometer, NOAA GOES Imager, and NASA's Moderate Resolution Imaging Spectrometer (MODIS). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdBAsstamday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdBAsstamday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdBAsstamday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/BA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdBAsstamday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdBAsstamday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdBAsstamday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdBAssta5day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdBAssta5day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdBAssta5day/request", "", "public", "SST, Blended, Global, 2002-2014, EXPERIMENTAL (5 Day Composite)", "NOAA OceanWatch provides a blended sea surface temperature (SST) products derived from both microwave and infrared sensors carried on multiple platforms. The microwave instruments can measure ocean temperatures even in the presence of clouds, though the resolution is a bit coarse when considering features typical of the coastal environment. These are complemented by the relatively fine measurements of infrared sensors. The blended data are provided at moderate spatial resolution (0.1 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft, NOAA's Advanced Very High Resolution Radiometer, NOAA GOES Imager, and NASA's Moderate Resolution Imaging Spectrometer (MODIS). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdBAssta5day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdBAssta5day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdBAssta5day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/BA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdBAssta5day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdBAssta5day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdBAssta5day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdBAssta5day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdBAssta5day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdBAssta5day_LonPM180/request", "", "public", "SST, Blended, Global, 2002-2014, EXPERIMENTAL (5 Day Composite), Lon+/-180", "NOAA OceanWatch provides a blended sea surface temperature (SST) products derived from both microwave and infrared sensors carried on multiple platforms. The microwave instruments can measure ocean temperatures even in the presence of clouds, though the resolution is a bit coarse when considering features typical of the coastal environment. These are complemented by the relatively fine measurements of infrared sensors. The blended data are provided at moderate spatial resolution (0.1 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft, NOAA's Advanced Very High Resolution Radiometer, NOAA GOES Imager, and NASA's Moderate Resolution Imaging Spectrometer (MODIS). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdBAssta5day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdBAssta5day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdBAssta5day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/BA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdBAssta5day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdBAssta5day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdBAssta5day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdBAssta8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdBAssta8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdBAssta8day/request", "", "public", "SST, Blended, Global, 2006-2014, EXPERIMENTAL (8 Day Composite)", "NOAA OceanWatch provides a blended sea surface temperature (SST) products derived from both microwave and infrared sensors carried on multiple platforms. The microwave instruments can measure ocean temperatures even in the presence of clouds, though the resolution is a bit coarse when considering features typical of the coastal environment. These are complemented by the relatively fine measurements of infrared sensors. The blended data are provided at moderate spatial resolution (0.1 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft, NOAA's Advanced Very High Resolution Radiometer, NOAA GOES Imager, and NASA's Moderate Resolution Imaging Spectrometer (MODIS). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdBAssta8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdBAssta8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdBAssta8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/BA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdBAssta8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdBAssta8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdBAssta8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdBAssta8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdBAssta8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdBAssta8day_LonPM180/request", "", "public", "SST, Blended, Global, 2006-2014, EXPERIMENTAL (8 Day Composite), Lon+/-180", "NOAA OceanWatch provides a blended sea surface temperature (SST) products derived from both microwave and infrared sensors carried on multiple platforms. The microwave instruments can measure ocean temperatures even in the presence of clouds, though the resolution is a bit coarse when considering features typical of the coastal environment. These are complemented by the relatively fine measurements of infrared sensors. The blended data are provided at moderate spatial resolution (0.1 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft, NOAA's Advanced Very High Resolution Radiometer, NOAA GOES Imager, and NASA's Moderate Resolution Imaging Spectrometer (MODIS). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdBAssta8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdBAssta8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdBAssta8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/BA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdBAssta8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdBAssta8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdBAssta8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOisst2AmsrAgg", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOisst2AmsrAgg.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOisst2AmsrAgg/request", "", "public", "SST, Daily Optimum Interpolation (OI), AMSR+AVHRR, Version 2, 2002-2011", "Reynolds, et al.(2007) Daily High-resolution Blended Analyses. Background information available at https://www.ncdc.noaa.gov/oisst. Climatology is based on 1971-2000 OI.v2 SST, Satellite data: AMSR Navy NOAA17 NOAA18 AVHRR, Ice data: NCEP ice.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Daily Sea Surface Temperature, degree_C)\nanom (Daily Sea Surface Temperature Anomalies, degree_C)\nerr (Estimated Error Standard Deviation of Analyzed_SST, degree_C)\nice (Sea Ice Concentration, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOisst2AmsrAgg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOisst2AmsrAgg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOisst2AmsrAgg/index.json", "https://www.ncdc.noaa.gov/oisst", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOisst2AmsrAgg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOisst2AmsrAgg&showErrors=false&email=", "NOAA NCEI", "ncdcOisst2AmsrAgg"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOisst2AmsrAgg_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOisst2AmsrAgg_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOisst2AmsrAgg_LonPM180/request", "", "public", "SST, Daily Optimum Interpolation (OI), AMSR+AVHRR, Version 2, 2002-2011, Lon+/-180", "Reynolds, et al.(2007) Daily High-resolution Blended Analyses. Background information available at https://www.ncdc.noaa.gov/oisst. Climatology is based on 1971-2000 OI.v2 SST, Satellite data: AMSR Navy NOAA17 NOAA18 AVHRR, Ice data: NCEP ice.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Daily Sea Surface Temperature, degree_C)\nanom (Daily Sea Surface Temperature Anomalies, degree_C)\nerr (Estimated Error Standard Deviation of Analyzed_SST, degree_C)\nice (Sea Ice Concentration, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOisst2AmsrAgg_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOisst2AmsrAgg_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOisst2AmsrAgg_LonPM180/index.json", "https://www.ncdc.noaa.gov/oisst", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOisst2AmsrAgg_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOisst2AmsrAgg_LonPM180&showErrors=false&email=", "NOAA NCEI", "ncdcOisst2AmsrAgg_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOisst2Agg", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOisst2Agg.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOisst2Agg/request", "", "public", "SST, Daily Optimum Interpolation (OI), AVHRR Only, Version 2, Final+Preliminary, 1981-present", "Reynolds, et al.(2007) Daily High-resolution Blended Analyses. This version of the dataset contains the final version of the data and the near-real-time preliminary data (from the last ~2 weeks). Background information is available at https://www.ncdc.noaa.gov/oisst. Climatology is based on 1971-2000 OI.v2 SST, Satellite data: Navy NOAA17 NOAA18 AVHRR, Ice data: GSFC ice.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Daily Sea Surface Temperature, degree_C)\nanom (Daily Sea Surface Temperature Anomalies, degree_C)\nerr (Estimated Error Standard Deviation of Analyzed_SST, degree_C)\nice (Sea Ice Concentration, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOisst2Agg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOisst2Agg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOisst2Agg/index.json", "https://www.ncdc.noaa.gov/oisst", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOisst2Agg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOisst2Agg&showErrors=false&email=", "NOAA NCEI", "ncdcOisst2Agg"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOisst2Agg_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOisst2Agg_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOisst2Agg_LonPM180/request", "", "public", "SST, Daily Optimum Interpolation (OI), AVHRR Only, Version 2, Final+Preliminary, 1981-present, Lon+/-180", "Reynolds, et al.(2007) Daily High-resolution Blended Analyses. This version of the dataset contains the final version of the data and the near-real-time preliminary data (from the last ~2 weeks). Background information is available at https://www.ncdc.noaa.gov/oisst. Climatology is based on 1971-2000 OI.v2 SST, Satellite data: Navy NOAA17 NOAA18 AVHRR, Ice data: GSFC ice.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Daily Sea Surface Temperature, degree_C)\nanom (Daily Sea Surface Temperature Anomalies, degree_C)\nerr (Estimated Error Standard Deviation of Analyzed_SST, degree_C)\nice (Sea Ice Concentration, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOisst2Agg_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOisst2Agg_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOisst2Agg_LonPM180/index.json", "https://www.ncdc.noaa.gov/oisst", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOisst2Agg_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOisst2Agg_LonPM180&showErrors=false&email=", "NOAA NCEI", "ncdcOisst2Agg_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdG1ssta1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdG1ssta1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdG1ssta1day/request", "", "public", "SST, GHRSST Blended, MW-IR-OI, Science Quality, Global, 2006-2011 (1 Day Composite)", "THIS DATASET WILL NOT BE UPDATED AFTER 2011-05-23. This dataset was terminated with the demise of the AMSR-E sensor on Aqua. \nAnalyzed Foundation, Microwave + InfraRed Optimally Interpolated, Science Quality, Global, Sea Surface Temperature data. The through-cloud capabilities of microwave radiometers provide a valuable picture of global sea surface temperature (SST). To utilize this, scientists at Remote Sensing Systems have calculated a daily, Optimally Interpolated (OI) SST product at quarter degree (~25 kilometer) resolution. This product is ideal for research activities in which a complete, daily SST map is more desirable than one with missing data due to orbital gaps or environmental conditions precluding SST retrieval. Improved global daily NRT SSTs should be useful for a wide range of scientific and operational activities. The addition of SST derived from Infrared (IR) measurements allows higher spatial resolution, and SST near land. However, IR input is less accurate than MW due to cloud contamination. Blending MW and IR enables greater coverage and higher accuracy than IR only SSTs, but current OI does not completely eliminate cloud contamination inherent to IR SSTs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalyzed_sst (Analyzed Sea Surface Temperature, degree_C)\nanalysis_error (Estimated Error Standard Deviation of analyzed_sst, degree_C)\nmask (Sea/Land/Lake/Ice Field Composite Mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdG1ssta1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdG1ssta1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdG1ssta1day/index.json", "http://www.remss.com/measurements/sea-surface-temperature/oisst-description/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdG1ssta1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdG1ssta1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdG1ssta1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGRssta1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGRssta1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGRssta1day/request", "", "public", "SST, GHRSST Blended, MW-IR-OI-RT, Near Real Time, Global, 2006-2012 (1 Day Composite)", "Analyzed Foundation, Microwave + InfraRed Optimally Interpolated, Near Real Time, Global, Sea Surface Temperature data. The through-cloud capabilities of microwave radiometers provide a valuable picture of global sea surface temperature (SST). To utilize this, scientists at Remote Sensing Systems have calculated a daily, Optimally Interpolated (OI) SST product at quarter degree (~25 kilometer) resolution. This product is ideal for research activities in which a complete, daily SST map is more desirable than one with missing data due to orbital gaps or environmental conditions precluding SST retrieval. Improved global daily NRT SSTs should be useful for a wide range of scientific and operational activities. The addition of SST derived from Infrared (IR) measurements allows higher spatial resolution, and SST near land. However, IR input is less accurate than MW due to cloud contamination. Blending MW and IR enables greater coverage and higher accuracy than IR only SSTs, but current OI does not completely eliminate cloud contamination inherent to IR SSTs. This is a near real time data set and is intended for use in operations applications. A higher-quality \"Science Quality\" data set is generally available about 10 days after the production of the real time version. It is recommended that the \"Science Quality\" data be used for scientific applications.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalyzed_sst (Analyzed Sea Surface Temperature, degree_C)\nanalysis_error (Estimated Error Standard Deviation of analyzed_sst, degree_C)\nmask (Sea/Land/Lake/Ice Field Composite Mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGRssta1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGRssta1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGRssta1day/index.json", "http://www.remss.com/measurements/sea-surface-temperature/oisst-description/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGRssta1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGRssta1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGRssta1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAssta1day/request", "", "public", "SST, GOES Imager, Day and Night, Western Hemisphere, 2000-present (1 Day Composite)", "NOAA CoastWatch provides SST data from the NOAA Geostationary Operational Environmental Satellites (GOES). Measurements are gathered by the GOES Imager, a multi-channel radiometer carried aboard the satellite. SST is available for hourly Imager measurements, or in composite images of various durations.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAssta1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAssta1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAssta1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAssta1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAssta1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAssta1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAssta1day_LonPM180/request", "", "public", "SST, GOES Imager, Day and Night, Western Hemisphere, 2000-present (1 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from the NOAA Geostationary Operational Environmental Satellites (GOES). Measurements are gathered by the GOES Imager, a multi-channel radiometer carried aboard the satellite. SST is available for hourly Imager measurements, or in composite images of various durations.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAssta1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAssta1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAssta1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAssta1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAssta1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAssta1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAssta3day/request", "", "public", "SST, GOES Imager, Day and Night, Western Hemisphere, 2000-present (3 Day Composite)", "NOAA CoastWatch provides SST data from the NOAA Geostationary Operational Environmental Satellites (GOES). Measurements are gathered by the GOES Imager, a multi-channel radiometer carried aboard the satellite. SST is available for hourly Imager measurements, or in composite images of various durations.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAssta3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAssta3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAssta3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAssta3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAssta3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAssta3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAssta3day_LonPM180/request", "", "public", "SST, GOES Imager, Day and Night, Western Hemisphere, 2000-present (3 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from the NOAA Geostationary Operational Environmental Satellites (GOES). Measurements are gathered by the GOES Imager, a multi-channel radiometer carried aboard the satellite. SST is available for hourly Imager measurements, or in composite images of various durations.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAssta3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAssta3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAssta3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAssta3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAssta3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAssta3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAssta14day/request", "", "public", "SST, GOES Imager, Day and Night, Western Hemisphere, 2001-present (14 Day Composite)", "NOAA CoastWatch provides SST data from the NOAA Geostationary Operational Environmental Satellites (GOES). Measurements are gathered by the GOES Imager, a multi-channel radiometer carried aboard the satellite. SST is available for hourly Imager measurements, or in composite images of various durations.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAssta14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAssta14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAssta14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAssta14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAssta14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAssta14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAssta14day_LonPM180/request", "", "public", "SST, GOES Imager, Day and Night, Western Hemisphere, 2001-present (14 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from the NOAA Geostationary Operational Environmental Satellites (GOES). Measurements are gathered by the GOES Imager, a multi-channel radiometer carried aboard the satellite. SST is available for hourly Imager measurements, or in composite images of various durations.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAssta14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAssta14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAssta14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAssta14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAssta14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAssta14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAssta8day/request", "", "public", "SST, GOES Imager, Day and Night, Western Hemisphere, 2001-present (8 Day Composite)", "NOAA CoastWatch provides SST data from the NOAA Geostationary Operational Environmental Satellites (GOES). Measurements are gathered by the GOES Imager, a multi-channel radiometer carried aboard the satellite. SST is available for hourly Imager measurements, or in composite images of various durations.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAssta8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAssta8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAssta8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAssta8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAssta8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAssta8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAssta8day_LonPM180/request", "", "public", "SST, GOES Imager, Day and Night, Western Hemisphere, 2001-present (8 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from the NOAA Geostationary Operational Environmental Satellites (GOES). Measurements are gathered by the GOES Imager, a multi-channel radiometer carried aboard the satellite. SST is available for hourly Imager measurements, or in composite images of various durations.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAssta8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAssta8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAssta8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAssta8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAssta8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAssta8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAsstamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAsstamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAsstamday/request", "", "public", "SST, GOES Imager, Day and Night, Western Hemisphere, 2001-present (Monthly Composite)", "NOAA CoastWatch provides SST data from the NOAA Geostationary Operational Environmental Satellites (GOES). Measurements are gathered by the GOES Imager, a multi-channel radiometer carried aboard the satellite. SST is available for hourly Imager measurements, or in composite images of various durations.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAsstamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAsstamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAsstamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAsstamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAsstamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAsstamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAsstamday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAsstamday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAsstamday_LonPM180/request", "", "public", "SST, GOES Imager, Day and Night, Western Hemisphere, 2001-present (Monthly Composite), Lon+/-180", "NOAA CoastWatch provides SST data from the NOAA Geostationary Operational Environmental Satellites (GOES). Measurements are gathered by the GOES Imager, a multi-channel radiometer carried aboard the satellite. SST is available for hourly Imager measurements, or in composite images of various durations.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAsstamday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAsstamday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAsstamday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAsstamday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAsstamday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAsstamday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta5day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta5day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAssta5day/request", "", "public", "SST, GOES Imager, Day and Night, Western Hemisphere, 2006-present (5 Day Composite)", "NOAA CoastWatch provides SST data from the NOAA Geostationary Operational Environmental Satellites (GOES). Measurements are gathered by the GOES Imager, a multi-channel radiometer carried aboard the satellite. SST is available for hourly Imager measurements, or in composite images of various durations.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAssta5day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAssta5day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAssta5day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAssta5day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAssta5day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAssta5day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta5day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta5day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAssta5day_LonPM180/request", "", "public", "SST, GOES Imager, Day and Night, Western Hemisphere, 2006-present (5 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from the NOAA Geostationary Operational Environmental Satellites (GOES). Measurements are gathered by the GOES Imager, a multi-channel radiometer carried aboard the satellite. SST is available for hourly Imager measurements, or in composite images of various durations.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAssta5day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAssta5day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAssta5day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAssta5day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAssta5day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAssta5day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAsstahday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAsstahday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAsstahday/request", "", "public", "SST, GOES Imager, Day and Night, Western Hemisphere, 2006-present (Hourly)", "NOAA CoastWatch provides SST data from the NOAA Geostationary Operational Environmental Satellites (GOES). Measurements are gathered by the GOES Imager, a multi-channel radiometer carried aboard the satellite. SST is available for hourly Imager measurements, or in composite images of various durations.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAsstahday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAsstahday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAsstahday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAsstahday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAsstahday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAsstahday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAsstahday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAsstahday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAsstahday_LonPM180/request", "", "public", "SST, GOES Imager, Day and Night, Western Hemisphere, 2006-present (Hourly), Lon+/-180", "NOAA CoastWatch provides SST data from the NOAA Geostationary Operational Environmental Satellites (GOES). Measurements are gathered by the GOES Imager, a multi-channel radiometer carried aboard the satellite. SST is available for hourly Imager measurements, or in composite images of various durations.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAsstahday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAsstahday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAsstahday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAsstahday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAsstahday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAsstahday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATssta1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATssta1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATssta1day/request", "", "public", "SST, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Day and Night, 2004-present (1 Day Composite)", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATssta1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATssta1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATssta1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATssta1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATssta1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATssta1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATssta1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATssta1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATssta1day_LonPM180/request", "", "public", "SST, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Day and Night, 2004-present (1 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATssta1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATssta1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATssta1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATssta1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATssta1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATssta1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATssta3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATssta3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATssta3day/request", "", "public", "SST, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Day and Night, 2004-present (3 Day Composite)", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATssta3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATssta3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATssta3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATssta3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATssta3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATssta3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATssta3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATssta3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATssta3day_LonPM180/request", "", "public", "SST, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Day and Night, 2004-present (3 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATssta3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATssta3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATssta3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATssta3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATssta3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATssta3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATssta8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATssta8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATssta8day/request", "", "public", "SST, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Day and Night, 2004-present (8 Day Composite)", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATssta8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATssta8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATssta8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATssta8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATssta8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATssta8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATssta8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATssta8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATssta8day_LonPM180/request", "", "public", "SST, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Day and Night, 2004-present (8 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATssta8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATssta8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATssta8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATssta8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATssta8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATssta8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATssta14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATssta14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATssta14day/request", "", "public", "SST, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Day and Night, 2005-present (14 Day Composite)", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATssta14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATssta14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATssta14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATssta14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATssta14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATssta14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATssta14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATssta14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATssta14day_LonPM180/request", "", "public", "SST, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Day and Night, 2005-present (14 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATssta14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATssta14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATssta14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATssta14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATssta14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATssta14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATsstamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATsstamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATsstamday/request", "", "public", "SST, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Day and Night, 2007-present (Monthly Composite)", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATsstamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATsstamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATsstamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATsstamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATsstamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATsstamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATsstamday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATsstamday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATsstamday_LonPM180/request", "", "public", "SST, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Day and Night, 2007-present (Monthly Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATsstamday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATsstamday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATsstamday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATsstamday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATsstamday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATsstamday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATsstdhday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATsstdhday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATsstdhday/request", "", "public", "SST, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Daytime, 2004-present (Single Scan)", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATsstdhday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATsstdhday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATsstdhday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATsstdhday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATsstdhday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATsstdhday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATsstdhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATsstdhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATsstdhday_LonPM180/request", "", "public", "SST, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Daytime, 2004-present (Single Scan), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATsstdhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATsstdhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATsstdhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATsstdhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATsstdhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATsstdhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATsstnhday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATsstnhday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATsstnhday/request", "", "public", "SST, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Nighttime, 2004-present (Single Scan)", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATsstnhday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATsstnhday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATsstnhday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_sstn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATsstnhday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATsstnhday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATsstnhday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATsstnhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATsstnhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATsstnhday_LonPM180/request", "", "public", "SST, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Nighttime, 2004-present (Single Scan), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATsstnhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATsstnhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATsstnhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_sstn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATsstnhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATsstnhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATsstnhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAOsstdhday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAOsstdhday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAOsstdhday/request", "", "public", "SST, NOAA/OSU POES AVHRR, LAC, West US, Daytime, 1992-2012 (Hourly)", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.01 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAOsstdhday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAOsstdhday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAOsstdhday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AO_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAOsstdhday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAOsstdhday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAOsstdhday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAOsstdhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAOsstdhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAOsstdhday_LonPM180/request", "", "public", "SST, NOAA/OSU POES AVHRR, LAC, West US, Daytime, 1992-2012 (Hourly), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.01 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAOsstdhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAOsstdhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAOsstdhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AO_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAOsstdhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAOsstdhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAOsstdhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAOsstnhday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAOsstnhday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAOsstnhday/request", "", "public", "SST, NOAA/OSU POES AVHRR, LAC, West US, Nighttime, 1992-2012 (Hourly)", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAOsstnhday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAOsstnhday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAOsstnhday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AO_sstn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAOsstnhday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAOsstnhday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAOsstnhday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAOsstnhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAOsstnhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAOsstnhday_LonPM180/request", "", "public", "SST, NOAA/OSU POES AVHRR, LAC, West US, Nighttime, 1992-2012 (Hourly), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAOsstnhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAOsstnhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAOsstnhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AO_sstn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAOsstnhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAOsstnhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAOsstnhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2ssta8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2ssta8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPH2ssta8day/request", "", "public", "SST, Pathfinder Ver 5.2 (L3C), Day and Night, Global, 0.0417\u00b0, 1981-2006, Science Quality (8 Day Composite)", "This dataset contains sea surface temperature (SST) data produced as part of the Advanced Very High Resolution Radiometer (AVHRR) Pathfinder SST Project, created using Version 5.2 of the Pathfinder algorithm and the dataset. Multi-day composites and composites of day and night datasets were generated by the Environmental Research Division (NOAA/NMFS/SWFSC/ERD).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (Sea Surface Skin Temperature, degree_C)\nsea_ice_fraction (1)\nwind_speed (10m Wind Speed, m s-1)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPH2ssta8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPH2ssta8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPH2ssta8day/index.json", "https://pathfinder.nodc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPH2ssta8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPH2ssta8day&showErrors=false&email=", "NOAA NCEI", "erdPH2ssta8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2ssta1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2ssta1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPH2ssta1day/request", "", "public", "SST, Pathfinder Ver 5.2 (L3C), Day and Night, Global, 0.0417\u00b0, 1981-2012, Science Quality (1 Day Composite)", "This dataset contains sea surface temperature (SST) data produced as part of the Advanced Very High Resolution Radiometer (AVHRR) Pathfinder SST Project, created using Version 5.2 of the Pathfinder algorithm and the dataset. Multi-day composites and composites of day and night datasets were generated by the Environmental Research Division (NOAA/NMFS/SWFSC/ERD).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (Sea Surface Skin Temperature, degree_C)\nsea_ice_fraction (1)\nwind_speed (10m Wind Speed, m s-1)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPH2ssta1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPH2ssta1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPH2ssta1day/index.json", "https://pathfinder.nodc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPH2ssta1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPH2ssta1day&showErrors=false&email=", "NOAA NCEI", "erdPH2ssta1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2sstamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2sstamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPH2sstamday/request", "", "public", "SST, Pathfinder Ver 5.2 (L3C), Day and Night, Global, 0.0417\u00b0, 1981-2012, Science Quality (Monthly Composite)", "This dataset contains sea surface temperature (SST) data produced as part of the Advanced Very High Resolution Radiometer (AVHRR) Pathfinder SST Project, created using Version 5.2 of the Pathfinder algorithm and the dataset. Multi-day composites and composites of day and night datasets were generated by the Environmental Research Division (NOAA/NMFS/SWFSC/ERD).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (Sea Surface Skin Temperature, degree_C)\nsea_ice_fraction (1)\nwind_speed (10m Wind Speed, m s-1)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPH2sstamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPH2sstamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPH2sstamday/index.json", "https://pathfinder.nodc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPH2sstamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPH2sstamday&showErrors=false&email=", "NOAA NCEI", "erdPH2sstamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcPH2sstd1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcPH2sstd1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcPH2sstd1day/request", "", "public", "SST, Pathfinder Ver 5.2 (L3C), Day, Global, 0.0417\u00b0, 1981-2012, Science Quality (1 Day Composite)", "Daytime measurements from the Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n \n2014-02-11 Files downloaded from https://data.nodc.noaa.gov/pathfinder/Version5.2 to NOAA NMFS SWFSC ERD by bob.simons@noaa.gov . Aggregated with reference times from the dates in the file names. Removed other, misleading time values from the file names and the data files. Removed empty sses_bias and sses_standard_deviation variables. Removed aerosol_dynamic_indicator because of incorrect add_offset and scale_factor in files from 1981 through 2000.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of Sea Surface Skin Temperature, degree_C)\ndt_analysis (Deviation from Last SST Analysis (NCDC Daily OI), degree_C)\nwind_speed (10m Wind Speed, m s-1)\nsea_ice_fraction (1)\nquality_level (SST Measurement Quality)\npathfinder_quality_level (Pathfinder SST Quality Flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPH2sstd1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPH2sstd1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPH2sstd1day/index.json", "https://www.nodc.noaa.gov/SatelliteData/pathfinder4km/", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPH2sstd1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPH2sstd1day&showErrors=false&email=", "NOAA NCEI", "nodcPH2sstd1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2sstd8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2sstd8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPH2sstd8day/request", "", "public", "SST, Pathfinder Ver 5.2 (L3C), Day, Global, 0.0417\u00b0, 1981-2012, Science Quality (8 Day Composite)", "This dataset contains sea surface temperature (SST) data produced as part of the Advanced Very High Resolution Radiometer (AVHRR) Pathfinder SST Project, created using Version 5.2 of the Pathfinder algorithm and the dataset. Multi-day composites and composites of day and night datasets were generated by the Environmental Research Division (NOAA/NMFS/SWFSC/ERD).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (Sea Surface Skin Temperature, degree_C)\nsea_ice_fraction (1)\nwind_speed (10m Wind Speed, m s-1)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPH2sstd8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPH2sstd8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPH2sstd8day/index.json", "https://pathfinder.nodc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPH2sstd8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPH2sstd8day&showErrors=false&email=", "NOAA NCEI", "erdPH2sstd8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2sstdmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2sstdmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPH2sstdmday/request", "", "public", "SST, Pathfinder Ver 5.2 (L3C), Day, Global, 0.0417\u00b0, 1981-2012, Science Quality (Monthly Composite)", "This dataset contains sea surface temperature (SST) data produced as part of the Advanced Very High Resolution Radiometer (AVHRR) Pathfinder SST Project, created using Version 5.2 of the Pathfinder algorithm and the dataset. Multi-day composites and composites of day and night datasets were generated by the Environmental Research Division (NOAA/NMFS/SWFSC/ERD).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (Sea Surface Skin Temperature, degree_C)\nsea_ice_fraction (1)\nwind_speed (10m Wind Speed, m s-1)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPH2sstdmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPH2sstdmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPH2sstdmday/index.json", "https://pathfinder.nodc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPH2sstdmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPH2sstdmday&showErrors=false&email=", "NOAA NCEI", "erdPH2sstdmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcPH2sstn1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcPH2sstn1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcPH2sstn1day/request", "", "public", "SST, Pathfinder Ver 5.2 (L3C), Night, Global, 0.0417\u00b0, 1981-2012, Science Quality (1 Day Composite)", "Nighttime measurements from the Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n \n2014-02-11 Files downloaded from https://data.nodc.noaa.gov/pathfinder/Version5.2 to NOAA NMFS SWFSC ERD by bob.simons@noaa.gov . Aggregated with reference times from the dates in the file names. Removed other, misleading time values from the file names and the data files. Removed empty sses_bias and sses_standard_deviation variables. Fixed the incorrect add_offset and scale_factor for aerosol_dynamic_indicator in file from 1981 through 2000.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of Sea Surface Skin Temperature, degree_C)\ndt_analysis (Deviation from Last SST Analysis (NCDC Daily OI), degree_C)\nwind_speed (10m Wind Speed, m s-1)\nsea_ice_fraction (1)\nquality_level (SST Measurement Quality)\npathfinder_quality_level (Pathfinder SST Quality Flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPH2sstn1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPH2sstn1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPH2sstn1day/index.json", "https://www.nodc.noaa.gov/SatelliteData/pathfinder4km/", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPH2sstn1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPH2sstn1day&showErrors=false&email=", "NOAA NCEI", "nodcPH2sstn1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2sstn8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2sstn8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPH2sstn8day/request", "", "public", "SST, Pathfinder Ver 5.2 (L3C), Night, Global, 0.0417\u00b0, 1981-2012, Science Quality (8 Day Composite)", "This dataset contains sea surface temperature (SST) data produced as part of the Advanced Very High Resolution Radiometer (AVHRR) Pathfinder SST Project, created using Version 5.2 of the Pathfinder algorithm and the dataset. Multi-day composites and composites of day and night datasets were generated by the Environmental Research Division (NOAA/NMFS/SWFSC/ERD).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (Sea Surface Skin Temperature, degree_C)\nsea_ice_fraction (1)\nwind_speed (10m Wind Speed, m s-1)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPH2sstn8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPH2sstn8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPH2sstn8day/index.json", "https://pathfinder.nodc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPH2sstn8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPH2sstn8day&showErrors=false&email=", "NOAA NCEI", "erdPH2sstn8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2sstnmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2sstnmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPH2sstnmday/request", "", "public", "SST, Pathfinder Ver 5.2 (L3C), Night, Global, 0.0417\u00b0, 1981-2012, Science Quality (Monthly Composite)", "This dataset contains sea surface temperature (SST) data produced as part of the Advanced Very High Resolution Radiometer (AVHRR) Pathfinder SST Project, created using Version 5.2 of the Pathfinder algorithm and the dataset. Multi-day composites and composites of day and night datasets were generated by the Environmental Research Division (NOAA/NMFS/SWFSC/ERD).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (Sea Surface Skin Temperature, degree_C)\nsea_ice_fraction (1)\nwind_speed (10m Wind Speed, m s-1)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPH2sstnmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPH2sstnmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPH2sstnmday/index.json", "https://pathfinder.nodc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPH2sstnmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPH2sstnmday&showErrors=false&email=", "NOAA NCEI", "erdPH2sstnmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGsstamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGsstamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGsstamday/request", "", "public", "SST, POES AVHRR, GAC, Global, Day and Night, 2003-2016 (Monthly Composite)", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGsstamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGsstamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGsstamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGsstamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGsstamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGsstamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGsstamday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGsstamday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGsstamday_LonPM180/request", "", "public", "SST, POES AVHRR, GAC, Global, Day and Night, 2003-2016 (Monthly Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGsstamday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGsstamday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGsstamday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGsstamday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGsstamday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGsstamday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGssta1day/request", "", "public", "SST, POES AVHRR, GAC, Global, Day and Night, 2006-2016 (1 Day Composite)", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGssta1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGssta1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGssta1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGssta1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGssta1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGssta1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGssta1day_LonPM180/request", "", "public", "SST, POES AVHRR, GAC, Global, Day and Night, 2006-2016 (1 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGssta1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGssta1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGssta1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGssta1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGssta1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGssta1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGssta14day/request", "", "public", "SST, POES AVHRR, GAC, Global, Day and Night, 2006-2016 (14 Day Composite)", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGssta14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGssta14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGssta14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGssta14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGssta14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGssta14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGssta14day_LonPM180/request", "", "public", "SST, POES AVHRR, GAC, Global, Day and Night, 2006-2016 (14 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGssta14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGssta14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGssta14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGssta14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGssta14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGssta14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGssta3day/request", "", "public", "SST, POES AVHRR, GAC, Global, Day and Night, 2006-2016 (3 Day Composite)", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGssta3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGssta3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGssta3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGssta3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGssta3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGssta3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGssta3day_LonPM180/request", "", "public", "SST, POES AVHRR, GAC, Global, Day and Night, 2006-2016 (3 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGssta3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGssta3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGssta3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGssta3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGssta3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGssta3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta5day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta5day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGssta5day/request", "", "public", "SST, POES AVHRR, GAC, Global, Day and Night, 2006-2016 (5 Day Composite)", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGssta5day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGssta5day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGssta5day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGssta5day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGssta5day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGssta5day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta5day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta5day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGssta5day_LonPM180/request", "", "public", "SST, POES AVHRR, GAC, Global, Day and Night, 2006-2016 (5 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGssta5day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGssta5day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGssta5day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGssta5day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGssta5day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGssta5day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGssta8day/request", "", "public", "SST, POES AVHRR, GAC, Global, Day and Night, 2006-2016 (8 Day Composite)", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGssta8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGssta8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGssta8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGssta8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGssta8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGssta8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGssta8day_LonPM180/request", "", "public", "SST, POES AVHRR, GAC, Global, Day and Night, 2006-2016 (8 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGssta8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGssta8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGssta8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGssta8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGssta8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGssta8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKsstahday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKsstahday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKsstahday/request", "", "public", "SST, POES AVHRR, LAC, Alaska, Day and Night, 2005-2008 (Hourly)", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKsstahday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKsstahday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKsstahday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKsstahday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKsstahday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKsstahday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKsstahday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKsstahday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKsstahday_LonPM180/request", "", "public", "SST, POES AVHRR, LAC, Alaska, Day and Night, 2005-2008 (Hourly), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKsstahday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKsstahday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKsstahday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKsstahday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKsstahday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKsstahday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKsstamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKsstamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKsstamday/request", "", "public", "SST, POES AVHRR, LAC, Alaska, Day and Night, 2006-2007 (Monthly Composite)", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKsstamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKsstamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKsstamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKsstamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKsstamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKsstamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKsstamday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKsstamday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKsstamday_LonPM180/request", "", "public", "SST, POES AVHRR, LAC, Alaska, Day and Night, 2006-2007 (Monthly Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKsstamday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKsstamday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKsstamday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKsstamday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKsstamday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKsstamday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKssta1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKssta1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKssta1day/request", "", "public", "SST, POES AVHRR, LAC, Alaska, Day and Night, 2006-2008 (1 Day Composite)", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKssta1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKssta1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKssta1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKssta1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKssta1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKssta1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKssta1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKssta1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKssta1day_LonPM180/request", "", "public", "SST, POES AVHRR, LAC, Alaska, Day and Night, 2006-2008 (1 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKssta1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKssta1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKssta1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKssta1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKssta1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKssta1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKssta14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKssta14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKssta14day/request", "", "public", "SST, POES AVHRR, LAC, Alaska, Day and Night, 2006-2008 (14 Day Composite)", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKssta14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKssta14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKssta14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKssta14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKssta14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKssta14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKssta14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKssta14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKssta14day_LonPM180/request", "", "public", "SST, POES AVHRR, LAC, Alaska, Day and Night, 2006-2008 (14 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKssta14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKssta14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKssta14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKssta14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKssta14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKssta14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKssta3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKssta3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKssta3day/request", "", "public", "SST, POES AVHRR, LAC, Alaska, Day and Night, 2006-2008 (3 Day Composite)", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKssta3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKssta3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKssta3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKssta3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKssta3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKssta3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKssta3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKssta3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKssta3day_LonPM180/request", "", "public", "SST, POES AVHRR, LAC, Alaska, Day and Night, 2006-2008 (3 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKssta3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKssta3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKssta3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKssta3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKssta3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKssta3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKssta8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKssta8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKssta8day/request", "", "public", "SST, POES AVHRR, LAC, Alaska, Day and Night, 2006-2008 (8 Day Composite)", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKssta8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKssta8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKssta8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKssta8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKssta8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKssta8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKssta8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKssta8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKssta8day_LonPM180/request", "", "public", "SST, POES AVHRR, LAC, Alaska, Day and Night, 2006-2008 (8 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKssta8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKssta8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKssta8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKssta8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKssta8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKssta8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKsstdhday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKsstdhday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKsstdhday/request", "", "public", "SST, POES AVHRR, LAC, Alaska, Daytime, 2005-2008 (Hourly)", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKsstdhday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKsstdhday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKsstdhday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKsstdhday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKsstdhday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKsstdhday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKsstdhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKsstdhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKsstdhday_LonPM180/request", "", "public", "SST, POES AVHRR, LAC, Alaska, Daytime, 2005-2008 (Hourly), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKsstdhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKsstdhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKsstdhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKsstdhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKsstdhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKsstdhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsstd8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsstd8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTsstd8day/request", "", "public", "SST, Terra MODIS, NPP, Global, Daytime (11 microns), 2000-2013, Science Quality (8 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTsstd8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTsstd8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTsstd8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTsstd8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTsstd8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTsstd8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsstd8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsstd8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTsstd8day_LonPM180/request", "", "public", "SST, Terra MODIS, NPP, Global, Daytime (11 microns), 2000-2013, Science Quality (8 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTsstd8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTsstd8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTsstd8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTsstd8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTsstd8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTsstd8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsstdmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsstdmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTsstdmday/request", "", "public", "SST, Terra MODIS, NPP, Global, Daytime (11 microns), 2000-2013, Science Quality (Monthly Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTsstdmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTsstdmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTsstdmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTsstdmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTsstdmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTsstdmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsstdmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsstdmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTsstdmday_LonPM180/request", "", "public", "SST, Terra MODIS, NPP, Global, Daytime (11 microns), 2000-2013, Science Quality (Monthly Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTsstdmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTsstdmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTsstdmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTsstdmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTsstdmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTsstdmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsstn8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsstn8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTsstn8day/request", "", "public", "SST, Terra MODIS, NPP, Global, Nighttime (11 microns), 2000-2013, Science Quality (8 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTsstn8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTsstn8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTsstn8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_sstn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTsstn8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTsstn8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTsstn8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsstn8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsstn8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTsstn8day_LonPM180/request", "", "public", "SST, Terra MODIS, NPP, Global, Nighttime (11 microns), 2000-2013, Science Quality (8 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTsstn8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTsstn8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTsstn8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_sstn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTsstn8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTsstn8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTsstn8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsstnmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsstnmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTsstnmday/request", "", "public", "SST, Terra MODIS, NPP, Global, Nighttime (11 microns), 2000-2013, Science Quality (Monthly Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTsstnmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTsstnmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTsstnmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_sstn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTsstnmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTsstnmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTsstnmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsstnmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsstnmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTsstnmday_LonPM180/request", "", "public", "SST, Terra MODIS, NPP, Global, Nighttime (11 microns), 2000-2013, Science Quality (Monthly Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTsstnmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTsstnmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTsstnmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_sstn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTsstnmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTsstnmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTsstnmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsst41day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsst41day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTsst41day/request", "", "public", "SST, Terra MODIS, NPP, Global, Nighttime (4 microns), 2000-2011, Science Quality (1 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTsst41day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTsst41day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTsst41day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_sst4_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTsst41day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTsst41day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTsst41day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsst41day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsst41day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTsst41day_LonPM180/request", "", "public", "SST, Terra MODIS, NPP, Global, Nighttime (4 microns), 2000-2011, Science Quality (1 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTsst41day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTsst41day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTsst41day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_sst4_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTsst41day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTsst41day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTsst41day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsst48day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsst48day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTsst48day/request", "", "public", "SST, Terra MODIS, NPP, Global, Nighttime (4 microns), 2000-2013, Science Quality (8 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTsst48day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTsst48day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTsst48day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_sst4_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTsst48day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTsst48day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTsst48day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsst48day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsst48day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTsst48day_LonPM180/request", "", "public", "SST, Terra MODIS, NPP, Global, Nighttime (4 microns), 2000-2013, Science Quality (8 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTsst48day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTsst48day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTsst48day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_sst4_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTsst48day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTsst48day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTsst48day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsst4mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsst4mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTsst4mday/request", "", "public", "SST, Terra MODIS, NPP, Global, Nighttime (4 microns), 2000-2013, Science Quality (Monthly Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTsst4mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTsst4mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTsst4mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_sst4_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTsst4mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTsst4mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTsst4mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsst4mday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsst4mday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTsst4mday_LonPM180/request", "", "public", "SST, Terra MODIS, NPP, Global, Nighttime (4 microns), 2000-2013, Science Quality (Monthly Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTsst4mday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTsst4mday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTsst4mday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_sst4_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTsst4mday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTsst4mday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTsst4mday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsstd1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsstd1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTGsstd1day/request", "", "public", "SST, Terra MODIS, NPP, Gulf of Mexico, Daytime (11 microns), 2000-2012 (1 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTGsstd1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTGsstd1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTGsstd1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TG_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTGsstd1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTGsstd1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTGsstd1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsstd14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsstd14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTGsstd14day/request", "", "public", "SST, Terra MODIS, NPP, Gulf of Mexico, Daytime (11 microns), 2000-2012 (14 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTGsstd14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTGsstd14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTGsstd14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TG_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTGsstd14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTGsstd14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTGsstd14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsstd3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsstd3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTGsstd3day/request", "", "public", "SST, Terra MODIS, NPP, Gulf of Mexico, Daytime (11 microns), 2000-2012 (3 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTGsstd3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTGsstd3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTGsstd3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TG_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTGsstd3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTGsstd3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTGsstd3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsstd8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsstd8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTGsstd8day/request", "", "public", "SST, Terra MODIS, NPP, Gulf of Mexico, Daytime (11 microns), 2000-2012 (8 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTGsstd8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTGsstd8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTGsstd8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TG_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTGsstd8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTGsstd8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTGsstd8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsstdmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsstdmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTGsstdmday/request", "", "public", "SST, Terra MODIS, NPP, Gulf of Mexico, Daytime (11 microns), 2000-2012 (Monthly Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTGsstdmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTGsstdmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTGsstdmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TG_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTGsstdmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTGsstdmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTGsstdmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGssta1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGssta1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTGssta1day/request", "", "public", "SST, Terra MODIS, NPP, Gulf of Mexico, Daytime and Nighttime (11 microns), 2000-2012 (1 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTGssta1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTGssta1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTGssta1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTGssta1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTGssta1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTGssta1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGssta14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGssta14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTGssta14day/request", "", "public", "SST, Terra MODIS, NPP, Gulf of Mexico, Daytime and Nighttime (11 microns), 2000-2012 (14 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTGssta14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTGssta14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTGssta14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTGssta14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTGssta14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTGssta14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGssta3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGssta3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTGssta3day/request", "", "public", "SST, Terra MODIS, NPP, Gulf of Mexico, Daytime and Nighttime (11 microns), 2000-2012 (3 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTGssta3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTGssta3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTGssta3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTGssta3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTGssta3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTGssta3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGssta8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGssta8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTGssta8day/request", "", "public", "SST, Terra MODIS, NPP, Gulf of Mexico, Daytime and Nighttime (11 microns), 2000-2012 (8 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTGssta8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTGssta8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTGssta8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTGssta8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTGssta8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTGssta8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsstamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsstamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTGsstamday/request", "", "public", "SST, Terra MODIS, NPP, Gulf of Mexico, Daytime and Nighttime (11 microns), 2000-2012 (Monthly Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTGsstamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTGsstamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTGsstamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTGsstamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTGsstamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTGsstamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsstn1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsstn1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTGsstn1day/request", "", "public", "SST, Terra MODIS, NPP, Gulf of Mexico, Nighttime (11 microns), 2000-2012 (1 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTGsstn1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTGsstn1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTGsstn1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TG_sstn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTGsstn1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTGsstn1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTGsstn1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsstn14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsstn14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTGsstn14day/request", "", "public", "SST, Terra MODIS, NPP, Gulf of Mexico, Nighttime (11 microns), 2000-2012 (14 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTGsstn14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTGsstn14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTGsstn14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TG_sstn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTGsstn14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTGsstn14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTGsstn14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsstn3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsstn3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTGsstn3day/request", "", "public", "SST, Terra MODIS, NPP, Gulf of Mexico, Nighttime (11 microns), 2000-2012 (3 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTGsstn3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTGsstn3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTGsstn3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TG_sstn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTGsstn3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTGsstn3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTGsstn3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsstn8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsstn8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTGsstn8day/request", "", "public", "SST, Terra MODIS, NPP, Gulf of Mexico, Nighttime (11 microns), 2000-2012 (8 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTGsstn8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTGsstn8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTGsstn8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TG_sstn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTGsstn8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTGsstn8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTGsstn8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsstnmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsstnmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTGsstnmday/request", "", "public", "SST, Terra MODIS, NPP, Gulf of Mexico, Nighttime (11 microns), 2000-2012 (Monthly Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTGsstnmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTGsstnmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTGsstnmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TG_sstn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTGsstnmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTGsstnmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTGsstnmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsst41day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsst41day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTGsst41day/request", "", "public", "SST, Terra MODIS, NPP, Gulf of Mexico, Nighttime (4 microns), 2000-2012 (1 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTGsst41day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTGsst41day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTGsst41day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TG_sst4_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTGsst41day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTGsst41day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTGsst41day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsst414day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsst414day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTGsst414day/request", "", "public", "SST, Terra MODIS, NPP, Gulf of Mexico, Nighttime (4 microns), 2000-2012 (14 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTGsst414day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTGsst414day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTGsst414day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TG_sst4_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTGsst414day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTGsst414day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTGsst414day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsst43day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsst43day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTGsst43day/request", "", "public", "SST, Terra MODIS, NPP, Gulf of Mexico, Nighttime (4 microns), 2000-2012 (3 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTGsst43day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTGsst43day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTGsst43day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TG_sst4_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTGsst43day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTGsst43day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTGsst43day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsst48day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsst48day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTGsst48day/request", "", "public", "SST, Terra MODIS, NPP, Gulf of Mexico, Nighttime (4 microns), 2000-2012 (8 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTGsst48day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTGsst48day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTGsst48day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TG_sst4_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTGsst48day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTGsst48day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTGsst48day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsst4mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTGsst4mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTGsst4mday/request", "", "public", "SST, Terra MODIS, NPP, Gulf of Mexico, Nighttime (4 microns), 2000-2012 (Monthly Composite)", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTGsst4mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTGsst4mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTGsst4mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TG_sst4_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTGsst4mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTGsst4mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTGsst4mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHsstaWN3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHsstaWN3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHsstaWN3day/request", "", "public", "SST, VIIRS, Suomi-NPP, Day and Night, WN/Northwest US, Evaluation Data, 2014-present, 3-Day", "This is a 3-day composite of sea surface temperature (SST) data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, Celsius)\nnobs (Number of Observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHsstaWN3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHsstaWN3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHsstaWN3day/index.json", "https://coastwatch.noaa.gov/cw_html/sst.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHsstaWN3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHsstaWN3day&showErrors=false&email=", "NOAA/NESDIS", "erdVHsstaWN3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHsstaWS3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHsstaWS3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHsstaWS3day/request", "", "public", "SST, VIIRS, Suomi-NPP, Day and Night, WS/California, Evaluation Data, 2014-present, 3-Day", "This is a 3-day composite of sea surface temperature (SST) data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nnobs (Number of Observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHsstaWS3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHsstaWS3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHsstaWS3day/index.json", "https://coastwatch.noaa.gov/cw_html/sst.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHsstaWS3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHsstaWS3day&showErrors=false&email=", "NOAA/NESDIS", "erdVHsstaWS3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_13a2_76ef_9ed4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_13a2_76ef_9ed4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_13a2_76ef_9ed4/request", "", "public", "St. Croix, U.S. Virgin Islands Coastal Digital Elevation Model (st croix 13 mhw 2014), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_13a2_76ef_9ed4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_13a2_76ef_9ed4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_13a2_76ef_9ed4/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_13a2_76ef_9ed4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_13a2_76ef_9ed4&showErrors=false&email=", "NOAA", "noaa_ngdc_13a2_76ef_9ed4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_adfe_9859_c87f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_adfe_9859_c87f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_adfe_9859_c87f/request", "", "public", "St. Thomas and St. John, U.S. Virgin Islands Coastal Digital Elevation Model, 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_adfe_9859_c87f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_adfe_9859_c87f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_adfe_9859_c87f/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_adfe_9859_c87f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_adfe_9859_c87f&showErrors=false&email=", "NOAA", "noaa_ngdc_adfe_9859_c87f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6867_32e4_5bdd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6867_32e4_5bdd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_6867_32e4_5bdd/request", "", "public", "Strait of Juan de Fuca 36 sec Coastal Digital Elevation Model, 0.01\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_6867_32e4_5bdd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_6867_32e4_5bdd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6867_32e4_5bdd/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6867_32e4_5bdd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6867_32e4_5bdd&showErrors=false&email=", "NOAA", "noaa_ngdc_6867_32e4_5bdd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/SCUD_Pac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/SCUD_Pac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/SCUD_Pac/request", "", "public", "Surface CUrrents from a Diagnostic model (SCUD): Pacific", "The SCUD data product is an estimate of upper-ocean velocities computed from a diagnostic model (Surface CUrrents from a Diagnostic model). This model makes daily estimates of ocean currents by combining geostrophic and Ekman currents. The estimate is computed through derived coefficients such that the results best match ocean drifting buoys. The currents therefore are a best-estimate of currents at 15 meters (drifting buoys are drogued at 15 meters). The dataset is intended to diagnose trajectories of a tracer floating near the surface such as marine debris, oil spills, etc. The data are provided on a 1/4-degree grid for the Pacific.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nu (sea water velocity: eastward component, meter second-1)\nv (sea water velocity: northward component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/SCUD_Pac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/SCUD_Pac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/SCUD_Pac/index.json", "http://apdrc.soest.hawaii.edu/projects/SCUD/", "http://upwell.pfeg.noaa.gov/erddap/rss/SCUD_Pac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=SCUD_Pac&showErrors=false&email=", "University of Hawaii", "SCUD_Pac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_soest_57b3_469e_7dc7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_soest_57b3_469e_7dc7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hawaii_soest_57b3_469e_7dc7/request", "", "public", "Surface CUrrents from a Diagnostic model (SCUD): Pacific, 0.25\u00b0, 2012-present", "The SCUD data product is an estimate of upper-ocean velocities computed from a diagnostic model (Surface CUrrents from a Diagnostic model). This model makes daily estimates of ocean currents by combining geostrophic and Ekman currents. The estimate is computed through derived coefficients such that the results best match ocean drifting buoys. The currents therefore are a best-estimate of currents at 15 meters (drifting buoys are drogued at 15 meters). The dataset is intended to diagnose trajectories of a tracer floating near the surface such as marine debris, oil spills, etc. The data are provided on a 1/4-degree grid for the Pacific.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nu (sea water velocity: eastward component, meter second-1)\nv (sea water velocity: northward component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_57b3_469e_7dc7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_57b3_469e_7dc7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_57b3_469e_7dc7/index.json", "http://apdrc.soest.hawaii.edu/projects/SCUD/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_57b3_469e_7dc7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_57b3_469e_7dc7&showErrors=false&email=", "University of Hawaii", "hawaii_soest_57b3_469e_7dc7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_22d5_7c53_dd8f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_22d5_7c53_dd8f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_22d5_7c53_dd8f/request", "", "public", "Taholah, Washington Coastal Digital Elevation Model (taholah 13 mhw 2009), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_22d5_7c53_dd8f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_22d5_7c53_dd8f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_22d5_7c53_dd8f/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_22d5_7c53_dd8f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_22d5_7c53_dd8f&showErrors=false&email=", "NOAA", "noaa_ngdc_22d5_7c53_dd8f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9e9a_0fc4_28fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9e9a_0fc4_28fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9e9a_0fc4_28fe/request", "", "public", "Tampa Bay (G070) Bathymetric Digital Elevation Model (tampa bay G070 2017), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9e9a_0fc4_28fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9e9a_0fc4_28fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9e9a_0fc4_28fe/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9e9a_0fc4_28fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9e9a_0fc4_28fe&showErrors=false&email=", "NOAA", "noaa_ngdc_9e9a_0fc4_28fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f8f1_0b86_a598", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f8f1_0b86_a598.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f8f1_0b86_a598/request", "", "public", "Tatitlek, Alaska Coastal Digital Elevation Model (tatitlek 815 mhhw 2011), 1.4814814E-4\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f8f1_0b86_a598_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f8f1_0b86_a598_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f8f1_0b86_a598/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f8f1_0b86_a598.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f8f1_0b86_a598&showErrors=false&email=", "NOAA", "noaa_ngdc_f8f1_0b86_a598"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastdhday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastdhday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATastdhday/request", "", "public", "Temperature, All Surface, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Daytime, 2006-present (Single Scan)", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATastdhday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATastdhday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATastdhday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_astd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATastdhday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATastdhday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATastdhday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastdhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastdhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATastdhday_LonPM180/request", "", "public", "Temperature, All Surface, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Daytime, 2006-present (Single Scan), Lon+/-180", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATastdhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATastdhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATastdhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_astd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATastdhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATastdhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATastdhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastnhday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastnhday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATastnhday/request", "", "public", "Temperature, All Surface, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Nighttime, 2006-present (Single Scan)", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATastnhday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATastnhday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATastnhday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_astn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATastnhday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATastnhday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATastnhday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastnhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastnhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATastnhday_LonPM180/request", "", "public", "Temperature, All Surface, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Nighttime, 2006-present (Single Scan), Lon+/-180", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATastnhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATastnhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATastnhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_astn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATastnhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATastnhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATastnhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKastdhday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKastdhday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKastdhday/request", "", "public", "Temperature, All Surface, POES AVHRR, LAC, Alaska, Daytime, 2005-2008 (Hourly)", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKastdhday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKastdhday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKastdhday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_astd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKastdhday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKastdhday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKastdhday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKastdhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKastdhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKastdhday_LonPM180/request", "", "public", "Temperature, All Surface, POES AVHRR, LAC, Alaska, Daytime, 2005-2008 (Hourly), Lon+/-180", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKastdhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKastdhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKastdhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_astd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKastdhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKastdhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKastdhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_307f_7a28_c260", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_307f_7a28_c260.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_307f_7a28_c260/request", "", "public", "Terrestrial Air Temperature and Precipitation: V4.01 (air.mon.ltm.v401), 0.5\u00b0, 0001", "Terrestrial Air Temperature and Precipitation: V4.01 (Top Dataset, udel.airt.precip, air.mon.ltm.v401)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly mean of surface temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_307f_7a28_c260_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_307f_7a28_c260_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_307f_7a28_c260/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.UDel_AirT_Precip.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_307f_7a28_c260.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_307f_7a28_c260&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_307f_7a28_c260"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d99a_9d42_4732", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d99a_9d42_4732.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d99a_9d42_4732/request", "", "public", "Terrestrial Air Temperature and Precipitation: V4.01 (air.mon.mean.v401), 0.5\u00b0, 1900-2014", "Terrestrial Air Temperature and Precipitation: V4.01 (Top Dataset, udel.airt.precip, air.mon.mean.v401)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly mean of surface temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d99a_9d42_4732_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d99a_9d42_4732_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d99a_9d42_4732/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.UDel_AirT_Precip.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d99a_9d42_4732.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d99a_9d42_4732&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d99a_9d42_4732"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_90a6_5d19_d812", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_90a6_5d19_d812.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_90a6_5d19_d812/request", "", "public", "Terrestrial Air Temperature and Precipitation: V4.01 (precip.mon.ltm.v401), 0.5\u00b0, 0001", "Terrestrial Air Temperature and Precipitation: V4.01 (Top Dataset, udel.airt.precip, precip.mon.ltm.v401)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Long Term Mean Monthly total of precipitation, cm)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_90a6_5d19_d812_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_90a6_5d19_d812_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_90a6_5d19_d812/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.UDel_AirT_Precip.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_90a6_5d19_d812.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_90a6_5d19_d812&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_90a6_5d19_d812"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4628_387e_f7bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4628_387e_f7bc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4628_387e_f7bc/request", "", "public", "Terrestrial Air Temperature and Precipitation: V4.01 (precip.mon.total.v401), 0.5\u00b0, 1900-2014", "Terrestrial Air Temperature and Precipitation: V4.01 (Top Dataset, udel.airt.precip, precip.mon.total.v401)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Monthly total of precipitation, cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4628_387e_f7bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4628_387e_f7bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4628_387e_f7bc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.UDel_AirT_Precip.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4628_387e_f7bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4628_387e_f7bc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4628_387e_f7bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_f092_edf5_62a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_f092_edf5_62a8.graph", "", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, dc CM2.1U Control-1990 E1 ITFblock ocean, dc CM2.1U Control-1990 E1 ITFblock ocean tripolar vectors, dc CM2.1U Control-1990 E1 ITFblock ocean monthly, CM2.1U Control-1990 E1 ITFblock ocean tripolar monthly all vars 01010101-02001231 [depth][lat][lon]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.1, Closed ITF Experiment. GFDL experiment name = CM2.1U_Control-1990_E1_ITFblock. This coupled model experiment is a modification of the GFDL coupled climate model's (CM2.1) 1990 Control simulation, by closing the Indonesian Throughflow. Analysis and description of this experiment can be found in Song, Vecchi and Rosati (2007): The Role of the Indonesian Throughflow in the Indo-Pacific Climate Variability in the GFDL Coupled Climate Model. J. Climate, v20, pp2434-2451. Initialized from Year 0101 of the 1990 Control Simulation, run for 200 model years.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [depth][latitude][longitude]):\ncell_volume (tracer cell volume, m3)\nz (depth at tracer cell center, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_f092_edf5_62a8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_f092_edf5_62a8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_f092_edf5_62a8/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/dc_CM2.1_R1_Cntr-ITFblock_monthly_ocean_tripolar_01010101-02001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_f092_edf5_62a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_f092_edf5_62a8&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_f092_edf5_62a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_2f1a_e0e6_23e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_2f1a_e0e6_23e8.graph", "", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, dc CM2.1U Control-1990 E1 ITFblock ocean, dc CM2.1U Control-1990 E1 ITFblock ocean tripolar vectors, dc CM2.1U Control-1990 E1 ITFblock ocean monthly, CM2.1U Control-1990 E1 ITFblock ocean tripolar monthly all vars 01010101-02001231 [depth_vertex][lat][lon]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.1, Closed ITF Experiment. GFDL experiment name = CM2.1U_Control-1990_E1_ITFblock. This coupled model experiment is a modification of the GFDL coupled climate model's (CM2.1) 1990 Control simulation, by closing the Indonesian Throughflow. Analysis and description of this experiment can be found in Song, Vecchi and Rosati (2007): The Role of the Indonesian Throughflow in the Indo-Pacific Climate Variability in the GFDL Coupled Climate Model. J. Climate, v20, pp2434-2451. Initialized from Year 0101 of the 1990 Control Simulation, run for 200 model years.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [depth][latitude][longitude]):\nz_vertex (depth edges at tracer cell center, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_2f1a_e0e6_23e8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_2f1a_e0e6_23e8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_2f1a_e0e6_23e8/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/dc_CM2.1_R1_Cntr-ITFblock_monthly_ocean_tripolar_01010101-02001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_2f1a_e0e6_23e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_2f1a_e0e6_23e8&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_2f1a_e0e6_23e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_2e8f_ee73_62cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_2e8f_ee73_62cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_gfdl_2e8f_ee73_62cd/request", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, dc CM2.1U Control-1990 E1 ITFblock ocean, dc CM2.1U Control-1990 E1 ITFblock ocean tripolar vectors, dc CM2.1U Control-1990 E1 ITFblock ocean monthly, CM2.1U Control-1990 E1 ITFblock ocean tripolar monthly all vars 01010101-02001231 [lat][lon]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.1, Closed ITF Experiment. GFDL experiment name = CM2.1U_Control-1990_E1_ITFblock. This coupled model experiment is a modification of the GFDL coupled climate model's (CM2.1) 1990 Control simulation, by closing the Indonesian Throughflow. Analysis and description of this experiment can be found in Song, Vecchi and Rosati (2007): The Role of the Indonesian Throughflow in the Indo-Pacific Climate Variability in the GFDL Coupled Climate Model. J. Climate, v20, pp2434-2451. Initialized from Year 0101 of the 1990 Control Simulation, run for 200 model years.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ncell_area (tracer cell area, m2)\ngeolat (geographical latitude at tracer cell center, degrees_north)\ngeolon (geographical longitude at tracer cell center, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_2e8f_ee73_62cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_2e8f_ee73_62cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_2e8f_ee73_62cd/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/dc_CM2.1_R1_Cntr-ITFblock_monthly_ocean_tripolar_01010101-02001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_2e8f_ee73_62cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_2e8f_ee73_62cd&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_2e8f_ee73_62cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_7aee_44e6_61e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_7aee_44e6_61e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_gfdl_7aee_44e6_61e1/request", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, dc CM2.1U Control-1990 E1 ITFblock ocean, dc CM2.1U Control-1990 E1 ITFblock ocean tripolar vectors, dc CM2.1U Control-1990 E1 ITFblock ocean monthly, CM2.1U Control-1990 E1 ITFblock ocean tripolar monthly all vars 01010101-02001231 [lat_vertex][lon_vertex]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.1, Closed ITF Experiment. GFDL experiment name = CM2.1U_Control-1990_E1_ITFblock. This coupled model experiment is a modification of the GFDL coupled climate model's (CM2.1) 1990 Control simulation, by closing the Indonesian Throughflow. Analysis and description of this experiment can be found in Song, Vecchi and Rosati (2007): The Role of the Indonesian Throughflow in the Indo-Pacific Climate Variability in the GFDL Coupled Climate Model. J. Climate, v20, pp2434-2451. Initialized from Year 0101 of the 1990 Control Simulation, run for 200 model years.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ngeolat_vertex (geographical latitude at tracer cell edges, degrees_north)\ngeolon_vertex (geographical longitude at tracer cell edges, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_7aee_44e6_61e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_7aee_44e6_61e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_7aee_44e6_61e1/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/dc_CM2.1_R1_Cntr-ITFblock_monthly_ocean_tripolar_01010101-02001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_7aee_44e6_61e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_7aee_44e6_61e1&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_7aee_44e6_61e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_9e98_295f_2f1f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_9e98_295f_2f1f.graph", "", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, GFDL CM2.0, Cntr-ITFblock R1, Ocean Tripolar, Monthly, Jan 1, 0101, Dec 31, 0200 [depth][lat][lon]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.1, Closed ITF Experiment. GFDL experiment name = CM2.1U_Control-1990_E1_ITFblock. This coupled model experiment is a modification of the GFDL coupled climate model's (CM2.1) 1990 Control simulation, by closing the Indonesian Throughflow. Analysis and description of this experiment can be found in Song, Vecchi and Rosati (2007): The Role of the Indonesian Throughflow in the Indo-Pacific Climate Variability in the GFDL Coupled Climate Model. J. Climate, v20, pp2434-2451. Initialized from Year 0101 of the 1990 Control Simulation, run for 200 model years.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [depth][latitude][longitude]):\ncell_volume (tracer cell volume, m3)\nz (depth at tracer cell center, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_9e98_295f_2f1f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_9e98_295f_2f1f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_9e98_295f_2f1f/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/CM2.0_Cntr-ITFblock_R1_ocean_tripolar_monthly_01010101-02001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_9e98_295f_2f1f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_9e98_295f_2f1f&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_9e98_295f_2f1f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_3ed9_989a_4d87", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_3ed9_989a_4d87.graph", "", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, GFDL CM2.0, Cntr-ITFblock R1, Ocean Tripolar, Monthly, Jan 1, 0101, Dec 31, 0200 [depth_vertex][lat][lon]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.1, Closed ITF Experiment. GFDL experiment name = CM2.1U_Control-1990_E1_ITFblock. This coupled model experiment is a modification of the GFDL coupled climate model's (CM2.1) 1990 Control simulation, by closing the Indonesian Throughflow. Analysis and description of this experiment can be found in Song, Vecchi and Rosati (2007): The Role of the Indonesian Throughflow in the Indo-Pacific Climate Variability in the GFDL Coupled Climate Model. J. Climate, v20, pp2434-2451. Initialized from Year 0101 of the 1990 Control Simulation, run for 200 model years.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [depth][latitude][longitude]):\nz_vertex (depth edges at tracer cell center, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_3ed9_989a_4d87_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_3ed9_989a_4d87_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_3ed9_989a_4d87/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/CM2.0_Cntr-ITFblock_R1_ocean_tripolar_monthly_01010101-02001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_3ed9_989a_4d87.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_3ed9_989a_4d87&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_3ed9_989a_4d87"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_7064_7f2a_33eb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_7064_7f2a_33eb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_gfdl_7064_7f2a_33eb/request", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, GFDL CM2.0, Cntr-ITFblock R1, Ocean Tripolar, Monthly, Jan 1, 0101, Dec 31, 0200 [lat][lon]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.1, Closed ITF Experiment. GFDL experiment name = CM2.1U_Control-1990_E1_ITFblock. This coupled model experiment is a modification of the GFDL coupled climate model's (CM2.1) 1990 Control simulation, by closing the Indonesian Throughflow. Analysis and description of this experiment can be found in Song, Vecchi and Rosati (2007): The Role of the Indonesian Throughflow in the Indo-Pacific Climate Variability in the GFDL Coupled Climate Model. J. Climate, v20, pp2434-2451. Initialized from Year 0101 of the 1990 Control Simulation, run for 200 model years.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ncell_area (tracer cell area, m2)\ngeolat (geographical latitude at tracer cell center, degrees_north)\ngeolon (geographical longitude at tracer cell center, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_7064_7f2a_33eb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_7064_7f2a_33eb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_7064_7f2a_33eb/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/CM2.0_Cntr-ITFblock_R1_ocean_tripolar_monthly_01010101-02001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_7064_7f2a_33eb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_7064_7f2a_33eb&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_7064_7f2a_33eb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_b29f_db99_3734", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_b29f_db99_3734.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_gfdl_b29f_db99_3734/request", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, GFDL CM2.0, Cntr-ITFblock R1, Ocean Tripolar, Monthly, Jan 1, 0101, Dec 31, 0200 [lat_vertex][lon_vertex]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.1, Closed ITF Experiment. GFDL experiment name = CM2.1U_Control-1990_E1_ITFblock. This coupled model experiment is a modification of the GFDL coupled climate model's (CM2.1) 1990 Control simulation, by closing the Indonesian Throughflow. Analysis and description of this experiment can be found in Song, Vecchi and Rosati (2007): The Role of the Indonesian Throughflow in the Indo-Pacific Climate Variability in the GFDL Coupled Climate Model. J. Climate, v20, pp2434-2451. Initialized from Year 0101 of the 1990 Control Simulation, run for 200 model years.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ngeolat_vertex (geographical latitude at tracer cell edges, degrees_north)\ngeolon_vertex (geographical longitude at tracer cell edges, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_b29f_db99_3734_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_b29f_db99_3734_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_b29f_db99_3734/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/CM2.0_Cntr-ITFblock_R1_ocean_tripolar_monthly_01010101-02001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_b29f_db99_3734.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_b29f_db99_3734&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_b29f_db99_3734"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_b40a_d006_13b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_b40a_d006_13b1.graph", "", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, ipcc ar4 CM2Q-d2 1861-2000-AllForc h1 atmos, ipcc ar4 CM2Q-d2 1861-2000-AllForc h1 atmos annual, ipcc ar4 20C3M-0 annual 18610101-20001231, CM2Q-d2 1861-2000-AllForc h1 atmos annual all vars 18610101-20001231 [lev]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.0, 20C3M (run 1) climate of the 20th Century experiment (20C3M) output for Intergovernmental Panel on Climate Change (IPCC) Fourth Assessment Report (AR4) and US Climate Change Science Program (CCSP). GFDL experiment name = CM2Q-d2_1861-2000-AllForc_h1. Program for Climate Model Diagnosis and Intercomparison (PCMDI) experiment name = 20C3M (run1). Initial conditions for this experiment were taken from 1 January of year 1 of the 1860 control model experiment named CM2Q_Control-1860_d2. Several forcing agents varied during the 140 year duration of the CM2Q-d2_1861-2000-AllForc_h1 experiment in a manner based upon observations and reconstructions for the late 19th and 20th centuries. The time varying forcing agents were atmospheric CO2, CH4, N2O, halons, tropospheric and stratospheric O3, anthropogenic tropospheric sulfates, black and organic carbon, volcanic aerosols, solar irradiance, and the distribution of land cover types. The direct effect of tropospheric aerosols is calculated by the model, but not the indirect effects.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [lev]):\na (hybrid sigma coordinate A coefficient for layer)\nb (hybrid sigma coordinate B coefficient for layer)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_b40a_d006_13b1/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/ipcc_ar4_CM2.0_R1_20C3M-0_annual_atmos_18610101-20001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_b40a_d006_13b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_b40a_d006_13b1&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_b40a_d006_13b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_70b4_dfa4_41e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_70b4_dfa4_41e3.graph", "", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, ipcc ar4 CM2Q-d2 1861-2000-AllForc h1 atmos, ipcc ar4 CM2Q-d2 1861-2000-AllForc h1 atmos monthly, ipcc ar4 20C3M-0 monthly 18610101-20001231, CM2Q-d2 1861-2000-AllForc h1 atmos monthly all vars 18610101-20001231 [lev]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.0, 20C3M (run 1) climate of the 20th Century experiment (20C3M) output for Intergovernmental Panel on Climate Change (IPCC) Fourth Assessment Report (AR4) and US Climate Change Science Program (CCSP). GFDL experiment name = CM2Q-d2_1861-2000-AllForc_h1. Program for Climate Model Diagnosis and Intercomparison (PCMDI) experiment name = 20C3M (run1). Initial conditions for this experiment were taken from 1 January of year 1 of the 1860 control model experiment named CM2Q_Control-1860_d2. Several forcing agents varied during the 140 year duration of the CM2Q-d2_1861-2000-AllForc_h1 experiment in a manner based upon observations and reconstructions for the late 19th and 20th centuries. The time varying forcing agents were atmospheric CO2, CH4, N2O, halons, tropospheric and stratospheric O3, anthropogenic tropospheric sulfates, black and organic carbon, volcanic aerosols, solar irradiance, and the distribution of land cover types. The direct effect of tropospheric aerosols is calculated by the model, but not the indirect effects.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [lev]):\na (hybrid sigma coordinate A coefficient for layer)\nb (hybrid sigma coordinate B coefficient for layer)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_70b4_dfa4_41e3/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/ipcc_ar4_CM2.0_R1_20C3M-0_monthly_atmos_18610101-20001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_70b4_dfa4_41e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_70b4_dfa4_41e3&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_70b4_dfa4_41e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_6850_9d09_4821", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_6850_9d09_4821.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_gfdl_6850_9d09_4821/request", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, ipcc ar4 CM2Q-d2 1861-2000-AllForc h1 ice, ipcc ar4 CM2Q-d2 1861-2000-AllForc h1 ice tripolar vectors, ipcc ar4 CM2Q-d2 1861-2000-AllForc h1 ice annual, ipcc ar4 20C3M-0 annual 18610101-20001231, CM2Q-d2 1861-2000-AllForc h1 ice tripolar annual all vars 18610101-20001231 [lat][lon]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.0, 20C3M (run 1) climate of the 20th Century experiment (20C3M) output for Intergovernmental Panel on Climate Change (IPCC) Fourth Assessment Report (AR4) and US Climate Change Science Program (CCSP). GFDL experiment name = CM2Q-d2_1861-2000-AllForc_h1. Program for Climate Model Diagnosis and Intercomparison (PCMDI) experiment name = 20C3M (run1). Initial conditions for this experiment were taken from 1 January of year 1 of the 1860 control model experiment named CM2Q_Control-1860_d2. Several forcing agents varied during the 140 year duration of the CM2Q-d2_1861-2000-AllForc_h1 experiment in a manner based upon observations and reconstructions for the late 19th and 20th centuries. The time varying forcing agents were atmospheric CO2, CH4, N2O, halons, tropospheric and stratospheric O3, anthropogenic tropospheric sulfates, black and organic carbon, volcanic aerosols, solar irradiance, and the distribution of land cover types. The direct effect of tropospheric aerosols is calculated by the model, but not the indirect effects.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ngeolat (geographical latitude at velocity cell center, degrees_north)\ncell_area (velocity cell area, m2)\ngeolon (geographical longitude at velocity cell center, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_6850_9d09_4821_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_6850_9d09_4821_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_6850_9d09_4821/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/ipcc_ar4_CM2.0_R1_20C3M-0_annual_ice_tripolar_18610101-20001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_6850_9d09_4821.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_6850_9d09_4821&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_6850_9d09_4821"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_af04_a5c0_31e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_af04_a5c0_31e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_gfdl_af04_a5c0_31e1/request", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, ipcc ar4 CM2Q-d2 1861-2000-AllForc h1 ice, ipcc ar4 CM2Q-d2 1861-2000-AllForc h1 ice tripolar vectors, ipcc ar4 CM2Q-d2 1861-2000-AllForc h1 ice annual, ipcc ar4 20C3M-0 annual 18610101-20001231, CM2Q-d2 1861-2000-AllForc h1 ice tripolar annual all vars 18610101-20001231 [lat_vertex][lon_vertex]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.0, 20C3M (run 1) climate of the 20th Century experiment (20C3M) output for Intergovernmental Panel on Climate Change (IPCC) Fourth Assessment Report (AR4) and US Climate Change Science Program (CCSP). GFDL experiment name = CM2Q-d2_1861-2000-AllForc_h1. Program for Climate Model Diagnosis and Intercomparison (PCMDI) experiment name = 20C3M (run1). Initial conditions for this experiment were taken from 1 January of year 1 of the 1860 control model experiment named CM2Q_Control-1860_d2. Several forcing agents varied during the 140 year duration of the CM2Q-d2_1861-2000-AllForc_h1 experiment in a manner based upon observations and reconstructions for the late 19th and 20th centuries. The time varying forcing agents were atmospheric CO2, CH4, N2O, halons, tropospheric and stratospheric O3, anthropogenic tropospheric sulfates, black and organic carbon, volcanic aerosols, solar irradiance, and the distribution of land cover types. The direct effect of tropospheric aerosols is calculated by the model, but not the indirect effects.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ngeolon_vertex (geographical longitude at velocity cell edges, degrees_east)\ngeolat_vertex (geographical latitude at velocity cell edges, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_af04_a5c0_31e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_af04_a5c0_31e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_af04_a5c0_31e1/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/ipcc_ar4_CM2.0_R1_20C3M-0_annual_ice_tripolar_18610101-20001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_af04_a5c0_31e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_af04_a5c0_31e1&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_af04_a5c0_31e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_25ba_7a7b_2a72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_25ba_7a7b_2a72.graph", "", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, ipcc ar4 CM2Q-d2 1861-2000-AllForc h1 ocean, ipcc ar4 CM2Q-d2 1861-2000-AllForc h1 ocean tripolar vectors, ipcc ar4 CM2Q-d2 1861-2000-AllForc h1 ocean monthly, ipcc ar4 20C3M-0 monthly 18610101-20001231, CM2Q-d2 1861-2000-AllForc h1 ocean tripolar monthly all vars 18610101-20001231 [depth][lat][lon]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.0, 20C3M (run 1) climate of the 20th Century experiment (20C3M) output for Intergovernmental Panel on Climate Change (IPCC) Fourth Assessment Report (AR4) and US Climate Change Science Program (CCSP). GFDL experiment name = CM2Q-d2_1861-2000-AllForc_h1. Program for Climate Model Diagnosis and Intercomparison (PCMDI) experiment name = 20C3M (run1). Initial conditions for this experiment were taken from 1 January of year 1 of the 1860 control model experiment named CM2Q_Control-1860_d2. Several forcing agents varied during the 140 year duration of the CM2Q-d2_1861-2000-AllForc_h1 experiment in a manner based upon observations and reconstructions for the late 19th and 20th centuries. The time varying forcing agents were atmospheric CO2, CH4, N2O, halons, tropospheric and stratospheric O3, anthropogenic tropospheric sulfates, black and organic carbon, volcanic aerosols, solar irradiance, and the distribution of land cover types. The direct effect of tropospheric aerosols is calculated by the model, but not the indirect effects.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [depth][latitude][longitude]):\ncell_volume (velocity cell volume, m3)\nz (depth at velocity cell center, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_25ba_7a7b_2a72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_25ba_7a7b_2a72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_25ba_7a7b_2a72/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/ipcc_ar4_CM2.0_R1_20C3M-0_monthly_ocean_tripolar_18610101-20001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_25ba_7a7b_2a72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_25ba_7a7b_2a72&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_25ba_7a7b_2a72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_e6a8_bd0a_0c38", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_e6a8_bd0a_0c38.graph", "", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, ipcc ar4 CM2Q-d2 1861-2000-AllForc h1 ocean, ipcc ar4 CM2Q-d2 1861-2000-AllForc h1 ocean tripolar vectors, ipcc ar4 CM2Q-d2 1861-2000-AllForc h1 ocean monthly, ipcc ar4 20C3M-0 monthly 18610101-20001231, CM2Q-d2 1861-2000-AllForc h1 ocean tripolar monthly all vars 18610101-20001231 [depth_vertex][lat][lon]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.0, 20C3M (run 1) climate of the 20th Century experiment (20C3M) output for Intergovernmental Panel on Climate Change (IPCC) Fourth Assessment Report (AR4) and US Climate Change Science Program (CCSP). GFDL experiment name = CM2Q-d2_1861-2000-AllForc_h1. Program for Climate Model Diagnosis and Intercomparison (PCMDI) experiment name = 20C3M (run1). Initial conditions for this experiment were taken from 1 January of year 1 of the 1860 control model experiment named CM2Q_Control-1860_d2. Several forcing agents varied during the 140 year duration of the CM2Q-d2_1861-2000-AllForc_h1 experiment in a manner based upon observations and reconstructions for the late 19th and 20th centuries. The time varying forcing agents were atmospheric CO2, CH4, N2O, halons, tropospheric and stratospheric O3, anthropogenic tropospheric sulfates, black and organic carbon, volcanic aerosols, solar irradiance, and the distribution of land cover types. The direct effect of tropospheric aerosols is calculated by the model, but not the indirect effects.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [depth][latitude][longitude]):\nz_vertex (depth edges at velocity cell center, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_e6a8_bd0a_0c38_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_e6a8_bd0a_0c38_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_e6a8_bd0a_0c38/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/ipcc_ar4_CM2.0_R1_20C3M-0_monthly_ocean_tripolar_18610101-20001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_e6a8_bd0a_0c38.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_e6a8_bd0a_0c38&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_e6a8_bd0a_0c38"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_d8a4_0b92_7a75", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_d8a4_0b92_7a75.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_gfdl_d8a4_0b92_7a75/request", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, ipcc ar4 CM2Q-d2 1861-2000-AllForc h1 ocean, ipcc ar4 CM2Q-d2 1861-2000-AllForc h1 ocean tripolar vectors, ipcc ar4 CM2Q-d2 1861-2000-AllForc h1 ocean monthly, ipcc ar4 20C3M-0 monthly 18610101-20001231, CM2Q-d2 1861-2000-AllForc h1 ocean tripolar monthly all vars 18610101-20001231 [lat][lon]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.0, 20C3M (run 1) climate of the 20th Century experiment (20C3M) output for Intergovernmental Panel on Climate Change (IPCC) Fourth Assessment Report (AR4) and US Climate Change Science Program (CCSP). GFDL experiment name = CM2Q-d2_1861-2000-AllForc_h1. Program for Climate Model Diagnosis and Intercomparison (PCMDI) experiment name = 20C3M (run1). Initial conditions for this experiment were taken from 1 January of year 1 of the 1860 control model experiment named CM2Q_Control-1860_d2. Several forcing agents varied during the 140 year duration of the CM2Q-d2_1861-2000-AllForc_h1 experiment in a manner based upon observations and reconstructions for the late 19th and 20th centuries. The time varying forcing agents were atmospheric CO2, CH4, N2O, halons, tropospheric and stratospheric O3, anthropogenic tropospheric sulfates, black and organic carbon, volcanic aerosols, solar irradiance, and the distribution of land cover types. The direct effect of tropospheric aerosols is calculated by the model, but not the indirect effects.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ncell_area (velocity cell area, m2)\ngeolat (geographical latitude at velocity cell center, degrees_north)\ngeolon (geographical longitude at velocity cell center, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_d8a4_0b92_7a75_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_d8a4_0b92_7a75_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_d8a4_0b92_7a75/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/ipcc_ar4_CM2.0_R1_20C3M-0_monthly_ocean_tripolar_18610101-20001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_d8a4_0b92_7a75.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_d8a4_0b92_7a75&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_d8a4_0b92_7a75"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_b416_0110_9b9b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_b416_0110_9b9b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_gfdl_b416_0110_9b9b/request", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, ipcc ar4 CM2Q-d2 1861-2000-AllForc h1 ocean, ipcc ar4 CM2Q-d2 1861-2000-AllForc h1 ocean tripolar vectors, ipcc ar4 CM2Q-d2 1861-2000-AllForc h1 ocean monthly, ipcc ar4 20C3M-0 monthly 18610101-20001231, CM2Q-d2 1861-2000-AllForc h1 ocean tripolar monthly all vars 18610101-20001231 [lat_vertex][lon_vertex]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.0, 20C3M (run 1) climate of the 20th Century experiment (20C3M) output for Intergovernmental Panel on Climate Change (IPCC) Fourth Assessment Report (AR4) and US Climate Change Science Program (CCSP). GFDL experiment name = CM2Q-d2_1861-2000-AllForc_h1. Program for Climate Model Diagnosis and Intercomparison (PCMDI) experiment name = 20C3M (run1). Initial conditions for this experiment were taken from 1 January of year 1 of the 1860 control model experiment named CM2Q_Control-1860_d2. Several forcing agents varied during the 140 year duration of the CM2Q-d2_1861-2000-AllForc_h1 experiment in a manner based upon observations and reconstructions for the late 19th and 20th centuries. The time varying forcing agents were atmospheric CO2, CH4, N2O, halons, tropospheric and stratospheric O3, anthropogenic tropospheric sulfates, black and organic carbon, volcanic aerosols, solar irradiance, and the distribution of land cover types. The direct effect of tropospheric aerosols is calculated by the model, but not the indirect effects.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ngeolat_vertex (geographical latitude at velocity cell edges, degrees_north)\ngeolon_vertex (geographical longitude at velocity cell edges, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_b416_0110_9b9b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_b416_0110_9b9b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_b416_0110_9b9b/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/ipcc_ar4_CM2.0_R1_20C3M-0_monthly_ocean_tripolar_18610101-20001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_b416_0110_9b9b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_b416_0110_9b9b&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_b416_0110_9b9b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_a8b8_5f0a_e72d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_a8b8_5f0a_e72d.graph", "", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 atmos, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 atmos annual, ipcc ar4 20C3M-0 annual 18610101-20001231, CM2Q-d2 1861-2000-AllForc h2 atmos annual all vars 18610101-20001231 [lev]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.0, 20C3M (run 2) climate of the 20th Century experiment (20C3M) output for Intergovernmental Panel on Climate Change (IPCC) Fourth Assessment Report (AR4) and US Climate Change Science Program (CCSP). GFDL experiment name = CM2Q-d2_1861-2000-AllForc_h2. Program for Climate Model Diagnosis and Intercomparison (PCMDI) experiment name = 20C3M (run2). Initial conditions for this experiment were taken from 1 January of year 101 of the 1860 control model experiment named CM2Q_Control-1860_d2. Several forcing agents varied during the 140 year duration of the CM2Q-d2_1861-2000-AllForc_h2 experiment in a manner based upon observations and reconstructions for the late 19th and 20th centuries. The time varying forcing agents were atmospheric CO2, CH4, N2O, halons, tropospheric and stratospheric O3, anthropogenic tropospheric sulfates, black and organic carbon, volcanic aerosols, solar irradiance, and the distribution of land cover types. The direct effect of tropospheric aerosols is calculated by the model, but not the indirect effects.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [lev]):\na (hybrid sigma coordinate A coefficient for layer)\nb (hybrid sigma coordinate B coefficient for layer)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_a8b8_5f0a_e72d/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/ipcc_ar4_CM2.0_R2_20C3M-0_annual_atmos_18610101-20001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_a8b8_5f0a_e72d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_a8b8_5f0a_e72d&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_a8b8_5f0a_e72d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_5d31_6ada_5eed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_5d31_6ada_5eed.graph", "", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 atmos, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 atmos monthly, ipcc ar4 20C3M-0 monthly 18610101-20001231, CM2Q-d2 1861-2000-AllForc h2 atmos monthly all vars 18610101-20001231 [lev]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.0, 20C3M (run 2) climate of the 20th Century experiment (20C3M) output for Intergovernmental Panel on Climate Change (IPCC) Fourth Assessment Report (AR4) and US Climate Change Science Program (CCSP). GFDL experiment name = CM2Q-d2_1861-2000-AllForc_h2. Program for Climate Model Diagnosis and Intercomparison (PCMDI) experiment name = 20C3M (run2). Initial conditions for this experiment were taken from 1 January of year 101 of the 1860 control model experiment named CM2Q_Control-1860_d2. Several forcing agents varied during the 140 year duration of the CM2Q-d2_1861-2000-AllForc_h2 experiment in a manner based upon observations and reconstructions for the late 19th and 20th centuries. The time varying forcing agents were atmospheric CO2, CH4, N2O, halons, tropospheric and stratospheric O3, anthropogenic tropospheric sulfates, black and organic carbon, volcanic aerosols, solar irradiance, and the distribution of land cover types. The direct effect of tropospheric aerosols is calculated by the model, but not the indirect effects.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [lev]):\na (hybrid sigma coordinate A coefficient for layer)\nb (hybrid sigma coordinate B coefficient for layer)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_5d31_6ada_5eed/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/ipcc_ar4_CM2.0_R2_20C3M-0_monthly_atmos_18610101-20001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_5d31_6ada_5eed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_5d31_6ada_5eed&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_5d31_6ada_5eed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_b365_03a2_1238", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_b365_03a2_1238.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_gfdl_b365_03a2_1238/request", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ice, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ice tripolar vectors, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ice annual, ipcc ar4 20C3M-0 annual 18610101-20001231, CM2Q-d2 1861-2000-AllForc h2 ice tripolar annual all vars 18610101-20001231 [lat][lon]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.0, 20C3M (run 2) climate of the 20th Century experiment (20C3M) output for Intergovernmental Panel on Climate Change (IPCC) Fourth Assessment Report (AR4) and US Climate Change Science Program (CCSP). GFDL experiment name = CM2Q-d2_1861-2000-AllForc_h2. Program for Climate Model Diagnosis and Intercomparison (PCMDI) experiment name = 20C3M (run2). Initial conditions for this experiment were taken from 1 January of year 101 of the 1860 control model experiment named CM2Q_Control-1860_d2. Several forcing agents varied during the 140 year duration of the CM2Q-d2_1861-2000-AllForc_h2 experiment in a manner based upon observations and reconstructions for the late 19th and 20th centuries. The time varying forcing agents were atmospheric CO2, CH4, N2O, halons, tropospheric and stratospheric O3, anthropogenic tropospheric sulfates, black and organic carbon, volcanic aerosols, solar irradiance, and the distribution of land cover types. The direct effect of tropospheric aerosols is calculated by the model, but not the indirect effects.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ngeolat (geographical latitude at velocity cell center, degrees_north)\ncell_area (velocity cell area, m2)\ngeolon (geographical longitude at velocity cell center, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_b365_03a2_1238_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_b365_03a2_1238_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_b365_03a2_1238/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/ipcc_ar4_CM2.0_R2_20C3M-0_annual_ice_tripolar_18610101-20001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_b365_03a2_1238.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_b365_03a2_1238&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_b365_03a2_1238"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_5216_1105_ffe0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_5216_1105_ffe0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_gfdl_5216_1105_ffe0/request", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ice, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ice tripolar vectors, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ice annual, ipcc ar4 20C3M-0 annual 18610101-20001231, CM2Q-d2 1861-2000-AllForc h2 ice tripolar annual all vars 18610101-20001231 [lat_vertex][lon_vertex]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.0, 20C3M (run 2) climate of the 20th Century experiment (20C3M) output for Intergovernmental Panel on Climate Change (IPCC) Fourth Assessment Report (AR4) and US Climate Change Science Program (CCSP). GFDL experiment name = CM2Q-d2_1861-2000-AllForc_h2. Program for Climate Model Diagnosis and Intercomparison (PCMDI) experiment name = 20C3M (run2). Initial conditions for this experiment were taken from 1 January of year 101 of the 1860 control model experiment named CM2Q_Control-1860_d2. Several forcing agents varied during the 140 year duration of the CM2Q-d2_1861-2000-AllForc_h2 experiment in a manner based upon observations and reconstructions for the late 19th and 20th centuries. The time varying forcing agents were atmospheric CO2, CH4, N2O, halons, tropospheric and stratospheric O3, anthropogenic tropospheric sulfates, black and organic carbon, volcanic aerosols, solar irradiance, and the distribution of land cover types. The direct effect of tropospheric aerosols is calculated by the model, but not the indirect effects.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ngeolon_vertex (geographical longitude at velocity cell edges, degrees_east)\ngeolat_vertex (geographical latitude at velocity cell edges, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_5216_1105_ffe0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_5216_1105_ffe0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_5216_1105_ffe0/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/ipcc_ar4_CM2.0_R2_20C3M-0_annual_ice_tripolar_18610101-20001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_5216_1105_ffe0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_5216_1105_ffe0&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_5216_1105_ffe0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_2bc3_c4de_08b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_2bc3_c4de_08b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_gfdl_2bc3_c4de_08b6/request", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ice, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ice tripolar vectors, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ice monthly, ipcc ar4 20C3M-0 monthly 18610101-20001231, CM2Q-d2 1861-2000-AllForc h2 ice tripolar monthly all vars 18610101-20001231 [lat][lon]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.0, 20C3M (run 2) climate of the 20th Century experiment (20C3M) output for Intergovernmental Panel on Climate Change (IPCC) Fourth Assessment Report (AR4) and US Climate Change Science Program (CCSP). GFDL experiment name = CM2Q-d2_1861-2000-AllForc_h2. Program for Climate Model Diagnosis and Intercomparison (PCMDI) experiment name = 20C3M (run2). Initial conditions for this experiment were taken from 1 January of year 101 of the 1860 control model experiment named CM2Q_Control-1860_d2. Several forcing agents varied during the 140 year duration of the CM2Q-d2_1861-2000-AllForc_h2 experiment in a manner based upon observations and reconstructions for the late 19th and 20th centuries. The time varying forcing agents were atmospheric CO2, CH4, N2O, halons, tropospheric and stratospheric O3, anthropogenic tropospheric sulfates, black and organic carbon, volcanic aerosols, solar irradiance, and the distribution of land cover types. The direct effect of tropospheric aerosols is calculated by the model, but not the indirect effects.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ncell_area (velocity cell area, m2)\ngeolat (geographical latitude at velocity cell center, degrees_north)\ngeolon (geographical longitude at velocity cell center, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_2bc3_c4de_08b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_2bc3_c4de_08b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_2bc3_c4de_08b6/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/ipcc_ar4_CM2.0_R2_20C3M-0_monthly_ice_tripolar_18610101-20001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_2bc3_c4de_08b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_2bc3_c4de_08b6&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_2bc3_c4de_08b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_2907_1c4a_4c0e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_2907_1c4a_4c0e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_gfdl_2907_1c4a_4c0e/request", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ice, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ice tripolar vectors, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ice monthly, ipcc ar4 20C3M-0 monthly 18610101-20001231, CM2Q-d2 1861-2000-AllForc h2 ice tripolar monthly all vars 18610101-20001231 [lat_vertex][lon_vertex]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.0, 20C3M (run 2) climate of the 20th Century experiment (20C3M) output for Intergovernmental Panel on Climate Change (IPCC) Fourth Assessment Report (AR4) and US Climate Change Science Program (CCSP). GFDL experiment name = CM2Q-d2_1861-2000-AllForc_h2. Program for Climate Model Diagnosis and Intercomparison (PCMDI) experiment name = 20C3M (run2). Initial conditions for this experiment were taken from 1 January of year 101 of the 1860 control model experiment named CM2Q_Control-1860_d2. Several forcing agents varied during the 140 year duration of the CM2Q-d2_1861-2000-AllForc_h2 experiment in a manner based upon observations and reconstructions for the late 19th and 20th centuries. The time varying forcing agents were atmospheric CO2, CH4, N2O, halons, tropospheric and stratospheric O3, anthropogenic tropospheric sulfates, black and organic carbon, volcanic aerosols, solar irradiance, and the distribution of land cover types. The direct effect of tropospheric aerosols is calculated by the model, but not the indirect effects.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ngeolat_vertex (geographical latitude at velocity cell edges, degrees_north)\ngeolon_vertex (geographical longitude at velocity cell edges, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_2907_1c4a_4c0e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_2907_1c4a_4c0e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_2907_1c4a_4c0e/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/ipcc_ar4_CM2.0_R2_20C3M-0_monthly_ice_tripolar_18610101-20001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_2907_1c4a_4c0e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_2907_1c4a_4c0e&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_2907_1c4a_4c0e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_5e6b_7290_0b44", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_5e6b_7290_0b44.graph", "", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ocean, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ocean tripolar vectors, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ocean annual, ipcc ar4 20C3M-0 annual 18610101-20001231, CM2Q-d2 1861-2000-AllForc h2 ocean tripolar annual all vars 18610101-20001231 [depth][lat][lon]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.0, 20C3M (run 2) climate of the 20th Century experiment (20C3M) output for Intergovernmental Panel on Climate Change (IPCC) Fourth Assessment Report (AR4) and US Climate Change Science Program (CCSP). GFDL experiment name = CM2Q-d2_1861-2000-AllForc_h2. Program for Climate Model Diagnosis and Intercomparison (PCMDI) experiment name = 20C3M (run2). Initial conditions for this experiment were taken from 1 January of year 101 of the 1860 control model experiment named CM2Q_Control-1860_d2. Several forcing agents varied during the 140 year duration of the CM2Q-d2_1861-2000-AllForc_h2 experiment in a manner based upon observations and reconstructions for the late 19th and 20th centuries. The time varying forcing agents were atmospheric CO2, CH4, N2O, halons, tropospheric and stratospheric O3, anthropogenic tropospheric sulfates, black and organic carbon, volcanic aerosols, solar irradiance, and the distribution of land cover types. The direct effect of tropospheric aerosols is calculated by the model, but not the indirect effects.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [depth][latitude][longitude]):\ncell_volume (velocity cell volume, m3)\nz (depth at velocity cell center, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_5e6b_7290_0b44_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_5e6b_7290_0b44_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_5e6b_7290_0b44/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/ipcc_ar4_CM2.0_R2_20C3M-0_annual_ocean_tripolar_18610101-20001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_5e6b_7290_0b44.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_5e6b_7290_0b44&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_5e6b_7290_0b44"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_ec86_726d_7fa4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_ec86_726d_7fa4.graph", "", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ocean, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ocean tripolar vectors, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ocean annual, ipcc ar4 20C3M-0 annual 18610101-20001231, CM2Q-d2 1861-2000-AllForc h2 ocean tripolar annual all vars 18610101-20001231 [depth_vertex][lat][lon]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.0, 20C3M (run 2) climate of the 20th Century experiment (20C3M) output for Intergovernmental Panel on Climate Change (IPCC) Fourth Assessment Report (AR4) and US Climate Change Science Program (CCSP). GFDL experiment name = CM2Q-d2_1861-2000-AllForc_h2. Program for Climate Model Diagnosis and Intercomparison (PCMDI) experiment name = 20C3M (run2). Initial conditions for this experiment were taken from 1 January of year 101 of the 1860 control model experiment named CM2Q_Control-1860_d2. Several forcing agents varied during the 140 year duration of the CM2Q-d2_1861-2000-AllForc_h2 experiment in a manner based upon observations and reconstructions for the late 19th and 20th centuries. The time varying forcing agents were atmospheric CO2, CH4, N2O, halons, tropospheric and stratospheric O3, anthropogenic tropospheric sulfates, black and organic carbon, volcanic aerosols, solar irradiance, and the distribution of land cover types. The direct effect of tropospheric aerosols is calculated by the model, but not the indirect effects.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [depth][latitude][longitude]):\nz_vertex (depth edges at velocity cell center, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_ec86_726d_7fa4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_ec86_726d_7fa4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_ec86_726d_7fa4/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/ipcc_ar4_CM2.0_R2_20C3M-0_annual_ocean_tripolar_18610101-20001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_ec86_726d_7fa4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_ec86_726d_7fa4&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_ec86_726d_7fa4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_490f_cabb_302e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_490f_cabb_302e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_gfdl_490f_cabb_302e/request", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ocean, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ocean tripolar vectors, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ocean annual, ipcc ar4 20C3M-0 annual 18610101-20001231, CM2Q-d2 1861-2000-AllForc h2 ocean tripolar annual all vars 18610101-20001231 [lat][lon]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.0, 20C3M (run 2) climate of the 20th Century experiment (20C3M) output for Intergovernmental Panel on Climate Change (IPCC) Fourth Assessment Report (AR4) and US Climate Change Science Program (CCSP). GFDL experiment name = CM2Q-d2_1861-2000-AllForc_h2. Program for Climate Model Diagnosis and Intercomparison (PCMDI) experiment name = 20C3M (run2). Initial conditions for this experiment were taken from 1 January of year 101 of the 1860 control model experiment named CM2Q_Control-1860_d2. Several forcing agents varied during the 140 year duration of the CM2Q-d2_1861-2000-AllForc_h2 experiment in a manner based upon observations and reconstructions for the late 19th and 20th centuries. The time varying forcing agents were atmospheric CO2, CH4, N2O, halons, tropospheric and stratospheric O3, anthropogenic tropospheric sulfates, black and organic carbon, volcanic aerosols, solar irradiance, and the distribution of land cover types. The direct effect of tropospheric aerosols is calculated by the model, but not the indirect effects.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ngeolat (geographical latitude at velocity cell center, degrees_north)\ncell_area (velocity cell area, m2)\ngeolon (geographical longitude at velocity cell center, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_490f_cabb_302e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_490f_cabb_302e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_490f_cabb_302e/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/ipcc_ar4_CM2.0_R2_20C3M-0_annual_ocean_tripolar_18610101-20001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_490f_cabb_302e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_490f_cabb_302e&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_490f_cabb_302e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_1bab_e6ea_9e9a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_1bab_e6ea_9e9a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_gfdl_1bab_e6ea_9e9a/request", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ocean, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ocean tripolar vectors, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ocean annual, ipcc ar4 20C3M-0 annual 18610101-20001231, CM2Q-d2 1861-2000-AllForc h2 ocean tripolar annual all vars 18610101-20001231 [lat_vertex][lon_vertex]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.0, 20C3M (run 2) climate of the 20th Century experiment (20C3M) output for Intergovernmental Panel on Climate Change (IPCC) Fourth Assessment Report (AR4) and US Climate Change Science Program (CCSP). GFDL experiment name = CM2Q-d2_1861-2000-AllForc_h2. Program for Climate Model Diagnosis and Intercomparison (PCMDI) experiment name = 20C3M (run2). Initial conditions for this experiment were taken from 1 January of year 101 of the 1860 control model experiment named CM2Q_Control-1860_d2. Several forcing agents varied during the 140 year duration of the CM2Q-d2_1861-2000-AllForc_h2 experiment in a manner based upon observations and reconstructions for the late 19th and 20th centuries. The time varying forcing agents were atmospheric CO2, CH4, N2O, halons, tropospheric and stratospheric O3, anthropogenic tropospheric sulfates, black and organic carbon, volcanic aerosols, solar irradiance, and the distribution of land cover types. The direct effect of tropospheric aerosols is calculated by the model, but not the indirect effects.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ngeolat_vertex (geographical latitude at velocity cell edges, degrees_north)\ngeolon_vertex (geographical longitude at velocity cell edges, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_1bab_e6ea_9e9a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_1bab_e6ea_9e9a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_1bab_e6ea_9e9a/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/ipcc_ar4_CM2.0_R2_20C3M-0_annual_ocean_tripolar_18610101-20001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_1bab_e6ea_9e9a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_1bab_e6ea_9e9a&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_1bab_e6ea_9e9a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_84ca_e7e2_374e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_84ca_e7e2_374e.graph", "", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ocean, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ocean tripolar vectors, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ocean monthly, ipcc ar4 20C3M-0 monthly 18610101-20001231, CM2Q-d2 1861-2000-AllForc h2 ocean tripolar monthly all vars 18610101-20001231 [depth][lat][lon]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.0, 20C3M (run 2) climate of the 20th Century experiment (20C3M) output for Intergovernmental Panel on Climate Change (IPCC) Fourth Assessment Report (AR4) and US Climate Change Science Program (CCSP). GFDL experiment name = CM2Q-d2_1861-2000-AllForc_h2. Program for Climate Model Diagnosis and Intercomparison (PCMDI) experiment name = 20C3M (run2). Initial conditions for this experiment were taken from 1 January of year 101 of the 1860 control model experiment named CM2Q_Control-1860_d2. Several forcing agents varied during the 140 year duration of the CM2Q-d2_1861-2000-AllForc_h2 experiment in a manner based upon observations and reconstructions for the late 19th and 20th centuries. The time varying forcing agents were atmospheric CO2, CH4, N2O, halons, tropospheric and stratospheric O3, anthropogenic tropospheric sulfates, black and organic carbon, volcanic aerosols, solar irradiance, and the distribution of land cover types. The direct effect of tropospheric aerosols is calculated by the model, but not the indirect effects.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [depth][latitude][longitude]):\ncell_volume (velocity cell volume, m3)\nz (depth at velocity cell center, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_84ca_e7e2_374e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_84ca_e7e2_374e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_84ca_e7e2_374e/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/ipcc_ar4_CM2.0_R2_20C3M-0_monthly_ocean_tripolar_18610101-20001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_84ca_e7e2_374e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_84ca_e7e2_374e&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_84ca_e7e2_374e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_a4e1_26da_57a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_a4e1_26da_57a1.graph", "", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ocean, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ocean tripolar vectors, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ocean monthly, ipcc ar4 20C3M-0 monthly 18610101-20001231, CM2Q-d2 1861-2000-AllForc h2 ocean tripolar monthly all vars 18610101-20001231 [depth_vertex][lat][lon]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.0, 20C3M (run 2) climate of the 20th Century experiment (20C3M) output for Intergovernmental Panel on Climate Change (IPCC) Fourth Assessment Report (AR4) and US Climate Change Science Program (CCSP). GFDL experiment name = CM2Q-d2_1861-2000-AllForc_h2. Program for Climate Model Diagnosis and Intercomparison (PCMDI) experiment name = 20C3M (run2). Initial conditions for this experiment were taken from 1 January of year 101 of the 1860 control model experiment named CM2Q_Control-1860_d2. Several forcing agents varied during the 140 year duration of the CM2Q-d2_1861-2000-AllForc_h2 experiment in a manner based upon observations and reconstructions for the late 19th and 20th centuries. The time varying forcing agents were atmospheric CO2, CH4, N2O, halons, tropospheric and stratospheric O3, anthropogenic tropospheric sulfates, black and organic carbon, volcanic aerosols, solar irradiance, and the distribution of land cover types. The direct effect of tropospheric aerosols is calculated by the model, but not the indirect effects.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [depth][latitude][longitude]):\nz_vertex (depth edges at velocity cell center, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_a4e1_26da_57a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_a4e1_26da_57a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_a4e1_26da_57a1/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/ipcc_ar4_CM2.0_R2_20C3M-0_monthly_ocean_tripolar_18610101-20001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_a4e1_26da_57a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_a4e1_26da_57a1&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_a4e1_26da_57a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_2ee2_93ff_1978", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_2ee2_93ff_1978.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_gfdl_2ee2_93ff_1978/request", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ocean, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ocean tripolar vectors, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ocean monthly, ipcc ar4 20C3M-0 monthly 18610101-20001231, CM2Q-d2 1861-2000-AllForc h2 ocean tripolar monthly all vars 18610101-20001231 [lat][lon]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.0, 20C3M (run 2) climate of the 20th Century experiment (20C3M) output for Intergovernmental Panel on Climate Change (IPCC) Fourth Assessment Report (AR4) and US Climate Change Science Program (CCSP). GFDL experiment name = CM2Q-d2_1861-2000-AllForc_h2. Program for Climate Model Diagnosis and Intercomparison (PCMDI) experiment name = 20C3M (run2). Initial conditions for this experiment were taken from 1 January of year 101 of the 1860 control model experiment named CM2Q_Control-1860_d2. Several forcing agents varied during the 140 year duration of the CM2Q-d2_1861-2000-AllForc_h2 experiment in a manner based upon observations and reconstructions for the late 19th and 20th centuries. The time varying forcing agents were atmospheric CO2, CH4, N2O, halons, tropospheric and stratospheric O3, anthropogenic tropospheric sulfates, black and organic carbon, volcanic aerosols, solar irradiance, and the distribution of land cover types. The direct effect of tropospheric aerosols is calculated by the model, but not the indirect effects.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ncell_area (velocity cell area, m2)\ngeolat (geographical latitude at velocity cell center, degrees_north)\ngeolon (geographical longitude at velocity cell center, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_2ee2_93ff_1978_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_2ee2_93ff_1978_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_2ee2_93ff_1978/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/ipcc_ar4_CM2.0_R2_20C3M-0_monthly_ocean_tripolar_18610101-20001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_2ee2_93ff_1978.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_2ee2_93ff_1978&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_2ee2_93ff_1978"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_8a90_33ac_4c3c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_8a90_33ac_4c3c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_gfdl_8a90_33ac_4c3c/request", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ocean, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ocean tripolar vectors, ipcc ar4 CM2Q-d2 1861-2000-AllForc h2 ocean monthly, ipcc ar4 20C3M-0 monthly 18610101-20001231, CM2Q-d2 1861-2000-AllForc h2 ocean tripolar monthly all vars 18610101-20001231 [lat_vertex][lon_vertex]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.0, 20C3M (run 2) climate of the 20th Century experiment (20C3M) output for Intergovernmental Panel on Climate Change (IPCC) Fourth Assessment Report (AR4) and US Climate Change Science Program (CCSP). GFDL experiment name = CM2Q-d2_1861-2000-AllForc_h2. Program for Climate Model Diagnosis and Intercomparison (PCMDI) experiment name = 20C3M (run2). Initial conditions for this experiment were taken from 1 January of year 101 of the 1860 control model experiment named CM2Q_Control-1860_d2. Several forcing agents varied during the 140 year duration of the CM2Q-d2_1861-2000-AllForc_h2 experiment in a manner based upon observations and reconstructions for the late 19th and 20th centuries. The time varying forcing agents were atmospheric CO2, CH4, N2O, halons, tropospheric and stratospheric O3, anthropogenic tropospheric sulfates, black and organic carbon, volcanic aerosols, solar irradiance, and the distribution of land cover types. The direct effect of tropospheric aerosols is calculated by the model, but not the indirect effects.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ngeolat_vertex (geographical latitude at velocity cell edges, degrees_north)\ngeolon_vertex (geographical longitude at velocity cell edges, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_gfdl_8a90_33ac_4c3c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_gfdl_8a90_33ac_4c3c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_8a90_33ac_4c3c/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/ipcc_ar4_CM2.0_R2_20C3M-0_monthly_ocean_tripolar_18610101-20001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_8a90_33ac_4c3c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_8a90_33ac_4c3c&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_8a90_33ac_4c3c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_0176_31ff_516e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_0176_31ff_516e.graph", "", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, ipcc ar4 CM2Q-d2 1861-2000-AllForc h3 atmos, ipcc ar4 CM2Q-d2 1861-2000-AllForc h3 atmos annual, ipcc ar4 20C3M-0 annual 18610101-20001231, CM2Q-d2 1861-2000-AllForc h3 atmos annual all vars 18610101-20001231 [lev]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.0, 20C3M (run 3) climate of the 20th Century experiment (20C3M) output for Intergovernmental Panel on Climate Change (IPCC) Fourth Assessment Report (AR4) and US Climate Change Science Program (CCSP). GFDL experiment name = CM2Q-d2_1861-2000-AllForc_h3. Program for Climate Model Diagnosis and Intercomparison (PCMDI) experiment name = 20C3M (run3). Initial conditions for this experiment were taken from 1 January of year 151 of the 1860 control model experiment named CM2Q_Control-1860_d2. Several forcing agents varied during the 140 year duration of the CM2Q-d2_1861-2000-AllForc_h3 experiment in a manner based upon observations and reconstructions for the late 19th and 20th centuries. The time varying forcing agents were atmospheric CO2, CH4, N2O, halons, tropospheric and stratospheric O3, anthropogenic tropospheric sulfates, black and organic carbon, volcanic aerosols, solar irradiance, and the distribution of land cover types. The direct effect of tropospheric aerosols is calculated by the model, but not the indirect effects.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [lev]):\na (hybrid sigma coordinate A coefficient for layer)\nb (hybrid sigma coordinate B coefficient for layer)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_0176_31ff_516e/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/ipcc_ar4_CM2.0_R3_20C3M-0_annual_atmos_18610101-20001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_0176_31ff_516e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_0176_31ff_516e&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_0176_31ff_516e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_7831_8157_7745", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_gfdl_7831_8157_7745.graph", "", "", "public", "THREDDS Server Default Catalog : You must change this to fit your server!, ipcc ar4 CM2Q-d2 1861-2000-AllForc h3 atmos, ipcc ar4 CM2Q-d2 1861-2000-AllForc h3 atmos monthly, ipcc ar4 20C3M-0 monthly 18610101-20001231, CM2Q-d2 1861-2000-AllForc h3 atmos monthly all vars 18610101-20001231 [lev]", "Geophysical Fluid Dynamics Laboratory (GFDL) CM2.0, 20C3M (run 3) climate of the 20th Century experiment (20C3M) output for Intergovernmental Panel on Climate Change (IPCC) Fourth Assessment Report (AR4) and US Climate Change Science Program (CCSP). GFDL experiment name = CM2Q-d2_1861-2000-AllForc_h3. Program for Climate Model Diagnosis and Intercomparison (PCMDI) experiment name = 20C3M (run3). Initial conditions for this experiment were taken from 1 January of year 151 of the 1860 control model experiment named CM2Q_Control-1860_d2. Several forcing agents varied during the 140 year duration of the CM2Q-d2_1861-2000-AllForc_h3 experiment in a manner based upon observations and reconstructions for the late 19th and 20th centuries. The time varying forcing agents were atmospheric CO2, CH4, N2O, halons, tropospheric and stratospheric O3, anthropogenic tropospheric sulfates, black and organic carbon, volcanic aerosols, solar irradiance, and the distribution of land cover types. The direct effect of tropospheric aerosols is calculated by the model, but not the indirect effects.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [lev]):\na (hybrid sigma coordinate A coefficient for layer)\nb (hybrid sigma coordinate B coefficient for layer)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_gfdl_7831_8157_7745/index.json", "http://data1.gfdl.noaa.gov:8380/thredds/dodsC/ipcc_ar4_CM2.0_R3_20C3M-0_monthly_atmos_18610101-20001231.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_gfdl_7831_8157_7745.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_gfdl_7831_8157_7745&showErrors=false&email=", "NOAA GFDL", "noaa_gfdl_7831_8157_7745"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/tide_bi_elev", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/tide_bi_elev.graph", "", "", "public", "Tide Model for the Big Island of Hawaii: Tidal Elevation", "Tide model for the Big Island of Hawaii. The model is based on climatological stratification, but 64 harmonics are used to model the full-depth baroclinic tides. The model has been run at 1km resolution, hourly, through the end of 2019. Due to computing limitations, the model grid is divided into two pieces, one for the Northwestern main Hawaiian Islands (Kauai, Oahu, Maui) and the other for the Big Island. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use this output with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssh (tidal elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/tide_bi_elev_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/tide_bi_elev_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/tide_bi_elev/index.json", "http://apdrc.soest.hawaii.edu/doc/carteretal_revised_pp.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/tide_bi_elev.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=tide_bi_elev&showErrors=false&email=", "University of Hawaii", "tide_bi_elev"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/tide_bi", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/tide_bi.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/tide_bi/request", "", "public", "Tide Model for the Big Island of Hawaii: Tidal Velocity", "Tide model for the Big Island of Hawaii. The model is based on climatological stratification, but 64 harmonics are used to model the full-depth baroclinic tides. The model has been run at 1km resolution, hourly, through the end of 2019. Due to computing limitations, the model grid is divided into two pieces, one for the Northwestern main Hawaiian Islands (Kauai, Oahu, Maui) and the other for the Big Island. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use this output with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth_percent][latitude][longitude]):\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/tide_bi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/tide_bi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/tide_bi/index.json", "http://apdrc.soest.hawaii.edu/doc/carteretal_revised_pp.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/tide_bi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=tide_bi&showErrors=false&email=", "University of Hawaii", "tide_bi"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/tide_mhi_elev", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/tide_mhi_elev.graph", "", "", "public", "Tide Model for the Hawaiian Islands: Main NW Islands: Tidal Elevation", "Tide model for the Hawaiian Islands. The model is based on climatological stratification, but 64 harmonics are used to model the full-depth baroclinic tides. The model has been run at 1km resolution, hourly, through the end of 2019. Due to computing limitations, the model grid is divided into two pieces, one for the Northwestern main Hawaiian Islands (Kauai, Oahu, Maui) and the other for the Big Island. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use this output with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssh (tidal elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/tide_mhi_elev_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/tide_mhi_elev_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/tide_mhi_elev/index.json", "http://apdrc.soest.hawaii.edu/doc/carteretal_revised_pp.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/tide_mhi_elev.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=tide_mhi_elev&showErrors=false&email=", "University of Hawaii", "tide_mhi_elev"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/tide_mhi", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/tide_mhi.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/tide_mhi/request", "", "public", "Tide Model for the Hawaiian Islands: Main NW Islands: Tidal Velocity", "Tide model for the Hawaiian Islands. The model is based on climatological stratification, but 64 harmonics are used to model the full-depth baroclinic tides. The model has been run at 1km resolution, hourly, through the end of 2019. Due to computing limitations, the model grid is divided into two pieces, one for the Northwestern main Hawaiian Islands (Kauai, Oahu, Maui) and the other for the Big Island. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use this output with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth_percent][latitude][longitude]):\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/tide_mhi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/tide_mhi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/tide_mhi/index.json", "http://apdrc.soest.hawaii.edu/doc/carteretal_revised_pp.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/tide_mhi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=tide_mhi&showErrors=false&email=", "University of Hawaii", "tide_mhi"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/tide_pac_elev", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/tide_pac_elev.graph", "", "", "public", "Tide Model for the Pacific Ocean (Barotropic): Tidal Elevation", "Barotropic tide model for the Pacific Ocean. The model is based on harmonics distributed by Oregon State University (OSU) and assimilates satellite altimetry data from TOPEX/Poseidon. It was generated using OSU Tidal Prediction Software (OTPS), modified locally by J. Potemra, using barotropic inverse tidal solutions from OSU. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use this output with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssh (tidal elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/tide_pac_elev_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/tide_pac_elev_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/tide_pac_elev/index.json", "http://volkov.oce.orst.edu/tides/PO.html", "http://upwell.pfeg.noaa.gov/erddap/rss/tide_pac_elev.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=tide_pac_elev&showErrors=false&email=", "Oregon State University", "tide_pac_elev"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/tide_pac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/tide_pac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/tide_pac/request", "", "public", "Tide Model for the Pacific Ocean (Barotropic): Tidal Velocity", "Barotropic tide model for the Pacific Ocean. The model is based on harmonics distributed by Oregon State University (OSU) and assimilates satellite altimetry data from TOPEX/Poseidon. It was generated using OSU Tidal Prediction Software (OTPS), modified locally by J. Potemra, using barotropic inverse tidal solutions from OSU. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use this output with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/tide_pac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/tide_pac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/tide_pac/index.json", "http://volkov.oce.orst.edu/tides/PO.html", "http://upwell.pfeg.noaa.gov/erddap/rss/tide_pac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=tide_pac&showErrors=false&email=", "Oregon State University", "tide_pac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_61b6_d019_cc87", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_61b6_d019_cc87.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_61b6_d019_cc87/request", "", "public", "Toke Point, Washington Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, TokePointWA A), 0.02\u00b0", "Toke Point, Washington Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_61b6_d019_cc87_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_61b6_d019_cc87_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_61b6_d019_cc87/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_61b6_d019_cc87.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_61b6_d019_cc87&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_61b6_d019_cc87"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e10d_4c42_6aec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e10d_4c42_6aec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e10d_4c42_6aec/request", "", "public", "Toke Point, Washington Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, TokePointWA B), 0.0033333334\u00b0", "Toke Point, Washington Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e10d_4c42_6aec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e10d_4c42_6aec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e10d_4c42_6aec/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e10d_4c42_6aec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e10d_4c42_6aec&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_e10d_4c42_6aec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f376_46c3_f48a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f376_46c3_f48a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f376_46c3_f48a/request", "", "public", "Toke Point, Washington Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, TokePointWA C), 5.5555557E-4\u00b0", "Toke Point, Washington Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f376_46c3_f48a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f376_46c3_f48a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f376_46c3_f48a/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f376_46c3_f48a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f376_46c3_f48a&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_f376_46c3_f48a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f508_116b_29d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f508_116b_29d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f508_116b_29d9/request", "", "public", "Tomales Bay (P110) Bathymetric Digital Elevation Model (tomales bay P110 2018), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f508_116b_29d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f508_116b_29d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f508_116b_29d9/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f508_116b_29d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f508_116b_29d9&showErrors=false&email=", "NOAA", "noaa_ngdc_f508_116b_29d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_87d6_0ee5_986b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_87d6_0ee5_986b.graph", "", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST MID IR 8DAY 4KM DAYTIME V2014.0 [rgb][eightbitcolor]", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) MID InfraRed (IR) 8DAY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_87d6_0ee5_986b/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_87d6_0ee5_986b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_87d6_0ee5_986b&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_87d6_0ee5_986b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_2a85_03ac_f194", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_2a85_03ac_f194.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_2a85_03ac_f194/request", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST MID IR 8DAY 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) MID InfraRed (IR) 8DAY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst4 (4um Sea Surface Temperature, degree_C)\nqual_sst4 (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_2a85_03ac_f194_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_2a85_03ac_f194_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_2a85_03ac_f194/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_2a85_03ac_f194.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_2a85_03ac_f194&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_2a85_03ac_f194"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_5d21_2769_f268", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_5d21_2769_f268.graph", "", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST MID IR ANNUAL 4KM DAYTIME V2014.0 [rgb][eightbitcolor]", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) MID InfraRed (IR) ANNUAL 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_5d21_2769_f268/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_5d21_2769_f268.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_5d21_2769_f268&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_5d21_2769_f268"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_2e88_26ef_5c9b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_2e88_26ef_5c9b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_2e88_26ef_5c9b/request", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST MID IR ANNUAL 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-2016", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) MID InfraRed (IR) ANNUAL 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst4 (4um Sea Surface Temperature, degree_C)\nqual_sst4 (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_2e88_26ef_5c9b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_2e88_26ef_5c9b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_2e88_26ef_5c9b/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_2e88_26ef_5c9b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_2e88_26ef_5c9b&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_2e88_26ef_5c9b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_777d_7c75_5168", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_777d_7c75_5168.graph", "", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST MID IR DAILY 4KM DAYTIME V2014.0 [rgb][eightbitcolor]", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) MID InfraRed (IR) DAILY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_777d_7c75_5168/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_777d_7c75_5168.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_777d_7c75_5168&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_777d_7c75_5168"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_53f9_5343_1931", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_53f9_5343_1931.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_53f9_5343_1931/request", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST MID IR DAILY 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) MID InfraRed (IR) DAILY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst4 (4um Sea Surface Temperature, degree_C)\nqual_sst4 (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_53f9_5343_1931_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_53f9_5343_1931_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_53f9_5343_1931/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_53f9_5343_1931.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_53f9_5343_1931&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_53f9_5343_1931"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3423_56fe_bd88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3423_56fe_bd88.graph", "", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST MID IR MONTHLY 4KM DAYTIME V2014.0 [rgb][eightbitcolor]", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) MID InfraRed (IR) MONTHLY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_3423_56fe_bd88/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_3423_56fe_bd88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_3423_56fe_bd88&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_3423_56fe_bd88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_051d_ad32_c916", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_051d_ad32_c916.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_051d_ad32_c916/request", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST MID IR MONTHLY 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) MID InfraRed (IR) MONTHLY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst4 (4um Sea Surface Temperature, degree_C)\nqual_sst4 (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_051d_ad32_c916_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_051d_ad32_c916_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_051d_ad32_c916/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_051d_ad32_c916.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_051d_ad32_c916&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_051d_ad32_c916"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_22ef_c55a_7422", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_22ef_c55a_7422.graph", "", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST THERMAL 8DAY 4KM DAYTIME V2014.0 [rgb][eightbitcolor]", "Moderate Resolution Imaging Spectroradiometer on Aqua (MODISA) Level-3 Standard Mapped Image (Top Dataset, 4km, MODIS AQUA L3 Sea Surface Temperature (SST) THERMAL 8DAY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_22ef_c55a_7422/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_22ef_c55a_7422.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_22ef_c55a_7422&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_22ef_c55a_7422"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_b4ab_c73f_33e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_b4ab_c73f_33e8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_b4ab_c73f_33e8/request", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST THERMAL 8DAY 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "Moderate Resolution Imaging Spectroradiometer on Aqua (MODISA) Level-3 Standard Mapped Image (Top Dataset, 4km, MODIS AQUA L3 Sea Surface Temperature (SST) THERMAL 8DAY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_b4ab_c73f_33e8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_b4ab_c73f_33e8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_b4ab_c73f_33e8/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_b4ab_c73f_33e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_b4ab_c73f_33e8&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_b4ab_c73f_33e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_23f6_be50_ae1c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_23f6_be50_ae1c.graph", "", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST THERMAL 8DAY 4KM NIGHTTIME V2014.0 [rgb][eightbitcolor]", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL 8DAY 4KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_23f6_be50_ae1c/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_23f6_be50_ae1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_23f6_be50_ae1c&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_23f6_be50_ae1c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e08f_448c_4e5d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e08f_448c_4e5d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_e08f_448c_4e5d/request", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST THERMAL 8DAY 4KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL 8DAY 4KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_e08f_448c_4e5d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_e08f_448c_4e5d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_e08f_448c_4e5d/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_e08f_448c_4e5d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_e08f_448c_4e5d&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_e08f_448c_4e5d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_209c_4eec_d96c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_209c_4eec_d96c.graph", "", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST THERMAL ANNUAL 4KM DAYTIME V2014.0 [rgb][eightbitcolor]", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL ANNUAL 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_209c_4eec_d96c/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_209c_4eec_d96c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_209c_4eec_d96c&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_209c_4eec_d96c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_d8aa_7ebc_8922", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_d8aa_7ebc_8922.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_d8aa_7ebc_8922/request", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST THERMAL ANNUAL 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-2017", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL ANNUAL 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_d8aa_7ebc_8922_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_d8aa_7ebc_8922_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_d8aa_7ebc_8922/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_d8aa_7ebc_8922.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_d8aa_7ebc_8922&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_d8aa_7ebc_8922"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_20e3_d3e4_7a36", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_20e3_d3e4_7a36.graph", "", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST THERMAL ANNUAL 4KM NIGHTTIME V2014.0 [rgb][eightbitcolor]", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL ANNUAL 4KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_20e3_d3e4_7a36/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_20e3_d3e4_7a36.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_20e3_d3e4_7a36&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_20e3_d3e4_7a36"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_310d_e5b4_3156", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_310d_e5b4_3156.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_310d_e5b4_3156/request", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST THERMAL ANNUAL 4KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-2016", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL ANNUAL 4KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_310d_e5b4_3156_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_310d_e5b4_3156_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_310d_e5b4_3156/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_310d_e5b4_3156.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_310d_e5b4_3156&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_310d_e5b4_3156"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_83ca_124b_0b66", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_83ca_124b_0b66.graph", "", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST THERMAL DAILY 4KM DAYTIME V2014.0 [rgb][eightbitcolor]", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL DAILY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_83ca_124b_0b66/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_83ca_124b_0b66.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_83ca_124b_0b66&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_83ca_124b_0b66"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_f2cd_5deb_e97b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_f2cd_5deb_e97b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_f2cd_5deb_e97b/request", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST THERMAL DAILY 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL DAILY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_f2cd_5deb_e97b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_f2cd_5deb_e97b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_f2cd_5deb_e97b/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_f2cd_5deb_e97b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_f2cd_5deb_e97b&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_f2cd_5deb_e97b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_7179_0446_5a5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_7179_0446_5a5f.graph", "", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST THERMAL DAILY 4KM NIGHTTIME V2014.0 [rgb][eightbitcolor]", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL DAILY 4KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_7179_0446_5a5f/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_7179_0446_5a5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_7179_0446_5a5f&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_7179_0446_5a5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_4c48_b3e2_178e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_4c48_b3e2_178e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_4c48_b3e2_178e/request", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST THERMAL DAILY 4KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL DAILY 4KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_4c48_b3e2_178e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_4c48_b3e2_178e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_4c48_b3e2_178e/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_4c48_b3e2_178e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_4c48_b3e2_178e&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_4c48_b3e2_178e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_92ff_1762_b2fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_92ff_1762_b2fc.graph", "", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST THERMAL MONTHLY 4KM DAYTIME V2014.0 [rgb][eightbitcolor]", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL MONTHLY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_92ff_1762_b2fc/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_92ff_1762_b2fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_92ff_1762_b2fc&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_92ff_1762_b2fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_dc28_e756_4821", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_dc28_e756_4821.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_dc28_e756_4821/request", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST THERMAL MONTHLY 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL MONTHLY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_dc28_e756_4821_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_dc28_e756_4821_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_dc28_e756_4821/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_dc28_e756_4821.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_dc28_e756_4821&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_dc28_e756_4821"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_39f9_eb69_a51e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_39f9_eb69_a51e.graph", "", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST THERMAL MONTHLY 4KM NIGHTTIME V2014.0 [rgb][eightbitcolor]", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL MONTHLY 4KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_39f9_eb69_a51e/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_39f9_eb69_a51e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_39f9_eb69_a51e&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_39f9_eb69_a51e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_4e8f_e3da_ffb3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_4e8f_e3da_ffb3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_4e8f_e3da_ffb3/request", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST THERMAL MONTHLY 4KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL MONTHLY 4KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_4e8f_e3da_ffb3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_4e8f_e3da_ffb3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_4e8f_e3da_ffb3/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_4e8f_e3da_ffb3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_4e8f_e3da_ffb3&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_4e8f_e3da_ffb3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_09e8_8e4b_0523", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_09e8_8e4b_0523.graph", "", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST MID IR 8DAY 4KM DAYTIME V2014.0 [rgb][eightbitcolor]", "Moderate Resolution Imaging Spectroradiometer (MODIS) Level-3 Standard Mapped Image (Top Dataset, 4km, MODIS TERRA L3 Sea Surface Temperature (SST) MID InfraRed (IR) 8DAY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_09e8_8e4b_0523/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_09e8_8e4b_0523.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_09e8_8e4b_0523&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_09e8_8e4b_0523"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_0df0_6947_4308", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_0df0_6947_4308.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_0df0_6947_4308/request", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST MID IR 8DAY 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "Moderate Resolution Imaging Spectroradiometer (MODIS) Level-3 Standard Mapped Image (Top Dataset, 4km, MODIS TERRA L3 Sea Surface Temperature (SST) MID InfraRed (IR) 8DAY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst4 (4um Sea Surface Temperature, degree_C)\nqual_sst4 (Flag Values, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_0df0_6947_4308_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_0df0_6947_4308_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_0df0_6947_4308/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_0df0_6947_4308.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_0df0_6947_4308&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_0df0_6947_4308"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_d8bf_902e_234f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_d8bf_902e_234f.graph", "", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST MID IR ANNUAL 4KM DAYTIME V2014.0 [rgb][eightbitcolor]", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) MID InfraRed (IR) ANNUAL 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_d8bf_902e_234f/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_d8bf_902e_234f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_d8bf_902e_234f&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_d8bf_902e_234f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_4c0b_aa13_4964", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_4c0b_aa13_4964.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_4c0b_aa13_4964/request", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST MID IR ANNUAL 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-2016", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) MID InfraRed (IR) ANNUAL 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst4 (4um Sea Surface Temperature, degree_C)\nqual_sst4 (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_4c0b_aa13_4964_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_4c0b_aa13_4964_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_4c0b_aa13_4964/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_4c0b_aa13_4964.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_4c0b_aa13_4964&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_4c0b_aa13_4964"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_db32_d998_1401", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_db32_d998_1401.graph", "", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST MID IR DAILY 4KM DAYTIME V2014.0 [rgb][eightbitcolor]", "Moderate Resolution Imaging Spectroradiometer (MODIS) Level-3 Standard Mapped Image (Top Dataset, 4km, MODIS TERRA L3 Sea Surface Temperature (SST) MID InfraRed (IR) DAILY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_db32_d998_1401/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_db32_d998_1401.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_db32_d998_1401&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_db32_d998_1401"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_c854_c14a_cdc3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_c854_c14a_cdc3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_c854_c14a_cdc3/request", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST MID IR DAILY 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "Moderate Resolution Imaging Spectroradiometer (MODIS) Level-3 Standard Mapped Image (Top Dataset, 4km, MODIS TERRA L3 Sea Surface Temperature (SST) MID InfraRed (IR) DAILY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst4 (4um Sea Surface Temperature, degree_C)\nqual_sst4 (Flag Values, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_c854_c14a_cdc3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_c854_c14a_cdc3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_c854_c14a_cdc3/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_c854_c14a_cdc3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_c854_c14a_cdc3&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_c854_c14a_cdc3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_cb03_61d1_c928", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_cb03_61d1_c928.graph", "", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST MID IR MONTHLY 4KM DAYTIME V2014.0 [rgb][eightbitcolor]", "Moderate Resolution Imaging Spectroradiometer (MODIS) Level-3 Standard Mapped Image (Top Dataset, 4km, MODIS TERRA L3 Sea Surface Temperature (SST) MID InfraRed (IR) MONTHLY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_cb03_61d1_c928/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_cb03_61d1_c928.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_cb03_61d1_c928&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_cb03_61d1_c928"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_c752_6b53_9712", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_c752_6b53_9712.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_c752_6b53_9712/request", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST MID IR MONTHLY 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "Moderate Resolution Imaging Spectroradiometer (MODIS) Level-3 Standard Mapped Image (Top Dataset, 4km, MODIS TERRA L3 Sea Surface Temperature (SST) MID InfraRed (IR) MONTHLY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst4 (4um Sea Surface Temperature, degree_C)\nqual_sst4 (Flag Values, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_c752_6b53_9712_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_c752_6b53_9712_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_c752_6b53_9712/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_c752_6b53_9712.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_c752_6b53_9712&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_c752_6b53_9712"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_46f7_9fff_31e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_46f7_9fff_31e5.graph", "", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST THERMAL 8DAY 4KM DAYTIME V2014.0 [rgb][eightbitcolor]", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL 8DAY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_46f7_9fff_31e5/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_46f7_9fff_31e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_46f7_9fff_31e5&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_46f7_9fff_31e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_94f4_9384_aae7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_94f4_9384_aae7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_94f4_9384_aae7/request", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST THERMAL 8DAY 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL 8DAY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_94f4_9384_aae7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_94f4_9384_aae7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_94f4_9384_aae7/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_94f4_9384_aae7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_94f4_9384_aae7&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_94f4_9384_aae7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_8d47_128b_22bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_8d47_128b_22bd.graph", "", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST THERMAL 8DAY 4KM NIGHTTIME V2014.0 [rgb][eightbitcolor]", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL 8DAY 4KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_8d47_128b_22bd/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_8d47_128b_22bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_8d47_128b_22bd&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_8d47_128b_22bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_6f2f_2511_8a27", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_6f2f_2511_8a27.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_6f2f_2511_8a27/request", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST THERMAL 8DAY 4KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL 8DAY 4KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_6f2f_2511_8a27_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_6f2f_2511_8a27_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_6f2f_2511_8a27/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_6f2f_2511_8a27.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_6f2f_2511_8a27&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_6f2f_2511_8a27"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_8806_a59f_d05c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_8806_a59f_d05c.graph", "", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST THERMAL ANNUAL 4KM DAYTIME V2014.0 [rgb][eightbitcolor]", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL ANNUAL 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_8806_a59f_d05c/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_8806_a59f_d05c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_8806_a59f_d05c&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_8806_a59f_d05c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_59ff_6a43_fcc4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_59ff_6a43_fcc4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_59ff_6a43_fcc4/request", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST THERMAL ANNUAL 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-2017", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL ANNUAL 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_59ff_6a43_fcc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_59ff_6a43_fcc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_59ff_6a43_fcc4/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_59ff_6a43_fcc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_59ff_6a43_fcc4&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_59ff_6a43_fcc4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_8ebd_51cf_4b80", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_8ebd_51cf_4b80.graph", "", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST THERMAL ANNUAL 4KM NIGHTTIME V2014.0 [rgb][eightbitcolor]", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL ANNUAL 4KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_8ebd_51cf_4b80/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_8ebd_51cf_4b80.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_8ebd_51cf_4b80&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_8ebd_51cf_4b80"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_5199_cd28_811c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_5199_cd28_811c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_5199_cd28_811c/request", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST THERMAL ANNUAL 4KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-2016", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL ANNUAL 4KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_5199_cd28_811c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_5199_cd28_811c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_5199_cd28_811c/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_5199_cd28_811c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_5199_cd28_811c&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_5199_cd28_811c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_b3c9_f0ec_cc4a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_b3c9_f0ec_cc4a.graph", "", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST THERMAL DAILY 4KM DAYTIME V2014.0 [rgb][eightbitcolor]", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL DAILY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_b3c9_f0ec_cc4a/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_b3c9_f0ec_cc4a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_b3c9_f0ec_cc4a&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_b3c9_f0ec_cc4a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_bab1_4417_2cf7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_bab1_4417_2cf7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_bab1_4417_2cf7/request", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST THERMAL DAILY 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL DAILY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_bab1_4417_2cf7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_bab1_4417_2cf7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_bab1_4417_2cf7/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_bab1_4417_2cf7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_bab1_4417_2cf7&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_bab1_4417_2cf7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_1274_4810_88c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_1274_4810_88c9.graph", "", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST THERMAL DAILY 4KM NIGHTTIME V2014.0 [rgb][eightbitcolor]", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL DAILY 4KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_1274_4810_88c9/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_1274_4810_88c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_1274_4810_88c9&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_1274_4810_88c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3e2a_2b9d_3c49", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3e2a_2b9d_3c49.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_3e2a_2b9d_3c49/request", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST THERMAL DAILY 4KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL DAILY 4KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_3e2a_2b9d_3c49_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_3e2a_2b9d_3c49_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_3e2a_2b9d_3c49/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_3e2a_2b9d_3c49.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_3e2a_2b9d_3c49&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_3e2a_2b9d_3c49"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_6ef8_d856_3d01", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_6ef8_d856_3d01.graph", "", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST THERMAL MONTHLY 4KM DAYTIME V2014.0 [rgb][eightbitcolor]", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL MONTHLY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_6ef8_d856_3d01/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_6ef8_d856_3d01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_6ef8_d856_3d01&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_6ef8_d856_3d01"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_110c_b697_c325", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_110c_b697_c325.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_110c_b697_c325/request", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST THERMAL MONTHLY 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL MONTHLY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_110c_b697_c325_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_110c_b697_c325_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_110c_b697_c325/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_110c_b697_c325.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_110c_b697_c325&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_110c_b697_c325"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_5fc1_f3a6_bff7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_5fc1_f3a6_bff7.graph", "", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST THERMAL MONTHLY 4KM NIGHTTIME V2014.0 [rgb][eightbitcolor]", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL MONTHLY 4KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_5fc1_f3a6_bff7/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_5fc1_f3a6_bff7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_5fc1_f3a6_bff7&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_5fc1_f3a6_bff7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_a625_2d34_f247", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_a625_2d34_f247.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_a625_2d34_f247/request", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST THERMAL MONTHLY 4KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL MONTHLY 4KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_a625_2d34_f247_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_a625_2d34_f247_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_a625_2d34_f247/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_a625_2d34_f247.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_a625_2d34_f247&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_a625_2d34_f247"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_7c60_062e_cf2e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_7c60_062e_cf2e.graph", "", "", "public", "Top Dataset, 9km, MODIS AQUA L3 SST THERMAL 8DAY 9KM DAYTIME V2014.0 [rgb][eightbitcolor]", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL 8DAY 9KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_7c60_062e_cf2e/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_7c60_062e_cf2e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_7c60_062e_cf2e&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_7c60_062e_cf2e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_cdf9_b3a0_ca70", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_cdf9_b3a0_ca70.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_cdf9_b3a0_ca70/request", "", "public", "Top Dataset, 9km, MODIS AQUA L3 SST THERMAL 8DAY 9KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL 8DAY 9KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_cdf9_b3a0_ca70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_cdf9_b3a0_ca70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_cdf9_b3a0_ca70/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_cdf9_b3a0_ca70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_cdf9_b3a0_ca70&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_cdf9_b3a0_ca70"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_fc43_babb_7828", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_fc43_babb_7828.graph", "", "", "public", "Top Dataset, 9km, MODIS AQUA L3 SST THERMAL 8DAY 9KM NIGHTTIME V2014.0 [rgb][eightbitcolor]", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL 8DAY 9KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_fc43_babb_7828/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_fc43_babb_7828.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_fc43_babb_7828&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_fc43_babb_7828"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_ec3f_5369_190c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_ec3f_5369_190c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_ec3f_5369_190c/request", "", "public", "Top Dataset, 9km, MODIS AQUA L3 SST THERMAL 8DAY 9KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL 8DAY 9KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_ec3f_5369_190c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_ec3f_5369_190c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_ec3f_5369_190c/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_ec3f_5369_190c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_ec3f_5369_190c&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_ec3f_5369_190c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_4b6d_ebf0_3720", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_4b6d_ebf0_3720.graph", "", "", "public", "Top Dataset, 9km, MODIS AQUA L3 SST THERMAL ANNUAL 9KM DAYTIME V2014.0 [rgb][eightbitcolor]", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL ANNUAL 9KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_4b6d_ebf0_3720/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_4b6d_ebf0_3720.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_4b6d_ebf0_3720&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_4b6d_ebf0_3720"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_8fa2_3481_dc67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_8fa2_3481_dc67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_8fa2_3481_dc67/request", "", "public", "Top Dataset, 9km, MODIS AQUA L3 SST THERMAL ANNUAL 9KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-2017", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL ANNUAL 9KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_8fa2_3481_dc67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_8fa2_3481_dc67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_8fa2_3481_dc67/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_8fa2_3481_dc67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_8fa2_3481_dc67&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_8fa2_3481_dc67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_6a15_99b0_2f0b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_6a15_99b0_2f0b.graph", "", "", "public", "Top Dataset, 9km, MODIS AQUA L3 SST THERMAL ANNUAL 9KM NIGHTTIME V2014.0 [rgb][eightbitcolor]", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL ANNUAL 9KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_6a15_99b0_2f0b/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_6a15_99b0_2f0b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_6a15_99b0_2f0b&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_6a15_99b0_2f0b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_49d0_2147_eb38", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_49d0_2147_eb38.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_49d0_2147_eb38/request", "", "public", "Top Dataset, 9km, MODIS AQUA L3 SST THERMAL ANNUAL 9KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-2016", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL ANNUAL 9KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_49d0_2147_eb38_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_49d0_2147_eb38_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_49d0_2147_eb38/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_49d0_2147_eb38.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_49d0_2147_eb38&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_49d0_2147_eb38"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_6fc4_929d_93af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_6fc4_929d_93af.graph", "", "", "public", "Top Dataset, 9km, MODIS AQUA L3 SST THERMAL DAILY 9KM DAYTIME V2014.0 [rgb][eightbitcolor]", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL DAILY 9KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_6fc4_929d_93af/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_6fc4_929d_93af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_6fc4_929d_93af&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_6fc4_929d_93af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_4397_0b43_e947", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_4397_0b43_e947.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_4397_0b43_e947/request", "", "public", "Top Dataset, 9km, MODIS AQUA L3 SST THERMAL DAILY 9KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL DAILY 9KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_4397_0b43_e947_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_4397_0b43_e947_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_4397_0b43_e947/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_4397_0b43_e947.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_4397_0b43_e947&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_4397_0b43_e947"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3e39_6dad_f2bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3e39_6dad_f2bd.graph", "", "", "public", "Top Dataset, 9km, MODIS AQUA L3 SST THERMAL DAILY 9KM NIGHTTIME V2014.0 [rgb][eightbitcolor]", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL DAILY 9KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_3e39_6dad_f2bd/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_3e39_6dad_f2bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_3e39_6dad_f2bd&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_3e39_6dad_f2bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_c4b3_dfac_8045", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_c4b3_dfac_8045.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_c4b3_dfac_8045/request", "", "public", "Top Dataset, 9km, MODIS AQUA L3 SST THERMAL DAILY 9KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL DAILY 9KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_c4b3_dfac_8045_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_c4b3_dfac_8045_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_c4b3_dfac_8045/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_c4b3_dfac_8045.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_c4b3_dfac_8045&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_c4b3_dfac_8045"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_c233_a43f_3934", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_c233_a43f_3934.graph", "", "", "public", "Top Dataset, 9km, MODIS AQUA L3 SST THERMAL MONTHLY 9KM DAYTIME V2014.0 [rgb][eightbitcolor]", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL MONTHLY 9KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_c233_a43f_3934/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_c233_a43f_3934.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_c233_a43f_3934&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_c233_a43f_3934"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_711b_7269_78cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_711b_7269_78cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_711b_7269_78cd/request", "", "public", "Top Dataset, 9km, MODIS AQUA L3 SST THERMAL MONTHLY 9KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL MONTHLY 9KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_711b_7269_78cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_711b_7269_78cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_711b_7269_78cd/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_711b_7269_78cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_711b_7269_78cd&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_711b_7269_78cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_2f6f_9d9d_3592", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_2f6f_9d9d_3592.graph", "", "", "public", "Top Dataset, 9km, MODIS AQUA L3 SST THERMAL MONTHLY 9KM NIGHTTIME V2014.0 [rgb][eightbitcolor]", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL MONTHLY 9KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_2f6f_9d9d_3592/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_2f6f_9d9d_3592.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_2f6f_9d9d_3592&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_2f6f_9d9d_3592"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_f129_385a_cf3e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_f129_385a_cf3e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_f129_385a_cf3e/request", "", "public", "Top Dataset, 9km, MODIS AQUA L3 SST THERMAL MONTHLY 9KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL MONTHLY 9KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_f129_385a_cf3e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_f129_385a_cf3e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_f129_385a_cf3e/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_f129_385a_cf3e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_f129_385a_cf3e&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_f129_385a_cf3e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_c249_cf37_0991", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_c249_cf37_0991.graph", "", "", "public", "Top Dataset, 9km, MODIS TERRA L3 SST THERMAL 8DAY 9KM DAYTIME V2014.0 [rgb][eightbitcolor]", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL 8DAY 9KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_c249_cf37_0991/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_c249_cf37_0991.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_c249_cf37_0991&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_c249_cf37_0991"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_cc76_118e_bd9c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_cc76_118e_bd9c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_cc76_118e_bd9c/request", "", "public", "Top Dataset, 9km, MODIS TERRA L3 SST THERMAL 8DAY 9KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL 8DAY 9KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_cc76_118e_bd9c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_cc76_118e_bd9c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_cc76_118e_bd9c/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_cc76_118e_bd9c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_cc76_118e_bd9c&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_cc76_118e_bd9c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_dbee_1b1a_2dbb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_dbee_1b1a_2dbb.graph", "", "", "public", "Top Dataset, 9km, MODIS TERRA L3 SST THERMAL 8DAY 9KM NIGHTTIME V2014.0 [rgb][eightbitcolor]", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL 8DAY 9KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_dbee_1b1a_2dbb/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_dbee_1b1a_2dbb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_dbee_1b1a_2dbb&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_dbee_1b1a_2dbb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_9bf2_c66a_8d66", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_9bf2_c66a_8d66.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_9bf2_c66a_8d66/request", "", "public", "Top Dataset, 9km, MODIS TERRA L3 SST THERMAL 8DAY 9KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL 8DAY 9KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_9bf2_c66a_8d66_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_9bf2_c66a_8d66_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_9bf2_c66a_8d66/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_9bf2_c66a_8d66.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_9bf2_c66a_8d66&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_9bf2_c66a_8d66"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_dab3_3676_3458", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_dab3_3676_3458.graph", "", "", "public", "Top Dataset, 9km, MODIS TERRA L3 SST THERMAL ANNUAL 9KM DAYTIME V2014.0 [rgb][eightbitcolor]", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL ANNUAL 9KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_dab3_3676_3458/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_dab3_3676_3458.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_dab3_3676_3458&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_dab3_3676_3458"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_02fd_33f7_611b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_02fd_33f7_611b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_02fd_33f7_611b/request", "", "public", "Top Dataset, 9km, MODIS TERRA L3 SST THERMAL ANNUAL 9KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-2017", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL ANNUAL 9KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_02fd_33f7_611b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_02fd_33f7_611b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_02fd_33f7_611b/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_02fd_33f7_611b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_02fd_33f7_611b&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_02fd_33f7_611b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_b524_d2d6_53e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_b524_d2d6_53e2.graph", "", "", "public", "Top Dataset, 9km, MODIS TERRA L3 SST THERMAL ANNUAL 9KM NIGHTTIME V2014.0 [rgb][eightbitcolor]", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL ANNUAL 9KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_b524_d2d6_53e2/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_b524_d2d6_53e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_b524_d2d6_53e2&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_b524_d2d6_53e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e597_845d_2fdc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e597_845d_2fdc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_e597_845d_2fdc/request", "", "public", "Top Dataset, 9km, MODIS TERRA L3 SST THERMAL ANNUAL 9KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-2016", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL ANNUAL 9KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_e597_845d_2fdc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_e597_845d_2fdc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_e597_845d_2fdc/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_e597_845d_2fdc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_e597_845d_2fdc&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_e597_845d_2fdc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_dc7f_32ea_a83d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_dc7f_32ea_a83d.graph", "", "", "public", "Top Dataset, 9km, MODIS TERRA L3 SST THERMAL DAILY 9KM DAYTIME V2014.0 [rgb][eightbitcolor]", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL DAILY 9KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_dc7f_32ea_a83d/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_dc7f_32ea_a83d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_dc7f_32ea_a83d&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_dc7f_32ea_a83d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_89e4_66b6_6ca8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_89e4_66b6_6ca8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_89e4_66b6_6ca8/request", "", "public", "Top Dataset, 9km, MODIS TERRA L3 SST THERMAL DAILY 9KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL DAILY 9KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_89e4_66b6_6ca8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_89e4_66b6_6ca8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_89e4_66b6_6ca8/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_89e4_66b6_6ca8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_89e4_66b6_6ca8&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_89e4_66b6_6ca8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_b9d1_6573_cab0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_b9d1_6573_cab0.graph", "", "", "public", "Top Dataset, 9km, MODIS TERRA L3 SST THERMAL DAILY 9KM NIGHTTIME V2014.0 [rgb][eightbitcolor]", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL DAILY 9KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_b9d1_6573_cab0/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_b9d1_6573_cab0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_b9d1_6573_cab0&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_b9d1_6573_cab0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_ef38_7e91_5f2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_ef38_7e91_5f2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_ef38_7e91_5f2a/request", "", "public", "Top Dataset, 9km, MODIS TERRA L3 SST THERMAL DAILY 9KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL DAILY 9KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_ef38_7e91_5f2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_ef38_7e91_5f2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_ef38_7e91_5f2a/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_ef38_7e91_5f2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_ef38_7e91_5f2a&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_ef38_7e91_5f2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_4920_856f_6bf2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_4920_856f_6bf2.graph", "", "", "public", "Top Dataset, 9km, MODIS TERRA L3 SST THERMAL MONTHLY 9KM DAYTIME V2014.0 [rgb][eightbitcolor]", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL MONTHLY 9KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_4920_856f_6bf2/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_4920_856f_6bf2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_4920_856f_6bf2&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_4920_856f_6bf2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_7910_f56a_ff44", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_7910_f56a_ff44.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_7910_f56a_ff44/request", "", "public", "Top Dataset, 9km, MODIS TERRA L3 SST THERMAL MONTHLY 9KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL MONTHLY 9KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_7910_f56a_ff44_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_7910_f56a_ff44_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_7910_f56a_ff44/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_7910_f56a_ff44.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_7910_f56a_ff44&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_7910_f56a_ff44"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_f9df_ec7f_a5d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_f9df_ec7f_a5d2.graph", "", "", "public", "Top Dataset, 9km, MODIS TERRA L3 SST THERMAL MONTHLY 9KM NIGHTTIME V2014.0 [rgb][eightbitcolor]", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL MONTHLY 9KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_f9df_ec7f_a5d2/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_f9df_ec7f_a5d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_f9df_ec7f_a5d2&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_f9df_ec7f_a5d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_da9d_d183_85af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_da9d_d183_85af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_da9d_d183_85af/request", "", "public", "Top Dataset, 9km, MODIS TERRA L3 SST THERMAL MONTHLY 9KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL MONTHLY 9KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_da9d_d183_85af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_da9d_d183_85af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_da9d_d183_85af/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_da9d_d183_85af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_da9d_d183_85af&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_da9d_d183_85af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9824_16c6_8d3b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9824_16c6_8d3b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9824_16c6_8d3b/request", "", "public", "Top Dataset, annual, otemp.anal1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, annual, otemp.anal1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, analyzed mean, 1-deg grid, Annual, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9824_16c6_8d3b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9824_16c6_8d3b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9824_16c6_8d3b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9824_16c6_8d3b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9824_16c6_8d3b&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_9824_16c6_8d3b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4e2_409b_deb5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4e2_409b_deb5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d4e2_409b_deb5/request", "", "public", "Top Dataset, annual, otemp.dd1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, annual, otemp.dd1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, raw nobs, 1-deg grid, Annual, number of observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d4e2_409b_deb5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d4e2_409b_deb5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d4e2_409b_deb5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d4e2_409b_deb5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d4e2_409b_deb5&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_d4e2_409b_deb5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14c9_0e44_7e2e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14c9_0e44_7e2e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_14c9_0e44_7e2e/request", "", "public", "Top Dataset, annual, otemp.dd5deg (NODC World Ocean Atlas 1998), 5.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, annual, otemp.dd5deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, raw nobs, 5-deg grid, Annual, number of observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_14c9_0e44_7e2e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_14c9_0e44_7e2e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_14c9_0e44_7e2e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_14c9_0e44_7e2e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_14c9_0e44_7e2e&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_14c9_0e44_7e2e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb5d_72bd_9f5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb5d_72bd_9f5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bb5d_72bd_9f5f/request", "", "public", "Top Dataset, annual, otemp.gp1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, annual, otemp.gp1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, data distribution, 1-deg grid, Annual, number of cells)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bb5d_72bd_9f5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bb5d_72bd_9f5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bb5d_72bd_9f5f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bb5d_72bd_9f5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bb5d_72bd_9f5f&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_bb5d_72bd_9f5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7153_4dcd_053a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7153_4dcd_053a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7153_4dcd_053a/request", "", "public", "Top Dataset, annual, otemp.oa1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, annual, otemp.oa1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, raw - analyzed, 1-deg grid, Annual, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7153_4dcd_053a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7153_4dcd_053a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7153_4dcd_053a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7153_4dcd_053a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7153_4dcd_053a&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_7153_4dcd_053a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c4c4_6d3b_f700", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c4c4_6d3b_f700.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c4c4_6d3b_f700/request", "", "public", "Top Dataset, annual, otemp.raw1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, annual, otemp.raw1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, unanalyzed, 1-deg grid, Annual, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c4c4_6d3b_f700_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c4c4_6d3b_f700_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c4c4_6d3b_f700/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c4c4_6d3b_f700.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c4c4_6d3b_f700&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_c4c4_6d3b_f700"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_67b1_4793_66d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_67b1_4793_66d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_67b1_4793_66d3/request", "", "public", "Top Dataset, annual, otemp.raw5deg (NODC World Ocean Atlas 1998), 5.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, annual, otemp.raw5deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, unanalyzed, 5-deg grid, Annual, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_67b1_4793_66d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_67b1_4793_66d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_67b1_4793_66d3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_67b1_4793_66d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_67b1_4793_66d3&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_67b1_4793_66d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f45_1865_ab1d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f45_1865_ab1d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f45_1865_ab1d/request", "", "public", "Top Dataset, annual, otemp.sd1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, annual, otemp.sd1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, standard deviation, 1-deg grid, Annual, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f45_1865_ab1d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f45_1865_ab1d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f45_1865_ab1d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f45_1865_ab1d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f45_1865_ab1d&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_2f45_1865_ab1d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a589_3334_dcaa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a589_3334_dcaa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a589_3334_dcaa/request", "", "public", "Top Dataset, annual, otemp.sd5deg (NODC World Ocean Atlas 1998), 5.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, annual, otemp.sd5deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, standard deviation, 5-deg grid, Annual, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a589_3334_dcaa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a589_3334_dcaa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a589_3334_dcaa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a589_3334_dcaa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a589_3334_dcaa&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_a589_3334_dcaa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54d8_7cee_271d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54d8_7cee_271d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54d8_7cee_271d/request", "", "public", "Top Dataset, annual, otemp.se1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, annual, otemp.se1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, standard error, 1-deg grid, Annual, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54d8_7cee_271d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54d8_7cee_271d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54d8_7cee_271d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54d8_7cee_271d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54d8_7cee_271d&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_54d8_7cee_271d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5421_7f87_b63b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5421_7f87_b63b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5421_7f87_b63b/request", "", "public", "Top Dataset, annual, otemp.se5deg (NODC World Ocean Atlas 1998), 5.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, annual, otemp.se5deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, standard error, 5-deg grid, Annual, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5421_7f87_b63b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5421_7f87_b63b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5421_7f87_b63b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5421_7f87_b63b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5421_7f87_b63b&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_5421_7f87_b63b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc1c_2ddd_116b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc1c_2ddd_116b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc1c_2ddd_116b/request", "", "public", "Top Dataset, annual, salt.anal1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, annual, salt.anal1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, analyzed mean, 1-deg grid, Annual, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc1c_2ddd_116b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc1c_2ddd_116b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc1c_2ddd_116b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc1c_2ddd_116b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc1c_2ddd_116b&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_dc1c_2ddd_116b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26ab_80f9_9ddc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26ab_80f9_9ddc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_26ab_80f9_9ddc/request", "", "public", "Top Dataset, annual, salt.dd1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, annual, salt.dd1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, raw nobs, 1-deg grid, Annual, number of observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_26ab_80f9_9ddc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_26ab_80f9_9ddc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_26ab_80f9_9ddc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_26ab_80f9_9ddc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_26ab_80f9_9ddc&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_26ab_80f9_9ddc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae27_7660_fa37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae27_7660_fa37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae27_7660_fa37/request", "", "public", "Top Dataset, annual, salt.dd5deg (NODC World Ocean Atlas 1998), 5.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, annual, salt.dd5deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, raw nobs, 5-deg grid, Annual, number of observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae27_7660_fa37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae27_7660_fa37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae27_7660_fa37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae27_7660_fa37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae27_7660_fa37&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_ae27_7660_fa37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f4c_3327_0768", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f4c_3327_0768.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f4c_3327_0768/request", "", "public", "Top Dataset, annual, salt.gp1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, annual, salt.gp1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, data distribution, 1-deg grid, Annual, number of cells)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f4c_3327_0768_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f4c_3327_0768_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f4c_3327_0768/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f4c_3327_0768.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f4c_3327_0768&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_0f4c_3327_0768"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54f7_2788_57a5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54f7_2788_57a5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54f7_2788_57a5/request", "", "public", "Top Dataset, annual, salt.oa1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, annual, salt.oa1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, raw - analyzed, 1-deg grid, Annual, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54f7_2788_57a5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54f7_2788_57a5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54f7_2788_57a5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54f7_2788_57a5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54f7_2788_57a5&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_54f7_2788_57a5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f00_e95a_99ed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f00_e95a_99ed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f00_e95a_99ed/request", "", "public", "Top Dataset, annual, salt.raw1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, annual, salt.raw1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, unanalyzed, 1-deg grid, Annual, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f00_e95a_99ed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f00_e95a_99ed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f00_e95a_99ed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f00_e95a_99ed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f00_e95a_99ed&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_7f00_e95a_99ed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ae0_912b_6325", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ae0_912b_6325.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ae0_912b_6325/request", "", "public", "Top Dataset, annual, salt.raw5deg (NODC World Ocean Atlas 1998), 5.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, annual, salt.raw5deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, unanalyzed, 5-deg grid, Annual, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ae0_912b_6325_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ae0_912b_6325_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ae0_912b_6325/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ae0_912b_6325.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ae0_912b_6325&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_3ae0_912b_6325"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbe2_1713_edc2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbe2_1713_edc2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dbe2_1713_edc2/request", "", "public", "Top Dataset, annual, salt.sd1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, annual, salt.sd1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, standard deviation, 1-deg grid, Annual, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dbe2_1713_edc2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dbe2_1713_edc2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dbe2_1713_edc2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dbe2_1713_edc2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dbe2_1713_edc2&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_dbe2_1713_edc2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54d9_f603_dce5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54d9_f603_dce5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54d9_f603_dce5/request", "", "public", "Top Dataset, annual, salt.sd5deg (NODC World Ocean Atlas 1998), 5.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, annual, salt.sd5deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, standard deviation, 5-deg grid, Annual, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54d9_f603_dce5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54d9_f603_dce5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54d9_f603_dce5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54d9_f603_dce5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54d9_f603_dce5&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_54d9_f603_dce5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f4f_5ccb_e9b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f4f_5ccb_e9b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5f4f_5ccb_e9b5/request", "", "public", "Top Dataset, annual, salt.se1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, annual, salt.se1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, standard error, 1-deg grid, Annual, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5f4f_5ccb_e9b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5f4f_5ccb_e9b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5f4f_5ccb_e9b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5f4f_5ccb_e9b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5f4f_5ccb_e9b5&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_5f4f_5ccb_e9b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6af0_66d2_275d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6af0_66d2_275d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6af0_66d2_275d/request", "", "public", "Top Dataset, annual, salt.se5deg (NODC World Ocean Atlas 1998), 5.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, annual, salt.se5deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, standard error, 5-deg grid, Annual, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6af0_66d2_275d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6af0_66d2_275d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6af0_66d2_275d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6af0_66d2_275d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6af0_66d2_275d&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_6af0_66d2_275d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6dc8_d21b_70d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6dc8_d21b_70d1.graph", "", "", "public", "Top Dataset, B1850, SST CESM1-CAM5 B1850 1920-2079 3moRunMeans [time]", "Top Dataset, B1850, Sea Surface Temperature (SST) CESM1-CAM5 B1850 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMM))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6dc8_d21b_70d1/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM1-CAM5/B1850/SST_CESM1-CAM5_B1850_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6dc8_d21b_70d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6dc8_d21b_70d1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6dc8_d21b_70d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5bd_04e7_a5d8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5bd_04e7_a5d8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5bd_04e7_a5d8/request", "", "public", "Top Dataset, B1850, SST CESM1-CAM5 B1850 1920-2079 3moRunMeans [time][lat][lon], 2.0\u00b0", "Top Dataset, B1850, Sea Surface Temperature (SST) CESM1-CAM5 B1850 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST (Surface temperature (radiative), K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5bd_04e7_a5d8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5bd_04e7_a5d8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5bd_04e7_a5d8/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM1-CAM5/B1850/SST_CESM1-CAM5_B1850_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5bd_04e7_a5d8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5bd_04e7_a5d8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e5bd_04e7_a5d8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4985_ca76_f751", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4985_ca76_f751.graph", "", "", "public", "Top Dataset, B2000, PRECT CESM1-CAM5 B2000 1920-2079 3moRunMeans [time]", "Top Dataset, B2000, PRECT CESM1-CAM5 B2000 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMM))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4985_ca76_f751/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM1-CAM5/B2000/PRECT_CESM1-CAM5_B2000_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4985_ca76_f751.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4985_ca76_f751&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4985_ca76_f751"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b853_9279_a733", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b853_9279_a733.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b853_9279_a733/request", "", "public", "Top Dataset, B2000, PRECT CESM1-CAM5 B2000 1920-2079 3moRunMeans [time][lat][lon]", "Top Dataset, B2000, PRECT CESM1-CAM5 B2000 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPRECT (Total (convective and large-scale) precipitation rate (liq + ice), m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b853_9279_a733_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b853_9279_a733_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b853_9279_a733/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM1-CAM5/B2000/PRECT_CESM1-CAM5_B2000_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b853_9279_a733.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b853_9279_a733&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b853_9279_a733"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bddc_9f9e_d06d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bddc_9f9e_d06d.graph", "", "", "public", "Top Dataset, B2000, SST CESM1-CAM5 B2000 1920-2079 3moRunMeans [time]", "Top Dataset, B2000, Sea Surface Temperature (SST) CESM1-CAM5 B2000 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMM))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bddc_9f9e_d06d/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM1-CAM5/B2000/SST_CESM1-CAM5_B2000_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bddc_9f9e_d06d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bddc_9f9e_d06d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bddc_9f9e_d06d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca18_f565_c07a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca18_f565_c07a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca18_f565_c07a/request", "", "public", "Top Dataset, B2000, SST CESM1-CAM5 B2000 1920-2079 3moRunMeans [time][lat][lon], 2.0\u00b0", "Top Dataset, B2000, Sea Surface Temperature (SST) CESM1-CAM5 B2000 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST (Surface temperature (radiative), K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca18_f565_c07a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca18_f565_c07a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca18_f565_c07a/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM1-CAM5/B2000/SST_CESM1-CAM5_B2000_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca18_f565_c07a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca18_f565_c07a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ca18_f565_c07a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d004_f381_c74e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d004_f381_c74e.graph", "", "", "public", "Top Dataset, B2000, T2M CESM1-CAM5 B2000 1920-2079 3moRunMeans [time]", "Top Dataset, B2000, T2M CESM1-CAM5 B2000 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMM))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d004_f381_c74e/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM1-CAM5/B2000/T2M_CESM1-CAM5_B2000_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d004_f381_c74e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d004_f381_c74e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d004_f381_c74e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f76c_63e7_0d82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f76c_63e7_0d82.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f76c_63e7_0d82/request", "", "public", "Top Dataset, B2000, T2M CESM1-CAM5 B2000 1920-2079 3moRunMeans [time][lat][lon]", "Top Dataset, B2000, T2M CESM1-CAM5 B2000 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nT2M (Reference height temperature, K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f76c_63e7_0d82_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f76c_63e7_0d82_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f76c_63e7_0d82/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM1-CAM5/B2000/T2M_CESM1-CAM5_B2000_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f76c_63e7_0d82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f76c_63e7_0d82&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f76c_63e7_0d82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_874e_5dff_3b53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_874e_5dff_3b53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_874e_5dff_3b53/request", "", "public", "Top Dataset, CarbonTracker, CT2007B.molefrac, 2000-2004", "Top Dataset, CarbonTracker, CT2007B.molefrac\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nco2 (Mole Fraction Of Carbon Dioxide In Air, micromol mol-1)\npressure (Air Pressure, pascal)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_874e_5dff_3b53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_874e_5dff_3b53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_874e_5dff_3b53/index.json", "https://www.esrl.noaa.gov/gmd/ccgg/carbontracker/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_874e_5dff_3b53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_874e_5dff_3b53&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_874e_5dff_3b53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1e6_f995_6841", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1e6_f995_6841.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f1e6_f995_6841/request", "", "public", "Top Dataset, CarbonTracker, w12.molefrac, 2000-2004", "Top Dataset, CarbonTracker, w12.molefrac\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nco2 (Mole Fraction Of Carbon Dioxide In Air, micromol mol-1)\npressure (Air Pressure, pascal)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f1e6_f995_6841_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f1e6_f995_6841_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f1e6_f995_6841/index.json", "https://www.esrl.noaa.gov/gmd/ccgg/carbontracker/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f1e6_f995_6841.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f1e6_f995_6841&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f1e6_f995_6841"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_8e87_2590_d942", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_8e87_2590_d942.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_8e87_2590_d942/request", "", "public", "Top Dataset, ccmp, CCMP MEASURES ATLAS L4 OW L3 0 WIND VECTORS FLK, 0.25\u00b0, 1987-2011", "Atlas FLK v1.1 derived surface winds (level 3.0). VAM 6-hour analyses starting from the European Centre for Medium-Range Weather Forecasts (ECMWF) Operational analyses.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind at 10 meters, m/s)\nvwnd (v-wind at 10 meters, m/s)\nnobs (number of observations, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_8e87_2590_d942_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_8e87_2590_d942_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_8e87_2590_d942/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_8e87_2590_d942.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_8e87_2590_d942&showErrors=false&email=", "NASA JPL", "nasa_jpl_8e87_2590_d942"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_f5bf_1c1b_404e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_f5bf_1c1b_404e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_f5bf_1c1b_404e/request", "", "public", "Top Dataset, ccmp, CCMP MEASURES ATLAS L4 OW L3 5A 5DAY WIND VECTORS FLK, 0.25\u00b0, 1987-2011", "Atlas FLK v1.1 derived surface winds (level 3.5). Time average of level3.0 products for the period: 1998-08-29 to 1998-09-02\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind at 10 meters, m/s)\nvwnd (v-wind at 10 meters, m/s)\nwspd (wind speed at 10 meters, m/s)\nupstr (u-component of pseudostress at 10 meters, m2/s2)\nvpstr (v-component of pseudostress at 10 meters, m2/s2)\nnobs (number of observations, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_f5bf_1c1b_404e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_f5bf_1c1b_404e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_f5bf_1c1b_404e/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_f5bf_1c1b_404e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_f5bf_1c1b_404e&showErrors=false&email=", "NASA JPL", "nasa_jpl_f5bf_1c1b_404e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_093f_e12c_d20d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_093f_e12c_d20d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_093f_e12c_d20d/request", "", "public", "Top Dataset, Coastal Relief Model by Volume, crm socal 1as vers2 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Geophysical Data Center (NGDC)'s 3 arc-second U.S. Coastal Relief Model (CRM) provides the first comprehensive view of the U.S. coastal zone, integrating offshore bathymetry with land topography into a seamless representation of the coast. The CRM spans the U.S. East and West Coasts, the northern coast of the Gulf of Mexico, Puerto Rico, and Hawaii, reaching out to, and in places even beyond, the continental slope. Bathymetric and topographic data sources include: NGDC's National Ocean Service (NOS) hydrographic surveys, multibeam bathymetry, and trackline bathymetry; the U.S. Geological Survey (United States Geological Survey (USGS)); and other federal government agencies and academic institutions.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_093f_e12c_d20d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_093f_e12c_d20d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_093f_e12c_d20d/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/crm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_093f_e12c_d20d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_093f_e12c_d20d&showErrors=false&email=", "NOAA NCEI", "noaa_ngdc_093f_e12c_d20d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_fe08_f00e_4c5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_fe08_f00e_4c5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_fe08_f00e_4c5f/request", "", "public", "Top Dataset, Coastal Relief Model by Volume, crm socal 3as vers2 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Geophysical Data Center (NGDC)'s 3 arc-second U.S. Coastal Relief Model (CRM) provides the first comprehensive view of the U.S. coastal zone, integrating offshore bathymetry with land topography into a seamless representation of the coast. The CRM spans the U.S. East and West Coasts, the northern coast of the Gulf of Mexico, Puerto Rico, and Hawaii, reaching out to, and in places even beyond, the continental slope. Bathymetric and topographic data sources include: NGDC's National Ocean Service (NOS) hydrographic surveys, multibeam bathymetry, and trackline bathymetry; the U.S. Geological Survey (United States Geological Survey (USGS)); and other federal government agencies and academic institutions.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_fe08_f00e_4c5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_fe08_f00e_4c5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_fe08_f00e_4c5f/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/crm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_fe08_f00e_4c5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_fe08_f00e_4c5f&showErrors=false&email=", "NOAA NCEI", "noaa_ngdc_fe08_f00e_4c5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_89d4_f619_3334", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_89d4_f619_3334.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_89d4_f619_3334/request", "", "public", "Top Dataset, Coastal Relief Model by Volume, crm southak (Topography Grid), 0.006666667\u00b0", "Topography Grid. National Geophysical Data Center (NGDC)'s 3 arc-second U.S. Coastal Relief Model (CRM) provides the first comprehensive view of the U.S. coastal zone, integrating offshore bathymetry with land topography into a seamless representation of the coast. The CRM spans the U.S. East and West Coasts, the northern coast of the Gulf of Mexico, Puerto Rico, and Hawaii, reaching out to, and in places even beyond, the continental slope. Bathymetric and topographic data sources include: NGDC's National Ocean Service (NOS) hydrographic surveys, multibeam bathymetry, and trackline bathymetry; the U.S. Geological Survey (United States Geological Survey (USGS)); and other federal government agencies and academic institutions.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (Topography, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_89d4_f619_3334_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_89d4_f619_3334_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_89d4_f619_3334/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/crm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_89d4_f619_3334.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_89d4_f619_3334&showErrors=false&email=", "NOAA NCEI", "noaa_ngdc_89d4_f619_3334"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5a67_fa8e_35e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5a67_fa8e_35e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5a67_fa8e_35e2/request", "", "public", "Top Dataset, Coastal Relief Model by Volume, crm vol1 (crm_v1), 8.3333335E-4\u00b0", "crm_v1. National Geophysical Data Center (NGDC)'s 3 arc-second U.S. Coastal Relief Model (CRM) provides the first comprehensive view of the U.S. coastal zone, integrating offshore bathymetry with land topography into a seamless representation of the coast. The CRM spans the U.S. East and West Coasts, the northern coast of the Gulf of Mexico, Puerto Rico, and Hawaii, reaching out to, and in places even beyond, the continental slope. Bathymetric and topographic data sources include: NGDC's National Ocean Service (NOS) hydrographic surveys, multibeam bathymetry, and trackline bathymetry; the U.S. Geological Survey (United States Geological Survey (USGS)); and other federal government agencies and academic institutions.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5a67_fa8e_35e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5a67_fa8e_35e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5a67_fa8e_35e2/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/crm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5a67_fa8e_35e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5a67_fa8e_35e2&showErrors=false&email=", "NOAA NCEI", "noaa_ngdc_5a67_fa8e_35e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c143_8b2d_0582", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c143_8b2d_0582.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c143_8b2d_0582/request", "", "public", "Top Dataset, Coastal Relief Model by Volume, crm vol10 (crm_v10), 8.3333335E-4\u00b0", "crm_v10. National Geophysical Data Center (NGDC)'s 3 arc-second U.S. Coastal Relief Model (CRM) provides the first comprehensive view of the U.S. coastal zone, integrating offshore bathymetry with land topography into a seamless representation of the coast. The CRM spans the U.S. East and West Coasts, the northern coast of the Gulf of Mexico, Puerto Rico, and Hawaii, reaching out to, and in places even beyond, the continental slope. Bathymetric and topographic data sources include: NGDC's National Ocean Service (NOS) hydrographic surveys, multibeam bathymetry, and trackline bathymetry; the U.S. Geological Survey (United States Geological Survey (USGS)); and other federal government agencies and academic institutions.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c143_8b2d_0582_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c143_8b2d_0582_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c143_8b2d_0582/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/crm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c143_8b2d_0582.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c143_8b2d_0582&showErrors=false&email=", "NOAA NCEI", "noaa_ngdc_c143_8b2d_0582"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5801_62a2_09a4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5801_62a2_09a4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5801_62a2_09a4/request", "", "public", "Top Dataset, Coastal Relief Model by Volume, crm vol2 (crm_v2), 8.3333335E-4\u00b0", "crm_v2. National Geophysical Data Center (NGDC)'s 3 arc-second U.S. Coastal Relief Model (CRM) provides the first comprehensive view of the U.S. coastal zone, integrating offshore bathymetry with land topography into a seamless representation of the coast. The CRM spans the U.S. East and West Coasts, the northern coast of the Gulf of Mexico, Puerto Rico, and Hawaii, reaching out to, and in places even beyond, the continental slope. Bathymetric and topographic data sources include: NGDC's National Ocean Service (NOS) hydrographic surveys, multibeam bathymetry, and trackline bathymetry; the U.S. Geological Survey (United States Geological Survey (USGS)); and other federal government agencies and academic institutions.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5801_62a2_09a4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5801_62a2_09a4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5801_62a2_09a4/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/crm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5801_62a2_09a4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5801_62a2_09a4&showErrors=false&email=", "NOAA NCEI", "noaa_ngdc_5801_62a2_09a4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e25f_55f5_89af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e25f_55f5_89af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e25f_55f5_89af/request", "", "public", "Top Dataset, Coastal Relief Model by Volume, crm vol3 (crm_v3), 8.3333335E-4\u00b0", "crm_v3. National Geophysical Data Center (NGDC)'s 3 arc-second U.S. Coastal Relief Model (CRM) provides the first comprehensive view of the U.S. coastal zone, integrating offshore bathymetry with land topography into a seamless representation of the coast. The CRM spans the U.S. East and West Coasts, the northern coast of the Gulf of Mexico, Puerto Rico, and Hawaii, reaching out to, and in places even beyond, the continental slope. Bathymetric and topographic data sources include: NGDC's National Ocean Service (NOS) hydrographic surveys, multibeam bathymetry, and trackline bathymetry; the U.S. Geological Survey (United States Geological Survey (USGS)); and other federal government agencies and academic institutions.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e25f_55f5_89af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e25f_55f5_89af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e25f_55f5_89af/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/crm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e25f_55f5_89af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e25f_55f5_89af&showErrors=false&email=", "NOAA NCEI", "noaa_ngdc_e25f_55f5_89af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_56b9_a5a0_4bf0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_56b9_a5a0_4bf0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_56b9_a5a0_4bf0/request", "", "public", "Top Dataset, Coastal Relief Model by Volume, crm vol4 (crm_v4), 8.3333335E-4\u00b0", "crm_v4. National Geophysical Data Center (NGDC)'s 3 arc-second U.S. Coastal Relief Model (CRM) provides the first comprehensive view of the U.S. coastal zone, integrating offshore bathymetry with land topography into a seamless representation of the coast. The CRM spans the U.S. East and West Coasts, the northern coast of the Gulf of Mexico, Puerto Rico, and Hawaii, reaching out to, and in places even beyond, the continental slope. Bathymetric and topographic data sources include: NGDC's National Ocean Service (NOS) hydrographic surveys, multibeam bathymetry, and trackline bathymetry; the U.S. Geological Survey (United States Geological Survey (USGS)); and other federal government agencies and academic institutions.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_56b9_a5a0_4bf0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_56b9_a5a0_4bf0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_56b9_a5a0_4bf0/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/crm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_56b9_a5a0_4bf0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_56b9_a5a0_4bf0&showErrors=false&email=", "NOAA NCEI", "noaa_ngdc_56b9_a5a0_4bf0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_acb1_e79a_30de", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_acb1_e79a_30de.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_acb1_e79a_30de/request", "", "public", "Top Dataset, Coastal Relief Model by Volume, crm vol5 (crm_v5), 8.3333335E-4\u00b0", "crm_v5. National Geophysical Data Center (NGDC)'s 3 arc-second U.S. Coastal Relief Model (CRM) provides the first comprehensive view of the U.S. coastal zone, integrating offshore bathymetry with land topography into a seamless representation of the coast. The CRM spans the U.S. East and West Coasts, the northern coast of the Gulf of Mexico, Puerto Rico, and Hawaii, reaching out to, and in places even beyond, the continental slope. Bathymetric and topographic data sources include: NGDC's National Ocean Service (NOS) hydrographic surveys, multibeam bathymetry, and trackline bathymetry; the U.S. Geological Survey (United States Geological Survey (USGS)); and other federal government agencies and academic institutions.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_acb1_e79a_30de_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_acb1_e79a_30de_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_acb1_e79a_30de/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/crm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_acb1_e79a_30de.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_acb1_e79a_30de&showErrors=false&email=", "NOAA NCEI", "noaa_ngdc_acb1_e79a_30de"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_701c_84cf_3cdf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_701c_84cf_3cdf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_701c_84cf_3cdf/request", "", "public", "Top Dataset, Coastal Relief Model by Volume, crm vol6 (crm_v6), 8.3333335E-4\u00b0", "crm_v6. National Geophysical Data Center (NGDC)'s 3 arc-second U.S. Coastal Relief Model (CRM) provides the first comprehensive view of the U.S. coastal zone, integrating offshore bathymetry with land topography into a seamless representation of the coast. The CRM spans the U.S. East and West Coasts, the northern coast of the Gulf of Mexico, Puerto Rico, and Hawaii, reaching out to, and in places even beyond, the continental slope. Bathymetric and topographic data sources include: NGDC's National Ocean Service (NOS) hydrographic surveys, multibeam bathymetry, and trackline bathymetry; the U.S. Geological Survey (United States Geological Survey (USGS)); and other federal government agencies and academic institutions.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_701c_84cf_3cdf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_701c_84cf_3cdf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_701c_84cf_3cdf/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/crm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_701c_84cf_3cdf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_701c_84cf_3cdf&showErrors=false&email=", "NOAA NCEI", "noaa_ngdc_701c_84cf_3cdf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b56c_cc0a_ebe1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b56c_cc0a_ebe1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_b56c_cc0a_ebe1/request", "", "public", "Top Dataset, Coastal Relief Model by Volume, crm vol7 (crm_v7), 8.3333335E-4\u00b0", "crm_v7. National Geophysical Data Center (NGDC)'s 3 arc-second U.S. Coastal Relief Model (CRM) provides the first comprehensive view of the U.S. coastal zone, integrating offshore bathymetry with land topography into a seamless representation of the coast. The CRM spans the U.S. East and West Coasts, the northern coast of the Gulf of Mexico, Puerto Rico, and Hawaii, reaching out to, and in places even beyond, the continental slope. Bathymetric and topographic data sources include: NGDC's National Ocean Service (NOS) hydrographic surveys, multibeam bathymetry, and trackline bathymetry; the U.S. Geological Survey (United States Geological Survey (USGS)); and other federal government agencies and academic institutions.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_b56c_cc0a_ebe1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_b56c_cc0a_ebe1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_b56c_cc0a_ebe1/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/crm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_b56c_cc0a_ebe1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_b56c_cc0a_ebe1&showErrors=false&email=", "NOAA NCEI", "noaa_ngdc_b56c_cc0a_ebe1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d632_63b2_0f78", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d632_63b2_0f78.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d632_63b2_0f78/request", "", "public", "Top Dataset, Coastal Relief Model by Volume, crm vol8 (crm_v8), 8.3333335E-4\u00b0", "crm_v8. National Geophysical Data Center (NGDC)'s 3 arc-second U.S. Coastal Relief Model (CRM) provides the first comprehensive view of the U.S. coastal zone, integrating offshore bathymetry with land topography into a seamless representation of the coast. The CRM spans the U.S. East and West Coasts, the northern coast of the Gulf of Mexico, Puerto Rico, and Hawaii, reaching out to, and in places even beyond, the continental slope. Bathymetric and topographic data sources include: NGDC's National Ocean Service (NOS) hydrographic surveys, multibeam bathymetry, and trackline bathymetry; the U.S. Geological Survey (United States Geological Survey (USGS)); and other federal government agencies and academic institutions.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d632_63b2_0f78_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d632_63b2_0f78_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d632_63b2_0f78/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/crm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d632_63b2_0f78.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d632_63b2_0f78&showErrors=false&email=", "NOAA NCEI", "noaa_ngdc_d632_63b2_0f78"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1c7c_3132_0eb3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1c7c_3132_0eb3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1c7c_3132_0eb3/request", "", "public", "Top Dataset, Coastal Relief Model by Volume, crm vol9 (crm_v9), 8.3333335E-4\u00b0", "crm_v9. National Geophysical Data Center (NGDC)'s 3 arc-second U.S. Coastal Relief Model (CRM) provides the first comprehensive view of the U.S. coastal zone, integrating offshore bathymetry with land topography into a seamless representation of the coast. The CRM spans the U.S. East and West Coasts, the northern coast of the Gulf of Mexico, Puerto Rico, and Hawaii, reaching out to, and in places even beyond, the continental slope. Bathymetric and topographic data sources include: NGDC's National Ocean Service (NOS) hydrographic surveys, multibeam bathymetry, and trackline bathymetry; the U.S. Geological Survey (United States Geological Survey (USGS)); and other federal government agencies and academic institutions.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1c7c_3132_0eb3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1c7c_3132_0eb3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1c7c_3132_0eb3/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/crm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1c7c_3132_0eb3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1c7c_3132_0eb3&showErrors=false&email=", "NOAA NCEI", "noaa_ngdc_1c7c_3132_0eb3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d245_c858_56c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d245_c858_56c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d245_c858_56c1/request", "", "public", "Top Dataset, COBE, sst.mon.ltm.1981-2010 (COBE SST Analysis), 1.0\u00b0, 0001", "COBE Sea Surface Temperature Analysis. recent values (w/i last year) may change as dataset is updated. It is a monitoring dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Long Term Mean Monthly Means of Global Sea Surface Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d245_c858_56c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d245_c858_56c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d245_c858_56c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cobe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d245_c858_56c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d245_c858_56c1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d245_c858_56c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b0b_c423_6eae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b0b_c423_6eae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b0b_c423_6eae/request", "", "public", "Top Dataset, COBE2, icec.mon.ltm.1981-2010 (created 05/2014 from data provided by JRA), 1.0\u00b0, 0001", "created 05/2014 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, icec.mon.ltm.1981-2010)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Long Term Mean Monthly Means of Global Ice Concentration, fr)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b0b_c423_6eae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b0b_c423_6eae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b0b_c423_6eae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b0b_c423_6eae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b0b_c423_6eae&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5b0b_c423_6eae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f36_550f_a27a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f36_550f_a27a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3f36_550f_a27a/request", "", "public", "Top Dataset, COBE2, icec.mon.ltm.1981-2010.2016 (created 05/2014 from data provided by JRA), 1.0\u00b0, 0001", "created 05/2014 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, icec.mon.ltm.1981-2010.2016)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Long Term Mean Monthly Means of Global Ice Concentration, fr)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3f36_550f_a27a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3f36_550f_a27a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3f36_550f_a27a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3f36_550f_a27a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3f36_550f_a27a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3f36_550f_a27a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e02e_d3e1_c3cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e02e_d3e1_c3cc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e02e_d3e1_c3cc/request", "", "public", "Top Dataset, COBE2, sst.mon.ltm.1981-2010.2016 (created 12/2013 from data provided by JRA), 1.0\u00b0, 0001", "created 12/2013 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, sst.mon.ltm.1981-2010.2016)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Long Term Mean Monthly Means of Global Sea Surface Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e02e_d3e1_c3cc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e02e_d3e1_c3cc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e02e_d3e1_c3cc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e02e_d3e1_c3cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e02e_d3e1_c3cc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e02e_d3e1_c3cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d96c_db2b_8c2e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d96c_db2b_8c2e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d96c_db2b_8c2e/request", "", "public", "Top Dataset, cpcsoil, landmask (CPC 1/2x1/2 land mask), 0.5\u00b0, 1980", "Climate Prediction Center (CPC) 1/2x1/2 land mask. Data file is obtained from CPC\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nland (Land-sea Mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d96c_db2b_8c2e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d96c_db2b_8c2e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d96c_db2b_8c2e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cpcsoil.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d96c_db2b_8c2e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d96c_db2b_8c2e&showErrors=false&email=", "NOAA/ESRL PSD", "noaa_esrl_d96c_db2b_8c2e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fa7_94ec_8205", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fa7_94ec_8205.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7fa7_94ec_8205/request", "", "public", "Top Dataset, cpcsoil, landperc (CPC 1/2x1/2 landpercraphy), 0.5\u00b0, 1980", "Climate Prediction Center (CPC) 1/2x1/2 landpercraphy. Data file is obtained from CPC\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlandperc (Percent of grid that is land, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7fa7_94ec_8205_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7fa7_94ec_8205_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7fa7_94ec_8205/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cpcsoil.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7fa7_94ec_8205.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7fa7_94ec_8205&showErrors=false&email=", "NOAA/ESRL PSD", "noaa_esrl_7fa7_94ec_8205"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e67_77b6_2c19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e67_77b6_2c19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e67_77b6_2c19/request", "", "public", "Top Dataset, cpcsoil, soilw.mon.1981-2010.ltm.v2 (CPC Soil Moisture), 0.5\u00b0, 0001", "Climate Prediction Center (CPC) Soil Moisture (Top Dataset, cpcsoil, soilw.mon.1981-2010.ltm.v2)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvalid_yr_count (count of non-missing values used in mean)\nsoilw (Model-Calculated Long Term Monthly Mean Soil Moisture, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e67_77b6_2c19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e67_77b6_2c19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e67_77b6_2c19/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cpcsoil.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e67_77b6_2c19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e67_77b6_2c19&showErrors=false&email=", "NOAA/ESRL PSD", "noaa_esrl_8e67_77b6_2c19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4c2_641d_3d78", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4c2_641d_3d78.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e4c2_641d_3d78/request", "", "public", "Top Dataset, cpcsoil, soilw.mon.ltm.v2 (CPC Soil Moisture), 0.5\u00b0, 0001", "Climate Prediction Center (CPC) Soil Moisture (Top Dataset, cpcsoil, soilw.mon.ltm.v2)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvalid_yr_count (count of non-missing values used in mean)\nsoilw (Model-Calculated Long Term Monthly Mean Soil Moisture, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e4c2_641d_3d78_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e4c2_641d_3d78_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e4c2_641d_3d78/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cpcsoil.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e4c2_641d_3d78.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e4c2_641d_3d78&showErrors=false&email=", "NOAA/ESRL PSD", "noaa_esrl_e4c2_641d_3d78"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2935_5d72_82c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2935_5d72_82c5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2935_5d72_82c5/request", "", "public", "Top Dataset, cpcsoil, soilw.mon.mean (CPC Soil Moisture), 0.5\u00b0, 1948-present", "Climate Prediction Center (CPC) Soil Moisture (Top Dataset, cpcsoil, soilw.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilw (Model-Calculated Monthly Mean Soil Moisture, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2935_5d72_82c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2935_5d72_82c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2935_5d72_82c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cpcsoil.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2935_5d72_82c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2935_5d72_82c5&showErrors=false&email=", "NOAA/ESRL PSD", "noaa_esrl_2935_5d72_82c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a622_b362_7876", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a622_b362_7876.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a622_b362_7876/request", "", "public", "Top Dataset, cpcsoil, soilw.mon.mean.v2 (CPC Soil Moisture), 0.5\u00b0, 1948-present", "Climate Prediction Center (CPC) Soil Moisture (Top Dataset, cpcsoil, soilw.mon.mean.v2)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilw (Model-Calculated Monthly Mean Soil Moisture, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a622_b362_7876_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a622_b362_7876_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a622_b362_7876/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cpcsoil.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a622_b362_7876.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a622_b362_7876&showErrors=false&email=", "NOAA/ESRL PSD", "noaa_esrl_a622_b362_7876"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5c7_1493_8698", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5c7_1493_8698.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5c7_1493_8698/request", "", "public", "Top Dataset, dai pdsi, pdsi.mon.mean.selfcalibrated, 2.5\u00b0, 1850-2014", "Global Monthly Dai Palmer Drought Severity Index. Monthly Self-calibrated Palmer Drought Severity Index (scPDSI) \ncalculated using observed surface air temperature (HadCRUT4 from \nhttps://www.cru.uea.ac.uk/cru/data/temperature/ ) and \nprecipitation (from Dai et al. (1997, J.Clim: for 1870-1947) + \nChen et al. (2002, J. Hydromet.: for 1948-1978 + Global Precipitation Climatology Project (GPCP) v2.2 for \n1979-present. The Dai and Chen P data were adjusted to have the \nsame mean as the GPCP data over the 1979-1996 period). \nCalibration (or reference) period is 1950-1979. \nWind speed and air pressure data were from 20CR v2. Other data \nwere based on Climatic Research Unit (CRU) TS3.22. Documention: \t \nDai, A., 2011a: Characteristics and trends in various forms of the \nPalmer Drought Severity Index (PDSI) during 1900-2008. J. Geophys. \nRes., 116, D12115, doi:10.1029/2010JD015541.\t\t\t \nDai, A., K. E. Trenberth, and T. Qian, 2004: A global data set of \nPalmer Drought Severity Index for 1870-2002: Relationship with soil\nmoisture and effects of surface warming. J. Hydrometeorology, 5, \n1117-1130. Data source: Dr. A. Dai/National Center for Atmospheric Research (NCAR) (adai@ucar.edu). See \nhttps://www.cgd.ucar.edu/cas/catalog/climind/pdsi.html for updates. \nWARNING: PDSI and scPDSI over the higher latitudes (e.g., >50deg.) \nmay not be a good proxy of soil moisutre content. Also, PDSI and \nscPDSI are highly autocorrelated indices not good at resolving \nsub-seasonal variations. Please use with caution! \nThis is a normalized version so that every grid box has the same \ns.d. as that in the central U.S. during the calibr. period (1950-79)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Monthly Self-calibrated Palmer Drought Severity Index using Penman-Monteith PE, Standardized Units of Relative Dry and Wet)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5c7_1493_8698_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5c7_1493_8698_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5c7_1493_8698/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.pdsi.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5c7_1493_8698.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5c7_1493_8698&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c5c7_1493_8698"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_0e0e_41b8_11fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_0e0e_41b8_11fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_0e0e_41b8_11fc/request", "", "public", "Top Dataset, dynamic topo 1deg 1mo, zosNobs AVISO L4 199210-201012, 1.0\u00b0", "Obs-Archiving, Validation and Interpretation of Satellite Data in Oceanography (AVISO) model output prepared for Observations for Model Intercomparisons (obs4MIPs) NASA-Jet Propulsion Laboratory (JPL) observation. gridded sea surface heights above geoid\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzosNobs (Sea Surface Height Above Geoid Number of Observations, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_0e0e_41b8_11fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_0e0e_41b8_11fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_0e0e_41b8_11fc/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_0e0e_41b8_11fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_0e0e_41b8_11fc&showErrors=false&email=", "Centre National d'Etudes Spatiales", "nasa_jpl_0e0e_41b8_11fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_b98c_4c2c_352b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_b98c_4c2c_352b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_b98c_4c2c_352b/request", "", "public", "Top Dataset, dynamic topo 1deg 1mo, zosStderr AVISO L4 199210-201012, 1.0\u00b0", "Obs-Archiving, Validation and Interpretation of Satellite Data in Oceanography (AVISO) model output prepared for Observations for Model Intercomparisons (obs4MIPs) NASA-Jet Propulsion Laboratory (JPL) observation. gridded sea surface heights above geoid\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzosStderr (Sea Surface Height Above Geoid Standard Error, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_b98c_4c2c_352b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_b98c_4c2c_352b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_b98c_4c2c_352b/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_b98c_4c2c_352b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_b98c_4c2c_352b&showErrors=false&email=", "Centre National d'Etudes Spatiales", "nasa_jpl_b98c_4c2c_352b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73ff_1a2f_3f62", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73ff_1a2f_3f62.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_73ff_1a2f_3f62/request", "", "public", "Top Dataset, enh, air.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_73ff_1a2f_3f62_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_73ff_1a2f_3f62_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_73ff_1a2f_3f62/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_73ff_1a2f_3f62.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_73ff_1a2f_3f62&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_73ff_1a2f_3f62"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e3c9_f96d_1e9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e3c9_f96d_1e9f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e3c9_f96d_1e9f/request", "", "public", "Top Dataset, enh, air.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e3c9_f96d_1e9f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e3c9_f96d_1e9f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e3c9_f96d_1e9f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e3c9_f96d_1e9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e3c9_f96d_1e9f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e3c9_f96d_1e9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e544_3a94_b69e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e544_3a94_b69e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e544_3a94_b69e/request", "", "public", "Top Dataset, enh, air.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e544_3a94_b69e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e544_3a94_b69e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e544_3a94_b69e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e544_3a94_b69e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e544_3a94_b69e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e544_3a94_b69e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f467_cdcf_4745", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f467_cdcf_4745.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f467_cdcf_4745/request", "", "public", "Top Dataset, enh, air.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f467_cdcf_4745_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f467_cdcf_4745_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f467_cdcf_4745/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f467_cdcf_4745.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f467_cdcf_4745&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f467_cdcf_4745"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e77_c845_aca7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e77_c845_aca7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e77_c845_aca7/request", "", "public", "Top Dataset, enh, air.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e77_c845_aca7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e77_c845_aca7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e77_c845_aca7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e77_c845_aca7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e77_c845_aca7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9e77_c845_aca7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf85_af6a_0cda", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf85_af6a_0cda.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf85_af6a_0cda/request", "", "public", "Top Dataset, enh, air.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf85_af6a_0cda_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf85_af6a_0cda_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf85_af6a_0cda/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf85_af6a_0cda.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf85_af6a_0cda&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bf85_af6a_0cda"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a5f_b571_85d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a5f_b571_85d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4a5f_b571_85d9/request", "", "public", "Top Dataset, enh, air.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4a5f_b571_85d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4a5f_b571_85d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4a5f_b571_85d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4a5f_b571_85d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4a5f_b571_85d9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4a5f_b571_85d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2289_bad6_53f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2289_bad6_53f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2289_bad6_53f1/request", "", "public", "Top Dataset, enh, air.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2289_bad6_53f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2289_bad6_53f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2289_bad6_53f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2289_bad6_53f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2289_bad6_53f1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2289_bad6_53f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a6a_3d14_c9dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a6a_3d14_c9dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4a6a_3d14_c9dd/request", "", "public", "Top Dataset, enh, air.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4a6a_3d14_c9dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4a6a_3d14_c9dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4a6a_3d14_c9dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4a6a_3d14_c9dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4a6a_3d14_c9dd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4a6a_3d14_c9dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_011e_8357_a3b2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_011e_8357_a3b2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_011e_8357_a3b2/request", "", "public", "Top Dataset, enh, air.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_011e_8357_a3b2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_011e_8357_a3b2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_011e_8357_a3b2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_011e_8357_a3b2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_011e_8357_a3b2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_011e_8357_a3b2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5345_b94e_5213", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5345_b94e_5213.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5345_b94e_5213/request", "", "public", "Top Dataset, enh, air.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5345_b94e_5213_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5345_b94e_5213_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5345_b94e_5213/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5345_b94e_5213.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5345_b94e_5213&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5345_b94e_5213"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ae5_3754_9fbf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ae5_3754_9fbf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ae5_3754_9fbf/request", "", "public", "Top Dataset, enh, air.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ae5_3754_9fbf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ae5_3754_9fbf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ae5_3754_9fbf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ae5_3754_9fbf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ae5_3754_9fbf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5ae5_3754_9fbf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efb2_03a9_f91e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efb2_03a9_f91e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_efb2_03a9_f91e/request", "", "public", "Top Dataset, enh, air.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_efb2_03a9_f91e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_efb2_03a9_f91e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_efb2_03a9_f91e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_efb2_03a9_f91e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_efb2_03a9_f91e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_efb2_03a9_f91e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_695a_2adf_ab4a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_695a_2adf_ab4a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_695a_2adf_ab4a/request", "", "public", "Top Dataset, enh, air.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_695a_2adf_ab4a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_695a_2adf_ab4a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_695a_2adf_ab4a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_695a_2adf_ab4a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_695a_2adf_ab4a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_695a_2adf_ab4a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f775_cc83_836d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f775_cc83_836d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f775_cc83_836d/request", "", "public", "Top Dataset, enh, air.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f775_cc83_836d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f775_cc83_836d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f775_cc83_836d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f775_cc83_836d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f775_cc83_836d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f775_cc83_836d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b76f_c5d4_7fc9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b76f_c5d4_7fc9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b76f_c5d4_7fc9/request", "", "public", "Top Dataset, enh, air.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b76f_c5d4_7fc9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b76f_c5d4_7fc9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b76f_c5d4_7fc9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b76f_c5d4_7fc9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b76f_c5d4_7fc9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b76f_c5d4_7fc9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9980_59b4_ba99", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9980_59b4_ba99.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9980_59b4_ba99/request", "", "public", "Top Dataset, enh, air.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9980_59b4_ba99_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9980_59b4_ba99_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9980_59b4_ba99/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9980_59b4_ba99.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9980_59b4_ba99&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9980_59b4_ba99"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0ee_3ceb_1928", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0ee_3ceb_1928.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c0ee_3ceb_1928/request", "", "public", "Top Dataset, enh, air.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c0ee_3ceb_1928_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c0ee_3ceb_1928_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c0ee_3ceb_1928/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c0ee_3ceb_1928.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c0ee_3ceb_1928&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c0ee_3ceb_1928"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3716_3413_c407", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3716_3413_c407.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3716_3413_c407/request", "", "public", "Top Dataset, enh, air.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3716_3413_c407_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3716_3413_c407_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3716_3413_c407/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3716_3413_c407.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3716_3413_c407&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3716_3413_c407"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3212_1e70_011e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3212_1e70_011e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3212_1e70_011e/request", "", "public", "Top Dataset, enh, air.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3212_1e70_011e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3212_1e70_011e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3212_1e70_011e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3212_1e70_011e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3212_1e70_011e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3212_1e70_011e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85f7_d535_25fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85f7_d535_25fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_85f7_d535_25fb/request", "", "public", "Top Dataset, enh, air.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_85f7_d535_25fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_85f7_d535_25fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85f7_d535_25fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85f7_d535_25fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85f7_d535_25fb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_85f7_d535_25fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e630_e0e0_23ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e630_e0e0_23ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e630_e0e0_23ff/request", "", "public", "Top Dataset, enh, air.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e630_e0e0_23ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e630_e0e0_23ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e630_e0e0_23ff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e630_e0e0_23ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e630_e0e0_23ff&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e630_e0e0_23ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8825_aa96_58ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8825_aa96_58ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8825_aa96_58ac/request", "", "public", "Top Dataset, enh, air.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8825_aa96_58ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8825_aa96_58ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8825_aa96_58ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8825_aa96_58ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8825_aa96_58ac&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8825_aa96_58ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccf8_5c26_9811", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccf8_5c26_9811.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ccf8_5c26_9811/request", "", "public", "Top Dataset, enh, air.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ccf8_5c26_9811_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ccf8_5c26_9811_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ccf8_5c26_9811/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ccf8_5c26_9811.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ccf8_5c26_9811&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ccf8_5c26_9811"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6170_2244_d0f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6170_2244_d0f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6170_2244_d0f6/request", "", "public", "Top Dataset, enh, air.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6170_2244_d0f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6170_2244_d0f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6170_2244_d0f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6170_2244_d0f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6170_2244_d0f6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6170_2244_d0f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c6d8_66cc_654b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c6d8_66cc_654b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c6d8_66cc_654b/request", "", "public", "Top Dataset, enh, air.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c6d8_66cc_654b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c6d8_66cc_654b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c6d8_66cc_654b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c6d8_66cc_654b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c6d8_66cc_654b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c6d8_66cc_654b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f140_79fd_8774", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f140_79fd_8774.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f140_79fd_8774/request", "", "public", "Top Dataset, enh, air.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f140_79fd_8774_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f140_79fd_8774_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f140_79fd_8774/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f140_79fd_8774.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f140_79fd_8774&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f140_79fd_8774"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_827b_979a_47ad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_827b_979a_47ad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_827b_979a_47ad/request", "", "public", "Top Dataset, enh, air.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_827b_979a_47ad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_827b_979a_47ad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_827b_979a_47ad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_827b_979a_47ad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_827b_979a_47ad&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_827b_979a_47ad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e17_1d2a_63ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e17_1d2a_63ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1e17_1d2a_63ef/request", "", "public", "Top Dataset, enh, air.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1e17_1d2a_63ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1e17_1d2a_63ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1e17_1d2a_63ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1e17_1d2a_63ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1e17_1d2a_63ef&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1e17_1d2a_63ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7789_40a1_2d60", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7789_40a1_2d60.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7789_40a1_2d60/request", "", "public", "Top Dataset, enh, air.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7789_40a1_2d60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7789_40a1_2d60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7789_40a1_2d60/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7789_40a1_2d60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7789_40a1_2d60&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7789_40a1_2d60"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_55e5_ac99_a2dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_55e5_ac99_a2dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_55e5_ac99_a2dc/request", "", "public", "Top Dataset, enh, air.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_55e5_ac99_a2dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_55e5_ac99_a2dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_55e5_ac99_a2dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_55e5_ac99_a2dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_55e5_ac99_a2dc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_55e5_ac99_a2dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54f8_de48_890f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54f8_de48_890f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54f8_de48_890f/request", "", "public", "Top Dataset, enh, air.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54f8_de48_890f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54f8_de48_890f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54f8_de48_890f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54f8_de48_890f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54f8_de48_890f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_54f8_de48_890f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f94e_4297_a749", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f94e_4297_a749.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f94e_4297_a749/request", "", "public", "Top Dataset, enh, air.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f94e_4297_a749_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f94e_4297_a749_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f94e_4297_a749/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f94e_4297_a749.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f94e_4297_a749&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f94e_4297_a749"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e649_4236_db6f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e649_4236_db6f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e649_4236_db6f/request", "", "public", "Top Dataset, enh, air.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e649_4236_db6f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e649_4236_db6f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e649_4236_db6f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e649_4236_db6f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e649_4236_db6f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e649_4236_db6f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ad4_34aa_9029", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ad4_34aa_9029.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6ad4_34aa_9029/request", "", "public", "Top Dataset, enh, air.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6ad4_34aa_9029_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6ad4_34aa_9029_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ad4_34aa_9029/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ad4_34aa_9029.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ad4_34aa_9029&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6ad4_34aa_9029"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8733_0016_e106", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8733_0016_e106.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8733_0016_e106/request", "", "public", "Top Dataset, enh, air.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8733_0016_e106_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8733_0016_e106_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8733_0016_e106/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8733_0016_e106.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8733_0016_e106&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8733_0016_e106"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ed8_7e10_f721", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ed8_7e10_f721.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ed8_7e10_f721/request", "", "public", "Top Dataset, enh, air.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ed8_7e10_f721_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ed8_7e10_f721_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ed8_7e10_f721/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ed8_7e10_f721.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ed8_7e10_f721&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8ed8_7e10_f721"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cf0_de58_c15f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cf0_de58_c15f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7cf0_de58_c15f/request", "", "public", "Top Dataset, enh, air.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7cf0_de58_c15f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7cf0_de58_c15f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7cf0_de58_c15f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7cf0_de58_c15f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7cf0_de58_c15f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7cf0_de58_c15f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9aa8_d6f1_552d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9aa8_d6f1_552d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9aa8_d6f1_552d/request", "", "public", "Top Dataset, enh, air.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9aa8_d6f1_552d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9aa8_d6f1_552d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9aa8_d6f1_552d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9aa8_d6f1_552d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9aa8_d6f1_552d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9aa8_d6f1_552d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9fb3_6685_148e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9fb3_6685_148e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9fb3_6685_148e/request", "", "public", "Top Dataset, enh, air.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9fb3_6685_148e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9fb3_6685_148e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9fb3_6685_148e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9fb3_6685_148e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9fb3_6685_148e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9fb3_6685_148e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4375_b6af_59f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4375_b6af_59f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4375_b6af_59f3/request", "", "public", "Top Dataset, enh, air.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4375_b6af_59f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4375_b6af_59f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4375_b6af_59f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4375_b6af_59f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4375_b6af_59f3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4375_b6af_59f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e55e_0b3c_d405", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e55e_0b3c_d405.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e55e_0b3c_d405/request", "", "public", "Top Dataset, enh, air.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e55e_0b3c_d405_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e55e_0b3c_d405_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e55e_0b3c_d405/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e55e_0b3c_d405.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e55e_0b3c_d405&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e55e_0b3c_d405"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e59_a303_85eb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e59_a303_85eb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1e59_a303_85eb/request", "", "public", "Top Dataset, enh, air.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1e59_a303_85eb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1e59_a303_85eb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1e59_a303_85eb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1e59_a303_85eb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1e59_a303_85eb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1e59_a303_85eb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0cb7_e983_161f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0cb7_e983_161f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0cb7_e983_161f/request", "", "public", "Top Dataset, enh, air.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0cb7_e983_161f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0cb7_e983_161f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0cb7_e983_161f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0cb7_e983_161f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0cb7_e983_161f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0cb7_e983_161f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14ad_13ed_3e2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14ad_13ed_3e2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_14ad_13ed_3e2d/request", "", "public", "Top Dataset, enh, air.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_14ad_13ed_3e2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_14ad_13ed_3e2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_14ad_13ed_3e2d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_14ad_13ed_3e2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_14ad_13ed_3e2d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_14ad_13ed_3e2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a74_2d95_ed36", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a74_2d95_ed36.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9a74_2d95_ed36/request", "", "public", "Top Dataset, enh, air.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9a74_2d95_ed36_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9a74_2d95_ed36_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9a74_2d95_ed36/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9a74_2d95_ed36.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9a74_2d95_ed36&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9a74_2d95_ed36"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56f2_0814_0a67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56f2_0814_0a67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_56f2_0814_0a67/request", "", "public", "Top Dataset, enh, air.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_56f2_0814_0a67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_56f2_0814_0a67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_56f2_0814_0a67/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_56f2_0814_0a67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_56f2_0814_0a67&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_56f2_0814_0a67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7877_2fde_59bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7877_2fde_59bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7877_2fde_59bf/request", "", "public", "Top Dataset, enh, air.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7877_2fde_59bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7877_2fde_59bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7877_2fde_59bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7877_2fde_59bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7877_2fde_59bf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7877_2fde_59bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abc4_2303_9ded", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abc4_2303_9ded.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_abc4_2303_9ded/request", "", "public", "Top Dataset, enh, air.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_abc4_2303_9ded_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_abc4_2303_9ded_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_abc4_2303_9ded/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_abc4_2303_9ded.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_abc4_2303_9ded&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_abc4_2303_9ded"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1de1_7882_f0fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1de1_7882_f0fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1de1_7882_f0fd/request", "", "public", "Top Dataset, enh, air.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1de1_7882_f0fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1de1_7882_f0fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1de1_7882_f0fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1de1_7882_f0fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1de1_7882_f0fd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1de1_7882_f0fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cac5_f5a5_0e57", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cac5_f5a5_0e57.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cac5_f5a5_0e57/request", "", "public", "Top Dataset, enh, air.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cac5_f5a5_0e57_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cac5_f5a5_0e57_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cac5_f5a5_0e57/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cac5_f5a5_0e57.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cac5_f5a5_0e57&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cac5_f5a5_0e57"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f294_bf9f_4e98", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f294_bf9f_4e98.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f294_bf9f_4e98/request", "", "public", "Top Dataset, enh, air.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f294_bf9f_4e98_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f294_bf9f_4e98_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f294_bf9f_4e98/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f294_bf9f_4e98.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f294_bf9f_4e98&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f294_bf9f_4e98"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4736_1801_0d36", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4736_1801_0d36.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4736_1801_0d36/request", "", "public", "Top Dataset, enh, air.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4736_1801_0d36_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4736_1801_0d36_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4736_1801_0d36/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4736_1801_0d36.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4736_1801_0d36&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4736_1801_0d36"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfd5_7e66_7d9e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfd5_7e66_7d9e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dfd5_7e66_7d9e/request", "", "public", "Top Dataset, enh, air.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dfd5_7e66_7d9e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dfd5_7e66_7d9e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dfd5_7e66_7d9e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dfd5_7e66_7d9e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dfd5_7e66_7d9e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dfd5_7e66_7d9e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb66_26a4_3d00", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb66_26a4_3d00.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eb66_26a4_3d00/request", "", "public", "Top Dataset, enh, air.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eb66_26a4_3d00_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eb66_26a4_3d00_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb66_26a4_3d00/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb66_26a4_3d00.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb66_26a4_3d00&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_eb66_26a4_3d00"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_947c_540a_3ab9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_947c_540a_3ab9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_947c_540a_3ab9/request", "", "public", "Top Dataset, enh, air.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_947c_540a_3ab9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_947c_540a_3ab9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_947c_540a_3ab9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_947c_540a_3ab9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_947c_540a_3ab9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_947c_540a_3ab9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfa4_69c6_a3b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfa4_69c6_a3b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dfa4_69c6_a3b0/request", "", "public", "Top Dataset, enh, air.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dfa4_69c6_a3b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dfa4_69c6_a3b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dfa4_69c6_a3b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dfa4_69c6_a3b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dfa4_69c6_a3b0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dfa4_69c6_a3b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae6a_6974_1573", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae6a_6974_1573.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae6a_6974_1573/request", "", "public", "Top Dataset, enh, air.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae6a_6974_1573_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae6a_6974_1573_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae6a_6974_1573/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae6a_6974_1573.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae6a_6974_1573&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ae6a_6974_1573"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c0c_11de_818f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c0c_11de_818f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8c0c_11de_818f/request", "", "public", "Top Dataset, enh, air.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8c0c_11de_818f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8c0c_11de_818f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8c0c_11de_818f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8c0c_11de_818f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8c0c_11de_818f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8c0c_11de_818f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d663_b328_08cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d663_b328_08cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d663_b328_08cf/request", "", "public", "Top Dataset, enh, air.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d663_b328_08cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d663_b328_08cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d663_b328_08cf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d663_b328_08cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d663_b328_08cf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d663_b328_08cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dde7_cc55_b968", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dde7_cc55_b968.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dde7_cc55_b968/request", "", "public", "Top Dataset, enh, cldc.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dde7_cc55_b968_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dde7_cc55_b968_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dde7_cc55_b968/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dde7_cc55_b968.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dde7_cc55_b968&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_dde7_cc55_b968"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8bee_68cd_0be0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8bee_68cd_0be0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8bee_68cd_0be0/request", "", "public", "Top Dataset, enh, cldc.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8bee_68cd_0be0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8bee_68cd_0be0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8bee_68cd_0be0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8bee_68cd_0be0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8bee_68cd_0be0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8bee_68cd_0be0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d09e_4229_5d4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d09e_4229_5d4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d09e_4229_5d4d/request", "", "public", "Top Dataset, enh, cldc.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d09e_4229_5d4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d09e_4229_5d4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d09e_4229_5d4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d09e_4229_5d4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d09e_4229_5d4d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d09e_4229_5d4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2465_09fa_5cb4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2465_09fa_5cb4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2465_09fa_5cb4/request", "", "public", "Top Dataset, enh, cldc.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2465_09fa_5cb4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2465_09fa_5cb4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2465_09fa_5cb4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2465_09fa_5cb4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2465_09fa_5cb4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2465_09fa_5cb4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_349e_075b_7cfb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_349e_075b_7cfb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_349e_075b_7cfb/request", "", "public", "Top Dataset, enh, cldc.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_349e_075b_7cfb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_349e_075b_7cfb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_349e_075b_7cfb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_349e_075b_7cfb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_349e_075b_7cfb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_349e_075b_7cfb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b541_f3e5_846d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b541_f3e5_846d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b541_f3e5_846d/request", "", "public", "Top Dataset, enh, cldc.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b541_f3e5_846d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b541_f3e5_846d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b541_f3e5_846d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b541_f3e5_846d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b541_f3e5_846d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b541_f3e5_846d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_776e_8054_9c8b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_776e_8054_9c8b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_776e_8054_9c8b/request", "", "public", "Top Dataset, enh, cldc.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_776e_8054_9c8b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_776e_8054_9c8b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_776e_8054_9c8b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_776e_8054_9c8b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_776e_8054_9c8b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_776e_8054_9c8b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b59c_1bd4_0418", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b59c_1bd4_0418.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b59c_1bd4_0418/request", "", "public", "Top Dataset, enh, cldc.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b59c_1bd4_0418_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b59c_1bd4_0418_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b59c_1bd4_0418/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b59c_1bd4_0418.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b59c_1bd4_0418&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b59c_1bd4_0418"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9c1_5602_079b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9c1_5602_079b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e9c1_5602_079b/request", "", "public", "Top Dataset, enh, cldc.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e9c1_5602_079b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e9c1_5602_079b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e9c1_5602_079b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e9c1_5602_079b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e9c1_5602_079b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e9c1_5602_079b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab4f_c548_2445", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab4f_c548_2445.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab4f_c548_2445/request", "", "public", "Top Dataset, enh, cldc.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab4f_c548_2445_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab4f_c548_2445_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab4f_c548_2445/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab4f_c548_2445.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab4f_c548_2445&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ab4f_c548_2445"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ab2_019a_bcb5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ab2_019a_bcb5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ab2_019a_bcb5/request", "", "public", "Top Dataset, enh, cldc.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ab2_019a_bcb5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ab2_019a_bcb5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ab2_019a_bcb5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ab2_019a_bcb5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ab2_019a_bcb5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5ab2_019a_bcb5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6079_2b90_0caa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6079_2b90_0caa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6079_2b90_0caa/request", "", "public", "Top Dataset, enh, cldc.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6079_2b90_0caa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6079_2b90_0caa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6079_2b90_0caa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6079_2b90_0caa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6079_2b90_0caa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6079_2b90_0caa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3f9_2f3a_c841", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3f9_2f3a_c841.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c3f9_2f3a_c841/request", "", "public", "Top Dataset, enh, cldc.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c3f9_2f3a_c841_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c3f9_2f3a_c841_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c3f9_2f3a_c841/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c3f9_2f3a_c841.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c3f9_2f3a_c841&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c3f9_2f3a_c841"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d766_cc3b_cc02", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d766_cc3b_cc02.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d766_cc3b_cc02/request", "", "public", "Top Dataset, enh, cldc.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d766_cc3b_cc02_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d766_cc3b_cc02_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d766_cc3b_cc02/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d766_cc3b_cc02.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d766_cc3b_cc02&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d766_cc3b_cc02"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edf0_b75c_08e7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edf0_b75c_08e7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_edf0_b75c_08e7/request", "", "public", "Top Dataset, enh, cldc.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_edf0_b75c_08e7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_edf0_b75c_08e7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_edf0_b75c_08e7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_edf0_b75c_08e7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_edf0_b75c_08e7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_edf0_b75c_08e7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7c2_a524_1a5e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7c2_a524_1a5e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d7c2_a524_1a5e/request", "", "public", "Top Dataset, enh, cldc.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d7c2_a524_1a5e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d7c2_a524_1a5e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d7c2_a524_1a5e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d7c2_a524_1a5e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d7c2_a524_1a5e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d7c2_a524_1a5e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35d5_5c21_4c99", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35d5_5c21_4c99.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_35d5_5c21_4c99/request", "", "public", "Top Dataset, enh, cldc.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_35d5_5c21_4c99_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_35d5_5c21_4c99_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_35d5_5c21_4c99/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_35d5_5c21_4c99.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_35d5_5c21_4c99&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_35d5_5c21_4c99"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7282_61f3_1330", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7282_61f3_1330.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7282_61f3_1330/request", "", "public", "Top Dataset, enh, cldc.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7282_61f3_1330_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7282_61f3_1330_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7282_61f3_1330/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7282_61f3_1330.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7282_61f3_1330&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7282_61f3_1330"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ba4_caae_78bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ba4_caae_78bc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ba4_caae_78bc/request", "", "public", "Top Dataset, enh, cldc.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ba4_caae_78bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ba4_caae_78bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ba4_caae_78bc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ba4_caae_78bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ba4_caae_78bc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8ba4_caae_78bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18a7_587f_fccf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18a7_587f_fccf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_18a7_587f_fccf/request", "", "public", "Top Dataset, enh, cldc.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_18a7_587f_fccf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_18a7_587f_fccf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_18a7_587f_fccf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_18a7_587f_fccf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_18a7_587f_fccf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_18a7_587f_fccf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d42_57cb_eaa3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d42_57cb_eaa3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d42_57cb_eaa3/request", "", "public", "Top Dataset, enh, cldc.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d42_57cb_eaa3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d42_57cb_eaa3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d42_57cb_eaa3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d42_57cb_eaa3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d42_57cb_eaa3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d42_57cb_eaa3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94e2_6d15_f351", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94e2_6d15_f351.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_94e2_6d15_f351/request", "", "public", "Top Dataset, enh, cldc.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_94e2_6d15_f351_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_94e2_6d15_f351_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_94e2_6d15_f351/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_94e2_6d15_f351.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_94e2_6d15_f351&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_94e2_6d15_f351"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9006_967e_60ed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9006_967e_60ed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9006_967e_60ed/request", "", "public", "Top Dataset, enh, cldc.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9006_967e_60ed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9006_967e_60ed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9006_967e_60ed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9006_967e_60ed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9006_967e_60ed&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9006_967e_60ed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d9d1_0e90_f328", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d9d1_0e90_f328.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d9d1_0e90_f328/request", "", "public", "Top Dataset, enh, cldc.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d9d1_0e90_f328_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d9d1_0e90_f328_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d9d1_0e90_f328/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d9d1_0e90_f328.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d9d1_0e90_f328&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d9d1_0e90_f328"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e6e_f73f_9c79", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e6e_f73f_9c79.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2e6e_f73f_9c79/request", "", "public", "Top Dataset, enh, cldc.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2e6e_f73f_9c79_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2e6e_f73f_9c79_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2e6e_f73f_9c79/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2e6e_f73f_9c79.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2e6e_f73f_9c79&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2e6e_f73f_9c79"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_11ce_ee19_6ba9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_11ce_ee19_6ba9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_11ce_ee19_6ba9/request", "", "public", "Top Dataset, enh, cldc.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_11ce_ee19_6ba9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_11ce_ee19_6ba9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_11ce_ee19_6ba9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_11ce_ee19_6ba9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_11ce_ee19_6ba9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_11ce_ee19_6ba9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7c0_3129_5df8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7c0_3129_5df8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c7c0_3129_5df8/request", "", "public", "Top Dataset, enh, cldc.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c7c0_3129_5df8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c7c0_3129_5df8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c7c0_3129_5df8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c7c0_3129_5df8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c7c0_3129_5df8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c7c0_3129_5df8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d9a6_88a9_8f48", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d9a6_88a9_8f48.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d9a6_88a9_8f48/request", "", "public", "Top Dataset, enh, cldc.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d9a6_88a9_8f48_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d9a6_88a9_8f48_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d9a6_88a9_8f48/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d9a6_88a9_8f48.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d9a6_88a9_8f48&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d9a6_88a9_8f48"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db70_c710_f789", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db70_c710_f789.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db70_c710_f789/request", "", "public", "Top Dataset, enh, cldc.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db70_c710_f789_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db70_c710_f789_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db70_c710_f789/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db70_c710_f789.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db70_c710_f789&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_db70_c710_f789"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eaa3_622f_3bd7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eaa3_622f_3bd7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eaa3_622f_3bd7/request", "", "public", "Top Dataset, enh, cldc.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eaa3_622f_3bd7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eaa3_622f_3bd7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eaa3_622f_3bd7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eaa3_622f_3bd7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eaa3_622f_3bd7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eaa3_622f_3bd7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1bb_c6f2_1ddf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1bb_c6f2_1ddf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d1bb_c6f2_1ddf/request", "", "public", "Top Dataset, enh, cldc.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d1bb_c6f2_1ddf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d1bb_c6f2_1ddf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d1bb_c6f2_1ddf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d1bb_c6f2_1ddf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d1bb_c6f2_1ddf&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d1bb_c6f2_1ddf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d82e_6a38_5a7a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d82e_6a38_5a7a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d82e_6a38_5a7a/request", "", "public", "Top Dataset, enh, cldc.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d82e_6a38_5a7a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d82e_6a38_5a7a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d82e_6a38_5a7a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d82e_6a38_5a7a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d82e_6a38_5a7a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d82e_6a38_5a7a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffec_dce6_8ded", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffec_dce6_8ded.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ffec_dce6_8ded/request", "", "public", "Top Dataset, enh, cldc.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ffec_dce6_8ded_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ffec_dce6_8ded_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ffec_dce6_8ded/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ffec_dce6_8ded.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ffec_dce6_8ded&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ffec_dce6_8ded"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6664_c3ed_455e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6664_c3ed_455e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6664_c3ed_455e/request", "", "public", "Top Dataset, enh, cldc.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6664_c3ed_455e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6664_c3ed_455e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6664_c3ed_455e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6664_c3ed_455e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6664_c3ed_455e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6664_c3ed_455e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a6e_72cb_2415", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a6e_72cb_2415.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a6e_72cb_2415/request", "", "public", "Top Dataset, enh, cldc.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a6e_72cb_2415_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a6e_72cb_2415_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a6e_72cb_2415/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a6e_72cb_2415.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a6e_72cb_2415&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6a6e_72cb_2415"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d87c_2f09_b69b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d87c_2f09_b69b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d87c_2f09_b69b/request", "", "public", "Top Dataset, enh, cldc.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d87c_2f09_b69b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d87c_2f09_b69b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d87c_2f09_b69b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d87c_2f09_b69b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d87c_2f09_b69b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d87c_2f09_b69b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da30_d8c0_03ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da30_d8c0_03ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da30_d8c0_03ef/request", "", "public", "Top Dataset, enh, cldc.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da30_d8c0_03ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da30_d8c0_03ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da30_d8c0_03ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da30_d8c0_03ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da30_d8c0_03ef&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_da30_d8c0_03ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c5a_683b_c016", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c5a_683b_c016.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c5a_683b_c016/request", "", "public", "Top Dataset, enh, cldc.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c5a_683b_c016_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c5a_683b_c016_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c5a_683b_c016/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c5a_683b_c016.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c5a_683b_c016&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0c5a_683b_c016"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_430f_af68_dd0f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_430f_af68_dd0f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_430f_af68_dd0f/request", "", "public", "Top Dataset, enh, cldc.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_430f_af68_dd0f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_430f_af68_dd0f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_430f_af68_dd0f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_430f_af68_dd0f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_430f_af68_dd0f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_430f_af68_dd0f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08ae_97af_7c2b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08ae_97af_7c2b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_08ae_97af_7c2b/request", "", "public", "Top Dataset, enh, cldc.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_08ae_97af_7c2b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_08ae_97af_7c2b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_08ae_97af_7c2b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_08ae_97af_7c2b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_08ae_97af_7c2b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_08ae_97af_7c2b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a04_f58d_c512", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a04_f58d_c512.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a04_f58d_c512/request", "", "public", "Top Dataset, enh, cldc.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a04_f58d_c512_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a04_f58d_c512_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a04_f58d_c512/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a04_f58d_c512.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a04_f58d_c512&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0a04_f58d_c512"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ef7_d68f_e306", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ef7_d68f_e306.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ef7_d68f_e306/request", "", "public", "Top Dataset, enh, cldc.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ef7_d68f_e306_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ef7_d68f_e306_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ef7_d68f_e306/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ef7_d68f_e306.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ef7_d68f_e306&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7ef7_d68f_e306"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e8f_fcf6_6f4e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e8f_fcf6_6f4e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1e8f_fcf6_6f4e/request", "", "public", "Top Dataset, enh, cldc.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1e8f_fcf6_6f4e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1e8f_fcf6_6f4e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1e8f_fcf6_6f4e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1e8f_fcf6_6f4e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1e8f_fcf6_6f4e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1e8f_fcf6_6f4e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06e8_41ef_370f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06e8_41ef_370f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_06e8_41ef_370f/request", "", "public", "Top Dataset, enh, cldc.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_06e8_41ef_370f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_06e8_41ef_370f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_06e8_41ef_370f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_06e8_41ef_370f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_06e8_41ef_370f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_06e8_41ef_370f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12f4_fcfe_6d43", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12f4_fcfe_6d43.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_12f4_fcfe_6d43/request", "", "public", "Top Dataset, enh, cldc.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_12f4_fcfe_6d43_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_12f4_fcfe_6d43_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_12f4_fcfe_6d43/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_12f4_fcfe_6d43.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_12f4_fcfe_6d43&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_12f4_fcfe_6d43"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad97_2583_f015", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad97_2583_f015.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ad97_2583_f015/request", "", "public", "Top Dataset, enh, cldc.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ad97_2583_f015_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ad97_2583_f015_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ad97_2583_f015/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ad97_2583_f015.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ad97_2583_f015&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ad97_2583_f015"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d17_4c52_42e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d17_4c52_42e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d17_4c52_42e5/request", "", "public", "Top Dataset, enh, cldc.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d17_4c52_42e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d17_4c52_42e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d17_4c52_42e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d17_4c52_42e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d17_4c52_42e5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1d17_4c52_42e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8df2_457a_8291", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8df2_457a_8291.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8df2_457a_8291/request", "", "public", "Top Dataset, enh, cldc.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8df2_457a_8291_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8df2_457a_8291_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8df2_457a_8291/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8df2_457a_8291.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8df2_457a_8291&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8df2_457a_8291"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6137_34a2_2c49", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6137_34a2_2c49.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6137_34a2_2c49/request", "", "public", "Top Dataset, enh, cldc.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6137_34a2_2c49_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6137_34a2_2c49_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6137_34a2_2c49/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6137_34a2_2c49.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6137_34a2_2c49&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6137_34a2_2c49"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_780b_33c0_1b27", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_780b_33c0_1b27.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_780b_33c0_1b27/request", "", "public", "Top Dataset, enh, cldc.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_780b_33c0_1b27_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_780b_33c0_1b27_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_780b_33c0_1b27/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_780b_33c0_1b27.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_780b_33c0_1b27&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_780b_33c0_1b27"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d909_0419_bc51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d909_0419_bc51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d909_0419_bc51/request", "", "public", "Top Dataset, enh, cldc.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d909_0419_bc51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d909_0419_bc51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d909_0419_bc51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d909_0419_bc51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d909_0419_bc51&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d909_0419_bc51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7023_1b29_e2ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7023_1b29_e2ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7023_1b29_e2ac/request", "", "public", "Top Dataset, enh, cldc.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7023_1b29_e2ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7023_1b29_e2ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7023_1b29_e2ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7023_1b29_e2ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7023_1b29_e2ac&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7023_1b29_e2ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83d1_1029_a047", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83d1_1029_a047.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_83d1_1029_a047/request", "", "public", "Top Dataset, enh, cldc.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_83d1_1029_a047_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_83d1_1029_a047_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_83d1_1029_a047/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_83d1_1029_a047.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_83d1_1029_a047&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_83d1_1029_a047"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad91_df9a_61ed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad91_df9a_61ed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ad91_df9a_61ed/request", "", "public", "Top Dataset, enh, cldc.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ad91_df9a_61ed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ad91_df9a_61ed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ad91_df9a_61ed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ad91_df9a_61ed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ad91_df9a_61ed&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ad91_df9a_61ed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1850_abf6_5a21", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1850_abf6_5a21.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1850_abf6_5a21/request", "", "public", "Top Dataset, enh, cldc.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1850_abf6_5a21_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1850_abf6_5a21_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1850_abf6_5a21/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1850_abf6_5a21.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1850_abf6_5a21&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1850_abf6_5a21"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c0d_99f7_bc72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c0d_99f7_bc72.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c0d_99f7_bc72/request", "", "public", "Top Dataset, enh, cldc.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c0d_99f7_bc72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c0d_99f7_bc72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c0d_99f7_bc72/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c0d_99f7_bc72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c0d_99f7_bc72&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5c0d_99f7_bc72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5b0_2414_c86f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5b0_2414_c86f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5b0_2414_c86f/request", "", "public", "Top Dataset, enh, cldc.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5b0_2414_c86f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5b0_2414_c86f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5b0_2414_c86f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5b0_2414_c86f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5b0_2414_c86f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e5b0_2414_c86f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2dc6_d691_94a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2dc6_d691_94a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2dc6_d691_94a1/request", "", "public", "Top Dataset, enh, cldc.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2dc6_d691_94a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2dc6_d691_94a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2dc6_d691_94a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2dc6_d691_94a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2dc6_d691_94a1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2dc6_d691_94a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17dc_23ae_c461", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17dc_23ae_c461.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_17dc_23ae_c461/request", "", "public", "Top Dataset, enh, cldc.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_17dc_23ae_c461_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_17dc_23ae_c461_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_17dc_23ae_c461/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_17dc_23ae_c461.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_17dc_23ae_c461&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_17dc_23ae_c461"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7684_45af_8d3b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7684_45af_8d3b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7684_45af_8d3b/request", "", "public", "Top Dataset, enh, cldc.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7684_45af_8d3b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7684_45af_8d3b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7684_45af_8d3b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7684_45af_8d3b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7684_45af_8d3b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7684_45af_8d3b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a384_c287_6287", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a384_c287_6287.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a384_c287_6287/request", "", "public", "Top Dataset, enh, lflx.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a384_c287_6287_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a384_c287_6287_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a384_c287_6287/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a384_c287_6287.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a384_c287_6287&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a384_c287_6287"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7911_fa76_86ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7911_fa76_86ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7911_fa76_86ab/request", "", "public", "Top Dataset, enh, lflx.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7911_fa76_86ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7911_fa76_86ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7911_fa76_86ab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7911_fa76_86ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7911_fa76_86ab&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7911_fa76_86ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad5c_0d16_d329", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad5c_0d16_d329.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ad5c_0d16_d329/request", "", "public", "Top Dataset, enh, lflx.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ad5c_0d16_d329_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ad5c_0d16_d329_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ad5c_0d16_d329/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ad5c_0d16_d329.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ad5c_0d16_d329&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ad5c_0d16_d329"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eed4_e078_01d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eed4_e078_01d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eed4_e078_01d0/request", "", "public", "Top Dataset, enh, lflx.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eed4_e078_01d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eed4_e078_01d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eed4_e078_01d0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eed4_e078_01d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eed4_e078_01d0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_eed4_e078_01d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0000_2c9e_9cdf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0000_2c9e_9cdf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0000_2c9e_9cdf/request", "", "public", "Top Dataset, enh, lflx.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0000_2c9e_9cdf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0000_2c9e_9cdf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0000_2c9e_9cdf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0000_2c9e_9cdf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0000_2c9e_9cdf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0000_2c9e_9cdf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ec2_3b48_b47f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ec2_3b48_b47f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2ec2_3b48_b47f/request", "", "public", "Top Dataset, enh, lflx.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2ec2_3b48_b47f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2ec2_3b48_b47f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2ec2_3b48_b47f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2ec2_3b48_b47f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2ec2_3b48_b47f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2ec2_3b48_b47f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_76d5_2de9_0c35", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_76d5_2de9_0c35.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_76d5_2de9_0c35/request", "", "public", "Top Dataset, enh, lflx.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_76d5_2de9_0c35_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_76d5_2de9_0c35_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_76d5_2de9_0c35/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_76d5_2de9_0c35.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_76d5_2de9_0c35&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_76d5_2de9_0c35"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20bf_be9c_2f3d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20bf_be9c_2f3d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_20bf_be9c_2f3d/request", "", "public", "Top Dataset, enh, lflx.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_20bf_be9c_2f3d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_20bf_be9c_2f3d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_20bf_be9c_2f3d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_20bf_be9c_2f3d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_20bf_be9c_2f3d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_20bf_be9c_2f3d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b3d_c5bc_c261", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b3d_c5bc_c261.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b3d_c5bc_c261/request", "", "public", "Top Dataset, enh, lflx.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b3d_c5bc_c261_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b3d_c5bc_c261_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b3d_c5bc_c261/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b3d_c5bc_c261.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b3d_c5bc_c261&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6b3d_c5bc_c261"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa06_2de8_f441", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa06_2de8_f441.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fa06_2de8_f441/request", "", "public", "Top Dataset, enh, lflx.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fa06_2de8_f441_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fa06_2de8_f441_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fa06_2de8_f441/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fa06_2de8_f441.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fa06_2de8_f441&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fa06_2de8_f441"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b443_92fc_10a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b443_92fc_10a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b443_92fc_10a0/request", "", "public", "Top Dataset, enh, lflx.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b443_92fc_10a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b443_92fc_10a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b443_92fc_10a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b443_92fc_10a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b443_92fc_10a0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b443_92fc_10a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b931_69d0_3ff6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b931_69d0_3ff6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b931_69d0_3ff6/request", "", "public", "Top Dataset, enh, lflx.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b931_69d0_3ff6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b931_69d0_3ff6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b931_69d0_3ff6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b931_69d0_3ff6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b931_69d0_3ff6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b931_69d0_3ff6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ee4_75d0_1af9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ee4_75d0_1af9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9ee4_75d0_1af9/request", "", "public", "Top Dataset, enh, lflx.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9ee4_75d0_1af9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9ee4_75d0_1af9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9ee4_75d0_1af9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9ee4_75d0_1af9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9ee4_75d0_1af9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9ee4_75d0_1af9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1391_9e53_8f08", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1391_9e53_8f08.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1391_9e53_8f08/request", "", "public", "Top Dataset, enh, lflx.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1391_9e53_8f08_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1391_9e53_8f08_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1391_9e53_8f08/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1391_9e53_8f08.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1391_9e53_8f08&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1391_9e53_8f08"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f76d_01f6_0054", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f76d_01f6_0054.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f76d_01f6_0054/request", "", "public", "Top Dataset, enh, lflx.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f76d_01f6_0054_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f76d_01f6_0054_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f76d_01f6_0054/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f76d_01f6_0054.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f76d_01f6_0054&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f76d_01f6_0054"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_330c_8467_14b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_330c_8467_14b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_330c_8467_14b7/request", "", "public", "Top Dataset, enh, lflx.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_330c_8467_14b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_330c_8467_14b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_330c_8467_14b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_330c_8467_14b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_330c_8467_14b7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_330c_8467_14b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64fd_356b_2e1b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64fd_356b_2e1b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_64fd_356b_2e1b/request", "", "public", "Top Dataset, enh, lflx.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_64fd_356b_2e1b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_64fd_356b_2e1b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_64fd_356b_2e1b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_64fd_356b_2e1b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_64fd_356b_2e1b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_64fd_356b_2e1b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fdaf_ebff_3d27", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fdaf_ebff_3d27.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fdaf_ebff_3d27/request", "", "public", "Top Dataset, enh, lflx.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fdaf_ebff_3d27_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fdaf_ebff_3d27_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fdaf_ebff_3d27/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fdaf_ebff_3d27.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fdaf_ebff_3d27&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fdaf_ebff_3d27"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5891_fb1d_100d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5891_fb1d_100d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5891_fb1d_100d/request", "", "public", "Top Dataset, enh, lflx.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5891_fb1d_100d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5891_fb1d_100d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5891_fb1d_100d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5891_fb1d_100d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5891_fb1d_100d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5891_fb1d_100d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6504_177d_6c51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6504_177d_6c51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6504_177d_6c51/request", "", "public", "Top Dataset, enh, lflx.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6504_177d_6c51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6504_177d_6c51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6504_177d_6c51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6504_177d_6c51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6504_177d_6c51&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6504_177d_6c51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_69a7_3317_9930", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_69a7_3317_9930.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_69a7_3317_9930/request", "", "public", "Top Dataset, enh, lflx.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_69a7_3317_9930_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_69a7_3317_9930_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_69a7_3317_9930/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_69a7_3317_9930.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_69a7_3317_9930&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_69a7_3317_9930"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_29ad_e921_9751", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_29ad_e921_9751.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_29ad_e921_9751/request", "", "public", "Top Dataset, enh, lflx.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_29ad_e921_9751_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_29ad_e921_9751_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_29ad_e921_9751/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_29ad_e921_9751.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_29ad_e921_9751&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_29ad_e921_9751"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3eb9_a89b_f842", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3eb9_a89b_f842.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3eb9_a89b_f842/request", "", "public", "Top Dataset, enh, lflx.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3eb9_a89b_f842_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3eb9_a89b_f842_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3eb9_a89b_f842/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3eb9_a89b_f842.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3eb9_a89b_f842&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3eb9_a89b_f842"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb45_cebe_13f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb45_cebe_13f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb45_cebe_13f3/request", "", "public", "Top Dataset, enh, lflx.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb45_cebe_13f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb45_cebe_13f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb45_cebe_13f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb45_cebe_13f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb45_cebe_13f3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cb45_cebe_13f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18d1_2e5c_7ba4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18d1_2e5c_7ba4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_18d1_2e5c_7ba4/request", "", "public", "Top Dataset, enh, lflx.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_18d1_2e5c_7ba4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_18d1_2e5c_7ba4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_18d1_2e5c_7ba4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_18d1_2e5c_7ba4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_18d1_2e5c_7ba4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_18d1_2e5c_7ba4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_095d_55bd_ace7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_095d_55bd_ace7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_095d_55bd_ace7/request", "", "public", "Top Dataset, enh, lflx.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_095d_55bd_ace7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_095d_55bd_ace7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_095d_55bd_ace7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_095d_55bd_ace7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_095d_55bd_ace7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_095d_55bd_ace7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35c5_a71c_a7e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35c5_a71c_a7e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_35c5_a71c_a7e6/request", "", "public", "Top Dataset, enh, lflx.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_35c5_a71c_a7e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_35c5_a71c_a7e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_35c5_a71c_a7e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_35c5_a71c_a7e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_35c5_a71c_a7e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_35c5_a71c_a7e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e4f_26fe_c8ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e4f_26fe_c8ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e4f_26fe_c8ae/request", "", "public", "Top Dataset, enh, lflx.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e4f_26fe_c8ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e4f_26fe_c8ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e4f_26fe_c8ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e4f_26fe_c8ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e4f_26fe_c8ae&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3e4f_26fe_c8ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_193d_a24e_947c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_193d_a24e_947c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_193d_a24e_947c/request", "", "public", "Top Dataset, enh, lflx.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_193d_a24e_947c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_193d_a24e_947c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_193d_a24e_947c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_193d_a24e_947c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_193d_a24e_947c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_193d_a24e_947c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c71e_26f5_50ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c71e_26f5_50ba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c71e_26f5_50ba/request", "", "public", "Top Dataset, enh, lflx.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c71e_26f5_50ba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c71e_26f5_50ba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c71e_26f5_50ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c71e_26f5_50ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c71e_26f5_50ba&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c71e_26f5_50ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3aeb_3e80_faf4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3aeb_3e80_faf4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3aeb_3e80_faf4/request", "", "public", "Top Dataset, enh, lflx.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3aeb_3e80_faf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3aeb_3e80_faf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3aeb_3e80_faf4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3aeb_3e80_faf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3aeb_3e80_faf4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3aeb_3e80_faf4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0f2_3a4d_8ef0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0f2_3a4d_8ef0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a0f2_3a4d_8ef0/request", "", "public", "Top Dataset, enh, lflx.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a0f2_3a4d_8ef0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a0f2_3a4d_8ef0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a0f2_3a4d_8ef0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a0f2_3a4d_8ef0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a0f2_3a4d_8ef0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a0f2_3a4d_8ef0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d446_1786_f385", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d446_1786_f385.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d446_1786_f385/request", "", "public", "Top Dataset, enh, lflx.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d446_1786_f385_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d446_1786_f385_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d446_1786_f385/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d446_1786_f385.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d446_1786_f385&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d446_1786_f385"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6f0_1685_fd01", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6f0_1685_fd01.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e6f0_1685_fd01/request", "", "public", "Top Dataset, enh, lflx.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e6f0_1685_fd01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e6f0_1685_fd01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e6f0_1685_fd01/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e6f0_1685_fd01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e6f0_1685_fd01&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e6f0_1685_fd01"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a6e4_e9ce_0f56", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a6e4_e9ce_0f56.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a6e4_e9ce_0f56/request", "", "public", "Top Dataset, enh, lflx.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a6e4_e9ce_0f56_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a6e4_e9ce_0f56_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a6e4_e9ce_0f56/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a6e4_e9ce_0f56.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a6e4_e9ce_0f56&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a6e4_e9ce_0f56"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6f0_fed1_0d62", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6f0_fed1_0d62.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d6f0_fed1_0d62/request", "", "public", "Top Dataset, enh, lflx.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d6f0_fed1_0d62_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d6f0_fed1_0d62_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d6f0_fed1_0d62/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d6f0_fed1_0d62.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d6f0_fed1_0d62&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d6f0_fed1_0d62"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2b7_d0a8_9d88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2b7_d0a8_9d88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d2b7_d0a8_9d88/request", "", "public", "Top Dataset, enh, lflx.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d2b7_d0a8_9d88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d2b7_d0a8_9d88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d2b7_d0a8_9d88/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d2b7_d0a8_9d88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d2b7_d0a8_9d88&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d2b7_d0a8_9d88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aab7_fe0d_90d6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aab7_fe0d_90d6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aab7_fe0d_90d6/request", "", "public", "Top Dataset, enh, lflx.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aab7_fe0d_90d6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aab7_fe0d_90d6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aab7_fe0d_90d6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aab7_fe0d_90d6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aab7_fe0d_90d6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aab7_fe0d_90d6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f360_768d_2b37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f360_768d_2b37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f360_768d_2b37/request", "", "public", "Top Dataset, enh, lflx.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f360_768d_2b37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f360_768d_2b37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f360_768d_2b37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f360_768d_2b37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f360_768d_2b37&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f360_768d_2b37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3741_a4a7_066b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3741_a4a7_066b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3741_a4a7_066b/request", "", "public", "Top Dataset, enh, lflx.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3741_a4a7_066b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3741_a4a7_066b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3741_a4a7_066b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3741_a4a7_066b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3741_a4a7_066b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3741_a4a7_066b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4db7_b2a6_78fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4db7_b2a6_78fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4db7_b2a6_78fe/request", "", "public", "Top Dataset, enh, lflx.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4db7_b2a6_78fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4db7_b2a6_78fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4db7_b2a6_78fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4db7_b2a6_78fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4db7_b2a6_78fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4db7_b2a6_78fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e3ec_596d_b1ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e3ec_596d_b1ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e3ec_596d_b1ff/request", "", "public", "Top Dataset, enh, lflx.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e3ec_596d_b1ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e3ec_596d_b1ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e3ec_596d_b1ff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e3ec_596d_b1ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e3ec_596d_b1ff&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e3ec_596d_b1ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1266_1520_bf11", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1266_1520_bf11.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1266_1520_bf11/request", "", "public", "Top Dataset, enh, lflx.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1266_1520_bf11_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1266_1520_bf11_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1266_1520_bf11/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1266_1520_bf11.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1266_1520_bf11&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1266_1520_bf11"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1db7_aa07_4e3f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1db7_aa07_4e3f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1db7_aa07_4e3f/request", "", "public", "Top Dataset, enh, lflx.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1db7_aa07_4e3f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1db7_aa07_4e3f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1db7_aa07_4e3f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1db7_aa07_4e3f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1db7_aa07_4e3f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1db7_aa07_4e3f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bf1_7f0b_7e8d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bf1_7f0b_7e8d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9bf1_7f0b_7e8d/request", "", "public", "Top Dataset, enh, lflx.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9bf1_7f0b_7e8d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9bf1_7f0b_7e8d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9bf1_7f0b_7e8d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9bf1_7f0b_7e8d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9bf1_7f0b_7e8d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9bf1_7f0b_7e8d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9892_0d3a_6a34", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9892_0d3a_6a34.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9892_0d3a_6a34/request", "", "public", "Top Dataset, enh, lflx.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9892_0d3a_6a34_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9892_0d3a_6a34_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9892_0d3a_6a34/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9892_0d3a_6a34.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9892_0d3a_6a34&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9892_0d3a_6a34"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d3d_a037_5483", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d3d_a037_5483.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0d3d_a037_5483/request", "", "public", "Top Dataset, enh, lflx.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0d3d_a037_5483_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0d3d_a037_5483_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0d3d_a037_5483/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0d3d_a037_5483.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0d3d_a037_5483&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0d3d_a037_5483"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5ab_08fb_16d8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5ab_08fb_16d8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5ab_08fb_16d8/request", "", "public", "Top Dataset, enh, lflx.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5ab_08fb_16d8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5ab_08fb_16d8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5ab_08fb_16d8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5ab_08fb_16d8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5ab_08fb_16d8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e5ab_08fb_16d8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_76d8_7bb8_9500", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_76d8_7bb8_9500.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_76d8_7bb8_9500/request", "", "public", "Top Dataset, enh, lflx.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_76d8_7bb8_9500_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_76d8_7bb8_9500_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_76d8_7bb8_9500/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_76d8_7bb8_9500.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_76d8_7bb8_9500&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_76d8_7bb8_9500"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1124_7e96_b569", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1124_7e96_b569.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1124_7e96_b569/request", "", "public", "Top Dataset, enh, lflx.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1124_7e96_b569_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1124_7e96_b569_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1124_7e96_b569/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1124_7e96_b569.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1124_7e96_b569&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1124_7e96_b569"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c4a_fb7f_54ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c4a_fb7f_54ba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1c4a_fb7f_54ba/request", "", "public", "Top Dataset, enh, lflx.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1c4a_fb7f_54ba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1c4a_fb7f_54ba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1c4a_fb7f_54ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1c4a_fb7f_54ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1c4a_fb7f_54ba&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1c4a_fb7f_54ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20b5_a213_64e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20b5_a213_64e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_20b5_a213_64e6/request", "", "public", "Top Dataset, enh, lflx.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_20b5_a213_64e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_20b5_a213_64e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_20b5_a213_64e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_20b5_a213_64e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_20b5_a213_64e6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_20b5_a213_64e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17fc_f912_25d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17fc_f912_25d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_17fc_f912_25d0/request", "", "public", "Top Dataset, enh, lflx.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_17fc_f912_25d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_17fc_f912_25d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_17fc_f912_25d0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_17fc_f912_25d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_17fc_f912_25d0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_17fc_f912_25d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e35_7b34_85ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e35_7b34_85ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7e35_7b34_85ac/request", "", "public", "Top Dataset, enh, lflx.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7e35_7b34_85ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7e35_7b34_85ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e35_7b34_85ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e35_7b34_85ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e35_7b34_85ac&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7e35_7b34_85ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_703e_00bb_090e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_703e_00bb_090e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_703e_00bb_090e/request", "", "public", "Top Dataset, enh, lflx.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_703e_00bb_090e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_703e_00bb_090e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_703e_00bb_090e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_703e_00bb_090e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_703e_00bb_090e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_703e_00bb_090e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ac8_51c5_e7ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ac8_51c5_e7ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ac8_51c5_e7ff/request", "", "public", "Top Dataset, enh, lflx.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ac8_51c5_e7ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ac8_51c5_e7ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ac8_51c5_e7ff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ac8_51c5_e7ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ac8_51c5_e7ff&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1ac8_51c5_e7ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d578_efd7_5fe0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d578_efd7_5fe0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d578_efd7_5fe0/request", "", "public", "Top Dataset, enh, lflx.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d578_efd7_5fe0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d578_efd7_5fe0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d578_efd7_5fe0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d578_efd7_5fe0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d578_efd7_5fe0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d578_efd7_5fe0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b965_84e9_0aad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b965_84e9_0aad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b965_84e9_0aad/request", "", "public", "Top Dataset, enh, lflx.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b965_84e9_0aad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b965_84e9_0aad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b965_84e9_0aad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b965_84e9_0aad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b965_84e9_0aad&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b965_84e9_0aad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_32f7_b643_0f5a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_32f7_b643_0f5a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_32f7_b643_0f5a/request", "", "public", "Top Dataset, enh, lflx.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_32f7_b643_0f5a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_32f7_b643_0f5a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_32f7_b643_0f5a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_32f7_b643_0f5a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_32f7_b643_0f5a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_32f7_b643_0f5a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd5e_c347_16bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd5e_c347_16bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dd5e_c347_16bf/request", "", "public", "Top Dataset, enh, lflx.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dd5e_c347_16bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dd5e_c347_16bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dd5e_c347_16bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dd5e_c347_16bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dd5e_c347_16bf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dd5e_c347_16bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d9e_8b6a_ca8e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d9e_8b6a_ca8e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5d9e_8b6a_ca8e/request", "", "public", "Top Dataset, enh, qsminq.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5d9e_8b6a_ca8e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5d9e_8b6a_ca8e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5d9e_8b6a_ca8e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5d9e_8b6a_ca8e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5d9e_8b6a_ca8e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5d9e_8b6a_ca8e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_40d9_6696_dc8d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_40d9_6696_dc8d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_40d9_6696_dc8d/request", "", "public", "Top Dataset, enh, qsminq.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_40d9_6696_dc8d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_40d9_6696_dc8d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_40d9_6696_dc8d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_40d9_6696_dc8d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_40d9_6696_dc8d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_40d9_6696_dc8d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6279_8f97_0724", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6279_8f97_0724.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6279_8f97_0724/request", "", "public", "Top Dataset, enh, qsminq.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6279_8f97_0724_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6279_8f97_0724_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6279_8f97_0724/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6279_8f97_0724.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6279_8f97_0724&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6279_8f97_0724"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cde1_b448_87d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cde1_b448_87d1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cde1_b448_87d1/request", "", "public", "Top Dataset, enh, qsminq.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cde1_b448_87d1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cde1_b448_87d1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cde1_b448_87d1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cde1_b448_87d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cde1_b448_87d1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cde1_b448_87d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_477f_50c4_1f0b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_477f_50c4_1f0b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_477f_50c4_1f0b/request", "", "public", "Top Dataset, enh, qsminq.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_477f_50c4_1f0b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_477f_50c4_1f0b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_477f_50c4_1f0b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_477f_50c4_1f0b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_477f_50c4_1f0b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_477f_50c4_1f0b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c7c_de05_d943", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c7c_de05_d943.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4c7c_de05_d943/request", "", "public", "Top Dataset, enh, qsminq.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4c7c_de05_d943_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4c7c_de05_d943_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c7c_de05_d943/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c7c_de05_d943.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c7c_de05_d943&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4c7c_de05_d943"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_344c_d4a0_d387", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_344c_d4a0_d387.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_344c_d4a0_d387/request", "", "public", "Top Dataset, enh, qsminq.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_344c_d4a0_d387_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_344c_d4a0_d387_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_344c_d4a0_d387/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_344c_d4a0_d387.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_344c_d4a0_d387&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_344c_d4a0_d387"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09f0_4cf0_49c7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09f0_4cf0_49c7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_09f0_4cf0_49c7/request", "", "public", "Top Dataset, enh, qsminq.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_09f0_4cf0_49c7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_09f0_4cf0_49c7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_09f0_4cf0_49c7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_09f0_4cf0_49c7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_09f0_4cf0_49c7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_09f0_4cf0_49c7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a96_0e6b_bee0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a96_0e6b_bee0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8a96_0e6b_bee0/request", "", "public", "Top Dataset, enh, qsminq.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8a96_0e6b_bee0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8a96_0e6b_bee0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8a96_0e6b_bee0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8a96_0e6b_bee0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8a96_0e6b_bee0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8a96_0e6b_bee0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b65_237a_a034", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b65_237a_a034.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2b65_237a_a034/request", "", "public", "Top Dataset, enh, qsminq.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2b65_237a_a034_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2b65_237a_a034_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2b65_237a_a034/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2b65_237a_a034.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2b65_237a_a034&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2b65_237a_a034"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96e0_8586_f4ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96e0_8586_f4ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_96e0_8586_f4ca/request", "", "public", "Top Dataset, enh, qsminq.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_96e0_8586_f4ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_96e0_8586_f4ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_96e0_8586_f4ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_96e0_8586_f4ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_96e0_8586_f4ca&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_96e0_8586_f4ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c13e_aac0_469f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c13e_aac0_469f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c13e_aac0_469f/request", "", "public", "Top Dataset, enh, qsminq.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c13e_aac0_469f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c13e_aac0_469f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c13e_aac0_469f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c13e_aac0_469f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c13e_aac0_469f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c13e_aac0_469f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e066_0752_8152", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e066_0752_8152.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e066_0752_8152/request", "", "public", "Top Dataset, enh, qsminq.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e066_0752_8152_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e066_0752_8152_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e066_0752_8152/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e066_0752_8152.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e066_0752_8152&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e066_0752_8152"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a96e_253b_0242", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a96e_253b_0242.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a96e_253b_0242/request", "", "public", "Top Dataset, enh, qsminq.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a96e_253b_0242_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a96e_253b_0242_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a96e_253b_0242/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a96e_253b_0242.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a96e_253b_0242&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a96e_253b_0242"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0c4_566a_d83b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0c4_566a_d83b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f0c4_566a_d83b/request", "", "public", "Top Dataset, enh, qsminq.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f0c4_566a_d83b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f0c4_566a_d83b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f0c4_566a_d83b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f0c4_566a_d83b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f0c4_566a_d83b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f0c4_566a_d83b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93dd_be59_bbdf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93dd_be59_bbdf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_93dd_be59_bbdf/request", "", "public", "Top Dataset, enh, qsminq.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_93dd_be59_bbdf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_93dd_be59_bbdf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_93dd_be59_bbdf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_93dd_be59_bbdf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_93dd_be59_bbdf&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_93dd_be59_bbdf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a93_1c8b_d8cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a93_1c8b_d8cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a93_1c8b_d8cd/request", "", "public", "Top Dataset, enh, qsminq.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a93_1c8b_d8cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a93_1c8b_d8cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a93_1c8b_d8cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a93_1c8b_d8cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a93_1c8b_d8cd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5a93_1c8b_d8cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cb7_050d_df32", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cb7_050d_df32.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7cb7_050d_df32/request", "", "public", "Top Dataset, enh, qsminq.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7cb7_050d_df32_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7cb7_050d_df32_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7cb7_050d_df32/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7cb7_050d_df32.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7cb7_050d_df32&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7cb7_050d_df32"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5553_cb34_b4ed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5553_cb34_b4ed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5553_cb34_b4ed/request", "", "public", "Top Dataset, enh, qsminq.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5553_cb34_b4ed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5553_cb34_b4ed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5553_cb34_b4ed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5553_cb34_b4ed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5553_cb34_b4ed&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5553_cb34_b4ed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1b12_5eb8_a30a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1b12_5eb8_a30a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1b12_5eb8_a30a/request", "", "public", "Top Dataset, enh, qsminq.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1b12_5eb8_a30a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1b12_5eb8_a30a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1b12_5eb8_a30a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1b12_5eb8_a30a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1b12_5eb8_a30a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1b12_5eb8_a30a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b10c_91b2_05b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b10c_91b2_05b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b10c_91b2_05b7/request", "", "public", "Top Dataset, enh, qsminq.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b10c_91b2_05b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b10c_91b2_05b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b10c_91b2_05b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b10c_91b2_05b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b10c_91b2_05b7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b10c_91b2_05b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be19_0061_d879", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be19_0061_d879.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_be19_0061_d879/request", "", "public", "Top Dataset, enh, qsminq.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_be19_0061_d879_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_be19_0061_d879_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_be19_0061_d879/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_be19_0061_d879.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_be19_0061_d879&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_be19_0061_d879"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7113_d329_676d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7113_d329_676d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7113_d329_676d/request", "", "public", "Top Dataset, enh, qsminq.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7113_d329_676d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7113_d329_676d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7113_d329_676d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7113_d329_676d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7113_d329_676d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7113_d329_676d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f224_e22d_8ad6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f224_e22d_8ad6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f224_e22d_8ad6/request", "", "public", "Top Dataset, enh, qsminq.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f224_e22d_8ad6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f224_e22d_8ad6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f224_e22d_8ad6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f224_e22d_8ad6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f224_e22d_8ad6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f224_e22d_8ad6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6587_091a_5e28", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6587_091a_5e28.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6587_091a_5e28/request", "", "public", "Top Dataset, enh, qsminq.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6587_091a_5e28_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6587_091a_5e28_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6587_091a_5e28/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6587_091a_5e28.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6587_091a_5e28&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6587_091a_5e28"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05c0_c35a_086d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05c0_c35a_086d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_05c0_c35a_086d/request", "", "public", "Top Dataset, enh, qsminq.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_05c0_c35a_086d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_05c0_c35a_086d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_05c0_c35a_086d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_05c0_c35a_086d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_05c0_c35a_086d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_05c0_c35a_086d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e109_4dd1_def8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e109_4dd1_def8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e109_4dd1_def8/request", "", "public", "Top Dataset, enh, qsminq.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e109_4dd1_def8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e109_4dd1_def8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e109_4dd1_def8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e109_4dd1_def8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e109_4dd1_def8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e109_4dd1_def8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd6f_b70d_ede8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd6f_b70d_ede8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dd6f_b70d_ede8/request", "", "public", "Top Dataset, enh, qsminq.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dd6f_b70d_ede8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dd6f_b70d_ede8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dd6f_b70d_ede8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dd6f_b70d_ede8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dd6f_b70d_ede8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_dd6f_b70d_ede8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d93_ce7c_ac1a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d93_ce7c_ac1a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9d93_ce7c_ac1a/request", "", "public", "Top Dataset, enh, qsminq.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9d93_ce7c_ac1a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9d93_ce7c_ac1a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9d93_ce7c_ac1a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9d93_ce7c_ac1a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9d93_ce7c_ac1a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9d93_ce7c_ac1a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c647_7700_7f3f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c647_7700_7f3f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c647_7700_7f3f/request", "", "public", "Top Dataset, enh, qsminq.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c647_7700_7f3f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c647_7700_7f3f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c647_7700_7f3f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c647_7700_7f3f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c647_7700_7f3f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c647_7700_7f3f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d9a1_d02d_bc41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d9a1_d02d_bc41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d9a1_d02d_bc41/request", "", "public", "Top Dataset, enh, qsminq.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d9a1_d02d_bc41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d9a1_d02d_bc41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d9a1_d02d_bc41/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d9a1_d02d_bc41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d9a1_d02d_bc41&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d9a1_d02d_bc41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d7a_b75d_0096", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d7a_b75d_0096.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0d7a_b75d_0096/request", "", "public", "Top Dataset, enh, qsminq.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0d7a_b75d_0096_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0d7a_b75d_0096_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0d7a_b75d_0096/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0d7a_b75d_0096.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0d7a_b75d_0096&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0d7a_b75d_0096"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d20_ff7d_7cda", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d20_ff7d_7cda.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d20_ff7d_7cda/request", "", "public", "Top Dataset, enh, qsminq.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d20_ff7d_7cda_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d20_ff7d_7cda_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d20_ff7d_7cda/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d20_ff7d_7cda.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d20_ff7d_7cda&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6d20_ff7d_7cda"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3663_09a4_9b8e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3663_09a4_9b8e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3663_09a4_9b8e/request", "", "public", "Top Dataset, enh, qsminq.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3663_09a4_9b8e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3663_09a4_9b8e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3663_09a4_9b8e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3663_09a4_9b8e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3663_09a4_9b8e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3663_09a4_9b8e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5964_73c3_66c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5964_73c3_66c9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5964_73c3_66c9/request", "", "public", "Top Dataset, enh, qsminq.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5964_73c3_66c9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5964_73c3_66c9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5964_73c3_66c9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5964_73c3_66c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5964_73c3_66c9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5964_73c3_66c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8865_ca89_117d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8865_ca89_117d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8865_ca89_117d/request", "", "public", "Top Dataset, enh, qsminq.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8865_ca89_117d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8865_ca89_117d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8865_ca89_117d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8865_ca89_117d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8865_ca89_117d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8865_ca89_117d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6de8_a5bc_b689", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6de8_a5bc_b689.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6de8_a5bc_b689/request", "", "public", "Top Dataset, enh, qsminq.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6de8_a5bc_b689_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6de8_a5bc_b689_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6de8_a5bc_b689/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6de8_a5bc_b689.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6de8_a5bc_b689&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6de8_a5bc_b689"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45dc_ec35_07e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45dc_ec35_07e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_45dc_ec35_07e3/request", "", "public", "Top Dataset, enh, qsminq.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_45dc_ec35_07e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_45dc_ec35_07e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_45dc_ec35_07e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_45dc_ec35_07e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_45dc_ec35_07e3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_45dc_ec35_07e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b75c_c091_7f1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b75c_c091_7f1e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b75c_c091_7f1e/request", "", "public", "Top Dataset, enh, qsminq.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b75c_c091_7f1e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b75c_c091_7f1e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b75c_c091_7f1e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b75c_c091_7f1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b75c_c091_7f1e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b75c_c091_7f1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fac4_c74e_8725", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fac4_c74e_8725.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fac4_c74e_8725/request", "", "public", "Top Dataset, enh, qsminq.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fac4_c74e_8725_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fac4_c74e_8725_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fac4_c74e_8725/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fac4_c74e_8725.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fac4_c74e_8725&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fac4_c74e_8725"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b79_4386_ee1b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b79_4386_ee1b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b79_4386_ee1b/request", "", "public", "Top Dataset, enh, qsminq.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b79_4386_ee1b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b79_4386_ee1b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b79_4386_ee1b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b79_4386_ee1b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b79_4386_ee1b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6b79_4386_ee1b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85a7_128f_75f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85a7_128f_75f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_85a7_128f_75f2/request", "", "public", "Top Dataset, enh, qsminq.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_85a7_128f_75f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_85a7_128f_75f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85a7_128f_75f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85a7_128f_75f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85a7_128f_75f2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_85a7_128f_75f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d1b_ecce_3095", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d1b_ecce_3095.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2d1b_ecce_3095/request", "", "public", "Top Dataset, enh, qsminq.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2d1b_ecce_3095_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2d1b_ecce_3095_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d1b_ecce_3095/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d1b_ecce_3095.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d1b_ecce_3095&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2d1b_ecce_3095"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e34_2baf_6d93", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e34_2baf_6d93.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e34_2baf_6d93/request", "", "public", "Top Dataset, enh, qsminq.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e34_2baf_6d93_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e34_2baf_6d93_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e34_2baf_6d93/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e34_2baf_6d93.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e34_2baf_6d93&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0e34_2baf_6d93"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_677f_a549_3870", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_677f_a549_3870.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_677f_a549_3870/request", "", "public", "Top Dataset, enh, qsminq.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_677f_a549_3870_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_677f_a549_3870_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_677f_a549_3870/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_677f_a549_3870.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_677f_a549_3870&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_677f_a549_3870"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a3c5_e5aa_4566", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a3c5_e5aa_4566.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a3c5_e5aa_4566/request", "", "public", "Top Dataset, enh, qsminq.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a3c5_e5aa_4566_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a3c5_e5aa_4566_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a3c5_e5aa_4566/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a3c5_e5aa_4566.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a3c5_e5aa_4566&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a3c5_e5aa_4566"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab3f_4b1f_9f1c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab3f_4b1f_9f1c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab3f_4b1f_9f1c/request", "", "public", "Top Dataset, enh, qsminq.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab3f_4b1f_9f1c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab3f_4b1f_9f1c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab3f_4b1f_9f1c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab3f_4b1f_9f1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab3f_4b1f_9f1c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ab3f_4b1f_9f1c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec2c_effa_9290", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec2c_effa_9290.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ec2c_effa_9290/request", "", "public", "Top Dataset, enh, qsminq.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ec2c_effa_9290_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ec2c_effa_9290_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ec2c_effa_9290/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ec2c_effa_9290.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ec2c_effa_9290&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ec2c_effa_9290"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc0e_e1c1_fccf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc0e_e1c1_fccf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bc0e_e1c1_fccf/request", "", "public", "Top Dataset, enh, qsminq.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bc0e_e1c1_fccf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bc0e_e1c1_fccf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bc0e_e1c1_fccf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bc0e_e1c1_fccf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bc0e_e1c1_fccf&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bc0e_e1c1_fccf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12a3_ac05_84c8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12a3_ac05_84c8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_12a3_ac05_84c8/request", "", "public", "Top Dataset, enh, qsminq.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_12a3_ac05_84c8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_12a3_ac05_84c8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_12a3_ac05_84c8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_12a3_ac05_84c8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_12a3_ac05_84c8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_12a3_ac05_84c8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_acba_6b5e_a6f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_acba_6b5e_a6f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_acba_6b5e_a6f5/request", "", "public", "Top Dataset, enh, qsminq.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_acba_6b5e_a6f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_acba_6b5e_a6f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_acba_6b5e_a6f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_acba_6b5e_a6f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_acba_6b5e_a6f5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_acba_6b5e_a6f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f957_4604_698d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f957_4604_698d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f957_4604_698d/request", "", "public", "Top Dataset, enh, qsminq.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f957_4604_698d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f957_4604_698d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f957_4604_698d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f957_4604_698d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f957_4604_698d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f957_4604_698d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c59_7edf_a6a9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c59_7edf_a6a9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1c59_7edf_a6a9/request", "", "public", "Top Dataset, enh, qsminq.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1c59_7edf_a6a9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1c59_7edf_a6a9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1c59_7edf_a6a9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1c59_7edf_a6a9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1c59_7edf_a6a9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1c59_7edf_a6a9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ea7_d548_6f07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ea7_d548_6f07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ea7_d548_6f07/request", "", "public", "Top Dataset, enh, qsminq.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ea7_d548_6f07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ea7_d548_6f07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ea7_d548_6f07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ea7_d548_6f07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ea7_d548_6f07&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8ea7_d548_6f07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09b1_aad8_c08f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09b1_aad8_c08f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_09b1_aad8_c08f/request", "", "public", "Top Dataset, enh, qsminq.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_09b1_aad8_c08f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_09b1_aad8_c08f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_09b1_aad8_c08f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_09b1_aad8_c08f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_09b1_aad8_c08f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_09b1_aad8_c08f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6029_20da_a0f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6029_20da_a0f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6029_20da_a0f0/request", "", "public", "Top Dataset, enh, qsminq.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6029_20da_a0f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6029_20da_a0f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6029_20da_a0f0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6029_20da_a0f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6029_20da_a0f0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6029_20da_a0f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db91_4276_0c20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db91_4276_0c20.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db91_4276_0c20/request", "", "public", "Top Dataset, enh, qsminq.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db91_4276_0c20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db91_4276_0c20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db91_4276_0c20/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db91_4276_0c20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db91_4276_0c20&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_db91_4276_0c20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b32_6978_ea23", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b32_6978_ea23.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b32_6978_ea23/request", "", "public", "Top Dataset, enh, qsminq.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b32_6978_ea23_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b32_6978_ea23_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b32_6978_ea23/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b32_6978_ea23.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b32_6978_ea23&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7b32_6978_ea23"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03d4_86f1_cedf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03d4_86f1_cedf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03d4_86f1_cedf/request", "", "public", "Top Dataset, enh, qsminq.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03d4_86f1_cedf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03d4_86f1_cedf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03d4_86f1_cedf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03d4_86f1_cedf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03d4_86f1_cedf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_03d4_86f1_cedf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_baad_9a9a_e4eb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_baad_9a9a_e4eb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_baad_9a9a_e4eb/request", "", "public", "Top Dataset, enh, qsminq.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_baad_9a9a_e4eb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_baad_9a9a_e4eb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_baad_9a9a_e4eb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_baad_9a9a_e4eb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_baad_9a9a_e4eb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_baad_9a9a_e4eb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c075_c8a1_37e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c075_c8a1_37e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c075_c8a1_37e0/request", "", "public", "Top Dataset, enh, qsminq.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c075_c8a1_37e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c075_c8a1_37e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c075_c8a1_37e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c075_c8a1_37e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c075_c8a1_37e0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c075_c8a1_37e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d72_47fa_7d08", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d72_47fa_7d08.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d72_47fa_7d08/request", "", "public", "Top Dataset, enh, qsminq.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d72_47fa_7d08_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d72_47fa_7d08_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d72_47fa_7d08/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d72_47fa_7d08.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d72_47fa_7d08&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4d72_47fa_7d08"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7284_4f80_c32e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7284_4f80_c32e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7284_4f80_c32e/request", "", "public", "Top Dataset, enh, qsminq.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7284_4f80_c32e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7284_4f80_c32e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7284_4f80_c32e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7284_4f80_c32e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7284_4f80_c32e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7284_4f80_c32e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34f7_b259_8416", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34f7_b259_8416.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_34f7_b259_8416/request", "", "public", "Top Dataset, enh, rhum.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_34f7_b259_8416_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_34f7_b259_8416_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_34f7_b259_8416/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_34f7_b259_8416.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_34f7_b259_8416&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_34f7_b259_8416"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10cb_d9de_b497", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10cb_d9de_b497.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_10cb_d9de_b497/request", "", "public", "Top Dataset, enh, rhum.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_10cb_d9de_b497_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_10cb_d9de_b497_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_10cb_d9de_b497/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_10cb_d9de_b497.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_10cb_d9de_b497&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_10cb_d9de_b497"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ac1f_ed6c_d54c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ac1f_ed6c_d54c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ac1f_ed6c_d54c/request", "", "public", "Top Dataset, enh, rhum.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ac1f_ed6c_d54c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ac1f_ed6c_d54c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ac1f_ed6c_d54c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ac1f_ed6c_d54c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ac1f_ed6c_d54c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ac1f_ed6c_d54c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9e4_0436_44b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9e4_0436_44b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f9e4_0436_44b3/request", "", "public", "Top Dataset, enh, rhum.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f9e4_0436_44b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f9e4_0436_44b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f9e4_0436_44b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f9e4_0436_44b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f9e4_0436_44b3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f9e4_0436_44b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1da6_c196_ae5c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1da6_c196_ae5c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1da6_c196_ae5c/request", "", "public", "Top Dataset, enh, rhum.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1da6_c196_ae5c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1da6_c196_ae5c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1da6_c196_ae5c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1da6_c196_ae5c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1da6_c196_ae5c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1da6_c196_ae5c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a753_3b3d_e57a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a753_3b3d_e57a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a753_3b3d_e57a/request", "", "public", "Top Dataset, enh, rhum.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a753_3b3d_e57a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a753_3b3d_e57a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a753_3b3d_e57a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a753_3b3d_e57a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a753_3b3d_e57a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a753_3b3d_e57a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afbc_dca6_6286", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afbc_dca6_6286.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_afbc_dca6_6286/request", "", "public", "Top Dataset, enh, rhum.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_afbc_dca6_6286_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_afbc_dca6_6286_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_afbc_dca6_6286/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_afbc_dca6_6286.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_afbc_dca6_6286&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_afbc_dca6_6286"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a975_a63d_1e18", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a975_a63d_1e18.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a975_a63d_1e18/request", "", "public", "Top Dataset, enh, rhum.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a975_a63d_1e18_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a975_a63d_1e18_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a975_a63d_1e18/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a975_a63d_1e18.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a975_a63d_1e18&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a975_a63d_1e18"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3e6_e002_a8fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3e6_e002_a8fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f3e6_e002_a8fd/request", "", "public", "Top Dataset, enh, rhum.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f3e6_e002_a8fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f3e6_e002_a8fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f3e6_e002_a8fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f3e6_e002_a8fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f3e6_e002_a8fd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f3e6_e002_a8fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f040_7716_b6cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f040_7716_b6cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f040_7716_b6cb/request", "", "public", "Top Dataset, enh, rhum.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f040_7716_b6cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f040_7716_b6cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f040_7716_b6cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f040_7716_b6cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f040_7716_b6cb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f040_7716_b6cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0cf6_be8b_1a6b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0cf6_be8b_1a6b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0cf6_be8b_1a6b/request", "", "public", "Top Dataset, enh, rhum.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0cf6_be8b_1a6b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0cf6_be8b_1a6b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0cf6_be8b_1a6b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0cf6_be8b_1a6b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0cf6_be8b_1a6b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0cf6_be8b_1a6b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3c3_1bd9_a3ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3c3_1bd9_a3ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d3c3_1bd9_a3ae/request", "", "public", "Top Dataset, enh, rhum.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d3c3_1bd9_a3ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d3c3_1bd9_a3ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d3c3_1bd9_a3ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d3c3_1bd9_a3ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d3c3_1bd9_a3ae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d3c3_1bd9_a3ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4002_fceb_13e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4002_fceb_13e8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4002_fceb_13e8/request", "", "public", "Top Dataset, enh, rhum.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4002_fceb_13e8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4002_fceb_13e8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4002_fceb_13e8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4002_fceb_13e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4002_fceb_13e8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4002_fceb_13e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5bbe_0cbd_2c86", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5bbe_0cbd_2c86.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5bbe_0cbd_2c86/request", "", "public", "Top Dataset, enh, rhum.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5bbe_0cbd_2c86_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5bbe_0cbd_2c86_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5bbe_0cbd_2c86/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5bbe_0cbd_2c86.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5bbe_0cbd_2c86&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5bbe_0cbd_2c86"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7e4_58f0_da81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7e4_58f0_da81.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d7e4_58f0_da81/request", "", "public", "Top Dataset, enh, rhum.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d7e4_58f0_da81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d7e4_58f0_da81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d7e4_58f0_da81/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d7e4_58f0_da81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d7e4_58f0_da81&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d7e4_58f0_da81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71d5_1724_fc47", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71d5_1724_fc47.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_71d5_1724_fc47/request", "", "public", "Top Dataset, enh, rhum.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_71d5_1724_fc47_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_71d5_1724_fc47_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_71d5_1724_fc47/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_71d5_1724_fc47.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_71d5_1724_fc47&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_71d5_1724_fc47"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_605c_c1ad_32ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_605c_c1ad_32ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_605c_c1ad_32ac/request", "", "public", "Top Dataset, enh, rhum.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_605c_c1ad_32ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_605c_c1ad_32ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_605c_c1ad_32ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_605c_c1ad_32ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_605c_c1ad_32ac&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_605c_c1ad_32ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a41b_7985_d8d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a41b_7985_d8d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a41b_7985_d8d0/request", "", "public", "Top Dataset, enh, rhum.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a41b_7985_d8d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a41b_7985_d8d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a41b_7985_d8d0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a41b_7985_d8d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a41b_7985_d8d0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a41b_7985_d8d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aec5_f2f0_bd20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aec5_f2f0_bd20.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aec5_f2f0_bd20/request", "", "public", "Top Dataset, enh, rhum.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aec5_f2f0_bd20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aec5_f2f0_bd20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aec5_f2f0_bd20/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aec5_f2f0_bd20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aec5_f2f0_bd20&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_aec5_f2f0_bd20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c2f_8235_a48a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c2f_8235_a48a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3c2f_8235_a48a/request", "", "public", "Top Dataset, enh, rhum.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3c2f_8235_a48a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3c2f_8235_a48a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c2f_8235_a48a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c2f_8235_a48a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c2f_8235_a48a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3c2f_8235_a48a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a73d_3ce7_fa6d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a73d_3ce7_fa6d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a73d_3ce7_fa6d/request", "", "public", "Top Dataset, enh, rhum.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a73d_3ce7_fa6d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a73d_3ce7_fa6d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a73d_3ce7_fa6d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a73d_3ce7_fa6d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a73d_3ce7_fa6d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a73d_3ce7_fa6d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58c2_b597_282a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58c2_b597_282a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_58c2_b597_282a/request", "", "public", "Top Dataset, enh, rhum.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_58c2_b597_282a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_58c2_b597_282a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_58c2_b597_282a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_58c2_b597_282a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_58c2_b597_282a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_58c2_b597_282a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_231d_d052_fd4b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_231d_d052_fd4b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_231d_d052_fd4b/request", "", "public", "Top Dataset, enh, rhum.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_231d_d052_fd4b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_231d_d052_fd4b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_231d_d052_fd4b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_231d_d052_fd4b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_231d_d052_fd4b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_231d_d052_fd4b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_318d_fe00_4e02", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_318d_fe00_4e02.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_318d_fe00_4e02/request", "", "public", "Top Dataset, enh, rhum.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_318d_fe00_4e02_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_318d_fe00_4e02_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_318d_fe00_4e02/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_318d_fe00_4e02.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_318d_fe00_4e02&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_318d_fe00_4e02"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_69aa_a435_44ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_69aa_a435_44ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_69aa_a435_44ea/request", "", "public", "Top Dataset, enh, rhum.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_69aa_a435_44ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_69aa_a435_44ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_69aa_a435_44ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_69aa_a435_44ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_69aa_a435_44ea&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_69aa_a435_44ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fa8_fc86_2b12", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fa8_fc86_2b12.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7fa8_fc86_2b12/request", "", "public", "Top Dataset, enh, rhum.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7fa8_fc86_2b12_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7fa8_fc86_2b12_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7fa8_fc86_2b12/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7fa8_fc86_2b12.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7fa8_fc86_2b12&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7fa8_fc86_2b12"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aab7_84e6_e1f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aab7_84e6_e1f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aab7_84e6_e1f6/request", "", "public", "Top Dataset, enh, rhum.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aab7_84e6_e1f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aab7_84e6_e1f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aab7_84e6_e1f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aab7_84e6_e1f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aab7_84e6_e1f6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aab7_84e6_e1f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1668_a72c_b73e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1668_a72c_b73e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1668_a72c_b73e/request", "", "public", "Top Dataset, enh, rhum.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1668_a72c_b73e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1668_a72c_b73e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1668_a72c_b73e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1668_a72c_b73e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1668_a72c_b73e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1668_a72c_b73e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a54d_0d61_2bf0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a54d_0d61_2bf0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a54d_0d61_2bf0/request", "", "public", "Top Dataset, enh, rhum.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a54d_0d61_2bf0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a54d_0d61_2bf0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a54d_0d61_2bf0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a54d_0d61_2bf0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a54d_0d61_2bf0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a54d_0d61_2bf0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f065_89af_988b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f065_89af_988b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f065_89af_988b/request", "", "public", "Top Dataset, enh, rhum.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f065_89af_988b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f065_89af_988b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f065_89af_988b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f065_89af_988b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f065_89af_988b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f065_89af_988b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22fe_69be_8d7a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22fe_69be_8d7a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_22fe_69be_8d7a/request", "", "public", "Top Dataset, enh, rhum.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_22fe_69be_8d7a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_22fe_69be_8d7a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_22fe_69be_8d7a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_22fe_69be_8d7a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_22fe_69be_8d7a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_22fe_69be_8d7a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b4a_02b9_197d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b4a_02b9_197d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b4a_02b9_197d/request", "", "public", "Top Dataset, enh, rhum.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b4a_02b9_197d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b4a_02b9_197d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b4a_02b9_197d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b4a_02b9_197d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b4a_02b9_197d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7b4a_02b9_197d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b268_90d1_b676", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b268_90d1_b676.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b268_90d1_b676/request", "", "public", "Top Dataset, enh, rhum.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b268_90d1_b676_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b268_90d1_b676_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b268_90d1_b676/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b268_90d1_b676.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b268_90d1_b676&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b268_90d1_b676"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_233a_9da9_81e7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_233a_9da9_81e7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_233a_9da9_81e7/request", "", "public", "Top Dataset, enh, rhum.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_233a_9da9_81e7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_233a_9da9_81e7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_233a_9da9_81e7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_233a_9da9_81e7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_233a_9da9_81e7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_233a_9da9_81e7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b59_e531_5373", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b59_e531_5373.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b59_e531_5373/request", "", "public", "Top Dataset, enh, rhum.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b59_e531_5373_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b59_e531_5373_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b59_e531_5373/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b59_e531_5373.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b59_e531_5373&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7b59_e531_5373"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8590_cc75_33e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8590_cc75_33e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8590_cc75_33e1/request", "", "public", "Top Dataset, enh, rhum.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8590_cc75_33e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8590_cc75_33e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8590_cc75_33e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8590_cc75_33e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8590_cc75_33e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8590_cc75_33e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c25a_2b59_0e92", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c25a_2b59_0e92.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c25a_2b59_0e92/request", "", "public", "Top Dataset, enh, rhum.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c25a_2b59_0e92_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c25a_2b59_0e92_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c25a_2b59_0e92/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c25a_2b59_0e92.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c25a_2b59_0e92&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c25a_2b59_0e92"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f9b_9171_3e6e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f9b_9171_3e6e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f9b_9171_3e6e/request", "", "public", "Top Dataset, enh, rhum.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f9b_9171_3e6e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f9b_9171_3e6e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f9b_9171_3e6e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f9b_9171_3e6e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f9b_9171_3e6e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1f9b_9171_3e6e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2529_88b2_b57b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2529_88b2_b57b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2529_88b2_b57b/request", "", "public", "Top Dataset, enh, rhum.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2529_88b2_b57b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2529_88b2_b57b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2529_88b2_b57b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2529_88b2_b57b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2529_88b2_b57b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2529_88b2_b57b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca76_62e7_b3c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca76_62e7_b3c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca76_62e7_b3c1/request", "", "public", "Top Dataset, enh, rhum.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca76_62e7_b3c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca76_62e7_b3c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca76_62e7_b3c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca76_62e7_b3c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca76_62e7_b3c1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ca76_62e7_b3c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17fd_b6d9_a2e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17fd_b6d9_a2e8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_17fd_b6d9_a2e8/request", "", "public", "Top Dataset, enh, rhum.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_17fd_b6d9_a2e8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_17fd_b6d9_a2e8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_17fd_b6d9_a2e8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_17fd_b6d9_a2e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_17fd_b6d9_a2e8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_17fd_b6d9_a2e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0ee_3406_75aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0ee_3406_75aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f0ee_3406_75aa/request", "", "public", "Top Dataset, enh, rhum.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f0ee_3406_75aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f0ee_3406_75aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f0ee_3406_75aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f0ee_3406_75aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f0ee_3406_75aa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f0ee_3406_75aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e2d2_5e96_29bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e2d2_5e96_29bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e2d2_5e96_29bf/request", "", "public", "Top Dataset, enh, rhum.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e2d2_5e96_29bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e2d2_5e96_29bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e2d2_5e96_29bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e2d2_5e96_29bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e2d2_5e96_29bf&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e2d2_5e96_29bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6447_f820_1f5e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6447_f820_1f5e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6447_f820_1f5e/request", "", "public", "Top Dataset, enh, rhum.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6447_f820_1f5e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6447_f820_1f5e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6447_f820_1f5e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6447_f820_1f5e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6447_f820_1f5e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6447_f820_1f5e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_835d_2619_c31b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_835d_2619_c31b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_835d_2619_c31b/request", "", "public", "Top Dataset, enh, rhum.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_835d_2619_c31b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_835d_2619_c31b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_835d_2619_c31b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_835d_2619_c31b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_835d_2619_c31b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_835d_2619_c31b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02ba_e136_0e17", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02ba_e136_0e17.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_02ba_e136_0e17/request", "", "public", "Top Dataset, enh, rhum.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_02ba_e136_0e17_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_02ba_e136_0e17_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_02ba_e136_0e17/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_02ba_e136_0e17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_02ba_e136_0e17&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_02ba_e136_0e17"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b7a_5cbf_811d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b7a_5cbf_811d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3b7a_5cbf_811d/request", "", "public", "Top Dataset, enh, rhum.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3b7a_5cbf_811d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3b7a_5cbf_811d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3b7a_5cbf_811d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3b7a_5cbf_811d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3b7a_5cbf_811d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3b7a_5cbf_811d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb5c_7184_d9a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb5c_7184_d9a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eb5c_7184_d9a6/request", "", "public", "Top Dataset, enh, rhum.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eb5c_7184_d9a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eb5c_7184_d9a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb5c_7184_d9a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb5c_7184_d9a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb5c_7184_d9a6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eb5c_7184_d9a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed27_1e64_1832", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed27_1e64_1832.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ed27_1e64_1832/request", "", "public", "Top Dataset, enh, rhum.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ed27_1e64_1832_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ed27_1e64_1832_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ed27_1e64_1832/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ed27_1e64_1832.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ed27_1e64_1832&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ed27_1e64_1832"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80d1_1480_f345", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80d1_1480_f345.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_80d1_1480_f345/request", "", "public", "Top Dataset, enh, rhum.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_80d1_1480_f345_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_80d1_1480_f345_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_80d1_1480_f345/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_80d1_1480_f345.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_80d1_1480_f345&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_80d1_1480_f345"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e07b_e13b_bb43", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e07b_e13b_bb43.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e07b_e13b_bb43/request", "", "public", "Top Dataset, enh, rhum.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e07b_e13b_bb43_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e07b_e13b_bb43_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e07b_e13b_bb43/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e07b_e13b_bb43.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e07b_e13b_bb43&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e07b_e13b_bb43"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ecd4_d492_2442", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ecd4_d492_2442.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ecd4_d492_2442/request", "", "public", "Top Dataset, enh, rhum.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ecd4_d492_2442_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ecd4_d492_2442_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ecd4_d492_2442/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ecd4_d492_2442.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ecd4_d492_2442&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ecd4_d492_2442"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17c8_40ab_7913", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17c8_40ab_7913.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_17c8_40ab_7913/request", "", "public", "Top Dataset, enh, rhum.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_17c8_40ab_7913_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_17c8_40ab_7913_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_17c8_40ab_7913/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_17c8_40ab_7913.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_17c8_40ab_7913&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_17c8_40ab_7913"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dcf7_34f3_586d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dcf7_34f3_586d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dcf7_34f3_586d/request", "", "public", "Top Dataset, enh, rhum.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dcf7_34f3_586d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dcf7_34f3_586d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dcf7_34f3_586d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dcf7_34f3_586d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dcf7_34f3_586d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dcf7_34f3_586d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_981e_4c32_b7f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_981e_4c32_b7f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_981e_4c32_b7f2/request", "", "public", "Top Dataset, enh, rhum.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_981e_4c32_b7f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_981e_4c32_b7f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_981e_4c32_b7f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_981e_4c32_b7f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_981e_4c32_b7f2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_981e_4c32_b7f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5467_b2e0_e8ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5467_b2e0_e8ba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5467_b2e0_e8ba/request", "", "public", "Top Dataset, enh, rhum.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5467_b2e0_e8ba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5467_b2e0_e8ba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5467_b2e0_e8ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5467_b2e0_e8ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5467_b2e0_e8ba&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5467_b2e0_e8ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f552_491c_5690", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f552_491c_5690.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f552_491c_5690/request", "", "public", "Top Dataset, enh, rhum.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f552_491c_5690_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f552_491c_5690_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f552_491c_5690/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f552_491c_5690.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f552_491c_5690&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f552_491c_5690"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6eee_9049_05d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6eee_9049_05d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6eee_9049_05d9/request", "", "public", "Top Dataset, enh, rhum.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6eee_9049_05d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6eee_9049_05d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6eee_9049_05d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6eee_9049_05d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6eee_9049_05d9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6eee_9049_05d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b28a_a5ed_667f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b28a_a5ed_667f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b28a_a5ed_667f/request", "", "public", "Top Dataset, enh, rhum.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b28a_a5ed_667f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b28a_a5ed_667f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b28a_a5ed_667f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b28a_a5ed_667f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b28a_a5ed_667f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b28a_a5ed_667f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d813_8aee_9e3b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d813_8aee_9e3b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d813_8aee_9e3b/request", "", "public", "Top Dataset, enh, rhum.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d813_8aee_9e3b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d813_8aee_9e3b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d813_8aee_9e3b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d813_8aee_9e3b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d813_8aee_9e3b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d813_8aee_9e3b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b0e9_9d1e_10fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b0e9_9d1e_10fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b0e9_9d1e_10fc/request", "", "public", "Top Dataset, enh, sflx.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b0e9_9d1e_10fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b0e9_9d1e_10fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b0e9_9d1e_10fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b0e9_9d1e_10fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b0e9_9d1e_10fc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b0e9_9d1e_10fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e06_6600_fced", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e06_6600_fced.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5e06_6600_fced/request", "", "public", "Top Dataset, enh, sflx.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5e06_6600_fced_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5e06_6600_fced_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5e06_6600_fced/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5e06_6600_fced.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5e06_6600_fced&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5e06_6600_fced"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f48_7cc7_2ba5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f48_7cc7_2ba5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5f48_7cc7_2ba5/request", "", "public", "Top Dataset, enh, sflx.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5f48_7cc7_2ba5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5f48_7cc7_2ba5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5f48_7cc7_2ba5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5f48_7cc7_2ba5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5f48_7cc7_2ba5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5f48_7cc7_2ba5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7ad_b531_077e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7ad_b531_077e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d7ad_b531_077e/request", "", "public", "Top Dataset, enh, sflx.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d7ad_b531_077e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d7ad_b531_077e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d7ad_b531_077e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d7ad_b531_077e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d7ad_b531_077e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d7ad_b531_077e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f3a_ae63_bd5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f3a_ae63_bd5b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5f3a_ae63_bd5b/request", "", "public", "Top Dataset, enh, sflx.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5f3a_ae63_bd5b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5f3a_ae63_bd5b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5f3a_ae63_bd5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5f3a_ae63_bd5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5f3a_ae63_bd5b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5f3a_ae63_bd5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fb7_6d8e_dd4f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fb7_6d8e_dd4f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5fb7_6d8e_dd4f/request", "", "public", "Top Dataset, enh, sflx.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5fb7_6d8e_dd4f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5fb7_6d8e_dd4f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5fb7_6d8e_dd4f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5fb7_6d8e_dd4f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5fb7_6d8e_dd4f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5fb7_6d8e_dd4f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b350_3c00_0be3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b350_3c00_0be3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b350_3c00_0be3/request", "", "public", "Top Dataset, enh, sflx.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b350_3c00_0be3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b350_3c00_0be3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b350_3c00_0be3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b350_3c00_0be3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b350_3c00_0be3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b350_3c00_0be3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6be8_3e55_8557", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6be8_3e55_8557.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6be8_3e55_8557/request", "", "public", "Top Dataset, enh, sflx.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6be8_3e55_8557_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6be8_3e55_8557_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6be8_3e55_8557/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6be8_3e55_8557.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6be8_3e55_8557&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6be8_3e55_8557"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c8f5_a8c1_52a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c8f5_a8c1_52a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c8f5_a8c1_52a6/request", "", "public", "Top Dataset, enh, sflx.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c8f5_a8c1_52a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c8f5_a8c1_52a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c8f5_a8c1_52a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c8f5_a8c1_52a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c8f5_a8c1_52a6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c8f5_a8c1_52a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b086_0e24_8bf8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b086_0e24_8bf8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b086_0e24_8bf8/request", "", "public", "Top Dataset, enh, sflx.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b086_0e24_8bf8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b086_0e24_8bf8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b086_0e24_8bf8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b086_0e24_8bf8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b086_0e24_8bf8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b086_0e24_8bf8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1480_33d7_2b10", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1480_33d7_2b10.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1480_33d7_2b10/request", "", "public", "Top Dataset, enh, sflx.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1480_33d7_2b10_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1480_33d7_2b10_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1480_33d7_2b10/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1480_33d7_2b10.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1480_33d7_2b10&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1480_33d7_2b10"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bcce_96a7_667f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bcce_96a7_667f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bcce_96a7_667f/request", "", "public", "Top Dataset, enh, sflx.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bcce_96a7_667f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bcce_96a7_667f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bcce_96a7_667f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bcce_96a7_667f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bcce_96a7_667f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bcce_96a7_667f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b50_6abd_f19a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b50_6abd_f19a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b50_6abd_f19a/request", "", "public", "Top Dataset, enh, sflx.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b50_6abd_f19a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b50_6abd_f19a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b50_6abd_f19a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b50_6abd_f19a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b50_6abd_f19a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5b50_6abd_f19a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5035_7a9d_e373", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5035_7a9d_e373.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5035_7a9d_e373/request", "", "public", "Top Dataset, enh, sflx.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5035_7a9d_e373_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5035_7a9d_e373_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5035_7a9d_e373/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5035_7a9d_e373.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5035_7a9d_e373&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5035_7a9d_e373"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_beb7_c9bf_329f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_beb7_c9bf_329f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_beb7_c9bf_329f/request", "", "public", "Top Dataset, enh, sflx.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_beb7_c9bf_329f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_beb7_c9bf_329f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_beb7_c9bf_329f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_beb7_c9bf_329f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_beb7_c9bf_329f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_beb7_c9bf_329f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86d6_1fd9_8247", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86d6_1fd9_8247.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_86d6_1fd9_8247/request", "", "public", "Top Dataset, enh, sflx.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86d6_1fd9_8247_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86d6_1fd9_8247_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86d6_1fd9_8247/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86d6_1fd9_8247.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86d6_1fd9_8247&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_86d6_1fd9_8247"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ec9_3736_b488", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ec9_3736_b488.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ec9_3736_b488/request", "", "public", "Top Dataset, enh, sflx.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ec9_3736_b488_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ec9_3736_b488_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ec9_3736_b488/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ec9_3736_b488.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ec9_3736_b488&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5ec9_3736_b488"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9201_2c65_a1f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9201_2c65_a1f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9201_2c65_a1f0/request", "", "public", "Top Dataset, enh, sflx.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9201_2c65_a1f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9201_2c65_a1f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9201_2c65_a1f0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9201_2c65_a1f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9201_2c65_a1f0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9201_2c65_a1f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_299b_b8de_c64b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_299b_b8de_c64b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_299b_b8de_c64b/request", "", "public", "Top Dataset, enh, sflx.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_299b_b8de_c64b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_299b_b8de_c64b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_299b_b8de_c64b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_299b_b8de_c64b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_299b_b8de_c64b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_299b_b8de_c64b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4743_aa69_346e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4743_aa69_346e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4743_aa69_346e/request", "", "public", "Top Dataset, enh, sflx.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4743_aa69_346e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4743_aa69_346e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4743_aa69_346e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4743_aa69_346e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4743_aa69_346e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4743_aa69_346e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c501_3816_31c7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c501_3816_31c7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c501_3816_31c7/request", "", "public", "Top Dataset, enh, sflx.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c501_3816_31c7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c501_3816_31c7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c501_3816_31c7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c501_3816_31c7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c501_3816_31c7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c501_3816_31c7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc5c_9e9b_1e86", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc5c_9e9b_1e86.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc5c_9e9b_1e86/request", "", "public", "Top Dataset, enh, sflx.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc5c_9e9b_1e86_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc5c_9e9b_1e86_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc5c_9e9b_1e86/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc5c_9e9b_1e86.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc5c_9e9b_1e86&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fc5c_9e9b_1e86"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7264_a166_5e57", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7264_a166_5e57.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7264_a166_5e57/request", "", "public", "Top Dataset, enh, sflx.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7264_a166_5e57_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7264_a166_5e57_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7264_a166_5e57/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7264_a166_5e57.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7264_a166_5e57&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7264_a166_5e57"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efb9_275b_8b30", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efb9_275b_8b30.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_efb9_275b_8b30/request", "", "public", "Top Dataset, enh, sflx.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_efb9_275b_8b30_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_efb9_275b_8b30_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_efb9_275b_8b30/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_efb9_275b_8b30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_efb9_275b_8b30&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_efb9_275b_8b30"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ac9b_22ed_9612", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ac9b_22ed_9612.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ac9b_22ed_9612/request", "", "public", "Top Dataset, enh, sflx.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ac9b_22ed_9612_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ac9b_22ed_9612_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ac9b_22ed_9612/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ac9b_22ed_9612.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ac9b_22ed_9612&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ac9b_22ed_9612"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2439_7da3_cbfd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2439_7da3_cbfd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2439_7da3_cbfd/request", "", "public", "Top Dataset, enh, sflx.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2439_7da3_cbfd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2439_7da3_cbfd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2439_7da3_cbfd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2439_7da3_cbfd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2439_7da3_cbfd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2439_7da3_cbfd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_412d_9749_f264", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_412d_9749_f264.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_412d_9749_f264/request", "", "public", "Top Dataset, enh, sflx.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_412d_9749_f264_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_412d_9749_f264_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_412d_9749_f264/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_412d_9749_f264.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_412d_9749_f264&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_412d_9749_f264"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e235_2ded_b78f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e235_2ded_b78f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e235_2ded_b78f/request", "", "public", "Top Dataset, enh, sflx.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e235_2ded_b78f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e235_2ded_b78f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e235_2ded_b78f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e235_2ded_b78f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e235_2ded_b78f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e235_2ded_b78f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db74_f661_a97d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db74_f661_a97d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db74_f661_a97d/request", "", "public", "Top Dataset, enh, sflx.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db74_f661_a97d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db74_f661_a97d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db74_f661_a97d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db74_f661_a97d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db74_f661_a97d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_db74_f661_a97d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe5d_ea3a_a096", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe5d_ea3a_a096.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fe5d_ea3a_a096/request", "", "public", "Top Dataset, enh, sflx.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fe5d_ea3a_a096_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fe5d_ea3a_a096_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fe5d_ea3a_a096/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fe5d_ea3a_a096.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fe5d_ea3a_a096&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fe5d_ea3a_a096"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f81b_1fa4_73ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f81b_1fa4_73ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f81b_1fa4_73ee/request", "", "public", "Top Dataset, enh, sflx.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f81b_1fa4_73ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f81b_1fa4_73ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f81b_1fa4_73ee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f81b_1fa4_73ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f81b_1fa4_73ee&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f81b_1fa4_73ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4416_bc08_9b4a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4416_bc08_9b4a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4416_bc08_9b4a/request", "", "public", "Top Dataset, enh, sflx.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4416_bc08_9b4a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4416_bc08_9b4a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4416_bc08_9b4a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4416_bc08_9b4a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4416_bc08_9b4a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4416_bc08_9b4a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d75_c9ae_5a31", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d75_c9ae_5a31.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d75_c9ae_5a31/request", "", "public", "Top Dataset, enh, sflx.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d75_c9ae_5a31_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d75_c9ae_5a31_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d75_c9ae_5a31/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d75_c9ae_5a31.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d75_c9ae_5a31&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8d75_c9ae_5a31"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e809_e847_459b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e809_e847_459b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e809_e847_459b/request", "", "public", "Top Dataset, enh, sflx.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e809_e847_459b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e809_e847_459b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e809_e847_459b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e809_e847_459b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e809_e847_459b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e809_e847_459b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f6a_62a0_acd6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f6a_62a0_acd6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f6a_62a0_acd6/request", "", "public", "Top Dataset, enh, sflx.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f6a_62a0_acd6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f6a_62a0_acd6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f6a_62a0_acd6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f6a_62a0_acd6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f6a_62a0_acd6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1f6a_62a0_acd6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_206d_3419_8e1d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_206d_3419_8e1d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_206d_3419_8e1d/request", "", "public", "Top Dataset, enh, sflx.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_206d_3419_8e1d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_206d_3419_8e1d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_206d_3419_8e1d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_206d_3419_8e1d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_206d_3419_8e1d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_206d_3419_8e1d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe8a_ac22_be6a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe8a_ac22_be6a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fe8a_ac22_be6a/request", "", "public", "Top Dataset, enh, sflx.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fe8a_ac22_be6a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fe8a_ac22_be6a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fe8a_ac22_be6a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fe8a_ac22_be6a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fe8a_ac22_be6a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fe8a_ac22_be6a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01ec_7fcf_c0b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01ec_7fcf_c0b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_01ec_7fcf_c0b7/request", "", "public", "Top Dataset, enh, sflx.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_01ec_7fcf_c0b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_01ec_7fcf_c0b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_01ec_7fcf_c0b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_01ec_7fcf_c0b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_01ec_7fcf_c0b7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_01ec_7fcf_c0b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1262_2580_2484", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1262_2580_2484.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1262_2580_2484/request", "", "public", "Top Dataset, enh, sflx.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1262_2580_2484_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1262_2580_2484_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1262_2580_2484/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1262_2580_2484.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1262_2580_2484&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1262_2580_2484"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9479_2c1b_00c8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9479_2c1b_00c8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9479_2c1b_00c8/request", "", "public", "Top Dataset, enh, sflx.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9479_2c1b_00c8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9479_2c1b_00c8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9479_2c1b_00c8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9479_2c1b_00c8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9479_2c1b_00c8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9479_2c1b_00c8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06a7_ae78_ba29", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06a7_ae78_ba29.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_06a7_ae78_ba29/request", "", "public", "Top Dataset, enh, sflx.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_06a7_ae78_ba29_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_06a7_ae78_ba29_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_06a7_ae78_ba29/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_06a7_ae78_ba29.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_06a7_ae78_ba29&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_06a7_ae78_ba29"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e5c_305a_9886", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e5c_305a_9886.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4e5c_305a_9886/request", "", "public", "Top Dataset, enh, sflx.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4e5c_305a_9886_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4e5c_305a_9886_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4e5c_305a_9886/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4e5c_305a_9886.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4e5c_305a_9886&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4e5c_305a_9886"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9023_4bcd_b278", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9023_4bcd_b278.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9023_4bcd_b278/request", "", "public", "Top Dataset, enh, sflx.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9023_4bcd_b278_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9023_4bcd_b278_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9023_4bcd_b278/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9023_4bcd_b278.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9023_4bcd_b278&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9023_4bcd_b278"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0bac_9ecb_aa9b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0bac_9ecb_aa9b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0bac_9ecb_aa9b/request", "", "public", "Top Dataset, enh, sflx.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0bac_9ecb_aa9b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0bac_9ecb_aa9b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0bac_9ecb_aa9b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0bac_9ecb_aa9b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0bac_9ecb_aa9b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0bac_9ecb_aa9b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2687_21c2_4ab2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2687_21c2_4ab2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2687_21c2_4ab2/request", "", "public", "Top Dataset, enh, sflx.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2687_21c2_4ab2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2687_21c2_4ab2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2687_21c2_4ab2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2687_21c2_4ab2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2687_21c2_4ab2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2687_21c2_4ab2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22df_2727_ab10", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22df_2727_ab10.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_22df_2727_ab10/request", "", "public", "Top Dataset, enh, sflx.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_22df_2727_ab10_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_22df_2727_ab10_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_22df_2727_ab10/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_22df_2727_ab10.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_22df_2727_ab10&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_22df_2727_ab10"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0cd_1bc2_9fc6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0cd_1bc2_9fc6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d0cd_1bc2_9fc6/request", "", "public", "Top Dataset, enh, sflx.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d0cd_1bc2_9fc6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d0cd_1bc2_9fc6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d0cd_1bc2_9fc6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d0cd_1bc2_9fc6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d0cd_1bc2_9fc6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d0cd_1bc2_9fc6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f084_aeaf_1582", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f084_aeaf_1582.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f084_aeaf_1582/request", "", "public", "Top Dataset, enh, sflx.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f084_aeaf_1582_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f084_aeaf_1582_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f084_aeaf_1582/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f084_aeaf_1582.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f084_aeaf_1582&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f084_aeaf_1582"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10dd_0c9f_acc0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10dd_0c9f_acc0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_10dd_0c9f_acc0/request", "", "public", "Top Dataset, enh, sflx.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_10dd_0c9f_acc0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_10dd_0c9f_acc0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_10dd_0c9f_acc0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_10dd_0c9f_acc0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_10dd_0c9f_acc0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_10dd_0c9f_acc0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc4b_2d56_916c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc4b_2d56_916c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bc4b_2d56_916c/request", "", "public", "Top Dataset, enh, sflx.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bc4b_2d56_916c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bc4b_2d56_916c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bc4b_2d56_916c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bc4b_2d56_916c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bc4b_2d56_916c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bc4b_2d56_916c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e83e_0df2_7ab8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e83e_0df2_7ab8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e83e_0df2_7ab8/request", "", "public", "Top Dataset, enh, sflx.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e83e_0df2_7ab8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e83e_0df2_7ab8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e83e_0df2_7ab8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e83e_0df2_7ab8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e83e_0df2_7ab8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e83e_0df2_7ab8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b2dd_ac3b_c662", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b2dd_ac3b_c662.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b2dd_ac3b_c662/request", "", "public", "Top Dataset, enh, sflx.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b2dd_ac3b_c662_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b2dd_ac3b_c662_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b2dd_ac3b_c662/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b2dd_ac3b_c662.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b2dd_ac3b_c662&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b2dd_ac3b_c662"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_054c_8cb1_0404", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_054c_8cb1_0404.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_054c_8cb1_0404/request", "", "public", "Top Dataset, enh, sflx.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_054c_8cb1_0404_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_054c_8cb1_0404_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_054c_8cb1_0404/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_054c_8cb1_0404.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_054c_8cb1_0404&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_054c_8cb1_0404"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2caa_fc58_60be", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2caa_fc58_60be.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2caa_fc58_60be/request", "", "public", "Top Dataset, enh, sflx.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2caa_fc58_60be_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2caa_fc58_60be_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2caa_fc58_60be/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2caa_fc58_60be.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2caa_fc58_60be&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2caa_fc58_60be"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6630_428d_833c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6630_428d_833c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6630_428d_833c/request", "", "public", "Top Dataset, enh, sflx.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6630_428d_833c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6630_428d_833c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6630_428d_833c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6630_428d_833c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6630_428d_833c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6630_428d_833c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1333_0145_e7c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1333_0145_e7c5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1333_0145_e7c5/request", "", "public", "Top Dataset, enh, sflx.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1333_0145_e7c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1333_0145_e7c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1333_0145_e7c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1333_0145_e7c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1333_0145_e7c5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1333_0145_e7c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6029_9438_cebe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6029_9438_cebe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6029_9438_cebe/request", "", "public", "Top Dataset, enh, sflx.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6029_9438_cebe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6029_9438_cebe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6029_9438_cebe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6029_9438_cebe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6029_9438_cebe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6029_9438_cebe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ffa_e691_3d2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ffa_e691_3d2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6ffa_e691_3d2a/request", "", "public", "Top Dataset, enh, sflx.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6ffa_e691_3d2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6ffa_e691_3d2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ffa_e691_3d2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ffa_e691_3d2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ffa_e691_3d2a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6ffa_e691_3d2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_124f_09cc_016a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_124f_09cc_016a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_124f_09cc_016a/request", "", "public", "Top Dataset, enh, sflx.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_124f_09cc_016a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_124f_09cc_016a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_124f_09cc_016a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_124f_09cc_016a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_124f_09cc_016a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_124f_09cc_016a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18c4_a5b6_641b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18c4_a5b6_641b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_18c4_a5b6_641b/request", "", "public", "Top Dataset, enh, sflx.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_18c4_a5b6_641b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_18c4_a5b6_641b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_18c4_a5b6_641b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_18c4_a5b6_641b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_18c4_a5b6_641b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_18c4_a5b6_641b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_028e_e3e7_6162", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_028e_e3e7_6162.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_028e_e3e7_6162/request", "", "public", "Top Dataset, enh, shum.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_028e_e3e7_6162_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_028e_e3e7_6162_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_028e_e3e7_6162/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_028e_e3e7_6162.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_028e_e3e7_6162&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_028e_e3e7_6162"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ab9_b9e0_29e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ab9_b9e0_29e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ab9_b9e0_29e3/request", "", "public", "Top Dataset, enh, shum.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ab9_b9e0_29e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ab9_b9e0_29e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ab9_b9e0_29e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ab9_b9e0_29e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ab9_b9e0_29e3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3ab9_b9e0_29e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b4b2_595a_cfa7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b4b2_595a_cfa7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b4b2_595a_cfa7/request", "", "public", "Top Dataset, enh, shum.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b4b2_595a_cfa7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b4b2_595a_cfa7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b4b2_595a_cfa7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b4b2_595a_cfa7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b4b2_595a_cfa7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b4b2_595a_cfa7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15d8_ac7a_70ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15d8_ac7a_70ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_15d8_ac7a_70ae/request", "", "public", "Top Dataset, enh, shum.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_15d8_ac7a_70ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_15d8_ac7a_70ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_15d8_ac7a_70ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_15d8_ac7a_70ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_15d8_ac7a_70ae&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_15d8_ac7a_70ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7153_5632_49b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7153_5632_49b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7153_5632_49b6/request", "", "public", "Top Dataset, enh, shum.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7153_5632_49b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7153_5632_49b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7153_5632_49b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7153_5632_49b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7153_5632_49b6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7153_5632_49b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae03_18b4_c08f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae03_18b4_c08f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae03_18b4_c08f/request", "", "public", "Top Dataset, enh, shum.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae03_18b4_c08f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae03_18b4_c08f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae03_18b4_c08f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae03_18b4_c08f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae03_18b4_c08f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ae03_18b4_c08f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f25_8b02_17be", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f25_8b02_17be.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f25_8b02_17be/request", "", "public", "Top Dataset, enh, shum.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f25_8b02_17be_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f25_8b02_17be_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f25_8b02_17be/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f25_8b02_17be.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f25_8b02_17be&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8f25_8b02_17be"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c443_4175_7f00", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c443_4175_7f00.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c443_4175_7f00/request", "", "public", "Top Dataset, enh, shum.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c443_4175_7f00_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c443_4175_7f00_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c443_4175_7f00/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c443_4175_7f00.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c443_4175_7f00&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c443_4175_7f00"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e069_0a00_15b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e069_0a00_15b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e069_0a00_15b6/request", "", "public", "Top Dataset, enh, shum.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e069_0a00_15b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e069_0a00_15b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e069_0a00_15b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e069_0a00_15b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e069_0a00_15b6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e069_0a00_15b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a12_74f9_c10e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a12_74f9_c10e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a12_74f9_c10e/request", "", "public", "Top Dataset, enh, shum.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a12_74f9_c10e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a12_74f9_c10e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a12_74f9_c10e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a12_74f9_c10e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a12_74f9_c10e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5a12_74f9_c10e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06d5_daf3_41ed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06d5_daf3_41ed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_06d5_daf3_41ed/request", "", "public", "Top Dataset, enh, shum.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_06d5_daf3_41ed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_06d5_daf3_41ed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_06d5_daf3_41ed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_06d5_daf3_41ed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_06d5_daf3_41ed&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_06d5_daf3_41ed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b9b_e822_5fbc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b9b_e822_5fbc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b9b_e822_5fbc/request", "", "public", "Top Dataset, enh, shum.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b9b_e822_5fbc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b9b_e822_5fbc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b9b_e822_5fbc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b9b_e822_5fbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b9b_e822_5fbc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6b9b_e822_5fbc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d93_4213_b97d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d93_4213_b97d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d93_4213_b97d/request", "", "public", "Top Dataset, enh, shum.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d93_4213_b97d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d93_4213_b97d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d93_4213_b97d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d93_4213_b97d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d93_4213_b97d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8d93_4213_b97d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_127f_93b8_32b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_127f_93b8_32b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_127f_93b8_32b5/request", "", "public", "Top Dataset, enh, shum.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_127f_93b8_32b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_127f_93b8_32b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_127f_93b8_32b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_127f_93b8_32b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_127f_93b8_32b5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_127f_93b8_32b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d10_7b98_7ad3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d10_7b98_7ad3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d10_7b98_7ad3/request", "", "public", "Top Dataset, enh, shum.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d10_7b98_7ad3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d10_7b98_7ad3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d10_7b98_7ad3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d10_7b98_7ad3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d10_7b98_7ad3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6d10_7b98_7ad3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d20b_2fbf_1953", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d20b_2fbf_1953.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d20b_2fbf_1953/request", "", "public", "Top Dataset, enh, shum.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d20b_2fbf_1953_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d20b_2fbf_1953_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d20b_2fbf_1953/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d20b_2fbf_1953.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d20b_2fbf_1953&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d20b_2fbf_1953"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78d8_92a8_dcd4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78d8_92a8_dcd4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_78d8_92a8_dcd4/request", "", "public", "Top Dataset, enh, shum.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_78d8_92a8_dcd4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_78d8_92a8_dcd4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_78d8_92a8_dcd4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_78d8_92a8_dcd4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_78d8_92a8_dcd4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_78d8_92a8_dcd4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dd4_f6a2_a3c8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dd4_f6a2_a3c8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8dd4_f6a2_a3c8/request", "", "public", "Top Dataset, enh, shum.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8dd4_f6a2_a3c8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8dd4_f6a2_a3c8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8dd4_f6a2_a3c8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8dd4_f6a2_a3c8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8dd4_f6a2_a3c8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8dd4_f6a2_a3c8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6414_621d_2a23", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6414_621d_2a23.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6414_621d_2a23/request", "", "public", "Top Dataset, enh, shum.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6414_621d_2a23_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6414_621d_2a23_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6414_621d_2a23/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6414_621d_2a23.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6414_621d_2a23&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6414_621d_2a23"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bb7_9652_9259", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bb7_9652_9259.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9bb7_9652_9259/request", "", "public", "Top Dataset, enh, shum.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9bb7_9652_9259_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9bb7_9652_9259_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9bb7_9652_9259/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9bb7_9652_9259.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9bb7_9652_9259&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9bb7_9652_9259"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f12d_3e25_9ed1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f12d_3e25_9ed1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f12d_3e25_9ed1/request", "", "public", "Top Dataset, enh, shum.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f12d_3e25_9ed1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f12d_3e25_9ed1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f12d_3e25_9ed1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f12d_3e25_9ed1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f12d_3e25_9ed1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f12d_3e25_9ed1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa63_bcf4_122c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa63_bcf4_122c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa63_bcf4_122c/request", "", "public", "Top Dataset, enh, shum.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa63_bcf4_122c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa63_bcf4_122c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa63_bcf4_122c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa63_bcf4_122c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa63_bcf4_122c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_aa63_bcf4_122c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83e5_f38d_384a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83e5_f38d_384a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_83e5_f38d_384a/request", "", "public", "Top Dataset, enh, shum.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_83e5_f38d_384a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_83e5_f38d_384a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_83e5_f38d_384a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_83e5_f38d_384a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_83e5_f38d_384a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_83e5_f38d_384a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5da_2c82_3ba0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5da_2c82_3ba0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f5da_2c82_3ba0/request", "", "public", "Top Dataset, enh, shum.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f5da_2c82_3ba0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f5da_2c82_3ba0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f5da_2c82_3ba0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f5da_2c82_3ba0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f5da_2c82_3ba0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f5da_2c82_3ba0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_877d_f120_926e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_877d_f120_926e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_877d_f120_926e/request", "", "public", "Top Dataset, enh, shum.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_877d_f120_926e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_877d_f120_926e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_877d_f120_926e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_877d_f120_926e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_877d_f120_926e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_877d_f120_926e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_175e_3dcf_a7cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_175e_3dcf_a7cc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_175e_3dcf_a7cc/request", "", "public", "Top Dataset, enh, shum.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_175e_3dcf_a7cc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_175e_3dcf_a7cc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_175e_3dcf_a7cc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_175e_3dcf_a7cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_175e_3dcf_a7cc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_175e_3dcf_a7cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80c3_9d77_efeb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80c3_9d77_efeb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_80c3_9d77_efeb/request", "", "public", "Top Dataset, enh, shum.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_80c3_9d77_efeb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_80c3_9d77_efeb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_80c3_9d77_efeb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_80c3_9d77_efeb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_80c3_9d77_efeb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_80c3_9d77_efeb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9526_cd96_7ac6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9526_cd96_7ac6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9526_cd96_7ac6/request", "", "public", "Top Dataset, enh, shum.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9526_cd96_7ac6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9526_cd96_7ac6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9526_cd96_7ac6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9526_cd96_7ac6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9526_cd96_7ac6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9526_cd96_7ac6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e56_f19d_1a8c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e56_f19d_1a8c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4e56_f19d_1a8c/request", "", "public", "Top Dataset, enh, shum.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4e56_f19d_1a8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4e56_f19d_1a8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4e56_f19d_1a8c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4e56_f19d_1a8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4e56_f19d_1a8c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4e56_f19d_1a8c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9609_9806_2086", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9609_9806_2086.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9609_9806_2086/request", "", "public", "Top Dataset, enh, shum.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9609_9806_2086_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9609_9806_2086_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9609_9806_2086/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9609_9806_2086.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9609_9806_2086&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9609_9806_2086"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c385_2a42_14e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c385_2a42_14e8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c385_2a42_14e8/request", "", "public", "Top Dataset, enh, shum.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c385_2a42_14e8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c385_2a42_14e8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c385_2a42_14e8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c385_2a42_14e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c385_2a42_14e8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c385_2a42_14e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c8f_fff5_76e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c8f_fff5_76e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1c8f_fff5_76e2/request", "", "public", "Top Dataset, enh, shum.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1c8f_fff5_76e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1c8f_fff5_76e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1c8f_fff5_76e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1c8f_fff5_76e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1c8f_fff5_76e2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1c8f_fff5_76e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60fd_8bbd_c219", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60fd_8bbd_c219.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_60fd_8bbd_c219/request", "", "public", "Top Dataset, enh, shum.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_60fd_8bbd_c219_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_60fd_8bbd_c219_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_60fd_8bbd_c219/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_60fd_8bbd_c219.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_60fd_8bbd_c219&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_60fd_8bbd_c219"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d46d_e625_d56b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d46d_e625_d56b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d46d_e625_d56b/request", "", "public", "Top Dataset, enh, shum.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d46d_e625_d56b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d46d_e625_d56b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d46d_e625_d56b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d46d_e625_d56b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d46d_e625_d56b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d46d_e625_d56b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c63_ff1c_d3d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c63_ff1c_d3d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2c63_ff1c_d3d0/request", "", "public", "Top Dataset, enh, shum.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2c63_ff1c_d3d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2c63_ff1c_d3d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2c63_ff1c_d3d0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2c63_ff1c_d3d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2c63_ff1c_d3d0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2c63_ff1c_d3d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc2d_de03_9a53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc2d_de03_9a53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc2d_de03_9a53/request", "", "public", "Top Dataset, enh, shum.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc2d_de03_9a53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc2d_de03_9a53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc2d_de03_9a53/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc2d_de03_9a53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc2d_de03_9a53&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cc2d_de03_9a53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8653_97d3_de87", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8653_97d3_de87.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8653_97d3_de87/request", "", "public", "Top Dataset, enh, shum.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8653_97d3_de87_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8653_97d3_de87_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8653_97d3_de87/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8653_97d3_de87.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8653_97d3_de87&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8653_97d3_de87"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_722c_6ff7_ad67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_722c_6ff7_ad67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_722c_6ff7_ad67/request", "", "public", "Top Dataset, enh, shum.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_722c_6ff7_ad67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_722c_6ff7_ad67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_722c_6ff7_ad67/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_722c_6ff7_ad67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_722c_6ff7_ad67&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_722c_6ff7_ad67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad2c_8ecb_a847", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad2c_8ecb_a847.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ad2c_8ecb_a847/request", "", "public", "Top Dataset, enh, shum.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ad2c_8ecb_a847_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ad2c_8ecb_a847_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ad2c_8ecb_a847/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ad2c_8ecb_a847.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ad2c_8ecb_a847&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ad2c_8ecb_a847"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_33a8_3df3_9210", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_33a8_3df3_9210.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_33a8_3df3_9210/request", "", "public", "Top Dataset, enh, shum.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_33a8_3df3_9210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_33a8_3df3_9210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_33a8_3df3_9210/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_33a8_3df3_9210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_33a8_3df3_9210&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_33a8_3df3_9210"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9626_1e52_22af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9626_1e52_22af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9626_1e52_22af/request", "", "public", "Top Dataset, enh, shum.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9626_1e52_22af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9626_1e52_22af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9626_1e52_22af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9626_1e52_22af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9626_1e52_22af&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9626_1e52_22af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb0f_3aa1_de18", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb0f_3aa1_de18.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb0f_3aa1_de18/request", "", "public", "Top Dataset, enh, shum.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb0f_3aa1_de18_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb0f_3aa1_de18_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb0f_3aa1_de18/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb0f_3aa1_de18.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb0f_3aa1_de18&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fb0f_3aa1_de18"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_25df_37d4_5a38", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_25df_37d4_5a38.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_25df_37d4_5a38/request", "", "public", "Top Dataset, enh, shum.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_25df_37d4_5a38_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_25df_37d4_5a38_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_25df_37d4_5a38/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_25df_37d4_5a38.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_25df_37d4_5a38&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_25df_37d4_5a38"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3bb_4b37_d4e7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3bb_4b37_d4e7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c3bb_4b37_d4e7/request", "", "public", "Top Dataset, enh, shum.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c3bb_4b37_d4e7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c3bb_4b37_d4e7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c3bb_4b37_d4e7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c3bb_4b37_d4e7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c3bb_4b37_d4e7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c3bb_4b37_d4e7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6d0_ec1f_83f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6d0_ec1f_83f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e6d0_ec1f_83f0/request", "", "public", "Top Dataset, enh, shum.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e6d0_ec1f_83f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e6d0_ec1f_83f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e6d0_ec1f_83f0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e6d0_ec1f_83f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e6d0_ec1f_83f0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e6d0_ec1f_83f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7547_2372_e2b2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7547_2372_e2b2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7547_2372_e2b2/request", "", "public", "Top Dataset, enh, shum.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7547_2372_e2b2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7547_2372_e2b2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7547_2372_e2b2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7547_2372_e2b2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7547_2372_e2b2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7547_2372_e2b2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1516_22f8_a327", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1516_22f8_a327.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1516_22f8_a327/request", "", "public", "Top Dataset, enh, shum.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1516_22f8_a327_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1516_22f8_a327_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1516_22f8_a327/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1516_22f8_a327.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1516_22f8_a327&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1516_22f8_a327"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6897_61f0_bf92", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6897_61f0_bf92.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6897_61f0_bf92/request", "", "public", "Top Dataset, enh, shum.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6897_61f0_bf92_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6897_61f0_bf92_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6897_61f0_bf92/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6897_61f0_bf92.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6897_61f0_bf92&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6897_61f0_bf92"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c76b_fa56_b576", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c76b_fa56_b576.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c76b_fa56_b576/request", "", "public", "Top Dataset, enh, shum.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c76b_fa56_b576_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c76b_fa56_b576_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c76b_fa56_b576/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c76b_fa56_b576.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c76b_fa56_b576&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c76b_fa56_b576"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d7d_f106_fbdb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d7d_f106_fbdb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7d7d_f106_fbdb/request", "", "public", "Top Dataset, enh, shum.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7d7d_f106_fbdb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7d7d_f106_fbdb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7d7d_f106_fbdb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7d7d_f106_fbdb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7d7d_f106_fbdb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7d7d_f106_fbdb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c2fc_98d0_1c94", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c2fc_98d0_1c94.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c2fc_98d0_1c94/request", "", "public", "Top Dataset, enh, shum.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c2fc_98d0_1c94_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c2fc_98d0_1c94_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c2fc_98d0_1c94/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c2fc_98d0_1c94.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c2fc_98d0_1c94&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c2fc_98d0_1c94"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e62b_fbeb_b8f8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e62b_fbeb_b8f8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e62b_fbeb_b8f8/request", "", "public", "Top Dataset, enh, shum.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e62b_fbeb_b8f8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e62b_fbeb_b8f8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e62b_fbeb_b8f8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e62b_fbeb_b8f8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e62b_fbeb_b8f8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e62b_fbeb_b8f8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5db6_c87f_a714", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5db6_c87f_a714.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5db6_c87f_a714/request", "", "public", "Top Dataset, enh, shum.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5db6_c87f_a714_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5db6_c87f_a714_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5db6_c87f_a714/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5db6_c87f_a714.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5db6_c87f_a714&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5db6_c87f_a714"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65a1_89a7_4700", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65a1_89a7_4700.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_65a1_89a7_4700/request", "", "public", "Top Dataset, enh, shum.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_65a1_89a7_4700_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_65a1_89a7_4700_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_65a1_89a7_4700/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_65a1_89a7_4700.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_65a1_89a7_4700&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_65a1_89a7_4700"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9904_d9da_53c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9904_d9da_53c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9904_d9da_53c3/request", "", "public", "Top Dataset, enh, shum.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9904_d9da_53c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9904_d9da_53c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9904_d9da_53c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9904_d9da_53c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9904_d9da_53c3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9904_d9da_53c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7adf_7cd3_e6fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7adf_7cd3_e6fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7adf_7cd3_e6fd/request", "", "public", "Top Dataset, enh, shum.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7adf_7cd3_e6fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7adf_7cd3_e6fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7adf_7cd3_e6fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7adf_7cd3_e6fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7adf_7cd3_e6fd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7adf_7cd3_e6fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d02e_769c_6dfc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d02e_769c_6dfc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d02e_769c_6dfc/request", "", "public", "Top Dataset, enh, shum.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d02e_769c_6dfc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d02e_769c_6dfc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d02e_769c_6dfc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d02e_769c_6dfc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d02e_769c_6dfc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d02e_769c_6dfc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c94_be56_6083", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c94_be56_6083.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3c94_be56_6083/request", "", "public", "Top Dataset, enh, shum.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3c94_be56_6083_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3c94_be56_6083_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c94_be56_6083/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c94_be56_6083.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c94_be56_6083&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3c94_be56_6083"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cff_c0e9_9915", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cff_c0e9_9915.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2cff_c0e9_9915/request", "", "public", "Top Dataset, enh, shum.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2cff_c0e9_9915_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2cff_c0e9_9915_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2cff_c0e9_9915/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2cff_c0e9_9915.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2cff_c0e9_9915&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2cff_c0e9_9915"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a001_c947_8567", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a001_c947_8567.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a001_c947_8567/request", "", "public", "Top Dataset, enh, shum.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a001_c947_8567_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a001_c947_8567_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a001_c947_8567/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a001_c947_8567.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a001_c947_8567&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a001_c947_8567"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5f6_2976_0a23", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5f6_2976_0a23.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d5f6_2976_0a23/request", "", "public", "Top Dataset, enh, slp.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d5f6_2976_0a23_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d5f6_2976_0a23_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d5f6_2976_0a23/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d5f6_2976_0a23.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d5f6_2976_0a23&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d5f6_2976_0a23"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0365_53c1_0f3c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0365_53c1_0f3c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0365_53c1_0f3c/request", "", "public", "Top Dataset, enh, slp.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0365_53c1_0f3c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0365_53c1_0f3c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0365_53c1_0f3c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0365_53c1_0f3c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0365_53c1_0f3c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0365_53c1_0f3c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ec9_1f0d_0790", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ec9_1f0d_0790.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6ec9_1f0d_0790/request", "", "public", "Top Dataset, enh, slp.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6ec9_1f0d_0790_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6ec9_1f0d_0790_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ec9_1f0d_0790/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ec9_1f0d_0790.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ec9_1f0d_0790&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6ec9_1f0d_0790"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e5c_bb9b_2edf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e5c_bb9b_2edf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2e5c_bb9b_2edf/request", "", "public", "Top Dataset, enh, slp.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2e5c_bb9b_2edf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2e5c_bb9b_2edf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2e5c_bb9b_2edf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2e5c_bb9b_2edf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2e5c_bb9b_2edf&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2e5c_bb9b_2edf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a52d_bf98_29af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a52d_bf98_29af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a52d_bf98_29af/request", "", "public", "Top Dataset, enh, slp.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a52d_bf98_29af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a52d_bf98_29af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a52d_bf98_29af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a52d_bf98_29af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a52d_bf98_29af&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a52d_bf98_29af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f65f_897e_9563", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f65f_897e_9563.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f65f_897e_9563/request", "", "public", "Top Dataset, enh, slp.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f65f_897e_9563_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f65f_897e_9563_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f65f_897e_9563/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f65f_897e_9563.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f65f_897e_9563&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f65f_897e_9563"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_49e5_1b15_885a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_49e5_1b15_885a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_49e5_1b15_885a/request", "", "public", "Top Dataset, enh, slp.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_49e5_1b15_885a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_49e5_1b15_885a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_49e5_1b15_885a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_49e5_1b15_885a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_49e5_1b15_885a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_49e5_1b15_885a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0935_21b7_3a9b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0935_21b7_3a9b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0935_21b7_3a9b/request", "", "public", "Top Dataset, enh, slp.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0935_21b7_3a9b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0935_21b7_3a9b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0935_21b7_3a9b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0935_21b7_3a9b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0935_21b7_3a9b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0935_21b7_3a9b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91cb_111c_379c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91cb_111c_379c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_91cb_111c_379c/request", "", "public", "Top Dataset, enh, slp.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_91cb_111c_379c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_91cb_111c_379c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_91cb_111c_379c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_91cb_111c_379c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_91cb_111c_379c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_91cb_111c_379c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0567_9e4d_d2dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0567_9e4d_d2dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0567_9e4d_d2dd/request", "", "public", "Top Dataset, enh, slp.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0567_9e4d_d2dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0567_9e4d_d2dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0567_9e4d_d2dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0567_9e4d_d2dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0567_9e4d_d2dd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0567_9e4d_d2dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_33f4_ef19_af2e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_33f4_ef19_af2e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_33f4_ef19_af2e/request", "", "public", "Top Dataset, enh, slp.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_33f4_ef19_af2e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_33f4_ef19_af2e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_33f4_ef19_af2e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_33f4_ef19_af2e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_33f4_ef19_af2e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_33f4_ef19_af2e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2ce_83e1_c2a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2ce_83e1_c2a8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d2ce_83e1_c2a8/request", "", "public", "Top Dataset, enh, slp.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d2ce_83e1_c2a8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d2ce_83e1_c2a8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d2ce_83e1_c2a8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d2ce_83e1_c2a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d2ce_83e1_c2a8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d2ce_83e1_c2a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a34_f06f_49b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a34_f06f_49b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a34_f06f_49b9/request", "", "public", "Top Dataset, enh, slp.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a34_f06f_49b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a34_f06f_49b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a34_f06f_49b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a34_f06f_49b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a34_f06f_49b9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5a34_f06f_49b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35fa_68a9_4916", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35fa_68a9_4916.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_35fa_68a9_4916/request", "", "public", "Top Dataset, enh, slp.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_35fa_68a9_4916_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_35fa_68a9_4916_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_35fa_68a9_4916/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_35fa_68a9_4916.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_35fa_68a9_4916&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_35fa_68a9_4916"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_626f_fdab_4763", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_626f_fdab_4763.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_626f_fdab_4763/request", "", "public", "Top Dataset, enh, slp.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_626f_fdab_4763_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_626f_fdab_4763_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_626f_fdab_4763/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_626f_fdab_4763.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_626f_fdab_4763&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_626f_fdab_4763"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f420_bf0d_3198", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f420_bf0d_3198.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f420_bf0d_3198/request", "", "public", "Top Dataset, enh, slp.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f420_bf0d_3198_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f420_bf0d_3198_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f420_bf0d_3198/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f420_bf0d_3198.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f420_bf0d_3198&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f420_bf0d_3198"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b9b_f63a_725f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b9b_f63a_725f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0b9b_f63a_725f/request", "", "public", "Top Dataset, enh, slp.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0b9b_f63a_725f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0b9b_f63a_725f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0b9b_f63a_725f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0b9b_f63a_725f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0b9b_f63a_725f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0b9b_f63a_725f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_817a_2b81_111c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_817a_2b81_111c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_817a_2b81_111c/request", "", "public", "Top Dataset, enh, slp.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_817a_2b81_111c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_817a_2b81_111c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_817a_2b81_111c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_817a_2b81_111c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_817a_2b81_111c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_817a_2b81_111c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e8e3_fe15_5af7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e8e3_fe15_5af7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e8e3_fe15_5af7/request", "", "public", "Top Dataset, enh, slp.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e8e3_fe15_5af7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e8e3_fe15_5af7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e8e3_fe15_5af7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e8e3_fe15_5af7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e8e3_fe15_5af7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e8e3_fe15_5af7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_406c_77de_41aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_406c_77de_41aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_406c_77de_41aa/request", "", "public", "Top Dataset, enh, slp.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_406c_77de_41aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_406c_77de_41aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_406c_77de_41aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_406c_77de_41aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_406c_77de_41aa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_406c_77de_41aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd4f_baef_8741", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd4f_baef_8741.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cd4f_baef_8741/request", "", "public", "Top Dataset, enh, slp.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cd4f_baef_8741_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cd4f_baef_8741_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cd4f_baef_8741/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cd4f_baef_8741.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cd4f_baef_8741&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cd4f_baef_8741"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97da_9620_77bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97da_9620_77bc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_97da_9620_77bc/request", "", "public", "Top Dataset, enh, slp.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_97da_9620_77bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_97da_9620_77bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_97da_9620_77bc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_97da_9620_77bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_97da_9620_77bc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_97da_9620_77bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0515_73e1_c461", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0515_73e1_c461.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0515_73e1_c461/request", "", "public", "Top Dataset, enh, slp.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0515_73e1_c461_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0515_73e1_c461_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0515_73e1_c461/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0515_73e1_c461.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0515_73e1_c461&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0515_73e1_c461"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58fd_721f_cf82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58fd_721f_cf82.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_58fd_721f_cf82/request", "", "public", "Top Dataset, enh, slp.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_58fd_721f_cf82_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_58fd_721f_cf82_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_58fd_721f_cf82/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_58fd_721f_cf82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_58fd_721f_cf82&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_58fd_721f_cf82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6bf_456b_8a0f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6bf_456b_8a0f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d6bf_456b_8a0f/request", "", "public", "Top Dataset, enh, slp.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d6bf_456b_8a0f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d6bf_456b_8a0f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d6bf_456b_8a0f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d6bf_456b_8a0f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d6bf_456b_8a0f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d6bf_456b_8a0f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3455_3f32_74d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3455_3f32_74d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3455_3f32_74d4/request", "", "public", "Top Dataset, enh, slp.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3455_3f32_74d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3455_3f32_74d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3455_3f32_74d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3455_3f32_74d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3455_3f32_74d4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3455_3f32_74d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_959c_c068_1213", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_959c_c068_1213.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_959c_c068_1213/request", "", "public", "Top Dataset, enh, slp.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_959c_c068_1213_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_959c_c068_1213_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_959c_c068_1213/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_959c_c068_1213.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_959c_c068_1213&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_959c_c068_1213"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ea0_c982_abad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ea0_c982_abad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ea0_c982_abad/request", "", "public", "Top Dataset, enh, slp.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ea0_c982_abad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ea0_c982_abad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ea0_c982_abad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ea0_c982_abad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ea0_c982_abad&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1ea0_c982_abad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a69c_0c21_388a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a69c_0c21_388a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a69c_0c21_388a/request", "", "public", "Top Dataset, enh, slp.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a69c_0c21_388a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a69c_0c21_388a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a69c_0c21_388a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a69c_0c21_388a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a69c_0c21_388a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a69c_0c21_388a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ac81_a6db_5125", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ac81_a6db_5125.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ac81_a6db_5125/request", "", "public", "Top Dataset, enh, slp.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ac81_a6db_5125_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ac81_a6db_5125_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ac81_a6db_5125/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ac81_a6db_5125.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ac81_a6db_5125&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ac81_a6db_5125"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abc0_65ac_45e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abc0_65ac_45e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_abc0_65ac_45e3/request", "", "public", "Top Dataset, enh, slp.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_abc0_65ac_45e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_abc0_65ac_45e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_abc0_65ac_45e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_abc0_65ac_45e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_abc0_65ac_45e3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_abc0_65ac_45e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bbf6_dc5f_efb2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bbf6_dc5f_efb2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bbf6_dc5f_efb2/request", "", "public", "Top Dataset, enh, slp.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bbf6_dc5f_efb2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bbf6_dc5f_efb2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bbf6_dc5f_efb2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bbf6_dc5f_efb2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bbf6_dc5f_efb2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bbf6_dc5f_efb2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc63_ecaa_48f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc63_ecaa_48f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc63_ecaa_48f1/request", "", "public", "Top Dataset, enh, slp.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc63_ecaa_48f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc63_ecaa_48f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc63_ecaa_48f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc63_ecaa_48f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc63_ecaa_48f1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fc63_ecaa_48f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e31f_78ba_09c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e31f_78ba_09c9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e31f_78ba_09c9/request", "", "public", "Top Dataset, enh, slp.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e31f_78ba_09c9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e31f_78ba_09c9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e31f_78ba_09c9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e31f_78ba_09c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e31f_78ba_09c9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e31f_78ba_09c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c59_504a_6d08", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c59_504a_6d08.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1c59_504a_6d08/request", "", "public", "Top Dataset, enh, slp.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1c59_504a_6d08_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1c59_504a_6d08_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1c59_504a_6d08/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1c59_504a_6d08.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1c59_504a_6d08&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1c59_504a_6d08"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8edd_61d5_8c1b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8edd_61d5_8c1b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8edd_61d5_8c1b/request", "", "public", "Top Dataset, enh, slp.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8edd_61d5_8c1b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8edd_61d5_8c1b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8edd_61d5_8c1b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8edd_61d5_8c1b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8edd_61d5_8c1b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8edd_61d5_8c1b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a82_f89b_2018", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a82_f89b_2018.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a82_f89b_2018/request", "", "public", "Top Dataset, enh, slp.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a82_f89b_2018_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a82_f89b_2018_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a82_f89b_2018/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a82_f89b_2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a82_f89b_2018&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7a82_f89b_2018"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fc3_d9ab_d51b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fc3_d9ab_d51b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4fc3_d9ab_d51b/request", "", "public", "Top Dataset, enh, slp.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4fc3_d9ab_d51b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4fc3_d9ab_d51b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4fc3_d9ab_d51b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4fc3_d9ab_d51b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4fc3_d9ab_d51b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4fc3_d9ab_d51b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9be4_fbca_70df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9be4_fbca_70df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9be4_fbca_70df/request", "", "public", "Top Dataset, enh, slp.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9be4_fbca_70df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9be4_fbca_70df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9be4_fbca_70df/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9be4_fbca_70df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9be4_fbca_70df&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9be4_fbca_70df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c153_66dd_04c7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c153_66dd_04c7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c153_66dd_04c7/request", "", "public", "Top Dataset, enh, slp.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c153_66dd_04c7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c153_66dd_04c7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c153_66dd_04c7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c153_66dd_04c7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c153_66dd_04c7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c153_66dd_04c7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e70_fd02_d4e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e70_fd02_d4e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1e70_fd02_d4e1/request", "", "public", "Top Dataset, enh, slp.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1e70_fd02_d4e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1e70_fd02_d4e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1e70_fd02_d4e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1e70_fd02_d4e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1e70_fd02_d4e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1e70_fd02_d4e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb23_5c31_1a27", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb23_5c31_1a27.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb23_5c31_1a27/request", "", "public", "Top Dataset, enh, slp.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb23_5c31_1a27_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb23_5c31_1a27_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb23_5c31_1a27/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb23_5c31_1a27.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb23_5c31_1a27&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fb23_5c31_1a27"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c58c_8134_5dab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c58c_8134_5dab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c58c_8134_5dab/request", "", "public", "Top Dataset, enh, slp.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c58c_8134_5dab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c58c_8134_5dab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c58c_8134_5dab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c58c_8134_5dab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c58c_8134_5dab&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c58c_8134_5dab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2af2_47a6_1ddf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2af2_47a6_1ddf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2af2_47a6_1ddf/request", "", "public", "Top Dataset, enh, slp.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2af2_47a6_1ddf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2af2_47a6_1ddf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2af2_47a6_1ddf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2af2_47a6_1ddf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2af2_47a6_1ddf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2af2_47a6_1ddf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbb9_4ac1_8c0e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbb9_4ac1_8c0e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fbb9_4ac1_8c0e/request", "", "public", "Top Dataset, enh, slp.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fbb9_4ac1_8c0e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fbb9_4ac1_8c0e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fbb9_4ac1_8c0e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fbb9_4ac1_8c0e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fbb9_4ac1_8c0e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fbb9_4ac1_8c0e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c43a_53fa_ef7e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c43a_53fa_ef7e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c43a_53fa_ef7e/request", "", "public", "Top Dataset, enh, slp.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c43a_53fa_ef7e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c43a_53fa_ef7e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c43a_53fa_ef7e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c43a_53fa_ef7e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c43a_53fa_ef7e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c43a_53fa_ef7e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43c0_65bd_3354", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43c0_65bd_3354.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_43c0_65bd_3354/request", "", "public", "Top Dataset, enh, slp.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_43c0_65bd_3354_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_43c0_65bd_3354_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_43c0_65bd_3354/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_43c0_65bd_3354.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_43c0_65bd_3354&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_43c0_65bd_3354"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce94_8c97_119d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce94_8c97_119d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ce94_8c97_119d/request", "", "public", "Top Dataset, enh, slp.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ce94_8c97_119d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ce94_8c97_119d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ce94_8c97_119d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ce94_8c97_119d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ce94_8c97_119d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ce94_8c97_119d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ea5_e3d9_bf73", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ea5_e3d9_bf73.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0ea5_e3d9_bf73/request", "", "public", "Top Dataset, enh, slp.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0ea5_e3d9_bf73_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0ea5_e3d9_bf73_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0ea5_e3d9_bf73/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0ea5_e3d9_bf73.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0ea5_e3d9_bf73&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0ea5_e3d9_bf73"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f80_cb45_e87d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f80_cb45_e87d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f80_cb45_e87d/request", "", "public", "Top Dataset, enh, slp.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f80_cb45_e87d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f80_cb45_e87d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f80_cb45_e87d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f80_cb45_e87d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f80_cb45_e87d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1f80_cb45_e87d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_321a_7252_080a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_321a_7252_080a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_321a_7252_080a/request", "", "public", "Top Dataset, enh, slp.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_321a_7252_080a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_321a_7252_080a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_321a_7252_080a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_321a_7252_080a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_321a_7252_080a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_321a_7252_080a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4547_ff50_1410", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4547_ff50_1410.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4547_ff50_1410/request", "", "public", "Top Dataset, enh, slp.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4547_ff50_1410_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4547_ff50_1410_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4547_ff50_1410/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4547_ff50_1410.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4547_ff50_1410&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4547_ff50_1410"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13f3_a0fe_67e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13f3_a0fe_67e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_13f3_a0fe_67e1/request", "", "public", "Top Dataset, enh, slp.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_13f3_a0fe_67e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_13f3_a0fe_67e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_13f3_a0fe_67e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_13f3_a0fe_67e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_13f3_a0fe_67e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_13f3_a0fe_67e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9933_d423_795e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9933_d423_795e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9933_d423_795e/request", "", "public", "Top Dataset, enh, slp.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9933_d423_795e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9933_d423_795e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9933_d423_795e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9933_d423_795e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9933_d423_795e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9933_d423_795e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9edd_0c67_7bb3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9edd_0c67_7bb3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9edd_0c67_7bb3/request", "", "public", "Top Dataset, enh, slp.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9edd_0c67_7bb3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9edd_0c67_7bb3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9edd_0c67_7bb3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9edd_0c67_7bb3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9edd_0c67_7bb3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9edd_0c67_7bb3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b45_124d_88a9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b45_124d_88a9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b45_124d_88a9/request", "", "public", "Top Dataset, enh, slp.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b45_124d_88a9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b45_124d_88a9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b45_124d_88a9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b45_124d_88a9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b45_124d_88a9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7b45_124d_88a9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5a7_41f5_77ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5a7_41f5_77ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d5a7_41f5_77ee/request", "", "public", "Top Dataset, enh, slp.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d5a7_41f5_77ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d5a7_41f5_77ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d5a7_41f5_77ee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d5a7_41f5_77ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d5a7_41f5_77ee&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d5a7_41f5_77ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2789_b472_4d1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2789_b472_4d1e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2789_b472_4d1e/request", "", "public", "Top Dataset, enh, slp.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2789_b472_4d1e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2789_b472_4d1e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2789_b472_4d1e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2789_b472_4d1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2789_b472_4d1e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2789_b472_4d1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e6b_3635_b878", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e6b_3635_b878.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e6b_3635_b878/request", "", "public", "Top Dataset, enh, slp.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e6b_3635_b878_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e6b_3635_b878_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e6b_3635_b878/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e6b_3635_b878.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e6b_3635_b878&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9e6b_3635_b878"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd60_9511_46c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd60_9511_46c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cd60_9511_46c4/request", "", "public", "Top Dataset, enh, slp.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cd60_9511_46c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cd60_9511_46c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cd60_9511_46c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cd60_9511_46c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cd60_9511_46c4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cd60_9511_46c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f616_dfd1_5dbe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f616_dfd1_5dbe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f616_dfd1_5dbe/request", "", "public", "Top Dataset, enh, smina.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f616_dfd1_5dbe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f616_dfd1_5dbe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f616_dfd1_5dbe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f616_dfd1_5dbe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f616_dfd1_5dbe&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f616_dfd1_5dbe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88a3_b8ea_a6f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88a3_b8ea_a6f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_88a3_b8ea_a6f3/request", "", "public", "Top Dataset, enh, smina.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_88a3_b8ea_a6f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_88a3_b8ea_a6f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_88a3_b8ea_a6f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_88a3_b8ea_a6f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_88a3_b8ea_a6f3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_88a3_b8ea_a6f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b83d_4740_b543", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b83d_4740_b543.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b83d_4740_b543/request", "", "public", "Top Dataset, enh, smina.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b83d_4740_b543_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b83d_4740_b543_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b83d_4740_b543/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b83d_4740_b543.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b83d_4740_b543&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b83d_4740_b543"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bff6_4323_a727", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bff6_4323_a727.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bff6_4323_a727/request", "", "public", "Top Dataset, enh, smina.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bff6_4323_a727_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bff6_4323_a727_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bff6_4323_a727/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bff6_4323_a727.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bff6_4323_a727&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bff6_4323_a727"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9304_d962_7f0d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9304_d962_7f0d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9304_d962_7f0d/request", "", "public", "Top Dataset, enh, smina.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9304_d962_7f0d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9304_d962_7f0d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9304_d962_7f0d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9304_d962_7f0d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9304_d962_7f0d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9304_d962_7f0d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9fbf_8f71_7a37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9fbf_8f71_7a37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9fbf_8f71_7a37/request", "", "public", "Top Dataset, enh, smina.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9fbf_8f71_7a37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9fbf_8f71_7a37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9fbf_8f71_7a37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9fbf_8f71_7a37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9fbf_8f71_7a37&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9fbf_8f71_7a37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f96_5c9e_85e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f96_5c9e_85e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f96_5c9e_85e0/request", "", "public", "Top Dataset, enh, smina.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f96_5c9e_85e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f96_5c9e_85e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f96_5c9e_85e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f96_5c9e_85e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f96_5c9e_85e0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7f96_5c9e_85e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b552_e3cf_4d13", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b552_e3cf_4d13.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b552_e3cf_4d13/request", "", "public", "Top Dataset, enh, smina.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b552_e3cf_4d13_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b552_e3cf_4d13_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b552_e3cf_4d13/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b552_e3cf_4d13.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b552_e3cf_4d13&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b552_e3cf_4d13"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e600_24e6_c4a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e600_24e6_c4a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e600_24e6_c4a1/request", "", "public", "Top Dataset, enh, smina.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e600_24e6_c4a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e600_24e6_c4a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e600_24e6_c4a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e600_24e6_c4a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e600_24e6_c4a1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e600_24e6_c4a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f75_7d9e_c14b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f75_7d9e_c14b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f75_7d9e_c14b/request", "", "public", "Top Dataset, enh, smina.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f75_7d9e_c14b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f75_7d9e_c14b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f75_7d9e_c14b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f75_7d9e_c14b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f75_7d9e_c14b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8f75_7d9e_c14b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2dbe_6caa_6a1f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2dbe_6caa_6a1f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2dbe_6caa_6a1f/request", "", "public", "Top Dataset, enh, smina.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2dbe_6caa_6a1f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2dbe_6caa_6a1f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2dbe_6caa_6a1f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2dbe_6caa_6a1f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2dbe_6caa_6a1f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2dbe_6caa_6a1f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95f0_81fa_b575", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95f0_81fa_b575.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_95f0_81fa_b575/request", "", "public", "Top Dataset, enh, smina.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_95f0_81fa_b575_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_95f0_81fa_b575_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_95f0_81fa_b575/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_95f0_81fa_b575.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_95f0_81fa_b575&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_95f0_81fa_b575"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc4d_930c_0451", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc4d_930c_0451.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc4d_930c_0451/request", "", "public", "Top Dataset, enh, smina.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc4d_930c_0451_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc4d_930c_0451_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc4d_930c_0451/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc4d_930c_0451.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc4d_930c_0451&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_dc4d_930c_0451"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1099_98be_689d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1099_98be_689d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1099_98be_689d/request", "", "public", "Top Dataset, enh, smina.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1099_98be_689d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1099_98be_689d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1099_98be_689d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1099_98be_689d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1099_98be_689d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1099_98be_689d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d17_64b3_4396", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d17_64b3_4396.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9d17_64b3_4396/request", "", "public", "Top Dataset, enh, smina.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9d17_64b3_4396_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9d17_64b3_4396_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9d17_64b3_4396/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9d17_64b3_4396.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9d17_64b3_4396&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9d17_64b3_4396"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14dc_5786_3a1a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14dc_5786_3a1a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_14dc_5786_3a1a/request", "", "public", "Top Dataset, enh, smina.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_14dc_5786_3a1a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_14dc_5786_3a1a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_14dc_5786_3a1a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_14dc_5786_3a1a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_14dc_5786_3a1a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_14dc_5786_3a1a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73ce_d92e_53c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73ce_d92e_53c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_73ce_d92e_53c4/request", "", "public", "Top Dataset, enh, smina.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_73ce_d92e_53c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_73ce_d92e_53c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_73ce_d92e_53c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_73ce_d92e_53c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_73ce_d92e_53c4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_73ce_d92e_53c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c18_d0ee_414a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c18_d0ee_414a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8c18_d0ee_414a/request", "", "public", "Top Dataset, enh, smina.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8c18_d0ee_414a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8c18_d0ee_414a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8c18_d0ee_414a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8c18_d0ee_414a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8c18_d0ee_414a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8c18_d0ee_414a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dcf2_5f9e_5ffe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dcf2_5f9e_5ffe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dcf2_5f9e_5ffe/request", "", "public", "Top Dataset, enh, smina.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dcf2_5f9e_5ffe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dcf2_5f9e_5ffe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dcf2_5f9e_5ffe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dcf2_5f9e_5ffe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dcf2_5f9e_5ffe&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_dcf2_5f9e_5ffe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b1e_3812_b03c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b1e_3812_b03c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b1e_3812_b03c/request", "", "public", "Top Dataset, enh, smina.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b1e_3812_b03c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b1e_3812_b03c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b1e_3812_b03c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b1e_3812_b03c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b1e_3812_b03c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6b1e_3812_b03c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7fb_7989_0a03", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7fb_7989_0a03.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d7fb_7989_0a03/request", "", "public", "Top Dataset, enh, smina.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d7fb_7989_0a03_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d7fb_7989_0a03_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d7fb_7989_0a03/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d7fb_7989_0a03.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d7fb_7989_0a03&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d7fb_7989_0a03"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1877_bdc3_403d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1877_bdc3_403d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1877_bdc3_403d/request", "", "public", "Top Dataset, enh, smina.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1877_bdc3_403d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1877_bdc3_403d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1877_bdc3_403d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1877_bdc3_403d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1877_bdc3_403d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1877_bdc3_403d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_948c_ec5a_43b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_948c_ec5a_43b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_948c_ec5a_43b3/request", "", "public", "Top Dataset, enh, smina.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_948c_ec5a_43b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_948c_ec5a_43b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_948c_ec5a_43b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_948c_ec5a_43b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_948c_ec5a_43b3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_948c_ec5a_43b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf5c_6df3_5b67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf5c_6df3_5b67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf5c_6df3_5b67/request", "", "public", "Top Dataset, enh, smina.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf5c_6df3_5b67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf5c_6df3_5b67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf5c_6df3_5b67/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf5c_6df3_5b67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf5c_6df3_5b67&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cf5c_6df3_5b67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a797_6426_fb2c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a797_6426_fb2c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a797_6426_fb2c/request", "", "public", "Top Dataset, enh, smina.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a797_6426_fb2c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a797_6426_fb2c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a797_6426_fb2c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a797_6426_fb2c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a797_6426_fb2c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a797_6426_fb2c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f9e_b739_3ca4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f9e_b739_3ca4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f9e_b739_3ca4/request", "", "public", "Top Dataset, enh, smina.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f9e_b739_3ca4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f9e_b739_3ca4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f9e_b739_3ca4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f9e_b739_3ca4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f9e_b739_3ca4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0f9e_b739_3ca4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3411_5052_4e77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3411_5052_4e77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3411_5052_4e77/request", "", "public", "Top Dataset, enh, smina.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3411_5052_4e77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3411_5052_4e77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3411_5052_4e77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3411_5052_4e77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3411_5052_4e77&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3411_5052_4e77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f48_3e64_04df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f48_3e64_04df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f48_3e64_04df/request", "", "public", "Top Dataset, enh, smina.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f48_3e64_04df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f48_3e64_04df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f48_3e64_04df/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f48_3e64_04df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f48_3e64_04df&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9f48_3e64_04df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0936_7e65_c266", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0936_7e65_c266.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0936_7e65_c266/request", "", "public", "Top Dataset, enh, smina.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0936_7e65_c266_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0936_7e65_c266_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0936_7e65_c266/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0936_7e65_c266.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0936_7e65_c266&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0936_7e65_c266"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ab7_2a8c_263f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ab7_2a8c_263f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ab7_2a8c_263f/request", "", "public", "Top Dataset, enh, smina.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ab7_2a8c_263f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ab7_2a8c_263f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ab7_2a8c_263f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ab7_2a8c_263f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ab7_2a8c_263f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1ab7_2a8c_263f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6be_18c7_0058", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6be_18c7_0058.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d6be_18c7_0058/request", "", "public", "Top Dataset, enh, smina.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d6be_18c7_0058_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d6be_18c7_0058_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d6be_18c7_0058/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d6be_18c7_0058.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d6be_18c7_0058&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d6be_18c7_0058"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a248_46b3_7022", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a248_46b3_7022.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a248_46b3_7022/request", "", "public", "Top Dataset, enh, smina.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a248_46b3_7022_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a248_46b3_7022_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a248_46b3_7022/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a248_46b3_7022.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a248_46b3_7022&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a248_46b3_7022"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccaa_83e6_a191", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccaa_83e6_a191.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ccaa_83e6_a191/request", "", "public", "Top Dataset, enh, smina.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ccaa_83e6_a191_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ccaa_83e6_a191_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ccaa_83e6_a191/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ccaa_83e6_a191.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ccaa_83e6_a191&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ccaa_83e6_a191"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e259_37b4_f5ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e259_37b4_f5ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e259_37b4_f5ae/request", "", "public", "Top Dataset, enh, smina.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e259_37b4_f5ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e259_37b4_f5ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e259_37b4_f5ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e259_37b4_f5ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e259_37b4_f5ae&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e259_37b4_f5ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ed8_b63b_e53f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ed8_b63b_e53f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ed8_b63b_e53f/request", "", "public", "Top Dataset, enh, smina.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ed8_b63b_e53f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ed8_b63b_e53f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ed8_b63b_e53f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ed8_b63b_e53f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ed8_b63b_e53f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4ed8_b63b_e53f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a66_95c8_977b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a66_95c8_977b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8a66_95c8_977b/request", "", "public", "Top Dataset, enh, smina.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8a66_95c8_977b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8a66_95c8_977b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8a66_95c8_977b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8a66_95c8_977b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8a66_95c8_977b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8a66_95c8_977b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f5b_f294_0436", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f5b_f294_0436.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f5b_f294_0436/request", "", "public", "Top Dataset, enh, smina.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f5b_f294_0436_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f5b_f294_0436_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f5b_f294_0436/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f5b_f294_0436.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f5b_f294_0436&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8f5b_f294_0436"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09a4_16fc_a21d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09a4_16fc_a21d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_09a4_16fc_a21d/request", "", "public", "Top Dataset, enh, smina.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_09a4_16fc_a21d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_09a4_16fc_a21d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_09a4_16fc_a21d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_09a4_16fc_a21d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_09a4_16fc_a21d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_09a4_16fc_a21d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_256d_1192_a627", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_256d_1192_a627.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_256d_1192_a627/request", "", "public", "Top Dataset, enh, smina.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_256d_1192_a627_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_256d_1192_a627_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_256d_1192_a627/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_256d_1192_a627.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_256d_1192_a627&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_256d_1192_a627"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea27_7e2a_c555", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea27_7e2a_c555.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ea27_7e2a_c555/request", "", "public", "Top Dataset, enh, smina.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ea27_7e2a_c555_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ea27_7e2a_c555_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ea27_7e2a_c555/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ea27_7e2a_c555.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ea27_7e2a_c555&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ea27_7e2a_c555"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d37_a2e6_0028", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d37_a2e6_0028.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d37_a2e6_0028/request", "", "public", "Top Dataset, enh, smina.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d37_a2e6_0028_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d37_a2e6_0028_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d37_a2e6_0028/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d37_a2e6_0028.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d37_a2e6_0028&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d37_a2e6_0028"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_682f_28b7_fde1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_682f_28b7_fde1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_682f_28b7_fde1/request", "", "public", "Top Dataset, enh, smina.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_682f_28b7_fde1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_682f_28b7_fde1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_682f_28b7_fde1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_682f_28b7_fde1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_682f_28b7_fde1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_682f_28b7_fde1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfe2_9f5a_74df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfe2_9f5a_74df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dfe2_9f5a_74df/request", "", "public", "Top Dataset, enh, smina.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dfe2_9f5a_74df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dfe2_9f5a_74df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dfe2_9f5a_74df/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dfe2_9f5a_74df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dfe2_9f5a_74df&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_dfe2_9f5a_74df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_07b2_d852_3f6e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_07b2_d852_3f6e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_07b2_d852_3f6e/request", "", "public", "Top Dataset, enh, smina.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_07b2_d852_3f6e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_07b2_d852_3f6e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_07b2_d852_3f6e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_07b2_d852_3f6e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_07b2_d852_3f6e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_07b2_d852_3f6e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dec4_cd08_944b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dec4_cd08_944b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dec4_cd08_944b/request", "", "public", "Top Dataset, enh, smina.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dec4_cd08_944b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dec4_cd08_944b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dec4_cd08_944b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dec4_cd08_944b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dec4_cd08_944b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dec4_cd08_944b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80b6_e99d_e7a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80b6_e99d_e7a8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_80b6_e99d_e7a8/request", "", "public", "Top Dataset, enh, smina.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_80b6_e99d_e7a8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_80b6_e99d_e7a8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_80b6_e99d_e7a8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_80b6_e99d_e7a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_80b6_e99d_e7a8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_80b6_e99d_e7a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b0cf_746a_5cec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b0cf_746a_5cec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b0cf_746a_5cec/request", "", "public", "Top Dataset, enh, smina.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b0cf_746a_5cec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b0cf_746a_5cec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b0cf_746a_5cec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b0cf_746a_5cec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b0cf_746a_5cec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b0cf_746a_5cec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d646_d58b_51c8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d646_d58b_51c8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d646_d58b_51c8/request", "", "public", "Top Dataset, enh, smina.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d646_d58b_51c8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d646_d58b_51c8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d646_d58b_51c8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d646_d58b_51c8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d646_d58b_51c8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d646_d58b_51c8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96d5_b9e6_b929", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96d5_b9e6_b929.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_96d5_b9e6_b929/request", "", "public", "Top Dataset, enh, smina.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_96d5_b9e6_b929_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_96d5_b9e6_b929_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_96d5_b9e6_b929/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_96d5_b9e6_b929.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_96d5_b9e6_b929&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_96d5_b9e6_b929"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5183_94a1_5f19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5183_94a1_5f19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5183_94a1_5f19/request", "", "public", "Top Dataset, enh, smina.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5183_94a1_5f19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5183_94a1_5f19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5183_94a1_5f19/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5183_94a1_5f19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5183_94a1_5f19&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5183_94a1_5f19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a841_ee88_9c48", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a841_ee88_9c48.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a841_ee88_9c48/request", "", "public", "Top Dataset, enh, smina.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a841_ee88_9c48_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a841_ee88_9c48_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a841_ee88_9c48/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a841_ee88_9c48.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a841_ee88_9c48&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a841_ee88_9c48"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e01_dfd7_1f63", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e01_dfd7_1f63.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e01_dfd7_1f63/request", "", "public", "Top Dataset, enh, smina.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e01_dfd7_1f63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e01_dfd7_1f63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e01_dfd7_1f63/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e01_dfd7_1f63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e01_dfd7_1f63&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0e01_dfd7_1f63"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c53_dff1_71a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c53_dff1_71a8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1c53_dff1_71a8/request", "", "public", "Top Dataset, enh, smina.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1c53_dff1_71a8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1c53_dff1_71a8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1c53_dff1_71a8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1c53_dff1_71a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1c53_dff1_71a8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1c53_dff1_71a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc00_8d86_38dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc00_8d86_38dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc00_8d86_38dd/request", "", "public", "Top Dataset, enh, smina.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc00_8d86_38dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc00_8d86_38dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc00_8d86_38dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc00_8d86_38dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc00_8d86_38dd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dc00_8d86_38dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc17_e105_ce9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc17_e105_ce9f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc17_e105_ce9f/request", "", "public", "Top Dataset, enh, smina.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc17_e105_ce9f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc17_e105_ce9f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc17_e105_ce9f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc17_e105_ce9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc17_e105_ce9f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fc17_e105_ce9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e62_464b_b7ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e62_464b_b7ba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e62_464b_b7ba/request", "", "public", "Top Dataset, enh, smina.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e62_464b_b7ba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e62_464b_b7ba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e62_464b_b7ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e62_464b_b7ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e62_464b_b7ba&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0e62_464b_b7ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a167_3a01_a6c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a167_3a01_a6c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a167_3a01_a6c6/request", "", "public", "Top Dataset, enh, smina.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a167_3a01_a6c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a167_3a01_a6c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a167_3a01_a6c6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a167_3a01_a6c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a167_3a01_a6c6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a167_3a01_a6c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc60_5d5b_e128", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc60_5d5b_e128.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc60_5d5b_e128/request", "", "public", "Top Dataset, enh, smina.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc60_5d5b_e128_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc60_5d5b_e128_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc60_5d5b_e128/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc60_5d5b_e128.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc60_5d5b_e128&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fc60_5d5b_e128"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_036e_e243_5a4e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_036e_e243_5a4e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_036e_e243_5a4e/request", "", "public", "Top Dataset, enh, smina.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_036e_e243_5a4e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_036e_e243_5a4e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_036e_e243_5a4e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_036e_e243_5a4e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_036e_e243_5a4e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_036e_e243_5a4e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d752_c3fe_f8fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d752_c3fe_f8fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d752_c3fe_f8fe/request", "", "public", "Top Dataset, enh, smina.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d752_c3fe_f8fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d752_c3fe_f8fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d752_c3fe_f8fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d752_c3fe_f8fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d752_c3fe_f8fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d752_c3fe_f8fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_424d_c93a_ea3c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_424d_c93a_ea3c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_424d_c93a_ea3c/request", "", "public", "Top Dataset, enh, smina.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_424d_c93a_ea3c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_424d_c93a_ea3c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_424d_c93a_ea3c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_424d_c93a_ea3c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_424d_c93a_ea3c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_424d_c93a_ea3c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_69c4_3fdf_4755", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_69c4_3fdf_4755.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_69c4_3fdf_4755/request", "", "public", "Top Dataset, enh, smina.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_69c4_3fdf_4755_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_69c4_3fdf_4755_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_69c4_3fdf_4755/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_69c4_3fdf_4755.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_69c4_3fdf_4755&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_69c4_3fdf_4755"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ddc_3410_9a5c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ddc_3410_9a5c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ddc_3410_9a5c/request", "", "public", "Top Dataset, enh, smina.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ddc_3410_9a5c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ddc_3410_9a5c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ddc_3410_9a5c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ddc_3410_9a5c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ddc_3410_9a5c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7ddc_3410_9a5c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6b3_f42c_8dd9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6b3_f42c_8dd9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d6b3_f42c_8dd9/request", "", "public", "Top Dataset, enh, sst.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d6b3_f42c_8dd9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d6b3_f42c_8dd9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d6b3_f42c_8dd9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d6b3_f42c_8dd9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d6b3_f42c_8dd9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d6b3_f42c_8dd9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4513_22ce_53a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4513_22ce_53a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4513_22ce_53a7/request", "", "public", "Top Dataset, enh, sst.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4513_22ce_53a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4513_22ce_53a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4513_22ce_53a7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4513_22ce_53a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4513_22ce_53a7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4513_22ce_53a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be13_2c2c_483c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be13_2c2c_483c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_be13_2c2c_483c/request", "", "public", "Top Dataset, enh, sst.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_be13_2c2c_483c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_be13_2c2c_483c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_be13_2c2c_483c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_be13_2c2c_483c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_be13_2c2c_483c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_be13_2c2c_483c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d392_6100_38af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d392_6100_38af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d392_6100_38af/request", "", "public", "Top Dataset, enh, sst.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d392_6100_38af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d392_6100_38af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d392_6100_38af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d392_6100_38af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d392_6100_38af&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d392_6100_38af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a5d_df41_5686", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a5d_df41_5686.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a5d_df41_5686/request", "", "public", "Top Dataset, enh, sst.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a5d_df41_5686_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a5d_df41_5686_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a5d_df41_5686/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a5d_df41_5686.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a5d_df41_5686&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0a5d_df41_5686"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e64_7d6c_d806", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e64_7d6c_d806.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e64_7d6c_d806/request", "", "public", "Top Dataset, enh, sst.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e64_7d6c_d806_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e64_7d6c_d806_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e64_7d6c_d806/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e64_7d6c_d806.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e64_7d6c_d806&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0e64_7d6c_d806"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_108c_a540_a6da", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_108c_a540_a6da.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_108c_a540_a6da/request", "", "public", "Top Dataset, enh, sst.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_108c_a540_a6da_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_108c_a540_a6da_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_108c_a540_a6da/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_108c_a540_a6da.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_108c_a540_a6da&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_108c_a540_a6da"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e60_46f0_7014", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e60_46f0_7014.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e60_46f0_7014/request", "", "public", "Top Dataset, enh, sst.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e60_46f0_7014_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e60_46f0_7014_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e60_46f0_7014/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e60_46f0_7014.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e60_46f0_7014&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0e60_46f0_7014"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af1a_ac23_922f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af1a_ac23_922f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_af1a_ac23_922f/request", "", "public", "Top Dataset, enh, sst.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_af1a_ac23_922f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_af1a_ac23_922f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_af1a_ac23_922f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_af1a_ac23_922f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_af1a_ac23_922f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_af1a_ac23_922f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ded_99e3_71bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ded_99e3_71bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ded_99e3_71bd/request", "", "public", "Top Dataset, enh, sst.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ded_99e3_71bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ded_99e3_71bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ded_99e3_71bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ded_99e3_71bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ded_99e3_71bd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1ded_99e3_71bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45f3_2f39_a726", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45f3_2f39_a726.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_45f3_2f39_a726/request", "", "public", "Top Dataset, enh, sst.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_45f3_2f39_a726_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_45f3_2f39_a726_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_45f3_2f39_a726/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_45f3_2f39_a726.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_45f3_2f39_a726&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_45f3_2f39_a726"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb5a_e959_4bc2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb5a_e959_4bc2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb5a_e959_4bc2/request", "", "public", "Top Dataset, enh, sst.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb5a_e959_4bc2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb5a_e959_4bc2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb5a_e959_4bc2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb5a_e959_4bc2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb5a_e959_4bc2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cb5a_e959_4bc2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2358_135d_ab48", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2358_135d_ab48.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2358_135d_ab48/request", "", "public", "Top Dataset, enh, sst.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2358_135d_ab48_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2358_135d_ab48_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2358_135d_ab48/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2358_135d_ab48.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2358_135d_ab48&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2358_135d_ab48"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c1b_5128_86fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c1b_5128_86fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6c1b_5128_86fe/request", "", "public", "Top Dataset, enh, sst.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6c1b_5128_86fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6c1b_5128_86fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6c1b_5128_86fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6c1b_5128_86fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6c1b_5128_86fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6c1b_5128_86fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_964b_18f9_2034", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_964b_18f9_2034.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_964b_18f9_2034/request", "", "public", "Top Dataset, enh, sst.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_964b_18f9_2034_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_964b_18f9_2034_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_964b_18f9_2034/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_964b_18f9_2034.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_964b_18f9_2034&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_964b_18f9_2034"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3bca_17d3_894b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3bca_17d3_894b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3bca_17d3_894b/request", "", "public", "Top Dataset, enh, sst.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3bca_17d3_894b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3bca_17d3_894b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3bca_17d3_894b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3bca_17d3_894b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3bca_17d3_894b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3bca_17d3_894b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_046c_2980_7eaf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_046c_2980_7eaf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_046c_2980_7eaf/request", "", "public", "Top Dataset, enh, sst.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_046c_2980_7eaf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_046c_2980_7eaf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_046c_2980_7eaf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_046c_2980_7eaf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_046c_2980_7eaf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_046c_2980_7eaf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c4d6_4e39_0ce5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c4d6_4e39_0ce5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c4d6_4e39_0ce5/request", "", "public", "Top Dataset, enh, sst.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c4d6_4e39_0ce5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c4d6_4e39_0ce5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c4d6_4e39_0ce5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c4d6_4e39_0ce5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c4d6_4e39_0ce5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c4d6_4e39_0ce5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd60_7796_7331", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd60_7796_7331.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bd60_7796_7331/request", "", "public", "Top Dataset, enh, sst.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bd60_7796_7331_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bd60_7796_7331_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bd60_7796_7331/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bd60_7796_7331.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bd60_7796_7331&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bd60_7796_7331"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0161_7bed_e69d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0161_7bed_e69d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0161_7bed_e69d/request", "", "public", "Top Dataset, enh, sst.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0161_7bed_e69d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0161_7bed_e69d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0161_7bed_e69d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0161_7bed_e69d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0161_7bed_e69d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0161_7bed_e69d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_503d_aefd_364a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_503d_aefd_364a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_503d_aefd_364a/request", "", "public", "Top Dataset, enh, sst.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_503d_aefd_364a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_503d_aefd_364a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_503d_aefd_364a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_503d_aefd_364a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_503d_aefd_364a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_503d_aefd_364a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2c4_111d_634a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2c4_111d_634a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a2c4_111d_634a/request", "", "public", "Top Dataset, enh, sst.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a2c4_111d_634a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a2c4_111d_634a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a2c4_111d_634a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a2c4_111d_634a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a2c4_111d_634a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a2c4_111d_634a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_322a_5136_fa41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_322a_5136_fa41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_322a_5136_fa41/request", "", "public", "Top Dataset, enh, sst.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_322a_5136_fa41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_322a_5136_fa41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_322a_5136_fa41/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_322a_5136_fa41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_322a_5136_fa41&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_322a_5136_fa41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e55_b27e_3923", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e55_b27e_3923.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6e55_b27e_3923/request", "", "public", "Top Dataset, enh, sst.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6e55_b27e_3923_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6e55_b27e_3923_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6e55_b27e_3923/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6e55_b27e_3923.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6e55_b27e_3923&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6e55_b27e_3923"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9ef_8373_5c24", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9ef_8373_5c24.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a9ef_8373_5c24/request", "", "public", "Top Dataset, enh, sst.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9ef_8373_5c24_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9ef_8373_5c24_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9ef_8373_5c24/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9ef_8373_5c24.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9ef_8373_5c24&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a9ef_8373_5c24"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c3b_9a0f_f3b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c3b_9a0f_f3b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c3b_9a0f_f3b5/request", "", "public", "Top Dataset, enh, sst.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c3b_9a0f_f3b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c3b_9a0f_f3b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c3b_9a0f_f3b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c3b_9a0f_f3b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c3b_9a0f_f3b5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9c3b_9a0f_f3b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f10c_e9b7_bc8f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f10c_e9b7_bc8f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f10c_e9b7_bc8f/request", "", "public", "Top Dataset, enh, sst.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f10c_e9b7_bc8f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f10c_e9b7_bc8f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f10c_e9b7_bc8f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f10c_e9b7_bc8f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f10c_e9b7_bc8f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f10c_e9b7_bc8f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ef9_1636_416b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ef9_1636_416b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ef9_1636_416b/request", "", "public", "Top Dataset, enh, sst.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ef9_1636_416b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ef9_1636_416b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ef9_1636_416b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ef9_1636_416b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ef9_1636_416b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1ef9_1636_416b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_126e_736c_61c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_126e_736c_61c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_126e_736c_61c0/request", "", "public", "Top Dataset, enh, sst.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_126e_736c_61c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_126e_736c_61c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_126e_736c_61c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_126e_736c_61c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_126e_736c_61c0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_126e_736c_61c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87ec_ee38_9301", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87ec_ee38_9301.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_87ec_ee38_9301/request", "", "public", "Top Dataset, enh, sst.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_87ec_ee38_9301_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_87ec_ee38_9301_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_87ec_ee38_9301/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_87ec_ee38_9301.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_87ec_ee38_9301&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_87ec_ee38_9301"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a370_7d3b_c844", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a370_7d3b_c844.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a370_7d3b_c844/request", "", "public", "Top Dataset, enh, sst.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a370_7d3b_c844_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a370_7d3b_c844_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a370_7d3b_c844/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a370_7d3b_c844.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a370_7d3b_c844&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a370_7d3b_c844"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50b2_1fdb_5c5e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50b2_1fdb_5c5e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_50b2_1fdb_5c5e/request", "", "public", "Top Dataset, enh, sst.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_50b2_1fdb_5c5e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_50b2_1fdb_5c5e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50b2_1fdb_5c5e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50b2_1fdb_5c5e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50b2_1fdb_5c5e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_50b2_1fdb_5c5e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_928e_e4b9_900c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_928e_e4b9_900c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_928e_e4b9_900c/request", "", "public", "Top Dataset, enh, sst.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_928e_e4b9_900c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_928e_e4b9_900c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_928e_e4b9_900c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_928e_e4b9_900c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_928e_e4b9_900c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_928e_e4b9_900c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b0ab_053e_e9a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b0ab_053e_e9a8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b0ab_053e_e9a8/request", "", "public", "Top Dataset, enh, sst.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b0ab_053e_e9a8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b0ab_053e_e9a8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b0ab_053e_e9a8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b0ab_053e_e9a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b0ab_053e_e9a8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b0ab_053e_e9a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_189e_2b8c_6dbc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_189e_2b8c_6dbc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_189e_2b8c_6dbc/request", "", "public", "Top Dataset, enh, sst.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_189e_2b8c_6dbc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_189e_2b8c_6dbc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_189e_2b8c_6dbc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_189e_2b8c_6dbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_189e_2b8c_6dbc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_189e_2b8c_6dbc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_47f4_920f_6ceb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_47f4_920f_6ceb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_47f4_920f_6ceb/request", "", "public", "Top Dataset, enh, sst.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_47f4_920f_6ceb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_47f4_920f_6ceb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_47f4_920f_6ceb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_47f4_920f_6ceb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_47f4_920f_6ceb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_47f4_920f_6ceb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_74df_a8de_6d32", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_74df_a8de_6d32.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_74df_a8de_6d32/request", "", "public", "Top Dataset, enh, sst.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_74df_a8de_6d32_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_74df_a8de_6d32_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_74df_a8de_6d32/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_74df_a8de_6d32.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_74df_a8de_6d32&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_74df_a8de_6d32"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ff8_7fa4_e1dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ff8_7fa4_e1dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9ff8_7fa4_e1dd/request", "", "public", "Top Dataset, enh, sst.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9ff8_7fa4_e1dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9ff8_7fa4_e1dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9ff8_7fa4_e1dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9ff8_7fa4_e1dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9ff8_7fa4_e1dd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9ff8_7fa4_e1dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e747_f61c_3eb4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e747_f61c_3eb4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e747_f61c_3eb4/request", "", "public", "Top Dataset, enh, sst.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e747_f61c_3eb4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e747_f61c_3eb4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e747_f61c_3eb4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e747_f61c_3eb4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e747_f61c_3eb4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e747_f61c_3eb4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_157d_cf1c_037e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_157d_cf1c_037e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_157d_cf1c_037e/request", "", "public", "Top Dataset, enh, sst.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_157d_cf1c_037e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_157d_cf1c_037e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_157d_cf1c_037e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_157d_cf1c_037e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_157d_cf1c_037e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_157d_cf1c_037e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d358_50b8_41c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d358_50b8_41c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d358_50b8_41c0/request", "", "public", "Top Dataset, enh, sst.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d358_50b8_41c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d358_50b8_41c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d358_50b8_41c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d358_50b8_41c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d358_50b8_41c0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d358_50b8_41c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dab5_304b_4d0c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dab5_304b_4d0c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dab5_304b_4d0c/request", "", "public", "Top Dataset, enh, sst.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dab5_304b_4d0c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dab5_304b_4d0c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dab5_304b_4d0c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dab5_304b_4d0c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dab5_304b_4d0c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dab5_304b_4d0c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0c7_3a2a_ed6c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0c7_3a2a_ed6c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e0c7_3a2a_ed6c/request", "", "public", "Top Dataset, enh, sst.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e0c7_3a2a_ed6c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e0c7_3a2a_ed6c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e0c7_3a2a_ed6c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e0c7_3a2a_ed6c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e0c7_3a2a_ed6c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e0c7_3a2a_ed6c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e6f_eebb_2deb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e6f_eebb_2deb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7e6f_eebb_2deb/request", "", "public", "Top Dataset, enh, sst.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7e6f_eebb_2deb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7e6f_eebb_2deb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e6f_eebb_2deb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e6f_eebb_2deb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e6f_eebb_2deb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7e6f_eebb_2deb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b0e0_22d5_7dc4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b0e0_22d5_7dc4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b0e0_22d5_7dc4/request", "", "public", "Top Dataset, enh, sst.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b0e0_22d5_7dc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b0e0_22d5_7dc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b0e0_22d5_7dc4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b0e0_22d5_7dc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b0e0_22d5_7dc4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b0e0_22d5_7dc4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_551f_cee5_c106", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_551f_cee5_c106.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_551f_cee5_c106/request", "", "public", "Top Dataset, enh, sst.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_551f_cee5_c106_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_551f_cee5_c106_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_551f_cee5_c106/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_551f_cee5_c106.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_551f_cee5_c106&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_551f_cee5_c106"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5d2_3b06_c4ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5d2_3b06_c4ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5d2_3b06_c4ec/request", "", "public", "Top Dataset, enh, sst.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5d2_3b06_c4ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5d2_3b06_c4ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5d2_3b06_c4ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5d2_3b06_c4ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5d2_3b06_c4ec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c5d2_3b06_c4ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9e3_aa64_db39", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9e3_aa64_db39.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e9e3_aa64_db39/request", "", "public", "Top Dataset, enh, sst.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e9e3_aa64_db39_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e9e3_aa64_db39_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e9e3_aa64_db39/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e9e3_aa64_db39.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e9e3_aa64_db39&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e9e3_aa64_db39"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0c9_ba90_ef60", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0c9_ba90_ef60.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c0c9_ba90_ef60/request", "", "public", "Top Dataset, enh, sst.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c0c9_ba90_ef60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c0c9_ba90_ef60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c0c9_ba90_ef60/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c0c9_ba90_ef60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c0c9_ba90_ef60&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c0c9_ba90_ef60"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0860_b27c_f34c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0860_b27c_f34c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0860_b27c_f34c/request", "", "public", "Top Dataset, enh, sst.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0860_b27c_f34c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0860_b27c_f34c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0860_b27c_f34c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0860_b27c_f34c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0860_b27c_f34c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0860_b27c_f34c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_11ef_2a11_e62c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_11ef_2a11_e62c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_11ef_2a11_e62c/request", "", "public", "Top Dataset, enh, sst.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_11ef_2a11_e62c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_11ef_2a11_e62c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_11ef_2a11_e62c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_11ef_2a11_e62c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_11ef_2a11_e62c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_11ef_2a11_e62c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f8d_6fea_085a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f8d_6fea_085a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6f8d_6fea_085a/request", "", "public", "Top Dataset, enh, sst.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6f8d_6fea_085a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6f8d_6fea_085a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6f8d_6fea_085a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6f8d_6fea_085a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6f8d_6fea_085a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6f8d_6fea_085a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f44_ec7f_4d2b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f44_ec7f_4d2b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f44_ec7f_4d2b/request", "", "public", "Top Dataset, enh, sst.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f44_ec7f_4d2b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f44_ec7f_4d2b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f44_ec7f_4d2b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f44_ec7f_4d2b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f44_ec7f_4d2b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2f44_ec7f_4d2b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f316_03e6_c8ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f316_03e6_c8ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f316_03e6_c8ac/request", "", "public", "Top Dataset, enh, sst.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f316_03e6_c8ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f316_03e6_c8ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f316_03e6_c8ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f316_03e6_c8ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f316_03e6_c8ac&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f316_03e6_c8ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4bad_5f2f_a91c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4bad_5f2f_a91c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4bad_5f2f_a91c/request", "", "public", "Top Dataset, enh, sst.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4bad_5f2f_a91c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4bad_5f2f_a91c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4bad_5f2f_a91c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4bad_5f2f_a91c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4bad_5f2f_a91c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4bad_5f2f_a91c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ebc_f25d_2bd0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ebc_f25d_2bd0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ebc_f25d_2bd0/request", "", "public", "Top Dataset, enh, sst.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ebc_f25d_2bd0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ebc_f25d_2bd0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ebc_f25d_2bd0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ebc_f25d_2bd0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ebc_f25d_2bd0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1ebc_f25d_2bd0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38dc_8007_954c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38dc_8007_954c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_38dc_8007_954c/request", "", "public", "Top Dataset, enh, sst.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_38dc_8007_954c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_38dc_8007_954c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_38dc_8007_954c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_38dc_8007_954c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_38dc_8007_954c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_38dc_8007_954c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_55ff_8a3c_7bda", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_55ff_8a3c_7bda.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_55ff_8a3c_7bda/request", "", "public", "Top Dataset, enh, sst.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_55ff_8a3c_7bda_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_55ff_8a3c_7bda_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_55ff_8a3c_7bda/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_55ff_8a3c_7bda.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_55ff_8a3c_7bda&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_55ff_8a3c_7bda"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d17_8116_98af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d17_8116_98af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0d17_8116_98af/request", "", "public", "Top Dataset, enh, sst.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0d17_8116_98af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0d17_8116_98af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0d17_8116_98af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0d17_8116_98af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0d17_8116_98af&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0d17_8116_98af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f79_bd23_5682", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f79_bd23_5682.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f79_bd23_5682/request", "", "public", "Top Dataset, enh, sst.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f79_bd23_5682_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f79_bd23_5682_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f79_bd23_5682/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f79_bd23_5682.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f79_bd23_5682&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7f79_bd23_5682"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4466_35cd_b208", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4466_35cd_b208.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4466_35cd_b208/request", "", "public", "Top Dataset, enh, uairt.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4466_35cd_b208_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4466_35cd_b208_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4466_35cd_b208/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4466_35cd_b208.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4466_35cd_b208&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4466_35cd_b208"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_838c_bdc0_60e7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_838c_bdc0_60e7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_838c_bdc0_60e7/request", "", "public", "Top Dataset, enh, uairt.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_838c_bdc0_60e7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_838c_bdc0_60e7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_838c_bdc0_60e7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_838c_bdc0_60e7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_838c_bdc0_60e7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_838c_bdc0_60e7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d439_e725_2e8e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d439_e725_2e8e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d439_e725_2e8e/request", "", "public", "Top Dataset, enh, uairt.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d439_e725_2e8e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d439_e725_2e8e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d439_e725_2e8e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d439_e725_2e8e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d439_e725_2e8e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d439_e725_2e8e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6b9_5af6_13eb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6b9_5af6_13eb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f6b9_5af6_13eb/request", "", "public", "Top Dataset, enh, uairt.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f6b9_5af6_13eb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f6b9_5af6_13eb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f6b9_5af6_13eb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f6b9_5af6_13eb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f6b9_5af6_13eb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f6b9_5af6_13eb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1be0_c752_bf4c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1be0_c752_bf4c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1be0_c752_bf4c/request", "", "public", "Top Dataset, enh, uairt.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1be0_c752_bf4c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1be0_c752_bf4c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1be0_c752_bf4c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1be0_c752_bf4c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1be0_c752_bf4c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1be0_c752_bf4c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_23b9_f0aa_d26e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_23b9_f0aa_d26e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_23b9_f0aa_d26e/request", "", "public", "Top Dataset, enh, uairt.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_23b9_f0aa_d26e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_23b9_f0aa_d26e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_23b9_f0aa_d26e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_23b9_f0aa_d26e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_23b9_f0aa_d26e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_23b9_f0aa_d26e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95f1_12d2_74a5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95f1_12d2_74a5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_95f1_12d2_74a5/request", "", "public", "Top Dataset, enh, uairt.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_95f1_12d2_74a5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_95f1_12d2_74a5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_95f1_12d2_74a5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_95f1_12d2_74a5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_95f1_12d2_74a5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_95f1_12d2_74a5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f3c_b4ca_a4ed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f3c_b4ca_a4ed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f3c_b4ca_a4ed/request", "", "public", "Top Dataset, enh, uairt.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f3c_b4ca_a4ed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f3c_b4ca_a4ed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f3c_b4ca_a4ed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f3c_b4ca_a4ed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f3c_b4ca_a4ed&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8f3c_b4ca_a4ed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f84d_3218_4382", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f84d_3218_4382.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f84d_3218_4382/request", "", "public", "Top Dataset, enh, uairt.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f84d_3218_4382_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f84d_3218_4382_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f84d_3218_4382/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f84d_3218_4382.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f84d_3218_4382&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f84d_3218_4382"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_318a_f78c_b091", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_318a_f78c_b091.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_318a_f78c_b091/request", "", "public", "Top Dataset, enh, uairt.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_318a_f78c_b091_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_318a_f78c_b091_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_318a_f78c_b091/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_318a_f78c_b091.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_318a_f78c_b091&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_318a_f78c_b091"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_46db_5ee5_6031", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_46db_5ee5_6031.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_46db_5ee5_6031/request", "", "public", "Top Dataset, enh, uairt.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_46db_5ee5_6031_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_46db_5ee5_6031_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_46db_5ee5_6031/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_46db_5ee5_6031.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_46db_5ee5_6031&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_46db_5ee5_6031"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_624a_319c_09ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_624a_319c_09ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_624a_319c_09ef/request", "", "public", "Top Dataset, enh, uairt.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_624a_319c_09ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_624a_319c_09ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_624a_319c_09ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_624a_319c_09ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_624a_319c_09ef&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_624a_319c_09ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8be8_e221_a460", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8be8_e221_a460.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8be8_e221_a460/request", "", "public", "Top Dataset, enh, uairt.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8be8_e221_a460_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8be8_e221_a460_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8be8_e221_a460/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8be8_e221_a460.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8be8_e221_a460&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8be8_e221_a460"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c03_9bbe_fd42", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c03_9bbe_fd42.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c03_9bbe_fd42/request", "", "public", "Top Dataset, enh, uairt.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c03_9bbe_fd42_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c03_9bbe_fd42_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c03_9bbe_fd42/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c03_9bbe_fd42.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c03_9bbe_fd42&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9c03_9bbe_fd42"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d395_9afc_feec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d395_9afc_feec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d395_9afc_feec/request", "", "public", "Top Dataset, enh, uairt.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d395_9afc_feec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d395_9afc_feec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d395_9afc_feec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d395_9afc_feec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d395_9afc_feec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d395_9afc_feec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0605_bada_2bf1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0605_bada_2bf1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0605_bada_2bf1/request", "", "public", "Top Dataset, enh, uairt.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0605_bada_2bf1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0605_bada_2bf1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0605_bada_2bf1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0605_bada_2bf1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0605_bada_2bf1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0605_bada_2bf1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ee4_e14e_c3a3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ee4_e14e_c3a3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ee4_e14e_c3a3/request", "", "public", "Top Dataset, enh, uairt.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ee4_e14e_c3a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ee4_e14e_c3a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ee4_e14e_c3a3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ee4_e14e_c3a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ee4_e14e_c3a3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1ee4_e14e_c3a3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd84_0b84_c95a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd84_0b84_c95a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fd84_0b84_c95a/request", "", "public", "Top Dataset, enh, uairt.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fd84_0b84_c95a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fd84_0b84_c95a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fd84_0b84_c95a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fd84_0b84_c95a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fd84_0b84_c95a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fd84_0b84_c95a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43de_6064_3efa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43de_6064_3efa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_43de_6064_3efa/request", "", "public", "Top Dataset, enh, uairt.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_43de_6064_3efa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_43de_6064_3efa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_43de_6064_3efa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_43de_6064_3efa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_43de_6064_3efa&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_43de_6064_3efa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3951_8962_13c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3951_8962_13c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3951_8962_13c0/request", "", "public", "Top Dataset, enh, uairt.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3951_8962_13c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3951_8962_13c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3951_8962_13c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3951_8962_13c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3951_8962_13c0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3951_8962_13c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddd7_497a_2dee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddd7_497a_2dee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ddd7_497a_2dee/request", "", "public", "Top Dataset, enh, uairt.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ddd7_497a_2dee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ddd7_497a_2dee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ddd7_497a_2dee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ddd7_497a_2dee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ddd7_497a_2dee&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ddd7_497a_2dee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_819e_cfe9_a8f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_819e_cfe9_a8f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_819e_cfe9_a8f2/request", "", "public", "Top Dataset, enh, uairt.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_819e_cfe9_a8f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_819e_cfe9_a8f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_819e_cfe9_a8f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_819e_cfe9_a8f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_819e_cfe9_a8f2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_819e_cfe9_a8f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cee_d28d_bb78", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cee_d28d_bb78.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9cee_d28d_bb78/request", "", "public", "Top Dataset, enh, uairt.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9cee_d28d_bb78_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9cee_d28d_bb78_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9cee_d28d_bb78/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9cee_d28d_bb78.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9cee_d28d_bb78&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9cee_d28d_bb78"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c888_0abd_c110", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c888_0abd_c110.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c888_0abd_c110/request", "", "public", "Top Dataset, enh, uairt.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c888_0abd_c110_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c888_0abd_c110_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c888_0abd_c110/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c888_0abd_c110.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c888_0abd_c110&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c888_0abd_c110"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_885c_99ca_590f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_885c_99ca_590f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_885c_99ca_590f/request", "", "public", "Top Dataset, enh, uairt.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_885c_99ca_590f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_885c_99ca_590f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_885c_99ca_590f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_885c_99ca_590f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_885c_99ca_590f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_885c_99ca_590f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0781_f0b5_2e66", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0781_f0b5_2e66.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0781_f0b5_2e66/request", "", "public", "Top Dataset, enh, uairt.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0781_f0b5_2e66_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0781_f0b5_2e66_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0781_f0b5_2e66/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0781_f0b5_2e66.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0781_f0b5_2e66&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0781_f0b5_2e66"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c9d_6b3e_0583", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c9d_6b3e_0583.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4c9d_6b3e_0583/request", "", "public", "Top Dataset, enh, uairt.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4c9d_6b3e_0583_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4c9d_6b3e_0583_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c9d_6b3e_0583/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c9d_6b3e_0583.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c9d_6b3e_0583&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4c9d_6b3e_0583"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e1ab_cf49_e696", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e1ab_cf49_e696.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e1ab_cf49_e696/request", "", "public", "Top Dataset, enh, uairt.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e1ab_cf49_e696_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e1ab_cf49_e696_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e1ab_cf49_e696/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e1ab_cf49_e696.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e1ab_cf49_e696&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e1ab_cf49_e696"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0095_1367_7131", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0095_1367_7131.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0095_1367_7131/request", "", "public", "Top Dataset, enh, uairt.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0095_1367_7131_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0095_1367_7131_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0095_1367_7131/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0095_1367_7131.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0095_1367_7131&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0095_1367_7131"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc23_24bf_f5d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc23_24bf_f5d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bc23_24bf_f5d3/request", "", "public", "Top Dataset, enh, uairt.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bc23_24bf_f5d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bc23_24bf_f5d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bc23_24bf_f5d3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bc23_24bf_f5d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bc23_24bf_f5d3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bc23_24bf_f5d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2be4_8a8f_50d6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2be4_8a8f_50d6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2be4_8a8f_50d6/request", "", "public", "Top Dataset, enh, uairt.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2be4_8a8f_50d6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2be4_8a8f_50d6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2be4_8a8f_50d6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2be4_8a8f_50d6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2be4_8a8f_50d6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2be4_8a8f_50d6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3587_29d9_80f4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3587_29d9_80f4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3587_29d9_80f4/request", "", "public", "Top Dataset, enh, uairt.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3587_29d9_80f4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3587_29d9_80f4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3587_29d9_80f4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3587_29d9_80f4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3587_29d9_80f4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3587_29d9_80f4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3dcd_63e7_e0ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3dcd_63e7_e0ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3dcd_63e7_e0ab/request", "", "public", "Top Dataset, enh, uairt.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3dcd_63e7_e0ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3dcd_63e7_e0ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3dcd_63e7_e0ab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3dcd_63e7_e0ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3dcd_63e7_e0ab&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3dcd_63e7_e0ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9fe7_c265_11fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9fe7_c265_11fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9fe7_c265_11fa/request", "", "public", "Top Dataset, enh, uairt.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9fe7_c265_11fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9fe7_c265_11fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9fe7_c265_11fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9fe7_c265_11fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9fe7_c265_11fa&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9fe7_c265_11fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c9e_90f1_534c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c9e_90f1_534c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2c9e_90f1_534c/request", "", "public", "Top Dataset, enh, uairt.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2c9e_90f1_534c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2c9e_90f1_534c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2c9e_90f1_534c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2c9e_90f1_534c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2c9e_90f1_534c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2c9e_90f1_534c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d76_d5cb_e53c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d76_d5cb_e53c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d76_d5cb_e53c/request", "", "public", "Top Dataset, enh, uairt.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d76_d5cb_e53c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d76_d5cb_e53c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d76_d5cb_e53c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d76_d5cb_e53c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d76_d5cb_e53c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4d76_d5cb_e53c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_67a2_478d_e360", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_67a2_478d_e360.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_67a2_478d_e360/request", "", "public", "Top Dataset, enh, uairt.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_67a2_478d_e360_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_67a2_478d_e360_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_67a2_478d_e360/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_67a2_478d_e360.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_67a2_478d_e360&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_67a2_478d_e360"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8eb6_730d_d676", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8eb6_730d_d676.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8eb6_730d_d676/request", "", "public", "Top Dataset, enh, uairt.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8eb6_730d_d676_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8eb6_730d_d676_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8eb6_730d_d676/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8eb6_730d_d676.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8eb6_730d_d676&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8eb6_730d_d676"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec79_ecab_daae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec79_ecab_daae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ec79_ecab_daae/request", "", "public", "Top Dataset, enh, uairt.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ec79_ecab_daae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ec79_ecab_daae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ec79_ecab_daae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ec79_ecab_daae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ec79_ecab_daae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ec79_ecab_daae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b62c_d238_3d61", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b62c_d238_3d61.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b62c_d238_3d61/request", "", "public", "Top Dataset, enh, uairt.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b62c_d238_3d61_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b62c_d238_3d61_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b62c_d238_3d61/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b62c_d238_3d61.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b62c_d238_3d61&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b62c_d238_3d61"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43fd_f32e_5236", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43fd_f32e_5236.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_43fd_f32e_5236/request", "", "public", "Top Dataset, enh, uairt.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_43fd_f32e_5236_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_43fd_f32e_5236_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_43fd_f32e_5236/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_43fd_f32e_5236.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_43fd_f32e_5236&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_43fd_f32e_5236"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb4b_047a_13f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb4b_047a_13f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb4b_047a_13f5/request", "", "public", "Top Dataset, enh, uairt.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb4b_047a_13f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb4b_047a_13f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb4b_047a_13f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb4b_047a_13f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb4b_047a_13f5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fb4b_047a_13f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96b3_0ea7_67e7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96b3_0ea7_67e7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_96b3_0ea7_67e7/request", "", "public", "Top Dataset, enh, uairt.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_96b3_0ea7_67e7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_96b3_0ea7_67e7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_96b3_0ea7_67e7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_96b3_0ea7_67e7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_96b3_0ea7_67e7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_96b3_0ea7_67e7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ef2_54cf_c1d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ef2_54cf_c1d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ef2_54cf_c1d7/request", "", "public", "Top Dataset, enh, uairt.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ef2_54cf_c1d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ef2_54cf_c1d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ef2_54cf_c1d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ef2_54cf_c1d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ef2_54cf_c1d7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5ef2_54cf_c1d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c6b7_5f5d_ff46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c6b7_5f5d_ff46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c6b7_5f5d_ff46/request", "", "public", "Top Dataset, enh, uairt.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c6b7_5f5d_ff46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c6b7_5f5d_ff46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c6b7_5f5d_ff46/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c6b7_5f5d_ff46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c6b7_5f5d_ff46&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c6b7_5f5d_ff46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5f8_34c9_7b3f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5f8_34c9_7b3f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5f8_34c9_7b3f/request", "", "public", "Top Dataset, enh, uairt.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5f8_34c9_7b3f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5f8_34c9_7b3f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5f8_34c9_7b3f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5f8_34c9_7b3f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5f8_34c9_7b3f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c5f8_34c9_7b3f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2468_a238_67b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2468_a238_67b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2468_a238_67b8/request", "", "public", "Top Dataset, enh, uairt.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2468_a238_67b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2468_a238_67b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2468_a238_67b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2468_a238_67b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2468_a238_67b8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2468_a238_67b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3db7_1ec3_8a88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3db7_1ec3_8a88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3db7_1ec3_8a88/request", "", "public", "Top Dataset, enh, uairt.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3db7_1ec3_8a88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3db7_1ec3_8a88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3db7_1ec3_8a88/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3db7_1ec3_8a88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3db7_1ec3_8a88&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3db7_1ec3_8a88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e3c4_995b_8676", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e3c4_995b_8676.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e3c4_995b_8676/request", "", "public", "Top Dataset, enh, uairt.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e3c4_995b_8676_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e3c4_995b_8676_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e3c4_995b_8676/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e3c4_995b_8676.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e3c4_995b_8676&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e3c4_995b_8676"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5001_2b13_906c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5001_2b13_906c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5001_2b13_906c/request", "", "public", "Top Dataset, enh, uairt.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5001_2b13_906c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5001_2b13_906c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5001_2b13_906c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5001_2b13_906c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5001_2b13_906c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5001_2b13_906c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c34_57e6_950f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c34_57e6_950f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c34_57e6_950f/request", "", "public", "Top Dataset, enh, uairt.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c34_57e6_950f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c34_57e6_950f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c34_57e6_950f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c34_57e6_950f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c34_57e6_950f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9c34_57e6_950f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71ae_b785_2d51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71ae_b785_2d51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_71ae_b785_2d51/request", "", "public", "Top Dataset, enh, uairt.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_71ae_b785_2d51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_71ae_b785_2d51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_71ae_b785_2d51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_71ae_b785_2d51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_71ae_b785_2d51&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_71ae_b785_2d51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e49_3fb7_0665", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e49_3fb7_0665.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2e49_3fb7_0665/request", "", "public", "Top Dataset, enh, uairt.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2e49_3fb7_0665_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2e49_3fb7_0665_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2e49_3fb7_0665/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2e49_3fb7_0665.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2e49_3fb7_0665&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2e49_3fb7_0665"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f601_7080_1ee5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f601_7080_1ee5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f601_7080_1ee5/request", "", "public", "Top Dataset, enh, uairt.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f601_7080_1ee5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f601_7080_1ee5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f601_7080_1ee5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f601_7080_1ee5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f601_7080_1ee5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f601_7080_1ee5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c10_5c7d_1ee7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c10_5c7d_1ee7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7c10_5c7d_1ee7/request", "", "public", "Top Dataset, enh, uairt.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7c10_5c7d_1ee7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7c10_5c7d_1ee7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7c10_5c7d_1ee7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7c10_5c7d_1ee7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7c10_5c7d_1ee7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7c10_5c7d_1ee7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80ef_ed02_bb11", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80ef_ed02_bb11.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_80ef_ed02_bb11/request", "", "public", "Top Dataset, enh, uairt.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_80ef_ed02_bb11_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_80ef_ed02_bb11_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_80ef_ed02_bb11/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_80ef_ed02_bb11.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_80ef_ed02_bb11&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_80ef_ed02_bb11"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7f7_91c9_e0b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7f7_91c9_e0b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d7f7_91c9_e0b3/request", "", "public", "Top Dataset, enh, uairt.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d7f7_91c9_e0b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d7f7_91c9_e0b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d7f7_91c9_e0b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d7f7_91c9_e0b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d7f7_91c9_e0b3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d7f7_91c9_e0b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f907_98bf_1f5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f907_98bf_1f5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f907_98bf_1f5f/request", "", "public", "Top Dataset, enh, uairt.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f907_98bf_1f5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f907_98bf_1f5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f907_98bf_1f5f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f907_98bf_1f5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f907_98bf_1f5f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f907_98bf_1f5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_433e_286f_6c04", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_433e_286f_6c04.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_433e_286f_6c04/request", "", "public", "Top Dataset, enh, uairt.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_433e_286f_6c04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_433e_286f_6c04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_433e_286f_6c04/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_433e_286f_6c04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_433e_286f_6c04&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_433e_286f_6c04"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fb8_a7c6_56a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fb8_a7c6_56a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4fb8_a7c6_56a0/request", "", "public", "Top Dataset, enh, uairt.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4fb8_a7c6_56a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4fb8_a7c6_56a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4fb8_a7c6_56a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4fb8_a7c6_56a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4fb8_a7c6_56a0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4fb8_a7c6_56a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0d2_fdff_357b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0d2_fdff_357b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c0d2_fdff_357b/request", "", "public", "Top Dataset, enh, uairt.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c0d2_fdff_357b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c0d2_fdff_357b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c0d2_fdff_357b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c0d2_fdff_357b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c0d2_fdff_357b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c0d2_fdff_357b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e087_38d9_1f68", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e087_38d9_1f68.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e087_38d9_1f68/request", "", "public", "Top Dataset, enh, uairt.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e087_38d9_1f68_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e087_38d9_1f68_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e087_38d9_1f68/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e087_38d9_1f68.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e087_38d9_1f68&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e087_38d9_1f68"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe1e_875a_77d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe1e_875a_77d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fe1e_875a_77d3/request", "", "public", "Top Dataset, enh, uairt.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fe1e_875a_77d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fe1e_875a_77d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fe1e_875a_77d3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fe1e_875a_77d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fe1e_875a_77d3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fe1e_875a_77d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6eb_e3f4_0581", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6eb_e3f4_0581.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e6eb_e3f4_0581/request", "", "public", "Top Dataset, enh, ulflx.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e6eb_e3f4_0581_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e6eb_e3f4_0581_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e6eb_e3f4_0581/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e6eb_e3f4_0581.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e6eb_e3f4_0581&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e6eb_e3f4_0581"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6937_561b_5d96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6937_561b_5d96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6937_561b_5d96/request", "", "public", "Top Dataset, enh, ulflx.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6937_561b_5d96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6937_561b_5d96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6937_561b_5d96/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6937_561b_5d96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6937_561b_5d96&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6937_561b_5d96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b61f_7182_5ce9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b61f_7182_5ce9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b61f_7182_5ce9/request", "", "public", "Top Dataset, enh, ulflx.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b61f_7182_5ce9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b61f_7182_5ce9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b61f_7182_5ce9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b61f_7182_5ce9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b61f_7182_5ce9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b61f_7182_5ce9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7828_1758_b447", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7828_1758_b447.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7828_1758_b447/request", "", "public", "Top Dataset, enh, ulflx.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7828_1758_b447_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7828_1758_b447_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7828_1758_b447/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7828_1758_b447.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7828_1758_b447&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7828_1758_b447"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b46_7ebf_8a2c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b46_7ebf_8a2c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2b46_7ebf_8a2c/request", "", "public", "Top Dataset, enh, ulflx.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2b46_7ebf_8a2c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2b46_7ebf_8a2c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2b46_7ebf_8a2c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2b46_7ebf_8a2c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2b46_7ebf_8a2c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2b46_7ebf_8a2c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c688_bade_47f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c688_bade_47f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c688_bade_47f1/request", "", "public", "Top Dataset, enh, ulflx.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c688_bade_47f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c688_bade_47f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c688_bade_47f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c688_bade_47f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c688_bade_47f1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c688_bade_47f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f86_53bb_9e63", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f86_53bb_9e63.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f86_53bb_9e63/request", "", "public", "Top Dataset, enh, ulflx.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f86_53bb_9e63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f86_53bb_9e63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f86_53bb_9e63/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f86_53bb_9e63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f86_53bb_9e63&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2f86_53bb_9e63"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58a6_b0fe_f3e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58a6_b0fe_f3e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_58a6_b0fe_f3e0/request", "", "public", "Top Dataset, enh, ulflx.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_58a6_b0fe_f3e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_58a6_b0fe_f3e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_58a6_b0fe_f3e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_58a6_b0fe_f3e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_58a6_b0fe_f3e0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_58a6_b0fe_f3e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec72_3f6a_cf3f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec72_3f6a_cf3f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ec72_3f6a_cf3f/request", "", "public", "Top Dataset, enh, ulflx.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ec72_3f6a_cf3f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ec72_3f6a_cf3f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ec72_3f6a_cf3f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ec72_3f6a_cf3f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ec72_3f6a_cf3f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ec72_3f6a_cf3f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_adce_a964_770b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_adce_a964_770b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_adce_a964_770b/request", "", "public", "Top Dataset, enh, ulflx.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_adce_a964_770b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_adce_a964_770b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_adce_a964_770b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_adce_a964_770b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_adce_a964_770b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_adce_a964_770b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e64_3f39_51ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e64_3f39_51ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e64_3f39_51ea/request", "", "public", "Top Dataset, enh, ulflx.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e64_3f39_51ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e64_3f39_51ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e64_3f39_51ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e64_3f39_51ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e64_3f39_51ea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0e64_3f39_51ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c05c_2b68_a60a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c05c_2b68_a60a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c05c_2b68_a60a/request", "", "public", "Top Dataset, enh, ulflx.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c05c_2b68_a60a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c05c_2b68_a60a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c05c_2b68_a60a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c05c_2b68_a60a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c05c_2b68_a60a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c05c_2b68_a60a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c362_ef9e_8610", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c362_ef9e_8610.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c362_ef9e_8610/request", "", "public", "Top Dataset, enh, ulflx.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c362_ef9e_8610_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c362_ef9e_8610_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c362_ef9e_8610/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c362_ef9e_8610.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c362_ef9e_8610&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c362_ef9e_8610"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7582_3522_1c48", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7582_3522_1c48.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7582_3522_1c48/request", "", "public", "Top Dataset, enh, ulflx.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7582_3522_1c48_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7582_3522_1c48_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7582_3522_1c48/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7582_3522_1c48.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7582_3522_1c48&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7582_3522_1c48"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c109_c532_9529", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c109_c532_9529.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c109_c532_9529/request", "", "public", "Top Dataset, enh, ulflx.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c109_c532_9529_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c109_c532_9529_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c109_c532_9529/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c109_c532_9529.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c109_c532_9529&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c109_c532_9529"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1da2_7f5e_f980", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1da2_7f5e_f980.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1da2_7f5e_f980/request", "", "public", "Top Dataset, enh, ulflx.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1da2_7f5e_f980_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1da2_7f5e_f980_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1da2_7f5e_f980/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1da2_7f5e_f980.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1da2_7f5e_f980&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1da2_7f5e_f980"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3aa3_7a27_a873", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3aa3_7a27_a873.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3aa3_7a27_a873/request", "", "public", "Top Dataset, enh, ulflx.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3aa3_7a27_a873_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3aa3_7a27_a873_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3aa3_7a27_a873/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3aa3_7a27_a873.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3aa3_7a27_a873&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3aa3_7a27_a873"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc54_f7d7_df16", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc54_f7d7_df16.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bc54_f7d7_df16/request", "", "public", "Top Dataset, enh, ulflx.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bc54_f7d7_df16_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bc54_f7d7_df16_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bc54_f7d7_df16/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bc54_f7d7_df16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bc54_f7d7_df16&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bc54_f7d7_df16"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aac5_c6a2_3b20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aac5_c6a2_3b20.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aac5_c6a2_3b20/request", "", "public", "Top Dataset, enh, ulflx.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aac5_c6a2_3b20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aac5_c6a2_3b20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aac5_c6a2_3b20/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aac5_c6a2_3b20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aac5_c6a2_3b20&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_aac5_c6a2_3b20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2711_957d_9774", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2711_957d_9774.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2711_957d_9774/request", "", "public", "Top Dataset, enh, ulflx.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2711_957d_9774_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2711_957d_9774_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2711_957d_9774/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2711_957d_9774.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2711_957d_9774&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2711_957d_9774"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59d9_8c13_f3a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59d9_8c13_f3a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_59d9_8c13_f3a1/request", "", "public", "Top Dataset, enh, ulflx.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_59d9_8c13_f3a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_59d9_8c13_f3a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_59d9_8c13_f3a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_59d9_8c13_f3a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_59d9_8c13_f3a1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_59d9_8c13_f3a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0fd3_31d1_6a2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0fd3_31d1_6a2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0fd3_31d1_6a2d/request", "", "public", "Top Dataset, enh, ulflx.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0fd3_31d1_6a2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0fd3_31d1_6a2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0fd3_31d1_6a2d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0fd3_31d1_6a2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0fd3_31d1_6a2d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0fd3_31d1_6a2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b3b_818e_9bf7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b3b_818e_9bf7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4b3b_818e_9bf7/request", "", "public", "Top Dataset, enh, ulflx.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4b3b_818e_9bf7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4b3b_818e_9bf7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4b3b_818e_9bf7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4b3b_818e_9bf7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4b3b_818e_9bf7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4b3b_818e_9bf7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc37_073b_4c1c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc37_073b_4c1c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc37_073b_4c1c/request", "", "public", "Top Dataset, enh, ulflx.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc37_073b_4c1c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc37_073b_4c1c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc37_073b_4c1c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc37_073b_4c1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc37_073b_4c1c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fc37_073b_4c1c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_42cf_5eee_d427", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_42cf_5eee_d427.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_42cf_5eee_d427/request", "", "public", "Top Dataset, enh, ulflx.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_42cf_5eee_d427_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_42cf_5eee_d427_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_42cf_5eee_d427/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_42cf_5eee_d427.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_42cf_5eee_d427&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_42cf_5eee_d427"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37e6_fdd4_d342", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37e6_fdd4_d342.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_37e6_fdd4_d342/request", "", "public", "Top Dataset, enh, ulflx.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_37e6_fdd4_d342_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_37e6_fdd4_d342_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_37e6_fdd4_d342/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_37e6_fdd4_d342.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_37e6_fdd4_d342&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_37e6_fdd4_d342"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b93_946e_1504", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b93_946e_1504.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b93_946e_1504/request", "", "public", "Top Dataset, enh, ulflx.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b93_946e_1504_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b93_946e_1504_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b93_946e_1504/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b93_946e_1504.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b93_946e_1504&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6b93_946e_1504"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e03_2dd8_c886", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e03_2dd8_c886.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1e03_2dd8_c886/request", "", "public", "Top Dataset, enh, ulflx.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1e03_2dd8_c886_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1e03_2dd8_c886_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1e03_2dd8_c886/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1e03_2dd8_c886.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1e03_2dd8_c886&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1e03_2dd8_c886"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2290_1e08_6955", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2290_1e08_6955.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2290_1e08_6955/request", "", "public", "Top Dataset, enh, ulflx.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2290_1e08_6955_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2290_1e08_6955_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2290_1e08_6955/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2290_1e08_6955.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2290_1e08_6955&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2290_1e08_6955"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50c4_c966_c570", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50c4_c966_c570.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_50c4_c966_c570/request", "", "public", "Top Dataset, enh, ulflx.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_50c4_c966_c570_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_50c4_c966_c570_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50c4_c966_c570/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50c4_c966_c570.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50c4_c966_c570&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_50c4_c966_c570"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f747_ac9c_8f12", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f747_ac9c_8f12.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f747_ac9c_8f12/request", "", "public", "Top Dataset, enh, ulflx.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f747_ac9c_8f12_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f747_ac9c_8f12_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f747_ac9c_8f12/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f747_ac9c_8f12.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f747_ac9c_8f12&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f747_ac9c_8f12"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4414_949a_95ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4414_949a_95ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4414_949a_95ec/request", "", "public", "Top Dataset, enh, ulflx.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4414_949a_95ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4414_949a_95ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4414_949a_95ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4414_949a_95ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4414_949a_95ec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4414_949a_95ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4add_6002_1569", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4add_6002_1569.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4add_6002_1569/request", "", "public", "Top Dataset, enh, ulflx.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4add_6002_1569_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4add_6002_1569_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4add_6002_1569/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4add_6002_1569.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4add_6002_1569&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4add_6002_1569"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05a3_34d6_0ea9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05a3_34d6_0ea9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_05a3_34d6_0ea9/request", "", "public", "Top Dataset, enh, ulflx.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_05a3_34d6_0ea9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_05a3_34d6_0ea9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_05a3_34d6_0ea9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_05a3_34d6_0ea9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_05a3_34d6_0ea9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_05a3_34d6_0ea9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c2df_b78d_a375", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c2df_b78d_a375.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c2df_b78d_a375/request", "", "public", "Top Dataset, enh, ulflx.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c2df_b78d_a375_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c2df_b78d_a375_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c2df_b78d_a375/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c2df_b78d_a375.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c2df_b78d_a375&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c2df_b78d_a375"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cef0_eb54_9e15", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cef0_eb54_9e15.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cef0_eb54_9e15/request", "", "public", "Top Dataset, enh, ulflx.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cef0_eb54_9e15_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cef0_eb54_9e15_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cef0_eb54_9e15/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cef0_eb54_9e15.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cef0_eb54_9e15&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cef0_eb54_9e15"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5c5_b1bc_4845", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5c5_b1bc_4845.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5c5_b1bc_4845/request", "", "public", "Top Dataset, enh, ulflx.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5c5_b1bc_4845_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5c5_b1bc_4845_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5c5_b1bc_4845/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5c5_b1bc_4845.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5c5_b1bc_4845&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c5c5_b1bc_4845"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08af_a889_97fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08af_a889_97fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_08af_a889_97fa/request", "", "public", "Top Dataset, enh, ulflx.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_08af_a889_97fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_08af_a889_97fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_08af_a889_97fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_08af_a889_97fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_08af_a889_97fa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_08af_a889_97fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20f4_ba5c_6ee9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20f4_ba5c_6ee9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_20f4_ba5c_6ee9/request", "", "public", "Top Dataset, enh, ulflx.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_20f4_ba5c_6ee9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_20f4_ba5c_6ee9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_20f4_ba5c_6ee9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_20f4_ba5c_6ee9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_20f4_ba5c_6ee9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_20f4_ba5c_6ee9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f7d_0fb9_c6a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f7d_0fb9_c6a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f7d_0fb9_c6a7/request", "", "public", "Top Dataset, enh, ulflx.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f7d_0fb9_c6a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f7d_0fb9_c6a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f7d_0fb9_c6a7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f7d_0fb9_c6a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f7d_0fb9_c6a7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7f7d_0fb9_c6a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0861_32d5_3861", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0861_32d5_3861.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0861_32d5_3861/request", "", "public", "Top Dataset, enh, ulflx.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0861_32d5_3861_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0861_32d5_3861_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0861_32d5_3861/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0861_32d5_3861.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0861_32d5_3861&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0861_32d5_3861"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c60_0dae_5e2b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c60_0dae_5e2b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6c60_0dae_5e2b/request", "", "public", "Top Dataset, enh, ulflx.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6c60_0dae_5e2b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6c60_0dae_5e2b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6c60_0dae_5e2b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6c60_0dae_5e2b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6c60_0dae_5e2b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6c60_0dae_5e2b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a88_b41f_d463", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a88_b41f_d463.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4a88_b41f_d463/request", "", "public", "Top Dataset, enh, ulflx.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4a88_b41f_d463_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4a88_b41f_d463_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4a88_b41f_d463/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4a88_b41f_d463.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4a88_b41f_d463&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4a88_b41f_d463"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f3a_7cea_d042", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f3a_7cea_d042.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f3a_7cea_d042/request", "", "public", "Top Dataset, enh, ulflx.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f3a_7cea_d042_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f3a_7cea_d042_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f3a_7cea_d042/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f3a_7cea_d042.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f3a_7cea_d042&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2f3a_7cea_d042"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a28c_c561_7b27", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a28c_c561_7b27.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a28c_c561_7b27/request", "", "public", "Top Dataset, enh, ulflx.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a28c_c561_7b27_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a28c_c561_7b27_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a28c_c561_7b27/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a28c_c561_7b27.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a28c_c561_7b27&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a28c_c561_7b27"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_806e_9f0e_a350", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_806e_9f0e_a350.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_806e_9f0e_a350/request", "", "public", "Top Dataset, enh, ulflx.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_806e_9f0e_a350_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_806e_9f0e_a350_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_806e_9f0e_a350/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_806e_9f0e_a350.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_806e_9f0e_a350&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_806e_9f0e_a350"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a480_c440_fd06", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a480_c440_fd06.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a480_c440_fd06/request", "", "public", "Top Dataset, enh, ulflx.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a480_c440_fd06_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a480_c440_fd06_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a480_c440_fd06/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a480_c440_fd06.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a480_c440_fd06&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a480_c440_fd06"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b7a4_ee93_549a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b7a4_ee93_549a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b7a4_ee93_549a/request", "", "public", "Top Dataset, enh, ulflx.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b7a4_ee93_549a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b7a4_ee93_549a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b7a4_ee93_549a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b7a4_ee93_549a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b7a4_ee93_549a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b7a4_ee93_549a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12fe_bf58_6ac2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12fe_bf58_6ac2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_12fe_bf58_6ac2/request", "", "public", "Top Dataset, enh, ulflx.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_12fe_bf58_6ac2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_12fe_bf58_6ac2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_12fe_bf58_6ac2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_12fe_bf58_6ac2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_12fe_bf58_6ac2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_12fe_bf58_6ac2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_249d_1764_99c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_249d_1764_99c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_249d_1764_99c4/request", "", "public", "Top Dataset, enh, ulflx.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_249d_1764_99c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_249d_1764_99c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_249d_1764_99c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_249d_1764_99c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_249d_1764_99c4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_249d_1764_99c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3311_a9e8_ea60", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3311_a9e8_ea60.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3311_a9e8_ea60/request", "", "public", "Top Dataset, enh, ulflx.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3311_a9e8_ea60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3311_a9e8_ea60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3311_a9e8_ea60/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3311_a9e8_ea60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3311_a9e8_ea60&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3311_a9e8_ea60"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1efa_7bc1_a0e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1efa_7bc1_a0e4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1efa_7bc1_a0e4/request", "", "public", "Top Dataset, enh, ulflx.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1efa_7bc1_a0e4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1efa_7bc1_a0e4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1efa_7bc1_a0e4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1efa_7bc1_a0e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1efa_7bc1_a0e4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1efa_7bc1_a0e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d9b_6358_9e2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d9b_6358_9e2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0d9b_6358_9e2d/request", "", "public", "Top Dataset, enh, ulflx.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0d9b_6358_9e2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0d9b_6358_9e2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0d9b_6358_9e2d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0d9b_6358_9e2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0d9b_6358_9e2d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0d9b_6358_9e2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ef3_f999_1d2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ef3_f999_1d2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ef3_f999_1d2f/request", "", "public", "Top Dataset, enh, ulflx.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ef3_f999_1d2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ef3_f999_1d2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ef3_f999_1d2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ef3_f999_1d2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ef3_f999_1d2f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1ef3_f999_1d2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2878_f6ce_ef0d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2878_f6ce_ef0d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2878_f6ce_ef0d/request", "", "public", "Top Dataset, enh, ulflx.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2878_f6ce_ef0d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2878_f6ce_ef0d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2878_f6ce_ef0d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2878_f6ce_ef0d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2878_f6ce_ef0d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2878_f6ce_ef0d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6542_f192_4f12", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6542_f192_4f12.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6542_f192_4f12/request", "", "public", "Top Dataset, enh, ulflx.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6542_f192_4f12_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6542_f192_4f12_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6542_f192_4f12/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6542_f192_4f12.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6542_f192_4f12&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6542_f192_4f12"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c778_18fa_c085", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c778_18fa_c085.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c778_18fa_c085/request", "", "public", "Top Dataset, enh, ulflx.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c778_18fa_c085_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c778_18fa_c085_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c778_18fa_c085/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c778_18fa_c085.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c778_18fa_c085&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c778_18fa_c085"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5275_feb4_d71f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5275_feb4_d71f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5275_feb4_d71f/request", "", "public", "Top Dataset, enh, ulflx.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5275_feb4_d71f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5275_feb4_d71f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5275_feb4_d71f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5275_feb4_d71f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5275_feb4_d71f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5275_feb4_d71f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cbb_c6f9_8f26", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cbb_c6f9_8f26.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7cbb_c6f9_8f26/request", "", "public", "Top Dataset, enh, ulflx.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7cbb_c6f9_8f26_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7cbb_c6f9_8f26_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7cbb_c6f9_8f26/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7cbb_c6f9_8f26.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7cbb_c6f9_8f26&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7cbb_c6f9_8f26"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ed0_1b63_adf7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ed0_1b63_adf7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ed0_1b63_adf7/request", "", "public", "Top Dataset, enh, ulflx.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ed0_1b63_adf7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ed0_1b63_adf7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ed0_1b63_adf7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ed0_1b63_adf7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ed0_1b63_adf7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8ed0_1b63_adf7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0aef_5e84_e40c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0aef_5e84_e40c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0aef_5e84_e40c/request", "", "public", "Top Dataset, enh, ulflx.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0aef_5e84_e40c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0aef_5e84_e40c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0aef_5e84_e40c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0aef_5e84_e40c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0aef_5e84_e40c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0aef_5e84_e40c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e35_5c6b_c60c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e35_5c6b_c60c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5e35_5c6b_c60c/request", "", "public", "Top Dataset, enh, ulflx.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5e35_5c6b_c60c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5e35_5c6b_c60c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5e35_5c6b_c60c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5e35_5c6b_c60c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5e35_5c6b_c60c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5e35_5c6b_c60c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5ea_cb9d_2bbe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5ea_cb9d_2bbe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f5ea_cb9d_2bbe/request", "", "public", "Top Dataset, enh, ulflx.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f5ea_cb9d_2bbe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f5ea_cb9d_2bbe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f5ea_cb9d_2bbe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f5ea_cb9d_2bbe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f5ea_cb9d_2bbe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f5ea_cb9d_2bbe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a6f4_4950_da1d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a6f4_4950_da1d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a6f4_4950_da1d/request", "", "public", "Top Dataset, enh, upstr.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a6f4_4950_da1d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a6f4_4950_da1d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a6f4_4950_da1d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a6f4_4950_da1d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a6f4_4950_da1d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a6f4_4950_da1d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d9bd_37d7_8124", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d9bd_37d7_8124.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d9bd_37d7_8124/request", "", "public", "Top Dataset, enh, upstr.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d9bd_37d7_8124_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d9bd_37d7_8124_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d9bd_37d7_8124/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d9bd_37d7_8124.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d9bd_37d7_8124&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d9bd_37d7_8124"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e207_9961_668c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e207_9961_668c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e207_9961_668c/request", "", "public", "Top Dataset, enh, upstr.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e207_9961_668c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e207_9961_668c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e207_9961_668c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e207_9961_668c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e207_9961_668c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e207_9961_668c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_783c_774a_5234", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_783c_774a_5234.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_783c_774a_5234/request", "", "public", "Top Dataset, enh, upstr.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_783c_774a_5234_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_783c_774a_5234_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_783c_774a_5234/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_783c_774a_5234.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_783c_774a_5234&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_783c_774a_5234"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f684_6c17_8a22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f684_6c17_8a22.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f684_6c17_8a22/request", "", "public", "Top Dataset, enh, upstr.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f684_6c17_8a22_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f684_6c17_8a22_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f684_6c17_8a22/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f684_6c17_8a22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f684_6c17_8a22&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f684_6c17_8a22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fdeb_b570_8e76", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fdeb_b570_8e76.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fdeb_b570_8e76/request", "", "public", "Top Dataset, enh, upstr.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fdeb_b570_8e76_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fdeb_b570_8e76_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fdeb_b570_8e76/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fdeb_b570_8e76.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fdeb_b570_8e76&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fdeb_b570_8e76"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21ec_d834_3a2e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21ec_d834_3a2e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_21ec_d834_3a2e/request", "", "public", "Top Dataset, enh, upstr.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_21ec_d834_3a2e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_21ec_d834_3a2e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_21ec_d834_3a2e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_21ec_d834_3a2e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_21ec_d834_3a2e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_21ec_d834_3a2e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37a4_51a9_d299", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37a4_51a9_d299.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_37a4_51a9_d299/request", "", "public", "Top Dataset, enh, upstr.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_37a4_51a9_d299_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_37a4_51a9_d299_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_37a4_51a9_d299/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_37a4_51a9_d299.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_37a4_51a9_d299&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_37a4_51a9_d299"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5a7_bf29_8726", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5a7_bf29_8726.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5a7_bf29_8726/request", "", "public", "Top Dataset, enh, upstr.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5a7_bf29_8726_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5a7_bf29_8726_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5a7_bf29_8726/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5a7_bf29_8726.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5a7_bf29_8726&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e5a7_bf29_8726"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc8e_c2c1_ffae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc8e_c2c1_ffae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc8e_c2c1_ffae/request", "", "public", "Top Dataset, enh, upstr.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc8e_c2c1_ffae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc8e_c2c1_ffae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc8e_c2c1_ffae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc8e_c2c1_ffae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc8e_c2c1_ffae&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cc8e_c2c1_ffae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c4b_9630_bcf3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c4b_9630_bcf3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8c4b_9630_bcf3/request", "", "public", "Top Dataset, enh, upstr.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8c4b_9630_bcf3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8c4b_9630_bcf3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8c4b_9630_bcf3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8c4b_9630_bcf3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8c4b_9630_bcf3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8c4b_9630_bcf3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a461_b813_255d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a461_b813_255d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a461_b813_255d/request", "", "public", "Top Dataset, enh, upstr.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a461_b813_255d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a461_b813_255d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a461_b813_255d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a461_b813_255d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a461_b813_255d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a461_b813_255d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f86c_274f_ede8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f86c_274f_ede8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f86c_274f_ede8/request", "", "public", "Top Dataset, enh, upstr.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f86c_274f_ede8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f86c_274f_ede8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f86c_274f_ede8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f86c_274f_ede8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f86c_274f_ede8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f86c_274f_ede8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8258_a756_43e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8258_a756_43e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8258_a756_43e3/request", "", "public", "Top Dataset, enh, upstr.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8258_a756_43e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8258_a756_43e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8258_a756_43e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8258_a756_43e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8258_a756_43e3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8258_a756_43e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccf7_58b7_be64", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccf7_58b7_be64.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ccf7_58b7_be64/request", "", "public", "Top Dataset, enh, upstr.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ccf7_58b7_be64_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ccf7_58b7_be64_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ccf7_58b7_be64/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ccf7_58b7_be64.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ccf7_58b7_be64&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ccf7_58b7_be64"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_36f5_3981_057a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_36f5_3981_057a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_36f5_3981_057a/request", "", "public", "Top Dataset, enh, upstr.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_36f5_3981_057a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_36f5_3981_057a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_36f5_3981_057a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_36f5_3981_057a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_36f5_3981_057a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_36f5_3981_057a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3da9_9701_b173", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3da9_9701_b173.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3da9_9701_b173/request", "", "public", "Top Dataset, enh, upstr.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3da9_9701_b173_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3da9_9701_b173_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3da9_9701_b173/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3da9_9701_b173.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3da9_9701_b173&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3da9_9701_b173"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5d0_f587_4f88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5d0_f587_4f88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5d0_f587_4f88/request", "", "public", "Top Dataset, enh, upstr.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5d0_f587_4f88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5d0_f587_4f88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5d0_f587_4f88/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5d0_f587_4f88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5d0_f587_4f88&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b5d0_f587_4f88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e43_37c1_41d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e43_37c1_41d2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e43_37c1_41d2/request", "", "public", "Top Dataset, enh, upstr.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e43_37c1_41d2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e43_37c1_41d2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e43_37c1_41d2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e43_37c1_41d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e43_37c1_41d2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8e43_37c1_41d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a03_f724_ac4c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a03_f724_ac4c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a03_f724_ac4c/request", "", "public", "Top Dataset, enh, upstr.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a03_f724_ac4c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a03_f724_ac4c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a03_f724_ac4c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a03_f724_ac4c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a03_f724_ac4c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7a03_f724_ac4c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf79_d785_bfe5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf79_d785_bfe5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf79_d785_bfe5/request", "", "public", "Top Dataset, enh, upstr.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf79_d785_bfe5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf79_d785_bfe5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf79_d785_bfe5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf79_d785_bfe5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf79_d785_bfe5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bf79_d785_bfe5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a902_ba42_ea20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a902_ba42_ea20.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a902_ba42_ea20/request", "", "public", "Top Dataset, enh, upstr.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a902_ba42_ea20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a902_ba42_ea20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a902_ba42_ea20/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a902_ba42_ea20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a902_ba42_ea20&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a902_ba42_ea20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a14_2d32_aa22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a14_2d32_aa22.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4a14_2d32_aa22/request", "", "public", "Top Dataset, enh, upstr.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4a14_2d32_aa22_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4a14_2d32_aa22_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4a14_2d32_aa22/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4a14_2d32_aa22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4a14_2d32_aa22&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4a14_2d32_aa22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e94_01f0_1ff5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e94_01f0_1ff5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e94_01f0_1ff5/request", "", "public", "Top Dataset, enh, upstr.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e94_01f0_1ff5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e94_01f0_1ff5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e94_01f0_1ff5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e94_01f0_1ff5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e94_01f0_1ff5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9e94_01f0_1ff5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9638_4764_ecb2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9638_4764_ecb2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9638_4764_ecb2/request", "", "public", "Top Dataset, enh, upstr.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9638_4764_ecb2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9638_4764_ecb2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9638_4764_ecb2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9638_4764_ecb2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9638_4764_ecb2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9638_4764_ecb2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3910_d57f_e23d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3910_d57f_e23d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3910_d57f_e23d/request", "", "public", "Top Dataset, enh, upstr.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3910_d57f_e23d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3910_d57f_e23d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3910_d57f_e23d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3910_d57f_e23d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3910_d57f_e23d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3910_d57f_e23d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b6e0_71fa_9d62", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b6e0_71fa_9d62.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b6e0_71fa_9d62/request", "", "public", "Top Dataset, enh, upstr.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b6e0_71fa_9d62_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b6e0_71fa_9d62_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b6e0_71fa_9d62/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b6e0_71fa_9d62.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b6e0_71fa_9d62&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b6e0_71fa_9d62"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca3b_3e4a_6c97", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca3b_3e4a_6c97.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca3b_3e4a_6c97/request", "", "public", "Top Dataset, enh, upstr.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca3b_3e4a_6c97_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca3b_3e4a_6c97_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca3b_3e4a_6c97/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca3b_3e4a_6c97.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca3b_3e4a_6c97&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ca3b_3e4a_6c97"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_511d_6e36_af16", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_511d_6e36_af16.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_511d_6e36_af16/request", "", "public", "Top Dataset, enh, upstr.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_511d_6e36_af16_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_511d_6e36_af16_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_511d_6e36_af16/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_511d_6e36_af16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_511d_6e36_af16&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_511d_6e36_af16"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae9b_c837_6a87", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae9b_c837_6a87.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae9b_c837_6a87/request", "", "public", "Top Dataset, enh, upstr.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae9b_c837_6a87_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae9b_c837_6a87_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae9b_c837_6a87/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae9b_c837_6a87.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae9b_c837_6a87&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ae9b_c837_6a87"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_902f_3256_523a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_902f_3256_523a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_902f_3256_523a/request", "", "public", "Top Dataset, enh, upstr.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_902f_3256_523a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_902f_3256_523a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_902f_3256_523a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_902f_3256_523a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_902f_3256_523a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_902f_3256_523a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_706f_ed8b_02bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_706f_ed8b_02bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_706f_ed8b_02bf/request", "", "public", "Top Dataset, enh, upstr.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_706f_ed8b_02bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_706f_ed8b_02bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_706f_ed8b_02bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_706f_ed8b_02bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_706f_ed8b_02bf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_706f_ed8b_02bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d788_46fc_73c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d788_46fc_73c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d788_46fc_73c1/request", "", "public", "Top Dataset, enh, upstr.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d788_46fc_73c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d788_46fc_73c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d788_46fc_73c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d788_46fc_73c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d788_46fc_73c1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d788_46fc_73c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c315_654c_7cd0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c315_654c_7cd0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c315_654c_7cd0/request", "", "public", "Top Dataset, enh, upstr.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c315_654c_7cd0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c315_654c_7cd0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c315_654c_7cd0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c315_654c_7cd0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c315_654c_7cd0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c315_654c_7cd0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4076_e5d7_741b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4076_e5d7_741b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4076_e5d7_741b/request", "", "public", "Top Dataset, enh, upstr.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4076_e5d7_741b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4076_e5d7_741b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4076_e5d7_741b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4076_e5d7_741b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4076_e5d7_741b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4076_e5d7_741b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bde2_a799_3aea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bde2_a799_3aea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bde2_a799_3aea/request", "", "public", "Top Dataset, enh, upstr.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bde2_a799_3aea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bde2_a799_3aea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bde2_a799_3aea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bde2_a799_3aea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bde2_a799_3aea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bde2_a799_3aea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a04e_9a1f_9a47", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a04e_9a1f_9a47.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a04e_9a1f_9a47/request", "", "public", "Top Dataset, enh, upstr.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a04e_9a1f_9a47_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a04e_9a1f_9a47_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a04e_9a1f_9a47/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a04e_9a1f_9a47.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a04e_9a1f_9a47&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a04e_9a1f_9a47"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7acc_3717_f7d8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7acc_3717_f7d8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7acc_3717_f7d8/request", "", "public", "Top Dataset, enh, upstr.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7acc_3717_f7d8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7acc_3717_f7d8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7acc_3717_f7d8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7acc_3717_f7d8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7acc_3717_f7d8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7acc_3717_f7d8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eba0_9f91_573c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eba0_9f91_573c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eba0_9f91_573c/request", "", "public", "Top Dataset, enh, upstr.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eba0_9f91_573c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eba0_9f91_573c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eba0_9f91_573c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eba0_9f91_573c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eba0_9f91_573c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eba0_9f91_573c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17c1_3826_4531", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17c1_3826_4531.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_17c1_3826_4531/request", "", "public", "Top Dataset, enh, upstr.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_17c1_3826_4531_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_17c1_3826_4531_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_17c1_3826_4531/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_17c1_3826_4531.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_17c1_3826_4531&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_17c1_3826_4531"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57d2_ebe7_7889", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57d2_ebe7_7889.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_57d2_ebe7_7889/request", "", "public", "Top Dataset, enh, upstr.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_57d2_ebe7_7889_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_57d2_ebe7_7889_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_57d2_ebe7_7889/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_57d2_ebe7_7889.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_57d2_ebe7_7889&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_57d2_ebe7_7889"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf1f_c5c1_049d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf1f_c5c1_049d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf1f_c5c1_049d/request", "", "public", "Top Dataset, enh, upstr.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf1f_c5c1_049d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf1f_c5c1_049d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf1f_c5c1_049d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf1f_c5c1_049d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf1f_c5c1_049d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bf1f_c5c1_049d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e107_7ce5_a88c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e107_7ce5_a88c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e107_7ce5_a88c/request", "", "public", "Top Dataset, enh, upstr.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e107_7ce5_a88c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e107_7ce5_a88c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e107_7ce5_a88c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e107_7ce5_a88c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e107_7ce5_a88c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e107_7ce5_a88c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_944e_3549_7c0c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_944e_3549_7c0c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_944e_3549_7c0c/request", "", "public", "Top Dataset, enh, upstr.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_944e_3549_7c0c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_944e_3549_7c0c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_944e_3549_7c0c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_944e_3549_7c0c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_944e_3549_7c0c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_944e_3549_7c0c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf21_7fe2_0051", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf21_7fe2_0051.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf21_7fe2_0051/request", "", "public", "Top Dataset, enh, upstr.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf21_7fe2_0051_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf21_7fe2_0051_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf21_7fe2_0051/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf21_7fe2_0051.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf21_7fe2_0051&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cf21_7fe2_0051"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8f8_2d21_40b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8f8_2d21_40b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b8f8_2d21_40b5/request", "", "public", "Top Dataset, enh, upstr.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b8f8_2d21_40b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b8f8_2d21_40b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b8f8_2d21_40b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b8f8_2d21_40b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b8f8_2d21_40b5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b8f8_2d21_40b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5333_e91b_6a95", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5333_e91b_6a95.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5333_e91b_6a95/request", "", "public", "Top Dataset, enh, upstr.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5333_e91b_6a95_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5333_e91b_6a95_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5333_e91b_6a95/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5333_e91b_6a95.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5333_e91b_6a95&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5333_e91b_6a95"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_84e1_c145_1b7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_84e1_c145_1b7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_84e1_c145_1b7b/request", "", "public", "Top Dataset, enh, upstr.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_84e1_c145_1b7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_84e1_c145_1b7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_84e1_c145_1b7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_84e1_c145_1b7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_84e1_c145_1b7b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_84e1_c145_1b7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e40d_1a6b_3212", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e40d_1a6b_3212.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e40d_1a6b_3212/request", "", "public", "Top Dataset, enh, upstr.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e40d_1a6b_3212_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e40d_1a6b_3212_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e40d_1a6b_3212/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e40d_1a6b_3212.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e40d_1a6b_3212&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e40d_1a6b_3212"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4537_91c6_7e69", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4537_91c6_7e69.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4537_91c6_7e69/request", "", "public", "Top Dataset, enh, upstr.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4537_91c6_7e69_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4537_91c6_7e69_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4537_91c6_7e69/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4537_91c6_7e69.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4537_91c6_7e69&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4537_91c6_7e69"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfe3_59d9_bf31", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfe3_59d9_bf31.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dfe3_59d9_bf31/request", "", "public", "Top Dataset, enh, upstr.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dfe3_59d9_bf31_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dfe3_59d9_bf31_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dfe3_59d9_bf31/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dfe3_59d9_bf31.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dfe3_59d9_bf31&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dfe3_59d9_bf31"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_29c4_ad54_187c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_29c4_ad54_187c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_29c4_ad54_187c/request", "", "public", "Top Dataset, enh, upstr.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_29c4_ad54_187c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_29c4_ad54_187c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_29c4_ad54_187c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_29c4_ad54_187c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_29c4_ad54_187c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_29c4_ad54_187c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f38_649c_acc2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f38_649c_acc2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f38_649c_acc2/request", "", "public", "Top Dataset, enh, upstr.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f38_649c_acc2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f38_649c_acc2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f38_649c_acc2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f38_649c_acc2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f38_649c_acc2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9f38_649c_acc2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f309_dfcd_fa02", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f309_dfcd_fa02.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f309_dfcd_fa02/request", "", "public", "Top Dataset, enh, upstr.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f309_dfcd_fa02_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f309_dfcd_fa02_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f309_dfcd_fa02/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f309_dfcd_fa02.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f309_dfcd_fa02&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f309_dfcd_fa02"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c8d_290d_8a3c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c8d_290d_8a3c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1c8d_290d_8a3c/request", "", "public", "Top Dataset, enh, upstr.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1c8d_290d_8a3c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1c8d_290d_8a3c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1c8d_290d_8a3c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1c8d_290d_8a3c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1c8d_290d_8a3c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1c8d_290d_8a3c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_31f8_2e22_49ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_31f8_2e22_49ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_31f8_2e22_49ec/request", "", "public", "Top Dataset, enh, upstr.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_31f8_2e22_49ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_31f8_2e22_49ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_31f8_2e22_49ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_31f8_2e22_49ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_31f8_2e22_49ec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_31f8_2e22_49ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8819_ea55_25da", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8819_ea55_25da.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8819_ea55_25da/request", "", "public", "Top Dataset, enh, upstr.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8819_ea55_25da_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8819_ea55_25da_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8819_ea55_25da/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8819_ea55_25da.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8819_ea55_25da&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8819_ea55_25da"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_90c2_9510_18a3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_90c2_9510_18a3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_90c2_9510_18a3/request", "", "public", "Top Dataset, enh, upstr.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_90c2_9510_18a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_90c2_9510_18a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_90c2_9510_18a3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_90c2_9510_18a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_90c2_9510_18a3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_90c2_9510_18a3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e33_e3c1_2cb1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e33_e3c1_2cb1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e33_e3c1_2cb1/request", "", "public", "Top Dataset, enh, upstr.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e33_e3c1_2cb1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e33_e3c1_2cb1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e33_e3c1_2cb1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e33_e3c1_2cb1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e33_e3c1_2cb1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8e33_e3c1_2cb1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5a0_0ae6_ff55", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5a0_0ae6_ff55.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5a0_0ae6_ff55/request", "", "public", "Top Dataset, enh, upstr.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5a0_0ae6_ff55_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5a0_0ae6_ff55_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5a0_0ae6_ff55/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5a0_0ae6_ff55.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5a0_0ae6_ff55&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a5a0_0ae6_ff55"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca6a_45c6_fc36", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca6a_45c6_fc36.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca6a_45c6_fc36/request", "", "public", "Top Dataset, enh, upstr.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca6a_45c6_fc36_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca6a_45c6_fc36_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca6a_45c6_fc36/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca6a_45c6_fc36.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca6a_45c6_fc36&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ca6a_45c6_fc36"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3bf9_f847_9ccd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3bf9_f847_9ccd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3bf9_f847_9ccd/request", "", "public", "Top Dataset, enh, upstr.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3bf9_f847_9ccd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3bf9_f847_9ccd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3bf9_f847_9ccd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3bf9_f847_9ccd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3bf9_f847_9ccd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3bf9_f847_9ccd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e05e_7c2f_0793", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e05e_7c2f_0793.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e05e_7c2f_0793/request", "", "public", "Top Dataset, enh, upstr.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e05e_7c2f_0793_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e05e_7c2f_0793_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e05e_7c2f_0793/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e05e_7c2f_0793.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e05e_7c2f_0793&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e05e_7c2f_0793"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_351e_6fdb_0605", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_351e_6fdb_0605.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_351e_6fdb_0605/request", "", "public", "Top Dataset, enh, uspeh.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_351e_6fdb_0605_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_351e_6fdb_0605_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_351e_6fdb_0605/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_351e_6fdb_0605.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_351e_6fdb_0605&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_351e_6fdb_0605"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0370_4d4b_b476", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0370_4d4b_b476.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0370_4d4b_b476/request", "", "public", "Top Dataset, enh, uspeh.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0370_4d4b_b476_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0370_4d4b_b476_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0370_4d4b_b476/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0370_4d4b_b476.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0370_4d4b_b476&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0370_4d4b_b476"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65c8_c9e4_5709", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65c8_c9e4_5709.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_65c8_c9e4_5709/request", "", "public", "Top Dataset, enh, uspeh.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_65c8_c9e4_5709_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_65c8_c9e4_5709_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_65c8_c9e4_5709/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_65c8_c9e4_5709.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_65c8_c9e4_5709&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_65c8_c9e4_5709"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0276_7499_0db9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0276_7499_0db9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0276_7499_0db9/request", "", "public", "Top Dataset, enh, uspeh.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0276_7499_0db9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0276_7499_0db9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0276_7499_0db9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0276_7499_0db9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0276_7499_0db9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0276_7499_0db9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92df_8b49_03c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92df_8b49_03c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_92df_8b49_03c1/request", "", "public", "Top Dataset, enh, uspeh.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_92df_8b49_03c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_92df_8b49_03c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_92df_8b49_03c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_92df_8b49_03c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_92df_8b49_03c1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_92df_8b49_03c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f29d_1183_bf3a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f29d_1183_bf3a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f29d_1183_bf3a/request", "", "public", "Top Dataset, enh, uspeh.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f29d_1183_bf3a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f29d_1183_bf3a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f29d_1183_bf3a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f29d_1183_bf3a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f29d_1183_bf3a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f29d_1183_bf3a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f857_1cbb_8b95", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f857_1cbb_8b95.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f857_1cbb_8b95/request", "", "public", "Top Dataset, enh, uspeh.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f857_1cbb_8b95_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f857_1cbb_8b95_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f857_1cbb_8b95/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f857_1cbb_8b95.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f857_1cbb_8b95&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f857_1cbb_8b95"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bdc_fa50_0e2b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bdc_fa50_0e2b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9bdc_fa50_0e2b/request", "", "public", "Top Dataset, enh, uspeh.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9bdc_fa50_0e2b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9bdc_fa50_0e2b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9bdc_fa50_0e2b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9bdc_fa50_0e2b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9bdc_fa50_0e2b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9bdc_fa50_0e2b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af31_df5f_d40e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af31_df5f_d40e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_af31_df5f_d40e/request", "", "public", "Top Dataset, enh, uspeh.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_af31_df5f_d40e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_af31_df5f_d40e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_af31_df5f_d40e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_af31_df5f_d40e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_af31_df5f_d40e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_af31_df5f_d40e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b24b_30a8_6c60", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b24b_30a8_6c60.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b24b_30a8_6c60/request", "", "public", "Top Dataset, enh, uspeh.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b24b_30a8_6c60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b24b_30a8_6c60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b24b_30a8_6c60/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b24b_30a8_6c60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b24b_30a8_6c60&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b24b_30a8_6c60"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c536_e348_13d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c536_e348_13d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c536_e348_13d0/request", "", "public", "Top Dataset, enh, uspeh.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c536_e348_13d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c536_e348_13d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c536_e348_13d0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c536_e348_13d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c536_e348_13d0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c536_e348_13d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f456_2421_c45e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f456_2421_c45e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f456_2421_c45e/request", "", "public", "Top Dataset, enh, uspeh.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f456_2421_c45e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f456_2421_c45e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f456_2421_c45e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f456_2421_c45e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f456_2421_c45e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f456_2421_c45e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4c5_7349_11ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4c5_7349_11ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a4c5_7349_11ac/request", "", "public", "Top Dataset, enh, uspeh.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a4c5_7349_11ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a4c5_7349_11ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a4c5_7349_11ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a4c5_7349_11ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a4c5_7349_11ac&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a4c5_7349_11ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9faf_fa74_c1dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9faf_fa74_c1dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9faf_fa74_c1dc/request", "", "public", "Top Dataset, enh, uspeh.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9faf_fa74_c1dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9faf_fa74_c1dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9faf_fa74_c1dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9faf_fa74_c1dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9faf_fa74_c1dc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9faf_fa74_c1dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd5f_fcfb_04b2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd5f_fcfb_04b2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dd5f_fcfb_04b2/request", "", "public", "Top Dataset, enh, uspeh.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dd5f_fcfb_04b2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dd5f_fcfb_04b2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dd5f_fcfb_04b2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dd5f_fcfb_04b2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dd5f_fcfb_04b2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dd5f_fcfb_04b2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d544_d06f_f538", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d544_d06f_f538.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d544_d06f_f538/request", "", "public", "Top Dataset, enh, uspeh.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d544_d06f_f538_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d544_d06f_f538_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d544_d06f_f538/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d544_d06f_f538.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d544_d06f_f538&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d544_d06f_f538"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bbf_84a1_b2f8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bbf_84a1_b2f8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9bbf_84a1_b2f8/request", "", "public", "Top Dataset, enh, uspeh.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9bbf_84a1_b2f8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9bbf_84a1_b2f8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9bbf_84a1_b2f8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9bbf_84a1_b2f8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9bbf_84a1_b2f8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9bbf_84a1_b2f8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da86_a6cf_1e83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da86_a6cf_1e83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da86_a6cf_1e83/request", "", "public", "Top Dataset, enh, uspeh.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da86_a6cf_1e83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da86_a6cf_1e83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da86_a6cf_1e83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da86_a6cf_1e83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da86_a6cf_1e83&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_da86_a6cf_1e83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9039_c85b_8e0a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9039_c85b_8e0a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9039_c85b_8e0a/request", "", "public", "Top Dataset, enh, uspeh.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9039_c85b_8e0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9039_c85b_8e0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9039_c85b_8e0a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9039_c85b_8e0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9039_c85b_8e0a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9039_c85b_8e0a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ae9_ea43_661f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ae9_ea43_661f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ae9_ea43_661f/request", "", "public", "Top Dataset, enh, uspeh.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ae9_ea43_661f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ae9_ea43_661f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ae9_ea43_661f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ae9_ea43_661f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ae9_ea43_661f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4ae9_ea43_661f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_876a_c0a9_aef1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_876a_c0a9_aef1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_876a_c0a9_aef1/request", "", "public", "Top Dataset, enh, uspeh.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_876a_c0a9_aef1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_876a_c0a9_aef1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_876a_c0a9_aef1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_876a_c0a9_aef1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_876a_c0a9_aef1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_876a_c0a9_aef1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2490_4944_a6c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2490_4944_a6c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2490_4944_a6c0/request", "", "public", "Top Dataset, enh, uspeh.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2490_4944_a6c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2490_4944_a6c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2490_4944_a6c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2490_4944_a6c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2490_4944_a6c0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2490_4944_a6c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12a2_e145_5423", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12a2_e145_5423.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_12a2_e145_5423/request", "", "public", "Top Dataset, enh, uspeh.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_12a2_e145_5423_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_12a2_e145_5423_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_12a2_e145_5423/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_12a2_e145_5423.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_12a2_e145_5423&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_12a2_e145_5423"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab0a_d87c_5818", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab0a_d87c_5818.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab0a_d87c_5818/request", "", "public", "Top Dataset, enh, uspeh.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab0a_d87c_5818_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab0a_d87c_5818_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab0a_d87c_5818/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab0a_d87c_5818.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab0a_d87c_5818&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ab0a_d87c_5818"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7903_0266_5798", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7903_0266_5798.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7903_0266_5798/request", "", "public", "Top Dataset, enh, uspeh.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7903_0266_5798_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7903_0266_5798_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7903_0266_5798/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7903_0266_5798.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7903_0266_5798&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7903_0266_5798"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21e9_eab2_2331", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21e9_eab2_2331.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_21e9_eab2_2331/request", "", "public", "Top Dataset, enh, uspeh.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_21e9_eab2_2331_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_21e9_eab2_2331_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_21e9_eab2_2331/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_21e9_eab2_2331.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_21e9_eab2_2331&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_21e9_eab2_2331"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3035_7d06_0495", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3035_7d06_0495.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3035_7d06_0495/request", "", "public", "Top Dataset, enh, uspeh.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3035_7d06_0495_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3035_7d06_0495_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3035_7d06_0495/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3035_7d06_0495.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3035_7d06_0495&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3035_7d06_0495"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ec4_4360_bdc0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ec4_4360_bdc0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2ec4_4360_bdc0/request", "", "public", "Top Dataset, enh, uspeh.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2ec4_4360_bdc0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2ec4_4360_bdc0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2ec4_4360_bdc0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2ec4_4360_bdc0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2ec4_4360_bdc0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2ec4_4360_bdc0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d0f_16a5_62eb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d0f_16a5_62eb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0d0f_16a5_62eb/request", "", "public", "Top Dataset, enh, uspeh.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0d0f_16a5_62eb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0d0f_16a5_62eb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0d0f_16a5_62eb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0d0f_16a5_62eb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0d0f_16a5_62eb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0d0f_16a5_62eb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6dce_0f3c_0ea9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6dce_0f3c_0ea9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6dce_0f3c_0ea9/request", "", "public", "Top Dataset, enh, uspeh.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6dce_0f3c_0ea9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6dce_0f3c_0ea9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6dce_0f3c_0ea9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6dce_0f3c_0ea9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6dce_0f3c_0ea9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6dce_0f3c_0ea9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a61_907a_9321", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a61_907a_9321.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a61_907a_9321/request", "", "public", "Top Dataset, enh, uspeh.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a61_907a_9321_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a61_907a_9321_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a61_907a_9321/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a61_907a_9321.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a61_907a_9321&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5a61_907a_9321"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95ed_3ee3_00c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95ed_3ee3_00c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_95ed_3ee3_00c4/request", "", "public", "Top Dataset, enh, uspeh.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_95ed_3ee3_00c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_95ed_3ee3_00c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_95ed_3ee3_00c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_95ed_3ee3_00c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_95ed_3ee3_00c4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_95ed_3ee3_00c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6da_e1b2_6b58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6da_e1b2_6b58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e6da_e1b2_6b58/request", "", "public", "Top Dataset, enh, uspeh.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e6da_e1b2_6b58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e6da_e1b2_6b58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e6da_e1b2_6b58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e6da_e1b2_6b58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e6da_e1b2_6b58&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e6da_e1b2_6b58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4353_6ae5_1aac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4353_6ae5_1aac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4353_6ae5_1aac/request", "", "public", "Top Dataset, enh, uspeh.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4353_6ae5_1aac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4353_6ae5_1aac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4353_6ae5_1aac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4353_6ae5_1aac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4353_6ae5_1aac&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4353_6ae5_1aac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d48_4db4_ce75", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d48_4db4_ce75.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d48_4db4_ce75/request", "", "public", "Top Dataset, enh, uspeh.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d48_4db4_ce75_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d48_4db4_ce75_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d48_4db4_ce75/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d48_4db4_ce75.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d48_4db4_ce75&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6d48_4db4_ce75"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5aa_a5ce_7ddc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5aa_a5ce_7ddc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5aa_a5ce_7ddc/request", "", "public", "Top Dataset, enh, uspeh.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5aa_a5ce_7ddc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5aa_a5ce_7ddc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5aa_a5ce_7ddc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5aa_a5ce_7ddc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5aa_a5ce_7ddc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e5aa_a5ce_7ddc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2368_0a2b_ee30", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2368_0a2b_ee30.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2368_0a2b_ee30/request", "", "public", "Top Dataset, enh, uspeh.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2368_0a2b_ee30_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2368_0a2b_ee30_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2368_0a2b_ee30/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2368_0a2b_ee30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2368_0a2b_ee30&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2368_0a2b_ee30"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ff6_6f6d_984d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ff6_6f6d_984d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0ff6_6f6d_984d/request", "", "public", "Top Dataset, enh, uspeh.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0ff6_6f6d_984d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0ff6_6f6d_984d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0ff6_6f6d_984d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0ff6_6f6d_984d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0ff6_6f6d_984d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0ff6_6f6d_984d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22b5_1e3f_b0a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22b5_1e3f_b0a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_22b5_1e3f_b0a1/request", "", "public", "Top Dataset, enh, uspeh.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_22b5_1e3f_b0a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_22b5_1e3f_b0a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_22b5_1e3f_b0a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_22b5_1e3f_b0a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_22b5_1e3f_b0a1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_22b5_1e3f_b0a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4000_d1bd_e984", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4000_d1bd_e984.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4000_d1bd_e984/request", "", "public", "Top Dataset, enh, uspeh.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4000_d1bd_e984_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4000_d1bd_e984_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4000_d1bd_e984/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4000_d1bd_e984.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4000_d1bd_e984&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4000_d1bd_e984"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb8d_75df_b62b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb8d_75df_b62b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb8d_75df_b62b/request", "", "public", "Top Dataset, enh, uspeh.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb8d_75df_b62b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb8d_75df_b62b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb8d_75df_b62b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb8d_75df_b62b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb8d_75df_b62b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cb8d_75df_b62b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6d0_a08d_f760", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6d0_a08d_f760.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f6d0_a08d_f760/request", "", "public", "Top Dataset, enh, uspeh.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f6d0_a08d_f760_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f6d0_a08d_f760_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f6d0_a08d_f760/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f6d0_a08d_f760.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f6d0_a08d_f760&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f6d0_a08d_f760"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c65_ab5d_1778", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c65_ab5d_1778.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8c65_ab5d_1778/request", "", "public", "Top Dataset, enh, uspeh.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8c65_ab5d_1778_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8c65_ab5d_1778_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8c65_ab5d_1778/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8c65_ab5d_1778.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8c65_ab5d_1778&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8c65_ab5d_1778"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0fcd_123d_7a62", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0fcd_123d_7a62.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0fcd_123d_7a62/request", "", "public", "Top Dataset, enh, uspeh.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0fcd_123d_7a62_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0fcd_123d_7a62_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0fcd_123d_7a62/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0fcd_123d_7a62.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0fcd_123d_7a62&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0fcd_123d_7a62"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e75c_22dd_9165", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e75c_22dd_9165.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e75c_22dd_9165/request", "", "public", "Top Dataset, enh, uspeh.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e75c_22dd_9165_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e75c_22dd_9165_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e75c_22dd_9165/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e75c_22dd_9165.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e75c_22dd_9165&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e75c_22dd_9165"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_261f_23e4_5690", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_261f_23e4_5690.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_261f_23e4_5690/request", "", "public", "Top Dataset, enh, uspeh.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_261f_23e4_5690_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_261f_23e4_5690_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_261f_23e4_5690/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_261f_23e4_5690.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_261f_23e4_5690&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_261f_23e4_5690"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6440_7bfe_c6cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6440_7bfe_c6cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6440_7bfe_c6cd/request", "", "public", "Top Dataset, enh, uspeh.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6440_7bfe_c6cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6440_7bfe_c6cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6440_7bfe_c6cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6440_7bfe_c6cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6440_7bfe_c6cd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6440_7bfe_c6cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83ac_a592_d51f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83ac_a592_d51f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_83ac_a592_d51f/request", "", "public", "Top Dataset, enh, uspeh.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_83ac_a592_d51f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_83ac_a592_d51f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_83ac_a592_d51f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_83ac_a592_d51f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_83ac_a592_d51f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_83ac_a592_d51f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e8e_a919_c96d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e8e_a919_c96d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e8e_a919_c96d/request", "", "public", "Top Dataset, enh, uspeh.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e8e_a919_c96d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e8e_a919_c96d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e8e_a919_c96d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e8e_a919_c96d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e8e_a919_c96d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3e8e_a919_c96d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ab2_c15e_eb80", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ab2_c15e_eb80.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0ab2_c15e_eb80/request", "", "public", "Top Dataset, enh, uspeh.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0ab2_c15e_eb80_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0ab2_c15e_eb80_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0ab2_c15e_eb80/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0ab2_c15e_eb80.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0ab2_c15e_eb80&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0ab2_c15e_eb80"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9a4_f9a9_b541", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9a4_f9a9_b541.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c9a4_f9a9_b541/request", "", "public", "Top Dataset, enh, uspeh.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c9a4_f9a9_b541_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c9a4_f9a9_b541_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c9a4_f9a9_b541/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c9a4_f9a9_b541.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c9a4_f9a9_b541&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c9a4_f9a9_b541"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a64a_f134_2c04", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a64a_f134_2c04.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a64a_f134_2c04/request", "", "public", "Top Dataset, enh, uspeh.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a64a_f134_2c04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a64a_f134_2c04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a64a_f134_2c04/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a64a_f134_2c04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a64a_f134_2c04&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a64a_f134_2c04"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c6a_fd9f_adff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c6a_fd9f_adff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c6a_fd9f_adff/request", "", "public", "Top Dataset, enh, uspeh.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c6a_fd9f_adff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c6a_fd9f_adff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c6a_fd9f_adff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c6a_fd9f_adff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c6a_fd9f_adff&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5c6a_fd9f_adff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f037_07cb_238b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f037_07cb_238b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f037_07cb_238b/request", "", "public", "Top Dataset, enh, uspeh.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f037_07cb_238b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f037_07cb_238b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f037_07cb_238b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f037_07cb_238b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f037_07cb_238b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f037_07cb_238b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09b2_8eec_d9aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09b2_8eec_d9aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_09b2_8eec_d9aa/request", "", "public", "Top Dataset, enh, uspeh.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_09b2_8eec_d9aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_09b2_8eec_d9aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_09b2_8eec_d9aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_09b2_8eec_d9aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_09b2_8eec_d9aa&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_09b2_8eec_d9aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_66ab_f202_2f8c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_66ab_f202_2f8c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_66ab_f202_2f8c/request", "", "public", "Top Dataset, enh, uspeh.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_66ab_f202_2f8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_66ab_f202_2f8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_66ab_f202_2f8c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_66ab_f202_2f8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_66ab_f202_2f8c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_66ab_f202_2f8c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef3a_d58f_136e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef3a_d58f_136e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ef3a_d58f_136e/request", "", "public", "Top Dataset, enh, uspeh.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ef3a_d58f_136e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ef3a_d58f_136e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ef3a_d58f_136e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ef3a_d58f_136e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ef3a_d58f_136e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ef3a_d58f_136e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9298_1ad4_269e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9298_1ad4_269e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9298_1ad4_269e/request", "", "public", "Top Dataset, enh, uspeh.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9298_1ad4_269e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9298_1ad4_269e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9298_1ad4_269e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9298_1ad4_269e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9298_1ad4_269e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9298_1ad4_269e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a9b_6424_ae0d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a9b_6424_ae0d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a9b_6424_ae0d/request", "", "public", "Top Dataset, enh, uspeh.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a9b_6424_ae0d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a9b_6424_ae0d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a9b_6424_ae0d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a9b_6424_ae0d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a9b_6424_ae0d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7a9b_6424_ae0d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cb0_8742_4a4e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cb0_8742_4a4e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7cb0_8742_4a4e/request", "", "public", "Top Dataset, enh, uspeh.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7cb0_8742_4a4e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7cb0_8742_4a4e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7cb0_8742_4a4e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7cb0_8742_4a4e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7cb0_8742_4a4e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7cb0_8742_4a4e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c99b_b14c_13a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c99b_b14c_13a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c99b_b14c_13a1/request", "", "public", "Top Dataset, enh, uspeh.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c99b_b14c_13a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c99b_b14c_13a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c99b_b14c_13a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c99b_b14c_13a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c99b_b14c_13a1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c99b_b14c_13a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_47d2_cfe9_81f7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_47d2_cfe9_81f7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_47d2_cfe9_81f7/request", "", "public", "Top Dataset, enh, uspeh.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_47d2_cfe9_81f7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_47d2_cfe9_81f7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_47d2_cfe9_81f7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_47d2_cfe9_81f7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_47d2_cfe9_81f7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_47d2_cfe9_81f7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7d6_b42a_e6be", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7d6_b42a_e6be.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c7d6_b42a_e6be/request", "", "public", "Top Dataset, enh, uspeh.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c7d6_b42a_e6be_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c7d6_b42a_e6be_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c7d6_b42a_e6be/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c7d6_b42a_e6be.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c7d6_b42a_e6be&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c7d6_b42a_e6be"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2024_34c4_337f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2024_34c4_337f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2024_34c4_337f/request", "", "public", "Top Dataset, enh, uwnd.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2024_34c4_337f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2024_34c4_337f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2024_34c4_337f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2024_34c4_337f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2024_34c4_337f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2024_34c4_337f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7128_62dd_9912", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7128_62dd_9912.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7128_62dd_9912/request", "", "public", "Top Dataset, enh, uwnd.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7128_62dd_9912_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7128_62dd_9912_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7128_62dd_9912/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7128_62dd_9912.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7128_62dd_9912&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7128_62dd_9912"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a7d4_35b2_e723", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a7d4_35b2_e723.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a7d4_35b2_e723/request", "", "public", "Top Dataset, enh, uwnd.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a7d4_35b2_e723_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a7d4_35b2_e723_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a7d4_35b2_e723/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a7d4_35b2_e723.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a7d4_35b2_e723&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a7d4_35b2_e723"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7920_4323_8949", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7920_4323_8949.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7920_4323_8949/request", "", "public", "Top Dataset, enh, uwnd.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7920_4323_8949_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7920_4323_8949_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7920_4323_8949/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7920_4323_8949.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7920_4323_8949&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7920_4323_8949"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_889d_7ebb_93d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_889d_7ebb_93d2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_889d_7ebb_93d2/request", "", "public", "Top Dataset, enh, uwnd.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_889d_7ebb_93d2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_889d_7ebb_93d2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_889d_7ebb_93d2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_889d_7ebb_93d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_889d_7ebb_93d2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_889d_7ebb_93d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4eb_a26c_7b44", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4eb_a26c_7b44.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f4eb_a26c_7b44/request", "", "public", "Top Dataset, enh, uwnd.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f4eb_a26c_7b44_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f4eb_a26c_7b44_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f4eb_a26c_7b44/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f4eb_a26c_7b44.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f4eb_a26c_7b44&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f4eb_a26c_7b44"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb34_85ea_6f26", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb34_85ea_6f26.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb34_85ea_6f26/request", "", "public", "Top Dataset, enh, uwnd.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb34_85ea_6f26_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb34_85ea_6f26_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb34_85ea_6f26/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb34_85ea_6f26.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb34_85ea_6f26&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cb34_85ea_6f26"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_356b_b932_39d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_356b_b932_39d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_356b_b932_39d9/request", "", "public", "Top Dataset, enh, uwnd.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_356b_b932_39d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_356b_b932_39d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_356b_b932_39d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_356b_b932_39d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_356b_b932_39d9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_356b_b932_39d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad50_13cb_fa92", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad50_13cb_fa92.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ad50_13cb_fa92/request", "", "public", "Top Dataset, enh, uwnd.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ad50_13cb_fa92_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ad50_13cb_fa92_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ad50_13cb_fa92/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ad50_13cb_fa92.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ad50_13cb_fa92&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ad50_13cb_fa92"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0c4_101e_dedd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0c4_101e_dedd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f0c4_101e_dedd/request", "", "public", "Top Dataset, enh, uwnd.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f0c4_101e_dedd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f0c4_101e_dedd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f0c4_101e_dedd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f0c4_101e_dedd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f0c4_101e_dedd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f0c4_101e_dedd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_631f_5d72_4c2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_631f_5d72_4c2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_631f_5d72_4c2d/request", "", "public", "Top Dataset, enh, uwnd.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_631f_5d72_4c2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_631f_5d72_4c2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_631f_5d72_4c2d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_631f_5d72_4c2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_631f_5d72_4c2d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_631f_5d72_4c2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db12_aef5_4aa7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db12_aef5_4aa7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db12_aef5_4aa7/request", "", "public", "Top Dataset, enh, uwnd.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db12_aef5_4aa7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db12_aef5_4aa7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db12_aef5_4aa7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db12_aef5_4aa7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db12_aef5_4aa7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_db12_aef5_4aa7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58db_6647_6b93", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58db_6647_6b93.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_58db_6647_6b93/request", "", "public", "Top Dataset, enh, uwnd.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_58db_6647_6b93_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_58db_6647_6b93_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_58db_6647_6b93/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_58db_6647_6b93.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_58db_6647_6b93&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_58db_6647_6b93"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2300_c7a8_74a4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2300_c7a8_74a4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2300_c7a8_74a4/request", "", "public", "Top Dataset, enh, uwnd.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2300_c7a8_74a4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2300_c7a8_74a4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2300_c7a8_74a4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2300_c7a8_74a4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2300_c7a8_74a4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2300_c7a8_74a4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4822_b513_9235", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4822_b513_9235.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4822_b513_9235/request", "", "public", "Top Dataset, enh, uwnd.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4822_b513_9235_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4822_b513_9235_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4822_b513_9235/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4822_b513_9235.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4822_b513_9235&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4822_b513_9235"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a96_a641_1d41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a96_a641_1d41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a96_a641_1d41/request", "", "public", "Top Dataset, enh, uwnd.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a96_a641_1d41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a96_a641_1d41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a96_a641_1d41/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a96_a641_1d41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a96_a641_1d41&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6a96_a641_1d41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_270b_d44e_f8ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_270b_d44e_f8ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_270b_d44e_f8ff/request", "", "public", "Top Dataset, enh, uwnd.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_270b_d44e_f8ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_270b_d44e_f8ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_270b_d44e_f8ff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_270b_d44e_f8ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_270b_d44e_f8ff&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_270b_d44e_f8ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_600d_838f_638a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_600d_838f_638a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_600d_838f_638a/request", "", "public", "Top Dataset, enh, uwnd.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_600d_838f_638a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_600d_838f_638a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_600d_838f_638a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_600d_838f_638a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_600d_838f_638a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_600d_838f_638a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7147_2c17_5509", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7147_2c17_5509.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7147_2c17_5509/request", "", "public", "Top Dataset, enh, uwnd.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7147_2c17_5509_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7147_2c17_5509_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7147_2c17_5509/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7147_2c17_5509.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7147_2c17_5509&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7147_2c17_5509"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3650_0940_d947", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3650_0940_d947.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3650_0940_d947/request", "", "public", "Top Dataset, enh, uwnd.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3650_0940_d947_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3650_0940_d947_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3650_0940_d947/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3650_0940_d947.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3650_0940_d947&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3650_0940_d947"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a64_a92f_8132", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a64_a92f_8132.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8a64_a92f_8132/request", "", "public", "Top Dataset, enh, uwnd.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8a64_a92f_8132_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8a64_a92f_8132_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8a64_a92f_8132/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8a64_a92f_8132.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8a64_a92f_8132&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8a64_a92f_8132"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a803_1bdf_50f4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a803_1bdf_50f4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a803_1bdf_50f4/request", "", "public", "Top Dataset, enh, uwnd.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a803_1bdf_50f4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a803_1bdf_50f4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a803_1bdf_50f4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a803_1bdf_50f4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a803_1bdf_50f4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a803_1bdf_50f4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28c7_a884_4ce8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28c7_a884_4ce8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28c7_a884_4ce8/request", "", "public", "Top Dataset, enh, uwnd.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28c7_a884_4ce8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28c7_a884_4ce8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28c7_a884_4ce8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28c7_a884_4ce8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28c7_a884_4ce8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_28c7_a884_4ce8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b64f_3829_5bd2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b64f_3829_5bd2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b64f_3829_5bd2/request", "", "public", "Top Dataset, enh, uwnd.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b64f_3829_5bd2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b64f_3829_5bd2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b64f_3829_5bd2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b64f_3829_5bd2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b64f_3829_5bd2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b64f_3829_5bd2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab1d_3ddd_f1ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab1d_3ddd_f1ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab1d_3ddd_f1ec/request", "", "public", "Top Dataset, enh, uwnd.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab1d_3ddd_f1ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab1d_3ddd_f1ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab1d_3ddd_f1ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab1d_3ddd_f1ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab1d_3ddd_f1ec&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ab1d_3ddd_f1ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0235_b01c_b388", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0235_b01c_b388.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0235_b01c_b388/request", "", "public", "Top Dataset, enh, uwnd.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0235_b01c_b388_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0235_b01c_b388_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0235_b01c_b388/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0235_b01c_b388.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0235_b01c_b388&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0235_b01c_b388"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4186_0523_aa2c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4186_0523_aa2c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4186_0523_aa2c/request", "", "public", "Top Dataset, enh, uwnd.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4186_0523_aa2c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4186_0523_aa2c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4186_0523_aa2c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4186_0523_aa2c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4186_0523_aa2c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4186_0523_aa2c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbe9_2852_9d9a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbe9_2852_9d9a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dbe9_2852_9d9a/request", "", "public", "Top Dataset, enh, uwnd.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dbe9_2852_9d9a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dbe9_2852_9d9a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dbe9_2852_9d9a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dbe9_2852_9d9a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dbe9_2852_9d9a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_dbe9_2852_9d9a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08a7_befd_6024", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08a7_befd_6024.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_08a7_befd_6024/request", "", "public", "Top Dataset, enh, uwnd.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_08a7_befd_6024_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_08a7_befd_6024_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_08a7_befd_6024/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_08a7_befd_6024.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_08a7_befd_6024&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_08a7_befd_6024"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8915_d2ba_9892", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8915_d2ba_9892.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8915_d2ba_9892/request", "", "public", "Top Dataset, enh, uwnd.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8915_d2ba_9892_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8915_d2ba_9892_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8915_d2ba_9892/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8915_d2ba_9892.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8915_d2ba_9892&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8915_d2ba_9892"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1db_902b_2923", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1db_902b_2923.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a1db_902b_2923/request", "", "public", "Top Dataset, enh, uwnd.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a1db_902b_2923_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a1db_902b_2923_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a1db_902b_2923/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a1db_902b_2923.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a1db_902b_2923&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a1db_902b_2923"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f51_b626_23b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f51_b626_23b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f51_b626_23b0/request", "", "public", "Top Dataset, enh, uwnd.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f51_b626_23b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f51_b626_23b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f51_b626_23b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f51_b626_23b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f51_b626_23b0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7f51_b626_23b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8420_a5d7_a2a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8420_a5d7_a2a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8420_a5d7_a2a2/request", "", "public", "Top Dataset, enh, uwnd.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8420_a5d7_a2a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8420_a5d7_a2a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8420_a5d7_a2a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8420_a5d7_a2a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8420_a5d7_a2a2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8420_a5d7_a2a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3261_8e0b_90b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3261_8e0b_90b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3261_8e0b_90b5/request", "", "public", "Top Dataset, enh, uwnd.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3261_8e0b_90b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3261_8e0b_90b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3261_8e0b_90b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3261_8e0b_90b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3261_8e0b_90b5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3261_8e0b_90b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22a4_e923_8094", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22a4_e923_8094.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_22a4_e923_8094/request", "", "public", "Top Dataset, enh, uwnd.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_22a4_e923_8094_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_22a4_e923_8094_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_22a4_e923_8094/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_22a4_e923_8094.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_22a4_e923_8094&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_22a4_e923_8094"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9fd_93dc_445c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9fd_93dc_445c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f9fd_93dc_445c/request", "", "public", "Top Dataset, enh, uwnd.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f9fd_93dc_445c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f9fd_93dc_445c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f9fd_93dc_445c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f9fd_93dc_445c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f9fd_93dc_445c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f9fd_93dc_445c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d8a_cd2d_3fa7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d8a_cd2d_3fa7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d8a_cd2d_3fa7/request", "", "public", "Top Dataset, enh, uwnd.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d8a_cd2d_3fa7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d8a_cd2d_3fa7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d8a_cd2d_3fa7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d8a_cd2d_3fa7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d8a_cd2d_3fa7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3d8a_cd2d_3fa7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_458e_6e65_3772", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_458e_6e65_3772.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_458e_6e65_3772/request", "", "public", "Top Dataset, enh, uwnd.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_458e_6e65_3772_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_458e_6e65_3772_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_458e_6e65_3772/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_458e_6e65_3772.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_458e_6e65_3772&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_458e_6e65_3772"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c021_6408_cf39", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c021_6408_cf39.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c021_6408_cf39/request", "", "public", "Top Dataset, enh, uwnd.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c021_6408_cf39_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c021_6408_cf39_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c021_6408_cf39/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c021_6408_cf39.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c021_6408_cf39&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c021_6408_cf39"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbdb_0d9a_bd7c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbdb_0d9a_bd7c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dbdb_0d9a_bd7c/request", "", "public", "Top Dataset, enh, uwnd.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dbdb_0d9a_bd7c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dbdb_0d9a_bd7c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dbdb_0d9a_bd7c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dbdb_0d9a_bd7c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dbdb_0d9a_bd7c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_dbdb_0d9a_bd7c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0510_ec65_99bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0510_ec65_99bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0510_ec65_99bf/request", "", "public", "Top Dataset, enh, uwnd.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0510_ec65_99bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0510_ec65_99bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0510_ec65_99bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0510_ec65_99bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0510_ec65_99bf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0510_ec65_99bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4483_6b92_f80d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4483_6b92_f80d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4483_6b92_f80d/request", "", "public", "Top Dataset, enh, uwnd.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4483_6b92_f80d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4483_6b92_f80d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4483_6b92_f80d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4483_6b92_f80d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4483_6b92_f80d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4483_6b92_f80d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b08d_3e70_321d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b08d_3e70_321d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b08d_3e70_321d/request", "", "public", "Top Dataset, enh, uwnd.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b08d_3e70_321d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b08d_3e70_321d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b08d_3e70_321d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b08d_3e70_321d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b08d_3e70_321d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b08d_3e70_321d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e74_e6bb_68e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e74_e6bb_68e8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e74_e6bb_68e8/request", "", "public", "Top Dataset, enh, uwnd.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e74_e6bb_68e8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e74_e6bb_68e8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e74_e6bb_68e8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e74_e6bb_68e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e74_e6bb_68e8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3e74_e6bb_68e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45e6_9956_b035", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45e6_9956_b035.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_45e6_9956_b035/request", "", "public", "Top Dataset, enh, uwnd.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_45e6_9956_b035_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_45e6_9956_b035_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_45e6_9956_b035/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_45e6_9956_b035.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_45e6_9956_b035&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_45e6_9956_b035"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_27f1_6c02_2989", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_27f1_6c02_2989.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_27f1_6c02_2989/request", "", "public", "Top Dataset, enh, uwnd.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_27f1_6c02_2989_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_27f1_6c02_2989_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_27f1_6c02_2989/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_27f1_6c02_2989.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_27f1_6c02_2989&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_27f1_6c02_2989"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97cf_b5e1_c6fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97cf_b5e1_c6fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_97cf_b5e1_c6fc/request", "", "public", "Top Dataset, enh, uwnd.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_97cf_b5e1_c6fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_97cf_b5e1_c6fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_97cf_b5e1_c6fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_97cf_b5e1_c6fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_97cf_b5e1_c6fc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_97cf_b5e1_c6fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ac7d_8f8b_92b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ac7d_8f8b_92b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ac7d_8f8b_92b3/request", "", "public", "Top Dataset, enh, uwnd.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ac7d_8f8b_92b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ac7d_8f8b_92b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ac7d_8f8b_92b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ac7d_8f8b_92b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ac7d_8f8b_92b3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ac7d_8f8b_92b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5018_29e4_459d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5018_29e4_459d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5018_29e4_459d/request", "", "public", "Top Dataset, enh, uwnd.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5018_29e4_459d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5018_29e4_459d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5018_29e4_459d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5018_29e4_459d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5018_29e4_459d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5018_29e4_459d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1545_9770_7e2c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1545_9770_7e2c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1545_9770_7e2c/request", "", "public", "Top Dataset, enh, uwnd.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1545_9770_7e2c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1545_9770_7e2c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1545_9770_7e2c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1545_9770_7e2c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1545_9770_7e2c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1545_9770_7e2c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81b4_ad42_d5ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81b4_ad42_d5ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_81b4_ad42_d5ca/request", "", "public", "Top Dataset, enh, uwnd.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_81b4_ad42_d5ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_81b4_ad42_d5ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_81b4_ad42_d5ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_81b4_ad42_d5ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_81b4_ad42_d5ca&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_81b4_ad42_d5ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d04c_b29e_c958", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d04c_b29e_c958.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d04c_b29e_c958/request", "", "public", "Top Dataset, enh, uwnd.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d04c_b29e_c958_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d04c_b29e_c958_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d04c_b29e_c958/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d04c_b29e_c958.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d04c_b29e_c958&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d04c_b29e_c958"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6938_9ec2_9bf9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6938_9ec2_9bf9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6938_9ec2_9bf9/request", "", "public", "Top Dataset, enh, uwnd.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6938_9ec2_9bf9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6938_9ec2_9bf9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6938_9ec2_9bf9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6938_9ec2_9bf9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6938_9ec2_9bf9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6938_9ec2_9bf9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b792_cd56_4e7c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b792_cd56_4e7c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b792_cd56_4e7c/request", "", "public", "Top Dataset, enh, uwnd.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b792_cd56_4e7c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b792_cd56_4e7c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b792_cd56_4e7c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b792_cd56_4e7c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b792_cd56_4e7c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b792_cd56_4e7c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d13_fc0a_abd2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d13_fc0a_abd2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7d13_fc0a_abd2/request", "", "public", "Top Dataset, enh, uwnd.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7d13_fc0a_abd2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7d13_fc0a_abd2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7d13_fc0a_abd2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7d13_fc0a_abd2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7d13_fc0a_abd2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7d13_fc0a_abd2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_650c_8355_76c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_650c_8355_76c9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_650c_8355_76c9/request", "", "public", "Top Dataset, enh, uwnd.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_650c_8355_76c9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_650c_8355_76c9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_650c_8355_76c9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_650c_8355_76c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_650c_8355_76c9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_650c_8355_76c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9679_8584_7dda", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9679_8584_7dda.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9679_8584_7dda/request", "", "public", "Top Dataset, enh, uwnd.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9679_8584_7dda_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9679_8584_7dda_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9679_8584_7dda/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9679_8584_7dda.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9679_8584_7dda&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9679_8584_7dda"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a49_4154_b109", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a49_4154_b109.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8a49_4154_b109/request", "", "public", "Top Dataset, enh, uwnd.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8a49_4154_b109_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8a49_4154_b109_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8a49_4154_b109/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8a49_4154_b109.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8a49_4154_b109&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8a49_4154_b109"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58c6_ed92_767b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58c6_ed92_767b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_58c6_ed92_767b/request", "", "public", "Top Dataset, enh, uwnd.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_58c6_ed92_767b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_58c6_ed92_767b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_58c6_ed92_767b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_58c6_ed92_767b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_58c6_ed92_767b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_58c6_ed92_767b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7851_b82b_43d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7851_b82b_43d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7851_b82b_43d3/request", "", "public", "Top Dataset, enh, uwnd.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7851_b82b_43d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7851_b82b_43d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7851_b82b_43d3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7851_b82b_43d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7851_b82b_43d3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7851_b82b_43d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8869_8155_c219", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8869_8155_c219.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8869_8155_c219/request", "", "public", "Top Dataset, enh, vairt.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8869_8155_c219_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8869_8155_c219_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8869_8155_c219/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8869_8155_c219.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8869_8155_c219&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8869_8155_c219"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9dc7_ec7d_4e95", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9dc7_ec7d_4e95.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9dc7_ec7d_4e95/request", "", "public", "Top Dataset, enh, vairt.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9dc7_ec7d_4e95_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9dc7_ec7d_4e95_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9dc7_ec7d_4e95/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9dc7_ec7d_4e95.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9dc7_ec7d_4e95&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9dc7_ec7d_4e95"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccb1_6773_117e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccb1_6773_117e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ccb1_6773_117e/request", "", "public", "Top Dataset, enh, vairt.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ccb1_6773_117e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ccb1_6773_117e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ccb1_6773_117e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ccb1_6773_117e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ccb1_6773_117e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ccb1_6773_117e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_405f_f4aa_734e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_405f_f4aa_734e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_405f_f4aa_734e/request", "", "public", "Top Dataset, enh, vairt.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_405f_f4aa_734e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_405f_f4aa_734e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_405f_f4aa_734e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_405f_f4aa_734e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_405f_f4aa_734e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_405f_f4aa_734e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab4e_5a3b_94f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab4e_5a3b_94f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab4e_5a3b_94f0/request", "", "public", "Top Dataset, enh, vairt.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab4e_5a3b_94f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab4e_5a3b_94f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab4e_5a3b_94f0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab4e_5a3b_94f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab4e_5a3b_94f0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ab4e_5a3b_94f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d28c_c8fd_85c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d28c_c8fd_85c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d28c_c8fd_85c6/request", "", "public", "Top Dataset, enh, vairt.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d28c_c8fd_85c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d28c_c8fd_85c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d28c_c8fd_85c6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d28c_c8fd_85c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d28c_c8fd_85c6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d28c_c8fd_85c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cca3_3833_9cab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cca3_3833_9cab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cca3_3833_9cab/request", "", "public", "Top Dataset, enh, vairt.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cca3_3833_9cab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cca3_3833_9cab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cca3_3833_9cab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cca3_3833_9cab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cca3_3833_9cab&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cca3_3833_9cab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4cca_9854_db14", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4cca_9854_db14.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4cca_9854_db14/request", "", "public", "Top Dataset, enh, vairt.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4cca_9854_db14_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4cca_9854_db14_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4cca_9854_db14/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4cca_9854_db14.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4cca_9854_db14&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4cca_9854_db14"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b93a_5fd4_528b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b93a_5fd4_528b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b93a_5fd4_528b/request", "", "public", "Top Dataset, enh, vairt.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b93a_5fd4_528b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b93a_5fd4_528b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b93a_5fd4_528b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b93a_5fd4_528b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b93a_5fd4_528b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b93a_5fd4_528b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a071_3e87_c521", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a071_3e87_c521.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a071_3e87_c521/request", "", "public", "Top Dataset, enh, vairt.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a071_3e87_c521_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a071_3e87_c521_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a071_3e87_c521/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a071_3e87_c521.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a071_3e87_c521&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a071_3e87_c521"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15ec_daf6_4bf1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15ec_daf6_4bf1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_15ec_daf6_4bf1/request", "", "public", "Top Dataset, enh, vairt.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_15ec_daf6_4bf1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_15ec_daf6_4bf1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_15ec_daf6_4bf1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_15ec_daf6_4bf1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_15ec_daf6_4bf1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_15ec_daf6_4bf1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9051_f480_fc2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9051_f480_fc2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9051_f480_fc2d/request", "", "public", "Top Dataset, enh, vairt.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9051_f480_fc2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9051_f480_fc2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9051_f480_fc2d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9051_f480_fc2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9051_f480_fc2d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9051_f480_fc2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_052c_693d_c6d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_052c_693d_c6d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_052c_693d_c6d5/request", "", "public", "Top Dataset, enh, vairt.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_052c_693d_c6d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_052c_693d_c6d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_052c_693d_c6d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_052c_693d_c6d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_052c_693d_c6d5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_052c_693d_c6d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e68_b9f3_49f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e68_b9f3_49f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4e68_b9f3_49f3/request", "", "public", "Top Dataset, enh, vairt.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4e68_b9f3_49f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4e68_b9f3_49f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4e68_b9f3_49f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4e68_b9f3_49f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4e68_b9f3_49f3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4e68_b9f3_49f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bcb8_fa11_0c0a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bcb8_fa11_0c0a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bcb8_fa11_0c0a/request", "", "public", "Top Dataset, enh, vairt.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bcb8_fa11_0c0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bcb8_fa11_0c0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bcb8_fa11_0c0a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bcb8_fa11_0c0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bcb8_fa11_0c0a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bcb8_fa11_0c0a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d697_6c85_45b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d697_6c85_45b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d697_6c85_45b7/request", "", "public", "Top Dataset, enh, vairt.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d697_6c85_45b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d697_6c85_45b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d697_6c85_45b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d697_6c85_45b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d697_6c85_45b7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d697_6c85_45b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3192_8e55_48a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3192_8e55_48a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3192_8e55_48a0/request", "", "public", "Top Dataset, enh, vairt.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3192_8e55_48a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3192_8e55_48a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3192_8e55_48a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3192_8e55_48a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3192_8e55_48a0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3192_8e55_48a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8141_9aaa_3231", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8141_9aaa_3231.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8141_9aaa_3231/request", "", "public", "Top Dataset, enh, vairt.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8141_9aaa_3231_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8141_9aaa_3231_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8141_9aaa_3231/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8141_9aaa_3231.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8141_9aaa_3231&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8141_9aaa_3231"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a80b_2d2d_3330", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a80b_2d2d_3330.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a80b_2d2d_3330/request", "", "public", "Top Dataset, enh, vairt.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a80b_2d2d_3330_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a80b_2d2d_3330_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a80b_2d2d_3330/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a80b_2d2d_3330.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a80b_2d2d_3330&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a80b_2d2d_3330"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_572f_809a_1c73", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_572f_809a_1c73.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_572f_809a_1c73/request", "", "public", "Top Dataset, enh, vairt.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_572f_809a_1c73_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_572f_809a_1c73_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_572f_809a_1c73/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_572f_809a_1c73.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_572f_809a_1c73&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_572f_809a_1c73"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_62da_c78b_0b84", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_62da_c78b_0b84.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_62da_c78b_0b84/request", "", "public", "Top Dataset, enh, vairt.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_62da_c78b_0b84_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_62da_c78b_0b84_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_62da_c78b_0b84/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_62da_c78b_0b84.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_62da_c78b_0b84&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_62da_c78b_0b84"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a46_16c8_72c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a46_16c8_72c5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a46_16c8_72c5/request", "", "public", "Top Dataset, enh, vairt.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a46_16c8_72c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a46_16c8_72c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a46_16c8_72c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a46_16c8_72c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a46_16c8_72c5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0a46_16c8_72c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22be_10a2_d507", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22be_10a2_d507.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_22be_10a2_d507/request", "", "public", "Top Dataset, enh, vairt.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_22be_10a2_d507_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_22be_10a2_d507_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_22be_10a2_d507/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_22be_10a2_d507.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_22be_10a2_d507&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_22be_10a2_d507"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bdc_5bb0_1d46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bdc_5bb0_1d46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2bdc_5bb0_1d46/request", "", "public", "Top Dataset, enh, vairt.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2bdc_5bb0_1d46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2bdc_5bb0_1d46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2bdc_5bb0_1d46/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2bdc_5bb0_1d46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2bdc_5bb0_1d46&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2bdc_5bb0_1d46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f570_f1fb_cb01", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f570_f1fb_cb01.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f570_f1fb_cb01/request", "", "public", "Top Dataset, enh, vairt.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f570_f1fb_cb01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f570_f1fb_cb01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f570_f1fb_cb01/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f570_f1fb_cb01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f570_f1fb_cb01&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f570_f1fb_cb01"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12d8_904f_66a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12d8_904f_66a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_12d8_904f_66a1/request", "", "public", "Top Dataset, enh, vairt.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_12d8_904f_66a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_12d8_904f_66a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_12d8_904f_66a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_12d8_904f_66a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_12d8_904f_66a1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_12d8_904f_66a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a617_5b5c_ff1c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a617_5b5c_ff1c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a617_5b5c_ff1c/request", "", "public", "Top Dataset, enh, vairt.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a617_5b5c_ff1c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a617_5b5c_ff1c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a617_5b5c_ff1c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a617_5b5c_ff1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a617_5b5c_ff1c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a617_5b5c_ff1c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b3d_fb73_6faf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b3d_fb73_6faf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b3d_fb73_6faf/request", "", "public", "Top Dataset, enh, vairt.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b3d_fb73_6faf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b3d_fb73_6faf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b3d_fb73_6faf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b3d_fb73_6faf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b3d_fb73_6faf&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7b3d_fb73_6faf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0820_92f9_49a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0820_92f9_49a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0820_92f9_49a7/request", "", "public", "Top Dataset, enh, vairt.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0820_92f9_49a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0820_92f9_49a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0820_92f9_49a7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0820_92f9_49a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0820_92f9_49a7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0820_92f9_49a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4cf0_412b_f140", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4cf0_412b_f140.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4cf0_412b_f140/request", "", "public", "Top Dataset, enh, vairt.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4cf0_412b_f140_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4cf0_412b_f140_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4cf0_412b_f140/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4cf0_412b_f140.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4cf0_412b_f140&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4cf0_412b_f140"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c25_0be4_91bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c25_0be4_91bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3c25_0be4_91bf/request", "", "public", "Top Dataset, enh, vairt.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3c25_0be4_91bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3c25_0be4_91bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c25_0be4_91bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c25_0be4_91bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c25_0be4_91bf&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3c25_0be4_91bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a19_5557_a034", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a19_5557_a034.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a19_5557_a034/request", "", "public", "Top Dataset, enh, vairt.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a19_5557_a034_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a19_5557_a034_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a19_5557_a034/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a19_5557_a034.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a19_5557_a034&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6a19_5557_a034"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad98_3dfd_d374", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad98_3dfd_d374.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ad98_3dfd_d374/request", "", "public", "Top Dataset, enh, vairt.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ad98_3dfd_d374_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ad98_3dfd_d374_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ad98_3dfd_d374/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ad98_3dfd_d374.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ad98_3dfd_d374&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ad98_3dfd_d374"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8638_3457_91af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8638_3457_91af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8638_3457_91af/request", "", "public", "Top Dataset, enh, vairt.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8638_3457_91af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8638_3457_91af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8638_3457_91af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8638_3457_91af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8638_3457_91af&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8638_3457_91af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fd4_fbfd_4f04", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fd4_fbfd_4f04.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8fd4_fbfd_4f04/request", "", "public", "Top Dataset, enh, vairt.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8fd4_fbfd_4f04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8fd4_fbfd_4f04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8fd4_fbfd_4f04/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8fd4_fbfd_4f04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8fd4_fbfd_4f04&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8fd4_fbfd_4f04"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d833_2dd4_8e8f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d833_2dd4_8e8f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d833_2dd4_8e8f/request", "", "public", "Top Dataset, enh, vairt.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d833_2dd4_8e8f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d833_2dd4_8e8f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d833_2dd4_8e8f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d833_2dd4_8e8f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d833_2dd4_8e8f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d833_2dd4_8e8f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6845_97ef_8eeb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6845_97ef_8eeb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6845_97ef_8eeb/request", "", "public", "Top Dataset, enh, vairt.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6845_97ef_8eeb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6845_97ef_8eeb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6845_97ef_8eeb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6845_97ef_8eeb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6845_97ef_8eeb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6845_97ef_8eeb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08dd_a8f6_7b65", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08dd_a8f6_7b65.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_08dd_a8f6_7b65/request", "", "public", "Top Dataset, enh, vairt.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_08dd_a8f6_7b65_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_08dd_a8f6_7b65_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_08dd_a8f6_7b65/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_08dd_a8f6_7b65.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_08dd_a8f6_7b65&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_08dd_a8f6_7b65"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5c0_65a6_e6a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5c0_65a6_e6a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f5c0_65a6_e6a1/request", "", "public", "Top Dataset, enh, vairt.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f5c0_65a6_e6a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f5c0_65a6_e6a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f5c0_65a6_e6a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f5c0_65a6_e6a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f5c0_65a6_e6a1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f5c0_65a6_e6a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_32fe_426a_3c54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_32fe_426a_3c54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_32fe_426a_3c54/request", "", "public", "Top Dataset, enh, vairt.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_32fe_426a_3c54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_32fe_426a_3c54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_32fe_426a_3c54/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_32fe_426a_3c54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_32fe_426a_3c54&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_32fe_426a_3c54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f09_9c2b_4c97", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f09_9c2b_4c97.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f09_9c2b_4c97/request", "", "public", "Top Dataset, enh, vairt.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f09_9c2b_4c97_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f09_9c2b_4c97_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f09_9c2b_4c97/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f09_9c2b_4c97.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f09_9c2b_4c97&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2f09_9c2b_4c97"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ad6_ad18_fe3e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ad6_ad18_fe3e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6ad6_ad18_fe3e/request", "", "public", "Top Dataset, enh, vairt.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6ad6_ad18_fe3e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6ad6_ad18_fe3e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ad6_ad18_fe3e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ad6_ad18_fe3e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ad6_ad18_fe3e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6ad6_ad18_fe3e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bec4_2e9b_c448", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bec4_2e9b_c448.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bec4_2e9b_c448/request", "", "public", "Top Dataset, enh, vairt.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bec4_2e9b_c448_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bec4_2e9b_c448_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bec4_2e9b_c448/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bec4_2e9b_c448.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bec4_2e9b_c448&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bec4_2e9b_c448"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a34_5bee_f513", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a34_5bee_f513.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1a34_5bee_f513/request", "", "public", "Top Dataset, enh, vairt.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1a34_5bee_f513_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1a34_5bee_f513_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1a34_5bee_f513/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1a34_5bee_f513.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1a34_5bee_f513&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1a34_5bee_f513"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d731_90f6_2105", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d731_90f6_2105.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d731_90f6_2105/request", "", "public", "Top Dataset, enh, vairt.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d731_90f6_2105_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d731_90f6_2105_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d731_90f6_2105/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d731_90f6_2105.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d731_90f6_2105&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d731_90f6_2105"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_921a_def7_d8a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_921a_def7_d8a8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_921a_def7_d8a8/request", "", "public", "Top Dataset, enh, vairt.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_921a_def7_d8a8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_921a_def7_d8a8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_921a_def7_d8a8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_921a_def7_d8a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_921a_def7_d8a8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_921a_def7_d8a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dd4_58fc_7737", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dd4_58fc_7737.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5dd4_58fc_7737/request", "", "public", "Top Dataset, enh, vairt.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5dd4_58fc_7737_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5dd4_58fc_7737_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5dd4_58fc_7737/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5dd4_58fc_7737.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5dd4_58fc_7737&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5dd4_58fc_7737"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c2ae_143b_5483", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c2ae_143b_5483.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c2ae_143b_5483/request", "", "public", "Top Dataset, enh, vairt.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c2ae_143b_5483_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c2ae_143b_5483_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c2ae_143b_5483/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c2ae_143b_5483.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c2ae_143b_5483&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c2ae_143b_5483"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9dbf_1856_af0f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9dbf_1856_af0f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9dbf_1856_af0f/request", "", "public", "Top Dataset, enh, vairt.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9dbf_1856_af0f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9dbf_1856_af0f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9dbf_1856_af0f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9dbf_1856_af0f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9dbf_1856_af0f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9dbf_1856_af0f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_721d_586e_a964", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_721d_586e_a964.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_721d_586e_a964/request", "", "public", "Top Dataset, enh, vairt.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_721d_586e_a964_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_721d_586e_a964_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_721d_586e_a964/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_721d_586e_a964.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_721d_586e_a964&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_721d_586e_a964"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe71_265f_c5e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe71_265f_c5e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fe71_265f_c5e2/request", "", "public", "Top Dataset, enh, vairt.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fe71_265f_c5e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fe71_265f_c5e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fe71_265f_c5e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fe71_265f_c5e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fe71_265f_c5e2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fe71_265f_c5e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ba2_97f0_f85a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ba2_97f0_f85a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9ba2_97f0_f85a/request", "", "public", "Top Dataset, enh, vairt.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9ba2_97f0_f85a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9ba2_97f0_f85a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9ba2_97f0_f85a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9ba2_97f0_f85a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9ba2_97f0_f85a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9ba2_97f0_f85a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7fc_b37a_0ddf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7fc_b37a_0ddf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e7fc_b37a_0ddf/request", "", "public", "Top Dataset, enh, vairt.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e7fc_b37a_0ddf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e7fc_b37a_0ddf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e7fc_b37a_0ddf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e7fc_b37a_0ddf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e7fc_b37a_0ddf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e7fc_b37a_0ddf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbde_f22a_046a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbde_f22a_046a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fbde_f22a_046a/request", "", "public", "Top Dataset, enh, vairt.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fbde_f22a_046a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fbde_f22a_046a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fbde_f22a_046a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fbde_f22a_046a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fbde_f22a_046a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fbde_f22a_046a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cc0_41d5_38fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cc0_41d5_38fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2cc0_41d5_38fd/request", "", "public", "Top Dataset, enh, vairt.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2cc0_41d5_38fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2cc0_41d5_38fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2cc0_41d5_38fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2cc0_41d5_38fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2cc0_41d5_38fd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2cc0_41d5_38fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c89_b931_77b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c89_b931_77b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2c89_b931_77b5/request", "", "public", "Top Dataset, enh, vairt.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2c89_b931_77b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2c89_b931_77b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2c89_b931_77b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2c89_b931_77b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2c89_b931_77b5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2c89_b931_77b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b99e_17e5_598f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b99e_17e5_598f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b99e_17e5_598f/request", "", "public", "Top Dataset, enh, vairt.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b99e_17e5_598f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b99e_17e5_598f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b99e_17e5_598f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b99e_17e5_598f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b99e_17e5_598f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b99e_17e5_598f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63a5_f751_44c8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63a5_f751_44c8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_63a5_f751_44c8/request", "", "public", "Top Dataset, enh, vairt.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_63a5_f751_44c8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_63a5_f751_44c8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_63a5_f751_44c8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_63a5_f751_44c8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_63a5_f751_44c8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_63a5_f751_44c8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0a6_5c69_5188", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0a6_5c69_5188.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c0a6_5c69_5188/request", "", "public", "Top Dataset, enh, vairt.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c0a6_5c69_5188_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c0a6_5c69_5188_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c0a6_5c69_5188/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c0a6_5c69_5188.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c0a6_5c69_5188&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c0a6_5c69_5188"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c585_f4de_6801", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c585_f4de_6801.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c585_f4de_6801/request", "", "public", "Top Dataset, enh, vairt.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c585_f4de_6801_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c585_f4de_6801_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c585_f4de_6801/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c585_f4de_6801.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c585_f4de_6801&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c585_f4de_6801"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c68e_c648_49a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c68e_c648_49a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c68e_c648_49a1/request", "", "public", "Top Dataset, enh, vairt.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c68e_c648_49a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c68e_c648_49a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c68e_c648_49a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c68e_c648_49a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c68e_c648_49a1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c68e_c648_49a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_553e_39bf_bd7f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_553e_39bf_bd7f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_553e_39bf_bd7f/request", "", "public", "Top Dataset, enh, vairt.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_553e_39bf_bd7f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_553e_39bf_bd7f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_553e_39bf_bd7f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_553e_39bf_bd7f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_553e_39bf_bd7f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_553e_39bf_bd7f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9da_7f29_0a8e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9da_7f29_0a8e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a9da_7f29_0a8e/request", "", "public", "Top Dataset, enh, vairt.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9da_7f29_0a8e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9da_7f29_0a8e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9da_7f29_0a8e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9da_7f29_0a8e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9da_7f29_0a8e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a9da_7f29_0a8e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14a1_eee9_e25f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14a1_eee9_e25f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_14a1_eee9_e25f/request", "", "public", "Top Dataset, enh, vlflx.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_14a1_eee9_e25f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_14a1_eee9_e25f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_14a1_eee9_e25f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_14a1_eee9_e25f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_14a1_eee9_e25f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_14a1_eee9_e25f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22f1_f04b_c035", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22f1_f04b_c035.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_22f1_f04b_c035/request", "", "public", "Top Dataset, enh, vlflx.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_22f1_f04b_c035_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_22f1_f04b_c035_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_22f1_f04b_c035/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_22f1_f04b_c035.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_22f1_f04b_c035&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_22f1_f04b_c035"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8bc2_1220_fd97", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8bc2_1220_fd97.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8bc2_1220_fd97/request", "", "public", "Top Dataset, enh, vlflx.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8bc2_1220_fd97_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8bc2_1220_fd97_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8bc2_1220_fd97/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8bc2_1220_fd97.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8bc2_1220_fd97&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8bc2_1220_fd97"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc96_529a_cddb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc96_529a_cddb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc96_529a_cddb/request", "", "public", "Top Dataset, enh, vlflx.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc96_529a_cddb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc96_529a_cddb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc96_529a_cddb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc96_529a_cddb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc96_529a_cddb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fc96_529a_cddb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ab0_0f6c_19cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ab0_0f6c_19cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ab0_0f6c_19cb/request", "", "public", "Top Dataset, enh, vlflx.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ab0_0f6c_19cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ab0_0f6c_19cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ab0_0f6c_19cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ab0_0f6c_19cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ab0_0f6c_19cb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1ab0_0f6c_19cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ad6_d3c2_c3ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ad6_d3c2_c3ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ad6_d3c2_c3ce/request", "", "public", "Top Dataset, enh, vlflx.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ad6_d3c2_c3ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ad6_d3c2_c3ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ad6_d3c2_c3ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ad6_d3c2_c3ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ad6_d3c2_c3ce&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5ad6_d3c2_c3ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c6e1_9199_b3f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c6e1_9199_b3f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c6e1_9199_b3f9/request", "", "public", "Top Dataset, enh, vlflx.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c6e1_9199_b3f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c6e1_9199_b3f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c6e1_9199_b3f9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c6e1_9199_b3f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c6e1_9199_b3f9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c6e1_9199_b3f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c45_9ebc_f38c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c45_9ebc_f38c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7c45_9ebc_f38c/request", "", "public", "Top Dataset, enh, vlflx.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7c45_9ebc_f38c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7c45_9ebc_f38c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7c45_9ebc_f38c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7c45_9ebc_f38c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7c45_9ebc_f38c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7c45_9ebc_f38c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ec2_308f_fd45", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ec2_308f_fd45.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ec2_308f_fd45/request", "", "public", "Top Dataset, enh, vlflx.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ec2_308f_fd45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ec2_308f_fd45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ec2_308f_fd45/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ec2_308f_fd45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ec2_308f_fd45&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8ec2_308f_fd45"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a06b_9db4_49b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a06b_9db4_49b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a06b_9db4_49b7/request", "", "public", "Top Dataset, enh, vlflx.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a06b_9db4_49b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a06b_9db4_49b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a06b_9db4_49b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a06b_9db4_49b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a06b_9db4_49b7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a06b_9db4_49b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f019_c7a8_45db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f019_c7a8_45db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f019_c7a8_45db/request", "", "public", "Top Dataset, enh, vlflx.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f019_c7a8_45db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f019_c7a8_45db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f019_c7a8_45db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f019_c7a8_45db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f019_c7a8_45db&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f019_c7a8_45db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc1a_2102_1d81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc1a_2102_1d81.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc1a_2102_1d81/request", "", "public", "Top Dataset, enh, vlflx.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc1a_2102_1d81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc1a_2102_1d81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc1a_2102_1d81/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc1a_2102_1d81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc1a_2102_1d81&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fc1a_2102_1d81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88f6_2e88_a6ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88f6_2e88_a6ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_88f6_2e88_a6ee/request", "", "public", "Top Dataset, enh, vlflx.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_88f6_2e88_a6ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_88f6_2e88_a6ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_88f6_2e88_a6ee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_88f6_2e88_a6ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_88f6_2e88_a6ee&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_88f6_2e88_a6ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9dc9_b54a_23bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9dc9_b54a_23bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9dc9_b54a_23bb/request", "", "public", "Top Dataset, enh, vlflx.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9dc9_b54a_23bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9dc9_b54a_23bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9dc9_b54a_23bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9dc9_b54a_23bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9dc9_b54a_23bb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9dc9_b54a_23bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a139_4336_b99c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a139_4336_b99c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a139_4336_b99c/request", "", "public", "Top Dataset, enh, vlflx.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a139_4336_b99c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a139_4336_b99c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a139_4336_b99c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a139_4336_b99c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a139_4336_b99c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a139_4336_b99c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e48_1313_fe28", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e48_1313_fe28.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1e48_1313_fe28/request", "", "public", "Top Dataset, enh, vlflx.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1e48_1313_fe28_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1e48_1313_fe28_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1e48_1313_fe28/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1e48_1313_fe28.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1e48_1313_fe28&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1e48_1313_fe28"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71e4_d903_cd28", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71e4_d903_cd28.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_71e4_d903_cd28/request", "", "public", "Top Dataset, enh, vlflx.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_71e4_d903_cd28_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_71e4_d903_cd28_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_71e4_d903_cd28/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_71e4_d903_cd28.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_71e4_d903_cd28&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_71e4_d903_cd28"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a6d9_c79a_5b43", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a6d9_c79a_5b43.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a6d9_c79a_5b43/request", "", "public", "Top Dataset, enh, vlflx.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a6d9_c79a_5b43_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a6d9_c79a_5b43_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a6d9_c79a_5b43/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a6d9_c79a_5b43.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a6d9_c79a_5b43&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a6d9_c79a_5b43"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02da_d849_10e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02da_d849_10e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_02da_d849_10e0/request", "", "public", "Top Dataset, enh, vlflx.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_02da_d849_10e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_02da_d849_10e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_02da_d849_10e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_02da_d849_10e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_02da_d849_10e0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_02da_d849_10e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c76_4af8_02ad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c76_4af8_02ad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1c76_4af8_02ad/request", "", "public", "Top Dataset, enh, vlflx.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1c76_4af8_02ad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1c76_4af8_02ad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1c76_4af8_02ad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1c76_4af8_02ad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1c76_4af8_02ad&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1c76_4af8_02ad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99e5_ef05_acde", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99e5_ef05_acde.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99e5_ef05_acde/request", "", "public", "Top Dataset, enh, vlflx.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99e5_ef05_acde_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99e5_ef05_acde_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99e5_ef05_acde/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99e5_ef05_acde.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99e5_ef05_acde&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_99e5_ef05_acde"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d43a_29ff_c840", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d43a_29ff_c840.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d43a_29ff_c840/request", "", "public", "Top Dataset, enh, vlflx.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d43a_29ff_c840_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d43a_29ff_c840_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d43a_29ff_c840/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d43a_29ff_c840.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d43a_29ff_c840&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d43a_29ff_c840"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0ae_0a18_0831", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0ae_0a18_0831.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a0ae_0a18_0831/request", "", "public", "Top Dataset, enh, vlflx.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a0ae_0a18_0831_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a0ae_0a18_0831_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a0ae_0a18_0831/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a0ae_0a18_0831.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a0ae_0a18_0831&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a0ae_0a18_0831"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be50_108b_60e7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be50_108b_60e7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_be50_108b_60e7/request", "", "public", "Top Dataset, enh, vlflx.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_be50_108b_60e7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_be50_108b_60e7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_be50_108b_60e7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_be50_108b_60e7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_be50_108b_60e7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_be50_108b_60e7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_617a_15af_6ec8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_617a_15af_6ec8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_617a_15af_6ec8/request", "", "public", "Top Dataset, enh, vlflx.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_617a_15af_6ec8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_617a_15af_6ec8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_617a_15af_6ec8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_617a_15af_6ec8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_617a_15af_6ec8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_617a_15af_6ec8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cf2_8df6_60c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cf2_8df6_60c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8cf2_8df6_60c4/request", "", "public", "Top Dataset, enh, vlflx.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8cf2_8df6_60c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8cf2_8df6_60c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8cf2_8df6_60c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8cf2_8df6_60c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8cf2_8df6_60c4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8cf2_8df6_60c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f88f_aab7_ec5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f88f_aab7_ec5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f88f_aab7_ec5f/request", "", "public", "Top Dataset, enh, vlflx.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f88f_aab7_ec5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f88f_aab7_ec5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f88f_aab7_ec5f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f88f_aab7_ec5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f88f_aab7_ec5f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f88f_aab7_ec5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1194_56d6_8fc8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1194_56d6_8fc8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1194_56d6_8fc8/request", "", "public", "Top Dataset, enh, vlflx.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1194_56d6_8fc8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1194_56d6_8fc8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1194_56d6_8fc8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1194_56d6_8fc8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1194_56d6_8fc8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1194_56d6_8fc8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6896_57fc_f0d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6896_57fc_f0d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6896_57fc_f0d4/request", "", "public", "Top Dataset, enh, vlflx.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6896_57fc_f0d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6896_57fc_f0d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6896_57fc_f0d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6896_57fc_f0d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6896_57fc_f0d4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6896_57fc_f0d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c42d_2ec0_939b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c42d_2ec0_939b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c42d_2ec0_939b/request", "", "public", "Top Dataset, enh, vlflx.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c42d_2ec0_939b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c42d_2ec0_939b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c42d_2ec0_939b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c42d_2ec0_939b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c42d_2ec0_939b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c42d_2ec0_939b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0fa_5959_bac2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0fa_5959_bac2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e0fa_5959_bac2/request", "", "public", "Top Dataset, enh, vlflx.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e0fa_5959_bac2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e0fa_5959_bac2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e0fa_5959_bac2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e0fa_5959_bac2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e0fa_5959_bac2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e0fa_5959_bac2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_183b_254a_cf7c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_183b_254a_cf7c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_183b_254a_cf7c/request", "", "public", "Top Dataset, enh, vlflx.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_183b_254a_cf7c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_183b_254a_cf7c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_183b_254a_cf7c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_183b_254a_cf7c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_183b_254a_cf7c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_183b_254a_cf7c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9915_4379_4684", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9915_4379_4684.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9915_4379_4684/request", "", "public", "Top Dataset, enh, vlflx.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9915_4379_4684_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9915_4379_4684_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9915_4379_4684/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9915_4379_4684.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9915_4379_4684&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9915_4379_4684"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4722_b04b_f11c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4722_b04b_f11c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4722_b04b_f11c/request", "", "public", "Top Dataset, enh, vlflx.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4722_b04b_f11c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4722_b04b_f11c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4722_b04b_f11c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4722_b04b_f11c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4722_b04b_f11c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4722_b04b_f11c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a5d_117d_977e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a5d_117d_977e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a5d_117d_977e/request", "", "public", "Top Dataset, enh, vlflx.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a5d_117d_977e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a5d_117d_977e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a5d_117d_977e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a5d_117d_977e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a5d_117d_977e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0a5d_117d_977e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3845_8eb5_b7a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3845_8eb5_b7a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3845_8eb5_b7a2/request", "", "public", "Top Dataset, enh, vlflx.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3845_8eb5_b7a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3845_8eb5_b7a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3845_8eb5_b7a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3845_8eb5_b7a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3845_8eb5_b7a2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3845_8eb5_b7a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0c1_17da_2b85", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0c1_17da_2b85.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e0c1_17da_2b85/request", "", "public", "Top Dataset, enh, vlflx.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e0c1_17da_2b85_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e0c1_17da_2b85_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e0c1_17da_2b85/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e0c1_17da_2b85.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e0c1_17da_2b85&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e0c1_17da_2b85"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c31e_2051_b7e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c31e_2051_b7e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c31e_2051_b7e3/request", "", "public", "Top Dataset, enh, vlflx.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c31e_2051_b7e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c31e_2051_b7e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c31e_2051_b7e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c31e_2051_b7e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c31e_2051_b7e3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c31e_2051_b7e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c554_145d_0319", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c554_145d_0319.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c554_145d_0319/request", "", "public", "Top Dataset, enh, vlflx.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c554_145d_0319_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c554_145d_0319_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c554_145d_0319/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c554_145d_0319.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c554_145d_0319&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c554_145d_0319"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71a7_af2c_0343", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71a7_af2c_0343.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_71a7_af2c_0343/request", "", "public", "Top Dataset, enh, vlflx.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_71a7_af2c_0343_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_71a7_af2c_0343_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_71a7_af2c_0343/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_71a7_af2c_0343.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_71a7_af2c_0343&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_71a7_af2c_0343"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b3e_3cd3_f99e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b3e_3cd3_f99e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2b3e_3cd3_f99e/request", "", "public", "Top Dataset, enh, vlflx.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2b3e_3cd3_f99e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2b3e_3cd3_f99e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2b3e_3cd3_f99e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2b3e_3cd3_f99e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2b3e_3cd3_f99e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2b3e_3cd3_f99e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57d3_94ea_4b85", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57d3_94ea_4b85.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_57d3_94ea_4b85/request", "", "public", "Top Dataset, enh, vlflx.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_57d3_94ea_4b85_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_57d3_94ea_4b85_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_57d3_94ea_4b85/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_57d3_94ea_4b85.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_57d3_94ea_4b85&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_57d3_94ea_4b85"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f7d_ab0a_e6b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f7d_ab0a_e6b1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3f7d_ab0a_e6b1/request", "", "public", "Top Dataset, enh, vlflx.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3f7d_ab0a_e6b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3f7d_ab0a_e6b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3f7d_ab0a_e6b1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3f7d_ab0a_e6b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3f7d_ab0a_e6b1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3f7d_ab0a_e6b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c2c3_ffb3_646d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c2c3_ffb3_646d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c2c3_ffb3_646d/request", "", "public", "Top Dataset, enh, vlflx.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c2c3_ffb3_646d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c2c3_ffb3_646d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c2c3_ffb3_646d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c2c3_ffb3_646d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c2c3_ffb3_646d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c2c3_ffb3_646d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8ec_9f55_6374", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8ec_9f55_6374.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d8ec_9f55_6374/request", "", "public", "Top Dataset, enh, vlflx.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d8ec_9f55_6374_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d8ec_9f55_6374_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d8ec_9f55_6374/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d8ec_9f55_6374.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d8ec_9f55_6374&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d8ec_9f55_6374"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f16_1a0e_5b61", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f16_1a0e_5b61.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5f16_1a0e_5b61/request", "", "public", "Top Dataset, enh, vlflx.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5f16_1a0e_5b61_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5f16_1a0e_5b61_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5f16_1a0e_5b61/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5f16_1a0e_5b61.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5f16_1a0e_5b61&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5f16_1a0e_5b61"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81af_6113_9951", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81af_6113_9951.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_81af_6113_9951/request", "", "public", "Top Dataset, enh, vlflx.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_81af_6113_9951_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_81af_6113_9951_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_81af_6113_9951/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_81af_6113_9951.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_81af_6113_9951&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_81af_6113_9951"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86a7_9a93_30d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86a7_9a93_30d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_86a7_9a93_30d7/request", "", "public", "Top Dataset, enh, vlflx.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86a7_9a93_30d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86a7_9a93_30d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86a7_9a93_30d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86a7_9a93_30d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86a7_9a93_30d7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_86a7_9a93_30d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8adc_117a_0bbc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8adc_117a_0bbc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8adc_117a_0bbc/request", "", "public", "Top Dataset, enh, vlflx.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8adc_117a_0bbc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8adc_117a_0bbc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8adc_117a_0bbc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8adc_117a_0bbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8adc_117a_0bbc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8adc_117a_0bbc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7780_dd7b_6dc7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7780_dd7b_6dc7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7780_dd7b_6dc7/request", "", "public", "Top Dataset, enh, vlflx.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7780_dd7b_6dc7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7780_dd7b_6dc7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7780_dd7b_6dc7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7780_dd7b_6dc7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7780_dd7b_6dc7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7780_dd7b_6dc7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c40b_56ae_d8e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c40b_56ae_d8e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c40b_56ae_d8e2/request", "", "public", "Top Dataset, enh, vlflx.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c40b_56ae_d8e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c40b_56ae_d8e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c40b_56ae_d8e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c40b_56ae_d8e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c40b_56ae_d8e2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c40b_56ae_d8e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f603_e7a7_0d59", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f603_e7a7_0d59.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f603_e7a7_0d59/request", "", "public", "Top Dataset, enh, vlflx.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f603_e7a7_0d59_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f603_e7a7_0d59_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f603_e7a7_0d59/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f603_e7a7_0d59.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f603_e7a7_0d59&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f603_e7a7_0d59"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2088_f6c0_11f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2088_f6c0_11f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2088_f6c0_11f2/request", "", "public", "Top Dataset, enh, vlflx.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2088_f6c0_11f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2088_f6c0_11f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2088_f6c0_11f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2088_f6c0_11f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2088_f6c0_11f2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2088_f6c0_11f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d72_9abb_a0ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d72_9abb_a0ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2d72_9abb_a0ff/request", "", "public", "Top Dataset, enh, vlflx.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2d72_9abb_a0ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2d72_9abb_a0ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d72_9abb_a0ff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d72_9abb_a0ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d72_9abb_a0ff&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2d72_9abb_a0ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e671_a729_a0a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e671_a729_a0a8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e671_a729_a0a8/request", "", "public", "Top Dataset, enh, vlflx.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e671_a729_a0a8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e671_a729_a0a8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e671_a729_a0a8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e671_a729_a0a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e671_a729_a0a8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e671_a729_a0a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8834_1788_5de2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8834_1788_5de2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8834_1788_5de2/request", "", "public", "Top Dataset, enh, vlflx.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8834_1788_5de2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8834_1788_5de2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8834_1788_5de2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8834_1788_5de2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8834_1788_5de2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8834_1788_5de2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c63_d0dd_6818", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c63_d0dd_6818.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c63_d0dd_6818/request", "", "public", "Top Dataset, enh, vlflx.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c63_d0dd_6818_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c63_d0dd_6818_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c63_d0dd_6818/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c63_d0dd_6818.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c63_d0dd_6818&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9c63_d0dd_6818"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9861_1edc_a67a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9861_1edc_a67a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9861_1edc_a67a/request", "", "public", "Top Dataset, enh, vlflx.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9861_1edc_a67a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9861_1edc_a67a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9861_1edc_a67a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9861_1edc_a67a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9861_1edc_a67a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9861_1edc_a67a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88e2_e068_5971", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88e2_e068_5971.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_88e2_e068_5971/request", "", "public", "Top Dataset, enh, vlflx.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_88e2_e068_5971_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_88e2_e068_5971_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_88e2_e068_5971/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_88e2_e068_5971.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_88e2_e068_5971&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_88e2_e068_5971"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9fd6_c2c2_3d40", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9fd6_c2c2_3d40.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9fd6_c2c2_3d40/request", "", "public", "Top Dataset, enh, vlflx.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9fd6_c2c2_3d40_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9fd6_c2c2_3d40_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9fd6_c2c2_3d40/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9fd6_c2c2_3d40.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9fd6_c2c2_3d40&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9fd6_c2c2_3d40"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c52b_4a52_8bd8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c52b_4a52_8bd8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c52b_4a52_8bd8/request", "", "public", "Top Dataset, enh, vlflx.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c52b_4a52_8bd8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c52b_4a52_8bd8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c52b_4a52_8bd8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c52b_4a52_8bd8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c52b_4a52_8bd8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c52b_4a52_8bd8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4798_1206_b408", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4798_1206_b408.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4798_1206_b408/request", "", "public", "Top Dataset, enh, vlflx.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4798_1206_b408_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4798_1206_b408_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4798_1206_b408/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4798_1206_b408.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4798_1206_b408&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4798_1206_b408"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c03c_1a72_9a10", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c03c_1a72_9a10.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c03c_1a72_9a10/request", "", "public", "Top Dataset, enh, vlflx.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c03c_1a72_9a10_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c03c_1a72_9a10_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c03c_1a72_9a10/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c03c_1a72_9a10.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c03c_1a72_9a10&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c03c_1a72_9a10"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fbb_3974_c27a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fbb_3974_c27a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1fbb_3974_c27a/request", "", "public", "Top Dataset, enh, vpstr.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1fbb_3974_c27a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1fbb_3974_c27a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1fbb_3974_c27a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1fbb_3974_c27a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1fbb_3974_c27a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1fbb_3974_c27a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ad8_1a45_7b42", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ad8_1a45_7b42.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0ad8_1a45_7b42/request", "", "public", "Top Dataset, enh, vpstr.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0ad8_1a45_7b42_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0ad8_1a45_7b42_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0ad8_1a45_7b42/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0ad8_1a45_7b42.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0ad8_1a45_7b42&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0ad8_1a45_7b42"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d808_a97c_f8c8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d808_a97c_f8c8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d808_a97c_f8c8/request", "", "public", "Top Dataset, enh, vpstr.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d808_a97c_f8c8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d808_a97c_f8c8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d808_a97c_f8c8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d808_a97c_f8c8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d808_a97c_f8c8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d808_a97c_f8c8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df08_3fa4_c85a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df08_3fa4_c85a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_df08_3fa4_c85a/request", "", "public", "Top Dataset, enh, vpstr.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_df08_3fa4_c85a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_df08_3fa4_c85a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_df08_3fa4_c85a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_df08_3fa4_c85a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_df08_3fa4_c85a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_df08_3fa4_c85a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0227_d18e_0477", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0227_d18e_0477.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0227_d18e_0477/request", "", "public", "Top Dataset, enh, vpstr.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0227_d18e_0477_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0227_d18e_0477_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0227_d18e_0477/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0227_d18e_0477.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0227_d18e_0477&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0227_d18e_0477"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba5b_7735_8ab8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba5b_7735_8ab8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ba5b_7735_8ab8/request", "", "public", "Top Dataset, enh, vpstr.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ba5b_7735_8ab8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ba5b_7735_8ab8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ba5b_7735_8ab8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ba5b_7735_8ab8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ba5b_7735_8ab8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ba5b_7735_8ab8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5dc_3115_5ad9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5dc_3115_5ad9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5dc_3115_5ad9/request", "", "public", "Top Dataset, enh, vpstr.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5dc_3115_5ad9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5dc_3115_5ad9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5dc_3115_5ad9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5dc_3115_5ad9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5dc_3115_5ad9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a5dc_3115_5ad9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c3f_4ab9_5419", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c3f_4ab9_5419.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c3f_4ab9_5419/request", "", "public", "Top Dataset, enh, vpstr.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c3f_4ab9_5419_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c3f_4ab9_5419_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c3f_4ab9_5419/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c3f_4ab9_5419.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c3f_4ab9_5419&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5c3f_4ab9_5419"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4ef_47df_ced8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4ef_47df_ced8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e4ef_47df_ced8/request", "", "public", "Top Dataset, enh, vpstr.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e4ef_47df_ced8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e4ef_47df_ced8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e4ef_47df_ced8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e4ef_47df_ced8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e4ef_47df_ced8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e4ef_47df_ced8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5167_e1b8_2a56", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5167_e1b8_2a56.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5167_e1b8_2a56/request", "", "public", "Top Dataset, enh, vpstr.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5167_e1b8_2a56_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5167_e1b8_2a56_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5167_e1b8_2a56/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5167_e1b8_2a56.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5167_e1b8_2a56&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5167_e1b8_2a56"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01e3_d80d_a5a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01e3_d80d_a5a8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_01e3_d80d_a5a8/request", "", "public", "Top Dataset, enh, vpstr.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_01e3_d80d_a5a8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_01e3_d80d_a5a8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_01e3_d80d_a5a8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_01e3_d80d_a5a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_01e3_d80d_a5a8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_01e3_d80d_a5a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8242_ecd4_1918", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8242_ecd4_1918.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8242_ecd4_1918/request", "", "public", "Top Dataset, enh, vpstr.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8242_ecd4_1918_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8242_ecd4_1918_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8242_ecd4_1918/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8242_ecd4_1918.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8242_ecd4_1918&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8242_ecd4_1918"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0835_2b68_4665", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0835_2b68_4665.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0835_2b68_4665/request", "", "public", "Top Dataset, enh, vpstr.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0835_2b68_4665_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0835_2b68_4665_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0835_2b68_4665/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0835_2b68_4665.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0835_2b68_4665&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0835_2b68_4665"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f9f_f294_5b53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f9f_f294_5b53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f9f_f294_5b53/request", "", "public", "Top Dataset, enh, vpstr.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f9f_f294_5b53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f9f_f294_5b53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f9f_f294_5b53/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f9f_f294_5b53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f9f_f294_5b53&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0f9f_f294_5b53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a68c_f685_78c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a68c_f685_78c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a68c_f685_78c1/request", "", "public", "Top Dataset, enh, vpstr.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a68c_f685_78c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a68c_f685_78c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a68c_f685_78c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a68c_f685_78c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a68c_f685_78c1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a68c_f685_78c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a278_7eab_94e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a278_7eab_94e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a278_7eab_94e6/request", "", "public", "Top Dataset, enh, vpstr.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a278_7eab_94e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a278_7eab_94e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a278_7eab_94e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a278_7eab_94e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a278_7eab_94e6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a278_7eab_94e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc52_1cf7_4248", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc52_1cf7_4248.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bc52_1cf7_4248/request", "", "public", "Top Dataset, enh, vpstr.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bc52_1cf7_4248_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bc52_1cf7_4248_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bc52_1cf7_4248/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bc52_1cf7_4248.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bc52_1cf7_4248&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bc52_1cf7_4248"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e359_f2bd_7ba1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e359_f2bd_7ba1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e359_f2bd_7ba1/request", "", "public", "Top Dataset, enh, vpstr.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e359_f2bd_7ba1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e359_f2bd_7ba1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e359_f2bd_7ba1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e359_f2bd_7ba1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e359_f2bd_7ba1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e359_f2bd_7ba1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a323_3aac_01c2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a323_3aac_01c2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a323_3aac_01c2/request", "", "public", "Top Dataset, enh, vpstr.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a323_3aac_01c2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a323_3aac_01c2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a323_3aac_01c2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a323_3aac_01c2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a323_3aac_01c2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a323_3aac_01c2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03f0_81ed_97d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03f0_81ed_97d2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03f0_81ed_97d2/request", "", "public", "Top Dataset, enh, vpstr.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03f0_81ed_97d2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03f0_81ed_97d2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03f0_81ed_97d2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03f0_81ed_97d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03f0_81ed_97d2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_03f0_81ed_97d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e956_86a8_bce9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e956_86a8_bce9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e956_86a8_bce9/request", "", "public", "Top Dataset, enh, vpstr.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e956_86a8_bce9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e956_86a8_bce9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e956_86a8_bce9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e956_86a8_bce9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e956_86a8_bce9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e956_86a8_bce9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8bca_8ada_930a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8bca_8ada_930a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8bca_8ada_930a/request", "", "public", "Top Dataset, enh, vpstr.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8bca_8ada_930a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8bca_8ada_930a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8bca_8ada_930a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8bca_8ada_930a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8bca_8ada_930a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8bca_8ada_930a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_caff_af7b_eaf0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_caff_af7b_eaf0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_caff_af7b_eaf0/request", "", "public", "Top Dataset, enh, vpstr.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_caff_af7b_eaf0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_caff_af7b_eaf0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_caff_af7b_eaf0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_caff_af7b_eaf0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_caff_af7b_eaf0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_caff_af7b_eaf0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe94_227b_16ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe94_227b_16ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fe94_227b_16ac/request", "", "public", "Top Dataset, enh, vpstr.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fe94_227b_16ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fe94_227b_16ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fe94_227b_16ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fe94_227b_16ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fe94_227b_16ac&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fe94_227b_16ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_add5_f8b3_17b2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_add5_f8b3_17b2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_add5_f8b3_17b2/request", "", "public", "Top Dataset, enh, vpstr.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_add5_f8b3_17b2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_add5_f8b3_17b2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_add5_f8b3_17b2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_add5_f8b3_17b2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_add5_f8b3_17b2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_add5_f8b3_17b2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4990_b4a9_70b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4990_b4a9_70b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4990_b4a9_70b0/request", "", "public", "Top Dataset, enh, vpstr.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4990_b4a9_70b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4990_b4a9_70b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4990_b4a9_70b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4990_b4a9_70b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4990_b4a9_70b0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4990_b4a9_70b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5cfa_50bb_f04c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5cfa_50bb_f04c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5cfa_50bb_f04c/request", "", "public", "Top Dataset, enh, vpstr.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5cfa_50bb_f04c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5cfa_50bb_f04c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5cfa_50bb_f04c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5cfa_50bb_f04c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5cfa_50bb_f04c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5cfa_50bb_f04c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d49_8376_6034", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d49_8376_6034.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0d49_8376_6034/request", "", "public", "Top Dataset, enh, vpstr.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0d49_8376_6034_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0d49_8376_6034_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0d49_8376_6034/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0d49_8376_6034.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0d49_8376_6034&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0d49_8376_6034"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d936_6622_c688", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d936_6622_c688.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d936_6622_c688/request", "", "public", "Top Dataset, enh, vpstr.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d936_6622_c688_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d936_6622_c688_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d936_6622_c688/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d936_6622_c688.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d936_6622_c688&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d936_6622_c688"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e90f_c9b1_3be8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e90f_c9b1_3be8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e90f_c9b1_3be8/request", "", "public", "Top Dataset, enh, vpstr.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e90f_c9b1_3be8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e90f_c9b1_3be8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e90f_c9b1_3be8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e90f_c9b1_3be8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e90f_c9b1_3be8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e90f_c9b1_3be8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96a2_64bc_714f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96a2_64bc_714f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_96a2_64bc_714f/request", "", "public", "Top Dataset, enh, vpstr.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_96a2_64bc_714f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_96a2_64bc_714f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_96a2_64bc_714f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_96a2_64bc_714f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_96a2_64bc_714f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_96a2_64bc_714f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5f5_6cb5_455b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5f5_6cb5_455b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5f5_6cb5_455b/request", "", "public", "Top Dataset, enh, vpstr.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5f5_6cb5_455b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5f5_6cb5_455b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5f5_6cb5_455b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5f5_6cb5_455b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5f5_6cb5_455b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a5f5_6cb5_455b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db14_0a16_3e35", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db14_0a16_3e35.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db14_0a16_3e35/request", "", "public", "Top Dataset, enh, vpstr.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db14_0a16_3e35_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db14_0a16_3e35_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db14_0a16_3e35/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db14_0a16_3e35.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db14_0a16_3e35&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_db14_0a16_3e35"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98d6_8add_b624", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98d6_8add_b624.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_98d6_8add_b624/request", "", "public", "Top Dataset, enh, vpstr.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_98d6_8add_b624_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_98d6_8add_b624_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_98d6_8add_b624/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_98d6_8add_b624.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_98d6_8add_b624&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_98d6_8add_b624"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0234_3a0e_92e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0234_3a0e_92e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0234_3a0e_92e3/request", "", "public", "Top Dataset, enh, vpstr.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0234_3a0e_92e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0234_3a0e_92e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0234_3a0e_92e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0234_3a0e_92e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0234_3a0e_92e3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0234_3a0e_92e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f1c_7d61_3e70", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f1c_7d61_3e70.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4f1c_7d61_3e70/request", "", "public", "Top Dataset, enh, vpstr.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4f1c_7d61_3e70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4f1c_7d61_3e70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4f1c_7d61_3e70/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4f1c_7d61_3e70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4f1c_7d61_3e70&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4f1c_7d61_3e70"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41df_7771_603f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41df_7771_603f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_41df_7771_603f/request", "", "public", "Top Dataset, enh, vpstr.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_41df_7771_603f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_41df_7771_603f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_41df_7771_603f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_41df_7771_603f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_41df_7771_603f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_41df_7771_603f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_46c7_60a9_74e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_46c7_60a9_74e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_46c7_60a9_74e0/request", "", "public", "Top Dataset, enh, vpstr.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_46c7_60a9_74e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_46c7_60a9_74e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_46c7_60a9_74e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_46c7_60a9_74e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_46c7_60a9_74e0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_46c7_60a9_74e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b289_dbd6_94ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b289_dbd6_94ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b289_dbd6_94ea/request", "", "public", "Top Dataset, enh, vpstr.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b289_dbd6_94ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b289_dbd6_94ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b289_dbd6_94ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b289_dbd6_94ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b289_dbd6_94ea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b289_dbd6_94ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f09_716c_ad17", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f09_716c_ad17.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f09_716c_ad17/request", "", "public", "Top Dataset, enh, vpstr.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f09_716c_ad17_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f09_716c_ad17_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f09_716c_ad17/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f09_716c_ad17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f09_716c_ad17&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9f09_716c_ad17"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f88_6624_1d2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f88_6624_1d2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f88_6624_1d2d/request", "", "public", "Top Dataset, enh, vpstr.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f88_6624_1d2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f88_6624_1d2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f88_6624_1d2d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f88_6624_1d2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f88_6624_1d2d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9f88_6624_1d2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a627_8c4c_98b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a627_8c4c_98b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a627_8c4c_98b5/request", "", "public", "Top Dataset, enh, vpstr.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a627_8c4c_98b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a627_8c4c_98b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a627_8c4c_98b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a627_8c4c_98b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a627_8c4c_98b5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a627_8c4c_98b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b77f_8a56_c8c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b77f_8a56_c8c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b77f_8a56_c8c3/request", "", "public", "Top Dataset, enh, vpstr.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b77f_8a56_c8c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b77f_8a56_c8c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b77f_8a56_c8c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b77f_8a56_c8c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b77f_8a56_c8c3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b77f_8a56_c8c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a0f_fd17_32e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a0f_fd17_32e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a0f_fd17_32e1/request", "", "public", "Top Dataset, enh, vpstr.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a0f_fd17_32e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a0f_fd17_32e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a0f_fd17_32e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a0f_fd17_32e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a0f_fd17_32e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7a0f_fd17_32e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f53_bb9e_9014", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f53_bb9e_9014.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f53_bb9e_9014/request", "", "public", "Top Dataset, enh, vpstr.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f53_bb9e_9014_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f53_bb9e_9014_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f53_bb9e_9014/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f53_bb9e_9014.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f53_bb9e_9014&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8f53_bb9e_9014"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ac5_aaa6_08e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ac5_aaa6_08e8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ac5_aaa6_08e8/request", "", "public", "Top Dataset, enh, vpstr.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ac5_aaa6_08e8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ac5_aaa6_08e8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ac5_aaa6_08e8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ac5_aaa6_08e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ac5_aaa6_08e8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3ac5_aaa6_08e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1b3f_4b59_409f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1b3f_4b59_409f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1b3f_4b59_409f/request", "", "public", "Top Dataset, enh, vpstr.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1b3f_4b59_409f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1b3f_4b59_409f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1b3f_4b59_409f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1b3f_4b59_409f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1b3f_4b59_409f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1b3f_4b59_409f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ef8_e13d_613e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ef8_e13d_613e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ef8_e13d_613e/request", "", "public", "Top Dataset, enh, vpstr.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ef8_e13d_613e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ef8_e13d_613e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ef8_e13d_613e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ef8_e13d_613e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ef8_e13d_613e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4ef8_e13d_613e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2277_a0e2_6743", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2277_a0e2_6743.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2277_a0e2_6743/request", "", "public", "Top Dataset, enh, vpstr.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2277_a0e2_6743_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2277_a0e2_6743_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2277_a0e2_6743/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2277_a0e2_6743.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2277_a0e2_6743&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2277_a0e2_6743"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3706_4dfe_55bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3706_4dfe_55bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3706_4dfe_55bb/request", "", "public", "Top Dataset, enh, vpstr.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3706_4dfe_55bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3706_4dfe_55bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3706_4dfe_55bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3706_4dfe_55bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3706_4dfe_55bb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3706_4dfe_55bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbf6_ed63_92f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbf6_ed63_92f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fbf6_ed63_92f1/request", "", "public", "Top Dataset, enh, vpstr.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fbf6_ed63_92f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fbf6_ed63_92f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fbf6_ed63_92f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fbf6_ed63_92f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fbf6_ed63_92f1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fbf6_ed63_92f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6418_b995_506d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6418_b995_506d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6418_b995_506d/request", "", "public", "Top Dataset, enh, vpstr.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6418_b995_506d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6418_b995_506d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6418_b995_506d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6418_b995_506d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6418_b995_506d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6418_b995_506d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8176_43f7_5d43", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8176_43f7_5d43.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8176_43f7_5d43/request", "", "public", "Top Dataset, enh, vpstr.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8176_43f7_5d43_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8176_43f7_5d43_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8176_43f7_5d43/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8176_43f7_5d43.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8176_43f7_5d43&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8176_43f7_5d43"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0c0_c8fa_56ed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0c0_c8fa_56ed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d0c0_c8fa_56ed/request", "", "public", "Top Dataset, enh, vpstr.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d0c0_c8fa_56ed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d0c0_c8fa_56ed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d0c0_c8fa_56ed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d0c0_c8fa_56ed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d0c0_c8fa_56ed&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d0c0_c8fa_56ed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efef_4d84_ab06", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efef_4d84_ab06.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_efef_4d84_ab06/request", "", "public", "Top Dataset, enh, vpstr.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_efef_4d84_ab06_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_efef_4d84_ab06_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_efef_4d84_ab06/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_efef_4d84_ab06.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_efef_4d84_ab06&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_efef_4d84_ab06"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_307f_cd95_3958", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_307f_cd95_3958.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_307f_cd95_3958/request", "", "public", "Top Dataset, enh, vpstr.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_307f_cd95_3958_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_307f_cd95_3958_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_307f_cd95_3958/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_307f_cd95_3958.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_307f_cd95_3958&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_307f_cd95_3958"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ba7_295d_94b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ba7_295d_94b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ba7_295d_94b0/request", "", "public", "Top Dataset, enh, vpstr.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ba7_295d_94b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ba7_295d_94b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ba7_295d_94b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ba7_295d_94b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ba7_295d_94b0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3ba7_295d_94b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50eb_046d_a17f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50eb_046d_a17f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_50eb_046d_a17f/request", "", "public", "Top Dataset, enh, vpstr.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_50eb_046d_a17f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_50eb_046d_a17f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50eb_046d_a17f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50eb_046d_a17f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50eb_046d_a17f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_50eb_046d_a17f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3079_6e5c_ec0e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3079_6e5c_ec0e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3079_6e5c_ec0e/request", "", "public", "Top Dataset, enh, vpstr.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3079_6e5c_ec0e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3079_6e5c_ec0e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3079_6e5c_ec0e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3079_6e5c_ec0e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3079_6e5c_ec0e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3079_6e5c_ec0e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71ab_14f3_6f46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71ab_14f3_6f46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_71ab_14f3_6f46/request", "", "public", "Top Dataset, enh, vpstr.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_71ab_14f3_6f46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_71ab_14f3_6f46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_71ab_14f3_6f46/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_71ab_14f3_6f46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_71ab_14f3_6f46&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_71ab_14f3_6f46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa6b_2a31_1048", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa6b_2a31_1048.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa6b_2a31_1048/request", "", "public", "Top Dataset, enh, vpstr.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa6b_2a31_1048_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa6b_2a31_1048_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa6b_2a31_1048/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa6b_2a31_1048.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa6b_2a31_1048&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_aa6b_2a31_1048"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_76b8_62e4_784a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_76b8_62e4_784a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_76b8_62e4_784a/request", "", "public", "Top Dataset, enh, vpstr.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_76b8_62e4_784a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_76b8_62e4_784a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_76b8_62e4_784a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_76b8_62e4_784a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_76b8_62e4_784a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_76b8_62e4_784a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a3a5_2880_a993", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a3a5_2880_a993.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a3a5_2880_a993/request", "", "public", "Top Dataset, enh, vpstr.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a3a5_2880_a993_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a3a5_2880_a993_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a3a5_2880_a993/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a3a5_2880_a993.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a3a5_2880_a993&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a3a5_2880_a993"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cdb5_6cbb_5dd5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cdb5_6cbb_5dd5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cdb5_6cbb_5dd5/request", "", "public", "Top Dataset, enh, vspeh.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cdb5_6cbb_5dd5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cdb5_6cbb_5dd5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cdb5_6cbb_5dd5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cdb5_6cbb_5dd5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cdb5_6cbb_5dd5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cdb5_6cbb_5dd5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48f9_9e4c_7869", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48f9_9e4c_7869.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_48f9_9e4c_7869/request", "", "public", "Top Dataset, enh, vspeh.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_48f9_9e4c_7869_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_48f9_9e4c_7869_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_48f9_9e4c_7869/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_48f9_9e4c_7869.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_48f9_9e4c_7869&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_48f9_9e4c_7869"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d73_a401_9e99", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d73_a401_9e99.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d73_a401_9e99/request", "", "public", "Top Dataset, enh, vspeh.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d73_a401_9e99_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d73_a401_9e99_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d73_a401_9e99/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d73_a401_9e99.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d73_a401_9e99&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4d73_a401_9e99"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_961f_227f_faac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_961f_227f_faac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_961f_227f_faac/request", "", "public", "Top Dataset, enh, vspeh.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_961f_227f_faac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_961f_227f_faac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_961f_227f_faac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_961f_227f_faac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_961f_227f_faac&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_961f_227f_faac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6706_52a2_794a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6706_52a2_794a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6706_52a2_794a/request", "", "public", "Top Dataset, enh, vspeh.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6706_52a2_794a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6706_52a2_794a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6706_52a2_794a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6706_52a2_794a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6706_52a2_794a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6706_52a2_794a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93ca_5aa0_7f55", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93ca_5aa0_7f55.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_93ca_5aa0_7f55/request", "", "public", "Top Dataset, enh, vspeh.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_93ca_5aa0_7f55_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_93ca_5aa0_7f55_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_93ca_5aa0_7f55/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_93ca_5aa0_7f55.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_93ca_5aa0_7f55&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_93ca_5aa0_7f55"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdf7_ec39_ba66", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdf7_ec39_ba66.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bdf7_ec39_ba66/request", "", "public", "Top Dataset, enh, vspeh.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bdf7_ec39_ba66_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bdf7_ec39_ba66_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bdf7_ec39_ba66/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bdf7_ec39_ba66.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bdf7_ec39_ba66&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bdf7_ec39_ba66"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95a1_3e93_3b6c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95a1_3e93_3b6c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_95a1_3e93_3b6c/request", "", "public", "Top Dataset, enh, vspeh.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_95a1_3e93_3b6c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_95a1_3e93_3b6c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_95a1_3e93_3b6c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_95a1_3e93_3b6c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_95a1_3e93_3b6c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_95a1_3e93_3b6c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fee6_9ffc_205d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fee6_9ffc_205d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fee6_9ffc_205d/request", "", "public", "Top Dataset, enh, vspeh.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fee6_9ffc_205d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fee6_9ffc_205d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fee6_9ffc_205d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fee6_9ffc_205d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fee6_9ffc_205d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fee6_9ffc_205d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fcc_1a40_4bbf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fcc_1a40_4bbf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4fcc_1a40_4bbf/request", "", "public", "Top Dataset, enh, vspeh.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4fcc_1a40_4bbf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4fcc_1a40_4bbf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4fcc_1a40_4bbf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4fcc_1a40_4bbf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4fcc_1a40_4bbf&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4fcc_1a40_4bbf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a4c_1804_9b2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a4c_1804_9b2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a4c_1804_9b2d/request", "", "public", "Top Dataset, enh, vspeh.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a4c_1804_9b2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a4c_1804_9b2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a4c_1804_9b2d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a4c_1804_9b2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a4c_1804_9b2d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3a4c_1804_9b2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc8b_aa50_f9a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc8b_aa50_f9a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc8b_aa50_f9a2/request", "", "public", "Top Dataset, enh, vspeh.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc8b_aa50_f9a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc8b_aa50_f9a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc8b_aa50_f9a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc8b_aa50_f9a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc8b_aa50_f9a2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dc8b_aa50_f9a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2953_4938_219d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2953_4938_219d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2953_4938_219d/request", "", "public", "Top Dataset, enh, vspeh.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2953_4938_219d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2953_4938_219d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2953_4938_219d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2953_4938_219d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2953_4938_219d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2953_4938_219d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6633_7411_8af6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6633_7411_8af6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6633_7411_8af6/request", "", "public", "Top Dataset, enh, vspeh.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6633_7411_8af6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6633_7411_8af6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6633_7411_8af6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6633_7411_8af6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6633_7411_8af6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6633_7411_8af6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dd8_967a_5dc2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dd8_967a_5dc2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8dd8_967a_5dc2/request", "", "public", "Top Dataset, enh, vspeh.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8dd8_967a_5dc2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8dd8_967a_5dc2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8dd8_967a_5dc2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8dd8_967a_5dc2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8dd8_967a_5dc2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8dd8_967a_5dc2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7cc_2d03_edb0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7cc_2d03_edb0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e7cc_2d03_edb0/request", "", "public", "Top Dataset, enh, vspeh.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e7cc_2d03_edb0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e7cc_2d03_edb0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e7cc_2d03_edb0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e7cc_2d03_edb0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e7cc_2d03_edb0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e7cc_2d03_edb0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5440_0375_f70a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5440_0375_f70a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5440_0375_f70a/request", "", "public", "Top Dataset, enh, vspeh.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5440_0375_f70a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5440_0375_f70a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5440_0375_f70a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5440_0375_f70a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5440_0375_f70a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5440_0375_f70a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cdaa_0787_7665", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cdaa_0787_7665.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cdaa_0787_7665/request", "", "public", "Top Dataset, enh, vspeh.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cdaa_0787_7665_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cdaa_0787_7665_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cdaa_0787_7665/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cdaa_0787_7665.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cdaa_0787_7665&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cdaa_0787_7665"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f40c_5448_6dd2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f40c_5448_6dd2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f40c_5448_6dd2/request", "", "public", "Top Dataset, enh, vspeh.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f40c_5448_6dd2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f40c_5448_6dd2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f40c_5448_6dd2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f40c_5448_6dd2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f40c_5448_6dd2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f40c_5448_6dd2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7192_e653_b8e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7192_e653_b8e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7192_e653_b8e6/request", "", "public", "Top Dataset, enh, vspeh.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7192_e653_b8e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7192_e653_b8e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7192_e653_b8e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7192_e653_b8e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7192_e653_b8e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7192_e653_b8e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9fa3_71e3_a491", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9fa3_71e3_a491.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9fa3_71e3_a491/request", "", "public", "Top Dataset, enh, vspeh.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9fa3_71e3_a491_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9fa3_71e3_a491_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9fa3_71e3_a491/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9fa3_71e3_a491.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9fa3_71e3_a491&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9fa3_71e3_a491"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_284e_89c9_0667", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_284e_89c9_0667.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_284e_89c9_0667/request", "", "public", "Top Dataset, enh, vspeh.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_284e_89c9_0667_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_284e_89c9_0667_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_284e_89c9_0667/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_284e_89c9_0667.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_284e_89c9_0667&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_284e_89c9_0667"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cb4_3738_7b1c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cb4_3738_7b1c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1cb4_3738_7b1c/request", "", "public", "Top Dataset, enh, vspeh.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1cb4_3738_7b1c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1cb4_3738_7b1c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1cb4_3738_7b1c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1cb4_3738_7b1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1cb4_3738_7b1c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1cb4_3738_7b1c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db79_3e92_0d7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db79_3e92_0d7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db79_3e92_0d7b/request", "", "public", "Top Dataset, enh, vspeh.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db79_3e92_0d7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db79_3e92_0d7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db79_3e92_0d7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db79_3e92_0d7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db79_3e92_0d7b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_db79_3e92_0d7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7989_83c0_16dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7989_83c0_16dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7989_83c0_16dd/request", "", "public", "Top Dataset, enh, vspeh.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7989_83c0_16dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7989_83c0_16dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7989_83c0_16dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7989_83c0_16dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7989_83c0_16dd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7989_83c0_16dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0128_f08b_f4ad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0128_f08b_f4ad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0128_f08b_f4ad/request", "", "public", "Top Dataset, enh, vspeh.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0128_f08b_f4ad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0128_f08b_f4ad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0128_f08b_f4ad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0128_f08b_f4ad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0128_f08b_f4ad&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0128_f08b_f4ad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8600_a786_d842", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8600_a786_d842.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8600_a786_d842/request", "", "public", "Top Dataset, enh, vspeh.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8600_a786_d842_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8600_a786_d842_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8600_a786_d842/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8600_a786_d842.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8600_a786_d842&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8600_a786_d842"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1efb_d7e4_6f9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1efb_d7e4_6f9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1efb_d7e4_6f9d/request", "", "public", "Top Dataset, enh, vspeh.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1efb_d7e4_6f9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1efb_d7e4_6f9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1efb_d7e4_6f9d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1efb_d7e4_6f9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1efb_d7e4_6f9d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1efb_d7e4_6f9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54c0_b6ed_a1d8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54c0_b6ed_a1d8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54c0_b6ed_a1d8/request", "", "public", "Top Dataset, enh, vspeh.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54c0_b6ed_a1d8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54c0_b6ed_a1d8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54c0_b6ed_a1d8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54c0_b6ed_a1d8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54c0_b6ed_a1d8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_54c0_b6ed_a1d8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8092_0ef0_e3de", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8092_0ef0_e3de.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8092_0ef0_e3de/request", "", "public", "Top Dataset, enh, vspeh.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8092_0ef0_e3de_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8092_0ef0_e3de_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8092_0ef0_e3de/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8092_0ef0_e3de.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8092_0ef0_e3de&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8092_0ef0_e3de"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10fd_c88b_62a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10fd_c88b_62a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_10fd_c88b_62a1/request", "", "public", "Top Dataset, enh, vspeh.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_10fd_c88b_62a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_10fd_c88b_62a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_10fd_c88b_62a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_10fd_c88b_62a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_10fd_c88b_62a1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_10fd_c88b_62a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1436_52db_36b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1436_52db_36b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1436_52db_36b9/request", "", "public", "Top Dataset, enh, vspeh.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1436_52db_36b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1436_52db_36b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1436_52db_36b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1436_52db_36b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1436_52db_36b9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1436_52db_36b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef80_1f70_5542", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef80_1f70_5542.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ef80_1f70_5542/request", "", "public", "Top Dataset, enh, vspeh.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ef80_1f70_5542_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ef80_1f70_5542_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ef80_1f70_5542/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ef80_1f70_5542.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ef80_1f70_5542&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ef80_1f70_5542"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a46_9196_aa73", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a46_9196_aa73.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1a46_9196_aa73/request", "", "public", "Top Dataset, enh, vspeh.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1a46_9196_aa73_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1a46_9196_aa73_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1a46_9196_aa73/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1a46_9196_aa73.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1a46_9196_aa73&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1a46_9196_aa73"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5649_d1d8_a645", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5649_d1d8_a645.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5649_d1d8_a645/request", "", "public", "Top Dataset, enh, vspeh.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5649_d1d8_a645_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5649_d1d8_a645_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5649_d1d8_a645/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5649_d1d8_a645.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5649_d1d8_a645&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5649_d1d8_a645"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78af_1cac_f221", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78af_1cac_f221.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_78af_1cac_f221/request", "", "public", "Top Dataset, enh, vspeh.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_78af_1cac_f221_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_78af_1cac_f221_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_78af_1cac_f221/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_78af_1cac_f221.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_78af_1cac_f221&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_78af_1cac_f221"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ada5_87cf_f516", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ada5_87cf_f516.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ada5_87cf_f516/request", "", "public", "Top Dataset, enh, vspeh.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ada5_87cf_f516_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ada5_87cf_f516_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ada5_87cf_f516/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ada5_87cf_f516.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ada5_87cf_f516&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ada5_87cf_f516"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17ce_7bf9_4eb9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17ce_7bf9_4eb9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_17ce_7bf9_4eb9/request", "", "public", "Top Dataset, enh, vspeh.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_17ce_7bf9_4eb9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_17ce_7bf9_4eb9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_17ce_7bf9_4eb9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_17ce_7bf9_4eb9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_17ce_7bf9_4eb9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_17ce_7bf9_4eb9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_469b_6d5e_6a7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_469b_6d5e_6a7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_469b_6d5e_6a7b/request", "", "public", "Top Dataset, enh, vspeh.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_469b_6d5e_6a7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_469b_6d5e_6a7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_469b_6d5e_6a7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_469b_6d5e_6a7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_469b_6d5e_6a7b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_469b_6d5e_6a7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae05_6b14_f867", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae05_6b14_f867.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae05_6b14_f867/request", "", "public", "Top Dataset, enh, vspeh.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae05_6b14_f867_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae05_6b14_f867_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae05_6b14_f867/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae05_6b14_f867.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae05_6b14_f867&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ae05_6b14_f867"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f20_95ee_4fee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f20_95ee_4fee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4f20_95ee_4fee/request", "", "public", "Top Dataset, enh, vspeh.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4f20_95ee_4fee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4f20_95ee_4fee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4f20_95ee_4fee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4f20_95ee_4fee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4f20_95ee_4fee&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4f20_95ee_4fee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cbdc_2457_66de", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cbdc_2457_66de.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cbdc_2457_66de/request", "", "public", "Top Dataset, enh, vspeh.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cbdc_2457_66de_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cbdc_2457_66de_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cbdc_2457_66de/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cbdc_2457_66de.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cbdc_2457_66de&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cbdc_2457_66de"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9391_adb2_3f13", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9391_adb2_3f13.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9391_adb2_3f13/request", "", "public", "Top Dataset, enh, vspeh.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9391_adb2_3f13_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9391_adb2_3f13_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9391_adb2_3f13/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9391_adb2_3f13.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9391_adb2_3f13&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9391_adb2_3f13"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa51_4160_bb39", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa51_4160_bb39.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa51_4160_bb39/request", "", "public", "Top Dataset, enh, vspeh.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa51_4160_bb39_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa51_4160_bb39_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa51_4160_bb39/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa51_4160_bb39.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa51_4160_bb39&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aa51_4160_bb39"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebbd_15ba_fea3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebbd_15ba_fea3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ebbd_15ba_fea3/request", "", "public", "Top Dataset, enh, vspeh.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ebbd_15ba_fea3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ebbd_15ba_fea3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ebbd_15ba_fea3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ebbd_15ba_fea3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ebbd_15ba_fea3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ebbd_15ba_fea3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f750_b42f_96cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f750_b42f_96cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f750_b42f_96cb/request", "", "public", "Top Dataset, enh, vspeh.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f750_b42f_96cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f750_b42f_96cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f750_b42f_96cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f750_b42f_96cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f750_b42f_96cb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f750_b42f_96cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b117_257f_bff9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b117_257f_bff9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b117_257f_bff9/request", "", "public", "Top Dataset, enh, vspeh.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b117_257f_bff9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b117_257f_bff9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b117_257f_bff9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b117_257f_bff9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b117_257f_bff9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b117_257f_bff9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da90_3e52_b633", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da90_3e52_b633.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da90_3e52_b633/request", "", "public", "Top Dataset, enh, vspeh.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da90_3e52_b633_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da90_3e52_b633_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da90_3e52_b633/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da90_3e52_b633.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da90_3e52_b633&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_da90_3e52_b633"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51f4_7663_0753", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51f4_7663_0753.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_51f4_7663_0753/request", "", "public", "Top Dataset, enh, vspeh.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_51f4_7663_0753_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_51f4_7663_0753_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_51f4_7663_0753/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_51f4_7663_0753.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_51f4_7663_0753&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_51f4_7663_0753"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa79_3dda_3545", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa79_3dda_3545.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa79_3dda_3545/request", "", "public", "Top Dataset, enh, vspeh.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa79_3dda_3545_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa79_3dda_3545_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa79_3dda_3545/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa79_3dda_3545.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa79_3dda_3545&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aa79_3dda_3545"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4c0_4c46_9e71", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4c0_4c46_9e71.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f4c0_4c46_9e71/request", "", "public", "Top Dataset, enh, vspeh.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f4c0_4c46_9e71_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f4c0_4c46_9e71_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f4c0_4c46_9e71/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f4c0_4c46_9e71.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f4c0_4c46_9e71&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f4c0_4c46_9e71"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24a2_a099_81c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24a2_a099_81c5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_24a2_a099_81c5/request", "", "public", "Top Dataset, enh, vspeh.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_24a2_a099_81c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_24a2_a099_81c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_24a2_a099_81c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_24a2_a099_81c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_24a2_a099_81c5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_24a2_a099_81c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdf2_9639_5931", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdf2_9639_5931.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bdf2_9639_5931/request", "", "public", "Top Dataset, enh, vspeh.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bdf2_9639_5931_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bdf2_9639_5931_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bdf2_9639_5931/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bdf2_9639_5931.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bdf2_9639_5931&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bdf2_9639_5931"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f33e_c8fb_1f01", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f33e_c8fb_1f01.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f33e_c8fb_1f01/request", "", "public", "Top Dataset, enh, vspeh.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f33e_c8fb_1f01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f33e_c8fb_1f01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f33e_c8fb_1f01/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f33e_c8fb_1f01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f33e_c8fb_1f01&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f33e_c8fb_1f01"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffca_b880_9dee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffca_b880_9dee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ffca_b880_9dee/request", "", "public", "Top Dataset, enh, vspeh.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ffca_b880_9dee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ffca_b880_9dee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ffca_b880_9dee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ffca_b880_9dee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ffca_b880_9dee&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ffca_b880_9dee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_141a_b28e_55f7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_141a_b28e_55f7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_141a_b28e_55f7/request", "", "public", "Top Dataset, enh, vspeh.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_141a_b28e_55f7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_141a_b28e_55f7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_141a_b28e_55f7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_141a_b28e_55f7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_141a_b28e_55f7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_141a_b28e_55f7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_25b9_bc43_c3aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_25b9_bc43_c3aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_25b9_bc43_c3aa/request", "", "public", "Top Dataset, enh, vspeh.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_25b9_bc43_c3aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_25b9_bc43_c3aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_25b9_bc43_c3aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_25b9_bc43_c3aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_25b9_bc43_c3aa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_25b9_bc43_c3aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b49_a841_e337", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b49_a841_e337.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2b49_a841_e337/request", "", "public", "Top Dataset, enh, vspeh.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2b49_a841_e337_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2b49_a841_e337_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2b49_a841_e337/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2b49_a841_e337.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2b49_a841_e337&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2b49_a841_e337"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b28_0e81_cfc1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b28_0e81_cfc1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0b28_0e81_cfc1/request", "", "public", "Top Dataset, enh, vspeh.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0b28_0e81_cfc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0b28_0e81_cfc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0b28_0e81_cfc1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0b28_0e81_cfc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0b28_0e81_cfc1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0b28_0e81_cfc1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b44_9279_bd65", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b44_9279_bd65.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b44_9279_bd65/request", "", "public", "Top Dataset, enh, vspeh.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b44_9279_bd65_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b44_9279_bd65_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b44_9279_bd65/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b44_9279_bd65.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b44_9279_bd65&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7b44_9279_bd65"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0825_99d9_0d49", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0825_99d9_0d49.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0825_99d9_0d49/request", "", "public", "Top Dataset, enh, vspeh.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0825_99d9_0d49_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0825_99d9_0d49_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0825_99d9_0d49/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0825_99d9_0d49.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0825_99d9_0d49&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0825_99d9_0d49"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19a1_fd1a_f24c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19a1_fd1a_f24c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_19a1_fd1a_f24c/request", "", "public", "Top Dataset, enh, vspeh.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_19a1_fd1a_f24c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_19a1_fd1a_f24c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_19a1_fd1a_f24c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_19a1_fd1a_f24c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_19a1_fd1a_f24c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_19a1_fd1a_f24c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93b1_62c6_6ed4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93b1_62c6_6ed4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_93b1_62c6_6ed4/request", "", "public", "Top Dataset, enh, vspeh.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_93b1_62c6_6ed4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_93b1_62c6_6ed4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_93b1_62c6_6ed4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_93b1_62c6_6ed4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_93b1_62c6_6ed4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_93b1_62c6_6ed4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5137_33d4_9536", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5137_33d4_9536.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5137_33d4_9536/request", "", "public", "Top Dataset, enh, vwnd.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5137_33d4_9536_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5137_33d4_9536_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5137_33d4_9536/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5137_33d4_9536.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5137_33d4_9536&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5137_33d4_9536"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1d6_a5c3_1933", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1d6_a5c3_1933.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b1d6_a5c3_1933/request", "", "public", "Top Dataset, enh, vwnd.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b1d6_a5c3_1933_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b1d6_a5c3_1933_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b1d6_a5c3_1933/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b1d6_a5c3_1933.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b1d6_a5c3_1933&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b1d6_a5c3_1933"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9ba_eeed_883f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9ba_eeed_883f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f9ba_eeed_883f/request", "", "public", "Top Dataset, enh, vwnd.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f9ba_eeed_883f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f9ba_eeed_883f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f9ba_eeed_883f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f9ba_eeed_883f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f9ba_eeed_883f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f9ba_eeed_883f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7396_edee_1f64", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7396_edee_1f64.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7396_edee_1f64/request", "", "public", "Top Dataset, enh, vwnd.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7396_edee_1f64_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7396_edee_1f64_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7396_edee_1f64/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7396_edee_1f64.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7396_edee_1f64&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7396_edee_1f64"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ae1_bf32_b1fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ae1_bf32_b1fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ae1_bf32_b1fc/request", "", "public", "Top Dataset, enh, vwnd.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ae1_bf32_b1fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ae1_bf32_b1fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ae1_bf32_b1fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ae1_bf32_b1fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ae1_bf32_b1fc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3ae1_bf32_b1fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9c6_20ff_ac54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9c6_20ff_ac54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b9c6_20ff_ac54/request", "", "public", "Top Dataset, enh, vwnd.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b9c6_20ff_ac54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b9c6_20ff_ac54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b9c6_20ff_ac54/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b9c6_20ff_ac54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b9c6_20ff_ac54&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b9c6_20ff_ac54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3374_b1d7_edd3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3374_b1d7_edd3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3374_b1d7_edd3/request", "", "public", "Top Dataset, enh, vwnd.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3374_b1d7_edd3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3374_b1d7_edd3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3374_b1d7_edd3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3374_b1d7_edd3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3374_b1d7_edd3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3374_b1d7_edd3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06c6_9673_62a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06c6_9673_62a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_06c6_9673_62a6/request", "", "public", "Top Dataset, enh, vwnd.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_06c6_9673_62a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_06c6_9673_62a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_06c6_9673_62a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_06c6_9673_62a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_06c6_9673_62a6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_06c6_9673_62a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4eca_48f0_7a43", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4eca_48f0_7a43.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4eca_48f0_7a43/request", "", "public", "Top Dataset, enh, vwnd.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4eca_48f0_7a43_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4eca_48f0_7a43_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4eca_48f0_7a43/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4eca_48f0_7a43.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4eca_48f0_7a43&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4eca_48f0_7a43"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_851e_53e7_ccf8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_851e_53e7_ccf8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_851e_53e7_ccf8/request", "", "public", "Top Dataset, enh, vwnd.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_851e_53e7_ccf8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_851e_53e7_ccf8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_851e_53e7_ccf8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_851e_53e7_ccf8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_851e_53e7_ccf8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_851e_53e7_ccf8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2505_87cd_67ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2505_87cd_67ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2505_87cd_67ef/request", "", "public", "Top Dataset, enh, vwnd.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2505_87cd_67ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2505_87cd_67ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2505_87cd_67ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2505_87cd_67ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2505_87cd_67ef&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2505_87cd_67ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e66_9479_fa9e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e66_9479_fa9e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e66_9479_fa9e/request", "", "public", "Top Dataset, enh, vwnd.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e66_9479_fa9e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e66_9479_fa9e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e66_9479_fa9e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e66_9479_fa9e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e66_9479_fa9e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9e66_9479_fa9e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ca4_c179_75cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ca4_c179_75cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2ca4_c179_75cd/request", "", "public", "Top Dataset, enh, vwnd.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2ca4_c179_75cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2ca4_c179_75cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2ca4_c179_75cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2ca4_c179_75cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2ca4_c179_75cd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2ca4_c179_75cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e66_8a0e_a628", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e66_8a0e_a628.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2e66_8a0e_a628/request", "", "public", "Top Dataset, enh, vwnd.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2e66_8a0e_a628_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2e66_8a0e_a628_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2e66_8a0e_a628/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2e66_8a0e_a628.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2e66_8a0e_a628&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2e66_8a0e_a628"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a6dd_9248_da1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a6dd_9248_da1e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a6dd_9248_da1e/request", "", "public", "Top Dataset, enh, vwnd.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a6dd_9248_da1e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a6dd_9248_da1e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a6dd_9248_da1e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a6dd_9248_da1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a6dd_9248_da1e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a6dd_9248_da1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24f8_3b72_bc00", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24f8_3b72_bc00.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_24f8_3b72_bc00/request", "", "public", "Top Dataset, enh, vwnd.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_24f8_3b72_bc00_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_24f8_3b72_bc00_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_24f8_3b72_bc00/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_24f8_3b72_bc00.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_24f8_3b72_bc00&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_24f8_3b72_bc00"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53fd_fbd9_f798", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53fd_fbd9_f798.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_53fd_fbd9_f798/request", "", "public", "Top Dataset, enh, vwnd.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_53fd_fbd9_f798_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_53fd_fbd9_f798_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_53fd_fbd9_f798/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_53fd_fbd9_f798.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_53fd_fbd9_f798&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_53fd_fbd9_f798"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b094_d00a_c0b4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b094_d00a_c0b4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b094_d00a_c0b4/request", "", "public", "Top Dataset, enh, vwnd.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b094_d00a_c0b4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b094_d00a_c0b4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b094_d00a_c0b4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b094_d00a_c0b4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b094_d00a_c0b4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b094_d00a_c0b4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cadc_b2e8_fc47", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cadc_b2e8_fc47.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cadc_b2e8_fc47/request", "", "public", "Top Dataset, enh, vwnd.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cadc_b2e8_fc47_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cadc_b2e8_fc47_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cadc_b2e8_fc47/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cadc_b2e8_fc47.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cadc_b2e8_fc47&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cadc_b2e8_fc47"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0224_238e_4a3e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0224_238e_4a3e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0224_238e_4a3e/request", "", "public", "Top Dataset, enh, vwnd.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0224_238e_4a3e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0224_238e_4a3e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0224_238e_4a3e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0224_238e_4a3e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0224_238e_4a3e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0224_238e_4a3e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_75c0_b7b8_fb61", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_75c0_b7b8_fb61.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_75c0_b7b8_fb61/request", "", "public", "Top Dataset, enh, vwnd.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_75c0_b7b8_fb61_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_75c0_b7b8_fb61_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_75c0_b7b8_fb61/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_75c0_b7b8_fb61.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_75c0_b7b8_fb61&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_75c0_b7b8_fb61"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3397_ef34_9716", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3397_ef34_9716.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3397_ef34_9716/request", "", "public", "Top Dataset, enh, vwnd.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3397_ef34_9716_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3397_ef34_9716_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3397_ef34_9716/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3397_ef34_9716.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3397_ef34_9716&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3397_ef34_9716"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03d5_133d_36fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03d5_133d_36fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03d5_133d_36fd/request", "", "public", "Top Dataset, enh, vwnd.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03d5_133d_36fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03d5_133d_36fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03d5_133d_36fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03d5_133d_36fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03d5_133d_36fd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_03d5_133d_36fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59ac_d21f_defe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59ac_d21f_defe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_59ac_d21f_defe/request", "", "public", "Top Dataset, enh, vwnd.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_59ac_d21f_defe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_59ac_d21f_defe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_59ac_d21f_defe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_59ac_d21f_defe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_59ac_d21f_defe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_59ac_d21f_defe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5129_c69b_10b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5129_c69b_10b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5129_c69b_10b5/request", "", "public", "Top Dataset, enh, vwnd.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5129_c69b_10b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5129_c69b_10b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5129_c69b_10b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5129_c69b_10b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5129_c69b_10b5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5129_c69b_10b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dba_ff9d_95cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dba_ff9d_95cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5dba_ff9d_95cd/request", "", "public", "Top Dataset, enh, vwnd.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5dba_ff9d_95cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5dba_ff9d_95cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5dba_ff9d_95cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5dba_ff9d_95cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5dba_ff9d_95cd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5dba_ff9d_95cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f390_77a8_aee2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f390_77a8_aee2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f390_77a8_aee2/request", "", "public", "Top Dataset, enh, vwnd.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f390_77a8_aee2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f390_77a8_aee2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f390_77a8_aee2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f390_77a8_aee2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f390_77a8_aee2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f390_77a8_aee2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9fca_dd0e_a4be", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9fca_dd0e_a4be.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9fca_dd0e_a4be/request", "", "public", "Top Dataset, enh, vwnd.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9fca_dd0e_a4be_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9fca_dd0e_a4be_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9fca_dd0e_a4be/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9fca_dd0e_a4be.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9fca_dd0e_a4be&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9fca_dd0e_a4be"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a024_73c2_5c97", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a024_73c2_5c97.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a024_73c2_5c97/request", "", "public", "Top Dataset, enh, vwnd.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a024_73c2_5c97_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a024_73c2_5c97_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a024_73c2_5c97/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a024_73c2_5c97.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a024_73c2_5c97&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a024_73c2_5c97"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cbbc_af39_fd7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cbbc_af39_fd7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cbbc_af39_fd7b/request", "", "public", "Top Dataset, enh, vwnd.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cbbc_af39_fd7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cbbc_af39_fd7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cbbc_af39_fd7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cbbc_af39_fd7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cbbc_af39_fd7b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cbbc_af39_fd7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3206_9859_7c68", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3206_9859_7c68.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3206_9859_7c68/request", "", "public", "Top Dataset, enh, vwnd.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3206_9859_7c68_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3206_9859_7c68_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3206_9859_7c68/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3206_9859_7c68.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3206_9859_7c68&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3206_9859_7c68"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_396e_72f2_2460", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_396e_72f2_2460.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_396e_72f2_2460/request", "", "public", "Top Dataset, enh, vwnd.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_396e_72f2_2460_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_396e_72f2_2460_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_396e_72f2_2460/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_396e_72f2_2460.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_396e_72f2_2460&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_396e_72f2_2460"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b22f_bfb4_0b77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b22f_bfb4_0b77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b22f_bfb4_0b77/request", "", "public", "Top Dataset, enh, vwnd.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b22f_bfb4_0b77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b22f_bfb4_0b77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b22f_bfb4_0b77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b22f_bfb4_0b77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b22f_bfb4_0b77&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b22f_bfb4_0b77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3368_d9bf_5295", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3368_d9bf_5295.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3368_d9bf_5295/request", "", "public", "Top Dataset, enh, vwnd.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3368_d9bf_5295_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3368_d9bf_5295_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3368_d9bf_5295/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3368_d9bf_5295.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3368_d9bf_5295&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3368_d9bf_5295"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3849_cbde_d2ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3849_cbde_d2ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3849_cbde_d2ec/request", "", "public", "Top Dataset, enh, vwnd.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3849_cbde_d2ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3849_cbde_d2ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3849_cbde_d2ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3849_cbde_d2ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3849_cbde_d2ec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3849_cbde_d2ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5820_4e06_0d6d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5820_4e06_0d6d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5820_4e06_0d6d/request", "", "public", "Top Dataset, enh, vwnd.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5820_4e06_0d6d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5820_4e06_0d6d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5820_4e06_0d6d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5820_4e06_0d6d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5820_4e06_0d6d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5820_4e06_0d6d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c421_0d11_7b53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c421_0d11_7b53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c421_0d11_7b53/request", "", "public", "Top Dataset, enh, vwnd.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c421_0d11_7b53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c421_0d11_7b53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c421_0d11_7b53/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c421_0d11_7b53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c421_0d11_7b53&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c421_0d11_7b53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_351f_7dff_e034", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_351f_7dff_e034.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_351f_7dff_e034/request", "", "public", "Top Dataset, enh, vwnd.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_351f_7dff_e034_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_351f_7dff_e034_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_351f_7dff_e034/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_351f_7dff_e034.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_351f_7dff_e034&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_351f_7dff_e034"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7be_44c5_e832", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7be_44c5_e832.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d7be_44c5_e832/request", "", "public", "Top Dataset, enh, vwnd.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d7be_44c5_e832_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d7be_44c5_e832_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d7be_44c5_e832/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d7be_44c5_e832.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d7be_44c5_e832&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d7be_44c5_e832"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3bc5_15b7_7385", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3bc5_15b7_7385.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3bc5_15b7_7385/request", "", "public", "Top Dataset, enh, vwnd.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3bc5_15b7_7385_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3bc5_15b7_7385_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3bc5_15b7_7385/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3bc5_15b7_7385.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3bc5_15b7_7385&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3bc5_15b7_7385"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c9e_d5a1_8f86", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c9e_d5a1_8f86.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2c9e_d5a1_8f86/request", "", "public", "Top Dataset, enh, vwnd.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2c9e_d5a1_8f86_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2c9e_d5a1_8f86_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2c9e_d5a1_8f86/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2c9e_d5a1_8f86.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2c9e_d5a1_8f86&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2c9e_d5a1_8f86"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e61_0843_0636", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e61_0843_0636.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6e61_0843_0636/request", "", "public", "Top Dataset, enh, vwnd.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6e61_0843_0636_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6e61_0843_0636_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6e61_0843_0636/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6e61_0843_0636.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6e61_0843_0636&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6e61_0843_0636"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c401_7f2c_18ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c401_7f2c_18ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c401_7f2c_18ee/request", "", "public", "Top Dataset, enh, vwnd.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c401_7f2c_18ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c401_7f2c_18ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c401_7f2c_18ee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c401_7f2c_18ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c401_7f2c_18ee&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c401_7f2c_18ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35d5_5a2c_ac67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35d5_5a2c_ac67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_35d5_5a2c_ac67/request", "", "public", "Top Dataset, enh, vwnd.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_35d5_5a2c_ac67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_35d5_5a2c_ac67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_35d5_5a2c_ac67/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_35d5_5a2c_ac67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_35d5_5a2c_ac67&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_35d5_5a2c_ac67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_430b_25e7_2100", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_430b_25e7_2100.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_430b_25e7_2100/request", "", "public", "Top Dataset, enh, vwnd.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_430b_25e7_2100_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_430b_25e7_2100_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_430b_25e7_2100/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_430b_25e7_2100.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_430b_25e7_2100&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_430b_25e7_2100"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60ea_af54_d5b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60ea_af54_d5b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_60ea_af54_d5b7/request", "", "public", "Top Dataset, enh, vwnd.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_60ea_af54_d5b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_60ea_af54_d5b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_60ea_af54_d5b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_60ea_af54_d5b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_60ea_af54_d5b7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_60ea_af54_d5b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4717_30f8_6e53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4717_30f8_6e53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4717_30f8_6e53/request", "", "public", "Top Dataset, enh, vwnd.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4717_30f8_6e53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4717_30f8_6e53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4717_30f8_6e53/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4717_30f8_6e53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4717_30f8_6e53&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4717_30f8_6e53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a963_2771_1669", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a963_2771_1669.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a963_2771_1669/request", "", "public", "Top Dataset, enh, vwnd.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a963_2771_1669_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a963_2771_1669_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a963_2771_1669/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a963_2771_1669.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a963_2771_1669&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a963_2771_1669"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f29_d976_4483", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f29_d976_4483.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6f29_d976_4483/request", "", "public", "Top Dataset, enh, vwnd.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6f29_d976_4483_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6f29_d976_4483_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6f29_d976_4483/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6f29_d976_4483.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6f29_d976_4483&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6f29_d976_4483"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5244_c567_28b4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5244_c567_28b4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5244_c567_28b4/request", "", "public", "Top Dataset, enh, vwnd.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5244_c567_28b4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5244_c567_28b4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5244_c567_28b4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5244_c567_28b4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5244_c567_28b4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5244_c567_28b4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c2f0_8bc6_e542", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c2f0_8bc6_e542.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c2f0_8bc6_e542/request", "", "public", "Top Dataset, enh, vwnd.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c2f0_8bc6_e542_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c2f0_8bc6_e542_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c2f0_8bc6_e542/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c2f0_8bc6_e542.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c2f0_8bc6_e542&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c2f0_8bc6_e542"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c1fd_c038_0b39", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c1fd_c038_0b39.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c1fd_c038_0b39/request", "", "public", "Top Dataset, enh, vwnd.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c1fd_c038_0b39_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c1fd_c038_0b39_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c1fd_c038_0b39/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c1fd_c038_0b39.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c1fd_c038_0b39&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c1fd_c038_0b39"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06a8_75b3_fe59", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06a8_75b3_fe59.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_06a8_75b3_fe59/request", "", "public", "Top Dataset, enh, vwnd.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_06a8_75b3_fe59_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_06a8_75b3_fe59_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_06a8_75b3_fe59/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_06a8_75b3_fe59.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_06a8_75b3_fe59&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_06a8_75b3_fe59"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0eda_ec1b_63ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0eda_ec1b_63ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0eda_ec1b_63ef/request", "", "public", "Top Dataset, enh, vwnd.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0eda_ec1b_63ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0eda_ec1b_63ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0eda_ec1b_63ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0eda_ec1b_63ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0eda_ec1b_63ef&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0eda_ec1b_63ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc3d_00c9_9437", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc3d_00c9_9437.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc3d_00c9_9437/request", "", "public", "Top Dataset, enh, vwnd.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc3d_00c9_9437_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc3d_00c9_9437_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc3d_00c9_9437/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc3d_00c9_9437.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc3d_00c9_9437&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cc3d_00c9_9437"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_544b_2d4d_1467", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_544b_2d4d_1467.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_544b_2d4d_1467/request", "", "public", "Top Dataset, enh, vwnd.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_544b_2d4d_1467_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_544b_2d4d_1467_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_544b_2d4d_1467/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_544b_2d4d_1467.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_544b_2d4d_1467&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_544b_2d4d_1467"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea5d_5e04_0fbb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea5d_5e04_0fbb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ea5d_5e04_0fbb/request", "", "public", "Top Dataset, enh, vwnd.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, vwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ea5d_5e04_0fbb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ea5d_5e04_0fbb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ea5d_5e04_0fbb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ea5d_5e04_0fbb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ea5d_5e04_0fbb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ea5d_5e04_0fbb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b96d_8857_a494", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b96d_8857_a494.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b96d_8857_a494/request", "", "public", "Top Dataset, enh, vwnd.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b96d_8857_a494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b96d_8857_a494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b96d_8857_a494/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b96d_8857_a494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b96d_8857_a494&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b96d_8857_a494"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b86_eace_c318", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b86_eace_c318.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b86_eace_c318/request", "", "public", "Top Dataset, enh, vwnd.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b86_eace_c318_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b86_eace_c318_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b86_eace_c318/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b86_eace_c318.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b86_eace_c318&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5b86_eace_c318"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a36_a77f_c7b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a36_a77f_c7b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a36_a77f_c7b8/request", "", "public", "Top Dataset, enh, vwnd.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, vwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a36_a77f_c7b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a36_a77f_c7b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a36_a77f_c7b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a36_a77f_c7b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a36_a77f_c7b8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7a36_a77f_c7b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af61_b715_94d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af61_b715_94d1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_af61_b715_94d1/request", "", "public", "Top Dataset, enh, wspd.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_af61_b715_94d1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_af61_b715_94d1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_af61_b715_94d1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_af61_b715_94d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_af61_b715_94d1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_af61_b715_94d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dcd_d742_4c7d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dcd_d742_4c7d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4dcd_d742_4c7d/request", "", "public", "Top Dataset, enh, wspd.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4dcd_d742_4c7d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4dcd_d742_4c7d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4dcd_d742_4c7d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4dcd_d742_4c7d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4dcd_d742_4c7d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4dcd_d742_4c7d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e03f_6148_94a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e03f_6148_94a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e03f_6148_94a0/request", "", "public", "Top Dataset, enh, wspd.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e03f_6148_94a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e03f_6148_94a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e03f_6148_94a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e03f_6148_94a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e03f_6148_94a0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e03f_6148_94a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3549_d21c_17f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3549_d21c_17f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3549_d21c_17f1/request", "", "public", "Top Dataset, enh, wspd.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3549_d21c_17f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3549_d21c_17f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3549_d21c_17f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3549_d21c_17f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3549_d21c_17f1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3549_d21c_17f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0674_3a4d_163f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0674_3a4d_163f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0674_3a4d_163f/request", "", "public", "Top Dataset, enh, wspd.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0674_3a4d_163f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0674_3a4d_163f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0674_3a4d_163f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0674_3a4d_163f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0674_3a4d_163f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0674_3a4d_163f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2736_0cb2_a507", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2736_0cb2_a507.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2736_0cb2_a507/request", "", "public", "Top Dataset, enh, wspd.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2736_0cb2_a507_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2736_0cb2_a507_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2736_0cb2_a507/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2736_0cb2_a507.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2736_0cb2_a507&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2736_0cb2_a507"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f444_c58b_8199", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f444_c58b_8199.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f444_c58b_8199/request", "", "public", "Top Dataset, enh, wspd.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f444_c58b_8199_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f444_c58b_8199_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f444_c58b_8199/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f444_c58b_8199.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f444_c58b_8199&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f444_c58b_8199"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b35_36c8_ebc6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b35_36c8_ebc6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b35_36c8_ebc6/request", "", "public", "Top Dataset, enh, wspd.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b35_36c8_ebc6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b35_36c8_ebc6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b35_36c8_ebc6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b35_36c8_ebc6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b35_36c8_ebc6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6b35_36c8_ebc6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b56a_601c_3e32", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b56a_601c_3e32.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b56a_601c_3e32/request", "", "public", "Top Dataset, enh, wspd.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b56a_601c_3e32_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b56a_601c_3e32_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b56a_601c_3e32/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b56a_601c_3e32.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b56a_601c_3e32&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b56a_601c_3e32"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f10_25b8_1d7f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f10_25b8_1d7f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4f10_25b8_1d7f/request", "", "public", "Top Dataset, enh, wspd.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4f10_25b8_1d7f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4f10_25b8_1d7f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4f10_25b8_1d7f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4f10_25b8_1d7f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4f10_25b8_1d7f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4f10_25b8_1d7f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_549f_4e20_50e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_549f_4e20_50e4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_549f_4e20_50e4/request", "", "public", "Top Dataset, enh, wspd.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_549f_4e20_50e4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_549f_4e20_50e4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_549f_4e20_50e4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_549f_4e20_50e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_549f_4e20_50e4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_549f_4e20_50e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b6c_f259_2512", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b6c_f259_2512.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8b6c_f259_2512/request", "", "public", "Top Dataset, enh, wspd.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8b6c_f259_2512_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8b6c_f259_2512_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8b6c_f259_2512/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8b6c_f259_2512.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8b6c_f259_2512&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8b6c_f259_2512"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5acf_a1a8_4741", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5acf_a1a8_4741.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5acf_a1a8_4741/request", "", "public", "Top Dataset, enh, wspd.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5acf_a1a8_4741_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5acf_a1a8_4741_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5acf_a1a8_4741/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5acf_a1a8_4741.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5acf_a1a8_4741&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5acf_a1a8_4741"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d651_d831_9823", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d651_d831_9823.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d651_d831_9823/request", "", "public", "Top Dataset, enh, wspd.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d651_d831_9823_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d651_d831_9823_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d651_d831_9823/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d651_d831_9823.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d651_d831_9823&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d651_d831_9823"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb12_7c0e_bb04", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb12_7c0e_bb04.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb12_7c0e_bb04/request", "", "public", "Top Dataset, enh, wspd.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb12_7c0e_bb04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb12_7c0e_bb04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb12_7c0e_bb04/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb12_7c0e_bb04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb12_7c0e_bb04&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fb12_7c0e_bb04"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7458_4b9e_d06f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7458_4b9e_d06f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7458_4b9e_d06f/request", "", "public", "Top Dataset, enh, wspd.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7458_4b9e_d06f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7458_4b9e_d06f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7458_4b9e_d06f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7458_4b9e_d06f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7458_4b9e_d06f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7458_4b9e_d06f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1639_381e_d169", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1639_381e_d169.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1639_381e_d169/request", "", "public", "Top Dataset, enh, wspd.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1639_381e_d169_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1639_381e_d169_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1639_381e_d169/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1639_381e_d169.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1639_381e_d169&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1639_381e_d169"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa2a_b2a8_96c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa2a_b2a8_96c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa2a_b2a8_96c0/request", "", "public", "Top Dataset, enh, wspd.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa2a_b2a8_96c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa2a_b2a8_96c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa2a_b2a8_96c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa2a_b2a8_96c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa2a_b2a8_96c0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aa2a_b2a8_96c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7d6_585f_a27b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7d6_585f_a27b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e7d6_585f_a27b/request", "", "public", "Top Dataset, enh, wspd.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e7d6_585f_a27b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e7d6_585f_a27b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e7d6_585f_a27b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e7d6_585f_a27b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e7d6_585f_a27b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e7d6_585f_a27b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e88_c514_3557", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e88_c514_3557.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e88_c514_3557/request", "", "public", "Top Dataset, enh, wspd.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e88_c514_3557_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e88_c514_3557_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e88_c514_3557/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e88_c514_3557.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e88_c514_3557&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9e88_c514_3557"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_acf1_7f22_8c45", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_acf1_7f22_8c45.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_acf1_7f22_8c45/request", "", "public", "Top Dataset, enh, wspd.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_acf1_7f22_8c45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_acf1_7f22_8c45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_acf1_7f22_8c45/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_acf1_7f22_8c45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_acf1_7f22_8c45&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_acf1_7f22_8c45"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4175_a140_dd10", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4175_a140_dd10.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4175_a140_dd10/request", "", "public", "Top Dataset, enh, wspd.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4175_a140_dd10_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4175_a140_dd10_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4175_a140_dd10/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4175_a140_dd10.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4175_a140_dd10&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4175_a140_dd10"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37c7_3cda_58b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37c7_3cda_58b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_37c7_3cda_58b6/request", "", "public", "Top Dataset, enh, wspd.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_37c7_3cda_58b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_37c7_3cda_58b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_37c7_3cda_58b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_37c7_3cda_58b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_37c7_3cda_58b6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_37c7_3cda_58b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb2b_1bec_89a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb2b_1bec_89a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb2b_1bec_89a2/request", "", "public", "Top Dataset, enh, wspd.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb2b_1bec_89a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb2b_1bec_89a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb2b_1bec_89a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb2b_1bec_89a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb2b_1bec_89a2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cb2b_1bec_89a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d65_b257_7665", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d65_b257_7665.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d65_b257_7665/request", "", "public", "Top Dataset, enh, wspd.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d65_b257_7665_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d65_b257_7665_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d65_b257_7665/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d65_b257_7665.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d65_b257_7665&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8d65_b257_7665"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b4d_01cd_7dc8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b4d_01cd_7dc8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9b4d_01cd_7dc8/request", "", "public", "Top Dataset, enh, wspd.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9b4d_01cd_7dc8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9b4d_01cd_7dc8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9b4d_01cd_7dc8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9b4d_01cd_7dc8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9b4d_01cd_7dc8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9b4d_01cd_7dc8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efda_0589_befc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efda_0589_befc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_efda_0589_befc/request", "", "public", "Top Dataset, enh, wspd.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_efda_0589_befc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_efda_0589_befc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_efda_0589_befc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_efda_0589_befc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_efda_0589_befc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_efda_0589_befc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4cc3_0e6b_184a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4cc3_0e6b_184a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4cc3_0e6b_184a/request", "", "public", "Top Dataset, enh, wspd.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4cc3_0e6b_184a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4cc3_0e6b_184a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4cc3_0e6b_184a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4cc3_0e6b_184a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4cc3_0e6b_184a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4cc3_0e6b_184a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7939_1ed0_c468", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7939_1ed0_c468.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7939_1ed0_c468/request", "", "public", "Top Dataset, enh, wspd.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7939_1ed0_c468_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7939_1ed0_c468_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7939_1ed0_c468/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7939_1ed0_c468.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7939_1ed0_c468&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7939_1ed0_c468"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7b9_c268_d2f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7b9_c268_d2f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e7b9_c268_d2f1/request", "", "public", "Top Dataset, enh, wspd.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e7b9_c268_d2f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e7b9_c268_d2f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e7b9_c268_d2f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e7b9_c268_d2f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e7b9_c268_d2f1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e7b9_c268_d2f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfd7_1b8c_7a3f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfd7_1b8c_7a3f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bfd7_1b8c_7a3f/request", "", "public", "Top Dataset, enh, wspd.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bfd7_1b8c_7a3f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bfd7_1b8c_7a3f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bfd7_1b8c_7a3f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bfd7_1b8c_7a3f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bfd7_1b8c_7a3f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bfd7_1b8c_7a3f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c82_0d0f_a7ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c82_0d0f_a7ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6c82_0d0f_a7ea/request", "", "public", "Top Dataset, enh, wspd.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6c82_0d0f_a7ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6c82_0d0f_a7ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6c82_0d0f_a7ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6c82_0d0f_a7ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6c82_0d0f_a7ea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6c82_0d0f_a7ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e806_7914_09ed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e806_7914_09ed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e806_7914_09ed/request", "", "public", "Top Dataset, enh, wspd.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e806_7914_09ed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e806_7914_09ed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e806_7914_09ed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e806_7914_09ed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e806_7914_09ed&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e806_7914_09ed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6447_85e4_d228", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6447_85e4_d228.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6447_85e4_d228/request", "", "public", "Top Dataset, enh, wspd.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6447_85e4_d228_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6447_85e4_d228_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6447_85e4_d228/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6447_85e4_d228.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6447_85e4_d228&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6447_85e4_d228"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87f1_f097_18ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87f1_f097_18ba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_87f1_f097_18ba/request", "", "public", "Top Dataset, enh, wspd.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_87f1_f097_18ba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_87f1_f097_18ba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_87f1_f097_18ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_87f1_f097_18ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_87f1_f097_18ba&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_87f1_f097_18ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea0d_3d8e_9b30", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea0d_3d8e_9b30.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ea0d_3d8e_9b30/request", "", "public", "Top Dataset, enh, wspd.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ea0d_3d8e_9b30_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ea0d_3d8e_9b30_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ea0d_3d8e_9b30/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ea0d_3d8e_9b30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ea0d_3d8e_9b30&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ea0d_3d8e_9b30"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3599_1dfb_7848", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3599_1dfb_7848.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3599_1dfb_7848/request", "", "public", "Top Dataset, enh, wspd.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3599_1dfb_7848_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3599_1dfb_7848_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3599_1dfb_7848/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3599_1dfb_7848.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3599_1dfb_7848&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3599_1dfb_7848"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f84_44d2_a877", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f84_44d2_a877.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f84_44d2_a877/request", "", "public", "Top Dataset, enh, wspd.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f84_44d2_a877_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f84_44d2_a877_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f84_44d2_a877/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f84_44d2_a877.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f84_44d2_a877&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0f84_44d2_a877"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95ad_5741_556b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95ad_5741_556b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_95ad_5741_556b/request", "", "public", "Top Dataset, enh, wspd.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_95ad_5741_556b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_95ad_5741_556b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_95ad_5741_556b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_95ad_5741_556b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_95ad_5741_556b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_95ad_5741_556b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbf0_7e6a_bd74", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbf0_7e6a_bd74.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dbf0_7e6a_bd74/request", "", "public", "Top Dataset, enh, wspd.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dbf0_7e6a_bd74_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dbf0_7e6a_bd74_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dbf0_7e6a_bd74/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dbf0_7e6a_bd74.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dbf0_7e6a_bd74&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_dbf0_7e6a_bd74"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65bc_dc0e_cd92", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65bc_dc0e_cd92.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_65bc_dc0e_cd92/request", "", "public", "Top Dataset, enh, wspd.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_65bc_dc0e_cd92_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_65bc_dc0e_cd92_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_65bc_dc0e_cd92/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_65bc_dc0e_cd92.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_65bc_dc0e_cd92&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_65bc_dc0e_cd92"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e431_a9d6_9a1f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e431_a9d6_9a1f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e431_a9d6_9a1f/request", "", "public", "Top Dataset, enh, wspd.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e431_a9d6_9a1f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e431_a9d6_9a1f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e431_a9d6_9a1f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e431_a9d6_9a1f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e431_a9d6_9a1f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e431_a9d6_9a1f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cbfe_4000_2c77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cbfe_4000_2c77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cbfe_4000_2c77/request", "", "public", "Top Dataset, enh, wspd.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cbfe_4000_2c77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cbfe_4000_2c77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cbfe_4000_2c77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cbfe_4000_2c77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cbfe_4000_2c77&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cbfe_4000_2c77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_baa1_b5d2_dfb0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_baa1_b5d2_dfb0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_baa1_b5d2_dfb0/request", "", "public", "Top Dataset, enh, wspd.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_baa1_b5d2_dfb0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_baa1_b5d2_dfb0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_baa1_b5d2_dfb0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_baa1_b5d2_dfb0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_baa1_b5d2_dfb0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_baa1_b5d2_dfb0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e1a5_3e21_2244", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e1a5_3e21_2244.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e1a5_3e21_2244/request", "", "public", "Top Dataset, enh, wspd.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e1a5_3e21_2244_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e1a5_3e21_2244_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e1a5_3e21_2244/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e1a5_3e21_2244.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e1a5_3e21_2244&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e1a5_3e21_2244"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fdec_77e5_fc49", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fdec_77e5_fc49.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fdec_77e5_fc49/request", "", "public", "Top Dataset, enh, wspd.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fdec_77e5_fc49_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fdec_77e5_fc49_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fdec_77e5_fc49/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fdec_77e5_fc49.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fdec_77e5_fc49&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fdec_77e5_fc49"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f8c_07e9_c507", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f8c_07e9_c507.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3f8c_07e9_c507/request", "", "public", "Top Dataset, enh, wspd.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3f8c_07e9_c507_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3f8c_07e9_c507_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3f8c_07e9_c507/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3f8c_07e9_c507.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3f8c_07e9_c507&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3f8c_07e9_c507"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a77c_fc19_110c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a77c_fc19_110c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a77c_fc19_110c/request", "", "public", "Top Dataset, enh, wspd.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a77c_fc19_110c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a77c_fc19_110c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a77c_fc19_110c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a77c_fc19_110c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a77c_fc19_110c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a77c_fc19_110c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70ec_04e6_415d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70ec_04e6_415d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_70ec_04e6_415d/request", "", "public", "Top Dataset, enh, wspd.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_70ec_04e6_415d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_70ec_04e6_415d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_70ec_04e6_415d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_70ec_04e6_415d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_70ec_04e6_415d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_70ec_04e6_415d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92db_319f_6d81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92db_319f_6d81.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_92db_319f_6d81/request", "", "public", "Top Dataset, enh, wspd.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_92db_319f_6d81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_92db_319f_6d81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_92db_319f_6d81/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_92db_319f_6d81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_92db_319f_6d81&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_92db_319f_6d81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c00c_7d8a_f898", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c00c_7d8a_f898.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c00c_7d8a_f898/request", "", "public", "Top Dataset, enh, wspd.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c00c_7d8a_f898_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c00c_7d8a_f898_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c00c_7d8a_f898/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c00c_7d8a_f898.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c00c_7d8a_f898&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c00c_7d8a_f898"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2550_beba_e8b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2550_beba_e8b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2550_beba_e8b0/request", "", "public", "Top Dataset, enh, wspd.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2550_beba_e8b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2550_beba_e8b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2550_beba_e8b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2550_beba_e8b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2550_beba_e8b0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2550_beba_e8b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b36a_6c5d_04b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b36a_6c5d_04b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b36a_6c5d_04b5/request", "", "public", "Top Dataset, enh, wspd.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b36a_6c5d_04b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b36a_6c5d_04b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b36a_6c5d_04b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b36a_6c5d_04b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b36a_6c5d_04b5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b36a_6c5d_04b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4ed_21a5_4c5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4ed_21a5_4c5b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f4ed_21a5_4c5b/request", "", "public", "Top Dataset, enh, wspd.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f4ed_21a5_4c5b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f4ed_21a5_4c5b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f4ed_21a5_4c5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f4ed_21a5_4c5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f4ed_21a5_4c5b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f4ed_21a5_4c5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95af_aa75_956a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95af_aa75_956a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_95af_aa75_956a/request", "", "public", "Top Dataset, enh, wspd.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_95af_aa75_956a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_95af_aa75_956a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_95af_aa75_956a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_95af_aa75_956a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_95af_aa75_956a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_95af_aa75_956a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4530_0b6c_0fe9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4530_0b6c_0fe9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4530_0b6c_0fe9/request", "", "public", "Top Dataset, enh, wspd.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4530_0b6c_0fe9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4530_0b6c_0fe9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4530_0b6c_0fe9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4530_0b6c_0fe9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4530_0b6c_0fe9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4530_0b6c_0fe9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a7a8_3b50_c608", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a7a8_3b50_c608.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a7a8_3b50_c608/request", "", "public", "Top Dataset, enh, wspd.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a7a8_3b50_c608_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a7a8_3b50_c608_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a7a8_3b50_c608/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a7a8_3b50_c608.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a7a8_3b50_c608&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a7a8_3b50_c608"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_23dd_044f_cf5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_23dd_044f_cf5b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_23dd_044f_cf5b/request", "", "public", "Top Dataset, enh, wspd.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_23dd_044f_cf5b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_23dd_044f_cf5b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_23dd_044f_cf5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_23dd_044f_cf5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_23dd_044f_cf5b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_23dd_044f_cf5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_74b4_8424_8790", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_74b4_8424_8790.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_74b4_8424_8790/request", "", "public", "Top Dataset, enh, wspd.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_74b4_8424_8790_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_74b4_8424_8790_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_74b4_8424_8790/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_74b4_8424_8790.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_74b4_8424_8790&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_74b4_8424_8790"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da5b_f726_302d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da5b_f726_302d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da5b_f726_302d/request", "", "public", "Top Dataset, enh, wspd.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da5b_f726_302d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da5b_f726_302d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da5b_f726_302d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da5b_f726_302d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da5b_f726_302d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_da5b_f726_302d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_152a_bb7c_491b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_152a_bb7c_491b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_152a_bb7c_491b/request", "", "public", "Top Dataset, enh, wspd3.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_152a_bb7c_491b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_152a_bb7c_491b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_152a_bb7c_491b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_152a_bb7c_491b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_152a_bb7c_491b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_152a_bb7c_491b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5bbc_2c50_9cca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5bbc_2c50_9cca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5bbc_2c50_9cca/request", "", "public", "Top Dataset, enh, wspd3.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5bbc_2c50_9cca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5bbc_2c50_9cca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5bbc_2c50_9cca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5bbc_2c50_9cca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5bbc_2c50_9cca&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5bbc_2c50_9cca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfaa_0cde_16ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfaa_0cde_16ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dfaa_0cde_16ae/request", "", "public", "Top Dataset, enh, wspd3.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dfaa_0cde_16ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dfaa_0cde_16ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dfaa_0cde_16ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dfaa_0cde_16ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dfaa_0cde_16ae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dfaa_0cde_16ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7051_ead0_6419", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7051_ead0_6419.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7051_ead0_6419/request", "", "public", "Top Dataset, enh, wspd3.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7051_ead0_6419_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7051_ead0_6419_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7051_ead0_6419/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7051_ead0_6419.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7051_ead0_6419&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7051_ead0_6419"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2021_fb54_c1de", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2021_fb54_c1de.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2021_fb54_c1de/request", "", "public", "Top Dataset, enh, wspd3.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2021_fb54_c1de_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2021_fb54_c1de_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2021_fb54_c1de/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2021_fb54_c1de.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2021_fb54_c1de&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2021_fb54_c1de"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d398_8a31_0f08", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d398_8a31_0f08.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d398_8a31_0f08/request", "", "public", "Top Dataset, enh, wspd3.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, wspd3.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d398_8a31_0f08_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d398_8a31_0f08_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d398_8a31_0f08/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d398_8a31_0f08.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d398_8a31_0f08&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d398_8a31_0f08"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f17d_3855_7a35", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f17d_3855_7a35.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f17d_3855_7a35/request", "", "public", "Top Dataset, enh, wspd3.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f17d_3855_7a35_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f17d_3855_7a35_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f17d_3855_7a35/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f17d_3855_7a35.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f17d_3855_7a35&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f17d_3855_7a35"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0c7_e85a_3427", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0c7_e85a_3427.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a0c7_e85a_3427/request", "", "public", "Top Dataset, enh, wspd3.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a0c7_e85a_3427_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a0c7_e85a_3427_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a0c7_e85a_3427/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a0c7_e85a_3427.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a0c7_e85a_3427&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a0c7_e85a_3427"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b577_8e24_d7f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b577_8e24_d7f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b577_8e24_d7f6/request", "", "public", "Top Dataset, enh, wspd3.day fraction (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b577_8e24_d7f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b577_8e24_d7f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b577_8e24_d7f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b577_8e24_d7f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b577_8e24_d7f6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b577_8e24_d7f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7190_5873_0f35", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7190_5873_0f35.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7190_5873_0f35/request", "", "public", "Top Dataset, enh, wspd3.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7190_5873_0f35_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7190_5873_0f35_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7190_5873_0f35/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7190_5873_0f35.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7190_5873_0f35&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7190_5873_0f35"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03c5_227e_b524", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03c5_227e_b524.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03c5_227e_b524/request", "", "public", "Top Dataset, enh, wspd3.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03c5_227e_b524_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03c5_227e_b524_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03c5_227e_b524/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03c5_227e_b524.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03c5_227e_b524&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_03c5_227e_b524"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c4e1_f1e4_15c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c4e1_f1e4_15c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c4e1_f1e4_15c4/request", "", "public", "Top Dataset, enh, wspd3.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c4e1_f1e4_15c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c4e1_f1e4_15c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c4e1_f1e4_15c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c4e1_f1e4_15c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c4e1_f1e4_15c4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c4e1_f1e4_15c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a04_7472_1e3a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a04_7472_1e3a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8a04_7472_1e3a/request", "", "public", "Top Dataset, enh, wspd3.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8a04_7472_1e3a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8a04_7472_1e3a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8a04_7472_1e3a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8a04_7472_1e3a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8a04_7472_1e3a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8a04_7472_1e3a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4b8_c90d_80da", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4b8_c90d_80da.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e4b8_c90d_80da/request", "", "public", "Top Dataset, enh, wspd3.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e4b8_c90d_80da_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e4b8_c90d_80da_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e4b8_c90d_80da/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e4b8_c90d_80da.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e4b8_c90d_80da&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e4b8_c90d_80da"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd47_8113_72fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd47_8113_72fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fd47_8113_72fe/request", "", "public", "Top Dataset, enh, wspd3.mean (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fd47_8113_72fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fd47_8113_72fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fd47_8113_72fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fd47_8113_72fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fd47_8113_72fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fd47_8113_72fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a114_7c37_ac24", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a114_7c37_ac24.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a114_7c37_ac24/request", "", "public", "Top Dataset, enh, wspd3.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a114_7c37_ac24_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a114_7c37_ac24_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a114_7c37_ac24/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a114_7c37_ac24.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a114_7c37_ac24&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a114_7c37_ac24"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ad9_f5fe_0b15", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ad9_f5fe_0b15.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ad9_f5fe_0b15/request", "", "public", "Top Dataset, enh, wspd3.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ad9_f5fe_0b15_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ad9_f5fe_0b15_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ad9_f5fe_0b15/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ad9_f5fe_0b15.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ad9_f5fe_0b15&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1ad9_f5fe_0b15"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b2f_15db_96e9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b2f_15db_96e9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b2f_15db_96e9/request", "", "public", "Top Dataset, enh, wspd3.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b2f_15db_96e9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b2f_15db_96e9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b2f_15db_96e9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b2f_15db_96e9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b2f_15db_96e9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7b2f_15db_96e9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c163_0f73_38c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c163_0f73_38c5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c163_0f73_38c5/request", "", "public", "Top Dataset, enh, wspd3.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c163_0f73_38c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c163_0f73_38c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c163_0f73_38c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c163_0f73_38c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c163_0f73_38c5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c163_0f73_38c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b0a6_cb91_9f69", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b0a6_cb91_9f69.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b0a6_cb91_9f69/request", "", "public", "Top Dataset, enh, wspd3.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b0a6_cb91_9f69_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b0a6_cb91_9f69_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b0a6_cb91_9f69/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b0a6_cb91_9f69.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b0a6_cb91_9f69&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b0a6_cb91_9f69"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9b6_1c09_cedd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9b6_1c09_cedd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e9b6_1c09_cedd/request", "", "public", "Top Dataset, enh, wspd3.mean day (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e9b6_1c09_cedd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e9b6_1c09_cedd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e9b6_1c09_cedd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e9b6_1c09_cedd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e9b6_1c09_cedd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e9b6_1c09_cedd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53a1_7629_d4f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53a1_7629_d4f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_53a1_7629_d4f2/request", "", "public", "Top Dataset, enh, wspd3.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_53a1_7629_d4f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_53a1_7629_d4f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_53a1_7629_d4f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_53a1_7629_d4f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_53a1_7629_d4f2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_53a1_7629_d4f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d05_0aa6_7233", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d05_0aa6_7233.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d05_0aa6_7233/request", "", "public", "Top Dataset, enh, wspd3.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d05_0aa6_7233_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d05_0aa6_7233_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d05_0aa6_7233/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d05_0aa6_7233.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d05_0aa6_7233&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d05_0aa6_7233"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddbd_3ac1_3457", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddbd_3ac1_3457.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ddbd_3ac1_3457/request", "", "public", "Top Dataset, enh, wspd3.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ddbd_3ac1_3457_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ddbd_3ac1_3457_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ddbd_3ac1_3457/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ddbd_3ac1_3457.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ddbd_3ac1_3457&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ddbd_3ac1_3457"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3235_13ca_0ce5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3235_13ca_0ce5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3235_13ca_0ce5/request", "", "public", "Top Dataset, enh, wspd3.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3235_13ca_0ce5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3235_13ca_0ce5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3235_13ca_0ce5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3235_13ca_0ce5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3235_13ca_0ce5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3235_13ca_0ce5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_52a9_1699_ae02", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_52a9_1699_ae02.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_52a9_1699_ae02/request", "", "public", "Top Dataset, enh, wspd3.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_52a9_1699_ae02_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_52a9_1699_ae02_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_52a9_1699_ae02/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_52a9_1699_ae02.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_52a9_1699_ae02&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_52a9_1699_ae02"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92db_dd72_4c19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92db_dd72_4c19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_92db_dd72_4c19/request", "", "public", "Top Dataset, enh, wspd3.mean lat (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_92db_dd72_4c19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_92db_dd72_4c19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_92db_dd72_4c19/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_92db_dd72_4c19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_92db_dd72_4c19&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_92db_dd72_4c19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_16b3_92a1_4f1a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_16b3_92a1_4f1a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_16b3_92a1_4f1a/request", "", "public", "Top Dataset, enh, wspd3.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_16b3_92a1_4f1a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_16b3_92a1_4f1a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_16b3_92a1_4f1a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_16b3_92a1_4f1a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_16b3_92a1_4f1a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_16b3_92a1_4f1a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8279_0070_cc2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8279_0070_cc2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8279_0070_cc2f/request", "", "public", "Top Dataset, enh, wspd3.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8279_0070_cc2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8279_0070_cc2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8279_0070_cc2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8279_0070_cc2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8279_0070_cc2f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8279_0070_cc2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df09_ff56_89d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df09_ff56_89d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_df09_ff56_89d4/request", "", "public", "Top Dataset, enh, wspd3.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_df09_ff56_89d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_df09_ff56_89d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_df09_ff56_89d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_df09_ff56_89d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_df09_ff56_89d4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_df09_ff56_89d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d05_78e5_5350", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d05_78e5_5350.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d05_78e5_5350/request", "", "public", "Top Dataset, enh, wspd3.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d05_78e5_5350_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d05_78e5_5350_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d05_78e5_5350/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d05_78e5_5350.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d05_78e5_5350&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6d05_78e5_5350"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_49d9_28e4_c123", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_49d9_28e4_c123.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_49d9_28e4_c123/request", "", "public", "Top Dataset, enh, wspd3.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_49d9_28e4_c123_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_49d9_28e4_c123_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_49d9_28e4_c123/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_49d9_28e4_c123.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_49d9_28e4_c123&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_49d9_28e4_c123"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79de_b689_33fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79de_b689_33fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_79de_b689_33fd/request", "", "public", "Top Dataset, enh, wspd3.mean lon (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_79de_b689_33fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_79de_b689_33fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_79de_b689_33fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_79de_b689_33fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_79de_b689_33fd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_79de_b689_33fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbef_3009_1420", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbef_3009_1420.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fbef_3009_1420/request", "", "public", "Top Dataset, enh, wspd3.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fbef_3009_1420_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fbef_3009_1420_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fbef_3009_1420/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fbef_3009_1420.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fbef_3009_1420&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fbef_3009_1420"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94ef_d727_d9da", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94ef_d727_d9da.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_94ef_d727_d9da/request", "", "public", "Top Dataset, enh, wspd3.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_94ef_d727_d9da_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_94ef_d727_d9da_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_94ef_d727_d9da/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_94ef_d727_d9da.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_94ef_d727_d9da&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_94ef_d727_d9da"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f65c_f35c_166e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f65c_f35c_166e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f65c_f35c_166e/request", "", "public", "Top Dataset, enh, wspd3.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f65c_f35c_166e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f65c_f35c_166e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f65c_f35c_166e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f65c_f35c_166e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f65c_f35c_166e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f65c_f35c_166e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b685_2a4c_0d2b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b685_2a4c_0d2b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b685_2a4c_0d2b/request", "", "public", "Top Dataset, enh, wspd3.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b685_2a4c_0d2b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b685_2a4c_0d2b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b685_2a4c_0d2b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b685_2a4c_0d2b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b685_2a4c_0d2b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b685_2a4c_0d2b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f64_4411_72ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f64_4411_72ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3f64_4411_72ab/request", "", "public", "Top Dataset, enh, wspd3.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3f64_4411_72ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3f64_4411_72ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3f64_4411_72ab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3f64_4411_72ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3f64_4411_72ab&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3f64_4411_72ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_718f_749d_d07f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_718f_749d_d07f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_718f_749d_d07f/request", "", "public", "Top Dataset, enh, wspd3.nobs (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_718f_749d_d07f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_718f_749d_d07f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_718f_749d_d07f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_718f_749d_d07f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_718f_749d_d07f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_718f_749d_d07f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_184d_3c3e_2156", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_184d_3c3e_2156.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_184d_3c3e_2156/request", "", "public", "Top Dataset, enh, wspd3.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 1st Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_184d_3c3e_2156_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_184d_3c3e_2156_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_184d_3c3e_2156/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_184d_3c3e_2156.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_184d_3c3e_2156&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_184d_3c3e_2156"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_768a_9fe5_76d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_768a_9fe5_76d2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_768a_9fe5_76d2/request", "", "public", "Top Dataset, enh, wspd3.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 1st Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_768a_9fe5_76d2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_768a_9fe5_76d2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_768a_9fe5_76d2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_768a_9fe5_76d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_768a_9fe5_76d2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_768a_9fe5_76d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8c3_f03e_03c7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8c3_f03e_03c7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a8c3_f03e_03c7/request", "", "public", "Top Dataset, enh, wspd3.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 1st Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a8c3_f03e_03c7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a8c3_f03e_03c7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a8c3_f03e_03c7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a8c3_f03e_03c7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a8c3_f03e_03c7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a8c3_f03e_03c7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4191_27f7_bf6a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4191_27f7_bf6a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4191_27f7_bf6a/request", "", "public", "Top Dataset, enh, wspd3.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 1st Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4191_27f7_bf6a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4191_27f7_bf6a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4191_27f7_bf6a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4191_27f7_bf6a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4191_27f7_bf6a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4191_27f7_bf6a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d34_f128_7681", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d34_f128_7681.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d34_f128_7681/request", "", "public", "Top Dataset, enh, wspd3.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 1st Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d34_f128_7681_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d34_f128_7681_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d34_f128_7681/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d34_f128_7681.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d34_f128_7681&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1d34_f128_7681"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe97_4072_fccb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe97_4072_fccb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fe97_4072_fccb/request", "", "public", "Top Dataset, enh, wspd3.sextile1 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 1st Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fe97_4072_fccb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fe97_4072_fccb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fe97_4072_fccb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fe97_4072_fccb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fe97_4072_fccb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fe97_4072_fccb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c8a5_53b3_d154", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c8a5_53b3_d154.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c8a5_53b3_d154/request", "", "public", "Top Dataset, enh, wspd3.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 3rd Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c8a5_53b3_d154_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c8a5_53b3_d154_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c8a5_53b3_d154/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c8a5_53b3_d154.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c8a5_53b3_d154&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c8a5_53b3_d154"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4bce_301a_ae6a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4bce_301a_ae6a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4bce_301a_ae6a/request", "", "public", "Top Dataset, enh, wspd3.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 3rd Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4bce_301a_ae6a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4bce_301a_ae6a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4bce_301a_ae6a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4bce_301a_ae6a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4bce_301a_ae6a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4bce_301a_ae6a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b81a_0375_8c39", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b81a_0375_8c39.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b81a_0375_8c39/request", "", "public", "Top Dataset, enh, wspd3.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 3rd Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b81a_0375_8c39_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b81a_0375_8c39_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b81a_0375_8c39/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b81a_0375_8c39.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b81a_0375_8c39&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b81a_0375_8c39"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f798_c1d0_46f8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f798_c1d0_46f8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f798_c1d0_46f8/request", "", "public", "Top Dataset, enh, wspd3.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 3rd Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f798_c1d0_46f8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f798_c1d0_46f8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f798_c1d0_46f8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f798_c1d0_46f8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f798_c1d0_46f8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f798_c1d0_46f8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08f1_0e34_c400", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08f1_0e34_c400.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_08f1_0e34_c400/request", "", "public", "Top Dataset, enh, wspd3.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 3rd Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_08f1_0e34_c400_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_08f1_0e34_c400_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_08f1_0e34_c400/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_08f1_0e34_c400.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_08f1_0e34_c400&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_08f1_0e34_c400"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc44_8cf8_afc2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc44_8cf8_afc2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bc44_8cf8_afc2/request", "", "public", "Top Dataset, enh, wspd3.sextile3 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 3rd Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bc44_8cf8_afc2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bc44_8cf8_afc2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bc44_8cf8_afc2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bc44_8cf8_afc2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bc44_8cf8_afc2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bc44_8cf8_afc2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_849a_e4b1_5ea3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_849a_e4b1_5ea3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_849a_e4b1_5ea3/request", "", "public", "Top Dataset, enh, wspd3.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 5th Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_849a_e4b1_5ea3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_849a_e4b1_5ea3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_849a_e4b1_5ea3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_849a_e4b1_5ea3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_849a_e4b1_5ea3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_849a_e4b1_5ea3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_280d_1a91_0fc9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_280d_1a91_0fc9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_280d_1a91_0fc9/request", "", "public", "Top Dataset, enh, wspd3.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 5th Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_280d_1a91_0fc9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_280d_1a91_0fc9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_280d_1a91_0fc9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_280d_1a91_0fc9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_280d_1a91_0fc9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_280d_1a91_0fc9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6443_37f5_d723", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6443_37f5_d723.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6443_37f5_d723/request", "", "public", "Top Dataset, enh, wspd3.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 5th Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6443_37f5_d723_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6443_37f5_d723_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6443_37f5_d723/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6443_37f5_d723.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6443_37f5_d723&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6443_37f5_d723"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_69ba_e41e_a047", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_69ba_e41e_a047.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_69ba_e41e_a047/request", "", "public", "Top Dataset, enh, wspd3.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 5th Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_69ba_e41e_a047_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_69ba_e41e_a047_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_69ba_e41e_a047/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_69ba_e41e_a047.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_69ba_e41e_a047&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_69ba_e41e_a047"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38e5_a011_addb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38e5_a011_addb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_38e5_a011_addb/request", "", "public", "Top Dataset, enh, wspd3.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 5th Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_38e5_a011_addb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_38e5_a011_addb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_38e5_a011_addb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_38e5_a011_addb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_38e5_a011_addb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_38e5_a011_addb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_607e_ae76_a278", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_607e_ae76_a278.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_607e_ae76_a278/request", "", "public", "Top Dataset, enh, wspd3.sextile5 (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 5th Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_607e_ae76_a278_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_607e_ae76_a278_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_607e_ae76_a278/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_607e_ae76_a278.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_607e_ae76_a278&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_607e_ae76_a278"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d860_1c97_7362", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d860_1c97_7362.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d860_1c97_7362/request", "", "public", "Top Dataset, enh, wspd3.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Standard Deviation at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d860_1c97_7362_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d860_1c97_7362_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d860_1c97_7362/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d860_1c97_7362.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d860_1c97_7362&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d860_1c97_7362"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f57_8526_f96c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f57_8526_f96c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f57_8526_f96c/request", "", "public", "Top Dataset, enh, wspd3.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Standard Deviation at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f57_8526_f96c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f57_8526_f96c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f57_8526_f96c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f57_8526_f96c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f57_8526_f96c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7f57_8526_f96c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbdf_a732_d952", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbdf_a732_d952.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dbdf_a732_d952/request", "", "public", "Top Dataset, enh, wspd3.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, wspd3.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Standard Deviation at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dbdf_a732_d952_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dbdf_a732_d952_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dbdf_a732_d952/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dbdf_a732_d952.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dbdf_a732_d952&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dbdf_a732_d952"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1aeb_1cda_73e9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1aeb_1cda_73e9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1aeb_1cda_73e9/request", "", "public", "Top Dataset, enh, wspd3.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Standard Deviation at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1aeb_1cda_73e9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1aeb_1cda_73e9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1aeb_1cda_73e9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1aeb_1cda_73e9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1aeb_1cda_73e9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1aeb_1cda_73e9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86b1_ea9d_9a98", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86b1_ea9d_9a98.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_86b1_ea9d_9a98/request", "", "public", "Top Dataset, enh, wspd3.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Standard Deviation at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86b1_ea9d_9a98_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86b1_ea9d_9a98_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86b1_ea9d_9a98/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86b1_ea9d_9a98.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86b1_ea9d_9a98&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_86b1_ea9d_9a98"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9969_cf68_1db2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9969_cf68_1db2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9969_cf68_1db2/request", "", "public", "Top Dataset, enh, wspd3.stddev (ICOADS 2-degree Enhanced), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Enhanced (Top Dataset, enh, wspd3.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Standard Deviation at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9969_cf68_1db2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9969_cf68_1db2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9969_cf68_1db2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9969_cf68_1db2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9969_cf68_1db2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9969_cf68_1db2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3241_c644_229b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3241_c644_229b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3241_c644_229b/request", "", "public", "Top Dataset, first guess, precip.first.mon.total.1x1 (GPCC 1x1 Precipitation First Guess), 1.0\u00b0, 2012-present", "Global Precipitation Climatology Centre (GPCC) 1x1 Precipitation First Guess (Top Dataset, first guess, precip.first.mon.total.1x1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly Total of Precipitation: 1degree Version: First Guess, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3241_c644_229b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3241_c644_229b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3241_c644_229b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3241_c644_229b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3241_c644_229b&showErrors=false&email=", "GPCC", "noaa_esrl_3241_c644_229b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b7e8_06ca_e437", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b7e8_06ca_e437.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b7e8_06ca_e437/request", "", "public", "Top Dataset, full v6, precip.mon.1981-2010.ltm.2.5x2.5.v6, 0001", "Global Precipitation Climatology Centre (GPCC) Precipitation Full V6 2.5x2.5 M (Top Dataset, full v6, precip.mon.1981-2010.ltm.2.5x2.5.v6)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Long Term Monthly Total of precipitation, mm)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b7e8_06ca_e437_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b7e8_06ca_e437_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b7e8_06ca_e437/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b7e8_06ca_e437.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b7e8_06ca_e437&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b7e8_06ca_e437"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5117_32a2_2c76", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5117_32a2_2c76.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5117_32a2_2c76/request", "", "public", "Top Dataset, full v6, precip.mon.nobs.2.5x2.5.v6, 1901-2010", "Global Precipitation Climatology Centre (GPCC) Precipitation Full V6 2.5x2.5 Monthly NOBS (Top Dataset, full v6, precip.mon.nobs.2.5x2.5.v6)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly total of precipitation: nobs, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5117_32a2_2c76_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5117_32a2_2c76_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5117_32a2_2c76/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5117_32a2_2c76.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5117_32a2_2c76&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5117_32a2_2c76"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a99_8eb4_647c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a99_8eb4_647c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9a99_8eb4_647c/request", "", "public", "Top Dataset, full v6, precip.mon.total.2.5x2.5.v6 (GPCC Precipitation Full V6 2.5x2.5 M), 1901-2010", "Global Precipitation Climatology Centre (GPCC) Precipitation Full V6 2.5x2.5 M (Top Dataset, full v6, precip.mon.total.2.5x2.5.v6)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly Total of precipitation, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9a99_8eb4_647c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9a99_8eb4_647c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9a99_8eb4_647c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9a99_8eb4_647c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9a99_8eb4_647c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9a99_8eb4_647c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce96_32b8_e180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce96_32b8_e180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ce96_32b8_e180/request", "", "public", "Top Dataset, full v7, precip.mon.ltm.2.5x2.5.v7.1981-2010, 0001", "Global Precipitation Climatology Centre (GPCC) Precipitation Full V7 2.5x2.5 Monthly Total (Top Dataset, full v7, precip.mon.ltm.2.5x2.5.v7.1981-2010)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Long Term Mean GPCC Monthly Total of precipitation, mm)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ce96_32b8_e180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ce96_32b8_e180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ce96_32b8_e180/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ce96_32b8_e180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ce96_32b8_e180&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ce96_32b8_e180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f6c_b13b_ff1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f6c_b13b_ff1e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f6c_b13b_ff1e/request", "", "public", "Top Dataset, full v7, precip.mon.nobs.2.5x2.5.v7, 1901-2013", "Global Precipitation Climatology Centre (GPCC) Precipitation Full V7 2.5x2.5 Monthly NOBS (Top Dataset, full v7, precip.mon.nobs.2.5x2.5.v7)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly total of precipitation: nobs, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f6c_b13b_ff1e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f6c_b13b_ff1e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f6c_b13b_ff1e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f6c_b13b_ff1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f6c_b13b_ff1e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8f6c_b13b_ff1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6853_1a49_2d2b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6853_1a49_2d2b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6853_1a49_2d2b/request", "", "public", "Top Dataset, full v7, precip.mon.total.2.5x2.5.v7, 1901-2013", "Global Precipitation Climatology Centre (GPCC) Precipitation Full V7 2.5x2.5 Monthly Total (Top Dataset, full v7, precip.mon.total.2.5x2.5.v7)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly Total of precipitation, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6853_1a49_2d2b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6853_1a49_2d2b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6853_1a49_2d2b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6853_1a49_2d2b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6853_1a49_2d2b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6853_1a49_2d2b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_542a_4784_29b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_542a_4784_29b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_542a_4784_29b3/request", "", "public", "Top Dataset, gaussian grid, air.2m.mon.1981-2010.ltm (Monthly NCEP/DOE Reanalysis 2), 0001", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Long Term Mean of Forecast of Air temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_542a_4784_29b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_542a_4784_29b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_542a_4784_29b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_542a_4784_29b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_542a_4784_29b3&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_542a_4784_29b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7aef_ea89_cc6a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7aef_ea89_cc6a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7aef_ea89_cc6a/request", "", "public", "Top Dataset, gaussian grid, air.2m.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Mean of Forecast of Air temperature at 2 m, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7aef_ea89_cc6a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7aef_ea89_cc6a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7aef_ea89_cc6a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7aef_ea89_cc6a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7aef_ea89_cc6a&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7aef_ea89_cc6a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1716_1d97_1684", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1716_1d97_1684.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1716_1d97_1684/request", "", "public", "Top Dataset, gaussian grid, cprat.sfc.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (Monthly Mean of Convective Precipitation Rate at Surface, Kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1716_1d97_1684_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1716_1d97_1684_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1716_1d97_1684/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1716_1d97_1684.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1716_1d97_1684&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_1716_1d97_1684"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5aed_6d99_5f61", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5aed_6d99_5f61.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5aed_6d99_5f61/request", "", "public", "Top Dataset, gaussian grid, dlwrf.sfc.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (Monthly Mean of Downward Longwave Radiation Flux at Surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5aed_6d99_5f61_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5aed_6d99_5f61_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5aed_6d99_5f61/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5aed_6d99_5f61.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5aed_6d99_5f61&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_5aed_6d99_5f61"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab75_c2a5_a306", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab75_c2a5_a306.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab75_c2a5_a306/request", "", "public", "Top Dataset, gaussian grid, dswrf.ntat.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Monthly Mean of Downward Solar Radiation Flux at the Nominal Top of Atmosphere, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab75_c2a5_a306_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab75_c2a5_a306_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab75_c2a5_a306/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab75_c2a5_a306.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab75_c2a5_a306&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ab75_c2a5_a306"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86e8_5346_4733", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86e8_5346_4733.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_86e8_5346_4733/request", "", "public", "Top Dataset, gaussian grid, dswrf.sfc.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Monthly Mean of Downward Solar Radiation Flux at Surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86e8_5346_4733_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86e8_5346_4733_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86e8_5346_4733/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86e8_5346_4733.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86e8_5346_4733&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_86e8_5346_4733"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_843c_2c00_5a74", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_843c_2c00_5a74.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_843c_2c00_5a74/request", "", "public", "Top Dataset, gaussian grid, gflux.sfc.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Monthly Mean of Ground Heat Flux at Surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_843c_2c00_5a74_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_843c_2c00_5a74_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_843c_2c00_5a74/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_843c_2c00_5a74.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_843c_2c00_5a74&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_843c_2c00_5a74"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a7e_144e_e7e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a7e_144e_e7e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a7e_144e_e7e2/request", "", "public", "Top Dataset, gaussian grid, icec.sfc.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Monthly Mean of Forecast of Ice Concentration at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a7e_144e_e7e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a7e_144e_e7e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a7e_144e_e7e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a7e_144e_e7e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a7e_144e_e7e2&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_3a7e_144e_e7e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e59d_a1fc_37c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e59d_a1fc_37c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e59d_a1fc_37c6/request", "", "public", "Top Dataset, gaussian grid, icec.sfc.mon.mean.1982-2010.ltm (Monthly NCEP/DOE Reanalysis 2), 0001", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Long Term Mean Monthly Mean of Forecast of Ice Concentration at Surface)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e59d_a1fc_37c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e59d_a1fc_37c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e59d_a1fc_37c6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e59d_a1fc_37c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e59d_a1fc_37c6&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_e59d_a1fc_37c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_407f_0073_169d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_407f_0073_169d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_407f_0073_169d/request", "", "public", "Top Dataset, gaussian grid, lhtfl.sfc.mon.1981-2010.ltm (Monthly NCEP/DOE Reanalysis 2), 0001", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Monthly Long Term Mean of Latent Heat Net Flux at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_407f_0073_169d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_407f_0073_169d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_407f_0073_169d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_407f_0073_169d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_407f_0073_169d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_407f_0073_169d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d717_f081_4f36", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d717_f081_4f36.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d717_f081_4f36/request", "", "public", "Top Dataset, gaussian grid, lhtfl.sfc.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Monthly Mean of Latent Heat Net Flux at Surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d717_f081_4f36_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d717_f081_4f36_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d717_f081_4f36/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d717_f081_4f36.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d717_f081_4f36&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_d717_f081_4f36"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ca0_f424_c363", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ca0_f424_c363.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ca0_f424_c363/request", "", "public", "Top Dataset, gaussian grid, pevpr.sfc.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Monthly Mean of Potential Evaporation Rate at Surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ca0_f424_c363_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ca0_f424_c363_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ca0_f424_c363/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ca0_f424_c363.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ca0_f424_c363&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_1ca0_f424_c363"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f59d_1937_ceb0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f59d_1937_ceb0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f59d_1937_ceb0/request", "", "public", "Top Dataset, gaussian grid, prate.sfc.gauss.day.ltm.1981-2010 (Daily NCEP/DOE Reanalysis 2), 0001", "Daily National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Daily Long Term Mean of Precipitation Rate at Surface, Kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f59d_1937_ceb0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f59d_1937_ceb0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f59d_1937_ceb0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f59d_1937_ceb0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f59d_1937_ceb0&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_f59d_1937_ceb0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3870_306b_ed58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3870_306b_ed58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3870_306b_ed58/request", "", "public", "Top Dataset, gaussian grid, prate.sfc.mon.1981-2010.ltm (Monthly NCEP/DOE Reanalysis 2), 0001", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Monthly Long Term Mean of Precipitation Rate at Surface, Kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3870_306b_ed58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3870_306b_ed58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3870_306b_ed58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3870_306b_ed58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3870_306b_ed58&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_3870_306b_ed58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7179_4345_95d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7179_4345_95d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7179_4345_95d7/request", "", "public", "Top Dataset, gaussian grid, prate.sfc.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Monthly Mean of Precipitation Rate at Surface, Kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7179_4345_95d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7179_4345_95d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7179_4345_95d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7179_4345_95d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7179_4345_95d7&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7179_4345_95d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d9ce_a2d2_340c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d9ce_a2d2_340c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d9ce_a2d2_340c/request", "", "public", "Top Dataset, gaussian grid, pres.hcb.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Mean of Pressure at the High Cloud Bottom, Pascals)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d9ce_a2d2_340c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d9ce_a2d2_340c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d9ce_a2d2_340c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d9ce_a2d2_340c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d9ce_a2d2_340c&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_d9ce_a2d2_340c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91ac_471d_d700", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91ac_471d_d700.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_91ac_471d_d700/request", "", "public", "Top Dataset, gaussian grid, pres.hct.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Mean of Pressure at the High Cloud Top, Pascals)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_91ac_471d_d700_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_91ac_471d_d700_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_91ac_471d_d700/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_91ac_471d_d700.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_91ac_471d_d700&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_91ac_471d_d700"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6608_317f_a685", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6608_317f_a685.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6608_317f_a685/request", "", "public", "Top Dataset, gaussian grid, pres.lcb.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Mean of Pressure at the Low Cloud Bottom, Pascals)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6608_317f_a685_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6608_317f_a685_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6608_317f_a685/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6608_317f_a685.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6608_317f_a685&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_6608_317f_a685"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b9c_fad3_3d5a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b9c_fad3_3d5a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b9c_fad3_3d5a/request", "", "public", "Top Dataset, gaussian grid, pres.lct.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Mean of Pressure at the Low Cloud Top, Pascals)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b9c_fad3_3d5a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b9c_fad3_3d5a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b9c_fad3_3d5a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b9c_fad3_3d5a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b9c_fad3_3d5a&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_5b9c_fad3_3d5a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ea9_8eb0_f734", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ea9_8eb0_f734.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6ea9_8eb0_f734/request", "", "public", "Top Dataset, gaussian grid, pres.mcb.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Mean of Pressure at the Middle Cloud Bottom, Pascals)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6ea9_8eb0_f734_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6ea9_8eb0_f734_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ea9_8eb0_f734/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ea9_8eb0_f734.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ea9_8eb0_f734&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_6ea9_8eb0_f734"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3ac_f1d7_635b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3ac_f1d7_635b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f3ac_f1d7_635b/request", "", "public", "Top Dataset, gaussian grid, pres.mct.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Mean of Pressure at the Middle Cloud Top, Pascals)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f3ac_f1d7_635b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f3ac_f1d7_635b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f3ac_f1d7_635b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f3ac_f1d7_635b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f3ac_f1d7_635b&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_f3ac_f1d7_635b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6a3_d78d_a5e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6a3_d78d_a5e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e6a3_d78d_a5e6/request", "", "public", "Top Dataset, gaussian grid, pres.sfc.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Mean of Forecast of Surface Pressure, Pascals)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e6a3_d78d_a5e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e6a3_d78d_a5e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e6a3_d78d_a5e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e6a3_d78d_a5e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e6a3_d78d_a5e6&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_e6a3_d78d_a5e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4a3_1065_6dd4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4a3_1065_6dd4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e4a3_1065_6dd4/request", "", "public", "Top Dataset, gaussian grid, runof.sfc.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunof (Monthly Accumulation of Water Runoff at Surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e4a3_1065_6dd4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e4a3_1065_6dd4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e4a3_1065_6dd4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e4a3_1065_6dd4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e4a3_1065_6dd4&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_e4a3_1065_6dd4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22f4_3303_030e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22f4_3303_030e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_22f4_3303_030e/request", "", "public", "Top Dataset, gaussian grid, shtfl.sfc.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Monthly Mean of Sensible Heat Net Flux at Surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_22f4_3303_030e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_22f4_3303_030e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_22f4_3303_030e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_22f4_3303_030e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_22f4_3303_030e&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_22f4_3303_030e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_243e_6452_60d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_243e_6452_60d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_243e_6452_60d0/request", "", "public", "Top Dataset, gaussian grid, shum.2m.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Monthly Mean of Forecast of Specific Humidity at 2 m, kg/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_243e_6452_60d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_243e_6452_60d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_243e_6452_60d0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_243e_6452_60d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_243e_6452_60d0&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_243e_6452_60d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60af_1c87_7980", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60af_1c87_7980.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_60af_1c87_7980/request", "", "public", "Top Dataset, gaussian grid, skt.sfc.gauss.day.ltm.1981-2010 (Daily NCEP/DOE Reanalysis 2), 0001", "Daily National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nskt (Daily Long Term Mean Forecast of SST/Land Skin Temperature at the Surface, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_60af_1c87_7980_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_60af_1c87_7980_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_60af_1c87_7980/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_60af_1c87_7980.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_60af_1c87_7980&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_60af_1c87_7980"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1251_620e_6778", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1251_620e_6778.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1251_620e_6778/request", "", "public", "Top Dataset, gaussian grid, skt.sfc.mon.1981-2010.ltm (Monthly NCEP/DOE Reanalysis 2), 0001", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nskt (Monthly Long Term Mean of Forecast of SST/Land Skin Temperature at the Surface, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1251_620e_6778_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1251_620e_6778_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1251_620e_6778/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1251_620e_6778.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1251_620e_6778&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_1251_620e_6778"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eba3_f263_58dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eba3_f263_58dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eba3_f263_58dc/request", "", "public", "Top Dataset, gaussian grid, skt.sfc.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nskt (Monthly Mean of Forecast of SST/Land Skin Temperature at the Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eba3_f263_58dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eba3_f263_58dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eba3_f263_58dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eba3_f263_58dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eba3_f263_58dc&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_eba3_f263_58dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4540_34a2_3d22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4540_34a2_3d22.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4540_34a2_3d22/request", "", "public", "Top Dataset, gaussian grid, soilw.0-10cm.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoilw (Monthly Mean of Forecast of Volumetric Soil Moisture between 0-10 cm Below Ground Level, fraction)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4540_34a2_3d22_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4540_34a2_3d22_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4540_34a2_3d22/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4540_34a2_3d22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4540_34a2_3d22&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_4540_34a2_3d22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d835_e8f7_09f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d835_e8f7_09f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d835_e8f7_09f3/request", "", "public", "Top Dataset, gaussian grid, soilw.10-200cm.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoilw (Monthly Mean of Forecast of Volumetric Soil Moisture between 10-200 cm Below Ground Level, fraction)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d835_e8f7_09f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d835_e8f7_09f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d835_e8f7_09f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d835_e8f7_09f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d835_e8f7_09f3&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_d835_e8f7_09f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c6fc_25d7_858d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c6fc_25d7_858d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c6fc_25d7_858d/request", "", "public", "Top Dataset, gaussian grid, tcdc.eatm.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Mean of Total Cloud Cover at Entire Atmosphere Considered as a Single Layer, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c6fc_25d7_858d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c6fc_25d7_858d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c6fc_25d7_858d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c6fc_25d7_858d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c6fc_25d7_858d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_c6fc_25d7_858d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b30e_bc6f_a556", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b30e_bc6f_a556.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b30e_bc6f_a556/request", "", "public", "Top Dataset, gaussian grid, tmax.2m.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntmax (Monthly Forecast of Maximum Temperature at 2 m, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b30e_bc6f_a556_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b30e_bc6f_a556_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b30e_bc6f_a556/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b30e_bc6f_a556.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b30e_bc6f_a556&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_b30e_bc6f_a556"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1bc5_8eb5_65ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1bc5_8eb5_65ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1bc5_8eb5_65ab/request", "", "public", "Top Dataset, gaussian grid, tmin.2m.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntmin (Monthly Forecast of Minimum Temperature at 2 m, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1bc5_8eb5_65ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1bc5_8eb5_65ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1bc5_8eb5_65ab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1bc5_8eb5_65ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1bc5_8eb5_65ab&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_1bc5_8eb5_65ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_393f_6b74_fde2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_393f_6b74_fde2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_393f_6b74_fde2/request", "", "public", "Top Dataset, gaussian grid, tmp.0-10cm.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntmp (Monthly Mean of Forecast of Temperature between 0-10 cm Below Ground Level, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_393f_6b74_fde2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_393f_6b74_fde2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_393f_6b74_fde2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_393f_6b74_fde2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_393f_6b74_fde2&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_393f_6b74_fde2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7bac_3989_d54d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7bac_3989_d54d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7bac_3989_d54d/request", "", "public", "Top Dataset, gaussian grid, tmp.10-200cm.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntmp (Monthly Mean of Forecast of Temperature between 10-200 cm Below Ground Level, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7bac_3989_d54d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7bac_3989_d54d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7bac_3989_d54d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7bac_3989_d54d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7bac_3989_d54d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7bac_3989_d54d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d77_f6e5_c99f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d77_f6e5_c99f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d77_f6e5_c99f/request", "", "public", "Top Dataset, gaussian grid, uflx.sfc.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Monthly Mean of Momentum Flux, u-component at Surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d77_f6e5_c99f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d77_f6e5_c99f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d77_f6e5_c99f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d77_f6e5_c99f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d77_f6e5_c99f&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_4d77_f6e5_c99f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fee8_305e_7e37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fee8_305e_7e37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fee8_305e_7e37/request", "", "public", "Top Dataset, gaussian grid, ugwd.sfc.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Monthly Mean of Zonal Gravity Wave Stress at Surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fee8_305e_7e37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fee8_305e_7e37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fee8_305e_7e37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fee8_305e_7e37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fee8_305e_7e37&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_fee8_305e_7e37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f28_c8b9_629d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f28_c8b9_629d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4f28_c8b9_629d/request", "", "public", "Top Dataset, gaussian grid, ulwrf.ntat.mon.1981-2010.ltm (Monthly NCEP/DOE Reanalysis 2), 0001", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Long Term Mean Monthly Mean of Upward Longwave Radiation Flux at the Nominal Top of Atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4f28_c8b9_629d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4f28_c8b9_629d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4f28_c8b9_629d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4f28_c8b9_629d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4f28_c8b9_629d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_4f28_c8b9_629d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d989_264c_3484", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d989_264c_3484.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d989_264c_3484/request", "", "public", "Top Dataset, gaussian grid, ulwrf.ntat.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Mean of Upward Longwave Radiation Flux at the Nominal Top of Atmosphere, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d989_264c_3484_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d989_264c_3484_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d989_264c_3484/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d989_264c_3484.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d989_264c_3484&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_d989_264c_3484"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfbe_850d_eb55", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfbe_850d_eb55.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cfbe_850d_eb55/request", "", "public", "Top Dataset, gaussian grid, ulwrf.sfc.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Mean of Upward Longwave Radiation Flux at Surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cfbe_850d_eb55_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cfbe_850d_eb55_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cfbe_850d_eb55/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cfbe_850d_eb55.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cfbe_850d_eb55&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_cfbe_850d_eb55"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13cd_186c_d115", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13cd_186c_d115.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_13cd_186c_d115/request", "", "public", "Top Dataset, gaussian grid, uswrf.ntat.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Mean of Upward Solar Radiation Flux at the Nominal Top of Atmosphere, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_13cd_186c_d115_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_13cd_186c_d115_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_13cd_186c_d115/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_13cd_186c_d115.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_13cd_186c_d115&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_13cd_186c_d115"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4911_4e88_8f8e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4911_4e88_8f8e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4911_4e88_8f8e/request", "", "public", "Top Dataset, gaussian grid, uswrf.sfc.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Mean of Upward Solar Radiation Flux at Surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4911_4e88_8f8e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4911_4e88_8f8e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4911_4e88_8f8e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4911_4e88_8f8e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4911_4e88_8f8e&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_4911_4e88_8f8e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dc5_4c85_86a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dc5_4c85_86a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4dc5_4c85_86a1/request", "", "public", "Top Dataset, gaussian grid, uwnd.10m.mon.1981-2010.ltm (Monthly NCEP/DOE Reanalysis 2), 0001", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Monthly Long Term Mean of Forecast of U-wind at 10 m, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4dc5_4c85_86a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4dc5_4c85_86a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4dc5_4c85_86a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4dc5_4c85_86a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4dc5_4c85_86a1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_4dc5_4c85_86a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d425_fe15_9436", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d425_fe15_9436.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d425_fe15_9436/request", "", "public", "Top Dataset, gaussian grid, uwnd.10m.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Monthly Mean of Forecast of U-wind at 10 m, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d425_fe15_9436_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d425_fe15_9436_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d425_fe15_9436/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d425_fe15_9436.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d425_fe15_9436&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_d425_fe15_9436"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28bd_5bfd_0229", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28bd_5bfd_0229.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28bd_5bfd_0229/request", "", "public", "Top Dataset, gaussian grid, vflx.sfc.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Monthly Mean of Momentum Flux, v-component at Surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28bd_5bfd_0229_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28bd_5bfd_0229_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28bd_5bfd_0229/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28bd_5bfd_0229.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28bd_5bfd_0229&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_28bd_5bfd_0229"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e239_b3ed_c486", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e239_b3ed_c486.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e239_b3ed_c486/request", "", "public", "Top Dataset, gaussian grid, vgwd.sfc.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Monthly Mean of Meridional Gravity Wave Stress at Surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e239_b3ed_c486_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e239_b3ed_c486_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e239_b3ed_c486/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e239_b3ed_c486.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e239_b3ed_c486&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_e239_b3ed_c486"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f87_1ab4_16fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f87_1ab4_16fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f87_1ab4_16fe/request", "", "public", "Top Dataset, gaussian grid, vwnd.10m.mon.1981-2010.ltm (Monthly NCEP/DOE Reanalysis 2), 0001", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Monthly Long Term Mean of Forecast of V-wind at 10 m, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f87_1ab4_16fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f87_1ab4_16fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f87_1ab4_16fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f87_1ab4_16fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f87_1ab4_16fe&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_9f87_1ab4_16fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d36_ffcd_1f59", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d36_ffcd_1f59.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7d36_ffcd_1f59/request", "", "public", "Top Dataset, gaussian grid, vwnd.10m.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Monthly Mean of Forecast of V-wind at 10 m, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7d36_ffcd_1f59_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7d36_ffcd_1f59_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7d36_ffcd_1f59/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7d36_ffcd_1f59.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7d36_ffcd_1f59&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7d36_ffcd_1f59"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b4a3_c0a8_e884", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b4a3_c0a8_e884.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b4a3_c0a8_e884/request", "", "public", "Top Dataset, gaussian grid, weasd.sfc.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (Monthly Mean of Forecast of Water Equiv. of Accum. Snow Depth at Surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b4a3_c0a8_e884_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b4a3_c0a8_e884_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b4a3_c0a8_e884/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b4a3_c0a8_e884.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b4a3_c0a8_e884&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_b4a3_c0a8_e884"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0153_626f_b782", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0153_626f_b782.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0153_626f_b782/request", "", "public", "Top Dataset, gaussian grid, wspd.10m.mon.mean (Monthly NCEP/DOE Reanalysis 2), 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to gaussian grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nwspd (Monthly Mean of Forecast of Wind Speed at 10 m from daily wind speed (from daily vector winds), m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0153_626f_b782_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0153_626f_b782_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0153_626f_b782/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0153_626f_b782.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0153_626f_b782&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_0153_626f_b782"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9ff_6a3c_d543", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9ff_6a3c_d543.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b9ff_6a3c_d543/request", "", "public", "Top Dataset, ghcngridded, precip.mon.total (GHCN version 2 Land Precipitation Mean), 5.0\u00b0, 1900-2015", "Global Historical Climatology Network (GHCN) version 2 Land Precipitation Mean (Top Dataset, ghcngridded, precip.mon.total)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GHCN V2 Gridded Precipitation, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b9ff_6a3c_d543_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b9ff_6a3c_d543_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b9ff_6a3c_d543/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ghcnv2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b9ff_6a3c_d543.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b9ff_6a3c_d543&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b9ff_6a3c_d543"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4bde_e998_6a62", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4bde_e998_6a62.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4bde_e998_6a62/request", "", "public", "Top Dataset, gistemp, landmask 2deg, 2.0\u00b0", "Top Dataset, gistemp, landmask 2deg\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nlfrac (Land fraction, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4bde_e998_6a62_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4bde_e998_6a62_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4bde_e998_6a62/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/gistemp/landmask_2deg.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4bde_e998_6a62.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4bde_e998_6a62&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4bde_e998_6a62"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d374_30ba_3613", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d374_30ba_3613.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d374_30ba_3613/request", "", "public", "Top Dataset, Global, ETOPO1 Bed g gmt4 (ETOPO1_Bed_g.int), 0.016666668\u00b0", "ETOPO1_Bed_g.int. ETOPO1 is a 1 arc-minute global relief model of Earth's surface that integrates land topography and ocean bathymetry. It was built from numerous global and regional data sets, and is available in \"Ice Surface\" (top of Antarctic and Greenland ice sheets) and \"Bedrock\" (base of the ice sheets) versions.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d374_30ba_3613_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d374_30ba_3613_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d374_30ba_3613/index.json", "https://www.ngdc.noaa.gov/mgg/global/global.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d374_30ba_3613.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d374_30ba_3613&showErrors=false&email=", "NOAA NCEI", "noaa_ngdc_d374_30ba_3613"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8ee6_e652_1983", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8ee6_e652_1983.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8ee6_e652_1983/request", "", "public", "Top Dataset, Global, ETOPO1 Ice g gmt4 (ETOPO1_Ice_g.int), 0.016666668\u00b0", "ETOPO1_Ice_g.int. ETOPO1 is a 1 arc-minute global relief model of Earth's surface that integrates land topography and ocean bathymetry. It was built from numerous global and regional data sets, and is available in \"Ice Surface\" (top of Antarctic and Greenland ice sheets) and \"Bedrock\" (base of the ice sheets) versions.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8ee6_e652_1983_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8ee6_e652_1983_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8ee6_e652_1983/index.json", "https://www.ngdc.noaa.gov/mgg/global/global.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8ee6_e652_1983.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8ee6_e652_1983&showErrors=false&email=", "NOAA NCEI", "noaa_ngdc_8ee6_e652_1983"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a774_0eb4_6f88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a774_0eb4_6f88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_a774_0eb4_6f88/request", "", "public", "Top Dataset, hydromet data, daily, 0.0625\u00b0, 1950-2013", "Top Dataset, hydromet data, daily\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPrec (Precipitation, mm)\nTmax (Daily maximum temperature, degree_C)\nTmin (Daily minimum temperature, degree_C)\nwind (mean daily wind speed, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_a774_0eb4_6f88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_a774_0eb4_6f88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_a774_0eb4_6f88/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/hydromet_data/daily.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_a774_0eb4_6f88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_a774_0eb4_6f88&showErrors=false&email=", "NOAA NODC", "noaa_nodc_a774_0eb4_6f88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7435_dbd3_8f9a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7435_dbd3_8f9a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7435_dbd3_8f9a/request", "", "public", "Top Dataset, hydromet data, livneh model [time][lat][lon], 0.0625\u00b0, 1950-2013", "Top Dataset, hydromet data, livneh model\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nBaseflow (mm)\nGroundHeat (Ground Heat Flux, W/m^2)\nLatentHeat (Latent Heat Flux, W/m^2)\nNetRad (Net Radiation, W/m^2)\nPETLong (PET for long reference crop (alfalfa), mm)\nPETNatVeg (PET for current vegetation, mm)\nPETShort (PET for short reference crop (grass), mm)\nRunoff (Surface Runoff, mm)\nSWE (Snow Water Equivalent, mm)\nSensibleHeat (Sensible Heat Flux, W/m^2)\nTotalET (Total Evapotranspiration, mm)\nWDEW (Canopy Moisture, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7435_dbd3_8f9a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7435_dbd3_8f9a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7435_dbd3_8f9a/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/hydromet_data/livneh_model.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7435_dbd3_8f9a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7435_dbd3_8f9a&showErrors=false&email=", "CIRES", "noaa_nodc_7435_dbd3_8f9a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8b0b_6258_891d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8b0b_6258_891d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_8b0b_6258_891d/request", "", "public", "Top Dataset, hydromet data, livneh model [time][lev][lat][lon], 0.0625\u00b0, 1950-2013", "Top Dataset, hydromet data, livneh model\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][lev][latitude][longitude]):\nSoilMoist (Soil Moisture, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_8b0b_6258_891d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_8b0b_6258_891d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_8b0b_6258_891d/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/hydromet_data/livneh_model.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_8b0b_6258_891d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_8b0b_6258_891d&showErrors=false&email=", "CIRES", "noaa_nodc_8b0b_6258_891d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_16be_ebb0_f17b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_16be_ebb0_f17b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_16be_ebb0_f17b/request", "", "public", "Top Dataset, hydromet data, monthly, 0.0625\u00b0, 1950-2013", "Top Dataset, hydromet data, monthly\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPrec (Precipitation, mm)\nTmax (Daily maximum temperature, degree_C)\nTmin (Daily minimum temperature, degree_C)\nwind (mean daily wind speed, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_16be_ebb0_f17b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_16be_ebb0_f17b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_16be_ebb0_f17b/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/hydromet_data/monthly.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_16be_ebb0_f17b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_16be_ebb0_f17b&showErrors=false&email=", "NOAA NODC", "noaa_nodc_16be_ebb0_f17b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b17_d335_40dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b17_d335_40dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b17_d335_40dd/request", "", "public", "Top Dataset, interp OLR, olr.day.mean (Daily Mean Interpolated OLR) [time][lat][lon], 2.5\u00b0, 1974-2017", "Daily Mean Interpolated Outgoing Longwave Radiation (OLR). Data is interpolated in time and space from NOAA twice-daily OLR values and averaged to once daily\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nolr (Daily OLR, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b17_d335_40dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b17_d335_40dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b17_d335_40dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.interp_OLR.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b17_d335_40dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b17_d335_40dd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5b17_d335_40dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17c3_c2d5_f21d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17c3_c2d5_f21d.graph", "", "", "public", "Top Dataset, interp OLR, olr.day.mean (Daily Mean Interpolated OLR) [time][nmiss], 1974-2017", "Daily Mean Interpolated Outgoing Longwave Radiation (OLR). Data is interpolated in time and space from NOAA twice-daily OLR values and averaged to once daily\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][nmiss]):\ninfo (Missing)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_17c3_c2d5_f21d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.interp_OLR.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_17c3_c2d5_f21d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_17c3_c2d5_f21d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_17c3_c2d5_f21d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59d9_7395_d51c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59d9_7395_d51c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_59d9_7395_d51c/request", "", "public", "Top Dataset, jmatemp, air.mon.anom (JMA Air Temperature), 5.0\u00b0, 1891-2017", "Japanese Meteorological Agency (JMA) Air Temperature (Top Dataset, jmatemp, air.mon.anom)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Surface Air Temperature and SST Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_59d9_7395_d51c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_59d9_7395_d51c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_59d9_7395_d51c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.jmatemp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_59d9_7395_d51c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_59d9_7395_d51c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_59d9_7395_d51c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e48_50e0_5563", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e48_50e0_5563.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7e48_50e0_5563/request", "", "public", "Top Dataset, jmatemp, air.mon.ltm.1981-2010 (JMA Air Temperature), 5.0\u00b0, 0001", "Japanese Meteorological Agency (JMA) Air Temperature (Top Dataset, jmatemp, air.mon.ltm.1981-2010)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Surface Air Temperature and SST Monthly Anomaly, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7e48_50e0_5563_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7e48_50e0_5563_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e48_50e0_5563/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.jmatemp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e48_50e0_5563.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e48_50e0_5563&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7e48_50e0_5563"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c830_28a2_a93c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c830_28a2_a93c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c830_28a2_a93c/request", "", "public", "Top Dataset, kaplan sst, sst.mean.anom (Kaplan Extended SST V2), 5.0\u00b0, 1856-present", "Kaplan Extended Sea Surface Temperature (SST) V2. Data is processed at Lamont-Doherty using an \noptimal analysis scheme. This dataset is different than previously archived version\nfrom Nov 1981 due to a different National Centers for Environmental Prediction (NCEP) Optimum Interpolation (OI) SST input data values\nURL is at IRI http://iridl.ldeo.columbia.edu/SOURCES/.KAPLAN/.EXTENDED/.v2/\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Anomalies of SST, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c830_28a2_a93c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c830_28a2_a93c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c830_28a2_a93c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.kaplan_sst.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c830_28a2_a93c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c830_28a2_a93c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c830_28a2_a93c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_808b_cd3b_a80b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_808b_cd3b_a80b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_808b_cd3b_a80b/request", "", "public", "Top Dataset, kaplan sst, sst.mon.anom (Kaplan Extended SST V2), 5.0\u00b0, 1856-present", "Kaplan Extended Sea Surface Temperature (SST) V2. Data is processed at Lamont-Doherty using an \noptimal analysis scheme. This dataset is different than previously archived version\nfrom Nov 1981 due to a different National Centers for Environmental Prediction (NCEP) Optimum Interpolation (OI) SST input data values\nURL is at IRI http://iridl.ldeo.columbia.edu/SOURCES/.KAPLAN/.EXTENDED/.v2/\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Anomalies of SST, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_808b_cd3b_a80b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_808b_cd3b_a80b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_808b_cd3b_a80b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.kaplan_sst.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_808b_cd3b_a80b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_808b_cd3b_a80b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_808b_cd3b_a80b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cf9_e191_8d94", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cf9_e191_8d94.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3cf9_e191_8d94/request", "", "public", "Top Dataset, Livneh, monthly.mean.forcing.195001-201312, 0.5\u00b0", "Top Dataset, Livneh, monthly.mean.forcing.195001-201312\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprec (Precipitation, mm/day)\ntmax (Daily maximum temperature, degree_C)\ntmin (Daily minimum temperature, degree_C)\nwind (mean daily wind speed, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3cf9_e191_8d94_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3cf9_e191_8d94_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3cf9_e191_8d94/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Livneh/monthly.mean.forcing.195001-201312.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3cf9_e191_8d94.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3cf9_e191_8d94&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3cf9_e191_8d94"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81b4_d49b_b9c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81b4_d49b_b9c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_81b4_d49b_b9c4/request", "", "public", "Top Dataset, Livneh, monthly.mean.total.soil.moist.top2.195001-201312, 0.5\u00b0", "Top Dataset, Livneh, monthly.mean.total.soil.moist.top2.195001-201312\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilmoist (Soil Moisture, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_81b4_d49b_b9c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_81b4_d49b_b9c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_81b4_d49b_b9c4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Livneh/monthly.mean.total.soil.moist.top2.195001-201312.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_81b4_d49b_b9c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_81b4_d49b_b9c4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_81b4_d49b_b9c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5af4_5b7a_926a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5af4_5b7a_926a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5af4_5b7a_926a/request", "", "public", "Top Dataset, Livneh, prec.mon.mean, 0.0625\u00b0, 1915-2011", "Top Dataset, Livneh, prec.mon.mean\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprec (Monthly Total Precipitation, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5af4_5b7a_926a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5af4_5b7a_926a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5af4_5b7a_926a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.livneh.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5af4_5b7a_926a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5af4_5b7a_926a&showErrors=false&email=", "NOAA/ESRL PSD", "noaa_esrl_5af4_5b7a_926a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d98_18cf_71bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d98_18cf_71bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d98_18cf_71bd/request", "", "public", "Top Dataset, Livneh, soilmoist.mon.mean, 0.0625\u00b0, 1915-2011", "Top Dataset, Livneh, soilmoist.mon.mean\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][lev][latitude][longitude]):\nsoilmoist (Soil Moisture, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d98_18cf_71bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d98_18cf_71bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d98_18cf_71bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.livneh.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d98_18cf_71bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d98_18cf_71bd&showErrors=false&email=", "NOAA/ESRL PSD", "noaa_esrl_1d98_18cf_71bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4187_e165_8cb9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4187_e165_8cb9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4187_e165_8cb9/request", "", "public", "Top Dataset, Livneh, swe.mon.mean, 0.0625\u00b0, 1915-2011", "Top Dataset, Livneh, swe.mon.mean\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nswe (Snow Water Equivalent, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4187_e165_8cb9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4187_e165_8cb9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4187_e165_8cb9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.livneh.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4187_e165_8cb9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4187_e165_8cb9&showErrors=false&email=", "NOAA/ESRL PSD", "noaa_esrl_4187_e165_8cb9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0cff_b56d_dcb8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0cff_b56d_dcb8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0cff_b56d_dcb8/request", "", "public", "Top Dataset, lsm, lsm daily ammc cf 19810101.nc4", "Top Dataset, lsm, lsm daily ammc cf 19810101.nc4\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlsm (Land-sea mask, (0 - 1))\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0cff_b56d_dcb8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0cff_b56d_dcb8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0cff_b56d_dcb8/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/S2S/lsm/lsm_daily_ammc_cf_19810101.nc4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0cff_b56d_dcb8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0cff_b56d_dcb8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0cff_b56d_dcb8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43a9_34d8_e45c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43a9_34d8_e45c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_43a9_34d8_e45c/request", "", "public", "Top Dataset, lsm, lsm daily babj cf 19940101.nc4, 1.5\u00b0", "Top Dataset, lsm, lsm daily babj cf 19940101.nc4\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlsm (Land-sea mask, (0 - 1))\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_43a9_34d8_e45c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_43a9_34d8_e45c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_43a9_34d8_e45c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/S2S/lsm/lsm_daily_babj_cf_19940101.nc4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_43a9_34d8_e45c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_43a9_34d8_e45c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_43a9_34d8_e45c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24b5_7de6_b1e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24b5_7de6_b1e4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_24b5_7de6_b1e4/request", "", "public", "Top Dataset, lsm, lsm daily ecmf cf 19950101.nc4, 1.5\u00b0", "Top Dataset, lsm, lsm daily ecmf cf 19950101.nc4\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlsm (Land-sea mask, (0 - 1))\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_24b5_7de6_b1e4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_24b5_7de6_b1e4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_24b5_7de6_b1e4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/S2S/lsm/lsm_daily_ecmf_cf_19950101.nc4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_24b5_7de6_b1e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_24b5_7de6_b1e4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_24b5_7de6_b1e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4652_f3bf_68ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4652_f3bf_68ba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4652_f3bf_68ba/request", "", "public", "Top Dataset, lsm, lsm daily isac cf 19810101.nc4, 1.5\u00b0", "Top Dataset, lsm, lsm daily isac cf 19810101.nc4\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlsm (Land-sea mask, (0 - 1))\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4652_f3bf_68ba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4652_f3bf_68ba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4652_f3bf_68ba/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/S2S/lsm/lsm_daily_isac_cf_19810101.nc4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4652_f3bf_68ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4652_f3bf_68ba&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4652_f3bf_68ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee15_b3b7_b39d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee15_b3b7_b39d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ee15_b3b7_b39d/request", "", "public", "Top Dataset, lsm, lsm daily kwbc cf 19990101.nc4, 1.5\u00b0", "Top Dataset, lsm, lsm daily kwbc cf 19990101.nc4\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlsm (Land-sea mask, (0 - 1))\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ee15_b3b7_b39d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ee15_b3b7_b39d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ee15_b3b7_b39d/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/S2S/lsm/lsm_daily_kwbc_cf_19990101.nc4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ee15_b3b7_b39d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ee15_b3b7_b39d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ee15_b3b7_b39d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7303_2131_6b27", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7303_2131_6b27.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7303_2131_6b27/request", "", "public", "Top Dataset, lsm, lsm daily lfpw cf 19930101.nc4, 1.5\u00b0", "Top Dataset, lsm, lsm daily lfpw cf 19930101.nc4\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlsm (Land-sea mask, (0 - 1))\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7303_2131_6b27_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7303_2131_6b27_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7303_2131_6b27/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/S2S/lsm/lsm_daily_lfpw_cf_19930101.nc4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7303_2131_6b27.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7303_2131_6b27&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7303_2131_6b27"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a56e_3893_cb8c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a56e_3893_cb8c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a56e_3893_cb8c/request", "", "public", "Top Dataset, lsm, lsm daily rjtd cf 19810110.nc4, 1.5\u00b0", "Top Dataset, lsm, lsm daily rjtd cf 19810110.nc4\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlsm (Land-sea mask, (0 - 1))\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a56e_3893_cb8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a56e_3893_cb8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a56e_3893_cb8c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/S2S/lsm/lsm_daily_rjtd_cf_19810110.nc4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a56e_3893_cb8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a56e_3893_cb8c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a56e_3893_cb8c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_283f_5125_a553", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_283f_5125_a553.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_283f_5125_a553/request", "", "public", "Top Dataset, LTMs1950-1979, air.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, air.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Long Term Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_283f_5125_a553_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_283f_5125_a553_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_283f_5125_a553/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_283f_5125_a553.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_283f_5125_a553&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_283f_5125_a553"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae60_658c_c44a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae60_658c_c44a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae60_658c_c44a/request", "", "public", "Top Dataset, LTMs1950-1979, air.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, air.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Long Term Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae60_658c_c44a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae60_658c_c44a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae60_658c_c44a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae60_658c_c44a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae60_658c_c44a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ae60_658c_c44a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de8a_b7f5_16b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de8a_b7f5_16b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_de8a_b7f5_16b6/request", "", "public", "Top Dataset, LTMs1950-1979, air.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, air.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Long Term Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_de8a_b7f5_16b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_de8a_b7f5_16b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_de8a_b7f5_16b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_de8a_b7f5_16b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_de8a_b7f5_16b6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_de8a_b7f5_16b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2a6a_dc77_ceb0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2a6a_dc77_ceb0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2a6a_dc77_ceb0/request", "", "public", "Top Dataset, LTMs1950-1979, cldc.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, cldc.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Long Term Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2a6a_dc77_ceb0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2a6a_dc77_ceb0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2a6a_dc77_ceb0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2a6a_dc77_ceb0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2a6a_dc77_ceb0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2a6a_dc77_ceb0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a99_484c_3219", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a99_484c_3219.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4a99_484c_3219/request", "", "public", "Top Dataset, LTMs1950-1979, cldc.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, cldc.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Long Term Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4a99_484c_3219_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4a99_484c_3219_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4a99_484c_3219/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4a99_484c_3219.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4a99_484c_3219&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4a99_484c_3219"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80c7_4208_8168", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80c7_4208_8168.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_80c7_4208_8168/request", "", "public", "Top Dataset, LTMs1950-1979, cldc.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, cldc.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Long Term Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_80c7_4208_8168_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_80c7_4208_8168_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_80c7_4208_8168/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_80c7_4208_8168.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_80c7_4208_8168&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_80c7_4208_8168"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a13_414d_3b1b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a13_414d_3b1b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a13_414d_3b1b/request", "", "public", "Top Dataset, LTMs1950-1979, lflx.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, lflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a13_414d_3b1b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a13_414d_3b1b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a13_414d_3b1b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a13_414d_3b1b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a13_414d_3b1b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3a13_414d_3b1b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf67_f4be_3bd3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf67_f4be_3bd3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf67_f4be_3bd3/request", "", "public", "Top Dataset, LTMs1950-1979, lflx.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, lflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf67_f4be_3bd3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf67_f4be_3bd3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf67_f4be_3bd3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf67_f4be_3bd3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf67_f4be_3bd3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bf67_f4be_3bd3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e8d3_783f_c647", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e8d3_783f_c647.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e8d3_783f_c647/request", "", "public", "Top Dataset, LTMs1950-1979, lflx.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, lflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e8d3_783f_c647_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e8d3_783f_c647_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e8d3_783f_c647/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e8d3_783f_c647.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e8d3_783f_c647&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e8d3_783f_c647"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d12_ed4c_f5f8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d12_ed4c_f5f8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d12_ed4c_f5f8/request", "", "public", "Top Dataset, LTMs1950-1979, rhum.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, rhum.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Long Term Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d12_ed4c_f5f8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d12_ed4c_f5f8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d12_ed4c_f5f8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d12_ed4c_f5f8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d12_ed4c_f5f8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6d12_ed4c_f5f8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_923d_9321_6ba1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_923d_9321_6ba1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_923d_9321_6ba1/request", "", "public", "Top Dataset, LTMs1950-1979, rhum.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, rhum.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Long Term Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_923d_9321_6ba1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_923d_9321_6ba1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_923d_9321_6ba1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_923d_9321_6ba1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_923d_9321_6ba1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_923d_9321_6ba1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f378_348c_6af9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f378_348c_6af9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f378_348c_6af9/request", "", "public", "Top Dataset, LTMs1950-1979, rhum.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, rhum.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Long Term Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f378_348c_6af9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f378_348c_6af9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f378_348c_6af9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f378_348c_6af9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f378_348c_6af9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f378_348c_6af9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a75_786f_6d8d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a75_786f_6d8d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1a75_786f_6d8d/request", "", "public", "Top Dataset, LTMs1950-1979, sflx.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, sflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Long Term Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1a75_786f_6d8d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1a75_786f_6d8d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1a75_786f_6d8d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1a75_786f_6d8d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1a75_786f_6d8d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1a75_786f_6d8d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6816_fc25_bcb8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6816_fc25_bcb8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6816_fc25_bcb8/request", "", "public", "Top Dataset, LTMs1950-1979, sflx.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, sflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Long Term Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6816_fc25_bcb8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6816_fc25_bcb8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6816_fc25_bcb8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6816_fc25_bcb8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6816_fc25_bcb8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6816_fc25_bcb8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85bd_6b88_c4ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85bd_6b88_c4ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_85bd_6b88_c4ac/request", "", "public", "Top Dataset, LTMs1950-1979, sflx.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, sflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Long Term Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_85bd_6b88_c4ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_85bd_6b88_c4ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85bd_6b88_c4ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85bd_6b88_c4ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85bd_6b88_c4ac&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_85bd_6b88_c4ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_61d8_da6a_41ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_61d8_da6a_41ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_61d8_da6a_41ea/request", "", "public", "Top Dataset, LTMs1950-1979, shum.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, shum.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Long Term Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_61d8_da6a_41ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_61d8_da6a_41ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_61d8_da6a_41ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_61d8_da6a_41ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_61d8_da6a_41ea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_61d8_da6a_41ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f6c_efc0_cc07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f6c_efc0_cc07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f6c_efc0_cc07/request", "", "public", "Top Dataset, LTMs1950-1979, shum.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, shum.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Long Term Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f6c_efc0_cc07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f6c_efc0_cc07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f6c_efc0_cc07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f6c_efc0_cc07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f6c_efc0_cc07&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9f6c_efc0_cc07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbed_73c9_ad51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbed_73c9_ad51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fbed_73c9_ad51/request", "", "public", "Top Dataset, LTMs1950-1979, shum.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, shum.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Long Term Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fbed_73c9_ad51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fbed_73c9_ad51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fbed_73c9_ad51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fbed_73c9_ad51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fbed_73c9_ad51&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fbed_73c9_ad51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6cc8_3c53_97af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6cc8_3c53_97af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6cc8_3c53_97af/request", "", "public", "Top Dataset, LTMs1950-1979, slp.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, slp.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Long Term Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6cc8_3c53_97af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6cc8_3c53_97af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6cc8_3c53_97af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6cc8_3c53_97af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6cc8_3c53_97af&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6cc8_3c53_97af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd92_25e0_2ca1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd92_25e0_2ca1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cd92_25e0_2ca1/request", "", "public", "Top Dataset, LTMs1950-1979, slp.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, slp.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Long Term Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cd92_25e0_2ca1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cd92_25e0_2ca1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cd92_25e0_2ca1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cd92_25e0_2ca1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cd92_25e0_2ca1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cd92_25e0_2ca1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e1d9_3709_c7be", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e1d9_3709_c7be.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e1d9_3709_c7be/request", "", "public", "Top Dataset, LTMs1950-1979, slp.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, slp.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Long Term Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e1d9_3709_c7be_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e1d9_3709_c7be_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e1d9_3709_c7be/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e1d9_3709_c7be.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e1d9_3709_c7be&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e1d9_3709_c7be"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_959b_c02a_fb73", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_959b_c02a_fb73.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_959b_c02a_fb73/request", "", "public", "Top Dataset, LTMs1950-1979, sst.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, sst.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Long Term Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_959b_c02a_fb73_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_959b_c02a_fb73_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_959b_c02a_fb73/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_959b_c02a_fb73.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_959b_c02a_fb73&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_959b_c02a_fb73"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9cd_6fbd_dd99", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9cd_6fbd_dd99.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e9cd_6fbd_dd99/request", "", "public", "Top Dataset, LTMs1950-1979, sst.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, sst.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Long Term Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e9cd_6fbd_dd99_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e9cd_6fbd_dd99_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e9cd_6fbd_dd99/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e9cd_6fbd_dd99.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e9cd_6fbd_dd99&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e9cd_6fbd_dd99"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eacb_6c65_a28e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eacb_6c65_a28e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eacb_6c65_a28e/request", "", "public", "Top Dataset, LTMs1950-1979, sst.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, sst.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Long Term Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eacb_6c65_a28e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eacb_6c65_a28e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eacb_6c65_a28e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eacb_6c65_a28e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eacb_6c65_a28e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eacb_6c65_a28e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_431b_b5a5_8c11", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_431b_b5a5_8c11.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_431b_b5a5_8c11/request", "", "public", "Top Dataset, LTMs1950-1979, upstr.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, upstr.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind pseudoStress Monthly Long Term Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_431b_b5a5_8c11_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_431b_b5a5_8c11_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_431b_b5a5_8c11/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_431b_b5a5_8c11.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_431b_b5a5_8c11&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_431b_b5a5_8c11"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_449c_c78e_1bcb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_449c_c78e_1bcb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_449c_c78e_1bcb/request", "", "public", "Top Dataset, LTMs1950-1979, upstr.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, upstr.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind pseudoStress Monthly Long Term Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_449c_c78e_1bcb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_449c_c78e_1bcb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_449c_c78e_1bcb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_449c_c78e_1bcb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_449c_c78e_1bcb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_449c_c78e_1bcb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4be4_9e42_6b0b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4be4_9e42_6b0b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4be4_9e42_6b0b/request", "", "public", "Top Dataset, LTMs1950-1979, upstr.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, upstr.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind pseudoStress Monthly Long Term Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4be4_9e42_6b0b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4be4_9e42_6b0b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4be4_9e42_6b0b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4be4_9e42_6b0b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4be4_9e42_6b0b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4be4_9e42_6b0b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9503_fdab_6fc0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9503_fdab_6fc0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9503_fdab_6fc0/request", "", "public", "Top Dataset, LTMs1950-1979, uwnd.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, uwnd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9503_fdab_6fc0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9503_fdab_6fc0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9503_fdab_6fc0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9503_fdab_6fc0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9503_fdab_6fc0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9503_fdab_6fc0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ced3_fb65_dfea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ced3_fb65_dfea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ced3_fb65_dfea/request", "", "public", "Top Dataset, LTMs1950-1979, uwnd.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, uwnd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ced3_fb65_dfea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ced3_fb65_dfea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ced3_fb65_dfea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ced3_fb65_dfea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ced3_fb65_dfea&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ced3_fb65_dfea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3a4_34c4_6f1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3a4_34c4_6f1e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d3a4_34c4_6f1e/request", "", "public", "Top Dataset, LTMs1950-1979, uwnd.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, uwnd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d3a4_34c4_6f1e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d3a4_34c4_6f1e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d3a4_34c4_6f1e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d3a4_34c4_6f1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d3a4_34c4_6f1e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d3a4_34c4_6f1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41b3_b291_62af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41b3_b291_62af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_41b3_b291_62af/request", "", "public", "Top Dataset, LTMs1950-1979, vpstr.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, vpstr.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind pseudoStress Monthly Long Term Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_41b3_b291_62af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_41b3_b291_62af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_41b3_b291_62af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_41b3_b291_62af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_41b3_b291_62af&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_41b3_b291_62af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abef_8595_c17c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abef_8595_c17c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_abef_8595_c17c/request", "", "public", "Top Dataset, LTMs1950-1979, vpstr.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, vpstr.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind pseudoStress Monthly Long Term Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_abef_8595_c17c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_abef_8595_c17c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_abef_8595_c17c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_abef_8595_c17c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_abef_8595_c17c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_abef_8595_c17c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ace8_b15a_11b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ace8_b15a_11b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ace8_b15a_11b7/request", "", "public", "Top Dataset, LTMs1950-1979, vpstr.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, vpstr.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind pseudoStress Monthly Long Term Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ace8_b15a_11b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ace8_b15a_11b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ace8_b15a_11b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ace8_b15a_11b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ace8_b15a_11b7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ace8_b15a_11b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7836_8d2a_23ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7836_8d2a_23ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7836_8d2a_23ae/request", "", "public", "Top Dataset, LTMs1950-1979, vwnd.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, vwnd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7836_8d2a_23ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7836_8d2a_23ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7836_8d2a_23ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7836_8d2a_23ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7836_8d2a_23ae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7836_8d2a_23ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7bea_bef0_e900", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7bea_bef0_e900.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7bea_bef0_e900/request", "", "public", "Top Dataset, LTMs1950-1979, vwnd.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, vwnd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7bea_bef0_e900_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7bea_bef0_e900_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7bea_bef0_e900/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7bea_bef0_e900.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7bea_bef0_e900&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7bea_bef0_e900"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e752_e395_9a15", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e752_e395_9a15.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e752_e395_9a15/request", "", "public", "Top Dataset, LTMs1950-1979, vwnd.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, vwnd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e752_e395_9a15_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e752_e395_9a15_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e752_e395_9a15/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e752_e395_9a15.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e752_e395_9a15&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e752_e395_9a15"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18e9_a472_bec5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18e9_a472_bec5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_18e9_a472_bec5/request", "", "public", "Top Dataset, LTMs1950-1979, wspd.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, wspd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_18e9_a472_bec5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_18e9_a472_bec5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_18e9_a472_bec5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_18e9_a472_bec5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_18e9_a472_bec5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_18e9_a472_bec5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_208b_4c4f_8c50", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_208b_4c4f_8c50.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_208b_4c4f_8c50/request", "", "public", "Top Dataset, LTMs1950-1979, wspd.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, wspd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_208b_4c4f_8c50_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_208b_4c4f_8c50_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_208b_4c4f_8c50/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_208b_4c4f_8c50.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_208b_4c4f_8c50&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_208b_4c4f_8c50"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0c7_255e_97fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0c7_255e_97fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d0c7_255e_97fe/request", "", "public", "Top Dataset, LTMs1950-1979, wspd.ltm (COADS1), 2.0\u00b0, 0001", "Comprehensive Ocean Atmosphere Data Set 1 (COADS1) (Top Dataset, LTMs1950-1979, wspd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d0c7_255e_97fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d0c7_255e_97fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d0c7_255e_97fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d0c7_255e_97fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d0c7_255e_97fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d0c7_255e_97fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c69_6586_dab3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c69_6586_dab3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c69_6586_dab3/request", "", "public", "Top Dataset, LTMs1971-2000, air.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, air.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Long Term Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c69_6586_dab3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c69_6586_dab3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c69_6586_dab3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c69_6586_dab3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c69_6586_dab3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0c69_6586_dab3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee4a_f22a_2e94", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee4a_f22a_2e94.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ee4a_f22a_2e94/request", "", "public", "Top Dataset, LTMs1971-2000, air.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, air.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Long Term Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ee4a_f22a_2e94_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ee4a_f22a_2e94_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ee4a_f22a_2e94/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ee4a_f22a_2e94.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ee4a_f22a_2e94&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ee4a_f22a_2e94"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3f4_1431_0e5a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3f4_1431_0e5a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f3f4_1431_0e5a/request", "", "public", "Top Dataset, LTMs1971-2000, air.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, air.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Long Term Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f3f4_1431_0e5a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f3f4_1431_0e5a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f3f4_1431_0e5a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f3f4_1431_0e5a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f3f4_1431_0e5a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f3f4_1431_0e5a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ce8_ded5_cbbe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ce8_ded5_cbbe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ce8_ded5_cbbe/request", "", "public", "Top Dataset, LTMs1971-2000, cldc.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, cldc.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Long Term Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ce8_ded5_cbbe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ce8_ded5_cbbe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ce8_ded5_cbbe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ce8_ded5_cbbe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ce8_ded5_cbbe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7ce8_ded5_cbbe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5f3_5c1a_9353", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5f3_5c1a_9353.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d5f3_5c1a_9353/request", "", "public", "Top Dataset, LTMs1971-2000, cldc.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, cldc.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Long Term Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d5f3_5c1a_9353_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d5f3_5c1a_9353_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d5f3_5c1a_9353/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d5f3_5c1a_9353.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d5f3_5c1a_9353&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d5f3_5c1a_9353"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfcb_304b_8b82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfcb_304b_8b82.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dfcb_304b_8b82/request", "", "public", "Top Dataset, LTMs1971-2000, cldc.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, cldc.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Long Term Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dfcb_304b_8b82_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dfcb_304b_8b82_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dfcb_304b_8b82/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dfcb_304b_8b82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dfcb_304b_8b82&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dfcb_304b_8b82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5af8_0c02_f473", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5af8_0c02_f473.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5af8_0c02_f473/request", "", "public", "Top Dataset, LTMs1971-2000, lflx.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, lflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5af8_0c02_f473_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5af8_0c02_f473_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5af8_0c02_f473/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5af8_0c02_f473.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5af8_0c02_f473&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5af8_0c02_f473"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d4f_3c4d_2da2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d4f_3c4d_2da2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5d4f_3c4d_2da2/request", "", "public", "Top Dataset, LTMs1971-2000, lflx.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, lflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5d4f_3c4d_2da2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5d4f_3c4d_2da2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5d4f_3c4d_2da2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5d4f_3c4d_2da2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5d4f_3c4d_2da2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5d4f_3c4d_2da2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_641f_63c1_621b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_641f_63c1_621b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_641f_63c1_621b/request", "", "public", "Top Dataset, LTMs1971-2000, lflx.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, lflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_641f_63c1_621b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_641f_63c1_621b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_641f_63c1_621b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_641f_63c1_621b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_641f_63c1_621b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_641f_63c1_621b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4866_71e3_5bd8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4866_71e3_5bd8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4866_71e3_5bd8/request", "", "public", "Top Dataset, LTMs1971-2000, qsminq.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, qsminq.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Long Term Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4866_71e3_5bd8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4866_71e3_5bd8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4866_71e3_5bd8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4866_71e3_5bd8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4866_71e3_5bd8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4866_71e3_5bd8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a11c_c341_bb74", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a11c_c341_bb74.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a11c_c341_bb74/request", "", "public", "Top Dataset, LTMs1971-2000, qsminq.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, qsminq.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Long Term Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a11c_c341_bb74_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a11c_c341_bb74_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a11c_c341_bb74/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a11c_c341_bb74.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a11c_c341_bb74&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a11c_c341_bb74"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3e5_874c_b31d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3e5_874c_b31d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f3e5_874c_b31d/request", "", "public", "Top Dataset, LTMs1971-2000, qsminq.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, qsminq.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Long Term Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f3e5_874c_b31d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f3e5_874c_b31d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f3e5_874c_b31d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f3e5_874c_b31d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f3e5_874c_b31d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f3e5_874c_b31d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_258b_d895_0fa0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_258b_d895_0fa0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_258b_d895_0fa0/request", "", "public", "Top Dataset, LTMs1971-2000, rhum.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, rhum.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Long Term Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_258b_d895_0fa0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_258b_d895_0fa0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_258b_d895_0fa0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_258b_d895_0fa0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_258b_d895_0fa0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_258b_d895_0fa0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35e1_8aae_f330", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35e1_8aae_f330.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_35e1_8aae_f330/request", "", "public", "Top Dataset, LTMs1971-2000, rhum.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, rhum.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Long Term Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_35e1_8aae_f330_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_35e1_8aae_f330_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_35e1_8aae_f330/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_35e1_8aae_f330.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_35e1_8aae_f330&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_35e1_8aae_f330"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b63_1afa_3601", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b63_1afa_3601.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9b63_1afa_3601/request", "", "public", "Top Dataset, LTMs1971-2000, rhum.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, rhum.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Long Term Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9b63_1afa_3601_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9b63_1afa_3601_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9b63_1afa_3601/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9b63_1afa_3601.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9b63_1afa_3601&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9b63_1afa_3601"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b86_912e_f0ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b86_912e_f0ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0b86_912e_f0ea/request", "", "public", "Top Dataset, LTMs1971-2000, sflx.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, sflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Long Term Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0b86_912e_f0ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0b86_912e_f0ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0b86_912e_f0ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0b86_912e_f0ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0b86_912e_f0ea&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0b86_912e_f0ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ea9_08f4_b8e9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ea9_08f4_b8e9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ea9_08f4_b8e9/request", "", "public", "Top Dataset, LTMs1971-2000, sflx.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, sflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Long Term Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ea9_08f4_b8e9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ea9_08f4_b8e9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ea9_08f4_b8e9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ea9_08f4_b8e9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ea9_08f4_b8e9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7ea9_08f4_b8e9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df04_6416_f886", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df04_6416_f886.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_df04_6416_f886/request", "", "public", "Top Dataset, LTMs1971-2000, sflx.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, sflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Long Term Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_df04_6416_f886_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_df04_6416_f886_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_df04_6416_f886/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_df04_6416_f886.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_df04_6416_f886&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_df04_6416_f886"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d39_8bdc_f033", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d39_8bdc_f033.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d39_8bdc_f033/request", "", "public", "Top Dataset, LTMs1971-2000, shum.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, shum.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Long Term Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d39_8bdc_f033_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d39_8bdc_f033_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d39_8bdc_f033/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d39_8bdc_f033.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d39_8bdc_f033&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1d39_8bdc_f033"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_755b_de9c_ea25", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_755b_de9c_ea25.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_755b_de9c_ea25/request", "", "public", "Top Dataset, LTMs1971-2000, shum.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, shum.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Long Term Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_755b_de9c_ea25_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_755b_de9c_ea25_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_755b_de9c_ea25/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_755b_de9c_ea25.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_755b_de9c_ea25&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_755b_de9c_ea25"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc26_6304_3749", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc26_6304_3749.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc26_6304_3749/request", "", "public", "Top Dataset, LTMs1971-2000, shum.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, shum.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Long Term Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc26_6304_3749_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc26_6304_3749_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc26_6304_3749/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc26_6304_3749.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc26_6304_3749&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fc26_6304_3749"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a90_d697_9f64", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a90_d697_9f64.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a90_d697_9f64/request", "", "public", "Top Dataset, LTMs1971-2000, slp.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, slp.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Long Term Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a90_d697_9f64_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a90_d697_9f64_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a90_d697_9f64/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a90_d697_9f64.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a90_d697_9f64&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3a90_d697_9f64"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44a3_d04a_9a84", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44a3_d04a_9a84.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_44a3_d04a_9a84/request", "", "public", "Top Dataset, LTMs1971-2000, slp.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, slp.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Long Term Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_44a3_d04a_9a84_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_44a3_d04a_9a84_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_44a3_d04a_9a84/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_44a3_d04a_9a84.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_44a3_d04a_9a84&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_44a3_d04a_9a84"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce0d_519a_f913", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce0d_519a_f913.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ce0d_519a_f913/request", "", "public", "Top Dataset, LTMs1971-2000, slp.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, slp.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Long Term Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ce0d_519a_f913_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ce0d_519a_f913_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ce0d_519a_f913/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ce0d_519a_f913.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ce0d_519a_f913&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ce0d_519a_f913"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b504_fff0_af6d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b504_fff0_af6d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b504_fff0_af6d/request", "", "public", "Top Dataset, LTMs1971-2000, smina.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, smina.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Long Term Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b504_fff0_af6d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b504_fff0_af6d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b504_fff0_af6d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b504_fff0_af6d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b504_fff0_af6d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b504_fff0_af6d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bba3_672b_ffed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bba3_672b_ffed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bba3_672b_ffed/request", "", "public", "Top Dataset, LTMs1971-2000, smina.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, smina.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Long Term Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bba3_672b_ffed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bba3_672b_ffed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bba3_672b_ffed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bba3_672b_ffed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bba3_672b_ffed&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bba3_672b_ffed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d213_719f_bbed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d213_719f_bbed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d213_719f_bbed/request", "", "public", "Top Dataset, LTMs1971-2000, smina.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, smina.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Long Term Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d213_719f_bbed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d213_719f_bbed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d213_719f_bbed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d213_719f_bbed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d213_719f_bbed&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d213_719f_bbed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e2a_67d6_845e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e2a_67d6_845e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5e2a_67d6_845e/request", "", "public", "Top Dataset, LTMs1971-2000, sst.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, sst.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Long Term Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5e2a_67d6_845e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5e2a_67d6_845e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5e2a_67d6_845e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5e2a_67d6_845e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5e2a_67d6_845e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5e2a_67d6_845e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8eac_b309_b127", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8eac_b309_b127.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8eac_b309_b127/request", "", "public", "Top Dataset, LTMs1971-2000, sst.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, sst.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Long Term Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8eac_b309_b127_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8eac_b309_b127_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8eac_b309_b127/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8eac_b309_b127.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8eac_b309_b127&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8eac_b309_b127"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1c5_09c9_1cee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1c5_09c9_1cee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a1c5_09c9_1cee/request", "", "public", "Top Dataset, LTMs1971-2000, sst.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, sst.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Long Term Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a1c5_09c9_1cee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a1c5_09c9_1cee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a1c5_09c9_1cee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a1c5_09c9_1cee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a1c5_09c9_1cee&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a1c5_09c9_1cee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_109a_cdac_2cca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_109a_cdac_2cca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_109a_cdac_2cca/request", "", "public", "Top Dataset, LTMs1971-2000, uairt.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, uairt.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Long Term Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_109a_cdac_2cca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_109a_cdac_2cca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_109a_cdac_2cca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_109a_cdac_2cca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_109a_cdac_2cca&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_109a_cdac_2cca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6824_39ae_3641", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6824_39ae_3641.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6824_39ae_3641/request", "", "public", "Top Dataset, LTMs1971-2000, uairt.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, uairt.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Long Term Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6824_39ae_3641_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6824_39ae_3641_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6824_39ae_3641/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6824_39ae_3641.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6824_39ae_3641&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6824_39ae_3641"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b279_3f1d_4e8f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b279_3f1d_4e8f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b279_3f1d_4e8f/request", "", "public", "Top Dataset, LTMs1971-2000, uairt.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, uairt.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Long Term Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b279_3f1d_4e8f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b279_3f1d_4e8f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b279_3f1d_4e8f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b279_3f1d_4e8f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b279_3f1d_4e8f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b279_3f1d_4e8f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4449_d460_9912", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4449_d460_9912.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4449_d460_9912/request", "", "public", "Top Dataset, LTMs1971-2000, ulflx.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, ulflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4449_d460_9912_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4449_d460_9912_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4449_d460_9912/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4449_d460_9912.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4449_d460_9912&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4449_d460_9912"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cdb4_3a8f_08a5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cdb4_3a8f_08a5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cdb4_3a8f_08a5/request", "", "public", "Top Dataset, LTMs1971-2000, ulflx.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, ulflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cdb4_3a8f_08a5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cdb4_3a8f_08a5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cdb4_3a8f_08a5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cdb4_3a8f_08a5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cdb4_3a8f_08a5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cdb4_3a8f_08a5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e8aa_954b_584d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e8aa_954b_584d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e8aa_954b_584d/request", "", "public", "Top Dataset, LTMs1971-2000, ulflx.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, ulflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e8aa_954b_584d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e8aa_954b_584d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e8aa_954b_584d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e8aa_954b_584d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e8aa_954b_584d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e8aa_954b_584d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1515_8a6d_8ecc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1515_8a6d_8ecc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1515_8a6d_8ecc/request", "", "public", "Top Dataset, LTMs1971-2000, upstr.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, upstr.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Long Term Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1515_8a6d_8ecc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1515_8a6d_8ecc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1515_8a6d_8ecc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1515_8a6d_8ecc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1515_8a6d_8ecc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1515_8a6d_8ecc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7584_db01_c52e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7584_db01_c52e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7584_db01_c52e/request", "", "public", "Top Dataset, LTMs1971-2000, upstr.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, upstr.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Long Term Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7584_db01_c52e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7584_db01_c52e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7584_db01_c52e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7584_db01_c52e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7584_db01_c52e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7584_db01_c52e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb58_1012_b05a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb58_1012_b05a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb58_1012_b05a/request", "", "public", "Top Dataset, LTMs1971-2000, upstr.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, upstr.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Long Term Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb58_1012_b05a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb58_1012_b05a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb58_1012_b05a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb58_1012_b05a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb58_1012_b05a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fb58_1012_b05a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_165b_8024_db19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_165b_8024_db19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_165b_8024_db19/request", "", "public", "Top Dataset, LTMs1971-2000, uspeh.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, uspeh.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_165b_8024_db19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_165b_8024_db19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_165b_8024_db19/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_165b_8024_db19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_165b_8024_db19&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_165b_8024_db19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64e0_c2d9_2550", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64e0_c2d9_2550.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_64e0_c2d9_2550/request", "", "public", "Top Dataset, LTMs1971-2000, uspeh.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, uspeh.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_64e0_c2d9_2550_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_64e0_c2d9_2550_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_64e0_c2d9_2550/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_64e0_c2d9_2550.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_64e0_c2d9_2550&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_64e0_c2d9_2550"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a7b_a9aa_585f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a7b_a9aa_585f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a7b_a9aa_585f/request", "", "public", "Top Dataset, LTMs1971-2000, uspeh.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, uspeh.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a7b_a9aa_585f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a7b_a9aa_585f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a7b_a9aa_585f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a7b_a9aa_585f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a7b_a9aa_585f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6a7b_a9aa_585f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af4a_f4be_b501", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af4a_f4be_b501.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_af4a_f4be_b501/request", "", "public", "Top Dataset, LTMs1971-2000, uwnd.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, uwnd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_af4a_f4be_b501_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_af4a_f4be_b501_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_af4a_f4be_b501/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_af4a_f4be_b501.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_af4a_f4be_b501&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_af4a_f4be_b501"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb64_e417_ddb0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb64_e417_ddb0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bb64_e417_ddb0/request", "", "public", "Top Dataset, LTMs1971-2000, uwnd.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, uwnd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bb64_e417_ddb0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bb64_e417_ddb0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bb64_e417_ddb0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bb64_e417_ddb0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bb64_e417_ddb0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bb64_e417_ddb0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3bf_b013_c704", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3bf_b013_c704.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d3bf_b013_c704/request", "", "public", "Top Dataset, LTMs1971-2000, uwnd.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, uwnd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d3bf_b013_c704_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d3bf_b013_c704_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d3bf_b013_c704/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d3bf_b013_c704.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d3bf_b013_c704&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d3bf_b013_c704"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_195f_4508_4baa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_195f_4508_4baa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_195f_4508_4baa/request", "", "public", "Top Dataset, LTMs1971-2000, vairt.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, vairt.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Long Term Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_195f_4508_4baa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_195f_4508_4baa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_195f_4508_4baa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_195f_4508_4baa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_195f_4508_4baa&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_195f_4508_4baa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d07_7120_546b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d07_7120_546b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2d07_7120_546b/request", "", "public", "Top Dataset, LTMs1971-2000, vairt.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, vairt.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Long Term Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2d07_7120_546b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2d07_7120_546b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d07_7120_546b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d07_7120_546b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d07_7120_546b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2d07_7120_546b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ac7f_3f29_6d0f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ac7f_3f29_6d0f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ac7f_3f29_6d0f/request", "", "public", "Top Dataset, LTMs1971-2000, vairt.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, vairt.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Long Term Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ac7f_3f29_6d0f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ac7f_3f29_6d0f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ac7f_3f29_6d0f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ac7f_3f29_6d0f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ac7f_3f29_6d0f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ac7f_3f29_6d0f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_111e_0727_86d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_111e_0727_86d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_111e_0727_86d7/request", "", "public", "Top Dataset, LTMs1971-2000, vlflx.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, vlflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_111e_0727_86d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_111e_0727_86d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_111e_0727_86d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_111e_0727_86d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_111e_0727_86d7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_111e_0727_86d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28cd_8dc6_e6ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28cd_8dc6_e6ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28cd_8dc6_e6ef/request", "", "public", "Top Dataset, LTMs1971-2000, vlflx.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, vlflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28cd_8dc6_e6ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28cd_8dc6_e6ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28cd_8dc6_e6ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28cd_8dc6_e6ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28cd_8dc6_e6ef&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_28cd_8dc6_e6ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b36c_75e9_b9e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b36c_75e9_b9e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b36c_75e9_b9e6/request", "", "public", "Top Dataset, LTMs1971-2000, vlflx.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, vlflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b36c_75e9_b9e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b36c_75e9_b9e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b36c_75e9_b9e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b36c_75e9_b9e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b36c_75e9_b9e6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b36c_75e9_b9e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_129f_df8a_9123", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_129f_df8a_9123.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_129f_df8a_9123/request", "", "public", "Top Dataset, LTMs1971-2000, vpstr.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, vpstr.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Long Term Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_129f_df8a_9123_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_129f_df8a_9123_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_129f_df8a_9123/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_129f_df8a_9123.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_129f_df8a_9123&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_129f_df8a_9123"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3fb7_b825_7af4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3fb7_b825_7af4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3fb7_b825_7af4/request", "", "public", "Top Dataset, LTMs1971-2000, vpstr.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, vpstr.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Long Term Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3fb7_b825_7af4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3fb7_b825_7af4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3fb7_b825_7af4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3fb7_b825_7af4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3fb7_b825_7af4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3fb7_b825_7af4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3c7_df35_3719", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3c7_df35_3719.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d3c7_df35_3719/request", "", "public", "Top Dataset, LTMs1971-2000, vpstr.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, vpstr.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Long Term Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d3c7_df35_3719_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d3c7_df35_3719_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d3c7_df35_3719/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d3c7_df35_3719.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d3c7_df35_3719&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d3c7_df35_3719"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bcc_c49f_498e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bcc_c49f_498e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2bcc_c49f_498e/request", "", "public", "Top Dataset, LTMs1971-2000, vspeh.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, vspeh.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2bcc_c49f_498e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2bcc_c49f_498e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2bcc_c49f_498e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2bcc_c49f_498e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2bcc_c49f_498e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2bcc_c49f_498e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c15_ed33_1bac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c15_ed33_1bac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6c15_ed33_1bac/request", "", "public", "Top Dataset, LTMs1971-2000, vspeh.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, vspeh.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6c15_ed33_1bac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6c15_ed33_1bac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6c15_ed33_1bac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6c15_ed33_1bac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6c15_ed33_1bac&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6c15_ed33_1bac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c8d0_ecbd_c8b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c8d0_ecbd_c8b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c8d0_ecbd_c8b0/request", "", "public", "Top Dataset, LTMs1971-2000, vspeh.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, vspeh.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c8d0_ecbd_c8b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c8d0_ecbd_c8b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c8d0_ecbd_c8b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c8d0_ecbd_c8b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c8d0_ecbd_c8b0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c8d0_ecbd_c8b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0553_52bf_efbb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0553_52bf_efbb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0553_52bf_efbb/request", "", "public", "Top Dataset, LTMs1971-2000, vwnd.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, vwnd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0553_52bf_efbb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0553_52bf_efbb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0553_52bf_efbb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0553_52bf_efbb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0553_52bf_efbb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0553_52bf_efbb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_720b_8b38_9fd1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_720b_8b38_9fd1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_720b_8b38_9fd1/request", "", "public", "Top Dataset, LTMs1971-2000, vwnd.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, vwnd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_720b_8b38_9fd1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_720b_8b38_9fd1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_720b_8b38_9fd1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_720b_8b38_9fd1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_720b_8b38_9fd1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_720b_8b38_9fd1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f604_af08_f12c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f604_af08_f12c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f604_af08_f12c/request", "", "public", "Top Dataset, LTMs1971-2000, vwnd.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, vwnd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f604_af08_f12c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f604_af08_f12c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f604_af08_f12c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f604_af08_f12c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f604_af08_f12c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f604_af08_f12c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d0c_fea4_fcb3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d0c_fea4_fcb3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0d0c_fea4_fcb3/request", "", "public", "Top Dataset, LTMs1971-2000, wspd.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, wspd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0d0c_fea4_fcb3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0d0c_fea4_fcb3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0d0c_fea4_fcb3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0d0c_fea4_fcb3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0d0c_fea4_fcb3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0d0c_fea4_fcb3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15e8_79bd_23d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15e8_79bd_23d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_15e8_79bd_23d9/request", "", "public", "Top Dataset, LTMs1971-2000, wspd.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, wspd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_15e8_79bd_23d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_15e8_79bd_23d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_15e8_79bd_23d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_15e8_79bd_23d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_15e8_79bd_23d9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_15e8_79bd_23d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc4d_a8e8_52e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc4d_a8e8_52e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc4d_a8e8_52e5/request", "", "public", "Top Dataset, LTMs1971-2000, wspd.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, wspd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc4d_a8e8_52e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc4d_a8e8_52e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc4d_a8e8_52e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc4d_a8e8_52e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc4d_a8e8_52e5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cc4d_a8e8_52e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c07_28a1_841b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c07_28a1_841b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c07_28a1_841b/request", "", "public", "Top Dataset, LTMs1971-2000, wspd3.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, wspd3.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Long Term Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c07_28a1_841b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c07_28a1_841b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c07_28a1_841b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c07_28a1_841b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c07_28a1_841b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0c07_28a1_841b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3775_015d_0254", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3775_015d_0254.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3775_015d_0254/request", "", "public", "Top Dataset, LTMs1971-2000, wspd3.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, wspd3.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Long Term Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3775_015d_0254_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3775_015d_0254_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3775_015d_0254/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3775_015d_0254.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3775_015d_0254&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3775_015d_0254"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5de_28af_b69d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5de_28af_b69d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d5de_28af_b69d/request", "", "public", "Top Dataset, LTMs1971-2000, wspd3.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1971-2000, wspd3.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Long Term Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d5de_28af_b69d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d5de_28af_b69d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d5de_28af_b69d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d5de_28af_b69d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d5de_28af_b69d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d5de_28af_b69d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0cdd_7151_9442", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0cdd_7151_9442.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0cdd_7151_9442/request", "", "public", "Top Dataset, LTMs1981-2010, air.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, air.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Long Term Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0cdd_7151_9442_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0cdd_7151_9442_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0cdd_7151_9442/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0cdd_7151_9442.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0cdd_7151_9442&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0cdd_7151_9442"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dbf_f4ba_63bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dbf_f4ba_63bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5dbf_f4ba_63bd/request", "", "public", "Top Dataset, LTMs1981-2010, air.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, air.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Long Term Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5dbf_f4ba_63bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5dbf_f4ba_63bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5dbf_f4ba_63bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5dbf_f4ba_63bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5dbf_f4ba_63bd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5dbf_f4ba_63bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c845_3b0c_d34e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c845_3b0c_d34e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c845_3b0c_d34e/request", "", "public", "Top Dataset, LTMs1981-2010, air.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, air.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Long Term Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c845_3b0c_d34e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c845_3b0c_d34e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c845_3b0c_d34e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c845_3b0c_d34e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c845_3b0c_d34e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c845_3b0c_d34e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e4e_5fe9_6aa0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e4e_5fe9_6aa0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4e4e_5fe9_6aa0/request", "", "public", "Top Dataset, LTMs1981-2010, cldc.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, cldc.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Long Term Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4e4e_5fe9_6aa0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4e4e_5fe9_6aa0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4e4e_5fe9_6aa0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4e4e_5fe9_6aa0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4e4e_5fe9_6aa0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4e4e_5fe9_6aa0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d72_094b_b565", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d72_094b_b565.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d72_094b_b565/request", "", "public", "Top Dataset, LTMs1981-2010, cldc.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, cldc.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Long Term Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d72_094b_b565_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d72_094b_b565_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d72_094b_b565/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d72_094b_b565.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d72_094b_b565&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6d72_094b_b565"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e306_7f3a_9d5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e306_7f3a_9d5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e306_7f3a_9d5f/request", "", "public", "Top Dataset, LTMs1981-2010, cldc.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, cldc.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Long Term Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e306_7f3a_9d5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e306_7f3a_9d5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e306_7f3a_9d5f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e306_7f3a_9d5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e306_7f3a_9d5f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e306_7f3a_9d5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1bb6_10f5_d20c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1bb6_10f5_d20c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1bb6_10f5_d20c/request", "", "public", "Top Dataset, LTMs1981-2010, lflx.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, lflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1bb6_10f5_d20c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1bb6_10f5_d20c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1bb6_10f5_d20c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1bb6_10f5_d20c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1bb6_10f5_d20c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1bb6_10f5_d20c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_333f_23f5_3fdb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_333f_23f5_3fdb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_333f_23f5_3fdb/request", "", "public", "Top Dataset, LTMs1981-2010, lflx.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, lflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_333f_23f5_3fdb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_333f_23f5_3fdb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_333f_23f5_3fdb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_333f_23f5_3fdb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_333f_23f5_3fdb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_333f_23f5_3fdb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d420_9697_c5a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d420_9697_c5a8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d420_9697_c5a8/request", "", "public", "Top Dataset, LTMs1981-2010, lflx.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, lflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d420_9697_c5a8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d420_9697_c5a8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d420_9697_c5a8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d420_9697_c5a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d420_9697_c5a8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d420_9697_c5a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f1d_42fe_6822", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f1d_42fe_6822.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f1d_42fe_6822/request", "", "public", "Top Dataset, LTMs1981-2010, qsminq.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, qsminq.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Long Term Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f1d_42fe_6822_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f1d_42fe_6822_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f1d_42fe_6822/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f1d_42fe_6822.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f1d_42fe_6822&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1f1d_42fe_6822"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7869_86b1_f3af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7869_86b1_f3af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7869_86b1_f3af/request", "", "public", "Top Dataset, LTMs1981-2010, qsminq.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, qsminq.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Long Term Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7869_86b1_f3af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7869_86b1_f3af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7869_86b1_f3af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7869_86b1_f3af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7869_86b1_f3af&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7869_86b1_f3af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_912d_8a62_ed96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_912d_8a62_ed96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_912d_8a62_ed96/request", "", "public", "Top Dataset, LTMs1981-2010, qsminq.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, qsminq.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Long Term Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_912d_8a62_ed96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_912d_8a62_ed96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_912d_8a62_ed96/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_912d_8a62_ed96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_912d_8a62_ed96&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_912d_8a62_ed96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37fd_d295_51fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37fd_d295_51fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_37fd_d295_51fd/request", "", "public", "Top Dataset, LTMs1981-2010, rhum.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, rhum.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Long Term Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_37fd_d295_51fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_37fd_d295_51fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_37fd_d295_51fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_37fd_d295_51fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_37fd_d295_51fd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_37fd_d295_51fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b3e5_33bd_8484", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b3e5_33bd_8484.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b3e5_33bd_8484/request", "", "public", "Top Dataset, LTMs1981-2010, rhum.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, rhum.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Long Term Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b3e5_33bd_8484_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b3e5_33bd_8484_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b3e5_33bd_8484/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b3e5_33bd_8484.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b3e5_33bd_8484&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b3e5_33bd_8484"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b800_c9cf_3ad0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b800_c9cf_3ad0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b800_c9cf_3ad0/request", "", "public", "Top Dataset, LTMs1981-2010, rhum.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, rhum.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Long Term Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b800_c9cf_3ad0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b800_c9cf_3ad0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b800_c9cf_3ad0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b800_c9cf_3ad0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b800_c9cf_3ad0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b800_c9cf_3ad0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3821_5966_f093", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3821_5966_f093.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3821_5966_f093/request", "", "public", "Top Dataset, LTMs1981-2010, sflx.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, sflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Long Term Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3821_5966_f093_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3821_5966_f093_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3821_5966_f093/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3821_5966_f093.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3821_5966_f093&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3821_5966_f093"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_509e_3466_fc2c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_509e_3466_fc2c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_509e_3466_fc2c/request", "", "public", "Top Dataset, LTMs1981-2010, sflx.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, sflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Long Term Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_509e_3466_fc2c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_509e_3466_fc2c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_509e_3466_fc2c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_509e_3466_fc2c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_509e_3466_fc2c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_509e_3466_fc2c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddd2_9782_bd2b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddd2_9782_bd2b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ddd2_9782_bd2b/request", "", "public", "Top Dataset, LTMs1981-2010, sflx.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, sflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Long Term Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ddd2_9782_bd2b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ddd2_9782_bd2b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ddd2_9782_bd2b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ddd2_9782_bd2b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ddd2_9782_bd2b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ddd2_9782_bd2b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97b1_0c49_999e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97b1_0c49_999e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_97b1_0c49_999e/request", "", "public", "Top Dataset, LTMs1981-2010, shum.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, shum.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Long Term Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_97b1_0c49_999e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_97b1_0c49_999e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_97b1_0c49_999e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_97b1_0c49_999e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_97b1_0c49_999e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_97b1_0c49_999e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c389_7687_d101", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c389_7687_d101.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c389_7687_d101/request", "", "public", "Top Dataset, LTMs1981-2010, shum.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, shum.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Long Term Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c389_7687_d101_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c389_7687_d101_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c389_7687_d101/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c389_7687_d101.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c389_7687_d101&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c389_7687_d101"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7f3_9a7a_fd06", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7f3_9a7a_fd06.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f7f3_9a7a_fd06/request", "", "public", "Top Dataset, LTMs1981-2010, shum.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, shum.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Long Term Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f7f3_9a7a_fd06_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f7f3_9a7a_fd06_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f7f3_9a7a_fd06/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f7f3_9a7a_fd06.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f7f3_9a7a_fd06&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f7f3_9a7a_fd06"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0399_bceb_d5fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0399_bceb_d5fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0399_bceb_d5fe/request", "", "public", "Top Dataset, LTMs1981-2010, slp.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, slp.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Long Term Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0399_bceb_d5fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0399_bceb_d5fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0399_bceb_d5fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0399_bceb_d5fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0399_bceb_d5fe&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0399_bceb_d5fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e45_e127_e49f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e45_e127_e49f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e45_e127_e49f/request", "", "public", "Top Dataset, LTMs1981-2010, slp.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, slp.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Long Term Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e45_e127_e49f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e45_e127_e49f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e45_e127_e49f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e45_e127_e49f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e45_e127_e49f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9e45_e127_e49f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eddb_f58f_7564", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eddb_f58f_7564.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eddb_f58f_7564/request", "", "public", "Top Dataset, LTMs1981-2010, slp.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, slp.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Long Term Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eddb_f58f_7564_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eddb_f58f_7564_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eddb_f58f_7564/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eddb_f58f_7564.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eddb_f58f_7564&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eddb_f58f_7564"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a97_beaf_0a43", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a97_beaf_0a43.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a97_beaf_0a43/request", "", "public", "Top Dataset, LTMs1981-2010, smina.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, smina.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Long Term Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a97_beaf_0a43_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a97_beaf_0a43_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a97_beaf_0a43/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a97_beaf_0a43.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a97_beaf_0a43&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6a97_beaf_0a43"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d0b_1139_8d19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d0b_1139_8d19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d0b_1139_8d19/request", "", "public", "Top Dataset, LTMs1981-2010, smina.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, smina.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Long Term Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d0b_1139_8d19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d0b_1139_8d19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d0b_1139_8d19/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d0b_1139_8d19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d0b_1139_8d19&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6d0b_1139_8d19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa1f_5c59_be7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa1f_5c59_be7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa1f_5c59_be7b/request", "", "public", "Top Dataset, LTMs1981-2010, smina.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, smina.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Long Term Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa1f_5c59_be7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa1f_5c59_be7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa1f_5c59_be7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa1f_5c59_be7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa1f_5c59_be7b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_aa1f_5c59_be7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8322_f9e5_5563", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8322_f9e5_5563.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8322_f9e5_5563/request", "", "public", "Top Dataset, LTMs1981-2010, sst.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, sst.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Long Term Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8322_f9e5_5563_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8322_f9e5_5563_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8322_f9e5_5563/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8322_f9e5_5563.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8322_f9e5_5563&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8322_f9e5_5563"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb7c_8c17_3f45", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb7c_8c17_3f45.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb7c_8c17_3f45/request", "", "public", "Top Dataset, LTMs1981-2010, sst.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, sst.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Long Term Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb7c_8c17_3f45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb7c_8c17_3f45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb7c_8c17_3f45/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb7c_8c17_3f45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb7c_8c17_3f45&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cb7c_8c17_3f45"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd8a_f132_ea02", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd8a_f132_ea02.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dd8a_f132_ea02/request", "", "public", "Top Dataset, LTMs1981-2010, sst.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, sst.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Long Term Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dd8a_f132_ea02_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dd8a_f132_ea02_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dd8a_f132_ea02/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dd8a_f132_ea02.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dd8a_f132_ea02&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dd8a_f132_ea02"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54e3_e9e7_682a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54e3_e9e7_682a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54e3_e9e7_682a/request", "", "public", "Top Dataset, LTMs1981-2010, uairt.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, uairt.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Long Term Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54e3_e9e7_682a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54e3_e9e7_682a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54e3_e9e7_682a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54e3_e9e7_682a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54e3_e9e7_682a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_54e3_e9e7_682a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89bf_748e_8704", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89bf_748e_8704.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_89bf_748e_8704/request", "", "public", "Top Dataset, LTMs1981-2010, uairt.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, uairt.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Long Term Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_89bf_748e_8704_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_89bf_748e_8704_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_89bf_748e_8704/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_89bf_748e_8704.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_89bf_748e_8704&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_89bf_748e_8704"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b196_b512_c7fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b196_b512_c7fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b196_b512_c7fd/request", "", "public", "Top Dataset, LTMs1981-2010, uairt.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, uairt.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Long Term Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b196_b512_c7fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b196_b512_c7fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b196_b512_c7fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b196_b512_c7fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b196_b512_c7fd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b196_b512_c7fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7ce_7b55_e61b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7ce_7b55_e61b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f7ce_7b55_e61b/request", "", "public", "Top Dataset, LTMs1981-2010, ulflx.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, ulflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f7ce_7b55_e61b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f7ce_7b55_e61b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f7ce_7b55_e61b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f7ce_7b55_e61b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f7ce_7b55_e61b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f7ce_7b55_e61b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb5d_a019_0062", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb5d_a019_0062.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb5d_a019_0062/request", "", "public", "Top Dataset, LTMs1981-2010, ulflx.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, ulflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb5d_a019_0062_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb5d_a019_0062_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb5d_a019_0062/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb5d_a019_0062.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb5d_a019_0062&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fb5d_a019_0062"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb95_7003_7b41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb95_7003_7b41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb95_7003_7b41/request", "", "public", "Top Dataset, LTMs1981-2010, ulflx.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, ulflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb95_7003_7b41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb95_7003_7b41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb95_7003_7b41/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb95_7003_7b41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb95_7003_7b41&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fb95_7003_7b41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4091_0372_2c3d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4091_0372_2c3d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4091_0372_2c3d/request", "", "public", "Top Dataset, LTMs1981-2010, upstr.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, upstr.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Long Term Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4091_0372_2c3d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4091_0372_2c3d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4091_0372_2c3d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4091_0372_2c3d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4091_0372_2c3d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4091_0372_2c3d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba25_3329_3a33", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba25_3329_3a33.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ba25_3329_3a33/request", "", "public", "Top Dataset, LTMs1981-2010, upstr.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, upstr.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Long Term Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ba25_3329_3a33_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ba25_3329_3a33_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ba25_3329_3a33/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ba25_3329_3a33.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ba25_3329_3a33&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ba25_3329_3a33"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d45a_7d8c_4698", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d45a_7d8c_4698.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d45a_7d8c_4698/request", "", "public", "Top Dataset, LTMs1981-2010, upstr.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, upstr.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Long Term Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d45a_7d8c_4698_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d45a_7d8c_4698_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d45a_7d8c_4698/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d45a_7d8c_4698.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d45a_7d8c_4698&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d45a_7d8c_4698"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_223e_98cc_a916", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_223e_98cc_a916.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_223e_98cc_a916/request", "", "public", "Top Dataset, LTMs1981-2010, uspeh.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, uspeh.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_223e_98cc_a916_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_223e_98cc_a916_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_223e_98cc_a916/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_223e_98cc_a916.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_223e_98cc_a916&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_223e_98cc_a916"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_61fa_05e0_0406", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_61fa_05e0_0406.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_61fa_05e0_0406/request", "", "public", "Top Dataset, LTMs1981-2010, uspeh.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, uspeh.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_61fa_05e0_0406_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_61fa_05e0_0406_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_61fa_05e0_0406/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_61fa_05e0_0406.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_61fa_05e0_0406&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_61fa_05e0_0406"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b4b6_9064_5a42", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b4b6_9064_5a42.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b4b6_9064_5a42/request", "", "public", "Top Dataset, LTMs1981-2010, uspeh.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, uspeh.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b4b6_9064_5a42_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b4b6_9064_5a42_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b4b6_9064_5a42/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b4b6_9064_5a42.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b4b6_9064_5a42&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b4b6_9064_5a42"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c88_8e26_e899", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c88_8e26_e899.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1c88_8e26_e899/request", "", "public", "Top Dataset, LTMs1981-2010, uwnd.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, uwnd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1c88_8e26_e899_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1c88_8e26_e899_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1c88_8e26_e899/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1c88_8e26_e899.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1c88_8e26_e899&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1c88_8e26_e899"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cb0_1ff3_c708", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cb0_1ff3_c708.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1cb0_1ff3_c708/request", "", "public", "Top Dataset, LTMs1981-2010, uwnd.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, uwnd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1cb0_1ff3_c708_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1cb0_1ff3_c708_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1cb0_1ff3_c708/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1cb0_1ff3_c708.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1cb0_1ff3_c708&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1cb0_1ff3_c708"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb27_23f1_b364", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb27_23f1_b364.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bb27_23f1_b364/request", "", "public", "Top Dataset, LTMs1981-2010, uwnd.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, uwnd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bb27_23f1_b364_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bb27_23f1_b364_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bb27_23f1_b364/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bb27_23f1_b364.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bb27_23f1_b364&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bb27_23f1_b364"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86c4_fb43_0c25", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86c4_fb43_0c25.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_86c4_fb43_0c25/request", "", "public", "Top Dataset, LTMs1981-2010, vairt.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, vairt.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Long Term Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86c4_fb43_0c25_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86c4_fb43_0c25_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86c4_fb43_0c25/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86c4_fb43_0c25.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86c4_fb43_0c25&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_86c4_fb43_0c25"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf18_bfd5_0878", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf18_bfd5_0878.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf18_bfd5_0878/request", "", "public", "Top Dataset, LTMs1981-2010, vairt.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, vairt.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Long Term Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf18_bfd5_0878_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf18_bfd5_0878_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf18_bfd5_0878/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf18_bfd5_0878.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf18_bfd5_0878&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cf18_bfd5_0878"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa63_ce15_b3ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa63_ce15_b3ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fa63_ce15_b3ae/request", "", "public", "Top Dataset, LTMs1981-2010, vairt.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, vairt.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Long Term Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fa63_ce15_b3ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fa63_ce15_b3ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fa63_ce15_b3ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fa63_ce15_b3ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fa63_ce15_b3ae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fa63_ce15_b3ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3584_5c7f_0c55", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3584_5c7f_0c55.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3584_5c7f_0c55/request", "", "public", "Top Dataset, LTMs1981-2010, vlflx.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, vlflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3584_5c7f_0c55_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3584_5c7f_0c55_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3584_5c7f_0c55/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3584_5c7f_0c55.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3584_5c7f_0c55&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3584_5c7f_0c55"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9027_fd84_426f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9027_fd84_426f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9027_fd84_426f/request", "", "public", "Top Dataset, LTMs1981-2010, vlflx.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, vlflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9027_fd84_426f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9027_fd84_426f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9027_fd84_426f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9027_fd84_426f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9027_fd84_426f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9027_fd84_426f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e41_215c_3717", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e41_215c_3717.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e41_215c_3717/request", "", "public", "Top Dataset, LTMs1981-2010, vlflx.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, vlflx.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e41_215c_3717_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e41_215c_3717_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e41_215c_3717/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e41_215c_3717.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e41_215c_3717&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9e41_215c_3717"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b50_0bbe_dd17", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b50_0bbe_dd17.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2b50_0bbe_dd17/request", "", "public", "Top Dataset, LTMs1981-2010, vpstr.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, vpstr.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Long Term Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2b50_0bbe_dd17_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2b50_0bbe_dd17_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2b50_0bbe_dd17/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2b50_0bbe_dd17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2b50_0bbe_dd17&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2b50_0bbe_dd17"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_76a5_8aca_f4f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_76a5_8aca_f4f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_76a5_8aca_f4f9/request", "", "public", "Top Dataset, LTMs1981-2010, vpstr.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, vpstr.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Long Term Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_76a5_8aca_f4f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_76a5_8aca_f4f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_76a5_8aca_f4f9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_76a5_8aca_f4f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_76a5_8aca_f4f9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_76a5_8aca_f4f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c221_b36a_e399", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c221_b36a_e399.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c221_b36a_e399/request", "", "public", "Top Dataset, LTMs1981-2010, vpstr.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, vpstr.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Long Term Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c221_b36a_e399_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c221_b36a_e399_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c221_b36a_e399/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c221_b36a_e399.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c221_b36a_e399&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c221_b36a_e399"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_337e_9ac7_ddf3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_337e_9ac7_ddf3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_337e_9ac7_ddf3/request", "", "public", "Top Dataset, LTMs1981-2010, vspeh.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, vspeh.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_337e_9ac7_ddf3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_337e_9ac7_ddf3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_337e_9ac7_ddf3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_337e_9ac7_ddf3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_337e_9ac7_ddf3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_337e_9ac7_ddf3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fd5_8c3c_7b72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fd5_8c3c_7b72.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4fd5_8c3c_7b72/request", "", "public", "Top Dataset, LTMs1981-2010, vspeh.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, vspeh.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4fd5_8c3c_7b72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4fd5_8c3c_7b72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4fd5_8c3c_7b72/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4fd5_8c3c_7b72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4fd5_8c3c_7b72&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4fd5_8c3c_7b72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79f1_7ccc_82f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79f1_7ccc_82f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_79f1_7ccc_82f2/request", "", "public", "Top Dataset, LTMs1981-2010, vspeh.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, vspeh.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Long Term Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_79f1_7ccc_82f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_79f1_7ccc_82f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_79f1_7ccc_82f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_79f1_7ccc_82f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_79f1_7ccc_82f2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_79f1_7ccc_82f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_545c_a289_6803", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_545c_a289_6803.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_545c_a289_6803/request", "", "public", "Top Dataset, LTMs1981-2010, vwnd.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, vwnd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_545c_a289_6803_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_545c_a289_6803_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_545c_a289_6803/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_545c_a289_6803.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_545c_a289_6803&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_545c_a289_6803"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_564d_d17a_2bc7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_564d_d17a_2bc7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_564d_d17a_2bc7/request", "", "public", "Top Dataset, LTMs1981-2010, vwnd.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, vwnd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_564d_d17a_2bc7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_564d_d17a_2bc7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_564d_d17a_2bc7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_564d_d17a_2bc7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_564d_d17a_2bc7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_564d_d17a_2bc7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8344_9682_07e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8344_9682_07e8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8344_9682_07e8/request", "", "public", "Top Dataset, LTMs1981-2010, vwnd.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, vwnd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8344_9682_07e8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8344_9682_07e8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8344_9682_07e8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8344_9682_07e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8344_9682_07e8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8344_9682_07e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10a1_0049_2d7c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10a1_0049_2d7c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_10a1_0049_2d7c/request", "", "public", "Top Dataset, LTMs1981-2010, wspd.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, wspd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_10a1_0049_2d7c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_10a1_0049_2d7c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_10a1_0049_2d7c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_10a1_0049_2d7c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_10a1_0049_2d7c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_10a1_0049_2d7c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b42_4ca8_2f81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b42_4ca8_2f81.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8b42_4ca8_2f81/request", "", "public", "Top Dataset, LTMs1981-2010, wspd.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, wspd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8b42_4ca8_2f81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8b42_4ca8_2f81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8b42_4ca8_2f81/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8b42_4ca8_2f81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8b42_4ca8_2f81&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8b42_4ca8_2f81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e21_b13e_30db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e21_b13e_30db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e21_b13e_30db/request", "", "public", "Top Dataset, LTMs1981-2010, wspd.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, wspd.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e21_b13e_30db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e21_b13e_30db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e21_b13e_30db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e21_b13e_30db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e21_b13e_30db&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9e21_b13e_30db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0647_2b0f_bcbe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0647_2b0f_bcbe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0647_2b0f_bcbe/request", "", "public", "Top Dataset, LTMs1981-2010, wspd3.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, wspd3.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Long Term Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0647_2b0f_bcbe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0647_2b0f_bcbe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0647_2b0f_bcbe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0647_2b0f_bcbe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0647_2b0f_bcbe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0647_2b0f_bcbe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_627a_e0aa_59ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_627a_e0aa_59ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_627a_e0aa_59ec/request", "", "public", "Top Dataset, LTMs1981-2010, wspd3.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, wspd3.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Long Term Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_627a_e0aa_59ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_627a_e0aa_59ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_627a_e0aa_59ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_627a_e0aa_59ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_627a_e0aa_59ec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_627a_e0aa_59ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4df_a181_761f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4df_a181_761f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a4df_a181_761f/request", "", "public", "Top Dataset, LTMs1981-2010, wspd3.ltm (ICOADS 2x2 Degree Enhanced LTM), 2.0\u00b0, 0001", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2x2 Degree Enhanced Long Term Mean (LTM) (Top Dataset, LTMs1981-2010, wspd3.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Long Term Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a4df_a181_761f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a4df_a181_761f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a4df_a181_761f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.ltm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a4df_a181_761f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a4df_a181_761f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a4df_a181_761f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e9f_bd89_4465", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e9f_bd89_4465.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e9f_bd89_4465/request", "", "public", "Top Dataset, masks, landseadepth (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, masks, landseadepth)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlandseadepth (Maximum Land/Sea Depth Index 1-33(40))\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e9f_bd89_4465_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e9f_bd89_4465_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e9f_bd89_4465/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e9f_bd89_4465.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e9f_bd89_4465&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_8e9f_bd89_4465"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_fec9_91c4_5fa4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_fec9_91c4_5fa4.graph", "", "", "public", "Top Dataset, modis, MODIS AQUA L3 CHLA DAILY 4KM R, 0.041666668\u00b0, 2002-2015", "HMODISA Level-3 Standard Mapped Image (Top Dataset, modis, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Chlorophyll-a (CHLA) DAILY 4KM R)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nl3m_data (mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_fec9_91c4_5fa4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_fec9_91c4_5fa4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_fec9_91c4_5fa4/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_fec9_91c4_5fa4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_fec9_91c4_5fa4&showErrors=false&email=", "NASA JPL", "nasa_jpl_fec9_91c4_5fa4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_d436_2d2b_4e72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_d436_2d2b_4e72.graph", "", "", "public", "Top Dataset, modis, MODIS Aqua L3 CHLA Daily 4km V2014.0 R [rgb][eightbitcolor]", "HMODISA Level-3 Standard Mapped Image (Top Dataset, modis, Moderate Resolution Imaging Spectroradiometer (MODIS) Aqua L3 Chlorophyll-a (CHLA) Daily 4km V2014.0 R)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_d436_2d2b_4e72/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_d436_2d2b_4e72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_d436_2d2b_4e72&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_d436_2d2b_4e72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_68b7_3904_acf3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_68b7_3904_acf3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_68b7_3904_acf3/request", "", "public", "Top Dataset, modis, MODIS Aqua L3 CHLA Daily 4km V2014.0 R [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, modis, Moderate Resolution Imaging Spectroradiometer (MODIS) Aqua L3 Chlorophyll-a (CHLA) Daily 4km V2014.0 R)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlor_a (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_68b7_3904_acf3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_68b7_3904_acf3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_68b7_3904_acf3/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_68b7_3904_acf3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_68b7_3904_acf3&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_68b7_3904_acf3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e4ab_0fb5_24fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e4ab_0fb5_24fa.graph", "", "", "public", "Top Dataset, modis, MODIS AQUA L3 CHLA MONTHLY 4KM R, 0.041666668\u00b0, 2002-2015", "HMODISA Level-3 Standard Mapped Image (Top Dataset, modis, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Chlorophyll-a (CHLA) MONTHLY 4KM R)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nl3m_data (mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_e4ab_0fb5_24fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_e4ab_0fb5_24fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_e4ab_0fb5_24fa/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_e4ab_0fb5_24fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_e4ab_0fb5_24fa&showErrors=false&email=", "NASA JPL", "nasa_jpl_e4ab_0fb5_24fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_8d5c_ec39_74de", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_8d5c_ec39_74de.graph", "", "", "public", "Top Dataset, modis, MODIS Aqua L3 CHLA Monthly 4km V2014.0 R [rgb][eightbitcolor]", "HMODISA Level-3 Standard Mapped Image (Top Dataset, modis, Moderate Resolution Imaging Spectroradiometer (MODIS) Aqua L3 Chlorophyll-a (CHLA) Monthly 4km V2014.0 R)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [rgb][eightbitcolor]):\npalette\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_8d5c_ec39_74de/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_8d5c_ec39_74de.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_8d5c_ec39_74de&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_8d5c_ec39_74de"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_55b8_bdb3_83c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_55b8_bdb3_83c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_55b8_bdb3_83c0/request", "", "public", "Top Dataset, modis, MODIS Aqua L3 CHLA Monthly 4km V2014.0 R [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, modis, Moderate Resolution Imaging Spectroradiometer (MODIS) Aqua L3 Chlorophyll-a (CHLA) Monthly 4km V2014.0 R)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlor_a (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_55b8_bdb3_83c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_55b8_bdb3_83c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_55b8_bdb3_83c0/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_55b8_bdb3_83c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_55b8_bdb3_83c0&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_55b8_bdb3_83c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea94_4e55_2af2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea94_4e55_2af2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ea94_4e55_2af2/request", "", "public", "Top Dataset, monitor, precip.monitor.mon.total.1x1.v4 (GPCC 1.0x1.0 Precipitation (Monitoring)), 2007-present", "Global Precipitation Climatology Centre (GPCC) 1.0x1.0 Precipitation (Monitoring) (Top Dataset, monitor, precip.monitor.mon.total.1x1.v4)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Precipitation: Monitoring Version, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ea94_4e55_2af2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ea94_4e55_2af2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ea94_4e55_2af2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ea94_4e55_2af2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ea94_4e55_2af2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ea94_4e55_2af2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2385_daf9_7564", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2385_daf9_7564.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2385_daf9_7564/request", "", "public", "Top Dataset, monitor, precip.monitor.mon.total.2.5x2.5.v4, 2007-2014", "Global Precipitation Climatology Centre (GPCC) 2.5x2.5 Precipitation (Monitoring) (Top Dataset, monitor, precip.monitor.mon.total.2.5x2.5.v4)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Precipitation: Monitoring Version, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2385_daf9_7564_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2385_daf9_7564_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2385_daf9_7564/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2385_daf9_7564.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2385_daf9_7564&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2385_daf9_7564"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad47_3fd6_51cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad47_3fd6_51cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ad47_3fd6_51cb/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ad47_3fd6_51cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ad47_3fd6_51cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ad47_3fd6_51cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ad47_3fd6_51cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ad47_3fd6_51cb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ad47_3fd6_51cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_576d_3042_439a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_576d_3042_439a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_576d_3042_439a/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_576d_3042_439a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_576d_3042_439a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_576d_3042_439a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_576d_3042_439a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_576d_3042_439a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_576d_3042_439a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2bf_4392_704f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2bf_4392_704f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f2bf_4392_704f/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f2bf_4392_704f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f2bf_4392_704f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f2bf_4392_704f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f2bf_4392_704f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f2bf_4392_704f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f2bf_4392_704f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_916e_b73a_f774", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_916e_b73a_f774.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_916e_b73a_f774/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_916e_b73a_f774_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_916e_b73a_f774_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_916e_b73a_f774/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_916e_b73a_f774.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_916e_b73a_f774&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_916e_b73a_f774"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f02_62f6_f9f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f02_62f6_f9f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3f02_62f6_f9f5/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3f02_62f6_f9f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3f02_62f6_f9f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3f02_62f6_f9f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3f02_62f6_f9f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3f02_62f6_f9f5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3f02_62f6_f9f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f73c_5cfb_7d7d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f73c_5cfb_7d7d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f73c_5cfb_7d7d/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f73c_5cfb_7d7d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f73c_5cfb_7d7d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f73c_5cfb_7d7d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f73c_5cfb_7d7d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f73c_5cfb_7d7d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f73c_5cfb_7d7d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8abc_8222_02d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8abc_8222_02d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8abc_8222_02d5/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8abc_8222_02d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8abc_8222_02d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8abc_8222_02d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8abc_8222_02d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8abc_8222_02d5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8abc_8222_02d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4254_3e33_671e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4254_3e33_671e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4254_3e33_671e/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4254_3e33_671e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4254_3e33_671e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4254_3e33_671e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4254_3e33_671e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4254_3e33_671e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4254_3e33_671e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f33e_8165_4963", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f33e_8165_4963.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f33e_8165_4963/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f33e_8165_4963_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f33e_8165_4963_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f33e_8165_4963/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f33e_8165_4963.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f33e_8165_4963&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f33e_8165_4963"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1a6_beae_f7e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1a6_beae_f7e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a1a6_beae_f7e0/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.mon.mean, 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a1a6_beae_f7e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a1a6_beae_f7e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a1a6_beae_f7e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a1a6_beae_f7e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a1a6_beae_f7e0&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a1a6_beae_f7e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_36aa_2320_b507", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_36aa_2320_b507.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_36aa_2320_b507/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_36aa_2320_b507_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_36aa_2320_b507_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_36aa_2320_b507/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_36aa_2320_b507.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_36aa_2320_b507&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_36aa_2320_b507"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21ec_147d_3622", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21ec_147d_3622.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_21ec_147d_3622/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_21ec_147d_3622_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_21ec_147d_3622_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_21ec_147d_3622/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_21ec_147d_3622.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_21ec_147d_3622&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_21ec_147d_3622"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_deac_f85a_7ae9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_deac_f85a_7ae9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_deac_f85a_7ae9/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_deac_f85a_7ae9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_deac_f85a_7ae9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_deac_f85a_7ae9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_deac_f85a_7ae9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_deac_f85a_7ae9&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_deac_f85a_7ae9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6970_5fde_63b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6970_5fde_63b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6970_5fde_63b3/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at Tropopause, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6970_5fde_63b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6970_5fde_63b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6970_5fde_63b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6970_5fde_63b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6970_5fde_63b3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6970_5fde_63b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ae6_104a_9df1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ae6_104a_9df1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ae6_104a_9df1/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at Tropopause, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ae6_104a_9df1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ae6_104a_9df1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ae6_104a_9df1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ae6_104a_9df1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ae6_104a_9df1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4ae6_104a_9df1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94ea_35ee_0e4f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94ea_35ee_0e4f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_94ea_35ee_0e4f/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_94ea_35ee_0e4f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_94ea_35ee_0e4f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_94ea_35ee_0e4f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_94ea_35ee_0e4f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_94ea_35ee_0e4f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_94ea_35ee_0e4f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b422_3911_0054", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b422_3911_0054.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b422_3911_0054/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b422_3911_0054_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b422_3911_0054_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b422_3911_0054/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b422_3911_0054.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b422_3911_0054&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b422_3911_0054"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_67bb_5c25_7a16", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_67bb_5c25_7a16.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_67bb_5c25_7a16/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_67bb_5c25_7a16_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_67bb_5c25_7a16_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_67bb_5c25_7a16/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_67bb_5c25_7a16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_67bb_5c25_7a16&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_67bb_5c25_7a16"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5d4_f556_e693", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5d4_f556_e693.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5d4_f556_e693/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5d4_f556_e693_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5d4_f556_e693_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5d4_f556_e693/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5d4_f556_e693.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5d4_f556_e693&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e5d4_f556_e693"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4977_24bb_c792", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4977_24bb_c792.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4977_24bb_c792/request", "", "public", "Top Dataset, monolevel sprd, cape.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Long Term Mean 6-hourly CAPE Spread, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4977_24bb_c792_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4977_24bb_c792_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4977_24bb_c792/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4977_24bb_c792.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4977_24bb_c792&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4977_24bb_c792"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2a4c_3c0a_f16a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2a4c_3c0a_f16a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2a4c_3c0a_f16a/request", "", "public", "Top Dataset, monolevel sprd, cape.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Daily Long Term Mean CAPE Spread, J/kg)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2a4c_3c0a_f16a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2a4c_3c0a_f16a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2a4c_3c0a_f16a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2a4c_3c0a_f16a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2a4c_3c0a_f16a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2a4c_3c0a_f16a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93ba_aaf6_a9a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93ba_aaf6_a9a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_93ba_aaf6_a9a6/request", "", "public", "Top Dataset, monolevel sprd, cape.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Daily Long Term Mean CAPE Spread, J/kg)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_93ba_aaf6_a9a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_93ba_aaf6_a9a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_93ba_aaf6_a9a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_93ba_aaf6_a9a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_93ba_aaf6_a9a6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_93ba_aaf6_a9a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e51_2a5e_187d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e51_2a5e_187d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4e51_2a5e_187d/request", "", "public", "Top Dataset, monolevel sprd, cape.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Long Term Mean Monthly CAPE Spread, J/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4e51_2a5e_187d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4e51_2a5e_187d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4e51_2a5e_187d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4e51_2a5e_187d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4e51_2a5e_187d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4e51_2a5e_187d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c839_203b_37d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c839_203b_37d2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c839_203b_37d2/request", "", "public", "Top Dataset, monolevel sprd, cape.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Monthly Long Term CAPE Spread, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c839_203b_37d2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c839_203b_37d2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c839_203b_37d2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c839_203b_37d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c839_203b_37d2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c839_203b_37d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3873_0a06_391d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3873_0a06_391d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3873_0a06_391d/request", "", "public", "Top Dataset, monolevel sprd, cin.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Long Term Mean 6-hourly CIN Spread, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3873_0a06_391d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3873_0a06_391d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3873_0a06_391d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3873_0a06_391d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3873_0a06_391d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3873_0a06_391d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71ce_72dd_3a54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71ce_72dd_3a54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_71ce_72dd_3a54/request", "", "public", "Top Dataset, monolevel sprd, cin.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Daily Long Term Mean CIN Spread, J/kg)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_71ce_72dd_3a54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_71ce_72dd_3a54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_71ce_72dd_3a54/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_71ce_72dd_3a54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_71ce_72dd_3a54&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_71ce_72dd_3a54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5280_eeb0_2b43", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5280_eeb0_2b43.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5280_eeb0_2b43/request", "", "public", "Top Dataset, monolevel sprd, cin.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Long Term Mean Monthly CIN Spread, J/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5280_eeb0_2b43_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5280_eeb0_2b43_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5280_eeb0_2b43/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5280_eeb0_2b43.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5280_eeb0_2b43&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5280_eeb0_2b43"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58a1_c445_0e8a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58a1_c445_0e8a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_58a1_c445_0e8a/request", "", "public", "Top Dataset, monolevel sprd, cin.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Monthly Long Term CIN Spread, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_58a1_c445_0e8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_58a1_c445_0e8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_58a1_c445_0e8a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_58a1_c445_0e8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_58a1_c445_0e8a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_58a1_c445_0e8a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8efe_21f9_5037", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8efe_21f9_5037.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8efe_21f9_5037/request", "", "public", "Top Dataset, monolevel sprd, cldwtr.eatm.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldwtr (Long Term Mean 6-hourly Cloud Water Spread for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8efe_21f9_5037_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8efe_21f9_5037_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8efe_21f9_5037/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8efe_21f9_5037.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8efe_21f9_5037&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8efe_21f9_5037"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c40_3155_bdc6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c40_3155_bdc6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c40_3155_bdc6/request", "", "public", "Top Dataset, monolevel sprd, cldwtr.eatm.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldwtr (Long Term Mean 6-hourly Cloud Water Spread for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c40_3155_bdc6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c40_3155_bdc6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c40_3155_bdc6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c40_3155_bdc6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c40_3155_bdc6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0c40_3155_bdc6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18ec_911c_812b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18ec_911c_812b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_18ec_911c_812b/request", "", "public", "Top Dataset, monolevel sprd, cldwtr.eatm.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldwtr (Long Term Mean 6-hourly Cloud Water Spread for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_18ec_911c_812b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_18ec_911c_812b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_18ec_911c_812b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_18ec_911c_812b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_18ec_911c_812b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_18ec_911c_812b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1788_5110_7739", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1788_5110_7739.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1788_5110_7739/request", "", "public", "Top Dataset, monolevel sprd, cldwtr.eatm.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldwtr (Daily Long Term Mean Cloud Water Spread for entire atmosphere, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1788_5110_7739_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1788_5110_7739_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1788_5110_7739/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1788_5110_7739.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1788_5110_7739&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1788_5110_7739"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f2f_79f0_63d8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f2f_79f0_63d8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4f2f_79f0_63d8/request", "", "public", "Top Dataset, monolevel sprd, cldwtr.eatm.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldwtr (Daily Long Term Mean Cloud Water Spread for entire atmosphere, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4f2f_79f0_63d8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4f2f_79f0_63d8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4f2f_79f0_63d8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4f2f_79f0_63d8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4f2f_79f0_63d8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4f2f_79f0_63d8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b80_cabb_6327", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b80_cabb_6327.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3b80_cabb_6327/request", "", "public", "Top Dataset, monolevel sprd, cldwtr.eatm.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldwtr (Long Term Mean Monthly Cloud Water Spread for entire atmosphere, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3b80_cabb_6327_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3b80_cabb_6327_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3b80_cabb_6327/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3b80_cabb_6327.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3b80_cabb_6327&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3b80_cabb_6327"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b075_d775_1067", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b075_d775_1067.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b075_d775_1067/request", "", "public", "Top Dataset, monolevel sprd, cldwtr.eatm.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldwtr (Monthly Long Term Cloud Water Spread for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b075_d775_1067_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b075_d775_1067_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b075_d775_1067/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b075_d775_1067.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b075_d775_1067&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b075_d775_1067"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a1a_d4eb_0fb1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a1a_d4eb_0fb1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a1a_d4eb_0fb1/request", "", "public", "Top Dataset, monolevel sprd, cldwtr.eatm.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldwtr (Monthly Long Term Cloud Water Spread for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a1a_d4eb_0fb1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a1a_d4eb_0fb1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a1a_d4eb_0fb1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a1a_d4eb_0fb1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a1a_d4eb_0fb1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7a1a_d4eb_0fb1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a737_8dfb_a909", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a737_8dfb_a909.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a737_8dfb_a909/request", "", "public", "Top Dataset, monolevel sprd, cldwtr.eatm.mon.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldwtr (Long Term Mean Monthly Cloud Water Spread for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a737_8dfb_a909_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a737_8dfb_a909_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a737_8dfb_a909/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a737_8dfb_a909.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a737_8dfb_a909&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a737_8dfb_a909"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0813_9317_c312", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0813_9317_c312.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0813_9317_c312/request", "", "public", "Top Dataset, monolevel sprd, cldwtr.eatm.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldwtr (Monthly Cloud Water Spread for entire atmosphere, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0813_9317_c312_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0813_9317_c312_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0813_9317_c312/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0813_9317_c312.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0813_9317_c312&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0813_9317_c312"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9b8_661f_163b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9b8_661f_163b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c9b8_661f_163b/request", "", "public", "Top Dataset, monolevel sprd, cldwtr.eatm.mon.mean, 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldwtr (Monthly Cloud Water Spread for entire atmosphere, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c9b8_661f_163b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c9b8_661f_163b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c9b8_661f_163b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c9b8_661f_163b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c9b8_661f_163b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c9b8_661f_163b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20c0_1d71_c517", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20c0_1d71_c517.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_20c0_1d71_c517/request", "", "public", "Top Dataset, monolevel sprd, hgt.tropo.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Long Term Mean 6-hourly Geopotential Heights Spread at Tropopause, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_20c0_1d71_c517_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_20c0_1d71_c517_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_20c0_1d71_c517/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_20c0_1d71_c517.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_20c0_1d71_c517&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_20c0_1d71_c517"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_717b_c2ef_ee5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_717b_c2ef_ee5b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_717b_c2ef_ee5b/request", "", "public", "Top Dataset, monolevel sprd, hgt.tropo.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Long Term Mean 6-hourly Geopotential Heights Spread at Tropopause, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_717b_c2ef_ee5b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_717b_c2ef_ee5b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_717b_c2ef_ee5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_717b_c2ef_ee5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_717b_c2ef_ee5b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_717b_c2ef_ee5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2ce_0f43_e423", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2ce_0f43_e423.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f2ce_0f43_e423/request", "", "public", "Top Dataset, monolevel sprd, hgt.tropo.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Long Term Mean 6-hourly Geopotential Heights Spread at Tropopause, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f2ce_0f43_e423_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f2ce_0f43_e423_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f2ce_0f43_e423/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f2ce_0f43_e423.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f2ce_0f43_e423&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f2ce_0f43_e423"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_839f_b4b0_7bf1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_839f_b4b0_7bf1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_839f_b4b0_7bf1/request", "", "public", "Top Dataset, monolevel sprd, hgt.tropo.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Daily Long Term Mean Geopotential Heights Spread at Tropopause, m)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_839f_b4b0_7bf1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_839f_b4b0_7bf1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_839f_b4b0_7bf1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_839f_b4b0_7bf1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_839f_b4b0_7bf1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_839f_b4b0_7bf1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec15_5113_0d14", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec15_5113_0d14.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ec15_5113_0d14/request", "", "public", "Top Dataset, monolevel sprd, hgt.tropo.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Daily Long Term Mean Geopotential Heights Spread at Tropopause, m)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ec15_5113_0d14_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ec15_5113_0d14_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ec15_5113_0d14/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ec15_5113_0d14.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ec15_5113_0d14&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ec15_5113_0d14"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d19_bef2_cd17", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d19_bef2_cd17.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d19_bef2_cd17/request", "", "public", "Top Dataset, monolevel sprd, hgt.tropo.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Long Term Mean Monthly Geopotential Heights Spread at Tropopause, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d19_bef2_cd17_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d19_bef2_cd17_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d19_bef2_cd17/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d19_bef2_cd17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d19_bef2_cd17&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8d19_bef2_cd17"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eac9_5b27_7dc4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eac9_5b27_7dc4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eac9_5b27_7dc4/request", "", "public", "Top Dataset, monolevel sprd, hgt.tropo.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Monthly Long Term Geopotential Heights Spread at Tropopause, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eac9_5b27_7dc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eac9_5b27_7dc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eac9_5b27_7dc4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eac9_5b27_7dc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eac9_5b27_7dc4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_eac9_5b27_7dc4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6296_3d84_8b08", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6296_3d84_8b08.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6296_3d84_8b08/request", "", "public", "Top Dataset, monolevel sprd, hgt.tropo.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Monthly Long Term Geopotential Heights Spread at Tropopause, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6296_3d84_8b08_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6296_3d84_8b08_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6296_3d84_8b08/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6296_3d84_8b08.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6296_3d84_8b08&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6296_3d84_8b08"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14db_01e9_9140", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14db_01e9_9140.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_14db_01e9_9140/request", "", "public", "Top Dataset, monolevel sprd, hgt.tropo.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Monthly Geopotential Heights Spread at Tropopause, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_14db_01e9_9140_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_14db_01e9_9140_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_14db_01e9_9140/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_14db_01e9_9140.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_14db_01e9_9140&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_14db_01e9_9140"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45a5_ca85_51e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45a5_ca85_51e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_45a5_ca85_51e0/request", "", "public", "Top Dataset, monolevel sprd, omega.sig995.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Long Term Mean 6-hourly Omega Spread at sigma level 0.995, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_45a5_ca85_51e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_45a5_ca85_51e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_45a5_ca85_51e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_45a5_ca85_51e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_45a5_ca85_51e0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_45a5_ca85_51e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97b1_5b38_db5c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97b1_5b38_db5c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_97b1_5b38_db5c/request", "", "public", "Top Dataset, monolevel sprd, omega.sig995.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Long Term Mean 6-hourly Omega Spread at sigma level 0.995, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_97b1_5b38_db5c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_97b1_5b38_db5c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_97b1_5b38_db5c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_97b1_5b38_db5c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_97b1_5b38_db5c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_97b1_5b38_db5c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99d4_c0ef_a5d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99d4_c0ef_a5d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99d4_c0ef_a5d3/request", "", "public", "Top Dataset, monolevel sprd, omega.sig995.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Long Term Mean 6-hourly Omega Spread at sigma level 0.995, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99d4_c0ef_a5d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99d4_c0ef_a5d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99d4_c0ef_a5d3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99d4_c0ef_a5d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99d4_c0ef_a5d3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_99d4_c0ef_a5d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bec4_d17d_eb36", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bec4_d17d_eb36.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bec4_d17d_eb36/request", "", "public", "Top Dataset, monolevel sprd, omega.sig995.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Daily Long Term Mean Omega Spread at sigma level 0.995, Pascal/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bec4_d17d_eb36_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bec4_d17d_eb36_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bec4_d17d_eb36/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bec4_d17d_eb36.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bec4_d17d_eb36&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bec4_d17d_eb36"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f91a_5949_fbf9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f91a_5949_fbf9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f91a_5949_fbf9/request", "", "public", "Top Dataset, monolevel sprd, omega.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Daily Long Term Mean Omega Spread at sigma level 0.995, Pascal/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f91a_5949_fbf9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f91a_5949_fbf9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f91a_5949_fbf9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f91a_5949_fbf9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f91a_5949_fbf9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f91a_5949_fbf9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e892_b59f_761c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e892_b59f_761c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e892_b59f_761c/request", "", "public", "Top Dataset, monolevel sprd, omega.sig995.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Long Term Mean Monthly Omega Spread at sigma level 0.995, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e892_b59f_761c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e892_b59f_761c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e892_b59f_761c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e892_b59f_761c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e892_b59f_761c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e892_b59f_761c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_596f_4399_d505", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_596f_4399_d505.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_596f_4399_d505/request", "", "public", "Top Dataset, monolevel sprd, omega.sig995.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Monthly Long Term Omega Spread at sigma level 0.995, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_596f_4399_d505_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_596f_4399_d505_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_596f_4399_d505/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_596f_4399_d505.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_596f_4399_d505&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_596f_4399_d505"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_66a0_322c_71c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_66a0_322c_71c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_66a0_322c_71c3/request", "", "public", "Top Dataset, monolevel sprd, omega.sig995.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Monthly Long Term Omega Spread at sigma level 0.995, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_66a0_322c_71c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_66a0_322c_71c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_66a0_322c_71c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_66a0_322c_71c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_66a0_322c_71c3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_66a0_322c_71c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0850_9432_0275", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0850_9432_0275.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0850_9432_0275/request", "", "public", "Top Dataset, monolevel sprd, omega.sig995.mon.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Long Term Mean Monthly Omega Spread at sigma level 0.995, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0850_9432_0275_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0850_9432_0275_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0850_9432_0275/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0850_9432_0275.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0850_9432_0275&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0850_9432_0275"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da8a_8b94_262d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da8a_8b94_262d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da8a_8b94_262d/request", "", "public", "Top Dataset, monolevel sprd, omega.sig995.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Monthly Omega Spread at sigma level 0.995, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da8a_8b94_262d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da8a_8b94_262d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da8a_8b94_262d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da8a_8b94_262d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da8a_8b94_262d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_da8a_8b94_262d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c52_a00a_bbd1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c52_a00a_bbd1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7c52_a00a_bbd1/request", "", "public", "Top Dataset, monolevel sprd, omega.sig995.mon.mean, 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Monthly Omega Spread at sigma level 0.995, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7c52_a00a_bbd1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7c52_a00a_bbd1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7c52_a00a_bbd1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7c52_a00a_bbd1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7c52_a00a_bbd1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7c52_a00a_bbd1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_005e_be08_48b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_005e_be08_48b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_005e_be08_48b5/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean 6-hourly Potential Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_005e_be08_48b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_005e_be08_48b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_005e_be08_48b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_005e_be08_48b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_005e_be08_48b5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_005e_be08_48b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa88_f253_e4db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa88_f253_e4db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa88_f253_e4db/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean 6-hourly Potential Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa88_f253_e4db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa88_f253_e4db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa88_f253_e4db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa88_f253_e4db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa88_f253_e4db&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_aa88_f253_e4db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba93_8c68_0a99", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba93_8c68_0a99.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ba93_8c68_0a99/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean 6-hourly Potential Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ba93_8c68_0a99_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ba93_8c68_0a99_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ba93_8c68_0a99/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ba93_8c68_0a99.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ba93_8c68_0a99&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ba93_8c68_0a99"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_484c_f434_9d60", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_484c_f434_9d60.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_484c_f434_9d60/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Daily Long Term Mean Potential Temperature Spread at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_484c_f434_9d60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_484c_f434_9d60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_484c_f434_9d60/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_484c_f434_9d60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_484c_f434_9d60&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_484c_f434_9d60"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19d0_9497_7160", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19d0_9497_7160.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_19d0_9497_7160/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Daily Long Term Mean Potential Temperature Spread at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_19d0_9497_7160_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_19d0_9497_7160_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_19d0_9497_7160/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_19d0_9497_7160.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_19d0_9497_7160&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_19d0_9497_7160"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b48_46c5_a175", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b48_46c5_a175.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b48_46c5_a175/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean Monthly Potential Temperature Spread at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b48_46c5_a175_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b48_46c5_a175_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b48_46c5_a175/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b48_46c5_a175.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b48_46c5_a175&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6b48_46c5_a175"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_385b_60f9_c9cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_385b_60f9_c9cc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_385b_60f9_c9cc/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Long Term Potential Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_385b_60f9_c9cc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_385b_60f9_c9cc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_385b_60f9_c9cc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_385b_60f9_c9cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_385b_60f9_c9cc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_385b_60f9_c9cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cee_ba6f_4871", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cee_ba6f_4871.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8cee_ba6f_4871/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Long Term Potential Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8cee_ba6f_4871_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8cee_ba6f_4871_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8cee_ba6f_4871/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8cee_ba6f_4871.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8cee_ba6f_4871&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8cee_ba6f_4871"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ae8_3cea_b081", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ae8_3cea_b081.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ae8_3cea_b081/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.mon.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean Monthly Potential Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ae8_3cea_b081_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ae8_3cea_b081_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ae8_3cea_b081/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ae8_3cea_b081.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ae8_3cea_b081&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5ae8_3cea_b081"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4da7_e743_ddbd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4da7_e743_ddbd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4da7_e743_ddbd/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.mon.mean, 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Potential Temperature Spread at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4da7_e743_ddbd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4da7_e743_ddbd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4da7_e743_ddbd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4da7_e743_ddbd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4da7_e743_ddbd&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4da7_e743_ddbd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4ab_fba1_63cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4ab_fba1_63cc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f4ab_fba1_63cc/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.mon.mean, 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Potential Temperature Spread at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f4ab_fba1_63cc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f4ab_fba1_63cc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f4ab_fba1_63cc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f4ab_fba1_63cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f4ab_fba1_63cc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f4ab_fba1_63cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3282_d2a6_fad7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3282_d2a6_fad7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3282_d2a6_fad7/request", "", "public", "Top Dataset, monolevel sprd, pr wtr.eatm.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Long Term Mean 6-hourly Precipitable Water Spread for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3282_d2a6_fad7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3282_d2a6_fad7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3282_d2a6_fad7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3282_d2a6_fad7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3282_d2a6_fad7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3282_d2a6_fad7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b32c_6b10_7ea5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b32c_6b10_7ea5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b32c_6b10_7ea5/request", "", "public", "Top Dataset, monolevel sprd, pr wtr.eatm.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Long Term Mean 6-hourly Precipitable Water Spread for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b32c_6b10_7ea5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b32c_6b10_7ea5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b32c_6b10_7ea5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b32c_6b10_7ea5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b32c_6b10_7ea5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b32c_6b10_7ea5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf52_e232_4c45", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf52_e232_4c45.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf52_e232_4c45/request", "", "public", "Top Dataset, monolevel sprd, pr wtr.eatm.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Long Term Mean 6-hourly Precipitable Water Spread for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf52_e232_4c45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf52_e232_4c45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf52_e232_4c45/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf52_e232_4c45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf52_e232_4c45&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_cf52_e232_4c45"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4e4_748b_4e77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4e4_748b_4e77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e4e4_748b_4e77/request", "", "public", "Top Dataset, monolevel sprd, pr wtr.eatm.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Daily Long Term Mean Precipitable Water Spread for entire atmosphere, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e4e4_748b_4e77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e4e4_748b_4e77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e4e4_748b_4e77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e4e4_748b_4e77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e4e4_748b_4e77&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e4e4_748b_4e77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9042_2f85_d6c2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9042_2f85_d6c2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9042_2f85_d6c2/request", "", "public", "Top Dataset, monolevel sprd, pr wtr.eatm.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Daily Long Term Mean Precipitable Water Spread for entire atmosphere, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9042_2f85_d6c2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9042_2f85_d6c2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9042_2f85_d6c2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9042_2f85_d6c2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9042_2f85_d6c2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9042_2f85_d6c2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1bcf_b007_0f5c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1bcf_b007_0f5c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1bcf_b007_0f5c/request", "", "public", "Top Dataset, monolevel sprd, pr wtr.eatm.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Long Term Mean Monthly Precipitable Water Spread for entire atmosphere, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1bcf_b007_0f5c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1bcf_b007_0f5c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1bcf_b007_0f5c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1bcf_b007_0f5c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1bcf_b007_0f5c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1bcf_b007_0f5c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1eee_db34_349c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1eee_db34_349c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1eee_db34_349c/request", "", "public", "Top Dataset, monolevel sprd, pr wtr.eatm.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Long Term Precipitable Water Spread for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1eee_db34_349c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1eee_db34_349c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1eee_db34_349c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1eee_db34_349c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1eee_db34_349c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1eee_db34_349c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cba_ca7e_fd97", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cba_ca7e_fd97.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9cba_ca7e_fd97/request", "", "public", "Top Dataset, monolevel sprd, pr wtr.eatm.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Long Term Precipitable Water Spread for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9cba_ca7e_fd97_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9cba_ca7e_fd97_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9cba_ca7e_fd97/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9cba_ca7e_fd97.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9cba_ca7e_fd97&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9cba_ca7e_fd97"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5bc_c12b_a50a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5bc_c12b_a50a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f5bc_c12b_a50a/request", "", "public", "Top Dataset, monolevel sprd, pr wtr.eatm.mon.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Long Term Mean Monthly Precipitable Water Spread for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f5bc_c12b_a50a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f5bc_c12b_a50a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f5bc_c12b_a50a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f5bc_c12b_a50a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f5bc_c12b_a50a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f5bc_c12b_a50a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa5f_7181_8231", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa5f_7181_8231.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa5f_7181_8231/request", "", "public", "Top Dataset, monolevel sprd, pr wtr.eatm.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Precipitable Water Spread for entire atmosphere, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa5f_7181_8231_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa5f_7181_8231_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa5f_7181_8231/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa5f_7181_8231.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa5f_7181_8231&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_aa5f_7181_8231"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a342_fb29_8b95", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a342_fb29_8b95.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a342_fb29_8b95/request", "", "public", "Top Dataset, monolevel sprd, pr wtr.eatm.mon.mean, 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Precipitable Water Spread for entire atmosphere, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a342_fb29_8b95_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a342_fb29_8b95_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a342_fb29_8b95/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a342_fb29_8b95.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a342_fb29_8b95&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a342_fb29_8b95"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_852e_eb93_ea75", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_852e_eb93_ea75.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_852e_eb93_ea75/request", "", "public", "Top Dataset, monolevel sprd, pres.sfc.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean 6-hourly Pressure Spread at Surface, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_852e_eb93_ea75_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_852e_eb93_ea75_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_852e_eb93_ea75/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_852e_eb93_ea75.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_852e_eb93_ea75&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_852e_eb93_ea75"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6389_5314_8e42", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6389_5314_8e42.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6389_5314_8e42/request", "", "public", "Top Dataset, monolevel sprd, pres.sfc.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean 6-hourly Pressure Spread at Surface, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6389_5314_8e42_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6389_5314_8e42_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6389_5314_8e42/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6389_5314_8e42.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6389_5314_8e42&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6389_5314_8e42"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_061b_4c53_9c3c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_061b_4c53_9c3c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_061b_4c53_9c3c/request", "", "public", "Top Dataset, monolevel sprd, pres.sfc.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Daily Long Term Mean Pressure Spread at Surface, Pa)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_061b_4c53_9c3c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_061b_4c53_9c3c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_061b_4c53_9c3c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_061b_4c53_9c3c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_061b_4c53_9c3c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_061b_4c53_9c3c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdf9_6079_7ddf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdf9_6079_7ddf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bdf9_6079_7ddf/request", "", "public", "Top Dataset, monolevel sprd, pres.sfc.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Daily Long Term Mean Pressure Spread at Surface, Pa)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bdf9_6079_7ddf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bdf9_6079_7ddf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bdf9_6079_7ddf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bdf9_6079_7ddf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bdf9_6079_7ddf&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bdf9_6079_7ddf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f55d_2503_0303", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f55d_2503_0303.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f55d_2503_0303/request", "", "public", "Top Dataset, monolevel sprd, pres.sfc.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean Monthly Pressure Spread at Surface, Pa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f55d_2503_0303_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f55d_2503_0303_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f55d_2503_0303/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f55d_2503_0303.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f55d_2503_0303&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f55d_2503_0303"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f29_c134_28d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f29_c134_28d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f29_c134_28d4/request", "", "public", "Top Dataset, monolevel sprd, pres.sfc.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Pressure Spread at Surface, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f29_c134_28d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f29_c134_28d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f29_c134_28d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f29_c134_28d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f29_c134_28d4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9f29_c134_28d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f191_20e9_1129", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f191_20e9_1129.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f191_20e9_1129/request", "", "public", "Top Dataset, monolevel sprd, pres.sfc.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Pressure Spread at Surface, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f191_20e9_1129_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f191_20e9_1129_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f191_20e9_1129/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f191_20e9_1129.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f191_20e9_1129&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f191_20e9_1129"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_77c1_5efa_5a62", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_77c1_5efa_5a62.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_77c1_5efa_5a62/request", "", "public", "Top Dataset, monolevel sprd, pres.sfc.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Pressure Spread at Surface, Pa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_77c1_5efa_5a62_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_77c1_5efa_5a62_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_77c1_5efa_5a62/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_77c1_5efa_5a62.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_77c1_5efa_5a62&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_77c1_5efa_5a62"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4cd_b42d_d278", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4cd_b42d_d278.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f4cd_b42d_d278/request", "", "public", "Top Dataset, monolevel sprd, pres.tropo.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean 6-hourly Pressure Spread at Tropopause, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f4cd_b42d_d278_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f4cd_b42d_d278_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f4cd_b42d_d278/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f4cd_b42d_d278.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f4cd_b42d_d278&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f4cd_b42d_d278"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_031f_9ed7_fa0e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_031f_9ed7_fa0e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_031f_9ed7_fa0e/request", "", "public", "Top Dataset, monolevel sprd, pres.tropo.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean 6-hourly Pressure Spread at Tropopause, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_031f_9ed7_fa0e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_031f_9ed7_fa0e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_031f_9ed7_fa0e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_031f_9ed7_fa0e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_031f_9ed7_fa0e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_031f_9ed7_fa0e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cbdb_b2ee_8d8a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cbdb_b2ee_8d8a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cbdb_b2ee_8d8a/request", "", "public", "Top Dataset, monolevel sprd, pres.tropo.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean 6-hourly Pressure Spread at Tropopause, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cbdb_b2ee_8d8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cbdb_b2ee_8d8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cbdb_b2ee_8d8a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cbdb_b2ee_8d8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cbdb_b2ee_8d8a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_cbdb_b2ee_8d8a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88c5_cf98_3bea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88c5_cf98_3bea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_88c5_cf98_3bea/request", "", "public", "Top Dataset, monolevel sprd, pres.tropo.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Daily Long Term Mean Pressure Spread at Tropopause, Pa)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_88c5_cf98_3bea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_88c5_cf98_3bea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_88c5_cf98_3bea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_88c5_cf98_3bea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_88c5_cf98_3bea&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_88c5_cf98_3bea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b1a_cae0_c339", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b1a_cae0_c339.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4b1a_cae0_c339/request", "", "public", "Top Dataset, monolevel sprd, pres.tropo.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Daily Long Term Mean Pressure Spread at Tropopause, Pa)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4b1a_cae0_c339_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4b1a_cae0_c339_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4b1a_cae0_c339/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4b1a_cae0_c339.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4b1a_cae0_c339&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4b1a_cae0_c339"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e8c_455f_420f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e8c_455f_420f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e8c_455f_420f/request", "", "public", "Top Dataset, monolevel sprd, pres.tropo.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean Monthly Pressure Spread at Tropopause, Pa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e8c_455f_420f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e8c_455f_420f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e8c_455f_420f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e8c_455f_420f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e8c_455f_420f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8e8c_455f_420f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e085_ab3d_4efd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e085_ab3d_4efd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e085_ab3d_4efd/request", "", "public", "Top Dataset, monolevel sprd, pres.tropo.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Pressure Spread at Tropopause, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e085_ab3d_4efd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e085_ab3d_4efd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e085_ab3d_4efd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e085_ab3d_4efd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e085_ab3d_4efd&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e085_ab3d_4efd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72a4_7c71_c89c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72a4_7c71_c89c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_72a4_7c71_c89c/request", "", "public", "Top Dataset, monolevel sprd, pres.tropo.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Pressure Spread at Tropopause, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_72a4_7c71_c89c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_72a4_7c71_c89c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_72a4_7c71_c89c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_72a4_7c71_c89c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_72a4_7c71_c89c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_72a4_7c71_c89c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5482_46f7_316c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5482_46f7_316c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5482_46f7_316c/request", "", "public", "Top Dataset, monolevel sprd, pres.tropo.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Pressure Spread at Tropopause, Pa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5482_46f7_316c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5482_46f7_316c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5482_46f7_316c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5482_46f7_316c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5482_46f7_316c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5482_46f7_316c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a073_3409_e8de", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a073_3409_e8de.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a073_3409_e8de/request", "", "public", "Top Dataset, monolevel sprd, pres.tropo.mon.mean, 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Pressure Spread at Tropopause, Pa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a073_3409_e8de_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a073_3409_e8de_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a073_3409_e8de/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a073_3409_e8de.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a073_3409_e8de&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a073_3409_e8de"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3a4_e96f_f975", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3a4_e96f_f975.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c3a4_e96f_f975/request", "", "public", "Top Dataset, monolevel sprd, prmsl.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Long Term Mean 6-hourly Pressure Spread at Mean Sea Level, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c3a4_e96f_f975_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c3a4_e96f_f975_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c3a4_e96f_f975/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c3a4_e96f_f975.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c3a4_e96f_f975&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c3a4_e96f_f975"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7fd_9d73_1aec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7fd_9d73_1aec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c7fd_9d73_1aec/request", "", "public", "Top Dataset, monolevel sprd, prmsl.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Long Term Mean 6-hourly Pressure Spread at Mean Sea Level, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c7fd_9d73_1aec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c7fd_9d73_1aec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c7fd_9d73_1aec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c7fd_9d73_1aec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c7fd_9d73_1aec&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c7fd_9d73_1aec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6cc4_c7ad_9e07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6cc4_c7ad_9e07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6cc4_c7ad_9e07/request", "", "public", "Top Dataset, monolevel sprd, prmsl.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Daily Long Term Pressure Spread at Mean Sea Level, Pa)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6cc4_c7ad_9e07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6cc4_c7ad_9e07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6cc4_c7ad_9e07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6cc4_c7ad_9e07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6cc4_c7ad_9e07&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6cc4_c7ad_9e07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89c7_54ba_b581", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89c7_54ba_b581.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_89c7_54ba_b581/request", "", "public", "Top Dataset, monolevel sprd, prmsl.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Daily Long Term Pressure Spread at Mean Sea Level, Pa)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_89c7_54ba_b581_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_89c7_54ba_b581_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_89c7_54ba_b581/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_89c7_54ba_b581.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_89c7_54ba_b581&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_89c7_54ba_b581"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5c8_0e36_7606", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5c8_0e36_7606.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5c8_0e36_7606/request", "", "public", "Top Dataset, monolevel sprd, prmsl.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Long Term Mean Monthly Pressure Spread at Mean Sea Level, Pa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5c8_0e36_7606_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5c8_0e36_7606_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5c8_0e36_7606/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5c8_0e36_7606.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5c8_0e36_7606&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b5c8_0e36_7606"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f573_5564_dba1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f573_5564_dba1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f573_5564_dba1/request", "", "public", "Top Dataset, monolevel sprd, prmsl.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Monthly Long Term Pressure Spread at Mean Sea Level, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f573_5564_dba1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f573_5564_dba1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f573_5564_dba1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f573_5564_dba1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f573_5564_dba1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f573_5564_dba1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afca_5ef0_c232", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afca_5ef0_c232.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_afca_5ef0_c232/request", "", "public", "Top Dataset, monolevel sprd, prmsl.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Monthly Pressure Spread at Mean Sea Level, Pa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_afca_5ef0_c232_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_afca_5ef0_c232_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_afca_5ef0_c232/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_afca_5ef0_c232.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_afca_5ef0_c232&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_afca_5ef0_c232"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5cb_f29b_1111", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5cb_f29b_1111.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5cb_f29b_1111/request", "", "public", "Top Dataset, monolevel sprd, rhum.sig995.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Long Term Mean 6-hourly Relative Humidity Spread at sigma level 0.995, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5cb_f29b_1111_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5cb_f29b_1111_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5cb_f29b_1111/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5cb_f29b_1111.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5cb_f29b_1111&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b5cb_f29b_1111"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3383_785f_d629", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3383_785f_d629.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3383_785f_d629/request", "", "public", "Top Dataset, monolevel sprd, rhum.sig995.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Long Term Mean 6-hourly Relative Humidity Spread at sigma level 0.995, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3383_785f_d629_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3383_785f_d629_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3383_785f_d629/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3383_785f_d629.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3383_785f_d629&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3383_785f_d629"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a85_b896_e31a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a85_b896_e31a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a85_b896_e31a/request", "", "public", "Top Dataset, monolevel sprd, rhum.sig995.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Long Term Mean 6-hourly Relative Humidity Spread at sigma level 0.995, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a85_b896_e31a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a85_b896_e31a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a85_b896_e31a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a85_b896_e31a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a85_b896_e31a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6a85_b896_e31a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7548_5300_8d2e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7548_5300_8d2e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7548_5300_8d2e/request", "", "public", "Top Dataset, monolevel sprd, rhum.sig995.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Daily Long Term Mean Relative Humidity Spread at sigma level 0.995, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7548_5300_8d2e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7548_5300_8d2e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7548_5300_8d2e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7548_5300_8d2e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7548_5300_8d2e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7548_5300_8d2e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1092_720f_ed7e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1092_720f_ed7e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1092_720f_ed7e/request", "", "public", "Top Dataset, monolevel sprd, rhum.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Daily Long Term Mean Relative Humidity Spread at sigma level 0.995, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1092_720f_ed7e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1092_720f_ed7e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1092_720f_ed7e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1092_720f_ed7e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1092_720f_ed7e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1092_720f_ed7e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_154b_72d9_68b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_154b_72d9_68b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_154b_72d9_68b9/request", "", "public", "Top Dataset, monolevel sprd, rhum.sig995.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Long Term Mean Monthly Relative Humidity Spread at sigma level 0.995, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_154b_72d9_68b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_154b_72d9_68b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_154b_72d9_68b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_154b_72d9_68b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_154b_72d9_68b9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_154b_72d9_68b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6932_58f4_77dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6932_58f4_77dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6932_58f4_77dd/request", "", "public", "Top Dataset, monolevel sprd, rhum.sig995.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Monthly Long Term Relative Humidity Spread at sigma level 0.995, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6932_58f4_77dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6932_58f4_77dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6932_58f4_77dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6932_58f4_77dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6932_58f4_77dd&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6932_58f4_77dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2da5_0c63_bfb9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2da5_0c63_bfb9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2da5_0c63_bfb9/request", "", "public", "Top Dataset, monolevel sprd, rhum.sig995.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Monthly Long Term Relative Humidity Spread at sigma level 0.995, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2da5_0c63_bfb9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2da5_0c63_bfb9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2da5_0c63_bfb9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2da5_0c63_bfb9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2da5_0c63_bfb9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2da5_0c63_bfb9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_430f_14a0_84d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_430f_14a0_84d2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_430f_14a0_84d2/request", "", "public", "Top Dataset, monolevel sprd, rhum.sig995.mon.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Long Term Mean Monthly Relative Humidity Spread at sigma level 0.995, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_430f_14a0_84d2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_430f_14a0_84d2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_430f_14a0_84d2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_430f_14a0_84d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_430f_14a0_84d2&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_430f_14a0_84d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1504_85d6_fc36", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1504_85d6_fc36.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1504_85d6_fc36/request", "", "public", "Top Dataset, monolevel sprd, rhum.sig995.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Monthly Relative Humidity Spread at sigma level 0.995, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1504_85d6_fc36_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1504_85d6_fc36_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1504_85d6_fc36/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1504_85d6_fc36.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1504_85d6_fc36&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1504_85d6_fc36"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9adf_4979_035c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9adf_4979_035c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9adf_4979_035c/request", "", "public", "Top Dataset, monolevel sprd, rhum.sig995.mon.mean, 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Monthly Relative Humidity Spread at sigma level 0.995, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9adf_4979_035c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9adf_4979_035c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9adf_4979_035c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9adf_4979_035c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9adf_4979_035c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9adf_4979_035c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee77_5db1_13c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee77_5db1_13c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ee77_5db1_13c6/request", "", "public", "Top Dataset, monolevel sprd, tco3.eatm.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Long Term Mean 6-hourly Total Columnar Ozone Spread, Dobsons)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ee77_5db1_13c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ee77_5db1_13c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ee77_5db1_13c6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ee77_5db1_13c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ee77_5db1_13c6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ee77_5db1_13c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3bd7_e343_c27d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3bd7_e343_c27d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3bd7_e343_c27d/request", "", "public", "Top Dataset, monolevel sprd, tco3.eatm.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Long Term Mean 6-hourly Total Columnar Ozone Spread, Dobsons)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3bd7_e343_c27d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3bd7_e343_c27d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3bd7_e343_c27d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3bd7_e343_c27d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3bd7_e343_c27d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3bd7_e343_c27d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6847_9b6b_d1bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6847_9b6b_d1bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6847_9b6b_d1bd/request", "", "public", "Top Dataset, monolevel sprd, tco3.eatm.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Long Term Mean 6-hourly Total Columnar Ozone Spread, Dobsons)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6847_9b6b_d1bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6847_9b6b_d1bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6847_9b6b_d1bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6847_9b6b_d1bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6847_9b6b_d1bd&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6847_9b6b_d1bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_610e_c0d5_d2e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_610e_c0d5_d2e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_610e_c0d5_d2e0/request", "", "public", "Top Dataset, monolevel sprd, tco3.eatm.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Daily Long Term Mean Total Columnar Ozone Spread, Dobsons)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_610e_c0d5_d2e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_610e_c0d5_d2e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_610e_c0d5_d2e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_610e_c0d5_d2e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_610e_c0d5_d2e0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_610e_c0d5_d2e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be92_a06f_bc8e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be92_a06f_bc8e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_be92_a06f_bc8e/request", "", "public", "Top Dataset, monolevel sprd, tco3.eatm.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Daily Long Term Mean Total Columnar Ozone Spread, Dobsons)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_be92_a06f_bc8e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_be92_a06f_bc8e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_be92_a06f_bc8e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_be92_a06f_bc8e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_be92_a06f_bc8e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_be92_a06f_bc8e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3bf1_275a_ca64", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3bf1_275a_ca64.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3bf1_275a_ca64/request", "", "public", "Top Dataset, monolevel sprd, tco3.eatm.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Long Term Mean Monthly Total Columnar Ozone Spread, Dobsons)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3bf1_275a_ca64_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3bf1_275a_ca64_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3bf1_275a_ca64/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3bf1_275a_ca64.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3bf1_275a_ca64&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3bf1_275a_ca64"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3fbb_d2e4_87d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3fbb_d2e4_87d1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3fbb_d2e4_87d1/request", "", "public", "Top Dataset, monolevel sprd, tco3.eatm.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Monthly Long Term Total Columnar Ozone Spread, Dobsons)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3fbb_d2e4_87d1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3fbb_d2e4_87d1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3fbb_d2e4_87d1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3fbb_d2e4_87d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3fbb_d2e4_87d1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3fbb_d2e4_87d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddaa_0ce9_459a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddaa_0ce9_459a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ddaa_0ce9_459a/request", "", "public", "Top Dataset, monolevel sprd, tco3.eatm.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Monthly Long Term Total Columnar Ozone Spread, Dobsons)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ddaa_0ce9_459a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ddaa_0ce9_459a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ddaa_0ce9_459a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ddaa_0ce9_459a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ddaa_0ce9_459a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ddaa_0ce9_459a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e02_96ba_6f2b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e02_96ba_6f2b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e02_96ba_6f2b/request", "", "public", "Top Dataset, monolevel sprd, tco3.eatm.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Monthly Total Columnar Ozone Spread, Dobsons)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e02_96ba_6f2b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e02_96ba_6f2b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e02_96ba_6f2b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e02_96ba_6f2b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e02_96ba_6f2b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0e02_96ba_6f2b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b73_3271_6052", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b73_3271_6052.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8b73_3271_6052/request", "", "public", "Top Dataset, monolevel sprd, uwnd.sig995.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean 6-hourly U-wind Spread at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8b73_3271_6052_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8b73_3271_6052_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8b73_3271_6052/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8b73_3271_6052.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8b73_3271_6052&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8b73_3271_6052"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21f5_57e3_e79c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21f5_57e3_e79c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_21f5_57e3_e79c/request", "", "public", "Top Dataset, monolevel sprd, uwnd.sig995.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean 6-hourly U-wind Spread at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_21f5_57e3_e79c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_21f5_57e3_e79c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_21f5_57e3_e79c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_21f5_57e3_e79c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_21f5_57e3_e79c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_21f5_57e3_e79c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_77eb_b656_85b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_77eb_b656_85b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_77eb_b656_85b8/request", "", "public", "Top Dataset, monolevel sprd, uwnd.sig995.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean 6-hourly U-wind Spread at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_77eb_b656_85b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_77eb_b656_85b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_77eb_b656_85b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_77eb_b656_85b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_77eb_b656_85b8&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_77eb_b656_85b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e964_b243_a126", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e964_b243_a126.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e964_b243_a126/request", "", "public", "Top Dataset, monolevel sprd, uwnd.sig995.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Daily Long Term Mean U-wind Spread at sigma level 0.995, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e964_b243_a126_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e964_b243_a126_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e964_b243_a126/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e964_b243_a126.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e964_b243_a126&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e964_b243_a126"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_658a_3b41_6a20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_658a_3b41_6a20.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_658a_3b41_6a20/request", "", "public", "Top Dataset, monolevel sprd, uwnd.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Daily Long Term Mean U-wind Spread at sigma level 0.995, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_658a_3b41_6a20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_658a_3b41_6a20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_658a_3b41_6a20/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_658a_3b41_6a20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_658a_3b41_6a20&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_658a_3b41_6a20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb63_2607_a0c8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb63_2607_a0c8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb63_2607_a0c8/request", "", "public", "Top Dataset, monolevel sprd, uwnd.sig995.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean Monthly U-wind Spread at sigma level 0.995, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb63_2607_a0c8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb63_2607_a0c8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb63_2607_a0c8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb63_2607_a0c8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb63_2607_a0c8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_cb63_2607_a0c8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_072a_dbdb_a0bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_072a_dbdb_a0bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_072a_dbdb_a0bd/request", "", "public", "Top Dataset, monolevel sprd, uwnd.sig995.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly Long Term U-wind Spread at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_072a_dbdb_a0bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_072a_dbdb_a0bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_072a_dbdb_a0bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_072a_dbdb_a0bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_072a_dbdb_a0bd&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_072a_dbdb_a0bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37b4_c4c2_55bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37b4_c4c2_55bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_37b4_c4c2_55bd/request", "", "public", "Top Dataset, monolevel sprd, uwnd.sig995.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly Long Term U-wind Spread at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_37b4_c4c2_55bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_37b4_c4c2_55bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_37b4_c4c2_55bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_37b4_c4c2_55bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_37b4_c4c2_55bd&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_37b4_c4c2_55bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_812a_7dee_e80e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_812a_7dee_e80e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_812a_7dee_e80e/request", "", "public", "Top Dataset, monolevel sprd, uwnd.sig995.mon.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean Monthly U-wind Spread at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_812a_7dee_e80e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_812a_7dee_e80e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_812a_7dee_e80e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_812a_7dee_e80e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_812a_7dee_e80e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_812a_7dee_e80e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bcb8_f798_c166", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bcb8_f798_c166.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bcb8_f798_c166/request", "", "public", "Top Dataset, monolevel sprd, uwnd.sig995.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly U-wind Spread at sigma level 0.995, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bcb8_f798_c166_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bcb8_f798_c166_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bcb8_f798_c166/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bcb8_f798_c166.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bcb8_f798_c166&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bcb8_f798_c166"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0156_97db_3e60", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0156_97db_3e60.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0156_97db_3e60/request", "", "public", "Top Dataset, monolevel sprd, uwnd.sig995.mon.mean, 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly U-wind Spread at sigma level 0.995, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0156_97db_3e60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0156_97db_3e60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0156_97db_3e60/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0156_97db_3e60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0156_97db_3e60&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0156_97db_3e60"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a25_27b4_25b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a25_27b4_25b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a25_27b4_25b6/request", "", "public", "Top Dataset, monolevel sprd, uwnd.tropo.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean 6-hourly U-wind Spread at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a25_27b4_25b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a25_27b4_25b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a25_27b4_25b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a25_27b4_25b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a25_27b4_25b6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3a25_27b4_25b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e99f_20b6_df41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e99f_20b6_df41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e99f_20b6_df41/request", "", "public", "Top Dataset, monolevel sprd, uwnd.tropo.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean 6-hourly U-wind Spread at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e99f_20b6_df41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e99f_20b6_df41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e99f_20b6_df41/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e99f_20b6_df41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e99f_20b6_df41&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e99f_20b6_df41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ad9_2024_7788", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ad9_2024_7788.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ad9_2024_7788/request", "", "public", "Top Dataset, monolevel sprd, uwnd.tropo.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean 6-hourly U-wind Spread at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ad9_2024_7788_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ad9_2024_7788_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ad9_2024_7788/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ad9_2024_7788.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ad9_2024_7788&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7ad9_2024_7788"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_407e_fe94_90ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_407e_fe94_90ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_407e_fe94_90ea/request", "", "public", "Top Dataset, monolevel sprd, uwnd.tropo.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Daily Long Term Mean U-wind Spread at Tropopause, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_407e_fe94_90ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_407e_fe94_90ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_407e_fe94_90ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_407e_fe94_90ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_407e_fe94_90ea&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_407e_fe94_90ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_faa9_feee_8e29", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_faa9_feee_8e29.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_faa9_feee_8e29/request", "", "public", "Top Dataset, monolevel sprd, uwnd.tropo.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Daily Long Term Mean U-wind Spread at Tropopause, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_faa9_feee_8e29_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_faa9_feee_8e29_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_faa9_feee_8e29/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_faa9_feee_8e29.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_faa9_feee_8e29&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_faa9_feee_8e29"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c72_d46a_2557", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c72_d46a_2557.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c72_d46a_2557/request", "", "public", "Top Dataset, monolevel sprd, uwnd.tropo.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean Monthly U-wind Spread at Tropopause, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c72_d46a_2557_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c72_d46a_2557_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c72_d46a_2557/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c72_d46a_2557.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c72_d46a_2557&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9c72_d46a_2557"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b43d_b2f3_f34b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b43d_b2f3_f34b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b43d_b2f3_f34b/request", "", "public", "Top Dataset, monolevel sprd, uwnd.tropo.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly Long Term U-wind Spread at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b43d_b2f3_f34b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b43d_b2f3_f34b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b43d_b2f3_f34b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b43d_b2f3_f34b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b43d_b2f3_f34b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b43d_b2f3_f34b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e75f_c150_0051", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e75f_c150_0051.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e75f_c150_0051/request", "", "public", "Top Dataset, monolevel sprd, uwnd.tropo.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly Long Term U-wind Spread at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e75f_c150_0051_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e75f_c150_0051_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e75f_c150_0051/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e75f_c150_0051.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e75f_c150_0051&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e75f_c150_0051"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0693_e4f3_65e7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0693_e4f3_65e7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0693_e4f3_65e7/request", "", "public", "Top Dataset, monolevel sprd, uwnd.tropo.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly U-wind Spread at Tropopause, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0693_e4f3_65e7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0693_e4f3_65e7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0693_e4f3_65e7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0693_e4f3_65e7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0693_e4f3_65e7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0693_e4f3_65e7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_251a_61d2_ccc2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_251a_61d2_ccc2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_251a_61d2_ccc2/request", "", "public", "Top Dataset, monolevel sprd, uwnd.tropo.mon.mean, 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly U-wind Spread at Tropopause, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_251a_61d2_ccc2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_251a_61d2_ccc2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_251a_61d2_ccc2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_251a_61d2_ccc2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_251a_61d2_ccc2&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_251a_61d2_ccc2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da7f_2c1f_4be5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da7f_2c1f_4be5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da7f_2c1f_4be5/request", "", "public", "Top Dataset, monolevel sprd, vwnd.sig995.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean 6-hourly V-wind Spread at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da7f_2c1f_4be5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da7f_2c1f_4be5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da7f_2c1f_4be5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da7f_2c1f_4be5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da7f_2c1f_4be5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_da7f_2c1f_4be5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cad_8864_b371", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cad_8864_b371.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2cad_8864_b371/request", "", "public", "Top Dataset, monolevel sprd, vwnd.sig995.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean 6-hourly V-wind Spread at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2cad_8864_b371_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2cad_8864_b371_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2cad_8864_b371/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2cad_8864_b371.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2cad_8864_b371&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2cad_8864_b371"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b03_3d85_1d65", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b03_3d85_1d65.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9b03_3d85_1d65/request", "", "public", "Top Dataset, monolevel sprd, vwnd.sig995.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean 6-hourly V-wind Spread at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9b03_3d85_1d65_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9b03_3d85_1d65_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9b03_3d85_1d65/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9b03_3d85_1d65.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9b03_3d85_1d65&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9b03_3d85_1d65"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a1d_dfba_6398", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a1d_dfba_6398.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a1d_dfba_6398/request", "", "public", "Top Dataset, monolevel sprd, vwnd.sig995.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Daily Long Term Mean V-wind Spread at sigma level 0.995, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a1d_dfba_6398_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a1d_dfba_6398_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a1d_dfba_6398/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a1d_dfba_6398.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a1d_dfba_6398&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3a1d_dfba_6398"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd72_2976_9569", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd72_2976_9569.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bd72_2976_9569/request", "", "public", "Top Dataset, monolevel sprd, vwnd.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Daily Long Term Mean V-wind Spread at sigma level 0.995, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bd72_2976_9569_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bd72_2976_9569_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bd72_2976_9569/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bd72_2976_9569.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bd72_2976_9569&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bd72_2976_9569"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b29_7824_be92", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b29_7824_be92.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b29_7824_be92/request", "", "public", "Top Dataset, monolevel sprd, vwnd.sig995.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean Monthly V-wind Spread at sigma level 0.995, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b29_7824_be92_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b29_7824_be92_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b29_7824_be92/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b29_7824_be92.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b29_7824_be92&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5b29_7824_be92"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8e9_09d6_7f73", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8e9_09d6_7f73.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f8e9_09d6_7f73/request", "", "public", "Top Dataset, monolevel sprd, vwnd.sig995.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly Long Term V-wind Spread at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f8e9_09d6_7f73_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f8e9_09d6_7f73_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f8e9_09d6_7f73/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f8e9_09d6_7f73.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f8e9_09d6_7f73&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f8e9_09d6_7f73"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5d5_0749_7788", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5d5_0749_7788.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5d5_0749_7788/request", "", "public", "Top Dataset, monolevel sprd, vwnd.sig995.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly Long Term V-wind Spread at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5d5_0749_7788_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5d5_0749_7788_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5d5_0749_7788/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5d5_0749_7788.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5d5_0749_7788&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c5d5_0749_7788"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b33c_92ae_657b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b33c_92ae_657b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b33c_92ae_657b/request", "", "public", "Top Dataset, monolevel sprd, vwnd.sig995.mon.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean Monthly V-wind Spread at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b33c_92ae_657b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b33c_92ae_657b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b33c_92ae_657b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b33c_92ae_657b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b33c_92ae_657b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b33c_92ae_657b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_547f_e343_77b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_547f_e343_77b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_547f_e343_77b6/request", "", "public", "Top Dataset, monolevel sprd, vwnd.sig995.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly V-wind Spread at sigma level 0.995, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_547f_e343_77b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_547f_e343_77b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_547f_e343_77b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_547f_e343_77b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_547f_e343_77b6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_547f_e343_77b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6352_517f_eef8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6352_517f_eef8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6352_517f_eef8/request", "", "public", "Top Dataset, monolevel sprd, vwnd.sig995.mon.mean, 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly V-wind Spread at sigma level 0.995, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6352_517f_eef8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6352_517f_eef8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6352_517f_eef8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6352_517f_eef8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6352_517f_eef8&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6352_517f_eef8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94a5_8928_acec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94a5_8928_acec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_94a5_8928_acec/request", "", "public", "Top Dataset, monolevel sprd, vwnd.tropo.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean 6-hourly V-wind Spread at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_94a5_8928_acec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_94a5_8928_acec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_94a5_8928_acec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_94a5_8928_acec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_94a5_8928_acec&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_94a5_8928_acec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_816c_e1e6_b4b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_816c_e1e6_b4b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_816c_e1e6_b4b5/request", "", "public", "Top Dataset, monolevel sprd, vwnd.tropo.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean 6-hourly V-wind Spread at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_816c_e1e6_b4b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_816c_e1e6_b4b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_816c_e1e6_b4b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_816c_e1e6_b4b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_816c_e1e6_b4b5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_816c_e1e6_b4b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9c6_1e69_5e9e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9c6_1e69_5e9e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a9c6_1e69_5e9e/request", "", "public", "Top Dataset, monolevel sprd, vwnd.tropo.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean 6-hourly V-wind Spread at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9c6_1e69_5e9e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9c6_1e69_5e9e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9c6_1e69_5e9e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9c6_1e69_5e9e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9c6_1e69_5e9e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a9c6_1e69_5e9e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8745_8c3e_1296", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8745_8c3e_1296.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8745_8c3e_1296/request", "", "public", "Top Dataset, monolevel sprd, vwnd.tropo.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Daily Long Term Mean V-wind Spread at Tropopause, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8745_8c3e_1296_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8745_8c3e_1296_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8745_8c3e_1296/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8745_8c3e_1296.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8745_8c3e_1296&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8745_8c3e_1296"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_568c_d473_1c18", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_568c_d473_1c18.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_568c_d473_1c18/request", "", "public", "Top Dataset, monolevel sprd, vwnd.tropo.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Daily Long Term Mean V-wind Spread at Tropopause, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_568c_d473_1c18_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_568c_d473_1c18_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_568c_d473_1c18/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_568c_d473_1c18.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_568c_d473_1c18&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_568c_d473_1c18"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc70_abb8_8914", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc70_abb8_8914.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc70_abb8_8914/request", "", "public", "Top Dataset, monolevel sprd, vwnd.tropo.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean Monthly V-wind Spread at Tropopause, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc70_abb8_8914_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc70_abb8_8914_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc70_abb8_8914/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc70_abb8_8914.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc70_abb8_8914&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fc70_abb8_8914"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e158_0b7e_9eb6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e158_0b7e_9eb6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e158_0b7e_9eb6/request", "", "public", "Top Dataset, monolevel sprd, vwnd.tropo.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly Long Term V-wind Spread at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e158_0b7e_9eb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e158_0b7e_9eb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e158_0b7e_9eb6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e158_0b7e_9eb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e158_0b7e_9eb6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e158_0b7e_9eb6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a3f3_753b_2177", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a3f3_753b_2177.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a3f3_753b_2177/request", "", "public", "Top Dataset, monolevel sprd, vwnd.tropo.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly Long Term V-wind Spread at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a3f3_753b_2177_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a3f3_753b_2177_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a3f3_753b_2177/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a3f3_753b_2177.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a3f3_753b_2177&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a3f3_753b_2177"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_489d_335f_eff8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_489d_335f_eff8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_489d_335f_eff8/request", "", "public", "Top Dataset, monolevel sprd, vwnd.tropo.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly V-wind Spread at Tropopause, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_489d_335f_eff8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_489d_335f_eff8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_489d_335f_eff8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_489d_335f_eff8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_489d_335f_eff8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_489d_335f_eff8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0add_b113_c7a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0add_b113_c7a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0add_b113_c7a6/request", "", "public", "Top Dataset, monolevel sprd, vwnd.tropo.mon.mean, 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly V-wind Spread at Tropopause, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0add_b113_c7a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0add_b113_c7a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0add_b113_c7a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0add_b113_c7a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0add_b113_c7a6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0add_b113_c7a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3134_8080_65b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3134_8080_65b3.graph", "", "", "public", "Top Dataset, monolevel, acpcp.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, acpcp.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nacpcp (Monthly Long Term Mean accumulated convective precipitation at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3134_8080_65b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3134_8080_65b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3134_8080_65b3&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_3134_8080_65b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_797d_e0c5_c9d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_797d_e0c5_c9d0.graph", "", "", "public", "Top Dataset, monolevel, acpcp.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, acpcp.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_797d_e0c5_c9d0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_797d_e0c5_c9d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_797d_e0c5_c9d0&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_797d_e0c5_c9d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d317_641c_6781", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d317_641c_6781.graph", "", "", "public", "Top Dataset, monolevel, acpcp.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, acpcp.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nacpcp (Monthly accumulated convective precipitation at Surface, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d317_641c_6781/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d317_641c_6781.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d317_641c_6781&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_d317_641c_6781"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5911_e4c0_5c96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5911_e4c0_5c96.graph", "", "", "public", "Top Dataset, monolevel, acpcp.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, acpcp.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5911_e4c0_5c96/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5911_e4c0_5c96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5911_e4c0_5c96&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_5911_e4c0_5c96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fa5_1777_e5ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fa5_1777_e5ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5fa5_1777_e5ef/request", "", "public", "Top Dataset, monolevel, air.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5fa5_1777_e5ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5fa5_1777_e5ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5fa5_1777_e5ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5fa5_1777_e5ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5fa5_1777_e5ef&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5fa5_1777_e5ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65f7_7e17_5391", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65f7_7e17_5391.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_65f7_7e17_5391/request", "", "public", "Top Dataset, monolevel, air.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_65f7_7e17_5391_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_65f7_7e17_5391_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_65f7_7e17_5391/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_65f7_7e17_5391.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_65f7_7e17_5391&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_65f7_7e17_5391"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e4d_102b_2f44", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e4d_102b_2f44.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e4d_102b_2f44/request", "", "public", "Top Dataset, monolevel, air.2m.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Daily Air Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e4d_102b_2f44_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e4d_102b_2f44_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e4d_102b_2f44/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e4d_102b_2f44.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e4d_102b_2f44&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9e4d_102b_2f44"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_476f_f1b1_006e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_476f_f1b1_006e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_476f_f1b1_006e/request", "", "public", "Top Dataset, monolevel, air.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_476f_f1b1_006e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_476f_f1b1_006e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_476f_f1b1_006e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_476f_f1b1_006e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_476f_f1b1_006e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_476f_f1b1_006e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b02_b32d_8712", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b02_b32d_8712.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b02_b32d_8712/request", "", "public", "Top Dataset, monolevel, air.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b02_b32d_8712_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b02_b32d_8712_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b02_b32d_8712/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b02_b32d_8712.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b02_b32d_8712&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6b02_b32d_8712"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5d8_2155_b839", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5d8_2155_b839.graph", "", "", "public", "Top Dataset, monolevel, air.2m.day.ltm (Daily NARR) [time][y][x], 0001", "Daily NARR (Top Dataset, monolevel, air.2m.day.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nair (Daily Air Temperature at 2 m, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5d8_2155_b839/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5d8_2155_b839.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5d8_2155_b839&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a5d8_2155_b839"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_959f_7540_8f2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_959f_7540_8f2a.graph", "", "", "public", "Top Dataset, monolevel, air.2m.day.ltm (Daily NARR) [y][x]", "Daily NARR (Top Dataset, monolevel, air.2m.day.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_959f_7540_8f2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_959f_7540_8f2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_959f_7540_8f2a&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_959f_7540_8f2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c97_e965_b31f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c97_e965_b31f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4c97_e965_b31f/request", "", "public", "Top Dataset, monolevel, air.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4c97_e965_b31f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4c97_e965_b31f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c97_e965_b31f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c97_e965_b31f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c97_e965_b31f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4c97_e965_b31f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d767_7276_fbba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d767_7276_fbba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d767_7276_fbba/request", "", "public", "Top Dataset, monolevel, air.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d767_7276_fbba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d767_7276_fbba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d767_7276_fbba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d767_7276_fbba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d767_7276_fbba&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d767_7276_fbba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_702a_b5b4_c287", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_702a_b5b4_c287.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_702a_b5b4_c287/request", "", "public", "Top Dataset, monolevel, air.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_702a_b5b4_c287_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_702a_b5b4_c287_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_702a_b5b4_c287/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_702a_b5b4_c287.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_702a_b5b4_c287&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_702a_b5b4_c287"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5bf_64f4_aca4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5bf_64f4_aca4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5bf_64f4_aca4/request", "", "public", "Top Dataset, monolevel, air.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5bf_64f4_aca4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5bf_64f4_aca4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5bf_64f4_aca4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5bf_64f4_aca4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5bf_64f4_aca4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c5bf_64f4_aca4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2538_a283_c9c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2538_a283_c9c1.graph", "", "", "public", "Top Dataset, monolevel, air.2m.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, air.2m.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nair (Monthly Long Term Mean Air Temperature at 2 m, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2538_a283_c9c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2538_a283_c9c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2538_a283_c9c1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_2538_a283_c9c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e949_3c14_d9a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e949_3c14_d9a8.graph", "", "", "public", "Top Dataset, monolevel, air.2m.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, air.2m.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e949_3c14_d9a8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e949_3c14_d9a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e949_3c14_d9a8&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_e949_3c14_d9a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9015_699e_ba4b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9015_699e_ba4b.graph", "", "", "public", "Top Dataset, monolevel, air.2m.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, air.2m.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nair (Monthly Air Temperature at 2 m, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9015_699e_ba4b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9015_699e_ba4b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9015_699e_ba4b&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_9015_699e_ba4b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dcee_2084_ccc8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dcee_2084_ccc8.graph", "", "", "public", "Top Dataset, monolevel, air.2m.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, air.2m.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dcee_2084_ccc8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dcee_2084_ccc8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dcee_2084_ccc8&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_dcee_2084_ccc8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_699e_a306_3fb6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_699e_a306_3fb6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_699e_a306_3fb6/request", "", "public", "Top Dataset, monolevel, air.sfc.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature at Surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_699e_a306_3fb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_699e_a306_3fb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_699e_a306_3fb6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_699e_a306_3fb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_699e_a306_3fb6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_699e_a306_3fb6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_737c_a8ad_aabf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_737c_a8ad_aabf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_737c_a8ad_aabf/request", "", "public", "Top Dataset, monolevel, air.sfc.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature Spread at surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_737c_a8ad_aabf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_737c_a8ad_aabf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_737c_a8ad_aabf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_737c_a8ad_aabf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_737c_a8ad_aabf&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_737c_a8ad_aabf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_254f_0448_f8d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_254f_0448_f8d1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_254f_0448_f8d1/request", "", "public", "Top Dataset, monolevel, air.sfc.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at surface, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_254f_0448_f8d1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_254f_0448_f8d1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_254f_0448_f8d1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_254f_0448_f8d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_254f_0448_f8d1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_254f_0448_f8d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a73_8385_70bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a73_8385_70bc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9a73_8385_70bc/request", "", "public", "Top Dataset, monolevel, air.sfc.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at Surface, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9a73_8385_70bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9a73_8385_70bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9a73_8385_70bc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9a73_8385_70bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9a73_8385_70bc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9a73_8385_70bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1829_9429_0d07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1829_9429_0d07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1829_9429_0d07/request", "", "public", "Top Dataset, monolevel, air.sfc.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1829_9429_0d07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1829_9429_0d07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1829_9429_0d07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1829_9429_0d07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1829_9429_0d07&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1829_9429_0d07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a81_4d60_25ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a81_4d60_25ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a81_4d60_25ce/request", "", "public", "Top Dataset, monolevel, air.sfc.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at Surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a81_4d60_25ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a81_4d60_25ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a81_4d60_25ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a81_4d60_25ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a81_4d60_25ce&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3a81_4d60_25ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dd0_4bcc_d4ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dd0_4bcc_d4ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5dd0_4bcc_d4ae/request", "", "public", "Top Dataset, monolevel, air.sfc.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5dd0_4bcc_d4ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5dd0_4bcc_d4ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5dd0_4bcc_d4ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5dd0_4bcc_d4ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5dd0_4bcc_d4ae&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5dd0_4bcc_d4ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c942_595e_dcfb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c942_595e_dcfb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c942_595e_dcfb/request", "", "public", "Top Dataset, monolevel, air.sfc.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at Surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c942_595e_dcfb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c942_595e_dcfb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c942_595e_dcfb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c942_595e_dcfb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c942_595e_dcfb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c942_595e_dcfb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63f5_1e56_8f1d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63f5_1e56_8f1d.graph", "", "", "public", "Top Dataset, monolevel, air.sfc.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, air.sfc.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nair (Long Term Monthly Mean air temperature at Surface, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_63f5_1e56_8f1d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_63f5_1e56_8f1d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_63f5_1e56_8f1d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_63f5_1e56_8f1d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_141d_1c6f_b691", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_141d_1c6f_b691.graph", "", "", "public", "Top Dataset, monolevel, air.sfc.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, air.sfc.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_141d_1c6f_b691/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_141d_1c6f_b691.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_141d_1c6f_b691&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_141d_1c6f_b691"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d097_1181_d9bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d097_1181_d9bf.graph", "", "", "public", "Top Dataset, monolevel, air.sfc.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, air.sfc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nair (Monthly air temperature at Surface, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d097_1181_d9bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d097_1181_d9bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d097_1181_d9bf&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_d097_1181_d9bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ab2_690a_245a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ab2_690a_245a.graph", "", "", "public", "Top Dataset, monolevel, air.sfc.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, air.sfc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ab2_690a_245a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ab2_690a_245a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ab2_690a_245a&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_6ab2_690a_245a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afb3_9852_69f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afb3_9852_69f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_afb3_9852_69f9/request", "", "public", "Top Dataset, monolevel, air.sig995.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_afb3_9852_69f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_afb3_9852_69f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_afb3_9852_69f9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_afb3_9852_69f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_afb3_9852_69f9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_afb3_9852_69f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7da1_51a7_5b2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7da1_51a7_5b2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7da1_51a7_5b2a/request", "", "public", "Top Dataset, monolevel, air.sig995.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7da1_51a7_5b2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7da1_51a7_5b2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7da1_51a7_5b2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7da1_51a7_5b2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7da1_51a7_5b2a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7da1_51a7_5b2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f5c_0239_c7cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f5c_0239_c7cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f5c_0239_c7cd/request", "", "public", "Top Dataset, monolevel, air.sig995.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Daily Air Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f5c_0239_c7cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f5c_0239_c7cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f5c_0239_c7cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f5c_0239_c7cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f5c_0239_c7cd&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0f5c_0239_c7cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbba_8a71_4812", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbba_8a71_4812.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fbba_8a71_4812/request", "", "public", "Top Dataset, monolevel, air.sig995.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fbba_8a71_4812_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fbba_8a71_4812_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fbba_8a71_4812/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fbba_8a71_4812.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fbba_8a71_4812&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fbba_8a71_4812"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4810_0f37_146d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4810_0f37_146d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4810_0f37_146d/request", "", "public", "Top Dataset, monolevel, air.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4810_0f37_146d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4810_0f37_146d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4810_0f37_146d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4810_0f37_146d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4810_0f37_146d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4810_0f37_146d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2c7_d003_f653", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2c7_d003_f653.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f2c7_d003_f653/request", "", "public", "Top Dataset, monolevel, air.sig995.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f2c7_d003_f653_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f2c7_d003_f653_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f2c7_d003_f653/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f2c7_d003_f653.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f2c7_d003_f653&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f2c7_d003_f653"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_006f_5127_e61f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_006f_5127_e61f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_006f_5127_e61f/request", "", "public", "Top Dataset, monolevel, air.sig995.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_006f_5127_e61f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_006f_5127_e61f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_006f_5127_e61f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_006f_5127_e61f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_006f_5127_e61f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_006f_5127_e61f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e760_836c_65dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e760_836c_65dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e760_836c_65dd/request", "", "public", "Top Dataset, monolevel, air.sig995.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e760_836c_65dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e760_836c_65dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e760_836c_65dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e760_836c_65dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e760_836c_65dd&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e760_836c_65dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_160d_65f8_e93e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_160d_65f8_e93e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_160d_65f8_e93e/request", "", "public", "Top Dataset, monolevel, air.tropo.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_160d_65f8_e93e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_160d_65f8_e93e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_160d_65f8_e93e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_160d_65f8_e93e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_160d_65f8_e93e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_160d_65f8_e93e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c67c_bac3_3523", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c67c_bac3_3523.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c67c_bac3_3523/request", "", "public", "Top Dataset, monolevel, air.tropo.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Daily Air Temperature at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c67c_bac3_3523_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c67c_bac3_3523_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c67c_bac3_3523/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c67c_bac3_3523.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c67c_bac3_3523&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c67c_bac3_3523"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e211_d7d5_b64b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e211_d7d5_b64b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e211_d7d5_b64b/request", "", "public", "Top Dataset, monolevel, air.tropo.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at Tropopause, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e211_d7d5_b64b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e211_d7d5_b64b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e211_d7d5_b64b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e211_d7d5_b64b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e211_d7d5_b64b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e211_d7d5_b64b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e228_90b5_4385", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e228_90b5_4385.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e228_90b5_4385/request", "", "public", "Top Dataset, monolevel, air.tropo.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at Tropopause, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e228_90b5_4385_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e228_90b5_4385_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e228_90b5_4385/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e228_90b5_4385.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e228_90b5_4385&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e228_90b5_4385"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c43c_e01f_b95d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c43c_e01f_b95d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c43c_e01f_b95d/request", "", "public", "Top Dataset, monolevel, air.tropo.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c43c_e01f_b95d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c43c_e01f_b95d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c43c_e01f_b95d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c43c_e01f_b95d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c43c_e01f_b95d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c43c_e01f_b95d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92cf_56a1_a6b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92cf_56a1_a6b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_92cf_56a1_a6b7/request", "", "public", "Top Dataset, monolevel, air.tropo.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_92cf_56a1_a6b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_92cf_56a1_a6b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_92cf_56a1_a6b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_92cf_56a1_a6b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_92cf_56a1_a6b7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_92cf_56a1_a6b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aab4_157c_cfc0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aab4_157c_cfc0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aab4_157c_cfc0/request", "", "public", "Top Dataset, monolevel, albedo.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nalbedo (3-hourly Long Term Mean Albedo at Surface, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aab4_157c_cfc0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aab4_157c_cfc0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aab4_157c_cfc0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aab4_157c_cfc0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aab4_157c_cfc0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_aab4_157c_cfc0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1de_d8be_ee5c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1de_d8be_ee5c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f1de_d8be_ee5c/request", "", "public", "Top Dataset, monolevel, albedo.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nalbedo (3-hourly Long Term Mean Albedo Spread at surface, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f1de_d8be_ee5c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f1de_d8be_ee5c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f1de_d8be_ee5c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f1de_d8be_ee5c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f1de_d8be_ee5c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f1de_d8be_ee5c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bc5_3525_8eb4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bc5_3525_8eb4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9bc5_3525_8eb4/request", "", "public", "Top Dataset, monolevel, albedo.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nalbedo (Daily Long Term Mean Albedo Spread at surface, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9bc5_3525_8eb4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9bc5_3525_8eb4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9bc5_3525_8eb4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9bc5_3525_8eb4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9bc5_3525_8eb4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9bc5_3525_8eb4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9da7_ff29_f964", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9da7_ff29_f964.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9da7_ff29_f964/request", "", "public", "Top Dataset, monolevel, albedo.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nalbedo (Daily Long Term Mean Albedo at Surface, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9da7_ff29_f964_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9da7_ff29_f964_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9da7_ff29_f964/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9da7_ff29_f964.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9da7_ff29_f964&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9da7_ff29_f964"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6cb4_615a_5ffb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6cb4_615a_5ffb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6cb4_615a_5ffb/request", "", "public", "Top Dataset, monolevel, albedo.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nalbedo (Long Term Mean Monthly Albedo Spread at surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6cb4_615a_5ffb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6cb4_615a_5ffb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6cb4_615a_5ffb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6cb4_615a_5ffb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6cb4_615a_5ffb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6cb4_615a_5ffb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e3b2_076b_2a8b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e3b2_076b_2a8b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e3b2_076b_2a8b/request", "", "public", "Top Dataset, monolevel, albedo.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nalbedo (Long Term Mean Monthly Albedo at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e3b2_076b_2a8b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e3b2_076b_2a8b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e3b2_076b_2a8b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e3b2_076b_2a8b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e3b2_076b_2a8b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e3b2_076b_2a8b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37ad_c24c_627f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37ad_c24c_627f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_37ad_c24c_627f/request", "", "public", "Top Dataset, monolevel, albedo.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nalbedo (Monthly Long Term Albedo Spread at surface, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_37ad_c24c_627f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_37ad_c24c_627f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_37ad_c24c_627f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_37ad_c24c_627f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_37ad_c24c_627f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_37ad_c24c_627f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93b2_f2f5_90be", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93b2_f2f5_90be.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_93b2_f2f5_90be/request", "", "public", "Top Dataset, monolevel, albedo.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nalbedo (Monthly Long Term Albedo at Surface, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_93b2_f2f5_90be_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_93b2_f2f5_90be_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_93b2_f2f5_90be/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_93b2_f2f5_90be.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_93b2_f2f5_90be&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_93b2_f2f5_90be"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e11_9c30_0391", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e11_9c30_0391.graph", "", "", "public", "Top Dataset, monolevel, albedo.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, albedo.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nalbedo (Long Term Monthly Mean albedo at Surface, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4e11_9c30_0391/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4e11_9c30_0391.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4e11_9c30_0391&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_4e11_9c30_0391"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c54_e205_3480", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c54_e205_3480.graph", "", "", "public", "Top Dataset, monolevel, albedo.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, albedo.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c54_e205_3480/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c54_e205_3480.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c54_e205_3480&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_0c54_e205_3480"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb6d_3454_c9a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb6d_3454_c9a6.graph", "", "", "public", "Top Dataset, monolevel, albedo.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, albedo.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nalbedo (Monthly albedo at Surface, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb6d_3454_c9a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb6d_3454_c9a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb6d_3454_c9a6&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_fb6d_3454_c9a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3223_c83f_e636", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3223_c83f_e636.graph", "", "", "public", "Top Dataset, monolevel, albedo.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, albedo.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3223_c83f_e636/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3223_c83f_e636.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3223_c83f_e636&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_3223_c83f_e636"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_07c0_2057_214e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_07c0_2057_214e.graph", "", "", "public", "Top Dataset, monolevel, apcp.day.ltm (Daily NARR) [time][y][x], 0001", "Daily NARR (Top Dataset, monolevel, apcp.day.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\napcp (Daily long term mean accumulated total precipitation at Surface, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_07c0_2057_214e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_07c0_2057_214e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_07c0_2057_214e&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_07c0_2057_214e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df60_1275_7f12", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df60_1275_7f12.graph", "", "", "public", "Top Dataset, monolevel, apcp.day.ltm (Daily NARR) [y][x]", "Daily NARR (Top Dataset, monolevel, apcp.day.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_df60_1275_7f12/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_df60_1275_7f12.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_df60_1275_7f12&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_df60_1275_7f12"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80e6_1336_d055", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80e6_1336_d055.graph", "", "", "public", "Top Dataset, monolevel, apcp.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, apcp.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\napcp (Monthly average total precipitation at Surface, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_80e6_1336_d055/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_80e6_1336_d055.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_80e6_1336_d055&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_80e6_1336_d055"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2008_7230_adbb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2008_7230_adbb.graph", "", "", "public", "Top Dataset, monolevel, apcp.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, apcp.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2008_7230_adbb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2008_7230_adbb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2008_7230_adbb&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_2008_7230_adbb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_acdc_895d_ce27", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_acdc_895d_ce27.graph", "", "", "public", "Top Dataset, monolevel, apcp.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, apcp.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\napcp (Monthly accumulated total precipitation at Surface, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_acdc_895d_ce27/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_acdc_895d_ce27.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_acdc_895d_ce27&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_acdc_895d_ce27"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b6cc_6e4f_ffb0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b6cc_6e4f_ffb0.graph", "", "", "public", "Top Dataset, monolevel, apcp.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, apcp.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b6cc_6e4f_ffb0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b6cc_6e4f_ffb0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b6cc_6e4f_ffb0&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_b6cc_6e4f_ffb0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_33cf_9d76_d25f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_33cf_9d76_d25f.graph", "", "", "public", "Top Dataset, monolevel, bgrun.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, bgrun.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nbgrun (Long Term Monthly Mean Subsurface Runoff (baseflow), kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_33cf_9d76_d25f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_33cf_9d76_d25f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_33cf_9d76_d25f&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_33cf_9d76_d25f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b0dc_3e4a_db51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b0dc_3e4a_db51.graph", "", "", "public", "Top Dataset, monolevel, bgrun.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, bgrun.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b0dc_3e4a_db51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b0dc_3e4a_db51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b0dc_3e4a_db51&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_b0dc_3e4a_db51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8658_c404_8a24", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8658_c404_8a24.graph", "", "", "public", "Top Dataset, monolevel, bgrun.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, bgrun.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nbgrun (Monthly Subsurface Runoff (baseflow), kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8658_c404_8a24/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8658_c404_8a24.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8658_c404_8a24&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_8658_c404_8a24"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_46ef_18af_e915", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_46ef_18af_e915.graph", "", "", "public", "Top Dataset, monolevel, bgrun.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, bgrun.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_46ef_18af_e915/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_46ef_18af_e915.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_46ef_18af_e915&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_46ef_18af_e915"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca30_4168_23a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca30_4168_23a1.graph", "", "", "public", "Top Dataset, monolevel, bmixl.hl1.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, bmixl.hl1.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nbmixl (Long Term Monthly Mean Blackadar's Mixing Length Scale, m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca30_4168_23a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca30_4168_23a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca30_4168_23a1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ca30_4168_23a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ca5_104e_7db8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ca5_104e_7db8.graph", "", "", "public", "Top Dataset, monolevel, bmixl.hl1.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, bmixl.hl1.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ca5_104e_7db8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ca5_104e_7db8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ca5_104e_7db8&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_8ca5_104e_7db8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cf7_7669_87c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cf7_7669_87c1.graph", "", "", "public", "Top Dataset, monolevel, bmixl.hl1.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, bmixl.hl1.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nbmixl (Monthly Blackadar's Mixing Length Scale, m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3cf7_7669_87c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3cf7_7669_87c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3cf7_7669_87c1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_3cf7_7669_87c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_555e_baf5_0091", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_555e_baf5_0091.graph", "", "", "public", "Top Dataset, monolevel, bmixl.hl1.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, bmixl.hl1.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_555e_baf5_0091/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_555e_baf5_0091.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_555e_baf5_0091&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_555e_baf5_0091"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_546a_ca9c_d371", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_546a_ca9c_d371.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_546a_ca9c_d371/request", "", "public", "Top Dataset, monolevel, cape.4Xday.1981-2010.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Long Term Mean 6-hourly CAPE, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_546a_ca9c_d371_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_546a_ca9c_d371_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_546a_ca9c_d371/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_546a_ca9c_d371.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_546a_ca9c_d371&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_546a_ca9c_d371"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6e2_a347_c625", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6e2_a347_c625.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f6e2_a347_c625/request", "", "public", "Top Dataset, monolevel, cape.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Long Term Mean Daily CAPE, J/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f6e2_a347_c625_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f6e2_a347_c625_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f6e2_a347_c625/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f6e2_a347_c625.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f6e2_a347_c625&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f6e2_a347_c625"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce0e_78c6_9286", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce0e_78c6_9286.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ce0e_78c6_9286/request", "", "public", "Top Dataset, monolevel, cape.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Daily Long Term Mean CAPE, J/kg)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ce0e_78c6_9286_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ce0e_78c6_9286_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ce0e_78c6_9286/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ce0e_78c6_9286.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ce0e_78c6_9286&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ce0e_78c6_9286"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6bd_d477_2e4f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6bd_d477_2e4f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e6bd_d477_2e4f/request", "", "public", "Top Dataset, monolevel, cape.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Long Term Mean Monthly CAPE, J/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e6bd_d477_2e4f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e6bd_d477_2e4f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e6bd_d477_2e4f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e6bd_d477_2e4f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e6bd_d477_2e4f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e6bd_d477_2e4f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_139d_c146_1799", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_139d_c146_1799.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_139d_c146_1799/request", "", "public", "Top Dataset, monolevel, cape.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Monthly Long Term CAPE, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_139d_c146_1799_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_139d_c146_1799_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_139d_c146_1799/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_139d_c146_1799.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_139d_c146_1799&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_139d_c146_1799"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2a94_d358_f043", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2a94_d358_f043.graph", "", "", "public", "Top Dataset, monolevel, cape.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, cape.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ncape (Long Term Monthly Mean Convective Available Potential Energy at Surface, J/kg)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2a94_d358_f043/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2a94_d358_f043.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2a94_d358_f043&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_2a94_d358_f043"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_523e_2e2c_cdf0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_523e_2e2c_cdf0.graph", "", "", "public", "Top Dataset, monolevel, cape.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, cape.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_523e_2e2c_cdf0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_523e_2e2c_cdf0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_523e_2e2c_cdf0&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_523e_2e2c_cdf0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_933a_cbdc_c04e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_933a_cbdc_c04e.graph", "", "", "public", "Top Dataset, monolevel, cape.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, cape.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ncape (Monthly Convective Available Potential Energy at Surface, J/kg)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_933a_cbdc_c04e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_933a_cbdc_c04e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_933a_cbdc_c04e&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_933a_cbdc_c04e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e04_9523_594c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e04_9523_594c.graph", "", "", "public", "Top Dataset, monolevel, cape.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, cape.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e04_9523_594c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e04_9523_594c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e04_9523_594c&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_8e04_9523_594c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc8d_2106_eb74", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc8d_2106_eb74.graph", "", "", "public", "Top Dataset, monolevel, ccond.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, ccond.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nccond (Long Term Monthly Mean Canopy Conductance at Surface, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc8d_2106_eb74/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc8d_2106_eb74.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc8d_2106_eb74&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_cc8d_2106_eb74"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30fb_de37_42c2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30fb_de37_42c2.graph", "", "", "public", "Top Dataset, monolevel, ccond.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, ccond.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_30fb_de37_42c2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_30fb_de37_42c2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_30fb_de37_42c2&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_30fb_de37_42c2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a79f_29d9_bb60", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a79f_29d9_bb60.graph", "", "", "public", "Top Dataset, monolevel, ccond.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, ccond.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nccond (Monthly Canopy Conductance at Surface, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a79f_29d9_bb60/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a79f_29d9_bb60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a79f_29d9_bb60&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a79f_29d9_bb60"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec95_36ee_8e7c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec95_36ee_8e7c.graph", "", "", "public", "Top Dataset, monolevel, ccond.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, ccond.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ec95_36ee_8e7c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ec95_36ee_8e7c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ec95_36ee_8e7c&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ec95_36ee_8e7c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a798_56f6_b6d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a798_56f6_b6d0.graph", "", "", "public", "Top Dataset, monolevel, cdcon.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ncdcon (Long Term Monthly Mean Mean of Convective Cloud Cover at Entire Atmosphere Considered as a Single Layer, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a798_56f6_b6d0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a798_56f6_b6d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a798_56f6_b6d0&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a798_56f6_b6d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ce9_8569_5a01", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ce9_8569_5a01.graph", "", "", "public", "Top Dataset, monolevel, cdcon.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ce9_8569_5a01/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ce9_8569_5a01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ce9_8569_5a01&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_1ce9_8569_5a01"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_deb7_33ea_2b94", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_deb7_33ea_2b94.graph", "", "", "public", "Top Dataset, monolevel, cdcon.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, cdcon.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ncdcon (Monthly Mean of Convective Cloud Cover at Entire Atmosphere Considered as a Single Layer, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_deb7_33ea_2b94/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_deb7_33ea_2b94.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_deb7_33ea_2b94&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_deb7_33ea_2b94"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_206b_08c3_a6e9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_206b_08c3_a6e9.graph", "", "", "public", "Top Dataset, monolevel, cdcon.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, cdcon.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_206b_08c3_a6e9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_206b_08c3_a6e9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_206b_08c3_a6e9&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_206b_08c3_a6e9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26db_3586_983a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26db_3586_983a.graph", "", "", "public", "Top Dataset, monolevel, cdlyr.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ncdlyr (Long Term Monthly Mean Mean of Non-Convective Cloud Cover at Entire Atmosphere Considered as a Single Layer, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_26db_3586_983a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_26db_3586_983a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_26db_3586_983a&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_26db_3586_983a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fd0_476b_6db1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fd0_476b_6db1.graph", "", "", "public", "Top Dataset, monolevel, cdlyr.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4fd0_476b_6db1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4fd0_476b_6db1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4fd0_476b_6db1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_4fd0_476b_6db1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_46a1_61cb_1593", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_46a1_61cb_1593.graph", "", "", "public", "Top Dataset, monolevel, cdlyr.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, cdlyr.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ncdlyr (Monthly Mean of Non-Convective Cloud Cover at Entire Atmosphere Considered as a Single Layer, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_46a1_61cb_1593/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_46a1_61cb_1593.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_46a1_61cb_1593&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_46a1_61cb_1593"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d92_31fa_edad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d92_31fa_edad.graph", "", "", "public", "Top Dataset, monolevel, cdlyr.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, cdlyr.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7d92_31fa_edad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7d92_31fa_edad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7d92_31fa_edad&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7d92_31fa_edad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_145c_3415_14d6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_145c_3415_14d6.graph", "", "", "public", "Top Dataset, monolevel, cfrzr.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, cfrzr.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ncfrzr (Long Term Monthly Mean Categorical Freezing Rain at Surface, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_145c_3415_14d6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_145c_3415_14d6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_145c_3415_14d6&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_145c_3415_14d6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2715_cff8_8d82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2715_cff8_8d82.graph", "", "", "public", "Top Dataset, monolevel, cfrzr.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, cfrzr.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2715_cff8_8d82/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2715_cff8_8d82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2715_cff8_8d82&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_2715_cff8_8d82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85df_0fcb_911f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85df_0fcb_911f.graph", "", "", "public", "Top Dataset, monolevel, cfrzr.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, cfrzr.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ncfrzr (Monthly Categorical Freezing Rain at Surface, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85df_0fcb_911f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85df_0fcb_911f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85df_0fcb_911f&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_85df_0fcb_911f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffbe_4783_7bb8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffbe_4783_7bb8.graph", "", "", "public", "Top Dataset, monolevel, cfrzr.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, cfrzr.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ffbe_4783_7bb8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ffbe_4783_7bb8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ffbe_4783_7bb8&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ffbe_4783_7bb8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cdc9_771d_2cd2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cdc9_771d_2cd2.graph", "", "", "public", "Top Dataset, monolevel, cicep.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, cicep.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ncicep (Long Term Monthly Mean Categorical Ice Pellets at Surface, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cdc9_771d_2cd2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cdc9_771d_2cd2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cdc9_771d_2cd2&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_cdc9_771d_2cd2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2ca_5294_c7e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2ca_5294_c7e5.graph", "", "", "public", "Top Dataset, monolevel, cicep.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, cicep.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a2ca_5294_c7e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a2ca_5294_c7e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a2ca_5294_c7e5&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a2ca_5294_c7e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce81_d645_8790", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce81_d645_8790.graph", "", "", "public", "Top Dataset, monolevel, cicep.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, cicep.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ncicep (Monthly Categorical Ice Pellets at Surface, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ce81_d645_8790/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ce81_d645_8790.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ce81_d645_8790&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ce81_d645_8790"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dee_236a_b247", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dee_236a_b247.graph", "", "", "public", "Top Dataset, monolevel, cicep.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, cicep.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1dee_236a_b247/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1dee_236a_b247.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1dee_236a_b247&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_1dee_236a_b247"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_68a3_8847_15fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_68a3_8847_15fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_68a3_8847_15fc/request", "", "public", "Top Dataset, monolevel, cin.4Xday.1981-2010.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Long Term Mean 6-hourly CAPE, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_68a3_8847_15fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_68a3_8847_15fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_68a3_8847_15fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_68a3_8847_15fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_68a3_8847_15fc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_68a3_8847_15fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4291_fb0f_3ba0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4291_fb0f_3ba0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4291_fb0f_3ba0/request", "", "public", "Top Dataset, monolevel, cin.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Long Term Mean Daily CAPE, J/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4291_fb0f_3ba0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4291_fb0f_3ba0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4291_fb0f_3ba0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4291_fb0f_3ba0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4291_fb0f_3ba0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4291_fb0f_3ba0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_947c_37b5_b66d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_947c_37b5_b66d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_947c_37b5_b66d/request", "", "public", "Top Dataset, monolevel, cin.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Daily Long Term Mean CAPE, J/kg)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_947c_37b5_b66d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_947c_37b5_b66d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_947c_37b5_b66d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_947c_37b5_b66d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_947c_37b5_b66d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_947c_37b5_b66d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b8f_3203_d2b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b8f_3203_d2b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9b8f_3203_d2b6/request", "", "public", "Top Dataset, monolevel, cin.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Long Term Mean Monthly CAPE, J/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9b8f_3203_d2b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9b8f_3203_d2b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9b8f_3203_d2b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9b8f_3203_d2b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9b8f_3203_d2b6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9b8f_3203_d2b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2db5_3be5_80fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2db5_3be5_80fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2db5_3be5_80fc/request", "", "public", "Top Dataset, monolevel, cin.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Monthly Long Term CAPE, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2db5_3be5_80fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2db5_3be5_80fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2db5_3be5_80fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2db5_3be5_80fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2db5_3be5_80fc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2db5_3be5_80fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee27_e159_d3c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee27_e159_d3c0.graph", "", "", "public", "Top Dataset, monolevel, cin.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, cin.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ncin (Long Term Monthly Mean Convective Inhibition at Surface, J/kg)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ee27_e159_d3c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ee27_e159_d3c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ee27_e159_d3c0&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ee27_e159_d3c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fab0_349e_1d5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fab0_349e_1d5b.graph", "", "", "public", "Top Dataset, monolevel, cin.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, cin.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fab0_349e_1d5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fab0_349e_1d5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fab0_349e_1d5b&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_fab0_349e_1d5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a462_a7e0_8e55", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a462_a7e0_8e55.graph", "", "", "public", "Top Dataset, monolevel, cin.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, cin.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ncin (Monthly Convective Inhibition at Surface, J/kg)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a462_a7e0_8e55/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a462_a7e0_8e55.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a462_a7e0_8e55&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a462_a7e0_8e55"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1d1_833a_3ae5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1d1_833a_3ae5.graph", "", "", "public", "Top Dataset, monolevel, cin.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, cin.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a1d1_833a_3ae5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a1d1_833a_3ae5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a1d1_833a_3ae5&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a1d1_833a_3ae5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96d6_1563_6686", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96d6_1563_6686.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_96d6_1563_6686/request", "", "public", "Top Dataset, monolevel, cldwtr.eatm.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldwtr (Long Term Mean 6-hourly Cloud Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_96d6_1563_6686_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_96d6_1563_6686_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_96d6_1563_6686/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_96d6_1563_6686.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_96d6_1563_6686&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_96d6_1563_6686"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e511_dfa8_b3e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e511_dfa8_b3e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e511_dfa8_b3e5/request", "", "public", "Top Dataset, monolevel, cldwtr.eatm.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldwtr (Long Term Mean 6-hourly Cloud Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e511_dfa8_b3e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e511_dfa8_b3e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e511_dfa8_b3e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e511_dfa8_b3e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e511_dfa8_b3e5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e511_dfa8_b3e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86b7_685a_6e3c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86b7_685a_6e3c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_86b7_685a_6e3c/request", "", "public", "Top Dataset, monolevel, cldwtr.eatm.day.1968-1996.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldwtr (Long Term Mean Daily Cloud Water for entire atmosphere, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86b7_685a_6e3c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86b7_685a_6e3c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86b7_685a_6e3c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86b7_685a_6e3c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86b7_685a_6e3c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_86b7_685a_6e3c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5a3_bc4b_97a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5a3_bc4b_97a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d5a3_bc4b_97a2/request", "", "public", "Top Dataset, monolevel, cldwtr.eatm.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldwtr (Daily Long Term Mean Cloud Water for entire atmosphere, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d5a3_bc4b_97a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d5a3_bc4b_97a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d5a3_bc4b_97a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d5a3_bc4b_97a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d5a3_bc4b_97a2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d5a3_bc4b_97a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_507a_8783_e1a5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_507a_8783_e1a5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_507a_8783_e1a5/request", "", "public", "Top Dataset, monolevel, cldwtr.eatm.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldwtr (Daily Long Term Mean Cloud Water for entire atmosphere, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_507a_8783_e1a5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_507a_8783_e1a5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_507a_8783_e1a5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_507a_8783_e1a5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_507a_8783_e1a5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_507a_8783_e1a5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cdd0_9571_8c46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cdd0_9571_8c46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cdd0_9571_8c46/request", "", "public", "Top Dataset, monolevel, cldwtr.eatm.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldwtr (Long Term Mean Monthly Cloud Water for entire atmosphere, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cdd0_9571_8c46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cdd0_9571_8c46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cdd0_9571_8c46/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cdd0_9571_8c46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cdd0_9571_8c46&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_cdd0_9571_8c46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_406a_113b_b748", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_406a_113b_b748.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_406a_113b_b748/request", "", "public", "Top Dataset, monolevel, cldwtr.eatm.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldwtr (Monthly Long Term Cloud Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_406a_113b_b748_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_406a_113b_b748_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_406a_113b_b748/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_406a_113b_b748.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_406a_113b_b748&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_406a_113b_b748"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c50f_3830_dd2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c50f_3830_dd2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c50f_3830_dd2f/request", "", "public", "Top Dataset, monolevel, cldwtr.eatm.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldwtr (Monthly Long Term Cloud Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c50f_3830_dd2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c50f_3830_dd2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c50f_3830_dd2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c50f_3830_dd2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c50f_3830_dd2f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c50f_3830_dd2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b4ac_f978_7b49", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b4ac_f978_7b49.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b4ac_f978_7b49/request", "", "public", "Top Dataset, monolevel, cldwtr.eatm.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldwtr (Monthly Cloud Water for entire atmosphere, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b4ac_f978_7b49_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b4ac_f978_7b49_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b4ac_f978_7b49/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b4ac_f978_7b49.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b4ac_f978_7b49&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b4ac_f978_7b49"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81d0_e5df_f678", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81d0_e5df_f678.graph", "", "", "public", "Top Dataset, monolevel, cnwat.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, cnwat.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ncnwat (Long Term Monthly Mean Plant Canopy Water at Surface, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_81d0_e5df_f678/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_81d0_e5df_f678.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_81d0_e5df_f678&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_81d0_e5df_f678"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_575f_a608_2903", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_575f_a608_2903.graph", "", "", "public", "Top Dataset, monolevel, cnwat.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, cnwat.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_575f_a608_2903/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_575f_a608_2903.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_575f_a608_2903&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_575f_a608_2903"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f87_60e0_1aac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f87_60e0_1aac.graph", "", "", "public", "Top Dataset, monolevel, cnwat.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, cnwat.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ncnwat (Monthly Plant Canopy Water at Surface, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f87_60e0_1aac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f87_60e0_1aac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f87_60e0_1aac&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_8f87_60e0_1aac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2095_acaf_61bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2095_acaf_61bf.graph", "", "", "public", "Top Dataset, monolevel, cnwat.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, cnwat.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2095_acaf_61bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2095_acaf_61bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2095_acaf_61bf&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_2095_acaf_61bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4539_023d_9ee5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4539_023d_9ee5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4539_023d_9ee5/request", "", "public", "Top Dataset, monolevel, cprat.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (3-hourly Long Term Mean Convective Precipitation Rate Spread, kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4539_023d_9ee5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4539_023d_9ee5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4539_023d_9ee5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4539_023d_9ee5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4539_023d_9ee5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4539_023d_9ee5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea03_842e_c14f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea03_842e_c14f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ea03_842e_c14f/request", "", "public", "Top Dataset, monolevel, cprat.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (3-hourly Long Term Mean Convective Precipitation Rate, kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ea03_842e_c14f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ea03_842e_c14f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ea03_842e_c14f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ea03_842e_c14f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ea03_842e_c14f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ea03_842e_c14f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5753_629d_507f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5753_629d_507f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5753_629d_507f/request", "", "public", "Top Dataset, monolevel, cprat.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (Daily Long Term Mean Convective Precipitation Rate Spread, kg/m^2/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5753_629d_507f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5753_629d_507f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5753_629d_507f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5753_629d_507f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5753_629d_507f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5753_629d_507f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfaa_78f0_d9a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfaa_78f0_d9a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bfaa_78f0_d9a2/request", "", "public", "Top Dataset, monolevel, cprat.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (Daily Long Term Mean Convective Precipitation Rate, kg/m^2/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bfaa_78f0_d9a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bfaa_78f0_d9a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bfaa_78f0_d9a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bfaa_78f0_d9a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bfaa_78f0_d9a2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bfaa_78f0_d9a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6be2_5412_7192", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6be2_5412_7192.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6be2_5412_7192/request", "", "public", "Top Dataset, monolevel, cprat.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (Long Term Mean Monthly Convective Precipitation Rate Spread, kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6be2_5412_7192_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6be2_5412_7192_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6be2_5412_7192/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6be2_5412_7192.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6be2_5412_7192&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6be2_5412_7192"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c45_4271_2b6e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c45_4271_2b6e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8c45_4271_2b6e/request", "", "public", "Top Dataset, monolevel, cprat.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (Long Term Mean Monthly Convective Precipitation Rate, kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8c45_4271_2b6e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8c45_4271_2b6e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8c45_4271_2b6e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8c45_4271_2b6e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8c45_4271_2b6e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8c45_4271_2b6e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4a2_eb16_d063", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4a2_eb16_d063.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a4a2_eb16_d063/request", "", "public", "Top Dataset, monolevel, cprat.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (Monthly Long Term Convective Precipitation Rate, kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a4a2_eb16_d063_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a4a2_eb16_d063_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a4a2_eb16_d063/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a4a2_eb16_d063.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a4a2_eb16_d063&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a4a2_eb16_d063"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cbc4_0952_53fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cbc4_0952_53fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cbc4_0952_53fb/request", "", "public", "Top Dataset, monolevel, cprat.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (Monthly Long Term Convective Precipitation Rate Spread, kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cbc4_0952_53fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cbc4_0952_53fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cbc4_0952_53fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cbc4_0952_53fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cbc4_0952_53fb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_cbc4_0952_53fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb32_7f5c_db3e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb32_7f5c_db3e.graph", "", "", "public", "Top Dataset, monolevel, crain.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, crain.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ncrain (Long Term Monthly Mean Categorical Rain at Surface, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb32_7f5c_db3e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb32_7f5c_db3e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb32_7f5c_db3e&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_eb32_7f5c_db3e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7fd_b6d8_3ba5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7fd_b6d8_3ba5.graph", "", "", "public", "Top Dataset, monolevel, crain.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, crain.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f7fd_b6d8_3ba5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f7fd_b6d8_3ba5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f7fd_b6d8_3ba5&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_f7fd_b6d8_3ba5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d97_9dcb_6b47", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d97_9dcb_6b47.graph", "", "", "public", "Top Dataset, monolevel, crain.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, crain.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ncrain (Monthly Categorical Rain at Surface, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7d97_9dcb_6b47/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7d97_9dcb_6b47.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7d97_9dcb_6b47&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7d97_9dcb_6b47"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_489e_91fb_d802", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_489e_91fb_d802.graph", "", "", "public", "Top Dataset, monolevel, crain.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, crain.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_489e_91fb_d802/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_489e_91fb_d802.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_489e_91fb_d802&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_489e_91fb_d802"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bbde_544b_9f43", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bbde_544b_9f43.graph", "", "", "public", "Top Dataset, monolevel, csnow.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, csnow.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ncsnow (Long Term Monthly Mean Categorical Snow at Surface, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bbde_544b_9f43/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bbde_544b_9f43.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bbde_544b_9f43&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_bbde_544b_9f43"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72d6_12b2_d336", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72d6_12b2_d336.graph", "", "", "public", "Top Dataset, monolevel, csnow.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, csnow.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_72d6_12b2_d336/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_72d6_12b2_d336.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_72d6_12b2_d336&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_72d6_12b2_d336"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b91_d426_ba74", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b91_d426_ba74.graph", "", "", "public", "Top Dataset, monolevel, csnow.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, csnow.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ncsnow (Monthly Categorical Snow at Surface, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4b91_d426_ba74/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4b91_d426_ba74.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4b91_d426_ba74&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_4b91_d426_ba74"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0eb_3f9e_631c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0eb_3f9e_631c.graph", "", "", "public", "Top Dataset, monolevel, csnow.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, csnow.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d0eb_3f9e_631c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d0eb_3f9e_631c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d0eb_3f9e_631c&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_d0eb_3f9e_631c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3471_4c6c_1db3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3471_4c6c_1db3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3471_4c6c_1db3/request", "", "public", "Top Dataset, monolevel, cwork.eatm.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncwork (3-hourly Long Term Mean Cloud Work Function Spread, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3471_4c6c_1db3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3471_4c6c_1db3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3471_4c6c_1db3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3471_4c6c_1db3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3471_4c6c_1db3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3471_4c6c_1db3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_983a_e88f_8c1c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_983a_e88f_8c1c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_983a_e88f_8c1c/request", "", "public", "Top Dataset, monolevel, cwork.eatm.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncwork (3-hourly Long Term Mean Cloud Work Function, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_983a_e88f_8c1c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_983a_e88f_8c1c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_983a_e88f_8c1c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_983a_e88f_8c1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_983a_e88f_8c1c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_983a_e88f_8c1c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea3b_9479_55ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea3b_9479_55ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ea3b_9479_55ca/request", "", "public", "Top Dataset, monolevel, cwork.eatm.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncwork (Daily Long Term Mean Cloud Work Function Spread, J/kg)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ea3b_9479_55ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ea3b_9479_55ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ea3b_9479_55ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ea3b_9479_55ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ea3b_9479_55ca&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ea3b_9479_55ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc6f_0299_19aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc6f_0299_19aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc6f_0299_19aa/request", "", "public", "Top Dataset, monolevel, cwork.eatm.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncwork (Daily Long Term Mean Cloud Work Function, J/kg)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc6f_0299_19aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc6f_0299_19aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc6f_0299_19aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc6f_0299_19aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc6f_0299_19aa&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fc6f_0299_19aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f0f_08ea_d1b2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f0f_08ea_d1b2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f0f_08ea_d1b2/request", "", "public", "Top Dataset, monolevel, cwork.eatm.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncwork (Long Term Mean Monthly Cloud Work Function Spread, J/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f0f_08ea_d1b2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f0f_08ea_d1b2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f0f_08ea_d1b2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f0f_08ea_d1b2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f0f_08ea_d1b2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2f0f_08ea_d1b2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b8e_2680_440d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b8e_2680_440d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8b8e_2680_440d/request", "", "public", "Top Dataset, monolevel, cwork.eatm.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncwork (Long Term Mean Monthly Cloud Work Function, J/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8b8e_2680_440d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8b8e_2680_440d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8b8e_2680_440d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8b8e_2680_440d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8b8e_2680_440d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8b8e_2680_440d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b0f_91dd_927b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b0f_91dd_927b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3b0f_91dd_927b/request", "", "public", "Top Dataset, monolevel, cwork.eatm.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncwork (Monthly Long Term Cloud Work Function Spread, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3b0f_91dd_927b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3b0f_91dd_927b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3b0f_91dd_927b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3b0f_91dd_927b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3b0f_91dd_927b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3b0f_91dd_927b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53e6_1f21_ea29", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53e6_1f21_ea29.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_53e6_1f21_ea29/request", "", "public", "Top Dataset, monolevel, cwork.eatm.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncwork (Monthly Long Term Cloud Work Function, J/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_53e6_1f21_ea29_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_53e6_1f21_ea29_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_53e6_1f21_ea29/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_53e6_1f21_ea29.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_53e6_1f21_ea29&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_53e6_1f21_ea29"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_995f_525b_61ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_995f_525b_61ac.graph", "", "", "public", "Top Dataset, monolevel, dlwrf.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, dlwrf.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ndlwrf (Long Term Monthly Mean Downward Longwave Radiation Flux at Surface, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_995f_525b_61ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_995f_525b_61ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_995f_525b_61ac&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_995f_525b_61ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7af_d700_21e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7af_d700_21e5.graph", "", "", "public", "Top Dataset, monolevel, dlwrf.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, dlwrf.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f7af_d700_21e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f7af_d700_21e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f7af_d700_21e5&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_f7af_d700_21e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_111d_3ac2_f1f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_111d_3ac2_f1f1.graph", "", "", "public", "Top Dataset, monolevel, dlwrf.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, dlwrf.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ndlwrf (Monthly Downward Longwave Radiation Flux at Surface, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_111d_3ac2_f1f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_111d_3ac2_f1f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_111d_3ac2_f1f1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_111d_3ac2_f1f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6ee_24b1_b766", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6ee_24b1_b766.graph", "", "", "public", "Top Dataset, monolevel, dlwrf.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, dlwrf.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e6ee_24b1_b766/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e6ee_24b1_b766.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e6ee_24b1_b766&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_e6ee_24b1_b766"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a7b_5d02_6f38", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a7b_5d02_6f38.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a7b_5d02_6f38/request", "", "public", "Top Dataset, monolevel, dlwrf.sfc.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (3-hourly Long Term Mean Downward Longwave Radiation Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a7b_5d02_6f38_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a7b_5d02_6f38_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a7b_5d02_6f38/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a7b_5d02_6f38.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a7b_5d02_6f38&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0a7b_5d02_6f38"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d27f_22a2_e5da", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d27f_22a2_e5da.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d27f_22a2_e5da/request", "", "public", "Top Dataset, monolevel, dlwrf.sfc.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (3-hourly Long Term Mean Downward Longwave Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d27f_22a2_e5da_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d27f_22a2_e5da_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d27f_22a2_e5da/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d27f_22a2_e5da.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d27f_22a2_e5da&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d27f_22a2_e5da"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30d7_27b1_dbbc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30d7_27b1_dbbc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_30d7_27b1_dbbc/request", "", "public", "Top Dataset, monolevel, dlwrf.sfc.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (Daily Long Term Mean Downward Longwave Radiation Flux at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_30d7_27b1_dbbc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_30d7_27b1_dbbc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_30d7_27b1_dbbc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_30d7_27b1_dbbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_30d7_27b1_dbbc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_30d7_27b1_dbbc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab43_bc87_e372", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab43_bc87_e372.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab43_bc87_e372/request", "", "public", "Top Dataset, monolevel, dlwrf.sfc.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (Daily Long Term Mean Downward Longwave Radiation Flux Spread at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab43_bc87_e372_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab43_bc87_e372_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab43_bc87_e372/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab43_bc87_e372.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab43_bc87_e372&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ab43_bc87_e372"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6de8_c887_637b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6de8_c887_637b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6de8_c887_637b/request", "", "public", "Top Dataset, monolevel, dlwrf.sfc.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (Long Term Mean Monthly Downward Longwave Radiation Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6de8_c887_637b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6de8_c887_637b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6de8_c887_637b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6de8_c887_637b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6de8_c887_637b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6de8_c887_637b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e67d_325b_4142", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e67d_325b_4142.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e67d_325b_4142/request", "", "public", "Top Dataset, monolevel, dlwrf.sfc.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (Long Term Mean Monthly Downward Longwave Radiation Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e67d_325b_4142_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e67d_325b_4142_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e67d_325b_4142/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e67d_325b_4142.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e67d_325b_4142&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e67d_325b_4142"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4443_2bb3_0e54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4443_2bb3_0e54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4443_2bb3_0e54/request", "", "public", "Top Dataset, monolevel, dlwrf.sfc.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (Monthly Long Term Downward Longwave Radiation Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4443_2bb3_0e54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4443_2bb3_0e54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4443_2bb3_0e54/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4443_2bb3_0e54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4443_2bb3_0e54&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4443_2bb3_0e54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f56d_b46b_50be", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f56d_b46b_50be.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f56d_b46b_50be/request", "", "public", "Top Dataset, monolevel, dlwrf.sfc.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (Monthly Long Term Downward Longwave Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f56d_b46b_50be_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f56d_b46b_50be_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f56d_b46b_50be/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f56d_b46b_50be.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f56d_b46b_50be&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f56d_b46b_50be"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4163_0b75_70a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4163_0b75_70a0.graph", "", "", "public", "Top Dataset, monolevel, dpt.2m.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, dpt.2m.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ndpt (Long Term Monthly Mean Dew Point Temperature at 2m, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4163_0b75_70a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4163_0b75_70a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4163_0b75_70a0&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_4163_0b75_70a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9533_ea35_4469", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9533_ea35_4469.graph", "", "", "public", "Top Dataset, monolevel, dpt.2m.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, dpt.2m.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9533_ea35_4469/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9533_ea35_4469.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9533_ea35_4469&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_9533_ea35_4469"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_faec_409c_074d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_faec_409c_074d.graph", "", "", "public", "Top Dataset, monolevel, dpt.2m.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, dpt.2m.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ndpt (Monthly Dew Point Temperature at 2m, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_faec_409c_074d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_faec_409c_074d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_faec_409c_074d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_faec_409c_074d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00e7_e902_7bc4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00e7_e902_7bc4.graph", "", "", "public", "Top Dataset, monolevel, dpt.2m.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, dpt.2m.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_00e7_e902_7bc4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_00e7_e902_7bc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_00e7_e902_7bc4&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_00e7_e902_7bc4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c308_19fb_050c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c308_19fb_050c.graph", "", "", "public", "Top Dataset, monolevel, dswrf.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, dswrf.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ndswrf (Long Term Monthly Mean Downward Shortwave Radiation Flux at Surface, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c308_19fb_050c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c308_19fb_050c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c308_19fb_050c&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_c308_19fb_050c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b7f_2705_683e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b7f_2705_683e.graph", "", "", "public", "Top Dataset, monolevel, dswrf.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, dswrf.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b7f_2705_683e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b7f_2705_683e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b7f_2705_683e&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7b7f_2705_683e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fe6_ae06_cbc1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fe6_ae06_cbc1.graph", "", "", "public", "Top Dataset, monolevel, dswrf.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, dswrf.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ndswrf (Monthly Downward Shortwave Radiation Flux at Surface, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1fe6_ae06_cbc1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1fe6_ae06_cbc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1fe6_ae06_cbc1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_1fe6_ae06_cbc1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb97_18fb_906b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb97_18fb_906b.graph", "", "", "public", "Top Dataset, monolevel, dswrf.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, dswrf.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bb97_18fb_906b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bb97_18fb_906b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bb97_18fb_906b&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_bb97_18fb_906b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_465d_47d1_f441", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_465d_47d1_f441.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_465d_47d1_f441/request", "", "public", "Top Dataset, monolevel, dswrf.sfc.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (3-hourly Long Term Mean Downward Solar Radiation Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_465d_47d1_f441_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_465d_47d1_f441_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_465d_47d1_f441/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_465d_47d1_f441.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_465d_47d1_f441&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_465d_47d1_f441"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9423_8e2c_def8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9423_8e2c_def8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9423_8e2c_def8/request", "", "public", "Top Dataset, monolevel, dswrf.sfc.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (3-hourly Long Term Mean Downward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9423_8e2c_def8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9423_8e2c_def8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9423_8e2c_def8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9423_8e2c_def8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9423_8e2c_def8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9423_8e2c_def8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b08_2358_7acb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b08_2358_7acb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0b08_2358_7acb/request", "", "public", "Top Dataset, monolevel, dswrf.sfc.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Daily Long Term Mean Downward Solar Radiation Flux at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0b08_2358_7acb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0b08_2358_7acb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0b08_2358_7acb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0b08_2358_7acb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0b08_2358_7acb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0b08_2358_7acb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9f6_3a6a_fd1b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9f6_3a6a_fd1b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a9f6_3a6a_fd1b/request", "", "public", "Top Dataset, monolevel, dswrf.sfc.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Daily Long Term Mean Downward Solar Radiation Flux Spread at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9f6_3a6a_fd1b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9f6_3a6a_fd1b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9f6_3a6a_fd1b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9f6_3a6a_fd1b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9f6_3a6a_fd1b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a9f6_3a6a_fd1b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14cd_6279_6671", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14cd_6279_6671.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_14cd_6279_6671/request", "", "public", "Top Dataset, monolevel, dswrf.sfc.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Long Term Mean Monthly Downward Solar Radiation Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_14cd_6279_6671_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_14cd_6279_6671_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_14cd_6279_6671/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_14cd_6279_6671.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_14cd_6279_6671&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_14cd_6279_6671"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd24_2b49_6586", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd24_2b49_6586.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fd24_2b49_6586/request", "", "public", "Top Dataset, monolevel, dswrf.sfc.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Long Term Mean Monthly Downward Solar Radiation Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fd24_2b49_6586_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fd24_2b49_6586_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fd24_2b49_6586/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fd24_2b49_6586.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fd24_2b49_6586&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fd24_2b49_6586"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5804_b797_09a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5804_b797_09a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5804_b797_09a7/request", "", "public", "Top Dataset, monolevel, dswrf.sfc.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Monthly Long Term Downward Solar Radiation Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5804_b797_09a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5804_b797_09a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5804_b797_09a7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5804_b797_09a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5804_b797_09a7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5804_b797_09a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf65_3c18_5c9e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf65_3c18_5c9e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf65_3c18_5c9e/request", "", "public", "Top Dataset, monolevel, dswrf.sfc.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Monthly Long Term Downward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf65_3c18_5c9e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf65_3c18_5c9e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf65_3c18_5c9e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf65_3c18_5c9e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf65_3c18_5c9e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bf65_3c18_5c9e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c8f7_fedf_cbf8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c8f7_fedf_cbf8.graph", "", "", "public", "Top Dataset, monolevel, evap.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, evap.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nevap (Long Term Monthly Mean accumulated total evaporation at Surface, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c8f7_fedf_cbf8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c8f7_fedf_cbf8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c8f7_fedf_cbf8&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_c8f7_fedf_cbf8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8694_9b0d_1a72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8694_9b0d_1a72.graph", "", "", "public", "Top Dataset, monolevel, evap.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, evap.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8694_9b0d_1a72/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8694_9b0d_1a72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8694_9b0d_1a72&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_8694_9b0d_1a72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c230_259e_5f26", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c230_259e_5f26.graph", "", "", "public", "Top Dataset, monolevel, evap.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, evap.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nevap (Monthly accumulated total evaporation at Surface, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c230_259e_5f26/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c230_259e_5f26.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c230_259e_5f26&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_c230_259e_5f26"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f809_ecaa_1441", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f809_ecaa_1441.graph", "", "", "public", "Top Dataset, monolevel, evap.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, evap.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f809_ecaa_1441/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f809_ecaa_1441.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f809_ecaa_1441&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_f809_ecaa_1441"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1985_dc4a_7613", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1985_dc4a_7613.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1985_dc4a_7613/request", "", "public", "Top Dataset, monolevel, gflux.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (3-hourly Long Term Mean Ground Heat Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1985_dc4a_7613_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1985_dc4a_7613_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1985_dc4a_7613/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1985_dc4a_7613.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1985_dc4a_7613&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1985_dc4a_7613"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91ab_909e_f1cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91ab_909e_f1cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_91ab_909e_f1cf/request", "", "public", "Top Dataset, monolevel, gflux.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (3-hourly Long Term Mean Ground Heat Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_91ab_909e_f1cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_91ab_909e_f1cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_91ab_909e_f1cf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_91ab_909e_f1cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_91ab_909e_f1cf&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_91ab_909e_f1cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43cd_f297_cc05", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43cd_f297_cc05.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_43cd_f297_cc05/request", "", "public", "Top Dataset, monolevel, gflux.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Daily Long Term Mean Ground Heat Flux Spread at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_43cd_f297_cc05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_43cd_f297_cc05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_43cd_f297_cc05/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_43cd_f297_cc05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_43cd_f297_cc05&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_43cd_f297_cc05"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b151_4262_438c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b151_4262_438c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b151_4262_438c/request", "", "public", "Top Dataset, monolevel, gflux.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Daily Long Term Mean Ground Heat Flux at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b151_4262_438c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b151_4262_438c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b151_4262_438c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b151_4262_438c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b151_4262_438c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b151_4262_438c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_69c0_e076_c030", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_69c0_e076_c030.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_69c0_e076_c030/request", "", "public", "Top Dataset, monolevel, gflux.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Long Term Mean Monthly Ground Heat Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_69c0_e076_c030_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_69c0_e076_c030_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_69c0_e076_c030/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_69c0_e076_c030.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_69c0_e076_c030&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_69c0_e076_c030"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9235_79d2_2f2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9235_79d2_2f2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9235_79d2_2f2d/request", "", "public", "Top Dataset, monolevel, gflux.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Long Term Mean Monthly Ground Heat Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9235_79d2_2f2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9235_79d2_2f2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9235_79d2_2f2d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9235_79d2_2f2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9235_79d2_2f2d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9235_79d2_2f2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_11c2_b7ea_1523", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_11c2_b7ea_1523.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_11c2_b7ea_1523/request", "", "public", "Top Dataset, monolevel, gflux.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Monthly Long Term Ground Heat Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_11c2_b7ea_1523_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_11c2_b7ea_1523_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_11c2_b7ea_1523/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_11c2_b7ea_1523.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_11c2_b7ea_1523&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_11c2_b7ea_1523"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cfc_64a5_105e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cfc_64a5_105e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3cfc_64a5_105e/request", "", "public", "Top Dataset, monolevel, gflux.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Monthly Long Term Ground Heat Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3cfc_64a5_105e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3cfc_64a5_105e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3cfc_64a5_105e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3cfc_64a5_105e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3cfc_64a5_105e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3cfc_64a5_105e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99d4_57fe_fe9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99d4_57fe_fe9f.graph", "", "", "public", "Top Dataset, monolevel, gflux.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, gflux.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ngflux (Long Term Monthly Mean Ground Heat Flux at Surface, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99d4_57fe_fe9f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99d4_57fe_fe9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99d4_57fe_fe9f&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_99d4_57fe_fe9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4564_cd9e_2c4f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4564_cd9e_2c4f.graph", "", "", "public", "Top Dataset, monolevel, gflux.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, gflux.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4564_cd9e_2c4f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4564_cd9e_2c4f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4564_cd9e_2c4f&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_4564_cd9e_2c4f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_763e_7fb2_cb35", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_763e_7fb2_cb35.graph", "", "", "public", "Top Dataset, monolevel, gflux.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, gflux.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ngflux (Monthly Ground Heat Flux at Surface, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_763e_7fb2_cb35/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_763e_7fb2_cb35.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_763e_7fb2_cb35&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_763e_7fb2_cb35"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d6c_7bd4_5476", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d6c_7bd4_5476.graph", "", "", "public", "Top Dataset, monolevel, gflux.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, gflux.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d6c_7bd4_5476/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d6c_7bd4_5476.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d6c_7bd4_5476&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_2d6c_7bd4_5476"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc61_1765_45b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc61_1765_45b5.graph", "", "", "public", "Top Dataset, monolevel, hcdc.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, hcdc.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nhcdc (Long Term Monthly Mean High Cloud Area Fraction, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc61_1765_45b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc61_1765_45b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc61_1765_45b5&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_dc61_1765_45b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_adc4_714c_2a87", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_adc4_714c_2a87.graph", "", "", "public", "Top Dataset, monolevel, hcdc.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, hcdc.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_adc4_714c_2a87/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_adc4_714c_2a87.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_adc4_714c_2a87&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_adc4_714c_2a87"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3b4_715a_048a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3b4_715a_048a.graph", "", "", "public", "Top Dataset, monolevel, hcdc.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, hcdc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nhcdc (Monthly High Cloud Area Fraction, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c3b4_715a_048a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c3b4_715a_048a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c3b4_715a_048a&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_c3b4_715a_048a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cb7_64b9_d9a4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cb7_64b9_d9a4.graph", "", "", "public", "Top Dataset, monolevel, hcdc.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, hcdc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8cb7_64b9_d9a4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8cb7_64b9_d9a4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8cb7_64b9_d9a4&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_8cb7_64b9_d9a4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d663_62fa_7988", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d663_62fa_7988.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d663_62fa_7988/request", "", "public", "Top Dataset, monolevel, hgt.tropo.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Long Term Mean 6-hourly Geopotential Heights at Tropopause, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d663_62fa_7988_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d663_62fa_7988_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d663_62fa_7988/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d663_62fa_7988.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d663_62fa_7988&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d663_62fa_7988"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec74_0b18_a738", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec74_0b18_a738.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ec74_0b18_a738/request", "", "public", "Top Dataset, monolevel, hgt.tropo.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Long Term Mean Daily Geopotential Heights at Tropopause, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ec74_0b18_a738_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ec74_0b18_a738_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ec74_0b18_a738/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ec74_0b18_a738.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ec74_0b18_a738&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ec74_0b18_a738"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff24_bf9e_1fae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff24_bf9e_1fae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff24_bf9e_1fae/request", "", "public", "Top Dataset, monolevel, hgt.tropo.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Daily Long Term Mean Geopotential Heights at Tropopause, m)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff24_bf9e_1fae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff24_bf9e_1fae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff24_bf9e_1fae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff24_bf9e_1fae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff24_bf9e_1fae&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ff24_bf9e_1fae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f211_4dd5_9891", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f211_4dd5_9891.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f211_4dd5_9891/request", "", "public", "Top Dataset, monolevel, hgt.tropo.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Daily Long Term Mean Geopotential Heights at Tropopause, m)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f211_4dd5_9891_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f211_4dd5_9891_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f211_4dd5_9891/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f211_4dd5_9891.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f211_4dd5_9891&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f211_4dd5_9891"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d8f_9260_da99", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d8f_9260_da99.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d8f_9260_da99/request", "", "public", "Top Dataset, monolevel, hgt.tropo.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Long Term Mean Monthly Geopotential Heights at Tropopause, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d8f_9260_da99_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d8f_9260_da99_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d8f_9260_da99/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d8f_9260_da99.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d8f_9260_da99&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6d8f_9260_da99"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dcc_70e0_2f84", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dcc_70e0_2f84.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1dcc_70e0_2f84/request", "", "public", "Top Dataset, monolevel, hgt.tropo.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Monthly Long Term Geopotential Heights at Tropopause, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1dcc_70e0_2f84_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1dcc_70e0_2f84_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1dcc_70e0_2f84/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1dcc_70e0_2f84.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1dcc_70e0_2f84&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1dcc_70e0_2f84"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a20c_deb2_aba0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a20c_deb2_aba0.graph", "", "", "public", "Top Dataset, monolevel, hgt.tropo.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, hgt.tropo.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nhgt (Long Term Monthly Mean Geopotential Height, m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a20c_deb2_aba0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a20c_deb2_aba0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a20c_deb2_aba0&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a20c_deb2_aba0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0277_c355_949d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0277_c355_949d.graph", "", "", "public", "Top Dataset, monolevel, hgt.tropo.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, hgt.tropo.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0277_c355_949d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0277_c355_949d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0277_c355_949d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_0277_c355_949d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65b6_eb3b_1565", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65b6_eb3b_1565.graph", "", "", "public", "Top Dataset, monolevel, hgt.tropo.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, hgt.tropo.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nhgt (Monthly Geopotential Height, m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_65b6_eb3b_1565/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_65b6_eb3b_1565.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_65b6_eb3b_1565&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_65b6_eb3b_1565"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5850_2ffb_124d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5850_2ffb_124d.graph", "", "", "public", "Top Dataset, monolevel, hgt.tropo.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, hgt.tropo.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5850_2ffb_124d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5850_2ffb_124d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5850_2ffb_124d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_5850_2ffb_124d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f286_0984_7748", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f286_0984_7748.graph", "", "", "public", "Top Dataset, monolevel, hlcy.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, hlcy.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nhlcy (Long Term Monthly Mean Storm Relative Helicity, m^2/s^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f286_0984_7748/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f286_0984_7748.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f286_0984_7748&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_f286_0984_7748"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ac17_3b1a_ffc9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ac17_3b1a_ffc9.graph", "", "", "public", "Top Dataset, monolevel, hlcy.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, hlcy.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ac17_3b1a_ffc9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ac17_3b1a_ffc9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ac17_3b1a_ffc9&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ac17_3b1a_ffc9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51d4_a39e_1641", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51d4_a39e_1641.graph", "", "", "public", "Top Dataset, monolevel, hlcy.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, hlcy.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nhlcy (Monthly Storm Relative Helicity, m^2/s^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_51d4_a39e_1641/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_51d4_a39e_1641.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_51d4_a39e_1641&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_51d4_a39e_1641"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e87_799f_24e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e87_799f_24e8.graph", "", "", "public", "Top Dataset, monolevel, hlcy.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, hlcy.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e87_799f_24e8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e87_799f_24e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e87_799f_24e8&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_9e87_799f_24e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c83_9e6c_9ccc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c83_9e6c_9ccc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c83_9e6c_9ccc/request", "", "public", "Top Dataset, monolevel, hpbl.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhpbl (3-hourly Long Term Mean Height Spread of Pressure Boundary Layer, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c83_9e6c_9ccc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c83_9e6c_9ccc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c83_9e6c_9ccc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c83_9e6c_9ccc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c83_9e6c_9ccc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0c83_9e6c_9ccc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c58a_7765_408a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c58a_7765_408a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c58a_7765_408a/request", "", "public", "Top Dataset, monolevel, hpbl.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhpbl (3-hourly Long Term Mean Height of Pressure Boundary Layer, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c58a_7765_408a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c58a_7765_408a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c58a_7765_408a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c58a_7765_408a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c58a_7765_408a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c58a_7765_408a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7646_9f16_2d59", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7646_9f16_2d59.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7646_9f16_2d59/request", "", "public", "Top Dataset, monolevel, hpbl.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhpbl (Daily Long Term Mean Height Spread of Pressure Boundary Layer, m)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7646_9f16_2d59_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7646_9f16_2d59_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7646_9f16_2d59/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7646_9f16_2d59.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7646_9f16_2d59&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7646_9f16_2d59"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5a7_d778_2413", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5a7_d778_2413.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d5a7_d778_2413/request", "", "public", "Top Dataset, monolevel, hpbl.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhpbl (Daily Long Term Mean Height of Pressure Boundary Layer, m)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d5a7_d778_2413_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d5a7_d778_2413_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d5a7_d778_2413/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d5a7_d778_2413.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d5a7_d778_2413&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d5a7_d778_2413"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17ea_0435_2120", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17ea_0435_2120.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_17ea_0435_2120/request", "", "public", "Top Dataset, monolevel, hpbl.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhpbl (Long Term Mean Monthly Height of Pressure Boundary Layer, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_17ea_0435_2120_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_17ea_0435_2120_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_17ea_0435_2120/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_17ea_0435_2120.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_17ea_0435_2120&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_17ea_0435_2120"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_619e_64bd_5228", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_619e_64bd_5228.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_619e_64bd_5228/request", "", "public", "Top Dataset, monolevel, hpbl.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhpbl (Long Term Mean Monthly Height Spread of Pressure Boundary Layer, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_619e_64bd_5228_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_619e_64bd_5228_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_619e_64bd_5228/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_619e_64bd_5228.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_619e_64bd_5228&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_619e_64bd_5228"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2474_ec37_2f9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2474_ec37_2f9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2474_ec37_2f9d/request", "", "public", "Top Dataset, monolevel, hpbl.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhpbl (Monthly Long Term Height of Pressure Boundary Layer, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2474_ec37_2f9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2474_ec37_2f9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2474_ec37_2f9d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2474_ec37_2f9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2474_ec37_2f9d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2474_ec37_2f9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_77d9_a3cb_7890", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_77d9_a3cb_7890.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_77d9_a3cb_7890/request", "", "public", "Top Dataset, monolevel, hpbl.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhpbl (Monthly Long Term Height Spread of Pressure Boundary Layer, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_77d9_a3cb_7890_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_77d9_a3cb_7890_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_77d9_a3cb_7890/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_77d9_a3cb_7890.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_77d9_a3cb_7890&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_77d9_a3cb_7890"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e140_6996_e1b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e140_6996_e1b5.graph", "", "", "public", "Top Dataset, monolevel, hpbl.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, hpbl.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nhpbl (Long Term Monthly Mean Planetary Boundary Layer Height, m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e140_6996_e1b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e140_6996_e1b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e140_6996_e1b5&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_e140_6996_e1b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a64a_a088_2e87", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a64a_a088_2e87.graph", "", "", "public", "Top Dataset, monolevel, hpbl.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, hpbl.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a64a_a088_2e87/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a64a_a088_2e87.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a64a_a088_2e87&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a64a_a088_2e87"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff2d_b06b_4963", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff2d_b06b_4963.graph", "", "", "public", "Top Dataset, monolevel, hpbl.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, hpbl.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nhpbl (Monthly Planetary Boundary Layer Height, m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff2d_b06b_4963/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff2d_b06b_4963.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff2d_b06b_4963&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ff2d_b06b_4963"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7283_00e2_b5c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7283_00e2_b5c9.graph", "", "", "public", "Top Dataset, monolevel, hpbl.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, hpbl.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7283_00e2_b5c9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7283_00e2_b5c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7283_00e2_b5c9&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7283_00e2_b5c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff48_b8e9_b51d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff48_b8e9_b51d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff48_b8e9_b51d/request", "", "public", "Top Dataset, monolevel, icec.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (3-hourly Long Term Mean Ice Concentration at surface, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff48_b8e9_b51d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff48_b8e9_b51d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff48_b8e9_b51d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff48_b8e9_b51d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff48_b8e9_b51d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ff48_b8e9_b51d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f19_31b5_8552", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f19_31b5_8552.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3f19_31b5_8552/request", "", "public", "Top Dataset, monolevel, icec.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Daily Long Term Mean Ice Concentration at surface, frac.)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3f19_31b5_8552_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3f19_31b5_8552_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3f19_31b5_8552/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3f19_31b5_8552.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3f19_31b5_8552&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3f19_31b5_8552"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd3a_050f_d9c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd3a_050f_d9c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cd3a_050f_d9c4/request", "", "public", "Top Dataset, monolevel, icec.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Long Term Mean Monthly Ice Concentration at surface, frac.)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cd3a_050f_d9c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cd3a_050f_d9c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cd3a_050f_d9c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cd3a_050f_d9c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cd3a_050f_d9c4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_cd3a_050f_d9c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db97_9aee_6fbb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db97_9aee_6fbb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db97_9aee_6fbb/request", "", "public", "Top Dataset, monolevel, icec.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Monthly Long Term Ice Concentration at surface, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db97_9aee_6fbb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db97_9aee_6fbb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db97_9aee_6fbb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db97_9aee_6fbb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db97_9aee_6fbb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_db97_9aee_6fbb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37cf_a086_2d09", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37cf_a086_2d09.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_37cf_a086_2d09/request", "", "public", "Top Dataset, monolevel, icet.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicet (3-hourly Long Term Mean Ice Thickness at Surface, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_37cf_a086_2d09_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_37cf_a086_2d09_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_37cf_a086_2d09/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_37cf_a086_2d09.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_37cf_a086_2d09&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_37cf_a086_2d09"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4acd_6b0d_c994", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4acd_6b0d_c994.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4acd_6b0d_c994/request", "", "public", "Top Dataset, monolevel, icet.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicet (3-hourly Long Term Mean Ice Thickness Spread at Surface, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4acd_6b0d_c994_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4acd_6b0d_c994_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4acd_6b0d_c994/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4acd_6b0d_c994.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4acd_6b0d_c994&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4acd_6b0d_c994"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e14_dfae_a393", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e14_dfae_a393.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e14_dfae_a393/request", "", "public", "Top Dataset, monolevel, icet.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicet (Daily Long Term Mean Ice Thickness Spread at Surface, m)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e14_dfae_a393_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e14_dfae_a393_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e14_dfae_a393/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e14_dfae_a393.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e14_dfae_a393&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3e14_dfae_a393"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb8d_9896_50f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb8d_9896_50f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eb8d_9896_50f6/request", "", "public", "Top Dataset, monolevel, icet.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicet (Daily Long Term Mean Ice Thickness at Surface, m)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eb8d_9896_50f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eb8d_9896_50f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb8d_9896_50f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb8d_9896_50f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb8d_9896_50f6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_eb8d_9896_50f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_702c_c4dc_0fa0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_702c_c4dc_0fa0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_702c_c4dc_0fa0/request", "", "public", "Top Dataset, monolevel, icet.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicet (Long Term Mean Monthly Ice Thickness Spread at Surface, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_702c_c4dc_0fa0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_702c_c4dc_0fa0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_702c_c4dc_0fa0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_702c_c4dc_0fa0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_702c_c4dc_0fa0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_702c_c4dc_0fa0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_950a_9aff_d67d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_950a_9aff_d67d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_950a_9aff_d67d/request", "", "public", "Top Dataset, monolevel, icet.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicet (Long Term Mean Monthly Ice Thickness at Surface, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_950a_9aff_d67d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_950a_9aff_d67d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_950a_9aff_d67d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_950a_9aff_d67d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_950a_9aff_d67d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_950a_9aff_d67d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c4d7_485b_c139", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c4d7_485b_c139.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c4d7_485b_c139/request", "", "public", "Top Dataset, monolevel, icet.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicet (Monthly Long Term Ice Thickness at Surface, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c4d7_485b_c139_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c4d7_485b_c139_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c4d7_485b_c139/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c4d7_485b_c139.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c4d7_485b_c139&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c4d7_485b_c139"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d527_ac14_676d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d527_ac14_676d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d527_ac14_676d/request", "", "public", "Top Dataset, monolevel, icet.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicet (Monthly Long Term Ice Thickness Spread at Surface, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d527_ac14_676d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d527_ac14_676d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d527_ac14_676d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d527_ac14_676d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d527_ac14_676d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d527_ac14_676d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_629b_4254_21f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_629b_4254_21f1.graph", "", "", "public", "Top Dataset, monolevel, lcdc.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, lcdc.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nlcdc (Long Term Monthly Mean Low Cloud Area Fraction, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_629b_4254_21f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_629b_4254_21f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_629b_4254_21f1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_629b_4254_21f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef7b_8465_ec85", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef7b_8465_ec85.graph", "", "", "public", "Top Dataset, monolevel, lcdc.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, lcdc.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ef7b_8465_ec85/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ef7b_8465_ec85.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ef7b_8465_ec85&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ef7b_8465_ec85"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e26d_8eed_1fc7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e26d_8eed_1fc7.graph", "", "", "public", "Top Dataset, monolevel, lcdc.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, lcdc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nlcdc (Monthly Low Cloud Area Fraction, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e26d_8eed_1fc7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e26d_8eed_1fc7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e26d_8eed_1fc7&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_e26d_8eed_1fc7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2201_1bd2_5b20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2201_1bd2_5b20.graph", "", "", "public", "Top Dataset, monolevel, lcdc.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, lcdc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2201_1bd2_5b20/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2201_1bd2_5b20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2201_1bd2_5b20&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_2201_1bd2_5b20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a308_27ac_ed4f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a308_27ac_ed4f.graph", "", "", "public", "Top Dataset, monolevel, lftx4.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nlftx4 (Long Term Monthly Mean Best (4-layer) Lifted Index, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a308_27ac_ed4f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a308_27ac_ed4f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a308_27ac_ed4f&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a308_27ac_ed4f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af4a_037d_32f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af4a_037d_32f2.graph", "", "", "public", "Top Dataset, monolevel, lftx4.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_af4a_037d_32f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_af4a_037d_32f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_af4a_037d_32f2&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_af4a_037d_32f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85e5_762a_e001", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85e5_762a_e001.graph", "", "", "public", "Top Dataset, monolevel, lftx4.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, lftx4.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nlftx4 (Monthly Best (4-layer) Lifted Index, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85e5_762a_e001/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85e5_762a_e001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85e5_762a_e001&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_85e5_762a_e001"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_40a2_14ad_a3f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_40a2_14ad_a3f9.graph", "", "", "public", "Top Dataset, monolevel, lftx4.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, lftx4.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_40a2_14ad_a3f9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_40a2_14ad_a3f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_40a2_14ad_a3f9&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_40a2_14ad_a3f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_988b_d56c_420e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_988b_d56c_420e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_988b_d56c_420e/request", "", "public", "Top Dataset, monolevel, lhtfl.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (3-hourly Long Term Mean Latent Heat Net Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_988b_d56c_420e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_988b_d56c_420e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_988b_d56c_420e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_988b_d56c_420e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_988b_d56c_420e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_988b_d56c_420e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5a3_4016_4721", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5a3_4016_4721.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5a3_4016_4721/request", "", "public", "Top Dataset, monolevel, lhtfl.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (3-hourly Long Term Mean Latent Heat Net Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5a3_4016_4721_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5a3_4016_4721_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5a3_4016_4721/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5a3_4016_4721.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5a3_4016_4721&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b5a3_4016_4721"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fb8_2c20_48fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fb8_2c20_48fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8fb8_2c20_48fb/request", "", "public", "Top Dataset, monolevel, lhtfl.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Daily Long Term Mean Latent Heat Net Flux Spread at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8fb8_2c20_48fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8fb8_2c20_48fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8fb8_2c20_48fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8fb8_2c20_48fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8fb8_2c20_48fb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8fb8_2c20_48fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4c3_2641_693a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4c3_2641_693a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a4c3_2641_693a/request", "", "public", "Top Dataset, monolevel, lhtfl.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Daily Long Term Mean Latent Heat Net Flux at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a4c3_2641_693a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a4c3_2641_693a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a4c3_2641_693a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a4c3_2641_693a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a4c3_2641_693a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a4c3_2641_693a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c73_69f2_0a6b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c73_69f2_0a6b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4c73_69f2_0a6b/request", "", "public", "Top Dataset, monolevel, lhtfl.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Long Term Mean Monthly Latent Heat Net Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4c73_69f2_0a6b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4c73_69f2_0a6b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c73_69f2_0a6b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c73_69f2_0a6b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c73_69f2_0a6b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4c73_69f2_0a6b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad7b_4f78_4c24", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad7b_4f78_4c24.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ad7b_4f78_4c24/request", "", "public", "Top Dataset, monolevel, lhtfl.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Long Term Mean Monthly Latent Heat Net Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ad7b_4f78_4c24_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ad7b_4f78_4c24_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ad7b_4f78_4c24/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ad7b_4f78_4c24.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ad7b_4f78_4c24&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ad7b_4f78_4c24"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ec2_1f02_c805", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ec2_1f02_c805.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2ec2_1f02_c805/request", "", "public", "Top Dataset, monolevel, lhtfl.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Monthly Long Term Latent Heat Net Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2ec2_1f02_c805_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2ec2_1f02_c805_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2ec2_1f02_c805/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2ec2_1f02_c805.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2ec2_1f02_c805&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2ec2_1f02_c805"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4db_3875_b614", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4db_3875_b614.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d4db_3875_b614/request", "", "public", "Top Dataset, monolevel, lhtfl.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Monthly Long Term Latent Heat Net Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d4db_3875_b614_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d4db_3875_b614_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d4db_3875_b614/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d4db_3875_b614.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d4db_3875_b614&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d4db_3875_b614"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_caf4_13b7_665e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_caf4_13b7_665e.graph", "", "", "public", "Top Dataset, monolevel, lhtfl.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, lhtfl.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nlhtfl (Long Term Monthly Mean Latent Heat Flux at Surface, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_caf4_13b7_665e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_caf4_13b7_665e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_caf4_13b7_665e&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_caf4_13b7_665e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d919_d573_103d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d919_d573_103d.graph", "", "", "public", "Top Dataset, monolevel, lhtfl.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, lhtfl.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d919_d573_103d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d919_d573_103d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d919_d573_103d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_d919_d573_103d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57b0_607d_a216", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57b0_607d_a216.graph", "", "", "public", "Top Dataset, monolevel, lhtfl.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, lhtfl.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nlhtfl (Monthly Latent Heat Flux at Surface, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_57b0_607d_a216/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_57b0_607d_a216.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_57b0_607d_a216&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_57b0_607d_a216"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c636_21cd_713e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c636_21cd_713e.graph", "", "", "public", "Top Dataset, monolevel, lhtfl.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, lhtfl.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c636_21cd_713e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c636_21cd_713e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c636_21cd_713e&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_c636_21cd_713e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1589_3334_9341", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1589_3334_9341.graph", "", "", "public", "Top Dataset, monolevel, mcdc.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, mcdc.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nmcdc (Long Term Monthly Mean Medium Cloud Area Fraction, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1589_3334_9341/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1589_3334_9341.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1589_3334_9341&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_1589_3334_9341"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ad8_858e_43b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ad8_858e_43b5.graph", "", "", "public", "Top Dataset, monolevel, mcdc.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, mcdc.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ad8_858e_43b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ad8_858e_43b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ad8_858e_43b5&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_5ad8_858e_43b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_920d_4195_1cfa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_920d_4195_1cfa.graph", "", "", "public", "Top Dataset, monolevel, mcdc.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, mcdc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nmcdc (Monthly Medium Cloud Area Fraction, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_920d_4195_1cfa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_920d_4195_1cfa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_920d_4195_1cfa&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_920d_4195_1cfa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c865_6ff1_a8be", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c865_6ff1_a8be.graph", "", "", "public", "Top Dataset, monolevel, mcdc.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, mcdc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c865_6ff1_a8be/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c865_6ff1_a8be.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c865_6ff1_a8be&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_c865_6ff1_a8be"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c67d_0779_1e1d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c67d_0779_1e1d.graph", "", "", "public", "Top Dataset, monolevel, mconv.hl1.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, mconv.hl1.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nmconv (Long Term Monthly Mean Horizontal Moisture Divergence, kg/kg/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c67d_0779_1e1d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c67d_0779_1e1d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c67d_0779_1e1d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_c67d_0779_1e1d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ee7_6e10_7901", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ee7_6e10_7901.graph", "", "", "public", "Top Dataset, monolevel, mconv.hl1.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, mconv.hl1.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ee7_6e10_7901/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ee7_6e10_7901.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ee7_6e10_7901&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7ee7_6e10_7901"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58d3_cd43_502c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58d3_cd43_502c.graph", "", "", "public", "Top Dataset, monolevel, mconv.hl1.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, mconv.hl1.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nmconv (Monthly Horizontal Moisture Divergence, kg/kg/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_58d3_cd43_502c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_58d3_cd43_502c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_58d3_cd43_502c&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_58d3_cd43_502c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8411_ceef_337e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8411_ceef_337e.graph", "", "", "public", "Top Dataset, monolevel, mconv.hl1.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, mconv.hl1.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8411_ceef_337e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8411_ceef_337e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8411_ceef_337e&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_8411_ceef_337e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ade_42c8_313d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ade_42c8_313d.graph", "", "", "public", "Top Dataset, monolevel, mslet.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, mslet.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nmslet (Long Term Monthly Mean Mean Sea Level (ETA model) Pressure, Pa)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9ade_42c8_313d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9ade_42c8_313d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9ade_42c8_313d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_9ade_42c8_313d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c363_a894_2300", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c363_a894_2300.graph", "", "", "public", "Top Dataset, monolevel, mslet.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, mslet.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c363_a894_2300/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c363_a894_2300.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c363_a894_2300&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_c363_a894_2300"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0247_a829_cb62", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0247_a829_cb62.graph", "", "", "public", "Top Dataset, monolevel, mslet.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, mslet.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nmslet (Monthly Mean Sea Level (ETA model) Pressure, Pa)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0247_a829_cb62/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0247_a829_cb62.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0247_a829_cb62&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_0247_a829_cb62"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c482_1514_5be1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c482_1514_5be1.graph", "", "", "public", "Top Dataset, monolevel, mslet.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, mslet.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c482_1514_5be1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c482_1514_5be1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c482_1514_5be1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_c482_1514_5be1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbcb_ff47_19e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbcb_ff47_19e2.graph", "", "", "public", "Top Dataset, monolevel, mstav.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, mstav.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nmstav (Long Term Monthly Mean Moisture Availability, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fbcb_ff47_19e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fbcb_ff47_19e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fbcb_ff47_19e2&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_fbcb_ff47_19e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce92_8f3c_02dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce92_8f3c_02dd.graph", "", "", "public", "Top Dataset, monolevel, mstav.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, mstav.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ce92_8f3c_02dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ce92_8f3c_02dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ce92_8f3c_02dd&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ce92_8f3c_02dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6767_ab5c_16aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6767_ab5c_16aa.graph", "", "", "public", "Top Dataset, monolevel, mstav.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, mstav.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nmstav (Monthly Moisture Availability, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6767_ab5c_16aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6767_ab5c_16aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6767_ab5c_16aa&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_6767_ab5c_16aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d1f_d63d_5b65", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d1f_d63d_5b65.graph", "", "", "public", "Top Dataset, monolevel, mstav.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, mstav.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d1f_d63d_5b65/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d1f_d63d_5b65.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d1f_d63d_5b65&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_6d1f_d63d_5b65"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec0a_fc79_7ece", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec0a_fc79_7ece.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ec0a_fc79_7ece/request", "", "public", "Top Dataset, monolevel, omega.sig995.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Long Term Mean 6-hourly Omega at sigma level 0.995, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ec0a_fc79_7ece_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ec0a_fc79_7ece_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ec0a_fc79_7ece/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ec0a_fc79_7ece.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ec0a_fc79_7ece&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ec0a_fc79_7ece"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6113_ed20_eb3a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6113_ed20_eb3a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6113_ed20_eb3a/request", "", "public", "Top Dataset, monolevel, omega.sig995.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Long Term Mean 6-hourly Omega at sigma level 0.995, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6113_ed20_eb3a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6113_ed20_eb3a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6113_ed20_eb3a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6113_ed20_eb3a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6113_ed20_eb3a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6113_ed20_eb3a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a5f_7785_2e87", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a5f_7785_2e87.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9a5f_7785_2e87/request", "", "public", "Top Dataset, monolevel, omega.sig995.day.1968-1996.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Long Term Mean Daily Omega at sigma level 0.995, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9a5f_7785_2e87_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9a5f_7785_2e87_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9a5f_7785_2e87/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9a5f_7785_2e87.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9a5f_7785_2e87&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9a5f_7785_2e87"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4046_00d3_8812", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4046_00d3_8812.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4046_00d3_8812/request", "", "public", "Top Dataset, monolevel, omega.sig995.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Daily Long Term Mean Omega at sigma level 0.995, Pascal/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4046_00d3_8812_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4046_00d3_8812_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4046_00d3_8812/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4046_00d3_8812.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4046_00d3_8812&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4046_00d3_8812"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e8f8_ff84_dc0e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e8f8_ff84_dc0e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e8f8_ff84_dc0e/request", "", "public", "Top Dataset, monolevel, omega.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Daily Long Term Mean Omega at sigma level 0.995, Pascal/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e8f8_ff84_dc0e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e8f8_ff84_dc0e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e8f8_ff84_dc0e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e8f8_ff84_dc0e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e8f8_ff84_dc0e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e8f8_ff84_dc0e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ec2_eaa6_1f30", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ec2_eaa6_1f30.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ec2_eaa6_1f30/request", "", "public", "Top Dataset, monolevel, omega.sig995.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Long Term Mean Monthly Omega at sigma level 0.995, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ec2_eaa6_1f30_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ec2_eaa6_1f30_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ec2_eaa6_1f30/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ec2_eaa6_1f30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ec2_eaa6_1f30&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4ec2_eaa6_1f30"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_810c_3642_d15f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_810c_3642_d15f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_810c_3642_d15f/request", "", "public", "Top Dataset, monolevel, omega.sig995.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Monthly Long Term Omega at sigma level 0.995, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_810c_3642_d15f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_810c_3642_d15f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_810c_3642_d15f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_810c_3642_d15f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_810c_3642_d15f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_810c_3642_d15f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c613_9bd7_4b55", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c613_9bd7_4b55.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c613_9bd7_4b55/request", "", "public", "Top Dataset, monolevel, omega.sig995.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Monthly Long Term Omega at sigma level 0.995, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c613_9bd7_4b55_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c613_9bd7_4b55_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c613_9bd7_4b55/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c613_9bd7_4b55.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c613_9bd7_4b55&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c613_9bd7_4b55"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5561_7721_eda3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5561_7721_eda3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5561_7721_eda3/request", "", "public", "Top Dataset, monolevel, omega.sig995.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Monthly Omega at sigma level 0.995, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5561_7721_eda3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5561_7721_eda3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5561_7721_eda3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5561_7721_eda3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5561_7721_eda3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5561_7721_eda3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1246_dd8f_822d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1246_dd8f_822d.graph", "", "", "public", "Top Dataset, monolevel, pevap.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, pevap.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\npevap (Long Term Monthly Mean accumulated potential evaporation at Surface, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1246_dd8f_822d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1246_dd8f_822d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1246_dd8f_822d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_1246_dd8f_822d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c2c_8a02_8c7e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c2c_8a02_8c7e.graph", "", "", "public", "Top Dataset, monolevel, pevap.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, pevap.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c2c_8a02_8c7e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c2c_8a02_8c7e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c2c_8a02_8c7e&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_9c2c_8a02_8c7e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd53_41c4_d1cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd53_41c4_d1cb.graph", "", "", "public", "Top Dataset, monolevel, pevap.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, pevap.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\npevap (Monthly accumulated potential evaporation at Surface, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dd53_41c4_d1cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dd53_41c4_d1cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dd53_41c4_d1cb&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_dd53_41c4_d1cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99a4_30b1_91e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99a4_30b1_91e5.graph", "", "", "public", "Top Dataset, monolevel, pevap.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, pevap.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99a4_30b1_91e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99a4_30b1_91e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99a4_30b1_91e5&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_99a4_30b1_91e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cd8_69bd_6afe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cd8_69bd_6afe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7cd8_69bd_6afe/request", "", "public", "Top Dataset, monolevel, pevpr.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (3-hourly Long Term Mean Potential Evaporation Rate Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7cd8_69bd_6afe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7cd8_69bd_6afe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7cd8_69bd_6afe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7cd8_69bd_6afe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7cd8_69bd_6afe&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7cd8_69bd_6afe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca2f_b183_bf22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca2f_b183_bf22.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca2f_b183_bf22/request", "", "public", "Top Dataset, monolevel, pevpr.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (3-hourly Long Term Mean Potential Evaporation Rate at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca2f_b183_bf22_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca2f_b183_bf22_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca2f_b183_bf22/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca2f_b183_bf22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca2f_b183_bf22&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ca2f_b183_bf22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ae7_5849_373e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ae7_5849_373e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6ae7_5849_373e/request", "", "public", "Top Dataset, monolevel, pevpr.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Daily Long Term Mean Potential Evaporation Rate at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6ae7_5849_373e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6ae7_5849_373e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ae7_5849_373e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ae7_5849_373e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ae7_5849_373e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6ae7_5849_373e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b75e_1fd5_2a1c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b75e_1fd5_2a1c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b75e_1fd5_2a1c/request", "", "public", "Top Dataset, monolevel, pevpr.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Daily Long Term Mean Potential Evaporation Rate Spread at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b75e_1fd5_2a1c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b75e_1fd5_2a1c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b75e_1fd5_2a1c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b75e_1fd5_2a1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b75e_1fd5_2a1c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b75e_1fd5_2a1c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98df_24be_cfb6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98df_24be_cfb6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_98df_24be_cfb6/request", "", "public", "Top Dataset, monolevel, pevpr.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Long Term Mean Monthly Potential Evaporation Rate at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_98df_24be_cfb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_98df_24be_cfb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_98df_24be_cfb6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_98df_24be_cfb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_98df_24be_cfb6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_98df_24be_cfb6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aabe_b66e_b1f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aabe_b66e_b1f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aabe_b66e_b1f9/request", "", "public", "Top Dataset, monolevel, pevpr.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Long Term Mean Monthly Potential Evaporation Rate Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aabe_b66e_b1f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aabe_b66e_b1f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aabe_b66e_b1f9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aabe_b66e_b1f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aabe_b66e_b1f9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_aabe_b66e_b1f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_050a_40cd_5d40", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_050a_40cd_5d40.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_050a_40cd_5d40/request", "", "public", "Top Dataset, monolevel, pevpr.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Monthly Long Term Potential Evaporation Rate at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_050a_40cd_5d40_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_050a_40cd_5d40_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_050a_40cd_5d40/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_050a_40cd_5d40.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_050a_40cd_5d40&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_050a_40cd_5d40"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1377_9496_f378", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1377_9496_f378.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1377_9496_f378/request", "", "public", "Top Dataset, monolevel, pevpr.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Monthly Long Term Potential Evaporation Rate Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1377_9496_f378_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1377_9496_f378_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1377_9496_f378/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1377_9496_f378.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1377_9496_f378&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1377_9496_f378"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccca_66a6_985b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccca_66a6_985b.graph", "", "", "public", "Top Dataset, monolevel, pottmp.hl1.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, pottmp.hl1.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\npottmp (Long Term Monthly Mean Potential Temperature, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ccca_66a6_985b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ccca_66a6_985b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ccca_66a6_985b&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ccca_66a6_985b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1829_a655_2301", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1829_a655_2301.graph", "", "", "public", "Top Dataset, monolevel, pottmp.hl1.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, pottmp.hl1.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1829_a655_2301/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1829_a655_2301.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1829_a655_2301&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_1829_a655_2301"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e19_c940_4ed1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e19_c940_4ed1.graph", "", "", "public", "Top Dataset, monolevel, pottmp.hl1.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, pottmp.hl1.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\npottmp (Monthly Potential Temperature, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e19_c940_4ed1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e19_c940_4ed1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e19_c940_4ed1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7e19_c940_4ed1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_75a8_fe4f_01d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_75a8_fe4f_01d7.graph", "", "", "public", "Top Dataset, monolevel, pottmp.hl1.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, pottmp.hl1.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_75a8_fe4f_01d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_75a8_fe4f_01d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_75a8_fe4f_01d7&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_75a8_fe4f_01d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0da1_3e23_35ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0da1_3e23_35ba.graph", "", "", "public", "Top Dataset, monolevel, pottmp.sfc.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, pottmp.sfc.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\npottmp (Long Term Monthly Mean potential temperature at Surface, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0da1_3e23_35ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0da1_3e23_35ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0da1_3e23_35ba&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_0da1_3e23_35ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b43_28cb_d472", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b43_28cb_d472.graph", "", "", "public", "Top Dataset, monolevel, pottmp.sfc.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, pottmp.sfc.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b43_28cb_d472/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b43_28cb_d472.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b43_28cb_d472&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_6b43_28cb_d472"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44f9_d80f_850f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44f9_d80f_850f.graph", "", "", "public", "Top Dataset, monolevel, pottmp.sfc.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, pottmp.sfc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\npottmp (Monthly potential temperature at Surface, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_44f9_d80f_850f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_44f9_d80f_850f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_44f9_d80f_850f&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_44f9_d80f_850f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3514_40e7_79fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3514_40e7_79fd.graph", "", "", "public", "Top Dataset, monolevel, pottmp.sfc.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, pottmp.sfc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3514_40e7_79fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3514_40e7_79fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3514_40e7_79fd&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_3514_40e7_79fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dd4_13b1_f3a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dd4_13b1_f3a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5dd4_13b1_f3a6/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean 6-hourly Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5dd4_13b1_f3a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5dd4_13b1_f3a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5dd4_13b1_f3a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5dd4_13b1_f3a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5dd4_13b1_f3a6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5dd4_13b1_f3a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f89_dcbc_79f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f89_dcbc_79f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f89_dcbc_79f5/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean 6-hourly Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f89_dcbc_79f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f89_dcbc_79f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f89_dcbc_79f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f89_dcbc_79f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f89_dcbc_79f5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7f89_dcbc_79f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b0c_0a81_dcbb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b0c_0a81_dcbb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8b0c_0a81_dcbb/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.day.1968-1996.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean Daily Potential Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8b0c_0a81_dcbb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8b0c_0a81_dcbb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8b0c_0a81_dcbb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8b0c_0a81_dcbb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8b0c_0a81_dcbb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8b0c_0a81_dcbb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3534_85a9_6208", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3534_85a9_6208.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3534_85a9_6208/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Daily Long Term Mean Potential Temperature at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3534_85a9_6208_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3534_85a9_6208_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3534_85a9_6208/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3534_85a9_6208.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3534_85a9_6208&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3534_85a9_6208"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0cc7_0760_5bc1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0cc7_0760_5bc1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0cc7_0760_5bc1/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2c), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Daily Long Term Mean Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0cc7_0760_5bc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0cc7_0760_5bc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0cc7_0760_5bc1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0cc7_0760_5bc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0cc7_0760_5bc1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0cc7_0760_5bc1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_737f_e51a_31f8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_737f_e51a_31f8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_737f_e51a_31f8/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Daily Long Term Mean Potential Temperature at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_737f_e51a_31f8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_737f_e51a_31f8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_737f_e51a_31f8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_737f_e51a_31f8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_737f_e51a_31f8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_737f_e51a_31f8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_553c_46e1_0e22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_553c_46e1_0e22.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_553c_46e1_0e22/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean Monthly Potential Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_553c_46e1_0e22_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_553c_46e1_0e22_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_553c_46e1_0e22/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_553c_46e1_0e22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_553c_46e1_0e22&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_553c_46e1_0e22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b456_f8d1_d30c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b456_f8d1_d30c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b456_f8d1_d30c/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Long Term Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b456_f8d1_d30c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b456_f8d1_d30c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b456_f8d1_d30c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b456_f8d1_d30c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b456_f8d1_d30c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b456_f8d1_d30c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_644e_fe05_42b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_644e_fe05_42b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_644e_fe05_42b9/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Long Term Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_644e_fe05_42b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_644e_fe05_42b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_644e_fe05_42b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_644e_fe05_42b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_644e_fe05_42b9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_644e_fe05_42b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ace_48ac_70b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ace_48ac_70b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ace_48ac_70b6/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Potential Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ace_48ac_70b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ace_48ac_70b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ace_48ac_70b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ace_48ac_70b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ace_48ac_70b6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5ace_48ac_70b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba3b_a1e9_4d18", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba3b_a1e9_4d18.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ba3b_a1e9_4d18/request", "", "public", "Top Dataset, monolevel, pr wtr.eatm.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Long Term Mean 6-hourly Precipitable Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ba3b_a1e9_4d18_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ba3b_a1e9_4d18_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ba3b_a1e9_4d18/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ba3b_a1e9_4d18.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ba3b_a1e9_4d18&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ba3b_a1e9_4d18"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3187_30c3_aa3f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3187_30c3_aa3f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3187_30c3_aa3f/request", "", "public", "Top Dataset, monolevel, pr wtr.eatm.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Long Term Mean 6-hourly Precipitable Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3187_30c3_aa3f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3187_30c3_aa3f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3187_30c3_aa3f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3187_30c3_aa3f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3187_30c3_aa3f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3187_30c3_aa3f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4667_20fe_05b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4667_20fe_05b1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4667_20fe_05b1/request", "", "public", "Top Dataset, monolevel, pr wtr.eatm.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (3-hourly Long Term Mean Precipitable Water Spread for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4667_20fe_05b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4667_20fe_05b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4667_20fe_05b1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4667_20fe_05b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4667_20fe_05b1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4667_20fe_05b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ac6_1377_9e38", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ac6_1377_9e38.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ac6_1377_9e38/request", "", "public", "Top Dataset, monolevel, pr wtr.eatm.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (3-hourly Long Term Mean Precipitable Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ac6_1377_9e38_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ac6_1377_9e38_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ac6_1377_9e38/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ac6_1377_9e38.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ac6_1377_9e38&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8ac6_1377_9e38"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98d6_e809_51ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98d6_e809_51ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_98d6_e809_51ff/request", "", "public", "Top Dataset, monolevel, pr wtr.eatm.day.1968-1996.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Long Term Mean Daily Precipitable Water for entire atmosphere, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_98d6_e809_51ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_98d6_e809_51ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_98d6_e809_51ff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_98d6_e809_51ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_98d6_e809_51ff&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_98d6_e809_51ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2523_3564_e585", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2523_3564_e585.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2523_3564_e585/request", "", "public", "Top Dataset, monolevel, pr wtr.eatm.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Daily Long Term Mean Precipitable Water for entire atmosphere, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2523_3564_e585_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2523_3564_e585_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2523_3564_e585/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2523_3564_e585.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2523_3564_e585&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2523_3564_e585"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3677_812e_3bab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3677_812e_3bab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3677_812e_3bab/request", "", "public", "Top Dataset, monolevel, pr wtr.eatm.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Daily Long Term Mean Precipitable Water Spread for entire atmosphere, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3677_812e_3bab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3677_812e_3bab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3677_812e_3bab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3677_812e_3bab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3677_812e_3bab&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3677_812e_3bab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da3b_ae0e_6950", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da3b_ae0e_6950.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da3b_ae0e_6950/request", "", "public", "Top Dataset, monolevel, pr wtr.eatm.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Daily Long Term Mean Precipitable Water for entire atmosphere, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da3b_ae0e_6950_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da3b_ae0e_6950_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da3b_ae0e_6950/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da3b_ae0e_6950.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da3b_ae0e_6950&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_da3b_ae0e_6950"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a472_41f6_4e1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a472_41f6_4e1e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a472_41f6_4e1e/request", "", "public", "Top Dataset, monolevel, pr wtr.eatm.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Daily Long Term Mean Precipitable Water for entire atmosphere, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a472_41f6_4e1e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a472_41f6_4e1e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a472_41f6_4e1e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a472_41f6_4e1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a472_41f6_4e1e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a472_41f6_4e1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a31_baa6_91d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a31_baa6_91d2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a31_baa6_91d2/request", "", "public", "Top Dataset, monolevel, pr wtr.eatm.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Long Term Mean Monthly Precipitable Water Spread for entire atmosphere, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a31_baa6_91d2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a31_baa6_91d2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a31_baa6_91d2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a31_baa6_91d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a31_baa6_91d2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3a31_baa6_91d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8383_9c1a_b50b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8383_9c1a_b50b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8383_9c1a_b50b/request", "", "public", "Top Dataset, monolevel, pr wtr.eatm.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Long Term Mean Monthly Precipitable Water for entire atmosphere, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8383_9c1a_b50b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8383_9c1a_b50b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8383_9c1a_b50b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8383_9c1a_b50b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8383_9c1a_b50b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8383_9c1a_b50b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d24d_a534_bc8b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d24d_a534_bc8b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d24d_a534_bc8b/request", "", "public", "Top Dataset, monolevel, pr wtr.eatm.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Long Term Mean Monthly Precipitable Water for entire atmosphere, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d24d_a534_bc8b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d24d_a534_bc8b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d24d_a534_bc8b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d24d_a534_bc8b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d24d_a534_bc8b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d24d_a534_bc8b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f6f_f67c_2b83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f6f_f67c_2b83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f6f_f67c_2b83/request", "", "public", "Top Dataset, monolevel, pr wtr.eatm.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Long Term Precipitable Water Spread for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f6f_f67c_2b83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f6f_f67c_2b83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f6f_f67c_2b83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f6f_f67c_2b83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f6f_f67c_2b83&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1f6f_f67c_2b83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b15_d34e_1bc6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b15_d34e_1bc6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4b15_d34e_1bc6/request", "", "public", "Top Dataset, monolevel, pr wtr.eatm.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Long Term Precipitable Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4b15_d34e_1bc6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4b15_d34e_1bc6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4b15_d34e_1bc6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4b15_d34e_1bc6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4b15_d34e_1bc6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4b15_d34e_1bc6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_137e_6a76_0860", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_137e_6a76_0860.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_137e_6a76_0860/request", "", "public", "Top Dataset, monolevel, pr wtr.eatm.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Long Term Precipitable Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_137e_6a76_0860_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_137e_6a76_0860_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_137e_6a76_0860/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_137e_6a76_0860.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_137e_6a76_0860&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_137e_6a76_0860"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26d8_3373_ac22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26d8_3373_ac22.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_26d8_3373_ac22/request", "", "public", "Top Dataset, monolevel, pr wtr.eatm.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Long Term Precipitable Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_26d8_3373_ac22_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_26d8_3373_ac22_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_26d8_3373_ac22/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_26d8_3373_ac22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_26d8_3373_ac22&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_26d8_3373_ac22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c80d_2af6_dae8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c80d_2af6_dae8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c80d_2af6_dae8/request", "", "public", "Top Dataset, monolevel, pr wtr.eatm.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Precipitable Water for entire atmosphere, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c80d_2af6_dae8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c80d_2af6_dae8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c80d_2af6_dae8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c80d_2af6_dae8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c80d_2af6_dae8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c80d_2af6_dae8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7361_7772_f6e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7361_7772_f6e1.graph", "", "", "public", "Top Dataset, monolevel, pr wtr.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\npr_wtr (Long Term Monthly Mean Precipitable Water for entire atmosphere, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7361_7772_f6e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7361_7772_f6e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7361_7772_f6e1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7361_7772_f6e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7959_ed26_136a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7959_ed26_136a.graph", "", "", "public", "Top Dataset, monolevel, pr wtr.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7959_ed26_136a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7959_ed26_136a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7959_ed26_136a&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7959_ed26_136a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56d2_deed_3258", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56d2_deed_3258.graph", "", "", "public", "Top Dataset, monolevel, pr wtr.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, pr wtr.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\npr_wtr (Monthly Precipitable Water for entire atmosphere, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_56d2_deed_3258/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_56d2_deed_3258.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_56d2_deed_3258&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_56d2_deed_3258"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_182b_e75e_9aa1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_182b_e75e_9aa1.graph", "", "", "public", "Top Dataset, monolevel, pr wtr.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, pr wtr.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_182b_e75e_9aa1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_182b_e75e_9aa1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_182b_e75e_9aa1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_182b_e75e_9aa1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_27eb_dc40_3d80", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_27eb_dc40_3d80.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_27eb_dc40_3d80/request", "", "public", "Top Dataset, monolevel, prate.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (3-hourly Long Term Mean Precipitation Rate at surface, kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_27eb_dc40_3d80_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_27eb_dc40_3d80_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_27eb_dc40_3d80/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_27eb_dc40_3d80.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_27eb_dc40_3d80&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_27eb_dc40_3d80"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0a1_bfa3_9fc3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0a1_bfa3_9fc3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a0a1_bfa3_9fc3/request", "", "public", "Top Dataset, monolevel, prate.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (3-hourly Long Term Mean Precipitation Rate Spread at surface, kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a0a1_bfa3_9fc3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a0a1_bfa3_9fc3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a0a1_bfa3_9fc3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a0a1_bfa3_9fc3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a0a1_bfa3_9fc3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a0a1_bfa3_9fc3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_27ad_6bee_2e0f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_27ad_6bee_2e0f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_27ad_6bee_2e0f/request", "", "public", "Top Dataset, monolevel, prate.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Daily Long Term Mean Precipitation Rate at surface, kg/m^2/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_27ad_6bee_2e0f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_27ad_6bee_2e0f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_27ad_6bee_2e0f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_27ad_6bee_2e0f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_27ad_6bee_2e0f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_27ad_6bee_2e0f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd4b_4a4e_7c59", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd4b_4a4e_7c59.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cd4b_4a4e_7c59/request", "", "public", "Top Dataset, monolevel, prate.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Daily Long Term Mean Precipitation Rate Spread at surface, kg/m^2/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cd4b_4a4e_7c59_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cd4b_4a4e_7c59_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cd4b_4a4e_7c59/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cd4b_4a4e_7c59.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cd4b_4a4e_7c59&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_cd4b_4a4e_7c59"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fcd3_da82_5211", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fcd3_da82_5211.graph", "", "", "public", "Top Dataset, monolevel, prate.day.ltm (Daily NARR) [time][y][x], 0001", "Daily NARR (Top Dataset, monolevel, prate.day.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nprate (Daily long term mean precipitation rate at Surface: Smoothed, kg/m^2/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fcd3_da82_5211/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fcd3_da82_5211.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fcd3_da82_5211&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_fcd3_da82_5211"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0e7_e81e_e2b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0e7_e81e_e2b5.graph", "", "", "public", "Top Dataset, monolevel, prate.day.ltm (Daily NARR) [y][x]", "Daily NARR (Top Dataset, monolevel, prate.day.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d0e7_e81e_e2b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d0e7_e81e_e2b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d0e7_e81e_e2b5&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_d0e7_e81e_e2b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01b6_c939_a65f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01b6_c939_a65f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_01b6_c939_a65f/request", "", "public", "Top Dataset, monolevel, prate.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Long Term Mean Monthly Precipitation Rate at surface, kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_01b6_c939_a65f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_01b6_c939_a65f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_01b6_c939_a65f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_01b6_c939_a65f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_01b6_c939_a65f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_01b6_c939_a65f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e3c2_c211_6f88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e3c2_c211_6f88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e3c2_c211_6f88/request", "", "public", "Top Dataset, monolevel, prate.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Long Term Mean Monthly Precipitation Rate Spread at surface, kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e3c2_c211_6f88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e3c2_c211_6f88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e3c2_c211_6f88/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e3c2_c211_6f88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e3c2_c211_6f88&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e3c2_c211_6f88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_500d_a063_e44c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_500d_a063_e44c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_500d_a063_e44c/request", "", "public", "Top Dataset, monolevel, prate.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Monthly Long Term Precipitation Rate at surface, kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_500d_a063_e44c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_500d_a063_e44c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_500d_a063_e44c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_500d_a063_e44c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_500d_a063_e44c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_500d_a063_e44c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d6b_2350_5700", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d6b_2350_5700.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7d6b_2350_5700/request", "", "public", "Top Dataset, monolevel, prate.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Monthly Long Term Precipitation Rate Spread at surface, kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7d6b_2350_5700_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7d6b_2350_5700_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7d6b_2350_5700/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7d6b_2350_5700.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7d6b_2350_5700&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7d6b_2350_5700"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14c2_0150_cf50", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14c2_0150_cf50.graph", "", "", "public", "Top Dataset, monolevel, prate.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, prate.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nprate (Monthly Long Term Mean precipitation rate at Surface, kg/m^2/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_14c2_0150_cf50/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_14c2_0150_cf50.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_14c2_0150_cf50&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_14c2_0150_cf50"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_47ed_b7fe_4d81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_47ed_b7fe_4d81.graph", "", "", "public", "Top Dataset, monolevel, prate.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, prate.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_47ed_b7fe_4d81/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_47ed_b7fe_4d81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_47ed_b7fe_4d81&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_47ed_b7fe_4d81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a569_a1fc_4fa9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a569_a1fc_4fa9.graph", "", "", "public", "Top Dataset, monolevel, prate.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, prate.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nprate (Monthly precipitation rate at Surface, kg/m^2/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a569_a1fc_4fa9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a569_a1fc_4fa9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a569_a1fc_4fa9&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a569_a1fc_4fa9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b985_3027_9c4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b985_3027_9c4d.graph", "", "", "public", "Top Dataset, monolevel, prate.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, prate.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b985_3027_9c4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b985_3027_9c4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b985_3027_9c4d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_b985_3027_9c4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d9a_4e19_a035", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d9a_4e19_a035.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d9a_4e19_a035/request", "", "public", "Top Dataset, monolevel, pres.sfc.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean 6-hourly Pressure at Surface, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d9a_4e19_a035_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d9a_4e19_a035_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d9a_4e19_a035/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d9a_4e19_a035.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d9a_4e19_a035&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4d9a_4e19_a035"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_841f_09df_067e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_841f_09df_067e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_841f_09df_067e/request", "", "public", "Top Dataset, monolevel, pres.sfc.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean Daily Pressure at Surface, Pa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_841f_09df_067e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_841f_09df_067e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_841f_09df_067e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_841f_09df_067e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_841f_09df_067e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_841f_09df_067e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d2c_b81a_7acf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d2c_b81a_7acf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d2c_b81a_7acf/request", "", "public", "Top Dataset, monolevel, pres.sfc.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Daily Long Term Mean Pressure at Surface, Pa)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d2c_b81a_7acf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d2c_b81a_7acf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d2c_b81a_7acf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d2c_b81a_7acf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d2c_b81a_7acf&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8d2c_b81a_7acf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_080e_66d5_19a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_080e_66d5_19a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_080e_66d5_19a6/request", "", "public", "Top Dataset, monolevel, pres.sfc.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean Monthly Pressure at Surface, Pa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_080e_66d5_19a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_080e_66d5_19a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_080e_66d5_19a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_080e_66d5_19a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_080e_66d5_19a6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_080e_66d5_19a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6942_c311_ca71", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6942_c311_ca71.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6942_c311_ca71/request", "", "public", "Top Dataset, monolevel, pres.sfc.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Pressure at Surface, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6942_c311_ca71_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6942_c311_ca71_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6942_c311_ca71/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6942_c311_ca71.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6942_c311_ca71&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6942_c311_ca71"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_334b_f8ad_d93d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_334b_f8ad_d93d.graph", "", "", "public", "Top Dataset, monolevel, pres.sfc.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, pres.sfc.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\npres (Monthly pressure at Surface, Pa)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_334b_f8ad_d93d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_334b_f8ad_d93d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_334b_f8ad_d93d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_334b_f8ad_d93d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5a3_7874_1e6b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5a3_7874_1e6b.graph", "", "", "public", "Top Dataset, monolevel, pres.sfc.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, pres.sfc.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5a3_7874_1e6b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5a3_7874_1e6b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5a3_7874_1e6b&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_c5a3_7874_1e6b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb92_2f43_86db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb92_2f43_86db.graph", "", "", "public", "Top Dataset, monolevel, pres.sfc.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, pres.sfc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\npres (Monthly pressure at Surface, Pa)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb92_2f43_86db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb92_2f43_86db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb92_2f43_86db&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_fb92_2f43_86db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2058_d452_e689", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2058_d452_e689.graph", "", "", "public", "Top Dataset, monolevel, pres.sfc.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, pres.sfc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2058_d452_e689/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2058_d452_e689.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2058_d452_e689&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_2058_d452_e689"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f48_7c26_0240", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f48_7c26_0240.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f48_7c26_0240/request", "", "public", "Top Dataset, monolevel, pres.tropo.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean 6-hourly Pressure at Tropopause, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f48_7c26_0240_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f48_7c26_0240_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f48_7c26_0240/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f48_7c26_0240.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f48_7c26_0240&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2f48_7c26_0240"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3bad_2f0a_0a12", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3bad_2f0a_0a12.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3bad_2f0a_0a12/request", "", "public", "Top Dataset, monolevel, pres.tropo.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean 6-hourly Pressure at Tropopause, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3bad_2f0a_0a12_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3bad_2f0a_0a12_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3bad_2f0a_0a12/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3bad_2f0a_0a12.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3bad_2f0a_0a12&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3bad_2f0a_0a12"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a211_4b1c_1166", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a211_4b1c_1166.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a211_4b1c_1166/request", "", "public", "Top Dataset, monolevel, pres.tropo.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean Daily Pressure at Tropopause, Pa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a211_4b1c_1166_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a211_4b1c_1166_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a211_4b1c_1166/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a211_4b1c_1166.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a211_4b1c_1166&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a211_4b1c_1166"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21c5_e841_aa74", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21c5_e841_aa74.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_21c5_e841_aa74/request", "", "public", "Top Dataset, monolevel, pres.tropo.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Daily Long Term Mean Pressure at Tropopause, Pa)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_21c5_e841_aa74_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_21c5_e841_aa74_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_21c5_e841_aa74/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_21c5_e841_aa74.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_21c5_e841_aa74&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_21c5_e841_aa74"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c02_9aa5_7438", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c02_9aa5_7438.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3c02_9aa5_7438/request", "", "public", "Top Dataset, monolevel, pres.tropo.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Daily Long Term Mean Pressure at Tropopause, Pa)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3c02_9aa5_7438_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3c02_9aa5_7438_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c02_9aa5_7438/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c02_9aa5_7438.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c02_9aa5_7438&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3c02_9aa5_7438"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c8c8_d357_55cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c8c8_d357_55cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c8c8_d357_55cb/request", "", "public", "Top Dataset, monolevel, pres.tropo.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean Monthly Pressure at Tropopause, Pa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c8c8_d357_55cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c8c8_d357_55cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c8c8_d357_55cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c8c8_d357_55cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c8c8_d357_55cb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c8c8_d357_55cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5119_ba34_0040", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5119_ba34_0040.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5119_ba34_0040/request", "", "public", "Top Dataset, monolevel, pres.tropo.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Pressure at Tropopause, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5119_ba34_0040_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5119_ba34_0040_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5119_ba34_0040/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5119_ba34_0040.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5119_ba34_0040&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5119_ba34_0040"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0e3_435f_74a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0e3_435f_74a6.graph", "", "", "public", "Top Dataset, monolevel, pres.tropo.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, pres.tropo.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\npres (Long Term Monthly Mean Tropopause Pressure, Pa)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e0e3_435f_74a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e0e3_435f_74a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e0e3_435f_74a6&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_e0e3_435f_74a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1691_4f5b_6676", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1691_4f5b_6676.graph", "", "", "public", "Top Dataset, monolevel, pres.tropo.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, pres.tropo.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1691_4f5b_6676/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1691_4f5b_6676.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1691_4f5b_6676&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_1691_4f5b_6676"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_82f0_f2d0_67f7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_82f0_f2d0_67f7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_82f0_f2d0_67f7/request", "", "public", "Top Dataset, monolevel, pres.tropo.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Pressure at Tropopause, Pa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_82f0_f2d0_67f7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_82f0_f2d0_67f7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_82f0_f2d0_67f7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_82f0_f2d0_67f7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_82f0_f2d0_67f7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_82f0_f2d0_67f7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_333d_f3f9_0563", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_333d_f3f9_0563.graph", "", "", "public", "Top Dataset, monolevel, pres.tropo.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, pres.tropo.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\npres (Monthly Tropopause Pressure, Pa)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_333d_f3f9_0563/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_333d_f3f9_0563.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_333d_f3f9_0563&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_333d_f3f9_0563"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2db0_0cd4_314b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2db0_0cd4_314b.graph", "", "", "public", "Top Dataset, monolevel, pres.tropo.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, pres.tropo.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2db0_0cd4_314b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2db0_0cd4_314b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2db0_0cd4_314b&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_2db0_0cd4_314b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78fd_12c2_bd78", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78fd_12c2_bd78.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_78fd_12c2_bd78/request", "", "public", "Top Dataset, monolevel, press.sfc.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npress (3-hourly Long Term Mean Pressure at surface, Pascal)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_78fd_12c2_bd78_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_78fd_12c2_bd78_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_78fd_12c2_bd78/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_78fd_12c2_bd78.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_78fd_12c2_bd78&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_78fd_12c2_bd78"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1bd_007d_c9fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1bd_007d_c9fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d1bd_007d_c9fc/request", "", "public", "Top Dataset, monolevel, press.sfc.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npress (3-hourly Long Term Mean Pressure Spread at surface, Pascal)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d1bd_007d_c9fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d1bd_007d_c9fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d1bd_007d_c9fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d1bd_007d_c9fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d1bd_007d_c9fc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d1bd_007d_c9fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_076a_2324_98ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_076a_2324_98ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_076a_2324_98ea/request", "", "public", "Top Dataset, monolevel, press.sfc.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npress (Daily Long Term Mean Pressure Spread at surface, Pascal)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_076a_2324_98ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_076a_2324_98ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_076a_2324_98ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_076a_2324_98ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_076a_2324_98ea&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_076a_2324_98ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f95_0186_93b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f95_0186_93b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f95_0186_93b3/request", "", "public", "Top Dataset, monolevel, press.sfc.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npress (Daily Long Term Mean Pressure at surface, Pascal)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f95_0186_93b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f95_0186_93b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f95_0186_93b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f95_0186_93b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f95_0186_93b3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9f95_0186_93b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_209a_9e99_c4d8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_209a_9e99_c4d8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_209a_9e99_c4d8/request", "", "public", "Top Dataset, monolevel, press.sfc.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npress (Long Term Mean Monthly Pressure Spread at surface, Pascal)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_209a_9e99_c4d8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_209a_9e99_c4d8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_209a_9e99_c4d8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_209a_9e99_c4d8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_209a_9e99_c4d8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_209a_9e99_c4d8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44af_23fb_373d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44af_23fb_373d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_44af_23fb_373d/request", "", "public", "Top Dataset, monolevel, press.sfc.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npress (Long Term Mean Monthly Pressure at surface, Pascal)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_44af_23fb_373d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_44af_23fb_373d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_44af_23fb_373d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_44af_23fb_373d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_44af_23fb_373d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_44af_23fb_373d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_42af_26bf_3c4c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_42af_26bf_3c4c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_42af_26bf_3c4c/request", "", "public", "Top Dataset, monolevel, press.sfc.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npress (Monthly Long Term Pressure at surface, Pascal)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_42af_26bf_3c4c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_42af_26bf_3c4c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_42af_26bf_3c4c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_42af_26bf_3c4c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_42af_26bf_3c4c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_42af_26bf_3c4c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f844_1564_b07d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f844_1564_b07d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f844_1564_b07d/request", "", "public", "Top Dataset, monolevel, press.sfc.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npress (Monthly Long Term Pressure Spread at surface, Pascal)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f844_1564_b07d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f844_1564_b07d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f844_1564_b07d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f844_1564_b07d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f844_1564_b07d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f844_1564_b07d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22da_4141_e66b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22da_4141_e66b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_22da_4141_e66b/request", "", "public", "Top Dataset, monolevel, prmsl.4Xday.1981-2010.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Long Term Mean 6-hourly Pressure at Mean Sea Level, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_22da_4141_e66b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_22da_4141_e66b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_22da_4141_e66b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_22da_4141_e66b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_22da_4141_e66b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_22da_4141_e66b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e785_8abb_23c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e785_8abb_23c5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e785_8abb_23c5/request", "", "public", "Top Dataset, monolevel, prmsl.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Long Term Mean Daily Pressure at Mean Sea Level, Pa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e785_8abb_23c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e785_8abb_23c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e785_8abb_23c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e785_8abb_23c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e785_8abb_23c5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e785_8abb_23c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_27cc_fc25_862c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_27cc_fc25_862c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_27cc_fc25_862c/request", "", "public", "Top Dataset, monolevel, prmsl.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Daily Long Term Pressure at Mean Sea Level, Pa)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_27cc_fc25_862c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_27cc_fc25_862c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_27cc_fc25_862c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_27cc_fc25_862c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_27cc_fc25_862c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_27cc_fc25_862c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d34_6b97_82c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d34_6b97_82c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d34_6b97_82c4/request", "", "public", "Top Dataset, monolevel, prmsl.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Long Term Mean Monthly Pressure at Mean Sea Level, Pa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d34_6b97_82c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d34_6b97_82c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d34_6b97_82c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d34_6b97_82c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d34_6b97_82c4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4d34_6b97_82c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddd5_40d8_9d46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddd5_40d8_9d46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ddd5_40d8_9d46/request", "", "public", "Top Dataset, monolevel, prmsl.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Monthly Long Term Pressure at Mean Sea Level, Pa)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ddd5_40d8_9d46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ddd5_40d8_9d46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ddd5_40d8_9d46/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ddd5_40d8_9d46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ddd5_40d8_9d46&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ddd5_40d8_9d46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9442_b047_d402", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9442_b047_d402.graph", "", "", "public", "Top Dataset, monolevel, prmsl.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, prmsl.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nprmsl (Long Term Monthly Mean Pressure at Mean Sea Level, Pa)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9442_b047_d402/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9442_b047_d402.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9442_b047_d402&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_9442_b047_d402"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d80_0375_6ad3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d80_0375_6ad3.graph", "", "", "public", "Top Dataset, monolevel, prmsl.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, prmsl.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5d80_0375_6ad3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5d80_0375_6ad3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5d80_0375_6ad3&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_5d80_0375_6ad3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa33_9727_2a9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa33_9727_2a9d.graph", "", "", "public", "Top Dataset, monolevel, prmsl.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, prmsl.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nprmsl (Monthly Pressure at Mean Sea Level, Pa)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa33_9727_2a9d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa33_9727_2a9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa33_9727_2a9d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_aa33_9727_2a9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f4f_d121_1900", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f4f_d121_1900.graph", "", "", "public", "Top Dataset, monolevel, prmsl.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, prmsl.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4f4f_d121_1900/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4f4f_d121_1900.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4f4f_d121_1900&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_4f4f_d121_1900"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_beb4_60be_6d3b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_beb4_60be_6d3b.graph", "", "", "public", "Top Dataset, monolevel, rcq.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, rcq.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nrcq (Long Term Monthly Mean Humidity Parameter Canopy Conductance at Surface, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_beb4_60be_6d3b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_beb4_60be_6d3b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_beb4_60be_6d3b&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_beb4_60be_6d3b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fd9_413e_2a1f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fd9_413e_2a1f.graph", "", "", "public", "Top Dataset, monolevel, rcq.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, rcq.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5fd9_413e_2a1f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5fd9_413e_2a1f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5fd9_413e_2a1f&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_5fd9_413e_2a1f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05e2_9d9e_3f4a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05e2_9d9e_3f4a.graph", "", "", "public", "Top Dataset, monolevel, rcq.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, rcq.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nrcq (Monthly Humidity Parameter Canopy Conductance at Surface, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_05e2_9d9e_3f4a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_05e2_9d9e_3f4a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_05e2_9d9e_3f4a&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_05e2_9d9e_3f4a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05b1_da46_5d26", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05b1_da46_5d26.graph", "", "", "public", "Top Dataset, monolevel, rcq.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, rcq.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_05b1_da46_5d26/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_05b1_da46_5d26.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_05b1_da46_5d26&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_05b1_da46_5d26"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b63_1024_a725", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b63_1024_a725.graph", "", "", "public", "Top Dataset, monolevel, rcs.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, rcs.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nrcs (Long Term Monthly Mean Solar Parameter Canopy Conductance at Surface, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b63_1024_a725/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b63_1024_a725.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b63_1024_a725&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_5b63_1024_a725"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf04_16c9_eae8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf04_16c9_eae8.graph", "", "", "public", "Top Dataset, monolevel, rcs.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, rcs.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf04_16c9_eae8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf04_16c9_eae8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf04_16c9_eae8&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_cf04_16c9_eae8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09d0_cb75_8485", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09d0_cb75_8485.graph", "", "", "public", "Top Dataset, monolevel, rcs.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, rcs.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nrcs (Monthly Solar Parameter Canopy Conductance at Surface, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_09d0_cb75_8485/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_09d0_cb75_8485.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_09d0_cb75_8485&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_09d0_cb75_8485"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1f6_8593_be8f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1f6_8593_be8f.graph", "", "", "public", "Top Dataset, monolevel, rcs.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, rcs.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b1f6_8593_be8f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b1f6_8593_be8f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b1f6_8593_be8f&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_b1f6_8593_be8f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bf1_901f_c915", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bf1_901f_c915.graph", "", "", "public", "Top Dataset, monolevel, rcsol.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, rcsol.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nrcsol (Long Term Monthly Mean Soil Moisture Parameter Canopy Conductance at Surface, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2bf1_901f_c915/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2bf1_901f_c915.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2bf1_901f_c915&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_2bf1_901f_c915"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1135_98dd_23c8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1135_98dd_23c8.graph", "", "", "public", "Top Dataset, monolevel, rcsol.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, rcsol.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1135_98dd_23c8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1135_98dd_23c8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1135_98dd_23c8&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_1135_98dd_23c8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01ca_341b_4c84", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01ca_341b_4c84.graph", "", "", "public", "Top Dataset, monolevel, rcsol.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, rcsol.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nrcsol (Monthly Soil Moisture Parameter Canopy Conductance at Surface, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_01ca_341b_4c84/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_01ca_341b_4c84.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_01ca_341b_4c84&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_01ca_341b_4c84"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0cd6_7f81_432d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0cd6_7f81_432d.graph", "", "", "public", "Top Dataset, monolevel, rcsol.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, rcsol.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0cd6_7f81_432d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0cd6_7f81_432d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0cd6_7f81_432d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_0cd6_7f81_432d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_704f_70b1_858c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_704f_70b1_858c.graph", "", "", "public", "Top Dataset, monolevel, rct.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, rct.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nrct (Long Term Monthly Mean Temperature Parameter Canopy Conductance at Surface, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_704f_70b1_858c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_704f_70b1_858c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_704f_70b1_858c&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_704f_70b1_858c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb54_86cd_2efd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb54_86cd_2efd.graph", "", "", "public", "Top Dataset, monolevel, rct.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, rct.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb54_86cd_2efd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb54_86cd_2efd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb54_86cd_2efd&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_cb54_86cd_2efd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_288f_8834_e2a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_288f_8834_e2a1.graph", "", "", "public", "Top Dataset, monolevel, rct.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, rct.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nrct (Monthly Temperature Parameter Canopy Conductance at Surface, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_288f_8834_e2a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_288f_8834_e2a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_288f_8834_e2a1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_288f_8834_e2a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fddb_9bbd_5792", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fddb_9bbd_5792.graph", "", "", "public", "Top Dataset, monolevel, rct.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, rct.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fddb_9bbd_5792/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fddb_9bbd_5792.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fddb_9bbd_5792&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_fddb_9bbd_5792"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc2d_8f59_c35f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc2d_8f59_c35f.graph", "", "", "public", "Top Dataset, monolevel, rhum.2m.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, rhum.2m.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nrhum (Long Term Monthly Mean Relative Humidity at 2m, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bc2d_8f59_c35f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bc2d_8f59_c35f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bc2d_8f59_c35f&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_bc2d_8f59_c35f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f73_7160_47af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f73_7160_47af.graph", "", "", "public", "Top Dataset, monolevel, rhum.2m.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, rhum.2m.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f73_7160_47af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f73_7160_47af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f73_7160_47af&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_0f73_7160_47af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa2c_1c17_e71a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa2c_1c17_e71a.graph", "", "", "public", "Top Dataset, monolevel, rhum.2m.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, rhum.2m.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nrhum (Monthly Relative Humidity at 2m, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa2c_1c17_e71a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa2c_1c17_e71a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa2c_1c17_e71a&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_aa2c_1c17_e71a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_16e1_ece1_7532", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_16e1_ece1_7532.graph", "", "", "public", "Top Dataset, monolevel, rhum.2m.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, rhum.2m.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_16e1_ece1_7532/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_16e1_ece1_7532.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_16e1_ece1_7532&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_16e1_ece1_7532"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d539_b6ab_e094", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d539_b6ab_e094.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d539_b6ab_e094/request", "", "public", "Top Dataset, monolevel, rhum.sig995.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Long Term Mean 6-hourly Relative Humidity at sigma level 0.995, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d539_b6ab_e094_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d539_b6ab_e094_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d539_b6ab_e094/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d539_b6ab_e094.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d539_b6ab_e094&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d539_b6ab_e094"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64bb_ea76_b55d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64bb_ea76_b55d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_64bb_ea76_b55d/request", "", "public", "Top Dataset, monolevel, rhum.sig995.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Long Term Mean 6-hourly Relative Humidity at sigma level 0.995, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_64bb_ea76_b55d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_64bb_ea76_b55d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_64bb_ea76_b55d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_64bb_ea76_b55d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_64bb_ea76_b55d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_64bb_ea76_b55d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb77_edaf_0e14", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb77_edaf_0e14.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb77_edaf_0e14/request", "", "public", "Top Dataset, monolevel, rhum.sig995.day.1968-1996.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Long Term Mean Daily Relative Humidity at sigma level 0.995, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb77_edaf_0e14_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb77_edaf_0e14_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb77_edaf_0e14/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb77_edaf_0e14.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb77_edaf_0e14&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_cb77_edaf_0e14"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24cc_bc4b_d417", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24cc_bc4b_d417.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_24cc_bc4b_d417/request", "", "public", "Top Dataset, monolevel, rhum.sig995.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Daily Long Term Mean Relative Humidity at sigma level 0.995, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_24cc_bc4b_d417_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_24cc_bc4b_d417_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_24cc_bc4b_d417/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_24cc_bc4b_d417.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_24cc_bc4b_d417&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_24cc_bc4b_d417"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_156e_1ee2_2d74", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_156e_1ee2_2d74.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_156e_1ee2_2d74/request", "", "public", "Top Dataset, monolevel, rhum.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Daily Long Term Mean Relative Humidity at sigma level 0.995, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_156e_1ee2_2d74_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_156e_1ee2_2d74_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_156e_1ee2_2d74/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_156e_1ee2_2d74.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_156e_1ee2_2d74&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_156e_1ee2_2d74"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5427_19b8_7518", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5427_19b8_7518.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5427_19b8_7518/request", "", "public", "Top Dataset, monolevel, rhum.sig995.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Long Term Mean Monthly Relative Humidity at sigma level 0.995, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5427_19b8_7518_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5427_19b8_7518_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5427_19b8_7518/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5427_19b8_7518.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5427_19b8_7518&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5427_19b8_7518"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5aa5_eb40_04f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5aa5_eb40_04f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5aa5_eb40_04f1/request", "", "public", "Top Dataset, monolevel, rhum.sig995.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Monthly Long Term Relative Humidity at sigma level 0.995, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5aa5_eb40_04f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5aa5_eb40_04f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5aa5_eb40_04f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5aa5_eb40_04f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5aa5_eb40_04f1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5aa5_eb40_04f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85d0_0763_f6d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85d0_0763_f6d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_85d0_0763_f6d9/request", "", "public", "Top Dataset, monolevel, rhum.sig995.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Monthly Long Term Relative Humidity at sigma level 0.995, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_85d0_0763_f6d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_85d0_0763_f6d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85d0_0763_f6d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85d0_0763_f6d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85d0_0763_f6d9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_85d0_0763_f6d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d7a_27f6_2c70", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d7a_27f6_2c70.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d7a_27f6_2c70/request", "", "public", "Top Dataset, monolevel, rhum.sig995.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Monthly Relative Humidity at sigma level 0.995, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d7a_27f6_2c70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d7a_27f6_2c70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d7a_27f6_2c70/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d7a_27f6_2c70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d7a_27f6_2c70&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4d7a_27f6_2c70"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bdd_0401_8423", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bdd_0401_8423.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2bdd_0401_8423/request", "", "public", "Top Dataset, monolevel, runoff.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunoff (3-hourly Long Term Mean Water Runoff Spread at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2bdd_0401_8423_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2bdd_0401_8423_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2bdd_0401_8423/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2bdd_0401_8423.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2bdd_0401_8423&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2bdd_0401_8423"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50b5_afee_5834", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50b5_afee_5834.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_50b5_afee_5834/request", "", "public", "Top Dataset, monolevel, runoff.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunoff (3-hourly Long Term Mean Water Runoff at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_50b5_afee_5834_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_50b5_afee_5834_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50b5_afee_5834/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50b5_afee_5834.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50b5_afee_5834&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_50b5_afee_5834"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10ab_d9b1_06fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10ab_d9b1_06fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_10ab_d9b1_06fb/request", "", "public", "Top Dataset, monolevel, runoff.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunoff (Daily Long Term Mean Water Runoff at surface, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_10ab_d9b1_06fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_10ab_d9b1_06fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_10ab_d9b1_06fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_10ab_d9b1_06fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_10ab_d9b1_06fb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_10ab_d9b1_06fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2395_ad78_e664", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2395_ad78_e664.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2395_ad78_e664/request", "", "public", "Top Dataset, monolevel, runoff.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunoff (Daily Long Term Mean Water Runoff Spread at surface, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2395_ad78_e664_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2395_ad78_e664_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2395_ad78_e664/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2395_ad78_e664.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2395_ad78_e664&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2395_ad78_e664"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38e0_3f8d_f6fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38e0_3f8d_f6fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_38e0_3f8d_f6fe/request", "", "public", "Top Dataset, monolevel, runoff.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunoff (Long Term Mean Monthly Water Runoff at surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_38e0_3f8d_f6fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_38e0_3f8d_f6fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_38e0_3f8d_f6fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_38e0_3f8d_f6fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_38e0_3f8d_f6fe&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_38e0_3f8d_f6fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f053_1ba9_a4fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f053_1ba9_a4fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f053_1ba9_a4fb/request", "", "public", "Top Dataset, monolevel, runoff.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunoff (Long Term Mean Monthly Water Runoff Spread at surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f053_1ba9_a4fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f053_1ba9_a4fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f053_1ba9_a4fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f053_1ba9_a4fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f053_1ba9_a4fb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f053_1ba9_a4fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1803_16e0_2514", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1803_16e0_2514.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1803_16e0_2514/request", "", "public", "Top Dataset, monolevel, runoff.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunoff (Monthly Long Term Water Runoff at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1803_16e0_2514_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1803_16e0_2514_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1803_16e0_2514/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1803_16e0_2514.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1803_16e0_2514&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1803_16e0_2514"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2096_1966_0c9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2096_1966_0c9f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2096_1966_0c9f/request", "", "public", "Top Dataset, monolevel, runoff.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunoff (Monthly Long Term Water Runoff Spread at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2096_1966_0c9f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2096_1966_0c9f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2096_1966_0c9f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2096_1966_0c9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2096_1966_0c9f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2096_1966_0c9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4136_9ce1_c6d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4136_9ce1_c6d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4136_9ce1_c6d4/request", "", "public", "Top Dataset, monolevel, shtfl.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (3-hourly Long Term Mean Sensible Heat Net Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4136_9ce1_c6d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4136_9ce1_c6d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4136_9ce1_c6d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4136_9ce1_c6d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4136_9ce1_c6d4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4136_9ce1_c6d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e07_0055_6fdf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e07_0055_6fdf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e07_0055_6fdf/request", "", "public", "Top Dataset, monolevel, shtfl.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (3-hourly Long Term Mean Sensible Heat Net Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e07_0055_6fdf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e07_0055_6fdf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e07_0055_6fdf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e07_0055_6fdf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e07_0055_6fdf&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9e07_0055_6fdf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a1c_7521_08ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a1c_7521_08ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a1c_7521_08ca/request", "", "public", "Top Dataset, monolevel, shtfl.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Daily Long Term Mean Sensible Heat Net Flux Spread at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a1c_7521_08ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a1c_7521_08ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a1c_7521_08ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a1c_7521_08ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a1c_7521_08ca&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7a1c_7521_08ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da1f_563a_60e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da1f_563a_60e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da1f_563a_60e2/request", "", "public", "Top Dataset, monolevel, shtfl.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Daily Long Term Mean Sensible Heat Net Flux at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da1f_563a_60e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da1f_563a_60e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da1f_563a_60e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da1f_563a_60e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da1f_563a_60e2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_da1f_563a_60e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99dc_424c_467f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99dc_424c_467f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99dc_424c_467f/request", "", "public", "Top Dataset, monolevel, shtfl.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Long Term Mean Monthly Sensible Heat Net Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99dc_424c_467f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99dc_424c_467f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99dc_424c_467f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99dc_424c_467f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99dc_424c_467f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_99dc_424c_467f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb24_dc66_43c2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb24_dc66_43c2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eb24_dc66_43c2/request", "", "public", "Top Dataset, monolevel, shtfl.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Long Term Mean Monthly Sensible Heat Net Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eb24_dc66_43c2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eb24_dc66_43c2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb24_dc66_43c2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb24_dc66_43c2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb24_dc66_43c2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_eb24_dc66_43c2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cab_2cf4_2600", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cab_2cf4_2600.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9cab_2cf4_2600/request", "", "public", "Top Dataset, monolevel, shtfl.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Monthly Long Term Sensible Heat Net Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9cab_2cf4_2600_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9cab_2cf4_2600_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9cab_2cf4_2600/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9cab_2cf4_2600.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9cab_2cf4_2600&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9cab_2cf4_2600"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf09_2573_22e7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf09_2573_22e7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf09_2573_22e7/request", "", "public", "Top Dataset, monolevel, shtfl.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Monthly Long Term Sensible Heat Net Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf09_2573_22e7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf09_2573_22e7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf09_2573_22e7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf09_2573_22e7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf09_2573_22e7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bf09_2573_22e7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dd4_ff43_fb55", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dd4_ff43_fb55.graph", "", "", "public", "Top Dataset, monolevel, shtfl.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, shtfl.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nshtfl (Long Term Monthly Mean Sensible Heat Flux at Surface, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8dd4_ff43_fb55/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8dd4_ff43_fb55.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8dd4_ff43_fb55&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_8dd4_ff43_fb55"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afe9_7283_e534", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afe9_7283_e534.graph", "", "", "public", "Top Dataset, monolevel, shtfl.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, shtfl.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_afe9_7283_e534/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_afe9_7283_e534.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_afe9_7283_e534&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_afe9_7283_e534"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0be_2295_e0e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0be_2295_e0e0.graph", "", "", "public", "Top Dataset, monolevel, shtfl.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, shtfl.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nshtfl (Monthly Sensible Heat Flux at Surface, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a0be_2295_e0e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a0be_2295_e0e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a0be_2295_e0e0&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a0be_2295_e0e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd52_a933_5b89", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd52_a933_5b89.graph", "", "", "public", "Top Dataset, monolevel, shtfl.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, shtfl.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fd52_a933_5b89/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fd52_a933_5b89.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fd52_a933_5b89&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_fd52_a933_5b89"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1451_ec66_e1f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1451_ec66_e1f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1451_ec66_e1f5/request", "", "public", "Top Dataset, monolevel, shum.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (3-hourly Long Term Mean Specific Humidity Spread at 2 m, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1451_ec66_e1f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1451_ec66_e1f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1451_ec66_e1f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1451_ec66_e1f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1451_ec66_e1f5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1451_ec66_e1f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43b7_e166_7700", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43b7_e166_7700.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_43b7_e166_7700/request", "", "public", "Top Dataset, monolevel, shum.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (3-hourly Long Term Mean Specific Humidity at 2 m, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_43b7_e166_7700_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_43b7_e166_7700_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_43b7_e166_7700/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_43b7_e166_7700.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_43b7_e166_7700&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_43b7_e166_7700"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b83_5d66_941e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b83_5d66_941e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4b83_5d66_941e/request", "", "public", "Top Dataset, monolevel, shum.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Daily Long Term Mean Specific Humidity Spread at 2 m, kg/kg)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4b83_5d66_941e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4b83_5d66_941e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4b83_5d66_941e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4b83_5d66_941e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4b83_5d66_941e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4b83_5d66_941e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e20_6ef0_3063", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e20_6ef0_3063.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6e20_6ef0_3063/request", "", "public", "Top Dataset, monolevel, shum.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Daily Long Term Mean Specific Humidity at 2 m, kg/kg)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6e20_6ef0_3063_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6e20_6ef0_3063_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6e20_6ef0_3063/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6e20_6ef0_3063.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6e20_6ef0_3063&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6e20_6ef0_3063"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6bef_998d_0b4c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6bef_998d_0b4c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6bef_998d_0b4c/request", "", "public", "Top Dataset, monolevel, shum.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Long Term Mean Monthly Specific Humidity Spread at 2 m, kg/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6bef_998d_0b4c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6bef_998d_0b4c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6bef_998d_0b4c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6bef_998d_0b4c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6bef_998d_0b4c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6bef_998d_0b4c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b5f_315d_c025", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b5f_315d_c025.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b5f_315d_c025/request", "", "public", "Top Dataset, monolevel, shum.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Monthly Long Term Specific Humidity at 2 m, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b5f_315d_c025_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b5f_315d_c025_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b5f_315d_c025/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b5f_315d_c025.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b5f_315d_c025&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7b5f_315d_c025"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9735_cda1_8c51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9735_cda1_8c51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9735_cda1_8c51/request", "", "public", "Top Dataset, monolevel, shum.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Monthly Long Term Specific Humidity Spread at 2 m, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9735_cda1_8c51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9735_cda1_8c51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9735_cda1_8c51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9735_cda1_8c51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9735_cda1_8c51&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9735_cda1_8c51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f507_6575_1b69", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f507_6575_1b69.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f507_6575_1b69/request", "", "public", "Top Dataset, monolevel, shum.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Monthly Long Term Specific Humidity at 2 m, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f507_6575_1b69_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f507_6575_1b69_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f507_6575_1b69/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f507_6575_1b69.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f507_6575_1b69&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f507_6575_1b69"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_925f_29a5_931b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_925f_29a5_931b.graph", "", "", "public", "Top Dataset, monolevel, shum.2m.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, shum.2m.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nshum (Long Term Monthly Mean Specific Humidity at 2m, kg/kg)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_925f_29a5_931b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_925f_29a5_931b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_925f_29a5_931b&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_925f_29a5_931b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae11_8898_9c60", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae11_8898_9c60.graph", "", "", "public", "Top Dataset, monolevel, shum.2m.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, shum.2m.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae11_8898_9c60/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae11_8898_9c60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae11_8898_9c60&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ae11_8898_9c60"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5840_73b2_b375", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5840_73b2_b375.graph", "", "", "public", "Top Dataset, monolevel, shum.2m.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, shum.2m.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nshum (Monthly Specific Humidity at 2m, kg/kg)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5840_73b2_b375/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5840_73b2_b375.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5840_73b2_b375&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_5840_73b2_b375"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d9c_f340_fe0d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d9c_f340_fe0d.graph", "", "", "public", "Top Dataset, monolevel, shum.2m.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, shum.2m.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d9c_f340_fe0d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d9c_f340_fe0d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d9c_f340_fe0d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_6d9c_f340_fe0d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_086d_c36a_9d16", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_086d_c36a_9d16.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_086d_c36a_9d16/request", "", "public", "Top Dataset, monolevel, snod.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnod (3-hourly Long Term Mean Snow Depth at Surface, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_086d_c36a_9d16_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_086d_c36a_9d16_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_086d_c36a_9d16/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_086d_c36a_9d16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_086d_c36a_9d16&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_086d_c36a_9d16"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a75e_f7e6_d36f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a75e_f7e6_d36f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a75e_f7e6_d36f/request", "", "public", "Top Dataset, monolevel, snod.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnod (3-hourly Long Term Mean Snow Depth Spread at Surface, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a75e_f7e6_d36f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a75e_f7e6_d36f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a75e_f7e6_d36f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a75e_f7e6_d36f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a75e_f7e6_d36f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a75e_f7e6_d36f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4df1_cec4_33df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4df1_cec4_33df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4df1_cec4_33df/request", "", "public", "Top Dataset, monolevel, snod.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnod (Daily Long Term Mean Snow Depth at Surface, m)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4df1_cec4_33df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4df1_cec4_33df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4df1_cec4_33df/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4df1_cec4_33df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4df1_cec4_33df&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4df1_cec4_33df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0d0_c0c4_0dc4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0d0_c0c4_0dc4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f0d0_c0c4_0dc4/request", "", "public", "Top Dataset, monolevel, snod.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnod (Daily Long Term Mean Snow Depth Spread at Surface, m)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f0d0_c0c4_0dc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f0d0_c0c4_0dc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f0d0_c0c4_0dc4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f0d0_c0c4_0dc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f0d0_c0c4_0dc4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f0d0_c0c4_0dc4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c899_ab42_44be", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c899_ab42_44be.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c899_ab42_44be/request", "", "public", "Top Dataset, monolevel, snod.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnod (Long Term Mean Monthly Snow Depth at Surface, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c899_ab42_44be_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c899_ab42_44be_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c899_ab42_44be/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c899_ab42_44be.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c899_ab42_44be&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c899_ab42_44be"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff08_aa36_6ed0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff08_aa36_6ed0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff08_aa36_6ed0/request", "", "public", "Top Dataset, monolevel, snod.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnod (Long Term Mean Monthly Snow Depth Spread at Surface, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff08_aa36_6ed0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff08_aa36_6ed0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff08_aa36_6ed0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff08_aa36_6ed0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff08_aa36_6ed0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ff08_aa36_6ed0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91a6_e696_5468", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91a6_e696_5468.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_91a6_e696_5468/request", "", "public", "Top Dataset, monolevel, snod.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnod (Monthly Long Term Snow Depth at Surface, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_91a6_e696_5468_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_91a6_e696_5468_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_91a6_e696_5468/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_91a6_e696_5468.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_91a6_e696_5468&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_91a6_e696_5468"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d586_bcc7_dbac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d586_bcc7_dbac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d586_bcc7_dbac/request", "", "public", "Top Dataset, monolevel, snod.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnod (Monthly Long Term Snow Depth Spread at Surface, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d586_bcc7_dbac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d586_bcc7_dbac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d586_bcc7_dbac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d586_bcc7_dbac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d586_bcc7_dbac&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d586_bcc7_dbac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ff2_b714_9f1c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ff2_b714_9f1c.graph", "", "", "public", "Top Dataset, monolevel, snod.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, snod.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nsnod (Long Term Monthly Mean Snow Depth at Surface, m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ff2_b714_9f1c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ff2_b714_9f1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ff2_b714_9f1c&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7ff2_b714_9f1c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a2e_1a36_6e50", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a2e_1a36_6e50.graph", "", "", "public", "Top Dataset, monolevel, snod.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, snod.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a2e_1a36_6e50/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a2e_1a36_6e50.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a2e_1a36_6e50&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_0a2e_1a36_6e50"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb5c_7efd_dc6f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb5c_7efd_dc6f.graph", "", "", "public", "Top Dataset, monolevel, snod.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, snod.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nsnod (Monthly Snow Depth at Surface, m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb5c_7efd_dc6f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb5c_7efd_dc6f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb5c_7efd_dc6f&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_cb5c_7efd_dc6f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b6af_be39_ae0b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b6af_be39_ae0b.graph", "", "", "public", "Top Dataset, monolevel, snod.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, snod.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b6af_be39_ae0b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b6af_be39_ae0b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b6af_be39_ae0b&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_b6af_be39_ae0b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d47_fbcd_f586", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d47_fbcd_f586.graph", "", "", "public", "Top Dataset, monolevel, snohf.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, snohf.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nsnohf (Long Term Monthly Mean Snow Phase-change Heat at Surface, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d47_fbcd_f586/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d47_fbcd_f586.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d47_fbcd_f586&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_2d47_fbcd_f586"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1952_f3b0_733a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1952_f3b0_733a.graph", "", "", "public", "Top Dataset, monolevel, snohf.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, snohf.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1952_f3b0_733a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1952_f3b0_733a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1952_f3b0_733a&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_1952_f3b0_733a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fdf_77a2_f4c2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fdf_77a2_f4c2.graph", "", "", "public", "Top Dataset, monolevel, snohf.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, snohf.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nsnohf (Monthly Snow Phase-change Heat at Surface, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7fdf_77a2_f4c2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7fdf_77a2_f4c2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7fdf_77a2_f4c2&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7fdf_77a2_f4c2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfe4_7899_568e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfe4_7899_568e.graph", "", "", "public", "Top Dataset, monolevel, snohf.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, snohf.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bfe4_7899_568e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bfe4_7899_568e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bfe4_7899_568e&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_bfe4_7899_568e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b1f_933c_fc6b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b1f_933c_fc6b.graph", "", "", "public", "Top Dataset, monolevel, snom.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, snom.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nsnom (Long Term Monthly Mean Snow Melt, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b1f_933c_fc6b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b1f_933c_fc6b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b1f_933c_fc6b&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7b1f_933c_fc6b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9356_5c47_56c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9356_5c47_56c4.graph", "", "", "public", "Top Dataset, monolevel, snom.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, snom.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9356_5c47_56c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9356_5c47_56c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9356_5c47_56c4&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_9356_5c47_56c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3765_d3f8_243b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3765_d3f8_243b.graph", "", "", "public", "Top Dataset, monolevel, snom.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, snom.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nsnom (Monthly Snow Melt, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3765_d3f8_243b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3765_d3f8_243b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3765_d3f8_243b&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_3765_d3f8_243b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1af7_04bb_2516", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1af7_04bb_2516.graph", "", "", "public", "Top Dataset, monolevel, snom.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, snom.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1af7_04bb_2516/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1af7_04bb_2516.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1af7_04bb_2516&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_1af7_04bb_2516"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5de_d0f8_083c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5de_d0f8_083c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5de_d0f8_083c/request", "", "public", "Top Dataset, monolevel, snowc.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowc (3-hourly Long Term Mean Snow Cover at Surface, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5de_d0f8_083c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5de_d0f8_083c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5de_d0f8_083c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5de_d0f8_083c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5de_d0f8_083c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a5de_d0f8_083c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc85_89d4_aa94", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc85_89d4_aa94.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc85_89d4_aa94/request", "", "public", "Top Dataset, monolevel, snowc.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowc (3-hourly Long Term Mean Snow Cover Spread at Surface, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc85_89d4_aa94_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc85_89d4_aa94_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc85_89d4_aa94/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc85_89d4_aa94.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc85_89d4_aa94&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fc85_89d4_aa94"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfec_8f31_3e8f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfec_8f31_3e8f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bfec_8f31_3e8f/request", "", "public", "Top Dataset, monolevel, snowc.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowc (Daily Long Term Mean Snow Cover at Surface, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bfec_8f31_3e8f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bfec_8f31_3e8f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bfec_8f31_3e8f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bfec_8f31_3e8f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bfec_8f31_3e8f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bfec_8f31_3e8f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5dc_b671_50e9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5dc_b671_50e9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f5dc_b671_50e9/request", "", "public", "Top Dataset, monolevel, snowc.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowc (Daily Long Term Mean Snow Cover Spread at Surface, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f5dc_b671_50e9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f5dc_b671_50e9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f5dc_b671_50e9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f5dc_b671_50e9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f5dc_b671_50e9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f5dc_b671_50e9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5130_9d7b_4f7f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5130_9d7b_4f7f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5130_9d7b_4f7f/request", "", "public", "Top Dataset, monolevel, snowc.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowc (Long Term Mean Monthly Snow Cover at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5130_9d7b_4f7f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5130_9d7b_4f7f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5130_9d7b_4f7f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5130_9d7b_4f7f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5130_9d7b_4f7f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5130_9d7b_4f7f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f328_1f0a_5263", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f328_1f0a_5263.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f328_1f0a_5263/request", "", "public", "Top Dataset, monolevel, snowc.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowc (Long Term Mean Monthly Snow Cover Spread at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f328_1f0a_5263_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f328_1f0a_5263_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f328_1f0a_5263/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f328_1f0a_5263.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f328_1f0a_5263&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f328_1f0a_5263"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f87_d7e6_eb86", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f87_d7e6_eb86.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4f87_d7e6_eb86/request", "", "public", "Top Dataset, monolevel, snowc.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowc (Monthly Long Term Snow Cover at Surface, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4f87_d7e6_eb86_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4f87_d7e6_eb86_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4f87_d7e6_eb86/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4f87_d7e6_eb86.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4f87_d7e6_eb86&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4f87_d7e6_eb86"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50cf_f231_5952", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50cf_f231_5952.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_50cf_f231_5952/request", "", "public", "Top Dataset, monolevel, snowc.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowc (Monthly Long Term Snow Cover Spread at Surface, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_50cf_f231_5952_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_50cf_f231_5952_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50cf_f231_5952/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50cf_f231_5952.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50cf_f231_5952&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_50cf_f231_5952"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ef5_8d63_ad63", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ef5_8d63_ad63.graph", "", "", "public", "Top Dataset, monolevel, snowc.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, snowc.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nsnowc (Long Term Monthly Mean Snow Cover at Surface, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9ef5_8d63_ad63/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9ef5_8d63_ad63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9ef5_8d63_ad63&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_9ef5_8d63_ad63"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6100_01ae_7180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6100_01ae_7180.graph", "", "", "public", "Top Dataset, monolevel, snowc.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, snowc.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6100_01ae_7180/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6100_01ae_7180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6100_01ae_7180&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_6100_01ae_7180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f208_17db_3ccd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f208_17db_3ccd.graph", "", "", "public", "Top Dataset, monolevel, snowc.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, snowc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nsnowc (Monthly Snow Cover at Surface, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f208_17db_3ccd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f208_17db_3ccd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f208_17db_3ccd&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_f208_17db_3ccd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b53_1561_58d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b53_1561_58d4.graph", "", "", "public", "Top Dataset, monolevel, snowc.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, snowc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9b53_1561_58d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9b53_1561_58d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9b53_1561_58d4&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_9b53_1561_58d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94de_2268_1f10", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94de_2268_1f10.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_94de_2268_1f10/request", "", "public", "Top Dataset, monolevel, soilm.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (3-hourly Long Term Mean Soil Moisture Content Sprread at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_94de_2268_1f10_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_94de_2268_1f10_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_94de_2268_1f10/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_94de_2268_1f10.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_94de_2268_1f10&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_94de_2268_1f10"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a261_9e94_20d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a261_9e94_20d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a261_9e94_20d9/request", "", "public", "Top Dataset, monolevel, soilm.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (3-hourly Long Term Mean Soil Moisture Content at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a261_9e94_20d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a261_9e94_20d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a261_9e94_20d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a261_9e94_20d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a261_9e94_20d9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a261_9e94_20d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dca8_ade2_6356", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dca8_ade2_6356.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dca8_ade2_6356/request", "", "public", "Top Dataset, monolevel, soilm.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (Long Term Mean Daily Soil Moisture Content at Surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dca8_ade2_6356_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dca8_ade2_6356_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dca8_ade2_6356/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dca8_ade2_6356.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dca8_ade2_6356&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_dca8_ade2_6356"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0548_d0ac_cd01", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0548_d0ac_cd01.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0548_d0ac_cd01/request", "", "public", "Top Dataset, monolevel, soilm.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to \npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (Daily Long Term Mean Soil Moisture Content at Surface, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0548_d0ac_cd01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0548_d0ac_cd01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0548_d0ac_cd01/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0548_d0ac_cd01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0548_d0ac_cd01&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0548_d0ac_cd01"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb5d_edf1_1a4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb5d_edf1_1a4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eb5d_edf1_1a4d/request", "", "public", "Top Dataset, monolevel, soilm.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (Daily Long Term Mean Soil Moisture Content Spread at Surface, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eb5d_edf1_1a4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eb5d_edf1_1a4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb5d_edf1_1a4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb5d_edf1_1a4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb5d_edf1_1a4d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_eb5d_edf1_1a4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b661_3710_f9ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b661_3710_f9ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b661_3710_f9ac/request", "", "public", "Top Dataset, monolevel, soilm.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (Long Term Mean Monthly Soil Moisture Spread at Surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b661_3710_f9ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b661_3710_f9ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b661_3710_f9ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b661_3710_f9ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b661_3710_f9ac&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b661_3710_f9ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e304_026f_9df6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e304_026f_9df6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e304_026f_9df6/request", "", "public", "Top Dataset, monolevel, soilm.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (Long Term Mean Monthly Soil Moisture Content at Surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e304_026f_9df6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e304_026f_9df6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e304_026f_9df6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e304_026f_9df6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e304_026f_9df6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e304_026f_9df6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e1e_c054_4238", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e1e_c054_4238.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6e1e_c054_4238/request", "", "public", "Top Dataset, monolevel, soilm.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (Monthly Long Term Soil Moisture Content at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6e1e_c054_4238_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6e1e_c054_4238_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6e1e_c054_4238/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6e1e_c054_4238.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6e1e_c054_4238&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6e1e_c054_4238"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d510_3ccb_8990", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d510_3ccb_8990.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d510_3ccb_8990/request", "", "public", "Top Dataset, monolevel, soilm.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (Monthly Long Term Soil Moisture Content Spread at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d510_3ccb_8990_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d510_3ccb_8990_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d510_3ccb_8990/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d510_3ccb_8990.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d510_3ccb_8990&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d510_3ccb_8990"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c297_7f72_ea7c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c297_7f72_ea7c.graph", "", "", "public", "Top Dataset, monolevel, soilm.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, soilm.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nsoilm (Long Term Monthly Mean Soil Moisture Content, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c297_7f72_ea7c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c297_7f72_ea7c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c297_7f72_ea7c&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_c297_7f72_ea7c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7313_c594_7a22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7313_c594_7a22.graph", "", "", "public", "Top Dataset, monolevel, soilm.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, soilm.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7313_c594_7a22/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7313_c594_7a22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7313_c594_7a22&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7313_c594_7a22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4a4_5602_6696", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4a4_5602_6696.graph", "", "", "public", "Top Dataset, monolevel, soilm.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, soilm.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nsoilm (Monthly Soil Moisture Content, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d4a4_5602_6696/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d4a4_5602_6696.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d4a4_5602_6696&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_d4a4_5602_6696"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6b9_3174_9b28", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6b9_3174_9b28.graph", "", "", "public", "Top Dataset, monolevel, soilm.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, soilm.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d6b9_3174_9b28/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d6b9_3174_9b28.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d6b9_3174_9b28&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_d6b9_3174_9b28"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f05_502b_9d19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f05_502b_9d19.graph", "", "", "public", "Top Dataset, monolevel, ssrun.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, ssrun.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nssrun (Long Term Monthly Mean Surface Runoff (non-infiltrating), kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6f05_502b_9d19/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6f05_502b_9d19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6f05_502b_9d19&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_6f05_502b_9d19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f906_9cf5_0a66", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f906_9cf5_0a66.graph", "", "", "public", "Top Dataset, monolevel, ssrun.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, ssrun.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f906_9cf5_0a66/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f906_9cf5_0a66.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f906_9cf5_0a66&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_f906_9cf5_0a66"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_431a_b444_0df6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_431a_b444_0df6.graph", "", "", "public", "Top Dataset, monolevel, ssrun.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, ssrun.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nssrun (Monthly Surface Runoff (non-infiltrating), kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_431a_b444_0df6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_431a_b444_0df6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_431a_b444_0df6&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_431a_b444_0df6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21f4_3114_b43e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21f4_3114_b43e.graph", "", "", "public", "Top Dataset, monolevel, ssrun.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, ssrun.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_21f4_3114_b43e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_21f4_3114_b43e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_21f4_3114_b43e&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_21f4_3114_b43e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92d4_a121_b6ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92d4_a121_b6ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_92d4_a121_b6ce/request", "", "public", "Top Dataset, monolevel, ssrunoff.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssrunoff (3-hourly Long Term Mean Storm Surface Runoff Spread at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_92d4_a121_b6ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_92d4_a121_b6ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_92d4_a121_b6ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_92d4_a121_b6ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_92d4_a121_b6ce&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_92d4_a121_b6ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_deaf_8d69_32fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_deaf_8d69_32fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_deaf_8d69_32fb/request", "", "public", "Top Dataset, monolevel, ssrunoff.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssrunoff (3-hourly Long Term Mean Storm Surface Runoff at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_deaf_8d69_32fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_deaf_8d69_32fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_deaf_8d69_32fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_deaf_8d69_32fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_deaf_8d69_32fb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_deaf_8d69_32fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a5a_5e66_781d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a5a_5e66_781d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a5a_5e66_781d/request", "", "public", "Top Dataset, monolevel, ssrunoff.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssrunoff (Daily Long Term Mean Storm Surface Runoff at Surface, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a5a_5e66_781d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a5a_5e66_781d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a5a_5e66_781d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a5a_5e66_781d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a5a_5e66_781d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7a5a_5e66_781d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e7e_50e6_409a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e7e_50e6_409a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e7e_50e6_409a/request", "", "public", "Top Dataset, monolevel, ssrunoff.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssrunoff (Daily Long Term Mean Storm Surface Runoff Spread at Surface, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e7e_50e6_409a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e7e_50e6_409a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e7e_50e6_409a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e7e_50e6_409a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e7e_50e6_409a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9e7e_50e6_409a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ab8_ee80_cdff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ab8_ee80_cdff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ab8_ee80_cdff/request", "", "public", "Top Dataset, monolevel, ssrunoff.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssrunoff (Long Term Mean Monthly Storm Surface Runoff at Surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ab8_ee80_cdff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ab8_ee80_cdff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ab8_ee80_cdff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ab8_ee80_cdff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ab8_ee80_cdff&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7ab8_ee80_cdff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c815_874d_45d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c815_874d_45d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c815_874d_45d4/request", "", "public", "Top Dataset, monolevel, ssrunoff.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssrunoff (Long Term Mean Monthly Storm Surface Runoff Spread at Surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c815_874d_45d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c815_874d_45d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c815_874d_45d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c815_874d_45d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c815_874d_45d4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c815_874d_45d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8de4_4435_73bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8de4_4435_73bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8de4_4435_73bd/request", "", "public", "Top Dataset, monolevel, ssrunoff.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssrunoff (Monthly Long Term Storm Surface Runoff at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8de4_4435_73bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8de4_4435_73bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8de4_4435_73bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8de4_4435_73bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8de4_4435_73bd&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8de4_4435_73bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98b5_38e4_641a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98b5_38e4_641a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_98b5_38e4_641a/request", "", "public", "Top Dataset, monolevel, ssrunoff.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssrunoff (Monthly Long Term Storm Surface Runoff Spread at Surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_98b5_38e4_641a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_98b5_38e4_641a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_98b5_38e4_641a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_98b5_38e4_641a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_98b5_38e4_641a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_98b5_38e4_641a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6224_95e0_57e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6224_95e0_57e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6224_95e0_57e3/request", "", "public", "Top Dataset, monolevel, tcdc.bndrylyr.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Boundary Layer Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6224_95e0_57e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6224_95e0_57e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6224_95e0_57e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6224_95e0_57e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6224_95e0_57e3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6224_95e0_57e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ecb0_3e89_276d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ecb0_3e89_276d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ecb0_3e89_276d/request", "", "public", "Top Dataset, monolevel, tcdc.bndrylyr.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Boundary Layer Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ecb0_3e89_276d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ecb0_3e89_276d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ecb0_3e89_276d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ecb0_3e89_276d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ecb0_3e89_276d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ecb0_3e89_276d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9584_e9db_aa91", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9584_e9db_aa91.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9584_e9db_aa91/request", "", "public", "Top Dataset, monolevel, tcdc.bndrylyr.8Xday.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Boundary Layer Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9584_e9db_aa91_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9584_e9db_aa91_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9584_e9db_aa91/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9584_e9db_aa91.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9584_e9db_aa91&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9584_e9db_aa91"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c25f_cec6_be92", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c25f_cec6_be92.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c25f_cec6_be92/request", "", "public", "Top Dataset, monolevel, tcdc.bndrylyr.8Xday.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Boundary Layer Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c25f_cec6_be92_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c25f_cec6_be92_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c25f_cec6_be92/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c25f_cec6_be92.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c25f_cec6_be92&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c25f_cec6_be92"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ac1_db78_1535", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ac1_db78_1535.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0ac1_db78_1535/request", "", "public", "Top Dataset, monolevel, tcdc.bndrylyr.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Daily Long Term Mean Boundary Layer Cloud Cover Spread, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0ac1_db78_1535_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0ac1_db78_1535_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0ac1_db78_1535/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0ac1_db78_1535.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0ac1_db78_1535&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0ac1_db78_1535"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_33f9_6c1f_c062", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_33f9_6c1f_c062.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_33f9_6c1f_c062/request", "", "public", "Top Dataset, monolevel, tcdc.bndrylyr.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Daily Long Term Mean Boundary Layer Cloud Cover, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_33f9_6c1f_c062_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_33f9_6c1f_c062_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_33f9_6c1f_c062/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_33f9_6c1f_c062.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_33f9_6c1f_c062&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_33f9_6c1f_c062"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc13_956d_1a22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc13_956d_1a22.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bc13_956d_1a22/request", "", "public", "Top Dataset, monolevel, tcdc.bndrylyr.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Daily Long Term Mean Boundary Layer Cloud Cover Spread, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bc13_956d_1a22_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bc13_956d_1a22_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bc13_956d_1a22/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bc13_956d_1a22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bc13_956d_1a22&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bc13_956d_1a22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb28_36af_3b79", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb28_36af_3b79.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eb28_36af_3b79/request", "", "public", "Top Dataset, monolevel, tcdc.bndrylyr.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Daily Long Term Mean Boundary Layer Cloud Cover, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eb28_36af_3b79_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eb28_36af_3b79_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb28_36af_3b79/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb28_36af_3b79.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb28_36af_3b79&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_eb28_36af_3b79"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17e0_70e0_5803", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17e0_70e0_5803.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_17e0_70e0_5803/request", "", "public", "Top Dataset, monolevel, tcdc.bndrylyr.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Monthly Boundary Layer Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_17e0_70e0_5803_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_17e0_70e0_5803_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_17e0_70e0_5803/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_17e0_70e0_5803.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_17e0_70e0_5803&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_17e0_70e0_5803"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1d1_ded2_85da", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1d1_ded2_85da.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a1d1_ded2_85da/request", "", "public", "Top Dataset, monolevel, tcdc.bndrylyr.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Monthly Boundary Layer Cloud Cover Spread, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a1d1_ded2_85da_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a1d1_ded2_85da_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a1d1_ded2_85da/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a1d1_ded2_85da.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a1d1_ded2_85da&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a1d1_ded2_85da"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1901_596a_6cc2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1901_596a_6cc2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1901_596a_6cc2/request", "", "public", "Top Dataset, monolevel, tcdc.bndrylyr.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Boundary Layer Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1901_596a_6cc2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1901_596a_6cc2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1901_596a_6cc2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1901_596a_6cc2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1901_596a_6cc2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1901_596a_6cc2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64bd_5785_b775", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64bd_5785_b775.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_64bd_5785_b775/request", "", "public", "Top Dataset, monolevel, tcdc.bndrylyr.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Boundary Layer Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_64bd_5785_b775_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_64bd_5785_b775_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_64bd_5785_b775/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_64bd_5785_b775.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_64bd_5785_b775&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_64bd_5785_b775"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03a0_332d_d657", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03a0_332d_d657.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03a0_332d_d657/request", "", "public", "Top Dataset, monolevel, tcdc.bndrylyr.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis V2), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Boundary Layer Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03a0_332d_d657_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03a0_332d_d657_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03a0_332d_d657/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03a0_332d_d657.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03a0_332d_d657&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_03a0_332d_d657"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef84_64ed_17b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef84_64ed_17b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ef84_64ed_17b5/request", "", "public", "Top Dataset, monolevel, tcdc.bndrylyr.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis V2), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Boundary Layer Cloud Cover Spread, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ef84_64ed_17b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ef84_64ed_17b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ef84_64ed_17b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ef84_64ed_17b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ef84_64ed_17b5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ef84_64ed_17b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5bd6_6ea5_65a9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5bd6_6ea5_65a9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5bd6_6ea5_65a9/request", "", "public", "Top Dataset, monolevel, tcdc.convcld.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Convective Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5bd6_6ea5_65a9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5bd6_6ea5_65a9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5bd6_6ea5_65a9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5bd6_6ea5_65a9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5bd6_6ea5_65a9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5bd6_6ea5_65a9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d9ff_c928_54e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d9ff_c928_54e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d9ff_c928_54e1/request", "", "public", "Top Dataset, monolevel, tcdc.convcld.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Convective Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d9ff_c928_54e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d9ff_c928_54e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d9ff_c928_54e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d9ff_c928_54e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d9ff_c928_54e1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d9ff_c928_54e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0e8_6e7c_bc6d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0e8_6e7c_bc6d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d0e8_6e7c_bc6d/request", "", "public", "Top Dataset, monolevel, tcdc.convcld.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Daily Long Term Mean Convective Cloud Cover, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d0e8_6e7c_bc6d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d0e8_6e7c_bc6d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d0e8_6e7c_bc6d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d0e8_6e7c_bc6d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d0e8_6e7c_bc6d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d0e8_6e7c_bc6d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff4b_45ba_6f6f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff4b_45ba_6f6f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff4b_45ba_6f6f/request", "", "public", "Top Dataset, monolevel, tcdc.convcld.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Daily Long Term Mean Convective Cloud Cover Spread, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff4b_45ba_6f6f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff4b_45ba_6f6f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff4b_45ba_6f6f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff4b_45ba_6f6f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff4b_45ba_6f6f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ff4b_45ba_6f6f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88cf_86aa_87ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88cf_86aa_87ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_88cf_86aa_87ca/request", "", "public", "Top Dataset, monolevel, tcdc.convcld.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Daily Long Term Mean Convective Cloud Cover, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_88cf_86aa_87ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_88cf_86aa_87ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_88cf_86aa_87ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_88cf_86aa_87ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_88cf_86aa_87ca&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_88cf_86aa_87ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edd4_fc50_4c1b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edd4_fc50_4c1b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_edd4_fc50_4c1b/request", "", "public", "Top Dataset, monolevel, tcdc.convcld.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Daily Long Term Mean Convective Cloud Cover Spread, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_edd4_fc50_4c1b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_edd4_fc50_4c1b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_edd4_fc50_4c1b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_edd4_fc50_4c1b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_edd4_fc50_4c1b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_edd4_fc50_4c1b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aea4_62c0_c745", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aea4_62c0_c745.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aea4_62c0_c745/request", "", "public", "Top Dataset, monolevel, tcdc.convcld.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Monthly Convective Cloud Cover Spread, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aea4_62c0_c745_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aea4_62c0_c745_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aea4_62c0_c745/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aea4_62c0_c745.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aea4_62c0_c745&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_aea4_62c0_c745"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb46_657b_f1de", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb46_657b_f1de.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bb46_657b_f1de/request", "", "public", "Top Dataset, monolevel, tcdc.convcld.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Monthly Convective Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bb46_657b_f1de_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bb46_657b_f1de_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bb46_657b_f1de/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bb46_657b_f1de.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bb46_657b_f1de&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bb46_657b_f1de"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3545_8811_b97e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3545_8811_b97e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3545_8811_b97e/request", "", "public", "Top Dataset, monolevel, tcdc.convcld.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Convective Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3545_8811_b97e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3545_8811_b97e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3545_8811_b97e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3545_8811_b97e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3545_8811_b97e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3545_8811_b97e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0e5_dd3f_12d8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0e5_dd3f_12d8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e0e5_dd3f_12d8/request", "", "public", "Top Dataset, monolevel, tcdc.convcld.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Convective Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e0e5_dd3f_12d8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e0e5_dd3f_12d8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e0e5_dd3f_12d8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e0e5_dd3f_12d8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e0e5_dd3f_12d8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e0e5_dd3f_12d8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e1e_4896_94cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e1e_4896_94cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5e1e_4896_94cf/request", "", "public", "Top Dataset, monolevel, tcdc.eatm.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Total Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5e1e_4896_94cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5e1e_4896_94cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5e1e_4896_94cf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5e1e_4896_94cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5e1e_4896_94cf&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5e1e_4896_94cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f667_cdca_c711", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f667_cdca_c711.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f667_cdca_c711/request", "", "public", "Top Dataset, monolevel, tcdc.eatm.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Total Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f667_cdca_c711_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f667_cdca_c711_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f667_cdca_c711/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f667_cdca_c711.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f667_cdca_c711&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f667_cdca_c711"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_167f_73b2_3809", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_167f_73b2_3809.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_167f_73b2_3809/request", "", "public", "Top Dataset, monolevel, tcdc.eatm.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Daily Long Term Mean Total Cloud Cover Spread, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_167f_73b2_3809_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_167f_73b2_3809_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_167f_73b2_3809/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_167f_73b2_3809.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_167f_73b2_3809&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_167f_73b2_3809"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80f7_013c_998c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80f7_013c_998c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_80f7_013c_998c/request", "", "public", "Top Dataset, monolevel, tcdc.eatm.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Daily Long Term Mean Total Cloud Cover, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_80f7_013c_998c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_80f7_013c_998c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_80f7_013c_998c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_80f7_013c_998c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_80f7_013c_998c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_80f7_013c_998c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b72e_ec11_0652", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b72e_ec11_0652.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b72e_ec11_0652/request", "", "public", "Top Dataset, monolevel, tcdc.eatm.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Monthly Total Cloud Cover Spread, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b72e_ec11_0652_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b72e_ec11_0652_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b72e_ec11_0652/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b72e_ec11_0652.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b72e_ec11_0652&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b72e_ec11_0652"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbab_d3d8_dfda", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbab_d3d8_dfda.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fbab_d3d8_dfda/request", "", "public", "Top Dataset, monolevel, tcdc.eatm.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Monthly Total Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fbab_d3d8_dfda_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fbab_d3d8_dfda_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fbab_d3d8_dfda/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fbab_d3d8_dfda.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fbab_d3d8_dfda&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fbab_d3d8_dfda"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9507_5217_4395", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9507_5217_4395.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9507_5217_4395/request", "", "public", "Top Dataset, monolevel, tcdc.eatm.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Total Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9507_5217_4395_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9507_5217_4395_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9507_5217_4395/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9507_5217_4395.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9507_5217_4395&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9507_5217_4395"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9bd_958e_a84b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9bd_958e_a84b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a9bd_958e_a84b/request", "", "public", "Top Dataset, monolevel, tcdc.eatm.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Total Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9bd_958e_a84b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9bd_958e_a84b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9bd_958e_a84b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9bd_958e_a84b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9bd_958e_a84b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a9bd_958e_a84b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7eef_aab3_b393", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7eef_aab3_b393.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7eef_aab3_b393/request", "", "public", "Top Dataset, monolevel, tcdc.lowcld.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Low Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7eef_aab3_b393_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7eef_aab3_b393_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7eef_aab3_b393/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7eef_aab3_b393.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7eef_aab3_b393&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7eef_aab3_b393"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c531_22d4_e87c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c531_22d4_e87c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c531_22d4_e87c/request", "", "public", "Top Dataset, monolevel, tcdc.lowcld.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Low Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c531_22d4_e87c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c531_22d4_e87c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c531_22d4_e87c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c531_22d4_e87c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c531_22d4_e87c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c531_22d4_e87c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e34_be7c_98ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e34_be7c_98ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7e34_be7c_98ab/request", "", "public", "Top Dataset, monolevel, tcdc.lowcld.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Daily Long Term Mean Low Cloud Cover, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7e34_be7c_98ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7e34_be7c_98ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e34_be7c_98ab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e34_be7c_98ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e34_be7c_98ab&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7e34_be7c_98ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f40_446e_18a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f40_446e_18a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f40_446e_18a6/request", "", "public", "Top Dataset, monolevel, tcdc.lowcld.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Daily Long Term Mean Low Cloud Cover Spread, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f40_446e_18a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f40_446e_18a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f40_446e_18a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f40_446e_18a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f40_446e_18a6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9f40_446e_18a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c9d_6923_76d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c9d_6923_76d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c9d_6923_76d4/request", "", "public", "Top Dataset, monolevel, tcdc.lowcld.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Monthly Low Cloud Cover Spread, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c9d_6923_76d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c9d_6923_76d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c9d_6923_76d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c9d_6923_76d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c9d_6923_76d4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5c9d_6923_76d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d317_6b1b_7a83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d317_6b1b_7a83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d317_6b1b_7a83/request", "", "public", "Top Dataset, monolevel, tcdc.lowcld.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Monthly Low Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d317_6b1b_7a83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d317_6b1b_7a83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d317_6b1b_7a83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d317_6b1b_7a83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d317_6b1b_7a83&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d317_6b1b_7a83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ef1_cb36_db7c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ef1_cb36_db7c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ef1_cb36_db7c/request", "", "public", "Top Dataset, monolevel, tcdc.lowcld.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Low Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ef1_cb36_db7c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ef1_cb36_db7c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ef1_cb36_db7c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ef1_cb36_db7c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ef1_cb36_db7c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3ef1_cb36_db7c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff9a_3cd5_9cde", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff9a_3cd5_9cde.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff9a_3cd5_9cde/request", "", "public", "Top Dataset, monolevel, tcdc.lowcld.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Low Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff9a_3cd5_9cde_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff9a_3cd5_9cde_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff9a_3cd5_9cde/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff9a_3cd5_9cde.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff9a_3cd5_9cde&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ff9a_3cd5_9cde"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0dee_8a56_90a9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0dee_8a56_90a9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0dee_8a56_90a9/request", "", "public", "Top Dataset, monolevel, tcdc.midcld.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Middle Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0dee_8a56_90a9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0dee_8a56_90a9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0dee_8a56_90a9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0dee_8a56_90a9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0dee_8a56_90a9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0dee_8a56_90a9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f1d_1492_d4ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f1d_1492_d4ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5f1d_1492_d4ca/request", "", "public", "Top Dataset, monolevel, tcdc.midcld.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Middle Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5f1d_1492_d4ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5f1d_1492_d4ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5f1d_1492_d4ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5f1d_1492_d4ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5f1d_1492_d4ca&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5f1d_1492_d4ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17d3_5f69_e243", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17d3_5f69_e243.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_17d3_5f69_e243/request", "", "public", "Top Dataset, monolevel, tcdc.midcld.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Daily Long Term Mean Middle Cloud Cover, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_17d3_5f69_e243_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_17d3_5f69_e243_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_17d3_5f69_e243/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_17d3_5f69_e243.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_17d3_5f69_e243&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_17d3_5f69_e243"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6cc_a0ff_ccf4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6cc_a0ff_ccf4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e6cc_a0ff_ccf4/request", "", "public", "Top Dataset, monolevel, tcdc.midcld.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Daily Long Term Mean Middle Cloud Cover Spread, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e6cc_a0ff_ccf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e6cc_a0ff_ccf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e6cc_a0ff_ccf4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e6cc_a0ff_ccf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e6cc_a0ff_ccf4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e6cc_a0ff_ccf4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54d3_2423_f9d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54d3_2423_f9d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54d3_2423_f9d7/request", "", "public", "Top Dataset, monolevel, tcdc.midcld.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Monthly Middle Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54d3_2423_f9d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54d3_2423_f9d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54d3_2423_f9d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54d3_2423_f9d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54d3_2423_f9d7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_54d3_2423_f9d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5cf2_6530_f50d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5cf2_6530_f50d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5cf2_6530_f50d/request", "", "public", "Top Dataset, monolevel, tcdc.midcld.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Monthly Middle Cloud Cover Spread, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5cf2_6530_f50d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5cf2_6530_f50d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5cf2_6530_f50d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5cf2_6530_f50d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5cf2_6530_f50d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5cf2_6530_f50d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4711_4e63_8ab4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4711_4e63_8ab4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4711_4e63_8ab4/request", "", "public", "Top Dataset, monolevel, tcdc.midcld.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Middle Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4711_4e63_8ab4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4711_4e63_8ab4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4711_4e63_8ab4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4711_4e63_8ab4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4711_4e63_8ab4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4711_4e63_8ab4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2ca_910f_1eb5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2ca_910f_1eb5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a2ca_910f_1eb5/request", "", "public", "Top Dataset, monolevel, tcdc.midcld.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Middle Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a2ca_910f_1eb5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a2ca_910f_1eb5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a2ca_910f_1eb5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a2ca_910f_1eb5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a2ca_910f_1eb5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a2ca_910f_1eb5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6341_9cc8_52c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6341_9cc8_52c3.graph", "", "", "public", "Top Dataset, monolevel, tcdc.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ntcdc (Long Term Monthly Mean Forecast of Total Cloud Cover at Entire Atmosphere Considered as a Single Layer, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6341_9cc8_52c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6341_9cc8_52c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6341_9cc8_52c3&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_6341_9cc8_52c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9194_b533_7fd6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9194_b533_7fd6.graph", "", "", "public", "Top Dataset, monolevel, tcdc.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9194_b533_7fd6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9194_b533_7fd6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9194_b533_7fd6&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_9194_b533_7fd6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aad3_975d_a433", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aad3_975d_a433.graph", "", "", "public", "Top Dataset, monolevel, tcdc.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, tcdc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ntcdc (Monthly Forecast of Total Cloud Cover at Entire Atmosphere Considered as a Single Layer, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aad3_975d_a433/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aad3_975d_a433.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aad3_975d_a433&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_aad3_975d_a433"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb63_f28e_6643", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb63_f28e_6643.graph", "", "", "public", "Top Dataset, monolevel, tcdc.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, tcdc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb63_f28e_6643/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb63_f28e_6643.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb63_f28e_6643&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_cb63_f28e_6643"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2568_2e46_8f49", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2568_2e46_8f49.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2568_2e46_8f49/request", "", "public", "Top Dataset, monolevel, tcdc.topcld.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Top Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2568_2e46_8f49_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2568_2e46_8f49_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2568_2e46_8f49/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2568_2e46_8f49.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2568_2e46_8f49&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2568_2e46_8f49"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5305_3028_e2ed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5305_3028_e2ed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5305_3028_e2ed/request", "", "public", "Top Dataset, monolevel, tcdc.topcld.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (3-hourly Long Term Mean Top Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5305_3028_e2ed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5305_3028_e2ed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5305_3028_e2ed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5305_3028_e2ed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5305_3028_e2ed&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5305_3028_e2ed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9353_f68d_0f1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9353_f68d_0f1e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9353_f68d_0f1e/request", "", "public", "Top Dataset, monolevel, tcdc.topcld.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Daily Long Term Mean Top Cloud Cover Spread, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9353_f68d_0f1e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9353_f68d_0f1e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9353_f68d_0f1e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9353_f68d_0f1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9353_f68d_0f1e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9353_f68d_0f1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0d1_e50f_8d7a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0d1_e50f_8d7a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f0d1_e50f_8d7a/request", "", "public", "Top Dataset, monolevel, tcdc.topcld.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Daily Long Term Mean Top Cloud Cover, percent)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f0d1_e50f_8d7a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f0d1_e50f_8d7a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f0d1_e50f_8d7a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f0d1_e50f_8d7a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f0d1_e50f_8d7a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f0d1_e50f_8d7a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6984_37de_521e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6984_37de_521e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6984_37de_521e/request", "", "public", "Top Dataset, monolevel, tcdc.topcld.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Monthly Top Cloud Cover Spread, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6984_37de_521e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6984_37de_521e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6984_37de_521e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6984_37de_521e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6984_37de_521e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6984_37de_521e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7908_f026_6c78", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7908_f026_6c78.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7908_f026_6c78/request", "", "public", "Top Dataset, monolevel, tcdc.topcld.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Monthly Top Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7908_f026_6c78_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7908_f026_6c78_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7908_f026_6c78/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7908_f026_6c78.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7908_f026_6c78&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7908_f026_6c78"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c27_e072_f98a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c27_e072_f98a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c27_e072_f98a/request", "", "public", "Top Dataset, monolevel, tcdc.topcld.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Top Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c27_e072_f98a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c27_e072_f98a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c27_e072_f98a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c27_e072_f98a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c27_e072_f98a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9c27_e072_f98a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0aa_cac8_3723", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0aa_cac8_3723.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c0aa_cac8_3723/request", "", "public", "Top Dataset, monolevel, tcdc.topcld.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Top Cloud Cover Spread, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c0aa_cac8_3723_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c0aa_cac8_3723_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c0aa_cac8_3723/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c0aa_cac8_3723.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c0aa_cac8_3723&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c0aa_cac8_3723"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8018_3d7e_523e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8018_3d7e_523e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8018_3d7e_523e/request", "", "public", "Top Dataset, monolevel, tco3.eatm.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Long Term Mean 6-hourly Total Columnar Ozone, Dobsons)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8018_3d7e_523e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8018_3d7e_523e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8018_3d7e_523e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8018_3d7e_523e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8018_3d7e_523e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8018_3d7e_523e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8f8_e019_f5b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8f8_e019_f5b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d8f8_e019_f5b5/request", "", "public", "Top Dataset, monolevel, tco3.eatm.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Long Term Mean Daily Total Columnar Ozone, Dobsons)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d8f8_e019_f5b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d8f8_e019_f5b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d8f8_e019_f5b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d8f8_e019_f5b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d8f8_e019_f5b5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d8f8_e019_f5b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d60f_fe41_a617", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d60f_fe41_a617.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d60f_fe41_a617/request", "", "public", "Top Dataset, monolevel, tco3.eatm.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Daily Long Term Mean Total Columnar Ozone, Dobsons)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d60f_fe41_a617_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d60f_fe41_a617_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d60f_fe41_a617/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d60f_fe41_a617.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d60f_fe41_a617&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d60f_fe41_a617"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5195_66b5_b3f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5195_66b5_b3f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5195_66b5_b3f6/request", "", "public", "Top Dataset, monolevel, tco3.eatm.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Daily Long Term Mean Total Columnar Ozone, Dobsons)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5195_66b5_b3f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5195_66b5_b3f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5195_66b5_b3f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5195_66b5_b3f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5195_66b5_b3f6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5195_66b5_b3f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f907_7773_ee0a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f907_7773_ee0a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f907_7773_ee0a/request", "", "public", "Top Dataset, monolevel, tco3.eatm.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Long Term Mean Monthly Total Columnar Ozone, Dobsons)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f907_7773_ee0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f907_7773_ee0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f907_7773_ee0a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f907_7773_ee0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f907_7773_ee0a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f907_7773_ee0a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50f1_4d73_1634", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50f1_4d73_1634.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_50f1_4d73_1634/request", "", "public", "Top Dataset, monolevel, tco3.eatm.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Monthly Long Term Total Columnar Ozone, Dobsons)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_50f1_4d73_1634_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_50f1_4d73_1634_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50f1_4d73_1634/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50f1_4d73_1634.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50f1_4d73_1634&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_50f1_4d73_1634"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_091d_a486_f94d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_091d_a486_f94d.graph", "", "", "public", "Top Dataset, monolevel, tke.hl1.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, tke.hl1.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ntke (Long Term Monthly Mean Turbulent Kinetic Energy, J/kg)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_091d_a486_f94d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_091d_a486_f94d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_091d_a486_f94d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_091d_a486_f94d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2de3_1dad_2730", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2de3_1dad_2730.graph", "", "", "public", "Top Dataset, monolevel, tke.hl1.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, tke.hl1.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2de3_1dad_2730/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2de3_1dad_2730.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2de3_1dad_2730&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_2de3_1dad_2730"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c9a_0330_1a8c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c9a_0330_1a8c.graph", "", "", "public", "Top Dataset, monolevel, tke.hl1.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, tke.hl1.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ntke (Monthly Turbulent Kinetic Energy, J/kg)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1c9a_0330_1a8c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1c9a_0330_1a8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1c9a_0330_1a8c&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_1c9a_0330_1a8c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c32e_4003_0670", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c32e_4003_0670.graph", "", "", "public", "Top Dataset, monolevel, tke.hl1.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, tke.hl1.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c32e_4003_0670/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c32e_4003_0670.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c32e_4003_0670&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_c32e_4003_0670"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_68ae_403a_0ec4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_68ae_403a_0ec4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_68ae_403a_0ec4/request", "", "public", "Top Dataset, monolevel, tmax.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (3-hourly Long Term Mean Maximum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_68ae_403a_0ec4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_68ae_403a_0ec4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_68ae_403a_0ec4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_68ae_403a_0ec4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_68ae_403a_0ec4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_68ae_403a_0ec4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7325_ea94_1d4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7325_ea94_1d4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7325_ea94_1d4d/request", "", "public", "Top Dataset, monolevel, tmax.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (3-hourly Long Term Mean Maximum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7325_ea94_1d4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7325_ea94_1d4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7325_ea94_1d4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7325_ea94_1d4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7325_ea94_1d4d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7325_ea94_1d4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5d5_8f70_9eef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5d5_8f70_9eef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5d5_8f70_9eef/request", "", "public", "Top Dataset, monolevel, tmax.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Daily Long Term Mean Maximum Temperature Spread at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5d5_8f70_9eef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5d5_8f70_9eef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5d5_8f70_9eef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5d5_8f70_9eef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5d5_8f70_9eef&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a5d5_8f70_9eef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c419_43f8_5645", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c419_43f8_5645.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c419_43f8_5645/request", "", "public", "Top Dataset, monolevel, tmax.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Daily Long Term Mean Maximum Temperature at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c419_43f8_5645_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c419_43f8_5645_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c419_43f8_5645/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c419_43f8_5645.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c419_43f8_5645&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c419_43f8_5645"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3873_0743_7423", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3873_0743_7423.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3873_0743_7423/request", "", "public", "Top Dataset, monolevel, tmax.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Long Term Mean Monthly Maximum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3873_0743_7423_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3873_0743_7423_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3873_0743_7423/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3873_0743_7423.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3873_0743_7423&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3873_0743_7423"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e18b_7a08_4c81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e18b_7a08_4c81.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e18b_7a08_4c81/request", "", "public", "Top Dataset, monolevel, tmax.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Long Term Mean Monthly Maximum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e18b_7a08_4c81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e18b_7a08_4c81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e18b_7a08_4c81/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e18b_7a08_4c81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e18b_7a08_4c81&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e18b_7a08_4c81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92a7_6330_4810", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92a7_6330_4810.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_92a7_6330_4810/request", "", "public", "Top Dataset, monolevel, tmax.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Long Term Maximum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_92a7_6330_4810_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_92a7_6330_4810_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_92a7_6330_4810/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_92a7_6330_4810.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_92a7_6330_4810&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_92a7_6330_4810"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8d9_47d7_5144", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8d9_47d7_5144.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b8d9_47d7_5144/request", "", "public", "Top Dataset, monolevel, tmax.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Long Term Maximum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b8d9_47d7_5144_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b8d9_47d7_5144_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b8d9_47d7_5144/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b8d9_47d7_5144.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b8d9_47d7_5144&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b8d9_47d7_5144"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54ea_d4b5_1f67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54ea_d4b5_1f67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54ea_d4b5_1f67/request", "", "public", "Top Dataset, monolevel, tmin.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (3-hourly Long Term Mean Minimum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54ea_d4b5_1f67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54ea_d4b5_1f67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54ea_d4b5_1f67/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54ea_d4b5_1f67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54ea_d4b5_1f67&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_54ea_d4b5_1f67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5eac_5546_11df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5eac_5546_11df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5eac_5546_11df/request", "", "public", "Top Dataset, monolevel, tmin.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (3-hourly Long Term Mean Minimum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5eac_5546_11df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5eac_5546_11df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5eac_5546_11df/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5eac_5546_11df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5eac_5546_11df&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5eac_5546_11df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3fff_7b0d_a809", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3fff_7b0d_a809.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3fff_7b0d_a809/request", "", "public", "Top Dataset, monolevel, tmin.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Daily Long Term Mean Minimum Temperature at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3fff_7b0d_a809_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3fff_7b0d_a809_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3fff_7b0d_a809/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3fff_7b0d_a809.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3fff_7b0d_a809&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3fff_7b0d_a809"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41c0_391c_80fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41c0_391c_80fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_41c0_391c_80fc/request", "", "public", "Top Dataset, monolevel, tmin.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Daily Long Term Mean Minimum Temperature Spread at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_41c0_391c_80fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_41c0_391c_80fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_41c0_391c_80fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_41c0_391c_80fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_41c0_391c_80fc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_41c0_391c_80fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7028_6086_abd8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7028_6086_abd8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7028_6086_abd8/request", "", "public", "Top Dataset, monolevel, tmin.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Long Term Mean Monthly Minimum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7028_6086_abd8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7028_6086_abd8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7028_6086_abd8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7028_6086_abd8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7028_6086_abd8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7028_6086_abd8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffd4_842e_1bbb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffd4_842e_1bbb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ffd4_842e_1bbb/request", "", "public", "Top Dataset, monolevel, tmin.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Long Term Mean Monthly Minimum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ffd4_842e_1bbb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ffd4_842e_1bbb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ffd4_842e_1bbb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ffd4_842e_1bbb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ffd4_842e_1bbb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ffd4_842e_1bbb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b92_37b8_c719", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b92_37b8_c719.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b92_37b8_c719/request", "", "public", "Top Dataset, monolevel, tmin.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Long Term Minimum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b92_37b8_c719_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b92_37b8_c719_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b92_37b8_c719/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b92_37b8_c719.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b92_37b8_c719&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7b92_37b8_c719"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb17_d629_b0a4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb17_d629_b0a4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb17_d629_b0a4/request", "", "public", "Top Dataset, monolevel, tmin.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Long Term Minimum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb17_d629_b0a4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb17_d629_b0a4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb17_d629_b0a4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb17_d629_b0a4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb17_d629_b0a4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_cb17_d629_b0a4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6675_5a3a_6e0b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6675_5a3a_6e0b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6675_5a3a_6e0b/request", "", "public", "Top Dataset, monolevel, trans.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntrans (3-hourly Long Term Mean Transpiration at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6675_5a3a_6e0b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6675_5a3a_6e0b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6675_5a3a_6e0b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6675_5a3a_6e0b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6675_5a3a_6e0b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6675_5a3a_6e0b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c952_f57f_d49d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c952_f57f_d49d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c952_f57f_d49d/request", "", "public", "Top Dataset, monolevel, trans.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntrans (3-hourly Long Term Mean Transpiration Spread at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c952_f57f_d49d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c952_f57f_d49d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c952_f57f_d49d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c952_f57f_d49d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c952_f57f_d49d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c952_f57f_d49d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38c4_371f_ef6c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38c4_371f_ef6c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_38c4_371f_ef6c/request", "", "public", "Top Dataset, monolevel, trans.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntrans (Daily Long Term Mean Transpiration at Surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_38c4_371f_ef6c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_38c4_371f_ef6c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_38c4_371f_ef6c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_38c4_371f_ef6c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_38c4_371f_ef6c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_38c4_371f_ef6c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97db_a73a_0c73", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97db_a73a_0c73.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_97db_a73a_0c73/request", "", "public", "Top Dataset, monolevel, trans.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntrans (Daily Long Term Mean Transpiration Spread at Surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_97db_a73a_0c73_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_97db_a73a_0c73_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_97db_a73a_0c73/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_97db_a73a_0c73.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_97db_a73a_0c73&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_97db_a73a_0c73"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2dcf_e623_b406", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2dcf_e623_b406.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2dcf_e623_b406/request", "", "public", "Top Dataset, monolevel, trans.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntrans (Long Term Mean Monthly Transpiration Spread at Surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2dcf_e623_b406_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2dcf_e623_b406_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2dcf_e623_b406/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2dcf_e623_b406.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2dcf_e623_b406&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2dcf_e623_b406"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72c6_f066_95ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72c6_f066_95ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_72c6_f066_95ae/request", "", "public", "Top Dataset, monolevel, trans.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntrans (Long Term Mean Monthly Transpiration at Surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_72c6_f066_95ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_72c6_f066_95ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_72c6_f066_95ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_72c6_f066_95ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_72c6_f066_95ae&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_72c6_f066_95ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c94_ddc4_d83a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c94_ddc4_d83a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c94_ddc4_d83a/request", "", "public", "Top Dataset, monolevel, trans.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntrans (Monthly Long Term Transpiration at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c94_ddc4_d83a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c94_ddc4_d83a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c94_ddc4_d83a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c94_ddc4_d83a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c94_ddc4_d83a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9c94_ddc4_d83a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf8a_979f_499c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf8a_979f_499c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf8a_979f_499c/request", "", "public", "Top Dataset, monolevel, trans.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntrans (Monthly Long Term Transpiration Spread at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf8a_979f_499c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf8a_979f_499c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf8a_979f_499c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf8a_979f_499c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf8a_979f_499c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bf8a_979f_499c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be2a_4a9c_7047", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be2a_4a9c_7047.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_be2a_4a9c_7047/request", "", "public", "Top Dataset, monolevel, uflx.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (3-hourly Long Term Mean Momentum Flux, u-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_be2a_4a9c_7047_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_be2a_4a9c_7047_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_be2a_4a9c_7047/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_be2a_4a9c_7047.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_be2a_4a9c_7047&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_be2a_4a9c_7047"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2bc_7fcf_4891", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2bc_7fcf_4891.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d2bc_7fcf_4891/request", "", "public", "Top Dataset, monolevel, uflx.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (3-hourly Long Term Mean Momentum Flux Spread, u-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d2bc_7fcf_4891_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d2bc_7fcf_4891_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d2bc_7fcf_4891/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d2bc_7fcf_4891.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d2bc_7fcf_4891&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d2bc_7fcf_4891"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1712_209d_6a67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1712_209d_6a67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1712_209d_6a67/request", "", "public", "Top Dataset, monolevel, uflx.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Daily Long Term Mean Momentum Flux Spread, u-component at surface, N/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1712_209d_6a67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1712_209d_6a67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1712_209d_6a67/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1712_209d_6a67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1712_209d_6a67&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1712_209d_6a67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff45_c4cc_25cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff45_c4cc_25cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff45_c4cc_25cf/request", "", "public", "Top Dataset, monolevel, uflx.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Daily Long Term Mean Momentum Flux, u-component at surface, N/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff45_c4cc_25cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff45_c4cc_25cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff45_c4cc_25cf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff45_c4cc_25cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff45_c4cc_25cf&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ff45_c4cc_25cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8d2_2bbb_4fea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8d2_2bbb_4fea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a8d2_2bbb_4fea/request", "", "public", "Top Dataset, monolevel, uflx.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Long Term Mean Monthly Momentum Flux, u-component at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a8d2_2bbb_4fea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a8d2_2bbb_4fea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a8d2_2bbb_4fea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a8d2_2bbb_4fea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a8d2_2bbb_4fea&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a8d2_2bbb_4fea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf06_9ba6_f64b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf06_9ba6_f64b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf06_9ba6_f64b/request", "", "public", "Top Dataset, monolevel, uflx.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Long Term Mean Monthly Momentum Flux Spread, u-component at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf06_9ba6_f64b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf06_9ba6_f64b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf06_9ba6_f64b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf06_9ba6_f64b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf06_9ba6_f64b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bf06_9ba6_f64b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6111_4361_fe9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6111_4361_fe9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6111_4361_fe9d/request", "", "public", "Top Dataset, monolevel, uflx.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Monthly Long Term Momentum Flux, u-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6111_4361_fe9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6111_4361_fe9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6111_4361_fe9d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6111_4361_fe9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6111_4361_fe9d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6111_4361_fe9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_67b8_8c3b_6f1f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_67b8_8c3b_6f1f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_67b8_8c3b_6f1f/request", "", "public", "Top Dataset, monolevel, uflx.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Monthly Long Term Momentum Flux Spread, u-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_67b8_8c3b_6f1f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_67b8_8c3b_6f1f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_67b8_8c3b_6f1f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_67b8_8c3b_6f1f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_67b8_8c3b_6f1f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_67b8_8c3b_6f1f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_869f_e7e9_fd63", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_869f_e7e9_fd63.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_869f_e7e9_fd63/request", "", "public", "Top Dataset, monolevel, ugwd.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (3-hourly Long Term Mean Zonal Gravity Wave Stress Spread at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_869f_e7e9_fd63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_869f_e7e9_fd63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_869f_e7e9_fd63/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_869f_e7e9_fd63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_869f_e7e9_fd63&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_869f_e7e9_fd63"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2a1_e176_3b6d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2a1_e176_3b6d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d2a1_e176_3b6d/request", "", "public", "Top Dataset, monolevel, ugwd.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (3-hourly Long Term Mean Zonal Gravity Wave Stress at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d2a1_e176_3b6d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d2a1_e176_3b6d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d2a1_e176_3b6d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d2a1_e176_3b6d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d2a1_e176_3b6d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d2a1_e176_3b6d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28c5_a0dc_28a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28c5_a0dc_28a8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28c5_a0dc_28a8/request", "", "public", "Top Dataset, monolevel, ugwd.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Daily Long Term Mean Zonal Gravity Wave Stress Spread at surface, N/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28c5_a0dc_28a8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28c5_a0dc_28a8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28c5_a0dc_28a8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28c5_a0dc_28a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28c5_a0dc_28a8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_28c5_a0dc_28a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1a6_3384_9543", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1a6_3384_9543.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a1a6_3384_9543/request", "", "public", "Top Dataset, monolevel, ugwd.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Daily Long Term Mean Zonal Gravity Wave Stress at surface, N/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a1a6_3384_9543_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a1a6_3384_9543_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a1a6_3384_9543/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a1a6_3384_9543.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a1a6_3384_9543&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a1a6_3384_9543"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8264_2d43_d057", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8264_2d43_d057.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8264_2d43_d057/request", "", "public", "Top Dataset, monolevel, ugwd.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Long Term Mean Monthly Zonal Gravity Wave Stress at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8264_2d43_d057_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8264_2d43_d057_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8264_2d43_d057/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8264_2d43_d057.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8264_2d43_d057&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8264_2d43_d057"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8d7_cf83_6c7f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8d7_cf83_6c7f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b8d7_cf83_6c7f/request", "", "public", "Top Dataset, monolevel, ugwd.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Long Term Mean Monthly Zonal Gravity Wave Stress Spread at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b8d7_cf83_6c7f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b8d7_cf83_6c7f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b8d7_cf83_6c7f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b8d7_cf83_6c7f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b8d7_cf83_6c7f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b8d7_cf83_6c7f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2332_85d5_22d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2332_85d5_22d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2332_85d5_22d4/request", "", "public", "Top Dataset, monolevel, ugwd.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Monthly Long Term Zonal Gravity Wave Stress at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2332_85d5_22d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2332_85d5_22d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2332_85d5_22d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2332_85d5_22d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2332_85d5_22d4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2332_85d5_22d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71c3_689d_64d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71c3_689d_64d2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_71c3_689d_64d2/request", "", "public", "Top Dataset, monolevel, ugwd.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Monthly Long Term Zonal Gravity Wave Stress Spread at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_71c3_689d_64d2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_71c3_689d_64d2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_71c3_689d_64d2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_71c3_689d_64d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_71c3_689d_64d2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_71c3_689d_64d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6224_87cf_4799", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6224_87cf_4799.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6224_87cf_4799/request", "", "public", "Top Dataset, monolevel, ulwrf.ntat.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (3-hourly Long Term Mean Upward Longwave Radiation Flux at nominal top of atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6224_87cf_4799_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6224_87cf_4799_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6224_87cf_4799/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6224_87cf_4799.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6224_87cf_4799&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6224_87cf_4799"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1af_ae67_0f5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1af_ae67_0f5b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a1af_ae67_0f5b/request", "", "public", "Top Dataset, monolevel, ulwrf.ntat.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (3-hourly Long Term Mean Upward Longwave Radiation Flux Spread at nominal top of atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a1af_ae67_0f5b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a1af_ae67_0f5b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a1af_ae67_0f5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a1af_ae67_0f5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a1af_ae67_0f5b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a1af_ae67_0f5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_04af_4c19_0616", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_04af_4c19_0616.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_04af_4c19_0616/request", "", "public", "Top Dataset, monolevel, ulwrf.ntat.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Daily Long Term Mean Upward Longwave Radiation Flux at nominal top of atmosphere, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_04af_4c19_0616_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_04af_4c19_0616_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_04af_4c19_0616/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_04af_4c19_0616.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_04af_4c19_0616&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_04af_4c19_0616"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c29_6149_a4f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c29_6149_a4f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c29_6149_a4f3/request", "", "public", "Top Dataset, monolevel, ulwrf.ntat.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Daily Long Term Mean Upward Longwave Radiation Flux Spread at nominal top of atmosphere, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c29_6149_a4f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c29_6149_a4f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c29_6149_a4f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c29_6149_a4f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c29_6149_a4f3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5c29_6149_a4f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e569_4e10_988d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e569_4e10_988d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e569_4e10_988d/request", "", "public", "Top Dataset, monolevel, ulwrf.ntat.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Long Term Mean Monthly Upward Longwave Radiation Flux Spread at nominal top of atmosphere, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e569_4e10_988d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e569_4e10_988d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e569_4e10_988d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e569_4e10_988d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e569_4e10_988d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e569_4e10_988d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff50_dac6_5d41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff50_dac6_5d41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff50_dac6_5d41/request", "", "public", "Top Dataset, monolevel, ulwrf.ntat.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Long Term Mean Monthly Upward Longwave Radiation Flux at nominal top of atmosphere, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff50_dac6_5d41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff50_dac6_5d41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff50_dac6_5d41/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff50_dac6_5d41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff50_dac6_5d41&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ff50_dac6_5d41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48e3_8559_cf6b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48e3_8559_cf6b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_48e3_8559_cf6b/request", "", "public", "Top Dataset, monolevel, ulwrf.ntat.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Long Term Upward Longwave Radiation Flux at nominal top of atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_48e3_8559_cf6b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_48e3_8559_cf6b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_48e3_8559_cf6b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_48e3_8559_cf6b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_48e3_8559_cf6b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_48e3_8559_cf6b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc42_02a7_0c20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc42_02a7_0c20.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc42_02a7_0c20/request", "", "public", "Top Dataset, monolevel, ulwrf.ntat.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Long Term Upward Longwave Radiation Flux Spread at nominal top of atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc42_02a7_0c20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc42_02a7_0c20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc42_02a7_0c20/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc42_02a7_0c20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc42_02a7_0c20&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_dc42_02a7_0c20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddf4_3acc_2f23", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddf4_3acc_2f23.graph", "", "", "public", "Top Dataset, monolevel, ulwrf.ntat.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, ulwrf.ntat.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nulwrf (Long Term Monthly Mean Upward Longwave Radiation Flux, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ddf4_3acc_2f23/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ddf4_3acc_2f23.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ddf4_3acc_2f23&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ddf4_3acc_2f23"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c48_2466_11eb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c48_2466_11eb.graph", "", "", "public", "Top Dataset, monolevel, ulwrf.ntat.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, ulwrf.ntat.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c48_2466_11eb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c48_2466_11eb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c48_2466_11eb&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_9c48_2466_11eb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2adb_a581_d1c8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2adb_a581_d1c8.graph", "", "", "public", "Top Dataset, monolevel, ulwrf.ntat.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, ulwrf.ntat.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nulwrf (Monthly Upward Longwave Radiation Flux, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2adb_a581_d1c8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2adb_a581_d1c8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2adb_a581_d1c8&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_2adb_a581_d1c8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8c7_0bf6_afce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8c7_0bf6_afce.graph", "", "", "public", "Top Dataset, monolevel, ulwrf.ntat.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, ulwrf.ntat.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d8c7_0bf6_afce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d8c7_0bf6_afce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d8c7_0bf6_afce&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_d8c7_0bf6_afce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2071_de9e_49bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2071_de9e_49bc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2071_de9e_49bc/request", "", "public", "Top Dataset, monolevel, ulwrf.sfc.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (3-hourly Long Term Mean Upward Longwave Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2071_de9e_49bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2071_de9e_49bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2071_de9e_49bc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2071_de9e_49bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2071_de9e_49bc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2071_de9e_49bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34e2_3846_de7e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34e2_3846_de7e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_34e2_3846_de7e/request", "", "public", "Top Dataset, monolevel, ulwrf.sfc.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (3-hourly Long Term Mean Upward Longwave Radiation Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_34e2_3846_de7e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_34e2_3846_de7e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_34e2_3846_de7e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_34e2_3846_de7e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_34e2_3846_de7e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_34e2_3846_de7e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9c0_16de_9365", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9c0_16de_9365.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a9c0_16de_9365/request", "", "public", "Top Dataset, monolevel, ulwrf.sfc.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Daily Long Term Mean Upward Longwave Radiation Flux at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9c0_16de_9365_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9c0_16de_9365_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9c0_16de_9365/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9c0_16de_9365.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9c0_16de_9365&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a9c0_16de_9365"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee1f_f8a1_ed71", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee1f_f8a1_ed71.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ee1f_f8a1_ed71/request", "", "public", "Top Dataset, monolevel, ulwrf.sfc.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Daily Long Term Mean Upward Longwave Radiation Flux Spread at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ee1f_f8a1_ed71_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ee1f_f8a1_ed71_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ee1f_f8a1_ed71/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ee1f_f8a1_ed71.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ee1f_f8a1_ed71&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ee1f_f8a1_ed71"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dfb_1c61_53d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dfb_1c61_53d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1dfb_1c61_53d4/request", "", "public", "Top Dataset, monolevel, ulwrf.sfc.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Long Term Mean Monthly Upward Longwave Radiation Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1dfb_1c61_53d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1dfb_1c61_53d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1dfb_1c61_53d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1dfb_1c61_53d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1dfb_1c61_53d4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1dfb_1c61_53d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4366_c352_be50", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4366_c352_be50.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4366_c352_be50/request", "", "public", "Top Dataset, monolevel, ulwrf.sfc.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Long Term Mean Monthly Upward Longwave Radiation Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4366_c352_be50_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4366_c352_be50_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4366_c352_be50/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4366_c352_be50.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4366_c352_be50&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4366_c352_be50"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_178a_b599_e53c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_178a_b599_e53c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_178a_b599_e53c/request", "", "public", "Top Dataset, monolevel, ulwrf.sfc.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Long Term Upward Longwave Radiation Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_178a_b599_e53c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_178a_b599_e53c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_178a_b599_e53c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_178a_b599_e53c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_178a_b599_e53c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_178a_b599_e53c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_77dc_0ec1_48b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_77dc_0ec1_48b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_77dc_0ec1_48b7/request", "", "public", "Top Dataset, monolevel, ulwrf.sfc.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Long Term Upward Longwave Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_77dc_0ec1_48b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_77dc_0ec1_48b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_77dc_0ec1_48b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_77dc_0ec1_48b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_77dc_0ec1_48b7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_77dc_0ec1_48b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c3f_bb36_78ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c3f_bb36_78ee.graph", "", "", "public", "Top Dataset, monolevel, ulwrf.sfc.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, ulwrf.sfc.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nulwrf (Long Term Monthly Mean Upward Longwave Radiation Flux at Surface, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c3f_bb36_78ee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c3f_bb36_78ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c3f_bb36_78ee&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_0c3f_bb36_78ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_013c_b805_1596", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_013c_b805_1596.graph", "", "", "public", "Top Dataset, monolevel, ulwrf.sfc.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, ulwrf.sfc.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_013c_b805_1596/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_013c_b805_1596.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_013c_b805_1596&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_013c_b805_1596"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5360_1ae0_75fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5360_1ae0_75fb.graph", "", "", "public", "Top Dataset, monolevel, ulwrf.sfc.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, ulwrf.sfc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nulwrf (Monthly Upward Longwave Radiation Flux at Surface, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5360_1ae0_75fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5360_1ae0_75fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5360_1ae0_75fb&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_5360_1ae0_75fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a101_4a98_9f5e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a101_4a98_9f5e.graph", "", "", "public", "Top Dataset, monolevel, ulwrf.sfc.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, ulwrf.sfc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a101_4a98_9f5e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a101_4a98_9f5e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a101_4a98_9f5e&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a101_4a98_9f5e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b482_6731_8d96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b482_6731_8d96.graph", "", "", "public", "Top Dataset, monolevel, ustm.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, ustm.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nustm (Long Term Monthly Mean U-component of Storm Motion, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b482_6731_8d96/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b482_6731_8d96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b482_6731_8d96&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_b482_6731_8d96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_053a_289f_ace3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_053a_289f_ace3.graph", "", "", "public", "Top Dataset, monolevel, ustm.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, ustm.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_053a_289f_ace3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_053a_289f_ace3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_053a_289f_ace3&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_053a_289f_ace3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4258_8755_e5e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4258_8755_e5e1.graph", "", "", "public", "Top Dataset, monolevel, ustm.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, ustm.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nustm (Monthly U-component of Storm Motion, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4258_8755_e5e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4258_8755_e5e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4258_8755_e5e1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_4258_8755_e5e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d24_4fdb_8a27", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d24_4fdb_8a27.graph", "", "", "public", "Top Dataset, monolevel, ustm.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, ustm.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d24_4fdb_8a27/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d24_4fdb_8a27.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d24_4fdb_8a27&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_2d24_4fdb_8a27"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e28_9ca3_7e57", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e28_9ca3_7e57.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e28_9ca3_7e57/request", "", "public", "Top Dataset, monolevel, uswrf.ntat.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (3-hourly Long Term Mean Upward Solar Radiation Flux Spread at nominal top of atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e28_9ca3_7e57_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e28_9ca3_7e57_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e28_9ca3_7e57/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e28_9ca3_7e57.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e28_9ca3_7e57&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8e28_9ca3_7e57"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9851_8380_ee4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9851_8380_ee4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9851_8380_ee4d/request", "", "public", "Top Dataset, monolevel, uswrf.ntat.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (3-hourly Long Term Mean Upward Solar Radiation Flux at nominal top of atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9851_8380_ee4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9851_8380_ee4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9851_8380_ee4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9851_8380_ee4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9851_8380_ee4d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9851_8380_ee4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80e4_6878_1296", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80e4_6878_1296.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_80e4_6878_1296/request", "", "public", "Top Dataset, monolevel, uswrf.ntat.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Daily Long Term Mean Upward Solar Radiation Flux Spread at nominal top of atmosphere, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_80e4_6878_1296_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_80e4_6878_1296_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_80e4_6878_1296/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_80e4_6878_1296.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_80e4_6878_1296&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_80e4_6878_1296"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf40_784f_4d12", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf40_784f_4d12.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf40_784f_4d12/request", "", "public", "Top Dataset, monolevel, uswrf.ntat.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Daily Long Term Mean Upward Solar Radiation Flux at nominal top of atmosphere, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf40_784f_4d12_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf40_784f_4d12_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf40_784f_4d12/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf40_784f_4d12.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf40_784f_4d12&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_cf40_784f_4d12"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_908d_49f0_e931", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_908d_49f0_e931.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_908d_49f0_e931/request", "", "public", "Top Dataset, monolevel, uswrf.ntat.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Long Term Mean Monthly Upward Solar Radiation Flux Spread at nominal top of atmosphere, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_908d_49f0_e931_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_908d_49f0_e931_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_908d_49f0_e931/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_908d_49f0_e931.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_908d_49f0_e931&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_908d_49f0_e931"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a581_0089_6b20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a581_0089_6b20.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a581_0089_6b20/request", "", "public", "Top Dataset, monolevel, uswrf.ntat.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Long Term Mean Monthly Upward Solar Radiation Flux at nominal top of atmosphere, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a581_0089_6b20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a581_0089_6b20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a581_0089_6b20/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a581_0089_6b20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a581_0089_6b20&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a581_0089_6b20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ad4_85d0_794d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ad4_85d0_794d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ad4_85d0_794d/request", "", "public", "Top Dataset, monolevel, uswrf.ntat.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Long Term Upward Solar Radiation Flux Spread at nominal top of atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ad4_85d0_794d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ad4_85d0_794d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ad4_85d0_794d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ad4_85d0_794d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ad4_85d0_794d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4ad4_85d0_794d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e189_6b8c_a836", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e189_6b8c_a836.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e189_6b8c_a836/request", "", "public", "Top Dataset, monolevel, uswrf.ntat.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Long Term Upward Solar Radiation Flux at nominal top of atmosphere, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e189_6b8c_a836_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e189_6b8c_a836_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e189_6b8c_a836/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e189_6b8c_a836.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e189_6b8c_a836&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e189_6b8c_a836"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b83e_cf56_8e02", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b83e_cf56_8e02.graph", "", "", "public", "Top Dataset, monolevel, uswrf.ntat.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, uswrf.ntat.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nuswrf (Long Term Monthly Mean Upward Shortwave Radiation Flux, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b83e_cf56_8e02/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b83e_cf56_8e02.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b83e_cf56_8e02&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_b83e_cf56_8e02"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_777d_2dd5_1215", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_777d_2dd5_1215.graph", "", "", "public", "Top Dataset, monolevel, uswrf.ntat.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, uswrf.ntat.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_777d_2dd5_1215/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_777d_2dd5_1215.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_777d_2dd5_1215&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_777d_2dd5_1215"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ed3_958a_eae3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ed3_958a_eae3.graph", "", "", "public", "Top Dataset, monolevel, uswrf.ntat.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, uswrf.ntat.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nuswrf (Monthly Upward Shortwave Radiation Flux, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9ed3_958a_eae3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9ed3_958a_eae3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9ed3_958a_eae3&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_9ed3_958a_eae3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd99_2024_62f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd99_2024_62f1.graph", "", "", "public", "Top Dataset, monolevel, uswrf.ntat.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, uswrf.ntat.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cd99_2024_62f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cd99_2024_62f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cd99_2024_62f1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_cd99_2024_62f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28f6_251e_135b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28f6_251e_135b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28f6_251e_135b/request", "", "public", "Top Dataset, monolevel, uswrf.sfc.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (3-hourly Long Term Mean Upward Solar Radiation Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28f6_251e_135b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28f6_251e_135b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28f6_251e_135b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28f6_251e_135b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28f6_251e_135b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_28f6_251e_135b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3cf_5c50_137d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3cf_5c50_137d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f3cf_5c50_137d/request", "", "public", "Top Dataset, monolevel, uswrf.sfc.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (3-hourly Long Term Mean Upward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f3cf_5c50_137d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f3cf_5c50_137d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f3cf_5c50_137d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f3cf_5c50_137d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f3cf_5c50_137d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f3cf_5c50_137d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ac23_4749_0400", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ac23_4749_0400.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ac23_4749_0400/request", "", "public", "Top Dataset, monolevel, uswrf.sfc.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Daily Long Term Mean Upward Solar Radiation Flux at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ac23_4749_0400_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ac23_4749_0400_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ac23_4749_0400/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ac23_4749_0400.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ac23_4749_0400&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ac23_4749_0400"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e920_b52c_ecda", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e920_b52c_ecda.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e920_b52c_ecda/request", "", "public", "Top Dataset, monolevel, uswrf.sfc.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Daily Long Term Mean Upward Solar Radiation Flux Spread at surface, W/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e920_b52c_ecda_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e920_b52c_ecda_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e920_b52c_ecda/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e920_b52c_ecda.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e920_b52c_ecda&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e920_b52c_ecda"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_066d_d001_5854", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_066d_d001_5854.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_066d_d001_5854/request", "", "public", "Top Dataset, monolevel, uswrf.sfc.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Long Term Mean Monthly Upward Solar Radiation Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_066d_d001_5854_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_066d_d001_5854_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_066d_d001_5854/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_066d_d001_5854.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_066d_d001_5854&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_066d_d001_5854"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fa4_4f9f_8066", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fa4_4f9f_8066.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7fa4_4f9f_8066/request", "", "public", "Top Dataset, monolevel, uswrf.sfc.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Long Term Mean Monthly Upward Solar Radiation Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7fa4_4f9f_8066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7fa4_4f9f_8066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7fa4_4f9f_8066/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7fa4_4f9f_8066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7fa4_4f9f_8066&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7fa4_4f9f_8066"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b50_419c_e62e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b50_419c_e62e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b50_419c_e62e/request", "", "public", "Top Dataset, monolevel, uswrf.sfc.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Long Term Upward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b50_419c_e62e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b50_419c_e62e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b50_419c_e62e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b50_419c_e62e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b50_419c_e62e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7b50_419c_e62e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a36_fecd_eeb4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a36_fecd_eeb4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9a36_fecd_eeb4/request", "", "public", "Top Dataset, monolevel, uswrf.sfc.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Long Term Upward Solar Radiation Flux Spread at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9a36_fecd_eeb4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9a36_fecd_eeb4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9a36_fecd_eeb4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9a36_fecd_eeb4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9a36_fecd_eeb4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9a36_fecd_eeb4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3e1_ccb9_1a37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3e1_ccb9_1a37.graph", "", "", "public", "Top Dataset, monolevel, uswrf.sfc.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, uswrf.sfc.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nuswrf (Long Term Monthly Mean Upward Shortwave Radiation Flux at Surface, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d3e1_ccb9_1a37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d3e1_ccb9_1a37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d3e1_ccb9_1a37&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_d3e1_ccb9_1a37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d9e4_0a60_14bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d9e4_0a60_14bf.graph", "", "", "public", "Top Dataset, monolevel, uswrf.sfc.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, uswrf.sfc.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d9e4_0a60_14bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d9e4_0a60_14bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d9e4_0a60_14bf&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_d9e4_0a60_14bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dae7_0dc4_c606", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dae7_0dc4_c606.graph", "", "", "public", "Top Dataset, monolevel, uswrf.sfc.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, uswrf.sfc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nuswrf (Monthly Upward Shortwave Radiation Flux at Surface, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dae7_0dc4_c606/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dae7_0dc4_c606.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dae7_0dc4_c606&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_dae7_0dc4_c606"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d000_c5a3_d762", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d000_c5a3_d762.graph", "", "", "public", "Top Dataset, monolevel, uswrf.sfc.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, uswrf.sfc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d000_c5a3_d762/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d000_c5a3_d762.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d000_c5a3_d762&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_d000_c5a3_d762"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c96_867e_957e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c96_867e_957e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c96_867e_957e/request", "", "public", "Top Dataset, monolevel, uwnd.10m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (3-hourly Long Term Mean U-wind Spread, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c96_867e_957e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c96_867e_957e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c96_867e_957e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c96_867e_957e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c96_867e_957e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0c96_867e_957e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5b5_bc64_c42b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5b5_bc64_c42b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d5b5_bc64_c42b/request", "", "public", "Top Dataset, monolevel, uwnd.10m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (3-hourly Long Term Mean U-wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d5b5_bc64_c42b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d5b5_bc64_c42b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d5b5_bc64_c42b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d5b5_bc64_c42b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d5b5_bc64_c42b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d5b5_bc64_c42b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0fef_26d6_b7b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0fef_26d6_b7b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0fef_26d6_b7b6/request", "", "public", "Top Dataset, monolevel, uwnd.10m.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Daily Long Term Mean U-wind, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0fef_26d6_b7b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0fef_26d6_b7b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0fef_26d6_b7b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0fef_26d6_b7b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0fef_26d6_b7b6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0fef_26d6_b7b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cbd7_db2a_8478", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cbd7_db2a_8478.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cbd7_db2a_8478/request", "", "public", "Top Dataset, monolevel, uwnd.10m.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Daily Long Term Mean U-wind Spread, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cbd7_db2a_8478_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cbd7_db2a_8478_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cbd7_db2a_8478/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cbd7_db2a_8478.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cbd7_db2a_8478&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_cbd7_db2a_8478"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_046d_44ff_94ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_046d_44ff_94ea.graph", "", "", "public", "Top Dataset, monolevel, uwnd.10m.day.ltm (Daily NARR) [time][y][x], 0001", "Daily NARR (Top Dataset, monolevel, uwnd.10m.day.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nuwnd (Daily long term mean u-wind at 10 m: Smoothed, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_046d_44ff_94ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_046d_44ff_94ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_046d_44ff_94ea&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_046d_44ff_94ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b310_450d_20ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b310_450d_20ec.graph", "", "", "public", "Top Dataset, monolevel, uwnd.10m.day.ltm (Daily NARR) [y][x]", "Daily NARR (Top Dataset, monolevel, uwnd.10m.day.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b310_450d_20ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b310_450d_20ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b310_450d_20ec&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_b310_450d_20ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6922_605e_37a3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6922_605e_37a3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6922_605e_37a3/request", "", "public", "Top Dataset, monolevel, uwnd.10m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean Monthly U-wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6922_605e_37a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6922_605e_37a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6922_605e_37a3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6922_605e_37a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6922_605e_37a3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6922_605e_37a3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d278_489f_cafb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d278_489f_cafb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d278_489f_cafb/request", "", "public", "Top Dataset, monolevel, uwnd.10m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean Monthly U-wind Spread, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d278_489f_cafb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d278_489f_cafb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d278_489f_cafb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d278_489f_cafb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d278_489f_cafb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d278_489f_cafb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c5f_2fb7_2b5e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c5f_2fb7_2b5e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3c5f_2fb7_2b5e/request", "", "public", "Top Dataset, monolevel, uwnd.10m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly Long Term U-wind Spread, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3c5f_2fb7_2b5e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3c5f_2fb7_2b5e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c5f_2fb7_2b5e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c5f_2fb7_2b5e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c5f_2fb7_2b5e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3c5f_2fb7_2b5e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d389_fff8_1fd7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d389_fff8_1fd7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d389_fff8_1fd7/request", "", "public", "Top Dataset, monolevel, uwnd.10m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly Long Term U-wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d389_fff8_1fd7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d389_fff8_1fd7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d389_fff8_1fd7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d389_fff8_1fd7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d389_fff8_1fd7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d389_fff8_1fd7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c83_6f2b_b67e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c83_6f2b_b67e.graph", "", "", "public", "Top Dataset, monolevel, uwnd.10m.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, uwnd.10m.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nuwnd (Monthly Long Term Mean u-wind at 10 m, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c83_6f2b_b67e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c83_6f2b_b67e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c83_6f2b_b67e&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_3c83_6f2b_b67e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_acb8_07ce_351f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_acb8_07ce_351f.graph", "", "", "public", "Top Dataset, monolevel, uwnd.10m.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, uwnd.10m.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_acb8_07ce_351f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_acb8_07ce_351f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_acb8_07ce_351f&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_acb8_07ce_351f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_696a_22cc_5641", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_696a_22cc_5641.graph", "", "", "public", "Top Dataset, monolevel, uwnd.10m.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, uwnd.10m.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nuwnd (Monthly u-wind at 10 m, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_696a_22cc_5641/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_696a_22cc_5641.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_696a_22cc_5641&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_696a_22cc_5641"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f529_4316_b19c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f529_4316_b19c.graph", "", "", "public", "Top Dataset, monolevel, uwnd.10m.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, uwnd.10m.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f529_4316_b19c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f529_4316_b19c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f529_4316_b19c&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_f529_4316_b19c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6a5_a380_cdf2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6a5_a380_cdf2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f6a5_a380_cdf2/request", "", "public", "Top Dataset, monolevel, uwnd.sig995.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean 6-hourly U-wind at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f6a5_a380_cdf2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f6a5_a380_cdf2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f6a5_a380_cdf2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f6a5_a380_cdf2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f6a5_a380_cdf2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f6a5_a380_cdf2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1910_9090_d666", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1910_9090_d666.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1910_9090_d666/request", "", "public", "Top Dataset, monolevel, uwnd.sig995.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean 6-hourly U-wind at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1910_9090_d666_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1910_9090_d666_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1910_9090_d666/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1910_9090_d666.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1910_9090_d666&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1910_9090_d666"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_837c_edb8_8599", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_837c_edb8_8599.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_837c_edb8_8599/request", "", "public", "Top Dataset, monolevel, uwnd.sig995.day.1968-1996.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean Daily U-wind at sigma level 0.995, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_837c_edb8_8599_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_837c_edb8_8599_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_837c_edb8_8599/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_837c_edb8_8599.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_837c_edb8_8599&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_837c_edb8_8599"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58ae_fa8a_19f7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58ae_fa8a_19f7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_58ae_fa8a_19f7/request", "", "public", "Top Dataset, monolevel, uwnd.sig995.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Daily Long Term Mean U-wind at sigma level 0.995, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_58ae_fa8a_19f7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_58ae_fa8a_19f7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_58ae_fa8a_19f7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_58ae_fa8a_19f7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_58ae_fa8a_19f7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_58ae_fa8a_19f7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9298_5aa3_25b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9298_5aa3_25b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9298_5aa3_25b8/request", "", "public", "Top Dataset, monolevel, uwnd.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Daily Long Term Mean U-wind at sigma level 0.995, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9298_5aa3_25b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9298_5aa3_25b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9298_5aa3_25b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9298_5aa3_25b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9298_5aa3_25b8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9298_5aa3_25b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_697c_289d_b3c8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_697c_289d_b3c8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_697c_289d_b3c8/request", "", "public", "Top Dataset, monolevel, uwnd.sig995.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean Monthly U-wind at sigma level 0.995, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_697c_289d_b3c8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_697c_289d_b3c8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_697c_289d_b3c8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_697c_289d_b3c8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_697c_289d_b3c8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_697c_289d_b3c8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1575_e31f_7db5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1575_e31f_7db5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1575_e31f_7db5/request", "", "public", "Top Dataset, monolevel, uwnd.sig995.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly Long Term U-wind at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1575_e31f_7db5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1575_e31f_7db5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1575_e31f_7db5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1575_e31f_7db5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1575_e31f_7db5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1575_e31f_7db5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45ac_7a34_7963", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45ac_7a34_7963.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_45ac_7a34_7963/request", "", "public", "Top Dataset, monolevel, uwnd.sig995.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly Long Term U-wind at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_45ac_7a34_7963_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_45ac_7a34_7963_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_45ac_7a34_7963/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_45ac_7a34_7963.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_45ac_7a34_7963&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_45ac_7a34_7963"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_692e_7eea_0da3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_692e_7eea_0da3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_692e_7eea_0da3/request", "", "public", "Top Dataset, monolevel, uwnd.sig995.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly U-wind at sigma level 0.995, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_692e_7eea_0da3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_692e_7eea_0da3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_692e_7eea_0da3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_692e_7eea_0da3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_692e_7eea_0da3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_692e_7eea_0da3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56b8_6bcf_5749", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56b8_6bcf_5749.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_56b8_6bcf_5749/request", "", "public", "Top Dataset, monolevel, uwnd.tropo.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean 6-hourly U-wind at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_56b8_6bcf_5749_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_56b8_6bcf_5749_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_56b8_6bcf_5749/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_56b8_6bcf_5749.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_56b8_6bcf_5749&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_56b8_6bcf_5749"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c6f_28e3_ad15", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c6f_28e3_ad15.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3c6f_28e3_ad15/request", "", "public", "Top Dataset, monolevel, uwnd.tropo.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean 6-hourly U-wind at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3c6f_28e3_ad15_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3c6f_28e3_ad15_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c6f_28e3_ad15/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c6f_28e3_ad15.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c6f_28e3_ad15&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3c6f_28e3_ad15"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f1d_576a_62fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f1d_576a_62fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f1d_576a_62fd/request", "", "public", "Top Dataset, monolevel, uwnd.tropo.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean Daily U-wind at Tropopause, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f1d_576a_62fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f1d_576a_62fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f1d_576a_62fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f1d_576a_62fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f1d_576a_62fd&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8f1d_576a_62fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5262_b0e5_e70e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5262_b0e5_e70e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5262_b0e5_e70e/request", "", "public", "Top Dataset, monolevel, uwnd.tropo.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Daily Long Term Mean U-wind at Tropopause, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5262_b0e5_e70e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5262_b0e5_e70e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5262_b0e5_e70e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5262_b0e5_e70e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5262_b0e5_e70e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5262_b0e5_e70e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e3a9_a4fb_b860", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e3a9_a4fb_b860.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e3a9_a4fb_b860/request", "", "public", "Top Dataset, monolevel, uwnd.tropo.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Daily Long Term Mean U-wind at Tropopause, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e3a9_a4fb_b860_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e3a9_a4fb_b860_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e3a9_a4fb_b860/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e3a9_a4fb_b860.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e3a9_a4fb_b860&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e3a9_a4fb_b860"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f05_48e7_c42a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f05_48e7_c42a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3f05_48e7_c42a/request", "", "public", "Top Dataset, monolevel, uwnd.tropo.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean Monthly U-wind at Tropopause, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3f05_48e7_c42a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3f05_48e7_c42a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3f05_48e7_c42a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3f05_48e7_c42a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3f05_48e7_c42a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3f05_48e7_c42a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6294_a01f_8010", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6294_a01f_8010.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6294_a01f_8010/request", "", "public", "Top Dataset, monolevel, uwnd.tropo.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly Long Term U-wind at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6294_a01f_8010_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6294_a01f_8010_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6294_a01f_8010/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6294_a01f_8010.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6294_a01f_8010&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6294_a01f_8010"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_482f_a642_51e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_482f_a642_51e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_482f_a642_51e0/request", "", "public", "Top Dataset, monolevel, uwnd.tropo.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly U-wind at Tropopause, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_482f_a642_51e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_482f_a642_51e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_482f_a642_51e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_482f_a642_51e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_482f_a642_51e0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_482f_a642_51e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8278_8073_3022", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8278_8073_3022.graph", "", "", "public", "Top Dataset, monolevel, veg.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, veg.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nveg (Long Term Monthly Mean vegetation at Surface, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8278_8073_3022/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8278_8073_3022.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8278_8073_3022&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_8278_8073_3022"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9df0_0e49_a752", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9df0_0e49_a752.graph", "", "", "public", "Top Dataset, monolevel, veg.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, veg.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9df0_0e49_a752/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9df0_0e49_a752.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9df0_0e49_a752&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_9df0_0e49_a752"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f18c_9866_0e5e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f18c_9866_0e5e.graph", "", "", "public", "Top Dataset, monolevel, veg.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, veg.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nveg (Monthly vegetation at Surface, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f18c_9866_0e5e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f18c_9866_0e5e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f18c_9866_0e5e&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_f18c_9866_0e5e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7bfa_914b_49ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7bfa_914b_49ae.graph", "", "", "public", "Top Dataset, monolevel, veg.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, veg.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7bfa_914b_49ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7bfa_914b_49ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7bfa_914b_49ae&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7bfa_914b_49ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_177c_53e6_8897", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_177c_53e6_8897.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_177c_53e6_8897/request", "", "public", "Top Dataset, monolevel, vflx.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (3-hourly Long Term Mean Momentum Flux, v-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_177c_53e6_8897_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_177c_53e6_8897_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_177c_53e6_8897/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_177c_53e6_8897.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_177c_53e6_8897&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_177c_53e6_8897"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb29_bd0b_fca3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb29_bd0b_fca3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eb29_bd0b_fca3/request", "", "public", "Top Dataset, monolevel, vflx.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (3-hourly Long Term Mean Momentum Flux Spread, v-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eb29_bd0b_fca3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eb29_bd0b_fca3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb29_bd0b_fca3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb29_bd0b_fca3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb29_bd0b_fca3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_eb29_bd0b_fca3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d35_2499_d575", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d35_2499_d575.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0d35_2499_d575/request", "", "public", "Top Dataset, monolevel, vflx.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Daily Long Term Mean Momentum Flux, v-component at surface, N/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0d35_2499_d575_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0d35_2499_d575_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0d35_2499_d575/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0d35_2499_d575.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0d35_2499_d575&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0d35_2499_d575"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f23_d13b_501e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f23_d13b_501e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f23_d13b_501e/request", "", "public", "Top Dataset, monolevel, vflx.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Daily Long Term Mean Momentum Flux Spread, v-component at surface, N/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f23_d13b_501e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f23_d13b_501e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f23_d13b_501e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f23_d13b_501e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f23_d13b_501e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1f23_d13b_501e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51e9_74e7_51c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51e9_74e7_51c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_51e9_74e7_51c4/request", "", "public", "Top Dataset, monolevel, vflx.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Long Term Mean Monthly Momentum Flux, v-component at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_51e9_74e7_51c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_51e9_74e7_51c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_51e9_74e7_51c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_51e9_74e7_51c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_51e9_74e7_51c4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_51e9_74e7_51c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0ea_7a85_6c92", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0ea_7a85_6c92.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c0ea_7a85_6c92/request", "", "public", "Top Dataset, monolevel, vflx.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Long Term Mean Monthly Momentum Flux Spread, v-component at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c0ea_7a85_6c92_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c0ea_7a85_6c92_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c0ea_7a85_6c92/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c0ea_7a85_6c92.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c0ea_7a85_6c92&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c0ea_7a85_6c92"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ba5_5c48_a31a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ba5_5c48_a31a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0ba5_5c48_a31a/request", "", "public", "Top Dataset, monolevel, vflx.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Monthly Long Term Momentum Flux Spread, v-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0ba5_5c48_a31a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0ba5_5c48_a31a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0ba5_5c48_a31a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0ba5_5c48_a31a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0ba5_5c48_a31a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0ba5_5c48_a31a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e928_81d1_3b72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e928_81d1_3b72.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e928_81d1_3b72/request", "", "public", "Top Dataset, monolevel, vflx.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Monthly Long Term Momentum Flux, v-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e928_81d1_3b72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e928_81d1_3b72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e928_81d1_3b72/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e928_81d1_3b72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e928_81d1_3b72&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e928_81d1_3b72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1ea_cd77_6acb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1ea_cd77_6acb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a1ea_cd77_6acb/request", "", "public", "Top Dataset, monolevel, vgwd.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (3-hourly Long Term Mean Meridional Gravity Wave Stress Spread at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a1ea_cd77_6acb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a1ea_cd77_6acb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a1ea_cd77_6acb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a1ea_cd77_6acb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a1ea_cd77_6acb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a1ea_cd77_6acb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6d8_d530_3b10", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6d8_d530_3b10.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d6d8_d530_3b10/request", "", "public", "Top Dataset, monolevel, vgwd.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (3-hourly Long Term Mean Meridional Gravity Wave Stress at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d6d8_d530_3b10_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d6d8_d530_3b10_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d6d8_d530_3b10/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d6d8_d530_3b10.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d6d8_d530_3b10&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d6d8_d530_3b10"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d68_ef67_e3d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d68_ef67_e3d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2d68_ef67_e3d7/request", "", "public", "Top Dataset, monolevel, vgwd.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Daily Long Term Mean Meridional Gravity Wave Stress Spread at surface, N/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2d68_ef67_e3d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2d68_ef67_e3d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d68_ef67_e3d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d68_ef67_e3d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d68_ef67_e3d7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2d68_ef67_e3d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_894c_6d11_d7f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_894c_6d11_d7f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_894c_6d11_d7f5/request", "", "public", "Top Dataset, monolevel, vgwd.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Daily Long Term Mean Meridional Gravity Wave Stress at surface, N/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_894c_6d11_d7f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_894c_6d11_d7f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_894c_6d11_d7f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_894c_6d11_d7f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_894c_6d11_d7f5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_894c_6d11_d7f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0113_1088_a0bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0113_1088_a0bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0113_1088_a0bf/request", "", "public", "Top Dataset, monolevel, vgwd.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Long Term Mean Monthly Meridional Gravity Wave Stress Spread at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0113_1088_a0bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0113_1088_a0bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0113_1088_a0bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0113_1088_a0bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0113_1088_a0bf&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0113_1088_a0bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35bc_6053_65db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35bc_6053_65db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_35bc_6053_65db/request", "", "public", "Top Dataset, monolevel, vgwd.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Long Term Mean Monthly Meridional Gravity Wave Stress at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_35bc_6053_65db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_35bc_6053_65db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_35bc_6053_65db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_35bc_6053_65db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_35bc_6053_65db&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_35bc_6053_65db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_712d_91d0_1f8c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_712d_91d0_1f8c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_712d_91d0_1f8c/request", "", "public", "Top Dataset, monolevel, vgwd.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Monthly Long Term Meridional Gravity Wave Stress Spread at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_712d_91d0_1f8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_712d_91d0_1f8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_712d_91d0_1f8c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_712d_91d0_1f8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_712d_91d0_1f8c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_712d_91d0_1f8c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85c5_dd5d_4e16", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85c5_dd5d_4e16.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_85c5_dd5d_4e16/request", "", "public", "Top Dataset, monolevel, vgwd.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Monthly Long Term Meridional Gravity Wave Stress at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_85c5_dd5d_4e16_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_85c5_dd5d_4e16_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85c5_dd5d_4e16/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85c5_dd5d_4e16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85c5_dd5d_4e16&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_85c5_dd5d_4e16"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6bfd_bb5f_5935", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6bfd_bb5f_5935.graph", "", "", "public", "Top Dataset, monolevel, vis.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, vis.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nvis (Long Term Monthly Mean Visibility, m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6bfd_bb5f_5935/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6bfd_bb5f_5935.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6bfd_bb5f_5935&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_6bfd_bb5f_5935"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c877_2ba9_33ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c877_2ba9_33ac.graph", "", "", "public", "Top Dataset, monolevel, vis.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, vis.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c877_2ba9_33ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c877_2ba9_33ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c877_2ba9_33ac&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_c877_2ba9_33ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9a2_d950_26f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9a2_d950_26f5.graph", "", "", "public", "Top Dataset, monolevel, vis.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, vis.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nvis (Monthly Visibility, m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e9a2_d950_26f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e9a2_d950_26f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e9a2_d950_26f5&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_e9a2_d950_26f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cde_4e3f_0706", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cde_4e3f_0706.graph", "", "", "public", "Top Dataset, monolevel, vis.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, vis.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8cde_4e3f_0706/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8cde_4e3f_0706.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8cde_4e3f_0706&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_8cde_4e3f_0706"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f898_27d0_a8d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f898_27d0_a8d1.graph", "", "", "public", "Top Dataset, monolevel, vstm.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, vstm.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nvstm (Long Term Monthly Mean V-component of Storm Motion, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f898_27d0_a8d1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f898_27d0_a8d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f898_27d0_a8d1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_f898_27d0_a8d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec33_fcf0_4797", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec33_fcf0_4797.graph", "", "", "public", "Top Dataset, monolevel, vstm.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, vstm.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ec33_fcf0_4797/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ec33_fcf0_4797.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ec33_fcf0_4797&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ec33_fcf0_4797"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21b5_aa76_380d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21b5_aa76_380d.graph", "", "", "public", "Top Dataset, monolevel, vstm.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, vstm.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nvstm (Monthly V-component of Storm Motion, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_21b5_aa76_380d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_21b5_aa76_380d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_21b5_aa76_380d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_21b5_aa76_380d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f35_db18_b917", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f35_db18_b917.graph", "", "", "public", "Top Dataset, monolevel, vstm.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, vstm.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f35_db18_b917/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f35_db18_b917.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f35_db18_b917&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7f35_db18_b917"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c521_4ff0_318d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c521_4ff0_318d.graph", "", "", "public", "Top Dataset, monolevel, vvel.hl1.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, vvel.hl1.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nvvel (Long Term Monthly Mean Pressure Vertical Velocity, Pa/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c521_4ff0_318d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c521_4ff0_318d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c521_4ff0_318d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_c521_4ff0_318d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5251_7b0d_6da2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5251_7b0d_6da2.graph", "", "", "public", "Top Dataset, monolevel, vvel.hl1.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, vvel.hl1.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5251_7b0d_6da2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5251_7b0d_6da2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5251_7b0d_6da2&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_5251_7b0d_6da2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2a28_2ae8_4fd3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2a28_2ae8_4fd3.graph", "", "", "public", "Top Dataset, monolevel, vvel.hl1.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, vvel.hl1.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nvvel (Monthly Pressure Vertical Velocity, Pa/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2a28_2ae8_4fd3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2a28_2ae8_4fd3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2a28_2ae8_4fd3&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_2a28_2ae8_4fd3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a550_a162_3f09", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a550_a162_3f09.graph", "", "", "public", "Top Dataset, monolevel, vvel.hl1.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, vvel.hl1.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a550_a162_3f09/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a550_a162_3f09.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a550_a162_3f09&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a550_a162_3f09"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9863_4768_9c63", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9863_4768_9c63.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9863_4768_9c63/request", "", "public", "Top Dataset, monolevel, vwnd.10m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (3-hourly Long Term Mean V wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9863_4768_9c63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9863_4768_9c63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9863_4768_9c63/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9863_4768_9c63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9863_4768_9c63&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9863_4768_9c63"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b188_d24b_4228", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b188_d24b_4228.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b188_d24b_4228/request", "", "public", "Top Dataset, monolevel, vwnd.10m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (3-hourly Long Term Mean V wind Spread, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b188_d24b_4228_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b188_d24b_4228_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b188_d24b_4228/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b188_d24b_4228.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b188_d24b_4228&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b188_d24b_4228"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ac79_8a03_2a5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ac79_8a03_2a5b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ac79_8a03_2a5b/request", "", "public", "Top Dataset, monolevel, vwnd.10m.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Daily Long Term Mean V wind Spread, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ac79_8a03_2a5b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ac79_8a03_2a5b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ac79_8a03_2a5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ac79_8a03_2a5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ac79_8a03_2a5b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ac79_8a03_2a5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9ac_06db_4fd4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9ac_06db_4fd4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c9ac_06db_4fd4/request", "", "public", "Top Dataset, monolevel, vwnd.10m.day.1981-2010.ltm, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Daily Long Term Mean V wind, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c9ac_06db_4fd4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c9ac_06db_4fd4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c9ac_06db_4fd4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c9ac_06db_4fd4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c9ac_06db_4fd4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c9ac_06db_4fd4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eefe_4960_b536", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eefe_4960_b536.graph", "", "", "public", "Top Dataset, monolevel, vwnd.10m.day.ltm (Daily NARR) [time][y][x], 0001", "Daily NARR (Top Dataset, monolevel, vwnd.10m.day.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nvwnd (Daily long term mean v-wind at 10 m: Smoothed, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eefe_4960_b536/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eefe_4960_b536.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eefe_4960_b536&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_eefe_4960_b536"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50fd_e025_29fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50fd_e025_29fd.graph", "", "", "public", "Top Dataset, monolevel, vwnd.10m.day.ltm (Daily NARR) [y][x]", "Daily NARR (Top Dataset, monolevel, vwnd.10m.day.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50fd_e025_29fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50fd_e025_29fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50fd_e025_29fd&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_50fd_e025_29fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d7e_bae0_c66d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d7e_bae0_c66d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d7e_bae0_c66d/request", "", "public", "Top Dataset, monolevel, vwnd.10m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean Monthly V wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d7e_bae0_c66d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d7e_bae0_c66d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d7e_bae0_c66d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d7e_bae0_c66d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d7e_bae0_c66d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4d7e_bae0_c66d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8696_46e1_f433", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8696_46e1_f433.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8696_46e1_f433/request", "", "public", "Top Dataset, monolevel, vwnd.10m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean Monthly V wind Spread, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8696_46e1_f433_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8696_46e1_f433_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8696_46e1_f433/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8696_46e1_f433.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8696_46e1_f433&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8696_46e1_f433"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c27_c4a0_619c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c27_c4a0_619c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2c27_c4a0_619c/request", "", "public", "Top Dataset, monolevel, vwnd.10m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly Long Term V wind Spread, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2c27_c4a0_619c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2c27_c4a0_619c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2c27_c4a0_619c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2c27_c4a0_619c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2c27_c4a0_619c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2c27_c4a0_619c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4ee_cf9d_2486", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4ee_cf9d_2486.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f4ee_cf9d_2486/request", "", "public", "Top Dataset, monolevel, vwnd.10m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly Long Term V wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f4ee_cf9d_2486_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f4ee_cf9d_2486_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f4ee_cf9d_2486/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f4ee_cf9d_2486.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f4ee_cf9d_2486&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f4ee_cf9d_2486"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dcf4_2226_d5b4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dcf4_2226_d5b4.graph", "", "", "public", "Top Dataset, monolevel, vwnd.10m.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, vwnd.10m.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nvwnd (Monthly Long Term Mean v-wind at 10 m, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dcf4_2226_d5b4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dcf4_2226_d5b4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dcf4_2226_d5b4&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_dcf4_2226_d5b4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a271_a8a7_c749", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a271_a8a7_c749.graph", "", "", "public", "Top Dataset, monolevel, vwnd.10m.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, vwnd.10m.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a271_a8a7_c749/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a271_a8a7_c749.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a271_a8a7_c749&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a271_a8a7_c749"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a43d_4e8d_df5e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a43d_4e8d_df5e.graph", "", "", "public", "Top Dataset, monolevel, vwnd.10m.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, vwnd.10m.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nvwnd (Monthly v-wind at 10 m, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a43d_4e8d_df5e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a43d_4e8d_df5e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a43d_4e8d_df5e&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a43d_4e8d_df5e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_868e_a1a6_cabd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_868e_a1a6_cabd.graph", "", "", "public", "Top Dataset, monolevel, vwnd.10m.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, vwnd.10m.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_868e_a1a6_cabd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_868e_a1a6_cabd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_868e_a1a6_cabd&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_868e_a1a6_cabd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfe3_5786_aa4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfe3_5786_aa4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bfe3_5786_aa4d/request", "", "public", "Top Dataset, monolevel, vwnd.sig995.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean 6-hourly V-wind at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bfe3_5786_aa4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bfe3_5786_aa4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bfe3_5786_aa4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bfe3_5786_aa4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bfe3_5786_aa4d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bfe3_5786_aa4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a3b_0a35_7ed7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a3b_0a35_7ed7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1a3b_0a35_7ed7/request", "", "public", "Top Dataset, monolevel, vwnd.sig995.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean 6-hourly V-wind at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1a3b_0a35_7ed7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1a3b_0a35_7ed7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1a3b_0a35_7ed7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1a3b_0a35_7ed7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1a3b_0a35_7ed7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1a3b_0a35_7ed7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4bf1_49a9_831a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4bf1_49a9_831a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4bf1_49a9_831a/request", "", "public", "Top Dataset, monolevel, vwnd.sig995.day.1968-1996.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean Daily V-wind at sigma level 0.995, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4bf1_49a9_831a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4bf1_49a9_831a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4bf1_49a9_831a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4bf1_49a9_831a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4bf1_49a9_831a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4bf1_49a9_831a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e317_fc80_471c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e317_fc80_471c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e317_fc80_471c/request", "", "public", "Top Dataset, monolevel, vwnd.sig995.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Daily Long Term Mean V-wind at sigma level 0.995, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e317_fc80_471c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e317_fc80_471c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e317_fc80_471c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e317_fc80_471c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e317_fc80_471c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e317_fc80_471c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2413_a6db_9ae1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2413_a6db_9ae1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2413_a6db_9ae1/request", "", "public", "Top Dataset, monolevel, vwnd.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Daily Long Term Mean V-wind at sigma level 0.995, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2413_a6db_9ae1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2413_a6db_9ae1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2413_a6db_9ae1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2413_a6db_9ae1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2413_a6db_9ae1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2413_a6db_9ae1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e0c_ea7f_3926", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e0c_ea7f_3926.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4e0c_ea7f_3926/request", "", "public", "Top Dataset, monolevel, vwnd.sig995.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean Monthly V-wind at sigma level 0.995, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4e0c_ea7f_3926_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4e0c_ea7f_3926_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4e0c_ea7f_3926/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4e0c_ea7f_3926.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4e0c_ea7f_3926&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4e0c_ea7f_3926"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5936_344a_f70e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5936_344a_f70e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5936_344a_f70e/request", "", "public", "Top Dataset, monolevel, vwnd.sig995.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly Long Term V-wind at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5936_344a_f70e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5936_344a_f70e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5936_344a_f70e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5936_344a_f70e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5936_344a_f70e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5936_344a_f70e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c6e7_33db_28b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c6e7_33db_28b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c6e7_33db_28b9/request", "", "public", "Top Dataset, monolevel, vwnd.sig995.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly Long Term V-wind at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c6e7_33db_28b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c6e7_33db_28b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c6e7_33db_28b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c6e7_33db_28b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c6e7_33db_28b9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c6e7_33db_28b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef92_2628_15f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef92_2628_15f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ef92_2628_15f3/request", "", "public", "Top Dataset, monolevel, vwnd.sig995.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly V-wind at sigma level 0.995, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ef92_2628_15f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ef92_2628_15f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ef92_2628_15f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ef92_2628_15f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ef92_2628_15f3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ef92_2628_15f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b126_5378_54b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b126_5378_54b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b126_5378_54b7/request", "", "public", "Top Dataset, monolevel, vwnd.tropo.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean 6-hourly V-wind at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b126_5378_54b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b126_5378_54b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b126_5378_54b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b126_5378_54b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b126_5378_54b7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b126_5378_54b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6536_74df_2c04", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6536_74df_2c04.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6536_74df_2c04/request", "", "public", "Top Dataset, monolevel, vwnd.tropo.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean 6-hourly V-wind at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6536_74df_2c04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6536_74df_2c04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6536_74df_2c04/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6536_74df_2c04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6536_74df_2c04&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6536_74df_2c04"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_071e_34db_aaea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_071e_34db_aaea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_071e_34db_aaea/request", "", "public", "Top Dataset, monolevel, vwnd.tropo.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean Daily V-wind at Tropopause, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_071e_34db_aaea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_071e_34db_aaea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_071e_34db_aaea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_071e_34db_aaea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_071e_34db_aaea&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_071e_34db_aaea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_838d_c06d_6f23", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_838d_c06d_6f23.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_838d_c06d_6f23/request", "", "public", "Top Dataset, monolevel, vwnd.tropo.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Daily Long Term Mean V-wind at Tropopause, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_838d_c06d_6f23_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_838d_c06d_6f23_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_838d_c06d_6f23/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_838d_c06d_6f23.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_838d_c06d_6f23&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_838d_c06d_6f23"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e62c_1fc4_528f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e62c_1fc4_528f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e62c_1fc4_528f/request", "", "public", "Top Dataset, monolevel, vwnd.tropo.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Daily Long Term Mean V-wind at Tropopause, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e62c_1fc4_528f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e62c_1fc4_528f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e62c_1fc4_528f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e62c_1fc4_528f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e62c_1fc4_528f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e62c_1fc4_528f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c13_e7cd_9e06", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c13_e7cd_9e06.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7c13_e7cd_9e06/request", "", "public", "Top Dataset, monolevel, vwnd.tropo.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean Monthly V-wind at Tropopause, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7c13_e7cd_9e06_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7c13_e7cd_9e06_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7c13_e7cd_9e06/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7c13_e7cd_9e06.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7c13_e7cd_9e06&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7c13_e7cd_9e06"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ce9_bebe_0f02", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ce9_bebe_0f02.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ce9_bebe_0f02/request", "", "public", "Top Dataset, monolevel, vwnd.tropo.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly Long Term V-wind at Tropopause, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ce9_bebe_0f02_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ce9_bebe_0f02_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ce9_bebe_0f02/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ce9_bebe_0f02.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ce9_bebe_0f02&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5ce9_bebe_0f02"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f2e_7296_942f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f2e_7296_942f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4f2e_7296_942f/request", "", "public", "Top Dataset, monolevel, vwnd.tropo.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly V-wind at Tropopause, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4f2e_7296_942f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4f2e_7296_942f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4f2e_7296_942f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4f2e_7296_942f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4f2e_7296_942f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4f2e_7296_942f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b3f_7482_9cee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b3f_7482_9cee.graph", "", "", "public", "Top Dataset, monolevel, vwsh.tropo.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, vwsh.tropo.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nvwsh (Long Term Monthly Mean Vertical Speed Shear, 1/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b3f_7482_9cee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b3f_7482_9cee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b3f_7482_9cee&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_5b3f_7482_9cee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1bf1_31c8_c97c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1bf1_31c8_c97c.graph", "", "", "public", "Top Dataset, monolevel, vwsh.tropo.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, vwsh.tropo.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1bf1_31c8_c97c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1bf1_31c8_c97c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1bf1_31c8_c97c&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_1bf1_31c8_c97c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e02_c985_43c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e02_c985_43c5.graph", "", "", "public", "Top Dataset, monolevel, vwsh.tropo.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, vwsh.tropo.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nvwsh (Monthly Vertical Speed Shear, 1/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4e02_c985_43c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4e02_c985_43c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4e02_c985_43c5&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_4e02_c985_43c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8861_101a_b6e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8861_101a_b6e4.graph", "", "", "public", "Top Dataset, monolevel, vwsh.tropo.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, vwsh.tropo.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8861_101a_b6e4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8861_101a_b6e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8861_101a_b6e4&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_8861_101a_b6e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_55d8_cb70_6fd7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_55d8_cb70_6fd7.graph", "", "", "public", "Top Dataset, monolevel, wcconv.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nwcconv (Long Term Monthly Mean Water Condensate Flux Convergence Accumulation at Entire Atmosphere Considered as a Single Layer, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_55d8_cb70_6fd7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_55d8_cb70_6fd7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_55d8_cb70_6fd7&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_55d8_cb70_6fd7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff43_79a5_ac25", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff43_79a5_ac25.graph", "", "", "public", "Top Dataset, monolevel, wcconv.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff43_79a5_ac25/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff43_79a5_ac25.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff43_79a5_ac25&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ff43_79a5_ac25"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8064_d4cc_67af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8064_d4cc_67af.graph", "", "", "public", "Top Dataset, monolevel, wcconv.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, wcconv.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nwcconv (Monthly Water Condensate Flux Convergence Accumulation at Entire Atmosphere Considered as a Single Layer, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8064_d4cc_67af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8064_d4cc_67af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8064_d4cc_67af&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_8064_d4cc_67af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dfd_ed53_9385", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dfd_ed53_9385.graph", "", "", "public", "Top Dataset, monolevel, wcconv.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, wcconv.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1dfd_ed53_9385/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1dfd_ed53_9385.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1dfd_ed53_9385&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_1dfd_ed53_9385"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_042a_9e61_ec28", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_042a_9e61_ec28.graph", "", "", "public", "Top Dataset, monolevel, wcinc.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nwcinc (Long Term Monthly Mean Water Condensate Added by Precip. Assimilation Accumulation at Entire Atmosphere Considered as a Single Layer, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_042a_9e61_ec28/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_042a_9e61_ec28.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_042a_9e61_ec28&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_042a_9e61_ec28"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f701_7b3d_efb2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f701_7b3d_efb2.graph", "", "", "public", "Top Dataset, monolevel, wcinc.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f701_7b3d_efb2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f701_7b3d_efb2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f701_7b3d_efb2&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_f701_7b3d_efb2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3876_7b0e_7d6c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3876_7b0e_7d6c.graph", "", "", "public", "Top Dataset, monolevel, wcinc.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, wcinc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nwcinc (Monthly Water Condensate Added by Precip. Assimilation Accumulation at Entire Atmosphere Considered as a Single Layer, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3876_7b0e_7d6c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3876_7b0e_7d6c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3876_7b0e_7d6c&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_3876_7b0e_7d6c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a51_cd34_10b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a51_cd34_10b6.graph", "", "", "public", "Top Dataset, monolevel, wcinc.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, wcinc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a51_cd34_10b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a51_cd34_10b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a51_cd34_10b6&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_6a51_cd34_10b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48c9_7bba_8db8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48c9_7bba_8db8.graph", "", "", "public", "Top Dataset, monolevel, wcuflx.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nwcuflx (Long Term Monthly Mean Water Condensate Zonal Flux Accumulation at Entire Atmosphere Considered as a Single Layer, kg/m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_48c9_7bba_8db8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_48c9_7bba_8db8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_48c9_7bba_8db8&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_48c9_7bba_8db8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cdca_7c50_b093", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cdca_7c50_b093.graph", "", "", "public", "Top Dataset, monolevel, wcuflx.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cdca_7c50_b093/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cdca_7c50_b093.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cdca_7c50_b093&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_cdca_7c50_b093"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_964e_17d7_a258", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_964e_17d7_a258.graph", "", "", "public", "Top Dataset, monolevel, wcuflx.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, wcuflx.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nwcuflx (Monthly Water Condensate Zonal Flux Accumulation at Entire Atmosphere Considered as a Single Layer, kg/m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_964e_17d7_a258/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_964e_17d7_a258.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_964e_17d7_a258&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_964e_17d7_a258"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db87_7673_4024", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db87_7673_4024.graph", "", "", "public", "Top Dataset, monolevel, wcuflx.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, wcuflx.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db87_7673_4024/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db87_7673_4024.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db87_7673_4024&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_db87_7673_4024"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5324_ae23_f06c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5324_ae23_f06c.graph", "", "", "public", "Top Dataset, monolevel, wcvflx.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nwcvflx (Long Term Monthly Mean Water Condensate Meridional Flux Accumulation at Entire Atmosphere Considered as a Single Layer, kg/m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5324_ae23_f06c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5324_ae23_f06c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5324_ae23_f06c&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_5324_ae23_f06c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5646_200c_58c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5646_200c_58c5.graph", "", "", "public", "Top Dataset, monolevel, wcvflx.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5646_200c_58c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5646_200c_58c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5646_200c_58c5&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_5646_200c_58c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_49d8_a4dd_4c0c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_49d8_a4dd_4c0c.graph", "", "", "public", "Top Dataset, monolevel, wcvflx.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, wcvflx.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nwcvflx (Monthly Water Condensate Meridional Flux Accumulation at Entire Atmosphere Considered as a Single Layer, kg/m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_49d8_a4dd_4c0c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_49d8_a4dd_4c0c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_49d8_a4dd_4c0c&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_49d8_a4dd_4c0c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d32e_d38d_a38a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d32e_d38d_a38a.graph", "", "", "public", "Top Dataset, monolevel, wcvflx.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, wcvflx.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d32e_d38d_a38a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d32e_d38d_a38a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d32e_d38d_a38a&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_d32e_d38d_a38a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a874_12aa_e69f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a874_12aa_e69f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a874_12aa_e69f/request", "", "public", "Top Dataset, monolevel, weasd.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (3-hourly Long Term Mean Water Equiv. of Accum. Snow Depth at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a874_12aa_e69f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a874_12aa_e69f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a874_12aa_e69f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a874_12aa_e69f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a874_12aa_e69f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a874_12aa_e69f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3c5_cb01_6573", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3c5_cb01_6573.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c3c5_cb01_6573/request", "", "public", "Top Dataset, monolevel, weasd.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (3-hourly Long Term Mean Water Equiv. of Accum. Snow Depth Spread at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c3c5_cb01_6573_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c3c5_cb01_6573_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c3c5_cb01_6573/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c3c5_cb01_6573.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c3c5_cb01_6573&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c3c5_cb01_6573"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_82b2_fc3e_0f74", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_82b2_fc3e_0f74.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_82b2_fc3e_0f74/request", "", "public", "Top Dataset, monolevel, weasd.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (Daily Long Term Mean Water Equiv. of Accum. Snow Depth Spread at surface, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_82b2_fc3e_0f74_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_82b2_fc3e_0f74_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_82b2_fc3e_0f74/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_82b2_fc3e_0f74.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_82b2_fc3e_0f74&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_82b2_fc3e_0f74"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f735_0243_f5f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f735_0243_f5f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f735_0243_f5f3/request", "", "public", "Top Dataset, monolevel, weasd.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (Daily Long Term Mean Water Equiv. of Accum. Snow Depth at surface, kg/m^2)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f735_0243_f5f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f735_0243_f5f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f735_0243_f5f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f735_0243_f5f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f735_0243_f5f3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f735_0243_f5f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28c8_9cd8_37ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28c8_9cd8_37ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28c8_9cd8_37ce/request", "", "public", "Top Dataset, monolevel, weasd.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (Long Term Mean Monthly Water Equiv. of Accum. Snow Depth Spread at surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28c8_9cd8_37ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28c8_9cd8_37ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28c8_9cd8_37ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28c8_9cd8_37ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28c8_9cd8_37ce&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_28c8_9cd8_37ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99e9_2614_2538", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99e9_2614_2538.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99e9_2614_2538/request", "", "public", "Top Dataset, monolevel, weasd.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (Long Term Mean Monthly Water Equiv. of Accum. Snow Depth at surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99e9_2614_2538_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99e9_2614_2538_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99e9_2614_2538/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99e9_2614_2538.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99e9_2614_2538&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_99e9_2614_2538"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1599_9a2d_b5b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1599_9a2d_b5b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1599_9a2d_b5b6/request", "", "public", "Top Dataset, monolevel, weasd.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (Monthly Long Term Water Equiv. of Accum. Snow Depth Spread at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1599_9a2d_b5b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1599_9a2d_b5b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1599_9a2d_b5b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1599_9a2d_b5b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1599_9a2d_b5b6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1599_9a2d_b5b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18b3_64be_bb1c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18b3_64be_bb1c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_18b3_64be_bb1c/request", "", "public", "Top Dataset, monolevel, weasd.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis V2), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (Monthly Long Term Water Equiv. of Accum. Snow Depth at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_18b3_64be_bb1c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_18b3_64be_bb1c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_18b3_64be_bb1c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_18b3_64be_bb1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_18b3_64be_bb1c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_18b3_64be_bb1c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6549_20ff_296b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6549_20ff_296b.graph", "", "", "public", "Top Dataset, monolevel, weasd.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, weasd.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nweasd (Long Term Monthly Mean Accumulated Snow at Surface, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6549_20ff_296b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6549_20ff_296b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6549_20ff_296b&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_6549_20ff_296b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cb8_cff4_a59f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cb8_cff4_a59f.graph", "", "", "public", "Top Dataset, monolevel, weasd.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, weasd.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3cb8_cff4_a59f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3cb8_cff4_a59f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3cb8_cff4_a59f&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_3cb8_cff4_a59f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f2e_56a1_cb28", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f2e_56a1_cb28.graph", "", "", "public", "Top Dataset, monolevel, weasd.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, weasd.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nweasd (Monthly Accumulated Snow at Surface, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4f2e_56a1_cb28/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4f2e_56a1_cb28.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4f2e_56a1_cb28&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_4f2e_56a1_cb28"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7296_057a_175b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7296_057a_175b.graph", "", "", "public", "Top Dataset, monolevel, weasd.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, weasd.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7296_057a_175b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7296_057a_175b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7296_057a_175b&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7296_057a_175b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf5e_9d39_e99c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf5e_9d39_e99c.graph", "", "", "public", "Top Dataset, monolevel, wspd.10m.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, wspd.10m.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nwspd (Monthly Long Term Mean Wind Speed at 10 m, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf5e_9d39_e99c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf5e_9d39_e99c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf5e_9d39_e99c&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_bf5e_9d39_e99c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e24a_5390_ea5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e24a_5390_ea5b.graph", "", "", "public", "Top Dataset, monolevel, wspd.10m.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, wspd.10m.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e24a_5390_ea5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e24a_5390_ea5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e24a_5390_ea5b&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_e24a_5390_ea5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64d9_a47a_f642", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64d9_a47a_f642.graph", "", "", "public", "Top Dataset, monolevel, wspd.10m.mon.mean (Monthly NARR) [time][y][x], 1979-present", "Monthly NARR (Top Dataset, monolevel, wspd.10m.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nwspd (Monthly Wind Speed at 10 m, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_64d9_a47a_f642/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_64d9_a47a_f642.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_64d9_a47a_f642&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_64d9_a47a_f642"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44c4_9448_c601", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44c4_9448_c601.graph", "", "", "public", "Top Dataset, monolevel, wspd.10m.mon.mean (Monthly NARR) [y][x]", "Monthly NARR (Top Dataset, monolevel, wspd.10m.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_44c4_9448_c601/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_44c4_9448_c601.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_44c4_9448_c601&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_44c4_9448_c601"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4323_6af5_75a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4323_6af5_75a1.graph", "", "", "public", "Top Dataset, monolevel, wvconv.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nwvconv (Long Term Monthly Mean Water Vapor Flux Convergence Accumulation at Entire Atmosphere Considered as a Single Layer, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4323_6af5_75a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4323_6af5_75a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4323_6af5_75a1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_4323_6af5_75a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c8b_c734_4be4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c8b_c734_4be4.graph", "", "", "public", "Top Dataset, monolevel, wvconv.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c8b_c734_4be4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c8b_c734_4be4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c8b_c734_4be4&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_4c8b_c734_4be4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6308_90a9_1c14", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6308_90a9_1c14.graph", "", "", "public", "Top Dataset, monolevel, wvconv.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, wvconv.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nwvconv (Monthly Water Vapor Flux Convergence Accumulation at Entire Atmosphere Considered as a Single Layer, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6308_90a9_1c14/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6308_90a9_1c14.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6308_90a9_1c14&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_6308_90a9_1c14"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd96_1531_6bbb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd96_1531_6bbb.graph", "", "", "public", "Top Dataset, monolevel, wvconv.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, wvconv.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dd96_1531_6bbb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dd96_1531_6bbb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dd96_1531_6bbb&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_dd96_1531_6bbb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc27_7a0b_6dba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc27_7a0b_6dba.graph", "", "", "public", "Top Dataset, monolevel, wvinc.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nwvinc (Long Term Monthly Mean Water Vapor Added by Precip. Assimilation Accumulation at Entire Atmosphere Considered as a Single Layer, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc27_7a0b_6dba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc27_7a0b_6dba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc27_7a0b_6dba&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_dc27_7a0b_6dba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c7e_b9f5_1d1d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c7e_b9f5_1d1d.graph", "", "", "public", "Top Dataset, monolevel, wvinc.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c7e_b9f5_1d1d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c7e_b9f5_1d1d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c7e_b9f5_1d1d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_3c7e_b9f5_1d1d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cef9_a991_a451", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cef9_a991_a451.graph", "", "", "public", "Top Dataset, monolevel, wvinc.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, wvinc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nwvinc (Monthly Water Vapor Added by Precip. Assimilation Accumulation at Entire Atmosphere Considered as a Single Layer, kg/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cef9_a991_a451/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cef9_a991_a451.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cef9_a991_a451&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_cef9_a991_a451"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97f7_582d_d701", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97f7_582d_d701.graph", "", "", "public", "Top Dataset, monolevel, wvinc.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, wvinc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_97f7_582d_d701/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_97f7_582d_d701.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_97f7_582d_d701&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_97f7_582d_d701"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a988_2bb0_9942", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a988_2bb0_9942.graph", "", "", "public", "Top Dataset, monolevel, wvuflx.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nwvuflx (Long Term Monthly Mean Water Vapor Zonal Flux Accumulation at Entire Atmosphere Considered as a Single Layer, kg/m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a988_2bb0_9942/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a988_2bb0_9942.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a988_2bb0_9942&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a988_2bb0_9942"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0ed_ded8_66dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0ed_ded8_66dc.graph", "", "", "public", "Top Dataset, monolevel, wvuflx.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e0ed_ded8_66dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e0ed_ded8_66dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e0ed_ded8_66dc&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_e0ed_ded8_66dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a740_ff0d_2e35", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a740_ff0d_2e35.graph", "", "", "public", "Top Dataset, monolevel, wvuflx.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, wvuflx.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nwvuflx (Monthly Water Vapor Zonal Flux Accumulation at Entire Atmosphere Considered as a Single Layer, kg/m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a740_ff0d_2e35/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a740_ff0d_2e35.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a740_ff0d_2e35&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a740_ff0d_2e35"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0fd6_e247_f886", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0fd6_e247_f886.graph", "", "", "public", "Top Dataset, monolevel, wvuflx.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, wvuflx.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0fd6_e247_f886/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0fd6_e247_f886.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0fd6_e247_f886&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_0fd6_e247_f886"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c14c_7bbd_5eba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c14c_7bbd_5eba.graph", "", "", "public", "Top Dataset, monolevel, wvvflx.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nwvvflx (Long Term Monthly Mean Water Vapor Meridional Flux Accumulation at Entire Atmosphere Considered as a Single Layer, kg/m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c14c_7bbd_5eba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c14c_7bbd_5eba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c14c_7bbd_5eba&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_c14c_7bbd_5eba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef95_d104_9578", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef95_d104_9578.graph", "", "", "public", "Top Dataset, monolevel, wvvflx.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ef95_d104_9578/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ef95_d104_9578.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ef95_d104_9578&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ef95_d104_9578"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5385_103d_e609", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5385_103d_e609.graph", "", "", "public", "Top Dataset, monolevel, wvvflx.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, wvvflx.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nwvvflx (Monthly Water Vapor Meridional Flux Accumulation at Entire Atmosphere Considered as a Single Layer, kg/m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5385_103d_e609/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5385_103d_e609.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5385_103d_e609&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_5385_103d_e609"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e19d_bc88_e6e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e19d_bc88_e6e0.graph", "", "", "public", "Top Dataset, monolevel, wvvflx.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, monolevel, wvvflx.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e19d_bc88_e6e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e19d_bc88_e6e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e19d_bc88_e6e0&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_e19d_bc88_e6e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_3392_87d7_dedc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_3392_87d7_dedc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_3392_87d7_dedc/request", "", "public", "Top Dataset, monthly, NOAAGlobalTemp monthly, 5.0\u00b0, 1880-present", "The NOAA Global Surface Temperature Dataset (NOAAGlobalTemp) (Top Dataset, monthly, NOAAGlobalTemp monthly)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nanom (Global Temperature Anomalies, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_3392_87d7_dedc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_3392_87d7_dedc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_3392_87d7_dedc/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/gcag/monthly/NOAAGlobalTemp_monthly.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_3392_87d7_dedc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_3392_87d7_dedc&showErrors=false&email=", "NOAAs National Centers for Environmental Information", "noaa_ncei_3392_87d7_dedc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f6d_15d6_5baa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f6d_15d6_5baa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f6d_15d6_5baa/request", "", "public", "Top Dataset, monthly, otemp.anal1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, monthly, otemp.anal1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, analyzed mean, 1-deg grid, Monthly, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f6d_15d6_5baa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f6d_15d6_5baa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f6d_15d6_5baa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f6d_15d6_5baa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f6d_15d6_5baa&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_7f6d_15d6_5baa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1de8_2f0a_774f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1de8_2f0a_774f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1de8_2f0a_774f/request", "", "public", "Top Dataset, monthly, otemp.dd1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, monthly, otemp.dd1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, raw nobs, 1-deg grid, Monthly, number of observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1de8_2f0a_774f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1de8_2f0a_774f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1de8_2f0a_774f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1de8_2f0a_774f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1de8_2f0a_774f&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_1de8_2f0a_774f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8062_e528_c6e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8062_e528_c6e8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8062_e528_c6e8/request", "", "public", "Top Dataset, monthly, otemp.dd5deg (NODC World Ocean Atlas 1998), 5.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, monthly, otemp.dd5deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, raw nobs, 5-deg grid, Monthly, number of observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8062_e528_c6e8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8062_e528_c6e8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8062_e528_c6e8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8062_e528_c6e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8062_e528_c6e8&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_8062_e528_c6e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be6a_47fc_897c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be6a_47fc_897c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_be6a_47fc_897c/request", "", "public", "Top Dataset, monthly, otemp.gp1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, monthly, otemp.gp1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, data distribution, 1-deg grid, Monthly, number of cells)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_be6a_47fc_897c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_be6a_47fc_897c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_be6a_47fc_897c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_be6a_47fc_897c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_be6a_47fc_897c&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_be6a_47fc_897c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5096_9f9e_627d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5096_9f9e_627d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5096_9f9e_627d/request", "", "public", "Top Dataset, monthly, otemp.ma1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, monthly, otemp.ma1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, analyzed mean - analyzed annual mean, 1-deg grid, Monthly, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5096_9f9e_627d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5096_9f9e_627d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5096_9f9e_627d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5096_9f9e_627d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5096_9f9e_627d&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_5096_9f9e_627d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd31_53b6_c775", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd31_53b6_c775.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dd31_53b6_c775/request", "", "public", "Top Dataset, monthly, otemp.oa1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, monthly, otemp.oa1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, raw - analyzed, 1-deg grid, Monthly, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dd31_53b6_c775_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dd31_53b6_c775_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dd31_53b6_c775/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dd31_53b6_c775.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dd31_53b6_c775&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_dd31_53b6_c775"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edad_6ddb_5559", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edad_6ddb_5559.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_edad_6ddb_5559/request", "", "public", "Top Dataset, monthly, otemp.raw1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, monthly, otemp.raw1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, unanalyzed, 1-deg grid, Monthly, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_edad_6ddb_5559_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_edad_6ddb_5559_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_edad_6ddb_5559/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_edad_6ddb_5559.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_edad_6ddb_5559&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_edad_6ddb_5559"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b43f_bea3_539c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b43f_bea3_539c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b43f_bea3_539c/request", "", "public", "Top Dataset, monthly, otemp.raw5deg (NODC World Ocean Atlas 1998), 5.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, monthly, otemp.raw5deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, unanalyzed, 5-deg grid, Monthly, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b43f_bea3_539c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b43f_bea3_539c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b43f_bea3_539c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b43f_bea3_539c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b43f_bea3_539c&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_b43f_bea3_539c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aae3_4ba8_c425", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aae3_4ba8_c425.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aae3_4ba8_c425/request", "", "public", "Top Dataset, monthly, otemp.sd1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, monthly, otemp.sd1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, standard deviation, 1-deg grid, Monthly, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aae3_4ba8_c425_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aae3_4ba8_c425_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aae3_4ba8_c425/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aae3_4ba8_c425.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aae3_4ba8_c425&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_aae3_4ba8_c425"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b01_1cfe_7be1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b01_1cfe_7be1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b01_1cfe_7be1/request", "", "public", "Top Dataset, monthly, otemp.sd5deg (NODC World Ocean Atlas 1998), 5.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, monthly, otemp.sd5deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, standard deviation, 5-deg grid, Monthly, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b01_1cfe_7be1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b01_1cfe_7be1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b01_1cfe_7be1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b01_1cfe_7be1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b01_1cfe_7be1&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_6b01_1cfe_7be1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c1e9_d920_2046", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c1e9_d920_2046.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c1e9_d920_2046/request", "", "public", "Top Dataset, monthly, otemp.se1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, monthly, otemp.se1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, standard error, 1-deg grid, Monthly, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c1e9_d920_2046_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c1e9_d920_2046_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c1e9_d920_2046/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c1e9_d920_2046.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c1e9_d920_2046&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_c1e9_d920_2046"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6210_474a_231c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6210_474a_231c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6210_474a_231c/request", "", "public", "Top Dataset, monthly, otemp.se5deg (NODC World Ocean Atlas 1998), 5.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, monthly, otemp.se5deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, standard error, 5-deg grid, Monthly, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6210_474a_231c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6210_474a_231c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6210_474a_231c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6210_474a_231c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6210_474a_231c&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_6210_474a_231c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d57_c17a_699a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d57_c17a_699a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d57_c17a_699a/request", "", "public", "Top Dataset, monthly, salt.anal1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, monthly, salt.anal1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, analyzed mean, 1-deg grid, Monthly, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d57_c17a_699a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d57_c17a_699a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d57_c17a_699a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d57_c17a_699a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d57_c17a_699a&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_1d57_c17a_699a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0bb_9355_5bf8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0bb_9355_5bf8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c0bb_9355_5bf8/request", "", "public", "Top Dataset, monthly, salt.dd1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, monthly, salt.dd1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, raw nobs, 1-deg grid, Monthly, number of observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c0bb_9355_5bf8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c0bb_9355_5bf8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c0bb_9355_5bf8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c0bb_9355_5bf8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c0bb_9355_5bf8&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_c0bb_9355_5bf8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b802_8b4f_8e99", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b802_8b4f_8e99.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b802_8b4f_8e99/request", "", "public", "Top Dataset, monthly, salt.dd5deg (NODC World Ocean Atlas 1998), 5.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, monthly, salt.dd5deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, raw nobs, 5-deg grid, Monthly, number of observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b802_8b4f_8e99_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b802_8b4f_8e99_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b802_8b4f_8e99/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b802_8b4f_8e99.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b802_8b4f_8e99&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_b802_8b4f_8e99"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6030_5e34_0673", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6030_5e34_0673.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6030_5e34_0673/request", "", "public", "Top Dataset, monthly, salt.gp1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, monthly, salt.gp1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, data distribution, 1-deg grid, Monthly, number of cells)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6030_5e34_0673_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6030_5e34_0673_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6030_5e34_0673/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6030_5e34_0673.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6030_5e34_0673&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_6030_5e34_0673"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38c3_27fa_a301", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38c3_27fa_a301.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_38c3_27fa_a301/request", "", "public", "Top Dataset, monthly, salt.ma1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, monthly, salt.ma1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, analyzed mean - analyzed annual mean, 1-deg grid, Monthly, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_38c3_27fa_a301_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_38c3_27fa_a301_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_38c3_27fa_a301/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_38c3_27fa_a301.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_38c3_27fa_a301&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_38c3_27fa_a301"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93df_a029_5900", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93df_a029_5900.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_93df_a029_5900/request", "", "public", "Top Dataset, monthly, salt.oa1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, monthly, salt.oa1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, raw - analyzed, 1-deg grid, Monthly, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_93df_a029_5900_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_93df_a029_5900_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_93df_a029_5900/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_93df_a029_5900.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_93df_a029_5900&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_93df_a029_5900"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a712_5147_9526", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a712_5147_9526.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a712_5147_9526/request", "", "public", "Top Dataset, monthly, salt.raw1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, monthly, salt.raw1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, unanalyzed, 1-deg grid, Monthly, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a712_5147_9526_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a712_5147_9526_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a712_5147_9526/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a712_5147_9526.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a712_5147_9526&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_a712_5147_9526"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df47_20db_98af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df47_20db_98af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_df47_20db_98af/request", "", "public", "Top Dataset, monthly, salt.raw5deg (NODC World Ocean Atlas 1998), 5.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, monthly, salt.raw5deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, unanalyzed, 5-deg grid, Monthly, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_df47_20db_98af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_df47_20db_98af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_df47_20db_98af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_df47_20db_98af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_df47_20db_98af&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_df47_20db_98af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3720_e147_1178", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3720_e147_1178.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3720_e147_1178/request", "", "public", "Top Dataset, monthly, salt.sd1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, monthly, salt.sd1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, standard deviation, 1-deg grid, Monthly, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3720_e147_1178_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3720_e147_1178_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3720_e147_1178/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3720_e147_1178.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3720_e147_1178&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_3720_e147_1178"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c52_31ff_1fa2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c52_31ff_1fa2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c52_31ff_1fa2/request", "", "public", "Top Dataset, monthly, salt.sd5deg (NODC World Ocean Atlas 1998), 5.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, monthly, salt.sd5deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, standard deviation, 5-deg grid, Monthly, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c52_31ff_1fa2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c52_31ff_1fa2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c52_31ff_1fa2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c52_31ff_1fa2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c52_31ff_1fa2&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_9c52_31ff_1fa2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1152_60e2_c493", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1152_60e2_c493.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1152_60e2_c493/request", "", "public", "Top Dataset, monthly, salt.se1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, monthly, salt.se1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, standard error, 1-deg grid, Monthly, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1152_60e2_c493_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1152_60e2_c493_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1152_60e2_c493/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1152_60e2_c493.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1152_60e2_c493&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_1152_60e2_c493"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_74c4_56aa_881a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_74c4_56aa_881a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_74c4_56aa_881a/request", "", "public", "Top Dataset, monthly, salt.se5deg (NODC World Ocean Atlas 1998), 5.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, monthly, salt.se5deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, standard error, 5-deg grid, Monthly, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_74c4_56aa_881a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_74c4_56aa_881a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_74c4_56aa_881a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_74c4_56aa_881a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_74c4_56aa_881a&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_74c4_56aa_881a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2472_eac2_c390", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2472_eac2_c390.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2472_eac2_c390/request", "", "public", "Top Dataset, ncep.marine, air.mean (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2472_eac2_c390_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2472_eac2_c390_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2472_eac2_c390/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.marine.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2472_eac2_c390.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2472_eac2_c390&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2472_eac2_c390"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_626f_127c_27cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_626f_127c_27cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_626f_127c_27cd/request", "", "public", "Top Dataset, ncep.marine, air.nobs (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_626f_127c_27cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_626f_127c_27cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_626f_127c_27cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.marine.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_626f_127c_27cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_626f_127c_27cd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_626f_127c_27cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a44_5a9a_c11e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a44_5a9a_c11e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a44_5a9a_c11e/request", "", "public", "Top Dataset, ncep.marine, cldc.mean (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a44_5a9a_c11e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a44_5a9a_c11e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a44_5a9a_c11e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.marine.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a44_5a9a_c11e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a44_5a9a_c11e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6a44_5a9a_c11e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7f8_d982_b3c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7f8_d982_b3c9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c7f8_d982_b3c9/request", "", "public", "Top Dataset, ncep.marine, cldc.nobs (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c7f8_d982_b3c9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c7f8_d982_b3c9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c7f8_d982_b3c9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.marine.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c7f8_d982_b3c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c7f8_d982_b3c9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c7f8_d982_b3c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3333_8ad9_1fd4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3333_8ad9_1fd4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3333_8ad9_1fd4/request", "", "public", "Top Dataset, ncep.marine, lflx.mean (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3333_8ad9_1fd4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3333_8ad9_1fd4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3333_8ad9_1fd4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.marine.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3333_8ad9_1fd4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3333_8ad9_1fd4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3333_8ad9_1fd4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed99_860e_e8a3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed99_860e_e8a3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ed99_860e_e8a3/request", "", "public", "Top Dataset, ncep.marine, lflx.nobs (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ed99_860e_e8a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ed99_860e_e8a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ed99_860e_e8a3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.marine.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ed99_860e_e8a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ed99_860e_e8a3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ed99_860e_e8a3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_11d1_96f5_6190", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_11d1_96f5_6190.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_11d1_96f5_6190/request", "", "public", "Top Dataset, ncep.marine, rhum.mean (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_11d1_96f5_6190_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_11d1_96f5_6190_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_11d1_96f5_6190/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.marine.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_11d1_96f5_6190.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_11d1_96f5_6190&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_11d1_96f5_6190"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9811_d95d_029a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9811_d95d_029a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9811_d95d_029a/request", "", "public", "Top Dataset, ncep.marine, rhum.nobs (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9811_d95d_029a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9811_d95d_029a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9811_d95d_029a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.marine.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9811_d95d_029a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9811_d95d_029a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9811_d95d_029a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71eb_8faa_eebf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71eb_8faa_eebf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_71eb_8faa_eebf/request", "", "public", "Top Dataset, ncep.marine, sflx.mean (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_71eb_8faa_eebf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_71eb_8faa_eebf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_71eb_8faa_eebf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.marine.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_71eb_8faa_eebf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_71eb_8faa_eebf&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_71eb_8faa_eebf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_feb5_e0e7_b32f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_feb5_e0e7_b32f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_feb5_e0e7_b32f/request", "", "public", "Top Dataset, ncep.marine, sflx.nobs (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_feb5_e0e7_b32f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_feb5_e0e7_b32f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_feb5_e0e7_b32f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.marine.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_feb5_e0e7_b32f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_feb5_e0e7_b32f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_feb5_e0e7_b32f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c5d_7e6e_db72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c5d_7e6e_db72.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c5d_7e6e_db72/request", "", "public", "Top Dataset, ncep.marine, shum.mean (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c5d_7e6e_db72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c5d_7e6e_db72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c5d_7e6e_db72/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.marine.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c5d_7e6e_db72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c5d_7e6e_db72&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0c5d_7e6e_db72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86db_6929_ac27", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86db_6929_ac27.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_86db_6929_ac27/request", "", "public", "Top Dataset, ncep.marine, shum.nobs (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86db_6929_ac27_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86db_6929_ac27_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86db_6929_ac27/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.marine.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86db_6929_ac27.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86db_6929_ac27&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_86db_6929_ac27"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f34_dcf5_3e07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f34_dcf5_3e07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f34_dcf5_3e07/request", "", "public", "Top Dataset, ncep.marine, slp.mean (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, mb)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f34_dcf5_3e07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f34_dcf5_3e07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f34_dcf5_3e07/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/ncep.marine/slp.mean.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f34_dcf5_3e07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f34_dcf5_3e07&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0f34_dcf5_3e07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f408_1845_df0c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f408_1845_df0c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f408_1845_df0c/request", "", "public", "Top Dataset, ncep.marine, slp.nobs (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f408_1845_df0c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f408_1845_df0c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f408_1845_df0c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/ncep.marine/slp.nobs.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f408_1845_df0c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f408_1845_df0c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f408_1845_df0c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c78_da56_833e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c78_da56_833e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8c78_da56_833e/request", "", "public", "Top Dataset, ncep.marine, sst.mean (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8c78_da56_833e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8c78_da56_833e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8c78_da56_833e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.marine.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8c78_da56_833e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8c78_da56_833e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8c78_da56_833e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0bdb_44d2_a412", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0bdb_44d2_a412.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0bdb_44d2_a412/request", "", "public", "Top Dataset, ncep.marine, sst.nobs (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0bdb_44d2_a412_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0bdb_44d2_a412_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0bdb_44d2_a412/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.marine.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0bdb_44d2_a412.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0bdb_44d2_a412&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0bdb_44d2_a412"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4926_fed2_7514", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4926_fed2_7514.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4926_fed2_7514/request", "", "public", "Top Dataset, ncep.marine, ustr.mean (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, ustr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nustr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4926_fed2_7514_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4926_fed2_7514_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4926_fed2_7514/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.marine.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4926_fed2_7514.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4926_fed2_7514&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4926_fed2_7514"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f216_6aa2_9e0a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f216_6aa2_9e0a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f216_6aa2_9e0a/request", "", "public", "Top Dataset, ncep.marine, ustr.nobs (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, ustr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nustr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f216_6aa2_9e0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f216_6aa2_9e0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f216_6aa2_9e0a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.marine.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f216_6aa2_9e0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f216_6aa2_9e0a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f216_6aa2_9e0a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2aea_e483_6d30", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2aea_e483_6d30.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2aea_e483_6d30/request", "", "public", "Top Dataset, ncep.marine, uwnd.mean (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2aea_e483_6d30_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2aea_e483_6d30_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2aea_e483_6d30/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.marine.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2aea_e483_6d30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2aea_e483_6d30&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2aea_e483_6d30"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a08_1756_4922", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a08_1756_4922.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a08_1756_4922/request", "", "public", "Top Dataset, ncep.marine, uwnd.nobs (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a08_1756_4922_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a08_1756_4922_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a08_1756_4922/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.marine.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a08_1756_4922.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a08_1756_4922&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0a08_1756_4922"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b88_1d7d_0097", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b88_1d7d_0097.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9b88_1d7d_0097/request", "", "public", "Top Dataset, ncep.marine, vstr.mean (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, vstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9b88_1d7d_0097_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9b88_1d7d_0097_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9b88_1d7d_0097/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.marine.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9b88_1d7d_0097.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9b88_1d7d_0097&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9b88_1d7d_0097"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1776_944b_cf66", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1776_944b_cf66.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1776_944b_cf66/request", "", "public", "Top Dataset, ncep.marine, vstr.nobs (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, vstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1776_944b_cf66_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1776_944b_cf66_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1776_944b_cf66/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.marine.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1776_944b_cf66.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1776_944b_cf66&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1776_944b_cf66"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7793_df4f_e3a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7793_df4f_e3a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7793_df4f_e3a0/request", "", "public", "Top Dataset, ncep.marine, vwnd.mean (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7793_df4f_e3a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7793_df4f_e3a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7793_df4f_e3a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.marine.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7793_df4f_e3a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7793_df4f_e3a0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7793_df4f_e3a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf88_a8eb_3a57", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf88_a8eb_3a57.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf88_a8eb_3a57/request", "", "public", "Top Dataset, ncep.marine, vwnd.nobs (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf88_a8eb_3a57_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf88_a8eb_3a57_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf88_a8eb_3a57/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.marine.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf88_a8eb_3a57.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf88_a8eb_3a57&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bf88_a8eb_3a57"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa5c_3216_64d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa5c_3216_64d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fa5c_3216_64d4/request", "", "public", "Top Dataset, ncep.marine, wspd.mean (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, wspd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fa5c_3216_64d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fa5c_3216_64d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fa5c_3216_64d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.marine.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fa5c_3216_64d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fa5c_3216_64d4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fa5c_3216_64d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3b1_49fa_5f0c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3b1_49fa_5f0c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d3b1_49fa_5f0c/request", "", "public", "Top Dataset, ncep.marine, wspd.nobs (NCEP Real-time Marine), 2.0\u00b0, 1991-2011", "National Centers for Environmental Prediction (NCEP) Real-time Marine (Top Dataset, ncep.marine, wspd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d3b1_49fa_5f0c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d3b1_49fa_5f0c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d3b1_49fa_5f0c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.marine.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d3b1_49fa_5f0c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d3b1_49fa_5f0c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d3b1_49fa_5f0c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2500_b640_212b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2500_b640_212b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2500_b640_212b/request", "", "public", "Top Dataset, noaa hrc, hrc.norm monthlies (NOAA Highly Reflective Clouds, 25N-25S), 1.0\u00b0, 1971-1985", "NOAA Highly Reflective Clouds, 25N-25S (Top Dataset, noaa hrc, hrc.norm monthlies)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhrc (Highly Reflective Clouds Normalized Monthly Mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2500_b640_212b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2500_b640_212b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2500_b640_212b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.hrc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2500_b640_212b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2500_b640_212b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2500_b640_212b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3286_5f8d_807b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3286_5f8d_807b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3286_5f8d_807b/request", "", "public", "Top Dataset, noaa.ersst, err.mnmean.v3 (NOAA Extended Reconstructed SST V3), 2.0\u00b0, 1854-present", "NOAA Extended Reconstructed SST V3. The extended reconstructed sea surface temperature (ERSST)\nwas constructed using the most recently available \nComprehensive Ocean-Atmosphere Data Set (COADS) SST data \nand improved statistical methods that allow stable \nreconstruction using sparse data.Currently, ERSST version 2 ( ERSST.v2 ) and version 3 ( ERSST.v3 ) are available from National Climatic Data Center (NCDC).\nERSST.v3 is an improved extended reconstruction over version 2.\nMost of the improvements are justified by testing with simulated data.\nThe major differences are caused by the improved low-frequency ( LF ) tuning of ERSST.v3 \nwhich reduces the SST anomaly damping before 1930 using the optimized parameters.\nBeginning in 1985, ERSST.v3 is also improved by explicitly including\nbias-adjusted satellite infrared data from Advanced Very High Resolution Radiometer (AVHRR).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nerr (Monthly Mean Error Estimate of Sea Surface Temperature)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3286_5f8d_807b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3286_5f8d_807b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3286_5f8d_807b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.ersst.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3286_5f8d_807b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3286_5f8d_807b&showErrors=false&email=", "NOAA/NESDIS/NCDC", "noaa_esrl_3286_5f8d_807b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_23bb_ec5b_8266", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_23bb_ec5b_8266.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_23bb_ec5b_8266/request", "", "public", "Top Dataset, noaa.ersst, sst.mnmean.v3 (NOAA Extended Reconstructed SST V3b), 2.0\u00b0, 1854-present", "NOAA Extended Reconstructed SST V3b. The extended reconstructed sea surface temperature (ERSST)\nwas constructed using the most recently available \nComprehensive Ocean-Atmosphere Data Set (COADS) SST data \nand improved statistical methods that allow stable \nreconstruction using sparse data.\nCurrently, ERSST version 2 (ERSST.v2) and version 3 (ERSST.v3) and ERSST.v3b) are available from National Climatic Data Center (NCDC).\nERSST.v3b is an improved extended reconstruction over version 2.\n but with no satellite data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Means of Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_23bb_ec5b_8266_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_23bb_ec5b_8266_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_23bb_ec5b_8266/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.ersst.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_23bb_ec5b_8266.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_23bb_ec5b_8266&showErrors=false&email=", "NOAA/NESDIS/NCDC", "noaa_esrl_23bb_ec5b_8266"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5349_f84a_538a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5349_f84a_538a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5349_f84a_538a/request", "", "public", "Top Dataset, noaa.ersst, sst.mon.19712000.ltm.v3 (NOAA Extended Reconstructed SST V3), 2.0\u00b0, 0001", "NOAA Extended Reconstructed SST V3. The extended reconstructed sea surface temperature (ERSST)\nwas constructed using the most recently available \nComprehensive Ocean-Atmosphere Data Set ( COADS ) SST data \nand improved statistical methods that allow stable \nreconstruction using sparse data.\nCurrently, ERSST version 2 ( ERSST.v2 ) and version 3b ( ERSST.v3b ) are available from National Climatic Data Center (NCDC).\nERSST.v3 is an improved extended reconstruction over version 2.\nMost of the improvements are justified by testing with simulated data.\nThe major differences are caused by the improved low-frequency ( LF ) tuning of ERSST.v3 \nwhich reduces the SST anomaly damping before 1930 using the optimized parameters.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Long Term Monthly Mean of Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5349_f84a_538a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5349_f84a_538a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5349_f84a_538a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.ersst.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5349_f84a_538a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5349_f84a_538a&showErrors=false&email=", "NOAA/NESDIS/NCDC", "noaa_esrl_5349_f84a_538a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c11e_80ff_d16f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c11e_80ff_d16f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c11e_80ff_d16f/request", "", "public", "Top Dataset, noaa.ersst, sst.mon.1981-2010.ltm.v3 (NOAA Extended Reconstructed SST V3b), 2.0\u00b0, 0001", "NOAA Extended Reconstructed SST V3b. The extended reconstructed sea surface temperature (ERSST)\nwas constructed using the most recently available \nComprehensive Ocean-Atmosphere Data Set (COADS) SST data \nand improved statistical methods that allow stable \nreconstruction using sparse data.\nCurrently, ERSST version 2 (ERSST.v2) and version 3 (ERSST.v3) and ERSST.v3b) are available from National Climatic Data Center (NCDC).\nERSST.v3b is an improved extended reconstruction over version 2.\n but with no satellite data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Long Term Means of Sea Surface Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c11e_80ff_d16f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c11e_80ff_d16f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c11e_80ff_d16f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.ersst.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c11e_80ff_d16f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c11e_80ff_d16f&showErrors=false&email=", "NOAA/NESDIS/NCDC", "noaa_esrl_c11e_80ff_d16f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b98_6e91_aba7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b98_6e91_aba7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0b98_6e91_aba7/request", "", "public", "Top Dataset, noaa.ersst.v3, err.mnmean (NOAA Extended Reconstructed SST V3), 2.0\u00b0, 1854-present", "NOAA Extended Reconstructed SST V3. The extended reconstructed sea surface temperature (ERSST)\nwas constructed using the most recently available \nComprehensive Ocean-Atmosphere Data Set (COADS) SST data \nand improved statistical methods that allow stable \nreconstruction using sparse data.Currently, ERSST version 2 ( ERSST.v2 ) and version 3 ( ERSST.v3 ) are available from National Climatic Data Center (NCDC).\nERSST.v3 is an improved extended reconstruction over version 2.\nMost of the improvements are justified by testing with simulated data.\nThe major differences are caused by the improved low-frequency ( LF ) tuning of ERSST.v3 \nwhich reduces the SST anomaly damping before 1930 using the optimized parameters.\nBeginning in 1985, ERSST.v3 is also improved by explicitly including\nbias-adjusted satellite infrared data from Advanced Very High Resolution Radiometer (AVHRR).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nerr (Monthly Mean Error Estimate of Sea Surface Temperature)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0b98_6e91_aba7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0b98_6e91_aba7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0b98_6e91_aba7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.ersst.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0b98_6e91_aba7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0b98_6e91_aba7&showErrors=false&email=", "NOAA/NESDIS/NCDC", "noaa_esrl_0b98_6e91_aba7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3aeb_fbf0_95b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3aeb_fbf0_95b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3aeb_fbf0_95b3/request", "", "public", "Top Dataset, noaa.ersst.v3, sst.ltm.19712000 (NOAA Extended Reconstructed SST V3), 2.0\u00b0, 0001", "NOAA Extended Reconstructed SST V3. The extended reconstructed sea surface temperature (ERSST)\nwas constructed using the most recently available \nComprehensive Ocean-Atmosphere Data Set ( COADS ) SST data \nand improved statistical methods that allow stable \nreconstruction using sparse data.\nCurrently, ERSST version 2 ( ERSST.v2 ) and version 3b ( ERSST.v3b ) are available from National Climatic Data Center (NCDC).\nERSST.v3 is an improved extended reconstruction over version 2.\nMost of the improvements are justified by testing with simulated data.\nThe major differences are caused by the improved low-frequency ( LF ) tuning of ERSST.v3 \nwhich reduces the SST anomaly damping before 1930 using the optimized parameters.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Long Term Monthly Mean of Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3aeb_fbf0_95b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3aeb_fbf0_95b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3aeb_fbf0_95b3/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/extended-reconstructed-sea-surface-temperature-ersst-v3b", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3aeb_fbf0_95b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3aeb_fbf0_95b3&showErrors=false&email=", "NOAA/NESDIS/NCDC", "noaa_esrl_3aeb_fbf0_95b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e4a_05d0_edde", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e4a_05d0_edde.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e4a_05d0_edde/request", "", "public", "Top Dataset, noaa.ersst.v3, sst.mnmean (NOAA Extended Reconstructed SST V3b), 2.0\u00b0, 1854-present", "NOAA Extended Reconstructed SST V3b. The extended reconstructed sea surface temperature (ERSST)\nwas constructed using the most recently available \nComprehensive Ocean-Atmosphere Data Set (COADS) SST data \nand improved statistical methods that allow stable \nreconstruction using sparse data.\nCurrently, ERSST version 2 (ERSST.v2) and version 3 (ERSST.v3) and ERSST.v3b) are available from National Climatic Data Center (NCDC).\nERSST.v3b is an improved extended reconstruction over version 2.\n but with no satellite data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Means of Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e4a_05d0_edde_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e4a_05d0_edde_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e4a_05d0_edde/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.ersst.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e4a_05d0_edde.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e4a_05d0_edde&showErrors=false&email=", "NOAA/NESDIS/NCDC", "noaa_esrl_9e4a_05d0_edde"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf62_0d1d_6905", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf62_0d1d_6905.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf62_0d1d_6905/request", "", "public", "Top Dataset, noaa.ersst.v3, sst.mon.1981-2010.ltm (NOAA Extended Reconstructed SST V3b), 2.0\u00b0, 0001", "NOAA Extended Reconstructed SST V3b. The extended reconstructed sea surface temperature (ERSST)\nwas constructed using the most recently available \nComprehensive Ocean-Atmosphere Data Set (COADS) SST data \nand improved statistical methods that allow stable \nreconstruction using sparse data.\nCurrently, ERSST version 2 (ERSST.v2) and version 3 (ERSST.v3) and ERSST.v3b) are available from National Climatic Data Center (NCDC).\nERSST.v3b is an improved extended reconstruction over version 2.\n but with no satellite data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Long Term Means of Sea Surface Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf62_0d1d_6905_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf62_0d1d_6905_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf62_0d1d_6905/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.ersst.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf62_0d1d_6905.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf62_0d1d_6905&showErrors=false&email=", "NOAA/NESDIS/NCDC", "noaa_esrl_bf62_0d1d_6905"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1838_6ead_27d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1838_6ead_27d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1838_6ead_27d3/request", "", "public", "Top Dataset, noaa.ersst.v5, sst.mnmean (NOAA ERSSTv5 (in situ only)), 2.0\u00b0, 1854-present", "NOAA ERSSTv5 (in situ only). ERSST.v5 is developed based on v4 after revisions of 8 parameters using updated data sets and advanced knowledge of ERSST analysis\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Means of Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1838_6ead_27d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1838_6ead_27d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1838_6ead_27d3/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/extended-reconstructed-sea-surface-temperature-ersst-v5", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1838_6ead_27d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1838_6ead_27d3&showErrors=false&email=", "This version written at NOAA/ESRL PSD: obtained from NOAA/NESDIS/National Centers for Environmental Information and time aggregated. Original Full Source: NOAA/NESDIS/NCEI/CCOG", "noaa_esrl_1838_6ead_27d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d072_a7c2_376e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d072_a7c2_376e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d072_a7c2_376e/request", "", "public", "Top Dataset, noaa.ersst.v5, sst.mon.ltm (NOAA ERSSTv5 (in situ only)), 2.0\u00b0, 0001", "NOAA ERSSTv5 (in situ only). ERSST.v5 is developed based on v4 after revisions of 8 parameters using updated data sets and advanced knowledge of ERSST analysis\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Long Term Mean Monthly Means of Sea Surface Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d072_a7c2_376e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d072_a7c2_376e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d072_a7c2_376e/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/extended-reconstructed-sea-surface-temperature-ersst-v5", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d072_a7c2_376e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d072_a7c2_376e&showErrors=false&email=", "This version written at NOAA/ESRL PSD: obtained from NOAA/NESDIS/National Centers for Environmental Information and time aggregated. Original Full Source: NOAA/NESDIS/NCEI/CCOG", "noaa_esrl_d072_a7c2_376e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_617b_55a0_fcf5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_617b_55a0_fcf5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_617b_55a0_fcf5/request", "", "public", "Top Dataset, noaa.ersst.v5, sst.mon.ltm.1981-2010 (NOAA ERSSTv5 (in situ only)), 2.0\u00b0, 0001", "NOAA ERSSTv5 (in situ only). ERSST.v5 is developed based on v4 after revisions of 8 parameters using updated data sets and advanced knowledge of ERSST analysis\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Long Term Mean Monthly Means of Sea Surface Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_617b_55a0_fcf5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_617b_55a0_fcf5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_617b_55a0_fcf5/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/extended-reconstructed-sea-surface-temperature-ersst-v5", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_617b_55a0_fcf5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_617b_55a0_fcf5&showErrors=false&email=", "This version written at NOAA/ESRL PSD: obtained from NOAA/NESDIS/National Centers for Environmental Information and time aggregated. Original Full Source: NOAA/NESDIS/NCEI/CCOG", "noaa_esrl_617b_55a0_fcf5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10d7_9315_b4fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10d7_9315_b4fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_10d7_9315_b4fa/request", "", "public", "Top Dataset, noaa.oisst.v2, err.wkmean.1981-1989 (NOAA Optimum Interpolation (OI) SST V2), 1.0\u00b0", "NOAA Optimum Interpolation (OI) Sea Surface Temperature (SST) V2. Data described in Reynolds, R.W., N.A. Rayner, T.M.\nSmith, D.C. Stokes, and W. Wang, 2002: An Improved In Situ and Satellite\nSST Analysis for Climate, J. Climate\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nerr (Normalized Error Variance)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_10d7_9315_b4fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_10d7_9315_b4fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_10d7_9315_b4fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.oisst.v2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_10d7_9315_b4fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_10d7_9315_b4fa&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_10d7_9315_b4fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_169e_ab79_746d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_169e_ab79_746d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_169e_ab79_746d/request", "", "public", "Top Dataset, noaa.oisst.v2, err.wkmean.1990-present (NOAA Optimum Interpolation (OI) SST V2), 1.0\u00b0", "NOAA Optimum Interpolation (OI) Sea Surface Temperature (SST) V2. Data described in Reynolds, R.W., N.A. Rayner, T.M.\nSmith, D.C. Stokes, and W. Wang, 2002: An Improved In Situ and Satellite\nSST Analysis for Climate, J. Climate\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nerr (Normalized Error Variance)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_169e_ab79_746d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_169e_ab79_746d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_169e_ab79_746d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.oisst.v2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_169e_ab79_746d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_169e_ab79_746d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_169e_ab79_746d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c59d_5b98_c626", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c59d_5b98_c626.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c59d_5b98_c626/request", "", "public", "Top Dataset, noaa.oisst.v2, icec.mnmean (NOAA Optimum Interpolation (OI) SST V2), 1.0\u00b0, 1981-present", "NOAA Optimum Interpolation (OI) Sea Surface Temperature (SST) V2. Data described in Reynolds, R.W., N.A. Rayner, T.M.\nSmith, D.C. Stokes, and W. Wang, 2002: An Improved In Situ and Satellite\nSST Analysis for Climate, J. Climate\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Monthly Means of Ice Concentration, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c59d_5b98_c626_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c59d_5b98_c626_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c59d_5b98_c626/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.oisst.v2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c59d_5b98_c626.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c59d_5b98_c626&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_c59d_5b98_c626"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ff0_1c43_88d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ff0_1c43_88d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ff0_1c43_88d7/request", "", "public", "Top Dataset, noaa.oisst.v2, icec.wkmean.1981-1989 (NOAA Optimum Interpolation (OI) SST V2), 1.0\u00b0", "NOAA Optimum Interpolation (OI) Sea Surface Temperature (SST) V2. Data described in Reynolds, R.W., N.A. Rayner, T.M.\nSmith, D.C. Stokes, and W. Wang, 2002: An Improved In Situ and Satellite\nSST Analysis for Climate, J. Climate\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Weekly Means of Ice Concentration, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ff0_1c43_88d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ff0_1c43_88d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ff0_1c43_88d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.oisst.v2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ff0_1c43_88d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ff0_1c43_88d7&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_3ff0_1c43_88d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_29b5_97e6_8d86", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_29b5_97e6_8d86.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_29b5_97e6_8d86/request", "", "public", "Top Dataset, noaa.oisst.v2, icec.wkmean.1990-present (NOAA Optimum Interpolation (OI) SST V2), 1.0\u00b0", "NOAA Optimum Interpolation (OI) Sea Surface Temperature (SST) V2. Data described in Reynolds, R.W., N.A. Rayner, T.M.\nSmith, D.C. Stokes, and W. Wang, 2002: An Improved In Situ and Satellite\nSST Analysis for Climate, J. Climate\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Weekly Means of Ice Concentration, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_29b5_97e6_8d86_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_29b5_97e6_8d86_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_29b5_97e6_8d86/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.oisst.v2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_29b5_97e6_8d86.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_29b5_97e6_8d86&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_29b5_97e6_8d86"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd89_1fde_9ec0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd89_1fde_9ec0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bd89_1fde_9ec0/request", "", "public", "Top Dataset, noaa.oisst.v2, sst.ltm.1961-1990 (NOAA Optimum Interpolation (OI) SST V2), 1.0\u00b0, 0001", "NOAA Optimum Interpolation (OI) Sea Surface Temperature (SST) V2. Constructed using the method of Reynolds and Smith (1995).\nThe new climatology was built from two intermediate climatologies:\na 2 degree SST climatology developed from in situ data for the\nperiod 1971-2000, and a 1 degree SST climatology for the period\n1982-2000 derived from the second version optimum interpolation (OI.v2) SST\nanalysis. OI SST V2 data described in Reynolds, R.W., N.A. Rayner, T.M.\nSmith, D.C. Stokes, and W. Wang, 2002: An Improved In Situ and Satellite\nSST Analysis for Climate, J. Climate\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Long Term Mean of Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bd89_1fde_9ec0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bd89_1fde_9ec0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bd89_1fde_9ec0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.oisst.v2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bd89_1fde_9ec0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bd89_1fde_9ec0&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_bd89_1fde_9ec0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60d8_2322_6c12", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60d8_2322_6c12.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_60d8_2322_6c12/request", "", "public", "Top Dataset, noaa.oisst.v2, sst.ltm.1971-2000 (NOAA Optimum Interpolation (OI) SST V2), 1.0\u00b0, 0001", "NOAA Optimum Interpolation (OI) Sea Surface Temperature (SST) V2. Constructed using the method of Reynolds and Smith (1995).\nThe new climatology was built from two intermediate climatologies:\na 2 degree SST climatology developed from in situ data for the\nperiod 1971-2000, and a 1 degree SST climatology for the period\n1982-2000 derived from the second version optimum interpolation (OI.v2) SST\nanalysis. OI SST V2 data described in Reynolds, R.W., N.A. Rayner, T.M.\nSmith, D.C. Stokes, and W. Wang, 2002: An Improved In Situ and Satellite\nSST Analysis for Climate, J. Climate\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Long Term Mean of Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_60d8_2322_6c12_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_60d8_2322_6c12_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_60d8_2322_6c12/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.oisst.v2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_60d8_2322_6c12.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_60d8_2322_6c12&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_60d8_2322_6c12"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b25b_b7fa_b455", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b25b_b7fa_b455.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b25b_b7fa_b455/request", "", "public", "Top Dataset, noaa.oisst.v2, sst.ltm.1981-2010 (NOAA Optimum Interpolation (OI) SST V2), 1.0\u00b0, 0001", "NOAA Optimum Interpolation (OI) Sea Surface Temperature (SST) V2 (Top Dataset, noaa.oisst.v2, sst.ltm.1981-2010)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Long Term Mean of Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b25b_b7fa_b455_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b25b_b7fa_b455_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b25b_b7fa_b455/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.oisst.v2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b25b_b7fa_b455.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b25b_b7fa_b455&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b25b_b7fa_b455"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f842_0093_4483", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f842_0093_4483.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f842_0093_4483/request", "", "public", "Top Dataset, noaa.oisst.v2, sst.wkmean.1981-1989 (NOAA Optimum Interpolation (OI) SST V2), 1.0\u00b0", "NOAA Optimum Interpolation (OI) Sea Surface Temperature (SST) V2. Data described in Reynolds, R.W., N.A. Rayner, T.M.\nSmith, D.C. Stokes, and W. Wang, 2002: An Improved In Situ and Satellite\nSST Analysis for Climate, J. Climate\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Weekly Mean of Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f842_0093_4483_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f842_0093_4483_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f842_0093_4483/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.oisst.v2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f842_0093_4483.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f842_0093_4483&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_f842_0093_4483"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf70_04df_9df1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf70_04df_9df1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf70_04df_9df1/request", "", "public", "Top Dataset, noaa.oisst.v2, sst.wkmean.1990-present (NOAA Optimum Interpolation (OI) SST V2), 1.0\u00b0", "NOAA Optimum Interpolation (OI) Sea Surface Temperature (SST) V2. Data described in Reynolds, R.W., N.A. Rayner, T.M.\nSmith, D.C. Stokes, and W. Wang, 2002: An Improved In Situ and Satellite\nSST Analysis for Climate, J. Climate\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Weekly Mean of Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf70_04df_9df1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf70_04df_9df1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf70_04df_9df1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.oisst.v2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf70_04df_9df1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf70_04df_9df1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_cf70_04df_9df1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_342b_ce4a_0206", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_342b_ce4a_0206.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_342b_ce4a_0206/request", "", "public", "Top Dataset, noaa.oisst.v2.derived, sst.day.1981-2010.ltm, 1.0\u00b0, 0001", "NOAA Optimum Interpolation (OI) Sea Surface Temperature (SST) V2 (Top Dataset, noaa.oisst.v2.derived, sst.day.1981-2010.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Daily Long Term Mean of Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_342b_ce4a_0206_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_342b_ce4a_0206_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_342b_ce4a_0206/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.oisst.v2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_342b_ce4a_0206.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_342b_ce4a_0206&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_342b_ce4a_0206"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4677_ef03_99ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4677_ef03_99ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4677_ef03_99ae/request", "", "public", "Top Dataset, noaa.oisst.v2.derived, sst.day.ltm (CDC DERIVED NOAA OI SST V2), 1.0\u00b0, 0001", "CDC DERIVED NOAA OI SST V2. Data is derived from NOAA Optimum Interpolation Sea Surface Temperature (OISST) V2\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Daily LTM of Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4677_ef03_99ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4677_ef03_99ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4677_ef03_99ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaa.oisst.v2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4677_ef03_99ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4677_ef03_99ae&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4677_ef03_99ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdc8_eec8_0c79", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdc8_eec8_0c79.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bdc8_eec8_0c79/request", "", "public", "Top Dataset, noaaglobaltemp, air.mon.anom (NOAA Global Temperature), 5.0\u00b0, 1880-present", "NOAA Global Temperature (Top Dataset, noaaglobaltemp, air.mon.anom)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Surface Air Temperature and SST Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bdc8_eec8_0c79_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bdc8_eec8_0c79_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bdc8_eec8_0c79/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaaglobaltemp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bdc8_eec8_0c79.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bdc8_eec8_0c79&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bdc8_eec8_0c79"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e2c_a437_16c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e2c_a437_16c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5e2c_a437_16c1/request", "", "public", "Top Dataset, noaaglobaltemp, air.mon.anom.1971-2000 (NOAA Global Temperature), 5.0\u00b0, 0001", "NOAA Global Temperature (Top Dataset, noaaglobaltemp, air.mon.anom.1971-2000)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Surface Air Temperature and SST Monthly Anomaly, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5e2c_a437_16c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5e2c_a437_16c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5e2c_a437_16c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaaglobaltemp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5e2c_a437_16c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5e2c_a437_16c1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5e2c_a437_16c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4522_b5db_5cc8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4522_b5db_5cc8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4522_b5db_5cc8/request", "", "public", "Top Dataset, noaaglobaltemp, air.mon.anom.1981-2010 (NOAA Global Temperature), 5.0\u00b0, 0001", "NOAA Global Temperature (Top Dataset, noaaglobaltemp, air.mon.anom.1981-2010)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Surface Air Temperature and SST Monthly Anomaly, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4522_b5db_5cc8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4522_b5db_5cc8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4522_b5db_5cc8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaaglobaltemp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4522_b5db_5cc8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4522_b5db_5cc8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4522_b5db_5cc8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd84_9a05_b53c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd84_9a05_b53c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cd84_9a05_b53c/request", "", "public", "Top Dataset, nodc.woa94, otemp.hr.nobs.annltm (NODC (Levitus) World Ocean Atlas Annual LTM), 0.25\u00b0, 0001", "National Oceanographic Data Center (NODC) (Levitus) World Ocean Atlas Annual Long Term Mean (LTM) (Top Dataset, nodc.woa94, otemp.hr.nobs.annltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Annual LTM Ocean Temp. Nobs on Multiple Levels, observations)\nmask (if nobs > 4 then 1, else 0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cd84_9a05_b53c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cd84_9a05_b53c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cd84_9a05_b53c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa94.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cd84_9a05_b53c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cd84_9a05_b53c&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_cd84_9a05_b53c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a025_5a5a_2c43", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a025_5a5a_2c43.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a025_5a5a_2c43/request", "", "public", "Top Dataset, nodc.woa94, salt.hr.nobs.annltm (NODC (Levitus) World Ocean Atlas Annual LTM), 0.25\u00b0, 0001", "National Oceanographic Data Center (NODC) (Levitus) World Ocean Atlas Annual Long Term Mean (LTM) (Top Dataset, nodc.woa94, salt.hr.nobs.annltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Annual LTM Salinity Nobs on Multiple Levels, observations)\nmask (nobs > 4 => 1, else 0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a025_5a5a_2c43_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a025_5a5a_2c43_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a025_5a5a_2c43/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa94.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a025_5a5a_2c43.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a025_5a5a_2c43&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_a025_5a5a_2c43"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_58e6_0040_f4f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_58e6_0040_f4f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_58e6_0040_f4f0/request", "", "public", "Top Dataset, node, avhrrSST res1deg, 1.0\u00b0, 1981-2009", "This data field contains Daytime Sea Surface Temperature (SST) data from Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5. The data have been averaged to a one-degree grid in space and monthly in time, after masking out any data with a quality flag of less than 4. All data has the V5.0 land mask applied. Data in this file at this quality level include, for daytime: monthly SST values, number of pixels, and standard deviation.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST4_daynitavg (This data field contains Day-Night Average Sea Surface Temperature (SST) data from AVHRR Pathfinder Version 5. The data have been averaged to a one-degree grid in space and monthly in time, after masking out any data with a quality flag of less than 4. All data has the V5.0 land mask applied. Data in this file at this quality level include, for day/night average: monthly SST values, number of pixels, and standard deviation., degree_C)\nSST7_daynitavg (This data field contains Day-Night Average Sea Surface Temperature (SST) data from AVHRR Pathfinder Version 5. The data have been averaged to a one-degree grid in space and monthly in time, after masking out any data with a quality flag of less than 7. All data has the V5.0 land mask applied. Data in this file at this quality level include, for day/night average: monthly SST values, number of pixels, and standard deviation., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_58e6_0040_f4f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_58e6_0040_f4f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_58e6_0040_f4f0/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/node/avhrrSST_res1deg.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_58e6_0040_f4f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_58e6_0040_f4f0&showErrors=false&email=", "USDOC/NOAA/NESDIS/NODC", "noaa_nodc_58e6_0040_f4f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5e47_99aa_f1e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5e47_99aa_f1e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_5e47_99aa_f1e6/request", "", "public", "Top Dataset, node, avhrrSST resFull, 0.043945312\u00b0, 1981-2009", "This data field contains Daytime Sea Surface Temperature (SST) data from Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5. The data are at 4 km-per-pixel resolution and have been averaged monthly after masking out any data with a quality flag of less than 4. Data in this file at this quality level include, for daytime: weekly SST values, number of pixels, and standard deviation. Data are stored as unsigned integers: to convert SST fields to degrees C, apply a scale factor of 0.075 and an offset of -3.0. To convert standard deviation and count fields to degrees C and number of pixels, respectively, apply a scale factor of 0.01.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST4_daynitavg (This data field contains Day-Night Average Sea Surface Temperature (SST) data from AVHRR Pathfinder Version 5. The data are at 4 km-per-pixel resolution and have been averaged monthly after masking out any data with a quality flag of less than 4. Data in this file at this quality level include, for day/night average: weekly SST values, number of pixels, and standard deviation. Data are stored as unsigned integers: to convert SST fields to degrees C, apply a scale factor of 0.075 and an offset of -3.0. To convert standard deviation and count fields to degrees C and number of pixels, respectively, apply a scale factor of 0.01., degree_C)\nSST7_daynitavg (This data field contains Day-Night Average Sea Surface Temperature (SST) data from AVHRR Pathfinder Version 5. The data are at 4 km-per-pixel resolution and have been averaged monthly after masking out any data with a quality flag of less than 7. Data in this file at this quality level include, for day/night average: weekly SST values, number of pixels, and standard deviation. Data are stored as unsigned integers: to convert SST fields to degrees C, apply a scale factor of 0.075 and an offset of -3.0. To convert standard deviation and count fields to degrees C and number of pixels, respectively, apply a scale factor of 0.01., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_5e47_99aa_f1e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_5e47_99aa_f1e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_5e47_99aa_f1e6/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/node/avhrrSST_resFull.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_5e47_99aa_f1e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_5e47_99aa_f1e6&showErrors=false&email=", "USDOC/NOAA/NESDIS/NODC", "noaa_nodc_5e47_99aa_f1e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ff05_5ca0_52ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ff05_5ca0_52ab.graph", "", "", "public", "Top Dataset, node, ptat212007", "Port Aransas, TX. NOAA National Data Buoy Center (NDBC) and Participators in Data Assembly Center data from https://data.nodc.noaa.gov/thredds/dodsC/ncml/node/ptat212007.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwater_level (Tide Water Level, feet)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_ff05_5ca0_52ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_ff05_5ca0_52ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_ff05_5ca0_52ab/index.json", "http://dods.ndbc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_ff05_5ca0_52ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_ff05_5ca0_52ab&showErrors=false&email=", "NOAA NDBC and Participators in Data Assembly Center", "noaa_nodc_ff05_5ca0_52ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_soest_e972_0ca3_0bdc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_soest_e972_0ca3_0bdc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hawaii_soest_e972_0ca3_0bdc/request", "", "public", "Top Dataset, oisss, oisss global monthly, 0.5\u00b0, 2011-2015", "Aquarius Optimum Interpolation (OI) SSS monthly mean. International Pacific Research Center (IPRC) data from http://apdrc.soest.hawaii.edu/thredds/dodsC/ncml_aggregation/oisss/oisss_global_monthly.ncml.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss (sea surface salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e972_0ca3_0bdc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e972_0ca3_0bdc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e972_0ca3_0bdc/index.json", "http://apdrc.soest.hawaii.edu/thredds/dodsC/ncml_aggregation/oisss/oisss_global_monthly.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e972_0ca3_0bdc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e972_0ca3_0bdc&showErrors=false&email=", "IPRC", "hawaii_soest_e972_0ca3_0bdc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_soest_6102_cbd4_850f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_soest_6102_cbd4_850f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hawaii_soest_6102_cbd4_850f/request", "", "public", "Top Dataset, oisss, oisss global weekly, 0.5\u00b0, 2011-2015", "Aquarius SSS objectively interpolated onto a regular 0.5x0.5 grid\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss (sea surface salinity, pss)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_6102_cbd4_850f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_6102_cbd4_850f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_6102_cbd4_850f/index.json", "http://apdrc.soest.hawaii.edu/thredds/dodsC/ncml_aggregation/oisss/oisss_global_weekly.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_6102_cbd4_850f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_6102_cbd4_850f&showErrors=false&email=", "IPRC", "hawaii_soest_6102_cbd4_850f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_soest_7cb5_409a_8341", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_soest_7cb5_409a_8341.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hawaii_soest_7cb5_409a_8341/request", "", "public", "Top Dataset, oisss, oisss spurs-1 monthly, 0.25\u00b0, 2011-2015", "Aquarius Optimum Interpolation (OI) SSS monthly mean. International Pacific Research Center (IPRC) data from http://apdrc.soest.hawaii.edu/thredds/dodsC/ncml_aggregation/oisss/oisss_spurs-1_monthly.ncml.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss (sea surface salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_7cb5_409a_8341_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_7cb5_409a_8341_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_7cb5_409a_8341/index.json", "http://apdrc.soest.hawaii.edu/thredds/dodsC/ncml_aggregation/oisss/oisss_spurs-1_monthly.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_7cb5_409a_8341.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_7cb5_409a_8341&showErrors=false&email=", "IPRC", "hawaii_soest_7cb5_409a_8341"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_soest_12eb_9adc_bd62", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_soest_12eb_9adc_bd62.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hawaii_soest_12eb_9adc_bd62/request", "", "public", "Top Dataset, oisss, oisss spurs-1 weekly, 0.25\u00b0, 2011-2015", "Aquarius SSS objectively interpolated onto a regular 0.25x0.25 grid\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss (sea surface salinity, pss)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_12eb_9adc_bd62_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_12eb_9adc_bd62_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_12eb_9adc_bd62/index.json", "http://apdrc.soest.hawaii.edu/thredds/dodsC/ncml_aggregation/oisss/oisss_spurs-1_weekly.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_12eb_9adc_bd62.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_12eb_9adc_bd62&showErrors=false&email=", "IPRC", "hawaii_soest_12eb_9adc_bd62"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b6ff_100f_ffb6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b6ff_100f_ffb6.graph", "", "", "public", "Top Dataset, olrcdr, olr.1deg.eq.1x.latlonregrid.1979-2016, 1.0\u00b0", "HIRS outgoing longwave radiation, regridded to 90S to 90N (Top Dataset, olrcdr, olr.1deg.eq.1x.latlonregrid.1979-2016)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nolr (outgoing longwave radiation, w/m2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b6ff_100f_ffb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b6ff_100f_ffb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b6ff_100f_ffb6/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/olrcdr/olr.1deg.eq.1x.latlonregrid.1979-2016.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b6ff_100f_ffb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b6ff_100f_ffb6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b6ff_100f_ffb6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_74a2_3364_f91d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_74a2_3364_f91d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_74a2_3364_f91d/request", "", "public", "Top Dataset, other gauss, csulf.ntat.4Xday.1981-2010.ltm, 0001", "4Xdaily ltm csulf.ntat from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsulf (Long Term Mean Clear Sky Upward Longwave Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_74a2_3364_f91d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_74a2_3364_f91d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_74a2_3364_f91d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_74a2_3364_f91d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_74a2_3364_f91d&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_74a2_3364_f91d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28d7_9eab_7e26", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28d7_9eab_7e26.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28d7_9eab_7e26/request", "", "public", "Top Dataset, other gauss, csulf.ntat.day.1981-2010.ltm, 0001", "daily ltm csulf.ntat from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsulf (daily Long Term Mean mean Clear Sky Upward Longwave Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28d7_9eab_7e26_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28d7_9eab_7e26_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28d7_9eab_7e26/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28d7_9eab_7e26.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28d7_9eab_7e26&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_28d7_9eab_7e26"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_055e_7784_f636", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_055e_7784_f636.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_055e_7784_f636/request", "", "public", "Top Dataset, other gauss, csulf.ntat.mon.1981-2010.ltm, 0001", "monthly ltm csulf.ntat from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsulf (Monthly Long Term Mean of Clear Sky Upward Longwave Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_055e_7784_f636_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_055e_7784_f636_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_055e_7784_f636/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_055e_7784_f636.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_055e_7784_f636&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_055e_7784_f636"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_880e_4cad_4ebe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_880e_4cad_4ebe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_880e_4cad_4ebe/request", "", "public", "Top Dataset, other gauss, csusf.ntat.4Xday.1981-2010.ltm, 0001", "4Xdaily ltm csusf.ntat from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsusf (Long Term Mean Clear Sky Upward Solar Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_880e_4cad_4ebe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_880e_4cad_4ebe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_880e_4cad_4ebe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_880e_4cad_4ebe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_880e_4cad_4ebe&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_880e_4cad_4ebe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2a23_32be_7ede", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2a23_32be_7ede.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2a23_32be_7ede/request", "", "public", "Top Dataset, other gauss, csusf.ntat.day.1981-2010.ltm, 0001", "daily ltm csusf.ntat from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsusf (daily Long Term Mean mean Clear Sky Upward Solar Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2a23_32be_7ede_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2a23_32be_7ede_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2a23_32be_7ede/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2a23_32be_7ede.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2a23_32be_7ede&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2a23_32be_7ede"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8bf_55fd_c9b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8bf_55fd_c9b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b8bf_55fd_c9b0/request", "", "public", "Top Dataset, other gauss, csusf.ntat.mon.1981-2010.ltm, 0001", "monthly ltm csusf.ntat from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsusf (Monthly Long Term Mean of Clear Sky Upward Shortwave Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b8bf_55fd_c9b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b8bf_55fd_c9b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b8bf_55fd_c9b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b8bf_55fd_c9b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b8bf_55fd_c9b0&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b8bf_55fd_c9b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d71a_e2e1_eda9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d71a_e2e1_eda9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d71a_e2e1_eda9/request", "", "public", "Top Dataset, other gauss, dswrf.ntat.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Long Term Mean Downward Solar Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d71a_e2e1_eda9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d71a_e2e1_eda9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d71a_e2e1_eda9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d71a_e2e1_eda9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d71a_e2e1_eda9&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d71a_e2e1_eda9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe0f_e238_4a38", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe0f_e238_4a38.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fe0f_e238_4a38/request", "", "public", "Top Dataset, other gauss, dswrf.ntat.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Long Term Mean Downward Solar Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fe0f_e238_4a38_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fe0f_e238_4a38_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fe0f_e238_4a38/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fe0f_e238_4a38.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fe0f_e238_4a38&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_fe0f_e238_4a38"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d37e_19ac_8157", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d37e_19ac_8157.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d37e_19ac_8157/request", "", "public", "Top Dataset, other gauss, dswrf.ntat.day.1981-2010.ltm, 0001", "daily ltm dswrf.ntat from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (daily Long Term Mean mean Downward Solar Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d37e_19ac_8157_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d37e_19ac_8157_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d37e_19ac_8157/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d37e_19ac_8157.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d37e_19ac_8157&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d37e_19ac_8157"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96ce_a5fa_feb3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96ce_a5fa_feb3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_96ce_a5fa_feb3/request", "", "public", "Top Dataset, other gauss, dswrf.ntat.mon.1981-2010.ltm, 0001", "monthly ltm dswrf.ntat from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Monthly Long Term Mean of Downward Solar Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_96ce_a5fa_feb3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_96ce_a5fa_feb3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_96ce_a5fa_feb3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_96ce_a5fa_feb3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_96ce_a5fa_feb3&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_96ce_a5fa_feb3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0b4_6679_722c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0b4_6679_722c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f0b4_6679_722c/request", "", "public", "Top Dataset, other gauss, pres.hcb.4Xday.1981-2010.ltm, 0001", "4Xdaily ltm pres.hcb from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean High Cloud Bottom Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f0b4_6679_722c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f0b4_6679_722c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f0b4_6679_722c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f0b4_6679_722c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f0b4_6679_722c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f0b4_6679_722c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d097_4e4c_e646", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d097_4e4c_e646.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d097_4e4c_e646/request", "", "public", "Top Dataset, other gauss, pres.hcb.day.1981-2010.ltm, 0001", "daily ltm pres.hcb from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (daily Long Term Mean mean High Cloud Bottom Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d097_4e4c_e646_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d097_4e4c_e646_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d097_4e4c_e646/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d097_4e4c_e646.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d097_4e4c_e646&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d097_4e4c_e646"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e4b_684d_e65f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e4b_684d_e65f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2e4b_684d_e65f/request", "", "public", "Top Dataset, other gauss, pres.hcb.mon.1981-2010.ltm, 0001", "monthly ltm pres.hcb from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Mean of High Cloud Bottom Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2e4b_684d_e65f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2e4b_684d_e65f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2e4b_684d_e65f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2e4b_684d_e65f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2e4b_684d_e65f&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2e4b_684d_e65f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa0a_5bad_5b68", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa0a_5bad_5b68.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fa0a_5bad_5b68/request", "", "public", "Top Dataset, other gauss, pres.hct.4Xday.1981-2010.ltm, 0001", "4Xdaily ltm pres.hct from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean High Cloud Top Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fa0a_5bad_5b68_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fa0a_5bad_5b68_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fa0a_5bad_5b68/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fa0a_5bad_5b68.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fa0a_5bad_5b68&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_fa0a_5bad_5b68"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c338_5e5c_ac7a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c338_5e5c_ac7a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c338_5e5c_ac7a/request", "", "public", "Top Dataset, other gauss, pres.hct.day.1981-2010.ltm, 0001", "daily ltm pres.hct from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (daily Long Term Mean mean Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c338_5e5c_ac7a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c338_5e5c_ac7a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c338_5e5c_ac7a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c338_5e5c_ac7a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c338_5e5c_ac7a&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c338_5e5c_ac7a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2510_5bee_6713", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2510_5bee_6713.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2510_5bee_6713/request", "", "public", "Top Dataset, other gauss, pres.hct.mon.1981-2010.ltm, 0001", "monthly ltm pres.hct from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Mean of High Cloud Top Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2510_5bee_6713_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2510_5bee_6713_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2510_5bee_6713/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2510_5bee_6713.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2510_5bee_6713&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2510_5bee_6713"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd5b_65bb_dfff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd5b_65bb_dfff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cd5b_65bb_dfff/request", "", "public", "Top Dataset, other gauss, pres.lcb.4Xday.1981-2010.ltm, 0001", "4Xdaily ltm pres.lcb from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean Low Cloud Bottom Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cd5b_65bb_dfff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cd5b_65bb_dfff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cd5b_65bb_dfff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cd5b_65bb_dfff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cd5b_65bb_dfff&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_cd5b_65bb_dfff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b2b8_899d_1ee9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b2b8_899d_1ee9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b2b8_899d_1ee9/request", "", "public", "Top Dataset, other gauss, pres.lcb.day.1981-2010.ltm, 0001", "daily ltm pres.lcb from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (daily Long Term Mean mean Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b2b8_899d_1ee9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b2b8_899d_1ee9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b2b8_899d_1ee9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b2b8_899d_1ee9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b2b8_899d_1ee9&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b2b8_899d_1ee9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c47f_5ceb_390e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c47f_5ceb_390e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c47f_5ceb_390e/request", "", "public", "Top Dataset, other gauss, pres.lcb.mon.1981-2010.ltm, 0001", "monthly ltm pres.lcb from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Mean of Low Cloud Bottom Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c47f_5ceb_390e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c47f_5ceb_390e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c47f_5ceb_390e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c47f_5ceb_390e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c47f_5ceb_390e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c47f_5ceb_390e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2848_85d9_acae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2848_85d9_acae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2848_85d9_acae/request", "", "public", "Top Dataset, other gauss, pres.lct.4Xday.1981-2010.ltm, 0001", "4Xdaily ltm pres.lct from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean Low Cloud Top Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2848_85d9_acae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2848_85d9_acae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2848_85d9_acae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2848_85d9_acae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2848_85d9_acae&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2848_85d9_acae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3778_f730_97e7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3778_f730_97e7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3778_f730_97e7/request", "", "public", "Top Dataset, other gauss, pres.lct.day.1981-2010.ltm, 0001", "daily ltm pres.lct from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (daily Long Term Mean mean Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3778_f730_97e7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3778_f730_97e7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3778_f730_97e7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3778_f730_97e7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3778_f730_97e7&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_3778_f730_97e7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a69_1440_9d07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a69_1440_9d07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a69_1440_9d07/request", "", "public", "Top Dataset, other gauss, pres.lct.mon.1981-2010.ltm, 0001", "monthly ltm pres.lct from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Mean of Low Cloud Top Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a69_1440_9d07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a69_1440_9d07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a69_1440_9d07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a69_1440_9d07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a69_1440_9d07&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5a69_1440_9d07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b049_9a9b_6a76", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b049_9a9b_6a76.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b049_9a9b_6a76/request", "", "public", "Top Dataset, other gauss, pres.mcb.4Xday.1981-2010.ltm, 0001", "4Xdaily ltm pres.mcb from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean Middle Cloud Bottom Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b049_9a9b_6a76_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b049_9a9b_6a76_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b049_9a9b_6a76/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b049_9a9b_6a76.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b049_9a9b_6a76&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b049_9a9b_6a76"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e298_f8f5_04d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e298_f8f5_04d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e298_f8f5_04d9/request", "", "public", "Top Dataset, other gauss, pres.mcb.day.1981-2010.ltm, 0001", "daily ltm pres.mcb from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (daily Long Term Mean mean Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e298_f8f5_04d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e298_f8f5_04d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e298_f8f5_04d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e298_f8f5_04d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e298_f8f5_04d9&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e298_f8f5_04d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09e5_2228_70d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09e5_2228_70d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_09e5_2228_70d5/request", "", "public", "Top Dataset, other gauss, pres.mcb.mon.1981-2010.ltm, 0001", "monthly ltm pres.mcb from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Mean of Middle Cloud Bottom Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_09e5_2228_70d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_09e5_2228_70d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_09e5_2228_70d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_09e5_2228_70d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_09e5_2228_70d5&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_09e5_2228_70d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff1a_ef1c_56a4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff1a_ef1c_56a4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff1a_ef1c_56a4/request", "", "public", "Top Dataset, other gauss, pres.mct.4Xday.1981-2010.ltm, 0001", "4Xdaily ltm pres.mct from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean Middle Cloud Top Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff1a_ef1c_56a4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff1a_ef1c_56a4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff1a_ef1c_56a4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff1a_ef1c_56a4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff1a_ef1c_56a4&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_ff1a_ef1c_56a4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc0e_94fd_9a64", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc0e_94fd_9a64.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc0e_94fd_9a64/request", "", "public", "Top Dataset, other gauss, pres.mct.day.1981-2010.ltm, 0001", "daily ltm pres.mct from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (daily Long Term Mean mean Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc0e_94fd_9a64_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc0e_94fd_9a64_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc0e_94fd_9a64/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc0e_94fd_9a64.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc0e_94fd_9a64&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_cc0e_94fd_9a64"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a81_d102_eb5a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a81_d102_eb5a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a81_d102_eb5a/request", "", "public", "Top Dataset, other gauss, pres.mct.mon.1981-2010.ltm, 0001", "monthly ltm pres.mct from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Mean of Middle Cloud Top Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a81_d102_eb5a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a81_d102_eb5a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a81_d102_eb5a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a81_d102_eb5a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a81_d102_eb5a&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0a81_d102_eb5a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b21a_4e26_7bc0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b21a_4e26_7bc0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b21a_4e26_7bc0/request", "", "public", "Top Dataset, other gauss, tcdc.eatm.4Xday.1981-2010.ltm, 0001", "4Xdaily ltm tcdc.eatm from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npresssure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Long Term Mean Total cloud cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b21a_4e26_7bc0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b21a_4e26_7bc0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b21a_4e26_7bc0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b21a_4e26_7bc0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b21a_4e26_7bc0&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b21a_4e26_7bc0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cdc2_e75b_6ef5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cdc2_e75b_6ef5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cdc2_e75b_6ef5/request", "", "public", "Top Dataset, other gauss, tcdc.eatm.day.1981-2010.ltm, 0001", "daily ltm tcdc.daily from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npresssure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (daily Long Term Mean mean Total cloud cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cdc2_e75b_6ef5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cdc2_e75b_6ef5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cdc2_e75b_6ef5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cdc2_e75b_6ef5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cdc2_e75b_6ef5&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_cdc2_e75b_6ef5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88b9_b185_c8cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88b9_b185_c8cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_88b9_b185_c8cb/request", "", "public", "Top Dataset, other gauss, tcdc.eatm.mon.1981-2010.ltm, 0001", "monthly ltm tcdc.eatm from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Long Term Mean of Total Cloud Cover, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_88b9_b185_c8cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_88b9_b185_c8cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_88b9_b185_c8cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_88b9_b185_c8cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_88b9_b185_c8cb&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_88b9_b185_c8cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d33a_fc19_c67d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d33a_fc19_c67d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d33a_fc19_c67d/request", "", "public", "Top Dataset, other gauss, ulwrf.ntat.4Xday.1981-2010.ltm, 0001", "4Xdaily ltm ulwrf.ntat from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Long Term Mean Upward Longwave Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d33a_fc19_c67d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d33a_fc19_c67d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d33a_fc19_c67d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d33a_fc19_c67d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d33a_fc19_c67d&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d33a_fc19_c67d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0f3_7b24_aebd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0f3_7b24_aebd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d0f3_7b24_aebd/request", "", "public", "Top Dataset, other gauss, ulwrf.ntat.day.1981-2010.ltm, 0001", "daily ltm ulwrf.ntat from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (daily Long Term Mean mean Upward Longwave Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d0f3_7b24_aebd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d0f3_7b24_aebd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d0f3_7b24_aebd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d0f3_7b24_aebd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d0f3_7b24_aebd&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d0f3_7b24_aebd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8afa_2935_f6c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8afa_2935_f6c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8afa_2935_f6c0/request", "", "public", "Top Dataset, other gauss, ulwrf.ntat.mon.1981-2010.ltm, 0001", "monthly ltm ulwrf.ntat from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Long Term Mean of Upward Longwave Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8afa_2935_f6c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8afa_2935_f6c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8afa_2935_f6c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8afa_2935_f6c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8afa_2935_f6c0&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8afa_2935_f6c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_42dc_3870_5688", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_42dc_3870_5688.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_42dc_3870_5688/request", "", "public", "Top Dataset, other gauss, uswrf.ntat.4Xday.1981-2010.ltm, 0001", "4Xdaily ltm uswrf.ntat from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Long Term Mean Upward Solar Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_42dc_3870_5688_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_42dc_3870_5688_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_42dc_3870_5688/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_42dc_3870_5688.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_42dc_3870_5688&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_42dc_3870_5688"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0af4_15c6_ea5e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0af4_15c6_ea5e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0af4_15c6_ea5e/request", "", "public", "Top Dataset, other gauss, uswrf.ntat.day.1981-2010.ltm, 0001", "daily ltm uswrf.ntat from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (daily Long Term Mean mean Upward Solar Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0af4_15c6_ea5e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0af4_15c6_ea5e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0af4_15c6_ea5e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0af4_15c6_ea5e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0af4_15c6_ea5e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0af4_15c6_ea5e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15e2_ced2_1fb6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15e2_ced2_1fb6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_15e2_ced2_1fb6/request", "", "public", "Top Dataset, other gauss, uswrf.ntat.mon.1981-2010.ltm, 0001", "monthly ltm uswrf.ntat from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Long Term Mean of Upward Solar Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_15e2_ced2_1fb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_15e2_ced2_1fb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_15e2_ced2_1fb6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_15e2_ced2_1fb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_15e2_ced2_1fb6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_15e2_ced2_1fb6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6fba_b990_0545", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6fba_b990_0545.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PDSI coeff.K1.K final.195001-199912 [lat][lon]", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PDSI coeff.K1.K final.195001-199912\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nZ_dr_slope (atmospheric rain, mm/s)\nZ_dr_inter (atmospheric rain, mm/s)\nZ_dr_tval_prob (atmospheric rain, mm/s)\nZ_dr_corr (atmospheric rain, mm/s)\np_coef_dr (atmospheric rain, mm/s)\nq_coef_dr (atmospheric rain, mm/s)\nZ_wt_slope (atmospheric rain, mm/s)\nZ_wt_inter (atmospheric rain, mm/s)\nZ_wt_tval_prob (atmospheric rain, mm/s)\nZ_wt_corr (atmospheric rain, mm/s)\np_coef_wt (atmospheric rain, mm/s)\nq_coef_wt (atmospheric rain, mm/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6fba_b990_0545_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6fba_b990_0545_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6fba_b990_0545/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.001.clm2.h0.PDSI_coeff.K1.K_final.195001-199912.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6fba_b990_0545.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6fba_b990_0545&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6fba_b990_0545"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bedf_73f2_20fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bedf_73f2_20fe.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PDSI coeff.K1.K final.195001-199912 [month][lat][lon]", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PDSI coeff.K1.K final.195001-199912\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [month][latitude][longitude]):\nalpha (Potential ET, mm/day)\nbeta (volumetric soil water (vegetated landunits only), mm3/mm3)\ngama (total liquid runoff (does not include QSNWCPICE), mm/s)\ndelta (Potential ET, mm/day)\nK1 (Potential ET, mm/day)\nK_final_dr (Potential ET, mm/day)\nK_final_wt (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bedf_73f2_20fe_fgdc.xml", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bedf_73f2_20fe/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.001.clm2.h0.PDSI_coeff.K1.K_final.195001-199912.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bedf_73f2_20fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bedf_73f2_20fe&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bedf_73f2_20fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c580_e25f_c77f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c580_e25f_c77f.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PDSI coeff.K1.K final.195001-199912 [time][lat][lon]", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PDSI coeff.K1.K final.195001-199912\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi_t (atmospheric rain, mm/s)\npdsi (atmospheric rain, mm/s)\nZ_final (atmospheric rain, mm/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c580_e25f_c77f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c580_e25f_c77f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c580_e25f_c77f/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.001.clm2.h0.PDSI_coeff.K1.K_final.195001-199912.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c580_e25f_c77f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c580_e25f_c77f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c580_e25f_c77f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96a4_c65b_2151", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96a4_c65b_2151.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PDSI coeff.K1.K final.197001-199912 [lat][lon]", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PDSI coeff.K1.K final.197001-199912\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nZ_dr_slope (atmospheric rain, mm/s)\nZ_dr_inter (atmospheric rain, mm/s)\nZ_dr_tval_prob (atmospheric rain, mm/s)\nZ_dr_corr (atmospheric rain, mm/s)\np_coef_dr (atmospheric rain, mm/s)\nq_coef_dr (atmospheric rain, mm/s)\nZ_wt_slope (atmospheric rain, mm/s)\nZ_wt_inter (atmospheric rain, mm/s)\nZ_wt_tval_prob (atmospheric rain, mm/s)\nZ_wt_corr (atmospheric rain, mm/s)\np_coef_wt (atmospheric rain, mm/s)\nq_coef_wt (atmospheric rain, mm/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_96a4_c65b_2151_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_96a4_c65b_2151_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_96a4_c65b_2151/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.001.clm2.h0.PDSI_coeff.K1.K_final.197001-199912.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_96a4_c65b_2151.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_96a4_c65b_2151&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_96a4_c65b_2151"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8247_2d9e_e729", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8247_2d9e_e729.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PDSI coeff.K1.K final.197001-199912 [month][lat][lon]", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PDSI coeff.K1.K final.197001-199912\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [month][latitude][longitude]):\nalpha (Potential ET, mm/day)\nbeta (volumetric soil water (vegetated landunits only), mm3/mm3)\ngama (total liquid runoff (does not include QSNWCPICE), mm/s)\ndelta (Potential ET, mm/day)\nK1 (Potential ET, mm/day)\nK_final_dr (Potential ET, mm/day)\nK_final_wt (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8247_2d9e_e729_fgdc.xml", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8247_2d9e_e729/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.001.clm2.h0.PDSI_coeff.K1.K_final.197001-199912.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8247_2d9e_e729.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8247_2d9e_e729&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8247_2d9e_e729"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f768_511a_3d45", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f768_511a_3d45.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PDSI coeff.K1.K final.197001-199912 [time][lat][lon]", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PDSI coeff.K1.K final.197001-199912\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi_t (atmospheric rain, mm/s)\npdsi (atmospheric rain, mm/s)\nZ_final (atmospheric rain, mm/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f768_511a_3d45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f768_511a_3d45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f768_511a_3d45/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.001.clm2.h0.PDSI_coeff.K1.K_final.197001-199912.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f768_511a_3d45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f768_511a_3d45&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f768_511a_3d45"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b288_9e4c_96b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b288_9e4c_96b6.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PDSI coeff.K1.K0.197001-199912 [lat][lon]", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PDSI coeff.K1.K0.197001-199912\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nZ_dr_slope (atmospheric rain, mm/s)\nZ_dr_inter (atmospheric rain, mm/s)\nZ_dr_tval_prob (atmospheric rain, mm/s)\nZ_dr_corr (atmospheric rain, mm/s)\np_coef_dr (atmospheric rain, mm/s)\nq_coef_dr (atmospheric rain, mm/s)\nZ_wt_slope (atmospheric rain, mm/s)\nZ_wt_inter (atmospheric rain, mm/s)\nZ_wt_tval_prob (atmospheric rain, mm/s)\nZ_wt_corr (atmospheric rain, mm/s)\np_coef_wt (atmospheric rain, mm/s)\nq_coef_wt (atmospheric rain, mm/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b288_9e4c_96b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b288_9e4c_96b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b288_9e4c_96b6/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.001.clm2.h0.PDSI_coeff.K1.K0.197001-199912.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b288_9e4c_96b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b288_9e4c_96b6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b288_9e4c_96b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3f4_2aff_9bcc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3f4_2aff_9bcc.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PDSI coeff.K1.K0.197001-199912 [month][lat][lon]", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PDSI coeff.K1.K0.197001-199912\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [month][latitude][longitude]):\nalpha (Potential ET, mm/day)\nbeta (volumetric soil water (vegetated landunits only), mm3/mm3)\ngama (total liquid runoff (does not include QSNWCPICE), mm/s)\ndelta (Potential ET, mm/day)\nK1 (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d3f4_2aff_9bcc_fgdc.xml", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d3f4_2aff_9bcc/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.001.clm2.h0.PDSI_coeff.K1.K0.197001-199912.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d3f4_2aff_9bcc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d3f4_2aff_9bcc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d3f4_2aff_9bcc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c60_05e9_e440", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c60_05e9_e440.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PDSI coeff.K1.K0.197001-199912 [time][lat][lon]", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PDSI coeff.K1.K0.197001-199912\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi_t (atmospheric rain, mm/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c60_05e9_e440_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c60_05e9_e440_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c60_05e9_e440/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.001.clm2.h0.PDSI_coeff.K1.K0.197001-199912.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c60_05e9_e440.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c60_05e9_e440&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5c60_05e9_e440"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94fe_c586_1743", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94fe_c586_1743.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_94fe_c586_1743_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_94fe_c586_1743_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_94fe_c586_1743/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.001.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_94fe_c586_1743.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_94fe_c586_1743&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_94fe_c586_1743"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b87_9662_4631", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b87_9662_4631.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PSDI coeff.K1.K final.195001-199912 [lat][lon]", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PSDI coeff.K1.K final.195001-199912\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nZ_dr_slope (atmospheric rain, mm/s)\nZ_dr_inter (atmospheric rain, mm/s)\nZ_dr_tval_prob (atmospheric rain, mm/s)\nZ_dr_corr (atmospheric rain, mm/s)\np_coef_dr (atmospheric rain, mm/s)\nq_coef_dr (atmospheric rain, mm/s)\nZ_wt_slope (atmospheric rain, mm/s)\nZ_wt_inter (atmospheric rain, mm/s)\nZ_wt_tval_prob (atmospheric rain, mm/s)\nZ_wt_corr (atmospheric rain, mm/s)\np_coef_wt (atmospheric rain, mm/s)\nq_coef_wt (atmospheric rain, mm/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b87_9662_4631_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b87_9662_4631_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b87_9662_4631/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.001.clm2.h0.PSDI_coeff.K1.K_final.195001-199912.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b87_9662_4631.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b87_9662_4631&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6b87_9662_4631"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f79_d14d_d227", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f79_d14d_d227.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PSDI coeff.K1.K final.195001-199912 [month][lat][lon]", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PSDI coeff.K1.K final.195001-199912\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [month][latitude][longitude]):\nalpha (Potential ET, mm/day)\nbeta (volumetric soil water (vegetated landunits only), mm3/mm3)\ngama (total liquid runoff (does not include QSNWCPICE), mm/s)\ndelta (Potential ET, mm/day)\nK1 (Potential ET, mm/day)\nK_final_dr (Potential ET, mm/day)\nK_final_wt (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f79_d14d_d227_fgdc.xml", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f79_d14d_d227/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.001.clm2.h0.PSDI_coeff.K1.K_final.195001-199912.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f79_d14d_d227.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f79_d14d_d227&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2f79_d14d_d227"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_520b_cb5d_b12a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_520b_cb5d_b12a.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PSDI coeff.K1.K final.195001-199912 [time][lat][lon]", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PSDI coeff.K1.K final.195001-199912\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi_t (atmospheric rain, mm/s)\npdsi (atmospheric rain, mm/s)\nZ_final (atmospheric rain, mm/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_520b_cb5d_b12a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_520b_cb5d_b12a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_520b_cb5d_b12a/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.001.clm2.h0.PSDI_coeff.K1.K_final.195001-199912.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_520b_cb5d_b12a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_520b_cb5d_b12a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_520b_cb5d_b12a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7ff_3622_880b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7ff_3622_880b.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.WATSAT AWC rev2 [lat][lon]", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.WATSAT AWC rev2\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nWILT_1m (saturated soil water content (porosity), mm water per 1.38m soil (0 to 7 layers))\nAWC_1m (saturated soil water content (porosity), mm water per 1.38m soil (0 to 7 layers))\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c7ff_3622_880b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c7ff_3622_880b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c7ff_3622_880b/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.001.clm2.h0.WATSAT_AWC_rev2.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c7ff_3622_880b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c7ff_3622_880b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c7ff_3622_880b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28a1_13ba_de7e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28a1_13ba_de7e.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.WATSAT AWC rev2 [lev][lat][lon]", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.WATSAT AWC rev2\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [lev][latitude][longitude]):\nAWC (saturated soil water content (porosity), mm3/mm3)\nWATSAT (saturated soil water content (porosity), mm3/mm3)\nWATWILT (saturated soil water content (porosity), mm3/mm3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28a1_13ba_de7e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28a1_13ba_de7e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28a1_13ba_de7e/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.001.clm2.h0.WATSAT_AWC_rev2.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28a1_13ba_de7e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28a1_13ba_de7e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_28a1_13ba_de7e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98e9_d1f0_8b5a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98e9_d1f0_8b5a.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.002.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.002.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_98e9_d1f0_8b5a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_98e9_d1f0_8b5a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_98e9_d1f0_8b5a/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.002.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_98e9_d1f0_8b5a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_98e9_d1f0_8b5a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_98e9_d1f0_8b5a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c83_4644_b267", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c83_4644_b267.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.003.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.003.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4c83_4644_b267_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4c83_4644_b267_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c83_4644_b267/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.003.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c83_4644_b267.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c83_4644_b267&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4c83_4644_b267"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f70_73a6_80e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f70_73a6_80e0.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.004.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.004.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3f70_73a6_80e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3f70_73a6_80e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3f70_73a6_80e0/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.004.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3f70_73a6_80e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3f70_73a6_80e0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3f70_73a6_80e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65a0_0ee0_0577", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65a0_0ee0_0577.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.005.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.005.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_65a0_0ee0_0577_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_65a0_0ee0_0577_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_65a0_0ee0_0577/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.005.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_65a0_0ee0_0577.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_65a0_0ee0_0577&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_65a0_0ee0_0577"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee2a_61dc_7ae4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee2a_61dc_7ae4.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.006.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.006.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ee2a_61dc_7ae4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ee2a_61dc_7ae4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ee2a_61dc_7ae4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.006.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ee2a_61dc_7ae4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ee2a_61dc_7ae4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ee2a_61dc_7ae4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_16f8_14a9_0b37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_16f8_14a9_0b37.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.007.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.007.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_16f8_14a9_0b37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_16f8_14a9_0b37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_16f8_14a9_0b37/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.007.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_16f8_14a9_0b37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_16f8_14a9_0b37&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_16f8_14a9_0b37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd5d_1917_28af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd5d_1917_28af.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.008.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.008.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fd5d_1917_28af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fd5d_1917_28af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fd5d_1917_28af/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.008.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fd5d_1917_28af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fd5d_1917_28af&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fd5d_1917_28af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_509d_3fe9_20b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_509d_3fe9_20b1.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.009.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.009.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_509d_3fe9_20b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_509d_3fe9_20b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_509d_3fe9_20b1/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.009.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_509d_3fe9_20b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_509d_3fe9_20b1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_509d_3fe9_20b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4bbf_679d_2eaa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4bbf_679d_2eaa.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.010.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.010.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4bbf_679d_2eaa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4bbf_679d_2eaa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4bbf_679d_2eaa/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.010.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4bbf_679d_2eaa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4bbf_679d_2eaa&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4bbf_679d_2eaa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e263_14f5_ebe7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e263_14f5_ebe7.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.011.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.011.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e263_14f5_ebe7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e263_14f5_ebe7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e263_14f5_ebe7/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.011.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e263_14f5_ebe7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e263_14f5_ebe7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e263_14f5_ebe7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_584f_278f_fb84", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_584f_278f_fb84.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.012.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.012.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_584f_278f_fb84_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_584f_278f_fb84_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_584f_278f_fb84/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.012.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_584f_278f_fb84.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_584f_278f_fb84&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_584f_278f_fb84"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db39_14df_a7ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db39_14df_a7ef.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.013.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.013.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db39_14df_a7ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db39_14df_a7ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db39_14df_a7ef/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.013.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db39_14df_a7ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db39_14df_a7ef&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_db39_14df_a7ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cbc3_cb4d_4f18", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cbc3_cb4d_4f18.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.014.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.014.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cbc3_cb4d_4f18_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cbc3_cb4d_4f18_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cbc3_cb4d_4f18/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.014.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cbc3_cb4d_4f18.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cbc3_cb4d_4f18&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cbc3_cb4d_4f18"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca11_e251_42b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca11_e251_42b7.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.015.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.015.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca11_e251_42b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca11_e251_42b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca11_e251_42b7/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.015.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca11_e251_42b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca11_e251_42b7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ca11_e251_42b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f13_5dcb_ec08", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f13_5dcb_ec08.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.016.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.016.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f13_5dcb_ec08_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f13_5dcb_ec08_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f13_5dcb_ec08/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.016.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f13_5dcb_ec08.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f13_5dcb_ec08&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9f13_5dcb_ec08"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4e0_5e7c_dacb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4e0_5e7c_dacb.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.017.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.017.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f4e0_5e7c_dacb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f4e0_5e7c_dacb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f4e0_5e7c_dacb/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.017.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f4e0_5e7c_dacb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f4e0_5e7c_dacb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f4e0_5e7c_dacb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce96_e0ab_d921", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce96_e0ab_d921.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.018.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.018.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ce96_e0ab_d921_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ce96_e0ab_d921_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ce96_e0ab_d921/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.018.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ce96_e0ab_d921.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ce96_e0ab_d921&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ce96_e0ab_d921"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3da5_ca18_9fec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3da5_ca18_9fec.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.019.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.019.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3da5_ca18_9fec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3da5_ca18_9fec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3da5_ca18_9fec/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.019.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3da5_ca18_9fec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3da5_ca18_9fec&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3da5_ca18_9fec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fcd3_d0dd_5e76", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fcd3_d0dd_5e76.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.020.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.020.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fcd3_d0dd_5e76_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fcd3_d0dd_5e76_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fcd3_d0dd_5e76/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.020.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fcd3_d0dd_5e76.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fcd3_d0dd_5e76&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fcd3_d0dd_5e76"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fd7_5c2e_3821", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fd7_5c2e_3821.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.021.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.021.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5fd7_5c2e_3821_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5fd7_5c2e_3821_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5fd7_5c2e_3821/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.021.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5fd7_5c2e_3821.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5fd7_5c2e_3821&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5fd7_5c2e_3821"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c49c_c2b0_5e20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c49c_c2b0_5e20.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.022.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.022.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c49c_c2b0_5e20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c49c_c2b0_5e20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c49c_c2b0_5e20/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.022.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c49c_c2b0_5e20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c49c_c2b0_5e20&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c49c_c2b0_5e20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56fe_3f7b_d8b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56fe_3f7b_d8b1.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.023.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.023.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_56fe_3f7b_d8b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_56fe_3f7b_d8b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_56fe_3f7b_d8b1/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.023.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_56fe_3f7b_d8b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_56fe_3f7b_d8b1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_56fe_3f7b_d8b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9cd_e3cb_feb0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9cd_e3cb_feb0.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.024.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.024.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9cd_e3cb_feb0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9cd_e3cb_feb0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9cd_e3cb_feb0/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.024.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9cd_e3cb_feb0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9cd_e3cb_feb0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a9cd_e3cb_feb0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbbc_e5d7_9bd3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbbc_e5d7_9bd3.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.025.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.025.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fbbc_e5d7_9bd3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fbbc_e5d7_9bd3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fbbc_e5d7_9bd3/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.025.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fbbc_e5d7_9bd3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fbbc_e5d7_9bd3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fbbc_e5d7_9bd3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99e8_e755_ebfd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99e8_e755_ebfd.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.026.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.026.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99e8_e755_ebfd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99e8_e755_ebfd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99e8_e755_ebfd/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.026.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99e8_e755_ebfd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99e8_e755_ebfd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_99e8_e755_ebfd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bfe_4972_7d93", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bfe_4972_7d93.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.027.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.027.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2bfe_4972_7d93_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2bfe_4972_7d93_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2bfe_4972_7d93/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.027.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2bfe_4972_7d93.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2bfe_4972_7d93&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2bfe_4972_7d93"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e30_7e2e_6ada", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e30_7e2e_6ada.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.028.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.028.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6e30_7e2e_6ada_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6e30_7e2e_6ada_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6e30_7e2e_6ada/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.028.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6e30_7e2e_6ada.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6e30_7e2e_6ada&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6e30_7e2e_6ada"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df3b_0ce2_564e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df3b_0ce2_564e.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.029.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.029.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_df3b_0ce2_564e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_df3b_0ce2_564e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_df3b_0ce2_564e/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.029.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_df3b_0ce2_564e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_df3b_0ce2_564e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_df3b_0ce2_564e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d37_e490_4035", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d37_e490_4035.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.030.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.030.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d37_e490_4035_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d37_e490_4035_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d37_e490_4035/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.030.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d37_e490_4035.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d37_e490_4035&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8d37_e490_4035"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb14_fe79_e53f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb14_fe79_e53f.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.031.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.031.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eb14_fe79_e53f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eb14_fe79_e53f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb14_fe79_e53f/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.031.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb14_fe79_e53f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb14_fe79_e53f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_eb14_fe79_e53f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_736c_4550_f090", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_736c_4550_f090.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.032.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.032.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_736c_4550_f090_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_736c_4550_f090_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_736c_4550_f090/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.032.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_736c_4550_f090.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_736c_4550_f090&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_736c_4550_f090"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5ab_f567_118b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5ab_f567_118b.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.033.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.033.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d5ab_f567_118b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d5ab_f567_118b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d5ab_f567_118b/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.033.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d5ab_f567_118b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d5ab_f567_118b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d5ab_f567_118b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94c9_57fd_b3b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94c9_57fd_b3b7.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.034.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.034.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_94c9_57fd_b3b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_94c9_57fd_b3b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_94c9_57fd_b3b7/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.034.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_94c9_57fd_b3b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_94c9_57fd_b3b7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_94c9_57fd_b3b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_784e_1d1d_eaf4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_784e_1d1d_eaf4.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.035.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.035.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_784e_1d1d_eaf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_784e_1d1d_eaf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_784e_1d1d_eaf4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.035.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_784e_1d1d_eaf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_784e_1d1d_eaf4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_784e_1d1d_eaf4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fca6_9ab1_b85a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fca6_9ab1_b85a.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.101.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.101.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fca6_9ab1_b85a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fca6_9ab1_b85a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fca6_9ab1_b85a/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.101.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fca6_9ab1_b85a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fca6_9ab1_b85a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fca6_9ab1_b85a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e80_64a3_7e8d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e80_64a3_7e8d.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.102.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.102.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e80_64a3_7e8d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e80_64a3_7e8d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e80_64a3_7e8d/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.102.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e80_64a3_7e8d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e80_64a3_7e8d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9e80_64a3_7e8d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df54_bd35_2191", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df54_bd35_2191.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.103.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.103.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_df54_bd35_2191_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_df54_bd35_2191_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_df54_bd35_2191/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.103.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_df54_bd35_2191.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_df54_bd35_2191&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_df54_bd35_2191"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ef6_b476_d8c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ef6_b476_d8c9.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.104.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.104.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6ef6_b476_d8c9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6ef6_b476_d8c9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ef6_b476_d8c9/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.104.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ef6_b476_d8c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ef6_b476_d8c9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6ef6_b476_d8c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22d3_8e84_5748", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22d3_8e84_5748.graph", "", "", "public", "Top Dataset, PDSI, b.e11.B20TRC5CNBDRD.f09 g16.105.clm2.h0.PDSI.192001-200512", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.B20TRC5CNBDRD.f09 g16.105.clm2.h0.PDSI.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_22d3_8e84_5748_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_22d3_8e84_5748_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_22d3_8e84_5748/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.B20TRC5CNBDRD.f09_g16.105.clm2.h0.PDSI.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_22d3_8e84_5748.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_22d3_8e84_5748&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_22d3_8e84_5748"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9978_cd06_1081", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9978_cd06_1081.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.001.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.001.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9978_cd06_1081_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9978_cd06_1081_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9978_cd06_1081/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.001.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9978_cd06_1081.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9978_cd06_1081&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9978_cd06_1081"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80a6_4fc1_fa8c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80a6_4fc1_fa8c.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.002.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.002.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_80a6_4fc1_fa8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_80a6_4fc1_fa8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_80a6_4fc1_fa8c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.002.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_80a6_4fc1_fa8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_80a6_4fc1_fa8c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_80a6_4fc1_fa8c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a150_eda6_2e4a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a150_eda6_2e4a.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.003.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.003.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a150_eda6_2e4a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a150_eda6_2e4a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a150_eda6_2e4a/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.003.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a150_eda6_2e4a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a150_eda6_2e4a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a150_eda6_2e4a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_523c_7fea_db32", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_523c_7fea_db32.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.004.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.004.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_523c_7fea_db32_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_523c_7fea_db32_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_523c_7fea_db32/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.004.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_523c_7fea_db32.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_523c_7fea_db32&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_523c_7fea_db32"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_017c_7f41_1f78", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_017c_7f41_1f78.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.005.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.005.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_017c_7f41_1f78_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_017c_7f41_1f78_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_017c_7f41_1f78/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.005.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_017c_7f41_1f78.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_017c_7f41_1f78&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_017c_7f41_1f78"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6a6_c61c_12cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6a6_c61c_12cd.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.006.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.006.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f6a6_c61c_12cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f6a6_c61c_12cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f6a6_c61c_12cd/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.006.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f6a6_c61c_12cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f6a6_c61c_12cd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f6a6_c61c_12cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72b8_ea3a_a908", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72b8_ea3a_a908.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.007.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.007.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_72b8_ea3a_a908_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_72b8_ea3a_a908_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_72b8_ea3a_a908/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.007.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_72b8_ea3a_a908.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_72b8_ea3a_a908&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_72b8_ea3a_a908"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cef5_1697_dd15", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cef5_1697_dd15.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.008.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.008.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cef5_1697_dd15_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cef5_1697_dd15_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cef5_1697_dd15/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.008.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cef5_1697_dd15.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cef5_1697_dd15&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cef5_1697_dd15"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_670e_70ea_a887", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_670e_70ea_a887.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.009.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.009.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_670e_70ea_a887_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_670e_70ea_a887_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_670e_70ea_a887/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.009.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_670e_70ea_a887.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_670e_70ea_a887&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_670e_70ea_a887"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd6c_d8d9_a707", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd6c_d8d9_a707.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.010.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.010.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cd6c_d8d9_a707_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cd6c_d8d9_a707_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cd6c_d8d9_a707/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.010.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cd6c_d8d9_a707.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cd6c_d8d9_a707&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cd6c_d8d9_a707"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_68dd_d651_d05d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_68dd_d651_d05d.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.011.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.011.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_68dd_d651_d05d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_68dd_d651_d05d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_68dd_d651_d05d/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.011.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_68dd_d651_d05d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_68dd_d651_d05d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_68dd_d651_d05d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c853_83fd_6245", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c853_83fd_6245.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.012.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.012.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c853_83fd_6245_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c853_83fd_6245_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c853_83fd_6245/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.012.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c853_83fd_6245.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c853_83fd_6245&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c853_83fd_6245"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_110d_bc60_71e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_110d_bc60_71e4.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.013.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.013.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_110d_bc60_71e4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_110d_bc60_71e4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_110d_bc60_71e4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.013.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_110d_bc60_71e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_110d_bc60_71e4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_110d_bc60_71e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ccd_b23b_b331", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ccd_b23b_b331.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.014.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.014.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ccd_b23b_b331_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ccd_b23b_b331_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ccd_b23b_b331/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.014.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ccd_b23b_b331.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ccd_b23b_b331&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8ccd_b23b_b331"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0cb_697c_07f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0cb_697c_07f3.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.015.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.015.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f0cb_697c_07f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f0cb_697c_07f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f0cb_697c_07f3/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.015.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f0cb_697c_07f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f0cb_697c_07f3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f0cb_697c_07f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec56_5c8d_f839", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec56_5c8d_f839.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.016.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.016.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ec56_5c8d_f839_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ec56_5c8d_f839_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ec56_5c8d_f839/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.016.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ec56_5c8d_f839.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ec56_5c8d_f839&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ec56_5c8d_f839"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c8c9_d7e2_8502", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c8c9_d7e2_8502.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.017.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.017.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c8c9_d7e2_8502_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c8c9_d7e2_8502_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c8c9_d7e2_8502/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.017.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c8c9_d7e2_8502.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c8c9_d7e2_8502&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c8c9_d7e2_8502"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c6f_6c30_cc9e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c6f_6c30_cc9e.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.018.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.018.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c6f_6c30_cc9e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c6f_6c30_cc9e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c6f_6c30_cc9e/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.018.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c6f_6c30_cc9e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c6f_6c30_cc9e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5c6f_6c30_cc9e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b57e_d45b_01e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b57e_d45b_01e8.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.019.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.019.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b57e_d45b_01e8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b57e_d45b_01e8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b57e_d45b_01e8/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.019.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b57e_d45b_01e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b57e_d45b_01e8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b57e_d45b_01e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c51_8201_b086", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c51_8201_b086.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.020.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.020.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c51_8201_b086_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c51_8201_b086_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c51_8201_b086/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.020.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c51_8201_b086.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c51_8201_b086&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0c51_8201_b086"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5ee_1f7e_d209", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5ee_1f7e_d209.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.021.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.021.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5ee_1f7e_d209_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5ee_1f7e_d209_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5ee_1f7e_d209/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.021.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5ee_1f7e_d209.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5ee_1f7e_d209&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e5ee_1f7e_d209"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53c2_d514_b81f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53c2_d514_b81f.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.022.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.022.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_53c2_d514_b81f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_53c2_d514_b81f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_53c2_d514_b81f/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.022.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_53c2_d514_b81f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_53c2_d514_b81f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_53c2_d514_b81f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fe2_df71_f295", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fe2_df71_f295.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.023.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.023.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4fe2_df71_f295_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4fe2_df71_f295_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4fe2_df71_f295/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.023.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4fe2_df71_f295.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4fe2_df71_f295&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4fe2_df71_f295"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a726_7450_04f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a726_7450_04f2.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.024.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.024.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a726_7450_04f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a726_7450_04f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a726_7450_04f2/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.024.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a726_7450_04f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a726_7450_04f2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a726_7450_04f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ad9_6480_0ba4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ad9_6480_0ba4.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.025.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.025.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2ad9_6480_0ba4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2ad9_6480_0ba4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2ad9_6480_0ba4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.025.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2ad9_6480_0ba4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2ad9_6480_0ba4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2ad9_6480_0ba4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_544f_302b_76fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_544f_302b_76fd.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.026.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.026.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_544f_302b_76fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_544f_302b_76fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_544f_302b_76fd/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.026.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_544f_302b_76fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_544f_302b_76fd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_544f_302b_76fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a70_3ce7_2245", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a70_3ce7_2245.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.027.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.027.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a70_3ce7_2245_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a70_3ce7_2245_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a70_3ce7_2245/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.027.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a70_3ce7_2245.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a70_3ce7_2245&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5a70_3ce7_2245"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6fe3_a2f9_92d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6fe3_a2f9_92d4.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.028.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.028.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6fe3_a2f9_92d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6fe3_a2f9_92d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6fe3_a2f9_92d4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.028.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6fe3_a2f9_92d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6fe3_a2f9_92d4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6fe3_a2f9_92d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce22_c36b_35c8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce22_c36b_35c8.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.029.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.029.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ce22_c36b_35c8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ce22_c36b_35c8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ce22_c36b_35c8/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.029.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ce22_c36b_35c8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ce22_c36b_35c8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ce22_c36b_35c8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abb1_4f10_2a81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abb1_4f10_2a81.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.030.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.030.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_abb1_4f10_2a81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_abb1_4f10_2a81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_abb1_4f10_2a81/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.030.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_abb1_4f10_2a81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_abb1_4f10_2a81&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_abb1_4f10_2a81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5e2_d58f_9b27", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5e2_d58f_9b27.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.031.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.031.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5e2_d58f_9b27_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5e2_d58f_9b27_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5e2_d58f_9b27/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.031.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5e2_d58f_9b27.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5e2_d58f_9b27&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e5e2_d58f_9b27"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4455_ec3a_0534", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4455_ec3a_0534.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.032.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.032.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4455_ec3a_0534_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4455_ec3a_0534_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4455_ec3a_0534/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.032.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4455_ec3a_0534.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4455_ec3a_0534&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4455_ec3a_0534"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06ed_fae8_f6cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06ed_fae8_f6cd.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.033.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.033.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_06ed_fae8_f6cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_06ed_fae8_f6cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_06ed_fae8_f6cd/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.033.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_06ed_fae8_f6cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_06ed_fae8_f6cd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_06ed_fae8_f6cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65fa_7e4f_11a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65fa_7e4f_11a2.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.034.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.034.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_65fa_7e4f_11a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_65fa_7e4f_11a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_65fa_7e4f_11a2/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.034.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_65fa_7e4f_11a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_65fa_7e4f_11a2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_65fa_7e4f_11a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_038c_ff1e_da89", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_038c_ff1e_da89.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.035.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.035.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_038c_ff1e_da89_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_038c_ff1e_da89_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_038c_ff1e_da89/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.035.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_038c_ff1e_da89.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_038c_ff1e_da89&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_038c_ff1e_da89"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56bb_7200_d62d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56bb_7200_d62d.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.101.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.101.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_56bb_7200_d62d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_56bb_7200_d62d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_56bb_7200_d62d/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.101.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_56bb_7200_d62d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_56bb_7200_d62d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_56bb_7200_d62d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5212_4b67_65bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5212_4b67_65bc.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.102.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.102.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5212_4b67_65bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5212_4b67_65bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5212_4b67_65bc/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.102.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5212_4b67_65bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5212_4b67_65bc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5212_4b67_65bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53bf_1daf_f6a4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53bf_1daf_f6a4.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.103.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.103.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_53bf_1daf_f6a4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_53bf_1daf_f6a4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_53bf_1daf_f6a4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.103.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_53bf_1daf_f6a4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_53bf_1daf_f6a4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_53bf_1daf_f6a4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f20_e623_5225", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f20_e623_5225.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.104.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.104.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f20_e623_5225_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f20_e623_5225_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f20_e623_5225/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.104.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f20_e623_5225.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f20_e623_5225&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1f20_e623_5225"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b9b_71fa_b650", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b9b_71fa_b650.graph", "", "", "public", "Top Dataset, PDSI, b.e11.BRCP85C5CNBDRD.f09 g16.105.clm2.h0.PDSI.200601-208012", "Top Dataset, Palmer Drought Severity Index (PDSI), b.e11.BRCP85C5CNBDRD.f09 g16.105.clm2.h0.PDSI.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Sc Pdsi, index)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9b9b_71fa_b650_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9b9b_71fa_b650_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9b9b_71fa_b650/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PDSI/b.e11.BRCP85C5CNBDRD.f09_g16.105.clm2.h0.PDSI.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9b9b_71fa_b650.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9b9b_71fa_b650&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9b9b_71fa_b650"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1aa3_00f9_cad6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1aa3_00f9_cad6.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.001.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1aa3_00f9_cad6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1aa3_00f9_cad6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1aa3_00f9_cad6/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.001.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1aa3_00f9_cad6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1aa3_00f9_cad6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1aa3_00f9_cad6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d2c_4901_1aa0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d2c_4901_1aa0.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.002.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.002.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d2c_4901_1aa0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d2c_4901_1aa0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d2c_4901_1aa0/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.002.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d2c_4901_1aa0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d2c_4901_1aa0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6d2c_4901_1aa0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a75a_c988_c8a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a75a_c988_c8a2.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.003.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.003.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a75a_c988_c8a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a75a_c988_c8a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a75a_c988_c8a2/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.003.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a75a_c988_c8a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a75a_c988_c8a2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a75a_c988_c8a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca8f_d098_81fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca8f_d098_81fe.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.004.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.004.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca8f_d098_81fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca8f_d098_81fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca8f_d098_81fe/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.004.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca8f_d098_81fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca8f_d098_81fe&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ca8f_d098_81fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ad5_8285_b5fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ad5_8285_b5fe.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.005.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.005.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ad5_8285_b5fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ad5_8285_b5fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ad5_8285_b5fe/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.005.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ad5_8285_b5fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ad5_8285_b5fe&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4ad5_8285_b5fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c74a_617c_fb1f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c74a_617c_fb1f.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.006.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.006.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c74a_617c_fb1f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c74a_617c_fb1f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c74a_617c_fb1f/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.006.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c74a_617c_fb1f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c74a_617c_fb1f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c74a_617c_fb1f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_450c_b367_988f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_450c_b367_988f.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.007.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.007.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_450c_b367_988f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_450c_b367_988f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_450c_b367_988f/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.007.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_450c_b367_988f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_450c_b367_988f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_450c_b367_988f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26c9_8841_eae6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26c9_8841_eae6.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.008.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.008.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_26c9_8841_eae6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_26c9_8841_eae6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_26c9_8841_eae6/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.008.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_26c9_8841_eae6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_26c9_8841_eae6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_26c9_8841_eae6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ae7_0747_2f84", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ae7_0747_2f84.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.009.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.009.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6ae7_0747_2f84_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6ae7_0747_2f84_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ae7_0747_2f84/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.009.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ae7_0747_2f84.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ae7_0747_2f84&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6ae7_0747_2f84"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ffa_1b9a_cca1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ffa_1b9a_cca1.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.010.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.010.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0ffa_1b9a_cca1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0ffa_1b9a_cca1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0ffa_1b9a_cca1/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.010.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0ffa_1b9a_cca1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0ffa_1b9a_cca1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0ffa_1b9a_cca1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e088_edd1_5175", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e088_edd1_5175.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.011.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.011.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e088_edd1_5175_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e088_edd1_5175_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e088_edd1_5175/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.011.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e088_edd1_5175.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e088_edd1_5175&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e088_edd1_5175"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b8a_6164_9a2e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b8a_6164_9a2e.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.012.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.012.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3b8a_6164_9a2e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3b8a_6164_9a2e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3b8a_6164_9a2e/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.012.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3b8a_6164_9a2e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3b8a_6164_9a2e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3b8a_6164_9a2e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4027_067c_6c8c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4027_067c_6c8c.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.013.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.013.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4027_067c_6c8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4027_067c_6c8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4027_067c_6c8c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.013.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4027_067c_6c8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4027_067c_6c8c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4027_067c_6c8c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cae_2803_e953", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cae_2803_e953.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.014.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.014.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9cae_2803_e953_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9cae_2803_e953_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9cae_2803_e953/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.014.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9cae_2803_e953.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9cae_2803_e953&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9cae_2803_e953"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff72_5cfc_5c9e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff72_5cfc_5c9e.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.015.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.015.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff72_5cfc_5c9e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff72_5cfc_5c9e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff72_5cfc_5c9e/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.015.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff72_5cfc_5c9e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff72_5cfc_5c9e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ff72_5cfc_5c9e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0b2_8b36_f0a9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0b2_8b36_f0a9.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.016.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.016.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c0b2_8b36_f0a9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c0b2_8b36_f0a9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c0b2_8b36_f0a9/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.016.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c0b2_8b36_f0a9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c0b2_8b36_f0a9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c0b2_8b36_f0a9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96c4_8069_e0ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96c4_8069_e0ea.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.017.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.017.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_96c4_8069_e0ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_96c4_8069_e0ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_96c4_8069_e0ea/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.017.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_96c4_8069_e0ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_96c4_8069_e0ea&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_96c4_8069_e0ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f4a_00ad_62ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f4a_00ad_62ea.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.018.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.018.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f4a_00ad_62ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f4a_00ad_62ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f4a_00ad_62ea/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.018.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f4a_00ad_62ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f4a_00ad_62ea&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2f4a_00ad_62ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_780a_c4f3_3d95", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_780a_c4f3_3d95.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.019.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.019.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_780a_c4f3_3d95_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_780a_c4f3_3d95_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_780a_c4f3_3d95/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.019.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_780a_c4f3_3d95.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_780a_c4f3_3d95&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_780a_c4f3_3d95"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0c4_97e8_b4ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0c4_97e8_b4ff.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.020.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.020.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f0c4_97e8_b4ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f0c4_97e8_b4ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f0c4_97e8_b4ff/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.020.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f0c4_97e8_b4ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f0c4_97e8_b4ff&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f0c4_97e8_b4ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d40d_5a07_5463", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d40d_5a07_5463.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.021.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.021.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d40d_5a07_5463_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d40d_5a07_5463_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d40d_5a07_5463/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.021.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d40d_5a07_5463.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d40d_5a07_5463&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d40d_5a07_5463"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89f8_b1f8_3643", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89f8_b1f8_3643.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.022.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.022.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_89f8_b1f8_3643_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_89f8_b1f8_3643_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_89f8_b1f8_3643/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.022.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_89f8_b1f8_3643.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_89f8_b1f8_3643&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_89f8_b1f8_3643"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3de4_c226_0473", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3de4_c226_0473.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.023.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.023.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3de4_c226_0473_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3de4_c226_0473_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3de4_c226_0473/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.023.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3de4_c226_0473.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3de4_c226_0473&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3de4_c226_0473"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f929_197f_c659", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f929_197f_c659.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.024.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.024.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f929_197f_c659_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f929_197f_c659_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f929_197f_c659/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.024.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f929_197f_c659.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f929_197f_c659&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f929_197f_c659"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f5f_77cb_9846", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f5f_77cb_9846.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.025.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.025.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f5f_77cb_9846_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f5f_77cb_9846_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f5f_77cb_9846/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.025.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f5f_77cb_9846.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f5f_77cb_9846&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9f5f_77cb_9846"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2aa6_0a92_20a3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2aa6_0a92_20a3.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.026.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.026.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2aa6_0a92_20a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2aa6_0a92_20a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2aa6_0a92_20a3/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.026.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2aa6_0a92_20a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2aa6_0a92_20a3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2aa6_0a92_20a3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_39bc_6a91_62d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_39bc_6a91_62d9.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.027.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.027.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_39bc_6a91_62d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_39bc_6a91_62d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_39bc_6a91_62d9/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.027.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_39bc_6a91_62d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_39bc_6a91_62d9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_39bc_6a91_62d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad06_828d_3306", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad06_828d_3306.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.028.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.028.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ad06_828d_3306_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ad06_828d_3306_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ad06_828d_3306/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.028.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ad06_828d_3306.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ad06_828d_3306&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ad06_828d_3306"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ec8_10e6_986f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ec8_10e6_986f.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.029.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.029.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ec8_10e6_986f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ec8_10e6_986f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ec8_10e6_986f/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.029.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ec8_10e6_986f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ec8_10e6_986f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7ec8_10e6_986f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5aaf_2f78_a14e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5aaf_2f78_a14e.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.030.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.030.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5aaf_2f78_a14e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5aaf_2f78_a14e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5aaf_2f78_a14e/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.030.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5aaf_2f78_a14e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5aaf_2f78_a14e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5aaf_2f78_a14e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_90b2_0015_f071", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_90b2_0015_f071.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.031.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.031.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_90b2_0015_f071_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_90b2_0015_f071_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_90b2_0015_f071/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.031.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_90b2_0015_f071.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_90b2_0015_f071&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_90b2_0015_f071"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7592_6520_be2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7592_6520_be2d.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.032.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.032.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7592_6520_be2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7592_6520_be2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7592_6520_be2d/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.032.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7592_6520_be2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7592_6520_be2d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7592_6520_be2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a271_adad_3104", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a271_adad_3104.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.033.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.033.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a271_adad_3104_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a271_adad_3104_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a271_adad_3104/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.033.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a271_adad_3104.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a271_adad_3104&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a271_adad_3104"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f3d_8bec_21be", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f3d_8bec_21be.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.034.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.034.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f3d_8bec_21be_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f3d_8bec_21be_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f3d_8bec_21be/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.034.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f3d_8bec_21be.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f3d_8bec_21be&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9f3d_8bec_21be"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a06_cda4_7892", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a06_cda4_7892.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.035.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.035.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1a06_cda4_7892_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1a06_cda4_7892_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1a06_cda4_7892/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.035.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1a06_cda4_7892.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1a06_cda4_7892&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1a06_cda4_7892"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_04d6_61ca_bf8a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_04d6_61ca_bf8a.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.101.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.101.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_04d6_61ca_bf8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_04d6_61ca_bf8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_04d6_61ca_bf8a/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.101.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_04d6_61ca_bf8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_04d6_61ca_bf8a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_04d6_61ca_bf8a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7796_a93a_6e3a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7796_a93a_6e3a.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.102.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.102.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7796_a93a_6e3a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7796_a93a_6e3a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7796_a93a_6e3a/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.102.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7796_a93a_6e3a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7796_a93a_6e3a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7796_a93a_6e3a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3bab_6bd5_b312", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3bab_6bd5_b312.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.103.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.103.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3bab_6bd5_b312_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3bab_6bd5_b312_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3bab_6bd5_b312/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.103.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3bab_6bd5_b312.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3bab_6bd5_b312&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3bab_6bd5_b312"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1854_24f9_98e9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1854_24f9_98e9.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.104.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.104.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1854_24f9_98e9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1854_24f9_98e9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1854_24f9_98e9/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.104.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1854_24f9_98e9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1854_24f9_98e9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1854_24f9_98e9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cf9_60b0_9d3e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cf9_60b0_9d3e.graph", "", "", "public", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.105.clm2.h0.PET.192001-200512", "Top Dataset, PET, b.e11.B20TRC5CNBDRD.f09 g16.105.clm2.h0.PET.192001-200512\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9cf9_60b0_9d3e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9cf9_60b0_9d3e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9cf9_60b0_9d3e/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.B20TRC5CNBDRD.f09_g16.105.clm2.h0.PET.192001-200512.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9cf9_60b0_9d3e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9cf9_60b0_9d3e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9cf9_60b0_9d3e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c545_4c78_907e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c545_4c78_907e.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.001.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.001.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c545_4c78_907e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c545_4c78_907e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c545_4c78_907e/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.001.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c545_4c78_907e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c545_4c78_907e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c545_4c78_907e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d3a_e214_3663", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d3a_e214_3663.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.002.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.002.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0d3a_e214_3663_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0d3a_e214_3663_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0d3a_e214_3663/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.002.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0d3a_e214_3663.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0d3a_e214_3663&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0d3a_e214_3663"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbc8_f4da_504d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbc8_f4da_504d.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.003.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.003.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fbc8_f4da_504d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fbc8_f4da_504d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fbc8_f4da_504d/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.003.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fbc8_f4da_504d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fbc8_f4da_504d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fbc8_f4da_504d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26c4_968c_47de", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26c4_968c_47de.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.004.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.004.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_26c4_968c_47de_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_26c4_968c_47de_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_26c4_968c_47de/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.004.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_26c4_968c_47de.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_26c4_968c_47de&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_26c4_968c_47de"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1bce_d0a2_dbe8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1bce_d0a2_dbe8.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.005.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.005.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1bce_d0a2_dbe8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1bce_d0a2_dbe8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1bce_d0a2_dbe8/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.005.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1bce_d0a2_dbe8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1bce_d0a2_dbe8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1bce_d0a2_dbe8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cffd_70dc_135c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cffd_70dc_135c.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.006.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.006.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cffd_70dc_135c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cffd_70dc_135c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cffd_70dc_135c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.006.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cffd_70dc_135c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cffd_70dc_135c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cffd_70dc_135c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_999f_7207_a869", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_999f_7207_a869.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.007.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.007.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_999f_7207_a869_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_999f_7207_a869_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_999f_7207_a869/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.007.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_999f_7207_a869.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_999f_7207_a869&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_999f_7207_a869"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e70d_6e70_9024", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e70d_6e70_9024.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.008.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.008.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e70d_6e70_9024_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e70d_6e70_9024_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e70d_6e70_9024/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.008.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e70d_6e70_9024.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e70d_6e70_9024&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e70d_6e70_9024"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9fb_00a2_357f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9fb_00a2_357f.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.009.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.009.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f9fb_00a2_357f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f9fb_00a2_357f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f9fb_00a2_357f/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.009.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f9fb_00a2_357f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f9fb_00a2_357f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f9fb_00a2_357f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7250_0a6f_e7f7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7250_0a6f_e7f7.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.010.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.010.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7250_0a6f_e7f7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7250_0a6f_e7f7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7250_0a6f_e7f7/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.010.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7250_0a6f_e7f7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7250_0a6f_e7f7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7250_0a6f_e7f7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c16d_9f6e_21fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c16d_9f6e_21fe.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.011.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.011.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c16d_9f6e_21fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c16d_9f6e_21fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c16d_9f6e_21fe/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.011.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c16d_9f6e_21fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c16d_9f6e_21fe&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c16d_9f6e_21fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_880a_474b_0acb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_880a_474b_0acb.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.012.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.012.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_880a_474b_0acb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_880a_474b_0acb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_880a_474b_0acb/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.012.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_880a_474b_0acb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_880a_474b_0acb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_880a_474b_0acb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6fe_de3b_54f8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6fe_de3b_54f8.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.013.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.013.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e6fe_de3b_54f8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e6fe_de3b_54f8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e6fe_de3b_54f8/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.013.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e6fe_de3b_54f8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e6fe_de3b_54f8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e6fe_de3b_54f8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff26_bcec_d5c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff26_bcec_d5c6.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.014.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.014.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff26_bcec_d5c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff26_bcec_d5c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff26_bcec_d5c6/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.014.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff26_bcec_d5c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff26_bcec_d5c6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ff26_bcec_d5c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_652e_8ce1_c276", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_652e_8ce1_c276.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.015.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.015.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_652e_8ce1_c276_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_652e_8ce1_c276_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_652e_8ce1_c276/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.015.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_652e_8ce1_c276.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_652e_8ce1_c276&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_652e_8ce1_c276"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57a8_dd50_581c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57a8_dd50_581c.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.016.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.016.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_57a8_dd50_581c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_57a8_dd50_581c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_57a8_dd50_581c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.016.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_57a8_dd50_581c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_57a8_dd50_581c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_57a8_dd50_581c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fb7_5102_9cac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fb7_5102_9cac.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.017.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.017.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2fb7_5102_9cac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2fb7_5102_9cac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2fb7_5102_9cac/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.017.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2fb7_5102_9cac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2fb7_5102_9cac&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2fb7_5102_9cac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_82f1_1f84_af80", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_82f1_1f84_af80.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.018.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.018.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_82f1_1f84_af80_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_82f1_1f84_af80_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_82f1_1f84_af80/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.018.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_82f1_1f84_af80.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_82f1_1f84_af80&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_82f1_1f84_af80"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8545_e210_c429", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8545_e210_c429.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.019.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.019.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8545_e210_c429_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8545_e210_c429_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8545_e210_c429/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.019.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8545_e210_c429.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8545_e210_c429&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8545_e210_c429"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9704_cda2_8a5d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9704_cda2_8a5d.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.020.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.020.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9704_cda2_8a5d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9704_cda2_8a5d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9704_cda2_8a5d/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.020.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9704_cda2_8a5d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9704_cda2_8a5d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9704_cda2_8a5d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7f2_7c44_4118", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7f2_7c44_4118.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.021.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.021.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f7f2_7c44_4118_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f7f2_7c44_4118_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f7f2_7c44_4118/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.021.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f7f2_7c44_4118.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f7f2_7c44_4118&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f7f2_7c44_4118"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d5a_6c3a_5329", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d5a_6c3a_5329.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.022.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.022.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5d5a_6c3a_5329_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5d5a_6c3a_5329_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5d5a_6c3a_5329/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.022.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5d5a_6c3a_5329.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5d5a_6c3a_5329&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5d5a_6c3a_5329"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94ee_cee8_6950", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94ee_cee8_6950.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.023.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.023.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_94ee_cee8_6950_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_94ee_cee8_6950_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_94ee_cee8_6950/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.023.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_94ee_cee8_6950.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_94ee_cee8_6950&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_94ee_cee8_6950"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dc8_ece7_0793", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dc8_ece7_0793.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.024.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.024.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8dc8_ece7_0793_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8dc8_ece7_0793_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8dc8_ece7_0793/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.024.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8dc8_ece7_0793.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8dc8_ece7_0793&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8dc8_ece7_0793"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7408_6e94_b23d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7408_6e94_b23d.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.025.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.025.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7408_6e94_b23d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7408_6e94_b23d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7408_6e94_b23d/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.025.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7408_6e94_b23d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7408_6e94_b23d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7408_6e94_b23d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddd4_a6bb_a37e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddd4_a6bb_a37e.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.026.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.026.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ddd4_a6bb_a37e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ddd4_a6bb_a37e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ddd4_a6bb_a37e/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.026.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ddd4_a6bb_a37e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ddd4_a6bb_a37e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ddd4_a6bb_a37e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9d8_4977_cd10", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9d8_4977_cd10.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.027.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.027.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9d8_4977_cd10_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9d8_4977_cd10_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9d8_4977_cd10/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.027.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9d8_4977_cd10.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9d8_4977_cd10&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a9d8_4977_cd10"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_393c_d79d_abcf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_393c_d79d_abcf.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.028.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.028.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_393c_d79d_abcf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_393c_d79d_abcf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_393c_d79d_abcf/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.028.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_393c_d79d_abcf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_393c_d79d_abcf&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_393c_d79d_abcf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e6d_f1f6_1a9e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e6d_f1f6_1a9e.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.029.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.029.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e6d_f1f6_1a9e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e6d_f1f6_1a9e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e6d_f1f6_1a9e/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.029.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e6d_f1f6_1a9e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e6d_f1f6_1a9e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8e6d_f1f6_1a9e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da25_1692_3c8b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da25_1692_3c8b.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.030.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.030.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da25_1692_3c8b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da25_1692_3c8b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da25_1692_3c8b/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.030.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da25_1692_3c8b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da25_1692_3c8b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_da25_1692_3c8b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f56c_b5f9_c474", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f56c_b5f9_c474.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.031.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.031.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f56c_b5f9_c474_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f56c_b5f9_c474_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f56c_b5f9_c474/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.031.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f56c_b5f9_c474.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f56c_b5f9_c474&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f56c_b5f9_c474"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d759_5e5e_6d26", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d759_5e5e_6d26.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.032.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.032.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d759_5e5e_6d26_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d759_5e5e_6d26_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d759_5e5e_6d26/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.032.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d759_5e5e_6d26.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d759_5e5e_6d26&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d759_5e5e_6d26"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86f9_0890_39fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86f9_0890_39fe.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.033.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.033.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86f9_0890_39fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86f9_0890_39fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86f9_0890_39fe/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.033.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86f9_0890_39fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86f9_0890_39fe&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_86f9_0890_39fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf60_38ff_3e0f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf60_38ff_3e0f.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.034.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.034.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf60_38ff_3e0f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf60_38ff_3e0f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf60_38ff_3e0f/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.034.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf60_38ff_3e0f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf60_38ff_3e0f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bf60_38ff_3e0f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9edc_3577_ec4b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9edc_3577_ec4b.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.035.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.035.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9edc_3577_ec4b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9edc_3577_ec4b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9edc_3577_ec4b/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.035.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9edc_3577_ec4b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9edc_3577_ec4b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9edc_3577_ec4b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbb3_c8b4_6e77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbb3_c8b4_6e77.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.101.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.101.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fbb3_c8b4_6e77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fbb3_c8b4_6e77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fbb3_c8b4_6e77/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.101.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fbb3_c8b4_6e77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fbb3_c8b4_6e77&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fbb3_c8b4_6e77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fff_b9d5_6a8c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fff_b9d5_6a8c.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.102.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.102.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5fff_b9d5_6a8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5fff_b9d5_6a8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5fff_b9d5_6a8c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.102.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5fff_b9d5_6a8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5fff_b9d5_6a8c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5fff_b9d5_6a8c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_47b8_e4d0_3f11", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_47b8_e4d0_3f11.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.103.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.103.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_47b8_e4d0_3f11_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_47b8_e4d0_3f11_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_47b8_e4d0_3f11/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.103.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_47b8_e4d0_3f11.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_47b8_e4d0_3f11&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_47b8_e4d0_3f11"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6fe_7b2f_2f4c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6fe_7b2f_2f4c.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.104.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.104.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f6fe_7b2f_2f4c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f6fe_7b2f_2f4c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f6fe_7b2f_2f4c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.104.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f6fe_7b2f_2f4c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f6fe_7b2f_2f4c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f6fe_7b2f_2f4c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_737b_3445_4ee4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_737b_3445_4ee4.graph", "", "", "public", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.105.clm2.h0.PET.200601-208012", "Top Dataset, PET, b.e11.BRCP85C5CNBDRD.f09 g16.105.clm2.h0.PET.200601-208012\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPET (Potential ET, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_737b_3445_4ee4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_737b_3445_4ee4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_737b_3445_4ee4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/PET/b.e11.BRCP85C5CNBDRD.f09_g16.105.clm2.h0.PET.200601-208012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_737b_3445_4ee4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_737b_3445_4ee4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_737b_3445_4ee4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26b8_6789_b7d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26b8_6789_b7d7.graph", "", "", "public", "Top Dataset, postprocessed, Global SST CESM-LE 40members 1920-2079 3moRunMeans [time], 1918-present", "Top Dataset, postprocessed, Global Sea Surface Temperature (SST) CESM-LE 40members 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_26b8_6789_b7d7/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/Global_SST_CESM-LE_40members_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_26b8_6789_b7d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_26b8_6789_b7d7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_26b8_6789_b7d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2240_3479_8147", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2240_3479_8147.graph", "", "", "public", "Top Dataset, postprocessed, Global SST CESM-LE 40members 1920-2079 3moRunMeans [time][ens], 1918-present", "Top Dataset, postprocessed, Global Sea Surface Temperature (SST) CESM-LE 40members 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens]):\nGlobalSST (Global SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2240_3479_8147/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/Global_SST_CESM-LE_40members_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2240_3479_8147.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2240_3479_8147&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2240_3479_8147"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aab8_9f2e_e8d6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aab8_9f2e_e8d6.graph", "", "", "public", "Top Dataset, postprocessed, Global SST CESM-LE 40members 1970-2039 3moRunMeans [time], 1968-present", "Top Dataset, postprocessed, Global Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aab8_9f2e_e8d6/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/Global_SST_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aab8_9f2e_e8d6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aab8_9f2e_e8d6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_aab8_9f2e_e8d6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8754_851b_0cbc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8754_851b_0cbc.graph", "", "", "public", "Top Dataset, postprocessed, Global SST CESM-LE 40members 1970-2039 3moRunMeans [time][ens], 1968-present", "Top Dataset, postprocessed, Global Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens]):\nGlobalSST (Global SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8754_851b_0cbc/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/Global_SST_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8754_851b_0cbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8754_851b_0cbc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8754_851b_0cbc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_536b_830d_de8a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_536b_830d_de8a.graph", "", "", "public", "Top Dataset, postprocessed, Global SST unweighted CESM-LE 40members 1970-2039 3moRunMeans [time], 1968-present", "Top Dataset, postprocessed, Global Sea Surface Temperature (SST) unweighted CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_536b_830d_de8a/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/Global_SST_unweighted_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_536b_830d_de8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_536b_830d_de8a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_536b_830d_de8a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a81c_971f_d3b4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a81c_971f_d3b4.graph", "", "", "public", "Top Dataset, postprocessed, Global SST unweighted CESM-LE 40members 1970-2039 3moRunMeans [time][ens], 1968-present", "Top Dataset, postprocessed, Global Sea Surface Temperature (SST) unweighted CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens]):\nGlobalSST (Global SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a81c_971f_d3b4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/Global_SST_unweighted_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a81c_971f_d3b4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a81c_971f_d3b4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a81c_971f_d3b4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_04e1_705f_9847", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_04e1_705f_9847.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific 3moSSTanomalies CESM-LE 40members 1920-2079 [ncl6]", "Top Dataset, postprocessed, IndoPacific 3moSSTanomalies CESM-LE 40members 1920-2079\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ncl6]):\nperiods\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_04e1_705f_9847/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_3moSSTanomalies_CESM-LE_40members_1920-2079.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_04e1_705f_9847.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_04e1_705f_9847&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_04e1_705f_9847"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e273_ff45_6bd2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e273_ff45_6bd2.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific 3moSSTanomalies CESM-LE 40members 1920-2079 [nlat][nlon]", "Top Dataset, postprocessed, IndoPacific 3moSSTanomalies CESM-LE 40members 1920-2079\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nlat][nlon]):\ntlat (array of t-grid latitudes, degrees_north)\ntlon (array of t-grid longitudes, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e273_ff45_6bd2/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_3moSSTanomalies_CESM-LE_40members_1920-2079.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e273_ff45_6bd2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e273_ff45_6bd2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e273_ff45_6bd2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d479_aa15_c600", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d479_aa15_c600.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific 3moSSTanomalies CESM-LE 40members 1920-2079 [time], 1918-present", "Top Dataset, postprocessed, IndoPacific 3moSSTanomalies CESM-LE 40members 1920-2079\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d479_aa15_c600/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_3moSSTanomalies_CESM-LE_40members_1920-2079.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d479_aa15_c600.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d479_aa15_c600&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d479_aa15_c600"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0458_771b_978c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0458_771b_978c.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific 3moSSTanomalies CESM-LE 40members 1920-2079 [time][ens][nlat][nlon], 1918-present", "Top Dataset, postprocessed, IndoPacific 3moSSTanomalies CESM-LE 40members 1920-2079\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][nlat][nlon]):\nanomalies (anomalies of SST 3-month running mean)\nanoms_smooth (smoothed anomalies of SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0458_771b_978c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_3moSSTanomalies_CESM-LE_40members_1920-2079.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0458_771b_978c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0458_771b_978c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0458_771b_978c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8faa_fefa_a174", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8faa_fefa_a174.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2039 12moRunMeans [nlat][nlon]", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nlat][nlon]):\ntlat (array of t-grid latitudes, degrees_north)\ntlon (array of t-grid longitudes, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8faa_fefa_a174/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8faa_fefa_a174.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8faa_fefa_a174&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8faa_fefa_a174"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a05_fa35_66bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a05_fa35_66bb.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2039 12moRunMeans [time], 1918-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a05_fa35_66bb/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a05_fa35_66bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a05_fa35_66bb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6a05_fa35_66bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ed1_b386_9438", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ed1_b386_9438.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2039 12moRunMeans [time][ens][nlat][nlon], 1918-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][nlat][nlon]):\nSST (SST 12-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ed1_b386_9438/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ed1_b386_9438.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ed1_b386_9438&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6ed1_b386_9438"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15bf_53e1_d1b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15bf_53e1_d1b1.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2039 3moRunMeans [nlat][nlon]", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nlat][nlon]):\ntlat (array of t-grid latitudes, degrees_north)\ntlon (array of t-grid longitudes, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_15bf_53e1_d1b1/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_15bf_53e1_d1b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_15bf_53e1_d1b1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_15bf_53e1_d1b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d20c_b1d5_0cf4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d20c_b1d5_0cf4.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2039 3moRunMeans [time], 1918-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d20c_b1d5_0cf4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d20c_b1d5_0cf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d20c_b1d5_0cf4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d20c_b1d5_0cf4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a014_0ea7_670f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a014_0ea7_670f.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2039 3moRunMeans [time][ens][nlat][nlon], 1918-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][nlat][nlon]):\nSST (SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a014_0ea7_670f/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a014_0ea7_670f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a014_0ea7_670f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a014_0ea7_670f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a038_f634_3ea9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a038_f634_3ea9.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2079 3moRunMeans [nlat][nlon]", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nlat][nlon]):\ntlat (array of t-grid latitudes, degrees_north)\ntlon (array of t-grid longitudes, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a038_f634_3ea9/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a038_f634_3ea9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a038_f634_3ea9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a038_f634_3ea9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63dd_d480_d707", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63dd_d480_d707.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2079 3moRunMeans [time], 1918-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_63dd_d480_d707/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_63dd_d480_d707.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_63dd_d480_d707&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_63dd_d480_d707"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b500_ec93_86bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b500_ec93_86bc.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2079 3moRunMeans [time][ens][nlat][nlon], 1918-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][nlat][nlon]):\nSST (SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b500_ec93_86bc/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b500_ec93_86bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b500_ec93_86bc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b500_ec93_86bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3642_2f29_9a2c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3642_2f29_9a2c.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1970-2039 12moRunMeans [nlat][nlon]", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nlat][nlon]):\ntlat (array of t-grid latitudes, degrees_north)\ntlon (array of t-grid longitudes, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3642_2f29_9a2c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1970-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3642_2f29_9a2c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3642_2f29_9a2c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3642_2f29_9a2c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc26_d71f_c89a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc26_d71f_c89a.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1970-2039 12moRunMeans [time], 1968-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bc26_d71f_c89a/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1970-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bc26_d71f_c89a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bc26_d71f_c89a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bc26_d71f_c89a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a293_d3ea_81e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a293_d3ea_81e8.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1970-2039 3moRunMeans [nlat][nlon]", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nlat][nlon]):\ntlat (array of t-grid latitudes, degrees_north)\ntlon (array of t-grid longitudes, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a293_d3ea_81e8/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a293_d3ea_81e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a293_d3ea_81e8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a293_d3ea_81e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b18_d378_ccea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b18_d378_ccea.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1970-2039 3moRunMeans [time], 1968-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b18_d378_ccea/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b18_d378_ccea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b18_d378_ccea&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7b18_d378_ccea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a6ed_991c_493c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a6ed_991c_493c.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1970-2039 3moRunMeans [time][ens][nlat][nlon], 1968-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][nlat][nlon]):\nSST (SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a6ed_991c_493c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a6ed_991c_493c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a6ed_991c_493c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a6ed_991c_493c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97bf_a1cb_1abe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97bf_a1cb_1abe.graph", "", "", "public", "Top Dataset, postprocessed, NorthAmerica 12moPrecipitationAnoms CESM-LE 1950-2069 20yrAR1ENSOmod [period][lat][lon]", "Top Dataset, postprocessed, NorthAmerica 12moPrecipitationAnoms CESM-LE 1950-2069 20yrAR1ENSOmod\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [period][latitude][longitude]):\nB_LVPY\nB_PC1\nRMSE\nNRMSE\nCORRA\nCORRM\nRSQ\nPVAL_LVPY\nPVAL_PC1\nSIG2NOISE (SIG2 NOISE)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_97bf_a1cb_1abe_fgdc.xml", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_97bf_a1cb_1abe/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/NorthAmerica_12moPrecipitationAnoms_CESM-LE_1950-2069_20yrAR1ENSOmod.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_97bf_a1cb_1abe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_97bf_a1cb_1abe&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_97bf_a1cb_1abe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8125_5785_b984", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8125_5785_b984.graph", "", "", "public", "Top Dataset, postprocessed, NorthAmerica 12moPrecipitationAnoms CESM-LE 1950-2069 20yrAR1IPOmod [period][lat][lon]", "Top Dataset, postprocessed, NorthAmerica 12moPrecipitationAnoms CESM-LE 1950-2069 20yrAR1IPOmod\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [period][latitude][longitude]):\nB_LVPY\nB_PC1\nRMSE\nNRMSE\nCORRA\nCORRM\nRSQ\nPVAL_LVPY\nPVAL_PC1\nSIG2NOISE (SIG2 NOISE)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8125_5785_b984_fgdc.xml", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8125_5785_b984/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/NorthAmerica_12moPrecipitationAnoms_CESM-LE_1950-2069_20yrAR1IPOmod.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8125_5785_b984.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8125_5785_b984&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8125_5785_b984"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c64_056e_aa0a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c64_056e_aa0a.graph", "", "", "public", "Top Dataset, postprocessed, NorthAmerica 12moPrecipitationAnoms CESM-LE 1950-2069 20yrAR1mod [period][lat][lon]", "Top Dataset, postprocessed, NorthAmerica 12moPrecipitationAnoms CESM-LE 1950-2069 20yrAR1mod\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [period][latitude][longitude]):\nB_LVPY\nRMSE\nNRMSE\nCORRA\nCORRM\nRSQ\nPVAL_LVPY\nSIG2NOISE (SIG2 NOISE)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c64_056e_aa0a_fgdc.xml", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c64_056e_aa0a/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/NorthAmerica_12moPrecipitationAnoms_CESM-LE_1950-2069_20yrAR1mod.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c64_056e_aa0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c64_056e_aa0a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0c64_056e_aa0a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48b1_23db_3536", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48b1_23db_3536.graph", "", "", "public", "Top Dataset, postprocessed, NorthAmerica 12moPrecipitationAnoms CESM-LE 1950-2069 20yrAR1PDOmod [period][lat][lon]", "Top Dataset, postprocessed, NorthAmerica 12moPrecipitationAnoms CESM-LE 1950-2069 20yrAR1PDOmod\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [period][latitude][longitude]):\nB_LVPY\nB_PC1\nRMSE\nNRMSE\nCORRA\nCORRM\nRSQ\nPVAL_LVPY\nPVAL_PC1\nSIG2NOISE (SIG2 NOISE)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_48b1_23db_3536_fgdc.xml", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_48b1_23db_3536/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/NorthAmerica_12moPrecipitationAnoms_CESM-LE_1950-2069_20yrAR1PDOmod.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_48b1_23db_3536.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_48b1_23db_3536&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_48b1_23db_3536"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fec7_58ba_00ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fec7_58ba_00ba.graph", "", "", "public", "Top Dataset, postprocessed, NorthAmerica PrecipitationAnoms CESM-LE 1950-2069 20yrEnsembleEVECS [eofn][period]", "Top Dataset, postprocessed, NorthAmerica PrecipitationAnoms CESM-LE 1950-2069 20yrEnsembleEVECS\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eofn][period]):\neval (eigenvalues)\npcvar (variance explained (%))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fec7_58ba_00ba/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/NorthAmerica_PrecipitationAnoms_CESM-LE_1950-2069_20yrEnsembleEVECS.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fec7_58ba_00ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fec7_58ba_00ba&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fec7_58ba_00ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35b8_e8a4_423f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35b8_e8a4_423f.graph", "", "", "public", "Top Dataset, postprocessed, NorthAmerica PrecipitationAnoms CESM-LE 1950-2069 20yrEnsembleEVECS [eofn][period][lat][lon]", "Top Dataset, postprocessed, NorthAmerica PrecipitationAnoms CESM-LE 1950-2069 20yrEnsembleEVECS\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eofn][period][latitude][longitude]):\nevec (eigenvector patterns)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_35b8_e8a4_423f_fgdc.xml", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_35b8_e8a4_423f/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/NorthAmerica_PrecipitationAnoms_CESM-LE_1950-2069_20yrEnsembleEVECS.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_35b8_e8a4_423f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_35b8_e8a4_423f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_35b8_e8a4_423f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f06_c5f6_650a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f06_c5f6_650a.graph", "", "", "public", "Top Dataset, postprocessed, NorthAmerica PrecipitationAnoms CESM-LE 40members 1950-2069 [time]", "Top Dataset, postprocessed, NorthAmerica PrecipitationAnoms CESM-LE 40members 1950-2069\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5f06_c5f6_650a/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/NorthAmerica_PrecipitationAnoms_CESM-LE_40members_1950-2069.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5f06_c5f6_650a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5f06_c5f6_650a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5f06_c5f6_650a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e69d_5656_0ed4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e69d_5656_0ed4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e69d_5656_0ed4/request", "", "public", "Top Dataset, postprocessed, NorthAmerica PrecipitationAnoms CESM-LE 40members 1950-2069 [time][ens][lat][lon]", "Top Dataset, postprocessed, NorthAmerica PrecipitationAnoms CESM-LE 40members 1950-2069\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][latitude][longitude]):\nanomalies (precipitation anomalies, mm/month)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e69d_5656_0ed4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e69d_5656_0ed4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e69d_5656_0ed4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/NorthAmerica_PrecipitationAnoms_CESM-LE_40members_1950-2069.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e69d_5656_0ed4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e69d_5656_0ed4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e69d_5656_0ed4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10d9_3422_4cc4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10d9_3422_4cc4.graph", "", "", "public", "Top Dataset, postprocessed, NorthAmericaLandOnly 12moPrecipitationAnoms CESM-LE 1950-2069 120yrEnsembleEVECS [evn]", "Top Dataset, postprocessed, NorthAmericaLandOnly 12moPrecipitationAnoms CESM-LE 1950-2069 120yrEnsembleEVECS\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [evn]):\neval (eigenvalues)\npcvar (variance explained (%))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_10d9_3422_4cc4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/NorthAmericaLandOnly_12moPrecipitationAnoms_CESM-LE_1950-2069_120yrEnsembleEVECS.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_10d9_3422_4cc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_10d9_3422_4cc4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_10d9_3422_4cc4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b2e_10e1_54a5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b2e_10e1_54a5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3b2e_10e1_54a5/request", "", "public", "Top Dataset, postprocessed, NorthAmericaLandOnly 12moPrecipitationAnoms CESM-LE 1950-2069 120yrEnsembleEVECS [evn][lat][lon]", "Top Dataset, postprocessed, NorthAmericaLandOnly 12moPrecipitationAnoms CESM-LE 1950-2069 120yrEnsembleEVECS\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [evn][latitude][longitude]):\nevec (EOF: precipitation anomalies)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3b2e_10e1_54a5_fgdc.xml", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3b2e_10e1_54a5/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/NorthAmericaLandOnly_12moPrecipitationAnoms_CESM-LE_1950-2069_120yrEnsembleEVECS.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3b2e_10e1_54a5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3b2e_10e1_54a5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3b2e_10e1_54a5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_46c6_738b_ccc2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_46c6_738b_ccc2.graph", "", "", "public", "Top Dataset, postprocessed, NorthAmericaLandOnly 12moPrecipitationAnoms CESM-LE 1950-2069 20yrEnsembleEVECS [eofn][period]", "Top Dataset, postprocessed, NorthAmericaLandOnly 12moPrecipitationAnoms CESM-LE 1950-2069 20yrEnsembleEVECS\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eofn][period]):\neval (eigenvalues)\npcvar (variance explained (%))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_46c6_738b_ccc2/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/NorthAmericaLandOnly_12moPrecipitationAnoms_CESM-LE_1950-2069_20yrEnsembleEVECS.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_46c6_738b_ccc2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_46c6_738b_ccc2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_46c6_738b_ccc2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20b8_37c0_14dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20b8_37c0_14dd.graph", "", "", "public", "Top Dataset, postprocessed, NorthAmericaLandOnly 12moPrecipitationAnoms CESM-LE 1950-2069 20yrEnsembleEVECS [eofn][period][lat][lon]", "Top Dataset, postprocessed, NorthAmericaLandOnly 12moPrecipitationAnoms CESM-LE 1950-2069 20yrEnsembleEVECS\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eofn][period][latitude][longitude]):\nevec (eigenvector patterns)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_20b8_37c0_14dd_fgdc.xml", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_20b8_37c0_14dd/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/NorthAmericaLandOnly_12moPrecipitationAnoms_CESM-LE_1950-2069_20yrEnsembleEVECS.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_20b8_37c0_14dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_20b8_37c0_14dd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_20b8_37c0_14dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dacc_2bc2_86bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dacc_2bc2_86bd.graph", "", "", "public", "Top Dataset, postprocessed, NorthAmericaLandOnly 12moPrecipitationAnoms CESM-LE 40members 1950-2069 [time]", "Top Dataset, postprocessed, NorthAmericaLandOnly 12moPrecipitationAnoms CESM-LE 40members 1950-2069\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dacc_2bc2_86bd/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/NorthAmericaLandOnly_12moPrecipitationAnoms_CESM-LE_40members_1950-2069.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dacc_2bc2_86bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dacc_2bc2_86bd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_dacc_2bc2_86bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a191_e8e6_4b96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a191_e8e6_4b96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a191_e8e6_4b96/request", "", "public", "Top Dataset, postprocessed, NorthAmericaLandOnly 12moPrecipitationAnoms CESM-LE 40members 1950-2069 [time][ens][lat][lon]", "Top Dataset, postprocessed, NorthAmericaLandOnly 12moPrecipitationAnoms CESM-LE 40members 1950-2069\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][latitude][longitude]):\nanomalies (precipitation anomalies, mm/month)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a191_e8e6_4b96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a191_e8e6_4b96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a191_e8e6_4b96/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/NorthAmericaLandOnly_12moPrecipitationAnoms_CESM-LE_40members_1950-2069.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a191_e8e6_4b96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a191_e8e6_4b96&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a191_e8e6_4b96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e77_a2e2_5e47", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e77_a2e2_5e47.graph", "", "", "public", "Top Dataset, postprocessed, NorthAmericaLandOnly 3moPrecipitationAnoms CESM-LE 1950-2069 120yrEnsembleEVECS [evn]", "Top Dataset, postprocessed, NorthAmericaLandOnly 3moPrecipitationAnoms CESM-LE 1950-2069 120yrEnsembleEVECS\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [evn]):\neval (eigenvalues)\npcvar (variance explained (%))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e77_a2e2_5e47/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/NorthAmericaLandOnly_3moPrecipitationAnoms_CESM-LE_1950-2069_120yrEnsembleEVECS.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e77_a2e2_5e47.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e77_a2e2_5e47&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0e77_a2e2_5e47"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0539_7563_bcaa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0539_7563_bcaa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0539_7563_bcaa/request", "", "public", "Top Dataset, postprocessed, NorthAmericaLandOnly 3moPrecipitationAnoms CESM-LE 1950-2069 120yrEnsembleEVECS [evn][lat][lon]", "Top Dataset, postprocessed, NorthAmericaLandOnly 3moPrecipitationAnoms CESM-LE 1950-2069 120yrEnsembleEVECS\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [evn][latitude][longitude]):\nevec (EOF: precipitation anomalies)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0539_7563_bcaa_fgdc.xml", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0539_7563_bcaa/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/NorthAmericaLandOnly_3moPrecipitationAnoms_CESM-LE_1950-2069_120yrEnsembleEVECS.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0539_7563_bcaa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0539_7563_bcaa&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0539_7563_bcaa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b89_b253_5b93", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b89_b253_5b93.graph", "", "", "public", "Top Dataset, postprocessed, NorthAmericaLandOnly 3moPrecipitationAnoms CESM-LE 1950-2069 20yrEnsembleEVECS [eofn][period]", "Top Dataset, postprocessed, NorthAmericaLandOnly 3moPrecipitationAnoms CESM-LE 1950-2069 20yrEnsembleEVECS\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eofn][period]):\neval (eigenvalues)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b89_b253_5b93/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/NorthAmericaLandOnly_3moPrecipitationAnoms_CESM-LE_1950-2069_20yrEnsembleEVECS.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b89_b253_5b93.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b89_b253_5b93&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7b89_b253_5b93"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a12d_5655_e138", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a12d_5655_e138.graph", "", "", "public", "Top Dataset, postprocessed, NorthAmericaLandOnly 3moPrecipitationAnoms CESM-LE 1950-2069 20yrEnsembleEVECS [eofn][period][lat][lon]", "Top Dataset, postprocessed, NorthAmericaLandOnly 3moPrecipitationAnoms CESM-LE 1950-2069 20yrEnsembleEVECS\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eofn][period][latitude][longitude]):\nevec (eigenvector patterns)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a12d_5655_e138_fgdc.xml", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a12d_5655_e138/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/NorthAmericaLandOnly_3moPrecipitationAnoms_CESM-LE_1950-2069_20yrEnsembleEVECS.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a12d_5655_e138.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a12d_5655_e138&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a12d_5655_e138"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1877_3a71_a50d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1877_3a71_a50d.graph", "", "", "public", "Top Dataset, postprocessed, NorthAmericaLandOnly 3moPrecipitationAnoms CESM-LE 1950-2069 20yrEnsembleEVECS [ncl4][ncl5]", "Top Dataset, postprocessed, NorthAmericaLandOnly 3moPrecipitationAnoms CESM-LE 1950-2069 20yrEnsembleEVECS\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ncl4][ncl5]):\npcvar (variance explained (%))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1877_3a71_a50d/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/NorthAmericaLandOnly_3moPrecipitationAnoms_CESM-LE_1950-2069_20yrEnsembleEVECS.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1877_3a71_a50d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1877_3a71_a50d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1877_3a71_a50d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c760_e9ab_0f87", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c760_e9ab_0f87.graph", "", "", "public", "Top Dataset, postprocessed, NorthAmericaLandOnly 3moPrecipitationAnoms CESM-LE 40members 1950-2069 [time]", "Top Dataset, postprocessed, NorthAmericaLandOnly 3moPrecipitationAnoms CESM-LE 40members 1950-2069\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c760_e9ab_0f87/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/NorthAmericaLandOnly_3moPrecipitationAnoms_CESM-LE_40members_1950-2069.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c760_e9ab_0f87.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c760_e9ab_0f87&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c760_e9ab_0f87"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e80d_3604_7024", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e80d_3604_7024.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e80d_3604_7024/request", "", "public", "Top Dataset, postprocessed, NorthAmericaLandOnly 3moPrecipitationAnoms CESM-LE 40members 1950-2069 [time][ens][lat][lon]", "Top Dataset, postprocessed, NorthAmericaLandOnly 3moPrecipitationAnoms CESM-LE 40members 1950-2069\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][latitude][longitude]):\nanomalies (precipitation anomalies, mm/month)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e80d_3604_7024_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e80d_3604_7024_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e80d_3604_7024/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/NorthAmericaLandOnly_3moPrecipitationAnoms_CESM-LE_40members_1950-2069.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e80d_3604_7024.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e80d_3604_7024&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e80d_3604_7024"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfec_b9ef_d1b4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfec_b9ef_d1b4.graph", "", "", "public", "Top Dataset, postprocessed, NorthAmericaLandOnly PrecipitationAnoms CESM-LE 40members 1950-2069 [time]", "Top Dataset, postprocessed, NorthAmericaLandOnly PrecipitationAnoms CESM-LE 40members 1950-2069\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bfec_b9ef_d1b4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/NorthAmericaLandOnly_PrecipitationAnoms_CESM-LE_40members_1950-2069.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bfec_b9ef_d1b4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bfec_b9ef_d1b4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bfec_b9ef_d1b4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92bf_4030_ce3c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92bf_4030_ce3c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_92bf_4030_ce3c/request", "", "public", "Top Dataset, postprocessed, NorthAmericaLandOnly PrecipitationAnoms CESM-LE 40members 1950-2069 [time][ens][lat][lon]", "Top Dataset, postprocessed, NorthAmericaLandOnly PrecipitationAnoms CESM-LE 40members 1950-2069\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][latitude][longitude]):\nanomalies (precipitation anomalies, mm/month)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_92bf_4030_ce3c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_92bf_4030_ce3c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_92bf_4030_ce3c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/NorthAmericaLandOnly_PrecipitationAnoms_CESM-LE_40members_1950-2069.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_92bf_4030_ce3c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_92bf_4030_ce3c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_92bf_4030_ce3c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b001_72f2_63c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b001_72f2_63c5.graph", "", "", "public", "Top Dataset, postprocessed, PRECT CESM-LE 40members 1920-2039 12moRunMeans [time]", "Top Dataset, postprocessed, PRECT CESM-LE 40members 1920-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b001_72f2_63c5/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/PRECT_CESM-LE_40members_1920-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b001_72f2_63c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b001_72f2_63c5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b001_72f2_63c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec63_85bd_095c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec63_85bd_095c.graph", "", "", "public", "Top Dataset, postprocessed, PRECT CESM-LE 40members 1920-2039 12moRunMeans [time][ens][lat][lon]", "Top Dataset, postprocessed, PRECT CESM-LE 40members 1920-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][latitude][longitude]):\nPRECT (PRECT 12-month running mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ec63_85bd_095c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ec63_85bd_095c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ec63_85bd_095c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/PRECT_CESM-LE_40members_1920-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ec63_85bd_095c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ec63_85bd_095c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ec63_85bd_095c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e394_96fa_5c43", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e394_96fa_5c43.graph", "", "", "public", "Top Dataset, postprocessed, PRECT CESM-LE 40members 1920-2039 3moRunMeans [time]", "Top Dataset, postprocessed, PRECT CESM-LE 40members 1920-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e394_96fa_5c43/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/PRECT_CESM-LE_40members_1920-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e394_96fa_5c43.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e394_96fa_5c43&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e394_96fa_5c43"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce96_05e0_bec5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce96_05e0_bec5.graph", "", "", "public", "Top Dataset, postprocessed, PRECT CESM-LE 40members 1920-2039 3moRunMeans [time][ens][lat][lon]", "Top Dataset, postprocessed, PRECT CESM-LE 40members 1920-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][latitude][longitude]):\nPRECT (PRECT 3-month running mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ce96_05e0_bec5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ce96_05e0_bec5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ce96_05e0_bec5/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/PRECT_CESM-LE_40members_1920-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ce96_05e0_bec5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ce96_05e0_bec5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ce96_05e0_bec5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6af7_9202_6310", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6af7_9202_6310.graph", "", "", "public", "Top Dataset, postprocessed, PRECT CESM-LE 40members 1920-2079 12moRunMeans [time]", "Top Dataset, postprocessed, PRECT CESM-LE 40members 1920-2079 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6af7_9202_6310/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/PRECT_CESM-LE_40members_1920-2079_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6af7_9202_6310.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6af7_9202_6310&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6af7_9202_6310"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d53_5327_03ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d53_5327_03ca.graph", "", "", "public", "Top Dataset, postprocessed, PRECT CESM-LE 40members 1920-2079 12moRunMeans [time][ens][lat][lon]", "Top Dataset, postprocessed, PRECT CESM-LE 40members 1920-2079 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][latitude][longitude]):\nPRECT (PRECT 12-month running mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2d53_5327_03ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2d53_5327_03ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d53_5327_03ca/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/PRECT_CESM-LE_40members_1920-2079_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d53_5327_03ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d53_5327_03ca&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2d53_5327_03ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d852_abf5_235d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d852_abf5_235d.graph", "", "", "public", "Top Dataset, postprocessed, PRECT CESM-LE 40members 1920-2079 3moRunMeans [time]", "Top Dataset, postprocessed, PRECT CESM-LE 40members 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d852_abf5_235d/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/PRECT_CESM-LE_40members_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d852_abf5_235d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d852_abf5_235d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d852_abf5_235d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8312_f49d_72d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8312_f49d_72d7.graph", "", "", "public", "Top Dataset, postprocessed, PRECT CESM-LE 40members 1920-2079 3moRunMeans [time][ens][lat][lon]", "Top Dataset, postprocessed, PRECT CESM-LE 40members 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][latitude][longitude]):\nPRECT (PRECT 3-month running mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8312_f49d_72d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8312_f49d_72d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8312_f49d_72d7/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/PRECT_CESM-LE_40members_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8312_f49d_72d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8312_f49d_72d7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8312_f49d_72d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff2c_db2d_2a45", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff2c_db2d_2a45.graph", "", "", "public", "Top Dataset, postprocessed, PRECT CESM-LE 40members 1970-2039 12moRunMeans [time]", "Top Dataset, postprocessed, PRECT CESM-LE 40members 1970-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff2c_db2d_2a45/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/PRECT_CESM-LE_40members_1970-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff2c_db2d_2a45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff2c_db2d_2a45&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ff2c_db2d_2a45"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_29df_fbbd_a088", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_29df_fbbd_a088.graph", "", "", "public", "Top Dataset, postprocessed, PRECT CESM-LE 40members 1970-2039 12moRunMeans [time][ens][lat][lon]", "Top Dataset, postprocessed, PRECT CESM-LE 40members 1970-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][latitude][longitude]):\nPRECT (PRECT 12-month running mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_29df_fbbd_a088_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_29df_fbbd_a088_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_29df_fbbd_a088/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/PRECT_CESM-LE_40members_1970-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_29df_fbbd_a088.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_29df_fbbd_a088&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_29df_fbbd_a088"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78c4_6da3_f16a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78c4_6da3_f16a.graph", "", "", "public", "Top Dataset, postprocessed, PRECT CESM-LE 40members 1970-2039 3moRunMeans [time]", "Top Dataset, postprocessed, PRECT CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_78c4_6da3_f16a/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/PRECT_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_78c4_6da3_f16a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_78c4_6da3_f16a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_78c4_6da3_f16a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_46f5_686a_8d92", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_46f5_686a_8d92.graph", "", "", "public", "Top Dataset, postprocessed, PRECT CESM-LE 40members 1970-2039 3moRunMeans [time][ens][lat][lon]", "Top Dataset, postprocessed, PRECT CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][latitude][longitude]):\nPRECT (PRECT 3-month running mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_46f5_686a_8d92_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_46f5_686a_8d92_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_46f5_686a_8d92/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/PRECT_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_46f5_686a_8d92.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_46f5_686a_8d92&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_46f5_686a_8d92"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f68_06b5_6b3d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f68_06b5_6b3d.graph", "", "", "public", "Top Dataset, postprocessed, TREFHT CESM-LE 40members 1920-2039 12moRunMeans [time]", "Top Dataset, postprocessed, TREFHT CESM-LE 40members 1920-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f68_06b5_6b3d/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/TREFHT_CESM-LE_40members_1920-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f68_06b5_6b3d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f68_06b5_6b3d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1f68_06b5_6b3d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bed5_20eb_75cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bed5_20eb_75cd.graph", "", "", "public", "Top Dataset, postprocessed, TREFHT CESM-LE 40members 1920-2039 12moRunMeans [time][ens][lat][lon]", "Top Dataset, postprocessed, TREFHT CESM-LE 40members 1920-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][latitude][longitude]):\nTREFHT (TREFHT 12-month running mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bed5_20eb_75cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bed5_20eb_75cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bed5_20eb_75cd/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/TREFHT_CESM-LE_40members_1920-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bed5_20eb_75cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bed5_20eb_75cd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bed5_20eb_75cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d78d_933e_202d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d78d_933e_202d.graph", "", "", "public", "Top Dataset, postprocessed, TREFHT CESM-LE 40members 1920-2039 3moRunMeans [time]", "Top Dataset, postprocessed, TREFHT CESM-LE 40members 1920-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d78d_933e_202d/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/TREFHT_CESM-LE_40members_1920-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d78d_933e_202d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d78d_933e_202d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d78d_933e_202d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92c8_ed74_edbe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92c8_ed74_edbe.graph", "", "", "public", "Top Dataset, postprocessed, TREFHT CESM-LE 40members 1920-2039 3moRunMeans [time][ens][lat][lon]", "Top Dataset, postprocessed, TREFHT CESM-LE 40members 1920-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][latitude][longitude]):\nTREFHT (TREFHT 3-month running mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_92c8_ed74_edbe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_92c8_ed74_edbe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_92c8_ed74_edbe/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/TREFHT_CESM-LE_40members_1920-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_92c8_ed74_edbe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_92c8_ed74_edbe&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_92c8_ed74_edbe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a00b_814e_1401", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a00b_814e_1401.graph", "", "", "public", "Top Dataset, postprocessed, TREFHT CESM-LE 40members 1920-2079 3moRunMeans [time]", "Top Dataset, postprocessed, TREFHT CESM-LE 40members 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a00b_814e_1401/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/TREFHT_CESM-LE_40members_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a00b_814e_1401.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a00b_814e_1401&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a00b_814e_1401"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9002_a4e9_52b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9002_a4e9_52b5.graph", "", "", "public", "Top Dataset, postprocessed, TREFHT CESM-LE 40members 1920-2079 3moRunMeans [time][ens][lat][lon]", "Top Dataset, postprocessed, TREFHT CESM-LE 40members 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][latitude][longitude]):\nTREFHT (TREFHT 3-month running mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9002_a4e9_52b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9002_a4e9_52b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9002_a4e9_52b5/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/TREFHT_CESM-LE_40members_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9002_a4e9_52b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9002_a4e9_52b5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9002_a4e9_52b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e28_7495_c72f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e28_7495_c72f.graph", "", "", "public", "Top Dataset, postprocessed, TREFHT CESM-LE 40members 1970-2039 12moRunMeans [time]", "Top Dataset, postprocessed, TREFHT CESM-LE 40members 1970-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e28_7495_c72f/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/TREFHT_CESM-LE_40members_1970-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e28_7495_c72f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e28_7495_c72f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7e28_7495_c72f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c63e_bdd3_96f4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c63e_bdd3_96f4.graph", "", "", "public", "Top Dataset, postprocessed, TREFHT CESM-LE 40members 1970-2039 12moRunMeans [time][ens][lat][lon]", "Top Dataset, postprocessed, TREFHT CESM-LE 40members 1970-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][latitude][longitude]):\nTREFHT (TREFHT 12-month running mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c63e_bdd3_96f4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c63e_bdd3_96f4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c63e_bdd3_96f4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/TREFHT_CESM-LE_40members_1970-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c63e_bdd3_96f4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c63e_bdd3_96f4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c63e_bdd3_96f4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92e6_bd35_ccae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92e6_bd35_ccae.graph", "", "", "public", "Top Dataset, postprocessed, TREFHT CESM-LE 40members 1970-2039 3moRunMeans [time]", "Top Dataset, postprocessed, TREFHT CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_92e6_bd35_ccae/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/TREFHT_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_92e6_bd35_ccae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_92e6_bd35_ccae&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_92e6_bd35_ccae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9cd_d9b7_789a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9cd_d9b7_789a.graph", "", "", "public", "Top Dataset, postprocessed, TREFHT CESM-LE 40members 1970-2039 3moRunMeans [time][ens][lat][lon]", "Top Dataset, postprocessed, TREFHT CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][latitude][longitude]):\nTREFHT (TREFHT 3-month running mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9cd_d9b7_789a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9cd_d9b7_789a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9cd_d9b7_789a/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/atm/postprocessed/TREFHT_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9cd_d9b7_789a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9cd_d9b7_789a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a9cd_d9b7_789a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3396_b24d_adc1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3396_b24d_adc1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3396_b24d_adc1/request", "", "public", "Top Dataset, pressure sprd, air.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3396_b24d_adc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3396_b24d_adc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3396_b24d_adc1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3396_b24d_adc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3396_b24d_adc1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3396_b24d_adc1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fcd_63e1_3fc4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fcd_63e1_3fc4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8fcd_63e1_3fc4/request", "", "public", "Top Dataset, pressure sprd, air.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8fcd_63e1_3fc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8fcd_63e1_3fc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8fcd_63e1_3fc4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8fcd_63e1_3fc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8fcd_63e1_3fc4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8fcd_63e1_3fc4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7bca_2a95_830f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7bca_2a95_830f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7bca_2a95_830f/request", "", "public", "Top Dataset, pressure sprd, air.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7bca_2a95_830f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7bca_2a95_830f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7bca_2a95_830f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7bca_2a95_830f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7bca_2a95_830f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7bca_2a95_830f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b3b_4d47_4bcc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b3b_4d47_4bcc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0b3b_4d47_4bcc/request", "", "public", "Top Dataset, pressure sprd, air.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0b3b_4d47_4bcc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0b3b_4d47_4bcc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0b3b_4d47_4bcc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0b3b_4d47_4bcc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0b3b_4d47_4bcc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0b3b_4d47_4bcc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf7a_7476_cac0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf7a_7476_cac0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf7a_7476_cac0/request", "", "public", "Top Dataset, pressure sprd, hgt.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Long Term Mean 6-hourly Geopotential Heights Spread on Pressure Levels, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf7a_7476_cac0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf7a_7476_cac0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf7a_7476_cac0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf7a_7476_cac0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf7a_7476_cac0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_cf7a_7476_cac0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3591_957b_daa0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3591_957b_daa0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3591_957b_daa0/request", "", "public", "Top Dataset, pressure sprd, hgt.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Daily Long Term Mean Geopotential Heights Spread on Pressure Levels, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3591_957b_daa0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3591_957b_daa0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3591_957b_daa0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3591_957b_daa0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3591_957b_daa0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3591_957b_daa0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f473_4fc1_fa70", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f473_4fc1_fa70.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f473_4fc1_fa70/request", "", "public", "Top Dataset, pressure sprd, hgt.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Long Term Mean Monthly Geopotential Heights Spread on Pressure Levels, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f473_4fc1_fa70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f473_4fc1_fa70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f473_4fc1_fa70/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f473_4fc1_fa70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f473_4fc1_fa70&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f473_4fc1_fa70"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a833_1687_4875", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a833_1687_4875.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a833_1687_4875/request", "", "public", "Top Dataset, pressure sprd, hgt.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Monthly Long Term Geopotential Heights Spread on Pressure Levels, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a833_1687_4875_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a833_1687_4875_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a833_1687_4875/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a833_1687_4875.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a833_1687_4875&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a833_1687_4875"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3958_ea12_ddc9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3958_ea12_ddc9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3958_ea12_ddc9/request", "", "public", "Top Dataset, pressure sprd, omega.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Long Term Mean 6-hourly Omega Spread on Pressure Levels, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3958_ea12_ddc9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3958_ea12_ddc9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3958_ea12_ddc9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3958_ea12_ddc9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3958_ea12_ddc9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3958_ea12_ddc9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06fa_1ff0_cc3c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06fa_1ff0_cc3c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_06fa_1ff0_cc3c/request", "", "public", "Top Dataset, pressure sprd, omega.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Daily Long Term Mean Omega Spread on Pressure Levels, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_06fa_1ff0_cc3c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_06fa_1ff0_cc3c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_06fa_1ff0_cc3c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_06fa_1ff0_cc3c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_06fa_1ff0_cc3c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_06fa_1ff0_cc3c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d4c_9d4b_1dea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d4c_9d4b_1dea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d4c_9d4b_1dea/request", "", "public", "Top Dataset, pressure sprd, omega.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Daily Long Term Mean Omega Spread on Pressure Levels, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d4c_9d4b_1dea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d4c_9d4b_1dea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d4c_9d4b_1dea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d4c_9d4b_1dea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d4c_9d4b_1dea&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6d4c_9d4b_1dea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e8d_5604_4614", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e8d_5604_4614.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4e8d_5604_4614/request", "", "public", "Top Dataset, pressure sprd, omega.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Long Term Mean Monthly Omega Spread on Pressure Levels, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4e8d_5604_4614_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4e8d_5604_4614_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4e8d_5604_4614/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4e8d_5604_4614.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4e8d_5604_4614&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4e8d_5604_4614"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ceea_2174_35c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ceea_2174_35c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ceea_2174_35c4/request", "", "public", "Top Dataset, pressure sprd, omega.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Monthly Long Term Omega Spread on Pressure Levels, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ceea_2174_35c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ceea_2174_35c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ceea_2174_35c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ceea_2174_35c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ceea_2174_35c4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ceea_2174_35c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ff8_b258_f62f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ff8_b258_f62f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ff8_b258_f62f/request", "", "public", "Top Dataset, pressure sprd, rhum.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Long Term Mean 6-hourly Relative Humidity Spread on Pressure Levels, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ff8_b258_f62f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ff8_b258_f62f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ff8_b258_f62f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ff8_b258_f62f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ff8_b258_f62f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3ff8_b258_f62f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1674_72b4_60ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1674_72b4_60ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1674_72b4_60ce/request", "", "public", "Top Dataset, pressure sprd, rhum.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Daily Long Term Mean Relative Humidity Spread on Pressure Levels, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1674_72b4_60ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1674_72b4_60ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1674_72b4_60ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1674_72b4_60ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1674_72b4_60ce&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1674_72b4_60ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_16ea_5cb1_15fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_16ea_5cb1_15fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_16ea_5cb1_15fd/request", "", "public", "Top Dataset, pressure sprd, rhum.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Long Term Mean Monthly Relative Humidity Spread on Pressure Levels, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_16ea_5cb1_15fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_16ea_5cb1_15fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_16ea_5cb1_15fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_16ea_5cb1_15fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_16ea_5cb1_15fd&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_16ea_5cb1_15fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e060_71fc_945e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e060_71fc_945e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e060_71fc_945e/request", "", "public", "Top Dataset, pressure sprd, rhum.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Monthly Long Term Relative Humidity Spread on Pressure Levels, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e060_71fc_945e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e060_71fc_945e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e060_71fc_945e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e060_71fc_945e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e060_71fc_945e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e060_71fc_945e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3269_b1e8_401e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3269_b1e8_401e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3269_b1e8_401e/request", "", "public", "Top Dataset, pressure sprd, shum.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Long Term Mean 6-hourly Specific Humidity Spread on Pressure Levels, kg/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3269_b1e8_401e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3269_b1e8_401e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3269_b1e8_401e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3269_b1e8_401e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3269_b1e8_401e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3269_b1e8_401e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db59_1330_dde8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db59_1330_dde8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db59_1330_dde8/request", "", "public", "Top Dataset, pressure sprd, shum.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Daily Long Term Mean Specific Humidity Spread on Pressure Levels, kg/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db59_1330_dde8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db59_1330_dde8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db59_1330_dde8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db59_1330_dde8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db59_1330_dde8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_db59_1330_dde8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c724_c2d1_ff45", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c724_c2d1_ff45.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c724_c2d1_ff45/request", "", "public", "Top Dataset, pressure sprd, shum.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Long Term Mean Monthly Specific Humidity Spread on Pressure Levels, kg/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c724_c2d1_ff45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c724_c2d1_ff45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c724_c2d1_ff45/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c724_c2d1_ff45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c724_c2d1_ff45&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c724_c2d1_ff45"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9424_2dd5_2f9a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9424_2dd5_2f9a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9424_2dd5_2f9a/request", "", "public", "Top Dataset, pressure sprd, shum.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Monthly Long Term Specific Humidity Spread on Pressure Levels, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9424_2dd5_2f9a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9424_2dd5_2f9a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9424_2dd5_2f9a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9424_2dd5_2f9a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9424_2dd5_2f9a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9424_2dd5_2f9a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_542a_d171_9cef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_542a_d171_9cef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_542a_d171_9cef/request", "", "public", "Top Dataset, pressure sprd, uwnd.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Long Term Mean 6-hourly U-wind Spread on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_542a_d171_9cef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_542a_d171_9cef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_542a_d171_9cef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_542a_d171_9cef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_542a_d171_9cef&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_542a_d171_9cef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a15a_3a4d_615b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a15a_3a4d_615b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a15a_3a4d_615b/request", "", "public", "Top Dataset, pressure sprd, uwnd.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Daily Long Term Mean U-wind Spread on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a15a_3a4d_615b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a15a_3a4d_615b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a15a_3a4d_615b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a15a_3a4d_615b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a15a_3a4d_615b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a15a_3a4d_615b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0ff_ead0_b4c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0ff_ead0_b4c5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e0ff_ead0_b4c5/request", "", "public", "Top Dataset, pressure sprd, uwnd.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Long Term Mean Monthly U-wind Spread on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e0ff_ead0_b4c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e0ff_ead0_b4c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e0ff_ead0_b4c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e0ff_ead0_b4c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e0ff_ead0_b4c5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e0ff_ead0_b4c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_022d_a816_078b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_022d_a816_078b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_022d_a816_078b/request", "", "public", "Top Dataset, pressure sprd, uwnd.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Monthly Long Term U-wind Spread on Pressure Levels, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_022d_a816_078b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_022d_a816_078b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_022d_a816_078b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_022d_a816_078b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_022d_a816_078b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_022d_a816_078b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e496_507e_0101", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e496_507e_0101.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e496_507e_0101/request", "", "public", "Top Dataset, pressure sprd, vwnd.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Long Term Mean 6-hourly V-wind Spread on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e496_507e_0101_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e496_507e_0101_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e496_507e_0101/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e496_507e_0101.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e496_507e_0101&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e496_507e_0101"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b81_581e_e7f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b81_581e_e7f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b81_581e_e7f5/request", "", "public", "Top Dataset, pressure sprd, vwnd.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Daily Long Term Mean V-wind Spread on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b81_581e_e7f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b81_581e_e7f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b81_581e_e7f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b81_581e_e7f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b81_581e_e7f5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7b81_581e_e7f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45ae_5fa9_6ec1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45ae_5fa9_6ec1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_45ae_5fa9_6ec1/request", "", "public", "Top Dataset, pressure sprd, vwnd.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Long Term Mean Monthly V-wind Spread on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_45ae_5fa9_6ec1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_45ae_5fa9_6ec1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_45ae_5fa9_6ec1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_45ae_5fa9_6ec1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_45ae_5fa9_6ec1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_45ae_5fa9_6ec1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5680_7836_d56d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5680_7836_d56d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5680_7836_d56d/request", "", "public", "Top Dataset, pressure sprd, vwnd.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Monthly Long Term V-wind Spread on Pressure Levels, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5680_7836_d56d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5680_7836_d56d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5680_7836_d56d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5680_7836_d56d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5680_7836_d56d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5680_7836_d56d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de36_1665_6ea7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de36_1665_6ea7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_de36_1665_6ea7/request", "", "public", "Top Dataset, pressure, air.4Xday.1981-2010.ltm (4X daily ltm air from the NCEP Reanalysis), 2.5\u00b0, 0001", "4X daily ltm air from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 4xDaily Air temperature, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_de36_1665_6ea7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_de36_1665_6ea7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_de36_1665_6ea7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_de36_1665_6ea7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_de36_1665_6ea7&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_de36_1665_6ea7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db25_18e4_5a19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db25_18e4_5a19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db25_18e4_5a19/request", "", "public", "Top Dataset, pressure, air.4Xday.1981-2010.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db25_18e4_5a19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db25_18e4_5a19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db25_18e4_5a19/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db25_18e4_5a19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db25_18e4_5a19&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_db25_18e4_5a19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8816_642f_ec8e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8816_642f_ec8e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8816_642f_ec8e/request", "", "public", "Top Dataset, pressure, air.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean Daily Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8816_642f_ec8e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8816_642f_ec8e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8816_642f_ec8e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8816_642f_ec8e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8816_642f_ec8e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8816_642f_ec8e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf2d_403f_c913", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf2d_403f_c913.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf2d_403f_c913/request", "", "public", "Top Dataset, pressure, air.day.1981-2010.ltm (daily ltm air from the NCEP Reanalysis), 2.5\u00b0, 0001", "daily ltm air from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (mean Long Term Mean Daily Air temperature, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf2d_403f_c913_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf2d_403f_c913_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf2d_403f_c913/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf2d_403f_c913.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf2d_403f_c913&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_bf2d_403f_c913"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efaa_59b5_04fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efaa_59b5_04fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_efaa_59b5_04fa/request", "", "public", "Top Dataset, pressure, air.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_efaa_59b5_04fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_efaa_59b5_04fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_efaa_59b5_04fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_efaa_59b5_04fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_efaa_59b5_04fa&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_efaa_59b5_04fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e561_e9aa_4447", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e561_e9aa_4447.graph", "", "", "public", "Top Dataset, pressure, air.day.ltm (Daily Long Term NARR) [time][level][y][x], 0001", "Daily Long Term NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nair (Daily Long Term Mean Air Temperature on Pressure Levels, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e561_e9aa_4447/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e561_e9aa_4447.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e561_e9aa_4447&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_e561_e9aa_4447"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2899_355b_029e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2899_355b_029e.graph", "", "", "public", "Top Dataset, pressure, air.day.ltm (Daily Long Term NARR) [y][x]", "Daily Long Term NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2899_355b_029e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2899_355b_029e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2899_355b_029e&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_2899_355b_029e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a39_1842_8c48", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a39_1842_8c48.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8a39_1842_8c48/request", "", "public", "Top Dataset, pressure, air.day.ltm.1981-2010 (Daily NCEP/DOE Reanalysis 2), 2.5\u00b0, 0001", "Daily National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8a39_1842_8c48_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8a39_1842_8c48_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8a39_1842_8c48/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8a39_1842_8c48.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8a39_1842_8c48&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_8a39_1842_8c48"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c4c7_7457_84bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c4c7_7457_84bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c4c7_7457_84bf/request", "", "public", "Top Dataset, pressure, air.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c4c7_7457_84bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c4c7_7457_84bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c4c7_7457_84bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c4c7_7457_84bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c4c7_7457_84bf&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c4c7_7457_84bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c04e_e962_28bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c04e_e962_28bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c04e_e962_28bb/request", "", "public", "Top Dataset, pressure, air.mon.1981-2010.ltm (monthly ltm air from the NCEP Reanalysis), 2.5\u00b0, 0001", "monthly ltm air from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Long Term Mean of Air temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c04e_e962_28bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c04e_e962_28bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c04e_e962_28bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c04e_e962_28bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c04e_e962_28bb&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c04e_e962_28bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fda_9a93_831c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fda_9a93_831c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5fda_9a93_831c/request", "", "public", "Top Dataset, pressure, air.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Long Term Air Temperature on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5fda_9a93_831c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5fda_9a93_831c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5fda_9a93_831c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5fda_9a93_831c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5fda_9a93_831c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5fda_9a93_831c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c708_1d81_df82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c708_1d81_df82.graph", "", "", "public", "Top Dataset, pressure, air.mon.ltm (Monthly NARR) [time][level][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nair (Monthly Air Temperature on Pressure Levels, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c708_1d81_df82/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c708_1d81_df82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c708_1d81_df82&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_c708_1d81_df82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf10_1446_6f11", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf10_1446_6f11.graph", "", "", "public", "Top Dataset, pressure, air.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude, degrees_north)\nlon (longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf10_1446_6f11/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf10_1446_6f11.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf10_1446_6f11&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_cf10_1446_6f11"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b4e3_ffdd_a9e9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b4e3_ffdd_a9e9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b4e3_ffdd_a9e9/request", "", "public", "Top Dataset, pressure, air.mon.ltm (Monthly NCEP/DOE Reanalysis 2), 2.5\u00b0, 0001", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Long Term Air Temperature on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b4e3_ffdd_a9e9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b4e3_ffdd_a9e9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b4e3_ffdd_a9e9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b4e3_ffdd_a9e9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b4e3_ffdd_a9e9&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_b4e3_ffdd_a9e9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f83_c6ac_2f05", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f83_c6ac_2f05.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f83_c6ac_2f05/request", "", "public", "Top Dataset, pressure, air.mon.mean (Monthly NCEP/DOE Reanalysis 2), 2.5\u00b0, 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f83_c6ac_2f05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f83_c6ac_2f05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f83_c6ac_2f05/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f83_c6ac_2f05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f83_c6ac_2f05&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_8f83_c6ac_2f05"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff63_c2b5_12e9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff63_c2b5_12e9.graph", "", "", "public", "Top Dataset, pressure, air.mon.mean (NARR Monthly Means) [time][level][y][x], 1979-present", "NARR Monthly Means (Top Dataset, pressure, air.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nair (Monthly Air Temperature on Pressure Levels, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff63_c2b5_12e9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff63_c2b5_12e9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff63_c2b5_12e9&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ff63_c2b5_12e9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50f0_a1f0_98ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50f0_a1f0_98ea.graph", "", "", "public", "Top Dataset, pressure, air.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, pressure, air.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50f0_a1f0_98ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50f0_a1f0_98ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50f0_a1f0_98ea&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_50f0_a1f0_98ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f01_4082_4cbe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f01_4082_4cbe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5f01_4082_4cbe/request", "", "public", "Top Dataset, pressure, hgt.4Xday.1981-2010.ltm (4X daily ltm hgt from the NCEP Reanalysis), 2.5\u00b0, 0001", "4X daily ltm hgt from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Long Term Mean 4xDaily Geopotential height, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5f01_4082_4cbe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5f01_4082_4cbe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5f01_4082_4cbe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5f01_4082_4cbe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5f01_4082_4cbe&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5f01_4082_4cbe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2494_3a88_7ef6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2494_3a88_7ef6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2494_3a88_7ef6/request", "", "public", "Top Dataset, pressure, hgt.4Xday.1981-2010.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Long Term Mean 6-hourly Geopotential Heights on Pressure Levels, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2494_3a88_7ef6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2494_3a88_7ef6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2494_3a88_7ef6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2494_3a88_7ef6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2494_3a88_7ef6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2494_3a88_7ef6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fe5_488b_5926", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fe5_488b_5926.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4fe5_488b_5926/request", "", "public", "Top Dataset, pressure, hgt.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Long Term Mean Daily Geopotential Heights on Pressure Levels, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4fe5_488b_5926_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4fe5_488b_5926_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4fe5_488b_5926/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4fe5_488b_5926.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4fe5_488b_5926&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4fe5_488b_5926"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b03_7e52_a553", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b03_7e52_a553.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b03_7e52_a553/request", "", "public", "Top Dataset, pressure, hgt.day.1981-2010.ltm (daily ltm hgt from the NCEP Reanalysis), 2.5\u00b0, 0001", "daily ltm hgt from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (mean Long Term Mean Daily Geopotential height, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b03_7e52_a553_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b03_7e52_a553_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b03_7e52_a553/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b03_7e52_a553.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b03_7e52_a553&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5b03_7e52_a553"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3526_32aa_14ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3526_32aa_14ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3526_32aa_14ae/request", "", "public", "Top Dataset, pressure, hgt.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Daily Long Term Mean Geopotential Heights on Pressure Levels, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3526_32aa_14ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3526_32aa_14ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3526_32aa_14ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3526_32aa_14ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3526_32aa_14ae&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3526_32aa_14ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73b2_a7e2_abd9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73b2_a7e2_abd9.graph", "", "", "public", "Top Dataset, pressure, hgt.day.ltm (Daily Long Term Mean NARR) [time][level][y][x], 0001", "Daily Long Term Mean NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nhgt (Daily Long Term Mean Geopotential Heights on Pressure Levels, m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_73b2_a7e2_abd9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_73b2_a7e2_abd9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_73b2_a7e2_abd9&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_73b2_a7e2_abd9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83c8_a581_1890", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83c8_a581_1890.graph", "", "", "public", "Top Dataset, pressure, hgt.day.ltm (Daily Long Term Mean NARR) [y][x]", "Daily Long Term Mean NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_83c8_a581_1890/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_83c8_a581_1890.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_83c8_a581_1890&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_83c8_a581_1890"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5753_439b_ae09", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5753_439b_ae09.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5753_439b_ae09/request", "", "public", "Top Dataset, pressure, hgt.day.ltm.1981-2010 (daily NCEP/DOE Reanalysis 2), 2.5\u00b0, 0001", "daily National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Daily Long Term Mean Geopotential Heights on Pressure Levels, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5753_439b_ae09_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5753_439b_ae09_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5753_439b_ae09/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5753_439b_ae09.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5753_439b_ae09&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_5753_439b_ae09"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eadb_8b74_7759", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eadb_8b74_7759.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eadb_8b74_7759/request", "", "public", "Top Dataset, pressure, hgt.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Long Term Mean Monthly Geopotential Heights on Pressure Levels, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eadb_8b74_7759_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eadb_8b74_7759_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eadb_8b74_7759/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eadb_8b74_7759.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eadb_8b74_7759&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_eadb_8b74_7759"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_77e2_8d40_8210", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_77e2_8d40_8210.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_77e2_8d40_8210/request", "", "public", "Top Dataset, pressure, hgt.mon.1981-2010.ltm (monthly ltm hgt from the NCEP Reanalysis), 2.5\u00b0, 0001", "monthly ltm hgt from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Monthly Long Term mean geopotential height, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_77e2_8d40_8210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_77e2_8d40_8210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_77e2_8d40_8210/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_77e2_8d40_8210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_77e2_8d40_8210&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_77e2_8d40_8210"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ed8_2a4f_0efd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ed8_2a4f_0efd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ed8_2a4f_0efd/request", "", "public", "Top Dataset, pressure, hgt.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Monthly Long Term Geopotential Heights on Pressure Levels, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ed8_2a4f_0efd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ed8_2a4f_0efd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ed8_2a4f_0efd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ed8_2a4f_0efd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ed8_2a4f_0efd&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8ed8_2a4f_0efd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9267_3db8_cb04", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9267_3db8_cb04.graph", "", "", "public", "Top Dataset, pressure, hgt.mon.ltm (Monthly NARR) [time][level][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nhgt (Monthly Long Term Mean Geopotential Heights on Pressure Levels, m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9267_3db8_cb04/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9267_3db8_cb04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9267_3db8_cb04&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_9267_3db8_cb04"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb68_4053_5e9c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb68_4053_5e9c.graph", "", "", "public", "Top Dataset, pressure, hgt.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude, degrees_north)\nlon (longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb68_4053_5e9c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb68_4053_5e9c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb68_4053_5e9c&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_eb68_4053_5e9c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4598_d3ac_2046", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4598_d3ac_2046.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4598_d3ac_2046/request", "", "public", "Top Dataset, pressure, hgt.mon.ltm (Monthly NCEP/DOE Reanalysis 2), 2.5\u00b0, 0001", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Monthly Long Term Geopotential Heights on Pressure Levels, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4598_d3ac_2046_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4598_d3ac_2046_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4598_d3ac_2046/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4598_d3ac_2046.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4598_d3ac_2046&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_4598_d3ac_2046"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03ae_f431_5b61", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03ae_f431_5b61.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03ae_f431_5b61/request", "", "public", "Top Dataset, pressure, hgt.mon.mean (Monthly NCEP/DOE Reanalysis 2), 2.5\u00b0, 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Monthly Geopotential Heights on Pressure Levels, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03ae_f431_5b61_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03ae_f431_5b61_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03ae_f431_5b61/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03ae_f431_5b61.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03ae_f431_5b61&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_03ae_f431_5b61"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4541_1a38_e484", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4541_1a38_e484.graph", "", "", "public", "Top Dataset, pressure, hgt.mon.mean (NARR Monthly Means) [time][level][y][x], 1979-present", "NARR Monthly Means (Top Dataset, pressure, hgt.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nhgt (Monthly Geopotential Heights on Pressure Levels, m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4541_1a38_e484/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4541_1a38_e484.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4541_1a38_e484&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_4541_1a38_e484"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20b6_c2e0_273e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20b6_c2e0_273e.graph", "", "", "public", "Top Dataset, pressure, hgt.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, pressure, hgt.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_20b6_c2e0_273e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_20b6_c2e0_273e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_20b6_c2e0_273e&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_20b6_c2e0_273e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbea_7886_c1b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbea_7886_c1b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dbea_7886_c1b8/request", "", "public", "Top Dataset, pressure, omega.4Xday.1981-2010.ltm (4X daily ltm omega from the NCEP Reanalysis), 2.5\u00b0, 0001", "4X daily ltm omega from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Long Term Mean 4xDaily Omega, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dbea_7886_c1b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dbea_7886_c1b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dbea_7886_c1b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dbea_7886_c1b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dbea_7886_c1b8&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_dbea_7886_c1b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0662_a8c3_a40c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0662_a8c3_a40c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0662_a8c3_a40c/request", "", "public", "Top Dataset, pressure, omega.4Xday.1981-2010.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Long Term Mean 6-hourly Omega on Pressure Levels, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0662_a8c3_a40c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0662_a8c3_a40c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0662_a8c3_a40c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0662_a8c3_a40c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0662_a8c3_a40c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0662_a8c3_a40c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3960_298f_7a05", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3960_298f_7a05.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3960_298f_7a05/request", "", "public", "Top Dataset, pressure, omega.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Long Term Mean Daily Omega on Pressure Levels, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3960_298f_7a05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3960_298f_7a05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3960_298f_7a05/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3960_298f_7a05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3960_298f_7a05&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3960_298f_7a05"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc27_c750_1fb0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc27_c750_1fb0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc27_c750_1fb0/request", "", "public", "Top Dataset, pressure, omega.day.1981-2010.ltm (daily ltm omega from the NCEP Reanalysis), 2.5\u00b0, 0001", "daily ltm omega from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (mean Long Term Mean Daily Omega, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc27_c750_1fb0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc27_c750_1fb0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc27_c750_1fb0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc27_c750_1fb0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc27_c750_1fb0&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_dc27_c750_1fb0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_84ed_5664_acef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_84ed_5664_acef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_84ed_5664_acef/request", "", "public", "Top Dataset, pressure, omega.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Daily Long Term Mean Omega on Pressure Levels, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_84ed_5664_acef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_84ed_5664_acef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_84ed_5664_acef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_84ed_5664_acef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_84ed_5664_acef&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_84ed_5664_acef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_481c_bba7_d9e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_481c_bba7_d9e0.graph", "", "", "public", "Top Dataset, pressure, omega.day.ltm (Daily Long Term Mean NARR) [time][level][y][x], 0001", "Daily Long Term Mean NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nomega (Daily Long Term Mean Omega on Pressure Levels, Pascal/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_481c_bba7_d9e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_481c_bba7_d9e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_481c_bba7_d9e0&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_481c_bba7_d9e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5cb8_c46b_d940", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5cb8_c46b_d940.graph", "", "", "public", "Top Dataset, pressure, omega.day.ltm (Daily Long Term Mean NARR) [y][x]", "Daily Long Term Mean NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5cb8_c46b_d940/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5cb8_c46b_d940.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5cb8_c46b_d940&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_5cb8_c46b_d940"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b483_1f29_de32", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b483_1f29_de32.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b483_1f29_de32/request", "", "public", "Top Dataset, pressure, omega.day.ltm.1981-2010 (Daily NCEP/DOE Reanalysis 2), 2.5\u00b0, 0001", "Daily National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Daily Long Term Mean Omega on Pressure Levels, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b483_1f29_de32_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b483_1f29_de32_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b483_1f29_de32/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b483_1f29_de32.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b483_1f29_de32&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_b483_1f29_de32"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5638_7e69_eef7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5638_7e69_eef7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5638_7e69_eef7/request", "", "public", "Top Dataset, pressure, omega.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Long Term Mean Monthly Omega on Pressure Levels, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5638_7e69_eef7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5638_7e69_eef7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5638_7e69_eef7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5638_7e69_eef7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5638_7e69_eef7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5638_7e69_eef7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2474_c9b6_62d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2474_c9b6_62d2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2474_c9b6_62d2/request", "", "public", "Top Dataset, pressure, omega.mon.1981-2010.ltm (monthly ltm omega from the NCEP Reanalysis), 2.5\u00b0, 0001", "monthly ltm omega from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Monthly Long Term Mean of Omega, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2474_c9b6_62d2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2474_c9b6_62d2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2474_c9b6_62d2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2474_c9b6_62d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2474_c9b6_62d2&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2474_c9b6_62d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed79_da5d_84d8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed79_da5d_84d8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ed79_da5d_84d8/request", "", "public", "Top Dataset, pressure, omega.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Monthly Long Term Omega on Pressure Levels, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ed79_da5d_84d8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ed79_da5d_84d8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ed79_da5d_84d8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ed79_da5d_84d8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ed79_da5d_84d8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ed79_da5d_84d8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a1c_9fbc_2a65", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a1c_9fbc_2a65.graph", "", "", "public", "Top Dataset, pressure, omega.mon.ltm (Monthly NARR) [time][level][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nomega (Monthly Long Term Mean Omega on Pressure Levels, Pascal/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a1c_9fbc_2a65/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a1c_9fbc_2a65.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a1c_9fbc_2a65&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7a1c_9fbc_2a65"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_623c_03b3_8dbe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_623c_03b3_8dbe.graph", "", "", "public", "Top Dataset, pressure, omega.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude, degrees_north)\nlon (longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_623c_03b3_8dbe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_623c_03b3_8dbe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_623c_03b3_8dbe&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_623c_03b3_8dbe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54a1_85b4_d2c7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54a1_85b4_d2c7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54a1_85b4_d2c7/request", "", "public", "Top Dataset, pressure, omega.mon.ltm (Monthly NCEP/DOE Reanalysis 2), 2.5\u00b0, 0001", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Monthly Long Term Omega on Pressure Levels, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54a1_85b4_d2c7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54a1_85b4_d2c7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54a1_85b4_d2c7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54a1_85b4_d2c7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54a1_85b4_d2c7&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_54a1_85b4_d2c7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9746_2b95_c7a4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9746_2b95_c7a4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9746_2b95_c7a4/request", "", "public", "Top Dataset, pressure, omega.mon.mean (Monthly NCEP/DOE Reanalysis 2), 2.5\u00b0, 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Monthly Omega on Pressure Levels, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9746_2b95_c7a4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9746_2b95_c7a4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9746_2b95_c7a4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9746_2b95_c7a4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9746_2b95_c7a4&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_9746_2b95_c7a4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5ae_6d98_bde7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5ae_6d98_bde7.graph", "", "", "public", "Top Dataset, pressure, omega.mon.mean (NARR Monthly Means) [time][level][y][x], 1979-present", "NARR Monthly Means (Top Dataset, pressure, omega.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nomega (Monthly Omega on Pressure Levels, Pascal/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5ae_6d98_bde7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5ae_6d98_bde7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5ae_6d98_bde7&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_b5ae_6d98_bde7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18c1_23bc_1ece", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18c1_23bc_1ece.graph", "", "", "public", "Top Dataset, pressure, omega.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, pressure, omega.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_18c1_23bc_1ece/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_18c1_23bc_1ece.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_18c1_23bc_1ece&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_18c1_23bc_1ece"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13f3_628d_03ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13f3_628d_03ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_13f3_628d_03ab/request", "", "public", "Top Dataset, pressure, pottmp.mon.1981-2010.ltm (monthly ltm pottmp from the NCEP Reanalysis), 2.5\u00b0, 0001", "monthly ltm pottmp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\npottmp (Monthly Long Term Mean of Potential Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_13f3_628d_03ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_13f3_628d_03ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_13f3_628d_03ab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_13f3_628d_03ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_13f3_628d_03ab&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_13f3_628d_03ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b02_da61_4de8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b02_da61_4de8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0b02_da61_4de8/request", "", "public", "Top Dataset, pressure, rhum.4Xday.1981-2010.ltm (4X daily ltm rhum from the NCEP Reanalysis), 2.5\u00b0, 0001", "4X daily ltm rhum from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Long Term Mean 4xDaily relative humidity, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0b02_da61_4de8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0b02_da61_4de8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0b02_da61_4de8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0b02_da61_4de8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0b02_da61_4de8&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0b02_da61_4de8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d887_0999_2de3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d887_0999_2de3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d887_0999_2de3/request", "", "public", "Top Dataset, pressure, rhum.4Xday.1981-2010.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Long Term Mean 6-hourly Relative Humidity on Pressure Levels, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d887_0999_2de3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d887_0999_2de3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d887_0999_2de3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d887_0999_2de3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d887_0999_2de3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d887_0999_2de3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fee_13bd_68bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fee_13bd_68bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5fee_13bd_68bd/request", "", "public", "Top Dataset, pressure, rhum.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Long Term Mean Daily Relative Humidity on Pressure Levels, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5fee_13bd_68bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5fee_13bd_68bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5fee_13bd_68bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5fee_13bd_68bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5fee_13bd_68bd&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5fee_13bd_68bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_176a_8022_1e63", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_176a_8022_1e63.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_176a_8022_1e63/request", "", "public", "Top Dataset, pressure, rhum.day.1981-2010.ltm (daily ltm rhum from the NCEP Reanalysis), 2.5\u00b0, 0001", "daily ltm rhum from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (mean Long Term Mean Daily relative humidity, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_176a_8022_1e63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_176a_8022_1e63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_176a_8022_1e63/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_176a_8022_1e63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_176a_8022_1e63&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_176a_8022_1e63"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae6a_e0b0_ed9b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae6a_e0b0_ed9b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae6a_e0b0_ed9b/request", "", "public", "Top Dataset, pressure, rhum.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Daily Long Term Mean Relative Humidity on Pressure Levels, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae6a_e0b0_ed9b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae6a_e0b0_ed9b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae6a_e0b0_ed9b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae6a_e0b0_ed9b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae6a_e0b0_ed9b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ae6a_e0b0_ed9b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee90_4864_8ca0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee90_4864_8ca0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ee90_4864_8ca0/request", "", "public", "Top Dataset, pressure, rhum.day.ltm.1981-2010 (daily NCEP/DOE Reanalysis 2), 2.5\u00b0, 0001", "daily National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Daily Long Term Mean Relative Humidity on Pressure Levels, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ee90_4864_8ca0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ee90_4864_8ca0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ee90_4864_8ca0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ee90_4864_8ca0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ee90_4864_8ca0&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ee90_4864_8ca0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0cd1_88dc_c239", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0cd1_88dc_c239.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0cd1_88dc_c239/request", "", "public", "Top Dataset, pressure, rhum.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Long Term Mean Monthly Relative Humidity on Pressure Levels, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0cd1_88dc_c239_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0cd1_88dc_c239_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0cd1_88dc_c239/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0cd1_88dc_c239.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0cd1_88dc_c239&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0cd1_88dc_c239"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1105_e7e3_179f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1105_e7e3_179f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1105_e7e3_179f/request", "", "public", "Top Dataset, pressure, rhum.mon.1981-2010.ltm (monthly ltm rhum from the NCEP Reanalysis), 2.5\u00b0, 0001", "monthly ltm rhum from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Monthly Long Term Mean of Relative Humidity, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1105_e7e3_179f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1105_e7e3_179f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1105_e7e3_179f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1105_e7e3_179f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1105_e7e3_179f&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_1105_e7e3_179f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b00a_5207_3c83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b00a_5207_3c83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b00a_5207_3c83/request", "", "public", "Top Dataset, pressure, rhum.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Monthly Long Term Relative Humidity on Pressure Levels, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b00a_5207_3c83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b00a_5207_3c83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b00a_5207_3c83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b00a_5207_3c83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b00a_5207_3c83&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b00a_5207_3c83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5aa3_8d02_30fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5aa3_8d02_30fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5aa3_8d02_30fd/request", "", "public", "Top Dataset, pressure, rhum.mon.ltm (Monthly NCEP/DOE Reanalysis 2), 2.5\u00b0, 0001", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Monthly Long Term Relative Humidity on Pressure Levels, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5aa3_8d02_30fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5aa3_8d02_30fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5aa3_8d02_30fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5aa3_8d02_30fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5aa3_8d02_30fd&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_5aa3_8d02_30fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18c4_4589_c71a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18c4_4589_c71a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_18c4_4589_c71a/request", "", "public", "Top Dataset, pressure, rhum.mon.mean (Monthly NCEP/DOE Reanalysis 2), 2.5\u00b0, 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Monthly Relative Humidity on Pressure Levels, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_18c4_4589_c71a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_18c4_4589_c71a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_18c4_4589_c71a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_18c4_4589_c71a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_18c4_4589_c71a&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_18c4_4589_c71a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83bb_7aa3_01db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83bb_7aa3_01db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_83bb_7aa3_01db/request", "", "public", "Top Dataset, pressure, shum.4Xday.1981-2010.ltm (4X daily ltm shum from the NCEP Reanalysis), 2.5\u00b0, 0001", "4X daily ltm shum from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Long Term Mean 4xDaily specific humidity, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_83bb_7aa3_01db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_83bb_7aa3_01db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_83bb_7aa3_01db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_83bb_7aa3_01db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_83bb_7aa3_01db&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_83bb_7aa3_01db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e2c_357e_2139", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e2c_357e_2139.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e2c_357e_2139/request", "", "public", "Top Dataset, pressure, shum.4Xday.1981-2010.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Long Term Mean 6-hourly Specific Humidity on Pressure Levels, kg/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e2c_357e_2139_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e2c_357e_2139_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e2c_357e_2139/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e2c_357e_2139.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e2c_357e_2139&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0e2c_357e_2139"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f8a_3dc9_dad6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f8a_3dc9_dad6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f8a_3dc9_dad6/request", "", "public", "Top Dataset, pressure, shum.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Long Term Mean Daily Specific Humidity on Pressure Levels, kg/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f8a_3dc9_dad6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f8a_3dc9_dad6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f8a_3dc9_dad6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f8a_3dc9_dad6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f8a_3dc9_dad6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2f8a_3dc9_dad6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b357_6c29_92b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b357_6c29_92b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b357_6c29_92b5/request", "", "public", "Top Dataset, pressure, shum.day.1981-2010.ltm (daily ltm shum from the NCEP Reanalysis), 2.5\u00b0, 0001", "daily ltm shum from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (mean Long Term Mean Daily specific humidity, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b357_6c29_92b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b357_6c29_92b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b357_6c29_92b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b357_6c29_92b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b357_6c29_92b5&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b357_6c29_92b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64d2_d3bb_212e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64d2_d3bb_212e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_64d2_d3bb_212e/request", "", "public", "Top Dataset, pressure, shum.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Daily Long Term Mean Specific Humidity on Pressure Levels, kg/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_64d2_d3bb_212e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_64d2_d3bb_212e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_64d2_d3bb_212e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_64d2_d3bb_212e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_64d2_d3bb_212e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_64d2_d3bb_212e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cad_1a85_4002", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cad_1a85_4002.graph", "", "", "public", "Top Dataset, pressure, shum.day.ltm (Daily NARR) [time][level][y][x], 0001", "Daily NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nshum (Daily Long Term Mean Specific Humidity on Pressure Levels, kg/kg)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7cad_1a85_4002/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7cad_1a85_4002.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7cad_1a85_4002&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7cad_1a85_4002"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a26_a53b_0af3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a26_a53b_0af3.graph", "", "", "public", "Top Dataset, pressure, shum.day.ltm (Daily NARR) [y][x]", "Daily NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a26_a53b_0af3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a26_a53b_0af3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a26_a53b_0af3&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_3a26_a53b_0af3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b43_f213_2bf7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b43_f213_2bf7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b43_f213_2bf7/request", "", "public", "Top Dataset, pressure, shum.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Long Term Mean Monthly Specific Humidity on Pressure Levels, kg/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b43_f213_2bf7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b43_f213_2bf7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b43_f213_2bf7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b43_f213_2bf7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b43_f213_2bf7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5b43_f213_2bf7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81b4_c42f_2a27", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81b4_c42f_2a27.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_81b4_c42f_2a27/request", "", "public", "Top Dataset, pressure, shum.mon.1981-2010.ltm (monthly ltm shum from the NCEP Reanalysis), 2.5\u00b0, 0001", "monthly ltm shum from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Monthly Long Term Mean of Specific Humidity, grams/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_81b4_c42f_2a27_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_81b4_c42f_2a27_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_81b4_c42f_2a27/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_81b4_c42f_2a27.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_81b4_c42f_2a27&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_81b4_c42f_2a27"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_16dc_5a53_a954", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_16dc_5a53_a954.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_16dc_5a53_a954/request", "", "public", "Top Dataset, pressure, shum.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Monthly Long Term Specific Humidity on Pressure Levels, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_16dc_5a53_a954_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_16dc_5a53_a954_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_16dc_5a53_a954/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_16dc_5a53_a954.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_16dc_5a53_a954&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_16dc_5a53_a954"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a24c_42eb_9384", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a24c_42eb_9384.graph", "", "", "public", "Top Dataset, pressure, shum.mon.ltm (Monthly NARR) [time][level][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nshum (Monthly Long Term Mean Specific Humidity on Pressure Levels, kg/kg)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a24c_42eb_9384/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a24c_42eb_9384.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a24c_42eb_9384&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a24c_42eb_9384"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d450_c4fb_efd9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d450_c4fb_efd9.graph", "", "", "public", "Top Dataset, pressure, shum.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude, degrees_north)\nlon (longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d450_c4fb_efd9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d450_c4fb_efd9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d450_c4fb_efd9&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_d450_c4fb_efd9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f1c_539b_c137", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f1c_539b_c137.graph", "", "", "public", "Top Dataset, pressure, shum.mon.mean (NARR Monthly Means) [time][level][y][x], 1979-present", "NARR Monthly Means (Top Dataset, pressure, shum.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nshum (Monthly Specific Humidity on Pressure Levels, kg/kg)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f1c_539b_c137/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f1c_539b_c137.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f1c_539b_c137&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_0f1c_539b_c137"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b81_d816_1d1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b81_d816_1d1e.graph", "", "", "public", "Top Dataset, pressure, shum.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, pressure, shum.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b81_d816_1d1e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b81_d816_1d1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b81_d816_1d1e&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_5b81_d816_1d1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fb9_1405_a81e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fb9_1405_a81e.graph", "", "", "public", "Top Dataset, pressure, tke.day.ltm (Daily Long Term Mean NARR) [time][level][y][x], 0001", "Daily Long Term Mean NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\ntke (Daily Long Term Mean Turbulent Kinetic Energy on Pressure Levels, J/kg)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2fb9_1405_a81e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2fb9_1405_a81e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2fb9_1405_a81e&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_2fb9_1405_a81e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_174b_8c7f_a7ed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_174b_8c7f_a7ed.graph", "", "", "public", "Top Dataset, pressure, tke.day.ltm (Daily Long Term Mean NARR) [y][x]", "Daily Long Term Mean NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_174b_8c7f_a7ed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_174b_8c7f_a7ed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_174b_8c7f_a7ed&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_174b_8c7f_a7ed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3dd7_fdf8_bc03", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3dd7_fdf8_bc03.graph", "", "", "public", "Top Dataset, pressure, tke.mon.ltm (Monthly NARR) [time][level][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\ntke (Monthly Long Term Mean Turbulent Kinetic Energy on Pressure Levels, J/kg)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3dd7_fdf8_bc03/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3dd7_fdf8_bc03.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3dd7_fdf8_bc03&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_3dd7_fdf8_bc03"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34c6_89c3_e38c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34c6_89c3_e38c.graph", "", "", "public", "Top Dataset, pressure, tke.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude, degrees_north)\nlon (longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_34c6_89c3_e38c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_34c6_89c3_e38c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_34c6_89c3_e38c&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_34c6_89c3_e38c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57c1_3d8f_cf11", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57c1_3d8f_cf11.graph", "", "", "public", "Top Dataset, pressure, tke.mon.mean (NARR Monthly Means) [time][level][y][x], 1979-present", "NARR Monthly Means (Top Dataset, pressure, tke.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\ntke (Monthly Turbulent Kinetic Energy on Pressure Levels, J/kg)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_57c1_3d8f_cf11/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_57c1_3d8f_cf11.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_57c1_3d8f_cf11&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_57c1_3d8f_cf11"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f47c_02fc_9ba4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f47c_02fc_9ba4.graph", "", "", "public", "Top Dataset, pressure, tke.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, pressure, tke.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f47c_02fc_9ba4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f47c_02fc_9ba4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f47c_02fc_9ba4&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_f47c_02fc_9ba4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cf4_b2b5_f83e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cf4_b2b5_f83e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3cf4_b2b5_f83e/request", "", "public", "Top Dataset, pressure, uwnd.4Xday.1981-2010.ltm (4X daily ltm uwnd from the NCEP Reanalysis), 2.5\u00b0, 0001", "4X daily ltm uwnd from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Long Term Mean 4xDaily U-wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3cf4_b2b5_f83e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3cf4_b2b5_f83e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3cf4_b2b5_f83e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3cf4_b2b5_f83e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3cf4_b2b5_f83e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_3cf4_b2b5_f83e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d930_501b_030d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d930_501b_030d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d930_501b_030d/request", "", "public", "Top Dataset, pressure, uwnd.4Xday.1981-2010.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Long Term Mean 6-hourly U-wind on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d930_501b_030d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d930_501b_030d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d930_501b_030d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d930_501b_030d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d930_501b_030d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d930_501b_030d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1b11_ce6c_17b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1b11_ce6c_17b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1b11_ce6c_17b8/request", "", "public", "Top Dataset, pressure, uwnd.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Long Term Mean Daily U-wind on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1b11_ce6c_17b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1b11_ce6c_17b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1b11_ce6c_17b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1b11_ce6c_17b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1b11_ce6c_17b8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1b11_ce6c_17b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51b5_a6d3_328d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51b5_a6d3_328d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_51b5_a6d3_328d/request", "", "public", "Top Dataset, pressure, uwnd.day.1981-2010.ltm (daily ltm uwnd from the NCEP Reanalysis), 2.5\u00b0, 0001", "daily ltm uwnd from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (mean Long Term Mean Daily U-wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_51b5_a6d3_328d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_51b5_a6d3_328d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_51b5_a6d3_328d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_51b5_a6d3_328d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_51b5_a6d3_328d&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_51b5_a6d3_328d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d162_3768_ba2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d162_3768_ba2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d162_3768_ba2a/request", "", "public", "Top Dataset, pressure, uwnd.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Daily Long Term Mean U-wind on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d162_3768_ba2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d162_3768_ba2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d162_3768_ba2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d162_3768_ba2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d162_3768_ba2a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d162_3768_ba2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_69b9_b927_c38a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_69b9_b927_c38a.graph", "", "", "public", "Top Dataset, pressure, uwnd.day.ltm (Daily Long Term Mean NARR) [time][level][y][x], 0001", "Daily Long Term Mean NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nuwnd (Daily Long Term Mean U-wind on Pressure Levels, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_69b9_b927_c38a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_69b9_b927_c38a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_69b9_b927_c38a&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_69b9_b927_c38a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c23_3f11_7611", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c23_3f11_7611.graph", "", "", "public", "Top Dataset, pressure, uwnd.day.ltm (Daily Long Term Mean NARR) [y][x]", "Daily Long Term Mean NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c23_3f11_7611/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c23_3f11_7611.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c23_3f11_7611&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_9c23_3f11_7611"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00ab_fa2e_2955", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00ab_fa2e_2955.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_00ab_fa2e_2955/request", "", "public", "Top Dataset, pressure, uwnd.day.ltm.1981-2010 (Daily NCEP/DOE Reanalysis 2), 2.5\u00b0, 0001", "Daily National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Daily Long Term Mean U-wind on Pressure Levels, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_00ab_fa2e_2955_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_00ab_fa2e_2955_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_00ab_fa2e_2955/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_00ab_fa2e_2955.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_00ab_fa2e_2955&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_00ab_fa2e_2955"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ded_a517_f4f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ded_a517_f4f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2ded_a517_f4f6/request", "", "public", "Top Dataset, pressure, uwnd.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Long Term Mean Monthly U-wind on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2ded_a517_f4f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2ded_a517_f4f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2ded_a517_f4f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2ded_a517_f4f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2ded_a517_f4f6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_2ded_a517_f4f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6372_48b4_1936", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6372_48b4_1936.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6372_48b4_1936/request", "", "public", "Top Dataset, pressure, uwnd.mon.1981-2010.ltm (monthly ltm uwnd from the NCEP Reanalysis), 2.5\u00b0, 0001", "monthly ltm uwnd from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Monthly Long Term mean u wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6372_48b4_1936_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6372_48b4_1936_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6372_48b4_1936/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6372_48b4_1936.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6372_48b4_1936&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6372_48b4_1936"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0dc_2968_a95d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0dc_2968_a95d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c0dc_2968_a95d/request", "", "public", "Top Dataset, pressure, uwnd.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Monthly Long Term U-wind on Pressure Levels, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c0dc_2968_a95d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c0dc_2968_a95d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c0dc_2968_a95d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c0dc_2968_a95d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c0dc_2968_a95d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c0dc_2968_a95d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_882a_98bd_9fb6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_882a_98bd_9fb6.graph", "", "", "public", "Top Dataset, pressure, uwnd.mon.ltm (Monthly NARR) [time][level][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nuwnd (Monthly Long Term Mean U-wind on Pressure Levels, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_882a_98bd_9fb6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_882a_98bd_9fb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_882a_98bd_9fb6&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_882a_98bd_9fb6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7a1_6c21_2feb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7a1_6c21_2feb.graph", "", "", "public", "Top Dataset, pressure, uwnd.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude, degrees_north)\nlon (longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c7a1_6c21_2feb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c7a1_6c21_2feb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c7a1_6c21_2feb&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_c7a1_6c21_2feb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eaf4_dae2_bd1b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eaf4_dae2_bd1b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eaf4_dae2_bd1b/request", "", "public", "Top Dataset, pressure, uwnd.mon.ltm (Monthly NCEP/DOE Reanalysis 2), 2.5\u00b0, 0001", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Monthly Long Term U-wind on Pressure Levels, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eaf4_dae2_bd1b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eaf4_dae2_bd1b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eaf4_dae2_bd1b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eaf4_dae2_bd1b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eaf4_dae2_bd1b&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_eaf4_dae2_bd1b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b644_edb4_356b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b644_edb4_356b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b644_edb4_356b/request", "", "public", "Top Dataset, pressure, uwnd.mon.mean (Monthly NCEP/DOE Reanalysis 2), 2.5\u00b0, 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Monthly U-wind on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b644_edb4_356b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b644_edb4_356b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b644_edb4_356b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b644_edb4_356b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b644_edb4_356b&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_b644_edb4_356b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_569c_4dc0_2662", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_569c_4dc0_2662.graph", "", "", "public", "Top Dataset, pressure, uwnd.mon.mean (NARR Monthly Means) [time][level][y][x], 1979-present", "NARR Monthly Means (Top Dataset, pressure, uwnd.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nuwnd (Monthly U-wind on Pressure Levels, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_569c_4dc0_2662/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_569c_4dc0_2662.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_569c_4dc0_2662&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_569c_4dc0_2662"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c9d_56f4_a624", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c9d_56f4_a624.graph", "", "", "public", "Top Dataset, pressure, uwnd.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, pressure, uwnd.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c9d_56f4_a624/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c9d_56f4_a624.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c9d_56f4_a624&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_4c9d_56f4_a624"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60fa_c1ba_7b53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60fa_c1ba_7b53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_60fa_c1ba_7b53/request", "", "public", "Top Dataset, pressure, vwnd.4Xday.1981-2010.ltm (4X daily ltm vwnd from the NCEP Reanalysis), 2.5\u00b0, 0001", "4X daily ltm vwnd from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Long Term Mean 4xDaily V wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_60fa_c1ba_7b53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_60fa_c1ba_7b53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_60fa_c1ba_7b53/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_60fa_c1ba_7b53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_60fa_c1ba_7b53&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_60fa_c1ba_7b53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d03c_79bd_355c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d03c_79bd_355c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d03c_79bd_355c/request", "", "public", "Top Dataset, pressure, vwnd.4Xday.1981-2010.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Long Term Mean 6-hourly V-wind on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d03c_79bd_355c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d03c_79bd_355c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d03c_79bd_355c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d03c_79bd_355c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d03c_79bd_355c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d03c_79bd_355c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a579_bf2d_bacb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a579_bf2d_bacb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a579_bf2d_bacb/request", "", "public", "Top Dataset, pressure, vwnd.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Long Term Mean Daily V-wind on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a579_bf2d_bacb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a579_bf2d_bacb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a579_bf2d_bacb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a579_bf2d_bacb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a579_bf2d_bacb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a579_bf2d_bacb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2203_aa13_2126", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2203_aa13_2126.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2203_aa13_2126/request", "", "public", "Top Dataset, pressure, vwnd.day.1981-2010.ltm (daily ltm vwnd from the NCEP Reanalysis), 2.5\u00b0, 0001", "daily ltm vwnd from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (mean Long Term Mean Daily V wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2203_aa13_2126_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2203_aa13_2126_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2203_aa13_2126/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2203_aa13_2126.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2203_aa13_2126&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2203_aa13_2126"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d79_e0a6_9a77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d79_e0a6_9a77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d79_e0a6_9a77/request", "", "public", "Top Dataset, pressure, vwnd.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Daily Long Term Mean V-wind on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d79_e0a6_9a77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d79_e0a6_9a77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d79_e0a6_9a77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d79_e0a6_9a77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d79_e0a6_9a77&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6d79_e0a6_9a77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd51_fb79_d574", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd51_fb79_d574.graph", "", "", "public", "Top Dataset, pressure, vwnd.day.ltm (Daily NARR), 0001", "Daily NARR (Top Dataset, pressure, vwnd.day.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nvwnd (Daily Long Term Mean V-wind on Pressure Levels, m/s)\nnot_missing_count (count of non-missing values used in mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dd51_fb79_d574/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dd51_fb79_d574.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dd51_fb79_d574&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_dd51_fb79_d574"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_099e_bf96_4554", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_099e_bf96_4554.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_099e_bf96_4554/request", "", "public", "Top Dataset, pressure, vwnd.day.ltm.1981-2010 (Daily NCEP/DOE Reanalysis 2), 2.5\u00b0, 0001", "Daily National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Daily Long Term Mean V-wind on Pressure Levels, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_099e_bf96_4554_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_099e_bf96_4554_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_099e_bf96_4554/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_099e_bf96_4554.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_099e_bf96_4554&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_099e_bf96_4554"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7aa1_e41d_5311", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7aa1_e41d_5311.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7aa1_e41d_5311/request", "", "public", "Top Dataset, pressure, vwnd.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Long Term Mean Monthly V-wind on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7aa1_e41d_5311_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7aa1_e41d_5311_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7aa1_e41d_5311/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7aa1_e41d_5311.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7aa1_e41d_5311&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7aa1_e41d_5311"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7884_ac16_df62", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7884_ac16_df62.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7884_ac16_df62/request", "", "public", "Top Dataset, pressure, vwnd.mon.1981-2010.ltm (monthly ltm vwnd from the NCEP Reanalysis), 2.5\u00b0, 0001", "monthly ltm vwnd from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Monthly Long Term mean v wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7884_ac16_df62_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7884_ac16_df62_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7884_ac16_df62/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7884_ac16_df62.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7884_ac16_df62&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7884_ac16_df62"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d26_6d8c_3bad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d26_6d8c_3bad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5d26_6d8c_3bad/request", "", "public", "Top Dataset, pressure, vwnd.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Monthly Long Term V-wind on Pressure Levels, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5d26_6d8c_3bad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5d26_6d8c_3bad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5d26_6d8c_3bad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5d26_6d8c_3bad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5d26_6d8c_3bad&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5d26_6d8c_3bad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f12_a059_1e4f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f12_a059_1e4f.graph", "", "", "public", "Top Dataset, pressure, vwnd.mon.ltm (Monthly NARR) [time][level][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nvwnd (Monthly Long Term Mean V-wind on Pressure Levels, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f12_a059_1e4f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f12_a059_1e4f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f12_a059_1e4f&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_1f12_a059_1e4f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab46_0059_5071", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab46_0059_5071.graph", "", "", "public", "Top Dataset, pressure, vwnd.mon.ltm (Monthly NARR) [y][x]", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude, degrees_north)\nlon (longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab46_0059_5071/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab46_0059_5071.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab46_0059_5071&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ab46_0059_5071"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_04ed_208f_cb7c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_04ed_208f_cb7c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_04ed_208f_cb7c/request", "", "public", "Top Dataset, pressure, vwnd.mon.ltm (Monthly NCEP/DOE Reanalysis 2), 2.5\u00b0, 0001", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Monthly Long Term V-wind on Pressure Levels, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_04ed_208f_cb7c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_04ed_208f_cb7c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_04ed_208f_cb7c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_04ed_208f_cb7c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_04ed_208f_cb7c&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_04ed_208f_cb7c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cae9_a848_e13f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cae9_a848_e13f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cae9_a848_e13f/request", "", "public", "Top Dataset, pressure, vwnd.mon.mean (Monthly NCEP/DOE Reanalysis 2), 2.5\u00b0, 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Monthly V-wind on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cae9_a848_e13f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cae9_a848_e13f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cae9_a848_e13f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cae9_a848_e13f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cae9_a848_e13f&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_cae9_a848_e13f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_473e_29f9_76d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_473e_29f9_76d5.graph", "", "", "public", "Top Dataset, pressure, vwnd.mon.mean (NARR Monthly Means) [time][level][y][x], 1979-present", "NARR Monthly Means (Top Dataset, pressure, vwnd.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nvwnd (Monthly V-wind on Pressure Levels, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_473e_29f9_76d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_473e_29f9_76d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_473e_29f9_76d5&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_473e_29f9_76d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e049_5378_c3fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e049_5378_c3fb.graph", "", "", "public", "Top Dataset, pressure, vwnd.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, pressure, vwnd.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e049_5378_c3fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e049_5378_c3fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e049_5378_c3fb&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_e049_5378_c3fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba60_292c_3e69", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba60_292c_3e69.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ba60_292c_3e69/request", "", "public", "Top Dataset, pressure, wspd.mon.1981-2010.ltm (monthly ltm wspd from the NCEP Reanalysis), 2.5\u00b0, 0001", "monthly ltm wspd from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nwspd (Monthly Long Term Mean Wind Speed, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ba60_292c_3e69_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ba60_292c_3e69_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ba60_292c_3e69/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ba60_292c_3e69.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ba60_292c_3e69&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_ba60_292c_3e69"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f546_fced_0b17", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f546_fced_0b17.graph", "", "", "public", "Top Dataset, pressure, wspd.mon.mean (Monthly NARR) [time][level][y][x], 1979-present", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nwspd (Monthly Wind Speed on Pressure Levels, m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f546_fced_0b17/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f546_fced_0b17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f546_fced_0b17&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_f546_fced_0b17"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0bc_99b2_23b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0bc_99b2_23b7.graph", "", "", "public", "Top Dataset, pressure, wspd.mon.mean (Monthly NARR) [y][x]", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (latitude coordinate, degrees_north)\nlon (longitude coordinate, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f0bc_99b2_23b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f0bc_99b2_23b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f0bc_99b2_23b7&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_f0bc_99b2_23b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8945_10f6_0afb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8945_10f6_0afb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8945_10f6_0afb/request", "", "public", "Top Dataset, Regional, adak 815 mhhw 2017 (GDAL Band Number 1), 1.4814814E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8945_10f6_0afb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8945_10f6_0afb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8945_10f6_0afb/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8945_10f6_0afb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8945_10f6_0afb&showErrors=false&email=", "NOAA", "noaa_ngdc_8945_10f6_0afb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3840_5d13_4e90", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3840_5d13_4e90.graph", "", "", "public", "Top Dataset, Regional, albemarle sound s010 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3840_5d13_4e90/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3840_5d13_4e90.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3840_5d13_4e90&showErrors=false&email=", "NOAA", "noaa_ngdc_3840_5d13_4e90"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c6c7_483a_6eaa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c6c7_483a_6eaa.graph", "", "", "public", "Top Dataset, Regional, altamaha river s150 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c6c7_483a_6eaa/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c6c7_483a_6eaa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c6c7_483a_6eaa&showErrors=false&email=", "NOAA", "noaa_ngdc_c6c7_483a_6eaa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8dae_e376_a4ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8dae_e376_a4ca.graph", "", "", "public", "Top Dataset, Regional, apalachicola bay g100 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8dae_e376_a4ca/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8dae_e376_a4ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8dae_e376_a4ca&showErrors=false&email=", "NOAA", "noaa_ngdc_8dae_e376_a4ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ca83_5cf6_f2db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ca83_5cf6_f2db.graph", "", "", "public", "Top Dataset, Regional, aransas bay g300 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ca83_5cf6_f2db/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ca83_5cf6_f2db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ca83_5cf6_f2db&showErrors=false&email=", "NOAA", "noaa_ngdc_ca83_5cf6_f2db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2c44_e751_eccc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2c44_e751_eccc.graph", "", "", "public", "Top Dataset, Regional, atchafalaya bay g220 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2c44_e751_eccc/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2c44_e751_eccc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2c44_e751_eccc&showErrors=false&email=", "NOAA", "noaa_ngdc_2c44_e751_eccc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_62d4_fcfb_f4e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_62d4_fcfb_f4e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_62d4_fcfb_f4e6/request", "", "public", "Top Dataset, Regional, atka 815 mhhw 2017 (GDAL Band Number 1), 1.4814814E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_62d4_fcfb_f4e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_62d4_fcfb_f4e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_62d4_fcfb_f4e6/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_62d4_fcfb_f4e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_62d4_fcfb_f4e6&showErrors=false&email=", "NOAA", "noaa_ngdc_62d4_fcfb_f4e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cebf_2690_92e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cebf_2690_92e4.graph", "", "", "public", "Top Dataset, Regional, baffin bay g320 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_cebf_2690_92e4/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_cebf_2690_92e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_cebf_2690_92e4&showErrors=false&email=", "NOAA", "noaa_ngdc_cebf_2690_92e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8866_29cd_59d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8866_29cd_59d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8866_29cd_59d4/request", "", "public", "Top Dataset, Regional, barkley sound 1 navd88 2016 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8866_29cd_59d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8866_29cd_59d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8866_29cd_59d4/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8866_29cd_59d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8866_29cd_59d4&showErrors=false&email=", "NOAA", "noaa_ngdc_8866_29cd_59d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9338_3a73_5c47", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9338_3a73_5c47.graph", "", "", "public", "Top Dataset, Regional, barnegat bay m070 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9338_3a73_5c47/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9338_3a73_5c47.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9338_3a73_5c47&showErrors=false&email=", "NOAA", "noaa_ngdc_9338_3a73_5c47"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c337_0ff6_191f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c337_0ff6_191f.graph", "", "", "public", "Top Dataset, Regional, bogue sound s030 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c337_0ff6_191f/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c337_0ff6_191f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c337_0ff6_191f&showErrors=false&email=", "NOAA", "noaa_ngdc_c337_0ff6_191f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2f67_59ce_f2ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2f67_59ce_f2ee.graph", "", "", "public", "Top Dataset, Regional, broad river s110 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2f67_59ce_f2ee/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2f67_59ce_f2ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2f67_59ce_f2ee&showErrors=false&email=", "NOAA", "noaa_ngdc_2f67_59ce_f2ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_eb94_1a00_1d33", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_eb94_1a00_1d33.graph", "", "", "public", "Top Dataset, Regional, buzzards bay m010 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_eb94_1a00_1d33/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_eb94_1a00_1d33.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_eb94_1a00_1d33&showErrors=false&email=", "NOAA", "noaa_ngdc_eb94_1a00_1d33"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ca66_ff97_576a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ca66_ff97_576a.graph", "", "", "public", "Top Dataset, Regional, calcasieu lake g240 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ca66_ff97_576a/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ca66_ff97_576a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ca66_ff97_576a&showErrors=false&email=", "NOAA", "noaa_ngdc_ca66_ff97_576a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d33e_c425_2761", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d33e_c425_2761.graph", "", "", "public", "Top Dataset, Regional, cape cod bay n180 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d33e_c425_2761/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d33e_c425_2761.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d33e_c425_2761&showErrors=false&email=", "NOAA", "noaa_ngdc_d33e_c425_2761"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b755_14a2_6747", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b755_14a2_6747.graph", "", "", "public", "Top Dataset, Regional, cape fear river s050 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_b755_14a2_6747/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_b755_14a2_6747.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_b755_14a2_6747&showErrors=false&email=", "NOAA", "noaa_ngdc_b755_14a2_6747"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6332_dc73_6d94", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6332_dc73_6d94.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_6332_dc73_6d94/request", "", "public", "Top Dataset, Regional, central california 1 mhw 2010, 2.7777778E-4\u00b0", "Central California Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_6332_dc73_6d94_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_6332_dc73_6d94_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6332_dc73_6d94/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6332_dc73_6d94.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6332_dc73_6d94&showErrors=false&email=", "NOAA", "noaa_ngdc_6332_dc73_6d94"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9b6c_2c57_fce7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9b6c_2c57_fce7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9b6c_2c57_fce7/request", "", "public", "Top Dataset, Regional, central california 1 navd88 2010, 2.7777778E-4\u00b0", "Central California Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9b6c_2c57_fce7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9b6c_2c57_fce7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9b6c_2c57_fce7/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9b6c_2c57_fce7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9b6c_2c57_fce7&showErrors=false&email=", "NOAA", "noaa_ngdc_9b6c_2c57_fce7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8cbc_a7ac_a012", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8cbc_a7ac_a012.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8cbc_a7ac_a012/request", "", "public", "Top Dataset, Regional, central oregon 13 navd88 2015 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8cbc_a7ac_a012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8cbc_a7ac_a012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8cbc_a7ac_a012/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8cbc_a7ac_a012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8cbc_a7ac_a012&showErrors=false&email=", "NOAA", "noaa_ngdc_8cbc_a7ac_a012"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_be58_7e3c_3068", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_be58_7e3c_3068.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_be58_7e3c_3068/request", "", "public", "Top Dataset, Regional, central washington 13 navd88 2015 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_be58_7e3c_3068_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_be58_7e3c_3068_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_be58_7e3c_3068/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_be58_7e3c_3068.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_be58_7e3c_3068&showErrors=false&email=", "NOAA", "noaa_ngdc_be58_7e3c_3068"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e2a8_f263_9062", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e2a8_f263_9062.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e2a8_f263_9062/request", "", "public", "Top Dataset, Regional, chiniak 815 mhhw 2015 (GDAL Band Number 1), 1.4814814E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e2a8_f263_9062_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e2a8_f263_9062_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e2a8_f263_9062/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e2a8_f263_9062.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e2a8_f263_9062&showErrors=false&email=", "NOAA", "noaa_ngdc_e2a8_f263_9062"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7677_dc7b_2e48", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7677_dc7b_2e48.graph", "", "", "public", "Top Dataset, Regional, columbia river p260 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7677_dc7b_2e48/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7677_dc7b_2e48.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7677_dc7b_2e48&showErrors=false&email=", "NOAA", "noaa_ngdc_7677_dc7b_2e48"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_34a2_c06d_692e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_34a2_c06d_692e.graph", "", "", "public", "Top Dataset, Regional, delaware bay m090 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_34a2_c06d_692e/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_34a2_c06d_692e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_34a2_c06d_692e&showErrors=false&email=", "NOAA", "noaa_ngdc_34a2_c06d_692e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_41b3_6c0a_8c7d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_41b3_6c0a_8c7d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_41b3_6c0a_8c7d/request", "", "public", "Top Dataset, Regional, destin 13 navd88 2016 (GDAL Band Number 1), 9.25925E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_41b3_6c0a_8c7d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_41b3_6c0a_8c7d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_41b3_6c0a_8c7d/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_41b3_6c0a_8c7d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_41b3_6c0a_8c7d&showErrors=false&email=", "NOAA", "noaa_ngdc_41b3_6c0a_8c7d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8211_f536_84a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8211_f536_84a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8211_f536_84a1/request", "", "public", "Top Dataset, Regional, easter island 3 isl 2016 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8211_f536_84a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8211_f536_84a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8211_f536_84a1/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8211_f536_84a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8211_f536_84a1&showErrors=false&email=", "NOAA", "noaa_ngdc_8211_f536_84a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_38bd_8eeb_4755", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_38bd_8eeb_4755.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_38bd_8eeb_4755/request", "", "public", "Top Dataset, Regional, false pass 815 mhhw 2016 (GDAL Band Number 1), 1.4814814E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_38bd_8eeb_4755_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_38bd_8eeb_4755_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_38bd_8eeb_4755/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_38bd_8eeb_4755.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_38bd_8eeb_4755&showErrors=false&email=", "NOAA", "noaa_ngdc_38bd_8eeb_4755"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_db71_0f8f_5a4c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_db71_0f8f_5a4c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_db71_0f8f_5a4c/request", "", "public", "Top Dataset, Regional, galapagos 1 isl 2016 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_db71_0f8f_5a4c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_db71_0f8f_5a4c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_db71_0f8f_5a4c/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_db71_0f8f_5a4c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_db71_0f8f_5a4c&showErrors=false&email=", "NOAA", "noaa_ngdc_db71_0f8f_5a4c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_85bc_d40b_1cd2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_85bc_d40b_1cd2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_85bc_d40b_1cd2/request", "", "public", "Top Dataset, Regional, galapagos 3 isl 2016 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_85bc_d40b_1cd2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_85bc_d40b_1cd2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_85bc_d40b_1cd2/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_85bc_d40b_1cd2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_85bc_d40b_1cd2&showErrors=false&email=", "NOAA", "noaa_ngdc_85bc_d40b_1cd2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_00be_e249_2240", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_00be_e249_2240.graph", "", "", "public", "Top Dataset, Regional, gardiners bay m030 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_00be_e249_2240/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_00be_e249_2240.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_00be_e249_2240&showErrors=false&email=", "NOAA", "noaa_ngdc_00be_e249_2240"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8292_0e7b_ffdd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8292_0e7b_ffdd.graph", "", "", "public", "Top Dataset, Regional, great bay n130 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8292_0e7b_ffdd/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8292_0e7b_ffdd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8292_0e7b_ffdd&showErrors=false&email=", "NOAA", "noaa_ngdc_8292_0e7b_ffdd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5064_e150_4114", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5064_e150_4114.graph", "", "", "public", "Top Dataset, Regional, great south bay m050 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5064_e150_4114/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5064_e150_4114.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5064_e150_4114&showErrors=false&email=", "NOAA", "noaa_ngdc_5064_e150_4114"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9910_6cee_914b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9910_6cee_914b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9910_6cee_914b/request", "", "public", "Top Dataset, Regional, grenada 1 isl 2017 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9910_6cee_914b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9910_6cee_914b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9910_6cee_914b/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9910_6cee_914b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9910_6cee_914b&showErrors=false&email=", "NOAA", "noaa_ngdc_9910_6cee_914b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5abc_91bb_5fe2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5abc_91bb_5fe2.graph", "", "", "public", "Top Dataset, Regional, hudson river m060h 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5abc_91bb_5fe2/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5abc_91bb_5fe2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5abc_91bb_5fe2&showErrors=false&email=", "NOAA", "noaa_ngdc_5abc_91bb_5fe2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f5f3_934b_d877", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f5f3_934b_d877.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f5f3_934b_d877/request", "", "public", "Top Dataset, Regional, kaneohe 13 mhw 2016 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f5f3_934b_d877_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f5f3_934b_d877_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f5f3_934b_d877/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f5f3_934b_d877.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f5f3_934b_d877&showErrors=false&email=", "NOAA", "noaa_ngdc_f5f3_934b_d877"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3a30_e20b_a9ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3a30_e20b_a9ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3a30_e20b_a9ce/request", "", "public", "Top Dataset, Regional, larsen bay 815 mhhw 2016 (GDAL Band Number 1), 1.4814814E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3a30_e20b_a9ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3a30_e20b_a9ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3a30_e20b_a9ce/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3a30_e20b_a9ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3a30_e20b_a9ce&showErrors=false&email=", "NOAA", "noaa_ngdc_3a30_e20b_a9ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e266_6ff5_7745", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e266_6ff5_7745.graph", "", "", "public", "Top Dataset, Regional, long island sound m040 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e266_6ff5_7745/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e266_6ff5_7745.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e266_6ff5_7745&showErrors=false&email=", "NOAA", "noaa_ngdc_e266_6ff5_7745"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6d3b_d79d_5ea3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6d3b_d79d_5ea3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_6d3b_d79d_5ea3/request", "", "public", "Top Dataset, Regional, mariana trench 6 msl 2012 (GDAL Band Number 1), 0.0016666667\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_6d3b_d79d_5ea3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_6d3b_d79d_5ea3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6d3b_d79d_5ea3/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6d3b_d79d_5ea3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6d3b_d79d_5ea3&showErrors=false&email=", "NOAA", "noaa_ngdc_6d3b_d79d_5ea3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_72f2_1e19_0a2b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_72f2_1e19_0a2b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_72f2_1e19_0a2b/request", "", "public", "Top Dataset, Regional, marquesas islands 3 isl 2017 (GDAL Band Number 1), 8.333333E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_72f2_1e19_0a2b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_72f2_1e19_0a2b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_72f2_1e19_0a2b/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_72f2_1e19_0a2b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_72f2_1e19_0a2b&showErrors=false&email=", "NOAA", "noaa_ngdc_72f2_1e19_0a2b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_db3d_c2f6_79bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_db3d_c2f6_79bb.graph", "", "", "public", "Top Dataset, Regional, massachusetts bay n170 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_db3d_c2f6_79bb/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_db3d_c2f6_79bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_db3d_c2f6_79bb&showErrors=false&email=", "NOAA", "noaa_ngdc_db3d_c2f6_79bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9ff6_6b2f_b750", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9ff6_6b2f_b750.graph", "", "", "public", "Top Dataset, Regional, matagorda bay g280 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9ff6_6b2f_b750/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9ff6_6b2f_b750.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9ff6_6b2f_b750&showErrors=false&email=", "NOAA", "noaa_ngdc_9ff6_6b2f_b750"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e2f4_b422_69c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e2f4_b422_69c9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e2f4_b422_69c9/request", "", "public", "Top Dataset, Regional, miami 13 navd88 2015 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e2f4_b422_69c9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e2f4_b422_69c9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e2f4_b422_69c9/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e2f4_b422_69c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e2f4_b422_69c9&showErrors=false&email=", "NOAA", "noaa_ngdc_e2f4_b422_69c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1279_c8c3_3a74", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1279_c8c3_3a74.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1279_c8c3_3a74/request", "", "public", "Top Dataset, Regional, midway island 13 mhw 2012 (Midway Atoll Coastal Digital Elevation Model), 9.259259E-5\u00b0", "Midway Atoll Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1279_c8c3_3a74_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1279_c8c3_3a74_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1279_c8c3_3a74/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1279_c8c3_3a74.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1279_c8c3_3a74&showErrors=false&email=", "NOAA", "noaa_ngdc_1279_c8c3_3a74"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bfed_7801_e4ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bfed_7801_e4ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_bfed_7801_e4ab/request", "", "public", "Top Dataset, Regional, midway island 3 mhw 2012 (Midway Atoll Coastal Digital Elevation Model), 8.3333335E-4\u00b0", "Midway Atoll Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_bfed_7801_e4ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_bfed_7801_e4ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_bfed_7801_e4ab/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_bfed_7801_e4ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_bfed_7801_e4ab&showErrors=false&email=", "NOAA", "noaa_ngdc_bfed_7801_e4ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7989_2e3f_343c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7989_2e3f_343c.graph", "", "", "public", "Top Dataset, Regional, mississippi sound g170 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7989_2e3f_343c/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7989_2e3f_343c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7989_2e3f_343c&showErrors=false&email=", "NOAA", "noaa_ngdc_7989_2e3f_343c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9aa5_5e18_e904", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9aa5_5e18_e904.graph", "", "", "public", "Top Dataset, Regional, mobile bay g150 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9aa5_5e18_e904/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9aa5_5e18_e904.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9aa5_5e18_e904&showErrors=false&email=", "NOAA", "noaa_ngdc_9aa5_5e18_e904"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e950_9a3d_9778", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e950_9a3d_9778.graph", "", "", "public", "Top Dataset, Regional, muscongus bay n060 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e950_9a3d_9778/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e950_9a3d_9778.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e950_9a3d_9778&showErrors=false&email=", "NOAA", "noaa_ngdc_e950_9a3d_9778"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9785_2954_facd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9785_2954_facd.graph", "", "", "public", "Top Dataset, Regional, narragansett bay m020 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9785_2954_facd/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9785_2954_facd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9785_2954_facd&showErrors=false&email=", "NOAA", "noaa_ngdc_9785_2954_facd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_79dd_0153_e0c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_79dd_0153_e0c1.graph", "", "", "public", "Top Dataset, Regional, new jersey inland bays m080 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_79dd_0153_e0c1/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_79dd_0153_e0c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_79dd_0153_e0c1&showErrors=false&email=", "NOAA", "noaa_ngdc_79dd_0153_e0c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1741_abb6_fa0b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1741_abb6_fa0b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1741_abb6_fa0b/request", "", "public", "Top Dataset, Regional, nikolski 1 mhhw 2014 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1741_abb6_fa0b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1741_abb6_fa0b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1741_abb6_fa0b/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1741_abb6_fa0b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1741_abb6_fa0b&showErrors=false&email=", "NOAA", "noaa_ngdc_1741_abb6_fa0b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d50b_c0c1_cd92", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d50b_c0c1_cd92.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d50b_c0c1_cd92/request", "", "public", "Top Dataset, Regional, nikolski 13 mhhw 2014 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d50b_c0c1_cd92_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d50b_c0c1_cd92_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d50b_c0c1_cd92/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d50b_c0c1_cd92.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d50b_c0c1_cd92&showErrors=false&email=", "NOAA", "noaa_ngdc_d50b_c0c1_cd92"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4d2a_21de_d267", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4d2a_21de_d267.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4d2a_21de_d267/request", "", "public", "Top Dataset, Regional, niue 3 isl 2016 (Topography Grid), 8.3333335E-4\u00b0", "Topography Grid. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (Topography, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4d2a_21de_d267_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4d2a_21de_d267_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4d2a_21de_d267/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4d2a_21de_d267.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4d2a_21de_d267&showErrors=false&email=", "NOAA", "noaa_ngdc_4d2a_21de_d267"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_522b_2589_3862", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_522b_2589_3862.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_522b_2589_3862/request", "", "public", "Top Dataset, Regional, northern gulf 1 mhw 2010 (Northern Gulf Coast Digital Elevation Model), 2.7777778E-4\u00b0", "Northern Gulf Coast Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_522b_2589_3862_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_522b_2589_3862_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_522b_2589_3862/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_522b_2589_3862.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_522b_2589_3862&showErrors=false&email=", "NOAA", "noaa_ngdc_522b_2589_3862"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_777d_ab1a_f079", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_777d_ab1a_f079.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_777d_ab1a_f079/request", "", "public", "Top Dataset, Regional, northern gulf 1 navd88 2010, 2.7777778E-4\u00b0", "Northern Gulf Coast Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_777d_ab1a_f079_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_777d_ab1a_f079_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_777d_ab1a_f079/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_777d_ab1a_f079.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_777d_ab1a_f079&showErrors=false&email=", "NOAA", "noaa_ngdc_777d_ab1a_f079"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_04d4_aa33_0059", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_04d4_aa33_0059.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_04d4_aa33_0059/request", "", "public", "Top Dataset, Regional, orange county 13 navd88 2015 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_04d4_aa33_0059_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_04d4_aa33_0059_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_04d4_aa33_0059/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_04d4_aa33_0059.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_04d4_aa33_0059&showErrors=false&email=", "NOAA", "noaa_ngdc_04d4_aa33_0059"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9d8f_66f2_3052", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9d8f_66f2_3052.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9d8f_66f2_3052/request", "", "public", "Top Dataset, Regional, ouzinkie 815 mhhw 2015 (GDAL Band Number 1), 1.4814814E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9d8f_66f2_3052_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9d8f_66f2_3052_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9d8f_66f2_3052/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9d8f_66f2_3052.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9d8f_66f2_3052&showErrors=false&email=", "NOAA", "noaa_ngdc_9d8f_66f2_3052"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a189_3002_f735", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a189_3002_f735.graph", "", "", "public", "Top Dataset, Regional, pamlico sound s020 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_a189_3002_f735/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_a189_3002_f735.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_a189_3002_f735&showErrors=false&email=", "NOAA", "noaa_ngdc_a189_3002_f735"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5f33_edbd_2a55", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5f33_edbd_2a55.graph", "", "", "public", "Top Dataset, Regional, penobscot bay n050 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5f33_edbd_2a55/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5f33_edbd_2a55.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5f33_edbd_2a55&showErrors=false&email=", "NOAA", "noaa_ngdc_5f33_edbd_2a55"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7679_5b39_4a3e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7679_5b39_4a3e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7679_5b39_4a3e/request", "", "public", "Top Dataset, Regional, pensacola 13 navd88 2015 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7679_5b39_4a3e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7679_5b39_4a3e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7679_5b39_4a3e/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7679_5b39_4a3e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7679_5b39_4a3e&showErrors=false&email=", "NOAA", "noaa_ngdc_7679_5b39_4a3e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e1b1_ae66_a9e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e1b1_ae66_a9e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e1b1_ae66_a9e1/request", "", "public", "Top Dataset, Regional, port alberni 13 navd88 2016 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e1b1_ae66_a9e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e1b1_ae66_a9e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e1b1_ae66_a9e1/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e1b1_ae66_a9e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e1b1_ae66_a9e1&showErrors=false&email=", "NOAA", "noaa_ngdc_e1b1_ae66_a9e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2b96_6cfc_06ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2b96_6cfc_06ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2b96_6cfc_06ca/request", "", "public", "Top Dataset, Regional, port ensenada 3 mhw 2006 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2b96_6cfc_06ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2b96_6cfc_06ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2b96_6cfc_06ca/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2b96_6cfc_06ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2b96_6cfc_06ca&showErrors=false&email=", "NOAA", "noaa_ngdc_2b96_6cfc_06ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_340c_25cd_41f4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_340c_25cd_41f4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_340c_25cd_41f4/request", "", "public", "Top Dataset, Regional, port lions 815 mhhw 2016 (GDAL Band Number 1), 1.4814814E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_340c_25cd_41f4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_340c_25cd_41f4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_340c_25cd_41f4/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_340c_25cd_41f4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_340c_25cd_41f4&showErrors=false&email=", "NOAA", "noaa_ngdc_340c_25cd_41f4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_723c_2505_d677", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_723c_2505_d677.graph", "", "", "public", "Top Dataset, Regional, puget sound p290 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_723c_2505_d677/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_723c_2505_d677.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_723c_2505_d677&showErrors=false&email=", "NOAA", "noaa_ngdc_723c_2505_d677"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9949_2d2c_449a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9949_2d2c_449a.graph", "", "", "public", "Top Dataset, Regional, raritan bay m060r 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9949_2d2c_449a/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9949_2d2c_449a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9949_2d2c_449a&showErrors=false&email=", "NOAA", "noaa_ngdc_9949_2d2c_449a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a469_2846_b8ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a469_2846_b8ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_a469_2846_b8ea/request", "", "public", "Top Dataset, Regional, rarotonga 1 isl 2016 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_a469_2846_b8ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_a469_2846_b8ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_a469_2846_b8ea/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_a469_2846_b8ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_a469_2846_b8ea&showErrors=false&email=", "NOAA", "noaa_ngdc_a469_2846_b8ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_98d1_2584_a14c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_98d1_2584_a14c.graph", "", "", "public", "Top Dataset, Regional, san antonio bay g290 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_98d1_2584_a14c/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_98d1_2584_a14c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_98d1_2584_a14c&showErrors=false&email=", "NOAA", "noaa_ngdc_98d1_2584_a14c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9e66_2c80_3bda", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9e66_2c80_3bda.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9e66_2c80_3bda/request", "", "public", "Top Dataset, Regional, san juan 19 prvd02 2015 (GDAL Band Number 1), 3.0864E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9e66_2c80_3bda_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9e66_2c80_3bda_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9e66_2c80_3bda/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9e66_2c80_3bda.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9e66_2c80_3bda&showErrors=false&email=", "NOAA", "noaa_ngdc_9e66_2c80_3bda"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ae88_af24_97ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ae88_af24_97ab.graph", "", "", "public", "Top Dataset, Regional, santee river s070 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ae88_af24_97ab/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ae88_af24_97ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ae88_af24_97ab&showErrors=false&email=", "NOAA", "noaa_ngdc_ae88_af24_97ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_131e_301e_d7a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_131e_301e_d7a0.graph", "", "", "public", "Top Dataset, Regional, savannah river s120 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_131e_301e_d7a0/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_131e_301e_d7a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_131e_301e_d7a0&showErrors=false&email=", "NOAA", "noaa_ngdc_131e_301e_d7a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ec89_b2d9_50dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ec89_b2d9_50dc.graph", "", "", "public", "Top Dataset, Regional, sheepscot bay n080 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ec89_b2d9_50dc/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ec89_b2d9_50dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ec89_b2d9_50dc&showErrors=false&email=", "NOAA", "noaa_ngdc_ec89_b2d9_50dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cf97_ae89_ee61", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cf97_ae89_ee61.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_cf97_ae89_ee61/request", "", "public", "Top Dataset, Regional, society islands 3 isl 2016 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_cf97_ae89_ee61_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_cf97_ae89_ee61_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_cf97_ae89_ee61/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_cf97_ae89_ee61.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_cf97_ae89_ee61&showErrors=false&email=", "NOAA", "noaa_ngdc_cf97_ae89_ee61"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4d60_10c4_7c0f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4d60_10c4_7c0f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4d60_10c4_7c0f/request", "", "public", "Top Dataset, Regional, society islands leeward 1 isl 2016 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4d60_10c4_7c0f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4d60_10c4_7c0f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4d60_10c4_7c0f/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4d60_10c4_7c0f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4d60_10c4_7c0f&showErrors=false&email=", "NOAA", "noaa_ngdc_4d60_10c4_7c0f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_50c6_2d33_d6c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_50c6_2d33_d6c9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_50c6_2d33_d6c9/request", "", "public", "Top Dataset, Regional, society islands windward 1 isl 2016 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_50c6_2d33_d6c9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_50c6_2d33_d6c9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_50c6_2d33_d6c9/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_50c6_2d33_d6c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_50c6_2d33_d6c9&showErrors=false&email=", "NOAA", "noaa_ngdc_50c6_2d33_d6c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d00a_eb50_06e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d00a_eb50_06e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d00a_eb50_06e3/request", "", "public", "Top Dataset, Regional, southeast alaska 8 mhhw 2010, 0.0022222223\u00b0", "Southeast Alaska Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d00a_eb50_06e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d00a_eb50_06e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d00a_eb50_06e3/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d00a_eb50_06e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d00a_eb50_06e3&showErrors=false&email=", "NOAA", "noaa_ngdc_d00a_eb50_06e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_74da_027f_7c37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_74da_027f_7c37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_74da_027f_7c37/request", "", "public", "Top Dataset, Regional, southern louisiana 13 navd88 2010 (Southern Louisiana NAVD 88), 9.259259E-5\u00b0", "Southern Louisiana NAVD 88. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_74da_027f_7c37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_74da_027f_7c37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_74da_027f_7c37/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_74da_027f_7c37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_74da_027f_7c37&showErrors=false&email=", "NOAA", "noaa_ngdc_74da_027f_7c37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7529_8357_fceb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7529_8357_fceb.graph", "", "", "public", "Top Dataset, Regional, standrew bay g110 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7529_8357_fceb/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7529_8357_fceb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7529_8357_fceb&showErrors=false&email=", "NOAA", "noaa_ngdc_7529_8357_fceb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9b4a_19f0_1e1a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9b4a_19f0_1e1a.graph", "", "", "public", "Top Dataset, Regional, standrew stsimons sounds s160 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9b4a_19f0_1e1a/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9b4a_19f0_1e1a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9b4a_19f0_1e1a&showErrors=false&email=", "NOAA", "noaa_ngdc_9b4a_19f0_1e1a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4548_23d3_2eb9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4548_23d3_2eb9.graph", "", "", "public", "Top Dataset, Regional, stcatherines sapelo sounds s140 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4548_23d3_2eb9/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4548_23d3_2eb9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4548_23d3_2eb9&showErrors=false&email=", "NOAA", "noaa_ngdc_4548_23d3_2eb9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_dabe_7070_9668", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_dabe_7070_9668.graph", "", "", "public", "Top Dataset, Regional, sthelena sound s100 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_dabe_7070_9668/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_dabe_7070_9668.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_dabe_7070_9668&showErrors=false&email=", "NOAA", "noaa_ngdc_dabe_7070_9668"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8a19_9434_8508", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8a19_9434_8508.graph", "", "", "public", "Top Dataset, Regional, stjohns river s180 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8a19_9434_8508/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8a19_9434_8508.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8a19_9434_8508&showErrors=false&email=", "NOAA", "noaa_ngdc_8a19_9434_8508"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6e83_595b_5ed9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6e83_595b_5ed9.graph", "", "", "public", "Top Dataset, Regional, stmarys river cumberland sound s170 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6e83_595b_5ed9/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6e83_595b_5ed9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6e83_595b_5ed9&showErrors=false&email=", "NOAA", "noaa_ngdc_6e83_595b_5ed9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6534_5da6_b7fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6534_5da6_b7fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_6534_5da6_b7fb/request", "", "public", "Top Dataset, Regional, strait of juan de fuca 13 navd88 2015 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_6534_5da6_b7fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_6534_5da6_b7fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6534_5da6_b7fb/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6534_5da6_b7fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6534_5da6_b7fb&showErrors=false&email=", "NOAA", "noaa_ngdc_6534_5da6_b7fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_81b2_184b_9411", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_81b2_184b_9411.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_81b2_184b_9411/request", "", "public", "Top Dataset, Regional, tampa bay 13 navd88 2014 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_81b2_184b_9411_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_81b2_184b_9411_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_81b2_184b_9411/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_81b2_184b_9411.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_81b2_184b_9411&showErrors=false&email=", "NOAA", "noaa_ngdc_81b2_184b_9411"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7f58_6f62_7720", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7f58_6f62_7720.graph", "", "", "public", "Top Dataset, Regional, terrebonne timbalier bays g210 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7f58_6f62_7720/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7f58_6f62_7720.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7f58_6f62_7720&showErrors=false&email=", "NOAA", "noaa_ngdc_7f58_6f62_7720"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4798_0d34_05d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4798_0d34_05d3.graph", "", "", "public", "Top Dataset, Regional, umpqua river p180 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4798_0d34_05d3/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4798_0d34_05d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4798_0d34_05d3&showErrors=false&email=", "NOAA", "noaa_ngdc_4798_0d34_05d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ab94_d3bf_2a16", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ab94_d3bf_2a16.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_ab94_d3bf_2a16/request", "", "public", "Top Dataset, Regional, wake island 13 mhw 2009 (Wake Island Coastal Digital Elevation Model), 9.259259E-5\u00b0", "Wake Island Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_ab94_d3bf_2a16_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_ab94_d3bf_2a16_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ab94_d3bf_2a16/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ab94_d3bf_2a16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ab94_d3bf_2a16&showErrors=false&email=", "NOAA", "noaa_ngdc_ab94_d3bf_2a16"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3a14_d50b_70dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3a14_d50b_70dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3a14_d50b_70dc/request", "", "public", "Top Dataset, Regional, wake island 3 mhw 2009 (Wake Island Coastal Digital Elevation Model), 8.3333335E-4\u00b0", "Wake Island Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3a14_d50b_70dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3a14_d50b_70dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3a14_d50b_70dc/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3a14_d50b_70dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3a14_d50b_70dc&showErrors=false&email=", "NOAA", "noaa_ngdc_3a14_d50b_70dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6bef_0c78_eee1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6bef_0c78_eee1.graph", "", "", "public", "Top Dataset, Regional, winyah bay s060 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6bef_0c78_eee1/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6bef_0c78_eee1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6bef_0c78_eee1&showErrors=false&email=", "NOAA", "noaa_ngdc_6bef_0c78_eee1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3a47_119f_835b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3a47_119f_835b.graph", "", "", "public", "Top Dataset, Regional, yaquina bay p210 30m", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nBand1 (GDAL Band Number 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3a47_119f_835b/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3a47_119f_835b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3a47_119f_835b&showErrors=false&email=", "NOAA", "noaa_ngdc_3a47_119f_835b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15be_0295_bc47", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15be_0295_bc47.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_15be_0295_bc47/request", "", "public", "Top Dataset, seasonal, otemp.anal1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, seasonal, otemp.anal1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, analyzed mean, 1-deg grid, Seasonal, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_15be_0295_bc47_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_15be_0295_bc47_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_15be_0295_bc47/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_15be_0295_bc47.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_15be_0295_bc47&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_15be_0295_bc47"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d6d_039e_5f99", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d6d_039e_5f99.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0d6d_039e_5f99/request", "", "public", "Top Dataset, seasonal, otemp.dd1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, seasonal, otemp.dd1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, raw nobs, 1-deg grid, Seasonal, number of observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0d6d_039e_5f99_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0d6d_039e_5f99_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0d6d_039e_5f99/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0d6d_039e_5f99.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0d6d_039e_5f99&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_0d6d_039e_5f99"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85cc_f173_f775", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85cc_f173_f775.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_85cc_f173_f775/request", "", "public", "Top Dataset, seasonal, otemp.dd5deg (NODC World Ocean Atlas 1998), 5.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, seasonal, otemp.dd5deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, raw nobs, 5-deg grid, Seasonal, number of observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_85cc_f173_f775_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_85cc_f173_f775_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85cc_f173_f775/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85cc_f173_f775.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85cc_f173_f775&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_85cc_f173_f775"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f719_7e4d_de7c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f719_7e4d_de7c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f719_7e4d_de7c/request", "", "public", "Top Dataset, seasonal, otemp.gp1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, seasonal, otemp.gp1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, data distribution, 1-deg grid, Seasonal, number of cells)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f719_7e4d_de7c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f719_7e4d_de7c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f719_7e4d_de7c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f719_7e4d_de7c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f719_7e4d_de7c&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_f719_7e4d_de7c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9965_41aa_c177", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9965_41aa_c177.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9965_41aa_c177/request", "", "public", "Top Dataset, seasonal, otemp.ma1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, seasonal, otemp.ma1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, analyzed mean - analyzed annual mean, 1-deg grid, Seasonal, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9965_41aa_c177_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9965_41aa_c177_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9965_41aa_c177/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9965_41aa_c177.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9965_41aa_c177&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_9965_41aa_c177"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14bf_80f5_5a07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14bf_80f5_5a07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_14bf_80f5_5a07/request", "", "public", "Top Dataset, seasonal, otemp.oa1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, seasonal, otemp.oa1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, raw - analyzed, 1-deg grid, Seasonal, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_14bf_80f5_5a07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_14bf_80f5_5a07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_14bf_80f5_5a07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_14bf_80f5_5a07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_14bf_80f5_5a07&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_14bf_80f5_5a07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19a2_4807_82df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19a2_4807_82df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_19a2_4807_82df/request", "", "public", "Top Dataset, seasonal, otemp.raw1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, seasonal, otemp.raw1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, unanalyzed, 1-deg grid, Seasonal, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_19a2_4807_82df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_19a2_4807_82df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_19a2_4807_82df/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_19a2_4807_82df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_19a2_4807_82df&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_19a2_4807_82df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53dc_4723_1220", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53dc_4723_1220.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_53dc_4723_1220/request", "", "public", "Top Dataset, seasonal, otemp.raw5deg (NODC World Ocean Atlas 1998), 5.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, seasonal, otemp.raw5deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, unanalyzed, 5-deg grid, Seasonal, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_53dc_4723_1220_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_53dc_4723_1220_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_53dc_4723_1220/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_53dc_4723_1220.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_53dc_4723_1220&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_53dc_4723_1220"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1417_fa48_4cec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1417_fa48_4cec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1417_fa48_4cec/request", "", "public", "Top Dataset, seasonal, otemp.sd1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, seasonal, otemp.sd1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, standard deviation, 1-deg grid, Seasonal, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1417_fa48_4cec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1417_fa48_4cec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1417_fa48_4cec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1417_fa48_4cec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1417_fa48_4cec&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_1417_fa48_4cec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9297_fb30_93dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9297_fb30_93dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9297_fb30_93dd/request", "", "public", "Top Dataset, seasonal, otemp.sd5deg (NODC World Ocean Atlas 1998), 5.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, seasonal, otemp.sd5deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, standard deviation, 5-deg grid, Seasonal, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9297_fb30_93dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9297_fb30_93dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9297_fb30_93dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9297_fb30_93dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9297_fb30_93dd&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_9297_fb30_93dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83a5_b536_ff17", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83a5_b536_ff17.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_83a5_b536_ff17/request", "", "public", "Top Dataset, seasonal, otemp.se1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, seasonal, otemp.se1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, standard error, 1-deg grid, Seasonal, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_83a5_b536_ff17_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_83a5_b536_ff17_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_83a5_b536_ff17/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_83a5_b536_ff17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_83a5_b536_ff17&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_83a5_b536_ff17"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c2b_9ada_df09", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c2b_9ada_df09.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8c2b_9ada_df09/request", "", "public", "Top Dataset, seasonal, otemp.se5deg (NODC World Ocean Atlas 1998), 5.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, seasonal, otemp.se5deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\notemp (Ocean Temperature, standard error, 5-deg grid, Seasonal, deg C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8c2b_9ada_df09_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8c2b_9ada_df09_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8c2b_9ada_df09/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8c2b_9ada_df09.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8c2b_9ada_df09&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_8c2b_9ada_df09"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4db8_2284_5d53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4db8_2284_5d53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4db8_2284_5d53/request", "", "public", "Top Dataset, seasonal, salt.anal1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, seasonal, salt.anal1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, analyzed mean, 1-deg grid, Seasonal, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4db8_2284_5d53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4db8_2284_5d53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4db8_2284_5d53/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4db8_2284_5d53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4db8_2284_5d53&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_4db8_2284_5d53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af36_d2be_566d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af36_d2be_566d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_af36_d2be_566d/request", "", "public", "Top Dataset, seasonal, salt.dd1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, seasonal, salt.dd1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, raw nobs, 1-deg grid, Seasonal, number of observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_af36_d2be_566d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_af36_d2be_566d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_af36_d2be_566d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_af36_d2be_566d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_af36_d2be_566d&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_af36_d2be_566d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f4a_1aa1_86e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f4a_1aa1_86e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4f4a_1aa1_86e6/request", "", "public", "Top Dataset, seasonal, salt.dd5deg (NODC World Ocean Atlas 1998), 5.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, seasonal, salt.dd5deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, raw nobs, 5-deg grid, Seasonal, number of observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4f4a_1aa1_86e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4f4a_1aa1_86e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4f4a_1aa1_86e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4f4a_1aa1_86e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4f4a_1aa1_86e6&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_4f4a_1aa1_86e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5395_8437_3e6b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5395_8437_3e6b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5395_8437_3e6b/request", "", "public", "Top Dataset, seasonal, salt.gp1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, seasonal, salt.gp1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, data distribution, 1-deg grid, Seasonal, number of cells)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5395_8437_3e6b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5395_8437_3e6b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5395_8437_3e6b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5395_8437_3e6b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5395_8437_3e6b&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_5395_8437_3e6b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f364_9e4d_8c57", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f364_9e4d_8c57.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f364_9e4d_8c57/request", "", "public", "Top Dataset, seasonal, salt.ma1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, seasonal, salt.ma1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, analyzed mean - analyzed annual mean, 1-deg grid, Seasonal, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f364_9e4d_8c57_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f364_9e4d_8c57_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f364_9e4d_8c57/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f364_9e4d_8c57.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f364_9e4d_8c57&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_f364_9e4d_8c57"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43ec_e25b_2685", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43ec_e25b_2685.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_43ec_e25b_2685/request", "", "public", "Top Dataset, seasonal, salt.oa1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, seasonal, salt.oa1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, raw - analyzed, 1-deg grid, Seasonal, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_43ec_e25b_2685_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_43ec_e25b_2685_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_43ec_e25b_2685/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_43ec_e25b_2685.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_43ec_e25b_2685&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_43ec_e25b_2685"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fdaa_684a_4ddf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fdaa_684a_4ddf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fdaa_684a_4ddf/request", "", "public", "Top Dataset, seasonal, salt.raw1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, seasonal, salt.raw1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, unanalyzed, 1-deg grid, Seasonal, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fdaa_684a_4ddf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fdaa_684a_4ddf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fdaa_684a_4ddf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fdaa_684a_4ddf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fdaa_684a_4ddf&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_fdaa_684a_4ddf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2ef_8d36_f4d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2ef_8d36_f4d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d2ef_8d36_f4d7/request", "", "public", "Top Dataset, seasonal, salt.raw5deg (NODC World Ocean Atlas 1998), 5.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, seasonal, salt.raw5deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, unanalyzed, 5-deg grid, Seasonal, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d2ef_8d36_f4d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d2ef_8d36_f4d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d2ef_8d36_f4d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d2ef_8d36_f4d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d2ef_8d36_f4d7&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_d2ef_8d36_f4d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b925_70e8_c404", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b925_70e8_c404.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b925_70e8_c404/request", "", "public", "Top Dataset, seasonal, salt.sd1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, seasonal, salt.sd1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, standard deviation, 1-deg grid, Seasonal, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b925_70e8_c404_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b925_70e8_c404_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b925_70e8_c404/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b925_70e8_c404.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b925_70e8_c404&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_b925_70e8_c404"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4732_1f34_1a4a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4732_1f34_1a4a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4732_1f34_1a4a/request", "", "public", "Top Dataset, seasonal, salt.sd5deg (NODC World Ocean Atlas 1998), 5.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, seasonal, salt.sd5deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, standard deviation, 5-deg grid, Seasonal, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4732_1f34_1a4a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4732_1f34_1a4a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4732_1f34_1a4a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4732_1f34_1a4a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4732_1f34_1a4a&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_4732_1f34_1a4a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a84c_2e52_2041", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a84c_2e52_2041.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a84c_2e52_2041/request", "", "public", "Top Dataset, seasonal, salt.se1deg (NODC World Ocean Atlas 1998), 1.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, seasonal, salt.se1deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, standard error, 1-deg grid, Seasonal, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a84c_2e52_2041_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a84c_2e52_2041_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a84c_2e52_2041/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a84c_2e52_2041.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a84c_2e52_2041&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_a84c_2e52_2041"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d0c_2d7f_8ac6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d0c_2d7f_8ac6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d0c_2d7f_8ac6/request", "", "public", "Top Dataset, seasonal, salt.se5deg (NODC World Ocean Atlas 1998), 5.0\u00b0, 0001", "National Oceanographic Data Center (NODC) World Ocean Atlas 1998 (Top Dataset, seasonal, salt.se5deg)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalt (Ocean Salinity, standard error, 5-deg grid, Seasonal, g/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d0c_2d7f_8ac6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d0c_2d7f_8ac6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d0c_2d7f_8ac6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.nodc.woa98.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d0c_2d7f_8ac6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d0c_2d7f_8ac6&showErrors=false&email=", "CSIRO, NOAA NCEI OCL", "noaa_esrl_3d0c_2d7f_8ac6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_c054_e93b_ca08", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_c054_e93b_ca08.graph", "", "", "public", "Top Dataset, seawifs, SEAWIFS L3 CHLA DAILY 9KM R, 0.08333333\u00b0, 1997-2010", "Sea-Wide Field-of-View Sensor (SeaWiFS) Level-3 Standard Mapped Image (Top Dataset, seawifs, SEAWIFS L3 Chlorophyll-a (CHLA) DAILY 9KM R)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nl3m_data (mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_c054_e93b_ca08_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_c054_e93b_ca08_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_c054_e93b_ca08/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_c054_e93b_ca08.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_c054_e93b_ca08&showErrors=false&email=", "NASA JPL", "nasa_jpl_c054_e93b_ca08"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_0e44_1d64_ec54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_0e44_1d64_ec54.graph", "", "", "public", "Top Dataset, seawifs, SEAWIFS L3 CHLA MONTHLY 9KM R, 0.08333333\u00b0, 1997-2010", "Sea-Wide Field-of-View Sensor (SeaWiFS) Level-3 Standard Mapped Image (Top Dataset, seawifs, SEAWIFS L3 Chlorophyll-a (CHLA) MONTHLY 9KM R)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nl3m_data (mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_0e44_1d64_ec54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_0e44_1d64_ec54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_0e44_1d64_ec54/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_0e44_1d64_ec54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_0e44_1d64_ec54&showErrors=false&email=", "NASA JPL", "nasa_jpl_0e44_1d64_ec54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_d49b_cb5d_6778", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_d49b_cb5d_6778.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_d49b_cb5d_6778/request", "", "public", "Top Dataset, seawinds, SEAWINDS LEVEL 3 AMSR [lat][lon][pass], 0.25\u00b0", "Top Dataset, seawinds, SEAWINDS LEVEL 3 Advanced Microwave Scanning Radiometer (AMSR)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude][pass]):\nrep_wind_velocity_u (m/sec)\nrep_wind_velocity_v (m/sec)\nrep_atten_corr (dB)\nrep_time_of_day\nrep_rain_probability\nrep_srad_rain_rate (km*mm/hr)\nrep_amsr_rain_indicator\nrain_flag\nnull_data_indicator\ngrid_cell_quality_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_d49b_cb5d_6778_fgdc.xml", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_d49b_cb5d_6778/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_d49b_cb5d_6778.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_d49b_cb5d_6778&showErrors=false&email=", "NASA JPL", "nasa_jpl_d49b_cb5d_6778"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_f202_0cc5_6d50", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_f202_0cc5_6d50.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_f202_0cc5_6d50/request", "", "public", "Top Dataset, seawinds, SEAWINDS LEVEL 3 AMSR [time][lat][lon][pass], 0.25\u00b0, 2003", "Top Dataset, seawinds, SEAWINDS LEVEL 3 Advanced Microwave Scanning Radiometer (AMSR)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude][pass]):\nrep_wind_speed (m/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_f202_0cc5_6d50_fgdc.xml", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_f202_0cc5_6d50/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_f202_0cc5_6d50.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_f202_0cc5_6d50&showErrors=false&email=", "NASA JPL", "nasa_jpl_f202_0cc5_6d50"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_95a0_ff06_6418", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_95a0_ff06_6418.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_95a0_ff06_6418/request", "", "public", "Top Dataset, seawinds, SEAWINDS LEVEL 3 V2 [lat][lon][pass], 0.25\u00b0", "Top Dataset, seawinds, SEAWINDS LEVEL 3 V2\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude][pass]):\nrep_wind_velocity_u (m/sec)\nrep_wind_velocity_v (m/sec)\nrep_atten_corr (dB)\nrep_time_of_day\nrep_rain_probability\nrep_srad_rain_rate (km*mm/hr)\nrep_amsr_rain_indicator\nrain_flag\nnull_data_indicator\ngrid_cell_quality_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_95a0_ff06_6418_fgdc.xml", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_95a0_ff06_6418/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_95a0_ff06_6418.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_95a0_ff06_6418&showErrors=false&email=", "NASA JPL", "nasa_jpl_95a0_ff06_6418"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_abfa_af2b_c137", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_abfa_af2b_c137.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_abfa_af2b_c137/request", "", "public", "Top Dataset, seawinds, SEAWINDS LEVEL 3 V2 [time][lat][lon][pass], 0.25\u00b0, 2003", "Top Dataset, seawinds, SEAWINDS LEVEL 3 V2\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude][pass]):\nrep_wind_speed (m/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_abfa_af2b_c137_fgdc.xml", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_abfa_af2b_c137/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_abfa_af2b_c137.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_abfa_af2b_c137&showErrors=false&email=", "NASA JPL", "nasa_jpl_abfa_af2b_c137"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d29_8875_e4d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d29_8875_e4d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0d29_8875_e4d5/request", "", "public", "Top Dataset, sigma, chi.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nchi (Monthly Longterm Mean of Velocity Potential, m*m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0d29_8875_e4d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0d29_8875_e4d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0d29_8875_e4d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0d29_8875_e4d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0d29_8875_e4d5&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0d29_8875_e4d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_558c_c612_c428", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_558c_c612_c428.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_558c_c612_c428/request", "", "public", "Top Dataset, sigma, div.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ndiv (Monthly Longterm Mean of Divergence, 1./s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_558c_c612_c428_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_558c_c612_c428_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_558c_c612_c428/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_558c_c612_c428.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_558c_c612_c428&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_558c_c612_c428"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e81f_e6e3_2356", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e81f_e6e3_2356.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e81f_e6e3_2356/request", "", "public", "Top Dataset, sigma, psi.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\npsi (Monthly Longterm Mean of Streamfunction, m*m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e81f_e6e3_2356_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e81f_e6e3_2356_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e81f_e6e3_2356/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e81f_e6e3_2356.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e81f_e6e3_2356&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e81f_e6e3_2356"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1f1_2f94_c19d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1f1_2f94_c19d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f1f1_2f94_c19d/request", "", "public", "Top Dataset, sigma, vor.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvor (Monthly Longterm Mean of Vorticity, 1./s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f1f1_2f94_c19d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f1f1_2f94_c19d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f1f1_2f94_c19d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f1f1_2f94_c19d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f1f1_2f94_c19d&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f1f1_2f94_c19d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_317b_50a2_0c0b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_317b_50a2_0c0b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_317b_50a2_0c0b/request", "", "public", "Top Dataset, spectral, chi.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nchi (Monthly Longterm Mean of Velocity Potential, m*m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_317b_50a2_0c0b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_317b_50a2_0c0b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_317b_50a2_0c0b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_317b_50a2_0c0b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_317b_50a2_0c0b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_317b_50a2_0c0b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b440_b577_4de6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b440_b577_4de6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b440_b577_4de6/request", "", "public", "Top Dataset, spectral, div.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ndiv (Monthly Longterm Mean of Divergence, 1./s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b440_b577_4de6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b440_b577_4de6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b440_b577_4de6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b440_b577_4de6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b440_b577_4de6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b440_b577_4de6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5115_6cca_caed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5115_6cca_caed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5115_6cca_caed/request", "", "public", "Top Dataset, spectral, psi.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\npsi (Monthly Longterm Mean of Streamfunction, m*m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5115_6cca_caed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5115_6cca_caed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5115_6cca_caed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5115_6cca_caed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5115_6cca_caed&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5115_6cca_caed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e546_8222_4c91", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e546_8222_4c91.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e546_8222_4c91/request", "", "public", "Top Dataset, spectral, vor.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvor (Monthly Longterm Mean of Vorticity, 1./s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e546_8222_4c91_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e546_8222_4c91_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e546_8222_4c91/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e546_8222_4c91.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e546_8222_4c91&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e546_8222_4c91"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_55c6_50b5_37d8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_55c6_50b5_37d8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_55c6_50b5_37d8/request", "", "public", "Top Dataset, std, air.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_55c6_50b5_37d8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_55c6_50b5_37d8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_55c6_50b5_37d8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_55c6_50b5_37d8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_55c6_50b5_37d8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_55c6_50b5_37d8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87a0_8fb3_1f7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87a0_8fb3_1f7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_87a0_8fb3_1f7b/request", "", "public", "Top Dataset, std, air.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_87a0_8fb3_1f7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_87a0_8fb3_1f7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_87a0_8fb3_1f7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_87a0_8fb3_1f7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_87a0_8fb3_1f7b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_87a0_8fb3_1f7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f180_70ff_7cf0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f180_70ff_7cf0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f180_70ff_7cf0/request", "", "public", "Top Dataset, std, air.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f180_70ff_7cf0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f180_70ff_7cf0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f180_70ff_7cf0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f180_70ff_7cf0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f180_70ff_7cf0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f180_70ff_7cf0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9ef_c222_d816", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9ef_c222_d816.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f9ef_c222_d816/request", "", "public", "Top Dataset, std, air.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f9ef_c222_d816_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f9ef_c222_d816_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f9ef_c222_d816/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f9ef_c222_d816.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f9ef_c222_d816&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f9ef_c222_d816"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5621_38b2_1d5e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5621_38b2_1d5e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5621_38b2_1d5e/request", "", "public", "Top Dataset, std, air.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5621_38b2_1d5e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5621_38b2_1d5e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5621_38b2_1d5e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5621_38b2_1d5e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5621_38b2_1d5e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5621_38b2_1d5e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88e3_7343_c86b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88e3_7343_c86b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_88e3_7343_c86b/request", "", "public", "Top Dataset, std, air.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_88e3_7343_c86b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_88e3_7343_c86b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_88e3_7343_c86b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_88e3_7343_c86b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_88e3_7343_c86b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_88e3_7343_c86b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06d9_2289_c5ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06d9_2289_c5ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_06d9_2289_c5ea/request", "", "public", "Top Dataset, std, air.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_06d9_2289_c5ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_06d9_2289_c5ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_06d9_2289_c5ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_06d9_2289_c5ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_06d9_2289_c5ea&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_06d9_2289_c5ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54c9_d804_a6e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54c9_d804_a6e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54c9_d804_a6e1/request", "", "public", "Top Dataset, std, air.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54c9_d804_a6e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54c9_d804_a6e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54c9_d804_a6e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54c9_d804_a6e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54c9_d804_a6e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_54c9_d804_a6e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7264_c70d_0347", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7264_c70d_0347.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7264_c70d_0347/request", "", "public", "Top Dataset, std, air.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7264_c70d_0347_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7264_c70d_0347_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7264_c70d_0347/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7264_c70d_0347.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7264_c70d_0347&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7264_c70d_0347"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddbc_490b_81b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddbc_490b_81b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ddbc_490b_81b7/request", "", "public", "Top Dataset, std, air.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ddbc_490b_81b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ddbc_490b_81b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ddbc_490b_81b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ddbc_490b_81b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ddbc_490b_81b7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ddbc_490b_81b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05fc_c46d_f8da", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05fc_c46d_f8da.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_05fc_c46d_f8da/request", "", "public", "Top Dataset, std, air.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_05fc_c46d_f8da_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_05fc_c46d_f8da_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_05fc_c46d_f8da/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_05fc_c46d_f8da.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_05fc_c46d_f8da&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_05fc_c46d_f8da"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af99_3f0c_0a07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af99_3f0c_0a07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_af99_3f0c_0a07/request", "", "public", "Top Dataset, std, air.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_af99_3f0c_0a07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_af99_3f0c_0a07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_af99_3f0c_0a07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_af99_3f0c_0a07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_af99_3f0c_0a07&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_af99_3f0c_0a07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4415_1776_3568", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4415_1776_3568.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4415_1776_3568/request", "", "public", "Top Dataset, std, air.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4415_1776_3568_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4415_1776_3568_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4415_1776_3568/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4415_1776_3568.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4415_1776_3568&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4415_1776_3568"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_649d_54ee_de6f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_649d_54ee_de6f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_649d_54ee_de6f/request", "", "public", "Top Dataset, std, air.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_649d_54ee_de6f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_649d_54ee_de6f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_649d_54ee_de6f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_649d_54ee_de6f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_649d_54ee_de6f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_649d_54ee_de6f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9686_5b7d_0fcd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9686_5b7d_0fcd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9686_5b7d_0fcd/request", "", "public", "Top Dataset, std, air.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9686_5b7d_0fcd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9686_5b7d_0fcd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9686_5b7d_0fcd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9686_5b7d_0fcd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9686_5b7d_0fcd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9686_5b7d_0fcd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4113_4c01_7361", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4113_4c01_7361.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4113_4c01_7361/request", "", "public", "Top Dataset, std, air.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4113_4c01_7361_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4113_4c01_7361_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4113_4c01_7361/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4113_4c01_7361.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4113_4c01_7361&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4113_4c01_7361"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35b3_d379_751f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35b3_d379_751f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_35b3_d379_751f/request", "", "public", "Top Dataset, std, air.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_35b3_d379_751f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_35b3_d379_751f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_35b3_d379_751f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_35b3_d379_751f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_35b3_d379_751f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_35b3_d379_751f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b72e_c88f_d557", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b72e_c88f_d557.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b72e_c88f_d557/request", "", "public", "Top Dataset, std, air.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b72e_c88f_d557_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b72e_c88f_d557_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b72e_c88f_d557/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b72e_c88f_d557.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b72e_c88f_d557&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b72e_c88f_d557"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2b9_abed_1226", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2b9_abed_1226.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a2b9_abed_1226/request", "", "public", "Top Dataset, std, air.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a2b9_abed_1226_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a2b9_abed_1226_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a2b9_abed_1226/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a2b9_abed_1226.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a2b9_abed_1226&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a2b9_abed_1226"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a740_2c79_88b2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a740_2c79_88b2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a740_2c79_88b2/request", "", "public", "Top Dataset, std, air.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a740_2c79_88b2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a740_2c79_88b2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a740_2c79_88b2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a740_2c79_88b2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a740_2c79_88b2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a740_2c79_88b2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b29d_c87d_393e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b29d_c87d_393e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b29d_c87d_393e/request", "", "public", "Top Dataset, std, air.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b29d_c87d_393e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b29d_c87d_393e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b29d_c87d_393e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b29d_c87d_393e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b29d_c87d_393e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b29d_c87d_393e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d97_e088_d4ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d97_e088_d4ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2d97_e088_d4ae/request", "", "public", "Top Dataset, std, air.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2d97_e088_d4ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2d97_e088_d4ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d97_e088_d4ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d97_e088_d4ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d97_e088_d4ae&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2d97_e088_d4ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_512e_034d_e754", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_512e_034d_e754.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_512e_034d_e754/request", "", "public", "Top Dataset, std, air.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_512e_034d_e754_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_512e_034d_e754_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_512e_034d_e754/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_512e_034d_e754.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_512e_034d_e754&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_512e_034d_e754"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a29c_1c02_6d01", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a29c_1c02_6d01.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a29c_1c02_6d01/request", "", "public", "Top Dataset, std, air.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a29c_1c02_6d01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a29c_1c02_6d01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a29c_1c02_6d01/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a29c_1c02_6d01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a29c_1c02_6d01&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a29c_1c02_6d01"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec56_7e25_a2ed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec56_7e25_a2ed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ec56_7e25_a2ed/request", "", "public", "Top Dataset, std, air.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ec56_7e25_a2ed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ec56_7e25_a2ed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ec56_7e25_a2ed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ec56_7e25_a2ed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ec56_7e25_a2ed&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ec56_7e25_a2ed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d95_c1b6_e7fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d95_c1b6_e7fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d95_c1b6_e7fc/request", "", "public", "Top Dataset, std, air.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d95_c1b6_e7fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d95_c1b6_e7fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d95_c1b6_e7fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d95_c1b6_e7fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d95_c1b6_e7fc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8d95_c1b6_e7fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfe2_3fbd_c880", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfe2_3fbd_c880.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cfe2_3fbd_c880/request", "", "public", "Top Dataset, std, air.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cfe2_3fbd_c880_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cfe2_3fbd_c880_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cfe2_3fbd_c880/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cfe2_3fbd_c880.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cfe2_3fbd_c880&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cfe2_3fbd_c880"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3f7_9003_33a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3f7_9003_33a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f3f7_9003_33a0/request", "", "public", "Top Dataset, std, air.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f3f7_9003_33a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f3f7_9003_33a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f3f7_9003_33a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f3f7_9003_33a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f3f7_9003_33a0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f3f7_9003_33a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ad5_08f0_c98b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ad5_08f0_c98b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ad5_08f0_c98b/request", "", "public", "Top Dataset, std, air.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ad5_08f0_c98b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ad5_08f0_c98b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ad5_08f0_c98b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ad5_08f0_c98b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ad5_08f0_c98b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4ad5_08f0_c98b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a13_26ea_4d56", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a13_26ea_4d56.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a13_26ea_4d56/request", "", "public", "Top Dataset, std, air.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a13_26ea_4d56_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a13_26ea_4d56_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a13_26ea_4d56/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a13_26ea_4d56.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a13_26ea_4d56&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7a13_26ea_4d56"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb9a_8f65_4783", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb9a_8f65_4783.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb9a_8f65_4783/request", "", "public", "Top Dataset, std, air.mon.anom.biased2.5 (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.biased2.5.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly 2.5 Bias Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb9a_8f65_4783_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb9a_8f65_4783_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb9a_8f65_4783/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb9a_8f65_4783.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb9a_8f65_4783&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fb9a_8f65_4783"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08b8_4b79_072d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08b8_4b79_072d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_08b8_4b79_072d/request", "", "public", "Top Dataset, std, air.mon.anom.biased97.5 (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.biased97.5.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly 97.5 Bias Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_08b8_4b79_072d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_08b8_4b79_072d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_08b8_4b79_072d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_08b8_4b79_072d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_08b8_4b79_072d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_08b8_4b79_072d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fc4_7974_6ee1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fc4_7974_6ee1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8fc4_7974_6ee1/request", "", "public", "Top Dataset, std, air.mon.anom.nobs (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.nobs.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Number of Observations, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8fc4_7974_6ee1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8fc4_7974_6ee1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8fc4_7974_6ee1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8fc4_7974_6ee1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8fc4_7974_6ee1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8fc4_7974_6ee1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1123_8add_cc23", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1123_8add_cc23.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1123_8add_cc23/request", "", "public", "Top Dataset, std, air.mon.anom.samplingerror (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.samplingerror.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Sampling Error, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1123_8add_cc23_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1123_8add_cc23_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1123_8add_cc23/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1123_8add_cc23.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1123_8add_cc23&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1123_8add_cc23"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7168_64d1_22b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7168_64d1_22b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7168_64d1_22b7/request", "", "public", "Top Dataset, std, air.mon.anom.stationerror (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.stationerror.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Station Errors, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7168_64d1_22b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7168_64d1_22b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7168_64d1_22b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7168_64d1_22b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7168_64d1_22b7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7168_64d1_22b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57db_4e67_9d5e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57db_4e67_9d5e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_57db_4e67_9d5e/request", "", "public", "Top Dataset, std, air.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_57db_4e67_9d5e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_57db_4e67_9d5e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_57db_4e67_9d5e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_57db_4e67_9d5e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_57db_4e67_9d5e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_57db_4e67_9d5e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0408_57be_ff7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0408_57be_ff7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0408_57be_ff7b/request", "", "public", "Top Dataset, std, air.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0408_57be_ff7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0408_57be_ff7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0408_57be_ff7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0408_57be_ff7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0408_57be_ff7b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0408_57be_ff7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f092_c0e1_d446", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f092_c0e1_d446.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f092_c0e1_d446/request", "", "public", "Top Dataset, std, air.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f092_c0e1_d446_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f092_c0e1_d446_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f092_c0e1_d446/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f092_c0e1_d446.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f092_c0e1_d446&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f092_c0e1_d446"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e01_c671_5af3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e01_c671_5af3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e01_c671_5af3/request", "", "public", "Top Dataset, std, air.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e01_c671_5af3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e01_c671_5af3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e01_c671_5af3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e01_c671_5af3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e01_c671_5af3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0e01_c671_5af3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5226_984e_a9b4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5226_984e_a9b4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5226_984e_a9b4/request", "", "public", "Top Dataset, std, air.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5226_984e_a9b4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5226_984e_a9b4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5226_984e_a9b4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5226_984e_a9b4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5226_984e_a9b4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5226_984e_a9b4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_994b_a6b8_2299", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_994b_a6b8_2299.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_994b_a6b8_2299/request", "", "public", "Top Dataset, std, air.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_994b_a6b8_2299_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_994b_a6b8_2299_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_994b_a6b8_2299/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_994b_a6b8_2299.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_994b_a6b8_2299&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_994b_a6b8_2299"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa1c_7803_7015", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa1c_7803_7015.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa1c_7803_7015/request", "", "public", "Top Dataset, std, air.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa1c_7803_7015_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa1c_7803_7015_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa1c_7803_7015/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa1c_7803_7015.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa1c_7803_7015&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_aa1c_7803_7015"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d2d_c253_dd0a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d2d_c253_dd0a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2d2d_c253_dd0a/request", "", "public", "Top Dataset, std, air.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2d2d_c253_dd0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2d2d_c253_dd0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d2d_c253_dd0a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d2d_c253_dd0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d2d_c253_dd0a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2d2d_c253_dd0a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5f3_9de4_5b63", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5f3_9de4_5b63.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5f3_9de4_5b63/request", "", "public", "Top Dataset, std, air.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5f3_9de4_5b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5f3_9de4_5b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5f3_9de4_5b63/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5f3_9de4_5b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5f3_9de4_5b63&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a5f3_9de4_5b63"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14da_1084_0d2b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14da_1084_0d2b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_14da_1084_0d2b/request", "", "public", "Top Dataset, std, air.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_14da_1084_0d2b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_14da_1084_0d2b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_14da_1084_0d2b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_14da_1084_0d2b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_14da_1084_0d2b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_14da_1084_0d2b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ab9_be36_d91d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ab9_be36_d91d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6ab9_be36_d91d/request", "", "public", "Top Dataset, std, air.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6ab9_be36_d91d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6ab9_be36_d91d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ab9_be36_d91d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ab9_be36_d91d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ab9_be36_d91d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6ab9_be36_d91d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9372_17aa_7600", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9372_17aa_7600.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9372_17aa_7600/request", "", "public", "Top Dataset, std, air.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9372_17aa_7600_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9372_17aa_7600_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9372_17aa_7600/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9372_17aa_7600.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9372_17aa_7600&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9372_17aa_7600"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_596f_d2c8_dd74", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_596f_d2c8_dd74.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_596f_d2c8_dd74/request", "", "public", "Top Dataset, std, air.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_596f_d2c8_dd74_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_596f_d2c8_dd74_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_596f_d2c8_dd74/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_596f_d2c8_dd74.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_596f_d2c8_dd74&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_596f_d2c8_dd74"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8513_7905_6513", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8513_7905_6513.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8513_7905_6513/request", "", "public", "Top Dataset, std, air.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8513_7905_6513_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8513_7905_6513_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8513_7905_6513/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8513_7905_6513.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8513_7905_6513&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8513_7905_6513"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf4c_8700_bb23", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf4c_8700_bb23.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf4c_8700_bb23/request", "", "public", "Top Dataset, std, air.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf4c_8700_bb23_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf4c_8700_bb23_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf4c_8700_bb23/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf4c_8700_bb23.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf4c_8700_bb23&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bf4c_8700_bb23"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ee6_ada9_1fd7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ee6_ada9_1fd7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ee6_ada9_1fd7/request", "", "public", "Top Dataset, std, air.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ee6_ada9_1fd7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ee6_ada9_1fd7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ee6_ada9_1fd7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ee6_ada9_1fd7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ee6_ada9_1fd7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7ee6_ada9_1fd7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_018f_77a3_a6b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_018f_77a3_a6b1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_018f_77a3_a6b1/request", "", "public", "Top Dataset, std, air.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_018f_77a3_a6b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_018f_77a3_a6b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_018f_77a3_a6b1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_018f_77a3_a6b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_018f_77a3_a6b1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_018f_77a3_a6b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e57_57ad_d638", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e57_57ad_d638.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1e57_57ad_d638/request", "", "public", "Top Dataset, std, air.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1e57_57ad_d638_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1e57_57ad_d638_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1e57_57ad_d638/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1e57_57ad_d638.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1e57_57ad_d638&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1e57_57ad_d638"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a220_3000_7652", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a220_3000_7652.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a220_3000_7652/request", "", "public", "Top Dataset, std, air.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a220_3000_7652_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a220_3000_7652_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a220_3000_7652/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a220_3000_7652.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a220_3000_7652&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a220_3000_7652"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_84a6_849c_92cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_84a6_849c_92cc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_84a6_849c_92cc/request", "", "public", "Top Dataset, std, air.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_84a6_849c_92cc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_84a6_849c_92cc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_84a6_849c_92cc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_84a6_849c_92cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_84a6_849c_92cc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_84a6_849c_92cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f17d_22d0_af5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f17d_22d0_af5b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f17d_22d0_af5b/request", "", "public", "Top Dataset, std, air.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f17d_22d0_af5b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f17d_22d0_af5b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f17d_22d0_af5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f17d_22d0_af5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f17d_22d0_af5b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f17d_22d0_af5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_851c_ee30_e1e7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_851c_ee30_e1e7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_851c_ee30_e1e7/request", "", "public", "Top Dataset, std, air.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_851c_ee30_e1e7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_851c_ee30_e1e7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_851c_ee30_e1e7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_851c_ee30_e1e7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_851c_ee30_e1e7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_851c_ee30_e1e7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c347_4993_243b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c347_4993_243b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c347_4993_243b/request", "", "public", "Top Dataset, std, air.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c347_4993_243b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c347_4993_243b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c347_4993_243b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c347_4993_243b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c347_4993_243b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c347_4993_243b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e00e_7347_829c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e00e_7347_829c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e00e_7347_829c/request", "", "public", "Top Dataset, std, air.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e00e_7347_829c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e00e_7347_829c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e00e_7347_829c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e00e_7347_829c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e00e_7347_829c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e00e_7347_829c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e763_2400_eba9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e763_2400_eba9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e763_2400_eba9/request", "", "public", "Top Dataset, std, air.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e763_2400_eba9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e763_2400_eba9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e763_2400_eba9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e763_2400_eba9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e763_2400_eba9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e763_2400_eba9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13ad_3a91_72b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13ad_3a91_72b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_13ad_3a91_72b8/request", "", "public", "Top Dataset, std, air.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_13ad_3a91_72b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_13ad_3a91_72b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_13ad_3a91_72b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_13ad_3a91_72b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_13ad_3a91_72b8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_13ad_3a91_72b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a3d_c588_a5fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a3d_c588_a5fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a3d_c588_a5fc/request", "", "public", "Top Dataset, std, air.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a3d_c588_a5fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a3d_c588_a5fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a3d_c588_a5fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a3d_c588_a5fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a3d_c588_a5fc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7a3d_c588_a5fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_329a_84c3_fdbf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_329a_84c3_fdbf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_329a_84c3_fdbf/request", "", "public", "Top Dataset, std, air.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_329a_84c3_fdbf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_329a_84c3_fdbf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_329a_84c3_fdbf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_329a_84c3_fdbf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_329a_84c3_fdbf&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_329a_84c3_fdbf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_489f_1501_eab3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_489f_1501_eab3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_489f_1501_eab3/request", "", "public", "Top Dataset, std, air.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_489f_1501_eab3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_489f_1501_eab3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_489f_1501_eab3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_489f_1501_eab3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_489f_1501_eab3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_489f_1501_eab3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85f4_f4ab_cbdc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85f4_f4ab_cbdc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_85f4_f4ab_cbdc/request", "", "public", "Top Dataset, std, air.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_85f4_f4ab_cbdc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_85f4_f4ab_cbdc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85f4_f4ab_cbdc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85f4_f4ab_cbdc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85f4_f4ab_cbdc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_85f4_f4ab_cbdc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35a3_17c8_190b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35a3_17c8_190b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_35a3_17c8_190b/request", "", "public", "Top Dataset, std, cldc.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_35a3_17c8_190b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_35a3_17c8_190b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_35a3_17c8_190b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_35a3_17c8_190b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_35a3_17c8_190b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_35a3_17c8_190b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9dba_e7b1_7e78", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9dba_e7b1_7e78.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9dba_e7b1_7e78/request", "", "public", "Top Dataset, std, cldc.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9dba_e7b1_7e78_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9dba_e7b1_7e78_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9dba_e7b1_7e78/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9dba_e7b1_7e78.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9dba_e7b1_7e78&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9dba_e7b1_7e78"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1f0_f852_3780", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1f0_f852_3780.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d1f0_f852_3780/request", "", "public", "Top Dataset, std, cldc.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d1f0_f852_3780_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d1f0_f852_3780_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d1f0_f852_3780/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d1f0_f852_3780.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d1f0_f852_3780&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d1f0_f852_3780"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a3c6_472f_d27d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a3c6_472f_d27d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a3c6_472f_d27d/request", "", "public", "Top Dataset, std, cldc.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a3c6_472f_d27d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a3c6_472f_d27d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a3c6_472f_d27d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a3c6_472f_d27d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a3c6_472f_d27d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a3c6_472f_d27d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df4a_9c60_1988", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df4a_9c60_1988.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_df4a_9c60_1988/request", "", "public", "Top Dataset, std, cldc.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_df4a_9c60_1988_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_df4a_9c60_1988_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_df4a_9c60_1988/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_df4a_9c60_1988.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_df4a_9c60_1988&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_df4a_9c60_1988"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e70f_5266_269b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e70f_5266_269b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e70f_5266_269b/request", "", "public", "Top Dataset, std, cldc.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e70f_5266_269b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e70f_5266_269b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e70f_5266_269b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e70f_5266_269b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e70f_5266_269b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e70f_5266_269b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_61c2_48d8_4801", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_61c2_48d8_4801.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_61c2_48d8_4801/request", "", "public", "Top Dataset, std, cldc.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_61c2_48d8_4801_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_61c2_48d8_4801_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_61c2_48d8_4801/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_61c2_48d8_4801.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_61c2_48d8_4801&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_61c2_48d8_4801"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_329b_88f4_b203", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_329b_88f4_b203.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_329b_88f4_b203/request", "", "public", "Top Dataset, std, cldc.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_329b_88f4_b203_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_329b_88f4_b203_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_329b_88f4_b203/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_329b_88f4_b203.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_329b_88f4_b203&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_329b_88f4_b203"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4751_1fc3_0b37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4751_1fc3_0b37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4751_1fc3_0b37/request", "", "public", "Top Dataset, std, cldc.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4751_1fc3_0b37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4751_1fc3_0b37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4751_1fc3_0b37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4751_1fc3_0b37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4751_1fc3_0b37&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4751_1fc3_0b37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94bf_dfd2_1855", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94bf_dfd2_1855.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_94bf_dfd2_1855/request", "", "public", "Top Dataset, std, cldc.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_94bf_dfd2_1855_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_94bf_dfd2_1855_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_94bf_dfd2_1855/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_94bf_dfd2_1855.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_94bf_dfd2_1855&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_94bf_dfd2_1855"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21d8_4d39_a5a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21d8_4d39_a5a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_21d8_4d39_a5a7/request", "", "public", "Top Dataset, std, cldc.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_21d8_4d39_a5a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_21d8_4d39_a5a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_21d8_4d39_a5a7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_21d8_4d39_a5a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_21d8_4d39_a5a7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_21d8_4d39_a5a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24bf_fccc_3ac8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24bf_fccc_3ac8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_24bf_fccc_3ac8/request", "", "public", "Top Dataset, std, cldc.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_24bf_fccc_3ac8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_24bf_fccc_3ac8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_24bf_fccc_3ac8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_24bf_fccc_3ac8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_24bf_fccc_3ac8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_24bf_fccc_3ac8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a679_e912_1f65", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a679_e912_1f65.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a679_e912_1f65/request", "", "public", "Top Dataset, std, cldc.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a679_e912_1f65_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a679_e912_1f65_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a679_e912_1f65/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a679_e912_1f65.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a679_e912_1f65&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a679_e912_1f65"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2828_8fe4_18e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2828_8fe4_18e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2828_8fe4_18e2/request", "", "public", "Top Dataset, std, cldc.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2828_8fe4_18e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2828_8fe4_18e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2828_8fe4_18e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2828_8fe4_18e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2828_8fe4_18e2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2828_8fe4_18e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3eb_7f33_0f00", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3eb_7f33_0f00.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f3eb_7f33_0f00/request", "", "public", "Top Dataset, std, cldc.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f3eb_7f33_0f00_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f3eb_7f33_0f00_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f3eb_7f33_0f00/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f3eb_7f33_0f00.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f3eb_7f33_0f00&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f3eb_7f33_0f00"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f14_0783_c3dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f14_0783_c3dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3f14_0783_c3dc/request", "", "public", "Top Dataset, std, cldc.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3f14_0783_c3dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3f14_0783_c3dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3f14_0783_c3dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3f14_0783_c3dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3f14_0783_c3dc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3f14_0783_c3dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38c9_1415_ac9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38c9_1415_ac9f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_38c9_1415_ac9f/request", "", "public", "Top Dataset, std, cldc.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_38c9_1415_ac9f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_38c9_1415_ac9f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_38c9_1415_ac9f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_38c9_1415_ac9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_38c9_1415_ac9f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_38c9_1415_ac9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_acb4_3751_6eae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_acb4_3751_6eae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_acb4_3751_6eae/request", "", "public", "Top Dataset, std, cldc.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_acb4_3751_6eae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_acb4_3751_6eae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_acb4_3751_6eae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_acb4_3751_6eae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_acb4_3751_6eae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_acb4_3751_6eae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20c5_b0ae_a027", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20c5_b0ae_a027.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_20c5_b0ae_a027/request", "", "public", "Top Dataset, std, cldc.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_20c5_b0ae_a027_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_20c5_b0ae_a027_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_20c5_b0ae_a027/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_20c5_b0ae_a027.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_20c5_b0ae_a027&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_20c5_b0ae_a027"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a55_b9ab_acae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a55_b9ab_acae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a55_b9ab_acae/request", "", "public", "Top Dataset, std, cldc.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a55_b9ab_acae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a55_b9ab_acae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a55_b9ab_acae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a55_b9ab_acae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a55_b9ab_acae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5a55_b9ab_acae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8daa_28b5_ea1b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8daa_28b5_ea1b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8daa_28b5_ea1b/request", "", "public", "Top Dataset, std, cldc.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8daa_28b5_ea1b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8daa_28b5_ea1b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8daa_28b5_ea1b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8daa_28b5_ea1b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8daa_28b5_ea1b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8daa_28b5_ea1b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b636_303b_52b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b636_303b_52b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b636_303b_52b6/request", "", "public", "Top Dataset, std, cldc.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b636_303b_52b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b636_303b_52b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b636_303b_52b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b636_303b_52b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b636_303b_52b6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b636_303b_52b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c06d_641c_d38a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c06d_641c_d38a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c06d_641c_d38a/request", "", "public", "Top Dataset, std, cldc.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c06d_641c_d38a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c06d_641c_d38a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c06d_641c_d38a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c06d_641c_d38a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c06d_641c_d38a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c06d_641c_d38a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff96_1447_5678", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff96_1447_5678.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff96_1447_5678/request", "", "public", "Top Dataset, std, cldc.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff96_1447_5678_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff96_1447_5678_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff96_1447_5678/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff96_1447_5678.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff96_1447_5678&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ff96_1447_5678"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd94_ea36_6112", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd94_ea36_6112.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cd94_ea36_6112/request", "", "public", "Top Dataset, std, cldc.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cd94_ea36_6112_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cd94_ea36_6112_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cd94_ea36_6112/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cd94_ea36_6112.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cd94_ea36_6112&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cd94_ea36_6112"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2a2d_90d4_12d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2a2d_90d4_12d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2a2d_90d4_12d3/request", "", "public", "Top Dataset, std, cldc.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2a2d_90d4_12d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2a2d_90d4_12d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2a2d_90d4_12d3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2a2d_90d4_12d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2a2d_90d4_12d3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2a2d_90d4_12d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4cff_85dd_b8fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4cff_85dd_b8fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4cff_85dd_b8fb/request", "", "public", "Top Dataset, std, cldc.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4cff_85dd_b8fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4cff_85dd_b8fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4cff_85dd_b8fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4cff_85dd_b8fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4cff_85dd_b8fb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4cff_85dd_b8fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_49a5_2fa3_981b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_49a5_2fa3_981b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_49a5_2fa3_981b/request", "", "public", "Top Dataset, std, cldc.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_49a5_2fa3_981b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_49a5_2fa3_981b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_49a5_2fa3_981b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_49a5_2fa3_981b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_49a5_2fa3_981b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_49a5_2fa3_981b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d35_b91a_c2ad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d35_b91a_c2ad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d35_b91a_c2ad/request", "", "public", "Top Dataset, std, cldc.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d35_b91a_c2ad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d35_b91a_c2ad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d35_b91a_c2ad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d35_b91a_c2ad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d35_b91a_c2ad&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d35_b91a_c2ad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f422_a475_1df5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f422_a475_1df5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f422_a475_1df5/request", "", "public", "Top Dataset, std, cldc.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f422_a475_1df5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f422_a475_1df5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f422_a475_1df5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f422_a475_1df5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f422_a475_1df5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f422_a475_1df5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d40_55f3_f3a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d40_55f3_f3a8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d40_55f3_f3a8/request", "", "public", "Top Dataset, std, cldc.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d40_55f3_f3a8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d40_55f3_f3a8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d40_55f3_f3a8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d40_55f3_f3a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d40_55f3_f3a8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3d40_55f3_f3a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_29d7_c209_90d8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_29d7_c209_90d8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_29d7_c209_90d8/request", "", "public", "Top Dataset, std, cldc.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_29d7_c209_90d8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_29d7_c209_90d8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_29d7_c209_90d8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_29d7_c209_90d8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_29d7_c209_90d8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_29d7_c209_90d8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f5b_089a_ee7c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f5b_089a_ee7c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f5b_089a_ee7c/request", "", "public", "Top Dataset, std, cldc.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f5b_089a_ee7c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f5b_089a_ee7c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f5b_089a_ee7c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f5b_089a_ee7c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f5b_089a_ee7c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2f5b_089a_ee7c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97f1_723c_8070", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97f1_723c_8070.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_97f1_723c_8070/request", "", "public", "Top Dataset, std, cldc.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_97f1_723c_8070_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_97f1_723c_8070_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_97f1_723c_8070/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_97f1_723c_8070.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_97f1_723c_8070&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_97f1_723c_8070"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78d8_a93f_d168", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78d8_a93f_d168.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_78d8_a93f_d168/request", "", "public", "Top Dataset, std, cldc.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_78d8_a93f_d168_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_78d8_a93f_d168_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_78d8_a93f_d168/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_78d8_a93f_d168.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_78d8_a93f_d168&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_78d8_a93f_d168"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca64_e8e6_bd6d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca64_e8e6_bd6d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca64_e8e6_bd6d/request", "", "public", "Top Dataset, std, cldc.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca64_e8e6_bd6d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca64_e8e6_bd6d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca64_e8e6_bd6d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca64_e8e6_bd6d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca64_e8e6_bd6d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ca64_e8e6_bd6d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_61b1_9841_3e78", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_61b1_9841_3e78.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_61b1_9841_3e78/request", "", "public", "Top Dataset, std, cldc.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_61b1_9841_3e78_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_61b1_9841_3e78_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_61b1_9841_3e78/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_61b1_9841_3e78.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_61b1_9841_3e78&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_61b1_9841_3e78"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dba_ff89_f8ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dba_ff89_f8ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1dba_ff89_f8ca/request", "", "public", "Top Dataset, std, cldc.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1dba_ff89_f8ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1dba_ff89_f8ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1dba_ff89_f8ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1dba_ff89_f8ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1dba_ff89_f8ca&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1dba_ff89_f8ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6e4_9935_f795", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6e4_9935_f795.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f6e4_9935_f795/request", "", "public", "Top Dataset, std, cldc.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f6e4_9935_f795_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f6e4_9935_f795_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f6e4_9935_f795/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f6e4_9935_f795.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f6e4_9935_f795&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f6e4_9935_f795"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da0c_63eb_e31f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da0c_63eb_e31f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da0c_63eb_e31f/request", "", "public", "Top Dataset, std, cldc.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da0c_63eb_e31f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da0c_63eb_e31f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da0c_63eb_e31f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da0c_63eb_e31f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da0c_63eb_e31f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_da0c_63eb_e31f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_716f_70ae_e9a9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_716f_70ae_e9a9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_716f_70ae_e9a9/request", "", "public", "Top Dataset, std, cldc.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_716f_70ae_e9a9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_716f_70ae_e9a9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_716f_70ae_e9a9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_716f_70ae_e9a9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_716f_70ae_e9a9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_716f_70ae_e9a9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de7d_5336_a267", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de7d_5336_a267.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_de7d_5336_a267/request", "", "public", "Top Dataset, std, cldc.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_de7d_5336_a267_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_de7d_5336_a267_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_de7d_5336_a267/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_de7d_5336_a267.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_de7d_5336_a267&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_de7d_5336_a267"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a6a_bc6d_b56b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a6a_bc6d_b56b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1a6a_bc6d_b56b/request", "", "public", "Top Dataset, std, cldc.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1a6a_bc6d_b56b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1a6a_bc6d_b56b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1a6a_bc6d_b56b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1a6a_bc6d_b56b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1a6a_bc6d_b56b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1a6a_bc6d_b56b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6520_2866_91f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6520_2866_91f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6520_2866_91f2/request", "", "public", "Top Dataset, std, cldc.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6520_2866_91f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6520_2866_91f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6520_2866_91f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6520_2866_91f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6520_2866_91f2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6520_2866_91f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e8c4_01a7_5a88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e8c4_01a7_5a88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e8c4_01a7_5a88/request", "", "public", "Top Dataset, std, cldc.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e8c4_01a7_5a88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e8c4_01a7_5a88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e8c4_01a7_5a88/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e8c4_01a7_5a88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e8c4_01a7_5a88&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e8c4_01a7_5a88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2b6_3047_4881", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2b6_3047_4881.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a2b6_3047_4881/request", "", "public", "Top Dataset, std, cldc.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a2b6_3047_4881_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a2b6_3047_4881_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a2b6_3047_4881/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a2b6_3047_4881.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a2b6_3047_4881&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a2b6_3047_4881"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d122_f0c4_cfc2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d122_f0c4_cfc2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d122_f0c4_cfc2/request", "", "public", "Top Dataset, std, cldc.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d122_f0c4_cfc2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d122_f0c4_cfc2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d122_f0c4_cfc2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d122_f0c4_cfc2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d122_f0c4_cfc2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d122_f0c4_cfc2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbc4_2c9a_7b24", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbc4_2c9a_7b24.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dbc4_2c9a_7b24/request", "", "public", "Top Dataset, std, cldc.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dbc4_2c9a_7b24_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dbc4_2c9a_7b24_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dbc4_2c9a_7b24/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dbc4_2c9a_7b24.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dbc4_2c9a_7b24&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dbc4_2c9a_7b24"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fff6_6dc6_8f85", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fff6_6dc6_8f85.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fff6_6dc6_8f85/request", "", "public", "Top Dataset, std, cldc.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fff6_6dc6_8f85_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fff6_6dc6_8f85_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fff6_6dc6_8f85/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fff6_6dc6_8f85.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fff6_6dc6_8f85&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fff6_6dc6_8f85"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_624f_e6ec_d97e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_624f_e6ec_d97e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_624f_e6ec_d97e/request", "", "public", "Top Dataset, std, cldc.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_624f_e6ec_d97e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_624f_e6ec_d97e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_624f_e6ec_d97e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_624f_e6ec_d97e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_624f_e6ec_d97e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_624f_e6ec_d97e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63ea_895d_a6ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63ea_895d_a6ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_63ea_895d_a6ec/request", "", "public", "Top Dataset, std, cldc.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_63ea_895d_a6ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_63ea_895d_a6ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_63ea_895d_a6ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_63ea_895d_a6ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_63ea_895d_a6ec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_63ea_895d_a6ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9daa_2661_4a75", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9daa_2661_4a75.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9daa_2661_4a75/request", "", "public", "Top Dataset, std, cldc.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9daa_2661_4a75_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9daa_2661_4a75_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9daa_2661_4a75/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9daa_2661_4a75.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9daa_2661_4a75&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9daa_2661_4a75"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1495_4568_eead", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1495_4568_eead.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1495_4568_eead/request", "", "public", "Top Dataset, std, cldc.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1495_4568_eead_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1495_4568_eead_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1495_4568_eead/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1495_4568_eead.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1495_4568_eead&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1495_4568_eead"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86b5_0b7a_3921", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86b5_0b7a_3921.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_86b5_0b7a_3921/request", "", "public", "Top Dataset, std, cldc.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86b5_0b7a_3921_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86b5_0b7a_3921_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86b5_0b7a_3921/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86b5_0b7a_3921.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86b5_0b7a_3921&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_86b5_0b7a_3921"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc71_cfb3_9855", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc71_cfb3_9855.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc71_cfb3_9855/request", "", "public", "Top Dataset, std, cldc.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc71_cfb3_9855_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc71_cfb3_9855_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc71_cfb3_9855/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc71_cfb3_9855.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc71_cfb3_9855&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fc71_cfb3_9855"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ffe_17a3_ab0a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ffe_17a3_ab0a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ffe_17a3_ab0a/request", "", "public", "Top Dataset, std, cldc.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ffe_17a3_ab0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ffe_17a3_ab0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ffe_17a3_ab0a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ffe_17a3_ab0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ffe_17a3_ab0a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4ffe_17a3_ab0a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abec_23e6_fb72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abec_23e6_fb72.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_abec_23e6_fb72/request", "", "public", "Top Dataset, std, cldc.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_abec_23e6_fb72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_abec_23e6_fb72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_abec_23e6_fb72/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_abec_23e6_fb72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_abec_23e6_fb72&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_abec_23e6_fb72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_878a_08fe_97dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_878a_08fe_97dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_878a_08fe_97dd/request", "", "public", "Top Dataset, std, cldc.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_878a_08fe_97dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_878a_08fe_97dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_878a_08fe_97dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_878a_08fe_97dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_878a_08fe_97dd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_878a_08fe_97dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de24_5841_04fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de24_5841_04fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_de24_5841_04fe/request", "", "public", "Top Dataset, std, cldc.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_de24_5841_04fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_de24_5841_04fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_de24_5841_04fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_de24_5841_04fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_de24_5841_04fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_de24_5841_04fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9ea_b1bf_53cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9ea_b1bf_53cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f9ea_b1bf_53cb/request", "", "public", "Top Dataset, std, cldc.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f9ea_b1bf_53cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f9ea_b1bf_53cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f9ea_b1bf_53cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f9ea_b1bf_53cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f9ea_b1bf_53cb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f9ea_b1bf_53cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_139f_3013_31fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_139f_3013_31fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_139f_3013_31fc/request", "", "public", "Top Dataset, std, lflx.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_139f_3013_31fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_139f_3013_31fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_139f_3013_31fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_139f_3013_31fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_139f_3013_31fc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_139f_3013_31fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d41_55ee_1324", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d41_55ee_1324.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d41_55ee_1324/request", "", "public", "Top Dataset, std, lflx.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d41_55ee_1324_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d41_55ee_1324_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d41_55ee_1324/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d41_55ee_1324.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d41_55ee_1324&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d41_55ee_1324"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b879_c304_f857", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b879_c304_f857.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b879_c304_f857/request", "", "public", "Top Dataset, std, lflx.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b879_c304_f857_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b879_c304_f857_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b879_c304_f857/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b879_c304_f857.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b879_c304_f857&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b879_c304_f857"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9e3_e192_d2b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9e3_e192_d2b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c9e3_e192_d2b5/request", "", "public", "Top Dataset, std, lflx.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c9e3_e192_d2b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c9e3_e192_d2b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c9e3_e192_d2b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c9e3_e192_d2b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c9e3_e192_d2b5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c9e3_e192_d2b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b490_d06e_7ce8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b490_d06e_7ce8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b490_d06e_7ce8/request", "", "public", "Top Dataset, std, lflx.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b490_d06e_7ce8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b490_d06e_7ce8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b490_d06e_7ce8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b490_d06e_7ce8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b490_d06e_7ce8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b490_d06e_7ce8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c14f_aee7_3d5e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c14f_aee7_3d5e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c14f_aee7_3d5e/request", "", "public", "Top Dataset, std, lflx.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c14f_aee7_3d5e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c14f_aee7_3d5e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c14f_aee7_3d5e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c14f_aee7_3d5e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c14f_aee7_3d5e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c14f_aee7_3d5e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c44_330b_65ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c44_330b_65ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c44_330b_65ee/request", "", "public", "Top Dataset, std, lflx.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c44_330b_65ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c44_330b_65ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c44_330b_65ee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c44_330b_65ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c44_330b_65ee&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0c44_330b_65ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79a8_b549_cfaa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79a8_b549_cfaa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_79a8_b549_cfaa/request", "", "public", "Top Dataset, std, lflx.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_79a8_b549_cfaa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_79a8_b549_cfaa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_79a8_b549_cfaa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_79a8_b549_cfaa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_79a8_b549_cfaa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_79a8_b549_cfaa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb72_3841_dd30", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb72_3841_dd30.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb72_3841_dd30/request", "", "public", "Top Dataset, std, lflx.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb72_3841_dd30_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb72_3841_dd30_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb72_3841_dd30/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb72_3841_dd30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb72_3841_dd30&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cb72_3841_dd30"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9de_0828_1d11", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9de_0828_1d11.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b9de_0828_1d11/request", "", "public", "Top Dataset, std, lflx.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b9de_0828_1d11_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b9de_0828_1d11_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b9de_0828_1d11/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b9de_0828_1d11.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b9de_0828_1d11&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b9de_0828_1d11"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d519_b1a3_d22f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d519_b1a3_d22f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d519_b1a3_d22f/request", "", "public", "Top Dataset, std, lflx.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d519_b1a3_d22f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d519_b1a3_d22f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d519_b1a3_d22f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d519_b1a3_d22f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d519_b1a3_d22f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d519_b1a3_d22f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e24a_5e27_2992", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e24a_5e27_2992.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e24a_5e27_2992/request", "", "public", "Top Dataset, std, lflx.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e24a_5e27_2992_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e24a_5e27_2992_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e24a_5e27_2992/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e24a_5e27_2992.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e24a_5e27_2992&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e24a_5e27_2992"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_859c_1305_082f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_859c_1305_082f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_859c_1305_082f/request", "", "public", "Top Dataset, std, lflx.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_859c_1305_082f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_859c_1305_082f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_859c_1305_082f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_859c_1305_082f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_859c_1305_082f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_859c_1305_082f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4db0_5a70_fad9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4db0_5a70_fad9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4db0_5a70_fad9/request", "", "public", "Top Dataset, std, lflx.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4db0_5a70_fad9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4db0_5a70_fad9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4db0_5a70_fad9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4db0_5a70_fad9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4db0_5a70_fad9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4db0_5a70_fad9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_547c_a9ca_fa20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_547c_a9ca_fa20.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_547c_a9ca_fa20/request", "", "public", "Top Dataset, std, lflx.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_547c_a9ca_fa20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_547c_a9ca_fa20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_547c_a9ca_fa20/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_547c_a9ca_fa20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_547c_a9ca_fa20&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_547c_a9ca_fa20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99f9_7b33_f228", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99f9_7b33_f228.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99f9_7b33_f228/request", "", "public", "Top Dataset, std, lflx.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99f9_7b33_f228_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99f9_7b33_f228_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99f9_7b33_f228/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99f9_7b33_f228.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99f9_7b33_f228&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_99f9_7b33_f228"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efc8_a995_e950", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efc8_a995_e950.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_efc8_a995_e950/request", "", "public", "Top Dataset, std, lflx.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_efc8_a995_e950_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_efc8_a995_e950_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_efc8_a995_e950/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_efc8_a995_e950.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_efc8_a995_e950&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_efc8_a995_e950"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe4c_63cb_2a0a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe4c_63cb_2a0a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fe4c_63cb_2a0a/request", "", "public", "Top Dataset, std, lflx.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fe4c_63cb_2a0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fe4c_63cb_2a0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fe4c_63cb_2a0a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fe4c_63cb_2a0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fe4c_63cb_2a0a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fe4c_63cb_2a0a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2e4_b001_51d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2e4_b001_51d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a2e4_b001_51d4/request", "", "public", "Top Dataset, std, lflx.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a2e4_b001_51d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a2e4_b001_51d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a2e4_b001_51d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a2e4_b001_51d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a2e4_b001_51d4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a2e4_b001_51d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2db3_b88c_c57d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2db3_b88c_c57d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2db3_b88c_c57d/request", "", "public", "Top Dataset, std, lflx.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2db3_b88c_c57d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2db3_b88c_c57d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2db3_b88c_c57d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2db3_b88c_c57d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2db3_b88c_c57d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2db3_b88c_c57d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d19e_f6ff_ec4a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d19e_f6ff_ec4a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d19e_f6ff_ec4a/request", "", "public", "Top Dataset, std, lflx.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d19e_f6ff_ec4a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d19e_f6ff_ec4a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d19e_f6ff_ec4a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d19e_f6ff_ec4a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d19e_f6ff_ec4a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d19e_f6ff_ec4a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a66_c7b4_fa70", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a66_c7b4_fa70.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a66_c7b4_fa70/request", "", "public", "Top Dataset, std, lflx.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a66_c7b4_fa70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a66_c7b4_fa70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a66_c7b4_fa70/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a66_c7b4_fa70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a66_c7b4_fa70&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3a66_c7b4_fa70"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5762_e885_81ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5762_e885_81ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5762_e885_81ce/request", "", "public", "Top Dataset, std, lflx.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5762_e885_81ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5762_e885_81ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5762_e885_81ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5762_e885_81ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5762_e885_81ce&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5762_e885_81ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e913_ad68_aea8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e913_ad68_aea8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e913_ad68_aea8/request", "", "public", "Top Dataset, std, lflx.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e913_ad68_aea8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e913_ad68_aea8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e913_ad68_aea8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e913_ad68_aea8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e913_ad68_aea8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e913_ad68_aea8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70eb_847a_5f79", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70eb_847a_5f79.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_70eb_847a_5f79/request", "", "public", "Top Dataset, std, lflx.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_70eb_847a_5f79_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_70eb_847a_5f79_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_70eb_847a_5f79/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_70eb_847a_5f79.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_70eb_847a_5f79&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_70eb_847a_5f79"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7821_3d52_f732", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7821_3d52_f732.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7821_3d52_f732/request", "", "public", "Top Dataset, std, lflx.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7821_3d52_f732_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7821_3d52_f732_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7821_3d52_f732/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7821_3d52_f732.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7821_3d52_f732&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7821_3d52_f732"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe61_38a9_2b6c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe61_38a9_2b6c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fe61_38a9_2b6c/request", "", "public", "Top Dataset, std, lflx.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fe61_38a9_2b6c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fe61_38a9_2b6c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fe61_38a9_2b6c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fe61_38a9_2b6c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fe61_38a9_2b6c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fe61_38a9_2b6c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a978_df68_1dc4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a978_df68_1dc4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a978_df68_1dc4/request", "", "public", "Top Dataset, std, lflx.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a978_df68_1dc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a978_df68_1dc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a978_df68_1dc4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a978_df68_1dc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a978_df68_1dc4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a978_df68_1dc4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c02_2700_27e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c02_2700_27e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c02_2700_27e1/request", "", "public", "Top Dataset, std, lflx.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c02_2700_27e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c02_2700_27e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c02_2700_27e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c02_2700_27e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c02_2700_27e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5c02_2700_27e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fbe_b273_5407", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fbe_b273_5407.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5fbe_b273_5407/request", "", "public", "Top Dataset, std, lflx.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5fbe_b273_5407_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5fbe_b273_5407_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5fbe_b273_5407/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5fbe_b273_5407.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5fbe_b273_5407&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5fbe_b273_5407"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5115_9a25_ee01", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5115_9a25_ee01.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5115_9a25_ee01/request", "", "public", "Top Dataset, std, lflx.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5115_9a25_ee01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5115_9a25_ee01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5115_9a25_ee01/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5115_9a25_ee01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5115_9a25_ee01&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5115_9a25_ee01"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2527_69d7_fbfa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2527_69d7_fbfa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2527_69d7_fbfa/request", "", "public", "Top Dataset, std, lflx.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2527_69d7_fbfa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2527_69d7_fbfa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2527_69d7_fbfa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2527_69d7_fbfa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2527_69d7_fbfa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2527_69d7_fbfa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_475b_b8ee_ed19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_475b_b8ee_ed19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_475b_b8ee_ed19/request", "", "public", "Top Dataset, std, lflx.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_475b_b8ee_ed19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_475b_b8ee_ed19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_475b_b8ee_ed19/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_475b_b8ee_ed19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_475b_b8ee_ed19&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_475b_b8ee_ed19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cb1_5ea7_ecab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cb1_5ea7_ecab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7cb1_5ea7_ecab/request", "", "public", "Top Dataset, std, lflx.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7cb1_5ea7_ecab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7cb1_5ea7_ecab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7cb1_5ea7_ecab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7cb1_5ea7_ecab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7cb1_5ea7_ecab&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7cb1_5ea7_ecab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ca3_ed8e_d818", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ca3_ed8e_d818.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ca3_ed8e_d818/request", "", "public", "Top Dataset, std, lflx.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ca3_ed8e_d818_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ca3_ed8e_d818_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ca3_ed8e_d818/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ca3_ed8e_d818.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ca3_ed8e_d818&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1ca3_ed8e_d818"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eac3_75d6_443b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eac3_75d6_443b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eac3_75d6_443b/request", "", "public", "Top Dataset, std, lflx.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eac3_75d6_443b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eac3_75d6_443b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eac3_75d6_443b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eac3_75d6_443b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eac3_75d6_443b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eac3_75d6_443b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a11c_5016_d698", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a11c_5016_d698.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a11c_5016_d698/request", "", "public", "Top Dataset, std, lflx.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a11c_5016_d698_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a11c_5016_d698_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a11c_5016_d698/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a11c_5016_d698.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a11c_5016_d698&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a11c_5016_d698"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24de_0c1c_e781", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24de_0c1c_e781.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_24de_0c1c_e781/request", "", "public", "Top Dataset, std, lflx.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_24de_0c1c_e781_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_24de_0c1c_e781_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_24de_0c1c_e781/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_24de_0c1c_e781.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_24de_0c1c_e781&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_24de_0c1c_e781"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d24_7c03_fd48", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d24_7c03_fd48.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5d24_7c03_fd48/request", "", "public", "Top Dataset, std, lflx.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5d24_7c03_fd48_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5d24_7c03_fd48_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5d24_7c03_fd48/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5d24_7c03_fd48.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5d24_7c03_fd48&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5d24_7c03_fd48"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f029_f05a_e601", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f029_f05a_e601.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f029_f05a_e601/request", "", "public", "Top Dataset, std, lflx.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f029_f05a_e601_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f029_f05a_e601_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f029_f05a_e601/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f029_f05a_e601.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f029_f05a_e601&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f029_f05a_e601"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3286_1d0b_eee2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3286_1d0b_eee2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3286_1d0b_eee2/request", "", "public", "Top Dataset, std, lflx.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3286_1d0b_eee2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3286_1d0b_eee2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3286_1d0b_eee2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3286_1d0b_eee2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3286_1d0b_eee2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3286_1d0b_eee2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71f8_c11f_1815", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71f8_c11f_1815.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_71f8_c11f_1815/request", "", "public", "Top Dataset, std, lflx.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_71f8_c11f_1815_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_71f8_c11f_1815_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_71f8_c11f_1815/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_71f8_c11f_1815.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_71f8_c11f_1815&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_71f8_c11f_1815"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4342_08d2_ae5c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4342_08d2_ae5c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4342_08d2_ae5c/request", "", "public", "Top Dataset, std, lflx.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4342_08d2_ae5c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4342_08d2_ae5c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4342_08d2_ae5c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4342_08d2_ae5c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4342_08d2_ae5c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4342_08d2_ae5c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb85_0a45_549c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb85_0a45_549c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb85_0a45_549c/request", "", "public", "Top Dataset, std, lflx.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb85_0a45_549c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb85_0a45_549c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb85_0a45_549c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb85_0a45_549c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb85_0a45_549c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cb85_0a45_549c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa6c_4a0f_a348", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa6c_4a0f_a348.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fa6c_4a0f_a348/request", "", "public", "Top Dataset, std, lflx.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fa6c_4a0f_a348_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fa6c_4a0f_a348_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fa6c_4a0f_a348/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fa6c_4a0f_a348.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fa6c_4a0f_a348&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fa6c_4a0f_a348"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10f5_4087_92cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10f5_4087_92cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_10f5_4087_92cd/request", "", "public", "Top Dataset, std, lflx.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_10f5_4087_92cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_10f5_4087_92cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_10f5_4087_92cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_10f5_4087_92cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_10f5_4087_92cd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_10f5_4087_92cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f0d_246d_c589", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f0d_246d_c589.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5f0d_246d_c589/request", "", "public", "Top Dataset, std, lflx.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5f0d_246d_c589_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5f0d_246d_c589_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5f0d_246d_c589/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5f0d_246d_c589.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5f0d_246d_c589&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5f0d_246d_c589"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c681_7b9e_4c12", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c681_7b9e_4c12.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c681_7b9e_4c12/request", "", "public", "Top Dataset, std, lflx.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c681_7b9e_4c12_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c681_7b9e_4c12_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c681_7b9e_4c12/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c681_7b9e_4c12.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c681_7b9e_4c12&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c681_7b9e_4c12"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_66c1_6063_4560", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_66c1_6063_4560.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_66c1_6063_4560/request", "", "public", "Top Dataset, std, lflx.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_66c1_6063_4560_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_66c1_6063_4560_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_66c1_6063_4560/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_66c1_6063_4560.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_66c1_6063_4560&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_66c1_6063_4560"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb5b_0e91_4f03", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb5b_0e91_4f03.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bb5b_0e91_4f03/request", "", "public", "Top Dataset, std, lflx.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bb5b_0e91_4f03_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bb5b_0e91_4f03_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bb5b_0e91_4f03/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bb5b_0e91_4f03.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bb5b_0e91_4f03&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bb5b_0e91_4f03"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e874_7ccc_a7c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e874_7ccc_a7c9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e874_7ccc_a7c9/request", "", "public", "Top Dataset, std, lflx.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e874_7ccc_a7c9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e874_7ccc_a7c9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e874_7ccc_a7c9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e874_7ccc_a7c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e874_7ccc_a7c9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e874_7ccc_a7c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1438_db61_f570", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1438_db61_f570.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1438_db61_f570/request", "", "public", "Top Dataset, std, lflx.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1438_db61_f570_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1438_db61_f570_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1438_db61_f570/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1438_db61_f570.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1438_db61_f570&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1438_db61_f570"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1a8_9a31_23d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1a8_9a31_23d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a1a8_9a31_23d0/request", "", "public", "Top Dataset, std, lflx.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a1a8_9a31_23d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a1a8_9a31_23d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a1a8_9a31_23d0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a1a8_9a31_23d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a1a8_9a31_23d0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a1a8_9a31_23d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f05a_ffd1_cd24", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f05a_ffd1_cd24.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f05a_ffd1_cd24/request", "", "public", "Top Dataset, std, lflx.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f05a_ffd1_cd24_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f05a_ffd1_cd24_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f05a_ffd1_cd24/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f05a_ffd1_cd24.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f05a_ffd1_cd24&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f05a_ffd1_cd24"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0b2_5fff_ee67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0b2_5fff_ee67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d0b2_5fff_ee67/request", "", "public", "Top Dataset, std, lflx.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d0b2_5fff_ee67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d0b2_5fff_ee67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d0b2_5fff_ee67/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d0b2_5fff_ee67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d0b2_5fff_ee67&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d0b2_5fff_ee67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bf4_fdd7_62b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bf4_fdd7_62b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2bf4_fdd7_62b9/request", "", "public", "Top Dataset, std, lflx.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2bf4_fdd7_62b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2bf4_fdd7_62b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2bf4_fdd7_62b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2bf4_fdd7_62b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2bf4_fdd7_62b9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2bf4_fdd7_62b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf29_6a8f_018f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf29_6a8f_018f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf29_6a8f_018f/request", "", "public", "Top Dataset, std, lflx.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf29_6a8f_018f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf29_6a8f_018f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf29_6a8f_018f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf29_6a8f_018f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf29_6a8f_018f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bf29_6a8f_018f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a65f_8f05_833a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a65f_8f05_833a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a65f_8f05_833a/request", "", "public", "Top Dataset, std, lflx.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a65f_8f05_833a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a65f_8f05_833a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a65f_8f05_833a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a65f_8f05_833a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a65f_8f05_833a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a65f_8f05_833a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2960_23aa_0ebe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2960_23aa_0ebe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2960_23aa_0ebe/request", "", "public", "Top Dataset, std, lflx.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2960_23aa_0ebe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2960_23aa_0ebe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2960_23aa_0ebe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2960_23aa_0ebe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2960_23aa_0ebe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2960_23aa_0ebe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4db2_ecda_4668", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4db2_ecda_4668.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4db2_ecda_4668/request", "", "public", "Top Dataset, std, lflx.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4db2_ecda_4668_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4db2_ecda_4668_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4db2_ecda_4668/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4db2_ecda_4668.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4db2_ecda_4668&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4db2_ecda_4668"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d91_83ee_8f8a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d91_83ee_8f8a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d91_83ee_8f8a/request", "", "public", "Top Dataset, std, qsminq.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d91_83ee_8f8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d91_83ee_8f8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d91_83ee_8f8a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d91_83ee_8f8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d91_83ee_8f8a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6d91_83ee_8f8a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1257_b343_479b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1257_b343_479b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1257_b343_479b/request", "", "public", "Top Dataset, std, qsminq.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1257_b343_479b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1257_b343_479b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1257_b343_479b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1257_b343_479b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1257_b343_479b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1257_b343_479b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a20c_7a00_27fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a20c_7a00_27fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a20c_7a00_27fe/request", "", "public", "Top Dataset, std, qsminq.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a20c_7a00_27fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a20c_7a00_27fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a20c_7a00_27fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a20c_7a00_27fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a20c_7a00_27fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a20c_7a00_27fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0584_537d_a33d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0584_537d_a33d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0584_537d_a33d/request", "", "public", "Top Dataset, std, qsminq.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0584_537d_a33d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0584_537d_a33d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0584_537d_a33d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0584_537d_a33d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0584_537d_a33d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0584_537d_a33d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56f4_10c5_e2cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56f4_10c5_e2cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_56f4_10c5_e2cd/request", "", "public", "Top Dataset, std, qsminq.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_56f4_10c5_e2cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_56f4_10c5_e2cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_56f4_10c5_e2cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_56f4_10c5_e2cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_56f4_10c5_e2cd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_56f4_10c5_e2cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5765_1e8e_ee78", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5765_1e8e_ee78.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5765_1e8e_ee78/request", "", "public", "Top Dataset, std, qsminq.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5765_1e8e_ee78_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5765_1e8e_ee78_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5765_1e8e_ee78/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5765_1e8e_ee78.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5765_1e8e_ee78&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5765_1e8e_ee78"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99d8_2e8f_256b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99d8_2e8f_256b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99d8_2e8f_256b/request", "", "public", "Top Dataset, std, qsminq.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99d8_2e8f_256b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99d8_2e8f_256b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99d8_2e8f_256b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99d8_2e8f_256b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99d8_2e8f_256b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_99d8_2e8f_256b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1986_345a_0c94", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1986_345a_0c94.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1986_345a_0c94/request", "", "public", "Top Dataset, std, qsminq.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1986_345a_0c94_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1986_345a_0c94_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1986_345a_0c94/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1986_345a_0c94.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1986_345a_0c94&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1986_345a_0c94"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_436c_9f6c_68c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_436c_9f6c_68c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_436c_9f6c_68c0/request", "", "public", "Top Dataset, std, qsminq.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_436c_9f6c_68c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_436c_9f6c_68c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_436c_9f6c_68c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_436c_9f6c_68c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_436c_9f6c_68c0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_436c_9f6c_68c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da2d_de46_8e3c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da2d_de46_8e3c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da2d_de46_8e3c/request", "", "public", "Top Dataset, std, qsminq.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da2d_de46_8e3c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da2d_de46_8e3c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da2d_de46_8e3c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da2d_de46_8e3c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da2d_de46_8e3c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_da2d_de46_8e3c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_603a_aaa2_33af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_603a_aaa2_33af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_603a_aaa2_33af/request", "", "public", "Top Dataset, std, qsminq.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_603a_aaa2_33af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_603a_aaa2_33af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_603a_aaa2_33af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_603a_aaa2_33af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_603a_aaa2_33af&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_603a_aaa2_33af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f17_d391_1eab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f17_d391_1eab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f17_d391_1eab/request", "", "public", "Top Dataset, std, qsminq.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f17_d391_1eab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f17_d391_1eab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f17_d391_1eab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f17_d391_1eab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f17_d391_1eab&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9f17_d391_1eab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d778_ba2b_6211", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d778_ba2b_6211.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d778_ba2b_6211/request", "", "public", "Top Dataset, std, qsminq.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d778_ba2b_6211_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d778_ba2b_6211_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d778_ba2b_6211/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d778_ba2b_6211.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d778_ba2b_6211&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d778_ba2b_6211"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_62a5_9218_a94c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_62a5_9218_a94c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_62a5_9218_a94c/request", "", "public", "Top Dataset, std, qsminq.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_62a5_9218_a94c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_62a5_9218_a94c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_62a5_9218_a94c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_62a5_9218_a94c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_62a5_9218_a94c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_62a5_9218_a94c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86b1_e456_0726", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86b1_e456_0726.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_86b1_e456_0726/request", "", "public", "Top Dataset, std, qsminq.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86b1_e456_0726_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86b1_e456_0726_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86b1_e456_0726/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86b1_e456_0726.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86b1_e456_0726&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_86b1_e456_0726"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b52_3f63_5205", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b52_3f63_5205.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3b52_3f63_5205/request", "", "public", "Top Dataset, std, qsminq.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3b52_3f63_5205_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3b52_3f63_5205_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3b52_3f63_5205/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3b52_3f63_5205.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3b52_3f63_5205&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3b52_3f63_5205"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_443a_e398_b811", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_443a_e398_b811.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_443a_e398_b811/request", "", "public", "Top Dataset, std, qsminq.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_443a_e398_b811_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_443a_e398_b811_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_443a_e398_b811/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_443a_e398_b811.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_443a_e398_b811&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_443a_e398_b811"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef82_52a2_322c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef82_52a2_322c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ef82_52a2_322c/request", "", "public", "Top Dataset, std, qsminq.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ef82_52a2_322c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ef82_52a2_322c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ef82_52a2_322c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ef82_52a2_322c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ef82_52a2_322c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ef82_52a2_322c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_542c_c9b9_d575", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_542c_c9b9_d575.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_542c_c9b9_d575/request", "", "public", "Top Dataset, std, qsminq.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_542c_c9b9_d575_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_542c_c9b9_d575_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_542c_c9b9_d575/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_542c_c9b9_d575.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_542c_c9b9_d575&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_542c_c9b9_d575"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c91_b22c_6161", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c91_b22c_6161.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7c91_b22c_6161/request", "", "public", "Top Dataset, std, qsminq.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7c91_b22c_6161_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7c91_b22c_6161_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7c91_b22c_6161/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7c91_b22c_6161.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7c91_b22c_6161&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7c91_b22c_6161"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd27_c387_e51a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd27_c387_e51a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fd27_c387_e51a/request", "", "public", "Top Dataset, std, qsminq.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fd27_c387_e51a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fd27_c387_e51a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fd27_c387_e51a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fd27_c387_e51a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fd27_c387_e51a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fd27_c387_e51a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa5f_c095_7a7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa5f_c095_7a7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fa5f_c095_7a7b/request", "", "public", "Top Dataset, std, qsminq.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fa5f_c095_7a7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fa5f_c095_7a7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fa5f_c095_7a7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fa5f_c095_7a7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fa5f_c095_7a7b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fa5f_c095_7a7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_969b_e47d_a6e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_969b_e47d_a6e4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_969b_e47d_a6e4/request", "", "public", "Top Dataset, std, qsminq.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_969b_e47d_a6e4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_969b_e47d_a6e4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_969b_e47d_a6e4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_969b_e47d_a6e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_969b_e47d_a6e4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_969b_e47d_a6e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b6b7_5851_15fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b6b7_5851_15fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b6b7_5851_15fa/request", "", "public", "Top Dataset, std, qsminq.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b6b7_5851_15fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b6b7_5851_15fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b6b7_5851_15fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b6b7_5851_15fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b6b7_5851_15fa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b6b7_5851_15fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_61d1_9472_15f4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_61d1_9472_15f4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_61d1_9472_15f4/request", "", "public", "Top Dataset, std, qsminq.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_61d1_9472_15f4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_61d1_9472_15f4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_61d1_9472_15f4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_61d1_9472_15f4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_61d1_9472_15f4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_61d1_9472_15f4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_32a7_31d5_40fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_32a7_31d5_40fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_32a7_31d5_40fb/request", "", "public", "Top Dataset, std, qsminq.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_32a7_31d5_40fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_32a7_31d5_40fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_32a7_31d5_40fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_32a7_31d5_40fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_32a7_31d5_40fb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_32a7_31d5_40fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e32a_93d5_94c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e32a_93d5_94c9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e32a_93d5_94c9/request", "", "public", "Top Dataset, std, qsminq.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e32a_93d5_94c9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e32a_93d5_94c9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e32a_93d5_94c9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e32a_93d5_94c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e32a_93d5_94c9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e32a_93d5_94c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6315_62cf_82b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6315_62cf_82b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6315_62cf_82b8/request", "", "public", "Top Dataset, std, qsminq.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6315_62cf_82b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6315_62cf_82b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6315_62cf_82b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6315_62cf_82b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6315_62cf_82b8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6315_62cf_82b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dea_9dc8_6054", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dea_9dc8_6054.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1dea_9dc8_6054/request", "", "public", "Top Dataset, std, qsminq.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1dea_9dc8_6054_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1dea_9dc8_6054_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1dea_9dc8_6054/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1dea_9dc8_6054.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1dea_9dc8_6054&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1dea_9dc8_6054"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99c3_058d_8b06", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99c3_058d_8b06.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99c3_058d_8b06/request", "", "public", "Top Dataset, std, qsminq.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99c3_058d_8b06_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99c3_058d_8b06_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99c3_058d_8b06/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99c3_058d_8b06.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99c3_058d_8b06&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_99c3_058d_8b06"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a323_c112_7530", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a323_c112_7530.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a323_c112_7530/request", "", "public", "Top Dataset, std, qsminq.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a323_c112_7530_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a323_c112_7530_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a323_c112_7530/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a323_c112_7530.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a323_c112_7530&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a323_c112_7530"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0108_5b16_875c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0108_5b16_875c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0108_5b16_875c/request", "", "public", "Top Dataset, std, qsminq.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0108_5b16_875c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0108_5b16_875c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0108_5b16_875c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0108_5b16_875c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0108_5b16_875c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0108_5b16_875c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f499_3506_00e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f499_3506_00e4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f499_3506_00e4/request", "", "public", "Top Dataset, std, qsminq.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f499_3506_00e4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f499_3506_00e4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f499_3506_00e4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f499_3506_00e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f499_3506_00e4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f499_3506_00e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfa5_7ea2_d25d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfa5_7ea2_d25d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dfa5_7ea2_d25d/request", "", "public", "Top Dataset, std, qsminq.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dfa5_7ea2_d25d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dfa5_7ea2_d25d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dfa5_7ea2_d25d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dfa5_7ea2_d25d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dfa5_7ea2_d25d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_dfa5_7ea2_d25d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0600_4e32_9400", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0600_4e32_9400.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0600_4e32_9400/request", "", "public", "Top Dataset, std, qsminq.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0600_4e32_9400_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0600_4e32_9400_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0600_4e32_9400/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0600_4e32_9400.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0600_4e32_9400&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0600_4e32_9400"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d764_09ae_009c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d764_09ae_009c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d764_09ae_009c/request", "", "public", "Top Dataset, std, qsminq.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d764_09ae_009c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d764_09ae_009c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d764_09ae_009c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d764_09ae_009c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d764_09ae_009c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d764_09ae_009c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d3b_3502_9444", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d3b_3502_9444.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d3b_3502_9444/request", "", "public", "Top Dataset, std, qsminq.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d3b_3502_9444_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d3b_3502_9444_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d3b_3502_9444/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d3b_3502_9444.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d3b_3502_9444&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8d3b_3502_9444"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44fe_1733_66ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44fe_1733_66ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_44fe_1733_66ff/request", "", "public", "Top Dataset, std, qsminq.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_44fe_1733_66ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_44fe_1733_66ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_44fe_1733_66ff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_44fe_1733_66ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_44fe_1733_66ff&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_44fe_1733_66ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f267_bbed_dfa8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f267_bbed_dfa8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f267_bbed_dfa8/request", "", "public", "Top Dataset, std, qsminq.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f267_bbed_dfa8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f267_bbed_dfa8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f267_bbed_dfa8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f267_bbed_dfa8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f267_bbed_dfa8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f267_bbed_dfa8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f5a_4d0c_be59", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f5a_4d0c_be59.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f5a_4d0c_be59/request", "", "public", "Top Dataset, std, qsminq.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f5a_4d0c_be59_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f5a_4d0c_be59_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f5a_4d0c_be59/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f5a_4d0c_be59.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f5a_4d0c_be59&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9f5a_4d0c_be59"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_578e_f257_ce05", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_578e_f257_ce05.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_578e_f257_ce05/request", "", "public", "Top Dataset, std, qsminq.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_578e_f257_ce05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_578e_f257_ce05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_578e_f257_ce05/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_578e_f257_ce05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_578e_f257_ce05&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_578e_f257_ce05"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_970f_86c0_7a1a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_970f_86c0_7a1a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_970f_86c0_7a1a/request", "", "public", "Top Dataset, std, qsminq.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_970f_86c0_7a1a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_970f_86c0_7a1a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_970f_86c0_7a1a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_970f_86c0_7a1a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_970f_86c0_7a1a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_970f_86c0_7a1a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b4cf_d419_f7c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b4cf_d419_f7c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b4cf_d419_f7c6/request", "", "public", "Top Dataset, std, qsminq.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b4cf_d419_f7c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b4cf_d419_f7c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b4cf_d419_f7c6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b4cf_d419_f7c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b4cf_d419_f7c6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b4cf_d419_f7c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e4f_bf0c_efc8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e4f_bf0c_efc8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e4f_bf0c_efc8/request", "", "public", "Top Dataset, std, qsminq.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e4f_bf0c_efc8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e4f_bf0c_efc8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e4f_bf0c_efc8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e4f_bf0c_efc8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e4f_bf0c_efc8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3e4f_bf0c_efc8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f78_d933_42ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f78_d933_42ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4f78_d933_42ac/request", "", "public", "Top Dataset, std, qsminq.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4f78_d933_42ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4f78_d933_42ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4f78_d933_42ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4f78_d933_42ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4f78_d933_42ac&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4f78_d933_42ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4678_80fc_1c97", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4678_80fc_1c97.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4678_80fc_1c97/request", "", "public", "Top Dataset, std, qsminq.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4678_80fc_1c97_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4678_80fc_1c97_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4678_80fc_1c97/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4678_80fc_1c97.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4678_80fc_1c97&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4678_80fc_1c97"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5450_9986_4696", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5450_9986_4696.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5450_9986_4696/request", "", "public", "Top Dataset, std, qsminq.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5450_9986_4696_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5450_9986_4696_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5450_9986_4696/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5450_9986_4696.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5450_9986_4696&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5450_9986_4696"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_615e_965e_85d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_615e_965e_85d1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_615e_965e_85d1/request", "", "public", "Top Dataset, std, qsminq.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_615e_965e_85d1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_615e_965e_85d1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_615e_965e_85d1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_615e_965e_85d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_615e_965e_85d1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_615e_965e_85d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e05_b53a_4a4c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e05_b53a_4a4c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e05_b53a_4a4c/request", "", "public", "Top Dataset, std, qsminq.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e05_b53a_4a4c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e05_b53a_4a4c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e05_b53a_4a4c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e05_b53a_4a4c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e05_b53a_4a4c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9e05_b53a_4a4c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0fda_8b9c_8d25", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0fda_8b9c_8d25.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0fda_8b9c_8d25/request", "", "public", "Top Dataset, std, qsminq.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0fda_8b9c_8d25_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0fda_8b9c_8d25_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0fda_8b9c_8d25/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0fda_8b9c_8d25.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0fda_8b9c_8d25&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0fda_8b9c_8d25"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc2a_22fe_f3a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc2a_22fe_f3a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc2a_22fe_f3a7/request", "", "public", "Top Dataset, std, qsminq.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc2a_22fe_f3a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc2a_22fe_f3a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc2a_22fe_f3a7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc2a_22fe_f3a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc2a_22fe_f3a7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dc2a_22fe_f3a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_74c0_a83d_8fc8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_74c0_a83d_8fc8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_74c0_a83d_8fc8/request", "", "public", "Top Dataset, std, qsminq.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_74c0_a83d_8fc8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_74c0_a83d_8fc8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_74c0_a83d_8fc8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_74c0_a83d_8fc8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_74c0_a83d_8fc8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_74c0_a83d_8fc8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_25e9_62ca_5ff6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_25e9_62ca_5ff6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_25e9_62ca_5ff6/request", "", "public", "Top Dataset, std, qsminq.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_25e9_62ca_5ff6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_25e9_62ca_5ff6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_25e9_62ca_5ff6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_25e9_62ca_5ff6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_25e9_62ca_5ff6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_25e9_62ca_5ff6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9834_dd0c_26e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9834_dd0c_26e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9834_dd0c_26e1/request", "", "public", "Top Dataset, std, qsminq.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9834_dd0c_26e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9834_dd0c_26e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9834_dd0c_26e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9834_dd0c_26e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9834_dd0c_26e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9834_dd0c_26e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10cc_b5e2_ede3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10cc_b5e2_ede3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_10cc_b5e2_ede3/request", "", "public", "Top Dataset, std, qsminq.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_10cc_b5e2_ede3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_10cc_b5e2_ede3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_10cc_b5e2_ede3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_10cc_b5e2_ede3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_10cc_b5e2_ede3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_10cc_b5e2_ede3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_139d_d855_3782", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_139d_d855_3782.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_139d_d855_3782/request", "", "public", "Top Dataset, std, qsminq.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_139d_d855_3782_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_139d_d855_3782_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_139d_d855_3782/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_139d_d855_3782.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_139d_d855_3782&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_139d_d855_3782"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d46f_5c5a_4166", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d46f_5c5a_4166.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d46f_5c5a_4166/request", "", "public", "Top Dataset, std, qsminq.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d46f_5c5a_4166_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d46f_5c5a_4166_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d46f_5c5a_4166/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d46f_5c5a_4166.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d46f_5c5a_4166&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d46f_5c5a_4166"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_172c_b403_9975", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_172c_b403_9975.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_172c_b403_9975/request", "", "public", "Top Dataset, std, qsminq.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_172c_b403_9975_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_172c_b403_9975_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_172c_b403_9975/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_172c_b403_9975.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_172c_b403_9975&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_172c_b403_9975"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5307_bf70_cef8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5307_bf70_cef8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5307_bf70_cef8/request", "", "public", "Top Dataset, std, qsminq.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5307_bf70_cef8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5307_bf70_cef8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5307_bf70_cef8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5307_bf70_cef8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5307_bf70_cef8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5307_bf70_cef8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1d4_e3c3_928f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1d4_e3c3_928f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f1d4_e3c3_928f/request", "", "public", "Top Dataset, std, qsminq.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f1d4_e3c3_928f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f1d4_e3c3_928f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f1d4_e3c3_928f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f1d4_e3c3_928f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f1d4_e3c3_928f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f1d4_e3c3_928f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b90_2c5d_5d8d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b90_2c5d_5d8d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b90_2c5d_5d8d/request", "", "public", "Top Dataset, std, qsminq.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b90_2c5d_5d8d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b90_2c5d_5d8d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b90_2c5d_5d8d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b90_2c5d_5d8d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b90_2c5d_5d8d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6b90_2c5d_5d8d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_192f_41c8_af83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_192f_41c8_af83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_192f_41c8_af83/request", "", "public", "Top Dataset, std, qsminq.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_192f_41c8_af83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_192f_41c8_af83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_192f_41c8_af83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_192f_41c8_af83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_192f_41c8_af83&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_192f_41c8_af83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1bb_15df_e0db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1bb_15df_e0db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a1bb_15df_e0db/request", "", "public", "Top Dataset, std, qsminq.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a1bb_15df_e0db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a1bb_15df_e0db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a1bb_15df_e0db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a1bb_15df_e0db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a1bb_15df_e0db&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a1bb_15df_e0db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bbe8_59ca_ec0f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bbe8_59ca_ec0f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bbe8_59ca_ec0f/request", "", "public", "Top Dataset, std, rhum.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bbe8_59ca_ec0f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bbe8_59ca_ec0f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bbe8_59ca_ec0f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bbe8_59ca_ec0f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bbe8_59ca_ec0f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bbe8_59ca_ec0f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9369_4745_f85f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9369_4745_f85f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9369_4745_f85f/request", "", "public", "Top Dataset, std, rhum.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9369_4745_f85f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9369_4745_f85f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9369_4745_f85f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9369_4745_f85f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9369_4745_f85f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9369_4745_f85f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3ec_6e93_ac54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3ec_6e93_ac54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c3ec_6e93_ac54/request", "", "public", "Top Dataset, std, rhum.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c3ec_6e93_ac54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c3ec_6e93_ac54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c3ec_6e93_ac54/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c3ec_6e93_ac54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c3ec_6e93_ac54&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c3ec_6e93_ac54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f8b_a19e_81fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f8b_a19e_81fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f8b_a19e_81fa/request", "", "public", "Top Dataset, std, rhum.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f8b_a19e_81fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f8b_a19e_81fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f8b_a19e_81fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f8b_a19e_81fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f8b_a19e_81fa&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9f8b_a19e_81fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a209_5e42_c90f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a209_5e42_c90f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a209_5e42_c90f/request", "", "public", "Top Dataset, std, rhum.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a209_5e42_c90f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a209_5e42_c90f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a209_5e42_c90f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a209_5e42_c90f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a209_5e42_c90f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a209_5e42_c90f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f496_0e34_47f4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f496_0e34_47f4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f496_0e34_47f4/request", "", "public", "Top Dataset, std, rhum.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f496_0e34_47f4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f496_0e34_47f4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f496_0e34_47f4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f496_0e34_47f4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f496_0e34_47f4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f496_0e34_47f4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26d4_8dbb_914d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26d4_8dbb_914d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_26d4_8dbb_914d/request", "", "public", "Top Dataset, std, rhum.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_26d4_8dbb_914d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_26d4_8dbb_914d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_26d4_8dbb_914d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_26d4_8dbb_914d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_26d4_8dbb_914d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_26d4_8dbb_914d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_74b5_bafc_c697", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_74b5_bafc_c697.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_74b5_bafc_c697/request", "", "public", "Top Dataset, std, rhum.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_74b5_bafc_c697_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_74b5_bafc_c697_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_74b5_bafc_c697/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_74b5_bafc_c697.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_74b5_bafc_c697&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_74b5_bafc_c697"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cde_47f3_8aea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cde_47f3_8aea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7cde_47f3_8aea/request", "", "public", "Top Dataset, std, rhum.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7cde_47f3_8aea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7cde_47f3_8aea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7cde_47f3_8aea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7cde_47f3_8aea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7cde_47f3_8aea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7cde_47f3_8aea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_32ec_f9de_3076", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_32ec_f9de_3076.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_32ec_f9de_3076/request", "", "public", "Top Dataset, std, rhum.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_32ec_f9de_3076_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_32ec_f9de_3076_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_32ec_f9de_3076/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_32ec_f9de_3076.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_32ec_f9de_3076&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_32ec_f9de_3076"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fa6_4a43_4ec2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fa6_4a43_4ec2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7fa6_4a43_4ec2/request", "", "public", "Top Dataset, std, rhum.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7fa6_4a43_4ec2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7fa6_4a43_4ec2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7fa6_4a43_4ec2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7fa6_4a43_4ec2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7fa6_4a43_4ec2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7fa6_4a43_4ec2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa20_d118_71dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa20_d118_71dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa20_d118_71dd/request", "", "public", "Top Dataset, std, rhum.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa20_d118_71dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa20_d118_71dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa20_d118_71dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa20_d118_71dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa20_d118_71dd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aa20_d118_71dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bbac_19ae_7b49", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bbac_19ae_7b49.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bbac_19ae_7b49/request", "", "public", "Top Dataset, std, rhum.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bbac_19ae_7b49_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bbac_19ae_7b49_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bbac_19ae_7b49/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bbac_19ae_7b49.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bbac_19ae_7b49&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bbac_19ae_7b49"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d259_c4fa_eaa0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d259_c4fa_eaa0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d259_c4fa_eaa0/request", "", "public", "Top Dataset, std, rhum.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d259_c4fa_eaa0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d259_c4fa_eaa0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d259_c4fa_eaa0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d259_c4fa_eaa0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d259_c4fa_eaa0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d259_c4fa_eaa0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0d8_9f6a_3120", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0d8_9f6a_3120.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e0d8_9f6a_3120/request", "", "public", "Top Dataset, std, rhum.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e0d8_9f6a_3120_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e0d8_9f6a_3120_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e0d8_9f6a_3120/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e0d8_9f6a_3120.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e0d8_9f6a_3120&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e0d8_9f6a_3120"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a70_f691_73ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a70_f691_73ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4a70_f691_73ee/request", "", "public", "Top Dataset, std, rhum.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4a70_f691_73ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4a70_f691_73ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4a70_f691_73ee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4a70_f691_73ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4a70_f691_73ee&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4a70_f691_73ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c5f_f5e6_532f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c5f_f5e6_532f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c5f_f5e6_532f/request", "", "public", "Top Dataset, std, rhum.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c5f_f5e6_532f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c5f_f5e6_532f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c5f_f5e6_532f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c5f_f5e6_532f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c5f_f5e6_532f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0c5f_f5e6_532f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca67_c102_dfba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca67_c102_dfba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca67_c102_dfba/request", "", "public", "Top Dataset, std, rhum.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca67_c102_dfba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca67_c102_dfba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca67_c102_dfba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca67_c102_dfba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca67_c102_dfba&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ca67_c102_dfba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44ed_0b4a_7e18", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44ed_0b4a_7e18.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_44ed_0b4a_7e18/request", "", "public", "Top Dataset, std, rhum.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_44ed_0b4a_7e18_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_44ed_0b4a_7e18_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_44ed_0b4a_7e18/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_44ed_0b4a_7e18.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_44ed_0b4a_7e18&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_44ed_0b4a_7e18"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3373_762f_48e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3373_762f_48e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3373_762f_48e3/request", "", "public", "Top Dataset, std, rhum.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3373_762f_48e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3373_762f_48e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3373_762f_48e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3373_762f_48e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3373_762f_48e3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3373_762f_48e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfc5_92e5_9a3a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfc5_92e5_9a3a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cfc5_92e5_9a3a/request", "", "public", "Top Dataset, std, rhum.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cfc5_92e5_9a3a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cfc5_92e5_9a3a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cfc5_92e5_9a3a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cfc5_92e5_9a3a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cfc5_92e5_9a3a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cfc5_92e5_9a3a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1ad_1cf9_63f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1ad_1cf9_63f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f1ad_1cf9_63f3/request", "", "public", "Top Dataset, std, rhum.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f1ad_1cf9_63f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f1ad_1cf9_63f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f1ad_1cf9_63f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f1ad_1cf9_63f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f1ad_1cf9_63f3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f1ad_1cf9_63f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_071b_31f4_9bb6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_071b_31f4_9bb6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_071b_31f4_9bb6/request", "", "public", "Top Dataset, std, rhum.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_071b_31f4_9bb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_071b_31f4_9bb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_071b_31f4_9bb6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_071b_31f4_9bb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_071b_31f4_9bb6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_071b_31f4_9bb6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f39_4298_cc46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f39_4298_cc46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f39_4298_cc46/request", "", "public", "Top Dataset, std, rhum.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f39_4298_cc46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f39_4298_cc46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f39_4298_cc46/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f39_4298_cc46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f39_4298_cc46&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7f39_4298_cc46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b7f_6b5e_4eb1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b7f_6b5e_4eb1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9b7f_6b5e_4eb1/request", "", "public", "Top Dataset, std, rhum.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9b7f_6b5e_4eb1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9b7f_6b5e_4eb1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9b7f_6b5e_4eb1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9b7f_6b5e_4eb1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9b7f_6b5e_4eb1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9b7f_6b5e_4eb1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7bcd_d136_968a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7bcd_d136_968a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7bcd_d136_968a/request", "", "public", "Top Dataset, std, rhum.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7bcd_d136_968a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7bcd_d136_968a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7bcd_d136_968a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7bcd_d136_968a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7bcd_d136_968a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7bcd_d136_968a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7da_08be_88c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7da_08be_88c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c7da_08be_88c3/request", "", "public", "Top Dataset, std, rhum.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c7da_08be_88c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c7da_08be_88c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c7da_08be_88c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c7da_08be_88c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c7da_08be_88c3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c7da_08be_88c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96a1_6dcf_9dcc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96a1_6dcf_9dcc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_96a1_6dcf_9dcc/request", "", "public", "Top Dataset, std, rhum.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_96a1_6dcf_9dcc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_96a1_6dcf_9dcc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_96a1_6dcf_9dcc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_96a1_6dcf_9dcc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_96a1_6dcf_9dcc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_96a1_6dcf_9dcc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a3aa_11ad_c1a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a3aa_11ad_c1a8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a3aa_11ad_c1a8/request", "", "public", "Top Dataset, std, rhum.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a3aa_11ad_c1a8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a3aa_11ad_c1a8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a3aa_11ad_c1a8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a3aa_11ad_c1a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a3aa_11ad_c1a8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a3aa_11ad_c1a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e08b_c0d7_9033", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e08b_c0d7_9033.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e08b_c0d7_9033/request", "", "public", "Top Dataset, std, rhum.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e08b_c0d7_9033_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e08b_c0d7_9033_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e08b_c0d7_9033/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e08b_c0d7_9033.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e08b_c0d7_9033&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e08b_c0d7_9033"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a622_7e00_f82a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a622_7e00_f82a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a622_7e00_f82a/request", "", "public", "Top Dataset, std, rhum.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a622_7e00_f82a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a622_7e00_f82a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a622_7e00_f82a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a622_7e00_f82a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a622_7e00_f82a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a622_7e00_f82a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7023_4043_22a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7023_4043_22a8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7023_4043_22a8/request", "", "public", "Top Dataset, std, rhum.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7023_4043_22a8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7023_4043_22a8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7023_4043_22a8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7023_4043_22a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7023_4043_22a8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7023_4043_22a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de80_7287_3170", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de80_7287_3170.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_de80_7287_3170/request", "", "public", "Top Dataset, std, rhum.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_de80_7287_3170_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_de80_7287_3170_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_de80_7287_3170/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_de80_7287_3170.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_de80_7287_3170&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_de80_7287_3170"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c070_6214_52a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c070_6214_52a8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c070_6214_52a8/request", "", "public", "Top Dataset, std, rhum.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c070_6214_52a8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c070_6214_52a8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c070_6214_52a8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c070_6214_52a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c070_6214_52a8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c070_6214_52a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d26_0e53_12d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d26_0e53_12d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d26_0e53_12d9/request", "", "public", "Top Dataset, std, rhum.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d26_0e53_12d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d26_0e53_12d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d26_0e53_12d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d26_0e53_12d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d26_0e53_12d9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6d26_0e53_12d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_82e4_4d2b_f78c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_82e4_4d2b_f78c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_82e4_4d2b_f78c/request", "", "public", "Top Dataset, std, rhum.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_82e4_4d2b_f78c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_82e4_4d2b_f78c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_82e4_4d2b_f78c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_82e4_4d2b_f78c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_82e4_4d2b_f78c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_82e4_4d2b_f78c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0e6_5539_cdb9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0e6_5539_cdb9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e0e6_5539_cdb9/request", "", "public", "Top Dataset, std, rhum.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e0e6_5539_cdb9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e0e6_5539_cdb9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e0e6_5539_cdb9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e0e6_5539_cdb9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e0e6_5539_cdb9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e0e6_5539_cdb9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cf4_c6b1_b084", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cf4_c6b1_b084.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1cf4_c6b1_b084/request", "", "public", "Top Dataset, std, rhum.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1cf4_c6b1_b084_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1cf4_c6b1_b084_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1cf4_c6b1_b084/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1cf4_c6b1_b084.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1cf4_c6b1_b084&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1cf4_c6b1_b084"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e249_8174_05ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e249_8174_05ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e249_8174_05ff/request", "", "public", "Top Dataset, std, rhum.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e249_8174_05ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e249_8174_05ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e249_8174_05ff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e249_8174_05ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e249_8174_05ff&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e249_8174_05ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7455_8ebf_ad05", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7455_8ebf_ad05.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7455_8ebf_ad05/request", "", "public", "Top Dataset, std, rhum.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7455_8ebf_ad05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7455_8ebf_ad05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7455_8ebf_ad05/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7455_8ebf_ad05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7455_8ebf_ad05&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7455_8ebf_ad05"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_492b_12b9_ff04", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_492b_12b9_ff04.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_492b_12b9_ff04/request", "", "public", "Top Dataset, std, rhum.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_492b_12b9_ff04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_492b_12b9_ff04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_492b_12b9_ff04/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_492b_12b9_ff04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_492b_12b9_ff04&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_492b_12b9_ff04"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f307_4967_57ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f307_4967_57ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f307_4967_57ff/request", "", "public", "Top Dataset, std, rhum.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f307_4967_57ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f307_4967_57ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f307_4967_57ff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f307_4967_57ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f307_4967_57ff&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f307_4967_57ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9bd_f034_abc7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9bd_f034_abc7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f9bd_f034_abc7/request", "", "public", "Top Dataset, std, rhum.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f9bd_f034_abc7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f9bd_f034_abc7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f9bd_f034_abc7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f9bd_f034_abc7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f9bd_f034_abc7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f9bd_f034_abc7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50ea_cc38_0e76", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50ea_cc38_0e76.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_50ea_cc38_0e76/request", "", "public", "Top Dataset, std, rhum.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_50ea_cc38_0e76_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_50ea_cc38_0e76_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50ea_cc38_0e76/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50ea_cc38_0e76.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50ea_cc38_0e76&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_50ea_cc38_0e76"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dda_6637_b0b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dda_6637_b0b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8dda_6637_b0b0/request", "", "public", "Top Dataset, std, rhum.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8dda_6637_b0b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8dda_6637_b0b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8dda_6637_b0b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8dda_6637_b0b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8dda_6637_b0b0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8dda_6637_b0b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f36_f26f_91b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f36_f26f_91b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4f36_f26f_91b9/request", "", "public", "Top Dataset, std, rhum.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4f36_f26f_91b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4f36_f26f_91b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4f36_f26f_91b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4f36_f26f_91b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4f36_f26f_91b9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4f36_f26f_91b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5859_3f00_836f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5859_3f00_836f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5859_3f00_836f/request", "", "public", "Top Dataset, std, rhum.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5859_3f00_836f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5859_3f00_836f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5859_3f00_836f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5859_3f00_836f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5859_3f00_836f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5859_3f00_836f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1df_518b_3d28", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1df_518b_3d28.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b1df_518b_3d28/request", "", "public", "Top Dataset, std, rhum.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b1df_518b_3d28_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b1df_518b_3d28_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b1df_518b_3d28/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b1df_518b_3d28.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b1df_518b_3d28&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b1df_518b_3d28"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc4f_9826_6118", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc4f_9826_6118.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc4f_9826_6118/request", "", "public", "Top Dataset, std, rhum.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc4f_9826_6118_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc4f_9826_6118_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc4f_9826_6118/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc4f_9826_6118.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc4f_9826_6118&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cc4f_9826_6118"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_114d_d8dc_c2c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_114d_d8dc_c2c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_114d_d8dc_c2c6/request", "", "public", "Top Dataset, std, rhum.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_114d_d8dc_c2c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_114d_d8dc_c2c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_114d_d8dc_c2c6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_114d_d8dc_c2c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_114d_d8dc_c2c6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_114d_d8dc_c2c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e3f1_c8dc_6c1d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e3f1_c8dc_6c1d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e3f1_c8dc_6c1d/request", "", "public", "Top Dataset, std, rhum.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e3f1_c8dc_6c1d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e3f1_c8dc_6c1d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e3f1_c8dc_6c1d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e3f1_c8dc_6c1d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e3f1_c8dc_6c1d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e3f1_c8dc_6c1d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee66_ca19_8bc9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee66_ca19_8bc9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ee66_ca19_8bc9/request", "", "public", "Top Dataset, std, rhum.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ee66_ca19_8bc9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ee66_ca19_8bc9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ee66_ca19_8bc9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ee66_ca19_8bc9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ee66_ca19_8bc9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ee66_ca19_8bc9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3568_3700_df79", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3568_3700_df79.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3568_3700_df79/request", "", "public", "Top Dataset, std, rhum.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3568_3700_df79_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3568_3700_df79_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3568_3700_df79/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3568_3700_df79.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3568_3700_df79&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3568_3700_df79"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_726e_9af3_8201", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_726e_9af3_8201.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_726e_9af3_8201/request", "", "public", "Top Dataset, std, rhum.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_726e_9af3_8201_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_726e_9af3_8201_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_726e_9af3_8201/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_726e_9af3_8201.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_726e_9af3_8201&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_726e_9af3_8201"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f38_b6a3_5f1f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f38_b6a3_5f1f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f38_b6a3_5f1f/request", "", "public", "Top Dataset, std, rhum.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f38_b6a3_5f1f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f38_b6a3_5f1f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f38_b6a3_5f1f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f38_b6a3_5f1f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f38_b6a3_5f1f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0f38_b6a3_5f1f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4841_86e2_1b6b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4841_86e2_1b6b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4841_86e2_1b6b/request", "", "public", "Top Dataset, std, rhum.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4841_86e2_1b6b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4841_86e2_1b6b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4841_86e2_1b6b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4841_86e2_1b6b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4841_86e2_1b6b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4841_86e2_1b6b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f871_76d0_2a70", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f871_76d0_2a70.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f871_76d0_2a70/request", "", "public", "Top Dataset, std, rhum.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f871_76d0_2a70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f871_76d0_2a70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f871_76d0_2a70/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f871_76d0_2a70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f871_76d0_2a70&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f871_76d0_2a70"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc94_c1b3_48d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc94_c1b3_48d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bc94_c1b3_48d5/request", "", "public", "Top Dataset, std, rhum.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bc94_c1b3_48d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bc94_c1b3_48d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bc94_c1b3_48d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bc94_c1b3_48d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bc94_c1b3_48d5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bc94_c1b3_48d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f52_12b5_bbed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f52_12b5_bbed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f52_12b5_bbed/request", "", "public", "Top Dataset, std, rhum.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f52_12b5_bbed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f52_12b5_bbed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f52_12b5_bbed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f52_12b5_bbed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f52_12b5_bbed&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1f52_12b5_bbed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_312b_3387_a0f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_312b_3387_a0f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_312b_3387_a0f9/request", "", "public", "Top Dataset, std, rhum.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_312b_3387_a0f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_312b_3387_a0f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_312b_3387_a0f9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_312b_3387_a0f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_312b_3387_a0f9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_312b_3387_a0f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d214_e3b9_bd97", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d214_e3b9_bd97.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d214_e3b9_bd97/request", "", "public", "Top Dataset, std, sflx.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d214_e3b9_bd97_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d214_e3b9_bd97_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d214_e3b9_bd97/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d214_e3b9_bd97.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d214_e3b9_bd97&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d214_e3b9_bd97"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a49_91d4_f394", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a49_91d4_f394.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a49_91d4_f394/request", "", "public", "Top Dataset, std, sflx.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a49_91d4_f394_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a49_91d4_f394_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a49_91d4_f394/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a49_91d4_f394.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a49_91d4_f394&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0a49_91d4_f394"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e3c1_b96d_30de", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e3c1_b96d_30de.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e3c1_b96d_30de/request", "", "public", "Top Dataset, std, sflx.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e3c1_b96d_30de_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e3c1_b96d_30de_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e3c1_b96d_30de/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e3c1_b96d_30de.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e3c1_b96d_30de&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e3c1_b96d_30de"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5c1_8a84_23d6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5c1_8a84_23d6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5c1_8a84_23d6/request", "", "public", "Top Dataset, std, sflx.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5c1_8a84_23d6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5c1_8a84_23d6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5c1_8a84_23d6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5c1_8a84_23d6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5c1_8a84_23d6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a5c1_8a84_23d6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c3f_ee31_3d62", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c3f_ee31_3d62.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c3f_ee31_3d62/request", "", "public", "Top Dataset, std, sflx.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c3f_ee31_3d62_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c3f_ee31_3d62_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c3f_ee31_3d62/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c3f_ee31_3d62.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c3f_ee31_3d62&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9c3f_ee31_3d62"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d08e_567b_abf0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d08e_567b_abf0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d08e_567b_abf0/request", "", "public", "Top Dataset, std, sflx.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d08e_567b_abf0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d08e_567b_abf0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d08e_567b_abf0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d08e_567b_abf0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d08e_567b_abf0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d08e_567b_abf0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09ad_9fca_2843", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09ad_9fca_2843.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_09ad_9fca_2843/request", "", "public", "Top Dataset, std, sflx.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_09ad_9fca_2843_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_09ad_9fca_2843_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_09ad_9fca_2843/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_09ad_9fca_2843.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_09ad_9fca_2843&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_09ad_9fca_2843"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_694c_40b4_0570", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_694c_40b4_0570.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_694c_40b4_0570/request", "", "public", "Top Dataset, std, sflx.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_694c_40b4_0570_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_694c_40b4_0570_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_694c_40b4_0570/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_694c_40b4_0570.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_694c_40b4_0570&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_694c_40b4_0570"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c651_64b9_b966", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c651_64b9_b966.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c651_64b9_b966/request", "", "public", "Top Dataset, std, sflx.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c651_64b9_b966_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c651_64b9_b966_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c651_64b9_b966/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c651_64b9_b966.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c651_64b9_b966&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c651_64b9_b966"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44c0_eead_fd71", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44c0_eead_fd71.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_44c0_eead_fd71/request", "", "public", "Top Dataset, std, sflx.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_44c0_eead_fd71_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_44c0_eead_fd71_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_44c0_eead_fd71/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_44c0_eead_fd71.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_44c0_eead_fd71&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_44c0_eead_fd71"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_438e_8da8_725c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_438e_8da8_725c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_438e_8da8_725c/request", "", "public", "Top Dataset, std, sflx.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_438e_8da8_725c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_438e_8da8_725c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_438e_8da8_725c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_438e_8da8_725c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_438e_8da8_725c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_438e_8da8_725c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70f7_11b3_d51c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70f7_11b3_d51c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_70f7_11b3_d51c/request", "", "public", "Top Dataset, std, sflx.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_70f7_11b3_d51c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_70f7_11b3_d51c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_70f7_11b3_d51c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_70f7_11b3_d51c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_70f7_11b3_d51c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_70f7_11b3_d51c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2689_7786_678a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2689_7786_678a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2689_7786_678a/request", "", "public", "Top Dataset, std, sflx.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2689_7786_678a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2689_7786_678a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2689_7786_678a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2689_7786_678a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2689_7786_678a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2689_7786_678a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2250_9e63_adef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2250_9e63_adef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2250_9e63_adef/request", "", "public", "Top Dataset, std, sflx.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2250_9e63_adef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2250_9e63_adef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2250_9e63_adef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2250_9e63_adef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2250_9e63_adef&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2250_9e63_adef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_922d_2218_8434", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_922d_2218_8434.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_922d_2218_8434/request", "", "public", "Top Dataset, std, sflx.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_922d_2218_8434_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_922d_2218_8434_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_922d_2218_8434/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_922d_2218_8434.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_922d_2218_8434&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_922d_2218_8434"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96e2_2a01_c3ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96e2_2a01_c3ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_96e2_2a01_c3ec/request", "", "public", "Top Dataset, std, sflx.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_96e2_2a01_c3ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_96e2_2a01_c3ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_96e2_2a01_c3ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_96e2_2a01_c3ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_96e2_2a01_c3ec&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_96e2_2a01_c3ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_400b_3ab7_eb30", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_400b_3ab7_eb30.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_400b_3ab7_eb30/request", "", "public", "Top Dataset, std, sflx.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_400b_3ab7_eb30_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_400b_3ab7_eb30_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_400b_3ab7_eb30/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_400b_3ab7_eb30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_400b_3ab7_eb30&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_400b_3ab7_eb30"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e75f_f869_2f2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e75f_f869_2f2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e75f_f869_2f2a/request", "", "public", "Top Dataset, std, sflx.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e75f_f869_2f2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e75f_f869_2f2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e75f_f869_2f2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e75f_f869_2f2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e75f_f869_2f2a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e75f_f869_2f2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e836_c94c_c921", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e836_c94c_c921.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e836_c94c_c921/request", "", "public", "Top Dataset, std, sflx.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e836_c94c_c921_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e836_c94c_c921_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e836_c94c_c921/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e836_c94c_c921.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e836_c94c_c921&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e836_c94c_c921"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4799_ca9a_47f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4799_ca9a_47f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4799_ca9a_47f5/request", "", "public", "Top Dataset, std, sflx.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4799_ca9a_47f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4799_ca9a_47f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4799_ca9a_47f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4799_ca9a_47f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4799_ca9a_47f5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4799_ca9a_47f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae61_a6fb_05bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae61_a6fb_05bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae61_a6fb_05bb/request", "", "public", "Top Dataset, std, sflx.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae61_a6fb_05bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae61_a6fb_05bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae61_a6fb_05bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae61_a6fb_05bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae61_a6fb_05bb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ae61_a6fb_05bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1b3_8039_94df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1b3_8039_94df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f1b3_8039_94df/request", "", "public", "Top Dataset, std, sflx.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f1b3_8039_94df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f1b3_8039_94df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f1b3_8039_94df/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f1b3_8039_94df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f1b3_8039_94df&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f1b3_8039_94df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_445b_b3f5_f7d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_445b_b3f5_f7d1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_445b_b3f5_f7d1/request", "", "public", "Top Dataset, std, sflx.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_445b_b3f5_f7d1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_445b_b3f5_f7d1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_445b_b3f5_f7d1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_445b_b3f5_f7d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_445b_b3f5_f7d1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_445b_b3f5_f7d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b06d_fac2_d9ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b06d_fac2_d9ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b06d_fac2_d9ef/request", "", "public", "Top Dataset, std, sflx.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b06d_fac2_d9ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b06d_fac2_d9ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b06d_fac2_d9ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b06d_fac2_d9ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b06d_fac2_d9ef&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b06d_fac2_d9ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f565_fbc5_f5f4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f565_fbc5_f5f4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f565_fbc5_f5f4/request", "", "public", "Top Dataset, std, sflx.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f565_fbc5_f5f4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f565_fbc5_f5f4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f565_fbc5_f5f4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f565_fbc5_f5f4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f565_fbc5_f5f4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f565_fbc5_f5f4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a85_0487_67a5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a85_0487_67a5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a85_0487_67a5/request", "", "public", "Top Dataset, std, sflx.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a85_0487_67a5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a85_0487_67a5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a85_0487_67a5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a85_0487_67a5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a85_0487_67a5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0a85_0487_67a5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9fac_dd00_4c56", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9fac_dd00_4c56.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9fac_dd00_4c56/request", "", "public", "Top Dataset, std, sflx.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9fac_dd00_4c56_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9fac_dd00_4c56_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9fac_dd00_4c56/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9fac_dd00_4c56.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9fac_dd00_4c56&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9fac_dd00_4c56"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41c5_5b5a_9851", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41c5_5b5a_9851.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_41c5_5b5a_9851/request", "", "public", "Top Dataset, std, sflx.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_41c5_5b5a_9851_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_41c5_5b5a_9851_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_41c5_5b5a_9851/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_41c5_5b5a_9851.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_41c5_5b5a_9851&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_41c5_5b5a_9851"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2207_3307_e4b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2207_3307_e4b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2207_3307_e4b5/request", "", "public", "Top Dataset, std, sflx.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2207_3307_e4b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2207_3307_e4b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2207_3307_e4b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2207_3307_e4b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2207_3307_e4b5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2207_3307_e4b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dea6_3c5a_ce39", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dea6_3c5a_ce39.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dea6_3c5a_ce39/request", "", "public", "Top Dataset, std, sflx.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dea6_3c5a_ce39_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dea6_3c5a_ce39_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dea6_3c5a_ce39/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dea6_3c5a_ce39.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dea6_3c5a_ce39&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dea6_3c5a_ce39"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96d8_8b0b_d4aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96d8_8b0b_d4aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_96d8_8b0b_d4aa/request", "", "public", "Top Dataset, std, sflx.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_96d8_8b0b_d4aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_96d8_8b0b_d4aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_96d8_8b0b_d4aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_96d8_8b0b_d4aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_96d8_8b0b_d4aa&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_96d8_8b0b_d4aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e2a_b018_dfb8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e2a_b018_dfb8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e2a_b018_dfb8/request", "", "public", "Top Dataset, std, sflx.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e2a_b018_dfb8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e2a_b018_dfb8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e2a_b018_dfb8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e2a_b018_dfb8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e2a_b018_dfb8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3e2a_b018_dfb8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9369_8b14_53b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9369_8b14_53b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9369_8b14_53b7/request", "", "public", "Top Dataset, std, sflx.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9369_8b14_53b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9369_8b14_53b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9369_8b14_53b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9369_8b14_53b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9369_8b14_53b7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9369_8b14_53b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4b4_ca4a_f821", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4b4_ca4a_f821.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a4b4_ca4a_f821/request", "", "public", "Top Dataset, std, sflx.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a4b4_ca4a_f821_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a4b4_ca4a_f821_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a4b4_ca4a_f821/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a4b4_ca4a_f821.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a4b4_ca4a_f821&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a4b4_ca4a_f821"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4766_4e1f_3f38", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4766_4e1f_3f38.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4766_4e1f_3f38/request", "", "public", "Top Dataset, std, sflx.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4766_4e1f_3f38_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4766_4e1f_3f38_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4766_4e1f_3f38/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4766_4e1f_3f38.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4766_4e1f_3f38&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4766_4e1f_3f38"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d704_e2b4_600e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d704_e2b4_600e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d704_e2b4_600e/request", "", "public", "Top Dataset, std, sflx.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d704_e2b4_600e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d704_e2b4_600e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d704_e2b4_600e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d704_e2b4_600e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d704_e2b4_600e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d704_e2b4_600e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fb1_6745_93a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fb1_6745_93a8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2fb1_6745_93a8/request", "", "public", "Top Dataset, std, sflx.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2fb1_6745_93a8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2fb1_6745_93a8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2fb1_6745_93a8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2fb1_6745_93a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2fb1_6745_93a8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2fb1_6745_93a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_346f_7d8c_da25", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_346f_7d8c_da25.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_346f_7d8c_da25/request", "", "public", "Top Dataset, std, sflx.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_346f_7d8c_da25_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_346f_7d8c_da25_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_346f_7d8c_da25/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_346f_7d8c_da25.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_346f_7d8c_da25&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_346f_7d8c_da25"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eac8_6632_b1b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eac8_6632_b1b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eac8_6632_b1b5/request", "", "public", "Top Dataset, std, sflx.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eac8_6632_b1b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eac8_6632_b1b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eac8_6632_b1b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eac8_6632_b1b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eac8_6632_b1b5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eac8_6632_b1b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2a3_6960_4695", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2a3_6960_4695.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f2a3_6960_4695/request", "", "public", "Top Dataset, std, sflx.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f2a3_6960_4695_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f2a3_6960_4695_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f2a3_6960_4695/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f2a3_6960_4695.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f2a3_6960_4695&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f2a3_6960_4695"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93df_1ca4_5956", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93df_1ca4_5956.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_93df_1ca4_5956/request", "", "public", "Top Dataset, std, sflx.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_93df_1ca4_5956_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_93df_1ca4_5956_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_93df_1ca4_5956/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_93df_1ca4_5956.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_93df_1ca4_5956&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_93df_1ca4_5956"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f763_abcd_704a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f763_abcd_704a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f763_abcd_704a/request", "", "public", "Top Dataset, std, sflx.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f763_abcd_704a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f763_abcd_704a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f763_abcd_704a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f763_abcd_704a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f763_abcd_704a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f763_abcd_704a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b954_d689_e77f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b954_d689_e77f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b954_d689_e77f/request", "", "public", "Top Dataset, std, sflx.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b954_d689_e77f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b954_d689_e77f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b954_d689_e77f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b954_d689_e77f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b954_d689_e77f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b954_d689_e77f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28f7_4da1_39fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28f7_4da1_39fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28f7_4da1_39fb/request", "", "public", "Top Dataset, std, sflx.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28f7_4da1_39fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28f7_4da1_39fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28f7_4da1_39fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28f7_4da1_39fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28f7_4da1_39fb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_28f7_4da1_39fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96a5_e97d_bafa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96a5_e97d_bafa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_96a5_e97d_bafa/request", "", "public", "Top Dataset, std, sflx.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_96a5_e97d_bafa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_96a5_e97d_bafa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_96a5_e97d_bafa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_96a5_e97d_bafa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_96a5_e97d_bafa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_96a5_e97d_bafa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8b0_07ba_f15e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8b0_07ba_f15e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b8b0_07ba_f15e/request", "", "public", "Top Dataset, std, sflx.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b8b0_07ba_f15e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b8b0_07ba_f15e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b8b0_07ba_f15e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b8b0_07ba_f15e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b8b0_07ba_f15e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b8b0_07ba_f15e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cfc_08ef_8216", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cfc_08ef_8216.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7cfc_08ef_8216/request", "", "public", "Top Dataset, std, sflx.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7cfc_08ef_8216_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7cfc_08ef_8216_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7cfc_08ef_8216/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7cfc_08ef_8216.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7cfc_08ef_8216&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7cfc_08ef_8216"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7dad_baf1_8e3e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7dad_baf1_8e3e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7dad_baf1_8e3e/request", "", "public", "Top Dataset, std, sflx.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7dad_baf1_8e3e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7dad_baf1_8e3e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7dad_baf1_8e3e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7dad_baf1_8e3e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7dad_baf1_8e3e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7dad_baf1_8e3e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88a8_aec8_6d74", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88a8_aec8_6d74.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_88a8_aec8_6d74/request", "", "public", "Top Dataset, std, sflx.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_88a8_aec8_6d74_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_88a8_aec8_6d74_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_88a8_aec8_6d74/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_88a8_aec8_6d74.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_88a8_aec8_6d74&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_88a8_aec8_6d74"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ab8_da34_9d7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ab8_da34_9d7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ab8_da34_9d7b/request", "", "public", "Top Dataset, std, sflx.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ab8_da34_9d7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ab8_da34_9d7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ab8_da34_9d7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ab8_da34_9d7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ab8_da34_9d7b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4ab8_da34_9d7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c5f_0dac_82a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c5f_0dac_82a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8c5f_0dac_82a6/request", "", "public", "Top Dataset, std, sflx.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8c5f_0dac_82a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8c5f_0dac_82a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8c5f_0dac_82a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8c5f_0dac_82a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8c5f_0dac_82a6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8c5f_0dac_82a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94a6_3a18_34eb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94a6_3a18_34eb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_94a6_3a18_34eb/request", "", "public", "Top Dataset, std, sflx.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_94a6_3a18_34eb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_94a6_3a18_34eb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_94a6_3a18_34eb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_94a6_3a18_34eb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_94a6_3a18_34eb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_94a6_3a18_34eb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1629_a0b5_7de5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1629_a0b5_7de5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1629_a0b5_7de5/request", "", "public", "Top Dataset, std, sflx.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1629_a0b5_7de5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1629_a0b5_7de5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1629_a0b5_7de5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1629_a0b5_7de5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1629_a0b5_7de5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1629_a0b5_7de5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfbe_ee49_d536", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfbe_ee49_d536.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cfbe_ee49_d536/request", "", "public", "Top Dataset, std, sflx.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cfbe_ee49_d536_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cfbe_ee49_d536_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cfbe_ee49_d536/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cfbe_ee49_d536.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cfbe_ee49_d536&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cfbe_ee49_d536"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a65e_a916_e7c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a65e_a916_e7c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a65e_a916_e7c6/request", "", "public", "Top Dataset, std, sflx.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a65e_a916_e7c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a65e_a916_e7c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a65e_a916_e7c6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a65e_a916_e7c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a65e_a916_e7c6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a65e_a916_e7c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4ef_29e7_2851", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4ef_29e7_2851.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d4ef_29e7_2851/request", "", "public", "Top Dataset, std, sflx.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d4ef_29e7_2851_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d4ef_29e7_2851_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d4ef_29e7_2851/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d4ef_29e7_2851.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d4ef_29e7_2851&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d4ef_29e7_2851"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e162_c58a_7de0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e162_c58a_7de0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e162_c58a_7de0/request", "", "public", "Top Dataset, std, sflx.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e162_c58a_7de0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e162_c58a_7de0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e162_c58a_7de0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e162_c58a_7de0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e162_c58a_7de0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e162_c58a_7de0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c85_5b18_1f9b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c85_5b18_1f9b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4c85_5b18_1f9b/request", "", "public", "Top Dataset, std, sflx.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4c85_5b18_1f9b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4c85_5b18_1f9b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c85_5b18_1f9b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c85_5b18_1f9b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c85_5b18_1f9b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4c85_5b18_1f9b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22c9_f23c_d42b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22c9_f23c_d42b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_22c9_f23c_d42b/request", "", "public", "Top Dataset, std, sflx.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_22c9_f23c_d42b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_22c9_f23c_d42b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_22c9_f23c_d42b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_22c9_f23c_d42b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_22c9_f23c_d42b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_22c9_f23c_d42b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2898_c7f5_649c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2898_c7f5_649c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2898_c7f5_649c/request", "", "public", "Top Dataset, std, sflx.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2898_c7f5_649c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2898_c7f5_649c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2898_c7f5_649c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2898_c7f5_649c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2898_c7f5_649c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2898_c7f5_649c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3199_5684_5bab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3199_5684_5bab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3199_5684_5bab/request", "", "public", "Top Dataset, std, shum.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3199_5684_5bab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3199_5684_5bab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3199_5684_5bab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3199_5684_5bab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3199_5684_5bab&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3199_5684_5bab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b10_0b02_65b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b10_0b02_65b1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8b10_0b02_65b1/request", "", "public", "Top Dataset, std, shum.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8b10_0b02_65b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8b10_0b02_65b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8b10_0b02_65b1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8b10_0b02_65b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8b10_0b02_65b1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8b10_0b02_65b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cbef_7ede_ff42", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cbef_7ede_ff42.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cbef_7ede_ff42/request", "", "public", "Top Dataset, std, shum.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cbef_7ede_ff42_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cbef_7ede_ff42_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cbef_7ede_ff42/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cbef_7ede_ff42.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cbef_7ede_ff42&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cbef_7ede_ff42"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afb7_cd68_ebb3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afb7_cd68_ebb3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_afb7_cd68_ebb3/request", "", "public", "Top Dataset, std, shum.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_afb7_cd68_ebb3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_afb7_cd68_ebb3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_afb7_cd68_ebb3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_afb7_cd68_ebb3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_afb7_cd68_ebb3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_afb7_cd68_ebb3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4294_ee3d_f1a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4294_ee3d_f1a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4294_ee3d_f1a1/request", "", "public", "Top Dataset, std, shum.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4294_ee3d_f1a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4294_ee3d_f1a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4294_ee3d_f1a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4294_ee3d_f1a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4294_ee3d_f1a1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4294_ee3d_f1a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9087_45c1_4408", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9087_45c1_4408.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9087_45c1_4408/request", "", "public", "Top Dataset, std, shum.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9087_45c1_4408_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9087_45c1_4408_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9087_45c1_4408/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9087_45c1_4408.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9087_45c1_4408&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9087_45c1_4408"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56e2_027a_8628", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56e2_027a_8628.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_56e2_027a_8628/request", "", "public", "Top Dataset, std, shum.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_56e2_027a_8628_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_56e2_027a_8628_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_56e2_027a_8628/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_56e2_027a_8628.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_56e2_027a_8628&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_56e2_027a_8628"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f945_aeea_c28b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f945_aeea_c28b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f945_aeea_c28b/request", "", "public", "Top Dataset, std, shum.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f945_aeea_c28b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f945_aeea_c28b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f945_aeea_c28b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f945_aeea_c28b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f945_aeea_c28b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f945_aeea_c28b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fcd5_8d8c_ba77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fcd5_8d8c_ba77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fcd5_8d8c_ba77/request", "", "public", "Top Dataset, std, shum.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fcd5_8d8c_ba77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fcd5_8d8c_ba77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fcd5_8d8c_ba77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fcd5_8d8c_ba77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fcd5_8d8c_ba77&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fcd5_8d8c_ba77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec3f_f58e_b74b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec3f_f58e_b74b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ec3f_f58e_b74b/request", "", "public", "Top Dataset, std, shum.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ec3f_f58e_b74b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ec3f_f58e_b74b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ec3f_f58e_b74b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ec3f_f58e_b74b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ec3f_f58e_b74b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ec3f_f58e_b74b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1bac_2740_2bb1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1bac_2740_2bb1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1bac_2740_2bb1/request", "", "public", "Top Dataset, std, shum.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1bac_2740_2bb1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1bac_2740_2bb1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1bac_2740_2bb1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1bac_2740_2bb1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1bac_2740_2bb1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1bac_2740_2bb1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0f3_e354_c067", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0f3_e354_c067.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f0f3_e354_c067/request", "", "public", "Top Dataset, std, shum.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f0f3_e354_c067_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f0f3_e354_c067_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f0f3_e354_c067/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f0f3_e354_c067.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f0f3_e354_c067&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f0f3_e354_c067"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38ab_3d6a_8364", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38ab_3d6a_8364.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_38ab_3d6a_8364/request", "", "public", "Top Dataset, std, shum.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_38ab_3d6a_8364_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_38ab_3d6a_8364_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_38ab_3d6a_8364/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_38ab_3d6a_8364.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_38ab_3d6a_8364&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_38ab_3d6a_8364"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4189_49e7_467b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4189_49e7_467b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4189_49e7_467b/request", "", "public", "Top Dataset, std, shum.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4189_49e7_467b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4189_49e7_467b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4189_49e7_467b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4189_49e7_467b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4189_49e7_467b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4189_49e7_467b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9806_e7af_66aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9806_e7af_66aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9806_e7af_66aa/request", "", "public", "Top Dataset, std, shum.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9806_e7af_66aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9806_e7af_66aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9806_e7af_66aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9806_e7af_66aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9806_e7af_66aa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9806_e7af_66aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78f9_872a_34e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78f9_872a_34e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_78f9_872a_34e0/request", "", "public", "Top Dataset, std, shum.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_78f9_872a_34e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_78f9_872a_34e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_78f9_872a_34e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_78f9_872a_34e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_78f9_872a_34e0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_78f9_872a_34e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50e4_5df9_fe7e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50e4_5df9_fe7e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_50e4_5df9_fe7e/request", "", "public", "Top Dataset, std, shum.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_50e4_5df9_fe7e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_50e4_5df9_fe7e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50e4_5df9_fe7e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50e4_5df9_fe7e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50e4_5df9_fe7e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_50e4_5df9_fe7e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc1a_f53e_1b51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc1a_f53e_1b51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc1a_f53e_1b51/request", "", "public", "Top Dataset, std, shum.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc1a_f53e_1b51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc1a_f53e_1b51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc1a_f53e_1b51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc1a_f53e_1b51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc1a_f53e_1b51&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cc1a_f53e_1b51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10ca_f66e_28a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10ca_f66e_28a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_10ca_f66e_28a0/request", "", "public", "Top Dataset, std, shum.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_10ca_f66e_28a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_10ca_f66e_28a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_10ca_f66e_28a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_10ca_f66e_28a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_10ca_f66e_28a0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_10ca_f66e_28a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_345b_5e91_d0f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_345b_5e91_d0f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_345b_5e91_d0f6/request", "", "public", "Top Dataset, std, shum.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_345b_5e91_d0f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_345b_5e91_d0f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_345b_5e91_d0f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_345b_5e91_d0f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_345b_5e91_d0f6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_345b_5e91_d0f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b4b_64a7_7896", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b4b_64a7_7896.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b4b_64a7_7896/request", "", "public", "Top Dataset, std, shum.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b4b_64a7_7896_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b4b_64a7_7896_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b4b_64a7_7896/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b4b_64a7_7896.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b4b_64a7_7896&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6b4b_64a7_7896"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c73e_9f4b_1ab1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c73e_9f4b_1ab1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c73e_9f4b_1ab1/request", "", "public", "Top Dataset, std, shum.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c73e_9f4b_1ab1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c73e_9f4b_1ab1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c73e_9f4b_1ab1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c73e_9f4b_1ab1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c73e_9f4b_1ab1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c73e_9f4b_1ab1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a11e_9d70_7d8c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a11e_9d70_7d8c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a11e_9d70_7d8c/request", "", "public", "Top Dataset, std, shum.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a11e_9d70_7d8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a11e_9d70_7d8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a11e_9d70_7d8c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a11e_9d70_7d8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a11e_9d70_7d8c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a11e_9d70_7d8c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df8f_f8eb_fbf3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df8f_f8eb_fbf3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_df8f_f8eb_fbf3/request", "", "public", "Top Dataset, std, shum.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_df8f_f8eb_fbf3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_df8f_f8eb_fbf3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_df8f_f8eb_fbf3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_df8f_f8eb_fbf3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_df8f_f8eb_fbf3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_df8f_f8eb_fbf3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_febf_cafb_16aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_febf_cafb_16aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_febf_cafb_16aa/request", "", "public", "Top Dataset, std, shum.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_febf_cafb_16aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_febf_cafb_16aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_febf_cafb_16aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_febf_cafb_16aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_febf_cafb_16aa&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_febf_cafb_16aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99f4_1284_5a68", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99f4_1284_5a68.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99f4_1284_5a68/request", "", "public", "Top Dataset, std, shum.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99f4_1284_5a68_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99f4_1284_5a68_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99f4_1284_5a68/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99f4_1284_5a68.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99f4_1284_5a68&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_99f4_1284_5a68"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b551_14f5_9056", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b551_14f5_9056.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b551_14f5_9056/request", "", "public", "Top Dataset, std, shum.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b551_14f5_9056_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b551_14f5_9056_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b551_14f5_9056/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b551_14f5_9056.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b551_14f5_9056&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b551_14f5_9056"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4739_3e14_ed8d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4739_3e14_ed8d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4739_3e14_ed8d/request", "", "public", "Top Dataset, std, shum.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4739_3e14_ed8d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4739_3e14_ed8d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4739_3e14_ed8d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4739_3e14_ed8d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4739_3e14_ed8d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4739_3e14_ed8d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_68ef_f5b8_600f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_68ef_f5b8_600f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_68ef_f5b8_600f/request", "", "public", "Top Dataset, std, shum.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_68ef_f5b8_600f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_68ef_f5b8_600f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_68ef_f5b8_600f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_68ef_f5b8_600f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_68ef_f5b8_600f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_68ef_f5b8_600f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a501_cc1a_0017", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a501_cc1a_0017.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a501_cc1a_0017/request", "", "public", "Top Dataset, std, shum.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a501_cc1a_0017_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a501_cc1a_0017_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a501_cc1a_0017/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a501_cc1a_0017.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a501_cc1a_0017&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a501_cc1a_0017"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3722_8240_aa86", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3722_8240_aa86.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3722_8240_aa86/request", "", "public", "Top Dataset, std, shum.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3722_8240_aa86_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3722_8240_aa86_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3722_8240_aa86/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3722_8240_aa86.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3722_8240_aa86&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3722_8240_aa86"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e245_bb35_5c4c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e245_bb35_5c4c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e245_bb35_5c4c/request", "", "public", "Top Dataset, std, shum.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e245_bb35_5c4c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e245_bb35_5c4c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e245_bb35_5c4c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e245_bb35_5c4c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e245_bb35_5c4c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e245_bb35_5c4c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e62e_503e_189a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e62e_503e_189a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e62e_503e_189a/request", "", "public", "Top Dataset, std, shum.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e62e_503e_189a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e62e_503e_189a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e62e_503e_189a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e62e_503e_189a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e62e_503e_189a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e62e_503e_189a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c225_0aad_53ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c225_0aad_53ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c225_0aad_53ab/request", "", "public", "Top Dataset, std, shum.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c225_0aad_53ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c225_0aad_53ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c225_0aad_53ab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c225_0aad_53ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c225_0aad_53ab&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c225_0aad_53ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_375b_0767_c2ad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_375b_0767_c2ad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_375b_0767_c2ad/request", "", "public", "Top Dataset, std, shum.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_375b_0767_c2ad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_375b_0767_c2ad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_375b_0767_c2ad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_375b_0767_c2ad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_375b_0767_c2ad&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_375b_0767_c2ad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be55_8734_1165", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be55_8734_1165.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_be55_8734_1165/request", "", "public", "Top Dataset, std, shum.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_be55_8734_1165_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_be55_8734_1165_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_be55_8734_1165/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_be55_8734_1165.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_be55_8734_1165&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_be55_8734_1165"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd7f_1aff_01ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd7f_1aff_01ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bd7f_1aff_01ec/request", "", "public", "Top Dataset, std, shum.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bd7f_1aff_01ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bd7f_1aff_01ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bd7f_1aff_01ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bd7f_1aff_01ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bd7f_1aff_01ec&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bd7f_1aff_01ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_320f_006f_b47f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_320f_006f_b47f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_320f_006f_b47f/request", "", "public", "Top Dataset, std, shum.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_320f_006f_b47f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_320f_006f_b47f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_320f_006f_b47f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_320f_006f_b47f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_320f_006f_b47f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_320f_006f_b47f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8253_f49a_62f4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8253_f49a_62f4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8253_f49a_62f4/request", "", "public", "Top Dataset, std, shum.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8253_f49a_62f4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8253_f49a_62f4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8253_f49a_62f4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8253_f49a_62f4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8253_f49a_62f4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8253_f49a_62f4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f78c_99d9_9b7c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f78c_99d9_9b7c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f78c_99d9_9b7c/request", "", "public", "Top Dataset, std, shum.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f78c_99d9_9b7c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f78c_99d9_9b7c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f78c_99d9_9b7c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f78c_99d9_9b7c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f78c_99d9_9b7c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f78c_99d9_9b7c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3465_06ae_830a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3465_06ae_830a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3465_06ae_830a/request", "", "public", "Top Dataset, std, shum.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3465_06ae_830a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3465_06ae_830a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3465_06ae_830a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3465_06ae_830a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3465_06ae_830a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3465_06ae_830a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbbf_859a_f61e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbbf_859a_f61e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fbbf_859a_f61e/request", "", "public", "Top Dataset, std, shum.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fbbf_859a_f61e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fbbf_859a_f61e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fbbf_859a_f61e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fbbf_859a_f61e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fbbf_859a_f61e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fbbf_859a_f61e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_035d_db52_5250", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_035d_db52_5250.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_035d_db52_5250/request", "", "public", "Top Dataset, std, shum.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_035d_db52_5250_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_035d_db52_5250_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_035d_db52_5250/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_035d_db52_5250.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_035d_db52_5250&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_035d_db52_5250"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4812_9137_488c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4812_9137_488c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4812_9137_488c/request", "", "public", "Top Dataset, std, shum.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4812_9137_488c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4812_9137_488c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4812_9137_488c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4812_9137_488c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4812_9137_488c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4812_9137_488c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f827_b9fb_f0b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f827_b9fb_f0b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f827_b9fb_f0b6/request", "", "public", "Top Dataset, std, shum.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f827_b9fb_f0b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f827_b9fb_f0b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f827_b9fb_f0b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f827_b9fb_f0b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f827_b9fb_f0b6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f827_b9fb_f0b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c737_bdcc_2a75", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c737_bdcc_2a75.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c737_bdcc_2a75/request", "", "public", "Top Dataset, std, shum.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c737_bdcc_2a75_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c737_bdcc_2a75_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c737_bdcc_2a75/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c737_bdcc_2a75.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c737_bdcc_2a75&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c737_bdcc_2a75"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_055c_e22d_6a2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_055c_e22d_6a2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_055c_e22d_6a2d/request", "", "public", "Top Dataset, std, shum.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_055c_e22d_6a2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_055c_e22d_6a2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_055c_e22d_6a2d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_055c_e22d_6a2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_055c_e22d_6a2d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_055c_e22d_6a2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b3f_fb1f_4daf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b3f_fb1f_4daf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3b3f_fb1f_4daf/request", "", "public", "Top Dataset, std, shum.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3b3f_fb1f_4daf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3b3f_fb1f_4daf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3b3f_fb1f_4daf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3b3f_fb1f_4daf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3b3f_fb1f_4daf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3b3f_fb1f_4daf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b464_a9e4_7deb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b464_a9e4_7deb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b464_a9e4_7deb/request", "", "public", "Top Dataset, std, shum.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b464_a9e4_7deb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b464_a9e4_7deb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b464_a9e4_7deb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b464_a9e4_7deb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b464_a9e4_7deb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b464_a9e4_7deb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4217_cf69_4dae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4217_cf69_4dae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4217_cf69_4dae/request", "", "public", "Top Dataset, std, shum.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4217_cf69_4dae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4217_cf69_4dae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4217_cf69_4dae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4217_cf69_4dae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4217_cf69_4dae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4217_cf69_4dae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a349_26cd_eaac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a349_26cd_eaac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a349_26cd_eaac/request", "", "public", "Top Dataset, std, shum.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a349_26cd_eaac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a349_26cd_eaac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a349_26cd_eaac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a349_26cd_eaac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a349_26cd_eaac&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a349_26cd_eaac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_150d_ee81_00c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_150d_ee81_00c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_150d_ee81_00c3/request", "", "public", "Top Dataset, std, shum.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_150d_ee81_00c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_150d_ee81_00c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_150d_ee81_00c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_150d_ee81_00c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_150d_ee81_00c3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_150d_ee81_00c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91d3_23b9_2899", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91d3_23b9_2899.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_91d3_23b9_2899/request", "", "public", "Top Dataset, std, shum.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_91d3_23b9_2899_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_91d3_23b9_2899_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_91d3_23b9_2899/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_91d3_23b9_2899.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_91d3_23b9_2899&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_91d3_23b9_2899"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ade2_0eff_16a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ade2_0eff_16a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ade2_0eff_16a7/request", "", "public", "Top Dataset, std, shum.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ade2_0eff_16a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ade2_0eff_16a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ade2_0eff_16a7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ade2_0eff_16a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ade2_0eff_16a7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ade2_0eff_16a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f039_1abe_dc39", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f039_1abe_dc39.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f039_1abe_dc39/request", "", "public", "Top Dataset, std, shum.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f039_1abe_dc39_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f039_1abe_dc39_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f039_1abe_dc39/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f039_1abe_dc39.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f039_1abe_dc39&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f039_1abe_dc39"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_158f_f3f5_e71f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_158f_f3f5_e71f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_158f_f3f5_e71f/request", "", "public", "Top Dataset, std, shum.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_158f_f3f5_e71f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_158f_f3f5_e71f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_158f_f3f5_e71f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_158f_f3f5_e71f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_158f_f3f5_e71f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_158f_f3f5_e71f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c50e_22c5_1a33", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c50e_22c5_1a33.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c50e_22c5_1a33/request", "", "public", "Top Dataset, std, shum.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c50e_22c5_1a33_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c50e_22c5_1a33_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c50e_22c5_1a33/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c50e_22c5_1a33.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c50e_22c5_1a33&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c50e_22c5_1a33"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97b8_cfc7_fe99", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97b8_cfc7_fe99.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_97b8_cfc7_fe99/request", "", "public", "Top Dataset, std, shum.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_97b8_cfc7_fe99_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_97b8_cfc7_fe99_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_97b8_cfc7_fe99/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_97b8_cfc7_fe99.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_97b8_cfc7_fe99&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_97b8_cfc7_fe99"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56f9_b487_114c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56f9_b487_114c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_56f9_b487_114c/request", "", "public", "Top Dataset, std, shum.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_56f9_b487_114c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_56f9_b487_114c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_56f9_b487_114c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_56f9_b487_114c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_56f9_b487_114c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_56f9_b487_114c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f2a_fcd1_779c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f2a_fcd1_779c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6f2a_fcd1_779c/request", "", "public", "Top Dataset, std, shum.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6f2a_fcd1_779c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6f2a_fcd1_779c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6f2a_fcd1_779c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6f2a_fcd1_779c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6f2a_fcd1_779c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6f2a_fcd1_779c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d70_5e2d_b5d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d70_5e2d_b5d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5d70_5e2d_b5d0/request", "", "public", "Top Dataset, std, slp.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5d70_5e2d_b5d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5d70_5e2d_b5d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5d70_5e2d_b5d0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5d70_5e2d_b5d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5d70_5e2d_b5d0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5d70_5e2d_b5d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfcc_7728_13dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfcc_7728_13dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dfcc_7728_13dc/request", "", "public", "Top Dataset, std, slp.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dfcc_7728_13dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dfcc_7728_13dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dfcc_7728_13dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dfcc_7728_13dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dfcc_7728_13dc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dfcc_7728_13dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc26_2f73_52fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc26_2f73_52fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc26_2f73_52fe/request", "", "public", "Top Dataset, std, slp.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc26_2f73_52fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc26_2f73_52fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc26_2f73_52fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc26_2f73_52fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc26_2f73_52fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fc26_2f73_52fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e787_736b_92e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e787_736b_92e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e787_736b_92e2/request", "", "public", "Top Dataset, std, slp.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e787_736b_92e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e787_736b_92e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e787_736b_92e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e787_736b_92e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e787_736b_92e2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e787_736b_92e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_31a2_9e64_def7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_31a2_9e64_def7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_31a2_9e64_def7/request", "", "public", "Top Dataset, std, slp.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_31a2_9e64_def7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_31a2_9e64_def7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_31a2_9e64_def7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_31a2_9e64_def7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_31a2_9e64_def7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_31a2_9e64_def7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7214_fbb0_282b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7214_fbb0_282b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7214_fbb0_282b/request", "", "public", "Top Dataset, std, slp.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7214_fbb0_282b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7214_fbb0_282b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7214_fbb0_282b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7214_fbb0_282b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7214_fbb0_282b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7214_fbb0_282b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5d3_0dbb_308a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5d3_0dbb_308a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5d3_0dbb_308a/request", "", "public", "Top Dataset, std, slp.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5d3_0dbb_308a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5d3_0dbb_308a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5d3_0dbb_308a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5d3_0dbb_308a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5d3_0dbb_308a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b5d3_0dbb_308a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0658_77bd_a22e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0658_77bd_a22e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0658_77bd_a22e/request", "", "public", "Top Dataset, std, slp.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0658_77bd_a22e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0658_77bd_a22e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0658_77bd_a22e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0658_77bd_a22e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0658_77bd_a22e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0658_77bd_a22e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f5d_8d20_8a65", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f5d_8d20_8a65.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f5d_8d20_8a65/request", "", "public", "Top Dataset, std, slp.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f5d_8d20_8a65_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f5d_8d20_8a65_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f5d_8d20_8a65/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f5d_8d20_8a65.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f5d_8d20_8a65&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7f5d_8d20_8a65"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_869f_0b2a_4b85", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_869f_0b2a_4b85.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_869f_0b2a_4b85/request", "", "public", "Top Dataset, std, slp.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_869f_0b2a_4b85_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_869f_0b2a_4b85_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_869f_0b2a_4b85/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_869f_0b2a_4b85.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_869f_0b2a_4b85&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_869f_0b2a_4b85"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cf5_8a0f_0f23", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cf5_8a0f_0f23.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1cf5_8a0f_0f23/request", "", "public", "Top Dataset, std, slp.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1cf5_8a0f_0f23_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1cf5_8a0f_0f23_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1cf5_8a0f_0f23/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1cf5_8a0f_0f23.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1cf5_8a0f_0f23&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1cf5_8a0f_0f23"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b4c_255d_b1d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b4c_255d_b1d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b4c_255d_b1d4/request", "", "public", "Top Dataset, std, slp.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b4c_255d_b1d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b4c_255d_b1d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b4c_255d_b1d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b4c_255d_b1d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b4c_255d_b1d4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7b4c_255d_b1d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1178_5767_ccc1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1178_5767_ccc1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1178_5767_ccc1/request", "", "public", "Top Dataset, std, slp.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1178_5767_ccc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1178_5767_ccc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1178_5767_ccc1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1178_5767_ccc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1178_5767_ccc1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1178_5767_ccc1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5900_02b1_6dd1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5900_02b1_6dd1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5900_02b1_6dd1/request", "", "public", "Top Dataset, std, slp.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5900_02b1_6dd1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5900_02b1_6dd1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5900_02b1_6dd1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5900_02b1_6dd1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5900_02b1_6dd1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5900_02b1_6dd1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c867_df8a_3b04", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c867_df8a_3b04.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c867_df8a_3b04/request", "", "public", "Top Dataset, std, slp.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c867_df8a_3b04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c867_df8a_3b04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c867_df8a_3b04/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c867_df8a_3b04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c867_df8a_3b04&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c867_df8a_3b04"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f421_69b6_4a4b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f421_69b6_4a4b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f421_69b6_4a4b/request", "", "public", "Top Dataset, std, slp.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f421_69b6_4a4b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f421_69b6_4a4b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f421_69b6_4a4b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f421_69b6_4a4b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f421_69b6_4a4b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f421_69b6_4a4b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_311c_2a1c_515d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_311c_2a1c_515d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_311c_2a1c_515d/request", "", "public", "Top Dataset, std, slp.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_311c_2a1c_515d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_311c_2a1c_515d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_311c_2a1c_515d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_311c_2a1c_515d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_311c_2a1c_515d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_311c_2a1c_515d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea3a_c0d9_8e09", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea3a_c0d9_8e09.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ea3a_c0d9_8e09/request", "", "public", "Top Dataset, std, slp.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ea3a_c0d9_8e09_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ea3a_c0d9_8e09_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ea3a_c0d9_8e09/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ea3a_c0d9_8e09.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ea3a_c0d9_8e09&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ea3a_c0d9_8e09"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6728_9925_6616", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6728_9925_6616.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6728_9925_6616/request", "", "public", "Top Dataset, std, slp.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6728_9925_6616_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6728_9925_6616_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6728_9925_6616/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6728_9925_6616.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6728_9925_6616&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6728_9925_6616"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d66d_df54_dad5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d66d_df54_dad5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d66d_df54_dad5/request", "", "public", "Top Dataset, std, slp.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d66d_df54_dad5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d66d_df54_dad5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d66d_df54_dad5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d66d_df54_dad5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d66d_df54_dad5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d66d_df54_dad5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbb6_c90d_096b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbb6_c90d_096b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dbb6_c90d_096b/request", "", "public", "Top Dataset, std, slp.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dbb6_c90d_096b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dbb6_c90d_096b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dbb6_c90d_096b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dbb6_c90d_096b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dbb6_c90d_096b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dbb6_c90d_096b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a274_92ba_9f2c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a274_92ba_9f2c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a274_92ba_9f2c/request", "", "public", "Top Dataset, std, slp.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a274_92ba_9f2c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a274_92ba_9f2c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a274_92ba_9f2c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a274_92ba_9f2c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a274_92ba_9f2c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a274_92ba_9f2c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0582_1650_4485", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0582_1650_4485.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0582_1650_4485/request", "", "public", "Top Dataset, std, slp.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0582_1650_4485_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0582_1650_4485_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0582_1650_4485/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0582_1650_4485.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0582_1650_4485&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0582_1650_4485"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86dc_f06b_46b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86dc_f06b_46b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_86dc_f06b_46b9/request", "", "public", "Top Dataset, std, slp.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86dc_f06b_46b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86dc_f06b_46b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86dc_f06b_46b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86dc_f06b_46b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86dc_f06b_46b9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_86dc_f06b_46b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4c0_f70e_aef1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4c0_f70e_aef1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a4c0_f70e_aef1/request", "", "public", "Top Dataset, std, slp.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a4c0_f70e_aef1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a4c0_f70e_aef1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a4c0_f70e_aef1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a4c0_f70e_aef1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a4c0_f70e_aef1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a4c0_f70e_aef1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_638a_37fc_501c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_638a_37fc_501c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_638a_37fc_501c/request", "", "public", "Top Dataset, std, slp.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_638a_37fc_501c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_638a_37fc_501c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_638a_37fc_501c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_638a_37fc_501c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_638a_37fc_501c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_638a_37fc_501c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f63d_2dba_ec54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f63d_2dba_ec54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f63d_2dba_ec54/request", "", "public", "Top Dataset, std, slp.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f63d_2dba_ec54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f63d_2dba_ec54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f63d_2dba_ec54/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f63d_2dba_ec54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f63d_2dba_ec54&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f63d_2dba_ec54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a423_ba63_d8b4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a423_ba63_d8b4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a423_ba63_d8b4/request", "", "public", "Top Dataset, std, slp.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a423_ba63_d8b4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a423_ba63_d8b4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a423_ba63_d8b4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a423_ba63_d8b4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a423_ba63_d8b4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a423_ba63_d8b4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86f8_2d1c_204d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86f8_2d1c_204d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_86f8_2d1c_204d/request", "", "public", "Top Dataset, std, slp.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86f8_2d1c_204d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86f8_2d1c_204d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86f8_2d1c_204d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86f8_2d1c_204d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86f8_2d1c_204d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_86f8_2d1c_204d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5b1_9b7d_c32a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5b1_9b7d_c32a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d5b1_9b7d_c32a/request", "", "public", "Top Dataset, std, slp.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d5b1_9b7d_c32a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d5b1_9b7d_c32a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d5b1_9b7d_c32a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d5b1_9b7d_c32a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d5b1_9b7d_c32a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d5b1_9b7d_c32a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2545_4f06_51cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2545_4f06_51cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2545_4f06_51cb/request", "", "public", "Top Dataset, std, slp.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2545_4f06_51cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2545_4f06_51cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2545_4f06_51cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2545_4f06_51cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2545_4f06_51cb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2545_4f06_51cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1955_fa18_eb8d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1955_fa18_eb8d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1955_fa18_eb8d/request", "", "public", "Top Dataset, std, slp.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1955_fa18_eb8d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1955_fa18_eb8d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1955_fa18_eb8d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1955_fa18_eb8d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1955_fa18_eb8d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1955_fa18_eb8d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dc4_abae_6014", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dc4_abae_6014.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4dc4_abae_6014/request", "", "public", "Top Dataset, std, slp.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4dc4_abae_6014_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4dc4_abae_6014_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4dc4_abae_6014/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4dc4_abae_6014.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4dc4_abae_6014&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4dc4_abae_6014"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca15_b078_13f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca15_b078_13f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca15_b078_13f2/request", "", "public", "Top Dataset, std, slp.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca15_b078_13f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca15_b078_13f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca15_b078_13f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca15_b078_13f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca15_b078_13f2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ca15_b078_13f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8bba_320c_c1d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8bba_320c_c1d2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8bba_320c_c1d2/request", "", "public", "Top Dataset, std, slp.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8bba_320c_c1d2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8bba_320c_c1d2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8bba_320c_c1d2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8bba_320c_c1d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8bba_320c_c1d2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8bba_320c_c1d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cc1_88b5_5327", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cc1_88b5_5327.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8cc1_88b5_5327/request", "", "public", "Top Dataset, std, slp.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8cc1_88b5_5327_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8cc1_88b5_5327_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8cc1_88b5_5327/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8cc1_88b5_5327.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8cc1_88b5_5327&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8cc1_88b5_5327"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ffd_7a32_2bdd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ffd_7a32_2bdd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6ffd_7a32_2bdd/request", "", "public", "Top Dataset, std, slp.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6ffd_7a32_2bdd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6ffd_7a32_2bdd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ffd_7a32_2bdd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ffd_7a32_2bdd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ffd_7a32_2bdd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6ffd_7a32_2bdd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5387_0dec_5fa5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5387_0dec_5fa5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5387_0dec_5fa5/request", "", "public", "Top Dataset, std, slp.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5387_0dec_5fa5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5387_0dec_5fa5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5387_0dec_5fa5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5387_0dec_5fa5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5387_0dec_5fa5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5387_0dec_5fa5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6869_9a21_825d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6869_9a21_825d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6869_9a21_825d/request", "", "public", "Top Dataset, std, slp.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6869_9a21_825d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6869_9a21_825d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6869_9a21_825d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6869_9a21_825d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6869_9a21_825d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6869_9a21_825d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd8c_0f3e_5142", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd8c_0f3e_5142.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bd8c_0f3e_5142/request", "", "public", "Top Dataset, std, slp.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bd8c_0f3e_5142_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bd8c_0f3e_5142_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bd8c_0f3e_5142/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bd8c_0f3e_5142.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bd8c_0f3e_5142&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bd8c_0f3e_5142"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b53_95f5_4eb4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b53_95f5_4eb4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3b53_95f5_4eb4/request", "", "public", "Top Dataset, std, slp.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3b53_95f5_4eb4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3b53_95f5_4eb4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3b53_95f5_4eb4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3b53_95f5_4eb4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3b53_95f5_4eb4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3b53_95f5_4eb4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de6e_bf91_746b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de6e_bf91_746b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_de6e_bf91_746b/request", "", "public", "Top Dataset, std, slp.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_de6e_bf91_746b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_de6e_bf91_746b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_de6e_bf91_746b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_de6e_bf91_746b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_de6e_bf91_746b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_de6e_bf91_746b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48da_7d6a_cb5c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48da_7d6a_cb5c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_48da_7d6a_cb5c/request", "", "public", "Top Dataset, std, slp.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_48da_7d6a_cb5c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_48da_7d6a_cb5c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_48da_7d6a_cb5c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_48da_7d6a_cb5c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_48da_7d6a_cb5c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_48da_7d6a_cb5c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1787_8009_fd7e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1787_8009_fd7e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1787_8009_fd7e/request", "", "public", "Top Dataset, std, slp.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1787_8009_fd7e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1787_8009_fd7e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1787_8009_fd7e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1787_8009_fd7e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1787_8009_fd7e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1787_8009_fd7e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e612_f76a_b1bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e612_f76a_b1bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e612_f76a_b1bf/request", "", "public", "Top Dataset, std, slp.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e612_f76a_b1bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e612_f76a_b1bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e612_f76a_b1bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e612_f76a_b1bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e612_f76a_b1bf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e612_f76a_b1bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8265_764d_dfb3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8265_764d_dfb3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8265_764d_dfb3/request", "", "public", "Top Dataset, std, slp.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8265_764d_dfb3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8265_764d_dfb3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8265_764d_dfb3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8265_764d_dfb3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8265_764d_dfb3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8265_764d_dfb3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c389_1a67_f308", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c389_1a67_f308.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c389_1a67_f308/request", "", "public", "Top Dataset, std, slp.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c389_1a67_f308_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c389_1a67_f308_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c389_1a67_f308/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c389_1a67_f308.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c389_1a67_f308&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c389_1a67_f308"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cee5_6dbb_4321", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cee5_6dbb_4321.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cee5_6dbb_4321/request", "", "public", "Top Dataset, std, slp.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cee5_6dbb_4321_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cee5_6dbb_4321_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cee5_6dbb_4321/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cee5_6dbb_4321.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cee5_6dbb_4321&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cee5_6dbb_4321"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd6b_c3e8_5f7a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd6b_c3e8_5f7a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cd6b_c3e8_5f7a/request", "", "public", "Top Dataset, std, slp.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cd6b_c3e8_5f7a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cd6b_c3e8_5f7a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cd6b_c3e8_5f7a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cd6b_c3e8_5f7a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cd6b_c3e8_5f7a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cd6b_c3e8_5f7a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4948_db17_1d61", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4948_db17_1d61.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4948_db17_1d61/request", "", "public", "Top Dataset, std, slp.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4948_db17_1d61_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4948_db17_1d61_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4948_db17_1d61/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4948_db17_1d61.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4948_db17_1d61&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4948_db17_1d61"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a31a_efac_d3d6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a31a_efac_d3d6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a31a_efac_d3d6/request", "", "public", "Top Dataset, std, slp.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a31a_efac_d3d6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a31a_efac_d3d6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a31a_efac_d3d6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a31a_efac_d3d6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a31a_efac_d3d6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a31a_efac_d3d6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30fb_fe48_4c4e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30fb_fe48_4c4e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_30fb_fe48_4c4e/request", "", "public", "Top Dataset, std, slp.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_30fb_fe48_4c4e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_30fb_fe48_4c4e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_30fb_fe48_4c4e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_30fb_fe48_4c4e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_30fb_fe48_4c4e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_30fb_fe48_4c4e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80fe_a842_e700", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80fe_a842_e700.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_80fe_a842_e700/request", "", "public", "Top Dataset, std, slp.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_80fe_a842_e700_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_80fe_a842_e700_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_80fe_a842_e700/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_80fe_a842_e700.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_80fe_a842_e700&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_80fe_a842_e700"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c8b9_1997_4450", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c8b9_1997_4450.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c8b9_1997_4450/request", "", "public", "Top Dataset, std, slp.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c8b9_1997_4450_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c8b9_1997_4450_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c8b9_1997_4450/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c8b9_1997_4450.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c8b9_1997_4450&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c8b9_1997_4450"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2490_5be0_42e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2490_5be0_42e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2490_5be0_42e3/request", "", "public", "Top Dataset, std, slp.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2490_5be0_42e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2490_5be0_42e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2490_5be0_42e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2490_5be0_42e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2490_5be0_42e3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2490_5be0_42e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4100_dcc4_3864", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4100_dcc4_3864.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4100_dcc4_3864/request", "", "public", "Top Dataset, std, slp.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4100_dcc4_3864_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4100_dcc4_3864_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4100_dcc4_3864/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4100_dcc4_3864.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4100_dcc4_3864&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4100_dcc4_3864"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7665_e04e_34ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7665_e04e_34ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7665_e04e_34ec/request", "", "public", "Top Dataset, std, slp.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7665_e04e_34ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7665_e04e_34ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7665_e04e_34ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7665_e04e_34ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7665_e04e_34ec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7665_e04e_34ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b4f_2847_6e20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b4f_2847_6e20.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0b4f_2847_6e20/request", "", "public", "Top Dataset, std, slp.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0b4f_2847_6e20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0b4f_2847_6e20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0b4f_2847_6e20/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0b4f_2847_6e20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0b4f_2847_6e20&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0b4f_2847_6e20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e58a_114e_4443", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e58a_114e_4443.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e58a_114e_4443/request", "", "public", "Top Dataset, std, slp.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e58a_114e_4443_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e58a_114e_4443_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e58a_114e_4443/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e58a_114e_4443.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e58a_114e_4443&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e58a_114e_4443"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa74_3629_4e50", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa74_3629_4e50.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fa74_3629_4e50/request", "", "public", "Top Dataset, std, slp.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fa74_3629_4e50_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fa74_3629_4e50_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fa74_3629_4e50/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fa74_3629_4e50.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fa74_3629_4e50&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fa74_3629_4e50"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_feab_5c96_38e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_feab_5c96_38e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_feab_5c96_38e5/request", "", "public", "Top Dataset, std, smina.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_feab_5c96_38e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_feab_5c96_38e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_feab_5c96_38e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_feab_5c96_38e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_feab_5c96_38e5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_feab_5c96_38e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09ba_9ff4_c96e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09ba_9ff4_c96e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_09ba_9ff4_c96e/request", "", "public", "Top Dataset, std, smina.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_09ba_9ff4_c96e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_09ba_9ff4_c96e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_09ba_9ff4_c96e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_09ba_9ff4_c96e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_09ba_9ff4_c96e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_09ba_9ff4_c96e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4a4_6d3f_9789", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4a4_6d3f_9789.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a4a4_6d3f_9789/request", "", "public", "Top Dataset, std, smina.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a4a4_6d3f_9789_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a4a4_6d3f_9789_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a4a4_6d3f_9789/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a4a4_6d3f_9789.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a4a4_6d3f_9789&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a4a4_6d3f_9789"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43f7_270f_9a99", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43f7_270f_9a99.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_43f7_270f_9a99/request", "", "public", "Top Dataset, std, smina.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_43f7_270f_9a99_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_43f7_270f_9a99_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_43f7_270f_9a99/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_43f7_270f_9a99.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_43f7_270f_9a99&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_43f7_270f_9a99"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2225_d3d5_6580", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2225_d3d5_6580.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2225_d3d5_6580/request", "", "public", "Top Dataset, std, smina.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2225_d3d5_6580_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2225_d3d5_6580_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2225_d3d5_6580/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2225_d3d5_6580.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2225_d3d5_6580&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2225_d3d5_6580"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd02_c6d8_e2c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd02_c6d8_e2c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cd02_c6d8_e2c6/request", "", "public", "Top Dataset, std, smina.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cd02_c6d8_e2c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cd02_c6d8_e2c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cd02_c6d8_e2c6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cd02_c6d8_e2c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cd02_c6d8_e2c6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cd02_c6d8_e2c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7e5_e072_277c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7e5_e072_277c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f7e5_e072_277c/request", "", "public", "Top Dataset, std, smina.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f7e5_e072_277c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f7e5_e072_277c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f7e5_e072_277c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f7e5_e072_277c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f7e5_e072_277c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f7e5_e072_277c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc6e_2d22_4b29", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc6e_2d22_4b29.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc6e_2d22_4b29/request", "", "public", "Top Dataset, std, smina.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc6e_2d22_4b29_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc6e_2d22_4b29_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc6e_2d22_4b29/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc6e_2d22_4b29.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc6e_2d22_4b29&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fc6e_2d22_4b29"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd57_c69d_7dff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd57_c69d_7dff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fd57_c69d_7dff/request", "", "public", "Top Dataset, std, smina.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fd57_c69d_7dff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fd57_c69d_7dff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fd57_c69d_7dff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fd57_c69d_7dff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fd57_c69d_7dff&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fd57_c69d_7dff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1856_488d_f62b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1856_488d_f62b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1856_488d_f62b/request", "", "public", "Top Dataset, std, smina.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1856_488d_f62b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1856_488d_f62b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1856_488d_f62b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1856_488d_f62b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1856_488d_f62b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1856_488d_f62b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc24_7fd0_17d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc24_7fd0_17d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc24_7fd0_17d0/request", "", "public", "Top Dataset, std, smina.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc24_7fd0_17d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc24_7fd0_17d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc24_7fd0_17d0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc24_7fd0_17d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc24_7fd0_17d0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dc24_7fd0_17d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dca2_ac6a_6fec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dca2_ac6a_6fec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dca2_ac6a_6fec/request", "", "public", "Top Dataset, std, smina.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dca2_ac6a_6fec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dca2_ac6a_6fec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dca2_ac6a_6fec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dca2_ac6a_6fec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dca2_ac6a_6fec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dca2_ac6a_6fec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3093_5496_aa97", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3093_5496_aa97.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3093_5496_aa97/request", "", "public", "Top Dataset, std, smina.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3093_5496_aa97_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3093_5496_aa97_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3093_5496_aa97/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3093_5496_aa97.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3093_5496_aa97&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3093_5496_aa97"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3cc_1992_528b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3cc_1992_528b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d3cc_1992_528b/request", "", "public", "Top Dataset, std, smina.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d3cc_1992_528b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d3cc_1992_528b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d3cc_1992_528b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d3cc_1992_528b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d3cc_1992_528b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d3cc_1992_528b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d514_3570_eec7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d514_3570_eec7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d514_3570_eec7/request", "", "public", "Top Dataset, std, smina.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d514_3570_eec7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d514_3570_eec7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d514_3570_eec7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d514_3570_eec7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d514_3570_eec7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d514_3570_eec7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7237_def7_fe1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7237_def7_fe1e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7237_def7_fe1e/request", "", "public", "Top Dataset, std, smina.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7237_def7_fe1e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7237_def7_fe1e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7237_def7_fe1e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7237_def7_fe1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7237_def7_fe1e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7237_def7_fe1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdcd_8ba5_1557", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdcd_8ba5_1557.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bdcd_8ba5_1557/request", "", "public", "Top Dataset, std, smina.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bdcd_8ba5_1557_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bdcd_8ba5_1557_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bdcd_8ba5_1557/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bdcd_8ba5_1557.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bdcd_8ba5_1557&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bdcd_8ba5_1557"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f63d_fd77_a5b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f63d_fd77_a5b1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f63d_fd77_a5b1/request", "", "public", "Top Dataset, std, smina.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f63d_fd77_a5b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f63d_fd77_a5b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f63d_fd77_a5b1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f63d_fd77_a5b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f63d_fd77_a5b1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f63d_fd77_a5b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6745_246f_ea71", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6745_246f_ea71.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6745_246f_ea71/request", "", "public", "Top Dataset, std, smina.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6745_246f_ea71_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6745_246f_ea71_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6745_246f_ea71/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6745_246f_ea71.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6745_246f_ea71&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6745_246f_ea71"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26b7_4b6d_edfa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26b7_4b6d_edfa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_26b7_4b6d_edfa/request", "", "public", "Top Dataset, std, smina.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_26b7_4b6d_edfa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_26b7_4b6d_edfa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_26b7_4b6d_edfa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_26b7_4b6d_edfa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_26b7_4b6d_edfa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_26b7_4b6d_edfa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c28_1496_6261", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c28_1496_6261.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8c28_1496_6261/request", "", "public", "Top Dataset, std, smina.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8c28_1496_6261_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8c28_1496_6261_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8c28_1496_6261/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8c28_1496_6261.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8c28_1496_6261&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8c28_1496_6261"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d8c_036a_6458", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d8c_036a_6458.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d8c_036a_6458/request", "", "public", "Top Dataset, std, smina.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d8c_036a_6458_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d8c_036a_6458_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d8c_036a_6458/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d8c_036a_6458.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d8c_036a_6458&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8d8c_036a_6458"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_407d_72dd_0f81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_407d_72dd_0f81.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_407d_72dd_0f81/request", "", "public", "Top Dataset, std, smina.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_407d_72dd_0f81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_407d_72dd_0f81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_407d_72dd_0f81/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_407d_72dd_0f81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_407d_72dd_0f81&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_407d_72dd_0f81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91b7_2287_80e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91b7_2287_80e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_91b7_2287_80e6/request", "", "public", "Top Dataset, std, smina.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_91b7_2287_80e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_91b7_2287_80e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_91b7_2287_80e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_91b7_2287_80e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_91b7_2287_80e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_91b7_2287_80e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa4e_e226_423f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa4e_e226_423f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa4e_e226_423f/request", "", "public", "Top Dataset, std, smina.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa4e_e226_423f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa4e_e226_423f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa4e_e226_423f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa4e_e226_423f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa4e_e226_423f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_aa4e_e226_423f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a790_87a4_a8ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a790_87a4_a8ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a790_87a4_a8ce/request", "", "public", "Top Dataset, std, smina.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a790_87a4_a8ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a790_87a4_a8ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a790_87a4_a8ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a790_87a4_a8ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a790_87a4_a8ce&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a790_87a4_a8ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3b7_6bcd_61c7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3b7_6bcd_61c7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d3b7_6bcd_61c7/request", "", "public", "Top Dataset, std, smina.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d3b7_6bcd_61c7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d3b7_6bcd_61c7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d3b7_6bcd_61c7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d3b7_6bcd_61c7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d3b7_6bcd_61c7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d3b7_6bcd_61c7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3ba_6653_34d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3ba_6653_34d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c3ba_6653_34d7/request", "", "public", "Top Dataset, std, smina.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c3ba_6653_34d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c3ba_6653_34d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c3ba_6653_34d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c3ba_6653_34d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c3ba_6653_34d7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c3ba_6653_34d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f9f_ff69_a7cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f9f_ff69_a7cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f9f_ff69_a7cf/request", "", "public", "Top Dataset, std, smina.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f9f_ff69_a7cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f9f_ff69_a7cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f9f_ff69_a7cf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f9f_ff69_a7cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f9f_ff69_a7cf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9f9f_ff69_a7cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca85_01e5_c75e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca85_01e5_c75e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca85_01e5_c75e/request", "", "public", "Top Dataset, std, smina.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca85_01e5_c75e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca85_01e5_c75e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca85_01e5_c75e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca85_01e5_c75e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca85_01e5_c75e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ca85_01e5_c75e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4db_1abe_88b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4db_1abe_88b1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a4db_1abe_88b1/request", "", "public", "Top Dataset, std, smina.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a4db_1abe_88b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a4db_1abe_88b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a4db_1abe_88b1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a4db_1abe_88b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a4db_1abe_88b1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a4db_1abe_88b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_256f_8a0e_d038", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_256f_8a0e_d038.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_256f_8a0e_d038/request", "", "public", "Top Dataset, std, smina.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_256f_8a0e_d038_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_256f_8a0e_d038_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_256f_8a0e_d038/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_256f_8a0e_d038.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_256f_8a0e_d038&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_256f_8a0e_d038"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8006_d1f2_9459", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8006_d1f2_9459.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8006_d1f2_9459/request", "", "public", "Top Dataset, std, smina.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8006_d1f2_9459_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8006_d1f2_9459_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8006_d1f2_9459/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8006_d1f2_9459.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8006_d1f2_9459&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8006_d1f2_9459"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c78_99cd_f74b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c78_99cd_f74b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c78_99cd_f74b/request", "", "public", "Top Dataset, std, smina.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c78_99cd_f74b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c78_99cd_f74b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c78_99cd_f74b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c78_99cd_f74b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c78_99cd_f74b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9c78_99cd_f74b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b4c_62d2_eb9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b4c_62d2_eb9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4b4c_62d2_eb9d/request", "", "public", "Top Dataset, std, smina.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4b4c_62d2_eb9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4b4c_62d2_eb9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4b4c_62d2_eb9d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4b4c_62d2_eb9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4b4c_62d2_eb9d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4b4c_62d2_eb9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c78_4d19_bd1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c78_4d19_bd1e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c78_4d19_bd1e/request", "", "public", "Top Dataset, std, smina.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c78_4d19_bd1e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c78_4d19_bd1e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c78_4d19_bd1e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c78_4d19_bd1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c78_4d19_bd1e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9c78_4d19_bd1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b78_0528_8235", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b78_0528_8235.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b78_0528_8235/request", "", "public", "Top Dataset, std, smina.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b78_0528_8235_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b78_0528_8235_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b78_0528_8235/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b78_0528_8235.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b78_0528_8235&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6b78_0528_8235"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d15f_dc05_bf82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d15f_dc05_bf82.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d15f_dc05_bf82/request", "", "public", "Top Dataset, std, smina.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d15f_dc05_bf82_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d15f_dc05_bf82_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d15f_dc05_bf82/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d15f_dc05_bf82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d15f_dc05_bf82&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d15f_dc05_bf82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edc8_8a20_c7a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edc8_8a20_c7a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_edc8_8a20_c7a1/request", "", "public", "Top Dataset, std, smina.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_edc8_8a20_c7a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_edc8_8a20_c7a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_edc8_8a20_c7a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_edc8_8a20_c7a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_edc8_8a20_c7a1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_edc8_8a20_c7a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6ad_7b39_96b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6ad_7b39_96b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e6ad_7b39_96b7/request", "", "public", "Top Dataset, std, smina.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e6ad_7b39_96b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e6ad_7b39_96b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e6ad_7b39_96b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e6ad_7b39_96b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e6ad_7b39_96b7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e6ad_7b39_96b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d54_b65a_ee2b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d54_b65a_ee2b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d54_b65a_ee2b/request", "", "public", "Top Dataset, std, smina.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d54_b65a_ee2b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d54_b65a_ee2b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d54_b65a_ee2b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d54_b65a_ee2b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d54_b65a_ee2b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d54_b65a_ee2b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6641_712a_f7ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6641_712a_f7ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6641_712a_f7ec/request", "", "public", "Top Dataset, std, smina.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6641_712a_f7ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6641_712a_f7ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6641_712a_f7ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6641_712a_f7ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6641_712a_f7ec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6641_712a_f7ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb38_a63d_61be", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb38_a63d_61be.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eb38_a63d_61be/request", "", "public", "Top Dataset, std, smina.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eb38_a63d_61be_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eb38_a63d_61be_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb38_a63d_61be/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb38_a63d_61be.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb38_a63d_61be&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_eb38_a63d_61be"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f18_eb92_34bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f18_eb92_34bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f18_eb92_34bb/request", "", "public", "Top Dataset, std, smina.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f18_eb92_34bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f18_eb92_34bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f18_eb92_34bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f18_eb92_34bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f18_eb92_34bb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0f18_eb92_34bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_931d_fe93_98c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_931d_fe93_98c9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_931d_fe93_98c9/request", "", "public", "Top Dataset, std, smina.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_931d_fe93_98c9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_931d_fe93_98c9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_931d_fe93_98c9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_931d_fe93_98c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_931d_fe93_98c9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_931d_fe93_98c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b3c_3e16_e46f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b3c_3e16_e46f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b3c_3e16_e46f/request", "", "public", "Top Dataset, std, smina.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b3c_3e16_e46f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b3c_3e16_e46f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b3c_3e16_e46f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b3c_3e16_e46f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b3c_3e16_e46f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6b3c_3e16_e46f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_201c_f4f7_ace8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_201c_f4f7_ace8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_201c_f4f7_ace8/request", "", "public", "Top Dataset, std, smina.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_201c_f4f7_ace8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_201c_f4f7_ace8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_201c_f4f7_ace8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_201c_f4f7_ace8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_201c_f4f7_ace8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_201c_f4f7_ace8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9ba_f690_8270", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9ba_f690_8270.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e9ba_f690_8270/request", "", "public", "Top Dataset, std, smina.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e9ba_f690_8270_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e9ba_f690_8270_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e9ba_f690_8270/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e9ba_f690_8270.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e9ba_f690_8270&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e9ba_f690_8270"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4096_1a63_ce81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4096_1a63_ce81.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4096_1a63_ce81/request", "", "public", "Top Dataset, std, smina.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4096_1a63_ce81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4096_1a63_ce81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4096_1a63_ce81/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4096_1a63_ce81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4096_1a63_ce81&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4096_1a63_ce81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5069_a6d2_9ed7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5069_a6d2_9ed7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5069_a6d2_9ed7/request", "", "public", "Top Dataset, std, smina.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5069_a6d2_9ed7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5069_a6d2_9ed7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5069_a6d2_9ed7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5069_a6d2_9ed7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5069_a6d2_9ed7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5069_a6d2_9ed7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5a7_8c6b_b6c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5a7_8c6b_b6c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5a7_8c6b_b6c0/request", "", "public", "Top Dataset, std, smina.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5a7_8c6b_b6c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5a7_8c6b_b6c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5a7_8c6b_b6c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5a7_8c6b_b6c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5a7_8c6b_b6c0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b5a7_8c6b_b6c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d1b_1863_0d28", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d1b_1863_0d28.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7d1b_1863_0d28/request", "", "public", "Top Dataset, std, smina.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7d1b_1863_0d28_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7d1b_1863_0d28_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7d1b_1863_0d28/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7d1b_1863_0d28.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7d1b_1863_0d28&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7d1b_1863_0d28"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c1f_729f_0b7f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c1f_729f_0b7f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6c1f_729f_0b7f/request", "", "public", "Top Dataset, std, smina.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6c1f_729f_0b7f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6c1f_729f_0b7f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6c1f_729f_0b7f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6c1f_729f_0b7f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6c1f_729f_0b7f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6c1f_729f_0b7f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8caf_14d1_9d3d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8caf_14d1_9d3d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8caf_14d1_9d3d/request", "", "public", "Top Dataset, std, smina.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8caf_14d1_9d3d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8caf_14d1_9d3d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8caf_14d1_9d3d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8caf_14d1_9d3d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8caf_14d1_9d3d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8caf_14d1_9d3d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0ab_4432_509d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0ab_4432_509d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f0ab_4432_509d/request", "", "public", "Top Dataset, std, smina.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f0ab_4432_509d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f0ab_4432_509d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f0ab_4432_509d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f0ab_4432_509d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f0ab_4432_509d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f0ab_4432_509d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_039b_81dc_d6f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_039b_81dc_d6f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_039b_81dc_d6f3/request", "", "public", "Top Dataset, std, smina.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_039b_81dc_d6f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_039b_81dc_d6f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_039b_81dc_d6f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_039b_81dc_d6f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_039b_81dc_d6f3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_039b_81dc_d6f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e0c_fc0b_5e32", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e0c_fc0b_5e32.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5e0c_fc0b_5e32/request", "", "public", "Top Dataset, std, smina.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5e0c_fc0b_5e32_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5e0c_fc0b_5e32_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5e0c_fc0b_5e32/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5e0c_fc0b_5e32.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5e0c_fc0b_5e32&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5e0c_fc0b_5e32"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6458_111d_431a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6458_111d_431a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6458_111d_431a/request", "", "public", "Top Dataset, std, smina.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6458_111d_431a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6458_111d_431a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6458_111d_431a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6458_111d_431a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6458_111d_431a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6458_111d_431a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_060e_d578_864e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_060e_d578_864e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_060e_d578_864e/request", "", "public", "Top Dataset, std, smina.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_060e_d578_864e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_060e_d578_864e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_060e_d578_864e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_060e_d578_864e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_060e_d578_864e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_060e_d578_864e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd84_d0a7_d698", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd84_d0a7_d698.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dd84_d0a7_d698/request", "", "public", "Top Dataset, std, smina.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dd84_d0a7_d698_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dd84_d0a7_d698_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dd84_d0a7_d698/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dd84_d0a7_d698.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dd84_d0a7_d698&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dd84_d0a7_d698"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_213b_5863_5233", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_213b_5863_5233.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_213b_5863_5233/request", "", "public", "Top Dataset, std, smina.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_213b_5863_5233_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_213b_5863_5233_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_213b_5863_5233/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_213b_5863_5233.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_213b_5863_5233&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_213b_5863_5233"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_426a_fd67_4709", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_426a_fd67_4709.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_426a_fd67_4709/request", "", "public", "Top Dataset, std, smina.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_426a_fd67_4709_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_426a_fd67_4709_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_426a_fd67_4709/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_426a_fd67_4709.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_426a_fd67_4709&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_426a_fd67_4709"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc21_53e9_706e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc21_53e9_706e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc21_53e9_706e/request", "", "public", "Top Dataset, std, smina.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc21_53e9_706e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc21_53e9_706e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc21_53e9_706e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc21_53e9_706e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc21_53e9_706e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fc21_53e9_706e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f67b_11d5_4907", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f67b_11d5_4907.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f67b_11d5_4907/request", "", "public", "Top Dataset, std, sst.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f67b_11d5_4907_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f67b_11d5_4907_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f67b_11d5_4907/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f67b_11d5_4907.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f67b_11d5_4907&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f67b_11d5_4907"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0474_53d4_45a3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0474_53d4_45a3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0474_53d4_45a3/request", "", "public", "Top Dataset, std, sst.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0474_53d4_45a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0474_53d4_45a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0474_53d4_45a3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0474_53d4_45a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0474_53d4_45a3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0474_53d4_45a3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2828_6d44_e37e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2828_6d44_e37e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2828_6d44_e37e/request", "", "public", "Top Dataset, std, sst.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2828_6d44_e37e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2828_6d44_e37e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2828_6d44_e37e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2828_6d44_e37e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2828_6d44_e37e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2828_6d44_e37e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a37_4b1f_0fc1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a37_4b1f_0fc1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a37_4b1f_0fc1/request", "", "public", "Top Dataset, std, sst.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a37_4b1f_0fc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a37_4b1f_0fc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a37_4b1f_0fc1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a37_4b1f_0fc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a37_4b1f_0fc1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3a37_4b1f_0fc1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd2c_ce04_1f36", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd2c_ce04_1f36.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cd2c_ce04_1f36/request", "", "public", "Top Dataset, std, sst.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cd2c_ce04_1f36_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cd2c_ce04_1f36_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cd2c_ce04_1f36/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cd2c_ce04_1f36.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cd2c_ce04_1f36&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cd2c_ce04_1f36"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e72b_ec7d_d8e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e72b_ec7d_d8e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e72b_ec7d_d8e1/request", "", "public", "Top Dataset, std, sst.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e72b_ec7d_d8e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e72b_ec7d_d8e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e72b_ec7d_d8e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e72b_ec7d_d8e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e72b_ec7d_d8e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e72b_ec7d_d8e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_25ca_6f1a_c4ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_25ca_6f1a_c4ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_25ca_6f1a_c4ac/request", "", "public", "Top Dataset, std, sst.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_25ca_6f1a_c4ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_25ca_6f1a_c4ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_25ca_6f1a_c4ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_25ca_6f1a_c4ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_25ca_6f1a_c4ac&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_25ca_6f1a_c4ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6760_111e_b125", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6760_111e_b125.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6760_111e_b125/request", "", "public", "Top Dataset, std, sst.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6760_111e_b125_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6760_111e_b125_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6760_111e_b125/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6760_111e_b125.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6760_111e_b125&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6760_111e_b125"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e627_5fa2_2c9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e627_5fa2_2c9f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e627_5fa2_2c9f/request", "", "public", "Top Dataset, std, sst.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e627_5fa2_2c9f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e627_5fa2_2c9f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e627_5fa2_2c9f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e627_5fa2_2c9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e627_5fa2_2c9f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e627_5fa2_2c9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4b6_6c61_bb5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4b6_6c61_bb5b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d4b6_6c61_bb5b/request", "", "public", "Top Dataset, std, sst.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d4b6_6c61_bb5b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d4b6_6c61_bb5b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d4b6_6c61_bb5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d4b6_6c61_bb5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d4b6_6c61_bb5b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d4b6_6c61_bb5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_593e_50b5_1f19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_593e_50b5_1f19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_593e_50b5_1f19/request", "", "public", "Top Dataset, std, sst.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_593e_50b5_1f19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_593e_50b5_1f19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_593e_50b5_1f19/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_593e_50b5_1f19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_593e_50b5_1f19&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_593e_50b5_1f19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4d2_295b_6062", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4d2_295b_6062.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f4d2_295b_6062/request", "", "public", "Top Dataset, std, sst.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f4d2_295b_6062_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f4d2_295b_6062_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f4d2_295b_6062/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f4d2_295b_6062.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f4d2_295b_6062&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f4d2_295b_6062"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_82ad_343a_4598", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_82ad_343a_4598.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_82ad_343a_4598/request", "", "public", "Top Dataset, std, sst.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_82ad_343a_4598_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_82ad_343a_4598_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_82ad_343a_4598/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_82ad_343a_4598.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_82ad_343a_4598&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_82ad_343a_4598"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab73_36e3_5f70", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab73_36e3_5f70.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab73_36e3_5f70/request", "", "public", "Top Dataset, std, sst.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab73_36e3_5f70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab73_36e3_5f70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab73_36e3_5f70/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab73_36e3_5f70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab73_36e3_5f70&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ab73_36e3_5f70"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc0b_ccc8_fcc9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc0b_ccc8_fcc9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc0b_ccc8_fcc9/request", "", "public", "Top Dataset, std, sst.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc0b_ccc8_fcc9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc0b_ccc8_fcc9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc0b_ccc8_fcc9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc0b_ccc8_fcc9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc0b_ccc8_fcc9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fc0b_ccc8_fcc9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a56e_9ffa_a47a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a56e_9ffa_a47a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a56e_9ffa_a47a/request", "", "public", "Top Dataset, std, sst.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a56e_9ffa_a47a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a56e_9ffa_a47a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a56e_9ffa_a47a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a56e_9ffa_a47a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a56e_9ffa_a47a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a56e_9ffa_a47a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3aa3_6d3b_9c4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3aa3_6d3b_9c4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3aa3_6d3b_9c4d/request", "", "public", "Top Dataset, std, sst.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3aa3_6d3b_9c4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3aa3_6d3b_9c4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3aa3_6d3b_9c4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3aa3_6d3b_9c4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3aa3_6d3b_9c4d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3aa3_6d3b_9c4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf16_89da_5644", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf16_89da_5644.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf16_89da_5644/request", "", "public", "Top Dataset, std, sst.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf16_89da_5644_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf16_89da_5644_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf16_89da_5644/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf16_89da_5644.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf16_89da_5644&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cf16_89da_5644"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6929_600d_a550", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6929_600d_a550.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6929_600d_a550/request", "", "public", "Top Dataset, std, sst.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6929_600d_a550_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6929_600d_a550_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6929_600d_a550/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6929_600d_a550.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6929_600d_a550&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6929_600d_a550"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7036_6fa9_f6a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7036_6fa9_f6a8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7036_6fa9_f6a8/request", "", "public", "Top Dataset, std, sst.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7036_6fa9_f6a8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7036_6fa9_f6a8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7036_6fa9_f6a8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7036_6fa9_f6a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7036_6fa9_f6a8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7036_6fa9_f6a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e1c_b6f3_698a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e1c_b6f3_698a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7e1c_b6f3_698a/request", "", "public", "Top Dataset, std, sst.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7e1c_b6f3_698a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7e1c_b6f3_698a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e1c_b6f3_698a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e1c_b6f3_698a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e1c_b6f3_698a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7e1c_b6f3_698a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c01f_9493_a345", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c01f_9493_a345.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c01f_9493_a345/request", "", "public", "Top Dataset, std, sst.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c01f_9493_a345_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c01f_9493_a345_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c01f_9493_a345/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c01f_9493_a345.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c01f_9493_a345&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c01f_9493_a345"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_223c_8df5_fa90", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_223c_8df5_fa90.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_223c_8df5_fa90/request", "", "public", "Top Dataset, std, sst.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_223c_8df5_fa90_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_223c_8df5_fa90_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_223c_8df5_fa90/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_223c_8df5_fa90.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_223c_8df5_fa90&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_223c_8df5_fa90"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cb5_c384_ab4c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cb5_c384_ab4c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8cb5_c384_ab4c/request", "", "public", "Top Dataset, std, sst.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8cb5_c384_ab4c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8cb5_c384_ab4c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8cb5_c384_ab4c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8cb5_c384_ab4c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8cb5_c384_ab4c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8cb5_c384_ab4c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98e8_c35a_4fed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98e8_c35a_4fed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_98e8_c35a_4fed/request", "", "public", "Top Dataset, std, sst.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_98e8_c35a_4fed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_98e8_c35a_4fed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_98e8_c35a_4fed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_98e8_c35a_4fed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_98e8_c35a_4fed&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_98e8_c35a_4fed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a2e_0281_f86c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a2e_0281_f86c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4a2e_0281_f86c/request", "", "public", "Top Dataset, std, sst.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4a2e_0281_f86c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4a2e_0281_f86c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4a2e_0281_f86c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4a2e_0281_f86c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4a2e_0281_f86c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4a2e_0281_f86c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9cc_c1fd_1219", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9cc_c1fd_1219.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a9cc_c1fd_1219/request", "", "public", "Top Dataset, std, sst.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9cc_c1fd_1219_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9cc_c1fd_1219_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9cc_c1fd_1219/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9cc_c1fd_1219.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9cc_c1fd_1219&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a9cc_c1fd_1219"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0918_be21_9e2e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0918_be21_9e2e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0918_be21_9e2e/request", "", "public", "Top Dataset, std, sst.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0918_be21_9e2e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0918_be21_9e2e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0918_be21_9e2e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0918_be21_9e2e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0918_be21_9e2e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0918_be21_9e2e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f43_9ac3_e452", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f43_9ac3_e452.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f43_9ac3_e452/request", "", "public", "Top Dataset, std, sst.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f43_9ac3_e452_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f43_9ac3_e452_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f43_9ac3_e452/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f43_9ac3_e452.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f43_9ac3_e452&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7f43_9ac3_e452"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c54c_97c3_0fad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c54c_97c3_0fad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c54c_97c3_0fad/request", "", "public", "Top Dataset, std, sst.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c54c_97c3_0fad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c54c_97c3_0fad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c54c_97c3_0fad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c54c_97c3_0fad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c54c_97c3_0fad&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c54c_97c3_0fad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9edc_b65b_0949", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9edc_b65b_0949.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9edc_b65b_0949/request", "", "public", "Top Dataset, std, sst.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9edc_b65b_0949_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9edc_b65b_0949_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9edc_b65b_0949/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9edc_b65b_0949.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9edc_b65b_0949&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9edc_b65b_0949"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d613_0daf_0f2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d613_0daf_0f2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d613_0daf_0f2a/request", "", "public", "Top Dataset, std, sst.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d613_0daf_0f2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d613_0daf_0f2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d613_0daf_0f2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d613_0daf_0f2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d613_0daf_0f2a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d613_0daf_0f2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eaec_2996_6d69", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eaec_2996_6d69.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eaec_2996_6d69/request", "", "public", "Top Dataset, std, sst.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eaec_2996_6d69_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eaec_2996_6d69_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eaec_2996_6d69/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eaec_2996_6d69.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eaec_2996_6d69&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eaec_2996_6d69"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fae2_c641_ab29", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fae2_c641_ab29.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fae2_c641_ab29/request", "", "public", "Top Dataset, std, sst.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fae2_c641_ab29_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fae2_c641_ab29_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fae2_c641_ab29/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fae2_c641_ab29.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fae2_c641_ab29&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fae2_c641_ab29"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13b3_9b38_ecb8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13b3_9b38_ecb8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_13b3_9b38_ecb8/request", "", "public", "Top Dataset, std, sst.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_13b3_9b38_ecb8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_13b3_9b38_ecb8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_13b3_9b38_ecb8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_13b3_9b38_ecb8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_13b3_9b38_ecb8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_13b3_9b38_ecb8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b87_2468_b72a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b87_2468_b72a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2b87_2468_b72a/request", "", "public", "Top Dataset, std, sst.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2b87_2468_b72a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2b87_2468_b72a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2b87_2468_b72a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2b87_2468_b72a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2b87_2468_b72a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2b87_2468_b72a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1adc_4615_71b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1adc_4615_71b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1adc_4615_71b5/request", "", "public", "Top Dataset, std, sst.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1adc_4615_71b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1adc_4615_71b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1adc_4615_71b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1adc_4615_71b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1adc_4615_71b5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1adc_4615_71b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7868_b13c_a388", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7868_b13c_a388.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7868_b13c_a388/request", "", "public", "Top Dataset, std, sst.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7868_b13c_a388_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7868_b13c_a388_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7868_b13c_a388/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7868_b13c_a388.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7868_b13c_a388&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7868_b13c_a388"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f601_edd3_9957", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f601_edd3_9957.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f601_edd3_9957/request", "", "public", "Top Dataset, std, sst.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f601_edd3_9957_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f601_edd3_9957_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f601_edd3_9957/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f601_edd3_9957.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f601_edd3_9957&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f601_edd3_9957"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83b8_d2f2_9359", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83b8_d2f2_9359.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_83b8_d2f2_9359/request", "", "public", "Top Dataset, std, sst.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_83b8_d2f2_9359_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_83b8_d2f2_9359_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_83b8_d2f2_9359/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_83b8_d2f2_9359.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_83b8_d2f2_9359&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_83b8_d2f2_9359"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5bee_3611_0328", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5bee_3611_0328.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5bee_3611_0328/request", "", "public", "Top Dataset, std, sst.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5bee_3611_0328_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5bee_3611_0328_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5bee_3611_0328/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5bee_3611_0328.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5bee_3611_0328&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5bee_3611_0328"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b15d_76a8_4d86", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b15d_76a8_4d86.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b15d_76a8_4d86/request", "", "public", "Top Dataset, std, sst.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b15d_76a8_4d86_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b15d_76a8_4d86_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b15d_76a8_4d86/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b15d_76a8_4d86.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b15d_76a8_4d86&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b15d_76a8_4d86"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d709_e41d_8260", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d709_e41d_8260.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d709_e41d_8260/request", "", "public", "Top Dataset, std, sst.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d709_e41d_8260_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d709_e41d_8260_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d709_e41d_8260/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d709_e41d_8260.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d709_e41d_8260&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d709_e41d_8260"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b9c_0fc6_9226", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b9c_0fc6_9226.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3b9c_0fc6_9226/request", "", "public", "Top Dataset, std, sst.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3b9c_0fc6_9226_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3b9c_0fc6_9226_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3b9c_0fc6_9226/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3b9c_0fc6_9226.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3b9c_0fc6_9226&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3b9c_0fc6_9226"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4588_5f2b_4fed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4588_5f2b_4fed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4588_5f2b_4fed/request", "", "public", "Top Dataset, std, sst.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4588_5f2b_4fed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4588_5f2b_4fed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4588_5f2b_4fed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4588_5f2b_4fed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4588_5f2b_4fed&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4588_5f2b_4fed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d433_7567_794b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d433_7567_794b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d433_7567_794b/request", "", "public", "Top Dataset, std, sst.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d433_7567_794b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d433_7567_794b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d433_7567_794b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d433_7567_794b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d433_7567_794b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d433_7567_794b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c40_65d7_a412", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c40_65d7_a412.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c40_65d7_a412/request", "", "public", "Top Dataset, std, sst.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c40_65d7_a412_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c40_65d7_a412_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c40_65d7_a412/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c40_65d7_a412.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c40_65d7_a412&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5c40_65d7_a412"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6be_d740_a82d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6be_d740_a82d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e6be_d740_a82d/request", "", "public", "Top Dataset, std, sst.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e6be_d740_a82d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e6be_d740_a82d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e6be_d740_a82d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e6be_d740_a82d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e6be_d740_a82d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e6be_d740_a82d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1aa5_0970_5229", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1aa5_0970_5229.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1aa5_0970_5229/request", "", "public", "Top Dataset, std, sst.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1aa5_0970_5229_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1aa5_0970_5229_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1aa5_0970_5229/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1aa5_0970_5229.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1aa5_0970_5229&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1aa5_0970_5229"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bcd_e43f_51c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bcd_e43f_51c5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2bcd_e43f_51c5/request", "", "public", "Top Dataset, std, sst.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2bcd_e43f_51c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2bcd_e43f_51c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2bcd_e43f_51c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2bcd_e43f_51c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2bcd_e43f_51c5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2bcd_e43f_51c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfd7_d8b3_1b7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfd7_d8b3_1b7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dfd7_d8b3_1b7b/request", "", "public", "Top Dataset, std, sst.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dfd7_d8b3_1b7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dfd7_d8b3_1b7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dfd7_d8b3_1b7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dfd7_d8b3_1b7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dfd7_d8b3_1b7b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dfd7_d8b3_1b7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd2e_f9f5_fad1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd2e_f9f5_fad1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dd2e_f9f5_fad1/request", "", "public", "Top Dataset, std, sst.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dd2e_f9f5_fad1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dd2e_f9f5_fad1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dd2e_f9f5_fad1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dd2e_f9f5_fad1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dd2e_f9f5_fad1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_dd2e_f9f5_fad1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30c7_d090_d68b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30c7_d090_d68b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_30c7_d090_d68b/request", "", "public", "Top Dataset, std, sst.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_30c7_d090_d68b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_30c7_d090_d68b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_30c7_d090_d68b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_30c7_d090_d68b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_30c7_d090_d68b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_30c7_d090_d68b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a28c_4286_6836", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a28c_4286_6836.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a28c_4286_6836/request", "", "public", "Top Dataset, std, sst.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a28c_4286_6836_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a28c_4286_6836_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a28c_4286_6836/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a28c_4286_6836.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a28c_4286_6836&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a28c_4286_6836"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e2b_1be9_76f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e2b_1be9_76f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e2b_1be9_76f9/request", "", "public", "Top Dataset, std, sst.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e2b_1be9_76f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e2b_1be9_76f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e2b_1be9_76f9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e2b_1be9_76f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e2b_1be9_76f9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9e2b_1be9_76f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a77_7449_f7fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a77_7449_f7fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a77_7449_f7fb/request", "", "public", "Top Dataset, std, sst.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a77_7449_f7fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a77_7449_f7fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a77_7449_f7fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a77_7449_f7fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a77_7449_f7fb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0a77_7449_f7fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5881_405f_f1e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5881_405f_f1e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5881_405f_f1e5/request", "", "public", "Top Dataset, std, sst.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5881_405f_f1e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5881_405f_f1e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5881_405f_f1e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5881_405f_f1e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5881_405f_f1e5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5881_405f_f1e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f98_80f3_86c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f98_80f3_86c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f98_80f3_86c6/request", "", "public", "Top Dataset, std, sst.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f98_80f3_86c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f98_80f3_86c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f98_80f3_86c6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f98_80f3_86c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f98_80f3_86c6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2f98_80f3_86c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0fbc_6406_673e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0fbc_6406_673e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0fbc_6406_673e/request", "", "public", "Top Dataset, std, sst.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0fbc_6406_673e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0fbc_6406_673e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0fbc_6406_673e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0fbc_6406_673e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0fbc_6406_673e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0fbc_6406_673e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b4c_5d85_843d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b4c_5d85_843d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9b4c_5d85_843d/request", "", "public", "Top Dataset, std, sst.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9b4c_5d85_843d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9b4c_5d85_843d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9b4c_5d85_843d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9b4c_5d85_843d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9b4c_5d85_843d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9b4c_5d85_843d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad89_6230_cfe6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad89_6230_cfe6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ad89_6230_cfe6/request", "", "public", "Top Dataset, std, uairt.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ad89_6230_cfe6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ad89_6230_cfe6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ad89_6230_cfe6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ad89_6230_cfe6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ad89_6230_cfe6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ad89_6230_cfe6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50e4_1b3d_f6e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50e4_1b3d_f6e4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_50e4_1b3d_f6e4/request", "", "public", "Top Dataset, std, uairt.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_50e4_1b3d_f6e4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_50e4_1b3d_f6e4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50e4_1b3d_f6e4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50e4_1b3d_f6e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50e4_1b3d_f6e4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_50e4_1b3d_f6e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d96a_70b7_0132", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d96a_70b7_0132.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d96a_70b7_0132/request", "", "public", "Top Dataset, std, uairt.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d96a_70b7_0132_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d96a_70b7_0132_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d96a_70b7_0132/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d96a_70b7_0132.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d96a_70b7_0132&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d96a_70b7_0132"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4b4_b007_0515", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4b4_b007_0515.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f4b4_b007_0515/request", "", "public", "Top Dataset, std, uairt.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f4b4_b007_0515_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f4b4_b007_0515_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f4b4_b007_0515/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f4b4_b007_0515.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f4b4_b007_0515&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f4b4_b007_0515"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d306_b00f_66b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d306_b00f_66b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d306_b00f_66b0/request", "", "public", "Top Dataset, std, uairt.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d306_b00f_66b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d306_b00f_66b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d306_b00f_66b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d306_b00f_66b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d306_b00f_66b0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d306_b00f_66b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4bb_9f25_dd26", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4bb_9f25_dd26.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d4bb_9f25_dd26/request", "", "public", "Top Dataset, std, uairt.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d4bb_9f25_dd26_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d4bb_9f25_dd26_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d4bb_9f25_dd26/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d4bb_9f25_dd26.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d4bb_9f25_dd26&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d4bb_9f25_dd26"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e80_3f69_33e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e80_3f69_33e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e80_3f69_33e3/request", "", "public", "Top Dataset, std, uairt.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e80_3f69_33e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e80_3f69_33e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e80_3f69_33e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e80_3f69_33e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e80_3f69_33e3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9e80_3f69_33e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c367_c8a8_3fb4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c367_c8a8_3fb4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c367_c8a8_3fb4/request", "", "public", "Top Dataset, std, uairt.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c367_c8a8_3fb4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c367_c8a8_3fb4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c367_c8a8_3fb4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c367_c8a8_3fb4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c367_c8a8_3fb4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c367_c8a8_3fb4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e44d_4721_7b5a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e44d_4721_7b5a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e44d_4721_7b5a/request", "", "public", "Top Dataset, std, uairt.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e44d_4721_7b5a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e44d_4721_7b5a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e44d_4721_7b5a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e44d_4721_7b5a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e44d_4721_7b5a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e44d_4721_7b5a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_297d_3004_02d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_297d_3004_02d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_297d_3004_02d7/request", "", "public", "Top Dataset, std, uairt.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_297d_3004_02d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_297d_3004_02d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_297d_3004_02d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_297d_3004_02d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_297d_3004_02d7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_297d_3004_02d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ffd_e7af_88e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ffd_e7af_88e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6ffd_e7af_88e5/request", "", "public", "Top Dataset, std, uairt.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6ffd_e7af_88e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6ffd_e7af_88e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ffd_e7af_88e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ffd_e7af_88e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ffd_e7af_88e5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6ffd_e7af_88e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a77c_c9b1_0bb5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a77c_c9b1_0bb5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a77c_c9b1_0bb5/request", "", "public", "Top Dataset, std, uairt.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a77c_c9b1_0bb5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a77c_c9b1_0bb5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a77c_c9b1_0bb5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a77c_c9b1_0bb5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a77c_c9b1_0bb5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a77c_c9b1_0bb5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5a3_e918_48d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5a3_e918_48d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5a3_e918_48d3/request", "", "public", "Top Dataset, std, uairt.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5a3_e918_48d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5a3_e918_48d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5a3_e918_48d3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5a3_e918_48d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5a3_e918_48d3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b5a3_e918_48d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d78_308d_b0e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d78_308d_b0e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d78_308d_b0e3/request", "", "public", "Top Dataset, std, uairt.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d78_308d_b0e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d78_308d_b0e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d78_308d_b0e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d78_308d_b0e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d78_308d_b0e3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1d78_308d_b0e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ee5_cded_80c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ee5_cded_80c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ee5_cded_80c4/request", "", "public", "Top Dataset, std, uairt.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ee5_cded_80c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ee5_cded_80c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ee5_cded_80c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ee5_cded_80c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ee5_cded_80c4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5ee5_cded_80c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e262_6d27_0e36", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e262_6d27_0e36.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e262_6d27_0e36/request", "", "public", "Top Dataset, std, uairt.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e262_6d27_0e36_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e262_6d27_0e36_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e262_6d27_0e36/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e262_6d27_0e36.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e262_6d27_0e36&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e262_6d27_0e36"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a5e_5816_a5f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a5e_5816_a5f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a5e_5816_a5f1/request", "", "public", "Top Dataset, std, uairt.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a5e_5816_a5f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a5e_5816_a5f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a5e_5816_a5f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a5e_5816_a5f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a5e_5816_a5f1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5a5e_5816_a5f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5ac_a8f2_ecf3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5ac_a8f2_ecf3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5ac_a8f2_ecf3/request", "", "public", "Top Dataset, std, uairt.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5ac_a8f2_ecf3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5ac_a8f2_ecf3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5ac_a8f2_ecf3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5ac_a8f2_ecf3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5ac_a8f2_ecf3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c5ac_a8f2_ecf3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c022_8394_4716", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c022_8394_4716.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c022_8394_4716/request", "", "public", "Top Dataset, std, uairt.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c022_8394_4716_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c022_8394_4716_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c022_8394_4716/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c022_8394_4716.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c022_8394_4716&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c022_8394_4716"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_321b_6274_3e4b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_321b_6274_3e4b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_321b_6274_3e4b/request", "", "public", "Top Dataset, std, uairt.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_321b_6274_3e4b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_321b_6274_3e4b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_321b_6274_3e4b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_321b_6274_3e4b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_321b_6274_3e4b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_321b_6274_3e4b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffd1_3c99_11d8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffd1_3c99_11d8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ffd1_3c99_11d8/request", "", "public", "Top Dataset, std, uairt.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ffd1_3c99_11d8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ffd1_3c99_11d8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ffd1_3c99_11d8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ffd1_3c99_11d8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ffd1_3c99_11d8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ffd1_3c99_11d8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63d3_5b86_1196", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63d3_5b86_1196.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_63d3_5b86_1196/request", "", "public", "Top Dataset, std, uairt.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_63d3_5b86_1196_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_63d3_5b86_1196_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_63d3_5b86_1196/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_63d3_5b86_1196.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_63d3_5b86_1196&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_63d3_5b86_1196"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2aef_1916_6694", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2aef_1916_6694.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2aef_1916_6694/request", "", "public", "Top Dataset, std, uairt.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2aef_1916_6694_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2aef_1916_6694_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2aef_1916_6694/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2aef_1916_6694.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2aef_1916_6694&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2aef_1916_6694"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_627e_aa9b_c3f8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_627e_aa9b_c3f8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_627e_aa9b_c3f8/request", "", "public", "Top Dataset, std, uairt.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_627e_aa9b_c3f8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_627e_aa9b_c3f8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_627e_aa9b_c3f8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_627e_aa9b_c3f8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_627e_aa9b_c3f8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_627e_aa9b_c3f8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b314_0155_bda0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b314_0155_bda0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b314_0155_bda0/request", "", "public", "Top Dataset, std, uairt.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b314_0155_bda0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b314_0155_bda0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b314_0155_bda0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b314_0155_bda0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b314_0155_bda0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b314_0155_bda0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26a4_3cf8_e0d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26a4_3cf8_e0d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_26a4_3cf8_e0d5/request", "", "public", "Top Dataset, std, uairt.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_26a4_3cf8_e0d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_26a4_3cf8_e0d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_26a4_3cf8_e0d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_26a4_3cf8_e0d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_26a4_3cf8_e0d5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_26a4_3cf8_e0d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8ca_9c44_32f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8ca_9c44_32f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a8ca_9c44_32f5/request", "", "public", "Top Dataset, std, uairt.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a8ca_9c44_32f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a8ca_9c44_32f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a8ca_9c44_32f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a8ca_9c44_32f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a8ca_9c44_32f5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a8ca_9c44_32f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_07ca_3fee_a899", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_07ca_3fee_a899.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_07ca_3fee_a899/request", "", "public", "Top Dataset, std, uairt.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_07ca_3fee_a899_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_07ca_3fee_a899_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_07ca_3fee_a899/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_07ca_3fee_a899.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_07ca_3fee_a899&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_07ca_3fee_a899"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a3ba_595f_60f7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a3ba_595f_60f7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a3ba_595f_60f7/request", "", "public", "Top Dataset, std, uairt.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a3ba_595f_60f7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a3ba_595f_60f7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a3ba_595f_60f7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a3ba_595f_60f7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a3ba_595f_60f7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a3ba_595f_60f7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da6b_ac2e_afe9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da6b_ac2e_afe9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da6b_ac2e_afe9/request", "", "public", "Top Dataset, std, uairt.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da6b_ac2e_afe9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da6b_ac2e_afe9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da6b_ac2e_afe9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da6b_ac2e_afe9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da6b_ac2e_afe9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_da6b_ac2e_afe9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6921_1c8e_77b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6921_1c8e_77b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6921_1c8e_77b6/request", "", "public", "Top Dataset, std, uairt.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6921_1c8e_77b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6921_1c8e_77b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6921_1c8e_77b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6921_1c8e_77b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6921_1c8e_77b6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6921_1c8e_77b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30a3_620f_9f8d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30a3_620f_9f8d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_30a3_620f_9f8d/request", "", "public", "Top Dataset, std, uairt.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_30a3_620f_9f8d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_30a3_620f_9f8d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_30a3_620f_9f8d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_30a3_620f_9f8d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_30a3_620f_9f8d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_30a3_620f_9f8d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3426_5e79_2311", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3426_5e79_2311.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3426_5e79_2311/request", "", "public", "Top Dataset, std, uairt.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3426_5e79_2311_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3426_5e79_2311_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3426_5e79_2311/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3426_5e79_2311.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3426_5e79_2311&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3426_5e79_2311"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e89c_0caf_6d60", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e89c_0caf_6d60.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e89c_0caf_6d60/request", "", "public", "Top Dataset, std, uairt.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e89c_0caf_6d60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e89c_0caf_6d60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e89c_0caf_6d60/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e89c_0caf_6d60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e89c_0caf_6d60&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e89c_0caf_6d60"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8585_6f34_844a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8585_6f34_844a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8585_6f34_844a/request", "", "public", "Top Dataset, std, uairt.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8585_6f34_844a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8585_6f34_844a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8585_6f34_844a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8585_6f34_844a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8585_6f34_844a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8585_6f34_844a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5c1_642c_9333", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5c1_642c_9333.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5c1_642c_9333/request", "", "public", "Top Dataset, std, uairt.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5c1_642c_9333_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5c1_642c_9333_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5c1_642c_9333/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5c1_642c_9333.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5c1_642c_9333&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e5c1_642c_9333"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5070_ef60_1a02", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5070_ef60_1a02.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5070_ef60_1a02/request", "", "public", "Top Dataset, std, uairt.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5070_ef60_1a02_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5070_ef60_1a02_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5070_ef60_1a02/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5070_ef60_1a02.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5070_ef60_1a02&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5070_ef60_1a02"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1951_7684_1915", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1951_7684_1915.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1951_7684_1915/request", "", "public", "Top Dataset, std, uairt.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1951_7684_1915_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1951_7684_1915_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1951_7684_1915/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1951_7684_1915.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1951_7684_1915&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1951_7684_1915"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c241_12b3_22d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c241_12b3_22d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c241_12b3_22d3/request", "", "public", "Top Dataset, std, uairt.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c241_12b3_22d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c241_12b3_22d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c241_12b3_22d3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c241_12b3_22d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c241_12b3_22d3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c241_12b3_22d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5763_56f5_3dba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5763_56f5_3dba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5763_56f5_3dba/request", "", "public", "Top Dataset, std, uairt.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5763_56f5_3dba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5763_56f5_3dba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5763_56f5_3dba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5763_56f5_3dba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5763_56f5_3dba&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5763_56f5_3dba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5964_6538_6b9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5964_6538_6b9f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5964_6538_6b9f/request", "", "public", "Top Dataset, std, uairt.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5964_6538_6b9f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5964_6538_6b9f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5964_6538_6b9f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5964_6538_6b9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5964_6538_6b9f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5964_6538_6b9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd1c_144f_b69e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd1c_144f_b69e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bd1c_144f_b69e/request", "", "public", "Top Dataset, std, uairt.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bd1c_144f_b69e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bd1c_144f_b69e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bd1c_144f_b69e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bd1c_144f_b69e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bd1c_144f_b69e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bd1c_144f_b69e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f76_b1f6_677a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f76_b1f6_677a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3f76_b1f6_677a/request", "", "public", "Top Dataset, std, uairt.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3f76_b1f6_677a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3f76_b1f6_677a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3f76_b1f6_677a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3f76_b1f6_677a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3f76_b1f6_677a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3f76_b1f6_677a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8807_396c_1c67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8807_396c_1c67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8807_396c_1c67/request", "", "public", "Top Dataset, std, uairt.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8807_396c_1c67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8807_396c_1c67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8807_396c_1c67/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8807_396c_1c67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8807_396c_1c67&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8807_396c_1c67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff67_514d_2b2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff67_514d_2b2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff67_514d_2b2f/request", "", "public", "Top Dataset, std, uairt.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff67_514d_2b2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff67_514d_2b2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff67_514d_2b2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff67_514d_2b2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff67_514d_2b2f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ff67_514d_2b2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba1e_579e_67de", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba1e_579e_67de.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ba1e_579e_67de/request", "", "public", "Top Dataset, std, uairt.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ba1e_579e_67de_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ba1e_579e_67de_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ba1e_579e_67de/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ba1e_579e_67de.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ba1e_579e_67de&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ba1e_579e_67de"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ae4_81e1_db62", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ae4_81e1_db62.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ae4_81e1_db62/request", "", "public", "Top Dataset, std, uairt.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ae4_81e1_db62_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ae4_81e1_db62_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ae4_81e1_db62/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ae4_81e1_db62.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ae4_81e1_db62&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1ae4_81e1_db62"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6598_dc0f_6e4a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6598_dc0f_6e4a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6598_dc0f_6e4a/request", "", "public", "Top Dataset, std, uairt.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6598_dc0f_6e4a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6598_dc0f_6e4a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6598_dc0f_6e4a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6598_dc0f_6e4a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6598_dc0f_6e4a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6598_dc0f_6e4a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca87_b777_d39f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca87_b777_d39f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca87_b777_d39f/request", "", "public", "Top Dataset, std, uairt.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca87_b777_d39f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca87_b777_d39f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca87_b777_d39f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca87_b777_d39f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca87_b777_d39f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ca87_b777_d39f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_412e_25b6_a096", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_412e_25b6_a096.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_412e_25b6_a096/request", "", "public", "Top Dataset, std, uairt.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_412e_25b6_a096_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_412e_25b6_a096_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_412e_25b6_a096/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_412e_25b6_a096.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_412e_25b6_a096&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_412e_25b6_a096"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4806_c347_7f30", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4806_c347_7f30.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4806_c347_7f30/request", "", "public", "Top Dataset, std, uairt.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4806_c347_7f30_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4806_c347_7f30_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4806_c347_7f30/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4806_c347_7f30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4806_c347_7f30&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4806_c347_7f30"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4326_be6d_f9a5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4326_be6d_f9a5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4326_be6d_f9a5/request", "", "public", "Top Dataset, std, uairt.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4326_be6d_f9a5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4326_be6d_f9a5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4326_be6d_f9a5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4326_be6d_f9a5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4326_be6d_f9a5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4326_be6d_f9a5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_145b_3edb_42d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_145b_3edb_42d2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_145b_3edb_42d2/request", "", "public", "Top Dataset, std, uairt.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_145b_3edb_42d2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_145b_3edb_42d2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_145b_3edb_42d2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_145b_3edb_42d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_145b_3edb_42d2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_145b_3edb_42d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9205_71b3_8443", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9205_71b3_8443.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9205_71b3_8443/request", "", "public", "Top Dataset, std, uairt.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9205_71b3_8443_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9205_71b3_8443_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9205_71b3_8443/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9205_71b3_8443.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9205_71b3_8443&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9205_71b3_8443"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_303c_9513_3224", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_303c_9513_3224.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_303c_9513_3224/request", "", "public", "Top Dataset, std, uairt.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_303c_9513_3224_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_303c_9513_3224_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_303c_9513_3224/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_303c_9513_3224.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_303c_9513_3224&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_303c_9513_3224"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94be_e520_d203", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94be_e520_d203.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_94be_e520_d203/request", "", "public", "Top Dataset, std, uairt.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_94be_e520_d203_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_94be_e520_d203_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_94be_e520_d203/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_94be_e520_d203.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_94be_e520_d203&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_94be_e520_d203"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f811_ead8_2403", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f811_ead8_2403.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f811_ead8_2403/request", "", "public", "Top Dataset, std, uairt.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f811_ead8_2403_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f811_ead8_2403_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f811_ead8_2403/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f811_ead8_2403.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f811_ead8_2403&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f811_ead8_2403"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c6c7_001a_a798", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c6c7_001a_a798.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c6c7_001a_a798/request", "", "public", "Top Dataset, std, uairt.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c6c7_001a_a798_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c6c7_001a_a798_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c6c7_001a_a798/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c6c7_001a_a798.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c6c7_001a_a798&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c6c7_001a_a798"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f2e_f3d4_e7e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f2e_f3d4_e7e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4f2e_f3d4_e7e0/request", "", "public", "Top Dataset, std, uairt.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4f2e_f3d4_e7e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4f2e_f3d4_e7e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4f2e_f3d4_e7e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4f2e_f3d4_e7e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4f2e_f3d4_e7e0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4f2e_f3d4_e7e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cdd0_6b28_7e4e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cdd0_6b28_7e4e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cdd0_6b28_7e4e/request", "", "public", "Top Dataset, std, uairt.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cdd0_6b28_7e4e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cdd0_6b28_7e4e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cdd0_6b28_7e4e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cdd0_6b28_7e4e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cdd0_6b28_7e4e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cdd0_6b28_7e4e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19fa_88f9_f15f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19fa_88f9_f15f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_19fa_88f9_f15f/request", "", "public", "Top Dataset, std, uairt.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_19fa_88f9_f15f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_19fa_88f9_f15f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_19fa_88f9_f15f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_19fa_88f9_f15f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_19fa_88f9_f15f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_19fa_88f9_f15f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34b4_029c_0adb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34b4_029c_0adb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_34b4_029c_0adb/request", "", "public", "Top Dataset, std, uairt.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_34b4_029c_0adb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_34b4_029c_0adb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_34b4_029c_0adb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_34b4_029c_0adb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_34b4_029c_0adb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_34b4_029c_0adb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_68b1_f9c7_9a72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_68b1_f9c7_9a72.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_68b1_f9c7_9a72/request", "", "public", "Top Dataset, std, uairt.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_68b1_f9c7_9a72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_68b1_f9c7_9a72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_68b1_f9c7_9a72/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_68b1_f9c7_9a72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_68b1_f9c7_9a72&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_68b1_f9c7_9a72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e16e_07fa_9b74", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e16e_07fa_9b74.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e16e_07fa_9b74/request", "", "public", "Top Dataset, std, ulflx.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e16e_07fa_9b74_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e16e_07fa_9b74_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e16e_07fa_9b74/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e16e_07fa_9b74.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e16e_07fa_9b74&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e16e_07fa_9b74"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9eac_0fe1_ae17", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9eac_0fe1_ae17.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9eac_0fe1_ae17/request", "", "public", "Top Dataset, std, ulflx.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9eac_0fe1_ae17_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9eac_0fe1_ae17_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9eac_0fe1_ae17/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9eac_0fe1_ae17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9eac_0fe1_ae17&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9eac_0fe1_ae17"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc9c_18b2_a11a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc9c_18b2_a11a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc9c_18b2_a11a/request", "", "public", "Top Dataset, std, ulflx.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc9c_18b2_a11a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc9c_18b2_a11a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc9c_18b2_a11a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc9c_18b2_a11a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc9c_18b2_a11a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cc9c_18b2_a11a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c370_4422_b652", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c370_4422_b652.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c370_4422_b652/request", "", "public", "Top Dataset, std, ulflx.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c370_4422_b652_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c370_4422_b652_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c370_4422_b652/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c370_4422_b652.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c370_4422_b652&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c370_4422_b652"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_142d_4483_7819", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_142d_4483_7819.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_142d_4483_7819/request", "", "public", "Top Dataset, std, ulflx.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_142d_4483_7819_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_142d_4483_7819_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_142d_4483_7819/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_142d_4483_7819.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_142d_4483_7819&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_142d_4483_7819"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d8b_29b9_0beb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d8b_29b9_0beb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2d8b_29b9_0beb/request", "", "public", "Top Dataset, std, ulflx.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2d8b_29b9_0beb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2d8b_29b9_0beb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d8b_29b9_0beb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d8b_29b9_0beb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d8b_29b9_0beb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2d8b_29b9_0beb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0966_1f60_ab52", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0966_1f60_ab52.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0966_1f60_ab52/request", "", "public", "Top Dataset, std, ulflx.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0966_1f60_ab52_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0966_1f60_ab52_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0966_1f60_ab52/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0966_1f60_ab52.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0966_1f60_ab52&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0966_1f60_ab52"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f70_a45b_e275", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f70_a45b_e275.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5f70_a45b_e275/request", "", "public", "Top Dataset, std, ulflx.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5f70_a45b_e275_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5f70_a45b_e275_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5f70_a45b_e275/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5f70_a45b_e275.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5f70_a45b_e275&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5f70_a45b_e275"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae24_a271_9740", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae24_a271_9740.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae24_a271_9740/request", "", "public", "Top Dataset, std, ulflx.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae24_a271_9740_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae24_a271_9740_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae24_a271_9740/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae24_a271_9740.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae24_a271_9740&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ae24_a271_9740"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2852_93e5_9c28", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2852_93e5_9c28.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2852_93e5_9c28/request", "", "public", "Top Dataset, std, ulflx.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2852_93e5_9c28_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2852_93e5_9c28_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2852_93e5_9c28/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2852_93e5_9c28.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2852_93e5_9c28&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2852_93e5_9c28"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98ba_5f04_febd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98ba_5f04_febd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_98ba_5f04_febd/request", "", "public", "Top Dataset, std, ulflx.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_98ba_5f04_febd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_98ba_5f04_febd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_98ba_5f04_febd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_98ba_5f04_febd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_98ba_5f04_febd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_98ba_5f04_febd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b01d_298c_d242", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b01d_298c_d242.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b01d_298c_d242/request", "", "public", "Top Dataset, std, ulflx.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b01d_298c_d242_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b01d_298c_d242_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b01d_298c_d242/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b01d_298c_d242.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b01d_298c_d242&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b01d_298c_d242"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b06_7882_32ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b06_7882_32ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9b06_7882_32ef/request", "", "public", "Top Dataset, std, ulflx.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9b06_7882_32ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9b06_7882_32ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9b06_7882_32ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9b06_7882_32ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9b06_7882_32ef&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9b06_7882_32ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0fc3_c5b0_e862", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0fc3_c5b0_e862.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0fc3_c5b0_e862/request", "", "public", "Top Dataset, std, ulflx.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0fc3_c5b0_e862_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0fc3_c5b0_e862_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0fc3_c5b0_e862/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0fc3_c5b0_e862.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0fc3_c5b0_e862&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0fc3_c5b0_e862"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ecd8_f51f_0594", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ecd8_f51f_0594.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ecd8_f51f_0594/request", "", "public", "Top Dataset, std, ulflx.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ecd8_f51f_0594_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ecd8_f51f_0594_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ecd8_f51f_0594/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ecd8_f51f_0594.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ecd8_f51f_0594&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ecd8_f51f_0594"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7523_9656_9606", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7523_9656_9606.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7523_9656_9606/request", "", "public", "Top Dataset, std, ulflx.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7523_9656_9606_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7523_9656_9606_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7523_9656_9606/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7523_9656_9606.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7523_9656_9606&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7523_9656_9606"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60cb_6313_acdf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60cb_6313_acdf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_60cb_6313_acdf/request", "", "public", "Top Dataset, std, ulflx.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_60cb_6313_acdf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_60cb_6313_acdf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_60cb_6313_acdf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_60cb_6313_acdf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_60cb_6313_acdf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_60cb_6313_acdf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a235_a485_07a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a235_a485_07a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a235_a485_07a0/request", "", "public", "Top Dataset, std, ulflx.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a235_a485_07a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a235_a485_07a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a235_a485_07a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a235_a485_07a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a235_a485_07a0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a235_a485_07a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ae4_fe46_db39", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ae4_fe46_db39.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2ae4_fe46_db39/request", "", "public", "Top Dataset, std, ulflx.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2ae4_fe46_db39_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2ae4_fe46_db39_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2ae4_fe46_db39/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2ae4_fe46_db39.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2ae4_fe46_db39&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2ae4_fe46_db39"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1b20_81ad_d495", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1b20_81ad_d495.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1b20_81ad_d495/request", "", "public", "Top Dataset, std, ulflx.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1b20_81ad_d495_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1b20_81ad_d495_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1b20_81ad_d495/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1b20_81ad_d495.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1b20_81ad_d495&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1b20_81ad_d495"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_987a_bf1e_58c7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_987a_bf1e_58c7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_987a_bf1e_58c7/request", "", "public", "Top Dataset, std, ulflx.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_987a_bf1e_58c7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_987a_bf1e_58c7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_987a_bf1e_58c7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_987a_bf1e_58c7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_987a_bf1e_58c7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_987a_bf1e_58c7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8a3_a0f9_985a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8a3_a0f9_985a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a8a3_a0f9_985a/request", "", "public", "Top Dataset, std, ulflx.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a8a3_a0f9_985a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a8a3_a0f9_985a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a8a3_a0f9_985a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a8a3_a0f9_985a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a8a3_a0f9_985a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a8a3_a0f9_985a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fe5_ab50_b132", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fe5_ab50_b132.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4fe5_ab50_b132/request", "", "public", "Top Dataset, std, ulflx.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4fe5_ab50_b132_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4fe5_ab50_b132_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4fe5_ab50_b132/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4fe5_ab50_b132.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4fe5_ab50_b132&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4fe5_ab50_b132"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7071_02cf_2587", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7071_02cf_2587.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7071_02cf_2587/request", "", "public", "Top Dataset, std, ulflx.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7071_02cf_2587_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7071_02cf_2587_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7071_02cf_2587/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7071_02cf_2587.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7071_02cf_2587&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7071_02cf_2587"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2249_9969_38a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2249_9969_38a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2249_9969_38a7/request", "", "public", "Top Dataset, std, ulflx.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2249_9969_38a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2249_9969_38a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2249_9969_38a7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2249_9969_38a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2249_9969_38a7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2249_9969_38a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2273_54b0_f066", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2273_54b0_f066.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2273_54b0_f066/request", "", "public", "Top Dataset, std, ulflx.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2273_54b0_f066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2273_54b0_f066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2273_54b0_f066/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2273_54b0_f066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2273_54b0_f066&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2273_54b0_f066"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd08_2530_2946", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd08_2530_2946.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dd08_2530_2946/request", "", "public", "Top Dataset, std, ulflx.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dd08_2530_2946_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dd08_2530_2946_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dd08_2530_2946/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dd08_2530_2946.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dd08_2530_2946&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dd08_2530_2946"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccd5_8358_87bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccd5_8358_87bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ccd5_8358_87bb/request", "", "public", "Top Dataset, std, ulflx.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ccd5_8358_87bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ccd5_8358_87bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ccd5_8358_87bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ccd5_8358_87bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ccd5_8358_87bb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ccd5_8358_87bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1377_d4d5_611e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1377_d4d5_611e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1377_d4d5_611e/request", "", "public", "Top Dataset, std, ulflx.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1377_d4d5_611e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1377_d4d5_611e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1377_d4d5_611e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1377_d4d5_611e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1377_d4d5_611e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1377_d4d5_611e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d3c_6b78_8566", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d3c_6b78_8566.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d3c_6b78_8566/request", "", "public", "Top Dataset, std, ulflx.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d3c_6b78_8566_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d3c_6b78_8566_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d3c_6b78_8566/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d3c_6b78_8566.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d3c_6b78_8566&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1d3c_6b78_8566"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a7e1_f374_d7cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a7e1_f374_d7cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a7e1_f374_d7cf/request", "", "public", "Top Dataset, std, ulflx.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a7e1_f374_d7cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a7e1_f374_d7cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a7e1_f374_d7cf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a7e1_f374_d7cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a7e1_f374_d7cf&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a7e1_f374_d7cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f50_40e1_c0ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f50_40e1_c0ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f50_40e1_c0ff/request", "", "public", "Top Dataset, std, ulflx.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f50_40e1_c0ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f50_40e1_c0ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f50_40e1_c0ff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f50_40e1_c0ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f50_40e1_c0ff&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9f50_40e1_c0ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd4d_f986_d5bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd4d_f986_d5bc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cd4d_f986_d5bc/request", "", "public", "Top Dataset, std, ulflx.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cd4d_f986_d5bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cd4d_f986_d5bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cd4d_f986_d5bc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cd4d_f986_d5bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cd4d_f986_d5bc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cd4d_f986_d5bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_31b5_496d_b92f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_31b5_496d_b92f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_31b5_496d_b92f/request", "", "public", "Top Dataset, std, ulflx.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_31b5_496d_b92f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_31b5_496d_b92f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_31b5_496d_b92f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_31b5_496d_b92f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_31b5_496d_b92f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_31b5_496d_b92f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71ab_5a79_714f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71ab_5a79_714f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_71ab_5a79_714f/request", "", "public", "Top Dataset, std, ulflx.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_71ab_5a79_714f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_71ab_5a79_714f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_71ab_5a79_714f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_71ab_5a79_714f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_71ab_5a79_714f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_71ab_5a79_714f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be25_d2df_115f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be25_d2df_115f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_be25_d2df_115f/request", "", "public", "Top Dataset, std, ulflx.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_be25_d2df_115f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_be25_d2df_115f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_be25_d2df_115f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_be25_d2df_115f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_be25_d2df_115f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_be25_d2df_115f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e360_740d_aa3e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e360_740d_aa3e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e360_740d_aa3e/request", "", "public", "Top Dataset, std, ulflx.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e360_740d_aa3e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e360_740d_aa3e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e360_740d_aa3e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e360_740d_aa3e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e360_740d_aa3e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e360_740d_aa3e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8dd_8946_71db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8dd_8946_71db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a8dd_8946_71db/request", "", "public", "Top Dataset, std, ulflx.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a8dd_8946_71db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a8dd_8946_71db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a8dd_8946_71db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a8dd_8946_71db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a8dd_8946_71db&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a8dd_8946_71db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da8e_8bb9_ce5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da8e_8bb9_ce5b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da8e_8bb9_ce5b/request", "", "public", "Top Dataset, std, ulflx.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da8e_8bb9_ce5b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da8e_8bb9_ce5b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da8e_8bb9_ce5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da8e_8bb9_ce5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da8e_8bb9_ce5b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_da8e_8bb9_ce5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ded2_ea59_799f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ded2_ea59_799f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ded2_ea59_799f/request", "", "public", "Top Dataset, std, ulflx.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ded2_ea59_799f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ded2_ea59_799f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ded2_ea59_799f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ded2_ea59_799f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ded2_ea59_799f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ded2_ea59_799f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5f8_f037_68fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5f8_f037_68fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d5f8_f037_68fb/request", "", "public", "Top Dataset, std, ulflx.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d5f8_f037_68fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d5f8_f037_68fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d5f8_f037_68fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d5f8_f037_68fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d5f8_f037_68fb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d5f8_f037_68fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb9e_0290_674f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb9e_0290_674f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb9e_0290_674f/request", "", "public", "Top Dataset, std, ulflx.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb9e_0290_674f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb9e_0290_674f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb9e_0290_674f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb9e_0290_674f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb9e_0290_674f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fb9e_0290_674f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b54_18aa_f721", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b54_18aa_f721.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b54_18aa_f721/request", "", "public", "Top Dataset, std, ulflx.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b54_18aa_f721_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b54_18aa_f721_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b54_18aa_f721/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b54_18aa_f721.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b54_18aa_f721&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7b54_18aa_f721"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b72_51dc_57e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b72_51dc_57e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b72_51dc_57e0/request", "", "public", "Top Dataset, std, ulflx.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b72_51dc_57e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b72_51dc_57e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b72_51dc_57e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b72_51dc_57e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b72_51dc_57e0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7b72_51dc_57e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f233_2f69_b384", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f233_2f69_b384.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f233_2f69_b384/request", "", "public", "Top Dataset, std, ulflx.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f233_2f69_b384_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f233_2f69_b384_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f233_2f69_b384/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f233_2f69_b384.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f233_2f69_b384&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f233_2f69_b384"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86b6_cfd5_71ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86b6_cfd5_71ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_86b6_cfd5_71ce/request", "", "public", "Top Dataset, std, ulflx.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86b6_cfd5_71ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86b6_cfd5_71ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86b6_cfd5_71ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86b6_cfd5_71ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86b6_cfd5_71ce&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_86b6_cfd5_71ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d35_d6cc_190b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d35_d6cc_190b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d35_d6cc_190b/request", "", "public", "Top Dataset, std, ulflx.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d35_d6cc_190b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d35_d6cc_190b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d35_d6cc_190b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d35_d6cc_190b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d35_d6cc_190b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4d35_d6cc_190b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ef9_1486_0f05", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ef9_1486_0f05.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ef9_1486_0f05/request", "", "public", "Top Dataset, std, ulflx.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ef9_1486_0f05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ef9_1486_0f05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ef9_1486_0f05/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ef9_1486_0f05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ef9_1486_0f05&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4ef9_1486_0f05"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3c0_4976_5ee9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3c0_4976_5ee9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c3c0_4976_5ee9/request", "", "public", "Top Dataset, std, ulflx.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c3c0_4976_5ee9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c3c0_4976_5ee9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c3c0_4976_5ee9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c3c0_4976_5ee9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c3c0_4976_5ee9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c3c0_4976_5ee9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2df3_9df6_fb51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2df3_9df6_fb51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2df3_9df6_fb51/request", "", "public", "Top Dataset, std, ulflx.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2df3_9df6_fb51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2df3_9df6_fb51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2df3_9df6_fb51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2df3_9df6_fb51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2df3_9df6_fb51&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2df3_9df6_fb51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30ae_4535_c0ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30ae_4535_c0ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_30ae_4535_c0ea/request", "", "public", "Top Dataset, std, ulflx.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_30ae_4535_c0ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_30ae_4535_c0ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_30ae_4535_c0ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_30ae_4535_c0ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_30ae_4535_c0ea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_30ae_4535_c0ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da05_6247_5bf6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da05_6247_5bf6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da05_6247_5bf6/request", "", "public", "Top Dataset, std, ulflx.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da05_6247_5bf6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da05_6247_5bf6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da05_6247_5bf6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da05_6247_5bf6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da05_6247_5bf6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_da05_6247_5bf6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20f3_8c82_2168", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20f3_8c82_2168.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_20f3_8c82_2168/request", "", "public", "Top Dataset, std, ulflx.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_20f3_8c82_2168_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_20f3_8c82_2168_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_20f3_8c82_2168/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_20f3_8c82_2168.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_20f3_8c82_2168&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_20f3_8c82_2168"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c47_8c32_a872", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c47_8c32_a872.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2c47_8c32_a872/request", "", "public", "Top Dataset, std, ulflx.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2c47_8c32_a872_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2c47_8c32_a872_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2c47_8c32_a872/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2c47_8c32_a872.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2c47_8c32_a872&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2c47_8c32_a872"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6c0_57b2_7891", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6c0_57b2_7891.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f6c0_57b2_7891/request", "", "public", "Top Dataset, std, ulflx.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f6c0_57b2_7891_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f6c0_57b2_7891_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f6c0_57b2_7891/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f6c0_57b2_7891.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f6c0_57b2_7891&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f6c0_57b2_7891"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bba6_23df_408f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bba6_23df_408f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bba6_23df_408f/request", "", "public", "Top Dataset, std, ulflx.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bba6_23df_408f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bba6_23df_408f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bba6_23df_408f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bba6_23df_408f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bba6_23df_408f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bba6_23df_408f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d305_8b70_653d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d305_8b70_653d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d305_8b70_653d/request", "", "public", "Top Dataset, std, ulflx.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d305_8b70_653d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d305_8b70_653d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d305_8b70_653d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d305_8b70_653d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d305_8b70_653d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d305_8b70_653d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e954_7fc2_b5b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e954_7fc2_b5b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e954_7fc2_b5b8/request", "", "public", "Top Dataset, std, ulflx.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e954_7fc2_b5b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e954_7fc2_b5b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e954_7fc2_b5b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e954_7fc2_b5b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e954_7fc2_b5b8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e954_7fc2_b5b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0fb5_cdfd_5862", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0fb5_cdfd_5862.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0fb5_cdfd_5862/request", "", "public", "Top Dataset, std, ulflx.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0fb5_cdfd_5862_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0fb5_cdfd_5862_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0fb5_cdfd_5862/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0fb5_cdfd_5862.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0fb5_cdfd_5862&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0fb5_cdfd_5862"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9f9_a9e8_85ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9f9_a9e8_85ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e9f9_a9e8_85ec/request", "", "public", "Top Dataset, std, ulflx.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e9f9_a9e8_85ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e9f9_a9e8_85ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e9f9_a9e8_85ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e9f9_a9e8_85ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e9f9_a9e8_85ec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e9f9_a9e8_85ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14bf_c9d8_6224", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14bf_c9d8_6224.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_14bf_c9d8_6224/request", "", "public", "Top Dataset, std, ulflx.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_14bf_c9d8_6224_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_14bf_c9d8_6224_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_14bf_c9d8_6224/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_14bf_c9d8_6224.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_14bf_c9d8_6224&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_14bf_c9d8_6224"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4089_e704_7762", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4089_e704_7762.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4089_e704_7762/request", "", "public", "Top Dataset, std, ulflx.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4089_e704_7762_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4089_e704_7762_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4089_e704_7762/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4089_e704_7762.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4089_e704_7762&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4089_e704_7762"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c623_3958_3e1b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c623_3958_3e1b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c623_3958_3e1b/request", "", "public", "Top Dataset, std, ulflx.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c623_3958_3e1b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c623_3958_3e1b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c623_3958_3e1b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c623_3958_3e1b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c623_3958_3e1b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c623_3958_3e1b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c229_d5d4_bd71", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c229_d5d4_bd71.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c229_d5d4_bd71/request", "", "public", "Top Dataset, std, upstr.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c229_d5d4_bd71_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c229_d5d4_bd71_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c229_d5d4_bd71/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c229_d5d4_bd71.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c229_d5d4_bd71&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c229_d5d4_bd71"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14d9_6450_0a1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14d9_6450_0a1e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_14d9_6450_0a1e/request", "", "public", "Top Dataset, std, upstr.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_14d9_6450_0a1e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_14d9_6450_0a1e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_14d9_6450_0a1e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_14d9_6450_0a1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_14d9_6450_0a1e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_14d9_6450_0a1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9a3_997b_94ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9a3_997b_94ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a9a3_997b_94ee/request", "", "public", "Top Dataset, std, upstr.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9a3_997b_94ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9a3_997b_94ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9a3_997b_94ee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9a3_997b_94ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9a3_997b_94ee&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a9a3_997b_94ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26a2_a955_7e2e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26a2_a955_7e2e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_26a2_a955_7e2e/request", "", "public", "Top Dataset, std, upstr.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_26a2_a955_7e2e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_26a2_a955_7e2e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_26a2_a955_7e2e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_26a2_a955_7e2e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_26a2_a955_7e2e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_26a2_a955_7e2e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c856_7d90_cf72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c856_7d90_cf72.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c856_7d90_cf72/request", "", "public", "Top Dataset, std, upstr.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c856_7d90_cf72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c856_7d90_cf72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c856_7d90_cf72/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c856_7d90_cf72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c856_7d90_cf72&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c856_7d90_cf72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f303_b8de_3b62", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f303_b8de_3b62.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f303_b8de_3b62/request", "", "public", "Top Dataset, std, upstr.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f303_b8de_3b62_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f303_b8de_3b62_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f303_b8de_3b62/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f303_b8de_3b62.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f303_b8de_3b62&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f303_b8de_3b62"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4206_2104_da6b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4206_2104_da6b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4206_2104_da6b/request", "", "public", "Top Dataset, std, upstr.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4206_2104_da6b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4206_2104_da6b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4206_2104_da6b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4206_2104_da6b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4206_2104_da6b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4206_2104_da6b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45ef_654f_2192", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45ef_654f_2192.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_45ef_654f_2192/request", "", "public", "Top Dataset, std, upstr.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_45ef_654f_2192_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_45ef_654f_2192_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_45ef_654f_2192/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_45ef_654f_2192.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_45ef_654f_2192&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_45ef_654f_2192"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c787_4e19_afce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c787_4e19_afce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c787_4e19_afce/request", "", "public", "Top Dataset, std, upstr.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c787_4e19_afce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c787_4e19_afce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c787_4e19_afce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c787_4e19_afce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c787_4e19_afce&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c787_4e19_afce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2be2_f8f7_094b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2be2_f8f7_094b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2be2_f8f7_094b/request", "", "public", "Top Dataset, std, upstr.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2be2_f8f7_094b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2be2_f8f7_094b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2be2_f8f7_094b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2be2_f8f7_094b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2be2_f8f7_094b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2be2_f8f7_094b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b56_fb87_9de1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b56_fb87_9de1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4b56_fb87_9de1/request", "", "public", "Top Dataset, std, upstr.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4b56_fb87_9de1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4b56_fb87_9de1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4b56_fb87_9de1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4b56_fb87_9de1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4b56_fb87_9de1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4b56_fb87_9de1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c13_7531_c07f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c13_7531_c07f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7c13_7531_c07f/request", "", "public", "Top Dataset, std, upstr.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7c13_7531_c07f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7c13_7531_c07f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7c13_7531_c07f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7c13_7531_c07f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7c13_7531_c07f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7c13_7531_c07f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a042_27e2_c262", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a042_27e2_c262.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a042_27e2_c262/request", "", "public", "Top Dataset, std, upstr.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a042_27e2_c262_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a042_27e2_c262_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a042_27e2_c262/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a042_27e2_c262.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a042_27e2_c262&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a042_27e2_c262"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d74_8d3e_7304", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d74_8d3e_7304.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2d74_8d3e_7304/request", "", "public", "Top Dataset, std, upstr.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2d74_8d3e_7304_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2d74_8d3e_7304_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d74_8d3e_7304/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d74_8d3e_7304.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d74_8d3e_7304&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2d74_8d3e_7304"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_75a2_7c43_d124", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_75a2_7c43_d124.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_75a2_7c43_d124/request", "", "public", "Top Dataset, std, upstr.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_75a2_7c43_d124_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_75a2_7c43_d124_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_75a2_7c43_d124/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_75a2_7c43_d124.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_75a2_7c43_d124&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_75a2_7c43_d124"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3f0_7d6a_1f2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3f0_7d6a_1f2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c3f0_7d6a_1f2a/request", "", "public", "Top Dataset, std, upstr.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c3f0_7d6a_1f2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c3f0_7d6a_1f2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c3f0_7d6a_1f2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c3f0_7d6a_1f2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c3f0_7d6a_1f2a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c3f0_7d6a_1f2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb06_6491_021b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb06_6491_021b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb06_6491_021b/request", "", "public", "Top Dataset, std, upstr.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb06_6491_021b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb06_6491_021b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb06_6491_021b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb06_6491_021b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb06_6491_021b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cb06_6491_021b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1ec_06fe_50e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1ec_06fe_50e8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f1ec_06fe_50e8/request", "", "public", "Top Dataset, std, upstr.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f1ec_06fe_50e8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f1ec_06fe_50e8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f1ec_06fe_50e8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f1ec_06fe_50e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f1ec_06fe_50e8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f1ec_06fe_50e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a6f_8904_5f58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a6f_8904_5f58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a6f_8904_5f58/request", "", "public", "Top Dataset, std, upstr.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a6f_8904_5f58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a6f_8904_5f58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a6f_8904_5f58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a6f_8904_5f58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a6f_8904_5f58&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0a6f_8904_5f58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a35_c8ce_9397", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a35_c8ce_9397.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a35_c8ce_9397/request", "", "public", "Top Dataset, std, upstr.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a35_c8ce_9397_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a35_c8ce_9397_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a35_c8ce_9397/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a35_c8ce_9397.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a35_c8ce_9397&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5a35_c8ce_9397"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8038_d4cd_d948", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8038_d4cd_d948.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8038_d4cd_d948/request", "", "public", "Top Dataset, std, upstr.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8038_d4cd_d948_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8038_d4cd_d948_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8038_d4cd_d948/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8038_d4cd_d948.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8038_d4cd_d948&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8038_d4cd_d948"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2be_e932_ead2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2be_e932_ead2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d2be_e932_ead2/request", "", "public", "Top Dataset, std, upstr.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d2be_e932_ead2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d2be_e932_ead2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d2be_e932_ead2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d2be_e932_ead2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d2be_e932_ead2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d2be_e932_ead2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_620d_e0bd_39bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_620d_e0bd_39bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_620d_e0bd_39bd/request", "", "public", "Top Dataset, std, upstr.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_620d_e0bd_39bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_620d_e0bd_39bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_620d_e0bd_39bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_620d_e0bd_39bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_620d_e0bd_39bd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_620d_e0bd_39bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c658_1b26_dc2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c658_1b26_dc2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c658_1b26_dc2f/request", "", "public", "Top Dataset, std, upstr.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c658_1b26_dc2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c658_1b26_dc2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c658_1b26_dc2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c658_1b26_dc2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c658_1b26_dc2f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c658_1b26_dc2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce60_ee3c_974a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce60_ee3c_974a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ce60_ee3c_974a/request", "", "public", "Top Dataset, std, upstr.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ce60_ee3c_974a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ce60_ee3c_974a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ce60_ee3c_974a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ce60_ee3c_974a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ce60_ee3c_974a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ce60_ee3c_974a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_740d_1c92_3757", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_740d_1c92_3757.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_740d_1c92_3757/request", "", "public", "Top Dataset, std, upstr.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_740d_1c92_3757_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_740d_1c92_3757_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_740d_1c92_3757/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_740d_1c92_3757.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_740d_1c92_3757&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_740d_1c92_3757"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e05_73cc_d3d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e05_73cc_d3d2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e05_73cc_d3d2/request", "", "public", "Top Dataset, std, upstr.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e05_73cc_d3d2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e05_73cc_d3d2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e05_73cc_d3d2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e05_73cc_d3d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e05_73cc_d3d2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8e05_73cc_d3d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5e9_0d7d_a762", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5e9_0d7d_a762.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5e9_0d7d_a762/request", "", "public", "Top Dataset, std, upstr.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5e9_0d7d_a762_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5e9_0d7d_a762_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5e9_0d7d_a762/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5e9_0d7d_a762.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5e9_0d7d_a762&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c5e9_0d7d_a762"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_407c_ed83_08fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_407c_ed83_08fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_407c_ed83_08fe/request", "", "public", "Top Dataset, std, upstr.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_407c_ed83_08fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_407c_ed83_08fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_407c_ed83_08fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_407c_ed83_08fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_407c_ed83_08fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_407c_ed83_08fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a56_fc55_378c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a56_fc55_378c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8a56_fc55_378c/request", "", "public", "Top Dataset, std, upstr.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8a56_fc55_378c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8a56_fc55_378c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8a56_fc55_378c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8a56_fc55_378c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8a56_fc55_378c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8a56_fc55_378c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_545b_81e8_9edd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_545b_81e8_9edd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_545b_81e8_9edd/request", "", "public", "Top Dataset, std, upstr.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_545b_81e8_9edd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_545b_81e8_9edd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_545b_81e8_9edd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_545b_81e8_9edd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_545b_81e8_9edd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_545b_81e8_9edd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a6b_4950_5be5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a6b_4950_5be5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a6b_4950_5be5/request", "", "public", "Top Dataset, std, upstr.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a6b_4950_5be5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a6b_4950_5be5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a6b_4950_5be5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a6b_4950_5be5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a6b_4950_5be5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6a6b_4950_5be5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_998b_a657_895f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_998b_a657_895f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_998b_a657_895f/request", "", "public", "Top Dataset, std, upstr.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_998b_a657_895f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_998b_a657_895f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_998b_a657_895f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_998b_a657_895f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_998b_a657_895f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_998b_a657_895f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1229_f83d_6bf8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1229_f83d_6bf8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1229_f83d_6bf8/request", "", "public", "Top Dataset, std, upstr.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1229_f83d_6bf8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1229_f83d_6bf8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1229_f83d_6bf8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1229_f83d_6bf8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1229_f83d_6bf8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1229_f83d_6bf8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a80_b3b8_a5e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a80_b3b8_a5e8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a80_b3b8_a5e8/request", "", "public", "Top Dataset, std, upstr.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a80_b3b8_a5e8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a80_b3b8_a5e8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a80_b3b8_a5e8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a80_b3b8_a5e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a80_b3b8_a5e8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3a80_b3b8_a5e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f8f_2232_15e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f8f_2232_15e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5f8f_2232_15e3/request", "", "public", "Top Dataset, std, upstr.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5f8f_2232_15e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5f8f_2232_15e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5f8f_2232_15e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5f8f_2232_15e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5f8f_2232_15e3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5f8f_2232_15e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_39ef_5d79_8f83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_39ef_5d79_8f83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_39ef_5d79_8f83/request", "", "public", "Top Dataset, std, upstr.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_39ef_5d79_8f83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_39ef_5d79_8f83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_39ef_5d79_8f83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_39ef_5d79_8f83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_39ef_5d79_8f83&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_39ef_5d79_8f83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_36fa_a363_f757", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_36fa_a363_f757.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_36fa_a363_f757/request", "", "public", "Top Dataset, std, upstr.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_36fa_a363_f757_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_36fa_a363_f757_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_36fa_a363_f757/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_36fa_a363_f757.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_36fa_a363_f757&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_36fa_a363_f757"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99c0_c218_db65", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99c0_c218_db65.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99c0_c218_db65/request", "", "public", "Top Dataset, std, upstr.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99c0_c218_db65_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99c0_c218_db65_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99c0_c218_db65/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99c0_c218_db65.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99c0_c218_db65&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_99c0_c218_db65"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6cd4_7514_5f49", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6cd4_7514_5f49.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6cd4_7514_5f49/request", "", "public", "Top Dataset, std, upstr.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6cd4_7514_5f49_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6cd4_7514_5f49_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6cd4_7514_5f49/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6cd4_7514_5f49.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6cd4_7514_5f49&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6cd4_7514_5f49"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0251_133f_0809", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0251_133f_0809.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0251_133f_0809/request", "", "public", "Top Dataset, std, upstr.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0251_133f_0809_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0251_133f_0809_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0251_133f_0809/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0251_133f_0809.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0251_133f_0809&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0251_133f_0809"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e21_6fe8_5dbb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e21_6fe8_5dbb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2e21_6fe8_5dbb/request", "", "public", "Top Dataset, std, upstr.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2e21_6fe8_5dbb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2e21_6fe8_5dbb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2e21_6fe8_5dbb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2e21_6fe8_5dbb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2e21_6fe8_5dbb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2e21_6fe8_5dbb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d71a_de00_698e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d71a_de00_698e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d71a_de00_698e/request", "", "public", "Top Dataset, std, upstr.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d71a_de00_698e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d71a_de00_698e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d71a_de00_698e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d71a_de00_698e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d71a_de00_698e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d71a_de00_698e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a26f_685c_870c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a26f_685c_870c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a26f_685c_870c/request", "", "public", "Top Dataset, std, upstr.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a26f_685c_870c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a26f_685c_870c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a26f_685c_870c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a26f_685c_870c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a26f_685c_870c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a26f_685c_870c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb87_4886_76c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb87_4886_76c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bb87_4886_76c0/request", "", "public", "Top Dataset, std, upstr.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bb87_4886_76c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bb87_4886_76c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bb87_4886_76c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bb87_4886_76c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bb87_4886_76c0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bb87_4886_76c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_16e0_e367_a767", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_16e0_e367_a767.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_16e0_e367_a767/request", "", "public", "Top Dataset, std, upstr.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_16e0_e367_a767_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_16e0_e367_a767_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_16e0_e367_a767/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_16e0_e367_a767.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_16e0_e367_a767&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_16e0_e367_a767"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_42f4_cb24_3b51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_42f4_cb24_3b51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_42f4_cb24_3b51/request", "", "public", "Top Dataset, std, upstr.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_42f4_cb24_3b51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_42f4_cb24_3b51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_42f4_cb24_3b51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_42f4_cb24_3b51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_42f4_cb24_3b51&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_42f4_cb24_3b51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b03d_1ac9_1874", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b03d_1ac9_1874.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b03d_1ac9_1874/request", "", "public", "Top Dataset, std, upstr.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b03d_1ac9_1874_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b03d_1ac9_1874_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b03d_1ac9_1874/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b03d_1ac9_1874.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b03d_1ac9_1874&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b03d_1ac9_1874"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce8f_a6db_b41a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce8f_a6db_b41a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ce8f_a6db_b41a/request", "", "public", "Top Dataset, std, upstr.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ce8f_a6db_b41a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ce8f_a6db_b41a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ce8f_a6db_b41a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ce8f_a6db_b41a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ce8f_a6db_b41a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ce8f_a6db_b41a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3f1_69c1_240b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3f1_69c1_240b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d3f1_69c1_240b/request", "", "public", "Top Dataset, std, upstr.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d3f1_69c1_240b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d3f1_69c1_240b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d3f1_69c1_240b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d3f1_69c1_240b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d3f1_69c1_240b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d3f1_69c1_240b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff4d_fe89_09fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff4d_fe89_09fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff4d_fe89_09fb/request", "", "public", "Top Dataset, std, upstr.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff4d_fe89_09fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff4d_fe89_09fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff4d_fe89_09fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff4d_fe89_09fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff4d_fe89_09fb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ff4d_fe89_09fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b4e_c3f6_7818", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b4e_c3f6_7818.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8b4e_c3f6_7818/request", "", "public", "Top Dataset, std, upstr.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8b4e_c3f6_7818_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8b4e_c3f6_7818_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8b4e_c3f6_7818/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8b4e_c3f6_7818.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8b4e_c3f6_7818&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8b4e_c3f6_7818"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3928_8fdd_d9db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3928_8fdd_d9db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3928_8fdd_d9db/request", "", "public", "Top Dataset, std, upstr.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3928_8fdd_d9db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3928_8fdd_d9db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3928_8fdd_d9db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3928_8fdd_d9db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3928_8fdd_d9db&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3928_8fdd_d9db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d7f_b7d4_4520", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d7f_b7d4_4520.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d7f_b7d4_4520/request", "", "public", "Top Dataset, std, upstr.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d7f_b7d4_4520_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d7f_b7d4_4520_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d7f_b7d4_4520/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d7f_b7d4_4520.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d7f_b7d4_4520&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8d7f_b7d4_4520"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cb3_2e82_ced7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cb3_2e82_ced7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3cb3_2e82_ced7/request", "", "public", "Top Dataset, std, upstr.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3cb3_2e82_ced7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3cb3_2e82_ced7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3cb3_2e82_ced7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3cb3_2e82_ced7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3cb3_2e82_ced7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3cb3_2e82_ced7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4077_239c_d3af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4077_239c_d3af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4077_239c_d3af/request", "", "public", "Top Dataset, std, upstr.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4077_239c_d3af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4077_239c_d3af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4077_239c_d3af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4077_239c_d3af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4077_239c_d3af&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4077_239c_d3af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d59_b8dc_1478", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d59_b8dc_1478.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5d59_b8dc_1478/request", "", "public", "Top Dataset, std, upstr.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5d59_b8dc_1478_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5d59_b8dc_1478_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5d59_b8dc_1478/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5d59_b8dc_1478.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5d59_b8dc_1478&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5d59_b8dc_1478"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_101d_e688_d60d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_101d_e688_d60d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_101d_e688_d60d/request", "", "public", "Top Dataset, std, upstr.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_101d_e688_d60d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_101d_e688_d60d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_101d_e688_d60d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_101d_e688_d60d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_101d_e688_d60d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_101d_e688_d60d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_326d_0d26_1923", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_326d_0d26_1923.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_326d_0d26_1923/request", "", "public", "Top Dataset, std, upstr.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_326d_0d26_1923_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_326d_0d26_1923_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_326d_0d26_1923/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_326d_0d26_1923.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_326d_0d26_1923&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_326d_0d26_1923"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c13c_d3bd_d13e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c13c_d3bd_d13e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c13c_d3bd_d13e/request", "", "public", "Top Dataset, std, upstr.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c13c_d3bd_d13e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c13c_d3bd_d13e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c13c_d3bd_d13e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c13c_d3bd_d13e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c13c_d3bd_d13e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c13c_d3bd_d13e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e05_b191_1a48", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e05_b191_1a48.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e05_b191_1a48/request", "", "public", "Top Dataset, std, upstr.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e05_b191_1a48_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e05_b191_1a48_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e05_b191_1a48/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e05_b191_1a48.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e05_b191_1a48&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9e05_b191_1a48"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b14c_93ac_46c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b14c_93ac_46c5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b14c_93ac_46c5/request", "", "public", "Top Dataset, std, upstr.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b14c_93ac_46c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b14c_93ac_46c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b14c_93ac_46c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b14c_93ac_46c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b14c_93ac_46c5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b14c_93ac_46c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d494_576c_c035", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d494_576c_c035.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d494_576c_c035/request", "", "public", "Top Dataset, std, upstr.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d494_576c_c035_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d494_576c_c035_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d494_576c_c035/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d494_576c_c035.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d494_576c_c035&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d494_576c_c035"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6d2_57a5_63d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6d2_57a5_63d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f6d2_57a5_63d9/request", "", "public", "Top Dataset, std, uspeh.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f6d2_57a5_63d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f6d2_57a5_63d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f6d2_57a5_63d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f6d2_57a5_63d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f6d2_57a5_63d9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f6d2_57a5_63d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d989_23ff_70c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d989_23ff_70c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d989_23ff_70c3/request", "", "public", "Top Dataset, std, uspeh.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d989_23ff_70c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d989_23ff_70c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d989_23ff_70c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d989_23ff_70c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d989_23ff_70c3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d989_23ff_70c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc04_2b3d_92e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc04_2b3d_92e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc04_2b3d_92e1/request", "", "public", "Top Dataset, std, uspeh.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc04_2b3d_92e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc04_2b3d_92e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc04_2b3d_92e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc04_2b3d_92e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc04_2b3d_92e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dc04_2b3d_92e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8264_44b4_e0c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8264_44b4_e0c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8264_44b4_e0c3/request", "", "public", "Top Dataset, std, uspeh.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8264_44b4_e0c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8264_44b4_e0c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8264_44b4_e0c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8264_44b4_e0c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8264_44b4_e0c3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8264_44b4_e0c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19e8_6d8d_9760", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19e8_6d8d_9760.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_19e8_6d8d_9760/request", "", "public", "Top Dataset, std, uspeh.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_19e8_6d8d_9760_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_19e8_6d8d_9760_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_19e8_6d8d_9760/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_19e8_6d8d_9760.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_19e8_6d8d_9760&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_19e8_6d8d_9760"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a3e_4272_878f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a3e_4272_878f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a3e_4272_878f/request", "", "public", "Top Dataset, std, uspeh.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a3e_4272_878f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a3e_4272_878f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a3e_4272_878f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a3e_4272_878f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a3e_4272_878f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6a3e_4272_878f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8727_5bf3_80b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8727_5bf3_80b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8727_5bf3_80b9/request", "", "public", "Top Dataset, std, uspeh.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8727_5bf3_80b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8727_5bf3_80b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8727_5bf3_80b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8727_5bf3_80b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8727_5bf3_80b9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8727_5bf3_80b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1016_5881_1d7c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1016_5881_1d7c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1016_5881_1d7c/request", "", "public", "Top Dataset, std, uspeh.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1016_5881_1d7c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1016_5881_1d7c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1016_5881_1d7c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1016_5881_1d7c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1016_5881_1d7c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1016_5881_1d7c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9032_e42c_544b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9032_e42c_544b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9032_e42c_544b/request", "", "public", "Top Dataset, std, uspeh.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9032_e42c_544b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9032_e42c_544b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9032_e42c_544b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9032_e42c_544b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9032_e42c_544b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9032_e42c_544b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3078_3556_24ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3078_3556_24ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3078_3556_24ef/request", "", "public", "Top Dataset, std, uspeh.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3078_3556_24ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3078_3556_24ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3078_3556_24ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3078_3556_24ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3078_3556_24ef&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3078_3556_24ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_27ff_46d7_898f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_27ff_46d7_898f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_27ff_46d7_898f/request", "", "public", "Top Dataset, std, uspeh.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_27ff_46d7_898f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_27ff_46d7_898f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_27ff_46d7_898f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_27ff_46d7_898f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_27ff_46d7_898f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_27ff_46d7_898f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5280_24ec_e616", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5280_24ec_e616.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5280_24ec_e616/request", "", "public", "Top Dataset, std, uspeh.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5280_24ec_e616_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5280_24ec_e616_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5280_24ec_e616/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5280_24ec_e616.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5280_24ec_e616&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5280_24ec_e616"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_faa4_38bc_a897", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_faa4_38bc_a897.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_faa4_38bc_a897/request", "", "public", "Top Dataset, std, uspeh.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_faa4_38bc_a897_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_faa4_38bc_a897_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_faa4_38bc_a897/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_faa4_38bc_a897.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_faa4_38bc_a897&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_faa4_38bc_a897"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1bc1_44f5_3907", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1bc1_44f5_3907.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1bc1_44f5_3907/request", "", "public", "Top Dataset, std, uspeh.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1bc1_44f5_3907_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1bc1_44f5_3907_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1bc1_44f5_3907/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1bc1_44f5_3907.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1bc1_44f5_3907&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1bc1_44f5_3907"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5e8_f6b4_1e11", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5e8_f6b4_1e11.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d5e8_f6b4_1e11/request", "", "public", "Top Dataset, std, uspeh.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d5e8_f6b4_1e11_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d5e8_f6b4_1e11_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d5e8_f6b4_1e11/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d5e8_f6b4_1e11.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d5e8_f6b4_1e11&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d5e8_f6b4_1e11"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0101_5eaa_bab4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0101_5eaa_bab4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0101_5eaa_bab4/request", "", "public", "Top Dataset, std, uspeh.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0101_5eaa_bab4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0101_5eaa_bab4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0101_5eaa_bab4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0101_5eaa_bab4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0101_5eaa_bab4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0101_5eaa_bab4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05a8_cacf_e5d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05a8_cacf_e5d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_05a8_cacf_e5d4/request", "", "public", "Top Dataset, std, uspeh.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_05a8_cacf_e5d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_05a8_cacf_e5d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_05a8_cacf_e5d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_05a8_cacf_e5d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_05a8_cacf_e5d4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_05a8_cacf_e5d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c4d9_3ed0_6480", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c4d9_3ed0_6480.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c4d9_3ed0_6480/request", "", "public", "Top Dataset, std, uspeh.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c4d9_3ed0_6480_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c4d9_3ed0_6480_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c4d9_3ed0_6480/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c4d9_3ed0_6480.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c4d9_3ed0_6480&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c4d9_3ed0_6480"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d27_f505_5b2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d27_f505_5b2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9d27_f505_5b2a/request", "", "public", "Top Dataset, std, uspeh.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9d27_f505_5b2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9d27_f505_5b2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9d27_f505_5b2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9d27_f505_5b2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9d27_f505_5b2a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9d27_f505_5b2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_115b_5522_82ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_115b_5522_82ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_115b_5522_82ea/request", "", "public", "Top Dataset, std, uspeh.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_115b_5522_82ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_115b_5522_82ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_115b_5522_82ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_115b_5522_82ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_115b_5522_82ea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_115b_5522_82ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4203_a420_378a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4203_a420_378a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4203_a420_378a/request", "", "public", "Top Dataset, std, uspeh.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4203_a420_378a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4203_a420_378a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4203_a420_378a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4203_a420_378a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4203_a420_378a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4203_a420_378a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d0e_7416_bcea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d0e_7416_bcea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0d0e_7416_bcea/request", "", "public", "Top Dataset, std, uspeh.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0d0e_7416_bcea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0d0e_7416_bcea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0d0e_7416_bcea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0d0e_7416_bcea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0d0e_7416_bcea&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0d0e_7416_bcea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2742_c00c_4ee0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2742_c00c_4ee0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2742_c00c_4ee0/request", "", "public", "Top Dataset, std, uspeh.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2742_c00c_4ee0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2742_c00c_4ee0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2742_c00c_4ee0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2742_c00c_4ee0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2742_c00c_4ee0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2742_c00c_4ee0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d12_9de9_f3fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d12_9de9_f3fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9d12_9de9_f3fe/request", "", "public", "Top Dataset, std, uspeh.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9d12_9de9_f3fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9d12_9de9_f3fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9d12_9de9_f3fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9d12_9de9_f3fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9d12_9de9_f3fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9d12_9de9_f3fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8988_fb4d_7d6d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8988_fb4d_7d6d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8988_fb4d_7d6d/request", "", "public", "Top Dataset, std, uspeh.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8988_fb4d_7d6d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8988_fb4d_7d6d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8988_fb4d_7d6d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8988_fb4d_7d6d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8988_fb4d_7d6d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8988_fb4d_7d6d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5297_6920_546b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5297_6920_546b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5297_6920_546b/request", "", "public", "Top Dataset, std, uspeh.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5297_6920_546b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5297_6920_546b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5297_6920_546b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5297_6920_546b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5297_6920_546b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5297_6920_546b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a279_6b05_4b04", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a279_6b05_4b04.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a279_6b05_4b04/request", "", "public", "Top Dataset, std, uspeh.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a279_6b05_4b04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a279_6b05_4b04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a279_6b05_4b04/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a279_6b05_4b04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a279_6b05_4b04&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a279_6b05_4b04"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f508_8808_3dd3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f508_8808_3dd3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f508_8808_3dd3/request", "", "public", "Top Dataset, std, uspeh.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f508_8808_3dd3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f508_8808_3dd3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f508_8808_3dd3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f508_8808_3dd3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f508_8808_3dd3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f508_8808_3dd3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3057_62e1_d2cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3057_62e1_d2cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3057_62e1_d2cd/request", "", "public", "Top Dataset, std, uspeh.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3057_62e1_d2cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3057_62e1_d2cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3057_62e1_d2cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3057_62e1_d2cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3057_62e1_d2cd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3057_62e1_d2cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a956_27d4_a21d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a956_27d4_a21d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a956_27d4_a21d/request", "", "public", "Top Dataset, std, uspeh.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a956_27d4_a21d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a956_27d4_a21d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a956_27d4_a21d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a956_27d4_a21d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a956_27d4_a21d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a956_27d4_a21d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c82_3a9b_8600", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c82_3a9b_8600.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c82_3a9b_8600/request", "", "public", "Top Dataset, std, uspeh.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c82_3a9b_8600_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c82_3a9b_8600_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c82_3a9b_8600/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c82_3a9b_8600.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c82_3a9b_8600&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0c82_3a9b_8600"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21b8_3f04_0ceb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21b8_3f04_0ceb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_21b8_3f04_0ceb/request", "", "public", "Top Dataset, std, uspeh.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_21b8_3f04_0ceb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_21b8_3f04_0ceb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_21b8_3f04_0ceb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_21b8_3f04_0ceb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_21b8_3f04_0ceb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_21b8_3f04_0ceb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edd6_2b51_f645", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edd6_2b51_f645.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_edd6_2b51_f645/request", "", "public", "Top Dataset, std, uspeh.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_edd6_2b51_f645_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_edd6_2b51_f645_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_edd6_2b51_f645/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_edd6_2b51_f645.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_edd6_2b51_f645&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_edd6_2b51_f645"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ba5_3a70_4b2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ba5_3a70_4b2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9ba5_3a70_4b2d/request", "", "public", "Top Dataset, std, uspeh.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9ba5_3a70_4b2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9ba5_3a70_4b2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9ba5_3a70_4b2d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9ba5_3a70_4b2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9ba5_3a70_4b2d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9ba5_3a70_4b2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ba5_ca3b_1f06", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ba5_ca3b_1f06.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ba5_ca3b_1f06/request", "", "public", "Top Dataset, std, uspeh.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ba5_ca3b_1f06_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ba5_ca3b_1f06_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ba5_ca3b_1f06/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ba5_ca3b_1f06.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ba5_ca3b_1f06&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8ba5_ca3b_1f06"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b59d_614e_2d39", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b59d_614e_2d39.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b59d_614e_2d39/request", "", "public", "Top Dataset, std, uspeh.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b59d_614e_2d39_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b59d_614e_2d39_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b59d_614e_2d39/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b59d_614e_2d39.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b59d_614e_2d39&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b59d_614e_2d39"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb2d_aa68_2b5d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb2d_aa68_2b5d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bb2d_aa68_2b5d/request", "", "public", "Top Dataset, std, uspeh.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bb2d_aa68_2b5d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bb2d_aa68_2b5d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bb2d_aa68_2b5d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bb2d_aa68_2b5d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bb2d_aa68_2b5d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bb2d_aa68_2b5d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f6e_45d8_dc09", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f6e_45d8_dc09.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5f6e_45d8_dc09/request", "", "public", "Top Dataset, std, uspeh.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5f6e_45d8_dc09_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5f6e_45d8_dc09_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5f6e_45d8_dc09/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5f6e_45d8_dc09.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5f6e_45d8_dc09&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5f6e_45d8_dc09"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da14_80e8_0c19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da14_80e8_0c19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da14_80e8_0c19/request", "", "public", "Top Dataset, std, uspeh.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da14_80e8_0c19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da14_80e8_0c19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da14_80e8_0c19/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da14_80e8_0c19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da14_80e8_0c19&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_da14_80e8_0c19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1615_e316_8fbe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1615_e316_8fbe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1615_e316_8fbe/request", "", "public", "Top Dataset, std, uspeh.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1615_e316_8fbe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1615_e316_8fbe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1615_e316_8fbe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1615_e316_8fbe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1615_e316_8fbe&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1615_e316_8fbe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc28_8db0_c804", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc28_8db0_c804.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc28_8db0_c804/request", "", "public", "Top Dataset, std, uspeh.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc28_8db0_c804_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc28_8db0_c804_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc28_8db0_c804/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc28_8db0_c804.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc28_8db0_c804&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cc28_8db0_c804"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e95d_aad3_c404", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e95d_aad3_c404.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e95d_aad3_c404/request", "", "public", "Top Dataset, std, uspeh.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e95d_aad3_c404_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e95d_aad3_c404_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e95d_aad3_c404/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e95d_aad3_c404.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e95d_aad3_c404&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e95d_aad3_c404"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5364_694a_5b48", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5364_694a_5b48.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5364_694a_5b48/request", "", "public", "Top Dataset, std, uspeh.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5364_694a_5b48_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5364_694a_5b48_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5364_694a_5b48/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5364_694a_5b48.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5364_694a_5b48&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5364_694a_5b48"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7251_59db_6af5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7251_59db_6af5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7251_59db_6af5/request", "", "public", "Top Dataset, std, uspeh.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7251_59db_6af5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7251_59db_6af5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7251_59db_6af5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7251_59db_6af5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7251_59db_6af5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7251_59db_6af5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc11_7938_46db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc11_7938_46db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc11_7938_46db/request", "", "public", "Top Dataset, std, uspeh.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc11_7938_46db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc11_7938_46db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc11_7938_46db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc11_7938_46db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc11_7938_46db&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fc11_7938_46db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0dee_0cb2_0eb6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0dee_0cb2_0eb6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0dee_0cb2_0eb6/request", "", "public", "Top Dataset, std, uspeh.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0dee_0cb2_0eb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0dee_0cb2_0eb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0dee_0cb2_0eb6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0dee_0cb2_0eb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0dee_0cb2_0eb6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0dee_0cb2_0eb6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e46_ca79_d665", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e46_ca79_d665.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1e46_ca79_d665/request", "", "public", "Top Dataset, std, uspeh.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1e46_ca79_d665_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1e46_ca79_d665_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1e46_ca79_d665/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1e46_ca79_d665.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1e46_ca79_d665&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1e46_ca79_d665"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96f7_e55f_2ea7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_96f7_e55f_2ea7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_96f7_e55f_2ea7/request", "", "public", "Top Dataset, std, uspeh.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_96f7_e55f_2ea7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_96f7_e55f_2ea7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_96f7_e55f_2ea7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_96f7_e55f_2ea7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_96f7_e55f_2ea7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_96f7_e55f_2ea7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_350b_0406_d5f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_350b_0406_d5f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_350b_0406_d5f1/request", "", "public", "Top Dataset, std, uspeh.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_350b_0406_d5f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_350b_0406_d5f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_350b_0406_d5f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_350b_0406_d5f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_350b_0406_d5f1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_350b_0406_d5f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cfc_27b4_0948", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cfc_27b4_0948.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9cfc_27b4_0948/request", "", "public", "Top Dataset, std, uspeh.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9cfc_27b4_0948_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9cfc_27b4_0948_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9cfc_27b4_0948/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9cfc_27b4_0948.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9cfc_27b4_0948&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9cfc_27b4_0948"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2ec_ed80_951c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2ec_ed80_951c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f2ec_ed80_951c/request", "", "public", "Top Dataset, std, uspeh.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f2ec_ed80_951c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f2ec_ed80_951c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f2ec_ed80_951c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f2ec_ed80_951c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f2ec_ed80_951c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f2ec_ed80_951c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e04d_ba6e_a954", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e04d_ba6e_a954.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e04d_ba6e_a954/request", "", "public", "Top Dataset, std, uspeh.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e04d_ba6e_a954_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e04d_ba6e_a954_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e04d_ba6e_a954/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e04d_ba6e_a954.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e04d_ba6e_a954&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e04d_ba6e_a954"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10b1_67fd_ee6b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10b1_67fd_ee6b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_10b1_67fd_ee6b/request", "", "public", "Top Dataset, std, uspeh.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_10b1_67fd_ee6b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_10b1_67fd_ee6b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_10b1_67fd_ee6b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_10b1_67fd_ee6b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_10b1_67fd_ee6b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_10b1_67fd_ee6b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78ba_126a_921f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78ba_126a_921f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_78ba_126a_921f/request", "", "public", "Top Dataset, std, uspeh.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_78ba_126a_921f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_78ba_126a_921f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_78ba_126a_921f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_78ba_126a_921f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_78ba_126a_921f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_78ba_126a_921f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9b4_bf72_761d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9b4_bf72_761d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b9b4_bf72_761d/request", "", "public", "Top Dataset, std, uspeh.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b9b4_bf72_761d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b9b4_bf72_761d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b9b4_bf72_761d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b9b4_bf72_761d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b9b4_bf72_761d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b9b4_bf72_761d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3239_d282_b1b2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3239_d282_b1b2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3239_d282_b1b2/request", "", "public", "Top Dataset, std, uspeh.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3239_d282_b1b2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3239_d282_b1b2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3239_d282_b1b2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3239_d282_b1b2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3239_d282_b1b2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3239_d282_b1b2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b47a_2fb5_d7a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b47a_2fb5_d7a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b47a_2fb5_d7a1/request", "", "public", "Top Dataset, std, uspeh.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b47a_2fb5_d7a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b47a_2fb5_d7a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b47a_2fb5_d7a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b47a_2fb5_d7a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b47a_2fb5_d7a1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b47a_2fb5_d7a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c317_fb41_8644", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c317_fb41_8644.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c317_fb41_8644/request", "", "public", "Top Dataset, std, uspeh.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c317_fb41_8644_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c317_fb41_8644_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c317_fb41_8644/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c317_fb41_8644.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c317_fb41_8644&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c317_fb41_8644"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_098c_19a6_0fb1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_098c_19a6_0fb1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_098c_19a6_0fb1/request", "", "public", "Top Dataset, std, uspeh.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_098c_19a6_0fb1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_098c_19a6_0fb1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_098c_19a6_0fb1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_098c_19a6_0fb1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_098c_19a6_0fb1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_098c_19a6_0fb1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e146_3ba2_d8fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e146_3ba2_d8fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e146_3ba2_d8fe/request", "", "public", "Top Dataset, std, uspeh.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e146_3ba2_d8fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e146_3ba2_d8fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e146_3ba2_d8fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e146_3ba2_d8fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e146_3ba2_d8fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e146_3ba2_d8fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fa6_743b_79e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fa6_743b_79e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2fa6_743b_79e5/request", "", "public", "Top Dataset, std, uspeh.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2fa6_743b_79e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2fa6_743b_79e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2fa6_743b_79e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2fa6_743b_79e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2fa6_743b_79e5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2fa6_743b_79e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_562e_eb32_9c3e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_562e_eb32_9c3e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_562e_eb32_9c3e/request", "", "public", "Top Dataset, std, uspeh.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_562e_eb32_9c3e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_562e_eb32_9c3e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_562e_eb32_9c3e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_562e_eb32_9c3e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_562e_eb32_9c3e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_562e_eb32_9c3e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b615_e88a_711c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b615_e88a_711c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b615_e88a_711c/request", "", "public", "Top Dataset, std, uspeh.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b615_e88a_711c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b615_e88a_711c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b615_e88a_711c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b615_e88a_711c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b615_e88a_711c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b615_e88a_711c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b421_dfd9_734a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b421_dfd9_734a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b421_dfd9_734a/request", "", "public", "Top Dataset, std, uwnd.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b421_dfd9_734a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b421_dfd9_734a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b421_dfd9_734a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b421_dfd9_734a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b421_dfd9_734a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b421_dfd9_734a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3618_4258_7408", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3618_4258_7408.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3618_4258_7408/request", "", "public", "Top Dataset, std, uwnd.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3618_4258_7408_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3618_4258_7408_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3618_4258_7408/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3618_4258_7408.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3618_4258_7408&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3618_4258_7408"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54b4_625c_7a03", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54b4_625c_7a03.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54b4_625c_7a03/request", "", "public", "Top Dataset, std, uwnd.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54b4_625c_7a03_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54b4_625c_7a03_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54b4_625c_7a03/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54b4_625c_7a03.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54b4_625c_7a03&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_54b4_625c_7a03"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9f4_5e1d_c2b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9f4_5e1d_c2b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c9f4_5e1d_c2b9/request", "", "public", "Top Dataset, std, uwnd.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c9f4_5e1d_c2b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c9f4_5e1d_c2b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c9f4_5e1d_c2b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c9f4_5e1d_c2b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c9f4_5e1d_c2b9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c9f4_5e1d_c2b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a85_f9a4_fe88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a85_f9a4_fe88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1a85_f9a4_fe88/request", "", "public", "Top Dataset, std, uwnd.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1a85_f9a4_fe88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1a85_f9a4_fe88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1a85_f9a4_fe88/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1a85_f9a4_fe88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1a85_f9a4_fe88&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1a85_f9a4_fe88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5202_7281_678e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5202_7281_678e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5202_7281_678e/request", "", "public", "Top Dataset, std, uwnd.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5202_7281_678e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5202_7281_678e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5202_7281_678e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5202_7281_678e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5202_7281_678e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5202_7281_678e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fea_3260_badd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fea_3260_badd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8fea_3260_badd/request", "", "public", "Top Dataset, std, uwnd.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8fea_3260_badd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8fea_3260_badd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8fea_3260_badd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8fea_3260_badd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8fea_3260_badd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8fea_3260_badd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6aa3_cca3_6855", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6aa3_cca3_6855.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6aa3_cca3_6855/request", "", "public", "Top Dataset, std, uwnd.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6aa3_cca3_6855_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6aa3_cca3_6855_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6aa3_cca3_6855/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6aa3_cca3_6855.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6aa3_cca3_6855&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6aa3_cca3_6855"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca08_0c16_6cbd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca08_0c16_6cbd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca08_0c16_6cbd/request", "", "public", "Top Dataset, std, uwnd.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca08_0c16_6cbd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca08_0c16_6cbd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca08_0c16_6cbd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca08_0c16_6cbd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca08_0c16_6cbd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ca08_0c16_6cbd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d479_2a61_f127", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d479_2a61_f127.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d479_2a61_f127/request", "", "public", "Top Dataset, std, uwnd.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d479_2a61_f127_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d479_2a61_f127_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d479_2a61_f127/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d479_2a61_f127.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d479_2a61_f127&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d479_2a61_f127"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b5f_52d0_edc4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b5f_52d0_edc4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4b5f_52d0_edc4/request", "", "public", "Top Dataset, std, uwnd.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4b5f_52d0_edc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4b5f_52d0_edc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4b5f_52d0_edc4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4b5f_52d0_edc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4b5f_52d0_edc4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4b5f_52d0_edc4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dec9_d426_ed18", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dec9_d426_ed18.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dec9_d426_ed18/request", "", "public", "Top Dataset, std, uwnd.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dec9_d426_ed18_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dec9_d426_ed18_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dec9_d426_ed18/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dec9_d426_ed18.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dec9_d426_ed18&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dec9_d426_ed18"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_579d_78a5_8954", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_579d_78a5_8954.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_579d_78a5_8954/request", "", "public", "Top Dataset, std, uwnd.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_579d_78a5_8954_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_579d_78a5_8954_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_579d_78a5_8954/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_579d_78a5_8954.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_579d_78a5_8954&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_579d_78a5_8954"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3241_b53a_260b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3241_b53a_260b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3241_b53a_260b/request", "", "public", "Top Dataset, std, uwnd.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3241_b53a_260b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3241_b53a_260b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3241_b53a_260b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3241_b53a_260b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3241_b53a_260b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3241_b53a_260b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71d1_b0b5_5506", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71d1_b0b5_5506.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_71d1_b0b5_5506/request", "", "public", "Top Dataset, std, uwnd.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_71d1_b0b5_5506_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_71d1_b0b5_5506_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_71d1_b0b5_5506/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_71d1_b0b5_5506.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_71d1_b0b5_5506&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_71d1_b0b5_5506"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fc5_aafa_c034", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fc5_aafa_c034.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2fc5_aafa_c034/request", "", "public", "Top Dataset, std, uwnd.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2fc5_aafa_c034_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2fc5_aafa_c034_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2fc5_aafa_c034/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2fc5_aafa_c034.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2fc5_aafa_c034&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2fc5_aafa_c034"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_353b_6055_08fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_353b_6055_08fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_353b_6055_08fb/request", "", "public", "Top Dataset, std, uwnd.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_353b_6055_08fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_353b_6055_08fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_353b_6055_08fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_353b_6055_08fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_353b_6055_08fb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_353b_6055_08fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_853e_dcb8_3399", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_853e_dcb8_3399.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_853e_dcb8_3399/request", "", "public", "Top Dataset, std, uwnd.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_853e_dcb8_3399_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_853e_dcb8_3399_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_853e_dcb8_3399/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_853e_dcb8_3399.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_853e_dcb8_3399&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_853e_dcb8_3399"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87f5_9218_9dbb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87f5_9218_9dbb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_87f5_9218_9dbb/request", "", "public", "Top Dataset, std, uwnd.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_87f5_9218_9dbb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_87f5_9218_9dbb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_87f5_9218_9dbb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_87f5_9218_9dbb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_87f5_9218_9dbb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_87f5_9218_9dbb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_944f_f537_1ed1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_944f_f537_1ed1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_944f_f537_1ed1/request", "", "public", "Top Dataset, std, uwnd.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_944f_f537_1ed1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_944f_f537_1ed1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_944f_f537_1ed1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_944f_f537_1ed1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_944f_f537_1ed1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_944f_f537_1ed1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a39d_8d12_62e9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a39d_8d12_62e9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a39d_8d12_62e9/request", "", "public", "Top Dataset, std, uwnd.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a39d_8d12_62e9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a39d_8d12_62e9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a39d_8d12_62e9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a39d_8d12_62e9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a39d_8d12_62e9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a39d_8d12_62e9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_326c_a7f6_c77e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_326c_a7f6_c77e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_326c_a7f6_c77e/request", "", "public", "Top Dataset, std, uwnd.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_326c_a7f6_c77e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_326c_a7f6_c77e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_326c_a7f6_c77e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_326c_a7f6_c77e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_326c_a7f6_c77e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_326c_a7f6_c77e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d54_8095_e3b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d54_8095_e3b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5d54_8095_e3b3/request", "", "public", "Top Dataset, std, uwnd.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5d54_8095_e3b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5d54_8095_e3b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5d54_8095_e3b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5d54_8095_e3b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5d54_8095_e3b3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5d54_8095_e3b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dcae_000e_ac5c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dcae_000e_ac5c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dcae_000e_ac5c/request", "", "public", "Top Dataset, std, uwnd.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dcae_000e_ac5c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dcae_000e_ac5c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dcae_000e_ac5c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dcae_000e_ac5c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dcae_000e_ac5c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dcae_000e_ac5c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9ea_0f3c_9b19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9ea_0f3c_9b19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f9ea_0f3c_9b19/request", "", "public", "Top Dataset, std, uwnd.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f9ea_0f3c_9b19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f9ea_0f3c_9b19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f9ea_0f3c_9b19/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f9ea_0f3c_9b19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f9ea_0f3c_9b19&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f9ea_0f3c_9b19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0304_bbf0_5f55", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0304_bbf0_5f55.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0304_bbf0_5f55/request", "", "public", "Top Dataset, std, uwnd.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0304_bbf0_5f55_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0304_bbf0_5f55_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0304_bbf0_5f55/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0304_bbf0_5f55.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0304_bbf0_5f55&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0304_bbf0_5f55"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fc5_c328_356d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fc5_c328_356d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1fc5_c328_356d/request", "", "public", "Top Dataset, std, uwnd.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1fc5_c328_356d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1fc5_c328_356d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1fc5_c328_356d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1fc5_c328_356d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1fc5_c328_356d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1fc5_c328_356d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9fb5_1199_bce4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9fb5_1199_bce4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9fb5_1199_bce4/request", "", "public", "Top Dataset, std, uwnd.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9fb5_1199_bce4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9fb5_1199_bce4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9fb5_1199_bce4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9fb5_1199_bce4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9fb5_1199_bce4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9fb5_1199_bce4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95e2_bf46_7c96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95e2_bf46_7c96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_95e2_bf46_7c96/request", "", "public", "Top Dataset, std, uwnd.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_95e2_bf46_7c96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_95e2_bf46_7c96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_95e2_bf46_7c96/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_95e2_bf46_7c96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_95e2_bf46_7c96&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_95e2_bf46_7c96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb4b_c84d_eb3c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb4b_c84d_eb3c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bb4b_c84d_eb3c/request", "", "public", "Top Dataset, std, uwnd.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bb4b_c84d_eb3c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bb4b_c84d_eb3c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bb4b_c84d_eb3c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bb4b_c84d_eb3c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bb4b_c84d_eb3c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bb4b_c84d_eb3c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97e0_93cf_6b14", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97e0_93cf_6b14.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_97e0_93cf_6b14/request", "", "public", "Top Dataset, std, uwnd.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_97e0_93cf_6b14_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_97e0_93cf_6b14_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_97e0_93cf_6b14/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_97e0_93cf_6b14.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_97e0_93cf_6b14&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_97e0_93cf_6b14"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c418_72be_dfa8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c418_72be_dfa8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c418_72be_dfa8/request", "", "public", "Top Dataset, std, uwnd.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c418_72be_dfa8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c418_72be_dfa8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c418_72be_dfa8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c418_72be_dfa8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c418_72be_dfa8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c418_72be_dfa8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cda1_dbbb_b23c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cda1_dbbb_b23c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cda1_dbbb_b23c/request", "", "public", "Top Dataset, std, uwnd.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cda1_dbbb_b23c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cda1_dbbb_b23c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cda1_dbbb_b23c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cda1_dbbb_b23c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cda1_dbbb_b23c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cda1_dbbb_b23c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b6f_7441_c9bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b6f_7441_c9bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b6f_7441_c9bd/request", "", "public", "Top Dataset, std, uwnd.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b6f_7441_c9bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b6f_7441_c9bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b6f_7441_c9bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b6f_7441_c9bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b6f_7441_c9bd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6b6f_7441_c9bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6af1_2b57_513f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6af1_2b57_513f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6af1_2b57_513f/request", "", "public", "Top Dataset, std, uwnd.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6af1_2b57_513f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6af1_2b57_513f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6af1_2b57_513f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6af1_2b57_513f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6af1_2b57_513f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6af1_2b57_513f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe73_fd99_50c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe73_fd99_50c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fe73_fd99_50c6/request", "", "public", "Top Dataset, std, uwnd.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fe73_fd99_50c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fe73_fd99_50c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fe73_fd99_50c6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fe73_fd99_50c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fe73_fd99_50c6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fe73_fd99_50c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddda_bdba_74b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddda_bdba_74b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ddda_bdba_74b8/request", "", "public", "Top Dataset, std, uwnd.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ddda_bdba_74b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ddda_bdba_74b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ddda_bdba_74b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ddda_bdba_74b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ddda_bdba_74b8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ddda_bdba_74b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3836_5638_b682", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3836_5638_b682.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3836_5638_b682/request", "", "public", "Top Dataset, std, uwnd.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3836_5638_b682_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3836_5638_b682_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3836_5638_b682/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3836_5638_b682.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3836_5638_b682&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3836_5638_b682"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe56_81ee_cd17", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe56_81ee_cd17.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fe56_81ee_cd17/request", "", "public", "Top Dataset, std, uwnd.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fe56_81ee_cd17_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fe56_81ee_cd17_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fe56_81ee_cd17/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fe56_81ee_cd17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fe56_81ee_cd17&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fe56_81ee_cd17"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0dfb_d810_4683", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0dfb_d810_4683.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0dfb_d810_4683/request", "", "public", "Top Dataset, std, uwnd.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0dfb_d810_4683_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0dfb_d810_4683_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0dfb_d810_4683/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0dfb_d810_4683.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0dfb_d810_4683&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0dfb_d810_4683"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc97_3924_eb7f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc97_3924_eb7f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bc97_3924_eb7f/request", "", "public", "Top Dataset, std, uwnd.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bc97_3924_eb7f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bc97_3924_eb7f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bc97_3924_eb7f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bc97_3924_eb7f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bc97_3924_eb7f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bc97_3924_eb7f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8d4_6604_3ee1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8d4_6604_3ee1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f8d4_6604_3ee1/request", "", "public", "Top Dataset, std, uwnd.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f8d4_6604_3ee1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f8d4_6604_3ee1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f8d4_6604_3ee1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f8d4_6604_3ee1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f8d4_6604_3ee1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f8d4_6604_3ee1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fff_0c7c_6601", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fff_0c7c_6601.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8fff_0c7c_6601/request", "", "public", "Top Dataset, std, uwnd.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8fff_0c7c_6601_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8fff_0c7c_6601_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8fff_0c7c_6601/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8fff_0c7c_6601.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8fff_0c7c_6601&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8fff_0c7c_6601"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c3e_81c8_aca4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c3e_81c8_aca4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6c3e_81c8_aca4/request", "", "public", "Top Dataset, std, uwnd.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6c3e_81c8_aca4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6c3e_81c8_aca4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6c3e_81c8_aca4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6c3e_81c8_aca4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6c3e_81c8_aca4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6c3e_81c8_aca4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8acb_d8c8_29fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8acb_d8c8_29fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8acb_d8c8_29fc/request", "", "public", "Top Dataset, std, uwnd.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8acb_d8c8_29fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8acb_d8c8_29fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8acb_d8c8_29fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8acb_d8c8_29fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8acb_d8c8_29fc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8acb_d8c8_29fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7e6_e738_82ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7e6_e738_82ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f7e6_e738_82ef/request", "", "public", "Top Dataset, std, uwnd.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f7e6_e738_82ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f7e6_e738_82ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f7e6_e738_82ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f7e6_e738_82ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f7e6_e738_82ef&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f7e6_e738_82ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2f6_9b60_7832", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2f6_9b60_7832.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a2f6_9b60_7832/request", "", "public", "Top Dataset, std, uwnd.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a2f6_9b60_7832_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a2f6_9b60_7832_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a2f6_9b60_7832/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a2f6_9b60_7832.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a2f6_9b60_7832&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a2f6_9b60_7832"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_caf9_eb44_a35d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_caf9_eb44_a35d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_caf9_eb44_a35d/request", "", "public", "Top Dataset, std, uwnd.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_caf9_eb44_a35d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_caf9_eb44_a35d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_caf9_eb44_a35d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_caf9_eb44_a35d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_caf9_eb44_a35d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_caf9_eb44_a35d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2d4_7fba_eec0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2d4_7fba_eec0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f2d4_7fba_eec0/request", "", "public", "Top Dataset, std, uwnd.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f2d4_7fba_eec0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f2d4_7fba_eec0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f2d4_7fba_eec0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f2d4_7fba_eec0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f2d4_7fba_eec0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f2d4_7fba_eec0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_233b_187c_804d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_233b_187c_804d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_233b_187c_804d/request", "", "public", "Top Dataset, std, uwnd.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_233b_187c_804d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_233b_187c_804d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_233b_187c_804d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_233b_187c_804d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_233b_187c_804d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_233b_187c_804d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_549a_d47f_fa1c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_549a_d47f_fa1c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_549a_d47f_fa1c/request", "", "public", "Top Dataset, std, uwnd.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_549a_d47f_fa1c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_549a_d47f_fa1c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_549a_d47f_fa1c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_549a_d47f_fa1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_549a_d47f_fa1c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_549a_d47f_fa1c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0207_2d8a_58ad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0207_2d8a_58ad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0207_2d8a_58ad/request", "", "public", "Top Dataset, std, uwnd.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0207_2d8a_58ad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0207_2d8a_58ad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0207_2d8a_58ad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0207_2d8a_58ad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0207_2d8a_58ad&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0207_2d8a_58ad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1216_4898_5d0e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1216_4898_5d0e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1216_4898_5d0e/request", "", "public", "Top Dataset, std, uwnd.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1216_4898_5d0e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1216_4898_5d0e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1216_4898_5d0e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1216_4898_5d0e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1216_4898_5d0e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1216_4898_5d0e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f26c_15a8_822c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f26c_15a8_822c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f26c_15a8_822c/request", "", "public", "Top Dataset, std, uwnd.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f26c_15a8_822c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f26c_15a8_822c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f26c_15a8_822c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f26c_15a8_822c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f26c_15a8_822c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f26c_15a8_822c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc93_0fd8_c82f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc93_0fd8_c82f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bc93_0fd8_c82f/request", "", "public", "Top Dataset, std, uwnd.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bc93_0fd8_c82f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bc93_0fd8_c82f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bc93_0fd8_c82f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bc93_0fd8_c82f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bc93_0fd8_c82f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bc93_0fd8_c82f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0dbc_138e_a3e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0dbc_138e_a3e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0dbc_138e_a3e6/request", "", "public", "Top Dataset, std, uwnd.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0dbc_138e_a3e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0dbc_138e_a3e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0dbc_138e_a3e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0dbc_138e_a3e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0dbc_138e_a3e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0dbc_138e_a3e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5661_9161_19c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5661_9161_19c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5661_9161_19c3/request", "", "public", "Top Dataset, std, uwnd.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5661_9161_19c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5661_9161_19c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5661_9161_19c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5661_9161_19c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5661_9161_19c3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5661_9161_19c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b4e6_433c_427b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b4e6_433c_427b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b4e6_433c_427b/request", "", "public", "Top Dataset, std, uwnd.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b4e6_433c_427b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b4e6_433c_427b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b4e6_433c_427b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b4e6_433c_427b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b4e6_433c_427b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b4e6_433c_427b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12fb_d3fa_275e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12fb_d3fa_275e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_12fb_d3fa_275e/request", "", "public", "Top Dataset, std, uwnd.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_12fb_d3fa_275e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_12fb_d3fa_275e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_12fb_d3fa_275e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_12fb_d3fa_275e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_12fb_d3fa_275e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_12fb_d3fa_275e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_149c_2e57_fae5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_149c_2e57_fae5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_149c_2e57_fae5/request", "", "public", "Top Dataset, std, uwnd.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_149c_2e57_fae5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_149c_2e57_fae5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_149c_2e57_fae5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_149c_2e57_fae5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_149c_2e57_fae5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_149c_2e57_fae5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7812_1b3e_c1bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7812_1b3e_c1bc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7812_1b3e_c1bc/request", "", "public", "Top Dataset, std, vairt.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7812_1b3e_c1bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7812_1b3e_c1bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7812_1b3e_c1bc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7812_1b3e_c1bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7812_1b3e_c1bc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7812_1b3e_c1bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e2e_e0df_f7ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e2e_e0df_f7ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e2e_e0df_f7ae/request", "", "public", "Top Dataset, std, vairt.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e2e_e0df_f7ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e2e_e0df_f7ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e2e_e0df_f7ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e2e_e0df_f7ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e2e_e0df_f7ae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0e2e_e0df_f7ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c50_c799_3276", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c50_c799_3276.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3c50_c799_3276/request", "", "public", "Top Dataset, std, vairt.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3c50_c799_3276_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3c50_c799_3276_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c50_c799_3276/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c50_c799_3276.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c50_c799_3276&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3c50_c799_3276"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57a4_3956_b61d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57a4_3956_b61d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_57a4_3956_b61d/request", "", "public", "Top Dataset, std, vairt.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_57a4_3956_b61d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_57a4_3956_b61d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_57a4_3956_b61d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_57a4_3956_b61d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_57a4_3956_b61d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_57a4_3956_b61d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_74fb_8048_5c54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_74fb_8048_5c54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_74fb_8048_5c54/request", "", "public", "Top Dataset, std, vairt.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_74fb_8048_5c54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_74fb_8048_5c54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_74fb_8048_5c54/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_74fb_8048_5c54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_74fb_8048_5c54&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_74fb_8048_5c54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78a7_5107_425f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78a7_5107_425f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_78a7_5107_425f/request", "", "public", "Top Dataset, std, vairt.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_78a7_5107_425f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_78a7_5107_425f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_78a7_5107_425f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_78a7_5107_425f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_78a7_5107_425f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_78a7_5107_425f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a16_b299_73b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a16_b299_73b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a16_b299_73b7/request", "", "public", "Top Dataset, std, vairt.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a16_b299_73b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a16_b299_73b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a16_b299_73b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a16_b299_73b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a16_b299_73b7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7a16_b299_73b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22e5_b754_f9c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22e5_b754_f9c9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_22e5_b754_f9c9/request", "", "public", "Top Dataset, std, vairt.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_22e5_b754_f9c9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_22e5_b754_f9c9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_22e5_b754_f9c9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_22e5_b754_f9c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_22e5_b754_f9c9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_22e5_b754_f9c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6417_f6a6_b3ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6417_f6a6_b3ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6417_f6a6_b3ab/request", "", "public", "Top Dataset, std, vairt.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6417_f6a6_b3ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6417_f6a6_b3ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6417_f6a6_b3ab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6417_f6a6_b3ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6417_f6a6_b3ab&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6417_f6a6_b3ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_579b_7041_6b52", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_579b_7041_6b52.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_579b_7041_6b52/request", "", "public", "Top Dataset, std, vairt.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_579b_7041_6b52_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_579b_7041_6b52_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_579b_7041_6b52/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_579b_7041_6b52.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_579b_7041_6b52&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_579b_7041_6b52"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e67_f6ad_4304", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e67_f6ad_4304.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e67_f6ad_4304/request", "", "public", "Top Dataset, std, vairt.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e67_f6ad_4304_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e67_f6ad_4304_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e67_f6ad_4304/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e67_f6ad_4304.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e67_f6ad_4304&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3e67_f6ad_4304"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab12_6d7c_2930", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab12_6d7c_2930.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab12_6d7c_2930/request", "", "public", "Top Dataset, std, vairt.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab12_6d7c_2930_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab12_6d7c_2930_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab12_6d7c_2930/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab12_6d7c_2930.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab12_6d7c_2930&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ab12_6d7c_2930"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_07c0_2a11_3200", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_07c0_2a11_3200.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_07c0_2a11_3200/request", "", "public", "Top Dataset, std, vairt.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_07c0_2a11_3200_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_07c0_2a11_3200_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_07c0_2a11_3200/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_07c0_2a11_3200.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_07c0_2a11_3200&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_07c0_2a11_3200"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c7e_5e0c_e375", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c7e_5e0c_e375.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2c7e_5e0c_e375/request", "", "public", "Top Dataset, std, vairt.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2c7e_5e0c_e375_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2c7e_5e0c_e375_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2c7e_5e0c_e375/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2c7e_5e0c_e375.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2c7e_5e0c_e375&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2c7e_5e0c_e375"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_84cf_c536_d3b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_84cf_c536_d3b1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_84cf_c536_d3b1/request", "", "public", "Top Dataset, std, vairt.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_84cf_c536_d3b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_84cf_c536_d3b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_84cf_c536_d3b1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_84cf_c536_d3b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_84cf_c536_d3b1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_84cf_c536_d3b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dcf3_7146_448e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dcf3_7146_448e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dcf3_7146_448e/request", "", "public", "Top Dataset, std, vairt.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dcf3_7146_448e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dcf3_7146_448e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dcf3_7146_448e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dcf3_7146_448e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dcf3_7146_448e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_dcf3_7146_448e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0e5_aa67_893f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0e5_aa67_893f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e0e5_aa67_893f/request", "", "public", "Top Dataset, std, vairt.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e0e5_aa67_893f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e0e5_aa67_893f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e0e5_aa67_893f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e0e5_aa67_893f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e0e5_aa67_893f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e0e5_aa67_893f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5c2_24c4_9569", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5c2_24c4_9569.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5c2_24c4_9569/request", "", "public", "Top Dataset, std, vairt.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5c2_24c4_9569_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5c2_24c4_9569_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5c2_24c4_9569/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5c2_24c4_9569.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5c2_24c4_9569&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e5c2_24c4_9569"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e1b2_d67f_62db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e1b2_d67f_62db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e1b2_d67f_62db/request", "", "public", "Top Dataset, std, vairt.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e1b2_d67f_62db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e1b2_d67f_62db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e1b2_d67f_62db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e1b2_d67f_62db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e1b2_d67f_62db&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e1b2_d67f_62db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18fb_23ff_955d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18fb_23ff_955d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_18fb_23ff_955d/request", "", "public", "Top Dataset, std, vairt.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_18fb_23ff_955d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_18fb_23ff_955d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_18fb_23ff_955d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_18fb_23ff_955d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_18fb_23ff_955d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_18fb_23ff_955d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7589_6b56_7c38", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7589_6b56_7c38.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7589_6b56_7c38/request", "", "public", "Top Dataset, std, vairt.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7589_6b56_7c38_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7589_6b56_7c38_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7589_6b56_7c38/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7589_6b56_7c38.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7589_6b56_7c38&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7589_6b56_7c38"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7304_821e_7206", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7304_821e_7206.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7304_821e_7206/request", "", "public", "Top Dataset, std, vairt.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7304_821e_7206_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7304_821e_7206_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7304_821e_7206/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7304_821e_7206.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7304_821e_7206&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7304_821e_7206"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f8b_dbbb_9160", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f8b_dbbb_9160.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f8b_dbbb_9160/request", "", "public", "Top Dataset, std, vairt.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f8b_dbbb_9160_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f8b_dbbb_9160_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f8b_dbbb_9160/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f8b_dbbb_9160.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f8b_dbbb_9160&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0f8b_dbbb_9160"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d70_03a6_7ce1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d70_03a6_7ce1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d70_03a6_7ce1/request", "", "public", "Top Dataset, std, vairt.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d70_03a6_7ce1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d70_03a6_7ce1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d70_03a6_7ce1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d70_03a6_7ce1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d70_03a6_7ce1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8d70_03a6_7ce1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_49fd_c4cc_53bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_49fd_c4cc_53bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_49fd_c4cc_53bb/request", "", "public", "Top Dataset, std, vairt.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_49fd_c4cc_53bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_49fd_c4cc_53bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_49fd_c4cc_53bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_49fd_c4cc_53bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_49fd_c4cc_53bb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_49fd_c4cc_53bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1574_7b03_4f39", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1574_7b03_4f39.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1574_7b03_4f39/request", "", "public", "Top Dataset, std, vairt.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1574_7b03_4f39_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1574_7b03_4f39_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1574_7b03_4f39/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1574_7b03_4f39.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1574_7b03_4f39&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1574_7b03_4f39"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b364_844f_fe95", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b364_844f_fe95.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b364_844f_fe95/request", "", "public", "Top Dataset, std, vairt.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b364_844f_fe95_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b364_844f_fe95_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b364_844f_fe95/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b364_844f_fe95.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b364_844f_fe95&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b364_844f_fe95"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8bc3_2a2d_b3ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8bc3_2a2d_b3ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8bc3_2a2d_b3ff/request", "", "public", "Top Dataset, std, vairt.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8bc3_2a2d_b3ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8bc3_2a2d_b3ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8bc3_2a2d_b3ff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8bc3_2a2d_b3ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8bc3_2a2d_b3ff&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8bc3_2a2d_b3ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_579d_ad3a_24a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_579d_ad3a_24a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_579d_ad3a_24a7/request", "", "public", "Top Dataset, std, vairt.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_579d_ad3a_24a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_579d_ad3a_24a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_579d_ad3a_24a7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_579d_ad3a_24a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_579d_ad3a_24a7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_579d_ad3a_24a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c799_be85_bafa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c799_be85_bafa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c799_be85_bafa/request", "", "public", "Top Dataset, std, vairt.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c799_be85_bafa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c799_be85_bafa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c799_be85_bafa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c799_be85_bafa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c799_be85_bafa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c799_be85_bafa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bbde_6ecf_0ce8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bbde_6ecf_0ce8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bbde_6ecf_0ce8/request", "", "public", "Top Dataset, std, vairt.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bbde_6ecf_0ce8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bbde_6ecf_0ce8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bbde_6ecf_0ce8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bbde_6ecf_0ce8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bbde_6ecf_0ce8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bbde_6ecf_0ce8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38ef_fb2d_9b50", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38ef_fb2d_9b50.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_38ef_fb2d_9b50/request", "", "public", "Top Dataset, std, vairt.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_38ef_fb2d_9b50_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_38ef_fb2d_9b50_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_38ef_fb2d_9b50/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_38ef_fb2d_9b50.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_38ef_fb2d_9b50&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_38ef_fb2d_9b50"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_509b_9c1b_4e58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_509b_9c1b_4e58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_509b_9c1b_4e58/request", "", "public", "Top Dataset, std, vairt.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_509b_9c1b_4e58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_509b_9c1b_4e58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_509b_9c1b_4e58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_509b_9c1b_4e58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_509b_9c1b_4e58&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_509b_9c1b_4e58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9f1_d38a_3d6c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9f1_d38a_3d6c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a9f1_d38a_3d6c/request", "", "public", "Top Dataset, std, vairt.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9f1_d38a_3d6c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9f1_d38a_3d6c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9f1_d38a_3d6c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9f1_d38a_3d6c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9f1_d38a_3d6c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a9f1_d38a_3d6c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e34_1a4b_692d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e34_1a4b_692d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6e34_1a4b_692d/request", "", "public", "Top Dataset, std, vairt.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6e34_1a4b_692d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6e34_1a4b_692d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6e34_1a4b_692d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6e34_1a4b_692d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6e34_1a4b_692d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6e34_1a4b_692d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9956_19af_bba1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9956_19af_bba1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9956_19af_bba1/request", "", "public", "Top Dataset, std, vairt.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9956_19af_bba1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9956_19af_bba1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9956_19af_bba1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9956_19af_bba1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9956_19af_bba1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9956_19af_bba1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7eec_3b4e_c61b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7eec_3b4e_c61b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7eec_3b4e_c61b/request", "", "public", "Top Dataset, std, vairt.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7eec_3b4e_c61b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7eec_3b4e_c61b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7eec_3b4e_c61b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7eec_3b4e_c61b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7eec_3b4e_c61b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7eec_3b4e_c61b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65b4_9bac_6e98", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65b4_9bac_6e98.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_65b4_9bac_6e98/request", "", "public", "Top Dataset, std, vairt.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_65b4_9bac_6e98_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_65b4_9bac_6e98_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_65b4_9bac_6e98/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_65b4_9bac_6e98.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_65b4_9bac_6e98&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_65b4_9bac_6e98"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9741_e82e_646e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9741_e82e_646e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9741_e82e_646e/request", "", "public", "Top Dataset, std, vairt.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9741_e82e_646e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9741_e82e_646e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9741_e82e_646e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9741_e82e_646e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9741_e82e_646e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9741_e82e_646e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bda9_5e5e_2905", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bda9_5e5e_2905.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bda9_5e5e_2905/request", "", "public", "Top Dataset, std, vairt.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bda9_5e5e_2905_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bda9_5e5e_2905_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bda9_5e5e_2905/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bda9_5e5e_2905.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bda9_5e5e_2905&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bda9_5e5e_2905"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_304a_c1b2_9a45", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_304a_c1b2_9a45.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_304a_c1b2_9a45/request", "", "public", "Top Dataset, std, vairt.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_304a_c1b2_9a45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_304a_c1b2_9a45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_304a_c1b2_9a45/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_304a_c1b2_9a45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_304a_c1b2_9a45&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_304a_c1b2_9a45"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a60c_d94f_f0d8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a60c_d94f_f0d8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a60c_d94f_f0d8/request", "", "public", "Top Dataset, std, vairt.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a60c_d94f_f0d8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a60c_d94f_f0d8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a60c_d94f_f0d8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a60c_d94f_f0d8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a60c_d94f_f0d8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a60c_d94f_f0d8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fe5_cb5e_cefb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fe5_cb5e_cefb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8fe5_cb5e_cefb/request", "", "public", "Top Dataset, std, vairt.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8fe5_cb5e_cefb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8fe5_cb5e_cefb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8fe5_cb5e_cefb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8fe5_cb5e_cefb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8fe5_cb5e_cefb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8fe5_cb5e_cefb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ef7_3122_0974", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ef7_3122_0974.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ef7_3122_0974/request", "", "public", "Top Dataset, std, vairt.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ef7_3122_0974_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ef7_3122_0974_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ef7_3122_0974/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ef7_3122_0974.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ef7_3122_0974&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3ef7_3122_0974"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6636_08a3_f07f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6636_08a3_f07f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6636_08a3_f07f/request", "", "public", "Top Dataset, std, vairt.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6636_08a3_f07f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6636_08a3_f07f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6636_08a3_f07f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6636_08a3_f07f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6636_08a3_f07f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6636_08a3_f07f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95e0_0e84_7ee2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95e0_0e84_7ee2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_95e0_0e84_7ee2/request", "", "public", "Top Dataset, std, vairt.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_95e0_0e84_7ee2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_95e0_0e84_7ee2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_95e0_0e84_7ee2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_95e0_0e84_7ee2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_95e0_0e84_7ee2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_95e0_0e84_7ee2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_178a_3abb_e53b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_178a_3abb_e53b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_178a_3abb_e53b/request", "", "public", "Top Dataset, std, vairt.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_178a_3abb_e53b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_178a_3abb_e53b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_178a_3abb_e53b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_178a_3abb_e53b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_178a_3abb_e53b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_178a_3abb_e53b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22d7_923b_d34b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22d7_923b_d34b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_22d7_923b_d34b/request", "", "public", "Top Dataset, std, vairt.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_22d7_923b_d34b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_22d7_923b_d34b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_22d7_923b_d34b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_22d7_923b_d34b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_22d7_923b_d34b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_22d7_923b_d34b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6e8_8678_6044", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6e8_8678_6044.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e6e8_8678_6044/request", "", "public", "Top Dataset, std, vairt.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e6e8_8678_6044_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e6e8_8678_6044_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e6e8_8678_6044/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e6e8_8678_6044.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e6e8_8678_6044&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e6e8_8678_6044"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_33f5_b2df_96d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_33f5_b2df_96d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_33f5_b2df_96d9/request", "", "public", "Top Dataset, std, vairt.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_33f5_b2df_96d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_33f5_b2df_96d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_33f5_b2df_96d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_33f5_b2df_96d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_33f5_b2df_96d9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_33f5_b2df_96d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73a1_bbdb_9036", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73a1_bbdb_9036.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_73a1_bbdb_9036/request", "", "public", "Top Dataset, std, vairt.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_73a1_bbdb_9036_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_73a1_bbdb_9036_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_73a1_bbdb_9036/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_73a1_bbdb_9036.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_73a1_bbdb_9036&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_73a1_bbdb_9036"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc12_0acf_1ebf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc12_0acf_1ebf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc12_0acf_1ebf/request", "", "public", "Top Dataset, std, vairt.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc12_0acf_1ebf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc12_0acf_1ebf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc12_0acf_1ebf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc12_0acf_1ebf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc12_0acf_1ebf&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fc12_0acf_1ebf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aecf_c967_053d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aecf_c967_053d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aecf_c967_053d/request", "", "public", "Top Dataset, std, vairt.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aecf_c967_053d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aecf_c967_053d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aecf_c967_053d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aecf_c967_053d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aecf_c967_053d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aecf_c967_053d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e388_91af_1c51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e388_91af_1c51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e388_91af_1c51/request", "", "public", "Top Dataset, std, vairt.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e388_91af_1c51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e388_91af_1c51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e388_91af_1c51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e388_91af_1c51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e388_91af_1c51&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e388_91af_1c51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb32_fdd1_622b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb32_fdd1_622b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eb32_fdd1_622b/request", "", "public", "Top Dataset, std, vairt.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eb32_fdd1_622b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eb32_fdd1_622b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb32_fdd1_622b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb32_fdd1_622b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb32_fdd1_622b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_eb32_fdd1_622b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_860c_5891_22fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_860c_5891_22fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_860c_5891_22fb/request", "", "public", "Top Dataset, std, vairt.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_860c_5891_22fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_860c_5891_22fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_860c_5891_22fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_860c_5891_22fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_860c_5891_22fb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_860c_5891_22fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0b1_4d80_03c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0b1_4d80_03c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a0b1_4d80_03c4/request", "", "public", "Top Dataset, std, vairt.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a0b1_4d80_03c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a0b1_4d80_03c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a0b1_4d80_03c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a0b1_4d80_03c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a0b1_4d80_03c4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a0b1_4d80_03c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10ce_a949_6283", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10ce_a949_6283.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_10ce_a949_6283/request", "", "public", "Top Dataset, std, vairt.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_10ce_a949_6283_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_10ce_a949_6283_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_10ce_a949_6283/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_10ce_a949_6283.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_10ce_a949_6283&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_10ce_a949_6283"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a96_ace7_4aaa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a96_ace7_4aaa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4a96_ace7_4aaa/request", "", "public", "Top Dataset, std, vairt.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4a96_ace7_4aaa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4a96_ace7_4aaa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4a96_ace7_4aaa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4a96_ace7_4aaa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4a96_ace7_4aaa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4a96_ace7_4aaa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a8c_7697_bb55", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a8c_7697_bb55.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9a8c_7697_bb55/request", "", "public", "Top Dataset, std, vairt.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9a8c_7697_bb55_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9a8c_7697_bb55_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9a8c_7697_bb55/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9a8c_7697_bb55.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9a8c_7697_bb55&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9a8c_7697_bb55"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0932_2803_c0f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0932_2803_c0f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0932_2803_c0f0/request", "", "public", "Top Dataset, std, vairt.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0932_2803_c0f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0932_2803_c0f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0932_2803_c0f0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0932_2803_c0f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0932_2803_c0f0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0932_2803_c0f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0da_1c65_92fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0da_1c65_92fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c0da_1c65_92fb/request", "", "public", "Top Dataset, std, vairt.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c0da_1c65_92fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c0da_1c65_92fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c0da_1c65_92fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c0da_1c65_92fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c0da_1c65_92fb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c0da_1c65_92fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef57_4f98_b008", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef57_4f98_b008.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ef57_4f98_b008/request", "", "public", "Top Dataset, std, vairt.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ef57_4f98_b008_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ef57_4f98_b008_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ef57_4f98_b008/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ef57_4f98_b008.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ef57_4f98_b008&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ef57_4f98_b008"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e365_9e68_168b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e365_9e68_168b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e365_9e68_168b/request", "", "public", "Top Dataset, std, vlflx.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e365_9e68_168b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e365_9e68_168b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e365_9e68_168b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e365_9e68_168b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e365_9e68_168b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e365_9e68_168b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ad3_5ba0_4850", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ad3_5ba0_4850.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2ad3_5ba0_4850/request", "", "public", "Top Dataset, std, vlflx.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2ad3_5ba0_4850_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2ad3_5ba0_4850_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2ad3_5ba0_4850/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2ad3_5ba0_4850.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2ad3_5ba0_4850&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2ad3_5ba0_4850"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45dc_94e2_211b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45dc_94e2_211b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_45dc_94e2_211b/request", "", "public", "Top Dataset, std, vlflx.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_45dc_94e2_211b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_45dc_94e2_211b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_45dc_94e2_211b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_45dc_94e2_211b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_45dc_94e2_211b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_45dc_94e2_211b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_beab_4c7e_6418", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_beab_4c7e_6418.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_beab_4c7e_6418/request", "", "public", "Top Dataset, std, vlflx.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_beab_4c7e_6418_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_beab_4c7e_6418_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_beab_4c7e_6418/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_beab_4c7e_6418.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_beab_4c7e_6418&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_beab_4c7e_6418"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7019_ccff_9cb5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7019_ccff_9cb5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7019_ccff_9cb5/request", "", "public", "Top Dataset, std, vlflx.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7019_ccff_9cb5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7019_ccff_9cb5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7019_ccff_9cb5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7019_ccff_9cb5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7019_ccff_9cb5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7019_ccff_9cb5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0ac_566e_f1fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0ac_566e_f1fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e0ac_566e_f1fc/request", "", "public", "Top Dataset, std, vlflx.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e0ac_566e_f1fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e0ac_566e_f1fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e0ac_566e_f1fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e0ac_566e_f1fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e0ac_566e_f1fc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e0ac_566e_f1fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80ae_350b_537a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80ae_350b_537a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_80ae_350b_537a/request", "", "public", "Top Dataset, std, vlflx.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_80ae_350b_537a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_80ae_350b_537a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_80ae_350b_537a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_80ae_350b_537a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_80ae_350b_537a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_80ae_350b_537a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2548_7088_2588", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2548_7088_2588.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2548_7088_2588/request", "", "public", "Top Dataset, std, vlflx.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2548_7088_2588_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2548_7088_2588_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2548_7088_2588/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2548_7088_2588.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2548_7088_2588&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2548_7088_2588"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c849_262f_a362", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c849_262f_a362.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c849_262f_a362/request", "", "public", "Top Dataset, std, vlflx.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c849_262f_a362_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c849_262f_a362_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c849_262f_a362/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c849_262f_a362.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c849_262f_a362&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c849_262f_a362"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9d9_7cf9_687f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9d9_7cf9_687f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b9d9_7cf9_687f/request", "", "public", "Top Dataset, std, vlflx.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b9d9_7cf9_687f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b9d9_7cf9_687f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b9d9_7cf9_687f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b9d9_7cf9_687f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b9d9_7cf9_687f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b9d9_7cf9_687f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3729_006e_c0e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3729_006e_c0e4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3729_006e_c0e4/request", "", "public", "Top Dataset, std, vlflx.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3729_006e_c0e4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3729_006e_c0e4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3729_006e_c0e4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3729_006e_c0e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3729_006e_c0e4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3729_006e_c0e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7bc6_87cd_1efa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7bc6_87cd_1efa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7bc6_87cd_1efa/request", "", "public", "Top Dataset, std, vlflx.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7bc6_87cd_1efa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7bc6_87cd_1efa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7bc6_87cd_1efa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7bc6_87cd_1efa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7bc6_87cd_1efa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7bc6_87cd_1efa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9d6_43fa_442c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9d6_43fa_442c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a9d6_43fa_442c/request", "", "public", "Top Dataset, std, vlflx.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9d6_43fa_442c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9d6_43fa_442c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9d6_43fa_442c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9d6_43fa_442c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9d6_43fa_442c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a9d6_43fa_442c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4207_c43f_2e98", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4207_c43f_2e98.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4207_c43f_2e98/request", "", "public", "Top Dataset, std, vlflx.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4207_c43f_2e98_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4207_c43f_2e98_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4207_c43f_2e98/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4207_c43f_2e98.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4207_c43f_2e98&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4207_c43f_2e98"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d1d_bf35_0386", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d1d_bf35_0386.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d1d_bf35_0386/request", "", "public", "Top Dataset, std, vlflx.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d1d_bf35_0386_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d1d_bf35_0386_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d1d_bf35_0386/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d1d_bf35_0386.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d1d_bf35_0386&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8d1d_bf35_0386"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_289c_1f54_ae41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_289c_1f54_ae41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_289c_1f54_ae41/request", "", "public", "Top Dataset, std, vlflx.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_289c_1f54_ae41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_289c_1f54_ae41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_289c_1f54_ae41/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_289c_1f54_ae41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_289c_1f54_ae41&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_289c_1f54_ae41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57a8_ff53_4235", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57a8_ff53_4235.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_57a8_ff53_4235/request", "", "public", "Top Dataset, std, vlflx.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_57a8_ff53_4235_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_57a8_ff53_4235_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_57a8_ff53_4235/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_57a8_ff53_4235.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_57a8_ff53_4235&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_57a8_ff53_4235"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9a7_199a_83ed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9a7_199a_83ed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c9a7_199a_83ed/request", "", "public", "Top Dataset, std, vlflx.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c9a7_199a_83ed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c9a7_199a_83ed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c9a7_199a_83ed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c9a7_199a_83ed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c9a7_199a_83ed&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c9a7_199a_83ed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea8d_8c6c_bef1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea8d_8c6c_bef1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ea8d_8c6c_bef1/request", "", "public", "Top Dataset, std, vlflx.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ea8d_8c6c_bef1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ea8d_8c6c_bef1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ea8d_8c6c_bef1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ea8d_8c6c_bef1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ea8d_8c6c_bef1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ea8d_8c6c_bef1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1503_5bc2_a505", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1503_5bc2_a505.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1503_5bc2_a505/request", "", "public", "Top Dataset, std, vlflx.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1503_5bc2_a505_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1503_5bc2_a505_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1503_5bc2_a505/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1503_5bc2_a505.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1503_5bc2_a505&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1503_5bc2_a505"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff8d_4f91_381f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff8d_4f91_381f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff8d_4f91_381f/request", "", "public", "Top Dataset, std, vlflx.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff8d_4f91_381f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff8d_4f91_381f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff8d_4f91_381f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff8d_4f91_381f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff8d_4f91_381f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ff8d_4f91_381f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e1d_f859_6503", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e1d_f859_6503.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e1d_f859_6503/request", "", "public", "Top Dataset, std, vlflx.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e1d_f859_6503_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e1d_f859_6503_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e1d_f859_6503/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e1d_f859_6503.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e1d_f859_6503&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0e1d_f859_6503"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_172f_ea24_6882", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_172f_ea24_6882.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_172f_ea24_6882/request", "", "public", "Top Dataset, std, vlflx.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_172f_ea24_6882_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_172f_ea24_6882_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_172f_ea24_6882/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_172f_ea24_6882.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_172f_ea24_6882&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_172f_ea24_6882"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bec_1e50_a0d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bec_1e50_a0d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9bec_1e50_a0d7/request", "", "public", "Top Dataset, std, vlflx.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9bec_1e50_a0d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9bec_1e50_a0d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9bec_1e50_a0d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9bec_1e50_a0d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9bec_1e50_a0d7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9bec_1e50_a0d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f629_8c10_bc2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f629_8c10_bc2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f629_8c10_bc2f/request", "", "public", "Top Dataset, std, vlflx.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f629_8c10_bc2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f629_8c10_bc2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f629_8c10_bc2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f629_8c10_bc2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f629_8c10_bc2f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f629_8c10_bc2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_089c_cf22_7649", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_089c_cf22_7649.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_089c_cf22_7649/request", "", "public", "Top Dataset, std, vlflx.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_089c_cf22_7649_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_089c_cf22_7649_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_089c_cf22_7649/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_089c_cf22_7649.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_089c_cf22_7649&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_089c_cf22_7649"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f089_1367_901f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f089_1367_901f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f089_1367_901f/request", "", "public", "Top Dataset, std, vlflx.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f089_1367_901f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f089_1367_901f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f089_1367_901f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f089_1367_901f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f089_1367_901f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f089_1367_901f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a0b_bd31_889f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a0b_bd31_889f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a0b_bd31_889f/request", "", "public", "Top Dataset, std, vlflx.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a0b_bd31_889f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a0b_bd31_889f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a0b_bd31_889f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a0b_bd31_889f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a0b_bd31_889f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3a0b_bd31_889f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_33b1_1d35_4800", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_33b1_1d35_4800.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_33b1_1d35_4800/request", "", "public", "Top Dataset, std, vlflx.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_33b1_1d35_4800_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_33b1_1d35_4800_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_33b1_1d35_4800/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_33b1_1d35_4800.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_33b1_1d35_4800&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_33b1_1d35_4800"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc2d_c69f_12e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc2d_c69f_12e8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc2d_c69f_12e8/request", "", "public", "Top Dataset, std, vlflx.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc2d_c69f_12e8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc2d_c69f_12e8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc2d_c69f_12e8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc2d_c69f_12e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc2d_c69f_12e8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fc2d_c69f_12e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c672_7844_1c40", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c672_7844_1c40.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c672_7844_1c40/request", "", "public", "Top Dataset, std, vlflx.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c672_7844_1c40_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c672_7844_1c40_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c672_7844_1c40/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c672_7844_1c40.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c672_7844_1c40&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c672_7844_1c40"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b31_83da_4a83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b31_83da_4a83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0b31_83da_4a83/request", "", "public", "Top Dataset, std, vlflx.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0b31_83da_4a83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0b31_83da_4a83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0b31_83da_4a83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0b31_83da_4a83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0b31_83da_4a83&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0b31_83da_4a83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e715_3112_ccff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e715_3112_ccff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e715_3112_ccff/request", "", "public", "Top Dataset, std, vlflx.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e715_3112_ccff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e715_3112_ccff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e715_3112_ccff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e715_3112_ccff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e715_3112_ccff&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e715_3112_ccff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06cb_babb_b771", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06cb_babb_b771.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_06cb_babb_b771/request", "", "public", "Top Dataset, std, vlflx.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_06cb_babb_b771_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_06cb_babb_b771_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_06cb_babb_b771/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_06cb_babb_b771.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_06cb_babb_b771&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_06cb_babb_b771"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2212_e6f9_c97b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2212_e6f9_c97b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2212_e6f9_c97b/request", "", "public", "Top Dataset, std, vlflx.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2212_e6f9_c97b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2212_e6f9_c97b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2212_e6f9_c97b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2212_e6f9_c97b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2212_e6f9_c97b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2212_e6f9_c97b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_552e_4e1a_d867", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_552e_4e1a_d867.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_552e_4e1a_d867/request", "", "public", "Top Dataset, std, vlflx.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_552e_4e1a_d867_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_552e_4e1a_d867_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_552e_4e1a_d867/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_552e_4e1a_d867.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_552e_4e1a_d867&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_552e_4e1a_d867"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_511f_4676_6538", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_511f_4676_6538.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_511f_4676_6538/request", "", "public", "Top Dataset, std, vlflx.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_511f_4676_6538_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_511f_4676_6538_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_511f_4676_6538/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_511f_4676_6538.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_511f_4676_6538&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_511f_4676_6538"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ee4_72cc_d694", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ee4_72cc_d694.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ee4_72cc_d694/request", "", "public", "Top Dataset, std, vlflx.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ee4_72cc_d694_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ee4_72cc_d694_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ee4_72cc_d694/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ee4_72cc_d694.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ee4_72cc_d694&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5ee4_72cc_d694"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8e8_49e7_6830", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8e8_49e7_6830.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b8e8_49e7_6830/request", "", "public", "Top Dataset, std, vlflx.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b8e8_49e7_6830_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b8e8_49e7_6830_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b8e8_49e7_6830/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b8e8_49e7_6830.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b8e8_49e7_6830&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b8e8_49e7_6830"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_340c_4f36_ae92", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_340c_4f36_ae92.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_340c_4f36_ae92/request", "", "public", "Top Dataset, std, vlflx.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_340c_4f36_ae92_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_340c_4f36_ae92_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_340c_4f36_ae92/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_340c_4f36_ae92.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_340c_4f36_ae92&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_340c_4f36_ae92"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d1a_6bd9_cb54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d1a_6bd9_cb54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d1a_6bd9_cb54/request", "", "public", "Top Dataset, std, vlflx.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d1a_6bd9_cb54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d1a_6bd9_cb54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d1a_6bd9_cb54/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d1a_6bd9_cb54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d1a_6bd9_cb54&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d1a_6bd9_cb54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b10c_255c_4d28", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b10c_255c_4d28.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b10c_255c_4d28/request", "", "public", "Top Dataset, std, vlflx.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b10c_255c_4d28_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b10c_255c_4d28_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b10c_255c_4d28/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b10c_255c_4d28.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b10c_255c_4d28&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b10c_255c_4d28"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6007_d25c_992e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6007_d25c_992e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6007_d25c_992e/request", "", "public", "Top Dataset, std, vlflx.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6007_d25c_992e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6007_d25c_992e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6007_d25c_992e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6007_d25c_992e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6007_d25c_992e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6007_d25c_992e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ae4_0bf0_cbe5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ae4_0bf0_cbe5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0ae4_0bf0_cbe5/request", "", "public", "Top Dataset, std, vlflx.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0ae4_0bf0_cbe5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0ae4_0bf0_cbe5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0ae4_0bf0_cbe5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0ae4_0bf0_cbe5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0ae4_0bf0_cbe5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0ae4_0bf0_cbe5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c510_a6a6_a637", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c510_a6a6_a637.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c510_a6a6_a637/request", "", "public", "Top Dataset, std, vlflx.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c510_a6a6_a637_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c510_a6a6_a637_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c510_a6a6_a637/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c510_a6a6_a637.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c510_a6a6_a637&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c510_a6a6_a637"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7808_e80a_e5d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7808_e80a_e5d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7808_e80a_e5d7/request", "", "public", "Top Dataset, std, vlflx.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7808_e80a_e5d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7808_e80a_e5d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7808_e80a_e5d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7808_e80a_e5d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7808_e80a_e5d7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7808_e80a_e5d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_31e2_2f6f_2808", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_31e2_2f6f_2808.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_31e2_2f6f_2808/request", "", "public", "Top Dataset, std, vlflx.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_31e2_2f6f_2808_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_31e2_2f6f_2808_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_31e2_2f6f_2808/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_31e2_2f6f_2808.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_31e2_2f6f_2808&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_31e2_2f6f_2808"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_76a5_1091_4f0d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_76a5_1091_4f0d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_76a5_1091_4f0d/request", "", "public", "Top Dataset, std, vlflx.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_76a5_1091_4f0d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_76a5_1091_4f0d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_76a5_1091_4f0d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_76a5_1091_4f0d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_76a5_1091_4f0d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_76a5_1091_4f0d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9da4_ebf4_9a15", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9da4_ebf4_9a15.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9da4_ebf4_9a15/request", "", "public", "Top Dataset, std, vlflx.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9da4_ebf4_9a15_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9da4_ebf4_9a15_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9da4_ebf4_9a15/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9da4_ebf4_9a15.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9da4_ebf4_9a15&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9da4_ebf4_9a15"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a7f_a2c9_91e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a7f_a2c9_91e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1a7f_a2c9_91e2/request", "", "public", "Top Dataset, std, vlflx.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1a7f_a2c9_91e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1a7f_a2c9_91e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1a7f_a2c9_91e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1a7f_a2c9_91e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1a7f_a2c9_91e2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1a7f_a2c9_91e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f35f_cb37_4dac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f35f_cb37_4dac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f35f_cb37_4dac/request", "", "public", "Top Dataset, std, vlflx.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f35f_cb37_4dac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f35f_cb37_4dac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f35f_cb37_4dac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f35f_cb37_4dac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f35f_cb37_4dac&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f35f_cb37_4dac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b78b_66aa_8cb2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b78b_66aa_8cb2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b78b_66aa_8cb2/request", "", "public", "Top Dataset, std, vlflx.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b78b_66aa_8cb2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b78b_66aa_8cb2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b78b_66aa_8cb2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b78b_66aa_8cb2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b78b_66aa_8cb2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b78b_66aa_8cb2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_220e_d9b9_7c4f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_220e_d9b9_7c4f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_220e_d9b9_7c4f/request", "", "public", "Top Dataset, std, vlflx.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_220e_d9b9_7c4f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_220e_d9b9_7c4f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_220e_d9b9_7c4f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_220e_d9b9_7c4f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_220e_d9b9_7c4f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_220e_d9b9_7c4f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbf1_63bc_3a24", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbf1_63bc_3a24.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dbf1_63bc_3a24/request", "", "public", "Top Dataset, std, vlflx.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dbf1_63bc_3a24_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dbf1_63bc_3a24_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dbf1_63bc_3a24/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dbf1_63bc_3a24.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dbf1_63bc_3a24&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dbf1_63bc_3a24"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a6e_63ee_5afb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a6e_63ee_5afb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a6e_63ee_5afb/request", "", "public", "Top Dataset, std, vlflx.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a6e_63ee_5afb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a6e_63ee_5afb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a6e_63ee_5afb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a6e_63ee_5afb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a6e_63ee_5afb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3a6e_63ee_5afb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c41_3f6e_5107", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c41_3f6e_5107.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3c41_3f6e_5107/request", "", "public", "Top Dataset, std, vlflx.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3c41_3f6e_5107_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3c41_3f6e_5107_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c41_3f6e_5107/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c41_3f6e_5107.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c41_3f6e_5107&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3c41_3f6e_5107"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_617e_7dbd_c765", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_617e_7dbd_c765.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_617e_7dbd_c765/request", "", "public", "Top Dataset, std, vlflx.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_617e_7dbd_c765_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_617e_7dbd_c765_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_617e_7dbd_c765/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_617e_7dbd_c765.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_617e_7dbd_c765&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_617e_7dbd_c765"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a76f_c999_a779", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a76f_c999_a779.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a76f_c999_a779/request", "", "public", "Top Dataset, std, vlflx.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a76f_c999_a779_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a76f_c999_a779_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a76f_c999_a779/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a76f_c999_a779.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a76f_c999_a779&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a76f_c999_a779"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c9d_7ef9_f9f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c9d_7ef9_f9f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7c9d_7ef9_f9f9/request", "", "public", "Top Dataset, std, vlflx.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7c9d_7ef9_f9f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7c9d_7ef9_f9f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7c9d_7ef9_f9f9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7c9d_7ef9_f9f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7c9d_7ef9_f9f9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7c9d_7ef9_f9f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b480_76cf_e2e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b480_76cf_e2e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b480_76cf_e2e2/request", "", "public", "Top Dataset, std, vlflx.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b480_76cf_e2e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b480_76cf_e2e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b480_76cf_e2e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b480_76cf_e2e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b480_76cf_e2e2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b480_76cf_e2e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdbc_6c15_c8c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdbc_6c15_c8c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bdbc_6c15_c8c1/request", "", "public", "Top Dataset, std, vlflx.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bdbc_6c15_c8c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bdbc_6c15_c8c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bdbc_6c15_c8c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bdbc_6c15_c8c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bdbc_6c15_c8c1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bdbc_6c15_c8c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_029d_579d_8940", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_029d_579d_8940.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_029d_579d_8940/request", "", "public", "Top Dataset, std, vlflx.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_029d_579d_8940_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_029d_579d_8940_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_029d_579d_8940/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_029d_579d_8940.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_029d_579d_8940&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_029d_579d_8940"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b65_a665_e5a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b65_a665_e5a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9b65_a665_e5a0/request", "", "public", "Top Dataset, std, vlflx.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9b65_a665_e5a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9b65_a665_e5a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9b65_a665_e5a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9b65_a665_e5a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9b65_a665_e5a0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9b65_a665_e5a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5383_d3a1_7cd0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5383_d3a1_7cd0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5383_d3a1_7cd0/request", "", "public", "Top Dataset, std, vpstr.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5383_d3a1_7cd0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5383_d3a1_7cd0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5383_d3a1_7cd0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5383_d3a1_7cd0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5383_d3a1_7cd0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5383_d3a1_7cd0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5863_b4a9_9846", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5863_b4a9_9846.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5863_b4a9_9846/request", "", "public", "Top Dataset, std, vpstr.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5863_b4a9_9846_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5863_b4a9_9846_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5863_b4a9_9846/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5863_b4a9_9846.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5863_b4a9_9846&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5863_b4a9_9846"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1bf_221e_267a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1bf_221e_267a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d1bf_221e_267a/request", "", "public", "Top Dataset, std, vpstr.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d1bf_221e_267a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d1bf_221e_267a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d1bf_221e_267a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d1bf_221e_267a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d1bf_221e_267a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d1bf_221e_267a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_366a_747c_51fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_366a_747c_51fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_366a_747c_51fa/request", "", "public", "Top Dataset, std, vpstr.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_366a_747c_51fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_366a_747c_51fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_366a_747c_51fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_366a_747c_51fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_366a_747c_51fa&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_366a_747c_51fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80e5_bc2e_3b36", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80e5_bc2e_3b36.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_80e5_bc2e_3b36/request", "", "public", "Top Dataset, std, vpstr.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_80e5_bc2e_3b36_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_80e5_bc2e_3b36_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_80e5_bc2e_3b36/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_80e5_bc2e_3b36.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_80e5_bc2e_3b36&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_80e5_bc2e_3b36"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86e4_8ff4_0f49", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86e4_8ff4_0f49.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_86e4_8ff4_0f49/request", "", "public", "Top Dataset, std, vpstr.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86e4_8ff4_0f49_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86e4_8ff4_0f49_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86e4_8ff4_0f49/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86e4_8ff4_0f49.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86e4_8ff4_0f49&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_86e4_8ff4_0f49"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5a1_bcd2_a66d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5a1_bcd2_a66d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5a1_bcd2_a66d/request", "", "public", "Top Dataset, std, vpstr.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5a1_bcd2_a66d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5a1_bcd2_a66d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5a1_bcd2_a66d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5a1_bcd2_a66d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5a1_bcd2_a66d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b5a1_bcd2_a66d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3fd7_c2ed_9f51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3fd7_c2ed_9f51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3fd7_c2ed_9f51/request", "", "public", "Top Dataset, std, vpstr.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3fd7_c2ed_9f51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3fd7_c2ed_9f51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3fd7_c2ed_9f51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3fd7_c2ed_9f51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3fd7_c2ed_9f51&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3fd7_c2ed_9f51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99dd_5688_a2a4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99dd_5688_a2a4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99dd_5688_a2a4/request", "", "public", "Top Dataset, std, vpstr.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99dd_5688_a2a4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99dd_5688_a2a4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99dd_5688_a2a4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99dd_5688_a2a4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99dd_5688_a2a4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_99dd_5688_a2a4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f30_4ecd_0cc0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f30_4ecd_0cc0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3f30_4ecd_0cc0/request", "", "public", "Top Dataset, std, vpstr.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3f30_4ecd_0cc0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3f30_4ecd_0cc0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3f30_4ecd_0cc0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3f30_4ecd_0cc0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3f30_4ecd_0cc0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3f30_4ecd_0cc0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7545_c049_3f77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7545_c049_3f77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7545_c049_3f77/request", "", "public", "Top Dataset, std, vpstr.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7545_c049_3f77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7545_c049_3f77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7545_c049_3f77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7545_c049_3f77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7545_c049_3f77&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7545_c049_3f77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c388_d288_818d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c388_d288_818d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c388_d288_818d/request", "", "public", "Top Dataset, std, vpstr.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c388_d288_818d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c388_d288_818d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c388_d288_818d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c388_d288_818d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c388_d288_818d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c388_d288_818d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9d9_f3c4_3106", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9d9_f3c4_3106.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f9d9_f3c4_3106/request", "", "public", "Top Dataset, std, vpstr.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f9d9_f3c4_3106_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f9d9_f3c4_3106_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f9d9_f3c4_3106/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f9d9_f3c4_3106.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f9d9_f3c4_3106&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f9d9_f3c4_3106"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c31_d38d_3038", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c31_d38d_3038.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1c31_d38d_3038/request", "", "public", "Top Dataset, std, vpstr.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1c31_d38d_3038_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1c31_d38d_3038_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1c31_d38d_3038/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1c31_d38d_3038.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1c31_d38d_3038&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1c31_d38d_3038"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53b3_a4f9_0809", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53b3_a4f9_0809.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_53b3_a4f9_0809/request", "", "public", "Top Dataset, std, vpstr.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_53b3_a4f9_0809_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_53b3_a4f9_0809_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_53b3_a4f9_0809/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_53b3_a4f9_0809.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_53b3_a4f9_0809&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_53b3_a4f9_0809"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3134_1ff0_dde1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3134_1ff0_dde1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3134_1ff0_dde1/request", "", "public", "Top Dataset, std, vpstr.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3134_1ff0_dde1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3134_1ff0_dde1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3134_1ff0_dde1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3134_1ff0_dde1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3134_1ff0_dde1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3134_1ff0_dde1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_676e_a02f_2840", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_676e_a02f_2840.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_676e_a02f_2840/request", "", "public", "Top Dataset, std, vpstr.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_676e_a02f_2840_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_676e_a02f_2840_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_676e_a02f_2840/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_676e_a02f_2840.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_676e_a02f_2840&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_676e_a02f_2840"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb6c_c15e_e9d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb6c_c15e_e9d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bb6c_c15e_e9d7/request", "", "public", "Top Dataset, std, vpstr.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bb6c_c15e_e9d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bb6c_c15e_e9d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bb6c_c15e_e9d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bb6c_c15e_e9d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bb6c_c15e_e9d7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bb6c_c15e_e9d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a606_3b8b_ba2c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a606_3b8b_ba2c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a606_3b8b_ba2c/request", "", "public", "Top Dataset, std, vpstr.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a606_3b8b_ba2c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a606_3b8b_ba2c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a606_3b8b_ba2c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a606_3b8b_ba2c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a606_3b8b_ba2c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a606_3b8b_ba2c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2931_db9d_7b2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2931_db9d_7b2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2931_db9d_7b2d/request", "", "public", "Top Dataset, std, vpstr.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2931_db9d_7b2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2931_db9d_7b2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2931_db9d_7b2d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2931_db9d_7b2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2931_db9d_7b2d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2931_db9d_7b2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e69_d98b_db41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e69_d98b_db41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5e69_d98b_db41/request", "", "public", "Top Dataset, std, vpstr.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5e69_d98b_db41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5e69_d98b_db41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5e69_d98b_db41/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5e69_d98b_db41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5e69_d98b_db41&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5e69_d98b_db41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3409_22a8_7262", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3409_22a8_7262.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3409_22a8_7262/request", "", "public", "Top Dataset, std, vpstr.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3409_22a8_7262_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3409_22a8_7262_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3409_22a8_7262/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3409_22a8_7262.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3409_22a8_7262&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3409_22a8_7262"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0582_2bf8_206c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0582_2bf8_206c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0582_2bf8_206c/request", "", "public", "Top Dataset, std, vpstr.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0582_2bf8_206c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0582_2bf8_206c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0582_2bf8_206c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0582_2bf8_206c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0582_2bf8_206c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0582_2bf8_206c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_31d7_ad43_f8f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_31d7_ad43_f8f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_31d7_ad43_f8f6/request", "", "public", "Top Dataset, std, vpstr.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_31d7_ad43_f8f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_31d7_ad43_f8f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_31d7_ad43_f8f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_31d7_ad43_f8f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_31d7_ad43_f8f6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_31d7_ad43_f8f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_009a_2346_cc49", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_009a_2346_cc49.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_009a_2346_cc49/request", "", "public", "Top Dataset, std, vpstr.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_009a_2346_cc49_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_009a_2346_cc49_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_009a_2346_cc49/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_009a_2346_cc49.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_009a_2346_cc49&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_009a_2346_cc49"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_554c_f151_a0da", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_554c_f151_a0da.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_554c_f151_a0da/request", "", "public", "Top Dataset, std, vpstr.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_554c_f151_a0da_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_554c_f151_a0da_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_554c_f151_a0da/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_554c_f151_a0da.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_554c_f151_a0da&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_554c_f151_a0da"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6df_f758_0d79", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6df_f758_0d79.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d6df_f758_0d79/request", "", "public", "Top Dataset, std, vpstr.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d6df_f758_0d79_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d6df_f758_0d79_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d6df_f758_0d79/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d6df_f758_0d79.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d6df_f758_0d79&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d6df_f758_0d79"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03e0_6176_fcaf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03e0_6176_fcaf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03e0_6176_fcaf/request", "", "public", "Top Dataset, std, vpstr.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03e0_6176_fcaf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03e0_6176_fcaf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03e0_6176_fcaf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03e0_6176_fcaf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03e0_6176_fcaf&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_03e0_6176_fcaf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3970_13b6_f8db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3970_13b6_f8db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3970_13b6_f8db/request", "", "public", "Top Dataset, std, vpstr.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3970_13b6_f8db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3970_13b6_f8db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3970_13b6_f8db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3970_13b6_f8db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3970_13b6_f8db&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3970_13b6_f8db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1d5_c244_ed95", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1d5_c244_ed95.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d1d5_c244_ed95/request", "", "public", "Top Dataset, std, vpstr.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d1d5_c244_ed95_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d1d5_c244_ed95_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d1d5_c244_ed95/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d1d5_c244_ed95.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d1d5_c244_ed95&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d1d5_c244_ed95"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3c4_17f1_8b3b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3c4_17f1_8b3b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c3c4_17f1_8b3b/request", "", "public", "Top Dataset, std, vpstr.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c3c4_17f1_8b3b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c3c4_17f1_8b3b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c3c4_17f1_8b3b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c3c4_17f1_8b3b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c3c4_17f1_8b3b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c3c4_17f1_8b3b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_390d_4b46_c652", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_390d_4b46_c652.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_390d_4b46_c652/request", "", "public", "Top Dataset, std, vpstr.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_390d_4b46_c652_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_390d_4b46_c652_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_390d_4b46_c652/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_390d_4b46_c652.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_390d_4b46_c652&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_390d_4b46_c652"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8dc_a6d1_6fe1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8dc_a6d1_6fe1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a8dc_a6d1_6fe1/request", "", "public", "Top Dataset, std, vpstr.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a8dc_a6d1_6fe1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a8dc_a6d1_6fe1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a8dc_a6d1_6fe1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a8dc_a6d1_6fe1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a8dc_a6d1_6fe1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a8dc_a6d1_6fe1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c20_aa74_bbea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c20_aa74_bbea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6c20_aa74_bbea/request", "", "public", "Top Dataset, std, vpstr.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6c20_aa74_bbea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6c20_aa74_bbea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6c20_aa74_bbea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6c20_aa74_bbea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6c20_aa74_bbea&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6c20_aa74_bbea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e90_36b7_63ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e90_36b7_63ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1e90_36b7_63ab/request", "", "public", "Top Dataset, std, vpstr.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1e90_36b7_63ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1e90_36b7_63ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1e90_36b7_63ab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1e90_36b7_63ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1e90_36b7_63ab&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1e90_36b7_63ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4352_40a5_22ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4352_40a5_22ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4352_40a5_22ab/request", "", "public", "Top Dataset, std, vpstr.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4352_40a5_22ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4352_40a5_22ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4352_40a5_22ab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4352_40a5_22ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4352_40a5_22ab&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4352_40a5_22ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a409_f621_94a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a409_f621_94a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a409_f621_94a2/request", "", "public", "Top Dataset, std, vpstr.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a409_f621_94a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a409_f621_94a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a409_f621_94a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a409_f621_94a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a409_f621_94a2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a409_f621_94a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41ce_a428_84a9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41ce_a428_84a9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_41ce_a428_84a9/request", "", "public", "Top Dataset, std, vpstr.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_41ce_a428_84a9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_41ce_a428_84a9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_41ce_a428_84a9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_41ce_a428_84a9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_41ce_a428_84a9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_41ce_a428_84a9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3b0_3616_ce43", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3b0_3616_ce43.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f3b0_3616_ce43/request", "", "public", "Top Dataset, std, vpstr.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f3b0_3616_ce43_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f3b0_3616_ce43_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f3b0_3616_ce43/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f3b0_3616_ce43.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f3b0_3616_ce43&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f3b0_3616_ce43"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65dd_c5f1_acaf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65dd_c5f1_acaf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_65dd_c5f1_acaf/request", "", "public", "Top Dataset, std, vpstr.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_65dd_c5f1_acaf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_65dd_c5f1_acaf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_65dd_c5f1_acaf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_65dd_c5f1_acaf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_65dd_c5f1_acaf&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_65dd_c5f1_acaf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bed_8ac8_cf19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bed_8ac8_cf19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2bed_8ac8_cf19/request", "", "public", "Top Dataset, std, vpstr.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2bed_8ac8_cf19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2bed_8ac8_cf19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2bed_8ac8_cf19/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2bed_8ac8_cf19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2bed_8ac8_cf19&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2bed_8ac8_cf19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4cc0_1f3e_4638", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4cc0_1f3e_4638.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4cc0_1f3e_4638/request", "", "public", "Top Dataset, std, vpstr.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4cc0_1f3e_4638_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4cc0_1f3e_4638_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4cc0_1f3e_4638/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4cc0_1f3e_4638.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4cc0_1f3e_4638&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4cc0_1f3e_4638"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d12a_4257_55db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d12a_4257_55db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d12a_4257_55db/request", "", "public", "Top Dataset, std, vpstr.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d12a_4257_55db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d12a_4257_55db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d12a_4257_55db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d12a_4257_55db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d12a_4257_55db&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d12a_4257_55db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_286e_5819_5475", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_286e_5819_5475.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_286e_5819_5475/request", "", "public", "Top Dataset, std, vpstr.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_286e_5819_5475_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_286e_5819_5475_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_286e_5819_5475/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_286e_5819_5475.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_286e_5819_5475&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_286e_5819_5475"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2919_dc19_42ad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2919_dc19_42ad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2919_dc19_42ad/request", "", "public", "Top Dataset, std, vpstr.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2919_dc19_42ad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2919_dc19_42ad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2919_dc19_42ad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2919_dc19_42ad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2919_dc19_42ad&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2919_dc19_42ad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b06_31d9_92ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b06_31d9_92ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b06_31d9_92ac/request", "", "public", "Top Dataset, std, vpstr.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b06_31d9_92ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b06_31d9_92ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b06_31d9_92ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b06_31d9_92ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b06_31d9_92ac&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6b06_31d9_92ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85b9_e3b0_ea73", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85b9_e3b0_ea73.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_85b9_e3b0_ea73/request", "", "public", "Top Dataset, std, vpstr.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_85b9_e3b0_ea73_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_85b9_e3b0_ea73_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85b9_e3b0_ea73/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85b9_e3b0_ea73.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85b9_e3b0_ea73&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_85b9_e3b0_ea73"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7fe_a86d_f15b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7fe_a86d_f15b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f7fe_a86d_f15b/request", "", "public", "Top Dataset, std, vpstr.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f7fe_a86d_f15b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f7fe_a86d_f15b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f7fe_a86d_f15b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f7fe_a86d_f15b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f7fe_a86d_f15b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f7fe_a86d_f15b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3156_60dd_ef8f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3156_60dd_ef8f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3156_60dd_ef8f/request", "", "public", "Top Dataset, std, vpstr.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3156_60dd_ef8f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3156_60dd_ef8f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3156_60dd_ef8f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3156_60dd_ef8f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3156_60dd_ef8f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3156_60dd_ef8f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06b4_d8b1_d89f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06b4_d8b1_d89f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_06b4_d8b1_d89f/request", "", "public", "Top Dataset, std, vpstr.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_06b4_d8b1_d89f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_06b4_d8b1_d89f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_06b4_d8b1_d89f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_06b4_d8b1_d89f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_06b4_d8b1_d89f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_06b4_d8b1_d89f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ae6_e3a9_b188", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ae6_e3a9_b188.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6ae6_e3a9_b188/request", "", "public", "Top Dataset, std, vpstr.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6ae6_e3a9_b188_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6ae6_e3a9_b188_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ae6_e3a9_b188/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ae6_e3a9_b188.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ae6_e3a9_b188&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6ae6_e3a9_b188"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d252_0a89_fce4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d252_0a89_fce4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d252_0a89_fce4/request", "", "public", "Top Dataset, std, vpstr.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d252_0a89_fce4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d252_0a89_fce4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d252_0a89_fce4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d252_0a89_fce4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d252_0a89_fce4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d252_0a89_fce4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01d0_e08c_8fc9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01d0_e08c_8fc9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_01d0_e08c_8fc9/request", "", "public", "Top Dataset, std, vpstr.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_01d0_e08c_8fc9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_01d0_e08c_8fc9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_01d0_e08c_8fc9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_01d0_e08c_8fc9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_01d0_e08c_8fc9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_01d0_e08c_8fc9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddeb_d949_c645", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddeb_d949_c645.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ddeb_d949_c645/request", "", "public", "Top Dataset, std, vpstr.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ddeb_d949_c645_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ddeb_d949_c645_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ddeb_d949_c645/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ddeb_d949_c645.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ddeb_d949_c645&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ddeb_d949_c645"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3830_9be7_a1fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3830_9be7_a1fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3830_9be7_a1fa/request", "", "public", "Top Dataset, std, vpstr.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3830_9be7_a1fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3830_9be7_a1fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3830_9be7_a1fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3830_9be7_a1fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3830_9be7_a1fa&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3830_9be7_a1fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_973f_6eba_fb54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_973f_6eba_fb54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_973f_6eba_fb54/request", "", "public", "Top Dataset, std, vpstr.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_973f_6eba_fb54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_973f_6eba_fb54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_973f_6eba_fb54/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_973f_6eba_fb54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_973f_6eba_fb54&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_973f_6eba_fb54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a985_9f23_4c82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a985_9f23_4c82.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a985_9f23_4c82/request", "", "public", "Top Dataset, std, vpstr.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a985_9f23_4c82_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a985_9f23_4c82_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a985_9f23_4c82/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a985_9f23_4c82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a985_9f23_4c82&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a985_9f23_4c82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab1a_947b_1643", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab1a_947b_1643.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab1a_947b_1643/request", "", "public", "Top Dataset, std, vpstr.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab1a_947b_1643_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab1a_947b_1643_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab1a_947b_1643/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab1a_947b_1643.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab1a_947b_1643&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ab1a_947b_1643"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34af_bf28_391f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34af_bf28_391f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_34af_bf28_391f/request", "", "public", "Top Dataset, std, vpstr.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_34af_bf28_391f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_34af_bf28_391f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_34af_bf28_391f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_34af_bf28_391f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_34af_bf28_391f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_34af_bf28_391f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_47c6_585d_f86b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_47c6_585d_f86b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_47c6_585d_f86b/request", "", "public", "Top Dataset, std, vpstr.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_47c6_585d_f86b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_47c6_585d_f86b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_47c6_585d_f86b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_47c6_585d_f86b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_47c6_585d_f86b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_47c6_585d_f86b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_baba_7f66_06cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_baba_7f66_06cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_baba_7f66_06cd/request", "", "public", "Top Dataset, std, vpstr.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_baba_7f66_06cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_baba_7f66_06cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_baba_7f66_06cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_baba_7f66_06cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_baba_7f66_06cd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_baba_7f66_06cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_befb_7c19_49ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_befb_7c19_49ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_befb_7c19_49ea/request", "", "public", "Top Dataset, std, vpstr.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_befb_7c19_49ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_befb_7c19_49ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_befb_7c19_49ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_befb_7c19_49ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_befb_7c19_49ea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_befb_7c19_49ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb27_e645_bf28", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb27_e645_bf28.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb27_e645_bf28/request", "", "public", "Top Dataset, std, vpstr.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb27_e645_bf28_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb27_e645_bf28_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb27_e645_bf28/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb27_e645_bf28.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb27_e645_bf28&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fb27_e645_bf28"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fcd4_31c6_de88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fcd4_31c6_de88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fcd4_31c6_de88/request", "", "public", "Top Dataset, std, vspeh.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fcd4_31c6_de88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fcd4_31c6_de88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fcd4_31c6_de88/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fcd4_31c6_de88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fcd4_31c6_de88&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fcd4_31c6_de88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4191_d52f_092f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4191_d52f_092f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4191_d52f_092f/request", "", "public", "Top Dataset, std, vspeh.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4191_d52f_092f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4191_d52f_092f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4191_d52f_092f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4191_d52f_092f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4191_d52f_092f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4191_d52f_092f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6673_ac7e_4549", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6673_ac7e_4549.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6673_ac7e_4549/request", "", "public", "Top Dataset, std, vspeh.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6673_ac7e_4549_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6673_ac7e_4549_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6673_ac7e_4549/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6673_ac7e_4549.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6673_ac7e_4549&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6673_ac7e_4549"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cca3_e4b8_37f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cca3_e4b8_37f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cca3_e4b8_37f2/request", "", "public", "Top Dataset, std, vspeh.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cca3_e4b8_37f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cca3_e4b8_37f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cca3_e4b8_37f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cca3_e4b8_37f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cca3_e4b8_37f2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cca3_e4b8_37f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_880c_2a8c_07dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_880c_2a8c_07dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_880c_2a8c_07dd/request", "", "public", "Top Dataset, std, vspeh.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_880c_2a8c_07dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_880c_2a8c_07dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_880c_2a8c_07dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_880c_2a8c_07dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_880c_2a8c_07dd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_880c_2a8c_07dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5a9_3810_b5fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5a9_3810_b5fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5a9_3810_b5fd/request", "", "public", "Top Dataset, std, vspeh.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5a9_3810_b5fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5a9_3810_b5fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5a9_3810_b5fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5a9_3810_b5fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5a9_3810_b5fd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e5a9_3810_b5fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef6f_586b_1d3d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef6f_586b_1d3d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ef6f_586b_1d3d/request", "", "public", "Top Dataset, std, vspeh.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ef6f_586b_1d3d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ef6f_586b_1d3d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ef6f_586b_1d3d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ef6f_586b_1d3d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ef6f_586b_1d3d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ef6f_586b_1d3d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_286e_3cd1_8a83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_286e_3cd1_8a83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_286e_3cd1_8a83/request", "", "public", "Top Dataset, std, vspeh.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_286e_3cd1_8a83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_286e_3cd1_8a83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_286e_3cd1_8a83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_286e_3cd1_8a83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_286e_3cd1_8a83&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_286e_3cd1_8a83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e4f_0028_9d2e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e4f_0028_9d2e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e4f_0028_9d2e/request", "", "public", "Top Dataset, std, vspeh.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e4f_0028_9d2e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e4f_0028_9d2e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e4f_0028_9d2e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e4f_0028_9d2e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e4f_0028_9d2e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9e4f_0028_9d2e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4bf3_51d6_16e9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4bf3_51d6_16e9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4bf3_51d6_16e9/request", "", "public", "Top Dataset, std, vspeh.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4bf3_51d6_16e9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4bf3_51d6_16e9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4bf3_51d6_16e9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4bf3_51d6_16e9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4bf3_51d6_16e9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4bf3_51d6_16e9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c94f_6f04_3bdf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c94f_6f04_3bdf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c94f_6f04_3bdf/request", "", "public", "Top Dataset, std, vspeh.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c94f_6f04_3bdf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c94f_6f04_3bdf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c94f_6f04_3bdf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c94f_6f04_3bdf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c94f_6f04_3bdf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c94f_6f04_3bdf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2cd_e464_930f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2cd_e464_930f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d2cd_e464_930f/request", "", "public", "Top Dataset, std, vspeh.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d2cd_e464_930f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d2cd_e464_930f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d2cd_e464_930f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d2cd_e464_930f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d2cd_e464_930f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d2cd_e464_930f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28d9_a3b2_40c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28d9_a3b2_40c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28d9_a3b2_40c3/request", "", "public", "Top Dataset, std, vspeh.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28d9_a3b2_40c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28d9_a3b2_40c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28d9_a3b2_40c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28d9_a3b2_40c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28d9_a3b2_40c3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_28d9_a3b2_40c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0afc_45b3_3d6c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0afc_45b3_3d6c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0afc_45b3_3d6c/request", "", "public", "Top Dataset, std, vspeh.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0afc_45b3_3d6c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0afc_45b3_3d6c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0afc_45b3_3d6c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0afc_45b3_3d6c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0afc_45b3_3d6c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0afc_45b3_3d6c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5cf4_a56d_9e88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5cf4_a56d_9e88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5cf4_a56d_9e88/request", "", "public", "Top Dataset, std, vspeh.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5cf4_a56d_9e88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5cf4_a56d_9e88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5cf4_a56d_9e88/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5cf4_a56d_9e88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5cf4_a56d_9e88&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5cf4_a56d_9e88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc21_9882_6b24", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc21_9882_6b24.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bc21_9882_6b24/request", "", "public", "Top Dataset, std, vspeh.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bc21_9882_6b24_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bc21_9882_6b24_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bc21_9882_6b24/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bc21_9882_6b24.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bc21_9882_6b24&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bc21_9882_6b24"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58f5_c766_b94c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58f5_c766_b94c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_58f5_c766_b94c/request", "", "public", "Top Dataset, std, vspeh.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_58f5_c766_b94c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_58f5_c766_b94c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_58f5_c766_b94c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_58f5_c766_b94c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_58f5_c766_b94c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_58f5_c766_b94c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d47_5d84_0b21", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d47_5d84_0b21.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d47_5d84_0b21/request", "", "public", "Top Dataset, std, vspeh.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d47_5d84_0b21_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d47_5d84_0b21_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d47_5d84_0b21/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d47_5d84_0b21.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d47_5d84_0b21&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8d47_5d84_0b21"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ace4_f24e_9d0e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ace4_f24e_9d0e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ace4_f24e_9d0e/request", "", "public", "Top Dataset, std, vspeh.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ace4_f24e_9d0e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ace4_f24e_9d0e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ace4_f24e_9d0e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ace4_f24e_9d0e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ace4_f24e_9d0e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ace4_f24e_9d0e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1068_35b9_26d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1068_35b9_26d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1068_35b9_26d9/request", "", "public", "Top Dataset, std, vspeh.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1068_35b9_26d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1068_35b9_26d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1068_35b9_26d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1068_35b9_26d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1068_35b9_26d9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1068_35b9_26d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de37_47b4_4787", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de37_47b4_4787.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_de37_47b4_4787/request", "", "public", "Top Dataset, std, vspeh.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_de37_47b4_4787_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_de37_47b4_4787_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_de37_47b4_4787/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_de37_47b4_4787.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_de37_47b4_4787&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_de37_47b4_4787"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a993_4647_5c7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a993_4647_5c7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a993_4647_5c7b/request", "", "public", "Top Dataset, std, vspeh.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a993_4647_5c7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a993_4647_5c7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a993_4647_5c7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a993_4647_5c7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a993_4647_5c7b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a993_4647_5c7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1679_207d_f7df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1679_207d_f7df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1679_207d_f7df/request", "", "public", "Top Dataset, std, vspeh.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1679_207d_f7df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1679_207d_f7df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1679_207d_f7df/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1679_207d_f7df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1679_207d_f7df&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1679_207d_f7df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d22_d5d2_a84b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d22_d5d2_a84b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d22_d5d2_a84b/request", "", "public", "Top Dataset, std, vspeh.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d22_d5d2_a84b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d22_d5d2_a84b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d22_d5d2_a84b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d22_d5d2_a84b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d22_d5d2_a84b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4d22_d5d2_a84b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fea_cdb8_62db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fea_cdb8_62db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8fea_cdb8_62db/request", "", "public", "Top Dataset, std, vspeh.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8fea_cdb8_62db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8fea_cdb8_62db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8fea_cdb8_62db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8fea_cdb8_62db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8fea_cdb8_62db&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8fea_cdb8_62db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0773_d46f_c737", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0773_d46f_c737.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0773_d46f_c737/request", "", "public", "Top Dataset, std, vspeh.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0773_d46f_c737_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0773_d46f_c737_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0773_d46f_c737/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0773_d46f_c737.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0773_d46f_c737&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0773_d46f_c737"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a88_55a8_c2b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a88_55a8_c2b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a88_55a8_c2b5/request", "", "public", "Top Dataset, std, vspeh.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a88_55a8_c2b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a88_55a8_c2b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a88_55a8_c2b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a88_55a8_c2b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a88_55a8_c2b5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5a88_55a8_c2b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da76_444d_931d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da76_444d_931d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da76_444d_931d/request", "", "public", "Top Dataset, std, vspeh.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da76_444d_931d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da76_444d_931d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da76_444d_931d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da76_444d_931d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da76_444d_931d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_da76_444d_931d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b42_fe4b_243e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b42_fe4b_243e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4b42_fe4b_243e/request", "", "public", "Top Dataset, std, vspeh.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4b42_fe4b_243e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4b42_fe4b_243e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4b42_fe4b_243e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4b42_fe4b_243e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4b42_fe4b_243e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4b42_fe4b_243e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed94_0ed6_394a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed94_0ed6_394a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ed94_0ed6_394a/request", "", "public", "Top Dataset, std, vspeh.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ed94_0ed6_394a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ed94_0ed6_394a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ed94_0ed6_394a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ed94_0ed6_394a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ed94_0ed6_394a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ed94_0ed6_394a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc95_0943_3f8e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc95_0943_3f8e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc95_0943_3f8e/request", "", "public", "Top Dataset, std, vspeh.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc95_0943_3f8e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc95_0943_3f8e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc95_0943_3f8e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc95_0943_3f8e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc95_0943_3f8e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fc95_0943_3f8e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a869_a3e6_3796", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a869_a3e6_3796.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a869_a3e6_3796/request", "", "public", "Top Dataset, std, vspeh.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a869_a3e6_3796_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a869_a3e6_3796_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a869_a3e6_3796/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a869_a3e6_3796.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a869_a3e6_3796&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a869_a3e6_3796"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff35_6357_ca62", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff35_6357_ca62.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff35_6357_ca62/request", "", "public", "Top Dataset, std, vspeh.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff35_6357_ca62_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff35_6357_ca62_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff35_6357_ca62/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff35_6357_ca62.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff35_6357_ca62&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ff35_6357_ca62"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6f8_72d6_b0d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6f8_72d6_b0d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f6f8_72d6_b0d5/request", "", "public", "Top Dataset, std, vspeh.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f6f8_72d6_b0d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f6f8_72d6_b0d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f6f8_72d6_b0d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f6f8_72d6_b0d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f6f8_72d6_b0d5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f6f8_72d6_b0d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b2fa_5c85_f09b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b2fa_5c85_f09b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b2fa_5c85_f09b/request", "", "public", "Top Dataset, std, vspeh.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b2fa_5c85_f09b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b2fa_5c85_f09b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b2fa_5c85_f09b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b2fa_5c85_f09b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b2fa_5c85_f09b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b2fa_5c85_f09b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6ec_39c8_e756", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6ec_39c8_e756.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e6ec_39c8_e756/request", "", "public", "Top Dataset, std, vspeh.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e6ec_39c8_e756_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e6ec_39c8_e756_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e6ec_39c8_e756/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e6ec_39c8_e756.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e6ec_39c8_e756&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e6ec_39c8_e756"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0524_5d25_988b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0524_5d25_988b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0524_5d25_988b/request", "", "public", "Top Dataset, std, vspeh.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0524_5d25_988b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0524_5d25_988b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0524_5d25_988b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0524_5d25_988b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0524_5d25_988b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0524_5d25_988b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_189b_8bbd_7920", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_189b_8bbd_7920.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_189b_8bbd_7920/request", "", "public", "Top Dataset, std, vspeh.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_189b_8bbd_7920_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_189b_8bbd_7920_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_189b_8bbd_7920/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_189b_8bbd_7920.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_189b_8bbd_7920&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_189b_8bbd_7920"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf52_d63c_e2d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf52_d63c_e2d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf52_d63c_e2d7/request", "", "public", "Top Dataset, std, vspeh.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf52_d63c_e2d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf52_d63c_e2d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf52_d63c_e2d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf52_d63c_e2d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf52_d63c_e2d7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bf52_d63c_e2d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4032_13a5_baf9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4032_13a5_baf9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4032_13a5_baf9/request", "", "public", "Top Dataset, std, vspeh.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4032_13a5_baf9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4032_13a5_baf9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4032_13a5_baf9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4032_13a5_baf9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4032_13a5_baf9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4032_13a5_baf9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02be_3525_a1c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02be_3525_a1c5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_02be_3525_a1c5/request", "", "public", "Top Dataset, std, vspeh.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_02be_3525_a1c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_02be_3525_a1c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_02be_3525_a1c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_02be_3525_a1c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_02be_3525_a1c5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_02be_3525_a1c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fcd8_708b_15fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fcd8_708b_15fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fcd8_708b_15fc/request", "", "public", "Top Dataset, std, vspeh.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fcd8_708b_15fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fcd8_708b_15fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fcd8_708b_15fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fcd8_708b_15fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fcd8_708b_15fc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fcd8_708b_15fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a613_588c_6d9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a613_588c_6d9f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a613_588c_6d9f/request", "", "public", "Top Dataset, std, vspeh.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a613_588c_6d9f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a613_588c_6d9f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a613_588c_6d9f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a613_588c_6d9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a613_588c_6d9f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a613_588c_6d9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e64_afc3_5a4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e64_afc3_5a4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e64_afc3_5a4d/request", "", "public", "Top Dataset, std, vspeh.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e64_afc3_5a4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e64_afc3_5a4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e64_afc3_5a4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e64_afc3_5a4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e64_afc3_5a4d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8e64_afc3_5a4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c12f_4bc0_2711", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c12f_4bc0_2711.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c12f_4bc0_2711/request", "", "public", "Top Dataset, std, vspeh.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c12f_4bc0_2711_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c12f_4bc0_2711_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c12f_4bc0_2711/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c12f_4bc0_2711.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c12f_4bc0_2711&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c12f_4bc0_2711"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c81_0bd2_ad72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c81_0bd2_ad72.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c81_0bd2_ad72/request", "", "public", "Top Dataset, std, vspeh.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c81_0bd2_ad72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c81_0bd2_ad72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c81_0bd2_ad72/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c81_0bd2_ad72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c81_0bd2_ad72&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9c81_0bd2_ad72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5b2_1ef6_7fe9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5b2_1ef6_7fe9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5b2_1ef6_7fe9/request", "", "public", "Top Dataset, std, vspeh.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5b2_1ef6_7fe9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5b2_1ef6_7fe9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5b2_1ef6_7fe9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5b2_1ef6_7fe9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5b2_1ef6_7fe9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a5b2_1ef6_7fe9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7c8_d63c_4eef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7c8_d63c_4eef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c7c8_d63c_4eef/request", "", "public", "Top Dataset, std, vspeh.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c7c8_d63c_4eef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c7c8_d63c_4eef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c7c8_d63c_4eef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c7c8_d63c_4eef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c7c8_d63c_4eef&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c7c8_d63c_4eef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d37_2372_4960", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d37_2372_4960.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d37_2372_4960/request", "", "public", "Top Dataset, std, vspeh.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d37_2372_4960_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d37_2372_4960_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d37_2372_4960/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d37_2372_4960.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d37_2372_4960&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3d37_2372_4960"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1b96_627d_1c43", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1b96_627d_1c43.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1b96_627d_1c43/request", "", "public", "Top Dataset, std, vspeh.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1b96_627d_1c43_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1b96_627d_1c43_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1b96_627d_1c43/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1b96_627d_1c43.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1b96_627d_1c43&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1b96_627d_1c43"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1a1_cc9e_04ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1a1_cc9e_04ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a1a1_cc9e_04ee/request", "", "public", "Top Dataset, std, vspeh.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a1a1_cc9e_04ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a1a1_cc9e_04ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a1a1_cc9e_04ee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a1a1_cc9e_04ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a1a1_cc9e_04ee&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a1a1_cc9e_04ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8790_44c8_1b97", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8790_44c8_1b97.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8790_44c8_1b97/request", "", "public", "Top Dataset, std, vspeh.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8790_44c8_1b97_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8790_44c8_1b97_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8790_44c8_1b97/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8790_44c8_1b97.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8790_44c8_1b97&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8790_44c8_1b97"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6696_8b08_f94f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6696_8b08_f94f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6696_8b08_f94f/request", "", "public", "Top Dataset, std, vspeh.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6696_8b08_f94f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6696_8b08_f94f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6696_8b08_f94f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6696_8b08_f94f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6696_8b08_f94f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6696_8b08_f94f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fea9_b5c5_54dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fea9_b5c5_54dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fea9_b5c5_54dc/request", "", "public", "Top Dataset, std, vspeh.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fea9_b5c5_54dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fea9_b5c5_54dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fea9_b5c5_54dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fea9_b5c5_54dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fea9_b5c5_54dc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fea9_b5c5_54dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43a2_f741_8263", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43a2_f741_8263.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_43a2_f741_8263/request", "", "public", "Top Dataset, std, vspeh.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_43a2_f741_8263_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_43a2_f741_8263_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_43a2_f741_8263/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_43a2_f741_8263.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_43a2_f741_8263&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_43a2_f741_8263"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15db_a3fc_dad3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15db_a3fc_dad3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_15db_a3fc_dad3/request", "", "public", "Top Dataset, std, vspeh.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_15db_a3fc_dad3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_15db_a3fc_dad3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_15db_a3fc_dad3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_15db_a3fc_dad3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_15db_a3fc_dad3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_15db_a3fc_dad3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6752_06fa_6322", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6752_06fa_6322.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6752_06fa_6322/request", "", "public", "Top Dataset, std, vspeh.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6752_06fa_6322_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6752_06fa_6322_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6752_06fa_6322/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6752_06fa_6322.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6752_06fa_6322&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6752_06fa_6322"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af86_d0a3_fb1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af86_d0a3_fb1e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_af86_d0a3_fb1e/request", "", "public", "Top Dataset, std, vspeh.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_af86_d0a3_fb1e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_af86_d0a3_fb1e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_af86_d0a3_fb1e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_af86_d0a3_fb1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_af86_d0a3_fb1e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_af86_d0a3_fb1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1a7_8870_d060", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1a7_8870_d060.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d1a7_8870_d060/request", "", "public", "Top Dataset, std, vspeh.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d1a7_8870_d060_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d1a7_8870_d060_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d1a7_8870_d060/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d1a7_8870_d060.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d1a7_8870_d060&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d1a7_8870_d060"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fec0_9309_e90c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fec0_9309_e90c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fec0_9309_e90c/request", "", "public", "Top Dataset, std, vspeh.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fec0_9309_e90c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fec0_9309_e90c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fec0_9309_e90c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fec0_9309_e90c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fec0_9309_e90c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fec0_9309_e90c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_480c_412a_858d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_480c_412a_858d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_480c_412a_858d/request", "", "public", "Top Dataset, std, vspeh.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_480c_412a_858d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_480c_412a_858d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_480c_412a_858d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_480c_412a_858d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_480c_412a_858d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_480c_412a_858d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_507c_a520_1c9b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_507c_a520_1c9b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_507c_a520_1c9b/request", "", "public", "Top Dataset, std, vspeh.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_507c_a520_1c9b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_507c_a520_1c9b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_507c_a520_1c9b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_507c_a520_1c9b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_507c_a520_1c9b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_507c_a520_1c9b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_811d_142b_c58d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_811d_142b_c58d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_811d_142b_c58d/request", "", "public", "Top Dataset, std, vspeh.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_811d_142b_c58d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_811d_142b_c58d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_811d_142b_c58d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_811d_142b_c58d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_811d_142b_c58d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_811d_142b_c58d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_175b_e0a0_508d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_175b_e0a0_508d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_175b_e0a0_508d/request", "", "public", "Top Dataset, std, vwnd.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_175b_e0a0_508d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_175b_e0a0_508d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_175b_e0a0_508d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_175b_e0a0_508d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_175b_e0a0_508d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_175b_e0a0_508d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_31dc_09f6_e8ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_31dc_09f6_e8ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_31dc_09f6_e8ef/request", "", "public", "Top Dataset, std, vwnd.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_31dc_09f6_e8ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_31dc_09f6_e8ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_31dc_09f6_e8ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_31dc_09f6_e8ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_31dc_09f6_e8ef&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_31dc_09f6_e8ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8eba_dfdd_c8a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8eba_dfdd_c8a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8eba_dfdd_c8a0/request", "", "public", "Top Dataset, std, vwnd.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8eba_dfdd_c8a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8eba_dfdd_c8a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8eba_dfdd_c8a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8eba_dfdd_c8a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8eba_dfdd_c8a0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8eba_dfdd_c8a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41ee_8982_1ab0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41ee_8982_1ab0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_41ee_8982_1ab0/request", "", "public", "Top Dataset, std, vwnd.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_41ee_8982_1ab0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_41ee_8982_1ab0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_41ee_8982_1ab0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_41ee_8982_1ab0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_41ee_8982_1ab0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_41ee_8982_1ab0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c77_2ee9_d13a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c77_2ee9_d13a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6c77_2ee9_d13a/request", "", "public", "Top Dataset, std, vwnd.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6c77_2ee9_d13a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6c77_2ee9_d13a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6c77_2ee9_d13a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6c77_2ee9_d13a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6c77_2ee9_d13a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6c77_2ee9_d13a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89bd_6f1b_c031", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89bd_6f1b_c031.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_89bd_6f1b_c031/request", "", "public", "Top Dataset, std, vwnd.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_89bd_6f1b_c031_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_89bd_6f1b_c031_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_89bd_6f1b_c031/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_89bd_6f1b_c031.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_89bd_6f1b_c031&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_89bd_6f1b_c031"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50f9_7714_16c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50f9_7714_16c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_50f9_7714_16c6/request", "", "public", "Top Dataset, std, vwnd.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_50f9_7714_16c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_50f9_7714_16c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50f9_7714_16c6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50f9_7714_16c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50f9_7714_16c6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_50f9_7714_16c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19cb_6602_03a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19cb_6602_03a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_19cb_6602_03a2/request", "", "public", "Top Dataset, std, vwnd.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_19cb_6602_03a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_19cb_6602_03a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_19cb_6602_03a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_19cb_6602_03a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_19cb_6602_03a2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_19cb_6602_03a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c47c_9f38_3eb4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c47c_9f38_3eb4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c47c_9f38_3eb4/request", "", "public", "Top Dataset, std, vwnd.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c47c_9f38_3eb4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c47c_9f38_3eb4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c47c_9f38_3eb4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c47c_9f38_3eb4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c47c_9f38_3eb4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c47c_9f38_3eb4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bee6_25d8_a08d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bee6_25d8_a08d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bee6_25d8_a08d/request", "", "public", "Top Dataset, std, vwnd.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bee6_25d8_a08d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bee6_25d8_a08d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bee6_25d8_a08d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bee6_25d8_a08d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bee6_25d8_a08d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bee6_25d8_a08d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73dc_f986_0dac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73dc_f986_0dac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_73dc_f986_0dac/request", "", "public", "Top Dataset, std, vwnd.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_73dc_f986_0dac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_73dc_f986_0dac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_73dc_f986_0dac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_73dc_f986_0dac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_73dc_f986_0dac&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_73dc_f986_0dac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d52c_a9b4_1a65", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d52c_a9b4_1a65.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d52c_a9b4_1a65/request", "", "public", "Top Dataset, std, vwnd.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d52c_a9b4_1a65_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d52c_a9b4_1a65_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d52c_a9b4_1a65/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d52c_a9b4_1a65.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d52c_a9b4_1a65&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d52c_a9b4_1a65"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b2bc_da46_93fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b2bc_da46_93fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b2bc_da46_93fb/request", "", "public", "Top Dataset, std, vwnd.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b2bc_da46_93fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b2bc_da46_93fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b2bc_da46_93fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b2bc_da46_93fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b2bc_da46_93fb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b2bc_da46_93fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48c0_881a_053e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48c0_881a_053e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_48c0_881a_053e/request", "", "public", "Top Dataset, std, vwnd.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_48c0_881a_053e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_48c0_881a_053e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_48c0_881a_053e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_48c0_881a_053e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_48c0_881a_053e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_48c0_881a_053e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff5f_33db_a060", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff5f_33db_a060.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff5f_33db_a060/request", "", "public", "Top Dataset, std, vwnd.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff5f_33db_a060_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff5f_33db_a060_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff5f_33db_a060/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff5f_33db_a060.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff5f_33db_a060&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ff5f_33db_a060"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f487_cf1d_ef7d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f487_cf1d_ef7d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f487_cf1d_ef7d/request", "", "public", "Top Dataset, std, vwnd.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f487_cf1d_ef7d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f487_cf1d_ef7d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f487_cf1d_ef7d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f487_cf1d_ef7d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f487_cf1d_ef7d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f487_cf1d_ef7d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26ae_2509_f396", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26ae_2509_f396.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_26ae_2509_f396/request", "", "public", "Top Dataset, std, vwnd.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_26ae_2509_f396_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_26ae_2509_f396_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_26ae_2509_f396/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_26ae_2509_f396.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_26ae_2509_f396&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_26ae_2509_f396"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5baa_b1d2_b530", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5baa_b1d2_b530.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5baa_b1d2_b530/request", "", "public", "Top Dataset, std, vwnd.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5baa_b1d2_b530_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5baa_b1d2_b530_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5baa_b1d2_b530/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5baa_b1d2_b530.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5baa_b1d2_b530&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5baa_b1d2_b530"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ea9_9cb6_0777", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ea9_9cb6_0777.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ea9_9cb6_0777/request", "", "public", "Top Dataset, std, vwnd.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ea9_9cb6_0777_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ea9_9cb6_0777_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ea9_9cb6_0777/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ea9_9cb6_0777.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ea9_9cb6_0777&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1ea9_9cb6_0777"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24ea_837b_38a9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24ea_837b_38a9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_24ea_837b_38a9/request", "", "public", "Top Dataset, std, vwnd.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_24ea_837b_38a9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_24ea_837b_38a9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_24ea_837b_38a9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_24ea_837b_38a9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_24ea_837b_38a9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_24ea_837b_38a9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c311_80a1_9716", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c311_80a1_9716.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c311_80a1_9716/request", "", "public", "Top Dataset, std, vwnd.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c311_80a1_9716_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c311_80a1_9716_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c311_80a1_9716/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c311_80a1_9716.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c311_80a1_9716&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c311_80a1_9716"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df72_e609_a130", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df72_e609_a130.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_df72_e609_a130/request", "", "public", "Top Dataset, std, vwnd.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_df72_e609_a130_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_df72_e609_a130_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_df72_e609_a130/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_df72_e609_a130.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_df72_e609_a130&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_df72_e609_a130"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10b8_9cac_5d02", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10b8_9cac_5d02.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_10b8_9cac_5d02/request", "", "public", "Top Dataset, std, vwnd.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_10b8_9cac_5d02_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_10b8_9cac_5d02_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_10b8_9cac_5d02/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_10b8_9cac_5d02.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_10b8_9cac_5d02&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_10b8_9cac_5d02"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a50_2025_bb2b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a50_2025_bb2b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8a50_2025_bb2b/request", "", "public", "Top Dataset, std, vwnd.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8a50_2025_bb2b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8a50_2025_bb2b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8a50_2025_bb2b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8a50_2025_bb2b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8a50_2025_bb2b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8a50_2025_bb2b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0741_26f0_d075", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0741_26f0_d075.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0741_26f0_d075/request", "", "public", "Top Dataset, std, vwnd.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0741_26f0_d075_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0741_26f0_d075_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0741_26f0_d075/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0741_26f0_d075.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0741_26f0_d075&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0741_26f0_d075"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4596_bf11_da49", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4596_bf11_da49.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4596_bf11_da49/request", "", "public", "Top Dataset, std, vwnd.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4596_bf11_da49_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4596_bf11_da49_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4596_bf11_da49/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4596_bf11_da49.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4596_bf11_da49&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4596_bf11_da49"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8597_09f0_81b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8597_09f0_81b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8597_09f0_81b3/request", "", "public", "Top Dataset, std, vwnd.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8597_09f0_81b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8597_09f0_81b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8597_09f0_81b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8597_09f0_81b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8597_09f0_81b3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8597_09f0_81b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea07_de0c_10e9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea07_de0c_10e9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ea07_de0c_10e9/request", "", "public", "Top Dataset, std, vwnd.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ea07_de0c_10e9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ea07_de0c_10e9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ea07_de0c_10e9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ea07_de0c_10e9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ea07_de0c_10e9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ea07_de0c_10e9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4483_b09b_aa9c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4483_b09b_aa9c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4483_b09b_aa9c/request", "", "public", "Top Dataset, std, vwnd.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4483_b09b_aa9c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4483_b09b_aa9c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4483_b09b_aa9c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4483_b09b_aa9c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4483_b09b_aa9c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4483_b09b_aa9c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb2c_8d73_743e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb2c_8d73_743e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb2c_8d73_743e/request", "", "public", "Top Dataset, std, vwnd.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb2c_8d73_743e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb2c_8d73_743e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb2c_8d73_743e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb2c_8d73_743e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb2c_8d73_743e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cb2c_8d73_743e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d33e_8b73_f47d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d33e_8b73_f47d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d33e_8b73_f47d/request", "", "public", "Top Dataset, std, vwnd.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d33e_8b73_f47d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d33e_8b73_f47d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d33e_8b73_f47d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d33e_8b73_f47d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d33e_8b73_f47d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d33e_8b73_f47d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fcd_14d2_1165", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fcd_14d2_1165.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5fcd_14d2_1165/request", "", "public", "Top Dataset, std, vwnd.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5fcd_14d2_1165_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5fcd_14d2_1165_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5fcd_14d2_1165/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5fcd_14d2_1165.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5fcd_14d2_1165&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5fcd_14d2_1165"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc3f_f6cc_af64", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc3f_f6cc_af64.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc3f_f6cc_af64/request", "", "public", "Top Dataset, std, vwnd.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc3f_f6cc_af64_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc3f_f6cc_af64_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc3f_f6cc_af64/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc3f_f6cc_af64.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc3f_f6cc_af64&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fc3f_f6cc_af64"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9db_371e_303b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9db_371e_303b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b9db_371e_303b/request", "", "public", "Top Dataset, std, vwnd.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b9db_371e_303b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b9db_371e_303b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b9db_371e_303b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b9db_371e_303b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b9db_371e_303b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b9db_371e_303b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6381_e149_4118", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6381_e149_4118.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6381_e149_4118/request", "", "public", "Top Dataset, std, vwnd.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6381_e149_4118_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6381_e149_4118_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6381_e149_4118/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6381_e149_4118.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6381_e149_4118&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6381_e149_4118"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de0f_7cf4_c091", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de0f_7cf4_c091.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_de0f_7cf4_c091/request", "", "public", "Top Dataset, std, vwnd.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_de0f_7cf4_c091_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_de0f_7cf4_c091_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_de0f_7cf4_c091/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_de0f_7cf4_c091.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_de0f_7cf4_c091&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_de0f_7cf4_c091"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b737_f14b_e8fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b737_f14b_e8fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b737_f14b_e8fa/request", "", "public", "Top Dataset, std, vwnd.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b737_f14b_e8fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b737_f14b_e8fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b737_f14b_e8fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b737_f14b_e8fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b737_f14b_e8fa&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b737_f14b_e8fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_25ad_a88a_1250", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_25ad_a88a_1250.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_25ad_a88a_1250/request", "", "public", "Top Dataset, std, vwnd.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_25ad_a88a_1250_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_25ad_a88a_1250_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_25ad_a88a_1250/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_25ad_a88a_1250.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_25ad_a88a_1250&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_25ad_a88a_1250"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a087_cccb_a178", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a087_cccb_a178.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a087_cccb_a178/request", "", "public", "Top Dataset, std, vwnd.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a087_cccb_a178_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a087_cccb_a178_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a087_cccb_a178/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a087_cccb_a178.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a087_cccb_a178&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a087_cccb_a178"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4895_dacb_6bc2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4895_dacb_6bc2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4895_dacb_6bc2/request", "", "public", "Top Dataset, std, vwnd.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4895_dacb_6bc2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4895_dacb_6bc2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4895_dacb_6bc2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4895_dacb_6bc2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4895_dacb_6bc2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4895_dacb_6bc2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c57_2f30_e43c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c57_2f30_e43c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4c57_2f30_e43c/request", "", "public", "Top Dataset, std, vwnd.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4c57_2f30_e43c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4c57_2f30_e43c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c57_2f30_e43c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c57_2f30_e43c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c57_2f30_e43c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4c57_2f30_e43c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc90_162d_5840", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc90_162d_5840.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc90_162d_5840/request", "", "public", "Top Dataset, std, vwnd.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc90_162d_5840_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc90_162d_5840_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc90_162d_5840/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc90_162d_5840.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc90_162d_5840&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fc90_162d_5840"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c88_f748_c836", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c88_f748_c836.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3c88_f748_c836/request", "", "public", "Top Dataset, std, vwnd.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3c88_f748_c836_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3c88_f748_c836_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c88_f748_c836/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c88_f748_c836.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c88_f748_c836&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3c88_f748_c836"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a118_0a78_821e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a118_0a78_821e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a118_0a78_821e/request", "", "public", "Top Dataset, std, vwnd.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a118_0a78_821e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a118_0a78_821e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a118_0a78_821e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a118_0a78_821e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a118_0a78_821e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a118_0a78_821e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb13_ba24_2796", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb13_ba24_2796.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eb13_ba24_2796/request", "", "public", "Top Dataset, std, vwnd.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eb13_ba24_2796_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eb13_ba24_2796_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb13_ba24_2796/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb13_ba24_2796.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb13_ba24_2796&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eb13_ba24_2796"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9ee_ba90_2e70", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9ee_ba90_2e70.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c9ee_ba90_2e70/request", "", "public", "Top Dataset, std, vwnd.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c9ee_ba90_2e70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c9ee_ba90_2e70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c9ee_ba90_2e70/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c9ee_ba90_2e70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c9ee_ba90_2e70&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c9ee_ba90_2e70"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_69cd_e232_a5ad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_69cd_e232_a5ad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_69cd_e232_a5ad/request", "", "public", "Top Dataset, std, vwnd.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_69cd_e232_a5ad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_69cd_e232_a5ad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_69cd_e232_a5ad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_69cd_e232_a5ad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_69cd_e232_a5ad&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_69cd_e232_a5ad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb2f_18d3_3d52", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb2f_18d3_3d52.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bb2f_18d3_3d52/request", "", "public", "Top Dataset, std, vwnd.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bb2f_18d3_3d52_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bb2f_18d3_3d52_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bb2f_18d3_3d52/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bb2f_18d3_3d52.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bb2f_18d3_3d52&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bb2f_18d3_3d52"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8d3_9a3a_7a47", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8d3_9a3a_7a47.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d8d3_9a3a_7a47/request", "", "public", "Top Dataset, std, vwnd.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d8d3_9a3a_7a47_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d8d3_9a3a_7a47_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d8d3_9a3a_7a47/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d8d3_9a3a_7a47.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d8d3_9a3a_7a47&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d8d3_9a3a_7a47"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7226_741d_0d27", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7226_741d_0d27.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7226_741d_0d27/request", "", "public", "Top Dataset, std, vwnd.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7226_741d_0d27_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7226_741d_0d27_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7226_741d_0d27/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7226_741d_0d27.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7226_741d_0d27&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7226_741d_0d27"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bad2_bf25_be41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bad2_bf25_be41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bad2_bf25_be41/request", "", "public", "Top Dataset, std, vwnd.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bad2_bf25_be41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bad2_bf25_be41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bad2_bf25_be41/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bad2_bf25_be41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bad2_bf25_be41&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bad2_bf25_be41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8b7_2ec9_a46c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8b7_2ec9_a46c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d8b7_2ec9_a46c/request", "", "public", "Top Dataset, std, vwnd.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d8b7_2ec9_a46c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d8b7_2ec9_a46c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d8b7_2ec9_a46c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d8b7_2ec9_a46c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d8b7_2ec9_a46c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d8b7_2ec9_a46c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9a2_8fc4_480e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9a2_8fc4_480e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c9a2_8fc4_480e/request", "", "public", "Top Dataset, std, vwnd.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c9a2_8fc4_480e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c9a2_8fc4_480e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c9a2_8fc4_480e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c9a2_8fc4_480e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c9a2_8fc4_480e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c9a2_8fc4_480e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e012_1929_204e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e012_1929_204e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e012_1929_204e/request", "", "public", "Top Dataset, std, vwnd.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e012_1929_204e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e012_1929_204e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e012_1929_204e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e012_1929_204e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e012_1929_204e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e012_1929_204e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6e9_786a_8c54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6e9_786a_8c54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e6e9_786a_8c54/request", "", "public", "Top Dataset, std, vwnd.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e6e9_786a_8c54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e6e9_786a_8c54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e6e9_786a_8c54/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e6e9_786a_8c54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e6e9_786a_8c54&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e6e9_786a_8c54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bd8_bb3d_085f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bd8_bb3d_085f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2bd8_bb3d_085f/request", "", "public", "Top Dataset, std, vwnd.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2bd8_bb3d_085f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2bd8_bb3d_085f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2bd8_bb3d_085f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2bd8_bb3d_085f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2bd8_bb3d_085f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2bd8_bb3d_085f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9293_1bc0_c738", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9293_1bc0_c738.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9293_1bc0_c738/request", "", "public", "Top Dataset, std, vwnd.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9293_1bc0_c738_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9293_1bc0_c738_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9293_1bc0_c738/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9293_1bc0_c738.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9293_1bc0_c738&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9293_1bc0_c738"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b68_1793_ddff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b68_1793_ddff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3b68_1793_ddff/request", "", "public", "Top Dataset, std, vwnd.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3b68_1793_ddff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3b68_1793_ddff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3b68_1793_ddff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3b68_1793_ddff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3b68_1793_ddff&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3b68_1793_ddff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a5a_9fce_c791", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a5a_9fce_c791.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a5a_9fce_c791/request", "", "public", "Top Dataset, std, vwnd.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a5a_9fce_c791_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a5a_9fce_c791_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a5a_9fce_c791/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a5a_9fce_c791.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a5a_9fce_c791&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7a5a_9fce_c791"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdd3_5f51_943f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdd3_5f51_943f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bdd3_5f51_943f/request", "", "public", "Top Dataset, std, vwnd.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, vwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bdd3_5f51_943f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bdd3_5f51_943f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bdd3_5f51_943f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bdd3_5f51_943f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bdd3_5f51_943f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bdd3_5f51_943f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c34_1d46_a9ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c34_1d46_a9ba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8c34_1d46_a9ba/request", "", "public", "Top Dataset, std, wspd.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8c34_1d46_a9ba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8c34_1d46_a9ba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8c34_1d46_a9ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8c34_1d46_a9ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8c34_1d46_a9ba&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8c34_1d46_a9ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64a8_2f81_8029", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64a8_2f81_8029.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_64a8_2f81_8029/request", "", "public", "Top Dataset, std, wspd.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_64a8_2f81_8029_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_64a8_2f81_8029_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_64a8_2f81_8029/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_64a8_2f81_8029.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_64a8_2f81_8029&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_64a8_2f81_8029"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e85c_45be_30b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e85c_45be_30b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e85c_45be_30b3/request", "", "public", "Top Dataset, std, wspd.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e85c_45be_30b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e85c_45be_30b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e85c_45be_30b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e85c_45be_30b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e85c_45be_30b3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e85c_45be_30b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93e3_f584_a5e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93e3_f584_a5e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_93e3_f584_a5e5/request", "", "public", "Top Dataset, std, wspd.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_93e3_f584_a5e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_93e3_f584_a5e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_93e3_f584_a5e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_93e3_f584_a5e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_93e3_f584_a5e5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_93e3_f584_a5e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fcc0_beeb_8b08", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fcc0_beeb_8b08.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fcc0_beeb_8b08/request", "", "public", "Top Dataset, std, wspd.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fcc0_beeb_8b08_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fcc0_beeb_8b08_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fcc0_beeb_8b08/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fcc0_beeb_8b08.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fcc0_beeb_8b08&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fcc0_beeb_8b08"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff96_05ae_42c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff96_05ae_42c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff96_05ae_42c4/request", "", "public", "Top Dataset, std, wspd.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff96_05ae_42c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff96_05ae_42c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff96_05ae_42c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff96_05ae_42c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff96_05ae_42c4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ff96_05ae_42c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae3f_1df2_3406", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae3f_1df2_3406.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae3f_1df2_3406/request", "", "public", "Top Dataset, std, wspd.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae3f_1df2_3406_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae3f_1df2_3406_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae3f_1df2_3406/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae3f_1df2_3406.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae3f_1df2_3406&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ae3f_1df2_3406"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dce_4bb2_a9a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dce_4bb2_a9a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1dce_4bb2_a9a1/request", "", "public", "Top Dataset, std, wspd.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1dce_4bb2_a9a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1dce_4bb2_a9a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1dce_4bb2_a9a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1dce_4bb2_a9a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1dce_4bb2_a9a1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1dce_4bb2_a9a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4150_40b9_59bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4150_40b9_59bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4150_40b9_59bb/request", "", "public", "Top Dataset, std, wspd.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4150_40b9_59bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4150_40b9_59bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4150_40b9_59bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4150_40b9_59bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4150_40b9_59bb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4150_40b9_59bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8973_82d2_1fa2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8973_82d2_1fa2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8973_82d2_1fa2/request", "", "public", "Top Dataset, std, wspd.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8973_82d2_1fa2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8973_82d2_1fa2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8973_82d2_1fa2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8973_82d2_1fa2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8973_82d2_1fa2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8973_82d2_1fa2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e29_1ea5_63f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e29_1ea5_63f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7e29_1ea5_63f9/request", "", "public", "Top Dataset, std, wspd.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7e29_1ea5_63f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7e29_1ea5_63f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e29_1ea5_63f9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e29_1ea5_63f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e29_1ea5_63f9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7e29_1ea5_63f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8040_35f8_0be1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8040_35f8_0be1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8040_35f8_0be1/request", "", "public", "Top Dataset, std, wspd.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8040_35f8_0be1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8040_35f8_0be1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8040_35f8_0be1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8040_35f8_0be1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8040_35f8_0be1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8040_35f8_0be1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37a6_15c2_3f7c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37a6_15c2_3f7c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_37a6_15c2_3f7c/request", "", "public", "Top Dataset, std, wspd.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_37a6_15c2_3f7c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_37a6_15c2_3f7c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_37a6_15c2_3f7c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_37a6_15c2_3f7c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_37a6_15c2_3f7c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_37a6_15c2_3f7c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5623_26a3_23d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5623_26a3_23d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5623_26a3_23d7/request", "", "public", "Top Dataset, std, wspd.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5623_26a3_23d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5623_26a3_23d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5623_26a3_23d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5623_26a3_23d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5623_26a3_23d7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5623_26a3_23d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dab7_3658_9480", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dab7_3658_9480.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dab7_3658_9480/request", "", "public", "Top Dataset, std, wspd.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dab7_3658_9480_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dab7_3658_9480_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dab7_3658_9480/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dab7_3658_9480.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dab7_3658_9480&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dab7_3658_9480"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8cf_bf93_8911", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8cf_bf93_8911.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a8cf_bf93_8911/request", "", "public", "Top Dataset, std, wspd.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a8cf_bf93_8911_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a8cf_bf93_8911_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a8cf_bf93_8911/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a8cf_bf93_8911.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a8cf_bf93_8911&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a8cf_bf93_8911"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a446_5451_1dc5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a446_5451_1dc5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a446_5451_1dc5/request", "", "public", "Top Dataset, std, wspd.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a446_5451_1dc5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a446_5451_1dc5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a446_5451_1dc5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a446_5451_1dc5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a446_5451_1dc5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a446_5451_1dc5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fdaa_99f2_ab05", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fdaa_99f2_ab05.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fdaa_99f2_ab05/request", "", "public", "Top Dataset, std, wspd.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fdaa_99f2_ab05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fdaa_99f2_ab05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fdaa_99f2_ab05/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fdaa_99f2_ab05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fdaa_99f2_ab05&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fdaa_99f2_ab05"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0bd_f8f5_34e7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0bd_f8f5_34e7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d0bd_f8f5_34e7/request", "", "public", "Top Dataset, std, wspd.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d0bd_f8f5_34e7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d0bd_f8f5_34e7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d0bd_f8f5_34e7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d0bd_f8f5_34e7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d0bd_f8f5_34e7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d0bd_f8f5_34e7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01d0_4fba_e86d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01d0_4fba_e86d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_01d0_4fba_e86d/request", "", "public", "Top Dataset, std, wspd.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_01d0_4fba_e86d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_01d0_4fba_e86d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_01d0_4fba_e86d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_01d0_4fba_e86d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_01d0_4fba_e86d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_01d0_4fba_e86d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa8a_de9b_68fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa8a_de9b_68fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fa8a_de9b_68fb/request", "", "public", "Top Dataset, std, wspd.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fa8a_de9b_68fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fa8a_de9b_68fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fa8a_de9b_68fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fa8a_de9b_68fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fa8a_de9b_68fb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fa8a_de9b_68fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3323_05c9_efc8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3323_05c9_efc8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3323_05c9_efc8/request", "", "public", "Top Dataset, std, wspd.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3323_05c9_efc8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3323_05c9_efc8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3323_05c9_efc8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3323_05c9_efc8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3323_05c9_efc8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3323_05c9_efc8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0529_d2c6_2a1f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0529_d2c6_2a1f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0529_d2c6_2a1f/request", "", "public", "Top Dataset, std, wspd.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0529_d2c6_2a1f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0529_d2c6_2a1f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0529_d2c6_2a1f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0529_d2c6_2a1f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0529_d2c6_2a1f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0529_d2c6_2a1f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0f6_5eaa_7467", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0f6_5eaa_7467.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d0f6_5eaa_7467/request", "", "public", "Top Dataset, std, wspd.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d0f6_5eaa_7467_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d0f6_5eaa_7467_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d0f6_5eaa_7467/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d0f6_5eaa_7467.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d0f6_5eaa_7467&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d0f6_5eaa_7467"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03bc_ba97_d6a9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03bc_ba97_d6a9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03bc_ba97_d6a9/request", "", "public", "Top Dataset, std, wspd.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03bc_ba97_d6a9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03bc_ba97_d6a9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03bc_ba97_d6a9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03bc_ba97_d6a9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03bc_ba97_d6a9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_03bc_ba97_d6a9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d75b_4a74_a962", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d75b_4a74_a962.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d75b_4a74_a962/request", "", "public", "Top Dataset, std, wspd.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d75b_4a74_a962_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d75b_4a74_a962_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d75b_4a74_a962/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d75b_4a74_a962.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d75b_4a74_a962&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d75b_4a74_a962"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df72_3a17_d442", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df72_3a17_d442.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_df72_3a17_d442/request", "", "public", "Top Dataset, std, wspd.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_df72_3a17_d442_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_df72_3a17_d442_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_df72_3a17_d442/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_df72_3a17_d442.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_df72_3a17_d442&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_df72_3a17_d442"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc37_c0e4_5349", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc37_c0e4_5349.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc37_c0e4_5349/request", "", "public", "Top Dataset, std, wspd.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc37_c0e4_5349_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc37_c0e4_5349_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc37_c0e4_5349/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc37_c0e4_5349.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc37_c0e4_5349&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fc37_c0e4_5349"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a6e_6624_7688", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a6e_6624_7688.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4a6e_6624_7688/request", "", "public", "Top Dataset, std, wspd.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4a6e_6624_7688_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4a6e_6624_7688_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4a6e_6624_7688/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4a6e_6624_7688.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4a6e_6624_7688&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4a6e_6624_7688"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b141_f0e7_b202", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b141_f0e7_b202.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b141_f0e7_b202/request", "", "public", "Top Dataset, std, wspd.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b141_f0e7_b202_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b141_f0e7_b202_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b141_f0e7_b202/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b141_f0e7_b202.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b141_f0e7_b202&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b141_f0e7_b202"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f35_354c_3fef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f35_354c_3fef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f35_354c_3fef/request", "", "public", "Top Dataset, std, wspd.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f35_354c_3fef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f35_354c_3fef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f35_354c_3fef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f35_354c_3fef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f35_354c_3fef&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1f35_354c_3fef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_47a6_f312_3b21", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_47a6_f312_3b21.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_47a6_f312_3b21/request", "", "public", "Top Dataset, std, wspd.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_47a6_f312_3b21_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_47a6_f312_3b21_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_47a6_f312_3b21/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_47a6_f312_3b21.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_47a6_f312_3b21&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_47a6_f312_3b21"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c577_d929_df37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c577_d929_df37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c577_d929_df37/request", "", "public", "Top Dataset, std, wspd.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c577_d929_df37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c577_d929_df37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c577_d929_df37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c577_d929_df37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c577_d929_df37&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c577_d929_df37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_def4_0f5b_ab72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_def4_0f5b_ab72.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_def4_0f5b_ab72/request", "", "public", "Top Dataset, std, wspd.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_def4_0f5b_ab72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_def4_0f5b_ab72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_def4_0f5b_ab72/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_def4_0f5b_ab72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_def4_0f5b_ab72&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_def4_0f5b_ab72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6213_7bd0_6353", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6213_7bd0_6353.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6213_7bd0_6353/request", "", "public", "Top Dataset, std, wspd.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6213_7bd0_6353_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6213_7bd0_6353_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6213_7bd0_6353/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6213_7bd0_6353.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6213_7bd0_6353&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6213_7bd0_6353"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e7e_80a7_088f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e7e_80a7_088f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6e7e_80a7_088f/request", "", "public", "Top Dataset, std, wspd.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6e7e_80a7_088f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6e7e_80a7_088f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6e7e_80a7_088f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6e7e_80a7_088f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6e7e_80a7_088f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6e7e_80a7_088f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_40d3_1e54_13c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_40d3_1e54_13c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_40d3_1e54_13c3/request", "", "public", "Top Dataset, std, wspd.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_40d3_1e54_13c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_40d3_1e54_13c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_40d3_1e54_13c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_40d3_1e54_13c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_40d3_1e54_13c3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_40d3_1e54_13c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc2e_639c_f4a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc2e_639c_f4a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc2e_639c_f4a0/request", "", "public", "Top Dataset, std, wspd.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc2e_639c_f4a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc2e_639c_f4a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc2e_639c_f4a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc2e_639c_f4a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc2e_639c_f4a0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cc2e_639c_f4a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_daaf_3cb2_2c76", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_daaf_3cb2_2c76.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_daaf_3cb2_2c76/request", "", "public", "Top Dataset, std, wspd.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_daaf_3cb2_2c76_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_daaf_3cb2_2c76_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_daaf_3cb2_2c76/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_daaf_3cb2_2c76.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_daaf_3cb2_2c76&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_daaf_3cb2_2c76"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2ac_ee50_bb6d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2ac_ee50_bb6d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f2ac_ee50_bb6d/request", "", "public", "Top Dataset, std, wspd.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f2ac_ee50_bb6d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f2ac_ee50_bb6d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f2ac_ee50_bb6d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f2ac_ee50_bb6d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f2ac_ee50_bb6d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f2ac_ee50_bb6d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_84f5_7f4a_dac3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_84f5_7f4a_dac3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_84f5_7f4a_dac3/request", "", "public", "Top Dataset, std, wspd.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_84f5_7f4a_dac3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_84f5_7f4a_dac3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_84f5_7f4a_dac3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_84f5_7f4a_dac3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_84f5_7f4a_dac3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_84f5_7f4a_dac3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab93_ab04_2620", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab93_ab04_2620.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab93_ab04_2620/request", "", "public", "Top Dataset, std, wspd.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab93_ab04_2620_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab93_ab04_2620_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab93_ab04_2620/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab93_ab04_2620.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab93_ab04_2620&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ab93_ab04_2620"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d272_202e_b7e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d272_202e_b7e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d272_202e_b7e1/request", "", "public", "Top Dataset, std, wspd.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d272_202e_b7e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d272_202e_b7e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d272_202e_b7e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d272_202e_b7e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d272_202e_b7e1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d272_202e_b7e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_071a_3a36_230a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_071a_3a36_230a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_071a_3a36_230a/request", "", "public", "Top Dataset, std, wspd.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_071a_3a36_230a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_071a_3a36_230a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_071a_3a36_230a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_071a_3a36_230a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_071a_3a36_230a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_071a_3a36_230a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2a38_5bb2_6847", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2a38_5bb2_6847.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2a38_5bb2_6847/request", "", "public", "Top Dataset, std, wspd.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2a38_5bb2_6847_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2a38_5bb2_6847_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2a38_5bb2_6847/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2a38_5bb2_6847.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2a38_5bb2_6847&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2a38_5bb2_6847"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c284_0a37_c3fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c284_0a37_c3fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c284_0a37_c3fa/request", "", "public", "Top Dataset, std, wspd.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c284_0a37_c3fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c284_0a37_c3fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c284_0a37_c3fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c284_0a37_c3fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c284_0a37_c3fa&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c284_0a37_c3fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f6d_ef78_01d6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f6d_ef78_01d6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5f6d_ef78_01d6/request", "", "public", "Top Dataset, std, wspd.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5f6d_ef78_01d6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5f6d_ef78_01d6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5f6d_ef78_01d6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5f6d_ef78_01d6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5f6d_ef78_01d6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5f6d_ef78_01d6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f13_afab_4197", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f13_afab_4197.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f13_afab_4197/request", "", "public", "Top Dataset, std, wspd.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f13_afab_4197_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f13_afab_4197_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f13_afab_4197/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f13_afab_4197.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f13_afab_4197&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9f13_afab_4197"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d65e_3f3d_0dbc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d65e_3f3d_0dbc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d65e_3f3d_0dbc/request", "", "public", "Top Dataset, std, wspd.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d65e_3f3d_0dbc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d65e_3f3d_0dbc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d65e_3f3d_0dbc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d65e_3f3d_0dbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d65e_3f3d_0dbc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d65e_3f3d_0dbc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_138e_1085_a270", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_138e_1085_a270.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_138e_1085_a270/request", "", "public", "Top Dataset, std, wspd.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_138e_1085_a270_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_138e_1085_a270_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_138e_1085_a270/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_138e_1085_a270.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_138e_1085_a270&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_138e_1085_a270"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa21_cd05_fbf6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa21_cd05_fbf6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fa21_cd05_fbf6/request", "", "public", "Top Dataset, std, wspd.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fa21_cd05_fbf6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fa21_cd05_fbf6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fa21_cd05_fbf6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fa21_cd05_fbf6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fa21_cd05_fbf6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fa21_cd05_fbf6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_77d1_a898_fcaa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_77d1_a898_fcaa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_77d1_a898_fcaa/request", "", "public", "Top Dataset, std, wspd.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_77d1_a898_fcaa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_77d1_a898_fcaa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_77d1_a898_fcaa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_77d1_a898_fcaa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_77d1_a898_fcaa&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_77d1_a898_fcaa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_77f1_6c0b_27fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_77f1_6c0b_27fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_77f1_6c0b_27fa/request", "", "public", "Top Dataset, std, wspd.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_77f1_6c0b_27fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_77f1_6c0b_27fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_77f1_6c0b_27fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_77f1_6c0b_27fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_77f1_6c0b_27fa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_77f1_6c0b_27fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb51_0b69_f4b2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb51_0b69_f4b2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb51_0b69_f4b2/request", "", "public", "Top Dataset, std, wspd.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb51_0b69_f4b2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb51_0b69_f4b2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb51_0b69_f4b2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb51_0b69_f4b2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb51_0b69_f4b2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fb51_0b69_f4b2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73bc_c409_43b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73bc_c409_43b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_73bc_c409_43b9/request", "", "public", "Top Dataset, std, wspd.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_73bc_c409_43b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_73bc_c409_43b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_73bc_c409_43b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_73bc_c409_43b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_73bc_c409_43b9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_73bc_c409_43b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2275_b996_15cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2275_b996_15cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2275_b996_15cb/request", "", "public", "Top Dataset, std, wspd.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2275_b996_15cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2275_b996_15cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2275_b996_15cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2275_b996_15cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2275_b996_15cb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2275_b996_15cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2878_27f3_4038", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2878_27f3_4038.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2878_27f3_4038/request", "", "public", "Top Dataset, std, wspd.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2878_27f3_4038_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2878_27f3_4038_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2878_27f3_4038/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2878_27f3_4038.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2878_27f3_4038&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2878_27f3_4038"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c371_b01c_6c37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c371_b01c_6c37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c371_b01c_6c37/request", "", "public", "Top Dataset, std, wspd.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c371_b01c_6c37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c371_b01c_6c37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c371_b01c_6c37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c371_b01c_6c37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c371_b01c_6c37&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c371_b01c_6c37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_49b7_98b0_afce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_49b7_98b0_afce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_49b7_98b0_afce/request", "", "public", "Top Dataset, std, wspd.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_49b7_98b0_afce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_49b7_98b0_afce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_49b7_98b0_afce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_49b7_98b0_afce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_49b7_98b0_afce&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_49b7_98b0_afce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8660_2b7c_98ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8660_2b7c_98ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8660_2b7c_98ec/request", "", "public", "Top Dataset, std, wspd.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8660_2b7c_98ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8660_2b7c_98ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8660_2b7c_98ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8660_2b7c_98ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8660_2b7c_98ec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8660_2b7c_98ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a6f4_bc74_3854", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a6f4_bc74_3854.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a6f4_bc74_3854/request", "", "public", "Top Dataset, std, wspd3.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a6f4_bc74_3854_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a6f4_bc74_3854_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a6f4_bc74_3854/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a6f4_bc74_3854.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a6f4_bc74_3854&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a6f4_bc74_3854"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09d1_1b4d_3810", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09d1_1b4d_3810.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_09d1_1b4d_3810/request", "", "public", "Top Dataset, std, wspd3.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_09d1_1b4d_3810_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_09d1_1b4d_3810_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_09d1_1b4d_3810/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_09d1_1b4d_3810.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_09d1_1b4d_3810&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_09d1_1b4d_3810"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8c5_4ff6_4794", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8c5_4ff6_4794.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a8c5_4ff6_4794/request", "", "public", "Top Dataset, std, wspd3.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a8c5_4ff6_4794_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a8c5_4ff6_4794_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a8c5_4ff6_4794/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a8c5_4ff6_4794.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a8c5_4ff6_4794&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a8c5_4ff6_4794"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7629_4078_98ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7629_4078_98ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7629_4078_98ef/request", "", "public", "Top Dataset, std, wspd3.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7629_4078_98ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7629_4078_98ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7629_4078_98ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7629_4078_98ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7629_4078_98ef&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7629_4078_98ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0026_0408_db77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0026_0408_db77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0026_0408_db77/request", "", "public", "Top Dataset, std, wspd3.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0026_0408_db77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0026_0408_db77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0026_0408_db77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0026_0408_db77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0026_0408_db77&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0026_0408_db77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab0f_15f2_4d1d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab0f_15f2_4d1d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab0f_15f2_4d1d/request", "", "public", "Top Dataset, std, wspd3.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab0f_15f2_4d1d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab0f_15f2_4d1d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab0f_15f2_4d1d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab0f_15f2_4d1d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab0f_15f2_4d1d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ab0f_15f2_4d1d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c05_072e_a817", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c05_072e_a817.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c05_072e_a817/request", "", "public", "Top Dataset, std, wspd3.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c05_072e_a817_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c05_072e_a817_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c05_072e_a817/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c05_072e_a817.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c05_072e_a817&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5c05_072e_a817"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_61c5_c01c_b28a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_61c5_c01c_b28a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_61c5_c01c_b28a/request", "", "public", "Top Dataset, std, wspd3.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_61c5_c01c_b28a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_61c5_c01c_b28a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_61c5_c01c_b28a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_61c5_c01c_b28a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_61c5_c01c_b28a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_61c5_c01c_b28a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78d9_0985_2d6f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78d9_0985_2d6f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_78d9_0985_2d6f/request", "", "public", "Top Dataset, std, wspd3.day fraction (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_78d9_0985_2d6f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_78d9_0985_2d6f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_78d9_0985_2d6f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_78d9_0985_2d6f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_78d9_0985_2d6f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_78d9_0985_2d6f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f228_1c37_1620", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f228_1c37_1620.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f228_1c37_1620/request", "", "public", "Top Dataset, std, wspd3.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f228_1c37_1620_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f228_1c37_1620_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f228_1c37_1620/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f228_1c37_1620.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f228_1c37_1620&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f228_1c37_1620"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_401a_26d6_bf0d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_401a_26d6_bf0d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_401a_26d6_bf0d/request", "", "public", "Top Dataset, std, wspd3.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_401a_26d6_bf0d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_401a_26d6_bf0d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_401a_26d6_bf0d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_401a_26d6_bf0d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_401a_26d6_bf0d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_401a_26d6_bf0d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b63c_d2fb_3551", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b63c_d2fb_3551.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b63c_d2fb_3551/request", "", "public", "Top Dataset, std, wspd3.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b63c_d2fb_3551_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b63c_d2fb_3551_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b63c_d2fb_3551/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b63c_d2fb_3551.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b63c_d2fb_3551&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b63c_d2fb_3551"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a22b_a345_e69a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a22b_a345_e69a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a22b_a345_e69a/request", "", "public", "Top Dataset, std, wspd3.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a22b_a345_e69a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a22b_a345_e69a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a22b_a345_e69a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a22b_a345_e69a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a22b_a345_e69a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a22b_a345_e69a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1902_eac3_99a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1902_eac3_99a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1902_eac3_99a6/request", "", "public", "Top Dataset, std, wspd3.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1902_eac3_99a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1902_eac3_99a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1902_eac3_99a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1902_eac3_99a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1902_eac3_99a6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1902_eac3_99a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2240_d525_f728", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2240_d525_f728.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2240_d525_f728/request", "", "public", "Top Dataset, std, wspd3.mean (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2240_d525_f728_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2240_d525_f728_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2240_d525_f728/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2240_d525_f728.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2240_d525_f728&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2240_d525_f728"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3822_f078_b706", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3822_f078_b706.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3822_f078_b706/request", "", "public", "Top Dataset, std, wspd3.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3822_f078_b706_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3822_f078_b706_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3822_f078_b706/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3822_f078_b706.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3822_f078_b706&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3822_f078_b706"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02a7_23a5_12ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02a7_23a5_12ba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_02a7_23a5_12ba/request", "", "public", "Top Dataset, std, wspd3.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_02a7_23a5_12ba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_02a7_23a5_12ba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_02a7_23a5_12ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_02a7_23a5_12ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_02a7_23a5_12ba&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_02a7_23a5_12ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a14_b643_a444", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a14_b643_a444.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a14_b643_a444/request", "", "public", "Top Dataset, std, wspd3.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a14_b643_a444_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a14_b643_a444_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a14_b643_a444/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a14_b643_a444.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a14_b643_a444&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5a14_b643_a444"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e05_731a_7c9e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e05_731a_7c9e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e05_731a_7c9e/request", "", "public", "Top Dataset, std, wspd3.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e05_731a_7c9e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e05_731a_7c9e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e05_731a_7c9e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e05_731a_7c9e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e05_731a_7c9e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0e05_731a_7c9e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_55b6_4cdc_d8af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_55b6_4cdc_d8af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_55b6_4cdc_d8af/request", "", "public", "Top Dataset, std, wspd3.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_55b6_4cdc_d8af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_55b6_4cdc_d8af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_55b6_4cdc_d8af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_55b6_4cdc_d8af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_55b6_4cdc_d8af&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_55b6_4cdc_d8af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd3d_0adb_652e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd3d_0adb_652e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bd3d_0adb_652e/request", "", "public", "Top Dataset, std, wspd3.mean day (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bd3d_0adb_652e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bd3d_0adb_652e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bd3d_0adb_652e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bd3d_0adb_652e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bd3d_0adb_652e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bd3d_0adb_652e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4687_4798_e80c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4687_4798_e80c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4687_4798_e80c/request", "", "public", "Top Dataset, std, wspd3.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4687_4798_e80c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4687_4798_e80c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4687_4798_e80c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4687_4798_e80c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4687_4798_e80c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4687_4798_e80c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3dca_8472_e1e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3dca_8472_e1e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3dca_8472_e1e6/request", "", "public", "Top Dataset, std, wspd3.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3dca_8472_e1e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3dca_8472_e1e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3dca_8472_e1e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3dca_8472_e1e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3dca_8472_e1e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3dca_8472_e1e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2bb_d42d_d7d6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2bb_d42d_d7d6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d2bb_d42d_d7d6/request", "", "public", "Top Dataset, std, wspd3.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d2bb_d42d_d7d6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d2bb_d42d_d7d6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d2bb_d42d_d7d6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d2bb_d42d_d7d6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d2bb_d42d_d7d6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d2bb_d42d_d7d6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f18_1e32_1bda", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f18_1e32_1bda.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6f18_1e32_1bda/request", "", "public", "Top Dataset, std, wspd3.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6f18_1e32_1bda_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6f18_1e32_1bda_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6f18_1e32_1bda/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6f18_1e32_1bda.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6f18_1e32_1bda&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6f18_1e32_1bda"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59f0_ece3_e1f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59f0_ece3_e1f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_59f0_ece3_e1f3/request", "", "public", "Top Dataset, std, wspd3.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_59f0_ece3_e1f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_59f0_ece3_e1f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_59f0_ece3_e1f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_59f0_ece3_e1f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_59f0_ece3_e1f3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_59f0_ece3_e1f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7491_b170_3fe1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7491_b170_3fe1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7491_b170_3fe1/request", "", "public", "Top Dataset, std, wspd3.mean lat (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7491_b170_3fe1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7491_b170_3fe1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7491_b170_3fe1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7491_b170_3fe1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7491_b170_3fe1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7491_b170_3fe1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24cc_1548_9219", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24cc_1548_9219.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_24cc_1548_9219/request", "", "public", "Top Dataset, std, wspd3.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_24cc_1548_9219_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_24cc_1548_9219_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_24cc_1548_9219/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_24cc_1548_9219.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_24cc_1548_9219&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_24cc_1548_9219"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c6a_168d_4f65", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c6a_168d_4f65.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3c6a_168d_4f65/request", "", "public", "Top Dataset, std, wspd3.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3c6a_168d_4f65_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3c6a_168d_4f65_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c6a_168d_4f65/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c6a_168d_4f65.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c6a_168d_4f65&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3c6a_168d_4f65"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d97b_2c05_a5ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d97b_2c05_a5ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d97b_2c05_a5ae/request", "", "public", "Top Dataset, std, wspd3.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d97b_2c05_a5ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d97b_2c05_a5ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d97b_2c05_a5ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d97b_2c05_a5ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d97b_2c05_a5ae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d97b_2c05_a5ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1b1c_1b86_7c1a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1b1c_1b86_7c1a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1b1c_1b86_7c1a/request", "", "public", "Top Dataset, std, wspd3.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1b1c_1b86_7c1a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1b1c_1b86_7c1a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1b1c_1b86_7c1a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1b1c_1b86_7c1a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1b1c_1b86_7c1a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1b1c_1b86_7c1a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0bc7_ca75_868d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0bc7_ca75_868d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0bc7_ca75_868d/request", "", "public", "Top Dataset, std, wspd3.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0bc7_ca75_868d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0bc7_ca75_868d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0bc7_ca75_868d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0bc7_ca75_868d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0bc7_ca75_868d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0bc7_ca75_868d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4992_b415_f85d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4992_b415_f85d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4992_b415_f85d/request", "", "public", "Top Dataset, std, wspd3.mean lon (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4992_b415_f85d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4992_b415_f85d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4992_b415_f85d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4992_b415_f85d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4992_b415_f85d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4992_b415_f85d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43c9_2591_edd7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43c9_2591_edd7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_43c9_2591_edd7/request", "", "public", "Top Dataset, std, wspd3.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_43c9_2591_edd7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_43c9_2591_edd7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_43c9_2591_edd7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_43c9_2591_edd7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_43c9_2591_edd7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_43c9_2591_edd7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a06_6f75_2816", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a06_6f75_2816.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a06_6f75_2816/request", "", "public", "Top Dataset, std, wspd3.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a06_6f75_2816_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a06_6f75_2816_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a06_6f75_2816/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a06_6f75_2816.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a06_6f75_2816&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5a06_6f75_2816"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b146_cc4a_1a69", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b146_cc4a_1a69.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b146_cc4a_1a69/request", "", "public", "Top Dataset, std, wspd3.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b146_cc4a_1a69_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b146_cc4a_1a69_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b146_cc4a_1a69/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b146_cc4a_1a69.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b146_cc4a_1a69&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b146_cc4a_1a69"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59d4_36f5_86c2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59d4_36f5_86c2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_59d4_36f5_86c2/request", "", "public", "Top Dataset, std, wspd3.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_59d4_36f5_86c2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_59d4_36f5_86c2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_59d4_36f5_86c2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_59d4_36f5_86c2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_59d4_36f5_86c2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_59d4_36f5_86c2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3480_69a7_3d37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3480_69a7_3d37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3480_69a7_3d37/request", "", "public", "Top Dataset, std, wspd3.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3480_69a7_3d37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3480_69a7_3d37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3480_69a7_3d37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3480_69a7_3d37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3480_69a7_3d37&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3480_69a7_3d37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edf6_7531_ec82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edf6_7531_ec82.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_edf6_7531_ec82/request", "", "public", "Top Dataset, std, wspd3.nobs (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_edf6_7531_ec82_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_edf6_7531_ec82_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_edf6_7531_ec82/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_edf6_7531_ec82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_edf6_7531_ec82&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_edf6_7531_ec82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4868_5e22_ec79", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4868_5e22_ec79.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4868_5e22_ec79/request", "", "public", "Top Dataset, std, wspd3.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 1st Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4868_5e22_ec79_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4868_5e22_ec79_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4868_5e22_ec79/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4868_5e22_ec79.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4868_5e22_ec79&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4868_5e22_ec79"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1ff_22c2_421b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1ff_22c2_421b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b1ff_22c2_421b/request", "", "public", "Top Dataset, std, wspd3.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 1st Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b1ff_22c2_421b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b1ff_22c2_421b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b1ff_22c2_421b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b1ff_22c2_421b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b1ff_22c2_421b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b1ff_22c2_421b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb75_5b86_14c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb75_5b86_14c5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb75_5b86_14c5/request", "", "public", "Top Dataset, std, wspd3.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 1st Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb75_5b86_14c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb75_5b86_14c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb75_5b86_14c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb75_5b86_14c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb75_5b86_14c5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cb75_5b86_14c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cae0_100b_2a00", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cae0_100b_2a00.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cae0_100b_2a00/request", "", "public", "Top Dataset, std, wspd3.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 1st Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cae0_100b_2a00_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cae0_100b_2a00_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cae0_100b_2a00/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cae0_100b_2a00.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cae0_100b_2a00&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cae0_100b_2a00"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1701_86af_93a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1701_86af_93a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1701_86af_93a7/request", "", "public", "Top Dataset, std, wspd3.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 1st Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1701_86af_93a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1701_86af_93a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1701_86af_93a7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1701_86af_93a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1701_86af_93a7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1701_86af_93a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6e3_624c_846f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6e3_624c_846f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e6e3_624c_846f/request", "", "public", "Top Dataset, std, wspd3.sextile1 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 1st Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e6e3_624c_846f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e6e3_624c_846f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e6e3_624c_846f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e6e3_624c_846f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e6e3_624c_846f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e6e3_624c_846f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aadd_ff2a_ab17", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aadd_ff2a_ab17.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aadd_ff2a_ab17/request", "", "public", "Top Dataset, std, wspd3.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 3rd Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aadd_ff2a_ab17_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aadd_ff2a_ab17_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aadd_ff2a_ab17/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aadd_ff2a_ab17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aadd_ff2a_ab17&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_aadd_ff2a_ab17"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c2ad_5beb_de6e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c2ad_5beb_de6e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c2ad_5beb_de6e/request", "", "public", "Top Dataset, std, wspd3.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 3rd Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c2ad_5beb_de6e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c2ad_5beb_de6e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c2ad_5beb_de6e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c2ad_5beb_de6e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c2ad_5beb_de6e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c2ad_5beb_de6e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca58_ea5c_1fd1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca58_ea5c_1fd1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca58_ea5c_1fd1/request", "", "public", "Top Dataset, std, wspd3.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 3rd Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca58_ea5c_1fd1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca58_ea5c_1fd1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca58_ea5c_1fd1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca58_ea5c_1fd1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca58_ea5c_1fd1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ca58_ea5c_1fd1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cdf7_9ebb_9962", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cdf7_9ebb_9962.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cdf7_9ebb_9962/request", "", "public", "Top Dataset, std, wspd3.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 3rd Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cdf7_9ebb_9962_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cdf7_9ebb_9962_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cdf7_9ebb_9962/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cdf7_9ebb_9962.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cdf7_9ebb_9962&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cdf7_9ebb_9962"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d40_90b3_ca95", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d40_90b3_ca95.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5d40_90b3_ca95/request", "", "public", "Top Dataset, std, wspd3.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 3rd Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5d40_90b3_ca95_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5d40_90b3_ca95_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5d40_90b3_ca95/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5d40_90b3_ca95.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5d40_90b3_ca95&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5d40_90b3_ca95"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7368_e6a4_85a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7368_e6a4_85a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7368_e6a4_85a7/request", "", "public", "Top Dataset, std, wspd3.sextile3 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 3rd Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7368_e6a4_85a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7368_e6a4_85a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7368_e6a4_85a7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7368_e6a4_85a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7368_e6a4_85a7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7368_e6a4_85a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_863d_64b1_9836", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_863d_64b1_9836.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_863d_64b1_9836/request", "", "public", "Top Dataset, std, wspd3.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 5th Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_863d_64b1_9836_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_863d_64b1_9836_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_863d_64b1_9836/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_863d_64b1_9836.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_863d_64b1_9836&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_863d_64b1_9836"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9639_4ad9_6127", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9639_4ad9_6127.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9639_4ad9_6127/request", "", "public", "Top Dataset, std, wspd3.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 5th Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9639_4ad9_6127_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9639_4ad9_6127_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9639_4ad9_6127/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9639_4ad9_6127.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9639_4ad9_6127&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9639_4ad9_6127"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f17e_90d5_5c70", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f17e_90d5_5c70.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f17e_90d5_5c70/request", "", "public", "Top Dataset, std, wspd3.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 5th Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f17e_90d5_5c70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f17e_90d5_5c70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f17e_90d5_5c70/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f17e_90d5_5c70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f17e_90d5_5c70&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f17e_90d5_5c70"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8040_78ad_41b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8040_78ad_41b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8040_78ad_41b0/request", "", "public", "Top Dataset, std, wspd3.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 5th Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8040_78ad_41b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8040_78ad_41b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8040_78ad_41b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8040_78ad_41b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8040_78ad_41b0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8040_78ad_41b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a96a_59cd_fb15", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a96a_59cd_fb15.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a96a_59cd_fb15/request", "", "public", "Top Dataset, std, wspd3.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 5th Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a96a_59cd_fb15_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a96a_59cd_fb15_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a96a_59cd_fb15/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a96a_59cd_fb15.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a96a_59cd_fb15&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a96a_59cd_fb15"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da0b_991a_935b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da0b_991a_935b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da0b_991a_935b/request", "", "public", "Top Dataset, std, wspd3.sextile5 (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 5th Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da0b_991a_935b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da0b_991a_935b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da0b_991a_935b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da0b_991a_935b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da0b_991a_935b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_da0b_991a_935b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d3a_3ac7_7559", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d3a_3ac7_7559.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5d3a_3ac7_7559/request", "", "public", "Top Dataset, std, wspd3.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Standard Deviation at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5d3a_3ac7_7559_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5d3a_3ac7_7559_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5d3a_3ac7_7559/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5d3a_3ac7_7559.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5d3a_3ac7_7559&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5d3a_3ac7_7559"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5093_b6f7_a454", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5093_b6f7_a454.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5093_b6f7_a454/request", "", "public", "Top Dataset, std, wspd3.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Standard Deviation at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5093_b6f7_a454_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5093_b6f7_a454_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5093_b6f7_a454/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5093_b6f7_a454.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5093_b6f7_a454&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5093_b6f7_a454"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4f3_9f4f_bc48", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4f3_9f4f_bc48.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f4f3_9f4f_bc48/request", "", "public", "Top Dataset, std, wspd3.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Standard Deviation at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f4f3_9f4f_bc48_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f4f3_9f4f_bc48_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f4f3_9f4f_bc48/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f4f3_9f4f_bc48.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f4f3_9f4f_bc48&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f4f3_9f4f_bc48"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7fa_637e_ad64", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7fa_637e_ad64.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d7fa_637e_ad64/request", "", "public", "Top Dataset, std, wspd3.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Standard Deviation at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d7fa_637e_ad64_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d7fa_637e_ad64_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d7fa_637e_ad64/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d7fa_637e_ad64.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d7fa_637e_ad64&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d7fa_637e_ad64"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e58_c583_4688", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e58_c583_4688.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6e58_c583_4688/request", "", "public", "Top Dataset, std, wspd3.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Standard Deviation at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6e58_c583_4688_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6e58_c583_4688_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6e58_c583_4688/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6e58_c583_4688.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6e58_c583_4688&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6e58_c583_4688"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdd1_e9eb_0ba6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdd1_e9eb_0ba6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bdd1_e9eb_0ba6/request", "", "public", "Top Dataset, std, wspd3.stddev (ICOADS 2-degree Standard), 2.0\u00b0, 1800-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 2-degree Standard (Top Dataset, std, wspd3.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Standard Deviation at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bdd1_e9eb_0ba6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bdd1_e9eb_0ba6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bdd1_e9eb_0ba6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.2deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bdd1_e9eb_0ba6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bdd1_e9eb_0ba6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bdd1_e9eb_0ba6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_297b_d35b_4d35", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_297b_d35b_4d35.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_297b_d35b_4d35/request", "", "public", "Top Dataset, subsurface, soill.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoill (3-hourly Long Term Mean Liquid Volumetric Soil Moisture (non-frozen) Fraction, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_297b_d35b_4d35_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_297b_d35b_4d35_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_297b_d35b_4d35/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_297b_d35b_4d35.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_297b_d35b_4d35&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_297b_d35b_4d35"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afdf_9d1e_5033", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afdf_9d1e_5033.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_afdf_9d1e_5033/request", "", "public", "Top Dataset, subsurface, soill.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoill (3-hourly Long Term Mean Liquid Volumetric Soil Moisture (non-frozen) Fraction Spread, 1)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_afdf_9d1e_5033_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_afdf_9d1e_5033_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_afdf_9d1e_5033/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_afdf_9d1e_5033.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_afdf_9d1e_5033&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_afdf_9d1e_5033"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1bfc_dc26_3e01", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1bfc_dc26_3e01.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1bfc_dc26_3e01/request", "", "public", "Top Dataset, subsurface, soill.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoill (Daily Long Term Mean Liquid Volumetric Soil Moisture (non-frozen) Fraction, frac.)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1bfc_dc26_3e01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1bfc_dc26_3e01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1bfc_dc26_3e01/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1bfc_dc26_3e01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1bfc_dc26_3e01&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1bfc_dc26_3e01"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_557e_425a_ae3f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_557e_425a_ae3f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_557e_425a_ae3f/request", "", "public", "Top Dataset, subsurface, soill.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoill (Daily Long Term Mean Liquid Volumetric Soil Moisture (non-frozen) Fraction Spread, 1)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_557e_425a_ae3f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_557e_425a_ae3f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_557e_425a_ae3f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_557e_425a_ae3f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_557e_425a_ae3f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_557e_425a_ae3f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c92_0af3_31d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c92_0af3_31d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7c92_0af3_31d9/request", "", "public", "Top Dataset, subsurface, soill.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoill (Long Term Mean Monthly Liquid Volumetric Soil Moisture (non-frozen) Fraction, frac.)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7c92_0af3_31d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7c92_0af3_31d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7c92_0af3_31d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7c92_0af3_31d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7c92_0af3_31d9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7c92_0af3_31d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f539_d9fe_33ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f539_d9fe_33ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f539_d9fe_33ca/request", "", "public", "Top Dataset, subsurface, soill.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoill (Long Term Mean Monthly Liquid Volumetric Soil Moisture (non-frozen) Fraction Spread, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f539_d9fe_33ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f539_d9fe_33ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f539_d9fe_33ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f539_d9fe_33ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f539_d9fe_33ca&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f539_d9fe_33ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7163_bee3_8a0f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7163_bee3_8a0f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7163_bee3_8a0f/request", "", "public", "Top Dataset, subsurface, soill.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoill (Monthly Long Term Liquid Volumetric Soil Moisture (non-frozen) Fraction, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7163_bee3_8a0f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7163_bee3_8a0f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7163_bee3_8a0f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7163_bee3_8a0f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7163_bee3_8a0f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7163_bee3_8a0f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8366_8bf5_ca48", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8366_8bf5_ca48.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8366_8bf5_ca48/request", "", "public", "Top Dataset, subsurface, soill.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoill (Monthly Long Term Liquid Volumetric Soil Moisture (non-frozen) Fraction Spread, 1)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8366_8bf5_ca48_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8366_8bf5_ca48_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8366_8bf5_ca48/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8366_8bf5_ca48.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8366_8bf5_ca48&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8366_8bf5_ca48"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4798_0ee5_720a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4798_0ee5_720a.graph", "", "", "public", "Top Dataset, subsurface, soill.mon.mean (NARR Monthly Means) [time][level][y][x], 1979-present", "NARR Monthly Means (Top Dataset, subsurface, soill.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nsoill (Monthly Liquid Volumetric Soil Moisture (non-frozen) Fraction, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4798_0ee5_720a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4798_0ee5_720a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4798_0ee5_720a&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_4798_0ee5_720a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a46e_13f6_3c2e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a46e_13f6_3c2e.graph", "", "", "public", "Top Dataset, subsurface, soill.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, subsurface, soill.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a46e_13f6_3c2e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a46e_13f6_3c2e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a46e_13f6_3c2e&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a46e_13f6_3c2e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a40_a65b_127c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a40_a65b_127c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1a40_a65b_127c/request", "", "public", "Top Dataset, subsurface, soilw.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoilw (3-hourly Long Term Mean Volumetric Soil Moisture Spread, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1a40_a65b_127c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1a40_a65b_127c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1a40_a65b_127c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1a40_a65b_127c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1a40_a65b_127c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1a40_a65b_127c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70d0_1d6f_c627", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70d0_1d6f_c627.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_70d0_1d6f_c627/request", "", "public", "Top Dataset, subsurface, soilw.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoilw (3-hourly Long Term Mean Soil Moisture Content, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_70d0_1d6f_c627_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_70d0_1d6f_c627_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_70d0_1d6f_c627/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_70d0_1d6f_c627.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_70d0_1d6f_c627&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_70d0_1d6f_c627"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3086_9617_bfdb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3086_9617_bfdb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3086_9617_bfdb/request", "", "public", "Top Dataset, subsurface, soilw.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoilw (Daily Long Term Mean Volumetric Soil Moisture Spread, frac.)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3086_9617_bfdb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3086_9617_bfdb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3086_9617_bfdb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3086_9617_bfdb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3086_9617_bfdb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3086_9617_bfdb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37bf_036d_ad33", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37bf_036d_ad33.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_37bf_036d_ad33/request", "", "public", "Top Dataset, subsurface, soilw.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoilw (Daily Long Term Mean Volumetric Soil Moisture, frac.)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_37bf_036d_ad33_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_37bf_036d_ad33_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_37bf_036d_ad33/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_37bf_036d_ad33.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_37bf_036d_ad33&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_37bf_036d_ad33"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f94_303d_3c2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f94_303d_3c2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f94_303d_3c2f/request", "", "public", "Top Dataset, subsurface, soilw.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoilw (Long Term Mean Monthly Soil Moisture Content, frac.)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f94_303d_3c2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f94_303d_3c2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f94_303d_3c2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f94_303d_3c2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f94_303d_3c2f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1f94_303d_3c2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_42fc_0763_a8ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_42fc_0763_a8ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_42fc_0763_a8ee/request", "", "public", "Top Dataset, subsurface, soilw.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoilw (Long Term Mean Monthly Volumetric Soil Moisture Spread, frac.)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_42fc_0763_a8ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_42fc_0763_a8ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_42fc_0763_a8ee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_42fc_0763_a8ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_42fc_0763_a8ee&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_42fc_0763_a8ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3973_4aeb_b38d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3973_4aeb_b38d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3973_4aeb_b38d/request", "", "public", "Top Dataset, subsurface, soilw.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoilw (Monthly Long Term Volumetric Soil Moisture, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3973_4aeb_b38d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3973_4aeb_b38d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3973_4aeb_b38d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3973_4aeb_b38d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3973_4aeb_b38d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3973_4aeb_b38d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0a9_0a27_3350", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0a9_0a27_3350.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f0a9_0a27_3350/request", "", "public", "Top Dataset, subsurface, soilw.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsoilw (Monthly Long Term Volumetric Soil Moisture Spread, frac.)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f0a9_0a27_3350_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f0a9_0a27_3350_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f0a9_0a27_3350/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f0a9_0a27_3350.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f0a9_0a27_3350&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f0a9_0a27_3350"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bc2_b0a1_b30a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bc2_b0a1_b30a.graph", "", "", "public", "Top Dataset, subsurface, soilw.mon.mean (NARR Monthly Means) [time][level][y][x], 1979-present", "NARR Monthly Means (Top Dataset, subsurface, soilw.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nsoilw (Monthly Volumetric Soil Moisture (frozen + liquid) Fraction, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9bc2_b0a1_b30a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9bc2_b0a1_b30a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9bc2_b0a1_b30a&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_9bc2_b0a1_b30a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cba6_5f2a_30d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cba6_5f2a_30d5.graph", "", "", "public", "Top Dataset, subsurface, soilw.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, subsurface, soilw.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cba6_5f2a_30d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cba6_5f2a_30d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cba6_5f2a_30d5&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_cba6_5f2a_30d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fdd_8f6d_a5dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fdd_8f6d_a5dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8fdd_8f6d_a5dc/request", "", "public", "Top Dataset, subsurface, tsoil.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (3-hourly Long Term Mean Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8fdd_8f6d_a5dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8fdd_8f6d_a5dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8fdd_8f6d_a5dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8fdd_8f6d_a5dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8fdd_8f6d_a5dc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8fdd_8f6d_a5dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b17d_add9_395f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b17d_add9_395f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b17d_add9_395f/request", "", "public", "Top Dataset, subsurface, tsoil.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (3-hourly Long Term Mean Soil Temperature Spread, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b17d_add9_395f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b17d_add9_395f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b17d_add9_395f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b17d_add9_395f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b17d_add9_395f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b17d_add9_395f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_426e_854f_426b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_426e_854f_426b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_426e_854f_426b/request", "", "public", "Top Dataset, subsurface, tsoil.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Daily Long Term Mean Soil Temperature Spread, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_426e_854f_426b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_426e_854f_426b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_426e_854f_426b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_426e_854f_426b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_426e_854f_426b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_426e_854f_426b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d3e_9d34_dad5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d3e_9d34_dad5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5d3e_9d34_dad5/request", "", "public", "Top Dataset, subsurface, tsoil.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Daily Long Term Mean Soil Temperature, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5d3e_9d34_dad5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5d3e_9d34_dad5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5d3e_9d34_dad5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5d3e_9d34_dad5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5d3e_9d34_dad5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5d3e_9d34_dad5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02d9_08d2_ada6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02d9_08d2_ada6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_02d9_08d2_ada6/request", "", "public", "Top Dataset, subsurface, tsoil.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Long Term Mean Monthly Soil Temperature, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_02d9_08d2_ada6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_02d9_08d2_ada6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_02d9_08d2_ada6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_02d9_08d2_ada6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_02d9_08d2_ada6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_02d9_08d2_ada6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c38_3b30_f407", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c38_3b30_f407.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c38_3b30_f407/request", "", "public", "Top Dataset, subsurface, tsoil.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Long Term Mean Monthly Soil Temperature Spread, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c38_3b30_f407_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c38_3b30_f407_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c38_3b30_f407/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c38_3b30_f407.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c38_3b30_f407&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0c38_3b30_f407"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8001_d023_7d7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8001_d023_7d7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8001_d023_7d7b/request", "", "public", "Top Dataset, subsurface, tsoil.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Long Term Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8001_d023_7d7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8001_d023_7d7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8001_d023_7d7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8001_d023_7d7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8001_d023_7d7b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8001_d023_7d7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5ef_11b6_df5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5ef_11b6_df5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5ef_11b6_df5f/request", "", "public", "Top Dataset, subsurface, tsoil.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Long Term Soil Temperature Spread, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5ef_11b6_df5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5ef_11b6_df5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5ef_11b6_df5f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5ef_11b6_df5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5ef_11b6_df5f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c5ef_11b6_df5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfc5_c3f5_62a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfc5_c3f5_62a7.graph", "", "", "public", "Top Dataset, subsurface, tsoil.mon.mean (NARR Monthly Means) [time][level][y][x], 1979-present", "NARR Monthly Means (Top Dataset, subsurface, tsoil.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\ntsoil (Monthly Soil Temperature, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bfc5_c3f5_62a7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bfc5_c3f5_62a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bfc5_c3f5_62a7&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_bfc5_c3f5_62a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_47a4_65b9_0c60", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_47a4_65b9_0c60.graph", "", "", "public", "Top Dataset, subsurface, tsoil.mon.mean (NARR Monthly Means) [y][x]", "NARR Monthly Means (Top Dataset, subsurface, tsoil.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [y][x]):\nlat (Latitude, degrees_north)\nlon (Longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_47a4_65b9_0c60/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_47a4_65b9_0c60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_47a4_65b9_0c60&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_47a4_65b9_0c60"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_76bf_67a7_3073", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_76bf_67a7_3073.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_76bf_67a7_3073/request", "", "public", "Top Dataset, surface gauss, air.2m.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 4xDaily Air temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_76bf_67a7_3073_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_76bf_67a7_3073_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_76bf_67a7_3073/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_76bf_67a7_3073.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_76bf_67a7_3073&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_76bf_67a7_3073"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f412_4d51_6511", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f412_4d51_6511.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f412_4d51_6511/request", "", "public", "Top Dataset, surface gauss, air.2m.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 4xDaily Air temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f412_4d51_6511_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f412_4d51_6511_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f412_4d51_6511/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f412_4d51_6511.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f412_4d51_6511&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f412_4d51_6511"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17ec_3190_e5bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17ec_3190_e5bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_17ec_3190_e5bf/request", "", "public", "Top Dataset, surface gauss, air.2m.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (mean Long Term Mean Daily Air temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_17ec_3190_e5bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_17ec_3190_e5bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_17ec_3190_e5bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_17ec_3190_e5bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_17ec_3190_e5bf&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_17ec_3190_e5bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_417b_e85d_5abd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_417b_e85d_5abd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_417b_e85d_5abd/request", "", "public", "Top Dataset, surface gauss, air.2m.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (mean Long Term Mean Daily Air temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_417b_e85d_5abd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_417b_e85d_5abd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_417b_e85d_5abd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_417b_e85d_5abd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_417b_e85d_5abd&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_417b_e85d_5abd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db19_93fb_0c7f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db19_93fb_0c7f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db19_93fb_0c7f/request", "", "public", "Top Dataset, surface gauss, air.2m.mon.1981-2010.ltm (mean daily NMC reanalysis (1958)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1958). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Mean of Air Temperature, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db19_93fb_0c7f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db19_93fb_0c7f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db19_93fb_0c7f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db19_93fb_0c7f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db19_93fb_0c7f&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_db19_93fb_0c7f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e21_865b_d2c2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e21_865b_d2c2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6e21_865b_d2c2/request", "", "public", "Top Dataset, surface gauss, air.2m.mon.ltm (mean daily NMC reanalysis (1958)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1958). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Mean of Air Temperature, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6e21_865b_d2c2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6e21_865b_d2c2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6e21_865b_d2c2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6e21_865b_d2c2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6e21_865b_d2c2&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6e21_865b_d2c2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91db_e9c2_a1f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91db_e9c2_a1f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_91db_e9c2_a1f0/request", "", "public", "Top Dataset, surface gauss, cfnlf.mon.ltm (Monthly Mean NMC reanalysis), 0001", "Monthly Mean National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncfnlf (Monthly Long Term Mean of Cloud Forcing Net Longwave Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_91db_e9c2_a1f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_91db_e9c2_a1f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_91db_e9c2_a1f0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_91db_e9c2_a1f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_91db_e9c2_a1f0&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_91db_e9c2_a1f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c7e_d04f_2eac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c7e_d04f_2eac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4c7e_d04f_2eac/request", "", "public", "Top Dataset, surface gauss, cfnlf.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncfnlf (Long Term Mean 4xDaily Cloud Forcing Net Longwave Flux at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4c7e_d04f_2eac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4c7e_d04f_2eac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c7e_d04f_2eac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c7e_d04f_2eac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c7e_d04f_2eac&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_4c7e_d04f_2eac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e468_497a_33c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e468_497a_33c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e468_497a_33c3/request", "", "public", "Top Dataset, surface gauss, cfnlf.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncfnlf (Long Term Mean 4xDaily Cloud Forcing Net Longwave Flux at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e468_497a_33c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e468_497a_33c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e468_497a_33c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e468_497a_33c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e468_497a_33c3&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e468_497a_33c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b5a_5622_76e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b5a_5622_76e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b5a_5622_76e0/request", "", "public", "Top Dataset, surface gauss, cfnlf.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncfnlf (mean Long Term Mean Daily Cloud Forcing Net Longwave Flux at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b5a_5622_76e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b5a_5622_76e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b5a_5622_76e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b5a_5622_76e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b5a_5622_76e0&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7b5a_5622_76e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1545_0170_e471", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1545_0170_e471.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1545_0170_e471/request", "", "public", "Top Dataset, surface gauss, cfnlf.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncfnlf (mean Long Term Mean Daily Cloud Forcing Net Longwave Flux at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1545_0170_e471_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1545_0170_e471_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1545_0170_e471/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1545_0170_e471.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1545_0170_e471&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_1545_0170_e471"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3111_6582_274b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3111_6582_274b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3111_6582_274b/request", "", "public", "Top Dataset, surface gauss, cfnlf.sfc.mon.1981-2010.ltm (Monthly Mean NMC reanalysis), 0001", "Monthly Mean National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncfnlf (Monthly Long Term Mean of Cloud Forcing Net Longwave Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3111_6582_274b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3111_6582_274b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3111_6582_274b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3111_6582_274b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3111_6582_274b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_3111_6582_274b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_030c_529c_dafd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_030c_529c_dafd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_030c_529c_dafd/request", "", "public", "Top Dataset, surface gauss, cfnlf.sfc.mon.ltm (Monthly Mean NMC reanalysis), 0001", "Monthly Mean National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncfnlf (Monthly Long Term Mean of Cloud Forcing Net Longwave Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_030c_529c_dafd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_030c_529c_dafd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_030c_529c_dafd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_030c_529c_dafd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_030c_529c_dafd&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_030c_529c_dafd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_23f6_f4f9_be59", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_23f6_f4f9_be59.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_23f6_f4f9_be59/request", "", "public", "Top Dataset, surface gauss, cfnsf.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncfnsf (Long Term Mean 4xDaily Cloud Forcing Net Solar Flux at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_23f6_f4f9_be59_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_23f6_f4f9_be59_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_23f6_f4f9_be59/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_23f6_f4f9_be59.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_23f6_f4f9_be59&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_23f6_f4f9_be59"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f073_5acf_c2e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f073_5acf_c2e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f073_5acf_c2e6/request", "", "public", "Top Dataset, surface gauss, cfnsf.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncfnsf (Long Term Mean 4xDaily Cloud Forcing Net Solar Flux at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f073_5acf_c2e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f073_5acf_c2e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f073_5acf_c2e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f073_5acf_c2e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f073_5acf_c2e6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f073_5acf_c2e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1aff_8e8d_ee2b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1aff_8e8d_ee2b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1aff_8e8d_ee2b/request", "", "public", "Top Dataset, surface gauss, cfnsf.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncfnsf (mean Long Term Mean Daily Cloud Forcing Net Solar Flux at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1aff_8e8d_ee2b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1aff_8e8d_ee2b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1aff_8e8d_ee2b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1aff_8e8d_ee2b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1aff_8e8d_ee2b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_1aff_8e8d_ee2b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f1d_af4f_ca18", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f1d_af4f_ca18.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6f1d_af4f_ca18/request", "", "public", "Top Dataset, surface gauss, cfnsf.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncfnsf (mean Long Term Mean Daily Cloud Forcing Net Solar Flux at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6f1d_af4f_ca18_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6f1d_af4f_ca18_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6f1d_af4f_ca18/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6f1d_af4f_ca18.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6f1d_af4f_ca18&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6f1d_af4f_ca18"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e04_3b73_fa28", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e04_3b73_fa28.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e04_3b73_fa28/request", "", "public", "Top Dataset, surface gauss, cfnsf.sfc.mon.1981-2010.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncfnsf (Monthly Long Term Mean Cloud Forcing Net Solar Flux at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e04_3b73_fa28_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e04_3b73_fa28_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e04_3b73_fa28/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e04_3b73_fa28.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e04_3b73_fa28&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9e04_3b73_fa28"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf1e_fe45_1519", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf1e_fe45_1519.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf1e_fe45_1519/request", "", "public", "Top Dataset, surface gauss, cfnsf.sfc.mon.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncfnsf (Monthly Long Term Mean Cloud Forcing Net Solar Flux at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf1e_fe45_1519_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf1e_fe45_1519_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf1e_fe45_1519/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf1e_fe45_1519.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf1e_fe45_1519&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_bf1e_fe45_1519"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2947_5682_b5ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2947_5682_b5ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2947_5682_b5ac/request", "", "public", "Top Dataset, surface gauss, cprat.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (Long Term Mean 4xDaily Convective Precipitation Rate at surface, Kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2947_5682_b5ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2947_5682_b5ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2947_5682_b5ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2947_5682_b5ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2947_5682_b5ac&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2947_5682_b5ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_90f1_eccb_62af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_90f1_eccb_62af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_90f1_eccb_62af/request", "", "public", "Top Dataset, surface gauss, cprat.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (Long Term Mean 4xDaily Convective Precipitation Rate at surface, Kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_90f1_eccb_62af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_90f1_eccb_62af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_90f1_eccb_62af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_90f1_eccb_62af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_90f1_eccb_62af&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_90f1_eccb_62af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_669c_3cd9_5363", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_669c_3cd9_5363.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_669c_3cd9_5363/request", "", "public", "Top Dataset, surface gauss, cprat.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (mean Long Term Mean Daily Convective Precipitation Rate at surface, Kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_669c_3cd9_5363_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_669c_3cd9_5363_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_669c_3cd9_5363/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_669c_3cd9_5363.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_669c_3cd9_5363&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_669c_3cd9_5363"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dccc_4226_d68c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dccc_4226_d68c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dccc_4226_d68c/request", "", "public", "Top Dataset, surface gauss, cprat.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (mean Long Term Mean Daily Convective Precipitation Rate at surface, Kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dccc_4226_d68c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dccc_4226_d68c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dccc_4226_d68c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dccc_4226_d68c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dccc_4226_d68c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_dccc_4226_d68c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a84d_2a6b_74b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a84d_2a6b_74b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a84d_2a6b_74b5/request", "", "public", "Top Dataset, surface gauss, cprat.sfc.mon.1981-2010.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (Monthly Long Term Mean Convective Precipitation Rate at surface, Kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a84d_2a6b_74b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a84d_2a6b_74b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a84d_2a6b_74b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a84d_2a6b_74b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a84d_2a6b_74b5&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a84d_2a6b_74b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92dd_5869_93db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92dd_5869_93db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_92dd_5869_93db/request", "", "public", "Top Dataset, surface gauss, cprat.sfc.mon.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (Monthly Long Term Mean Convective Precipitation Rate at surface, Kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_92dd_5869_93db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_92dd_5869_93db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_92dd_5869_93db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_92dd_5869_93db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_92dd_5869_93db&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_92dd_5869_93db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f65_e9bd_88ad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f65_e9bd_88ad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f65_e9bd_88ad/request", "", "public", "Top Dataset, surface gauss, csdlf.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsdlf (Monthly Long Term Mean of Clear Sky Downward Longwave Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f65_e9bd_88ad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f65_e9bd_88ad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f65_e9bd_88ad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f65_e9bd_88ad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f65_e9bd_88ad&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7f65_e9bd_88ad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3460_c2c0_0c71", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3460_c2c0_0c71.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3460_c2c0_0c71/request", "", "public", "Top Dataset, surface gauss, csdlf.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsdlf (Long Term Mean 4xDaily Clear Sky Downward Longwave Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3460_c2c0_0c71_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3460_c2c0_0c71_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3460_c2c0_0c71/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3460_c2c0_0c71.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3460_c2c0_0c71&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_3460_c2c0_0c71"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0abb_75c2_2b1f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0abb_75c2_2b1f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0abb_75c2_2b1f/request", "", "public", "Top Dataset, surface gauss, csdlf.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsdlf (Long Term Mean 4xDaily Clear Sky Downward Longwave Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0abb_75c2_2b1f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0abb_75c2_2b1f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0abb_75c2_2b1f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0abb_75c2_2b1f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0abb_75c2_2b1f&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0abb_75c2_2b1f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10a5_22cd_c6e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10a5_22cd_c6e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_10a5_22cd_c6e5/request", "", "public", "Top Dataset, surface gauss, csdlf.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsdlf (mean Long Term Mean Daily Clear Sky Downward Longwave Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_10a5_22cd_c6e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_10a5_22cd_c6e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_10a5_22cd_c6e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_10a5_22cd_c6e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_10a5_22cd_c6e5&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_10a5_22cd_c6e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21e8_43fc_62c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21e8_43fc_62c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_21e8_43fc_62c6/request", "", "public", "Top Dataset, surface gauss, csdlf.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsdlf (mean Long Term Mean Daily Clear Sky Downward Longwave Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_21e8_43fc_62c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_21e8_43fc_62c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_21e8_43fc_62c6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_21e8_43fc_62c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_21e8_43fc_62c6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_21e8_43fc_62c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_637a_11a6_4c72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_637a_11a6_4c72.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_637a_11a6_4c72/request", "", "public", "Top Dataset, surface gauss, csdlf.sfc.mon.1981-2010.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsdlf (Monthly Long Term Mean of Clear Sky Downward Longwave Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_637a_11a6_4c72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_637a_11a6_4c72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_637a_11a6_4c72/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_637a_11a6_4c72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_637a_11a6_4c72&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_637a_11a6_4c72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9987_5964_ea71", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9987_5964_ea71.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9987_5964_ea71/request", "", "public", "Top Dataset, surface gauss, csdlf.sfc.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsdlf (Monthly Long Term Mean of Clear Sky Downward Longwave Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9987_5964_ea71_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9987_5964_ea71_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9987_5964_ea71/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9987_5964_ea71.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9987_5964_ea71&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9987_5964_ea71"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7585_c09e_3dfb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7585_c09e_3dfb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7585_c09e_3dfb/request", "", "public", "Top Dataset, surface gauss, csdsf.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsdsf (Monthly Long Term Mean of Clear Sky Downward Solar Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7585_c09e_3dfb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7585_c09e_3dfb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7585_c09e_3dfb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7585_c09e_3dfb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7585_c09e_3dfb&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7585_c09e_3dfb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d3a_2256_8b02", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d3a_2256_8b02.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d3a_2256_8b02/request", "", "public", "Top Dataset, surface gauss, csdsf.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsdsf (Long Term Mean 4xDaily Clear Sky Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d3a_2256_8b02_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d3a_2256_8b02_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d3a_2256_8b02/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d3a_2256_8b02.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d3a_2256_8b02&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_3d3a_2256_8b02"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6871_4758_265c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6871_4758_265c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6871_4758_265c/request", "", "public", "Top Dataset, surface gauss, csdsf.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsdsf (Long Term Mean 4xDaily Clear Sky Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6871_4758_265c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6871_4758_265c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6871_4758_265c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6871_4758_265c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6871_4758_265c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6871_4758_265c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e483_d33e_07b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e483_d33e_07b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e483_d33e_07b0/request", "", "public", "Top Dataset, surface gauss, csdsf.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsdsf (mean Long Term Mean Daily Clear Sky Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e483_d33e_07b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e483_d33e_07b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e483_d33e_07b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e483_d33e_07b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e483_d33e_07b0&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e483_d33e_07b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6c6_34d2_e38b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6c6_34d2_e38b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e6c6_34d2_e38b/request", "", "public", "Top Dataset, surface gauss, csdsf.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsdsf (mean Long Term Mean Daily Clear Sky Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e6c6_34d2_e38b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e6c6_34d2_e38b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e6c6_34d2_e38b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e6c6_34d2_e38b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e6c6_34d2_e38b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e6c6_34d2_e38b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f90a_111d_1fe8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f90a_111d_1fe8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f90a_111d_1fe8/request", "", "public", "Top Dataset, surface gauss, csdsf.sfc.mon.1981-2010.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsdsf (Monthly Long Term Mean of Clear Sky Downward Solar Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f90a_111d_1fe8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f90a_111d_1fe8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f90a_111d_1fe8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f90a_111d_1fe8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f90a_111d_1fe8&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f90a_111d_1fe8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bed0_809d_5ab1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bed0_809d_5ab1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bed0_809d_5ab1/request", "", "public", "Top Dataset, surface gauss, csdsf.sfc.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsdsf (Monthly Long Term Mean of Clear Sky Downward Solar Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bed0_809d_5ab1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bed0_809d_5ab1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bed0_809d_5ab1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bed0_809d_5ab1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bed0_809d_5ab1&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_bed0_809d_5ab1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c679_a851_22c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c679_a851_22c9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c679_a851_22c9/request", "", "public", "Top Dataset, surface gauss, csusf.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsusf (Monthly Long Term Mean of Clear Sky Upward Solar Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c679_a851_22c9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c679_a851_22c9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c679_a851_22c9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c679_a851_22c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c679_a851_22c9&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c679_a851_22c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca5a_c52d_d79d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca5a_c52d_d79d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca5a_c52d_d79d/request", "", "public", "Top Dataset, surface gauss, csusf.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsusf (Long Term Mean 4xDaily Clear Sky Upward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca5a_c52d_d79d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca5a_c52d_d79d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca5a_c52d_d79d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca5a_c52d_d79d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca5a_c52d_d79d&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_ca5a_c52d_d79d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b157_cdae_00da", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b157_cdae_00da.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b157_cdae_00da/request", "", "public", "Top Dataset, surface gauss, csusf.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsusf (Long Term Mean 4xDaily Clear Sky Upward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b157_cdae_00da_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b157_cdae_00da_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b157_cdae_00da/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b157_cdae_00da.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b157_cdae_00da&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b157_cdae_00da"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a923_5a72_a9e9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a923_5a72_a9e9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a923_5a72_a9e9/request", "", "public", "Top Dataset, surface gauss, csusf.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsusf (mean Long Term Mean Daily Clear Sky Upward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a923_5a72_a9e9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a923_5a72_a9e9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a923_5a72_a9e9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a923_5a72_a9e9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a923_5a72_a9e9&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a923_5a72_a9e9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41f0_15f5_e254", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41f0_15f5_e254.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_41f0_15f5_e254/request", "", "public", "Top Dataset, surface gauss, csusf.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsusf (mean Long Term Mean Daily Clear Sky Upward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_41f0_15f5_e254_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_41f0_15f5_e254_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_41f0_15f5_e254/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_41f0_15f5_e254.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_41f0_15f5_e254&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_41f0_15f5_e254"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc2f_7a62_47df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc2f_7a62_47df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc2f_7a62_47df/request", "", "public", "Top Dataset, surface gauss, csusf.sfc.mon.1981-2010.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsusf (Monthly Long Term Mean of Clear Sky Upward Solar Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc2f_7a62_47df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc2f_7a62_47df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc2f_7a62_47df/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc2f_7a62_47df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc2f_7a62_47df&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_fc2f_7a62_47df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37ad_79ba_dba2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37ad_79ba_dba2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_37ad_79ba_dba2/request", "", "public", "Top Dataset, surface gauss, csusf.sfc.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncsusf (Monthly Long Term Mean of Clear Sky Upward Solar Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_37ad_79ba_dba2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_37ad_79ba_dba2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_37ad_79ba_dba2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_37ad_79ba_dba2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_37ad_79ba_dba2&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_37ad_79ba_dba2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ae1_96ff_0a4b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ae1_96ff_0a4b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ae1_96ff_0a4b/request", "", "public", "Top Dataset, surface gauss, dlwrf.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (Long Term Mean 4xDaily Downward Longwave Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ae1_96ff_0a4b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ae1_96ff_0a4b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ae1_96ff_0a4b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ae1_96ff_0a4b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ae1_96ff_0a4b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7ae1_96ff_0a4b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b553_fbd9_3623", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b553_fbd9_3623.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b553_fbd9_3623/request", "", "public", "Top Dataset, surface gauss, dlwrf.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (Long Term Mean 4xDaily Downward Longwave Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b553_fbd9_3623_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b553_fbd9_3623_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b553_fbd9_3623/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b553_fbd9_3623.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b553_fbd9_3623&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b553_fbd9_3623"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_67bb_88fa_35d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_67bb_88fa_35d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_67bb_88fa_35d7/request", "", "public", "Top Dataset, surface gauss, dlwrf.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (mean Long Term Mean Daily Downward Longwave Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_67bb_88fa_35d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_67bb_88fa_35d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_67bb_88fa_35d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_67bb_88fa_35d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_67bb_88fa_35d7&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_67bb_88fa_35d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_497d_c229_7415", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_497d_c229_7415.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_497d_c229_7415/request", "", "public", "Top Dataset, surface gauss, dlwrf.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (mean Long Term Mean Daily Downward Longwave Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_497d_c229_7415_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_497d_c229_7415_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_497d_c229_7415/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_497d_c229_7415.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_497d_c229_7415&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_497d_c229_7415"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2891_8618_006c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2891_8618_006c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2891_8618_006c/request", "", "public", "Top Dataset, surface gauss, dlwrf.sfc.mon.1981-2010.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (Monthly Long Term Mean Downward Longwave Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2891_8618_006c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2891_8618_006c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2891_8618_006c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2891_8618_006c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2891_8618_006c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2891_8618_006c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afd2_c46b_3f44", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afd2_c46b_3f44.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_afd2_c46b_3f44/request", "", "public", "Top Dataset, surface gauss, dlwrf.sfc.mon.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (Monthly Long Term Mean Downward Longwave Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_afd2_c46b_3f44_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_afd2_c46b_3f44_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_afd2_c46b_3f44/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_afd2_c46b_3f44.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_afd2_c46b_3f44&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_afd2_c46b_3f44"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f64f_ea52_cc69", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f64f_ea52_cc69.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f64f_ea52_cc69/request", "", "public", "Top Dataset, surface gauss, dswrf.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Long Term Mean 4xDaily Downward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f64f_ea52_cc69_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f64f_ea52_cc69_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f64f_ea52_cc69/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f64f_ea52_cc69.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f64f_ea52_cc69&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f64f_ea52_cc69"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2962_6d5c_a6c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2962_6d5c_a6c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2962_6d5c_a6c6/request", "", "public", "Top Dataset, surface gauss, dswrf.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Long Term Mean 4xDaily Downward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2962_6d5c_a6c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2962_6d5c_a6c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2962_6d5c_a6c6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2962_6d5c_a6c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2962_6d5c_a6c6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2962_6d5c_a6c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9f6_038d_1866", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9f6_038d_1866.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c9f6_038d_1866/request", "", "public", "Top Dataset, surface gauss, dswrf.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (mean Long Term Mean Daily Downward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c9f6_038d_1866_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c9f6_038d_1866_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c9f6_038d_1866/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c9f6_038d_1866.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c9f6_038d_1866&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c9f6_038d_1866"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c073_e8a1_8011", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c073_e8a1_8011.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c073_e8a1_8011/request", "", "public", "Top Dataset, surface gauss, dswrf.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (mean Long Term Mean Daily Downward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c073_e8a1_8011_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c073_e8a1_8011_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c073_e8a1_8011/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c073_e8a1_8011.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c073_e8a1_8011&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c073_e8a1_8011"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dca_7c63_dbc2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dca_7c63_dbc2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4dca_7c63_dbc2/request", "", "public", "Top Dataset, surface gauss, dswrf.sfc.mon.1981-2010.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Monthly Long Term Mean Downward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4dca_7c63_dbc2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4dca_7c63_dbc2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4dca_7c63_dbc2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4dca_7c63_dbc2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4dca_7c63_dbc2&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_4dca_7c63_dbc2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eec9_3051_7878", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eec9_3051_7878.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eec9_3051_7878/request", "", "public", "Top Dataset, surface gauss, dswrf.sfc.mon.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Monthly Long Term Mean Downward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eec9_3051_7878_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eec9_3051_7878_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eec9_3051_7878/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eec9_3051_7878.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eec9_3051_7878&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_eec9_3051_7878"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a654_238c_6946", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a654_238c_6946.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a654_238c_6946/request", "", "public", "Top Dataset, surface gauss, gflux.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Monthly Long Term Mean of Ground Heat Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a654_238c_6946_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a654_238c_6946_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a654_238c_6946/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a654_238c_6946.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a654_238c_6946&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a654_238c_6946"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f22_d627_c422", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f22_d627_c422.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f22_d627_c422/request", "", "public", "Top Dataset, surface gauss, gflux.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Long Term Mean 4xDaily Ground Heat Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f22_d627_c422_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f22_d627_c422_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f22_d627_c422/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f22_d627_c422.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f22_d627_c422&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0f22_d627_c422"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9638_c1ed_ac61", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9638_c1ed_ac61.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9638_c1ed_ac61/request", "", "public", "Top Dataset, surface gauss, gflux.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Long Term Mean 4xDaily Ground Heat Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9638_c1ed_ac61_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9638_c1ed_ac61_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9638_c1ed_ac61/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9638_c1ed_ac61.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9638_c1ed_ac61&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9638_c1ed_ac61"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8880_9a6f_c5ed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8880_9a6f_c5ed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8880_9a6f_c5ed/request", "", "public", "Top Dataset, surface gauss, gflux.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (mean Long Term Mean Daily Ground Heat Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8880_9a6f_c5ed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8880_9a6f_c5ed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8880_9a6f_c5ed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8880_9a6f_c5ed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8880_9a6f_c5ed&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8880_9a6f_c5ed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc21_58ba_2b42", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc21_58ba_2b42.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc21_58ba_2b42/request", "", "public", "Top Dataset, surface gauss, gflux.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (mean Long Term Mean Daily Ground Heat Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc21_58ba_2b42_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc21_58ba_2b42_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc21_58ba_2b42/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc21_58ba_2b42.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc21_58ba_2b42&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_cc21_58ba_2b42"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_659a_718a_3795", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_659a_718a_3795.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_659a_718a_3795/request", "", "public", "Top Dataset, surface gauss, gflux.sfc.mon.1981-2010.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Monthly Long Term Mean of Ground Heat Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_659a_718a_3795_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_659a_718a_3795_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_659a_718a_3795/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_659a_718a_3795.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_659a_718a_3795&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_659a_718a_3795"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f51_a1fb_988e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f51_a1fb_988e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f51_a1fb_988e/request", "", "public", "Top Dataset, surface gauss, gflux.sfc.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Monthly Long Term Mean of Ground Heat Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f51_a1fb_988e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f51_a1fb_988e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f51_a1fb_988e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f51_a1fb_988e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f51_a1fb_988e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2f51_a1fb_988e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a52f_a6e7_1614", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a52f_a6e7_1614.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a52f_a6e7_1614/request", "", "public", "Top Dataset, surface gauss, hgt.sfc.gauss (4x daily NCEP reanalysis), 1985", "4x daily National Centers for Environmental Prediction (NCEP) reanalysis. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Geopotential Height at the Surface, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a52f_a6e7_1614_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a52f_a6e7_1614_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a52f_a6e7_1614/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a52f_a6e7_1614.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a52f_a6e7_1614&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a52f_a6e7_1614"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f24_a693_0451", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f24_a693_0451.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f24_a693_0451/request", "", "public", "Top Dataset, surface gauss, icec.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Long Term Mean 4xDaily Ice Concentration at surface)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f24_a693_0451_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f24_a693_0451_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f24_a693_0451/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f24_a693_0451.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f24_a693_0451&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8f24_a693_0451"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a295_9e6e_0a81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a295_9e6e_0a81.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a295_9e6e_0a81/request", "", "public", "Top Dataset, surface gauss, icec.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Long Term Mean 4xDaily Ice Concentration at surface)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a295_9e6e_0a81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a295_9e6e_0a81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a295_9e6e_0a81/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a295_9e6e_0a81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a295_9e6e_0a81&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a295_9e6e_0a81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06d2_4010_756f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06d2_4010_756f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_06d2_4010_756f/request", "", "public", "Top Dataset, surface gauss, icec.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (mean Long Term Mean Daily Ice Concentration at surface)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_06d2_4010_756f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_06d2_4010_756f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_06d2_4010_756f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_06d2_4010_756f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_06d2_4010_756f&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_06d2_4010_756f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4438_be4a_5fbd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4438_be4a_5fbd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4438_be4a_5fbd/request", "", "public", "Top Dataset, surface gauss, icec.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (mean Long Term Mean Daily Ice Concentration at surface)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4438_be4a_5fbd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4438_be4a_5fbd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4438_be4a_5fbd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4438_be4a_5fbd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4438_be4a_5fbd&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_4438_be4a_5fbd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb13_d127_df2c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb13_d127_df2c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb13_d127_df2c/request", "", "public", "Top Dataset, surface gauss, icec.sfc.mon.1981-2010.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Monthly Long Term Mean Ice Concentration at surface)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb13_d127_df2c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb13_d127_df2c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb13_d127_df2c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb13_d127_df2c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb13_d127_df2c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_fb13_d127_df2c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_245a_4ac8_5d3b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_245a_4ac8_5d3b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_245a_4ac8_5d3b/request", "", "public", "Top Dataset, surface gauss, icec.sfc.mon.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Monthly Long Term Mean Ice Concentration at surface)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_245a_4ac8_5d3b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_245a_4ac8_5d3b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_245a_4ac8_5d3b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_245a_4ac8_5d3b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_245a_4ac8_5d3b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_245a_4ac8_5d3b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35bf_823b_4a52", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35bf_823b_4a52.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_35bf_823b_4a52/request", "", "public", "Top Dataset, surface gauss, lhtfl.mon.inter.std (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Interannual Standard Deviation of Latent Heat Net Flux by Month, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_35bf_823b_4a52_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_35bf_823b_4a52_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_35bf_823b_4a52/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_35bf_823b_4a52.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_35bf_823b_4a52&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_35bf_823b_4a52"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92fd_c199_05ed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92fd_c199_05ed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_92fd_c199_05ed/request", "", "public", "Top Dataset, surface gauss, lhtfl.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Monthly Long Term Mean of Latent Heat Net Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_92fd_c199_05ed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_92fd_c199_05ed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_92fd_c199_05ed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_92fd_c199_05ed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_92fd_c199_05ed&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_92fd_c199_05ed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2510_d48a_aec3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2510_d48a_aec3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2510_d48a_aec3/request", "", "public", "Top Dataset, surface gauss, lhtfl.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Long Term Mean 4xDaily Latent Heat Net Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2510_d48a_aec3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2510_d48a_aec3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2510_d48a_aec3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2510_d48a_aec3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2510_d48a_aec3&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2510_d48a_aec3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54cc_f015_f5ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54cc_f015_f5ba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54cc_f015_f5ba/request", "", "public", "Top Dataset, surface gauss, lhtfl.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Long Term Mean 4xDaily Latent Heat Net Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54cc_f015_f5ba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54cc_f015_f5ba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54cc_f015_f5ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54cc_f015_f5ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54cc_f015_f5ba&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_54cc_f015_f5ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f26a_9ab8_1e79", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f26a_9ab8_1e79.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f26a_9ab8_1e79/request", "", "public", "Top Dataset, surface gauss, lhtfl.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (mean Long Term Mean Daily Latent Heat Net Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f26a_9ab8_1e79_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f26a_9ab8_1e79_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f26a_9ab8_1e79/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f26a_9ab8_1e79.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f26a_9ab8_1e79&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f26a_9ab8_1e79"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2a8_63cc_d658", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2a8_63cc_d658.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f2a8_63cc_d658/request", "", "public", "Top Dataset, surface gauss, lhtfl.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (mean Long Term Mean Daily Latent Heat Net Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f2a8_63cc_d658_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f2a8_63cc_d658_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f2a8_63cc_d658/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f2a8_63cc_d658.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f2a8_63cc_d658&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f2a8_63cc_d658"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60b7_ab0b_12bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60b7_ab0b_12bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_60b7_ab0b_12bb/request", "", "public", "Top Dataset, surface gauss, lhtfl.sfc.mon.1981-2010.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Monthly Long Term Mean of Latent Heat Net Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_60b7_ab0b_12bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_60b7_ab0b_12bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_60b7_ab0b_12bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_60b7_ab0b_12bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_60b7_ab0b_12bb&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_60b7_ab0b_12bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a7eb_bbc2_9054", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a7eb_bbc2_9054.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a7eb_bbc2_9054/request", "", "public", "Top Dataset, surface gauss, lhtfl.sfc.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Monthly Long Term Mean of Latent Heat Net Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a7eb_bbc2_9054_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a7eb_bbc2_9054_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a7eb_bbc2_9054/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a7eb_bbc2_9054.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a7eb_bbc2_9054&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a7eb_bbc2_9054"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff69_cb00_599b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff69_cb00_599b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff69_cb00_599b/request", "", "public", "Top Dataset, surface gauss, lsmask.19294 (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlsmask (Surface land/sea mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff69_cb00_599b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff69_cb00_599b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff69_cb00_599b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff69_cb00_599b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff69_cb00_599b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_ff69_cb00_599b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5544_2d84_e624", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5544_2d84_e624.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5544_2d84_e624/request", "", "public", "Top Dataset, surface gauss, nbdsf.mon.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnbdsf (Monthly Long Term Mean Near IR Beam Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5544_2d84_e624_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5544_2d84_e624_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5544_2d84_e624/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5544_2d84_e624.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5544_2d84_e624&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5544_2d84_e624"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ce9_f6db_9dd9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ce9_f6db_9dd9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ce9_f6db_9dd9/request", "", "public", "Top Dataset, surface gauss, nbdsf.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnbdsf (Long Term Mean 4xDaily Near IR Beam Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ce9_f6db_9dd9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ce9_f6db_9dd9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ce9_f6db_9dd9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ce9_f6db_9dd9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ce9_f6db_9dd9&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_1ce9_f6db_9dd9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bbac_e2ab_f60e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bbac_e2ab_f60e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bbac_e2ab_f60e/request", "", "public", "Top Dataset, surface gauss, nbdsf.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnbdsf (Long Term Mean 4xDaily Near IR Beam Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bbac_e2ab_f60e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bbac_e2ab_f60e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bbac_e2ab_f60e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bbac_e2ab_f60e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bbac_e2ab_f60e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_bbac_e2ab_f60e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d558_53b2_6220", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d558_53b2_6220.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d558_53b2_6220/request", "", "public", "Top Dataset, surface gauss, nbdsf.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnbdsf (mean Long Term Mean Daily Near IR Beam Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d558_53b2_6220_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d558_53b2_6220_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d558_53b2_6220/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d558_53b2_6220.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d558_53b2_6220&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d558_53b2_6220"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9eef_2122_3d0a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9eef_2122_3d0a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9eef_2122_3d0a/request", "", "public", "Top Dataset, surface gauss, nbdsf.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnbdsf (mean Long Term Mean Daily Near IR Beam Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9eef_2122_3d0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9eef_2122_3d0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9eef_2122_3d0a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9eef_2122_3d0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9eef_2122_3d0a&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9eef_2122_3d0a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a0a_49ad_bf82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a0a_49ad_bf82.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4a0a_49ad_bf82/request", "", "public", "Top Dataset, surface gauss, nbdsf.sfc.mon.1981-2010.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnbdsf (Monthly Long Term Mean Near IR Beam Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4a0a_49ad_bf82_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4a0a_49ad_bf82_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4a0a_49ad_bf82/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4a0a_49ad_bf82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4a0a_49ad_bf82&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_4a0a_49ad_bf82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ada3_357e_9ce7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ada3_357e_9ce7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ada3_357e_9ce7/request", "", "public", "Top Dataset, surface gauss, nbdsf.sfc.mon.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnbdsf (Monthly Long Term Mean Near IR Beam Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ada3_357e_9ce7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ada3_357e_9ce7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ada3_357e_9ce7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ada3_357e_9ce7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ada3_357e_9ce7&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_ada3_357e_9ce7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2052_793a_bc0d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2052_793a_bc0d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2052_793a_bc0d/request", "", "public", "Top Dataset, surface gauss, nddsf.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnddsf (Long Term Mean 4xDaily Near IR Diffuse Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2052_793a_bc0d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2052_793a_bc0d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2052_793a_bc0d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2052_793a_bc0d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2052_793a_bc0d&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2052_793a_bc0d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf88_9b64_8390", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf88_9b64_8390.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf88_9b64_8390/request", "", "public", "Top Dataset, surface gauss, nddsf.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnddsf (Long Term Mean 4xDaily Near IR Diffuse Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf88_9b64_8390_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf88_9b64_8390_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf88_9b64_8390/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf88_9b64_8390.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf88_9b64_8390&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_cf88_9b64_8390"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4bb_1b23_33c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4bb_1b23_33c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f4bb_1b23_33c0/request", "", "public", "Top Dataset, surface gauss, nddsf.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnddsf (mean Long Term Mean Daily Near IR Diffuse Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f4bb_1b23_33c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f4bb_1b23_33c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f4bb_1b23_33c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f4bb_1b23_33c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f4bb_1b23_33c0&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f4bb_1b23_33c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ee6_b383_17ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ee6_b383_17ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ee6_b383_17ae/request", "", "public", "Top Dataset, surface gauss, nddsf.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnddsf (mean Long Term Mean Daily Near IR Diffuse Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ee6_b383_17ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ee6_b383_17ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ee6_b383_17ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ee6_b383_17ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ee6_b383_17ae&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_1ee6_b383_17ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d57_bfc1_2a61", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d57_bfc1_2a61.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5d57_bfc1_2a61/request", "", "public", "Top Dataset, surface gauss, nddsf.sfc.mon.1981-2010.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnddsf (Monthly Long Term Mean Near IR Diffuse Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5d57_bfc1_2a61_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5d57_bfc1_2a61_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5d57_bfc1_2a61/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5d57_bfc1_2a61.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5d57_bfc1_2a61&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5d57_bfc1_2a61"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95e5_ed08_7bb8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95e5_ed08_7bb8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_95e5_ed08_7bb8/request", "", "public", "Top Dataset, surface gauss, nddsf.sfc.mon.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnddsf (Monthly Long Term Mean Near IR Diffuse Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_95e5_ed08_7bb8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_95e5_ed08_7bb8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_95e5_ed08_7bb8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_95e5_ed08_7bb8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_95e5_ed08_7bb8&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_95e5_ed08_7bb8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2f7_364a_e3b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2f7_364a_e3b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f2f7_364a_e3b6/request", "", "public", "Top Dataset, surface gauss, nlwrs.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnlwrs (Monthly Long Term Mean of Net Longwave Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f2f7_364a_e3b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f2f7_364a_e3b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f2f7_364a_e3b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f2f7_364a_e3b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f2f7_364a_e3b6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f2f7_364a_e3b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ae8_1f06_188e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ae8_1f06_188e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6ae8_1f06_188e/request", "", "public", "Top Dataset, surface gauss, nlwrs.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnlwrs (mean Long Term Mean Daily Net Longwave Radiation Flux at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6ae8_1f06_188e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6ae8_1f06_188e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ae8_1f06_188e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ae8_1f06_188e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ae8_1f06_188e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6ae8_1f06_188e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bae8_7ddd_968d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bae8_7ddd_968d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bae8_7ddd_968d/request", "", "public", "Top Dataset, surface gauss, nlwrs.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnlwrs (mean Long Term Mean Daily Net Longwave Radiation Flux at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bae8_7ddd_968d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bae8_7ddd_968d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bae8_7ddd_968d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bae8_7ddd_968d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bae8_7ddd_968d&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_bae8_7ddd_968d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_634d_9a51_70bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_634d_9a51_70bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_634d_9a51_70bd/request", "", "public", "Top Dataset, surface gauss, nlwrs.sfc.mon.1981-2010.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnlwrs (Monthly Long Term Mean of Net Longwave Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_634d_9a51_70bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_634d_9a51_70bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_634d_9a51_70bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_634d_9a51_70bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_634d_9a51_70bd&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_634d_9a51_70bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3956_ae18_ed6f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3956_ae18_ed6f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3956_ae18_ed6f/request", "", "public", "Top Dataset, surface gauss, nlwrs.sfc.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnlwrs (Monthly Long Term Mean of Net Longwave Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3956_ae18_ed6f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3956_ae18_ed6f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3956_ae18_ed6f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3956_ae18_ed6f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3956_ae18_ed6f&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_3956_ae18_ed6f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efc3_bdc5_f708", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efc3_bdc5_f708.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_efc3_bdc5_f708/request", "", "public", "Top Dataset, surface gauss, nlwrs.sfc.mon.mean (4x daily NMC reanalysis), 1948-present", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnlwrs (Monthly Mean of Net Longwave Radiation Flux, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_efc3_bdc5_f708_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_efc3_bdc5_f708_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_efc3_bdc5_f708/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_efc3_bdc5_f708.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_efc3_bdc5_f708&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_efc3_bdc5_f708"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45ba_2dee_aaad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45ba_2dee_aaad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_45ba_2dee_aaad/request", "", "public", "Top Dataset, surface gauss, nswrs.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnswrs (Monthly Long Term Mean of Net Shortwave Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_45ba_2dee_aaad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_45ba_2dee_aaad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_45ba_2dee_aaad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_45ba_2dee_aaad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_45ba_2dee_aaad&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_45ba_2dee_aaad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9ff_fc46_a951", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9ff_fc46_a951.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a9ff_fc46_a951/request", "", "public", "Top Dataset, surface gauss, nswrs.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnswrs (mean Long Term Mean Daily Net Shortwave Radiation Flux at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9ff_fc46_a951_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9ff_fc46_a951_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9ff_fc46_a951/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9ff_fc46_a951.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9ff_fc46_a951&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a9ff_fc46_a951"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ab3_8f7a_793f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ab3_8f7a_793f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ab3_8f7a_793f/request", "", "public", "Top Dataset, surface gauss, nswrs.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnswrs (mean Long Term Mean Daily Net Shortwave Radiation Flux at Surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ab3_8f7a_793f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ab3_8f7a_793f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ab3_8f7a_793f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ab3_8f7a_793f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ab3_8f7a_793f&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5ab3_8f7a_793f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a832_049e_8b50", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a832_049e_8b50.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a832_049e_8b50/request", "", "public", "Top Dataset, surface gauss, nswrs.sfc.mon.1981-2010.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnswrs (Monthly Long Term Mean of Net Shortwave Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a832_049e_8b50_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a832_049e_8b50_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a832_049e_8b50/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a832_049e_8b50.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a832_049e_8b50&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a832_049e_8b50"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0170_0732_f8e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0170_0732_f8e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0170_0732_f8e2/request", "", "public", "Top Dataset, surface gauss, nswrs.sfc.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnswrs (Monthly Long Term Mean of Net Shortwave Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0170_0732_f8e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0170_0732_f8e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0170_0732_f8e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0170_0732_f8e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0170_0732_f8e2&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0170_0732_f8e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5fd_e448_3e14", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5fd_e448_3e14.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5fd_e448_3e14/request", "", "public", "Top Dataset, surface gauss, nswrs.sfc.mon.mean (4x daily NMC reanalysis), 1948-present", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nnswrs (Monthly Mean of Net Shortwave Radiation Flux, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5fd_e448_3e14_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5fd_e448_3e14_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5fd_e448_3e14/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5fd_e448_3e14.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5fd_e448_3e14&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a5fd_e448_3e14"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_221f_6e90_d7d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_221f_6e90_d7d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_221f_6e90_d7d0/request", "", "public", "Top Dataset, surface gauss, pevpr.mon.inter.std (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Interannual Standard Deviation of Potential Evaporation Rate by Month, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_221f_6e90_d7d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_221f_6e90_d7d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_221f_6e90_d7d0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_221f_6e90_d7d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_221f_6e90_d7d0&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_221f_6e90_d7d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe40_696d_05dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe40_696d_05dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fe40_696d_05dd/request", "", "public", "Top Dataset, surface gauss, pevpr.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Monthly Long Term Mean of Potential Evaporation Rate, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fe40_696d_05dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fe40_696d_05dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fe40_696d_05dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fe40_696d_05dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fe40_696d_05dd&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_fe40_696d_05dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_947c_18e2_f6c2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_947c_18e2_f6c2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_947c_18e2_f6c2/request", "", "public", "Top Dataset, surface gauss, pevpr.mon.total.std (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Total Interannual Standard Deviation of Potential Evaporation Rate by Month, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_947c_18e2_f6c2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_947c_18e2_f6c2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_947c_18e2_f6c2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_947c_18e2_f6c2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_947c_18e2_f6c2&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_947c_18e2_f6c2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_84dd_0ca0_b20d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_84dd_0ca0_b20d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_84dd_0ca0_b20d/request", "", "public", "Top Dataset, surface gauss, pevpr.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Long Term Mean 4xDaily Potential Evaporation Rate at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_84dd_0ca0_b20d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_84dd_0ca0_b20d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_84dd_0ca0_b20d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_84dd_0ca0_b20d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_84dd_0ca0_b20d&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_84dd_0ca0_b20d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c240_dbb6_22b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c240_dbb6_22b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c240_dbb6_22b3/request", "", "public", "Top Dataset, surface gauss, pevpr.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Long Term Mean 4xDaily Potential Evaporation Rate at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c240_dbb6_22b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c240_dbb6_22b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c240_dbb6_22b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c240_dbb6_22b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c240_dbb6_22b3&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c240_dbb6_22b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c80f_4def_c341", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c80f_4def_c341.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c80f_4def_c341/request", "", "public", "Top Dataset, surface gauss, pevpr.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (mean Long Term Mean Daily Potential Evaporation Rate at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c80f_4def_c341_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c80f_4def_c341_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c80f_4def_c341/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c80f_4def_c341.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c80f_4def_c341&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c80f_4def_c341"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae6f_9df8_b0fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae6f_9df8_b0fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae6f_9df8_b0fe/request", "", "public", "Top Dataset, surface gauss, pevpr.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (mean Long Term Mean Daily Potential Evaporation Rate at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae6f_9df8_b0fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae6f_9df8_b0fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae6f_9df8_b0fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae6f_9df8_b0fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae6f_9df8_b0fe&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_ae6f_9df8_b0fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_997a_9c66_90b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_997a_9c66_90b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_997a_9c66_90b6/request", "", "public", "Top Dataset, surface gauss, pevpr.sfc.mon.1981-2010.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Monthly Long Term Mean of Potential Evaporation Rate, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_997a_9c66_90b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_997a_9c66_90b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_997a_9c66_90b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_997a_9c66_90b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_997a_9c66_90b6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_997a_9c66_90b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9da4_6499_9a47", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9da4_6499_9a47.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9da4_6499_9a47/request", "", "public", "Top Dataset, surface gauss, pevpr.sfc.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Monthly Long Term Mean of Potential Evaporation Rate, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9da4_6499_9a47_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9da4_6499_9a47_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9da4_6499_9a47/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9da4_6499_9a47.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9da4_6499_9a47&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9da4_6499_9a47"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cad7_63c6_ae9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cad7_63c6_ae9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cad7_63c6_ae9d/request", "", "public", "Top Dataset, surface gauss, prate.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (mean Long Term Mean Daily Precipitation Rate at surface, Kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cad7_63c6_ae9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cad7_63c6_ae9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cad7_63c6_ae9d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cad7_63c6_ae9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cad7_63c6_ae9d&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_cad7_63c6_ae9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cca0_656d_e735", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cca0_656d_e735.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cca0_656d_e735/request", "", "public", "Top Dataset, surface gauss, prate.mon.inter.std (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Interannual Standard Deviation of Precipitation Rate by Month, Kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cca0_656d_e735_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cca0_656d_e735_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cca0_656d_e735/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cca0_656d_e735.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cca0_656d_e735&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_cca0_656d_e735"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c70f_1bf6_dae1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c70f_1bf6_dae1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c70f_1bf6_dae1/request", "", "public", "Top Dataset, surface gauss, prate.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Monthly Long Term Mean of Precipitation Rate, Kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c70f_1bf6_dae1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c70f_1bf6_dae1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c70f_1bf6_dae1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c70f_1bf6_dae1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c70f_1bf6_dae1&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c70f_1bf6_dae1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dac6_32f6_f47e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dac6_32f6_f47e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dac6_32f6_f47e/request", "", "public", "Top Dataset, surface gauss, prate.mon.total.std (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Total Interannual Standard Deviation of Precipitation Rate by Month, Kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dac6_32f6_f47e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dac6_32f6_f47e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dac6_32f6_f47e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dac6_32f6_f47e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dac6_32f6_f47e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_dac6_32f6_f47e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ce0_a6ea_678b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ce0_a6ea_678b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ce0_a6ea_678b/request", "", "public", "Top Dataset, surface gauss, prate.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Long Term Mean 4xDaily Precipitation Rate at surface, Kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ce0_a6ea_678b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ce0_a6ea_678b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ce0_a6ea_678b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ce0_a6ea_678b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ce0_a6ea_678b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7ce0_a6ea_678b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a87_6e91_8056", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a87_6e91_8056.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8a87_6e91_8056/request", "", "public", "Top Dataset, surface gauss, prate.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Long Term Mean 4xDaily Precipitation Rate at surface, Kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8a87_6e91_8056_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8a87_6e91_8056_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8a87_6e91_8056/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8a87_6e91_8056.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8a87_6e91_8056&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8a87_6e91_8056"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc39_eaf0_ac36", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc39_eaf0_ac36.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bc39_eaf0_ac36/request", "", "public", "Top Dataset, surface gauss, prate.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (mean Long Term Mean Daily Precipitation Rate at surface, Kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bc39_eaf0_ac36_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bc39_eaf0_ac36_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bc39_eaf0_ac36/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bc39_eaf0_ac36.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bc39_eaf0_ac36&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_bc39_eaf0_ac36"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e41_410f_18d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e41_410f_18d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4e41_410f_18d4/request", "", "public", "Top Dataset, surface gauss, prate.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (mean Long Term Mean Daily Precipitation Rate at surface, Kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4e41_410f_18d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4e41_410f_18d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4e41_410f_18d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4e41_410f_18d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4e41_410f_18d4&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_4e41_410f_18d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9177_7721_8a2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9177_7721_8a2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9177_7721_8a2a/request", "", "public", "Top Dataset, surface gauss, prate.sfc.mon.1981-2010.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Monthly Long Term Mean of Precipitation Rate, Kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9177_7721_8a2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9177_7721_8a2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9177_7721_8a2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9177_7721_8a2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9177_7721_8a2a&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9177_7721_8a2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f934_dfb3_f8c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f934_dfb3_f8c5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f934_dfb3_f8c5/request", "", "public", "Top Dataset, surface gauss, prate.sfc.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Monthly Long Term Mean of Precipitation Rate, Kg/m^2/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f934_dfb3_f8c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f934_dfb3_f8c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f934_dfb3_f8c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f934_dfb3_f8c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f934_dfb3_f8c5&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f934_dfb3_f8c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d081_1401_a7a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d081_1401_a7a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d081_1401_a7a1/request", "", "public", "Top Dataset, surface gauss, prateapr.mon.dailyanom (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Diurnal Cycle Anomaly of Precipitation Rate for April, Kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d081_1401_a7a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d081_1401_a7a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d081_1401_a7a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d081_1401_a7a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d081_1401_a7a1&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d081_1401_a7a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6859_9e2c_b1d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6859_9e2c_b1d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6859_9e2c_b1d9/request", "", "public", "Top Dataset, surface gauss, pratejan.mon.dailyanom (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Diurnal Cycle Anomaly of Precipitation Rate for January, Kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6859_9e2c_b1d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6859_9e2c_b1d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6859_9e2c_b1d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6859_9e2c_b1d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6859_9e2c_b1d9&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6859_9e2c_b1d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eda3_3e52_28c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eda3_3e52_28c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eda3_3e52_28c4/request", "", "public", "Top Dataset, surface gauss, pratejul.mon.dailyanom (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Diurnal Cycle Anomaly of Precipitation Rate for July, Kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eda3_3e52_28c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eda3_3e52_28c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eda3_3e52_28c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eda3_3e52_28c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eda3_3e52_28c4&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_eda3_3e52_28c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f732_ea86_2577", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f732_ea86_2577.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f732_ea86_2577/request", "", "public", "Top Dataset, surface gauss, prateoct.mon.dailyanom (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Diurnal Cycle Anomaly of Precipitation Rate for October, Kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f732_ea86_2577_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f732_ea86_2577_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f732_ea86_2577/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f732_ea86_2577.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f732_ea86_2577&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f732_ea86_2577"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b803_0ff5_2f11", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b803_0ff5_2f11.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b803_0ff5_2f11/request", "", "public", "Top Dataset, surface gauss, pres.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean 4xDaily Surface Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b803_0ff5_2f11_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b803_0ff5_2f11_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b803_0ff5_2f11/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b803_0ff5_2f11.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b803_0ff5_2f11&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b803_0ff5_2f11"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_77f7_bdeb_e2ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_77f7_bdeb_e2ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_77f7_bdeb_e2ec/request", "", "public", "Top Dataset, surface gauss, pres.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Long Term Mean 4xDaily Surface Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_77f7_bdeb_e2ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_77f7_bdeb_e2ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_77f7_bdeb_e2ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_77f7_bdeb_e2ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_77f7_bdeb_e2ec&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_77f7_bdeb_e2ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc06_724a_e6df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc06_724a_e6df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc06_724a_e6df/request", "", "public", "Top Dataset, surface gauss, pres.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (mean Long Term Mean Daily Surface Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc06_724a_e6df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc06_724a_e6df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc06_724a_e6df/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc06_724a_e6df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc06_724a_e6df&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_dc06_724a_e6df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_750f_431f_bfdc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_750f_431f_bfdc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_750f_431f_bfdc/request", "", "public", "Top Dataset, surface gauss, pres.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (mean Long Term Mean Daily Surface Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_750f_431f_bfdc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_750f_431f_bfdc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_750f_431f_bfdc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_750f_431f_bfdc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_750f_431f_bfdc&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_750f_431f_bfdc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8d1_e838_9a02", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8d1_e838_9a02.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b8d1_e838_9a02/request", "", "public", "Top Dataset, surface gauss, pres.sfc.mon.1981-2010.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Mean Surface Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b8d1_e838_9a02_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b8d1_e838_9a02_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b8d1_e838_9a02/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b8d1_e838_9a02.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b8d1_e838_9a02&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b8d1_e838_9a02"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9346_2103_5f87", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9346_2103_5f87.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9346_2103_5f87/request", "", "public", "Top Dataset, surface gauss, pres.sfc.mon.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Mean Surface Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9346_2103_5f87_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9346_2103_5f87_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9346_2103_5f87/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9346_2103_5f87.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9346_2103_5f87&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9346_2103_5f87"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd5e_aa43_5466", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd5e_aa43_5466.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bd5e_aa43_5466/request", "", "public", "Top Dataset, surface gauss, runof.mon.inter.std (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunof (Interannual Standard Deviation of Water Runoff by Month, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bd5e_aa43_5466_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bd5e_aa43_5466_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bd5e_aa43_5466/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bd5e_aa43_5466.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bd5e_aa43_5466&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_bd5e_aa43_5466"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb46_23c6_9909", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb46_23c6_9909.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb46_23c6_9909/request", "", "public", "Top Dataset, surface gauss, runof.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunof (Monthly Long Term Mean of Water Runoff, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb46_23c6_9909_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb46_23c6_9909_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb46_23c6_9909/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb46_23c6_9909.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb46_23c6_9909&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_cb46_23c6_9909"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f45f_61d8_0af5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f45f_61d8_0af5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f45f_61d8_0af5/request", "", "public", "Top Dataset, surface gauss, runof.mon.total.std (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunof (Total Interannual Standard Deviation of Water Runoff by Month, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f45f_61d8_0af5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f45f_61d8_0af5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f45f_61d8_0af5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f45f_61d8_0af5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f45f_61d8_0af5&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f45f_61d8_0af5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d199_2e7a_d31c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d199_2e7a_d31c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d199_2e7a_d31c/request", "", "public", "Top Dataset, surface gauss, runof.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunof (Long Term Mean 4xDaily Water Runoff at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d199_2e7a_d31c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d199_2e7a_d31c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d199_2e7a_d31c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d199_2e7a_d31c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d199_2e7a_d31c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d199_2e7a_d31c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6fd5_bf3a_2374", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6fd5_bf3a_2374.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6fd5_bf3a_2374/request", "", "public", "Top Dataset, surface gauss, runof.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunof (Long Term Mean 4xDaily Water Runoff at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6fd5_bf3a_2374_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6fd5_bf3a_2374_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6fd5_bf3a_2374/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6fd5_bf3a_2374.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6fd5_bf3a_2374&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6fd5_bf3a_2374"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9284_a3f8_e697", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9284_a3f8_e697.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9284_a3f8_e697/request", "", "public", "Top Dataset, surface gauss, runof.sfc.day.1981-2010.ltm (daily NMC reanalysis (1981)), 0001", "daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunof (Accumulated Long Term Mean Daily Water Runoff at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9284_a3f8_e697_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9284_a3f8_e697_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9284_a3f8_e697/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9284_a3f8_e697.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9284_a3f8_e697&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9284_a3f8_e697"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14aa_4858_964a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14aa_4858_964a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_14aa_4858_964a/request", "", "public", "Top Dataset, surface gauss, runof.sfc.day.ltm (daily NMC reanalysis (1981)), 0001", "daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunof (Accumulated Long Term Mean Daily Water Runoff at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_14aa_4858_964a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_14aa_4858_964a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_14aa_4858_964a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_14aa_4858_964a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_14aa_4858_964a&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_14aa_4858_964a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0b6_db74_3c63", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0b6_db74_3c63.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e0b6_db74_3c63/request", "", "public", "Top Dataset, surface gauss, runof.sfc.mon.1981-2010.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunof (Monthly Long Term Mean of Water Runoff, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e0b6_db74_3c63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e0b6_db74_3c63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e0b6_db74_3c63/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e0b6_db74_3c63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e0b6_db74_3c63&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e0b6_db74_3c63"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05db_e69a_4a10", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05db_e69a_4a10.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_05db_e69a_4a10/request", "", "public", "Top Dataset, surface gauss, runof.sfc.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunof (Monthly Long Term Mean of Water Runoff, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_05db_e69a_4a10_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_05db_e69a_4a10_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_05db_e69a_4a10/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_05db_e69a_4a10.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_05db_e69a_4a10&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_05db_e69a_4a10"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec65_7bce_dd59", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec65_7bce_dd59.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ec65_7bce_dd59/request", "", "public", "Top Dataset, surface gauss, sfcr.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsfcr (Long Term Mean 4xDaily Surface Roughness, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ec65_7bce_dd59_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ec65_7bce_dd59_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ec65_7bce_dd59/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ec65_7bce_dd59.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ec65_7bce_dd59&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_ec65_7bce_dd59"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0bf2_e114_3e74", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0bf2_e114_3e74.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0bf2_e114_3e74/request", "", "public", "Top Dataset, surface gauss, sfcr.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsfcr (Long Term Mean 4xDaily Surface Roughness, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0bf2_e114_3e74_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0bf2_e114_3e74_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0bf2_e114_3e74/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0bf2_e114_3e74.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0bf2_e114_3e74&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0bf2_e114_3e74"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97f8_db2c_5d13", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97f8_db2c_5d13.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_97f8_db2c_5d13/request", "", "public", "Top Dataset, surface gauss, sfcr.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsfcr (mean Long Term Mean Daily Surface Roughness, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_97f8_db2c_5d13_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_97f8_db2c_5d13_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_97f8_db2c_5d13/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_97f8_db2c_5d13.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_97f8_db2c_5d13&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_97f8_db2c_5d13"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c1e_e255_5860", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c1e_e255_5860.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1c1e_e255_5860/request", "", "public", "Top Dataset, surface gauss, sfcr.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsfcr (mean Long Term Mean Daily Surface Roughness, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1c1e_e255_5860_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1c1e_e255_5860_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1c1e_e255_5860/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1c1e_e255_5860.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1c1e_e255_5860&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_1c1e_e255_5860"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7393_2bf1_1ef7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7393_2bf1_1ef7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7393_2bf1_1ef7/request", "", "public", "Top Dataset, surface gauss, sfcr.sfc.mon.1981-2010.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsfcr (Monthly Long Term Mean Surface Roughness, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7393_2bf1_1ef7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7393_2bf1_1ef7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7393_2bf1_1ef7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7393_2bf1_1ef7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7393_2bf1_1ef7&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7393_2bf1_1ef7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_798a_8bf4_5aad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_798a_8bf4_5aad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_798a_8bf4_5aad/request", "", "public", "Top Dataset, surface gauss, sfcr.sfc.mon.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsfcr (Monthly Long Term Mean Surface Roughness, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_798a_8bf4_5aad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_798a_8bf4_5aad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_798a_8bf4_5aad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_798a_8bf4_5aad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_798a_8bf4_5aad&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_798a_8bf4_5aad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f6f_c7ca_3941", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f6f_c7ca_3941.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f6f_c7ca_3941/request", "", "public", "Top Dataset, surface gauss, shtfl.mon.inter.std (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Interannual Standard Deviation of Sensible Heat Net Flux by Month, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f6f_c7ca_3941_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f6f_c7ca_3941_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f6f_c7ca_3941/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f6f_c7ca_3941.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f6f_c7ca_3941&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0f6f_c7ca_3941"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a95b_8dd1_c58b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a95b_8dd1_c58b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a95b_8dd1_c58b/request", "", "public", "Top Dataset, surface gauss, shtfl.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Monthly Long Term Mean of Sensible Heat Net Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a95b_8dd1_c58b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a95b_8dd1_c58b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a95b_8dd1_c58b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a95b_8dd1_c58b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a95b_8dd1_c58b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a95b_8dd1_c58b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30de_41c0_f72d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30de_41c0_f72d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_30de_41c0_f72d/request", "", "public", "Top Dataset, surface gauss, shtfl.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Long Term Mean 4xDaily Sensible Heat Net Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_30de_41c0_f72d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_30de_41c0_f72d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_30de_41c0_f72d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_30de_41c0_f72d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_30de_41c0_f72d&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_30de_41c0_f72d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b55_4085_b3bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b55_4085_b3bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b55_4085_b3bd/request", "", "public", "Top Dataset, surface gauss, shtfl.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Long Term Mean 4xDaily Sensible Heat Net Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b55_4085_b3bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b55_4085_b3bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b55_4085_b3bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b55_4085_b3bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b55_4085_b3bd&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5b55_4085_b3bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1e5_e5b5_c1ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1e5_e5b5_c1ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f1e5_e5b5_c1ce/request", "", "public", "Top Dataset, surface gauss, shtfl.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (mean Long Term Mean Daily Sensible Heat Net Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f1e5_e5b5_c1ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f1e5_e5b5_c1ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f1e5_e5b5_c1ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f1e5_e5b5_c1ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f1e5_e5b5_c1ce&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f1e5_e5b5_c1ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2c8_deb5_6b27", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2c8_deb5_6b27.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f2c8_deb5_6b27/request", "", "public", "Top Dataset, surface gauss, shtfl.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (mean Long Term Mean Daily Sensible Heat Net Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f2c8_deb5_6b27_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f2c8_deb5_6b27_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f2c8_deb5_6b27/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f2c8_deb5_6b27.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f2c8_deb5_6b27&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f2c8_deb5_6b27"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b4e_ce24_4b30", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b4e_ce24_4b30.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0b4e_ce24_4b30/request", "", "public", "Top Dataset, surface gauss, shtfl.sfc.mon.1981-2010.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Monthly Long Term Mean of Sensible Heat Net Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0b4e_ce24_4b30_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0b4e_ce24_4b30_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0b4e_ce24_4b30/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0b4e_ce24_4b30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0b4e_ce24_4b30&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0b4e_ce24_4b30"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fdfe_04c3_f587", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fdfe_04c3_f587.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fdfe_04c3_f587/request", "", "public", "Top Dataset, surface gauss, shtfl.sfc.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Monthly Long Term Mean of Sensible Heat Net Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fdfe_04c3_f587_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fdfe_04c3_f587_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fdfe_04c3_f587/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fdfe_04c3_f587.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fdfe_04c3_f587&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_fdfe_04c3_f587"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cfd_61d1_b8dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cfd_61d1_b8dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3cfd_61d1_b8dc/request", "", "public", "Top Dataset, surface gauss, shum.2m.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Long Term Mean 4xDaily Specific Humidity at 2 m, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3cfd_61d1_b8dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3cfd_61d1_b8dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3cfd_61d1_b8dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3cfd_61d1_b8dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3cfd_61d1_b8dc&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_3cfd_61d1_b8dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7264_ea23_fcbd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7264_ea23_fcbd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7264_ea23_fcbd/request", "", "public", "Top Dataset, surface gauss, shum.2m.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Long Term Mean 4xDaily Specific Humidity at 2 m, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7264_ea23_fcbd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7264_ea23_fcbd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7264_ea23_fcbd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7264_ea23_fcbd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7264_ea23_fcbd&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7264_ea23_fcbd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dddd_ad07_6305", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dddd_ad07_6305.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dddd_ad07_6305/request", "", "public", "Top Dataset, surface gauss, shum.2m.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (mean Long Term Mean Daily Specific Humidity at 2 m, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dddd_ad07_6305_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dddd_ad07_6305_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dddd_ad07_6305/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dddd_ad07_6305.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dddd_ad07_6305&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_dddd_ad07_6305"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98bf_fe75_b18e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98bf_fe75_b18e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_98bf_fe75_b18e/request", "", "public", "Top Dataset, surface gauss, shum.2m.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (mean Long Term Mean Daily Specific Humidity at 2 m, kg/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_98bf_fe75_b18e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_98bf_fe75_b18e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_98bf_fe75_b18e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_98bf_fe75_b18e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_98bf_fe75_b18e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_98bf_fe75_b18e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57a8_126b_b220", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57a8_126b_b220.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_57a8_126b_b220/request", "", "public", "Top Dataset, surface gauss, shum.2m.mon.1981-2010.ltm (monthly mean u wind), 0001", "monthly mean u wind. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Monthly Long Term Mean of Specific Humidity, grams/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_57a8_126b_b220_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_57a8_126b_b220_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_57a8_126b_b220/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_57a8_126b_b220.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_57a8_126b_b220&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_57a8_126b_b220"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_753e_9256_8be3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_753e_9256_8be3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_753e_9256_8be3/request", "", "public", "Top Dataset, surface gauss, shum.2m.mon.ltm (monthly mean u wind), 0001", "monthly mean u wind. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Monthly Long Term Mean of Specific Humidity, grams/kg)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_753e_9256_8be3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_753e_9256_8be3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_753e_9256_8be3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_753e_9256_8be3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_753e_9256_8be3&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_753e_9256_8be3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6473_e8dd_a8c7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6473_e8dd_a8c7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6473_e8dd_a8c7/request", "", "public", "Top Dataset, surface gauss, skt.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nskt (Mean Long Term Mean daily SST/Land Skin Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6473_e8dd_a8c7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6473_e8dd_a8c7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6473_e8dd_a8c7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6473_e8dd_a8c7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6473_e8dd_a8c7&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6473_e8dd_a8c7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9200_1591_2a47", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9200_1591_2a47.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9200_1591_2a47/request", "", "public", "Top Dataset, surface gauss, skt.mon.inter.std (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from National Centers for Environmental Prediction (NCEP) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nskt (Interannual Standard Deviation of Skin Temperature by Month, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9200_1591_2a47_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9200_1591_2a47_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9200_1591_2a47/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9200_1591_2a47.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9200_1591_2a47&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9200_1591_2a47"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1cf_ec42_7cf8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1cf_ec42_7cf8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b1cf_ec42_7cf8/request", "", "public", "Top Dataset, surface gauss, skt.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nskt (Monthly Long Term Mean of Skin Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b1cf_ec42_7cf8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b1cf_ec42_7cf8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b1cf_ec42_7cf8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b1cf_ec42_7cf8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b1cf_ec42_7cf8&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b1cf_ec42_7cf8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5aad_a790_8b40", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5aad_a790_8b40.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5aad_a790_8b40/request", "", "public", "Top Dataset, surface gauss, skt.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nskt (Long Term Mean SST/Land Skin Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5aad_a790_8b40_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5aad_a790_8b40_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5aad_a790_8b40/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5aad_a790_8b40.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5aad_a790_8b40&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5aad_a790_8b40"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4609_b7c1_1d32", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4609_b7c1_1d32.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4609_b7c1_1d32/request", "", "public", "Top Dataset, surface gauss, skt.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nskt (Long Term Mean SST/Land Skin Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4609_b7c1_1d32_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4609_b7c1_1d32_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4609_b7c1_1d32/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4609_b7c1_1d32.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4609_b7c1_1d32&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_4609_b7c1_1d32"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b576_0bd3_97b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b576_0bd3_97b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b576_0bd3_97b5/request", "", "public", "Top Dataset, surface gauss, skt.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nskt (Mean Long Term Mean daily SST/Land Skin Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b576_0bd3_97b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b576_0bd3_97b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b576_0bd3_97b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b576_0bd3_97b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b576_0bd3_97b5&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b576_0bd3_97b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5956_52a4_faea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5956_52a4_faea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5956_52a4_faea/request", "", "public", "Top Dataset, surface gauss, skt.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nskt (Mean Long Term Mean daily SST/Land Skin Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5956_52a4_faea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5956_52a4_faea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5956_52a4_faea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5956_52a4_faea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5956_52a4_faea&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5956_52a4_faea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0462_e87d_6828", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0462_e87d_6828.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0462_e87d_6828/request", "", "public", "Top Dataset, surface gauss, skt.sfc.mon.1981-2010.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nskt (Monthly Long Term Mean of Skin Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0462_e87d_6828_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0462_e87d_6828_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0462_e87d_6828/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0462_e87d_6828.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0462_e87d_6828&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0462_e87d_6828"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1ca_7954_e6a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1ca_7954_e6a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b1ca_7954_e6a6/request", "", "public", "Top Dataset, surface gauss, skt.sfc.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nskt (Monthly Long Term Mean of Skin Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b1ca_7954_e6a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b1ca_7954_e6a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b1ca_7954_e6a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b1ca_7954_e6a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b1ca_7954_e6a6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b1ca_7954_e6a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b802_b9cb_7b22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b802_b9cb_7b22.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b802_b9cb_7b22/request", "", "public", "Top Dataset, surface gauss, soilw.0-10cm.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilw (Long Term Mean 4xDaily Volumetric Soil Moisture between 0-10 cm Below Ground Level, fraction)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b802_b9cb_7b22_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b802_b9cb_7b22_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b802_b9cb_7b22/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b802_b9cb_7b22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b802_b9cb_7b22&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b802_b9cb_7b22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af68_faae_2bff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af68_faae_2bff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_af68_faae_2bff/request", "", "public", "Top Dataset, surface gauss, soilw.0-10cm.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilw (Long Term Mean 4xDaily Volumetric Soil Moisture between 0-10 cm Below Ground Level, fraction)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_af68_faae_2bff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_af68_faae_2bff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_af68_faae_2bff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_af68_faae_2bff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_af68_faae_2bff&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_af68_faae_2bff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a992_a537_1fc5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a992_a537_1fc5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a992_a537_1fc5/request", "", "public", "Top Dataset, surface gauss, soilw.0-10cm.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilw (mean Long Term Mean Daily Volumetric Soil Moisture between 0-10 cm Below Ground Level, fraction)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a992_a537_1fc5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a992_a537_1fc5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a992_a537_1fc5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a992_a537_1fc5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a992_a537_1fc5&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a992_a537_1fc5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_297a_ef07_d9ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_297a_ef07_d9ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_297a_ef07_d9ab/request", "", "public", "Top Dataset, surface gauss, soilw.0-10cm.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilw (mean Long Term Mean Daily Volumetric Soil Moisture between 0-10 cm Below Ground Level, fraction)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_297a_ef07_d9ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_297a_ef07_d9ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_297a_ef07_d9ab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_297a_ef07_d9ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_297a_ef07_d9ab&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_297a_ef07_d9ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f479_be59_3215", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f479_be59_3215.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f479_be59_3215/request", "", "public", "Top Dataset, surface gauss, soilw.0-10cm.mon.1981-2010.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilw (Monthly Long Term Mean of Volumetric Soil Moisture, fraction)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f479_be59_3215_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f479_be59_3215_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f479_be59_3215/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f479_be59_3215.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f479_be59_3215&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f479_be59_3215"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c371_d690_5fbd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c371_d690_5fbd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c371_d690_5fbd/request", "", "public", "Top Dataset, surface gauss, soilw.0-10cm.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilw (Monthly Long Term Mean of Volumetric Soil Moisture, fraction)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c371_d690_5fbd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c371_d690_5fbd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c371_d690_5fbd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c371_d690_5fbd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c371_d690_5fbd&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c371_d690_5fbd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7187_b820_c7a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7187_b820_c7a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7187_b820_c7a2/request", "", "public", "Top Dataset, surface gauss, soilw.10-200cm.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilw (Long Term Mean 4xDaily Volumetric Soil Moisture between 10-200 cm Below Ground Level, fraction)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7187_b820_c7a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7187_b820_c7a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7187_b820_c7a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7187_b820_c7a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7187_b820_c7a2&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7187_b820_c7a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2215_274b_8a77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2215_274b_8a77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2215_274b_8a77/request", "", "public", "Top Dataset, surface gauss, soilw.10-200cm.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilw (Long Term Mean 4xDaily Volumetric Soil Moisture between 10-200 cm Below Ground Level, fraction)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2215_274b_8a77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2215_274b_8a77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2215_274b_8a77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2215_274b_8a77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2215_274b_8a77&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2215_274b_8a77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6070_9692_d9ed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6070_9692_d9ed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6070_9692_d9ed/request", "", "public", "Top Dataset, surface gauss, soilw.10-200cm.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilw (mean Long Term Mean Daily Volumetric Soil Moisture between 10-200 cm Below Ground Level, fraction)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6070_9692_d9ed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6070_9692_d9ed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6070_9692_d9ed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6070_9692_d9ed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6070_9692_d9ed&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6070_9692_d9ed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fef_b2ce_6471", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fef_b2ce_6471.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5fef_b2ce_6471/request", "", "public", "Top Dataset, surface gauss, soilw.10-200cm.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilw (mean Long Term Mean Daily Volumetric Soil Moisture between 10-200 cm Below Ground Level, fraction)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5fef_b2ce_6471_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5fef_b2ce_6471_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5fef_b2ce_6471/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5fef_b2ce_6471.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5fef_b2ce_6471&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5fef_b2ce_6471"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ee4_3705_4532", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ee4_3705_4532.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9ee4_3705_4532/request", "", "public", "Top Dataset, surface gauss, soilw.10-200cm.mon.1981-2010.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilw (Monthly Long Term Mean of Volumetric Soil Moisture, fraction)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9ee4_3705_4532_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9ee4_3705_4532_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9ee4_3705_4532/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9ee4_3705_4532.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9ee4_3705_4532&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9ee4_3705_4532"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afdc_a2ae_b02f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afdc_a2ae_b02f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_afdc_a2ae_b02f/request", "", "public", "Top Dataset, surface gauss, soilw.10-200cm.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilw (Monthly Long Term Mean of Volumetric Soil Moisture, fraction)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_afdc_a2ae_b02f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_afdc_a2ae_b02f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_afdc_a2ae_b02f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_afdc_a2ae_b02f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_afdc_a2ae_b02f&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_afdc_a2ae_b02f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64cd_47ee_52d8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64cd_47ee_52d8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_64cd_47ee_52d8/request", "", "public", "Top Dataset, surface gauss, soilw.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilw (mean Long Term Mean Daily Volumetric Soil Moisture between 0-10 cm Below Ground Level, fraction)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_64cd_47ee_52d8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_64cd_47ee_52d8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_64cd_47ee_52d8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_64cd_47ee_52d8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_64cd_47ee_52d8&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_64cd_47ee_52d8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b2d1_96d9_548a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b2d1_96d9_548a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b2d1_96d9_548a/request", "", "public", "Top Dataset, surface gauss, soilw.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilw (Monthly Long Term Mean of Volumetric Soil Moisture, fraction)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b2d1_96d9_548a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b2d1_96d9_548a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b2d1_96d9_548a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b2d1_96d9_548a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b2d1_96d9_548a&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b2d1_96d9_548a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d9b5_d0f4_bc1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d9b5_d0f4_bc1e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d9b5_d0f4_bc1e/request", "", "public", "Top Dataset, surface gauss, soilw200.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilw (mean Long Term Mean Daily Volumetric Soil Moisture between 10-200 cm Below Ground Level, fraction)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d9b5_d0f4_bc1e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d9b5_d0f4_bc1e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d9b5_d0f4_bc1e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d9b5_d0f4_bc1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d9b5_d0f4_bc1e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d9b5_d0f4_bc1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_824f_1741_0e75", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_824f_1741_0e75.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_824f_1741_0e75/request", "", "public", "Top Dataset, surface gauss, soilw200.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilw (Monthly Long Term Mean of Volumetric Soil Moisture, fraction)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_824f_1741_0e75_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_824f_1741_0e75_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_824f_1741_0e75/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_824f_1741_0e75.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_824f_1741_0e75&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_824f_1741_0e75"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aff1_e0d6_dfc6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aff1_e0d6_dfc6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aff1_e0d6_dfc6/request", "", "public", "Top Dataset, surface gauss, tmax.2m.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Long Term Mean 4xDaily Maximum Temperature at 2 m, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aff1_e0d6_dfc6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aff1_e0d6_dfc6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aff1_e0d6_dfc6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aff1_e0d6_dfc6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aff1_e0d6_dfc6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_aff1_e0d6_dfc6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc7a_1b0c_4c63", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc7a_1b0c_4c63.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc7a_1b0c_4c63/request", "", "public", "Top Dataset, surface gauss, tmax.2m.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Long Term Mean 4xDaily Maximum Temperature at 2 m, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc7a_1b0c_4c63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc7a_1b0c_4c63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc7a_1b0c_4c63/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc7a_1b0c_4c63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc7a_1b0c_4c63&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_fc7a_1b0c_4c63"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6074_fd12_e35e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6074_fd12_e35e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6074_fd12_e35e/request", "", "public", "Top Dataset, surface gauss, tmax.2m.day.1981-2010.ltm (daily NMC reanalysis (1981)), 0001", "daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Daily Long Term Mean Maximum Temperature at 2 m, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6074_fd12_e35e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6074_fd12_e35e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6074_fd12_e35e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6074_fd12_e35e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6074_fd12_e35e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6074_fd12_e35e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_33ff_0fef_e792", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_33ff_0fef_e792.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_33ff_0fef_e792/request", "", "public", "Top Dataset, surface gauss, tmax.2m.day.ltm (daily NMC reanalysis (1981)), 0001", "daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Daily Long Term Mean Maximum Temperature at 2 m, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_33ff_0fef_e792_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_33ff_0fef_e792_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_33ff_0fef_e792/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_33ff_0fef_e792.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_33ff_0fef_e792&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_33ff_0fef_e792"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d41a_1cc2_2f11", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d41a_1cc2_2f11.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d41a_1cc2_2f11/request", "", "public", "Top Dataset, surface gauss, tmax.2m.mon.1981-2010.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Long Term Mean Maximum Temperature at 2 m, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d41a_1cc2_2f11_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d41a_1cc2_2f11_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d41a_1cc2_2f11/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d41a_1cc2_2f11.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d41a_1cc2_2f11&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d41a_1cc2_2f11"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4a8_93b3_61a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4a8_93b3_61a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d4a8_93b3_61a6/request", "", "public", "Top Dataset, surface gauss, tmax.2m.mon.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Long Term Mean Maximum Temperature at 2 m, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d4a8_93b3_61a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d4a8_93b3_61a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d4a8_93b3_61a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d4a8_93b3_61a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d4a8_93b3_61a6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d4a8_93b3_61a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c1fc_82cb_0907", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c1fc_82cb_0907.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c1fc_82cb_0907/request", "", "public", "Top Dataset, surface gauss, tmin.2m.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Long Term Mean 4xDaily Minimum Temperature at 2 m, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c1fc_82cb_0907_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c1fc_82cb_0907_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c1fc_82cb_0907/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c1fc_82cb_0907.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c1fc_82cb_0907&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c1fc_82cb_0907"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d94_50c7_0c76", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d94_50c7_0c76.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7d94_50c7_0c76/request", "", "public", "Top Dataset, surface gauss, tmin.2m.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Long Term Mean 4xDaily Minimum Temperature at 2 m, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7d94_50c7_0c76_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7d94_50c7_0c76_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7d94_50c7_0c76/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7d94_50c7_0c76.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7d94_50c7_0c76&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7d94_50c7_0c76"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd4a_dd75_8025", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd4a_dd75_8025.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fd4a_dd75_8025/request", "", "public", "Top Dataset, surface gauss, tmin.2m.day.1981-2010.ltm (daily NMC reanalysis (1981)), 0001", "daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Daily Long Term Mean Minimum Temperature at 2 m, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fd4a_dd75_8025_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fd4a_dd75_8025_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fd4a_dd75_8025/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fd4a_dd75_8025.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fd4a_dd75_8025&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_fd4a_dd75_8025"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03c5_95a0_5646", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03c5_95a0_5646.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03c5_95a0_5646/request", "", "public", "Top Dataset, surface gauss, tmin.2m.day.ltm (daily NMC reanalysis (1981)), 0001", "daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Daily Long Term Mean Minimum Temperature at 2 m, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03c5_95a0_5646_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03c5_95a0_5646_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03c5_95a0_5646/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03c5_95a0_5646.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03c5_95a0_5646&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_03c5_95a0_5646"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3948_a6eb_0ecc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3948_a6eb_0ecc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3948_a6eb_0ecc/request", "", "public", "Top Dataset, surface gauss, tmin.2m.mon.1981-2010.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Long Term Mean Minimum Temperature at 2 m, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3948_a6eb_0ecc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3948_a6eb_0ecc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3948_a6eb_0ecc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3948_a6eb_0ecc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3948_a6eb_0ecc&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_3948_a6eb_0ecc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b031_e41a_70f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b031_e41a_70f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b031_e41a_70f3/request", "", "public", "Top Dataset, surface gauss, tmin.2m.mon.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Long Term Mean Minimum Temperature at 2 m, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b031_e41a_70f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b031_e41a_70f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b031_e41a_70f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b031_e41a_70f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b031_e41a_70f3&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b031_e41a_70f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_992d_b4ea_d449", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_992d_b4ea_d449.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_992d_b4ea_d449/request", "", "public", "Top Dataset, surface gauss, tmp.0-10cm.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmp (Long Term Mean 4xDaily Temperature between 0-10 cm below ground level, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_992d_b4ea_d449_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_992d_b4ea_d449_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_992d_b4ea_d449/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_992d_b4ea_d449.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_992d_b4ea_d449&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_992d_b4ea_d449"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a989_a6a9_f86b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a989_a6a9_f86b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a989_a6a9_f86b/request", "", "public", "Top Dataset, surface gauss, tmp.0-10cm.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmp (Long Term Mean 4xDaily Temperature between 0-10 cm below ground level, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a989_a6a9_f86b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a989_a6a9_f86b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a989_a6a9_f86b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a989_a6a9_f86b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a989_a6a9_f86b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a989_a6a9_f86b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f48e_7bd5_d67a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f48e_7bd5_d67a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f48e_7bd5_d67a/request", "", "public", "Top Dataset, surface gauss, tmp.0-10cm.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmp (mean Long Term Mean Daily Temperature between 0-10 cm below ground level, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f48e_7bd5_d67a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f48e_7bd5_d67a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f48e_7bd5_d67a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f48e_7bd5_d67a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f48e_7bd5_d67a&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f48e_7bd5_d67a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28a7_9b64_7277", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28a7_9b64_7277.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28a7_9b64_7277/request", "", "public", "Top Dataset, surface gauss, tmp.0-10cm.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmp (mean Long Term Mean Daily Temperature between 0-10 cm below ground level, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28a7_9b64_7277_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28a7_9b64_7277_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28a7_9b64_7277/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28a7_9b64_7277.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28a7_9b64_7277&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_28a7_9b64_7277"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28e7_9eab_059b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28e7_9eab_059b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28e7_9eab_059b/request", "", "public", "Top Dataset, surface gauss, tmp.0-10cm.mon.1981-2010.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmp (Monthly Long Term Mean Temperature between 0-10 cm below ground level, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28e7_9eab_059b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28e7_9eab_059b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28e7_9eab_059b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28e7_9eab_059b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28e7_9eab_059b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_28e7_9eab_059b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a517_ef37_3f75", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a517_ef37_3f75.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a517_ef37_3f75/request", "", "public", "Top Dataset, surface gauss, tmp.0-10cm.mon.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmp (Monthly Long Term Mean Temperature between 0-10 cm below ground level, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a517_ef37_3f75_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a517_ef37_3f75_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a517_ef37_3f75/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a517_ef37_3f75.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a517_ef37_3f75&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a517_ef37_3f75"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5973_979c_f47b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5973_979c_f47b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5973_979c_f47b/request", "", "public", "Top Dataset, surface gauss, tmp.10-200cm.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmp (Long Term Mean 4xDaily Temperature between 10-200 cm below ground level, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5973_979c_f47b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5973_979c_f47b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5973_979c_f47b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5973_979c_f47b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5973_979c_f47b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5973_979c_f47b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48eb_0fc4_e8d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48eb_0fc4_e8d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_48eb_0fc4_e8d3/request", "", "public", "Top Dataset, surface gauss, tmp.10-200cm.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmp (Long Term Mean 4xDaily Temperature between 10-200 cm below ground level, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_48eb_0fc4_e8d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_48eb_0fc4_e8d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_48eb_0fc4_e8d3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_48eb_0fc4_e8d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_48eb_0fc4_e8d3&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_48eb_0fc4_e8d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3a9_0ede_9d42", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3a9_0ede_9d42.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f3a9_0ede_9d42/request", "", "public", "Top Dataset, surface gauss, tmp.10-200cm.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmp (mean Long Term Mean Daily Temperature between 10-200 cm below ground level, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f3a9_0ede_9d42_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f3a9_0ede_9d42_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f3a9_0ede_9d42/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f3a9_0ede_9d42.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f3a9_0ede_9d42&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f3a9_0ede_9d42"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc00_72ea_78b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc00_72ea_78b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc00_72ea_78b0/request", "", "public", "Top Dataset, surface gauss, tmp.10-200cm.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmp (mean Long Term Mean Daily Temperature between 10-200 cm below ground level, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc00_72ea_78b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc00_72ea_78b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc00_72ea_78b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc00_72ea_78b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc00_72ea_78b0&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_dc00_72ea_78b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5876_6fe7_39c8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5876_6fe7_39c8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5876_6fe7_39c8/request", "", "public", "Top Dataset, surface gauss, tmp.10-200cm.mon.1981-2010.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmp (Monthly Long Term Mean Temperature between 10-200 cm below ground level, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5876_6fe7_39c8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5876_6fe7_39c8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5876_6fe7_39c8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5876_6fe7_39c8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5876_6fe7_39c8&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5876_6fe7_39c8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e270_aff9_2448", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e270_aff9_2448.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e270_aff9_2448/request", "", "public", "Top Dataset, surface gauss, tmp.10-200cm.mon.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmp (Monthly Long Term Mean Temperature between 10-200 cm below ground level, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e270_aff9_2448_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e270_aff9_2448_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e270_aff9_2448/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e270_aff9_2448.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e270_aff9_2448&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e270_aff9_2448"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bad8_7225_1680", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bad8_7225_1680.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bad8_7225_1680/request", "", "public", "Top Dataset, surface gauss, tmp.300cm.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmp (Long Term Mean 4xDaily Temperature at 300 cm below ground level, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bad8_7225_1680_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bad8_7225_1680_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bad8_7225_1680/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bad8_7225_1680.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bad8_7225_1680&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_bad8_7225_1680"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58fc_ed81_c5ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58fc_ed81_c5ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_58fc_ed81_c5ca/request", "", "public", "Top Dataset, surface gauss, tmp.300cm.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmp (Long Term Mean 4xDaily Temperature at 300 cm below ground level, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_58fc_ed81_c5ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_58fc_ed81_c5ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_58fc_ed81_c5ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_58fc_ed81_c5ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_58fc_ed81_c5ca&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_58fc_ed81_c5ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a138_76bd_2c59", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a138_76bd_2c59.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a138_76bd_2c59/request", "", "public", "Top Dataset, surface gauss, tmp.300cm.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmp (mean Long Term Mean Daily Temperature at 300 cm below ground level, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a138_76bd_2c59_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a138_76bd_2c59_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a138_76bd_2c59/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a138_76bd_2c59.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a138_76bd_2c59&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a138_76bd_2c59"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_46f7_98a7_3ff6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_46f7_98a7_3ff6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_46f7_98a7_3ff6/request", "", "public", "Top Dataset, surface gauss, tmp.300cm.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmp (mean Long Term Mean Daily Temperature at 300 cm below ground level, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_46f7_98a7_3ff6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_46f7_98a7_3ff6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_46f7_98a7_3ff6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_46f7_98a7_3ff6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_46f7_98a7_3ff6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_46f7_98a7_3ff6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8b3_fc21_1cc4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8b3_fc21_1cc4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d8b3_fc21_1cc4/request", "", "public", "Top Dataset, surface gauss, tmp.300cm.mon.1981-2010.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmp (Monthly Long Term Mean Temperature at 300 cm below ground level, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d8b3_fc21_1cc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d8b3_fc21_1cc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d8b3_fc21_1cc4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d8b3_fc21_1cc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d8b3_fc21_1cc4&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d8b3_fc21_1cc4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a9c_5653_d2f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a9c_5653_d2f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a9c_5653_d2f3/request", "", "public", "Top Dataset, surface gauss, tmp.300cm.mon.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmp (Monthly Long Term Mean Temperature at 300 cm below ground level, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a9c_5653_d2f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a9c_5653_d2f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a9c_5653_d2f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a9c_5653_d2f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a9c_5653_d2f3&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7a9c_5653_d2f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d749_fe53_d5bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d749_fe53_d5bc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d749_fe53_d5bc/request", "", "public", "Top Dataset, surface gauss, topo.sfc.gauss (4x daily NCEP reanalysis), 1985", "4x daily National Centers for Environmental Prediction (NCEP) reanalysis. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Geopotential Height at the Surface, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d749_fe53_d5bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d749_fe53_d5bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d749_fe53_d5bc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d749_fe53_d5bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d749_fe53_d5bc&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d749_fe53_d5bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2207_6759_33c2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2207_6759_33c2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2207_6759_33c2/request", "", "public", "Top Dataset, surface gauss, uflx.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Monthly Long Term Mean of Momentum Flux, U-Component, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2207_6759_33c2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2207_6759_33c2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2207_6759_33c2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2207_6759_33c2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2207_6759_33c2&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2207_6759_33c2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c38_418a_faf7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c38_418a_faf7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7c38_418a_faf7/request", "", "public", "Top Dataset, surface gauss, uflx.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Long Term Mean 4xDaily Momentum Flux, u-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7c38_418a_faf7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7c38_418a_faf7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7c38_418a_faf7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7c38_418a_faf7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7c38_418a_faf7&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7c38_418a_faf7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_710e_bc38_645e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_710e_bc38_645e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_710e_bc38_645e/request", "", "public", "Top Dataset, surface gauss, uflx.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Long Term Mean 4xDaily Momentum Flux, u-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_710e_bc38_645e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_710e_bc38_645e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_710e_bc38_645e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_710e_bc38_645e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_710e_bc38_645e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_710e_bc38_645e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f594_cd99_8f5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f594_cd99_8f5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f594_cd99_8f5f/request", "", "public", "Top Dataset, surface gauss, uflx.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (mean Long Term Mean Daily Momentum Flux, u-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f594_cd99_8f5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f594_cd99_8f5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f594_cd99_8f5f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f594_cd99_8f5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f594_cd99_8f5f&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f594_cd99_8f5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b47d_8fc4_3e8e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b47d_8fc4_3e8e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b47d_8fc4_3e8e/request", "", "public", "Top Dataset, surface gauss, uflx.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (mean Long Term Mean Daily Momentum Flux, u-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b47d_8fc4_3e8e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b47d_8fc4_3e8e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b47d_8fc4_3e8e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b47d_8fc4_3e8e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b47d_8fc4_3e8e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b47d_8fc4_3e8e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65fd_a967_131c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65fd_a967_131c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_65fd_a967_131c/request", "", "public", "Top Dataset, surface gauss, uflx.sfc.mon.1981-2010.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Monthly Long Term Mean of Momentum Flux, U-Component, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_65fd_a967_131c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_65fd_a967_131c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_65fd_a967_131c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_65fd_a967_131c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_65fd_a967_131c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_65fd_a967_131c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2de0_fea3_d7d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2de0_fea3_d7d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2de0_fea3_d7d9/request", "", "public", "Top Dataset, surface gauss, uflx.sfc.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Monthly Long Term Mean of Momentum Flux, U-Component, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2de0_fea3_d7d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2de0_fea3_d7d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2de0_fea3_d7d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2de0_fea3_d7d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2de0_fea3_d7d9&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2de0_fea3_d7d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ace_2c78_2c4b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ace_2c78_2c4b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ace_2c78_2c4b/request", "", "public", "Top Dataset, surface gauss, ugwd.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Monthly Long Term Mean of Zonal Gravity Wave Stress, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ace_2c78_2c4b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ace_2c78_2c4b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ace_2c78_2c4b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ace_2c78_2c4b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ace_2c78_2c4b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8ace_2c78_2c4b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8610_0900_dcb7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8610_0900_dcb7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8610_0900_dcb7/request", "", "public", "Top Dataset, surface gauss, ugwd.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Long Term Mean 4xDaily Zonal Gravity Wave Stress at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8610_0900_dcb7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8610_0900_dcb7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8610_0900_dcb7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8610_0900_dcb7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8610_0900_dcb7&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8610_0900_dcb7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87b3_8007_085d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87b3_8007_085d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_87b3_8007_085d/request", "", "public", "Top Dataset, surface gauss, ugwd.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Long Term Mean 4xDaily Zonal Gravity Wave Stress at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_87b3_8007_085d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_87b3_8007_085d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_87b3_8007_085d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_87b3_8007_085d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_87b3_8007_085d&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_87b3_8007_085d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a9a_61d6_9607", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a9a_61d6_9607.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8a9a_61d6_9607/request", "", "public", "Top Dataset, surface gauss, ugwd.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (mean Long Term Mean Daily Zonal Gravity Wave Stress at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8a9a_61d6_9607_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8a9a_61d6_9607_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8a9a_61d6_9607/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8a9a_61d6_9607.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8a9a_61d6_9607&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8a9a_61d6_9607"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eacc_ec5c_61f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eacc_ec5c_61f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eacc_ec5c_61f0/request", "", "public", "Top Dataset, surface gauss, ugwd.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (mean Long Term Mean Daily Zonal Gravity Wave Stress at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eacc_ec5c_61f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eacc_ec5c_61f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eacc_ec5c_61f0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eacc_ec5c_61f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eacc_ec5c_61f0&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_eacc_ec5c_61f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1615_ec1c_bdf3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1615_ec1c_bdf3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1615_ec1c_bdf3/request", "", "public", "Top Dataset, surface gauss, ugwd.sfc.mon.1981-2010.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Monthly Long Term Mean of Zonal Gravity Wave Stress, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1615_ec1c_bdf3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1615_ec1c_bdf3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1615_ec1c_bdf3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1615_ec1c_bdf3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1615_ec1c_bdf3&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_1615_ec1c_bdf3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57a2_41c8_f3a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57a2_41c8_f3a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_57a2_41c8_f3a0/request", "", "public", "Top Dataset, surface gauss, ugwd.sfc.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Monthly Long Term Mean of Zonal Gravity Wave Stress, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_57a2_41c8_f3a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_57a2_41c8_f3a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_57a2_41c8_f3a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_57a2_41c8_f3a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_57a2_41c8_f3a0&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_57a2_41c8_f3a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7ad_c267_f360", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7ad_c267_f360.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d7ad_c267_f360/request", "", "public", "Top Dataset, surface gauss, ulwrf.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Long Term Mean of Upward Longwave Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d7ad_c267_f360_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d7ad_c267_f360_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d7ad_c267_f360/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d7ad_c267_f360.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d7ad_c267_f360&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d7ad_c267_f360"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae05_ea48_59d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae05_ea48_59d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae05_ea48_59d5/request", "", "public", "Top Dataset, surface gauss, ulwrf.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Long Term Mean 4xDaily Upward Longwave Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae05_ea48_59d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae05_ea48_59d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae05_ea48_59d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae05_ea48_59d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae05_ea48_59d5&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_ae05_ea48_59d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff24_691e_a898", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff24_691e_a898.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff24_691e_a898/request", "", "public", "Top Dataset, surface gauss, ulwrf.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Long Term Mean 4xDaily Upward Longwave Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff24_691e_a898_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff24_691e_a898_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff24_691e_a898/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff24_691e_a898.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff24_691e_a898&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_ff24_691e_a898"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97ae_1433_daac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97ae_1433_daac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_97ae_1433_daac/request", "", "public", "Top Dataset, surface gauss, ulwrf.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (mean Long Term Mean Daily Upward Longwave Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_97ae_1433_daac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_97ae_1433_daac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_97ae_1433_daac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_97ae_1433_daac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_97ae_1433_daac&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_97ae_1433_daac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6662_009d_bdc9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6662_009d_bdc9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6662_009d_bdc9/request", "", "public", "Top Dataset, surface gauss, ulwrf.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (mean Long Term Mean Daily Upward Longwave Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6662_009d_bdc9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6662_009d_bdc9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6662_009d_bdc9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6662_009d_bdc9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6662_009d_bdc9&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6662_009d_bdc9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d238_45f9_5c92", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d238_45f9_5c92.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d238_45f9_5c92/request", "", "public", "Top Dataset, surface gauss, ulwrf.sfc.mon.1981-2010.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Long Term Mean of Upward Longwave Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d238_45f9_5c92_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d238_45f9_5c92_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d238_45f9_5c92/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d238_45f9_5c92.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d238_45f9_5c92&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d238_45f9_5c92"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c536_3338_f1a5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c536_3338_f1a5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c536_3338_f1a5/request", "", "public", "Top Dataset, surface gauss, ulwrf.sfc.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Long Term Mean of Upward Longwave Radiation Flux, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c536_3338_f1a5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c536_3338_f1a5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c536_3338_f1a5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c536_3338_f1a5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c536_3338_f1a5&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c536_3338_f1a5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cdd7_13b4_f8e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cdd7_13b4_f8e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cdd7_13b4_f8e3/request", "", "public", "Top Dataset, surface gauss, uswrf.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Long Term Mean 4xDaily Upward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cdd7_13b4_f8e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cdd7_13b4_f8e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cdd7_13b4_f8e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cdd7_13b4_f8e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cdd7_13b4_f8e3&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_cdd7_13b4_f8e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c6d_683e_f4a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c6d_683e_f4a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6c6d_683e_f4a0/request", "", "public", "Top Dataset, surface gauss, uswrf.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Long Term Mean 4xDaily Upward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6c6d_683e_f4a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6c6d_683e_f4a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6c6d_683e_f4a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6c6d_683e_f4a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6c6d_683e_f4a0&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6c6d_683e_f4a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0dbc_b380_1d35", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0dbc_b380_1d35.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0dbc_b380_1d35/request", "", "public", "Top Dataset, surface gauss, uswrf.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (mean Long Term Mean Daily Upward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0dbc_b380_1d35_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0dbc_b380_1d35_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0dbc_b380_1d35/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0dbc_b380_1d35.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0dbc_b380_1d35&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0dbc_b380_1d35"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3657_b87c_6fa0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3657_b87c_6fa0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3657_b87c_6fa0/request", "", "public", "Top Dataset, surface gauss, uswrf.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (mean Long Term Mean Daily Upward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3657_b87c_6fa0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3657_b87c_6fa0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3657_b87c_6fa0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3657_b87c_6fa0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3657_b87c_6fa0&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_3657_b87c_6fa0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d598_41dc_b1a4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d598_41dc_b1a4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d598_41dc_b1a4/request", "", "public", "Top Dataset, surface gauss, uswrf.sfc.mon.1981-2010.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Long Term Mean Upward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d598_41dc_b1a4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d598_41dc_b1a4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d598_41dc_b1a4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d598_41dc_b1a4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d598_41dc_b1a4&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d598_41dc_b1a4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b2cc_6906_081a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b2cc_6906_081a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b2cc_6906_081a/request", "", "public", "Top Dataset, surface gauss, uswrf.sfc.mon.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Long Term Mean Upward Solar Radiation Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b2cc_6906_081a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b2cc_6906_081a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b2cc_6906_081a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b2cc_6906_081a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b2cc_6906_081a&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b2cc_6906_081a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aadb_4c89_1c0b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aadb_4c89_1c0b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aadb_4c89_1c0b/request", "", "public", "Top Dataset, surface gauss, uwnd.10m.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean 4xDaily u-wind at 10 m, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aadb_4c89_1c0b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aadb_4c89_1c0b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aadb_4c89_1c0b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aadb_4c89_1c0b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aadb_4c89_1c0b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_aadb_4c89_1c0b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fa7_b503_d156", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fa7_b503_d156.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8fa7_b503_d156/request", "", "public", "Top Dataset, surface gauss, uwnd.10m.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Long Term Mean 4xDaily u-wind at 10 m, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8fa7_b503_d156_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8fa7_b503_d156_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8fa7_b503_d156/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8fa7_b503_d156.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8fa7_b503_d156&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8fa7_b503_d156"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a17f_481c_03f7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a17f_481c_03f7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a17f_481c_03f7/request", "", "public", "Top Dataset, surface gauss, uwnd.10m.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (mean Long Term Mean Daily u-wind at 10 m, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a17f_481c_03f7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a17f_481c_03f7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a17f_481c_03f7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a17f_481c_03f7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a17f_481c_03f7&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a17f_481c_03f7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8523_dfc3_9cfb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8523_dfc3_9cfb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8523_dfc3_9cfb/request", "", "public", "Top Dataset, surface gauss, uwnd.10m.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (mean Long Term Mean Daily u-wind at 10 m, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8523_dfc3_9cfb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8523_dfc3_9cfb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8523_dfc3_9cfb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8523_dfc3_9cfb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8523_dfc3_9cfb&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8523_dfc3_9cfb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03cd_947a_2fd8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03cd_947a_2fd8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03cd_947a_2fd8/request", "", "public", "Top Dataset, surface gauss, uwnd.10m.mon.1981-2010.ltm (monthly mean u wind), 0001", "monthly mean u wind. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly Long Term Mean of U-Wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03cd_947a_2fd8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03cd_947a_2fd8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03cd_947a_2fd8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03cd_947a_2fd8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03cd_947a_2fd8&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_03cd_947a_2fd8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea6c_7a8e_682c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea6c_7a8e_682c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ea6c_7a8e_682c/request", "", "public", "Top Dataset, surface gauss, uwnd.10m.mon.ltm (monthly mean u wind), 0001", "monthly mean u wind. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly Long Term Mean of U-Wind, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ea6c_7a8e_682c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ea6c_7a8e_682c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ea6c_7a8e_682c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ea6c_7a8e_682c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ea6c_7a8e_682c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_ea6c_7a8e_682c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e22_9577_c296", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e22_9577_c296.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e22_9577_c296/request", "", "public", "Top Dataset, surface gauss, vbdsf.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvbdsf (Long Term Mean 4xDaily Visible Beam Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e22_9577_c296_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e22_9577_c296_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e22_9577_c296/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e22_9577_c296.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e22_9577_c296&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0e22_9577_c296"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae3f_88bc_b7ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae3f_88bc_b7ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae3f_88bc_b7ce/request", "", "public", "Top Dataset, surface gauss, vbdsf.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvbdsf (Long Term Mean 4xDaily Visible Beam Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae3f_88bc_b7ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae3f_88bc_b7ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae3f_88bc_b7ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae3f_88bc_b7ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae3f_88bc_b7ce&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_ae3f_88bc_b7ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f995_6eab_bb2e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f995_6eab_bb2e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f995_6eab_bb2e/request", "", "public", "Top Dataset, surface gauss, vbdsf.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvbdsf (mean Long Term Mean Daily Visible Beam Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f995_6eab_bb2e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f995_6eab_bb2e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f995_6eab_bb2e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f995_6eab_bb2e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f995_6eab_bb2e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f995_6eab_bb2e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b7f_f7a3_8ea7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b7f_f7a3_8ea7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b7f_f7a3_8ea7/request", "", "public", "Top Dataset, surface gauss, vbdsf.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvbdsf (mean Long Term Mean Daily Visible Beam Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b7f_f7a3_8ea7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b7f_f7a3_8ea7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b7f_f7a3_8ea7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b7f_f7a3_8ea7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b7f_f7a3_8ea7&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7b7f_f7a3_8ea7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_caa6_4e31_74e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_caa6_4e31_74e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_caa6_4e31_74e2/request", "", "public", "Top Dataset, surface gauss, vbdsf.sfc.mon.1981-2010.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvbdsf (Monthly Long Term Mean Visible Beam Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_caa6_4e31_74e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_caa6_4e31_74e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_caa6_4e31_74e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_caa6_4e31_74e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_caa6_4e31_74e2&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_caa6_4e31_74e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b6e7_aef8_6eb6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b6e7_aef8_6eb6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b6e7_aef8_6eb6/request", "", "public", "Top Dataset, surface gauss, vbdsf.sfc.mon.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvbdsf (Monthly Long Term Mean Visible Beam Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b6e7_aef8_6eb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b6e7_aef8_6eb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b6e7_aef8_6eb6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b6e7_aef8_6eb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b6e7_aef8_6eb6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b6e7_aef8_6eb6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7d0_9973_54dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7d0_9973_54dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c7d0_9973_54dc/request", "", "public", "Top Dataset, surface gauss, vddsf.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvddsf (Long Term Mean 4xDaily Visible Diffuse Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c7d0_9973_54dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c7d0_9973_54dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c7d0_9973_54dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c7d0_9973_54dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c7d0_9973_54dc&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c7d0_9973_54dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5cb6_c581_9ded", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5cb6_c581_9ded.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5cb6_c581_9ded/request", "", "public", "Top Dataset, surface gauss, vddsf.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvddsf (Long Term Mean 4xDaily Visible Diffuse Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5cb6_c581_9ded_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5cb6_c581_9ded_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5cb6_c581_9ded/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5cb6_c581_9ded.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5cb6_c581_9ded&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5cb6_c581_9ded"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f25_704a_34f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f25_704a_34f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f25_704a_34f2/request", "", "public", "Top Dataset, surface gauss, vddsf.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvddsf (mean Long Term Mean Daily Visible Diffuse Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f25_704a_34f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f25_704a_34f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f25_704a_34f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f25_704a_34f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f25_704a_34f2&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9f25_704a_34f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_82bd_1ee1_e3be", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_82bd_1ee1_e3be.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_82bd_1ee1_e3be/request", "", "public", "Top Dataset, surface gauss, vddsf.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvddsf (mean Long Term Mean Daily Visible Diffuse Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_82bd_1ee1_e3be_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_82bd_1ee1_e3be_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_82bd_1ee1_e3be/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_82bd_1ee1_e3be.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_82bd_1ee1_e3be&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_82bd_1ee1_e3be"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ce4_e69b_a74f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ce4_e69b_a74f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ce4_e69b_a74f/request", "", "public", "Top Dataset, surface gauss, vddsf.sfc.mon.1981-2010.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvddsf (Monthly Long Term Mean Visible Diffuse Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ce4_e69b_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ce4_e69b_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ce4_e69b_a74f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ce4_e69b_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ce4_e69b_a74f&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5ce4_e69b_a74f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9075_1685_ace1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9075_1685_ace1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9075_1685_ace1/request", "", "public", "Top Dataset, surface gauss, vddsf.sfc.mon.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvddsf (Monthly Long Term Mean Visible Diffuse Downward Solar Flux at surface, W/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9075_1685_ace1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9075_1685_ace1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9075_1685_ace1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9075_1685_ace1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9075_1685_ace1&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9075_1685_ace1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_167a_afe1_199f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_167a_afe1_199f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_167a_afe1_199f/request", "", "public", "Top Dataset, surface gauss, vflx.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Monthly Long Term Mean of Momentum Flux, V-Component, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_167a_afe1_199f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_167a_afe1_199f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_167a_afe1_199f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_167a_afe1_199f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_167a_afe1_199f&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_167a_afe1_199f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e30d_903e_1022", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e30d_903e_1022.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e30d_903e_1022/request", "", "public", "Top Dataset, surface gauss, vflx.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Long Term Mean 4xDaily Momentum Flux, v-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e30d_903e_1022_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e30d_903e_1022_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e30d_903e_1022/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e30d_903e_1022.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e30d_903e_1022&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e30d_903e_1022"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03d1_1ceb_ff81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03d1_1ceb_ff81.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03d1_1ceb_ff81/request", "", "public", "Top Dataset, surface gauss, vflx.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Long Term Mean 4xDaily Momentum Flux, v-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03d1_1ceb_ff81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03d1_1ceb_ff81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03d1_1ceb_ff81/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03d1_1ceb_ff81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03d1_1ceb_ff81&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_03d1_1ceb_ff81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8988_a38a_d8d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8988_a38a_d8d1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8988_a38a_d8d1/request", "", "public", "Top Dataset, surface gauss, vflx.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (mean Long Term Mean Daily Momentum Flux, v-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8988_a38a_d8d1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8988_a38a_d8d1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8988_a38a_d8d1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8988_a38a_d8d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8988_a38a_d8d1&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8988_a38a_d8d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c036_89d9_e99e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c036_89d9_e99e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c036_89d9_e99e/request", "", "public", "Top Dataset, surface gauss, vflx.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (mean Long Term Mean Daily Momentum Flux, v-component at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c036_89d9_e99e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c036_89d9_e99e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c036_89d9_e99e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c036_89d9_e99e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c036_89d9_e99e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c036_89d9_e99e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57f4_8007_7c8b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57f4_8007_7c8b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_57f4_8007_7c8b/request", "", "public", "Top Dataset, surface gauss, vflx.sfc.mon.1981-2010.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Monthly Long Term Mean of Momentum Flux, V-Component, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_57f4_8007_7c8b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_57f4_8007_7c8b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_57f4_8007_7c8b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_57f4_8007_7c8b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_57f4_8007_7c8b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_57f4_8007_7c8b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7690_0f4e_c6a3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7690_0f4e_c6a3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7690_0f4e_c6a3/request", "", "public", "Top Dataset, surface gauss, vflx.sfc.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Monthly Long Term Mean of Momentum Flux, V-Component, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7690_0f4e_c6a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7690_0f4e_c6a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7690_0f4e_c6a3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7690_0f4e_c6a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7690_0f4e_c6a3&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7690_0f4e_c6a3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d470_c013_ef88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d470_c013_ef88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d470_c013_ef88/request", "", "public", "Top Dataset, surface gauss, vgwd.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Monthly Long Term Mean of Meridional Gravity Wave Stress, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d470_c013_ef88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d470_c013_ef88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d470_c013_ef88/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d470_c013_ef88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d470_c013_ef88&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d470_c013_ef88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aea4_a33f_bc0e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aea4_a33f_bc0e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aea4_a33f_bc0e/request", "", "public", "Top Dataset, surface gauss, vgwd.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Long Term Mean 4xDaily Meridional Gravity Wave Stress at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aea4_a33f_bc0e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aea4_a33f_bc0e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aea4_a33f_bc0e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aea4_a33f_bc0e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aea4_a33f_bc0e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_aea4_a33f_bc0e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9125_ba14_7e3a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9125_ba14_7e3a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9125_ba14_7e3a/request", "", "public", "Top Dataset, surface gauss, vgwd.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Long Term Mean 4xDaily Meridional Gravity Wave Stress at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9125_ba14_7e3a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9125_ba14_7e3a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9125_ba14_7e3a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9125_ba14_7e3a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9125_ba14_7e3a&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9125_ba14_7e3a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a11_5181_5d4a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a11_5181_5d4a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a11_5181_5d4a/request", "", "public", "Top Dataset, surface gauss, vgwd.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (mean Long Term Mean Daily Meridional Gravity Wave Stress at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a11_5181_5d4a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a11_5181_5d4a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a11_5181_5d4a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a11_5181_5d4a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a11_5181_5d4a&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0a11_5181_5d4a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e4e_921f_f6d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e4e_921f_f6d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1e4e_921f_f6d0/request", "", "public", "Top Dataset, surface gauss, vgwd.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (mean Long Term Mean Daily Meridional Gravity Wave Stress at surface, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1e4e_921f_f6d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1e4e_921f_f6d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1e4e_921f_f6d0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1e4e_921f_f6d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1e4e_921f_f6d0&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_1e4e_921f_f6d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51ed_fcfb_335c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51ed_fcfb_335c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_51ed_fcfb_335c/request", "", "public", "Top Dataset, surface gauss, vgwd.sfc.mon.1981-2010.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Monthly Long Term Mean of Meridional Gravity Wave Stress, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_51ed_fcfb_335c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_51ed_fcfb_335c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_51ed_fcfb_335c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_51ed_fcfb_335c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_51ed_fcfb_335c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_51ed_fcfb_335c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afdf_dba1_dc00", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afdf_dba1_dc00.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_afdf_dba1_dc00/request", "", "public", "Top Dataset, surface gauss, vgwd.sfc.mon.ltm (4x daily NMC reanalysis), 0001", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Monthly Long Term Mean of Meridional Gravity Wave Stress, N/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_afdf_dba1_dc00_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_afdf_dba1_dc00_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_afdf_dba1_dc00/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_afdf_dba1_dc00.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_afdf_dba1_dc00&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_afdf_dba1_dc00"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21ae_42f6_6518", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21ae_42f6_6518.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_21ae_42f6_6518/request", "", "public", "Top Dataset, surface gauss, vwnd.10m.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean 4xDaily v-wind at 10 m, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_21ae_42f6_6518_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_21ae_42f6_6518_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_21ae_42f6_6518/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_21ae_42f6_6518.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_21ae_42f6_6518&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_21ae_42f6_6518"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cab7_0915_642f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cab7_0915_642f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cab7_0915_642f/request", "", "public", "Top Dataset, surface gauss, vwnd.10m.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Long Term Mean 4xDaily v-wind at 10 m, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cab7_0915_642f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cab7_0915_642f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cab7_0915_642f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cab7_0915_642f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cab7_0915_642f&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_cab7_0915_642f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa35_623b_2b04", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa35_623b_2b04.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa35_623b_2b04/request", "", "public", "Top Dataset, surface gauss, vwnd.10m.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (mean Long Term Mean Daily v-wind at 10 m, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa35_623b_2b04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa35_623b_2b04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa35_623b_2b04/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa35_623b_2b04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa35_623b_2b04&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_aa35_623b_2b04"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e87a_1949_9bfa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e87a_1949_9bfa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e87a_1949_9bfa/request", "", "public", "Top Dataset, surface gauss, vwnd.10m.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (mean Long Term Mean Daily v-wind at 10 m, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e87a_1949_9bfa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e87a_1949_9bfa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e87a_1949_9bfa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e87a_1949_9bfa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e87a_1949_9bfa&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e87a_1949_9bfa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2858_66a6_77a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2858_66a6_77a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2858_66a6_77a1/request", "", "public", "Top Dataset, surface gauss, vwnd.10m.mon.1981-2010.ltm (monthly mean u wind), 0001", "monthly mean u wind. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly Long Term Mean V wind at 10 m, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2858_66a6_77a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2858_66a6_77a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2858_66a6_77a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2858_66a6_77a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2858_66a6_77a1&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2858_66a6_77a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f066_0267_0a52", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f066_0267_0a52.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f066_0267_0a52/request", "", "public", "Top Dataset, surface gauss, vwnd.10m.mon.ltm (monthly mean u wind), 0001", "monthly mean u wind. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly Long Term Mean V wind at 10 m, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f066_0267_0a52_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f066_0267_0a52_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f066_0267_0a52/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f066_0267_0a52.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f066_0267_0a52&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f066_0267_0a52"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0262_6393_86db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0262_6393_86db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0262_6393_86db/request", "", "public", "Top Dataset, surface gauss, weasd.sfc.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (Long Term Mean 4xDaily Water Equiv. of Accum. Snow Depth at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0262_6393_86db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0262_6393_86db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0262_6393_86db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0262_6393_86db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0262_6393_86db&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0262_6393_86db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_208b_f082_9604", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_208b_f082_9604.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_208b_f082_9604/request", "", "public", "Top Dataset, surface gauss, weasd.sfc.4Xday.ltm (4x daily NMC reanalysis (1981)), 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (Long Term Mean 4xDaily Water Equiv. of Accum. Snow Depth at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_208b_f082_9604_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_208b_f082_9604_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_208b_f082_9604/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_208b_f082_9604.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_208b_f082_9604&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_208b_f082_9604"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dab_a7b0_37bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dab_a7b0_37bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8dab_a7b0_37bd/request", "", "public", "Top Dataset, surface gauss, weasd.sfc.day.1981-2010.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (mean Long Term Mean Daily Water Equiv. of Accum. Snow Depth at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8dab_a7b0_37bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8dab_a7b0_37bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8dab_a7b0_37bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8dab_a7b0_37bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8dab_a7b0_37bd&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8dab_a7b0_37bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b16a_812d_044f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b16a_812d_044f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b16a_812d_044f/request", "", "public", "Top Dataset, surface gauss, weasd.sfc.day.ltm (mean daily NMC reanalysis (1981)), 0001", "mean daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (mean Long Term Mean Daily Water Equiv. of Accum. Snow Depth at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b16a_812d_044f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b16a_812d_044f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b16a_812d_044f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b16a_812d_044f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b16a_812d_044f&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b16a_812d_044f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a75c_b885_9f4b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a75c_b885_9f4b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a75c_b885_9f4b/request", "", "public", "Top Dataset, surface gauss, weasd.sfc.mon.1981-2010.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (Monthly Long Term Mean Water Equiv. of Accum. Snow Depth at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a75c_b885_9f4b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a75c_b885_9f4b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a75c_b885_9f4b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a75c_b885_9f4b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a75c_b885_9f4b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a75c_b885_9f4b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_84c6_8312_4018", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_84c6_8312_4018.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_84c6_8312_4018/request", "", "public", "Top Dataset, surface gauss, weasd.sfc.mon.ltm (NCEP-NCAR Reanalysis 1), 0001", "National Centers for Environmental Prediction (NCEP)-National Center for Atmospheric Research (NCAR) Reanalysis 1. Data is from NCEP initialized reanalysis\n(4x/day). It consists of T42 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (Monthly Long Term Mean Water Equiv. of Accum. Snow Depth at surface, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_84c6_8312_4018_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_84c6_8312_4018_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_84c6_8312_4018/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_84c6_8312_4018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_84c6_8312_4018&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_84c6_8312_4018"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d656_ecef_4e0a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d656_ecef_4e0a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d656_ecef_4e0a/request", "", "public", "Top Dataset, surface gauss, wspd.10m.mon.1981-2010.ltm, 0001", "National Centers for Environmental Prediction (NCEP) Reanalysis monthly mean 10 m wind speed. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of T62 variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Monthly Long Term Mean of Wind Speed, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d656_ecef_4e0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d656_ecef_4e0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d656_ecef_4e0a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d656_ecef_4e0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d656_ecef_4e0a&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d656_ecef_4e0a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ad4_cc8e_1b0b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ad4_cc8e_1b0b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2ad4_cc8e_1b0b/request", "", "public", "Top Dataset, surface, air.sig995.4Xday.1981-2010.ltm, 2.5\u00b0, 0001", "4Xdaily ltm air.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (4xDaily Long Term Mean Air temperature at sigma level 995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2ad4_cc8e_1b0b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2ad4_cc8e_1b0b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2ad4_cc8e_1b0b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2ad4_cc8e_1b0b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2ad4_cc8e_1b0b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2ad4_cc8e_1b0b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_680c_36ac_6f8e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_680c_36ac_6f8e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_680c_36ac_6f8e/request", "", "public", "Top Dataset, surface, air.sig995.day.1981-2010.ltm, 2.5\u00b0, 0001", "daily ltm air.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (mean Long Term Mean Daily Air temperature at sigma level 995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_680c_36ac_6f8e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_680c_36ac_6f8e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_680c_36ac_6f8e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_680c_36ac_6f8e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_680c_36ac_6f8e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_680c_36ac_6f8e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8713_2bb5_bff4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8713_2bb5_bff4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8713_2bb5_bff4/request", "", "public", "Top Dataset, surface, air.sig995.mon.1981-2010.ltm, 2.5\u00b0, 0001", "monthly ltm air.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Mean Air Temperature at sigma level 0.995, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8713_2bb5_bff4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8713_2bb5_bff4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8713_2bb5_bff4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8713_2bb5_bff4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8713_2bb5_bff4&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8713_2bb5_bff4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e4e_7957_b4dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e4e_7957_b4dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6e4e_7957_b4dd/request", "", "public", "Top Dataset, surface, hgt.sfc (4x daily NMC reanalysis), 2.5\u00b0, 1985", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis.\nIt consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (4xDaily Geopotential height, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6e4e_7957_b4dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6e4e_7957_b4dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6e4e_7957_b4dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6e4e_7957_b4dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6e4e_7957_b4dd&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6e4e_7957_b4dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aad0_8465_b7ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aad0_8465_b7ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aad0_8465_b7ab/request", "", "public", "Top Dataset, surface, lftx.4Xday.1981-2010.ltm (4Xdaily ltm lftx from the NCEP Reanalysis), 2.5\u00b0, 0001", "4Xdaily ltm lftx from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlftx (4xDaily Long Term Mean Surface Lifted Index, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aad0_8465_b7ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aad0_8465_b7ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aad0_8465_b7ab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aad0_8465_b7ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aad0_8465_b7ab&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_aad0_8465_b7ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4382_005c_cafb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4382_005c_cafb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4382_005c_cafb/request", "", "public", "Top Dataset, surface, lftx.day.1981-2010.ltm (daily ltm lftx from the NCEP Reanalysis), 2.5\u00b0, 0001", "daily ltm lftx from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlftx (mean Long Term Mean Daily Surface Lifted Index, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4382_005c_cafb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4382_005c_cafb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4382_005c_cafb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4382_005c_cafb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4382_005c_cafb&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_4382_005c_cafb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_33de_dfa7_6e09", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_33de_dfa7_6e09.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_33de_dfa7_6e09/request", "", "public", "Top Dataset, surface, lftx.mon.1981-2010.ltm (monthly ltm lftx from the NCEP Reanalysis), 2.5\u00b0, 0001", "monthly ltm lftx from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlftx (Monthly Long Term Mean Surface Lifted Index, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_33de_dfa7_6e09_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_33de_dfa7_6e09_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_33de_dfa7_6e09/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_33de_dfa7_6e09.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_33de_dfa7_6e09&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_33de_dfa7_6e09"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4979_9a47_16db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4979_9a47_16db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4979_9a47_16db/request", "", "public", "Top Dataset, surface, lftx4.4Xday.1981-2010.ltm (4Xdaily ltm lftx4 from the NCEP Reanalysis), 2.5\u00b0, 0001", "4Xdaily ltm lftx4 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlftx4 (4xDaily Long Term Mean Best (4-layer) Lifted Index, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4979_9a47_16db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4979_9a47_16db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4979_9a47_16db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4979_9a47_16db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4979_9a47_16db&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_4979_9a47_16db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a44_24b3_e7d8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a44_24b3_e7d8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a44_24b3_e7d8/request", "", "public", "Top Dataset, surface, lftx4.day.1981-2010.ltm (daily ltm lftx4 from the NCEP Reanalysis), 2.5\u00b0, 0001", "daily ltm lftx4 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlftx4 (mean Long Term Mean Daily Best (4-layer) Lifted Index, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a44_24b3_e7d8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a44_24b3_e7d8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a44_24b3_e7d8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a44_24b3_e7d8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a44_24b3_e7d8&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7a44_24b3_e7d8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d848_486d_b898", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d848_486d_b898.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d848_486d_b898/request", "", "public", "Top Dataset, surface, lftx4.mon.1981-2010.ltm (monthly ltm lftx4 from the NCEP Reanalysis), 2.5\u00b0, 0001", "monthly ltm lftx4 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlftx4 (Monthly Long Term Mean Surface Lifted Index, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d848_486d_b898_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d848_486d_b898_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d848_486d_b898/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d848_486d_b898.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d848_486d_b898&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d848_486d_b898"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c4e_18f0_d4dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c4e_18f0_d4dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2c4e_18f0_d4dd/request", "", "public", "Top Dataset, surface, mslp.day.ltm.1981-2010 (Daily NCEP/DOE Reanalysis 2), 2.5\u00b0, 0001", "Daily National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to\na rectangular grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nmslp (Daily Long Term Mean Sea Level Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2c4e_18f0_d4dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2c4e_18f0_d4dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2c4e_18f0_d4dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2c4e_18f0_d4dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2c4e_18f0_d4dd&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_2c4e_18f0_d4dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3522_d992_e5d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3522_d992_e5d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3522_d992_e5d9/request", "", "public", "Top Dataset, surface, mslp.mon.1981-2010.ltm (Monthly NCEP/DOE Reanalysis 2), 2.5\u00b0, 0001", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to\na rectangular grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nmslp (Monthly Long Term Mean Sea Level Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3522_d992_e5d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3522_d992_e5d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3522_d992_e5d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3522_d992_e5d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3522_d992_e5d9&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_3522_d992_e5d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a7a_0e63_7c0c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a7a_0e63_7c0c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a7a_0e63_7c0c/request", "", "public", "Top Dataset, surface, mslp.mon.mean (Monthly NCEP/DOE Reanalysis 2), 2.5\u00b0, 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to\na rectangular grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nmslp (Monthly Mean Sea Level Pressure, Pascals)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a7a_0e63_7c0c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a7a_0e63_7c0c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a7a_0e63_7c0c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a7a_0e63_7c0c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a7a_0e63_7c0c&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_0a7a_0e63_7c0c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a00_8f54_065e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a00_8f54_065e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a00_8f54_065e/request", "", "public", "Top Dataset, surface, omega.sig995.4Xday.1981-2010.ltm, 2.5\u00b0, 0001", "4Xdaily ltm omega.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (4xDaily Long Term Mean omega at sigma level 0.995, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a00_8f54_065e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a00_8f54_065e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a00_8f54_065e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a00_8f54_065e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a00_8f54_065e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0a00_8f54_065e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d26_734e_c5fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d26_734e_c5fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d26_734e_c5fa/request", "", "public", "Top Dataset, surface, omega.sig995.day.1981-2010.ltm, 2.5\u00b0, 0001", "daily ltm omega.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Daily Long Term Mean omega at sigma level 0.995, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d26_734e_c5fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d26_734e_c5fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d26_734e_c5fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d26_734e_c5fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d26_734e_c5fa&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_4d26_734e_c5fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_36ef_3b9d_291f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_36ef_3b9d_291f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_36ef_3b9d_291f/request", "", "public", "Top Dataset, surface, omega.sig995.mon.1981-2010.ltm, 2.5\u00b0, 0001", "monthly ltm omega.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nomega (Monthly Long Term Mean omega at sigma level 0.995, Pascal/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_36ef_3b9d_291f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_36ef_3b9d_291f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_36ef_3b9d_291f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_36ef_3b9d_291f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_36ef_3b9d_291f&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_36ef_3b9d_291f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2406_193a_d5f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2406_193a_d5f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2406_193a_d5f5/request", "", "public", "Top Dataset, surface, pottmp.sig995.4Xday.1981-2010.ltm, 2.5\u00b0, 0001", "4Xdaily ltm pottmp.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (4xDaily Long Term Mean potential temperature at sigma level 995, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2406_193a_d5f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2406_193a_d5f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2406_193a_d5f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2406_193a_d5f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2406_193a_d5f5&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2406_193a_d5f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_277c_c4a0_23ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_277c_c4a0_23ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_277c_c4a0_23ea/request", "", "public", "Top Dataset, surface, pottmp.sig995.day.1981-2010.ltm, 2.5\u00b0, 0001", "daily ltm pottmp.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (mean Long Term Mean Daily potential temperature at sigma level 995, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_277c_c4a0_23ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_277c_c4a0_23ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_277c_c4a0_23ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_277c_c4a0_23ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_277c_c4a0_23ea&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_277c_c4a0_23ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_781e_e598_90b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_781e_e598_90b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_781e_e598_90b7/request", "", "public", "Top Dataset, surface, pottmp.sig995.mon.1981-2010.ltm (Monthly mean NCEP Reanalysis), 2.5\u00b0, 0001", "Monthly mean National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Long Term mean potential temperature at sigma level 995, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_781e_e598_90b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_781e_e598_90b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_781e_e598_90b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_781e_e598_90b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_781e_e598_90b7&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_781e_e598_90b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffed_c2c8_3702", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffed_c2c8_3702.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ffed_c2c8_3702/request", "", "public", "Top Dataset, surface, pottmp.sig995.mon.ltm (Monthly mean NCEP Reanalysis), 2.5\u00b0, 0001", "Monthly mean National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Long Term mean potential temperature at sigma level 995, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ffed_c2c8_3702_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ffed_c2c8_3702_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ffed_c2c8_3702/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ffed_c2c8_3702.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ffed_c2c8_3702&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_ffed_c2c8_3702"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e78_3f93_c47a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e78_3f93_c47a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6e78_3f93_c47a/request", "", "public", "Top Dataset, surface, pr wtr.day.ltm.1981-2010 (Daily NCEP/DOE Reanalysis 2), 2.5\u00b0, 0001", "Daily National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to\na rectangular grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Daily Long Term Mean Precipitable Water for Entire Atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6e78_3f93_c47a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6e78_3f93_c47a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6e78_3f93_c47a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6e78_3f93_c47a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6e78_3f93_c47a&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_6e78_3f93_c47a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf22_e6ef_ad58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf22_e6ef_ad58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf22_e6ef_ad58/request", "", "public", "Top Dataset, surface, pr wtr.eatm.4Xday.1981-2010.ltm, 2.5\u00b0, 0001", "4Xdaily ltm pr_wtr.eatm from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (4xDaily Long Term Mean Precipitable Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf22_e6ef_ad58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf22_e6ef_ad58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf22_e6ef_ad58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf22_e6ef_ad58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf22_e6ef_ad58&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_cf22_e6ef_ad58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e5d_1f7f_0a9b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e5d_1f7f_0a9b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e5d_1f7f_0a9b/request", "", "public", "Top Dataset, surface, pr wtr.eatm.day.1981-2010.ltm (daily ltm pr_wtr from the NCEP Reanalysis), 2.5\u00b0, 0001", "daily ltm pr_wtr from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (mean Long Term Mean Daily Precipitable Water for entire atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e5d_1f7f_0a9b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e5d_1f7f_0a9b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e5d_1f7f_0a9b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e5d_1f7f_0a9b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e5d_1f7f_0a9b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0e5d_1f7f_0a9b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6511_aacf_c569", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6511_aacf_c569.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6511_aacf_c569/request", "", "public", "Top Dataset, surface, pr wtr.eatm.mon.1981-2010.ltm (Daily NCEP/DOE Reanalysis 2), 2.5\u00b0, 0001", "Daily National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to\na rectangular grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Long Term Precipitable Water for Entire Atmosphere, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6511_aacf_c569_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6511_aacf_c569_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6511_aacf_c569/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6511_aacf_c569.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6511_aacf_c569&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_6511_aacf_c569"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6da1_75b7_1532", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6da1_75b7_1532.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6da1_75b7_1532/request", "", "public", "Top Dataset, surface, pr wtr.eatm.mon.1981-2010.ltm, 2.5\u00b0, 0001", "monthly ltm pr_wtr.eatm from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Long Term Mean of Precipitable Water Content, kg/m^2)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6da1_75b7_1532_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6da1_75b7_1532_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6da1_75b7_1532/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6da1_75b7_1532.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6da1_75b7_1532&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6da1_75b7_1532"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_faf0_2d88_4821", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_faf0_2d88_4821.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_faf0_2d88_4821/request", "", "public", "Top Dataset, surface, pr wtr.eatm.mon.mean (Daily NCEP/DOE Reanalysis 2), 2.5\u00b0, 1979-present", "Daily National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to\na rectangular grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Precipitable Water for Entire Atmosphere, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_faf0_2d88_4821_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_faf0_2d88_4821_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_faf0_2d88_4821/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_faf0_2d88_4821.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_faf0_2d88_4821&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_faf0_2d88_4821"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3518_77e3_8aed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3518_77e3_8aed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3518_77e3_8aed/request", "", "public", "Top Dataset, surface, pres.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 2.5\u00b0, 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (4xDaily Long Term Mean Pressure at surface, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3518_77e3_8aed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3518_77e3_8aed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3518_77e3_8aed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3518_77e3_8aed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3518_77e3_8aed&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_3518_77e3_8aed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a2a_eb4b_56fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a2a_eb4b_56fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a2a_eb4b_56fc/request", "", "public", "Top Dataset, surface, pres.4Xday.ltm (4x daily NMC reanalysis (1981)), 2.5\u00b0, 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (4xDaily Long Term Mean Pressure at surface, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a2a_eb4b_56fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a2a_eb4b_56fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a2a_eb4b_56fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a2a_eb4b_56fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a2a_eb4b_56fc&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7a2a_eb4b_56fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cb2_2a80_a3d8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cb2_2a80_a3d8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9cb2_2a80_a3d8/request", "", "public", "Top Dataset, surface, pres.day.1981-2010.ltm (daily ltm pres from the NCEP Reanalysis), 2.5\u00b0, 0001", "daily ltm pres from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (mean Long Term Mean Daily Pressure at surface, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9cb2_2a80_a3d8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9cb2_2a80_a3d8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9cb2_2a80_a3d8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9cb2_2a80_a3d8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9cb2_2a80_a3d8&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_9cb2_2a80_a3d8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18eb_2968_d307", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18eb_2968_d307.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_18eb_2968_d307/request", "", "public", "Top Dataset, surface, pres.day.ltm.1981-2010 (Daily NCEP/DOE Reanalysis 2), 2.5\u00b0, 0001", "Daily National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to rectangular grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Daily Long Term Mean Pressure at Surface, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_18eb_2968_d307_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_18eb_2968_d307_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_18eb_2968_d307/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_18eb_2968_d307.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_18eb_2968_d307&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_18eb_2968_d307"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5378_42dc_8f5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5378_42dc_8f5b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5378_42dc_8f5b/request", "", "public", "Top Dataset, surface, pres.mon.1981-2010.ltm (monthly ltm pres from the NCEP Reanalysis), 2.5\u00b0, 0001", "monthly ltm pres from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Mean of Surface Pressure, millibars)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5378_42dc_8f5b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5378_42dc_8f5b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5378_42dc_8f5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5378_42dc_8f5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5378_42dc_8f5b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5378_42dc_8f5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fadb_89dd_c934", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fadb_89dd_c934.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fadb_89dd_c934/request", "", "public", "Top Dataset, surface, pres.sfc.mon.mean (Monthly NCEP/DOE Reanalysis 2), 2.5\u00b0, 1979-present", "Monthly National Centers for Environmental Prediction (NCEP)/Department of Energy (DOE) Reanalysis 2. Data is from \nNCEP/DOE Atmosphere Model Intercomparison Project (AMIP)-II Reanalysis (Reanalysis-2)\n(4x/day). Data interpolated from model (sigma) surfaces to rectangular grid.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Pressure at Surface, Pascals)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fadb_89dd_c934_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fadb_89dd_c934_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fadb_89dd_c934/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fadb_89dd_c934.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fadb_89dd_c934&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_fadb_89dd_c934"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_250f_c823_cf97", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_250f_c823_cf97.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_250f_c823_cf97/request", "", "public", "Top Dataset, surface, rhum.sig995.4Xday.1981-2010.ltm, 2.5\u00b0, 0001", "4Xdaily ltm rhum.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (4xDaily Long Term Mean relative humidity at sigma level 995, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_250f_c823_cf97_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_250f_c823_cf97_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_250f_c823_cf97/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_250f_c823_cf97.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_250f_c823_cf97&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_250f_c823_cf97"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_949b_aead_422d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_949b_aead_422d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_949b_aead_422d/request", "", "public", "Top Dataset, surface, rhum.sig995.day.1981-2010.ltm, 2.5\u00b0, 0001", "daily ltm rhum.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (mean Long Term Mean Daily relative humidity at sigma level 995, percent)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_949b_aead_422d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_949b_aead_422d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_949b_aead_422d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_949b_aead_422d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_949b_aead_422d&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_949b_aead_422d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5ba_ad11_0aee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5ba_ad11_0aee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5ba_ad11_0aee/request", "", "public", "Top Dataset, surface, slp.4Xday.1981-2010.ltm (4x daily NMC reanalysis (1981)), 2.5\u00b0, 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (4xDaily Long Term Mean Sea Level Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5ba_ad11_0aee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5ba_ad11_0aee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5ba_ad11_0aee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5ba_ad11_0aee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5ba_ad11_0aee&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b5ba_ad11_0aee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72e4_c180_e9e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72e4_c180_e9e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_72e4_c180_e9e1/request", "", "public", "Top Dataset, surface, slp.4Xday.ltm (4x daily NMC reanalysis (1981)), 2.5\u00b0, 0001", "4x daily National Meteorological Center (NMC) reanalysis (1981). Data is from NMC initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (4xDaily Long Term Mean Sea Level Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_72e4_c180_e9e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_72e4_c180_e9e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_72e4_c180_e9e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_72e4_c180_e9e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_72e4_c180_e9e1&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_72e4_c180_e9e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_100a_3427_76a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_100a_3427_76a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_100a_3427_76a1/request", "", "public", "Top Dataset, surface, slp.day.1981-2010.ltm (daily ltm slp from the NCEP Reanalysis), 2.5\u00b0, 0001", "daily ltm slp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (mean Long Term Mean Daily Sea Level Pressure, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_100a_3427_76a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_100a_3427_76a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_100a_3427_76a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_100a_3427_76a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_100a_3427_76a1&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_100a_3427_76a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f874_c07b_190a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f874_c07b_190a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f874_c07b_190a/request", "", "public", "Top Dataset, surface, slp.mon.1981-2010.ltm (monthly mean slp from the NCEP Reanalysis), 2.5\u00b0, 0001", "monthly mean slp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Long Term Level Pressure, millibars)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f874_c07b_190a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f874_c07b_190a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f874_c07b_190a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f874_c07b_190a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f874_c07b_190a&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f874_c07b_190a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71ec_7d03_8270", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71ec_7d03_8270.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_71ec_7d03_8270/request", "", "public", "Top Dataset, surface, thickness 1000500.mon.1981-2010.ltm, 2.5\u00b0, 0001", "National Centers for Environmental Prediction (NCEP) Reanalysis monthly mean surface u-wind. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nthickness (Monthly Long Term Mean of Thickness, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_71ec_7d03_8270_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_71ec_7d03_8270_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_71ec_7d03_8270/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_71ec_7d03_8270.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_71ec_7d03_8270&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_71ec_7d03_8270"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c61_5cb3_c167", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c61_5cb3_c167.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6c61_5cb3_c167/request", "", "public", "Top Dataset, surface, thickness 1000500.mon.ltm (NCEP Reanalysis monthly mean surface u-wind), 2.5\u00b0, 0001", "National Centers for Environmental Prediction (NCEP) Reanalysis monthly mean surface u-wind. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nthickness (Monthly Long Term Mean of Thickness, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6c61_5cb3_c167_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6c61_5cb3_c167_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6c61_5cb3_c167/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6c61_5cb3_c167.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6c61_5cb3_c167&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6c61_5cb3_c167"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c5d_2d05_4d76", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c5d_2d05_4d76.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4c5d_2d05_4d76/request", "", "public", "Top Dataset, surface, thickness 500200.mon.1981-2010.ltm, 2.5\u00b0, 0001", "National Centers for Environmental Prediction (NCEP) Reanalysis monthly mean surface u-wind. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nthickness (Monthly Long Term Mean of Thickness, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4c5d_2d05_4d76_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4c5d_2d05_4d76_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c5d_2d05_4d76/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c5d_2d05_4d76.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c5d_2d05_4d76&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_4c5d_2d05_4d76"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a75e_9f21_822c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a75e_9f21_822c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a75e_9f21_822c/request", "", "public", "Top Dataset, surface, thickness 500200.mon.ltm (NCEP Reanalysis monthly mean surface u-wind), 2.5\u00b0, 0001", "National Centers for Environmental Prediction (NCEP) Reanalysis monthly mean surface u-wind. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nthickness (Monthly Long Term Mean of Thickness, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a75e_9f21_822c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a75e_9f21_822c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a75e_9f21_822c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a75e_9f21_822c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a75e_9f21_822c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a75e_9f21_822c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2235_70b3_27d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2235_70b3_27d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2235_70b3_27d9/request", "", "public", "Top Dataset, surface, thickness 850500.mon.1981-2010.ltm, 2.5\u00b0, 0001", "National Centers for Environmental Prediction (NCEP) Reanalysis monthly mean surface u-wind. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nthickness (Monthly Long Term Mean of Thickness, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2235_70b3_27d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2235_70b3_27d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2235_70b3_27d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2235_70b3_27d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2235_70b3_27d9&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_2235_70b3_27d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c7d_0cdd_f8ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c7d_0cdd_f8ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8c7d_0cdd_f8ca/request", "", "public", "Top Dataset, surface, thickness 850500.mon.ltm (NCEP Reanalysis monthly mean surface u-wind), 2.5\u00b0, 0001", "National Centers for Environmental Prediction (NCEP) Reanalysis monthly mean surface u-wind. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nthickness (Monthly Long Term Mean of Thickness, m)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8c7d_0cdd_f8ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8c7d_0cdd_f8ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8c7d_0cdd_f8ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8c7d_0cdd_f8ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8c7d_0cdd_f8ca&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8c7d_0cdd_f8ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3856_cb49_83fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3856_cb49_83fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3856_cb49_83fb/request", "", "public", "Top Dataset, surface, topo.sfc (4x daily NMC reanalysis), 2.5\u00b0, 1985", "4x daily National Meteorological Center (NMC) reanalysis. Data is from NMC initialized reanalysis.\nIt consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (4xDaily Geopotential height, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3856_cb49_83fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3856_cb49_83fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3856_cb49_83fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3856_cb49_83fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3856_cb49_83fb&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_3856_cb49_83fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_068c_2cca_e075", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_068c_2cca_e075.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_068c_2cca_e075/request", "", "public", "Top Dataset, surface, uwnd.sig995.4Xday.1981-2010.ltm, 2.5\u00b0, 0001", "4Xdaily ltm uwnd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (4xDaily Long Term Mean u-wind at sigma level 995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_068c_2cca_e075_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_068c_2cca_e075_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_068c_2cca_e075/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_068c_2cca_e075.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_068c_2cca_e075&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_068c_2cca_e075"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e488_4f9a_d9f8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e488_4f9a_d9f8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e488_4f9a_d9f8/request", "", "public", "Top Dataset, surface, uwnd.sig995.day.1981-2010.ltm, 2.5\u00b0, 0001", "daily ltm uwnd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (mean Long Term Mean Daily u-wind at sigma level 995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e488_4f9a_d9f8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e488_4f9a_d9f8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e488_4f9a_d9f8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e488_4f9a_d9f8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e488_4f9a_d9f8&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e488_4f9a_d9f8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2e7_fce2_8e47", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2e7_fce2_8e47.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f2e7_fce2_8e47/request", "", "public", "Top Dataset, surface, uwnd.sig995.mon.1981-2010.ltm, 2.5\u00b0, 0001", "monthly ltm uwnd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly Long Term Mean Zonal Wind at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f2e7_fce2_8e47_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f2e7_fce2_8e47_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f2e7_fce2_8e47/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f2e7_fce2_8e47.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f2e7_fce2_8e47&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f2e7_fce2_8e47"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89f2_7202_5dfe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89f2_7202_5dfe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_89f2_7202_5dfe/request", "", "public", "Top Dataset, surface, uwndsfcapr.mon.dailyanom (NCEP Reanalysis Diurnal Cycle Surface u-wind), 2.5\u00b0, 0001", "National Centers for Environmental Prediction (NCEP) Reanalysis Diurnal Cycle Surface u-wind. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Diurnal Cycle Anomaly of U-Wind for April, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_89f2_7202_5dfe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_89f2_7202_5dfe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_89f2_7202_5dfe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_89f2_7202_5dfe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_89f2_7202_5dfe&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_89f2_7202_5dfe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3830_f0dd_6637", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3830_f0dd_6637.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3830_f0dd_6637/request", "", "public", "Top Dataset, surface, uwndsfcjan.mon.dailyanom (NCEP Reanalysis Diurnal Cycle Surface u-wind), 2.5\u00b0, 0001", "National Centers for Environmental Prediction (NCEP) Reanalysis Diurnal Cycle Surface u-wind. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Diurnal Cycle Anomaly of U-Wind for January, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3830_f0dd_6637_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3830_f0dd_6637_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3830_f0dd_6637/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3830_f0dd_6637.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3830_f0dd_6637&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_3830_f0dd_6637"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed3f_efcf_a314", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed3f_efcf_a314.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ed3f_efcf_a314/request", "", "public", "Top Dataset, surface, uwndsfcjul.mon.dailyanom (NCEP Reanalysis Diurnal Cycle Surface u-wind), 2.5\u00b0, 0001", "National Centers for Environmental Prediction (NCEP) Reanalysis Diurnal Cycle Surface u-wind. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Diurnal Cycle Anomaly of U-Wind for July, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ed3f_efcf_a314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ed3f_efcf_a314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ed3f_efcf_a314/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ed3f_efcf_a314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ed3f_efcf_a314&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_ed3f_efcf_a314"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e37a_7de8_734f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e37a_7de8_734f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e37a_7de8_734f/request", "", "public", "Top Dataset, surface, uwndsfcoct.mon.dailyanom (NCEP Reanalysis Diurnal Cycle Surface u-wind), 2.5\u00b0, 0001", "National Centers for Environmental Prediction (NCEP) Reanalysis Diurnal Cycle Surface u-wind. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Diurnal Cycle Anomaly of U-Wind for October, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e37a_7de8_734f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e37a_7de8_734f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e37a_7de8_734f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e37a_7de8_734f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e37a_7de8_734f&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e37a_7de8_734f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e100_d046_cc4b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e100_d046_cc4b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e100_d046_cc4b/request", "", "public", "Top Dataset, surface, vwnd.sig995.4Xday.1981-2010.ltm, 2.5\u00b0, 0001", "4Xdaily ltm vwnd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (4xDaily Long Term Mean v wind at sigma level 995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e100_d046_cc4b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e100_d046_cc4b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e100_d046_cc4b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e100_d046_cc4b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e100_d046_cc4b&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e100_d046_cc4b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb44_3a08_8238", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb44_3a08_8238.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eb44_3a08_8238/request", "", "public", "Top Dataset, surface, vwnd.sig995.day.1981-2010.ltm, 2.5\u00b0, 0001", "daily ltm vwnd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (mean Long Term Mean Daily v wind at sigma level 995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eb44_3a08_8238_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eb44_3a08_8238_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb44_3a08_8238/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb44_3a08_8238.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb44_3a08_8238&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_eb44_3a08_8238"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c90_81f5_37d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c90_81f5_37d2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3c90_81f5_37d2/request", "", "public", "Top Dataset, surface, vwnd.sig995.mon.1981-2010.ltm, 2.5\u00b0, 0001", "monthly ltm vwnd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly Long Term Mean Meridional Wind at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3c90_81f5_37d2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3c90_81f5_37d2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c90_81f5_37d2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c90_81f5_37d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c90_81f5_37d2&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_3c90_81f5_37d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ba4_d1cc_63e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ba4_d1cc_63e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0ba4_d1cc_63e6/request", "", "public", "Top Dataset, surface, vwndsfcapr.mon.dailyanom (NCEP Reanalysis Diurnal Cycle Surface v-wind), 2.5\u00b0, 0001", "National Centers for Environmental Prediction (NCEP) Reanalysis Diurnal Cycle Surface v-wind. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Diurnal Cycle Anomaly of V-Wind for April, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0ba4_d1cc_63e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0ba4_d1cc_63e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0ba4_d1cc_63e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0ba4_d1cc_63e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0ba4_d1cc_63e6&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_0ba4_d1cc_63e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c4e_61d3_fd7c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c4e_61d3_fd7c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1c4e_61d3_fd7c/request", "", "public", "Top Dataset, surface, vwndsfcjan.mon.dailyanom (NCEP Reanalysis Diurnal Cycle Surface v-wind), 2.5\u00b0, 0001", "National Centers for Environmental Prediction (NCEP) Reanalysis Diurnal Cycle Surface v-wind. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Diurnal Cycle Anomaly of V-Wind for January, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1c4e_61d3_fd7c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1c4e_61d3_fd7c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1c4e_61d3_fd7c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1c4e_61d3_fd7c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1c4e_61d3_fd7c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_1c4e_61d3_fd7c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6664_26e7_247e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6664_26e7_247e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6664_26e7_247e/request", "", "public", "Top Dataset, surface, vwndsfcjul.mon.dailyanom (NCEP Reanalysis Diurnal Cycle Surface v-wind), 2.5\u00b0, 0001", "National Centers for Environmental Prediction (NCEP) Reanalysis Diurnal Cycle Surface v-wind. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Diurnal Cycle Anomaly of V-Wind for July, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6664_26e7_247e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6664_26e7_247e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6664_26e7_247e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6664_26e7_247e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6664_26e7_247e&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_6664_26e7_247e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aac2_45f6_b1f4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aac2_45f6_b1f4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aac2_45f6_b1f4/request", "", "public", "Top Dataset, surface, vwndsfcoct.mon.dailyanom (NCEP Reanalysis Diurnal Cycle Surface v-wind), 2.5\u00b0, 0001", "National Centers for Environmental Prediction (NCEP) Reanalysis Diurnal Cycle Surface v-wind. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Diurnal Cycle Anomaly of V-Wind for October, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aac2_45f6_b1f4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aac2_45f6_b1f4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aac2_45f6_b1f4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aac2_45f6_b1f4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aac2_45f6_b1f4&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_aac2_45f6_b1f4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e934_bfee_7756", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e934_bfee_7756.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e934_bfee_7756/request", "", "public", "Top Dataset, surface, wspd.sig995.mon.1981-2010.ltm, 2.5\u00b0, 0001", "monthly ltm wspd.sig995 from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data from NCEP initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Monthly Long Term Mean Wind Speed at sigma level 0.995, m/s)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e934_bfee_7756_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e934_bfee_7756_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e934_bfee_7756/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e934_bfee_7756.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e934_bfee_7756&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_e934_bfee_7756"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bbc9_419d_8f1d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bbc9_419d_8f1d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_bbc9_419d_8f1d/request", "", "public", "Top Dataset, tiled 13as, ncei13 n24x75 w080x50 2016v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_bbc9_419d_8f1d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_bbc9_419d_8f1d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_bbc9_419d_8f1d/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_bbc9_419d_8f1d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_bbc9_419d_8f1d&showErrors=false&email=", "NOAA", "noaa_ngdc_bbc9_419d_8f1d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a2a8_7cdd_d975", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a2a8_7cdd_d975.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_a2a8_7cdd_d975/request", "", "public", "Top Dataset, tiled 13as, ncei13 n24x75 w080x75 2016v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_a2a8_7cdd_d975_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_a2a8_7cdd_d975_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_a2a8_7cdd_d975/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_a2a8_7cdd_d975.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_a2a8_7cdd_d975&showErrors=false&email=", "NOAA", "noaa_ngdc_a2a8_7cdd_d975"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cb3a_ed4a_11fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cb3a_ed4a_11fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_cb3a_ed4a_11fe/request", "", "public", "Top Dataset, tiled 13as, ncei13 n25x00 w080x25 2016v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_cb3a_ed4a_11fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_cb3a_ed4a_11fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_cb3a_ed4a_11fe/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_cb3a_ed4a_11fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_cb3a_ed4a_11fe&showErrors=false&email=", "NOAA", "noaa_ngdc_cb3a_ed4a_11fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7b2c_6adb_f86e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7b2c_6adb_f86e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7b2c_6adb_f86e/request", "", "public", "Top Dataset, tiled 13as, ncei13 n25x00 w080x50 2016v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7b2c_6adb_f86e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7b2c_6adb_f86e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7b2c_6adb_f86e/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7b2c_6adb_f86e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7b2c_6adb_f86e&showErrors=false&email=", "NOAA", "noaa_ngdc_7b2c_6adb_f86e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0f28_9fea_474d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0f28_9fea_474d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0f28_9fea_474d/request", "", "public", "Top Dataset, tiled 13as, ncei13 n25x25 w080x25 2016v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0f28_9fea_474d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0f28_9fea_474d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0f28_9fea_474d/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0f28_9fea_474d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0f28_9fea_474d&showErrors=false&email=", "NOAA", "noaa_ngdc_0f28_9fea_474d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bbf1_bb61_66e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bbf1_bb61_66e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_bbf1_bb61_66e1/request", "", "public", "Top Dataset, tiled 13as, ncei13 n25x25 w081x50 2016v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_bbf1_bb61_66e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_bbf1_bb61_66e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_bbf1_bb61_66e1/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_bbf1_bb61_66e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_bbf1_bb61_66e1&showErrors=false&email=", "NOAA", "noaa_ngdc_bbf1_bb61_66e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0e92_05cd_a212", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0e92_05cd_a212.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0e92_05cd_a212/request", "", "public", "Top Dataset, tiled 13as, ncei13 n25x50 w081x50 2016v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0e92_05cd_a212_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0e92_05cd_a212_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0e92_05cd_a212/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0e92_05cd_a212.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0e92_05cd_a212&showErrors=false&email=", "NOAA", "noaa_ngdc_0e92_05cd_a212"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ead2_a8e4_a602", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ead2_a8e4_a602.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_ead2_a8e4_a602/request", "", "public", "Top Dataset, tiled 13as, ncei13 n26x00 w082x25 2017v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_ead2_a8e4_a602_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_ead2_a8e4_a602_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ead2_a8e4_a602/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ead2_a8e4_a602.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ead2_a8e4_a602&showErrors=false&email=", "NOAA", "noaa_ngdc_ead2_a8e4_a602"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d626_8bea_2913", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d626_8bea_2913.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d626_8bea_2913/request", "", "public", "Top Dataset, tiled 13as, ncei13 n26x00 w082x50 2017v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d626_8bea_2913_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d626_8bea_2913_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d626_8bea_2913/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d626_8bea_2913.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d626_8bea_2913&showErrors=false&email=", "NOAA", "noaa_ngdc_d626_8bea_2913"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e65a_5784_952d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e65a_5784_952d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e65a_5784_952d/request", "", "public", "Top Dataset, tiled 13as, ncei13 n26x00 w082x75 2017v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e65a_5784_952d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e65a_5784_952d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e65a_5784_952d/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e65a_5784_952d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e65a_5784_952d&showErrors=false&email=", "NOAA", "noaa_ngdc_e65a_5784_952d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c2d1_7cf9_a519", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c2d1_7cf9_a519.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c2d1_7cf9_a519/request", "", "public", "Top Dataset, tiled 13as, ncei13 n26x25 w082x25 2017v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c2d1_7cf9_a519_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c2d1_7cf9_a519_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c2d1_7cf9_a519/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c2d1_7cf9_a519.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c2d1_7cf9_a519&showErrors=false&email=", "NOAA", "noaa_ngdc_c2d1_7cf9_a519"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_dca1_005b_f6a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_dca1_005b_f6a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_dca1_005b_f6a2/request", "", "public", "Top Dataset, tiled 13as, ncei13 n26x25 w082x50 2017v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_dca1_005b_f6a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_dca1_005b_f6a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_dca1_005b_f6a2/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_dca1_005b_f6a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_dca1_005b_f6a2&showErrors=false&email=", "NOAA", "noaa_ngdc_dca1_005b_f6a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4e90_b40a_76c2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4e90_b40a_76c2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4e90_b40a_76c2/request", "", "public", "Top Dataset, tiled 13as, ncei13 n26x25 w082x75 2017v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4e90_b40a_76c2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4e90_b40a_76c2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4e90_b40a_76c2/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4e90_b40a_76c2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4e90_b40a_76c2&showErrors=false&email=", "NOAA", "noaa_ngdc_4e90_b40a_76c2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2751_25d6_1234", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2751_25d6_1234.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2751_25d6_1234/request", "", "public", "Top Dataset, tiled 13as, ncei13 n26x50 w082x50 2017v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2751_25d6_1234_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2751_25d6_1234_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2751_25d6_1234/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2751_25d6_1234.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2751_25d6_1234&showErrors=false&email=", "NOAA", "noaa_ngdc_2751_25d6_1234"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_32fb_5edd_157b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_32fb_5edd_157b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_32fb_5edd_157b/request", "", "public", "Top Dataset, tiled 13as, ncei13 n26x50 w082x75 2017v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_32fb_5edd_157b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_32fb_5edd_157b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_32fb_5edd_157b/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_32fb_5edd_157b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_32fb_5edd_157b&showErrors=false&email=", "NOAA", "noaa_ngdc_32fb_5edd_157b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c425_64ef_4e5a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c425_64ef_4e5a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c425_64ef_4e5a/request", "", "public", "Top Dataset, tiled 13as, ncei13 n26x75 w082x75 2017v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c425_64ef_4e5a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c425_64ef_4e5a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c425_64ef_4e5a/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c425_64ef_4e5a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c425_64ef_4e5a&showErrors=false&email=", "NOAA", "noaa_ngdc_c425_64ef_4e5a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6184_730a_4399", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6184_730a_4399.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_6184_730a_4399/request", "", "public", "Top Dataset, tiled 13as, ncei13 n27x00 w082x75 2017v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_6184_730a_4399_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_6184_730a_4399_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6184_730a_4399/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6184_730a_4399.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6184_730a_4399&showErrors=false&email=", "NOAA", "noaa_ngdc_6184_730a_4399"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f5d6_308b_4600", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f5d6_308b_4600.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f5d6_308b_4600/request", "", "public", "Top Dataset, tiled 13as, ncei13 n38x75 w074x75 2014v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f5d6_308b_4600_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f5d6_308b_4600_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f5d6_308b_4600/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f5d6_308b_4600.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f5d6_308b_4600&showErrors=false&email=", "NOAA", "noaa_ngdc_f5d6_308b_4600"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_226c_f1c1_1d09", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_226c_f1c1_1d09.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_226c_f1c1_1d09/request", "", "public", "Top Dataset, tiled 13as, ncei13 n38x75 w075x00 2014v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_226c_f1c1_1d09_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_226c_f1c1_1d09_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_226c_f1c1_1d09/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_226c_f1c1_1d09.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_226c_f1c1_1d09&showErrors=false&email=", "NOAA", "noaa_ngdc_226c_f1c1_1d09"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a177_965b_a907", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a177_965b_a907.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_a177_965b_a907/request", "", "public", "Top Dataset, tiled 13as, ncei13 n39x00 w074x50 2014v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_a177_965b_a907_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_a177_965b_a907_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_a177_965b_a907/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_a177_965b_a907.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_a177_965b_a907&showErrors=false&email=", "NOAA", "noaa_ngdc_a177_965b_a907"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_27f5_c7ab_58ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_27f5_c7ab_58ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_27f5_c7ab_58ce/request", "", "public", "Top Dataset, tiled 13as, ncei13 n39x00 w074x75 2014v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_27f5_c7ab_58ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_27f5_c7ab_58ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_27f5_c7ab_58ce/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_27f5_c7ab_58ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_27f5_c7ab_58ce&showErrors=false&email=", "NOAA", "noaa_ngdc_27f5_c7ab_58ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_04d7_6a42_c5dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_04d7_6a42_c5dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_04d7_6a42_c5dc/request", "", "public", "Top Dataset, tiled 13as, ncei13 n39x25 w074x25 2014v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_04d7_6a42_c5dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_04d7_6a42_c5dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_04d7_6a42_c5dc/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_04d7_6a42_c5dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_04d7_6a42_c5dc&showErrors=false&email=", "NOAA", "noaa_ngdc_04d7_6a42_c5dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0153_b483_57d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0153_b483_57d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0153_b483_57d3/request", "", "public", "Top Dataset, tiled 13as, ncei13 n39x25 w074x50 2014v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0153_b483_57d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0153_b483_57d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0153_b483_57d3/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0153_b483_57d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0153_b483_57d3&showErrors=false&email=", "NOAA", "noaa_ngdc_0153_b483_57d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6c10_e8e4_ac31", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6c10_e8e4_ac31.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_6c10_e8e4_ac31/request", "", "public", "Top Dataset, tiled 13as, ncei13 n39x50 w074x00 2014v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_6c10_e8e4_ac31_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_6c10_e8e4_ac31_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6c10_e8e4_ac31/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6c10_e8e4_ac31.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6c10_e8e4_ac31&showErrors=false&email=", "NOAA", "noaa_ngdc_6c10_e8e4_ac31"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d4b1_a416_5f61", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d4b1_a416_5f61.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d4b1_a416_5f61/request", "", "public", "Top Dataset, tiled 13as, ncei13 n39x50 w074x25 2014v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d4b1_a416_5f61_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d4b1_a416_5f61_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d4b1_a416_5f61/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d4b1_a416_5f61.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d4b1_a416_5f61&showErrors=false&email=", "NOAA", "noaa_ngdc_d4b1_a416_5f61"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5596_5e6d_3840", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5596_5e6d_3840.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5596_5e6d_3840/request", "", "public", "Top Dataset, tiled 13as, ncei13 n39x75 w073x75 2014v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5596_5e6d_3840_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5596_5e6d_3840_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5596_5e6d_3840/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5596_5e6d_3840.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5596_5e6d_3840&showErrors=false&email=", "NOAA", "noaa_ngdc_5596_5e6d_3840"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5da8_e2c1_3c9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5da8_e2c1_3c9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5da8_e2c1_3c9d/request", "", "public", "Top Dataset, tiled 13as, ncei13 n39x75 w074x00 2014v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5da8_e2c1_3c9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5da8_e2c1_3c9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5da8_e2c1_3c9d/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5da8_e2c1_3c9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5da8_e2c1_3c9d&showErrors=false&email=", "NOAA", "noaa_ngdc_5da8_e2c1_3c9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f67c_550b_5872", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f67c_550b_5872.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f67c_550b_5872/request", "", "public", "Top Dataset, tiled 13as, ncei13 n40x00 w073x75 2014v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f67c_550b_5872_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f67c_550b_5872_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f67c_550b_5872/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f67c_550b_5872.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f67c_550b_5872&showErrors=false&email=", "NOAA", "noaa_ngdc_f67c_550b_5872"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e26e_04db_d4ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e26e_04db_d4ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e26e_04db_d4ab/request", "", "public", "Top Dataset, tiled 13as, ncei13 n40x00 w074x00 2014v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e26e_04db_d4ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e26e_04db_d4ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e26e_04db_d4ab/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e26e_04db_d4ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e26e_04db_d4ab&showErrors=false&email=", "NOAA", "noaa_ngdc_e26e_04db_d4ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4dd0_c591_8096", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4dd0_c591_8096.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4dd0_c591_8096/request", "", "public", "Top Dataset, tiled 13as, ncei13 n40x25 w073x00 2015v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4dd0_c591_8096_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4dd0_c591_8096_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4dd0_c591_8096/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4dd0_c591_8096.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4dd0_c591_8096&showErrors=false&email=", "NOAA", "noaa_ngdc_4dd0_c591_8096"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0889_f903_1e62", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0889_f903_1e62.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0889_f903_1e62/request", "", "public", "Top Dataset, tiled 13as, ncei13 n40x25 w073x25 2015v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0889_f903_1e62_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0889_f903_1e62_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0889_f903_1e62/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0889_f903_1e62.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0889_f903_1e62&showErrors=false&email=", "NOAA", "noaa_ngdc_0889_f903_1e62"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_75be_24c2_32ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_75be_24c2_32ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_75be_24c2_32ef/request", "", "public", "Top Dataset, tiled 13as, ncei13 n40x25 w073x50 2015v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_75be_24c2_32ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_75be_24c2_32ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_75be_24c2_32ef/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_75be_24c2_32ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_75be_24c2_32ef&showErrors=false&email=", "NOAA", "noaa_ngdc_75be_24c2_32ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ec53_5311_be1d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ec53_5311_be1d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_ec53_5311_be1d/request", "", "public", "Top Dataset, tiled 13as, ncei13 n40x25 w073x75 2014v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_ec53_5311_be1d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_ec53_5311_be1d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ec53_5311_be1d/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ec53_5311_be1d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ec53_5311_be1d&showErrors=false&email=", "NOAA", "noaa_ngdc_ec53_5311_be1d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8249_4236_7d2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8249_4236_7d2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8249_4236_7d2a/request", "", "public", "Top Dataset, tiled 13as, ncei13 n40x50 w072x25 2015v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8249_4236_7d2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8249_4236_7d2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8249_4236_7d2a/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8249_4236_7d2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8249_4236_7d2a&showErrors=false&email=", "NOAA", "noaa_ngdc_8249_4236_7d2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a217_e14b_861d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a217_e14b_861d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_a217_e14b_861d/request", "", "public", "Top Dataset, tiled 13as, ncei13 n40x50 w072x50 2015v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_a217_e14b_861d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_a217_e14b_861d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_a217_e14b_861d/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_a217_e14b_861d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_a217_e14b_861d&showErrors=false&email=", "NOAA", "noaa_ngdc_a217_e14b_861d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_280d_2c3c_579b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_280d_2c3c_579b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_280d_2c3c_579b/request", "", "public", "Top Dataset, tiled 13as, ncei13 n40x50 w072x75 2015v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_280d_2c3c_579b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_280d_2c3c_579b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_280d_2c3c_579b/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_280d_2c3c_579b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_280d_2c3c_579b&showErrors=false&email=", "NOAA", "noaa_ngdc_280d_2c3c_579b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9694_0925_847a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9694_0925_847a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9694_0925_847a/request", "", "public", "Top Dataset, tiled 13as, ncei13 n40x50 w073x00 2015v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9694_0925_847a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9694_0925_847a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9694_0925_847a/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9694_0925_847a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9694_0925_847a&showErrors=false&email=", "NOAA", "noaa_ngdc_9694_0925_847a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1b0e_6373_13a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1b0e_6373_13a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1b0e_6373_13a0/request", "", "public", "Top Dataset, tiled 13as, ncei13 n40x50 w073x25 2015v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1b0e_6373_13a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1b0e_6373_13a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1b0e_6373_13a0/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1b0e_6373_13a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1b0e_6373_13a0&showErrors=false&email=", "NOAA", "noaa_ngdc_1b0e_6373_13a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e918_3102_c690", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e918_3102_c690.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e918_3102_c690/request", "", "public", "Top Dataset, tiled 13as, ncei13 n40x50 w073x50 2015v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e918_3102_c690_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e918_3102_c690_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e918_3102_c690/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e918_3102_c690.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e918_3102_c690&showErrors=false&email=", "NOAA", "noaa_ngdc_e918_3102_c690"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bee0_5470_17ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bee0_5470_17ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_bee0_5470_17ee/request", "", "public", "Top Dataset, tiled 13as, ncei13 n40x50 w073x75 2015v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_bee0_5470_17ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_bee0_5470_17ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_bee0_5470_17ee/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_bee0_5470_17ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_bee0_5470_17ee&showErrors=false&email=", "NOAA", "noaa_ngdc_bee0_5470_17ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_dcdd_584a_8ece", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_dcdd_584a_8ece.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_dcdd_584a_8ece/request", "", "public", "Top Dataset, tiled 13as, ncei13 n40x75 w071x75 2015v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_dcdd_584a_8ece_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_dcdd_584a_8ece_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_dcdd_584a_8ece/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_dcdd_584a_8ece.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_dcdd_584a_8ece&showErrors=false&email=", "NOAA", "noaa_ngdc_dcdd_584a_8ece"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e13e_33d0_7884", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e13e_33d0_7884.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e13e_33d0_7884/request", "", "public", "Top Dataset, tiled 13as, ncei13 n40x75 w072x00 2015v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e13e_33d0_7884_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e13e_33d0_7884_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e13e_33d0_7884/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e13e_33d0_7884.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e13e_33d0_7884&showErrors=false&email=", "NOAA", "noaa_ngdc_e13e_33d0_7884"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_322a_5f3c_a0cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_322a_5f3c_a0cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_322a_5f3c_a0cd/request", "", "public", "Top Dataset, tiled 13as, ncei13 n40x75 w072x25 2015v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_322a_5f3c_a0cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_322a_5f3c_a0cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_322a_5f3c_a0cd/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_322a_5f3c_a0cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_322a_5f3c_a0cd&showErrors=false&email=", "NOAA", "noaa_ngdc_322a_5f3c_a0cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e9da_dbf7_e692", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e9da_dbf7_e692.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e9da_dbf7_e692/request", "", "public", "Top Dataset, tiled 13as, ncei13 n40x75 w072x50 2015v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e9da_dbf7_e692_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e9da_dbf7_e692_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e9da_dbf7_e692/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e9da_dbf7_e692.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e9da_dbf7_e692&showErrors=false&email=", "NOAA", "noaa_ngdc_e9da_dbf7_e692"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ab61_9405_f580", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ab61_9405_f580.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_ab61_9405_f580/request", "", "public", "Top Dataset, tiled 13as, ncei13 n40x75 w072x75 2015v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_ab61_9405_f580_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_ab61_9405_f580_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ab61_9405_f580/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ab61_9405_f580.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ab61_9405_f580&showErrors=false&email=", "NOAA", "noaa_ngdc_ab61_9405_f580"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_de1c_cb25_aa19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_de1c_cb25_aa19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_de1c_cb25_aa19/request", "", "public", "Top Dataset, tiled 13as, ncei13 n41x00 w072x00 2015v1 (GDAL Band Number 1), 9.259259E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_de1c_cb25_aa19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_de1c_cb25_aa19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_de1c_cb25_aa19/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_de1c_cb25_aa19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_de1c_cb25_aa19&showErrors=false&email=", "NOAA", "noaa_ngdc_de1c_cb25_aa19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8340_262f_de20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8340_262f_de20.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8340_262f_de20/request", "", "public", "Top Dataset, tiled 19as, ncei19 n24x75 w081x00 2016v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8340_262f_de20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8340_262f_de20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8340_262f_de20/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8340_262f_de20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8340_262f_de20&showErrors=false&email=", "NOAA", "noaa_ngdc_8340_262f_de20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5e00_3dcc_d103", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5e00_3dcc_d103.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5e00_3dcc_d103/request", "", "public", "Top Dataset, tiled 19as, ncei19 n24x75 w081x25 2016v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5e00_3dcc_d103_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5e00_3dcc_d103_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5e00_3dcc_d103/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5e00_3dcc_d103.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5e00_3dcc_d103&showErrors=false&email=", "NOAA", "noaa_ngdc_5e00_3dcc_d103"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c4e8_6372_0733", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c4e8_6372_0733.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c4e8_6372_0733/request", "", "public", "Top Dataset, tiled 19as, ncei19 n24x75 w081x50 2016v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c4e8_6372_0733_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c4e8_6372_0733_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c4e8_6372_0733/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c4e8_6372_0733.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c4e8_6372_0733&showErrors=false&email=", "NOAA", "noaa_ngdc_c4e8_6372_0733"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bcbd_5910_a2c2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bcbd_5910_a2c2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_bcbd_5910_a2c2/request", "", "public", "Top Dataset, tiled 19as, ncei19 n25x00 w080x75 2016v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_bcbd_5910_a2c2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_bcbd_5910_a2c2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_bcbd_5910_a2c2/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_bcbd_5910_a2c2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_bcbd_5910_a2c2&showErrors=false&email=", "NOAA", "noaa_ngdc_bcbd_5910_a2c2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ecb4_1d2a_63ad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ecb4_1d2a_63ad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_ecb4_1d2a_63ad/request", "", "public", "Top Dataset, tiled 19as, ncei19 n25x00 w081x00 2016v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_ecb4_1d2a_63ad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_ecb4_1d2a_63ad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ecb4_1d2a_63ad/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ecb4_1d2a_63ad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ecb4_1d2a_63ad&showErrors=false&email=", "NOAA", "noaa_ngdc_ecb4_1d2a_63ad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d053_2299_546b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d053_2299_546b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d053_2299_546b/request", "", "public", "Top Dataset, tiled 19as, ncei19 n25x00 w081x25 2016v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d053_2299_546b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d053_2299_546b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d053_2299_546b/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d053_2299_546b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d053_2299_546b&showErrors=false&email=", "NOAA", "noaa_ngdc_d053_2299_546b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6b90_b2e6_7116", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6b90_b2e6_7116.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_6b90_b2e6_7116/request", "", "public", "Top Dataset, tiled 19as, ncei19 n25x00 w081x50 2016v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_6b90_b2e6_7116_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_6b90_b2e6_7116_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6b90_b2e6_7116/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6b90_b2e6_7116.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6b90_b2e6_7116&showErrors=false&email=", "NOAA", "noaa_ngdc_6b90_b2e6_7116"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_dbbc_8944_2f4b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_dbbc_8944_2f4b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_dbbc_8944_2f4b/request", "", "public", "Top Dataset, tiled 19as, ncei19 n25x25 w080x50 2016v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_dbbc_8944_2f4b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_dbbc_8944_2f4b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_dbbc_8944_2f4b/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_dbbc_8944_2f4b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_dbbc_8944_2f4b&showErrors=false&email=", "NOAA", "noaa_ngdc_dbbc_8944_2f4b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5227_9d33_a355", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5227_9d33_a355.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5227_9d33_a355/request", "", "public", "Top Dataset, tiled 19as, ncei19 n25x25 w080x75 2016v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5227_9d33_a355_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5227_9d33_a355_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5227_9d33_a355/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5227_9d33_a355.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5227_9d33_a355&showErrors=false&email=", "NOAA", "noaa_ngdc_5227_9d33_a355"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b3f4_1763_2989", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b3f4_1763_2989.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_b3f4_1763_2989/request", "", "public", "Top Dataset, tiled 19as, ncei19 n25x25 w081x00 2016v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_b3f4_1763_2989_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_b3f4_1763_2989_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_b3f4_1763_2989/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_b3f4_1763_2989.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_b3f4_1763_2989&showErrors=false&email=", "NOAA", "noaa_ngdc_b3f4_1763_2989"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7fee_6145_42be", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7fee_6145_42be.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7fee_6145_42be/request", "", "public", "Top Dataset, tiled 19as, ncei19 n25x25 w081x25 2016v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7fee_6145_42be_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7fee_6145_42be_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7fee_6145_42be/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7fee_6145_42be.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7fee_6145_42be&showErrors=false&email=", "NOAA", "noaa_ngdc_7fee_6145_42be"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9128_b3b5_6fcd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9128_b3b5_6fcd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9128_b3b5_6fcd/request", "", "public", "Top Dataset, tiled 19as, ncei19 n25x50 w080x25 2016v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9128_b3b5_6fcd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9128_b3b5_6fcd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9128_b3b5_6fcd/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9128_b3b5_6fcd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9128_b3b5_6fcd&showErrors=false&email=", "NOAA", "noaa_ngdc_9128_b3b5_6fcd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e364_0cfc_c25b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e364_0cfc_c25b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e364_0cfc_c25b/request", "", "public", "Top Dataset, tiled 19as, ncei19 n25x50 w080x50 2016v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e364_0cfc_c25b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e364_0cfc_c25b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e364_0cfc_c25b/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e364_0cfc_c25b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e364_0cfc_c25b&showErrors=false&email=", "NOAA", "noaa_ngdc_e364_0cfc_c25b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f9cd_3f9c_6944", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f9cd_3f9c_6944.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f9cd_3f9c_6944/request", "", "public", "Top Dataset, tiled 19as, ncei19 n25x50 w081x25 2016v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f9cd_3f9c_6944_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f9cd_3f9c_6944_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f9cd_3f9c_6944/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f9cd_3f9c_6944.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f9cd_3f9c_6944&showErrors=false&email=", "NOAA", "noaa_ngdc_f9cd_3f9c_6944"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a774_54aa_63e7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a774_54aa_63e7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_a774_54aa_63e7/request", "", "public", "Top Dataset, tiled 19as, ncei19 n25x75 w081x25 2017v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_a774_54aa_63e7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_a774_54aa_63e7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_a774_54aa_63e7/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_a774_54aa_63e7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_a774_54aa_63e7&showErrors=false&email=", "NOAA", "noaa_ngdc_a774_54aa_63e7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4ac5_0992_c3d6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4ac5_0992_c3d6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4ac5_0992_c3d6/request", "", "public", "Top Dataset, tiled 19as, ncei19 n25x75 w081x50 2017v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4ac5_0992_c3d6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4ac5_0992_c3d6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4ac5_0992_c3d6/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4ac5_0992_c3d6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4ac5_0992_c3d6&showErrors=false&email=", "NOAA", "noaa_ngdc_4ac5_0992_c3d6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_66f8_8750_a1c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_66f8_8750_a1c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_66f8_8750_a1c6/request", "", "public", "Top Dataset, tiled 19as, ncei19 n26x00 w081x50 2017v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_66f8_8750_a1c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_66f8_8750_a1c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_66f8_8750_a1c6/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_66f8_8750_a1c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_66f8_8750_a1c6&showErrors=false&email=", "NOAA", "noaa_ngdc_66f8_8750_a1c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bca1_8ab7_98c8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bca1_8ab7_98c8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_bca1_8ab7_98c8/request", "", "public", "Top Dataset, tiled 19as, ncei19 n26x00 w081x75 2017v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_bca1_8ab7_98c8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_bca1_8ab7_98c8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_bca1_8ab7_98c8/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_bca1_8ab7_98c8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_bca1_8ab7_98c8&showErrors=false&email=", "NOAA", "noaa_ngdc_bca1_8ab7_98c8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6d29_325d_042c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6d29_325d_042c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_6d29_325d_042c/request", "", "public", "Top Dataset, tiled 19as, ncei19 n26x00 w082x00 2017v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_6d29_325d_042c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_6d29_325d_042c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6d29_325d_042c/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6d29_325d_042c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6d29_325d_042c&showErrors=false&email=", "NOAA", "noaa_ngdc_6d29_325d_042c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ce5f_c78c_e7a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ce5f_c78c_e7a8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_ce5f_c78c_e7a8/request", "", "public", "Top Dataset, tiled 19as, ncei19 n26x25 w081x75 2017v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_ce5f_c78c_e7a8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_ce5f_c78c_e7a8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ce5f_c78c_e7a8/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ce5f_c78c_e7a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ce5f_c78c_e7a8&showErrors=false&email=", "NOAA", "noaa_ngdc_ce5f_c78c_e7a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_011c_77b7_6113", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_011c_77b7_6113.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_011c_77b7_6113/request", "", "public", "Top Dataset, tiled 19as, ncei19 n26x25 w082x00 2017v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_011c_77b7_6113_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_011c_77b7_6113_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_011c_77b7_6113/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_011c_77b7_6113.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_011c_77b7_6113&showErrors=false&email=", "NOAA", "noaa_ngdc_011c_77b7_6113"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cbf4_52d8_d3cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cbf4_52d8_d3cc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_cbf4_52d8_d3cc/request", "", "public", "Top Dataset, tiled 19as, ncei19 n26x50 w082x00 2017v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_cbf4_52d8_d3cc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_cbf4_52d8_d3cc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_cbf4_52d8_d3cc/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_cbf4_52d8_d3cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_cbf4_52d8_d3cc&showErrors=false&email=", "NOAA", "noaa_ngdc_cbf4_52d8_d3cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_10ee_099c_7ee9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_10ee_099c_7ee9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_10ee_099c_7ee9/request", "", "public", "Top Dataset, tiled 19as, ncei19 n26x50 w082x25 2017v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_10ee_099c_7ee9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_10ee_099c_7ee9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_10ee_099c_7ee9/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_10ee_099c_7ee9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_10ee_099c_7ee9&showErrors=false&email=", "NOAA", "noaa_ngdc_10ee_099c_7ee9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b79f_ca5f_bac7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b79f_ca5f_bac7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_b79f_ca5f_bac7/request", "", "public", "Top Dataset, tiled 19as, ncei19 n26x75 w082x00 2017v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_b79f_ca5f_bac7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_b79f_ca5f_bac7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_b79f_ca5f_bac7/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_b79f_ca5f_bac7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_b79f_ca5f_bac7&showErrors=false&email=", "NOAA", "noaa_ngdc_b79f_ca5f_bac7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cffd_8843_09a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cffd_8843_09a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_cffd_8843_09a1/request", "", "public", "Top Dataset, tiled 19as, ncei19 n26x75 w082x25 2017v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_cffd_8843_09a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_cffd_8843_09a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_cffd_8843_09a1/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_cffd_8843_09a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_cffd_8843_09a1&showErrors=false&email=", "NOAA", "noaa_ngdc_cffd_8843_09a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1212_b440_0882", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1212_b440_0882.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1212_b440_0882/request", "", "public", "Top Dataset, tiled 19as, ncei19 n26x75 w082x50 2017v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1212_b440_0882_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1212_b440_0882_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1212_b440_0882/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1212_b440_0882.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1212_b440_0882&showErrors=false&email=", "NOAA", "noaa_ngdc_1212_b440_0882"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5573_6de5_1737", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5573_6de5_1737.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5573_6de5_1737/request", "", "public", "Top Dataset, tiled 19as, ncei19 n27x00 w082x25 2017v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5573_6de5_1737_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5573_6de5_1737_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5573_6de5_1737/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5573_6de5_1737.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5573_6de5_1737&showErrors=false&email=", "NOAA", "noaa_ngdc_5573_6de5_1737"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5277_7613_3eea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5277_7613_3eea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5277_7613_3eea/request", "", "public", "Top Dataset, tiled 19as, ncei19 n27x00 w082x50 2017v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5277_7613_3eea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5277_7613_3eea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5277_7613_3eea/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5277_7613_3eea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5277_7613_3eea&showErrors=false&email=", "NOAA", "noaa_ngdc_5277_7613_3eea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_faf5_60be_acbc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_faf5_60be_acbc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_faf5_60be_acbc/request", "", "public", "Top Dataset, tiled 19as, ncei19 n27x25 w082x25 2017v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_faf5_60be_acbc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_faf5_60be_acbc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_faf5_60be_acbc/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_faf5_60be_acbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_faf5_60be_acbc&showErrors=false&email=", "NOAA", "noaa_ngdc_faf5_60be_acbc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5f2b_4a78_bb2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5f2b_4a78_bb2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5f2b_4a78_bb2d/request", "", "public", "Top Dataset, tiled 19as, ncei19 n27x25 w082x50 2017v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5f2b_4a78_bb2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5f2b_4a78_bb2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5f2b_4a78_bb2d/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5f2b_4a78_bb2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5f2b_4a78_bb2d&showErrors=false&email=", "NOAA", "noaa_ngdc_5f2b_4a78_bb2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a5c3_b1b5_682c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a5c3_b1b5_682c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_a5c3_b1b5_682c/request", "", "public", "Top Dataset, tiled 19as, ncei19 n27x25 w082x75 2017v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_a5c3_b1b5_682c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_a5c3_b1b5_682c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_a5c3_b1b5_682c/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_a5c3_b1b5_682c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_a5c3_b1b5_682c&showErrors=false&email=", "NOAA", "noaa_ngdc_a5c3_b1b5_682c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2f3c_18c9_49f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2f3c_18c9_49f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2f3c_18c9_49f9/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x00 w075x00 2014v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2f3c_18c9_49f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2f3c_18c9_49f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2f3c_18c9_49f9/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2f3c_18c9_49f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2f3c_18c9_49f9&showErrors=false&email=", "NOAA", "noaa_ngdc_2f3c_18c9_49f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_94e4_de00_3f68", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_94e4_de00_3f68.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_94e4_de00_3f68/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x00 w075x00 2018v2 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_94e4_de00_3f68_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_94e4_de00_3f68_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_94e4_de00_3f68/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_94e4_de00_3f68.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_94e4_de00_3f68&showErrors=false&email=", "NOAA", "noaa_ngdc_94e4_de00_3f68"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cdd2_f140_51f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cdd2_f140_51f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_cdd2_f140_51f3/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x00 w075x25 2014v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_cdd2_f140_51f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_cdd2_f140_51f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_cdd2_f140_51f3/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_cdd2_f140_51f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_cdd2_f140_51f3&showErrors=false&email=", "NOAA", "noaa_ngdc_cdd2_f140_51f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e2af_562e_928d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e2af_562e_928d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e2af_562e_928d/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x00 w075x50 2014v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e2af_562e_928d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e2af_562e_928d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e2af_562e_928d/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e2af_562e_928d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e2af_562e_928d&showErrors=false&email=", "NOAA", "noaa_ngdc_e2af_562e_928d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d570_4a24_3717", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d570_4a24_3717.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d570_4a24_3717/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x25 w074x75 2014v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d570_4a24_3717_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d570_4a24_3717_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d570_4a24_3717/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d570_4a24_3717.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d570_4a24_3717&showErrors=false&email=", "NOAA", "noaa_ngdc_d570_4a24_3717"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3b13_2cd3_1408", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3b13_2cd3_1408.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3b13_2cd3_1408/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x25 w074x75 2018v2 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3b13_2cd3_1408_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3b13_2cd3_1408_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3b13_2cd3_1408/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3b13_2cd3_1408.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3b13_2cd3_1408&showErrors=false&email=", "NOAA", "noaa_ngdc_3b13_2cd3_1408"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_baf5_fcc5_fd22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_baf5_fcc5_fd22.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_baf5_fcc5_fd22/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x25 w075x00 2014v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_baf5_fcc5_fd22_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_baf5_fcc5_fd22_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_baf5_fcc5_fd22/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_baf5_fcc5_fd22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_baf5_fcc5_fd22&showErrors=false&email=", "NOAA", "noaa_ngdc_baf5_fcc5_fd22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d4fa_62a4_b3e7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d4fa_62a4_b3e7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d4fa_62a4_b3e7/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x25 w075x00 2018v2 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d4fa_62a4_b3e7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d4fa_62a4_b3e7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d4fa_62a4_b3e7/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d4fa_62a4_b3e7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d4fa_62a4_b3e7&showErrors=false&email=", "NOAA", "noaa_ngdc_d4fa_62a4_b3e7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8f4d_37f9_64db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8f4d_37f9_64db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8f4d_37f9_64db/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x25 w075x25 2014v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8f4d_37f9_64db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8f4d_37f9_64db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8f4d_37f9_64db/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8f4d_37f9_64db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8f4d_37f9_64db&showErrors=false&email=", "NOAA", "noaa_ngdc_8f4d_37f9_64db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_194c_2a23_0f98", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_194c_2a23_0f98.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_194c_2a23_0f98/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x25 w075x25 2018v2 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_194c_2a23_0f98_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_194c_2a23_0f98_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_194c_2a23_0f98/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_194c_2a23_0f98.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_194c_2a23_0f98&showErrors=false&email=", "NOAA", "noaa_ngdc_194c_2a23_0f98"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0c7f_08e6_aac9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0c7f_08e6_aac9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0c7f_08e6_aac9/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x25 w075x50 2014v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0c7f_08e6_aac9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0c7f_08e6_aac9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0c7f_08e6_aac9/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0c7f_08e6_aac9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0c7f_08e6_aac9&showErrors=false&email=", "NOAA", "noaa_ngdc_0c7f_08e6_aac9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c489_19a5_fb5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c489_19a5_fb5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c489_19a5_fb5f/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x50 w074x50 2014v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c489_19a5_fb5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c489_19a5_fb5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c489_19a5_fb5f/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c489_19a5_fb5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c489_19a5_fb5f&showErrors=false&email=", "NOAA", "noaa_ngdc_c489_19a5_fb5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1154_5edd_b358", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1154_5edd_b358.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1154_5edd_b358/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x50 w074x50 2018v2 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1154_5edd_b358_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1154_5edd_b358_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1154_5edd_b358/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1154_5edd_b358.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1154_5edd_b358&showErrors=false&email=", "NOAA", "noaa_ngdc_1154_5edd_b358"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e29a_7998_f18e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e29a_7998_f18e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e29a_7998_f18e/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x50 w074x75 2014v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e29a_7998_f18e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e29a_7998_f18e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e29a_7998_f18e/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e29a_7998_f18e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e29a_7998_f18e&showErrors=false&email=", "NOAA", "noaa_ngdc_e29a_7998_f18e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_77b1_a4db_a63b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_77b1_a4db_a63b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_77b1_a4db_a63b/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x50 w074x75 2018v2 (GDAL Band Number 1), 3.08642E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_77b1_a4db_a63b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_77b1_a4db_a63b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_77b1_a4db_a63b/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_77b1_a4db_a63b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_77b1_a4db_a63b&showErrors=false&email=", "NOAA", "noaa_ngdc_77b1_a4db_a63b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2993_ddd2_215d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2993_ddd2_215d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2993_ddd2_215d/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x50 w075x25 2014v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2993_ddd2_215d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2993_ddd2_215d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2993_ddd2_215d/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2993_ddd2_215d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2993_ddd2_215d&showErrors=false&email=", "NOAA", "noaa_ngdc_2993_ddd2_215d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ad71_09c6_8628", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ad71_09c6_8628.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_ad71_09c6_8628/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x50 w075x25 2018v2 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_ad71_09c6_8628_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_ad71_09c6_8628_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ad71_09c6_8628/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ad71_09c6_8628.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ad71_09c6_8628&showErrors=false&email=", "NOAA", "noaa_ngdc_ad71_09c6_8628"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e843_ce5c_0f61", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e843_ce5c_0f61.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e843_ce5c_0f61/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x50 w075x50 2014v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e843_ce5c_0f61_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e843_ce5c_0f61_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e843_ce5c_0f61/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e843_ce5c_0f61.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e843_ce5c_0f61&showErrors=false&email=", "NOAA", "noaa_ngdc_e843_ce5c_0f61"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e1a1_ed1b_50b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e1a1_ed1b_50b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e1a1_ed1b_50b0/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x50 w075x50 2018v2 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e1a1_ed1b_50b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e1a1_ed1b_50b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e1a1_ed1b_50b0/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e1a1_ed1b_50b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e1a1_ed1b_50b0&showErrors=false&email=", "NOAA", "noaa_ngdc_e1a1_ed1b_50b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2736_bd3e_0f07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2736_bd3e_0f07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2736_bd3e_0f07/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x50 w075x75 2014v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2736_bd3e_0f07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2736_bd3e_0f07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2736_bd3e_0f07/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2736_bd3e_0f07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2736_bd3e_0f07&showErrors=false&email=", "NOAA", "noaa_ngdc_2736_bd3e_0f07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8c92_9f8a_ffd5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8c92_9f8a_ffd5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8c92_9f8a_ffd5/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x75 w074x25 2014v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8c92_9f8a_ffd5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8c92_9f8a_ffd5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8c92_9f8a_ffd5/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8c92_9f8a_ffd5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8c92_9f8a_ffd5&showErrors=false&email=", "NOAA", "noaa_ngdc_8c92_9f8a_ffd5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ce76_6256_c7b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ce76_6256_c7b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_ce76_6256_c7b6/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x75 w074x25 2018v2 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_ce76_6256_c7b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_ce76_6256_c7b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ce76_6256_c7b6/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ce76_6256_c7b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ce76_6256_c7b6&showErrors=false&email=", "NOAA", "noaa_ngdc_ce76_6256_c7b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_216f_f1e8_1e4b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_216f_f1e8_1e4b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_216f_f1e8_1e4b/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x75 w074x50 2014v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_216f_f1e8_1e4b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_216f_f1e8_1e4b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_216f_f1e8_1e4b/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_216f_f1e8_1e4b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_216f_f1e8_1e4b&showErrors=false&email=", "NOAA", "noaa_ngdc_216f_f1e8_1e4b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_796a_07a6_b8dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_796a_07a6_b8dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_796a_07a6_b8dd/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x75 w074x50 2018v2 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_796a_07a6_b8dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_796a_07a6_b8dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_796a_07a6_b8dd/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_796a_07a6_b8dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_796a_07a6_b8dd&showErrors=false&email=", "NOAA", "noaa_ngdc_796a_07a6_b8dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0a99_a786_5847", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0a99_a786_5847.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0a99_a786_5847/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x75 w075x50 2014v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0a99_a786_5847_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0a99_a786_5847_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0a99_a786_5847/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0a99_a786_5847.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0a99_a786_5847&showErrors=false&email=", "NOAA", "noaa_ngdc_0a99_a786_5847"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_69b9_f93f_3a19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_69b9_f93f_3a19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_69b9_f93f_3a19/request", "", "public", "Top Dataset, tiled 19as, ncei19 n39x75 w075x75 2014v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_69b9_f93f_3a19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_69b9_f93f_3a19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_69b9_f93f_3a19/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_69b9_f93f_3a19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_69b9_f93f_3a19&showErrors=false&email=", "NOAA", "noaa_ngdc_69b9_f93f_3a19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7d78_2546_8457", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7d78_2546_8457.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7d78_2546_8457/request", "", "public", "Top Dataset, tiled 19as, ncei19 n40x00 w074x25 2014v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7d78_2546_8457_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7d78_2546_8457_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7d78_2546_8457/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7d78_2546_8457.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7d78_2546_8457&showErrors=false&email=", "NOAA", "noaa_ngdc_7d78_2546_8457"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a123_71c7_8282", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a123_71c7_8282.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_a123_71c7_8282/request", "", "public", "Top Dataset, tiled 19as, ncei19 n40x00 w074x25 2018v2 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_a123_71c7_8282_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_a123_71c7_8282_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_a123_71c7_8282/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_a123_71c7_8282.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_a123_71c7_8282&showErrors=false&email=", "NOAA", "noaa_ngdc_a123_71c7_8282"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d9c8_797f_330a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d9c8_797f_330a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d9c8_797f_330a/request", "", "public", "Top Dataset, tiled 19as, ncei19 n40x00 w075x25 2014v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d9c8_797f_330a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d9c8_797f_330a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d9c8_797f_330a/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d9c8_797f_330a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d9c8_797f_330a&showErrors=false&email=", "NOAA", "noaa_ngdc_d9c8_797f_330a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_77b9_3d65_6958", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_77b9_3d65_6958.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_77b9_3d65_6958/request", "", "public", "Top Dataset, tiled 19as, ncei19 n40x00 w075x50 2014v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_77b9_3d65_6958_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_77b9_3d65_6958_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_77b9_3d65_6958/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_77b9_3d65_6958.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_77b9_3d65_6958&showErrors=false&email=", "NOAA", "noaa_ngdc_77b9_3d65_6958"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_30bf_d8ed_52b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_30bf_d8ed_52b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_30bf_d8ed_52b6/request", "", "public", "Top Dataset, tiled 19as, ncei19 n40x25 w074x00 2014v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_30bf_d8ed_52b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_30bf_d8ed_52b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_30bf_d8ed_52b6/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_30bf_d8ed_52b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_30bf_d8ed_52b6&showErrors=false&email=", "NOAA", "noaa_ngdc_30bf_d8ed_52b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b088_e6fa_b3f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b088_e6fa_b3f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_b088_e6fa_b3f5/request", "", "public", "Top Dataset, tiled 19as, ncei19 n40x25 w074x00 2018v2 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_b088_e6fa_b3f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_b088_e6fa_b3f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_b088_e6fa_b3f5/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_b088_e6fa_b3f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_b088_e6fa_b3f5&showErrors=false&email=", "NOAA", "noaa_ngdc_b088_e6fa_b3f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1ce0_c1c9_0395", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1ce0_c1c9_0395.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1ce0_c1c9_0395/request", "", "public", "Top Dataset, tiled 19as, ncei19 n40x25 w074x25 2014v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1ce0_c1c9_0395_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1ce0_c1c9_0395_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1ce0_c1c9_0395/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1ce0_c1c9_0395.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1ce0_c1c9_0395&showErrors=false&email=", "NOAA", "noaa_ngdc_1ce0_c1c9_0395"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7ad3_74c3_7ab3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7ad3_74c3_7ab3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7ad3_74c3_7ab3/request", "", "public", "Top Dataset, tiled 19as, ncei19 n40x25 w074x25 2018v2 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7ad3_74c3_7ab3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7ad3_74c3_7ab3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7ad3_74c3_7ab3/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7ad3_74c3_7ab3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7ad3_74c3_7ab3&showErrors=false&email=", "NOAA", "noaa_ngdc_7ad3_74c3_7ab3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2de6_161a_5766", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2de6_161a_5766.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2de6_161a_5766/request", "", "public", "Top Dataset, tiled 19as, ncei19 n40x25 w074x75 2014v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2de6_161a_5766_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2de6_161a_5766_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2de6_161a_5766/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2de6_161a_5766.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2de6_161a_5766&showErrors=false&email=", "NOAA", "noaa_ngdc_2de6_161a_5766"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_63a2_768f_ff48", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_63a2_768f_ff48.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_63a2_768f_ff48/request", "", "public", "Top Dataset, tiled 19as, ncei19 n40x25 w075x00 2014v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_63a2_768f_ff48_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_63a2_768f_ff48_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_63a2_768f_ff48/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_63a2_768f_ff48.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_63a2_768f_ff48&showErrors=false&email=", "NOAA", "noaa_ngdc_63a2_768f_ff48"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_54ea_b3ea_769a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_54ea_b3ea_769a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_54ea_b3ea_769a/request", "", "public", "Top Dataset, tiled 19as, ncei19 n40x25 w075x25 2014v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_54ea_b3ea_769a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_54ea_b3ea_769a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_54ea_b3ea_769a/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_54ea_b3ea_769a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_54ea_b3ea_769a&showErrors=false&email=", "NOAA", "noaa_ngdc_54ea_b3ea_769a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_fbc7_a5a0_84e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_fbc7_a5a0_84e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_fbc7_a5a0_84e6/request", "", "public", "Top Dataset, tiled 19as, ncei19 n40x50 w074x00 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_fbc7_a5a0_84e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_fbc7_a5a0_84e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_fbc7_a5a0_84e6/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_fbc7_a5a0_84e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_fbc7_a5a0_84e6&showErrors=false&email=", "NOAA", "noaa_ngdc_fbc7_a5a0_84e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c46f_775d_83e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c46f_775d_83e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c46f_775d_83e3/request", "", "public", "Top Dataset, tiled 19as, ncei19 n40x50 w074x00 2018v2 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c46f_775d_83e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c46f_775d_83e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c46f_775d_83e3/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c46f_775d_83e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c46f_775d_83e3&showErrors=false&email=", "NOAA", "noaa_ngdc_c46f_775d_83e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_add7_238b_b2a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_add7_238b_b2a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_add7_238b_b2a6/request", "", "public", "Top Dataset, tiled 19as, ncei19 n40x50 w074x25 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_add7_238b_b2a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_add7_238b_b2a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_add7_238b_b2a6/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_add7_238b_b2a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_add7_238b_b2a6&showErrors=false&email=", "NOAA", "noaa_ngdc_add7_238b_b2a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7a7e_3e1b_127d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7a7e_3e1b_127d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7a7e_3e1b_127d/request", "", "public", "Top Dataset, tiled 19as, ncei19 n40x50 w074x25 2018v2 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7a7e_3e1b_127d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7a7e_3e1b_127d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7a7e_3e1b_127d/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7a7e_3e1b_127d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7a7e_3e1b_127d&showErrors=false&email=", "NOAA", "noaa_ngdc_7a7e_3e1b_127d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5a84_3480_6cd8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5a84_3480_6cd8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5a84_3480_6cd8/request", "", "public", "Top Dataset, tiled 19as, ncei19 n40x75 w073x00 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5a84_3480_6cd8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5a84_3480_6cd8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5a84_3480_6cd8/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5a84_3480_6cd8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5a84_3480_6cd8&showErrors=false&email=", "NOAA", "noaa_ngdc_5a84_3480_6cd8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f365_b664_e881", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f365_b664_e881.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f365_b664_e881/request", "", "public", "Top Dataset, tiled 19as, ncei19 n40x75 w073x25 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f365_b664_e881_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f365_b664_e881_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f365_b664_e881/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f365_b664_e881.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f365_b664_e881&showErrors=false&email=", "NOAA", "noaa_ngdc_f365_b664_e881"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c1db_e87b_7047", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c1db_e87b_7047.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c1db_e87b_7047/request", "", "public", "Top Dataset, tiled 19as, ncei19 n40x75 w073x50 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c1db_e87b_7047_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c1db_e87b_7047_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c1db_e87b_7047/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c1db_e87b_7047.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c1db_e87b_7047&showErrors=false&email=", "NOAA", "noaa_ngdc_c1db_e87b_7047"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_abe5_65df_d353", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_abe5_65df_d353.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_abe5_65df_d353/request", "", "public", "Top Dataset, tiled 19as, ncei19 n40x75 w073x75 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_abe5_65df_d353_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_abe5_65df_d353_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_abe5_65df_d353/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_abe5_65df_d353.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_abe5_65df_d353&showErrors=false&email=", "NOAA", "noaa_ngdc_abe5_65df_d353"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5999_9d77_4fa6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5999_9d77_4fa6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5999_9d77_4fa6/request", "", "public", "Top Dataset, tiled 19as, ncei19 n40x75 w074x00 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5999_9d77_4fa6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5999_9d77_4fa6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5999_9d77_4fa6/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5999_9d77_4fa6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5999_9d77_4fa6&showErrors=false&email=", "NOAA", "noaa_ngdc_5999_9d77_4fa6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_afef_7e6d_9265", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_afef_7e6d_9265.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_afef_7e6d_9265/request", "", "public", "Top Dataset, tiled 19as, ncei19 n40x75 w074x25 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_afef_7e6d_9265_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_afef_7e6d_9265_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_afef_7e6d_9265/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_afef_7e6d_9265.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_afef_7e6d_9265&showErrors=false&email=", "NOAA", "noaa_ngdc_afef_7e6d_9265"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5f19_4c4c_71f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5f19_4c4c_71f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5f19_4c4c_71f0/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x00 w072x25 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5f19_4c4c_71f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5f19_4c4c_71f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5f19_4c4c_71f0/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5f19_4c4c_71f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5f19_4c4c_71f0&showErrors=false&email=", "NOAA", "noaa_ngdc_5f19_4c4c_71f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6e58_ce06_ea45", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6e58_ce06_ea45.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_6e58_ce06_ea45/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x00 w072x50 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_6e58_ce06_ea45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_6e58_ce06_ea45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6e58_ce06_ea45/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6e58_ce06_ea45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6e58_ce06_ea45&showErrors=false&email=", "NOAA", "noaa_ngdc_6e58_ce06_ea45"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_eda2_a8d4_a08d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_eda2_a8d4_a08d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_eda2_a8d4_a08d/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x00 w072x75 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_eda2_a8d4_a08d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_eda2_a8d4_a08d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_eda2_a8d4_a08d/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_eda2_a8d4_a08d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_eda2_a8d4_a08d&showErrors=false&email=", "NOAA", "noaa_ngdc_eda2_a8d4_a08d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1ce3_1f10_a7a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1ce3_1f10_a7a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1ce3_1f10_a7a0/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x00 w073x00 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1ce3_1f10_a7a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1ce3_1f10_a7a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1ce3_1f10_a7a0/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1ce3_1f10_a7a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1ce3_1f10_a7a0&showErrors=false&email=", "NOAA", "noaa_ngdc_1ce3_1f10_a7a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a7db_e7a4_881d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a7db_e7a4_881d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_a7db_e7a4_881d/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x00 w073x25 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_a7db_e7a4_881d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_a7db_e7a4_881d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_a7db_e7a4_881d/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_a7db_e7a4_881d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_a7db_e7a4_881d&showErrors=false&email=", "NOAA", "noaa_ngdc_a7db_e7a4_881d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_44c5_fe7c_34a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_44c5_fe7c_34a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_44c5_fe7c_34a7/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x00 w073x50 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_44c5_fe7c_34a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_44c5_fe7c_34a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_44c5_fe7c_34a7/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_44c5_fe7c_34a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_44c5_fe7c_34a7&showErrors=false&email=", "NOAA", "noaa_ngdc_44c5_fe7c_34a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5271_2ee4_86df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5271_2ee4_86df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5271_2ee4_86df/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x00 w073x75 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5271_2ee4_86df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5271_2ee4_86df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5271_2ee4_86df/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5271_2ee4_86df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5271_2ee4_86df&showErrors=false&email=", "NOAA", "noaa_ngdc_5271_2ee4_86df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f2f8_ee40_dccf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f2f8_ee40_dccf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f2f8_ee40_dccf/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x00 w074x00 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f2f8_ee40_dccf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f2f8_ee40_dccf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f2f8_ee40_dccf/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f2f8_ee40_dccf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f2f8_ee40_dccf&showErrors=false&email=", "NOAA", "noaa_ngdc_f2f8_ee40_dccf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4c3b_3628_ca35", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4c3b_3628_ca35.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4c3b_3628_ca35/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x00 w074x25 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4c3b_3628_ca35_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4c3b_3628_ca35_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4c3b_3628_ca35/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4c3b_3628_ca35.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4c3b_3628_ca35&showErrors=false&email=", "NOAA", "noaa_ngdc_4c3b_3628_ca35"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3ed8_d1c2_db1b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3ed8_d1c2_db1b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3ed8_d1c2_db1b/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x25 w072x00 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3ed8_d1c2_db1b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3ed8_d1c2_db1b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3ed8_d1c2_db1b/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3ed8_d1c2_db1b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3ed8_d1c2_db1b&showErrors=false&email=", "NOAA", "noaa_ngdc_3ed8_d1c2_db1b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ad97_e0b2_a950", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ad97_e0b2_a950.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_ad97_e0b2_a950/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x25 w072x25 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_ad97_e0b2_a950_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_ad97_e0b2_a950_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ad97_e0b2_a950/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ad97_e0b2_a950.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ad97_e0b2_a950&showErrors=false&email=", "NOAA", "noaa_ngdc_ad97_e0b2_a950"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a94c_914e_23c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a94c_914e_23c9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_a94c_914e_23c9/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x25 w072x50 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_a94c_914e_23c9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_a94c_914e_23c9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_a94c_914e_23c9/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_a94c_914e_23c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_a94c_914e_23c9&showErrors=false&email=", "NOAA", "noaa_ngdc_a94c_914e_23c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1589_4763_826f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1589_4763_826f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1589_4763_826f/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x25 w072x50 2016v2 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1589_4763_826f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1589_4763_826f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1589_4763_826f/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1589_4763_826f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1589_4763_826f&showErrors=false&email=", "NOAA", "noaa_ngdc_1589_4763_826f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4826_1b95_fdb6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4826_1b95_fdb6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4826_1b95_fdb6/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x25 w072x75 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4826_1b95_fdb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4826_1b95_fdb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4826_1b95_fdb6/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4826_1b95_fdb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4826_1b95_fdb6&showErrors=false&email=", "NOAA", "noaa_ngdc_4826_1b95_fdb6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_212c_1608_c643", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_212c_1608_c643.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_212c_1608_c643/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x25 w072x75 2016v2 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_212c_1608_c643_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_212c_1608_c643_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_212c_1608_c643/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_212c_1608_c643.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_212c_1608_c643&showErrors=false&email=", "NOAA", "noaa_ngdc_212c_1608_c643"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_63ab_5dff_2874", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_63ab_5dff_2874.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_63ab_5dff_2874/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x25 w073x00 2016v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_63ab_5dff_2874_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_63ab_5dff_2874_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_63ab_5dff_2874/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_63ab_5dff_2874.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_63ab_5dff_2874&showErrors=false&email=", "NOAA", "noaa_ngdc_63ab_5dff_2874"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3f88_5f54_5485", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3f88_5f54_5485.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3f88_5f54_5485/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x25 w073x25 2016v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3f88_5f54_5485_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3f88_5f54_5485_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3f88_5f54_5485/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3f88_5f54_5485.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3f88_5f54_5485&showErrors=false&email=", "NOAA", "noaa_ngdc_3f88_5f54_5485"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_26c9_fd69_044f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_26c9_fd69_044f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_26c9_fd69_044f/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x25 w073x50 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_26c9_fd69_044f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_26c9_fd69_044f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_26c9_fd69_044f/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_26c9_fd69_044f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_26c9_fd69_044f&showErrors=false&email=", "NOAA", "noaa_ngdc_26c9_fd69_044f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2735_5687_2f8d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2735_5687_2f8d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2735_5687_2f8d/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x25 w073x75 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2735_5687_2f8d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2735_5687_2f8d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2735_5687_2f8d/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2735_5687_2f8d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2735_5687_2f8d&showErrors=false&email=", "NOAA", "noaa_ngdc_2735_5687_2f8d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7446_fff9_6034", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7446_fff9_6034.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7446_fff9_6034/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x25 w074x00 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7446_fff9_6034_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7446_fff9_6034_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7446_fff9_6034/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7446_fff9_6034.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7446_fff9_6034&showErrors=false&email=", "NOAA", "noaa_ngdc_7446_fff9_6034"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8746_04af_df00", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8746_04af_df00.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8746_04af_df00/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x50 w072x00 2016v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8746_04af_df00_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8746_04af_df00_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8746_04af_df00/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8746_04af_df00.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8746_04af_df00&showErrors=false&email=", "NOAA", "noaa_ngdc_8746_04af_df00"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5c7f_506f_98d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5c7f_506f_98d1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5c7f_506f_98d1/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x50 w072x25 2016v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5c7f_506f_98d1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5c7f_506f_98d1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5c7f_506f_98d1/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5c7f_506f_98d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5c7f_506f_98d1&showErrors=false&email=", "NOAA", "noaa_ngdc_5c7f_506f_98d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_940d_5249_2374", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_940d_5249_2374.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_940d_5249_2374/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x50 w072x50 2016v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_940d_5249_2374_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_940d_5249_2374_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_940d_5249_2374/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_940d_5249_2374.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_940d_5249_2374&showErrors=false&email=", "NOAA", "noaa_ngdc_940d_5249_2374"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cc83_fe6c_5ce2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cc83_fe6c_5ce2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_cc83_fe6c_5ce2/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x50 w072x75 2016v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_cc83_fe6c_5ce2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_cc83_fe6c_5ce2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_cc83_fe6c_5ce2/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_cc83_fe6c_5ce2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_cc83_fe6c_5ce2&showErrors=false&email=", "NOAA", "noaa_ngdc_cc83_fe6c_5ce2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8b17_b866_6f3d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8b17_b866_6f3d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8b17_b866_6f3d/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x50 w073x00 2016v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8b17_b866_6f3d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8b17_b866_6f3d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8b17_b866_6f3d/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8b17_b866_6f3d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8b17_b866_6f3d&showErrors=false&email=", "NOAA", "noaa_ngdc_8b17_b866_6f3d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9ac8_b5be_544e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9ac8_b5be_544e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9ac8_b5be_544e/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x50 w074x00 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9ac8_b5be_544e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9ac8_b5be_544e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9ac8_b5be_544e/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9ac8_b5be_544e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9ac8_b5be_544e&showErrors=false&email=", "NOAA", "noaa_ngdc_9ac8_b5be_544e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7621_b9f8_47ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7621_b9f8_47ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7621_b9f8_47ce/request", "", "public", "Top Dataset, tiled 19as, ncei19 n41x50 w074x25 2015v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7621_b9f8_47ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7621_b9f8_47ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7621_b9f8_47ce/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7621_b9f8_47ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7621_b9f8_47ce&showErrors=false&email=", "NOAA", "noaa_ngdc_7621_b9f8_47ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c002_1e21_3cd1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c002_1e21_3cd1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c002_1e21_3cd1/request", "", "public", "Top Dataset, tiled 19as, ncei19 n48x75 w122x50 2017v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c002_1e21_3cd1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c002_1e21_3cd1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c002_1e21_3cd1/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c002_1e21_3cd1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c002_1e21_3cd1&showErrors=false&email=", "NOAA", "noaa_ngdc_c002_1e21_3cd1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_915b_d1ee_69e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_915b_d1ee_69e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_915b_d1ee_69e2/request", "", "public", "Top Dataset, tiled 19as, ncei19 n48x75 w122x75 2017v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_915b_d1ee_69e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_915b_d1ee_69e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_915b_d1ee_69e2/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_915b_d1ee_69e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_915b_d1ee_69e2&showErrors=false&email=", "NOAA", "noaa_ngdc_915b_d1ee_69e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e035_21ef_2bca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e035_21ef_2bca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e035_21ef_2bca/request", "", "public", "Top Dataset, tiled 19as, ncei19 n48x75 w123x00 2017v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e035_21ef_2bca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e035_21ef_2bca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e035_21ef_2bca/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e035_21ef_2bca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e035_21ef_2bca&showErrors=false&email=", "NOAA", "noaa_ngdc_e035_21ef_2bca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3285_04bb_f071", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3285_04bb_f071.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3285_04bb_f071/request", "", "public", "Top Dataset, tiled 19as, ncei19 n49x00 w122x50 2017v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3285_04bb_f071_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3285_04bb_f071_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3285_04bb_f071/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3285_04bb_f071.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3285_04bb_f071&showErrors=false&email=", "NOAA", "noaa_ngdc_3285_04bb_f071"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b625_83da_a4c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b625_83da_a4c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_b625_83da_a4c4/request", "", "public", "Top Dataset, tiled 19as, ncei19 n49x00 w122x75 2017v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_b625_83da_a4c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_b625_83da_a4c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_b625_83da_a4c4/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_b625_83da_a4c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_b625_83da_a4c4&showErrors=false&email=", "NOAA", "noaa_ngdc_b625_83da_a4c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b512_2316_0358", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b512_2316_0358.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_b512_2316_0358/request", "", "public", "Top Dataset, tiled 19as, ncei19 n49x00 w123x00 2017v1 (GDAL Band Number 1), 3.0864197E-5\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_b512_2316_0358_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_b512_2316_0358_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_b512_2316_0358/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_b512_2316_0358.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_b512_2316_0358&showErrors=false&email=", "NOAA", "noaa_ngdc_b512_2316_0358"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8015_984c_1d52", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8015_984c_1d52.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8015_984c_1d52/request", "", "public", "Top Dataset, tiled 1as, ncei1 n38x25 w073x75 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8015_984c_1d52_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8015_984c_1d52_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8015_984c_1d52/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8015_984c_1d52.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8015_984c_1d52&showErrors=false&email=", "NOAA", "noaa_ngdc_8015_984c_1d52"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1444_9a40_a226", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1444_9a40_a226.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1444_9a40_a226/request", "", "public", "Top Dataset, tiled 1as, ncei1 n38x25 w074x00 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1444_9a40_a226_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1444_9a40_a226_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1444_9a40_a226/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1444_9a40_a226.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1444_9a40_a226&showErrors=false&email=", "NOAA", "noaa_ngdc_1444_9a40_a226"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_14b2_d7dc_bd4a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_14b2_d7dc_bd4a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_14b2_d7dc_bd4a/request", "", "public", "Top Dataset, tiled 1as, ncei1 n38x25 w074x25 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_14b2_d7dc_bd4a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_14b2_d7dc_bd4a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_14b2_d7dc_bd4a/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_14b2_d7dc_bd4a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_14b2_d7dc_bd4a&showErrors=false&email=", "NOAA", "noaa_ngdc_14b2_d7dc_bd4a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2c4d_8439_b319", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2c4d_8439_b319.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2c4d_8439_b319/request", "", "public", "Top Dataset, tiled 1as, ncei1 n38x50 w073x50 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2c4d_8439_b319_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2c4d_8439_b319_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2c4d_8439_b319/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2c4d_8439_b319.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2c4d_8439_b319&showErrors=false&email=", "NOAA", "noaa_ngdc_2c4d_8439_b319"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8880_ffb9_3f1a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8880_ffb9_3f1a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8880_ffb9_3f1a/request", "", "public", "Top Dataset, tiled 1as, ncei1 n38x50 w073x75 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8880_ffb9_3f1a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8880_ffb9_3f1a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8880_ffb9_3f1a/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8880_ffb9_3f1a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8880_ffb9_3f1a&showErrors=false&email=", "NOAA", "noaa_ngdc_8880_ffb9_3f1a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9ade_58a5_15f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9ade_58a5_15f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9ade_58a5_15f3/request", "", "public", "Top Dataset, tiled 1as, ncei1 n38x50 w074x00 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9ade_58a5_15f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9ade_58a5_15f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9ade_58a5_15f3/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9ade_58a5_15f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9ade_58a5_15f3&showErrors=false&email=", "NOAA", "noaa_ngdc_9ade_58a5_15f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b4d4_4120_1c7d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b4d4_4120_1c7d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_b4d4_4120_1c7d/request", "", "public", "Top Dataset, tiled 1as, ncei1 n38x50 w074x25 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_b4d4_4120_1c7d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_b4d4_4120_1c7d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_b4d4_4120_1c7d/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_b4d4_4120_1c7d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_b4d4_4120_1c7d&showErrors=false&email=", "NOAA", "noaa_ngdc_b4d4_4120_1c7d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a957_713c_58a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a957_713c_58a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_a957_713c_58a1/request", "", "public", "Top Dataset, tiled 1as, ncei1 n38x50 w074x50 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_a957_713c_58a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_a957_713c_58a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_a957_713c_58a1/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_a957_713c_58a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_a957_713c_58a1&showErrors=false&email=", "NOAA", "noaa_ngdc_a957_713c_58a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7cb7_9dd0_213c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7cb7_9dd0_213c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7cb7_9dd0_213c/request", "", "public", "Top Dataset, tiled 1as, ncei1 n38x75 w073x25 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7cb7_9dd0_213c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7cb7_9dd0_213c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7cb7_9dd0_213c/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7cb7_9dd0_213c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7cb7_9dd0_213c&showErrors=false&email=", "NOAA", "noaa_ngdc_7cb7_9dd0_213c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3a72_6a04_fd02", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3a72_6a04_fd02.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3a72_6a04_fd02/request", "", "public", "Top Dataset, tiled 1as, ncei1 n38x75 w073x50 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3a72_6a04_fd02_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3a72_6a04_fd02_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3a72_6a04_fd02/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3a72_6a04_fd02.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3a72_6a04_fd02&showErrors=false&email=", "NOAA", "noaa_ngdc_3a72_6a04_fd02"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d08d_49e7_68df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d08d_49e7_68df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d08d_49e7_68df/request", "", "public", "Top Dataset, tiled 1as, ncei1 n38x75 w073x75 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d08d_49e7_68df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d08d_49e7_68df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d08d_49e7_68df/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d08d_49e7_68df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d08d_49e7_68df&showErrors=false&email=", "NOAA", "noaa_ngdc_d08d_49e7_68df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2867_4404_dfdb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2867_4404_dfdb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2867_4404_dfdb/request", "", "public", "Top Dataset, tiled 1as, ncei1 n38x75 w074x00 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2867_4404_dfdb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2867_4404_dfdb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2867_4404_dfdb/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2867_4404_dfdb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2867_4404_dfdb&showErrors=false&email=", "NOAA", "noaa_ngdc_2867_4404_dfdb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e126_d397_b787", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e126_d397_b787.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e126_d397_b787/request", "", "public", "Top Dataset, tiled 1as, ncei1 n38x75 w074x25 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e126_d397_b787_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e126_d397_b787_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e126_d397_b787/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e126_d397_b787.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e126_d397_b787&showErrors=false&email=", "NOAA", "noaa_ngdc_e126_d397_b787"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1648_50fc_efab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1648_50fc_efab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1648_50fc_efab/request", "", "public", "Top Dataset, tiled 1as, ncei1 n38x75 w074x50 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1648_50fc_efab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1648_50fc_efab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1648_50fc_efab/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1648_50fc_efab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1648_50fc_efab&showErrors=false&email=", "NOAA", "noaa_ngdc_1648_50fc_efab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4ce3_ea8b_de37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4ce3_ea8b_de37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4ce3_ea8b_de37/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x00 w073x00 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4ce3_ea8b_de37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4ce3_ea8b_de37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4ce3_ea8b_de37/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4ce3_ea8b_de37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4ce3_ea8b_de37&showErrors=false&email=", "NOAA", "noaa_ngdc_4ce3_ea8b_de37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7530_245b_1394", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7530_245b_1394.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7530_245b_1394/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x00 w073x25 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7530_245b_1394_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7530_245b_1394_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7530_245b_1394/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7530_245b_1394.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7530_245b_1394&showErrors=false&email=", "NOAA", "noaa_ngdc_7530_245b_1394"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c604_9da4_11ed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c604_9da4_11ed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c604_9da4_11ed/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x00 w073x50 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c604_9da4_11ed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c604_9da4_11ed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c604_9da4_11ed/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c604_9da4_11ed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c604_9da4_11ed&showErrors=false&email=", "NOAA", "noaa_ngdc_c604_9da4_11ed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8444_6fb6_8d44", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8444_6fb6_8d44.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8444_6fb6_8d44/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x00 w073x75 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8444_6fb6_8d44_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8444_6fb6_8d44_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8444_6fb6_8d44/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8444_6fb6_8d44.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8444_6fb6_8d44&showErrors=false&email=", "NOAA", "noaa_ngdc_8444_6fb6_8d44"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_481c_44c3_c26a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_481c_44c3_c26a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_481c_44c3_c26a/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x00 w074x00 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_481c_44c3_c26a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_481c_44c3_c26a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_481c_44c3_c26a/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_481c_44c3_c26a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_481c_44c3_c26a&showErrors=false&email=", "NOAA", "noaa_ngdc_481c_44c3_c26a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9a30_15e0_f2a5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9a30_15e0_f2a5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9a30_15e0_f2a5/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x00 w074x25 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9a30_15e0_f2a5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9a30_15e0_f2a5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9a30_15e0_f2a5/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9a30_15e0_f2a5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9a30_15e0_f2a5&showErrors=false&email=", "NOAA", "noaa_ngdc_9a30_15e0_f2a5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4936_b88d_ffdd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4936_b88d_ffdd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4936_b88d_ffdd/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x25 w072x50 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4936_b88d_ffdd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4936_b88d_ffdd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4936_b88d_ffdd/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4936_b88d_ffdd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4936_b88d_ffdd&showErrors=false&email=", "NOAA", "noaa_ngdc_4936_b88d_ffdd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_448d_5c30_22e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_448d_5c30_22e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_448d_5c30_22e2/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x25 w072x75 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_448d_5c30_22e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_448d_5c30_22e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_448d_5c30_22e2/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_448d_5c30_22e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_448d_5c30_22e2&showErrors=false&email=", "NOAA", "noaa_ngdc_448d_5c30_22e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5346_78bd_e78a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5346_78bd_e78a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5346_78bd_e78a/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x25 w073x00 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5346_78bd_e78a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5346_78bd_e78a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5346_78bd_e78a/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5346_78bd_e78a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5346_78bd_e78a&showErrors=false&email=", "NOAA", "noaa_ngdc_5346_78bd_e78a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ab63_a691_7d51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ab63_a691_7d51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_ab63_a691_7d51/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x25 w073x25 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_ab63_a691_7d51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_ab63_a691_7d51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ab63_a691_7d51/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ab63_a691_7d51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ab63_a691_7d51&showErrors=false&email=", "NOAA", "noaa_ngdc_ab63_a691_7d51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f66c_a815_627c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f66c_a815_627c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f66c_a815_627c/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x25 w073x50 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f66c_a815_627c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f66c_a815_627c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f66c_a815_627c/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f66c_a815_627c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f66c_a815_627c&showErrors=false&email=", "NOAA", "noaa_ngdc_f66c_a815_627c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5f76_ce10_a12b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5f76_ce10_a12b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5f76_ce10_a12b/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x25 w073x75 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5f76_ce10_a12b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5f76_ce10_a12b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5f76_ce10_a12b/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5f76_ce10_a12b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5f76_ce10_a12b&showErrors=false&email=", "NOAA", "noaa_ngdc_5f76_ce10_a12b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_310c_8a32_de11", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_310c_8a32_de11.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_310c_8a32_de11/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x25 w074x00 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_310c_8a32_de11_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_310c_8a32_de11_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_310c_8a32_de11/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_310c_8a32_de11.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_310c_8a32_de11&showErrors=false&email=", "NOAA", "noaa_ngdc_310c_8a32_de11"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d6b9_2288_39e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d6b9_2288_39e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d6b9_2288_39e6/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x50 w072x25 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d6b9_2288_39e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d6b9_2288_39e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d6b9_2288_39e6/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d6b9_2288_39e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d6b9_2288_39e6&showErrors=false&email=", "NOAA", "noaa_ngdc_d6b9_2288_39e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_166f_7804_6be2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_166f_7804_6be2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_166f_7804_6be2/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x50 w072x50 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_166f_7804_6be2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_166f_7804_6be2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_166f_7804_6be2/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_166f_7804_6be2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_166f_7804_6be2&showErrors=false&email=", "NOAA", "noaa_ngdc_166f_7804_6be2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f2ed_8a39_c16a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f2ed_8a39_c16a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f2ed_8a39_c16a/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x50 w072x75 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f2ed_8a39_c16a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f2ed_8a39_c16a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f2ed_8a39_c16a/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f2ed_8a39_c16a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f2ed_8a39_c16a&showErrors=false&email=", "NOAA", "noaa_ngdc_f2ed_8a39_c16a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_eedb_2127_1592", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_eedb_2127_1592.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_eedb_2127_1592/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x50 w073x00 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_eedb_2127_1592_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_eedb_2127_1592_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_eedb_2127_1592/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_eedb_2127_1592.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_eedb_2127_1592&showErrors=false&email=", "NOAA", "noaa_ngdc_eedb_2127_1592"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_de76_8d80_a5eb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_de76_8d80_a5eb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_de76_8d80_a5eb/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x50 w073x25 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_de76_8d80_a5eb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_de76_8d80_a5eb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_de76_8d80_a5eb/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_de76_8d80_a5eb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_de76_8d80_a5eb&showErrors=false&email=", "NOAA", "noaa_ngdc_de76_8d80_a5eb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_706c_86b0_54ad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_706c_86b0_54ad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_706c_86b0_54ad/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x50 w073x50 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_706c_86b0_54ad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_706c_86b0_54ad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_706c_86b0_54ad/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_706c_86b0_54ad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_706c_86b0_54ad&showErrors=false&email=", "NOAA", "noaa_ngdc_706c_86b0_54ad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4c0b_9892_c322", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4c0b_9892_c322.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4c0b_9892_c322/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x50 w073x75 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4c0b_9892_c322_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4c0b_9892_c322_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4c0b_9892_c322/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4c0b_9892_c322.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4c0b_9892_c322&showErrors=false&email=", "NOAA", "noaa_ngdc_4c0b_9892_c322"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_fb31_2ef6_e8b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_fb31_2ef6_e8b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_fb31_2ef6_e8b7/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x75 w072x00 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_fb31_2ef6_e8b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_fb31_2ef6_e8b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_fb31_2ef6_e8b7/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_fb31_2ef6_e8b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_fb31_2ef6_e8b7&showErrors=false&email=", "NOAA", "noaa_ngdc_fb31_2ef6_e8b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d25f_d2d1_12bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d25f_d2d1_12bc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d25f_d2d1_12bc/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x75 w072x25 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d25f_d2d1_12bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d25f_d2d1_12bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d25f_d2d1_12bc/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d25f_d2d1_12bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d25f_d2d1_12bc&showErrors=false&email=", "NOAA", "noaa_ngdc_d25f_d2d1_12bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_dcbd_8d10_a34e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_dcbd_8d10_a34e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_dcbd_8d10_a34e/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x75 w072x50 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_dcbd_8d10_a34e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_dcbd_8d10_a34e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_dcbd_8d10_a34e/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_dcbd_8d10_a34e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_dcbd_8d10_a34e&showErrors=false&email=", "NOAA", "noaa_ngdc_dcbd_8d10_a34e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_036f_6ee1_17c8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_036f_6ee1_17c8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_036f_6ee1_17c8/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x75 w072x75 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_036f_6ee1_17c8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_036f_6ee1_17c8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_036f_6ee1_17c8/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_036f_6ee1_17c8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_036f_6ee1_17c8&showErrors=false&email=", "NOAA", "noaa_ngdc_036f_6ee1_17c8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_55ff_2524_4329", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_55ff_2524_4329.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_55ff_2524_4329/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x75 w073x00 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_55ff_2524_4329_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_55ff_2524_4329_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_55ff_2524_4329/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_55ff_2524_4329.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_55ff_2524_4329&showErrors=false&email=", "NOAA", "noaa_ngdc_55ff_2524_4329"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ef06_d581_ffef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ef06_d581_ffef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_ef06_d581_ffef/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x75 w073x25 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_ef06_d581_ffef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_ef06_d581_ffef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ef06_d581_ffef/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ef06_d581_ffef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ef06_d581_ffef&showErrors=false&email=", "NOAA", "noaa_ngdc_ef06_d581_ffef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3d73_7241_2241", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3d73_7241_2241.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3d73_7241_2241/request", "", "public", "Top Dataset, tiled 1as, ncei1 n39x75 w073x50 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3d73_7241_2241_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3d73_7241_2241_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3d73_7241_2241/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3d73_7241_2241.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3d73_7241_2241&showErrors=false&email=", "NOAA", "noaa_ngdc_3d73_7241_2241"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2500_e6f9_22d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2500_e6f9_22d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2500_e6f9_22d7/request", "", "public", "Top Dataset, tiled 1as, ncei1 n40x00 w071x25 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2500_e6f9_22d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2500_e6f9_22d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2500_e6f9_22d7/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2500_e6f9_22d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2500_e6f9_22d7&showErrors=false&email=", "NOAA", "noaa_ngdc_2500_e6f9_22d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1848_4b00_b615", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1848_4b00_b615.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1848_4b00_b615/request", "", "public", "Top Dataset, tiled 1as, ncei1 n40x00 w071x50 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1848_4b00_b615_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1848_4b00_b615_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1848_4b00_b615/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1848_4b00_b615.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1848_4b00_b615&showErrors=false&email=", "NOAA", "noaa_ngdc_1848_4b00_b615"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3ad7_db5f_d77a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3ad7_db5f_d77a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3ad7_db5f_d77a/request", "", "public", "Top Dataset, tiled 1as, ncei1 n40x00 w071x75 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3ad7_db5f_d77a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3ad7_db5f_d77a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3ad7_db5f_d77a/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3ad7_db5f_d77a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3ad7_db5f_d77a&showErrors=false&email=", "NOAA", "noaa_ngdc_3ad7_db5f_d77a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a1cf_48e5_36b2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a1cf_48e5_36b2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_a1cf_48e5_36b2/request", "", "public", "Top Dataset, tiled 1as, ncei1 n40x00 w072x00 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_a1cf_48e5_36b2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_a1cf_48e5_36b2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_a1cf_48e5_36b2/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_a1cf_48e5_36b2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_a1cf_48e5_36b2&showErrors=false&email=", "NOAA", "noaa_ngdc_a1cf_48e5_36b2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1cd6_ef28_90dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1cd6_ef28_90dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1cd6_ef28_90dd/request", "", "public", "Top Dataset, tiled 1as, ncei1 n40x00 w072x25 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1cd6_ef28_90dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1cd6_ef28_90dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1cd6_ef28_90dd/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1cd6_ef28_90dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1cd6_ef28_90dd&showErrors=false&email=", "NOAA", "noaa_ngdc_1cd6_ef28_90dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_fab1_45b0_5b84", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_fab1_45b0_5b84.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_fab1_45b0_5b84/request", "", "public", "Top Dataset, tiled 1as, ncei1 n40x00 w072x50 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_fab1_45b0_5b84_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_fab1_45b0_5b84_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_fab1_45b0_5b84/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_fab1_45b0_5b84.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_fab1_45b0_5b84&showErrors=false&email=", "NOAA", "noaa_ngdc_fab1_45b0_5b84"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_72d9_a0e1_8391", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_72d9_a0e1_8391.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_72d9_a0e1_8391/request", "", "public", "Top Dataset, tiled 1as, ncei1 n40x00 w072x75 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_72d9_a0e1_8391_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_72d9_a0e1_8391_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_72d9_a0e1_8391/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_72d9_a0e1_8391.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_72d9_a0e1_8391&showErrors=false&email=", "NOAA", "noaa_ngdc_72d9_a0e1_8391"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f814_8a69_e08f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f814_8a69_e08f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f814_8a69_e08f/request", "", "public", "Top Dataset, tiled 1as, ncei1 n40x00 w073x00 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f814_8a69_e08f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f814_8a69_e08f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f814_8a69_e08f/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f814_8a69_e08f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f814_8a69_e08f&showErrors=false&email=", "NOAA", "noaa_ngdc_f814_8a69_e08f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b67d_7665_b927", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b67d_7665_b927.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_b67d_7665_b927/request", "", "public", "Top Dataset, tiled 1as, ncei1 n40x00 w073x25 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_b67d_7665_b927_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_b67d_7665_b927_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_b67d_7665_b927/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_b67d_7665_b927.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_b67d_7665_b927&showErrors=false&email=", "NOAA", "noaa_ngdc_b67d_7665_b927"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_88ce_753a_b7f8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_88ce_753a_b7f8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_88ce_753a_b7f8/request", "", "public", "Top Dataset, tiled 1as, ncei1 n40x00 w073x50 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_88ce_753a_b7f8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_88ce_753a_b7f8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_88ce_753a_b7f8/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_88ce_753a_b7f8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_88ce_753a_b7f8&showErrors=false&email=", "NOAA", "noaa_ngdc_88ce_753a_b7f8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8ca9_e8e2_4a38", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8ca9_e8e2_4a38.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8ca9_e8e2_4a38/request", "", "public", "Top Dataset, tiled 1as, ncei1 n40x25 w071x50 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8ca9_e8e2_4a38_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8ca9_e8e2_4a38_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8ca9_e8e2_4a38/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8ca9_e8e2_4a38.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8ca9_e8e2_4a38&showErrors=false&email=", "NOAA", "noaa_ngdc_8ca9_e8e2_4a38"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1413_8201_362a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1413_8201_362a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1413_8201_362a/request", "", "public", "Top Dataset, tiled 1as, ncei1 n40x25 w071x75 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1413_8201_362a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1413_8201_362a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1413_8201_362a/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1413_8201_362a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1413_8201_362a&showErrors=false&email=", "NOAA", "noaa_ngdc_1413_8201_362a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_eb05_7b50_1ad8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_eb05_7b50_1ad8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_eb05_7b50_1ad8/request", "", "public", "Top Dataset, tiled 1as, ncei1 n40x25 w072x00 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_eb05_7b50_1ad8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_eb05_7b50_1ad8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_eb05_7b50_1ad8/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_eb05_7b50_1ad8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_eb05_7b50_1ad8&showErrors=false&email=", "NOAA", "noaa_ngdc_eb05_7b50_1ad8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_382b_721f_ed1b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_382b_721f_ed1b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_382b_721f_ed1b/request", "", "public", "Top Dataset, tiled 1as, ncei1 n40x25 w072x25 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_382b_721f_ed1b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_382b_721f_ed1b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_382b_721f_ed1b/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_382b_721f_ed1b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_382b_721f_ed1b&showErrors=false&email=", "NOAA", "noaa_ngdc_382b_721f_ed1b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1a43_c073_d683", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1a43_c073_d683.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1a43_c073_d683/request", "", "public", "Top Dataset, tiled 1as, ncei1 n40x25 w072x50 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1a43_c073_d683_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1a43_c073_d683_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1a43_c073_d683/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1a43_c073_d683.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1a43_c073_d683&showErrors=false&email=", "NOAA", "noaa_ngdc_1a43_c073_d683"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4efa_f432_2d21", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4efa_f432_2d21.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4efa_f432_2d21/request", "", "public", "Top Dataset, tiled 1as, ncei1 n40x25 w072x75 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4efa_f432_2d21_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4efa_f432_2d21_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4efa_f432_2d21/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4efa_f432_2d21.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4efa_f432_2d21&showErrors=false&email=", "NOAA", "noaa_ngdc_4efa_f432_2d21"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3efc_00f1_0f88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3efc_00f1_0f88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3efc_00f1_0f88/request", "", "public", "Top Dataset, tiled 1as, ncei1 n40x50 w071x50 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3efc_00f1_0f88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3efc_00f1_0f88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3efc_00f1_0f88/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3efc_00f1_0f88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3efc_00f1_0f88&showErrors=false&email=", "NOAA", "noaa_ngdc_3efc_00f1_0f88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9f40_0bd6_18de", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9f40_0bd6_18de.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9f40_0bd6_18de/request", "", "public", "Top Dataset, tiled 1as, ncei1 n40x50 w071x75 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9f40_0bd6_18de_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9f40_0bd6_18de_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9f40_0bd6_18de/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9f40_0bd6_18de.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9f40_0bd6_18de&showErrors=false&email=", "NOAA", "noaa_ngdc_9f40_0bd6_18de"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_252c_3ea6_ee27", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_252c_3ea6_ee27.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_252c_3ea6_ee27/request", "", "public", "Top Dataset, tiled 1as, ncei1 n40x50 w072x00 2015v1 (GDAL Band Number 1), 2.7777778E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_252c_3ea6_ee27_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_252c_3ea6_ee27_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_252c_3ea6_ee27/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_252c_3ea6_ee27.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_252c_3ea6_ee27&showErrors=false&email=", "NOAA", "noaa_ngdc_252c_3ea6_ee27"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0803_74ae_6889", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0803_74ae_6889.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0803_74ae_6889/request", "", "public", "Top Dataset, tiled 3as, ncei3 n36x75 w071x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0803_74ae_6889_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0803_74ae_6889_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0803_74ae_6889/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0803_74ae_6889.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0803_74ae_6889&showErrors=false&email=", "NOAA", "noaa_ngdc_0803_74ae_6889"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d8c3_1b80_f91a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d8c3_1b80_f91a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d8c3_1b80_f91a/request", "", "public", "Top Dataset, tiled 3as, ncei3 n36x75 w071x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d8c3_1b80_f91a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d8c3_1b80_f91a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d8c3_1b80_f91a/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d8c3_1b80_f91a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d8c3_1b80_f91a&showErrors=false&email=", "NOAA", "noaa_ngdc_d8c3_1b80_f91a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3f1e_11db_644c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3f1e_11db_644c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3f1e_11db_644c/request", "", "public", "Top Dataset, tiled 3as, ncei3 n36x75 w072x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3f1e_11db_644c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3f1e_11db_644c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3f1e_11db_644c/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3f1e_11db_644c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3f1e_11db_644c&showErrors=false&email=", "NOAA", "noaa_ngdc_3f1e_11db_644c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6105_4d9c_fdbb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6105_4d9c_fdbb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_6105_4d9c_fdbb/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x00 w071x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_6105_4d9c_fdbb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_6105_4d9c_fdbb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6105_4d9c_fdbb/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6105_4d9c_fdbb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6105_4d9c_fdbb&showErrors=false&email=", "NOAA", "noaa_ngdc_6105_4d9c_fdbb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9202_ea32_cd79", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9202_ea32_cd79.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9202_ea32_cd79/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x00 w071x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9202_ea32_cd79_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9202_ea32_cd79_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9202_ea32_cd79/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9202_ea32_cd79.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9202_ea32_cd79&showErrors=false&email=", "NOAA", "noaa_ngdc_9202_ea32_cd79"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_370d_1b39_5189", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_370d_1b39_5189.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_370d_1b39_5189/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x00 w071x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_370d_1b39_5189_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_370d_1b39_5189_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_370d_1b39_5189/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_370d_1b39_5189.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_370d_1b39_5189&showErrors=false&email=", "NOAA", "noaa_ngdc_370d_1b39_5189"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6718_d6d8_b379", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6718_d6d8_b379.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_6718_d6d8_b379/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x00 w072x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_6718_d6d8_b379_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_6718_d6d8_b379_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6718_d6d8_b379/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6718_d6d8_b379.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6718_d6d8_b379&showErrors=false&email=", "NOAA", "noaa_ngdc_6718_d6d8_b379"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_daab_82dc_fc34", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_daab_82dc_fc34.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_daab_82dc_fc34/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x00 w072x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_daab_82dc_fc34_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_daab_82dc_fc34_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_daab_82dc_fc34/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_daab_82dc_fc34.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_daab_82dc_fc34&showErrors=false&email=", "NOAA", "noaa_ngdc_daab_82dc_fc34"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_11c5_84ba_65d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_11c5_84ba_65d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_11c5_84ba_65d3/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x25 w071x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_11c5_84ba_65d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_11c5_84ba_65d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_11c5_84ba_65d3/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_11c5_84ba_65d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_11c5_84ba_65d3&showErrors=false&email=", "NOAA", "noaa_ngdc_11c5_84ba_65d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3b75_ef68_df29", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3b75_ef68_df29.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3b75_ef68_df29/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x25 w071x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3b75_ef68_df29_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3b75_ef68_df29_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3b75_ef68_df29/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3b75_ef68_df29.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3b75_ef68_df29&showErrors=false&email=", "NOAA", "noaa_ngdc_3b75_ef68_df29"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bb13_427c_60bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bb13_427c_60bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_bb13_427c_60bd/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x25 w071x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_bb13_427c_60bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_bb13_427c_60bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_bb13_427c_60bd/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_bb13_427c_60bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_bb13_427c_60bd&showErrors=false&email=", "NOAA", "noaa_ngdc_bb13_427c_60bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3311_1785_555b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3311_1785_555b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3311_1785_555b/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x25 w072x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3311_1785_555b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3311_1785_555b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3311_1785_555b/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3311_1785_555b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3311_1785_555b&showErrors=false&email=", "NOAA", "noaa_ngdc_3311_1785_555b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b5f1_423d_4a83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b5f1_423d_4a83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_b5f1_423d_4a83/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x25 w072x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_b5f1_423d_4a83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_b5f1_423d_4a83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_b5f1_423d_4a83/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_b5f1_423d_4a83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_b5f1_423d_4a83&showErrors=false&email=", "NOAA", "noaa_ngdc_b5f1_423d_4a83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d476_9896_cf94", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d476_9896_cf94.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d476_9896_cf94/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x25 w072x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d476_9896_cf94_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d476_9896_cf94_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d476_9896_cf94/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d476_9896_cf94.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d476_9896_cf94&showErrors=false&email=", "NOAA", "noaa_ngdc_d476_9896_cf94"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_aa26_8ce6_8c0f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_aa26_8ce6_8c0f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_aa26_8ce6_8c0f/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x25 w072x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_aa26_8ce6_8c0f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_aa26_8ce6_8c0f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_aa26_8ce6_8c0f/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_aa26_8ce6_8c0f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_aa26_8ce6_8c0f&showErrors=false&email=", "NOAA", "noaa_ngdc_aa26_8ce6_8c0f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3428_7c46_2043", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3428_7c46_2043.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3428_7c46_2043/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x50 w071x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3428_7c46_2043_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3428_7c46_2043_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3428_7c46_2043/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3428_7c46_2043.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3428_7c46_2043&showErrors=false&email=", "NOAA", "noaa_ngdc_3428_7c46_2043"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_da00_2b80_76a4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_da00_2b80_76a4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_da00_2b80_76a4/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x50 w071x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_da00_2b80_76a4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_da00_2b80_76a4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_da00_2b80_76a4/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_da00_2b80_76a4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_da00_2b80_76a4&showErrors=false&email=", "NOAA", "noaa_ngdc_da00_2b80_76a4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2ab3_efbc_76a9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2ab3_efbc_76a9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2ab3_efbc_76a9/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x50 w071x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2ab3_efbc_76a9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2ab3_efbc_76a9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2ab3_efbc_76a9/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2ab3_efbc_76a9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2ab3_efbc_76a9&showErrors=false&email=", "NOAA", "noaa_ngdc_2ab3_efbc_76a9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4ed0_4f99_2546", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4ed0_4f99_2546.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4ed0_4f99_2546/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x50 w071x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4ed0_4f99_2546_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4ed0_4f99_2546_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4ed0_4f99_2546/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4ed0_4f99_2546.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4ed0_4f99_2546&showErrors=false&email=", "NOAA", "noaa_ngdc_4ed0_4f99_2546"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_afd2_7139_b63b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_afd2_7139_b63b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_afd2_7139_b63b/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x50 w072x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_afd2_7139_b63b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_afd2_7139_b63b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_afd2_7139_b63b/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_afd2_7139_b63b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_afd2_7139_b63b&showErrors=false&email=", "NOAA", "noaa_ngdc_afd2_7139_b63b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9b0e_c89f_bede", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9b0e_c89f_bede.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9b0e_c89f_bede/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x50 w072x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9b0e_c89f_bede_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9b0e_c89f_bede_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9b0e_c89f_bede/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9b0e_c89f_bede.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9b0e_c89f_bede&showErrors=false&email=", "NOAA", "noaa_ngdc_9b0e_c89f_bede"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7714_7d61_7e67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7714_7d61_7e67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7714_7d61_7e67/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x50 w072x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7714_7d61_7e67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7714_7d61_7e67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7714_7d61_7e67/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7714_7d61_7e67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7714_7d61_7e67&showErrors=false&email=", "NOAA", "noaa_ngdc_7714_7d61_7e67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e122_ac3b_777b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e122_ac3b_777b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e122_ac3b_777b/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x50 w072x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e122_ac3b_777b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e122_ac3b_777b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e122_ac3b_777b/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e122_ac3b_777b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e122_ac3b_777b&showErrors=false&email=", "NOAA", "noaa_ngdc_e122_ac3b_777b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f7c7_ebd3_be1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f7c7_ebd3_be1e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f7c7_ebd3_be1e/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x50 w073x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f7c7_ebd3_be1e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f7c7_ebd3_be1e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f7c7_ebd3_be1e/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f7c7_ebd3_be1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f7c7_ebd3_be1e&showErrors=false&email=", "NOAA", "noaa_ngdc_f7c7_ebd3_be1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_50fb_5dcd_9616", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_50fb_5dcd_9616.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_50fb_5dcd_9616/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x75 w070x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_50fb_5dcd_9616_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_50fb_5dcd_9616_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_50fb_5dcd_9616/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_50fb_5dcd_9616.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_50fb_5dcd_9616&showErrors=false&email=", "NOAA", "noaa_ngdc_50fb_5dcd_9616"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7327_f1cd_e293", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7327_f1cd_e293.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7327_f1cd_e293/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x75 w071x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7327_f1cd_e293_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7327_f1cd_e293_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7327_f1cd_e293/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7327_f1cd_e293.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7327_f1cd_e293&showErrors=false&email=", "NOAA", "noaa_ngdc_7327_f1cd_e293"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e870_1ee1_0220", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e870_1ee1_0220.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e870_1ee1_0220/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x75 w071x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e870_1ee1_0220_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e870_1ee1_0220_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e870_1ee1_0220/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e870_1ee1_0220.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e870_1ee1_0220&showErrors=false&email=", "NOAA", "noaa_ngdc_e870_1ee1_0220"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b88a_a036_9500", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b88a_a036_9500.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_b88a_a036_9500/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x75 w071x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_b88a_a036_9500_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_b88a_a036_9500_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_b88a_a036_9500/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_b88a_a036_9500.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_b88a_a036_9500&showErrors=false&email=", "NOAA", "noaa_ngdc_b88a_a036_9500"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0a97_ff07_1125", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0a97_ff07_1125.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0a97_ff07_1125/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x75 w071x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0a97_ff07_1125_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0a97_ff07_1125_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0a97_ff07_1125/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0a97_ff07_1125.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0a97_ff07_1125&showErrors=false&email=", "NOAA", "noaa_ngdc_0a97_ff07_1125"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_43ff_08f1_0ad8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_43ff_08f1_0ad8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_43ff_08f1_0ad8/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x75 w072x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_43ff_08f1_0ad8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_43ff_08f1_0ad8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_43ff_08f1_0ad8/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_43ff_08f1_0ad8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_43ff_08f1_0ad8&showErrors=false&email=", "NOAA", "noaa_ngdc_43ff_08f1_0ad8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f50a_117b_bf2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f50a_117b_bf2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f50a_117b_bf2d/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x75 w072x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f50a_117b_bf2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f50a_117b_bf2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f50a_117b_bf2d/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f50a_117b_bf2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f50a_117b_bf2d&showErrors=false&email=", "NOAA", "noaa_ngdc_f50a_117b_bf2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_49f9_f93c_2594", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_49f9_f93c_2594.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_49f9_f93c_2594/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x75 w072x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_49f9_f93c_2594_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_49f9_f93c_2594_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_49f9_f93c_2594/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_49f9_f93c_2594.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_49f9_f93c_2594&showErrors=false&email=", "NOAA", "noaa_ngdc_49f9_f93c_2594"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4000_bab6_7353", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4000_bab6_7353.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4000_bab6_7353/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x75 w072x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4000_bab6_7353_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4000_bab6_7353_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4000_bab6_7353/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4000_bab6_7353.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4000_bab6_7353&showErrors=false&email=", "NOAA", "noaa_ngdc_4000_bab6_7353"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d32d_2436_0bb7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d32d_2436_0bb7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d32d_2436_0bb7/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x75 w073x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d32d_2436_0bb7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d32d_2436_0bb7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d32d_2436_0bb7/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d32d_2436_0bb7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d32d_2436_0bb7&showErrors=false&email=", "NOAA", "noaa_ngdc_d32d_2436_0bb7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_26c5_1fa9_7eda", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_26c5_1fa9_7eda.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_26c5_1fa9_7eda/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x75 w073x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_26c5_1fa9_7eda_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_26c5_1fa9_7eda_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_26c5_1fa9_7eda/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_26c5_1fa9_7eda.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_26c5_1fa9_7eda&showErrors=false&email=", "NOAA", "noaa_ngdc_26c5_1fa9_7eda"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7667_4429_86a3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7667_4429_86a3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7667_4429_86a3/request", "", "public", "Top Dataset, tiled 3as, ncei3 n37x75 w073x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7667_4429_86a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7667_4429_86a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7667_4429_86a3/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7667_4429_86a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7667_4429_86a3&showErrors=false&email=", "NOAA", "noaa_ngdc_7667_4429_86a3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cb63_01ec_0ebd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cb63_01ec_0ebd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_cb63_01ec_0ebd/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x00 w070x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_cb63_01ec_0ebd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_cb63_01ec_0ebd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_cb63_01ec_0ebd/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_cb63_01ec_0ebd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_cb63_01ec_0ebd&showErrors=false&email=", "NOAA", "noaa_ngdc_cb63_01ec_0ebd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_fae5_6560_3ccf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_fae5_6560_3ccf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_fae5_6560_3ccf/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x00 w070x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_fae5_6560_3ccf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_fae5_6560_3ccf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_fae5_6560_3ccf/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_fae5_6560_3ccf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_fae5_6560_3ccf&showErrors=false&email=", "NOAA", "noaa_ngdc_fae5_6560_3ccf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c650_9578_5526", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c650_9578_5526.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c650_9578_5526/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x00 w071x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c650_9578_5526_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c650_9578_5526_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c650_9578_5526/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c650_9578_5526.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c650_9578_5526&showErrors=false&email=", "NOAA", "noaa_ngdc_c650_9578_5526"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7510_ab4b_7a7c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7510_ab4b_7a7c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7510_ab4b_7a7c/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x00 w071x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7510_ab4b_7a7c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7510_ab4b_7a7c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7510_ab4b_7a7c/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7510_ab4b_7a7c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7510_ab4b_7a7c&showErrors=false&email=", "NOAA", "noaa_ngdc_7510_ab4b_7a7c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7259_51ed_9aba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7259_51ed_9aba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7259_51ed_9aba/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x00 w071x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7259_51ed_9aba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7259_51ed_9aba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7259_51ed_9aba/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7259_51ed_9aba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7259_51ed_9aba&showErrors=false&email=", "NOAA", "noaa_ngdc_7259_51ed_9aba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d0a7_737a_b424", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d0a7_737a_b424.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d0a7_737a_b424/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x00 w071x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d0a7_737a_b424_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d0a7_737a_b424_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d0a7_737a_b424/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d0a7_737a_b424.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d0a7_737a_b424&showErrors=false&email=", "NOAA", "noaa_ngdc_d0a7_737a_b424"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7f8c_f946_e070", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7f8c_f946_e070.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7f8c_f946_e070/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x00 w072x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7f8c_f946_e070_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7f8c_f946_e070_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7f8c_f946_e070/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7f8c_f946_e070.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7f8c_f946_e070&showErrors=false&email=", "NOAA", "noaa_ngdc_7f8c_f946_e070"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2349_29b1_23f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2349_29b1_23f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2349_29b1_23f9/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x00 w072x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2349_29b1_23f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2349_29b1_23f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2349_29b1_23f9/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2349_29b1_23f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2349_29b1_23f9&showErrors=false&email=", "NOAA", "noaa_ngdc_2349_29b1_23f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d506_7f6a_b551", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d506_7f6a_b551.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d506_7f6a_b551/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x00 w072x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d506_7f6a_b551_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d506_7f6a_b551_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d506_7f6a_b551/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d506_7f6a_b551.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d506_7f6a_b551&showErrors=false&email=", "NOAA", "noaa_ngdc_d506_7f6a_b551"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_234e_90a9_753c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_234e_90a9_753c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_234e_90a9_753c/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x00 w072x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_234e_90a9_753c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_234e_90a9_753c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_234e_90a9_753c/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_234e_90a9_753c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_234e_90a9_753c&showErrors=false&email=", "NOAA", "noaa_ngdc_234e_90a9_753c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f0af_a10d_4e01", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f0af_a10d_4e01.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f0af_a10d_4e01/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x00 w073x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f0af_a10d_4e01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f0af_a10d_4e01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f0af_a10d_4e01/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f0af_a10d_4e01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f0af_a10d_4e01&showErrors=false&email=", "NOAA", "noaa_ngdc_f0af_a10d_4e01"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b562_6518_8315", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b562_6518_8315.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_b562_6518_8315/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x00 w073x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_b562_6518_8315_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_b562_6518_8315_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_b562_6518_8315/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_b562_6518_8315.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_b562_6518_8315&showErrors=false&email=", "NOAA", "noaa_ngdc_b562_6518_8315"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a403_19f1_85f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a403_19f1_85f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_a403_19f1_85f3/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x00 w073x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_a403_19f1_85f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_a403_19f1_85f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_a403_19f1_85f3/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_a403_19f1_85f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_a403_19f1_85f3&showErrors=false&email=", "NOAA", "noaa_ngdc_a403_19f1_85f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8d61_c1f3_9e8d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8d61_c1f3_9e8d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8d61_c1f3_9e8d/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x00 w073x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8d61_c1f3_9e8d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8d61_c1f3_9e8d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8d61_c1f3_9e8d/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8d61_c1f3_9e8d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8d61_c1f3_9e8d&showErrors=false&email=", "NOAA", "noaa_ngdc_8d61_c1f3_9e8d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cd01_cf85_f07e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cd01_cf85_f07e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_cd01_cf85_f07e/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x25 w070x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_cd01_cf85_f07e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_cd01_cf85_f07e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_cd01_cf85_f07e/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_cd01_cf85_f07e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_cd01_cf85_f07e&showErrors=false&email=", "NOAA", "noaa_ngdc_cd01_cf85_f07e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4048_451c_3f99", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4048_451c_3f99.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4048_451c_3f99/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x25 w070x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4048_451c_3f99_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4048_451c_3f99_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4048_451c_3f99/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4048_451c_3f99.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4048_451c_3f99&showErrors=false&email=", "NOAA", "noaa_ngdc_4048_451c_3f99"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1a5b_df33_831d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1a5b_df33_831d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1a5b_df33_831d/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x25 w071x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1a5b_df33_831d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1a5b_df33_831d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1a5b_df33_831d/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1a5b_df33_831d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1a5b_df33_831d&showErrors=false&email=", "NOAA", "noaa_ngdc_1a5b_df33_831d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f92f_3b48_3905", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_f92f_3b48_3905.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_f92f_3b48_3905/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x25 w071x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_f92f_3b48_3905_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_f92f_3b48_3905_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_f92f_3b48_3905/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_f92f_3b48_3905.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_f92f_3b48_3905&showErrors=false&email=", "NOAA", "noaa_ngdc_f92f_3b48_3905"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_566e_c863_7429", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_566e_c863_7429.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_566e_c863_7429/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x25 w071x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_566e_c863_7429_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_566e_c863_7429_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_566e_c863_7429/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_566e_c863_7429.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_566e_c863_7429&showErrors=false&email=", "NOAA", "noaa_ngdc_566e_c863_7429"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e961_4b0c_36a8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e961_4b0c_36a8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e961_4b0c_36a8/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x25 w071x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e961_4b0c_36a8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e961_4b0c_36a8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e961_4b0c_36a8/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e961_4b0c_36a8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e961_4b0c_36a8&showErrors=false&email=", "NOAA", "noaa_ngdc_e961_4b0c_36a8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9f75_7602_928d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9f75_7602_928d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9f75_7602_928d/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x25 w072x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9f75_7602_928d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9f75_7602_928d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9f75_7602_928d/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9f75_7602_928d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9f75_7602_928d&showErrors=false&email=", "NOAA", "noaa_ngdc_9f75_7602_928d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e64f_9e83_e972", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e64f_9e83_e972.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e64f_9e83_e972/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x25 w072x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e64f_9e83_e972_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e64f_9e83_e972_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e64f_9e83_e972/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e64f_9e83_e972.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e64f_9e83_e972&showErrors=false&email=", "NOAA", "noaa_ngdc_e64f_9e83_e972"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c1e3_8747_781c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c1e3_8747_781c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c1e3_8747_781c/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x25 w072x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c1e3_8747_781c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c1e3_8747_781c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c1e3_8747_781c/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c1e3_8747_781c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c1e3_8747_781c&showErrors=false&email=", "NOAA", "noaa_ngdc_c1e3_8747_781c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a81f_5102_a572", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_a81f_5102_a572.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_a81f_5102_a572/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x25 w072x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_a81f_5102_a572_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_a81f_5102_a572_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_a81f_5102_a572/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_a81f_5102_a572.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_a81f_5102_a572&showErrors=false&email=", "NOAA", "noaa_ngdc_a81f_5102_a572"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_dbb8_c152_03b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_dbb8_c152_03b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_dbb8_c152_03b9/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x25 w073x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_dbb8_c152_03b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_dbb8_c152_03b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_dbb8_c152_03b9/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_dbb8_c152_03b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_dbb8_c152_03b9&showErrors=false&email=", "NOAA", "noaa_ngdc_dbb8_c152_03b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ef8c_3cdf_b840", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ef8c_3cdf_b840.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_ef8c_3cdf_b840/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x25 w073x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_ef8c_3cdf_b840_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_ef8c_3cdf_b840_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ef8c_3cdf_b840/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ef8c_3cdf_b840.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ef8c_3cdf_b840&showErrors=false&email=", "NOAA", "noaa_ngdc_ef8c_3cdf_b840"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_14da_5f55_d5b4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_14da_5f55_d5b4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_14da_5f55_d5b4/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x25 w073x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_14da_5f55_d5b4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_14da_5f55_d5b4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_14da_5f55_d5b4/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_14da_5f55_d5b4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_14da_5f55_d5b4&showErrors=false&email=", "NOAA", "noaa_ngdc_14da_5f55_d5b4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b5c9_f69e_13e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b5c9_f69e_13e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_b5c9_f69e_13e6/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x50 w070x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_b5c9_f69e_13e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_b5c9_f69e_13e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_b5c9_f69e_13e6/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_b5c9_f69e_13e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_b5c9_f69e_13e6&showErrors=false&email=", "NOAA", "noaa_ngdc_b5c9_f69e_13e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_acdd_56ac_6b46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_acdd_56ac_6b46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_acdd_56ac_6b46/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x50 w071x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_acdd_56ac_6b46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_acdd_56ac_6b46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_acdd_56ac_6b46/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_acdd_56ac_6b46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_acdd_56ac_6b46&showErrors=false&email=", "NOAA", "noaa_ngdc_acdd_56ac_6b46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ef9c_edd1_86b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_ef9c_edd1_86b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_ef9c_edd1_86b0/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x50 w071x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_ef9c_edd1_86b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_ef9c_edd1_86b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_ef9c_edd1_86b0/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_ef9c_edd1_86b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_ef9c_edd1_86b0&showErrors=false&email=", "NOAA", "noaa_ngdc_ef9c_edd1_86b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_969d_05a3_ebfd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_969d_05a3_ebfd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_969d_05a3_ebfd/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x50 w071x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_969d_05a3_ebfd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_969d_05a3_ebfd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_969d_05a3_ebfd/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_969d_05a3_ebfd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_969d_05a3_ebfd&showErrors=false&email=", "NOAA", "noaa_ngdc_969d_05a3_ebfd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0b1f_d143_7597", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0b1f_d143_7597.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0b1f_d143_7597/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x50 w071x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0b1f_d143_7597_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0b1f_d143_7597_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0b1f_d143_7597/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0b1f_d143_7597.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0b1f_d143_7597&showErrors=false&email=", "NOAA", "noaa_ngdc_0b1f_d143_7597"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2d36_7ce9_5584", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2d36_7ce9_5584.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2d36_7ce9_5584/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x50 w072x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2d36_7ce9_5584_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2d36_7ce9_5584_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2d36_7ce9_5584/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2d36_7ce9_5584.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2d36_7ce9_5584&showErrors=false&email=", "NOAA", "noaa_ngdc_2d36_7ce9_5584"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_89d8_f585_e8d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_89d8_f585_e8d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_89d8_f585_e8d7/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x50 w072x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_89d8_f585_e8d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_89d8_f585_e8d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_89d8_f585_e8d7/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_89d8_f585_e8d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_89d8_f585_e8d7&showErrors=false&email=", "NOAA", "noaa_ngdc_89d8_f585_e8d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9fb6_af35_0172", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9fb6_af35_0172.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9fb6_af35_0172/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x50 w072x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9fb6_af35_0172_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9fb6_af35_0172_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9fb6_af35_0172/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9fb6_af35_0172.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9fb6_af35_0172&showErrors=false&email=", "NOAA", "noaa_ngdc_9fb6_af35_0172"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_585b_a1af_4455", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_585b_a1af_4455.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_585b_a1af_4455/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x50 w072x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_585b_a1af_4455_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_585b_a1af_4455_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_585b_a1af_4455/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_585b_a1af_4455.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_585b_a1af_4455&showErrors=false&email=", "NOAA", "noaa_ngdc_585b_a1af_4455"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_05e4_71f1_7664", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_05e4_71f1_7664.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_05e4_71f1_7664/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x50 w073x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_05e4_71f1_7664_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_05e4_71f1_7664_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_05e4_71f1_7664/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_05e4_71f1_7664.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_05e4_71f1_7664&showErrors=false&email=", "NOAA", "noaa_ngdc_05e4_71f1_7664"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cbb5_e459_4fdf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cbb5_e459_4fdf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_cbb5_e459_4fdf/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x50 w073x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_cbb5_e459_4fdf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_cbb5_e459_4fdf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_cbb5_e459_4fdf/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_cbb5_e459_4fdf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_cbb5_e459_4fdf&showErrors=false&email=", "NOAA", "noaa_ngdc_cbb5_e459_4fdf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_01fe_dfbc_dd2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_01fe_dfbc_dd2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_01fe_dfbc_dd2a/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x75 w070x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_01fe_dfbc_dd2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_01fe_dfbc_dd2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_01fe_dfbc_dd2a/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_01fe_dfbc_dd2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_01fe_dfbc_dd2a&showErrors=false&email=", "NOAA", "noaa_ngdc_01fe_dfbc_dd2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7eed_35ca_1739", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7eed_35ca_1739.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7eed_35ca_1739/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x75 w071x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7eed_35ca_1739_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7eed_35ca_1739_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7eed_35ca_1739/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7eed_35ca_1739.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7eed_35ca_1739&showErrors=false&email=", "NOAA", "noaa_ngdc_7eed_35ca_1739"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e675_d184_5aab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e675_d184_5aab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e675_d184_5aab/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x75 w071x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e675_d184_5aab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e675_d184_5aab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e675_d184_5aab/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e675_d184_5aab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e675_d184_5aab&showErrors=false&email=", "NOAA", "noaa_ngdc_e675_d184_5aab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_89c6_74a4_ecc1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_89c6_74a4_ecc1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_89c6_74a4_ecc1/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x75 w071x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_89c6_74a4_ecc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_89c6_74a4_ecc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_89c6_74a4_ecc1/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_89c6_74a4_ecc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_89c6_74a4_ecc1&showErrors=false&email=", "NOAA", "noaa_ngdc_89c6_74a4_ecc1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cd6d_1e48_132b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cd6d_1e48_132b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_cd6d_1e48_132b/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x75 w071x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_cd6d_1e48_132b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_cd6d_1e48_132b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_cd6d_1e48_132b/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_cd6d_1e48_132b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_cd6d_1e48_132b&showErrors=false&email=", "NOAA", "noaa_ngdc_cd6d_1e48_132b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cd9b_4f02_16d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_cd9b_4f02_16d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_cd9b_4f02_16d0/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x75 w072x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_cd9b_4f02_16d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_cd9b_4f02_16d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_cd9b_4f02_16d0/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_cd9b_4f02_16d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_cd9b_4f02_16d0&showErrors=false&email=", "NOAA", "noaa_ngdc_cd9b_4f02_16d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4aca_6403_5035", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4aca_6403_5035.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4aca_6403_5035/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x75 w072x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4aca_6403_5035_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4aca_6403_5035_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4aca_6403_5035/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4aca_6403_5035.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4aca_6403_5035&showErrors=false&email=", "NOAA", "noaa_ngdc_4aca_6403_5035"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_44c4_2b1e_deea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_44c4_2b1e_deea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_44c4_2b1e_deea/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x75 w072x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_44c4_2b1e_deea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_44c4_2b1e_deea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_44c4_2b1e_deea/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_44c4_2b1e_deea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_44c4_2b1e_deea&showErrors=false&email=", "NOAA", "noaa_ngdc_44c4_2b1e_deea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c31e_20f8_7e85", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c31e_20f8_7e85.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c31e_20f8_7e85/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x75 w072x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c31e_20f8_7e85_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c31e_20f8_7e85_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c31e_20f8_7e85/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c31e_20f8_7e85.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c31e_20f8_7e85&showErrors=false&email=", "NOAA", "noaa_ngdc_c31e_20f8_7e85"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_accd_68cb_af9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_accd_68cb_af9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_accd_68cb_af9d/request", "", "public", "Top Dataset, tiled 3as, ncei3 n38x75 w073x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_accd_68cb_af9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_accd_68cb_af9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_accd_68cb_af9d/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_accd_68cb_af9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_accd_68cb_af9d&showErrors=false&email=", "NOAA", "noaa_ngdc_accd_68cb_af9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0ba6_029e_e3ed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0ba6_029e_e3ed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0ba6_029e_e3ed/request", "", "public", "Top Dataset, tiled 3as, ncei3 n39x00 w070x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0ba6_029e_e3ed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0ba6_029e_e3ed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0ba6_029e_e3ed/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0ba6_029e_e3ed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0ba6_029e_e3ed&showErrors=false&email=", "NOAA", "noaa_ngdc_0ba6_029e_e3ed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b20c_a626_781f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b20c_a626_781f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_b20c_a626_781f/request", "", "public", "Top Dataset, tiled 3as, ncei3 n39x00 w071x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_b20c_a626_781f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_b20c_a626_781f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_b20c_a626_781f/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_b20c_a626_781f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_b20c_a626_781f&showErrors=false&email=", "NOAA", "noaa_ngdc_b20c_a626_781f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6ae4_fa6e_868e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_6ae4_fa6e_868e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_6ae4_fa6e_868e/request", "", "public", "Top Dataset, tiled 3as, ncei3 n39x00 w071x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_6ae4_fa6e_868e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_6ae4_fa6e_868e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_6ae4_fa6e_868e/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_6ae4_fa6e_868e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_6ae4_fa6e_868e&showErrors=false&email=", "NOAA", "noaa_ngdc_6ae4_fa6e_868e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_08fb_c62e_c19a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_08fb_c62e_c19a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_08fb_c62e_c19a/request", "", "public", "Top Dataset, tiled 3as, ncei3 n39x00 w071x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_08fb_c62e_c19a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_08fb_c62e_c19a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_08fb_c62e_c19a/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_08fb_c62e_c19a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_08fb_c62e_c19a&showErrors=false&email=", "NOAA", "noaa_ngdc_08fb_c62e_c19a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3d23_ccd2_455d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3d23_ccd2_455d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3d23_ccd2_455d/request", "", "public", "Top Dataset, tiled 3as, ncei3 n39x00 w071x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3d23_ccd2_455d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3d23_ccd2_455d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3d23_ccd2_455d/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3d23_ccd2_455d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3d23_ccd2_455d&showErrors=false&email=", "NOAA", "noaa_ngdc_3d23_ccd2_455d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9428_fa21_d18e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9428_fa21_d18e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9428_fa21_d18e/request", "", "public", "Top Dataset, tiled 3as, ncei3 n39x00 w072x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9428_fa21_d18e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9428_fa21_d18e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9428_fa21_d18e/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9428_fa21_d18e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9428_fa21_d18e&showErrors=false&email=", "NOAA", "noaa_ngdc_9428_fa21_d18e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_74fd_9a91_e03b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_74fd_9a91_e03b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_74fd_9a91_e03b/request", "", "public", "Top Dataset, tiled 3as, ncei3 n39x00 w072x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_74fd_9a91_e03b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_74fd_9a91_e03b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_74fd_9a91_e03b/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_74fd_9a91_e03b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_74fd_9a91_e03b&showErrors=false&email=", "NOAA", "noaa_ngdc_74fd_9a91_e03b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_fc2b_5134_2882", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_fc2b_5134_2882.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_fc2b_5134_2882/request", "", "public", "Top Dataset, tiled 3as, ncei3 n39x00 w072x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_fc2b_5134_2882_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_fc2b_5134_2882_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_fc2b_5134_2882/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_fc2b_5134_2882.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_fc2b_5134_2882&showErrors=false&email=", "NOAA", "noaa_ngdc_fc2b_5134_2882"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_014f_671c_041b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_014f_671c_041b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_014f_671c_041b/request", "", "public", "Top Dataset, tiled 3as, ncei3 n39x00 w072x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_014f_671c_041b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_014f_671c_041b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_014f_671c_041b/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_014f_671c_041b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_014f_671c_041b&showErrors=false&email=", "NOAA", "noaa_ngdc_014f_671c_041b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5dc2_051d_1e1c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5dc2_051d_1e1c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5dc2_051d_1e1c/request", "", "public", "Top Dataset, tiled 3as, ncei3 n39x25 w071x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5dc2_051d_1e1c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5dc2_051d_1e1c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5dc2_051d_1e1c/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5dc2_051d_1e1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5dc2_051d_1e1c&showErrors=false&email=", "NOAA", "noaa_ngdc_5dc2_051d_1e1c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_78b3_5edc_0d97", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_78b3_5edc_0d97.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_78b3_5edc_0d97/request", "", "public", "Top Dataset, tiled 3as, ncei3 n39x25 w071x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_78b3_5edc_0d97_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_78b3_5edc_0d97_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_78b3_5edc_0d97/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_78b3_5edc_0d97.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_78b3_5edc_0d97&showErrors=false&email=", "NOAA", "noaa_ngdc_78b3_5edc_0d97"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_69d9_0f3f_219d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_69d9_0f3f_219d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_69d9_0f3f_219d/request", "", "public", "Top Dataset, tiled 3as, ncei3 n39x25 w071x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_69d9_0f3f_219d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_69d9_0f3f_219d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_69d9_0f3f_219d/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_69d9_0f3f_219d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_69d9_0f3f_219d&showErrors=false&email=", "NOAA", "noaa_ngdc_69d9_0f3f_219d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2f8b_2c56_f6c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_2f8b_2c56_f6c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_2f8b_2c56_f6c6/request", "", "public", "Top Dataset, tiled 3as, ncei3 n39x25 w071x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_2f8b_2c56_f6c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_2f8b_2c56_f6c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_2f8b_2c56_f6c6/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_2f8b_2c56_f6c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_2f8b_2c56_f6c6&showErrors=false&email=", "NOAA", "noaa_ngdc_2f8b_2c56_f6c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e345_4965_4cd6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e345_4965_4cd6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e345_4965_4cd6/request", "", "public", "Top Dataset, tiled 3as, ncei3 n39x25 w072x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e345_4965_4cd6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e345_4965_4cd6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e345_4965_4cd6/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e345_4965_4cd6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e345_4965_4cd6&showErrors=false&email=", "NOAA", "noaa_ngdc_e345_4965_4cd6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3c9f_5116_3110", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_3c9f_5116_3110.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_3c9f_5116_3110/request", "", "public", "Top Dataset, tiled 3as, ncei3 n39x25 w072x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_3c9f_5116_3110_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_3c9f_5116_3110_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_3c9f_5116_3110/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_3c9f_5116_3110.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_3c9f_5116_3110&showErrors=false&email=", "NOAA", "noaa_ngdc_3c9f_5116_3110"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_dc15_0597_2002", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_dc15_0597_2002.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_dc15_0597_2002/request", "", "public", "Top Dataset, tiled 3as, ncei3 n39x50 w071x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_dc15_0597_2002_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_dc15_0597_2002_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_dc15_0597_2002/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_dc15_0597_2002.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_dc15_0597_2002&showErrors=false&email=", "NOAA", "noaa_ngdc_dc15_0597_2002"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d449_72e4_55de", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d449_72e4_55de.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d449_72e4_55de/request", "", "public", "Top Dataset, tiled 3as, ncei3 n39x50 w071x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d449_72e4_55de_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d449_72e4_55de_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d449_72e4_55de/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d449_72e4_55de.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d449_72e4_55de&showErrors=false&email=", "NOAA", "noaa_ngdc_d449_72e4_55de"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_fc6a_4e1e_e6bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_fc6a_4e1e_e6bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_fc6a_4e1e_e6bf/request", "", "public", "Top Dataset, tiled 3as, ncei3 n39x50 w071x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_fc6a_4e1e_e6bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_fc6a_4e1e_e6bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_fc6a_4e1e_e6bf/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_fc6a_4e1e_e6bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_fc6a_4e1e_e6bf&showErrors=false&email=", "NOAA", "noaa_ngdc_fc6a_4e1e_e6bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7f79_10c9_37f7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7f79_10c9_37f7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7f79_10c9_37f7/request", "", "public", "Top Dataset, tiled 3as, ncei3 n39x50 w071x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7f79_10c9_37f7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7f79_10c9_37f7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7f79_10c9_37f7/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7f79_10c9_37f7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7f79_10c9_37f7&showErrors=false&email=", "NOAA", "noaa_ngdc_7f79_10c9_37f7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5bed_a21c_c19e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5bed_a21c_c19e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_5bed_a21c_c19e/request", "", "public", "Top Dataset, tiled 3as, ncei3 n39x50 w072x00 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_5bed_a21c_c19e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_5bed_a21c_c19e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5bed_a21c_c19e/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5bed_a21c_c19e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5bed_a21c_c19e&showErrors=false&email=", "NOAA", "noaa_ngdc_5bed_a21c_c19e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d6c1_ead5_208a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d6c1_ead5_208a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d6c1_ead5_208a/request", "", "public", "Top Dataset, tiled 3as, ncei3 n39x75 w071x25 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d6c1_ead5_208a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d6c1_ead5_208a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d6c1_ead5_208a/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d6c1_ead5_208a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d6c1_ead5_208a&showErrors=false&email=", "NOAA", "noaa_ngdc_d6c1_ead5_208a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0ab2_c461_61f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0ab2_c461_61f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_0ab2_c461_61f6/request", "", "public", "Top Dataset, tiled 3as, ncei3 n39x75 w071x50 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_0ab2_c461_61f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_0ab2_c461_61f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0ab2_c461_61f6/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0ab2_c461_61f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0ab2_c461_61f6&showErrors=false&email=", "NOAA", "noaa_ngdc_0ab2_c461_61f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_35f0_478c_c150", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_35f0_478c_c150.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_35f0_478c_c150/request", "", "public", "Top Dataset, tiled 3as, ncei3 n39x75 w071x75 2015v1 (GDAL Band Number 1), 8.3333335E-4\u00b0", "GDAL Band Number 1. National Centers for Environmental Information (NCEI) builds and distributes digital elevation models (DEMs) for various coastal locations that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_35f0_478c_c150_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_35f0_478c_c150_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_35f0_478c_c150/index.json", "https://www.ngdc.noaa.gov/mgg/bathymetry/northeast_ocm.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_35f0_478c_c150.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_35f0_478c_c150&showErrors=false&email=", "NOAA", "noaa_ngdc_35f0_478c_c150"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e26b_6284_fc33", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e26b_6284_fc33.graph", "", "", "public", "Top Dataset, TRENDY-CLM45, CLM OBS H2OSOI 195001-201512 12moRunMeans [ncl3]", "Top Dataset, TRENDY-CLM45, CLM OBS H2OSOI 195001-201512 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ncl3]):\ndate\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e26b_6284_fc33/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/TRENDY-CLM45/CLM_OBS_H2OSOI_195001-201512_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e26b_6284_fc33.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e26b_6284_fc33&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e26b_6284_fc33"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad63_9ff8_74b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad63_9ff8_74b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ad63_9ff8_74b3/request", "", "public", "Top Dataset, TRENDY-CLM45, CLM OBS H2OSOI 195001-201512 12moRunMeans [time][lat][lon]", "Top Dataset, TRENDY-CLM45, CLM OBS H2OSOI 195001-201512 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nH2OSOI (top 1m soil moisture, fraction of WATSAT)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ad63_9ff8_74b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ad63_9ff8_74b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ad63_9ff8_74b3/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/TRENDY-CLM45/CLM_OBS_H2OSOI_195001-201512_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ad63_9ff8_74b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ad63_9ff8_74b3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ad63_9ff8_74b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed72_48f6_5f8f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed72_48f6_5f8f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ed72_48f6_5f8f/request", "", "public", "Top Dataset, TRENDY-CLM45, CLM OBS H2OSOI 195001-201512 Anoms", "Top Dataset, TRENDY-CLM45, CLM OBS H2OSOI 195001-201512 Anoms\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nH2OSOI (top 1m soil moisture, fraction of WATSAT)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ed72_48f6_5f8f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ed72_48f6_5f8f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ed72_48f6_5f8f/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/TRENDY-CLM45/CLM_OBS_H2OSOI_195001-201512_Anoms.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ed72_48f6_5f8f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ed72_48f6_5f8f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ed72_48f6_5f8f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f36_2929_40d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f36_2929_40d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3f36_2929_40d0/request", "", "public", "Top Dataset, tropopause, air.tropp.4Xday.1981-2010.ltm, 2.5\u00b0, 0001", "4Xdaily ltm air.tropp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the tropopause values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (4xDaily Long Term Mean Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3f36_2929_40d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3f36_2929_40d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3f36_2929_40d0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3f36_2929_40d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3f36_2929_40d0&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_3f36_2929_40d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f50_cc08_5713", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f50_cc08_5713.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f50_cc08_5713/request", "", "public", "Top Dataset, tropopause, air.tropp.day.1981-2010.ltm, 2.5\u00b0, 0001", "daily ltm air.tropp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the tropopause values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (mean Long Term Mean Daily Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f50_cc08_5713_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f50_cc08_5713_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f50_cc08_5713/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f50_cc08_5713.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f50_cc08_5713&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_7f50_cc08_5713"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d5b_0bb0_f6e9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d5b_0bb0_f6e9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5d5b_0bb0_f6e9/request", "", "public", "Top Dataset, tropopause, air.tropp.mon.1981-2010.ltm, 2.5\u00b0, 0001", "monthly ltm air.tropp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Mean of Air Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5d5b_0bb0_f6e9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5d5b_0bb0_f6e9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5d5b_0bb0_f6e9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5d5b_0bb0_f6e9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5d5b_0bb0_f6e9&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_5d5b_0bb0_f6e9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7ff_9fef_132a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7ff_9fef_132a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d7ff_9fef_132a/request", "", "public", "Top Dataset, tropopause, pres.tropp.4Xday.1981-2010.ltm, 2.5\u00b0, 0001", "4Xdaily ltm pres.tropp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the tropopause values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (4xDaily Long Term Mean Pressure at Tropopause, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d7ff_9fef_132a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d7ff_9fef_132a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d7ff_9fef_132a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d7ff_9fef_132a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d7ff_9fef_132a&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_d7ff_9fef_132a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35d4_d3a1_b0f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35d4_d3a1_b0f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_35d4_d3a1_b0f2/request", "", "public", "Top Dataset, tropopause, pres.tropp.day.1981-2010.ltm, 2.5\u00b0, 0001", "daily ltm pres.tropp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the tropopause values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (mean Long Term Mean Daily Pressure at Tropopause, Pascals)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_35d4_d3a1_b0f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_35d4_d3a1_b0f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_35d4_d3a1_b0f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_35d4_d3a1_b0f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_35d4_d3a1_b0f2&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_35d4_d3a1_b0f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebca_fb39_43e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebca_fb39_43e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ebca_fb39_43e1/request", "", "public", "Top Dataset, tropopause, pres.tropp.mon.1981-2010.ltm, 2.5\u00b0, 0001", "monthly ltm pres.tropp from the National Centers for Environmental Prediction (NCEP) Reanalysis. Data is from National Meteorological Center (NMC) initialized reanalysis\n(4x/day). These are the 0.9950 sigma level values.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Long Term Mean of Pressure, millibars)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ebca_fb39_43e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ebca_fb39_43e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ebca_fb39_43e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ebca_fb39_43e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ebca_fb39_43e1&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_ebca_fb39_43e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_882f_17ad_fc9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_882f_17ad_fc9f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_882f_17ad_fc9f/request", "", "public", "Top Dataset, udel.airt.precip, air.mon.1981-2010.ltm.v301, 0.5\u00b0, 0001", "Univ. Delaware Monthly Precipitation, 1900-2010 V3.01 (Top Dataset, udel.airt.precip, air.mon.1981-2010.ltm.v301)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly mean of surface temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_882f_17ad_fc9f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_882f_17ad_fc9f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_882f_17ad_fc9f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.UDel_AirT_Precip.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_882f_17ad_fc9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_882f_17ad_fc9f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_882f_17ad_fc9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a48_869e_59bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a48_869e_59bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a48_869e_59bb/request", "", "public", "Top Dataset, udel.airt.precip, air.mon.1981-2010.ltm.v401, 0.5\u00b0, 0001", "Terrestrial Air Temperature and Precipitation: V4.01 (Top Dataset, udel.airt.precip, air.mon.1981-2010.ltm.v401)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly mean of surface temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a48_869e_59bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a48_869e_59bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a48_869e_59bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.UDel_AirT_Precip.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a48_869e_59bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a48_869e_59bb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0a48_869e_59bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8473_f85f_44f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8473_f85f_44f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8473_f85f_44f1/request", "", "public", "Top Dataset, udel.airt.precip, precip.mon.1981-2010.ltm.v301, 0.5\u00b0, 0001", "Univ. Delaware Monthly Precipitation, 1900-2010 V3.01 (Top Dataset, udel.airt.precip, precip.mon.1981-2010.ltm.v301)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Long Term Mean Monthly total of precipitation, cm)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8473_f85f_44f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8473_f85f_44f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8473_f85f_44f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.UDel_AirT_Precip.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8473_f85f_44f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8473_f85f_44f1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8473_f85f_44f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_249d_b1f3_9fab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_249d_b1f3_9fab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_249d_b1f3_9fab/request", "", "public", "Top Dataset, udel.airt.precip, precip.mon.1981-2010.ltm.v401, 0.5\u00b0, 0001", "Terrestrial Air Temperature and Precipitation: V4.01 (Top Dataset, udel.airt.precip, precip.mon.1981-2010.ltm.v401)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Long Term Mean Monthly total of precipitation, cm)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_249d_b1f3_9fab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_249d_b1f3_9fab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_249d_b1f3_9fab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.UDel_AirT_Precip.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_249d_b1f3_9fab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_249d_b1f3_9fab&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_249d_b1f3_9fab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0479_278b_85fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0479_278b_85fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0479_278b_85fc/request", "", "public", "Top Dataset, uninterp OLR, olr.daily.ltm.1979-1995 (OLR Long Term Daily Mean 1979-1995), 2.5\u00b0, 0001", "Outgoing Longwave Radiation (OLR) Long Term Daily Mean 1979-1995 (Top Dataset, uninterp OLR, olr.daily.ltm.1979-1995)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nolr (Daily Long Term Mean of Outgoing Longwave Radiation, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0479_278b_85fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0479_278b_85fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0479_278b_85fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.uninterp_OLR.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0479_278b_85fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0479_278b_85fc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0479_278b_85fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a71c_92d5_c449", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a71c_92d5_c449.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a71c_92d5_c449/request", "", "public", "Top Dataset, uninterp OLR, olr.day.mean (Once daily OLR (J74-A94)), 2.5\u00b0, 2002-present", "Once daily Outgoing Longwave Radiation (OLR) (J74-A94). Data is from National Centers for Environmental Prediction (NCEP)\n It consists of OLR uninterpolated from 2x/day\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nolr (Daily OLR, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a71c_92d5_c449_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a71c_92d5_c449_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a71c_92d5_c449/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.uninterp_OLR.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a71c_92d5_c449.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a71c_92d5_c449&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a71c_92d5_c449"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_4af5_9feb_daae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_4af5_9feb_daae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_4af5_9feb_daae/request", "", "public", "Top Dataset, wind 1deg 1mo, sfcWind QuikSCAT L2B v20110531 199908-200910, 1.0\u00b0", "Obs-QuikSCAT model output prepared for Observations for Model Intercomparisons (obs4MIPs) NASA-Jet Propulsion Laboratory (JPL) observation (Top Dataset, wind 1deg 1mo, sfcWind QuikSCAT L2B v20110531 199908-200910)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsfcWind (Near-Surface Wind Speed, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_4af5_9feb_daae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_4af5_9feb_daae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_4af5_9feb_daae/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_4af5_9feb_daae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_4af5_9feb_daae&showErrors=false&email=", "National Aeronautics and Space Administration, Jet Propulsion Laboratory", "nasa_jpl_4af5_9feb_daae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_40af_db2d_a05f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_40af_db2d_a05f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_40af_db2d_a05f/request", "", "public", "Top Dataset, wind 1deg 1mo, sfcWindNobs QuikSCAT L2B v20110531 199908-200910, 1.0\u00b0", "Obs-QuikSCAT model output prepared for Observations for Model Intercomparisons (obs4MIPs) NASA-Jet Propulsion Laboratory (JPL) observation (Top Dataset, wind 1deg 1mo, sfcWindNobs QuikSCAT L2B v20110531 199908-200910)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsfcWindNobs (Near-Surface Wind Speed Number of Observations, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_40af_db2d_a05f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_40af_db2d_a05f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_40af_db2d_a05f/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_40af_db2d_a05f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_40af_db2d_a05f&showErrors=false&email=", "National Aeronautics and Space Administration, Jet Propulsion Laboratory", "nasa_jpl_40af_db2d_a05f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_2663_3d35_08fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_2663_3d35_08fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_2663_3d35_08fc/request", "", "public", "Top Dataset, wind 1deg 1mo, sfcWindStderr QuikSCAT L2B v20110531 199908-200910, 1.0\u00b0", "Obs-QuikSCAT model output prepared for Observations for Model Intercomparisons (obs4MIPs) NASA-Jet Propulsion Laboratory (JPL) observation (Top Dataset, wind 1deg 1mo, sfcWindStderr QuikSCAT L2B v20110531 199908-200910)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsfcWindStderr (Near-Surface Wind Speed Standard Error, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_2663_3d35_08fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_2663_3d35_08fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_2663_3d35_08fc/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_2663_3d35_08fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_2663_3d35_08fc&showErrors=false&email=", "National Aeronautics and Space Administration, Jet Propulsion Laboratory", "nasa_jpl_2663_3d35_08fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_23f6_0026_30f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_23f6_0026_30f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_23f6_0026_30f9/request", "", "public", "Top Dataset, wind 1deg 1mo, uasNobs QuikSCAT L2B v20110531 199908-200910, 1.0\u00b0", "Obs-QuikSCAT model output prepared for Observations for Model Intercomparisons (obs4MIPs) NASA-Jet Propulsion Laboratory (JPL) observation (Top Dataset, wind 1deg 1mo, uasNobs QuikSCAT L2B v20110531 199908-200910)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuasNobs (Eastward Near-Surface Wind Number of Observations, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_23f6_0026_30f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_23f6_0026_30f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_23f6_0026_30f9/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_23f6_0026_30f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_23f6_0026_30f9&showErrors=false&email=", "National Aeronautics and Space Administration, Jet Propulsion Laboratory", "nasa_jpl_23f6_0026_30f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_49ad_b747_bc1b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_49ad_b747_bc1b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_49ad_b747_bc1b/request", "", "public", "Top Dataset, wind 1deg 1mo, uasStderr QuikSCAT L2B v20110531 199908-200910, 1.0\u00b0", "Obs-QuikSCAT model output prepared for Observations for Model Intercomparisons (obs4MIPs) NASA-Jet Propulsion Laboratory (JPL) observation (Top Dataset, wind 1deg 1mo, uasStderr QuikSCAT L2B v20110531 199908-200910)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuasStderr (Eastward Near-Surface Wind Standard Error, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_49ad_b747_bc1b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_49ad_b747_bc1b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_49ad_b747_bc1b/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_49ad_b747_bc1b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_49ad_b747_bc1b&showErrors=false&email=", "National Aeronautics and Space Administration, Jet Propulsion Laboratory", "nasa_jpl_49ad_b747_bc1b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3533_93c9_b10d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3533_93c9_b10d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_3533_93c9_b10d/request", "", "public", "Top Dataset, wind 1deg 1mo, vasNobs QuikSCAT L2B v20110531 199908-200910, 1.0\u00b0", "Obs-QuikSCAT model output prepared for Observations for Model Intercomparisons (obs4MIPs) NASA-Jet Propulsion Laboratory (JPL) observation (Top Dataset, wind 1deg 1mo, vasNobs QuikSCAT L2B v20110531 199908-200910)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvasNobs (Northward Near-Surface Wind Number of Observations, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_3533_93c9_b10d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_3533_93c9_b10d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_3533_93c9_b10d/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_3533_93c9_b10d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_3533_93c9_b10d&showErrors=false&email=", "National Aeronautics and Space Administration, Jet Propulsion Laboratory", "nasa_jpl_3533_93c9_b10d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_a409_02c3_eecf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_a409_02c3_eecf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_a409_02c3_eecf/request", "", "public", "Top Dataset, wind 1deg 1mo, vasStderr QuikSCAT L2B v20110531 199908-200910, 1.0\u00b0", "Obs-QuikSCAT model output prepared for Observations for Model Intercomparisons (obs4MIPs) NASA-Jet Propulsion Laboratory (JPL) observation (Top Dataset, wind 1deg 1mo, vasStderr QuikSCAT L2B v20110531 199908-200910)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvasStderr (Northward Near-Surface Wind Standard Error, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_a409_02c3_eecf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_a409_02c3_eecf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_a409_02c3_eecf/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_a409_02c3_eecf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_a409_02c3_eecf&showErrors=false&email=", "National Aeronautics and Space Administration, Jet Propulsion Laboratory", "nasa_jpl_a409_02c3_eecf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_a29f_599c_0df2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_a29f_599c_0df2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_a29f_599c_0df2/request", "", "public", "Top Dataset, yearly, NOAAGlobalTemp annual, 5.0\u00b0, 1880-2016", "The NOAA Global Surface Temperature Dataset (NOAAGlobalTemp) (Top Dataset, yearly, NOAAGlobalTemp annual)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nanom (Global Temperature Anomalies, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_a29f_599c_0df2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_a29f_599c_0df2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_a29f_599c_0df2/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/gcag/yearly/NOAAGlobalTemp_annual.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_a29f_599c_0df2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_a29f_599c_0df2&showErrors=false&email=", "NOAAs National Centers for Environmental Information", "noaa_ncei_a29f_599c_0df2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/etopo180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/etopo180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/etopo180/request", "", "public", "Topography, ETOPO1, 0.0166667 degrees, Global (longitude -180 to 180), (Ice Sheet Surface)", "ETOPO1 is a 1 arc-minute global relief model of Earth's surface that integrates land topography and ocean bathymetry. It was built from numerous global and regional data sets. This is the 'Ice Surface' version, with the top of the Antarctic and Greenland ice sheets. The horizontal datum is WGS-84, the vertical datum is Mean Sea Level. Keywords: Bathymetry, Digital Elevation. This is the grid/node-registered version: the dataset's latitude and longitude values mark the centers of the cells.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\naltitude (m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/etopo180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/etopo180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/etopo180/index.json", "https://www.ngdc.noaa.gov/mgg/global/global.html", "http://upwell.pfeg.noaa.gov/erddap/rss/etopo180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=etopo180&showErrors=false&email=", "NOAA NGDC", "etopo180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/etopo360", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/etopo360.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/etopo360/request", "", "public", "Topography, ETOPO1, 0.0166667 degrees, Global (longitude 0 to 360), (Ice Sheet Surface)", "ETOPO1 is a 1 arc-minute global relief model of Earth's surface that integrates land topography and ocean bathymetry. It was built from numerous global and regional data sets. This is the 'Ice Surface' version, with the top of the Antarctic and Greenland ice sheets. The horizontal datum is WGS-84, the vertical datum is Mean Sea Level. Keywords: Bathymetry, Digital Elevation. This is the grid/node-registered version: the dataset's latitude and longitude values mark the centers of the cells.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\naltitude (m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/etopo360_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/etopo360_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/etopo360/index.json", "https://www.ngdc.noaa.gov/mgg/global/global.html", "http://upwell.pfeg.noaa.gov/erddap/rss/etopo360.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=etopo360&showErrors=false&email=", "NOAA NGDC", "etopo360"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeCrm1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeCrm1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgsCeCrm1/request", "", "public", "Topography, NOAA Coastal Relief Model, 3 arc second, Vol. 1 (Atlantic Northeast)", "This Coastal Relief Gridded database provides the first comprehensive view of the US Coastal Zone; one that extends from the coastal state boundaries to as far offshore as the NOS hydrographic data will support a continuous view of the seafloor. In many cases, this seaward limit reaches out to, and in places even beyond the continental slope. The gridded database contains data for the entire coastal zone of the conterminous US, including Hawaii and Puerto Rico.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ntopo (Topography, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgsCeCrm1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgsCeCrm1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgsCeCrm1/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgsCeCrm1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgsCeCrm1&showErrors=false&email=", "NOAA NGDC", "usgsCeCrm1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeCrm10", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeCrm10.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgsCeCrm10/request", "", "public", "Topography, NOAA Coastal Relief Model, 3 arc second, Vol. 10 (Hawaii)", "This Coastal Relief Gridded database provides the first comprehensive view of the US Coastal Zone; one that extends from the coastal state boundaries to as far offshore as the NOS hydrographic data will support a continuous view of the seafloor. In many cases, this seaward limit reaches out to, and in places even beyond the continental slope. The gridded database contains data for the entire coastal zone of the conterminous US, including Hawaii and Puerto Rico.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ntopo (Topography, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgsCeCrm10_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgsCeCrm10_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgsCeCrm10/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgsCeCrm10.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgsCeCrm10&showErrors=false&email=", "NOAA NGDC", "usgsCeCrm10"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeCrm2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeCrm2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgsCeCrm2/request", "", "public", "Topography, NOAA Coastal Relief Model, 3 arc second, Vol. 2 (Atlantic Southeast)", "This Coastal Relief Gridded database provides the first comprehensive view of the US Coastal Zone; one that extends from the coastal state boundaries to as far offshore as the NOS hydrographic data will support a continuous view of the seafloor. In many cases, this seaward limit reaches out to, and in places even beyond the continental slope. The gridded database contains data for the entire coastal zone of the conterminous US, including Hawaii and Puerto Rico.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ntopo (Topography, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgsCeCrm2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgsCeCrm2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgsCeCrm2/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgsCeCrm2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgsCeCrm2&showErrors=false&email=", "NOAA NGDC", "usgsCeCrm2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeCrm3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeCrm3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgsCeCrm3/request", "", "public", "Topography, NOAA Coastal Relief Model, 3 arc second, Vol. 3 (Florida)", "This Coastal Relief Gridded database provides the first comprehensive view of the US Coastal Zone; one that extends from the coastal state boundaries to as far offshore as the NOS hydrographic data will support a continuous view of the seafloor. In many cases, this seaward limit reaches out to, and in places even beyond the continental slope. The gridded database contains data for the entire coastal zone of the conterminous US, including Hawaii and Puerto Rico.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ntopo (Topography, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgsCeCrm3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgsCeCrm3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgsCeCrm3/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgsCeCrm3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgsCeCrm3&showErrors=false&email=", "NOAA NGDC", "usgsCeCrm3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeCrm4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeCrm4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgsCeCrm4/request", "", "public", "Topography, NOAA Coastal Relief Model, 3 arc second, Vol. 4 (Central Gulf of Mexico)", "This Coastal Relief Gridded database provides the first comprehensive view of the US Coastal Zone; one that extends from the coastal state boundaries to as far offshore as the NOS hydrographic data will support a continuous view of the seafloor. In many cases, this seaward limit reaches out to, and in places even beyond the continental slope. The gridded database contains data for the entire coastal zone of the conterminous US, including Hawaii and Puerto Rico.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ntopo (Topography, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgsCeCrm4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgsCeCrm4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgsCeCrm4/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgsCeCrm4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgsCeCrm4&showErrors=false&email=", "NOAA NGDC", "usgsCeCrm4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeCrm5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeCrm5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgsCeCrm5/request", "", "public", "Topography, NOAA Coastal Relief Model, 3 arc second, Vol. 5 (Western Gulf of Mexico)", "This Coastal Relief Gridded database provides the first comprehensive view of the US Coastal Zone; one that extends from the coastal state boundaries to as far offshore as the NOS hydrographic data will support a continuous view of the seafloor. In many cases, this seaward limit reaches out to, and in places even beyond the continental slope. The gridded database contains data for the entire coastal zone of the conterminous US, including Hawaii and Puerto Rico.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ntopo (Topography, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgsCeCrm5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgsCeCrm5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgsCeCrm5/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgsCeCrm5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgsCeCrm5&showErrors=false&email=", "NOAA NGDC", "usgsCeCrm5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeCrm6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeCrm6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgsCeCrm6/request", "", "public", "Topography, NOAA Coastal Relief Model, 3 arc second, Vol. 6 (Southern California)", "This Coastal Relief Gridded database provides the first comprehensive view of the US Coastal Zone; one that extends from the coastal state boundaries to as far offshore as the NOS hydrographic data will support a continuous view of the seafloor. In many cases, this seaward limit reaches out to, and in places even beyond the continental slope. The gridded database contains data for the entire coastal zone of the conterminous US, including Hawaii and Puerto Rico.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ntopo (Topography, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgsCeCrm6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgsCeCrm6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgsCeCrm6/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgsCeCrm6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgsCeCrm6&showErrors=false&email=", "NOAA NGDC", "usgsCeCrm6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeCrm7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeCrm7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgsCeCrm7/request", "", "public", "Topography, NOAA Coastal Relief Model, 3 arc second, Vol. 7 (Northern California/Southern Oregon)", "This Coastal Relief Gridded database provides the first comprehensive view of the US Coastal Zone; one that extends from the coastal state boundaries to as far offshore as the NOS hydrographic data will support a continuous view of the seafloor. In many cases, this seaward limit reaches out to, and in places even beyond the continental slope. The gridded database contains data for the entire coastal zone of the conterminous US, including Hawaii and Puerto Rico.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ntopo (Topography, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgsCeCrm7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgsCeCrm7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgsCeCrm7/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgsCeCrm7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgsCeCrm7&showErrors=false&email=", "NOAA NGDC", "usgsCeCrm7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeCrm8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeCrm8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgsCeCrm8/request", "", "public", "Topography, NOAA Coastal Relief Model, 3 arc second, Vol. 8 (Pacific Northwest)", "This Coastal Relief Gridded database provides the first comprehensive view of the US Coastal Zone; one that extends from the coastal state boundaries to as far offshore as the NOS hydrographic data will support a continuous view of the seafloor. In many cases, this seaward limit reaches out to, and in places even beyond the continental slope. The gridded database contains data for the entire coastal zone of the conterminous US, including Hawaii and Puerto Rico.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ntopo (Topography, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgsCeCrm8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgsCeCrm8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgsCeCrm8/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgsCeCrm8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgsCeCrm8&showErrors=false&email=", "NOAA NGDC", "usgsCeCrm8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeCrm9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeCrm9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgsCeCrm9/request", "", "public", "Topography, NOAA Coastal Relief Model, 3 arc second, Vol. 9 (Puerto Rico)", "This Coastal Relief Gridded database provides the first comprehensive view of the US Coastal Zone; one that extends from the coastal state boundaries to as far offshore as the NOS hydrographic data will support a continuous view of the seafloor. In many cases, this seaward limit reaches out to, and in places even beyond the continental slope. The gridded database contains data for the entire coastal zone of the conterminous US, including Hawaii and Puerto Rico.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ntopo (Topography, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgsCeCrm9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgsCeCrm9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgsCeCrm9/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgsCeCrm9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgsCeCrm9&showErrors=false&email=", "NOAA NGDC", "usgsCeCrm9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeSS111", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeSS111.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgsCeSS111/request", "", "public", "Topography, Smith & Sandwell v11.1, 1/60-degree", "Global seafloor topography from satellite altimetry and ship depth soundings.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ntopo (Topography, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgsCeSS111_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgsCeSS111_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgsCeSS111/index.json", "ftp://topex.ucsd.edu/pub/global_topo_1min", "http://upwell.pfeg.noaa.gov/erddap/rss/usgsCeSS111.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgsCeSS111&showErrors=false&email=", "UCSD", "usgsCeSS111"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeSS91", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeSS91.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgsCeSS91/request", "", "public", "Topography, Smith & Sandwell v9.1, 1/60-degree", "Global seafloor topography from satellite altimetry and ship depth soundings.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ntopo (Topography, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgsCeSS91_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgsCeSS91_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgsCeSS91/index.json", "ftp://topex.ucsd.edu/pub/global_topo_1min", "http://upwell.pfeg.noaa.gov/erddap/rss/usgsCeSS91.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgsCeSS91&showErrors=false&email=", "UCSD", "usgsCeSS91"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeSrtm30v1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeSrtm30v1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgsCeSrtm30v1/request", "", "public", "Topography, SRTM30+ Version 1.0, 30 arc second, Global", "This is global topography data. The grid resolution is 30 seconds which is roughly one kilometer.\n\nLand data are based on the 1-km averages of topography derived from the USGS SRTM30 grided DEM data product created with data from the NASA Shuttle Radar Topography Mission. GTOPO30 data are used for high latitudes where SRTM data are not available.\n\nOcean data are based on the Smith and Sandwell global 1-minute grid between latitudes +/- 81 degrees. Higher resolution grids have been added from the LDEO Ridge Multibeam Synthesis Project, the JAMSTEC Data Site for Research Cruises, and the NGDC Coastal Relief Model. Arctic bathymetry is from the International Bathymetric Chart of the Oceans (IBCAO) [Jakobsson et al., 2003].\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ntopo (Topography, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgsCeSrtm30v1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgsCeSrtm30v1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgsCeSrtm30v1/index.json", "https://topex.ucsd.edu/WWW_html/srtm30_plus.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgsCeSrtm30v1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgsCeSrtm30v1&showErrors=false&email=", "Scripps", "usgsCeSrtm30v1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeSrtm30v6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeSrtm30v6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgsCeSrtm30v6/request", "", "public", "Topography, SRTM30+ Version 6.0, 30 arc second, Global", "This is global topography data. The grid resolution is 30 seconds which is roughly one kilometer.\n\nLand data are based on the 1-km averages of topography derived from the USGS SRTM30 grided DEM data product created with data from the NASA Shuttle Radar Topography Mission. GTOPO30 data are used for high latitudes where SRTM data are not available.\n\nOcean data are based on the Smith and Sandwell global 1-minute grid between latitudes +/- 81 degrees. Higher resolution grids have been added from the LDEO Ridge Multibeam Synthesis Project, the JAMSTEC Data Site for Research Cruises, and the NGDC Coastal Relief Model. Arctic bathymetry is from the International Bathymetric Chart of the Oceans (IBCAO) [Jakobsson et al., 2003].\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ntopo (Topography, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgsCeSrtm30v6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgsCeSrtm30v6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgsCeSrtm30v6/index.json", "https://topex.ucsd.edu/WWW_html/srtm30_plus.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgsCeSrtm30v6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgsCeSrtm30v6&showErrors=false&email=", "Scripps", "usgsCeSrtm30v6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9c0a_3c31_eec2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9c0a_3c31_eec2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9c0a_3c31_eec2/request", "", "public", "Tutuila, American Samoa 1/3 arc-second Coastal Digital Elevation Model (tutuila 13 mhw 2013), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9c0a_3c31_eec2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9c0a_3c31_eec2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9c0a_3c31_eec2/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9c0a_3c31_eec2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9c0a_3c31_eec2&showErrors=false&email=", "NOAA", "noaa_ngdc_9c0a_3c31_eec2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d062_85af_0bf3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d062_85af_0bf3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d062_85af_0bf3/request", "", "public", "U.S. Virgin Islands Coastal Digital Elevation Model (Top Dataset, Regional, usvi 1 mhw 2014), 2.7777778E-4\u00b0", "U.S. Virgin Islands Coastal Digital Elevation Model. National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d062_85af_0bf3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d062_85af_0bf3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d062_85af_0bf3/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d062_85af_0bf3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d062_85af_0bf3&showErrors=false&email=", "NOAA", "noaa_ngdc_d062_85af_0bf3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9d6b_4d63_2309", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_9d6b_4d63_2309.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_9d6b_4d63_2309/request", "", "public", "Unalaska, Alaska Coastal Digital Elevation Model (unalaska 815 mhhw 2012), 1.4814814E-4\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_9d6b_4d63_2309_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_9d6b_4d63_2309_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_9d6b_4d63_2309/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_9d6b_4d63_2309.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_9d6b_4d63_2309&showErrors=false&email=", "NOAA", "noaa_ngdc_9d6b_4d63_2309"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bfbc_1961_a8b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bfbc_1961_a8b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_bfbc_1961_a8b5/request", "", "public", "Unalaska, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, UnalaskaAK A)", "Unalaska, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_bfbc_1961_a8b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_bfbc_1961_a8b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_bfbc_1961_a8b5/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_bfbc_1961_a8b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_bfbc_1961_a8b5&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_bfbc_1961_a8b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_af11_f8ac_39f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_af11_f8ac_39f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_af11_f8ac_39f3/request", "", "public", "Unalaska, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, UnalaskaAK B), 0.005\u00b0", "Unalaska, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_af11_f8ac_39f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_af11_f8ac_39f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_af11_f8ac_39f3/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_af11_f8ac_39f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_af11_f8ac_39f3&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_af11_f8ac_39f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1882_267b_e640", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_1882_267b_e640.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_1882_267b_e640/request", "", "public", "Unalaska, Alaska Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, UnalaskaAK C)", "Unalaska, Alaska Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_1882_267b_e640_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_1882_267b_e640_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_1882_267b_e640/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_1882_267b_e640.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_1882_267b_e640&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_1882_267b_e640"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18fa_8f57_edbc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18fa_8f57_edbc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_18fa_8f57_edbc/request", "", "public", "Univ. Delaware Monthly Precipitation, 1900-2010 V3.01 (air.mon.ltm.v301), 0.5\u00b0, 0001", "Univ. Delaware Monthly Precipitation, 1900-2010 V3.01 (Top Dataset, udel.airt.precip, air.mon.ltm.v301)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly mean of surface temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_18fa_8f57_edbc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_18fa_8f57_edbc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_18fa_8f57_edbc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.UDel_AirT_Precip.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_18fa_8f57_edbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_18fa_8f57_edbc&showErrors=false&email=", "University of Delaware", "noaa_esrl_18fa_8f57_edbc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59c4_ccd8_e960", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59c4_ccd8_e960.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_59c4_ccd8_e960/request", "", "public", "Univ. Delaware Monthly Precipitation, 1900-2010 V3.01 (air.mon.mean.v301), 0.5\u00b0", "Univ. Delaware Monthly Precipitation, 1900-2010 V3.01 (Top Dataset, udel.airt.precip, air.mon.mean.v301)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly mean of surface temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_59c4_ccd8_e960_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_59c4_ccd8_e960_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_59c4_ccd8_e960/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.UDel_AirT_Precip.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_59c4_ccd8_e960.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_59c4_ccd8_e960&showErrors=false&email=", "University of Delaware", "noaa_esrl_59c4_ccd8_e960"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_11c3_80eb_82e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_11c3_80eb_82e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_11c3_80eb_82e3/request", "", "public", "Univ. Delaware Monthly Precipitation, 1900-2010 V3.01 (precip.mon.ltm.v301), 0.5\u00b0, 0001", "Univ. Delaware Monthly Precipitation, 1900-2010 V3.01 (Top Dataset, udel.airt.precip, precip.mon.ltm.v301)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Long Term Mean Monthly total of precipitation, cm)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_11c3_80eb_82e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_11c3_80eb_82e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_11c3_80eb_82e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.UDel_AirT_Precip.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_11c3_80eb_82e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_11c3_80eb_82e3&showErrors=false&email=", "University of Delaware", "noaa_esrl_11c3_80eb_82e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_600c_65bf_5b89", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_600c_65bf_5b89.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_600c_65bf_5b89/request", "", "public", "Univ. Delaware Monthly Precipitation, 1900-2010 V3.01 (precip.mon.total.v301), 0.5\u00b0", "Univ. Delaware Monthly Precipitation, 1900-2010 V3.01 (Top Dataset, udel.airt.precip, precip.mon.total.v301)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Monthly total of precipitation, cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_600c_65bf_5b89_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_600c_65bf_5b89_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_600c_65bf_5b89/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.UDel_AirT_Precip.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_600c_65bf_5b89.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_600c_65bf_5b89&showErrors=false&email=", "University of Delaware", "noaa_esrl_600c_65bf_5b89"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI21mo", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI21mo.graph", "", "", "public", "Upwelling Index, 21N 107W, monthly", "Upwelling index computed from FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupwelling_index (Upwelling Index, 21N 107W, monthly, m^3/s/100m coastline)\nupwelling_index_anomaly (Upwelling Index Anomaly, 21N 107W, monthly, m^3/s/100m coastline)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI21mo_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI21mo_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI21mo/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI21mo.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI21mo&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI21mo"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI24mo", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI24mo.graph", "", "", "public", "Upwelling Index, 24N 113W, monthly", "Upwelling index computed from FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupwelling_index (Upwelling Index, 24N 113W, monthly, m^3/s/100m coastline)\nupwelling_index_anomaly (Upwelling Index Anomaly, 24N 113W, monthly, m^3/s/100m coastline)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI24mo_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI24mo_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI24mo/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI24mo.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI24mo&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI24mo"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI27mo", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI27mo.graph", "", "", "public", "Upwelling Index, 27N 116W, monthly", "Upwelling index computed from FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupwelling_index (Upwelling Index, 27N 116W, monthly, m^3/s/100m coastline)\nupwelling_index_anomaly (Upwelling Index Anomaly, 27N 116W, monthly, m^3/s/100m coastline)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI27mo_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI27mo_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI27mo/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI27mo.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI27mo&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI27mo"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI30mo", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI30mo.graph", "", "", "public", "Upwelling Index, 30N 119W, monthly", "Upwelling index computed from FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupwelling_index (Upwelling Index, 30N 119W, monthly, m^3/s/100m coastline)\nupwelling_index_anomaly (Upwelling Index Anomaly, 30N 119W, monthly, m^3/s/100m coastline)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI30mo_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI30mo_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI30mo/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI30mo.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI30mo&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI30mo"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI33mo", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI33mo.graph", "", "", "public", "Upwelling Index, 33N 119W, monthly", "Upwelling index computed from FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupwelling_index (Upwelling Index, 33N 119W, monthly, m^3/s/100m coastline)\nupwelling_index_anomaly (Upwelling Index Anomaly, 33N 119W, monthly, m^3/s/100m coastline)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI33mo_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI33mo_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI33mo/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI33mo.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI33mo&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI33mo"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI36mo", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI36mo.graph", "", "", "public", "Upwelling Index, 36N 122W, monthly", "Upwelling index computed from FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupwelling_index (Upwelling Index, 36N 122W, monthly, m^3/s/100m coastline)\nupwelling_index_anomaly (Upwelling Index Anomaly, 36N 122W, monthly, m^3/s/100m coastline)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI36mo_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI36mo_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI36mo/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI36mo.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI36mo&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI36mo"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI39mo", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI39mo.graph", "", "", "public", "Upwelling Index, 39N 125W, monthly", "Upwelling index computed from FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupwelling_index (Upwelling Index, 39N 125W, monthly, m^3/s/100m coastline)\nupwelling_index_anomaly (Upwelling Index Anomaly, 39N 125W, monthly, m^3/s/100m coastline)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI39mo_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI39mo_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI39mo/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI39mo.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI39mo&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI39mo"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI42mo", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI42mo.graph", "", "", "public", "Upwelling Index, 42N 125W, monthly", "Upwelling index computed from FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupwelling_index (Upwelling Index, 42N 125W, monthly, m^3/s/100m coastline)\nupwelling_index_anomaly (Upwelling Index Anomaly, 42N 125W, monthly, m^3/s/100m coastline)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI42mo_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI42mo_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI42mo/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI42mo.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI42mo&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI42mo"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI45mo", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI45mo.graph", "", "", "public", "Upwelling Index, 45N 125W, monthly", "Upwelling index computed from FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupwelling_index (Upwelling Index, 45N 125W, monthly, m^3/s/100m coastline)\nupwelling_index_anomaly (Upwelling Index Anomaly, 45N 125W, monthly, m^3/s/100m coastline)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI45mo_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI45mo_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI45mo/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI45mo.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI45mo&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI45mo"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI48mo", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI48mo.graph", "", "", "public", "Upwelling Index, 48N 125W, monthly", "Upwelling index computed from FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupwelling_index (Upwelling Index, 48N 125W, monthly, m^3/s/100m coastline)\nupwelling_index_anomaly (Upwelling Index Anomaly, 48N 125W, monthly, m^3/s/100m coastline)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI48mo_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI48mo_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI48mo/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI48mo.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI48mo&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI48mo"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI51mo", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI51mo.graph", "", "", "public", "Upwelling Index, 51N 131W, monthly", "Upwelling index computed from FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupwelling_index (Upwelling Index, 51N 131W, monthly, m^3/s/100m coastline)\nupwelling_index_anomaly (Upwelling Index Anomaly, 51N 131W, monthly, m^3/s/100m coastline)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI51mo_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI51mo_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI51mo/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI51mo.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI51mo&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI51mo"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI54mo", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI54mo.graph", "", "", "public", "Upwelling Index, 54N 134W, monthly", "Upwelling index computed from FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupwelling_index (Upwelling Index, 54N 134W, monthly, m^3/s/100m coastline)\nupwelling_index_anomaly (Upwelling Index Anomaly, 54N 134W, monthly, m^3/s/100m coastline)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI54mo_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI54mo_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI54mo/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI54mo.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI54mo&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI54mo"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI57mo", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI57mo.graph", "", "", "public", "Upwelling Index, 57N 137W, monthly", "Upwelling index computed from FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupwelling_index (Upwelling Index, 57N 137W, monthly, m^3/s/100m coastline)\nupwelling_index_anomaly (Upwelling Index Anomaly, 57N 137W, monthly, m^3/s/100m coastline)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI57mo_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI57mo_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI57mo/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI57mo.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI57mo&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI57mo"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI60mo", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI60mo.graph", "", "", "public", "Upwelling Index, 60N 146W, monthly", "Upwelling index computed from FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupwelling_index (Upwelling Index, 60N 146W, monthly, m^3/s/100m coastline)\nupwelling_index_anomaly (Upwelling Index Anomaly, 60N 146W, monthly, m^3/s/100m coastline)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI60mo_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI60mo_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI60mo/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI60mo.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI60mo&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI60mo"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI61mo", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdUI61mo.graph", "", "", "public", "Upwelling Index, 60N 149W, monthly", "Upwelling index computed from FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupwelling_index (Upwelling Index, 60N 149W, monthly, m^3/s/100m coastline)\nupwelling_index_anomaly (Upwelling Index Anomaly, 60N 149W, monthly, m^3/s/100m coastline)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI61mo_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI61mo_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI61mo/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI61mo.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI61mo&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI61mo"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_f9b0_a2e0_77a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_f9b0_a2e0_77a6.graph", "", "", "public", "US East Apr 05 2013 to Current, US East Apr 05 2013 to Current, Best Time Series [time]", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: American Seas Regional Forecast. Best time series, taking the data from the most recent run available. US East Before Resolution Change(11/18/09 - 4/05/13)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_f9b0_a2e0_77a6/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_us_east_agg/US_East_Apr_05_2013_to_Current_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_f9b0_a2e0_77a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_f9b0_a2e0_77a6&showErrors=false&email=", "Fleet Numerical Meteorology and Oceanography Center", "noaa_ncddc_f9b0_a2e0_77a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_215e_ada8_ce13", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_215e_ada8_ce13.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_215e_ada8_ce13/request", "", "public", "US East Apr 05 2013 to Current, US East Apr 05 2013 to Current, Best Time Series [time][depth][lat][lon], 0.03333\u00b0", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: American Seas Regional Forecast. Best time series, taking the data from the most recent run available. US East Before Resolution Change(11/18/09 - 4/05/13)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_215e_ada8_ce13_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_215e_ada8_ce13_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_215e_ada8_ce13/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_us_east_agg/US_East_Apr_05_2013_to_Current_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_215e_ada8_ce13.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_215e_ada8_ce13&showErrors=false&email=", "Fleet Numerical Meteorology and Oceanography Center", "noaa_ncddc_215e_ada8_ce13"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_ab3c_f969_6e47", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_ab3c_f969_6e47.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_ab3c_f969_6e47/request", "", "public", "US East Apr 05 2013 to Current, US East Apr 05 2013 to Current, Best Time Series [time][lat][lon], 0.03333\u00b0", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: American Seas Regional Forecast. Best time series, taking the data from the most recent run available. US East Before Resolution Change(11/18/09 - 4/05/13)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_atm_press (Surface Atmospherics Pressure, Pascal)\nsurf_el (Water Surface Elevation, meter)\nsurf_temp_flux (model surface temperature flux, degC-m/s)\nsurf_salt_flux (model surface salinity flux, psu-m/s)\nsurf_solar_flux (model surface shortwave flux, degC-m/s)\nsurf_roughness (model surface roughness, m)\nsurf_wnd_stress_gridx (Grid x Surface Wind Stress, newton/meter2)\nsurf_wnd_stress_gridy (Grid y Surface Wind Stress, newton/meter2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_ab3c_f969_6e47_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_ab3c_f969_6e47_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_ab3c_f969_6e47/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_us_east_agg/US_East_Apr_05_2013_to_Current_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_ab3c_f969_6e47.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_ab3c_f969_6e47&showErrors=false&email=", "Fleet Numerical Meteorology and Oceanography Center", "noaa_ncddc_ab3c_f969_6e47"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_c9bc_2a2c_9416", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_c9bc_2a2c_9416.graph", "", "", "public", "US East Feb 2009 to November 18 2009, US East Feb 2009 to November 18 2009, Best Time Series [time]", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: Sendai Regional Forecast. Best time series, taking the data from the most recent run available. US East Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_c9bc_2a2c_9416/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_us_east_before_depth_change_agg/US_East_Feb_2009_to_November_18_2009_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_c9bc_2a2c_9416.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_c9bc_2a2c_9416&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_c9bc_2a2c_9416"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_a4af_5d09_927f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_a4af_5d09_927f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_a4af_5d09_927f/request", "", "public", "US East Feb 2009 to November 18 2009, US East Feb 2009 to November 18 2009, Best Time Series [time][depth][lat][lon]", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: Sendai Regional Forecast. Best time series, taking the data from the most recent run available. US East Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_a4af_5d09_927f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_a4af_5d09_927f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_a4af_5d09_927f/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_us_east_before_depth_change_agg/US_East_Feb_2009_to_November_18_2009_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_a4af_5d09_927f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_a4af_5d09_927f&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_a4af_5d09_927f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_01d3_5057_e3ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_01d3_5057_e3ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_01d3_5057_e3ef/request", "", "public", "US East Feb 2009 to November 18 2009, US East Feb 2009 to November 18 2009, Best Time Series [time][lat][lon]", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: Sendai Regional Forecast. Best time series, taking the data from the most recent run available. US East Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_atm_press (Surface Atmospherics Pressure, Pascal)\nsurf_el (Water Surface Elevation, meter)\nsurf_temp_flux (model surface temperature flux, degC-m/s)\nsurf_salt_flux (model surface salinity flux, psu-m/s)\nsurf_solar_flux (model surface shortwave flux, degC-m/s)\nsurf_roughness (model surface roughness, m)\nsurf_wnd_stress_gridx (Grid x Surface Wind Stress, newton/meter2)\nsurf_wnd_stress_gridy (Grid y Surface Wind Stress, newton/meter2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_01d3_5057_e3ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_01d3_5057_e3ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_01d3_5057_e3ef/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_us_east_before_depth_change_agg/US_East_Feb_2009_to_November_18_2009_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_01d3_5057_e3ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_01d3_5057_e3ef&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_01d3_5057_e3ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_73e0_8e1b_7d50", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_73e0_8e1b_7d50.graph", "", "", "public", "US East Nov 19 2009 to Apr 04 2013, US East Nov 19 2009 to Apr 04 2013, Best Time Series [time]", "Best time series, taking the data from the most recent run available. US East Before Resolution Change(11/18/09 - 4/05/13)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntau (hours since analysis)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_73e0_8e1b_7d50/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_useast_agg_20091119_20130404/US_East_Nov_19_2009_to_Apr_04_2013_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_73e0_8e1b_7d50.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_73e0_8e1b_7d50&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_73e0_8e1b_7d50"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_3360_0e6c_c4f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_3360_0e6c_c4f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_3360_0e6c_c4f3/request", "", "public", "US East Nov 19 2009 to Apr 04 2013, US East Nov 19 2009 to Apr 04 2013, Best Time Series [time][depth][lat][lon]", "Best time series, taking the data from the most recent run available. US East Before Resolution Change(11/18/09 - 4/05/13)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_3360_0e6c_c4f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_3360_0e6c_c4f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_3360_0e6c_c4f3/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_useast_agg_20091119_20130404/US_East_Nov_19_2009_to_Apr_04_2013_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_3360_0e6c_c4f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_3360_0e6c_c4f3&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_3360_0e6c_c4f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_786c_959f_ba5d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_786c_959f_ba5d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_786c_959f_ba5d/request", "", "public", "US East Nov 19 2009 to Apr 04 2013, US East Nov 19 2009 to Apr 04 2013, Best Time Series [time][lat][lon]", "Best time series, taking the data from the most recent run available. US East Before Resolution Change(11/18/09 - 4/05/13)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_atm_press (Surface Atmospherics Pressure, Pascal)\nsurf_el (Water Surface Elevation, meter)\nsurf_temp_flux (model surface temperature flux, degC-m/s)\nsurf_salt_flux (model surface salinity flux, psu-m/s)\nsurf_solar_flux (model surface shortwave flux, degC-m/s)\nsurf_roughness (model surface roughness, m)\nsurf_wnd_stress_gridx (Grid x Surface Wind Stress, newton/meter2)\nsurf_wnd_stress_gridy (Grid y Surface Wind Stress, newton/meter2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_786c_959f_ba5d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_786c_959f_ba5d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_786c_959f_ba5d/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_useast_agg_20091119_20130404/US_East_Nov_19_2009_to_Apr_04_2013_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_786c_959f_ba5d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_786c_959f_ba5d&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_786c_959f_ba5d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_ofuolosega", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_ofuolosega.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgs_dem_10m_ofuolosega/request", "", "public", "USGS 10-m Digital Elevation Model (DEM): American Samoa: Ofu and Olosega", "A 10-meter resolution land surface digital elevation model (DEM) for the Manua Islands of Ofu and Olosega in American Samoa from United States Geological Survey (USGS) 1/3 arc-second DEM quadrangles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgs_dem_10m_ofuolosega_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgs_dem_10m_ofuolosega_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgs_dem_10m_ofuolosega/index.json", "http://nationalmap.gov/viewer.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgs_dem_10m_ofuolosega.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgs_dem_10m_ofuolosega&showErrors=false&email=", "USGS", "usgs_dem_10m_ofuolosega"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_tau", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_tau.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgs_dem_10m_tau/request", "", "public", "USGS 10-m Digital Elevation Model (DEM): American Samoa: Tau", "A 10-meter resolution land surface digital elevation model (DEM) for the Manua Island of Tau in American Samoa from United States Geological Survey (USGS) 1/3 arc-second DEM quadrangles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgs_dem_10m_tau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgs_dem_10m_tau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgs_dem_10m_tau/index.json", "http://nationalmap.gov/viewer.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgs_dem_10m_tau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgs_dem_10m_tau&showErrors=false&email=", "USGS", "usgs_dem_10m_tau"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_tutuila", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_tutuila.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgs_dem_10m_tutuila/request", "", "public", "USGS 10-m Digital Elevation Model (DEM): American Samoa: Tutuila", "A 10-meter resolution land surface digital elevation model (DEM) for the island of Tutuila in American Samoa from United States Geological Survey (USGS) 1/3 arc-second DEM quadrangles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgs_dem_10m_tutuila_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgs_dem_10m_tutuila_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgs_dem_10m_tutuila/index.json", "http://nationalmap.gov/viewer.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgs_dem_10m_tutuila.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgs_dem_10m_tutuila&showErrors=false&email=", "USGS", "usgs_dem_10m_tutuila"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_aguijan", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_aguijan.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgs_dem_10m_aguijan/request", "", "public", "USGS 10-m Digital Elevation Model (DEM): CNMI: Aguijan", "A 10-meter resolution land surface digital elevation model (DEM) for the island of Aguijan in the Commonwealth of the Northern Mariana Islands (CNMI) from United States Geological Survey (USGS) 1/3 arc-second DEM quadrangles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgs_dem_10m_aguijan_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgs_dem_10m_aguijan_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgs_dem_10m_aguijan/index.json", "http://nationalmap.gov/viewer.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgs_dem_10m_aguijan.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgs_dem_10m_aguijan&showErrors=false&email=", "USGS", "usgs_dem_10m_aguijan"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_rota", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_rota.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgs_dem_10m_rota/request", "", "public", "USGS 10-m Digital Elevation Model (DEM): CNMI: Rota", "A 10-meter resolution land surface digital elevation model (DEM) for the island of Rota in the Commonwealth of the Northern Mariana Islands (CNMI) from United States Geological Survey (USGS) 1/3 arc-second DEM quadrangles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgs_dem_10m_rota_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgs_dem_10m_rota_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgs_dem_10m_rota/index.json", "http://nationalmap.gov/viewer.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgs_dem_10m_rota.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgs_dem_10m_rota&showErrors=false&email=", "USGS", "usgs_dem_10m_rota"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_saipan", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_saipan.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgs_dem_10m_saipan/request", "", "public", "USGS 10-m Digital Elevation Model (DEM): CNMI: Saipan", "A 10-meter resolution land surface digital elevation model (DEM) for the island of Saipan in the Commonwealth of the Northern Mariana Islands (CNMI) from United States Geological Survey (USGS) 1/3 arc-second DEM quadrangles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgs_dem_10m_saipan_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgs_dem_10m_saipan_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgs_dem_10m_saipan/index.json", "http://nationalmap.gov/viewer.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgs_dem_10m_saipan.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgs_dem_10m_saipan&showErrors=false&email=", "USGS", "usgs_dem_10m_saipan"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_tinian", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_tinian.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgs_dem_10m_tinian/request", "", "public", "USGS 10-m Digital Elevation Model (DEM): CNMI: Tinian", "A 10-meter resolution land surface digital elevation model (DEM) for the island of Tinian in the Commonwealth of the Northern Mariana Islands (CNMI) from United States Geological Survey (USGS) 1/3 arc-second DEM quadrangles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgs_dem_10m_tinian_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgs_dem_10m_tinian_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgs_dem_10m_tinian/index.json", "http://nationalmap.gov/viewer.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgs_dem_10m_tinian.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgs_dem_10m_tinian&showErrors=false&email=", "USGS", "usgs_dem_10m_tinian"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_chuuk", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_chuuk.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgs_dem_10m_chuuk/request", "", "public", "USGS 10-m Digital Elevation Model (DEM): FSM: Chuuk", "A 10-meter resolution land surface digital elevation model (DEM) for the islands of Chuuk in the Federated States of Micronesia (FSM) from United States Geological Survey (USGS) 1/3 arc-second DEM quadrangles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgs_dem_10m_chuuk_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgs_dem_10m_chuuk_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgs_dem_10m_chuuk/index.json", "http://nationalmap.gov/viewer.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgs_dem_10m_chuuk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgs_dem_10m_chuuk&showErrors=false&email=", "USGS", "usgs_dem_10m_chuuk"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_kosrae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_kosrae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgs_dem_10m_kosrae/request", "", "public", "USGS 10-m Digital Elevation Model (DEM): FSM: Kosrae", "A 10-meter resolution land surface digital elevation model (DEM) for the island of Kosrae in the Federated States of Micronesia (FSM) from United States Geological Survey (USGS) 1/3 arc-second DEM quadrangles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgs_dem_10m_kosrae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgs_dem_10m_kosrae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgs_dem_10m_kosrae/index.json", "http://nationalmap.gov/viewer.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgs_dem_10m_kosrae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgs_dem_10m_kosrae&showErrors=false&email=", "USGS", "usgs_dem_10m_kosrae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_pohnpei", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_pohnpei.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgs_dem_10m_pohnpei/request", "", "public", "USGS 10-m Digital Elevation Model (DEM): FSM: Pohnpei", "A 10-meter resolution land surface digital elevation model (DEM) for the island of Pohnpei in the Federated States of Micronesia (FSM) from United States Geological Survey (USGS) 1/3 arc-second DEM quadrangles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgs_dem_10m_pohnpei_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgs_dem_10m_pohnpei_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgs_dem_10m_pohnpei/index.json", "http://nationalmap.gov/viewer.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgs_dem_10m_pohnpei.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgs_dem_10m_pohnpei&showErrors=false&email=", "USGS", "usgs_dem_10m_pohnpei"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_guam", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_guam.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgs_dem_10m_guam/request", "", "public", "USGS 10-m Digital Elevation Model (DEM): Guam", "A 10-meter resolution land surface digital elevation model (DEM) for the island of Guam from United States Geological Survey (USGS) 1/3 arc-second DEM quadrangles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgs_dem_10m_guam_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgs_dem_10m_guam_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgs_dem_10m_guam/index.json", "http://nationalmap.gov/viewer.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgs_dem_10m_guam.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgs_dem_10m_guam&showErrors=false&email=", "USGS", "usgs_dem_10m_guam"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_bigisland", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_bigisland.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgs_dem_10m_bigisland/request", "", "public", "USGS 10-m Digital Elevation Model (DEM): Hawaii: Big Island", "A 10-meter resolution land surface digital elevation model (DEM) for Big Island in Hawaii from United States Geological Survey (USGS) 1/3 arc-second DEM quadrangles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgs_dem_10m_bigisland_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgs_dem_10m_bigisland_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgs_dem_10m_bigisland/index.json", "http://nationalmap.gov/viewer.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgs_dem_10m_bigisland.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgs_dem_10m_bigisland&showErrors=false&email=", "USGS", "usgs_dem_10m_bigisland"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_kahoolawe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_kahoolawe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgs_dem_10m_kahoolawe/request", "", "public", "USGS 10-m Digital Elevation Model (DEM): Hawaii: Kahoolawe", "A 10-meter resolution land surface digital elevation model (DEM) for the island of Kahoolawe in Hawaii from United States Geological Survey (USGS) 1/3 arc-second DEM quadrangles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgs_dem_10m_kahoolawe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgs_dem_10m_kahoolawe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgs_dem_10m_kahoolawe/index.json", "http://nationalmap.gov/viewer.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgs_dem_10m_kahoolawe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgs_dem_10m_kahoolawe&showErrors=false&email=", "USGS", "usgs_dem_10m_kahoolawe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_kauai", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_kauai.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgs_dem_10m_kauai/request", "", "public", "USGS 10-m Digital Elevation Model (DEM): Hawaii: Kauai", "A 10-meter resolution land surface digital elevation model (DEM) for the island of Kauai in Hawaii from United States Geological Survey (USGS) 1/3 arc-second DEM quadrangles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgs_dem_10m_kauai_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgs_dem_10m_kauai_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgs_dem_10m_kauai/index.json", "http://nationalmap.gov/viewer.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgs_dem_10m_kauai.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgs_dem_10m_kauai&showErrors=false&email=", "USGS", "usgs_dem_10m_kauai"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_lanai", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_lanai.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgs_dem_10m_lanai/request", "", "public", "USGS 10-m Digital Elevation Model (DEM): Hawaii: Lanai", "A 10-meter resolution land surface digital elevation model (DEM) for the island of Lanai in Hawaii from United States Geological Survey (USGS) 1/3 arc-second DEM quadrangles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgs_dem_10m_lanai_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgs_dem_10m_lanai_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgs_dem_10m_lanai/index.json", "http://nationalmap.gov/viewer.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgs_dem_10m_lanai.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgs_dem_10m_lanai&showErrors=false&email=", "USGS", "usgs_dem_10m_lanai"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_maui", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_maui.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgs_dem_10m_maui/request", "", "public", "USGS 10-m Digital Elevation Model (DEM): Hawaii: Maui", "A 10-meter resolution land surface digital elevation model (DEM) for the island of Maui in Hawaii from United States Geological Survey (USGS) 1/3 arc-second DEM quadrangles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgs_dem_10m_maui_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgs_dem_10m_maui_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgs_dem_10m_maui/index.json", "http://nationalmap.gov/viewer.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgs_dem_10m_maui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgs_dem_10m_maui&showErrors=false&email=", "USGS", "usgs_dem_10m_maui"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_molokai", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_molokai.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgs_dem_10m_molokai/request", "", "public", "USGS 10-m Digital Elevation Model (DEM): Hawaii: Molokai", "A 10-meter resolution land surface digital elevation model (DEM) for the island of Molokai in Hawaii from United States Geological Survey (USGS) 1/3 arc-second DEM quadrangles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgs_dem_10m_molokai_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgs_dem_10m_molokai_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgs_dem_10m_molokai/index.json", "http://nationalmap.gov/viewer.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgs_dem_10m_molokai.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgs_dem_10m_molokai&showErrors=false&email=", "USGS", "usgs_dem_10m_molokai"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_niihau", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_niihau.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgs_dem_10m_niihau/request", "", "public", "USGS 10-m Digital Elevation Model (DEM): Hawaii: Niihau", "A 10-meter resolution land surface digital elevation model (DEM) for the island of Niihau in Hawaii from United States Geological Survey (USGS) 1/3 arc-second DEM quadrangles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgs_dem_10m_niihau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgs_dem_10m_niihau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgs_dem_10m_niihau/index.json", "http://nationalmap.gov/viewer.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgs_dem_10m_niihau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgs_dem_10m_niihau&showErrors=false&email=", "USGS", "usgs_dem_10m_niihau"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_oahu", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_oahu.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgs_dem_10m_oahu/request", "", "public", "USGS 10-m Digital Elevation Model (DEM): Hawaii: Oahu", "A 10-meter resolution land surface digital elevation model (DEM) for the island of Oahu in Hawaii from United States Geological Survey (USGS) 1/3 arc-second DEM quadrangles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgs_dem_10m_oahu_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgs_dem_10m_oahu_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgs_dem_10m_oahu/index.json", "http://nationalmap.gov/viewer.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgs_dem_10m_oahu.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgs_dem_10m_oahu&showErrors=false&email=", "USGS", "usgs_dem_10m_oahu"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_palau", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgs_dem_10m_palau.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgs_dem_10m_palau/request", "", "public", "USGS 10-m Digital Elevation Model (DEM): Palau", "A 10-meter resolution land surface digital elevation model (DEM) for the islands of Palau from United States Geological Survey (USGS) 1/3 arc-second DEM quadrangles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgs_dem_10m_palau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgs_dem_10m_palau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgs_dem_10m_palau/index.json", "http://nationalmap.gov/viewer.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgs_dem_10m_palau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgs_dem_10m_palau&showErrors=false&email=", "USGS", "usgs_dem_10m_palau"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_0ce5_3fc6_1d95", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_0ce5_3fc6_1d95.graph", "", "", "public", "USGS COAWST Forecast, US East Coast and Gulf of Mexico (Experimental) (coawst 4 use best) [boundary]", "Coupled Ocean-Atmosphere-Wave-Sediment Transport (COAWST) Forecast System : United States Geological Survey (USGS) : US East Coast and Gulf of Mexico (Experimental). Best time series, taking the data from the most recent run available. Regional Ocean Modeling System (ROMS) USE Output from COAWST\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [boundary]):\nFSobc_in (free-surface inflow, nudging inverse time scale, second-1)\nFSobc_out (free-surface outflow, nudging inverse time scale, second-1)\nM2obc_in (2D momentum inflow, nudging inverse time scale, second-1)\nM2obc_out (2D momentum outflow, nudging inverse time scale, second-1)\nM3obc_in (3D momentum inflow, nudging inverse time scale, second-1)\nM3obc_out (3D momentum outflow, nudging inverse time scale, second-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_geoport_0ce5_3fc6_1d95/index.json", "https://woodshole.er.usgs.gov/project-pages/cccp/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_geoport_0ce5_3fc6_1d95.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_geoport_0ce5_3fc6_1d95&showErrors=false&email=", "USGS", "whoi_geoport_0ce5_3fc6_1d95"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_a619_edb6_5717", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_a619_edb6_5717.graph", "", "", "public", "USGS COAWST Forecast, US East Coast and Gulf of Mexico (Experimental) (coawst 4 use best) [boundary][tracer]", "Coupled Ocean-Atmosphere-Wave-Sediment Transport (COAWST) Forecast System : United States Geological Survey (USGS) : US East Coast and Gulf of Mexico (Experimental). Best time series, taking the data from the most recent run available. Regional Ocean Modeling System (ROMS) USE Output from COAWST\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [boundary][tracer]):\nTobc_in (tracers inflow, nudging inverse time scale, second-1)\nTobc_out (tracers outflow, nudging inverse time scale, second-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_geoport_a619_edb6_5717/index.json", "https://woodshole.er.usgs.gov/project-pages/cccp/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_geoport_a619_edb6_5717.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_geoport_a619_edb6_5717&showErrors=false&email=", "USGS", "whoi_geoport_a619_edb6_5717"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_2c18_6b82_2179", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_2c18_6b82_2179.graph", "", "", "public", "USGS COAWST Forecast, US East Coast and Gulf of Mexico (Experimental) (coawst 4 use best) [eta_psi][xi_psi]", "Coupled Ocean-Atmosphere-Wave-Sediment Transport (COAWST) Forecast System : United States Geological Survey (USGS) : US East Coast and Gulf of Mexico (Experimental). Best time series, taking the data from the most recent run available. Regional Ocean Modeling System (ROMS) USE Output from COAWST\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eta_psi][xi_psi]):\nmask_psi (mask on psi-points)\nlon_psi (longitude of PSI-points, degrees_east)\nlat_psi (latitude of PSI-points, degrees_north)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_geoport_2c18_6b82_2179/index.json", "https://woodshole.er.usgs.gov/project-pages/cccp/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_geoport_2c18_6b82_2179.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_geoport_2c18_6b82_2179&showErrors=false&email=", "USGS", "whoi_geoport_2c18_6b82_2179"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_e25c_bd86_6430", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_e25c_bd86_6430.graph", "", "", "public", "USGS COAWST Forecast, US East Coast and Gulf of Mexico (Experimental) (coawst 4 use best) [eta_rho][xi_rho]", "Coupled Ocean-Atmosphere-Wave-Sediment Transport (COAWST) Forecast System : United States Geological Survey (USGS) : US East Coast and Gulf of Mexico (Experimental). Best time series, taking the data from the most recent run available. Regional Ocean Modeling System (ROMS) USE Output from COAWST\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eta_rho][xi_rho]):\nh (bathymetry at RHO-points, meter)\nf (Coriolis parameter at RHO-points, second-1)\npm (curvilinear coordinate metric in XI, meter-1)\npn (curvilinear coordinate metric in ETA, meter-1)\nangle (angle between XI-axis and EAST, radians)\nmask_rho (mask on RHO-points)\nlon_rho (longitude of RHO-points, degrees_east)\nlat_rho (latitude of RHO-points, degrees_north)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_geoport_e25c_bd86_6430/index.json", "https://woodshole.er.usgs.gov/project-pages/cccp/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_geoport_e25c_bd86_6430.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_geoport_e25c_bd86_6430&showErrors=false&email=", "USGS", "whoi_geoport_e25c_bd86_6430"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_4a9c_0196_b35b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_4a9c_0196_b35b.graph", "", "", "public", "USGS COAWST Forecast, US East Coast and Gulf of Mexico (Experimental) (coawst 4 use best) [eta_u][xi_u]", "Coupled Ocean-Atmosphere-Wave-Sediment Transport (COAWST) Forecast System : United States Geological Survey (USGS) : US East Coast and Gulf of Mexico (Experimental). Best time series, taking the data from the most recent run available. Regional Ocean Modeling System (ROMS) USE Output from COAWST\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eta_u][xi_u]):\nmask_u (mask on U-points)\nlon_u (longitude of U-points, degrees_east)\nlat_u (latitude of U-points, degrees_north)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_geoport_4a9c_0196_b35b/index.json", "https://woodshole.er.usgs.gov/project-pages/cccp/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_geoport_4a9c_0196_b35b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_geoport_4a9c_0196_b35b&showErrors=false&email=", "USGS", "whoi_geoport_4a9c_0196_b35b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_6621_8bd9_01e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_6621_8bd9_01e2.graph", "", "", "public", "USGS COAWST Forecast, US East Coast and Gulf of Mexico (Experimental) (coawst 4 use best) [eta_v][xi_v]", "Coupled Ocean-Atmosphere-Wave-Sediment Transport (COAWST) Forecast System : United States Geological Survey (USGS) : US East Coast and Gulf of Mexico (Experimental). Best time series, taking the data from the most recent run available. Regional Ocean Modeling System (ROMS) USE Output from COAWST\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [eta_v][xi_v]):\nmask_v (mask on V-points)\nlon_v (longitude of V-points, degrees_east)\nlat_v (latitude of V-points, degrees_north)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_geoport_6621_8bd9_01e2/index.json", "https://woodshole.er.usgs.gov/project-pages/cccp/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_geoport_6621_8bd9_01e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_geoport_6621_8bd9_01e2&showErrors=false&email=", "USGS", "whoi_geoport_6621_8bd9_01e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_372b_d115_7ac6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_372b_d115_7ac6.graph", "", "", "public", "USGS COAWST Forecast, US East Coast and Gulf of Mexico (Experimental) (coawst 4 use best) [NST]", "Coupled Ocean-Atmosphere-Wave-Sediment Transport (COAWST) Forecast System : United States Geological Survey (USGS) : US East Coast and Gulf of Mexico (Experimental). Best time series, taking the data from the most recent run available. Regional Ocean Modeling System (ROMS) USE Output from COAWST\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [NST]):\nSd50 (median sediment grain diameter used in uniform initial conditions, millimeter)\nSrho (sediment grain density used in uniform initial conditions, kilogram meter-3)\nCsed (sediment concentration used in uniform initial conditions, kilogram meter-3)\nWsed (sediment particle settling velocity, meter second-1)\nErate (sediment surface layer erosing rate, kilogram meter-2 second-1)\ntau_ce (sediment critical shear for erosion, Newton meter-2)\ntau_cd (sediment critical shear for deposition, Newton meter-2)\nporos (sediment porosity)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_geoport_372b_d115_7ac6/index.json", "https://woodshole.er.usgs.gov/project-pages/cccp/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_geoport_372b_d115_7ac6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_geoport_372b_d115_7ac6&showErrors=false&email=", "USGS", "whoi_geoport_372b_d115_7ac6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_9e46_b255_3555", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_9e46_b255_3555.graph", "", "", "public", "USGS COAWST Forecast, US East Coast and Gulf of Mexico (Experimental) (coawst 4 use best) [s_rho]", "Coupled Ocean-Atmosphere-Wave-Sediment Transport (COAWST) Forecast System : United States Geological Survey (USGS) : US East Coast and Gulf of Mexico (Experimental). Best time series, taking the data from the most recent run available. Regional Ocean Modeling System (ROMS) USE Output from COAWST\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [s_rho]):\nCs_r (S-coordinate stretching curves at RHO-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_geoport_9e46_b255_3555/index.json", "https://woodshole.er.usgs.gov/project-pages/cccp/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_geoport_9e46_b255_3555.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_geoport_9e46_b255_3555&showErrors=false&email=", "USGS", "whoi_geoport_9e46_b255_3555"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_0d3e_83f4_179a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_0d3e_83f4_179a.graph", "", "", "public", "USGS COAWST Forecast, US East Coast and Gulf of Mexico (Experimental) (coawst 4 use best) [s_w]", "Coupled Ocean-Atmosphere-Wave-Sediment Transport (COAWST) Forecast System : United States Geological Survey (USGS) : US East Coast and Gulf of Mexico (Experimental). Best time series, taking the data from the most recent run available. Regional Ocean Modeling System (ROMS) USE Output from COAWST\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [s_w]):\nCs_w (S-coordinate stretching curves at W-points)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_geoport_0d3e_83f4_179a/index.json", "https://woodshole.er.usgs.gov/project-pages/cccp/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_geoport_0d3e_83f4_179a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_geoport_0d3e_83f4_179a&showErrors=false&email=", "USGS", "whoi_geoport_0d3e_83f4_179a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_e8ff_151c_42d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_e8ff_151c_42d3.graph", "", "", "public", "USGS COAWST Forecast, US East Coast and Gulf of Mexico (Experimental) (coawst 4 use best) [time], 2013-present", "Coupled Ocean-Atmosphere-Wave-Sediment Transport (COAWST) Forecast System : United States Geological Survey (USGS) : US East Coast and Gulf of Mexico (Experimental). Best time series, taking the data from the most recent run available. Regional Ocean Modeling System (ROMS) USE Output from COAWST\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_geoport_e8ff_151c_42d3/index.json", "https://woodshole.er.usgs.gov/project-pages/cccp/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_geoport_e8ff_151c_42d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_geoport_e8ff_151c_42d3&showErrors=false&email=", "USGS", "whoi_geoport_e8ff_151c_42d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_ed12_89ce_9592", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_ed12_89ce_9592.graph", "", "", "public", "USGS COAWST Forecast, US East Coast and Gulf of Mexico (Experimental) (coawst 4 use best) [time][eta_rho][xi_rho], 2013-present", "Coupled Ocean-Atmosphere-Wave-Sediment Transport (COAWST) Forecast System : United States Geological Survey (USGS) : US East Coast and Gulf of Mexico (Experimental). Best time series, taking the data from the most recent run available. Regional Ocean Modeling System (ROMS) USE Output from COAWST\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][eta_rho][xi_rho]):\nwetdry_mask_rho (wet/dry mask on RHO-points)\nzeta (free-surface, meter)\nUwind (surface u-wind component, meter second-1)\nVwind (surface v-wind component, meter second-1)\nshflux (surface net heat flux, watt meter-2)\nssflux (surface net salt flux, (E-P)*SALT, meter second-1)\nlatent (net latent heat flux, watt meter-2)\nsensible (net sensible heat flux, watt meter-2)\nlwrad (net longwave radiation flux, watt meter-2)\nevaporation (evaporation rate, kilogram meter-2 second-1)\nrain (rain fall rate, kilogram meter-2 second-1)\nswrad (solar shortwave radiation flux, watt meter-2)\nuWave (coupling vertically integrated u-momentum component, meter second-1)\nvWave (coupling vertically integrated v-momentum component, meter second-1)\nbustrc (current-induced, bottom u-momentum stress, newton meter-2)\nbvstrc (current-induced, bottom v-momentum stress, newton meter-2)\nbustrw (wind-induced, bottom u-momentum stress, newton meter-2)\nbvstrw (wind-induced, bottom v-momentum stress, newton meter-2)\nbstrcwmax (max wave and current bottom stress magnitude, newton meter-2)\ngrain_diameter (sediment median grain diameter size, meter)\ngrain_density (sediment median grain density, kilogram meter3)\nsettling_vel (sediment median grain settling velocity, meter second-1)\nerosion_stress (sediment median critical erosion stress, newton meter-2)\nripple_length (bottom ripple length, meter)\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_geoport_ed12_89ce_9592/index.json", "https://woodshole.er.usgs.gov/project-pages/cccp/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_geoport_ed12_89ce_9592.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_geoport_ed12_89ce_9592&showErrors=false&email=", "USGS", "whoi_geoport_ed12_89ce_9592"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_61c3_0b5d_cd61", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_61c3_0b5d_cd61.graph", "", "", "public", "USGS COAWST Forecast, US East Coast and Gulf of Mexico (Experimental) (coawst 4 use best) [time][eta_u][xi_u], 2013-present", "Coupled Ocean-Atmosphere-Wave-Sediment Transport (COAWST) Forecast System : United States Geological Survey (USGS) : US East Coast and Gulf of Mexico (Experimental). Best time series, taking the data from the most recent run available. Regional Ocean Modeling System (ROMS) USE Output from COAWST\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][eta_u][xi_u]):\nwetdry_mask_u (wet/dry mask on U-points)\nubar (vertically integrated u-momentum component, meter second-1)\nsustr (surface u-momentum stress, newton meter-2)\nbedload_Usand_01 (bed load flux of sand in U-direction, size class 01, kilogram meter-1 s-1)\nbedload_Usand_02 (bed load flux of sand in U-direction, size class 02, kilogram meter-1 s-1)\nbedload_Usand_03 (bed load flux of sand in U-direction, size class 03, kilogram meter-1 s-1)\nbedload_Usand_04 (bed load flux of sand in U-direction, size class 04, kilogram meter-1 s-1)\nbedload_Usand_05 (bed load flux of sand in U-direction, size class 05, kilogram meter-1 s-1)\nbedload_Usand_06 (bed load flux of sand in U-direction, size class 06, kilogram meter-1 s-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_geoport_61c3_0b5d_cd61/index.json", "https://woodshole.er.usgs.gov/project-pages/cccp/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_geoport_61c3_0b5d_cd61.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_geoport_61c3_0b5d_cd61&showErrors=false&email=", "USGS", "whoi_geoport_61c3_0b5d_cd61"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_62d0_9d64_c8ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_62d0_9d64_c8ff.graph", "", "", "public", "USGS COAWST Forecast, US East Coast and Gulf of Mexico (Experimental) (coawst 4 use best) [time][eta_v][xi_v], 2013-present", "Coupled Ocean-Atmosphere-Wave-Sediment Transport (COAWST) Forecast System : United States Geological Survey (USGS) : US East Coast and Gulf of Mexico (Experimental). Best time series, taking the data from the most recent run available. Regional Ocean Modeling System (ROMS) USE Output from COAWST\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][eta_v][xi_v]):\nwetdry_mask_v (wet/dry mask on V-points)\nvbar (vertically integrated v-momentum component, meter second-1)\nsvstr (surface v-momentum stress, newton meter-2)\nbedload_Vsand_01 (bed load flux of sand in V-direction, size class 01, kilogram meter-1 s-1)\nbedload_Vsand_02 (bed load flux of sand in V-direction, size class 02, kilogram meter-1 s-1)\nbedload_Vsand_03 (bed load flux of sand in V-direction, size class 03, kilogram meter-1 s-1)\nbedload_Vsand_04 (bed load flux of sand in V-direction, size class 04, kilogram meter-1 s-1)\nbedload_Vsand_05 (bed load flux of sand in V-direction, size class 05, kilogram meter-1 s-1)\nbedload_Vsand_06 (bed load flux of sand in V-direction, size class 06, kilogram meter-1 s-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_geoport_62d0_9d64_c8ff/index.json", "https://woodshole.er.usgs.gov/project-pages/cccp/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_geoport_62d0_9d64_c8ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_geoport_62d0_9d64_c8ff&showErrors=false&email=", "USGS", "whoi_geoport_62d0_9d64_c8ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_a4fb_2c9c_16a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_a4fb_2c9c_16a7.graph", "", "", "public", "USGS COAWST Forecast, US East Coast and Gulf of Mexico (Experimental) (coawst 4 use best) [time][Nbed][eta_rho][xi_rho], 2013-present", "Coupled Ocean-Atmosphere-Wave-Sediment Transport (COAWST) Forecast System : United States Geological Survey (USGS) : US East Coast and Gulf of Mexico (Experimental). Best time series, taking the data from the most recent run available. Regional Ocean Modeling System (ROMS) USE Output from COAWST\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][Nbed][eta_rho][xi_rho]):\nsandfrac_01 (noncohesive sediment fraction, size class 01)\nsandfrac_02 (noncohesive sediment fraction, size class 02)\nsandfrac_03 (noncohesive sediment fraction, size class 03)\nsandfrac_04 (noncohesive sediment fraction, size class 04)\nsandfrac_05 (noncohesive sediment fraction, size class 05)\nsandfrac_06 (noncohesive sediment fraction, size class 06)\nsandmass_01 (noncohesive sediment mass, size class 01, kilogram meter-2)\nsandmass_02 (noncohesive sediment mass, size class 02, kilogram meter-2)\nsandmass_03 (noncohesive sediment mass, size class 03, kilogram meter-2)\nsandmass_04 (noncohesive sediment mass, size class 04, kilogram meter-2)\nsandmass_05 (noncohesive sediment mass, size class 05, kilogram meter-2)\nsandmass_06 (noncohesive sediment mass, size class 06, kilogram meter-2)\nbed_thickness (sediment bed layer thickness, meter)\nbed_age (sediment layer age, seconds)\nbed_porosity (sediment layer porosity)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_geoport_a4fb_2c9c_16a7/index.json", "https://woodshole.er.usgs.gov/project-pages/cccp/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_geoport_a4fb_2c9c_16a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_geoport_a4fb_2c9c_16a7&showErrors=false&email=", "USGS", "whoi_geoport_a4fb_2c9c_16a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_7dd7_db97_4bbe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_7dd7_db97_4bbe.graph", "", "", "public", "USGS COAWST Forecast, US East Coast and Gulf of Mexico (Experimental) (coawst 4 use best) [time][s_rho][eta_rho][xi_rho], 2013-present", "Coupled Ocean-Atmosphere-Wave-Sediment Transport (COAWST) Forecast System : United States Geological Survey (USGS) : US East Coast and Gulf of Mexico (Experimental). Best time series, taking the data from the most recent run available. Regional Ocean Modeling System (ROMS) USE Output from COAWST\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][s_rho][eta_rho][xi_rho]):\ntemp (potential temperature, degree_C)\nsalt (salinity, PSU)\nsand_01 (suspended noncohesive sediment, size class 01, kilogram meter-3)\nsand_02 (suspended noncohesive sediment, size class 02, kilogram meter-3)\nsand_03 (suspended noncohesive sediment, size class 03, kilogram meter-3)\nsand_04 (suspended noncohesive sediment, size class 04, kilogram meter-3)\nsand_05 (suspended noncohesive sediment, size class 05, kilogram meter-3)\nsand_06 (suspended noncohesive sediment, size class 06, kilogram meter-3)\nrho (density anomaly, kilogram meter-3)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_geoport_7dd7_db97_4bbe/index.json", "https://woodshole.er.usgs.gov/project-pages/cccp/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_geoport_7dd7_db97_4bbe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_geoport_7dd7_db97_4bbe&showErrors=false&email=", "USGS", "whoi_geoport_7dd7_db97_4bbe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_7cd4_8c8c_5532", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_7cd4_8c8c_5532.graph", "", "", "public", "USGS COAWST Forecast, US East Coast and Gulf of Mexico (Experimental) (coawst 4 use best) [time][s_rho][eta_u][xi_u], 2013-present", "Coupled Ocean-Atmosphere-Wave-Sediment Transport (COAWST) Forecast System : United States Geological Survey (USGS) : US East Coast and Gulf of Mexico (Experimental). Best time series, taking the data from the most recent run available. Regional Ocean Modeling System (ROMS) USE Output from COAWST\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][s_rho][eta_u][xi_u]):\nu (u-momentum component, meter second-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_geoport_7cd4_8c8c_5532/index.json", "https://woodshole.er.usgs.gov/project-pages/cccp/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_geoport_7cd4_8c8c_5532.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_geoport_7cd4_8c8c_5532&showErrors=false&email=", "USGS", "whoi_geoport_7cd4_8c8c_5532"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_28ad_ca57_85a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_28ad_ca57_85a1.graph", "", "", "public", "USGS COAWST Forecast, US East Coast and Gulf of Mexico (Experimental) (coawst 4 use best) [time][s_rho][eta_v][xi_v], 2013-present", "Coupled Ocean-Atmosphere-Wave-Sediment Transport (COAWST) Forecast System : United States Geological Survey (USGS) : US East Coast and Gulf of Mexico (Experimental). Best time series, taking the data from the most recent run available. Regional Ocean Modeling System (ROMS) USE Output from COAWST\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][s_rho][eta_v][xi_v]):\nv (v-momentum component, meter second-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_geoport_28ad_ca57_85a1/index.json", "https://woodshole.er.usgs.gov/project-pages/cccp/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_geoport_28ad_ca57_85a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_geoport_28ad_ca57_85a1&showErrors=false&email=", "USGS", "whoi_geoport_28ad_ca57_85a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_886b_1881_cce2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_886b_1881_cce2.graph", "", "", "public", "USGS COAWST Forecast, US East Coast and Gulf of Mexico (Experimental) (coawst 4 use best) [time][s_w][eta_rho][xi_rho], 2013-present", "Coupled Ocean-Atmosphere-Wave-Sediment Transport (COAWST) Forecast System : United States Geological Survey (USGS) : US East Coast and Gulf of Mexico (Experimental). Best time series, taking the data from the most recent run available. Regional Ocean Modeling System (ROMS) USE Output from COAWST\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][s_w][eta_rho][xi_rho]):\nw (vertical momentum component, meter second-1)\nAKv (vertical viscosity coefficient, meter2 second-1)\nAKt (temperature vertical diffusion coefficient, meter2 second-1)\nAKs (salinity vertical diffusion coefficient, meter2 second-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_geoport_886b_1881_cce2/index.json", "https://woodshole.er.usgs.gov/project-pages/cccp/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_geoport_886b_1881_cce2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_geoport_886b_1881_cce2&showErrors=false&email=", "USGS", "whoi_geoport_886b_1881_cce2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_88a3_6c45_fd99", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_88a3_6c45_fd99.graph", "", "", "public", "USGS COAWST Forecast, US East Coast and Gulf of Mexico (Experimental) (coawst 4 use best) [tracer]", "Coupled Ocean-Atmosphere-Wave-Sediment Transport (COAWST) Forecast System : United States Geological Survey (USGS) : US East Coast and Gulf of Mexico (Experimental). Best time series, taking the data from the most recent run available. Regional Ocean Modeling System (ROMS) USE Output from COAWST\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [tracer]):\nAkt_bak (background vertical mixing coefficient for tracers, meter2 second-1)\nTnudg (Tracers nudging/relaxation inverse time scale, day-1)\nLtracerSrc (tracer point sources and sink activation switch)\nLtracerCLM (tracer climatology processing switch)\nLnudgeTCLM (tracer climatology nudging activation switch)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_geoport_88a3_6c45_fd99/index.json", "https://woodshole.er.usgs.gov/project-pages/cccp/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_geoport_88a3_6c45_fd99.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_geoport_88a3_6c45_fd99&showErrors=false&email=", "USGS", "whoi_geoport_88a3_6c45_fd99"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3b29_afb1_adbc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3b29_afb1_adbc.graph", "", "", "public", "VIIRS SST NPP NAR-OSISAF-L3C-v1.0 (SST) [nj][ni]", "Sea Surface Temperature. The NAR L3C product derived from National Polar-orbiting Partnership (NPP) Visible and Infrared Imager/Radiometer Suite (VIIRS) brightness temperatures. (VIIRS SST NPP NAR-Ocean and Sea Ice Satellite Application Facility (OSISAF)-L3C-v1.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nj][ni]):\nlat (latitude, degrees_north)\nlon (longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_3b29_afb1_adbc/index.json", "https://podaac.jpl.nasa.gov/dataset/VIIRS_SST_NPP_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_3b29_afb1_adbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_3b29_afb1_adbc&showErrors=false&email=", "OSISAF", "nasa_jpl_3b29_afb1_adbc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_aab8_25ea_03f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_aab8_25ea_03f0.graph", "", "", "public", "VIIRS SST NPP NAR-OSISAF-L3C-v1.0 (SST) [time][nj][ni]", "Sea Surface Temperature. The NAR L3C product derived from National Polar-orbiting Partnership (NPP) Visible and Infrared Imager/Radiometer Suite (VIIRS) brightness temperatures. (VIIRS SST NPP NAR-Ocean and Sea Ice Satellite Application Facility (OSISAF)-L3C-v1.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][nj][ni]):\nsea_surface_temperature (sea surface subskin temperature, degree_C)\nsst_dtime (time difference from reference time, seconds)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (deviation from SST analysis or reference climatology, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nadi_dtime_from_sst (time difference of ADI data from sst measurement, hour)\nsources_of_adi (sources of aerosol dynamic indicator)\nl2p_flags\nquality_level (quality level of SST pixel)\nsatellite_zenith_angle (angular_degree)\nsolar_zenith_angle (angular_degree)\nor_latitude (original latitude of the SST value, degrees_north)\nor_longitude (original longitude of the SST value, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_aab8_25ea_03f0/index.json", "https://podaac.jpl.nasa.gov/dataset/VIIRS_SST_NPP_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_aab8_25ea_03f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_aab8_25ea_03f0&showErrors=false&email=", "OSISAF", "nasa_jpl_aab8_25ea_03f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHchla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHchla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHchla8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Chlorophyll a, OC3 Algorithm, 2012-2014, DEPRECATED OLDER VERSION, 8-Day", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll a, OC3 Algorithm, 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchla (Mean Chlorophyll a Concentration, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHchla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHchla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHchla8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHchla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHchla8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHchla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHchla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHchla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHchla1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Chlorophyll a, OC3 Algorithm, 2012-2014, DEPRECATED OLDER VERSION, Daily", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll a, OC3 Algorithm, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchla (Mean Chlorophyll a Concentration, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHchla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHchla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHchla1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHchla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHchla1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHchla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHchlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHchlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHchlamday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Chlorophyll a, OC3 Algorithm, 2012-2014, DEPRECATED OLDER VERSION, Monthly", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll a, OC3 Algorithm, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchla (Mean Chlorophyll a Concentration, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHchlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHchlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHchlamday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHchlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHchlamday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHchlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2chla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2chla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2chla8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Chlorophyll a, OCI Algorithm, 2012-2016, 8-Day, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll a, OCI Algorithm, 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchla (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2chla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2chla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2chla8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2chla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2chla8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2chla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2chla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2chla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2chla1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Chlorophyll a, OCI Algorithm, 2012-2016, Daily, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll a, OCI Algorithm, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchla (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2chla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2chla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2chla1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2chla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2chla1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2chla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2chlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2chlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2chlamday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Chlorophyll a, OCI Algorithm, 2012-2016, Monthly, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll a, OCI Algorithm, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchla (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2chlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2chlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2chlamday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2chlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2chlamday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2chlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHk4908day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHk4908day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHk4908day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, K490, 2012-2014, DEPRECATED OLDER VERSION, 8-Day", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Diffuse Attenuation Coefficient K490, 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHk4908day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHk4908day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHk4908day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHk4908day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHk4908day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHk4908day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHk4901day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHk4901day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHk4901day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, K490, 2012-2014, DEPRECATED OLDER VERSION, Daily", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image, Global, 4km, Diffuse Attenuation Coefficient K490, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHk4901day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHk4901day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHk4901day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHk4901day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHk4901day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHk4901day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHk490mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHk490mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHk490mday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, K490, 2012-2014, DEPRECATED OLDER VERSION, Monthly", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Diffuse Attenuation Coefficient K490, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHk490mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHk490mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHk490mday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHk490mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHk490mday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHk490mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2k4908day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2k4908day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2k4908day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, K490, 2012-2016, 8-Day, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Diffuse Attenuation Coefficient K490, 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2k4908day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2k4908day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2k4908day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2k4908day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2k4908day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2k4908day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2k4901day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2k4901day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2k4901day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, K490, 2012-2016, Daily, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Diffuse Attenuation Coefficient K490, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2k4901day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2k4901day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2k4901day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2k4901day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2k4901day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2k4901day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2k490mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2k490mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2k490mday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, K490, 2012-2016, Monthly, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Diffuse Attenuation Coefficient K490, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2k490mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2k490mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2k490mday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2k490mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2k490mday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2k490mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpar8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpar8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHpar8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PAR, 2012-2014, DEPRECATED OLDER VERSION, 8-Day", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Photosynthetically Available Radiation (PAR), 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m^-2 d^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHpar8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHpar8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHpar8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHpar8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHpar8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHpar8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpar1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpar1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHpar1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PAR, 2012-2014, DEPRECATED OLDER VERSION, Daily", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Photosynthetically Available Radiation (PAR), Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m^-2 d^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHpar1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHpar1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHpar1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHpar1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHpar1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHpar1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHparmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHparmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHparmday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PAR, 2012-2014, DEPRECATED OLDER VERSION, Monthly", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Photosynthetically Available Radiation (PAR), Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m^-2 d^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHparmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHparmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHparmday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHparmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHparmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHparmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2par8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2par8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2par8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PAR, 2012-2016, 8-Day, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Photosynthetically Available Radiation (PAR), 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, einstein m^-2 day^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2par8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2par8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2par8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2par8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2par8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2par8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2par1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2par1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2par1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PAR, 2012-2016, Daily, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Photosynthetically Available Radiation (PAR), Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, einstein m^-2 day^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2par1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2par1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2par1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2par1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2par1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2par1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2parmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2parmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2parmday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PAR, 2012-2016, Monthly, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Photosynthetically Available Radiation (PAR), Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, einstein m^-2 day^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2parmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2parmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2parmday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2parmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2parmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2parmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpic8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpic8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHpic8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PIC, 2012-2014, DEPRECATED OLDER VERSION, 8-Day", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC), 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Particulate Inorganic Carbon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHpic8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHpic8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHpic8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHpic8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHpic8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHpic8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpic1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpic1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHpic1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PIC, 2012-2014, DEPRECATED OLDER VERSION, Daily", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC), Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Particulate Inorganic Carbon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHpic1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHpic1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHpic1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHpic1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHpic1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHpic1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpicmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpicmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHpicmday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PIC, 2012-2014, DEPRECATED OLDER VERSION, Monthly", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC), Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Particulate Inorganic Carbon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHpicmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHpicmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHpicmday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHpicmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHpicmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHpicmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2pic8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2pic8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2pic8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PIC, 2012-2016, 8-Day, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC), 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Particulate Inorganic Carbon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2pic8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2pic8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2pic8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2pic8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2pic8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2pic8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2pic1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2pic1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2pic1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PIC, 2012-2016, Daily, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC), Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Particulate Inorganic Carbon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2pic1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2pic1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2pic1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2pic1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2pic1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2pic1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2picmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2picmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2picmday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PIC, 2012-2016, Monthly, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC), Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Particulate Inorganic Carbon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2picmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2picmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2picmday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2picmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2picmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2picmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpoc8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpoc8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHpoc8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, POC, 2012-2014, DEPRECATED OLDER VERSION, 8-Day", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC), 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHpoc8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHpoc8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHpoc8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHpoc8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHpoc8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHpoc8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpoc1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpoc1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHpoc1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, POC, 2012-2014, DEPRECATED OLDER VERSION, Daily", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC), Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHpoc1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHpoc1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHpoc1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHpoc1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHpoc1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHpoc1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpocmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpocmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHpocmday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, POC, 2012-2014, DEPRECATED OLDER VERSION, Monthly", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC), Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHpocmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHpocmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHpocmday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHpocmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHpocmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHpocmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2poc8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2poc8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2poc8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, POC, 2012-2016, 8-Day, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC), 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2poc8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2poc8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2poc8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2poc8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2poc8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2poc8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2poc1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2poc1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2poc1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, POC, 2012-2016, Daily, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC), Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2poc1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2poc1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2poc1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2poc1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2poc1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2poc1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2pocmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2pocmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2pocmday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, POC, 2012-2016, Monthly, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC), Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2pocmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2pocmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2pocmday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2pocmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2pocmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2pocmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHr6718day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHr6718day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHr6718day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Reflectance at 671 nm, 2012-2014, DEPRECATED OLDER VERSION, 8-Day", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Remote Sensing Reflectance at 671 nm, 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nr671 (Remote Sensing Reflectance at 671 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHr6718day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHr6718day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHr6718day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHr6718day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHr6718day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHr6718day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHr6711day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHr6711day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHr6711day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Reflectance at 671 nm, 2012-2014, DEPRECATED OLDER VERSION, Daily", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Remote Sensing Reflectance at 671 nm, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nr671 (Remote Sensing Reflectance at 671 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHr6711day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHr6711day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHr6711day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHr6711day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHr6711day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHr6711day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHr671mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHr671mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHr671mday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Reflectance at 671 nm, 2012-2014, DEPRECATED OLDER VERSION, Monthly", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Remote Sensing Reflectance at 671 nm, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nr671 (Remote Sensing Reflectance at 671 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHr671mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHr671mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHr671mday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHr671mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHr671mday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHr671mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2r6718day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2r6718day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2r6718day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Reflectance at 671 nm, 2012-2016, 8-Day, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Remote Sensing Reflectance at 671 nm, 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nr671 (Remote sensing reflectance at 671 nm, sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2r6718day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2r6718day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2r6718day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2r6718day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2r6718day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2r6718day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2r6711day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2r6711day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2r6711day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Reflectance at 671 nm, 2012-2016, Daily, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Remote Sensing Reflectance at 671 nm, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nr671 (Remote sensing reflectance at 671 nm, sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2r6711day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2r6711day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2r6711day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2r6711day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2r6711day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2r6711day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2r671mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2r671mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2r671mday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Reflectance at 671 nm, 2012-2016, Monthly, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Remote Sensing Reflectance at 671 nm, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nr671 (Remote sensing reflectance at 671 nm, sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2r671mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2r671mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2r671mday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2r671mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2r671mday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2r671mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018chla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018chla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018chla8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, Chlorophyll a, OCI Algorithm, R2018, 2012-present, 8-Day", "R2018 version of Level-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll a, OCI Algorithm, 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchla (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018chla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018chla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018chla8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018chla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018chla8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018chla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018chla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018chla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018chla1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, Chlorophyll a, OCI Algorithm, R2018, 2012-present, Daily", "R2018 version of Level-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll a, OCI Algorithm, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchla (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018chla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018chla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018chla1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018chla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018chla1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018chla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018chlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018chlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018chlamday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, Chlorophyll a, OCI Algorithm, R2018, 2012-present, Monthly", "R2018 version of Level-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll a, OCI Algorithm, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchla (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018chlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018chlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018chlamday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018chlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018chlamday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018chlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3chla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3chla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3chla8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, Chlorophyll a, OCI Algorithm, v2016, 2012-2017, 8-Day, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll a, OCI Algorithm, 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchla (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3chla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3chla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3chla8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3chla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3chla8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3chla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3chla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3chla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3chla1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, Chlorophyll a, OCI Algorithm, v2016, 2012-2017, Daily, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll a, OCI Algorithm, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchla (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3chla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3chla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3chla1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3chla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3chla1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3chla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3chlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3chlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3chlamday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, Chlorophyll a, OCI Algorithm, v2016, 2012-2017, Monthly, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll a, OCI Algorithm, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchla (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3chlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3chlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3chlamday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3chlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3chlamday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3chlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018k4908day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018k4908day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018k4908day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, K490, R2018, 2012-present, 8-Day", "R2018 version of Level-3 Standard Mapped Image (SMI), Global, 4km, Diffuse Attenuation Coefficient K490, 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse attenuation coefficient at 490 nm, KD2 algorithm, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018k4908day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018k4908day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018k4908day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018k4908day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018k4908day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018k4908day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018k4901day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018k4901day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018k4901day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, K490, R2018, 2012-present, Daily", "R2018 version of Level-3 Standard Mapped Image (SMI), Global, 4km, Diffuse Attenuation Coefficient K490, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse attenuation coefficient at 490 nm, KD2 algorithm, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018k4901day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018k4901day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018k4901day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018k4901day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018k4901day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018k4901day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018k490mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018k490mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018k490mday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, K490, R2018, 2012-present, Monthly", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Diffuse Attenuation Coefficient K490, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse attenuation coefficient at 490 nm, KD2 algorithm, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018k490mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018k490mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018k490mday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018k490mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018k490mday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018k490mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3k4908day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3k4908day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3k4908day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, K490, v2016, 2012-2017, 8-Day, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Diffuse Attenuation Coefficient K490, 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse attenuation coefficient at 490 nm, KD2 algorithm, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3k4908day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3k4908day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3k4908day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3k4908day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3k4908day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3k4908day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3k4901day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3k4901day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3k4901day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, K490, v2016, 2012-2017, Daily, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Diffuse Attenuation Coefficient K490, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse attenuation coefficient at 490 nm, KD2 algorithm, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3k4901day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3k4901day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3k4901day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3k4901day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3k4901day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3k4901day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3k490mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3k490mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3k490mday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, K490, v2016, 2012-2017, Monthly, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Diffuse Attenuation Coefficient K490, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse attenuation coefficient at 490 nm, KD2 algorithm, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3k490mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3k490mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3k490mday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3k490mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3k490mday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3k490mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018par8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018par8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018par8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, PAR, R2018, 2012-present, 8-Day", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Photosynthetically Available Radiation (PAR), 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, R. Frouin, einstein m^-2 day^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018par8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018par8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018par8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018par8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018par8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018par8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018par1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018par1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018par1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, PAR, R2018, 2012-present, Daily", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Photosynthetically Available Radiation (PAR), Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, R. Frouin, einstein m^-2 day^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018par1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018par1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018par1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018par1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018par1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018par1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018parmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018parmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018parmday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, PAR, R2018, 2012-present, Monthly", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Photosynthetically Available Radiation (PAR), Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, R. Frouin, einstein m^-2 day^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018parmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018parmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018parmday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018parmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018parmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018parmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3par8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3par8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3par8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, PAR, v2016, 2012-2017, 8-Day, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Photosynthetically Available Radiation (PAR), 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, R. Frouin, einstein m^-2 day^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3par8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3par8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3par8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3par8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3par8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3par8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3par1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3par1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3par1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, PAR, v2016, 2012-2017, Daily, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Photosynthetically Available Radiation (PAR), Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, R. Frouin, einstein m^-2 day^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3par1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3par1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3par1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3par1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3par1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3par1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3parmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3parmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3parmday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, PAR, v2016, 2012-2017, Monthly, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Photosynthetically Available Radiation (PAR), Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, R. Frouin, einstein m^-2 day^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3parmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3parmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3parmday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3parmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3parmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3parmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018pic8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018pic8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018pic8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, PIC, R2018, 2012-present, 8-Day", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC), 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Calcite Concentration, Balch and Gordon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018pic8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018pic8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018pic8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018pic8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018pic8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018pic8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018pic1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018pic1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018pic1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, PIC, R2018, 2012-present, Daily", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC), Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Calcite Concentration, Balch and Gordon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018pic1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018pic1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018pic1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018pic1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018pic1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018pic1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018picmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018picmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018picmday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, PIC, R2018, 2012-present, Monthly", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC), Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Calcite Concentration, Balch and Gordon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018picmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018picmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018picmday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018picmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018picmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018picmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3pic8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3pic8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3pic8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, PIC, v2016, 2012-2017, 8-Day, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC), 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Calcite Concentration, Balch and Gordon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3pic8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3pic8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3pic8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3pic8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3pic8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3pic8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3pic1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3pic1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3pic1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, PIC, v2016, 2012-2017, Daily, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC), Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Calcite Concentration, Balch and Gordon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3pic1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3pic1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3pic1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3pic1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3pic1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3pic1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3picmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3picmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3picmday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, PIC, v2016, 2012-2017, Monthly, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC), Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Calcite Concentration, Balch and Gordon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3picmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3picmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3picmday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3picmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3picmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3picmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018poc8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018poc8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018poc8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, POC, R2018, 2012-present, 8-Day", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC), 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, D. Stramski, 2007 (443/555 version), mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018poc8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018poc8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018poc8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018poc8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018poc8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018poc8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018poc1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018poc1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018poc1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, POC, R2018, 2012-present, Daily", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC), Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, D. Stramski, 2007 (443/555 version), mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018poc1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018poc1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018poc1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018poc1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018poc1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018poc1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018pocmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018pocmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018pocmday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, POC, R2018, 2012-present, Monthly", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC), Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, D. Stramski, 2007 (443/555 version), mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018pocmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018pocmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018pocmday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018pocmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018pocmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018pocmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3poc8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3poc8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3poc8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, POC, v2016, 2012-2017, 8-Day, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC), 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, D. Stramski, 2007 (443/555 version), mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3poc8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3poc8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3poc8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3poc8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3poc8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3poc8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3poc1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3poc1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3poc1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, POC, v2016, 2012-2017, Daily, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC), Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, D. Stramski, 2007 (443/555 version), mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3poc1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3poc1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3poc1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3poc1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3poc1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3poc1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3pocmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3pocmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3pocmday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, POC, v2016, 2012-2017, Monthly, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC), Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, D. Stramski, 2007 (443/555 version), mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3pocmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3pocmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3pocmday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3pocmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3pocmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3pocmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018r6718day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018r6718day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018r6718day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, Reflectance at 671 nm, R2018, 2012-present, 8-Day", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Remote Sensing Reflectance at 671 nm, 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nr671 (Remote sensing reflectance at 671 nm, sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018r6718day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018r6718day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018r6718day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018r6718day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018r6718day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018r6718day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018r6711day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018r6711day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018r6711day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, Reflectance at 671 nm, R2018, 2012-present, Daily", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Remote Sensing Reflectance at 671 nm, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nr671 (Remote sensing reflectance at 671 nm, sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018r6711day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018r6711day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018r6711day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018r6711day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018r6711day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018r6711day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018r671mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018r671mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018r671mday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, Reflectance at 671 nm, R2018, 2012-present, Monthly", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Remote Sensing Reflectance at 671 nm, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nr671 (Remote sensing reflectance at 671 nm, sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018r671mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018r671mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018r671mday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018r671mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018r671mday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018r671mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3r6718day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3r6718day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3r6718day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, Reflectance at 671 nm, v2016, 2012-2017, 8-Day, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Remote Sensing Reflectance at 671 nm, 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nr671 (Remote sensing reflectance at 671 nm, sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3r6718day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3r6718day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3r6718day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3r6718day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3r6718day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3r6718day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3r6711day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3r6711day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3r6711day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, Reflectance at 671 nm, v2016, 2012-2017, Daily, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Remote Sensing Reflectance at 671 nm, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nr671 (Remote sensing reflectance at 671 nm, sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3r6711day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3r6711day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3r6711day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3r6711day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3r6711day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3r6711day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3r671mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3r671mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3r671mday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, Reflectance at 671 nm, v2016, 2012-2017, Monthly, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Remote Sensing Reflectance at 671 nm, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nr671 (Remote sensing reflectance at 671 nm, sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3r671mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3r671mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3r671mday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3r671mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3r671mday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3r671mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_56d7_efeb_5e2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_56d7_efeb_5e2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_56d7_efeb_5e2d/request", "", "public", "Virginia Beach Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, VirginiaBeachVA A)", "Virginia Beach Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_56d7_efeb_5e2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_56d7_efeb_5e2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_56d7_efeb_5e2d/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_56d7_efeb_5e2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_56d7_efeb_5e2d&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_56d7_efeb_5e2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4574_c78c_9a4b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_4574_c78c_9a4b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_4574_c78c_9a4b/request", "", "public", "Virginia Beach Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, VirginiaBeachVA B), 0.005\u00b0", "Virginia Beach Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_4574_c78c_9a4b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_4574_c78c_9a4b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_4574_c78c_9a4b/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_4574_c78c_9a4b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_4574_c78c_9a4b&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_4574_c78c_9a4b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c613_4188_08a3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c613_4188_08a3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c613_4188_08a3/request", "", "public", "Virginia Beach Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, VirginiaBeachVA C)", "Virginia Beach Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c613_4188_08a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c613_4188_08a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c613_4188_08a3/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c613_4188_08a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c613_4188_08a3&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_c613_4188_08a3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b5d6_371d_1c9c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_b5d6_371d_1c9c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_b5d6_371d_1c9c/request", "", "public", "Virginia Beach, Virginia Coastal Digital Elevation Model (virginia beach 13 mhw 2007), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_b5d6_371d_1c9c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_b5d6_371d_1c9c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_b5d6_371d_1c9c/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_b5d6_371d_1c9c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_b5d6_371d_1c9c&showErrors=false&email=", "NOAA", "noaa_ngdc_b5d6_371d_1c9c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_soest_d70c_7d79_1c8f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_soest_d70c_7d79_1c8f.graph", "", "", "public", "Vog Measurement and Prediction Project (VMAP) Regional Forecast Model: Main Hawaiian Islands, 0.01\u00b0, 2015", "The Vog Measurement and Prediction Project (VMAP) provides twice-daily forecasts of vog (volcanic smog) for the region surrounding the main Hawaiian islands at approximately 1-km resolution. Generated using the HYbrid Single-Particle Lagrangian Integrated Trajectory (HYSPLIT) numerical dispersion model, VMAP uses estimates of volcano emissions along with forecast winds to predict the concentrations of sulfur dioxide gas (SO2) and sulfate aerosol particles (SO4) averaged over the lowest 100-m of the atmosphere downwind of the ongoing Kilauea eruption on Hawaii Island. Wind fields and thermodynamic forecast data produced by the Mauna Kea Weather Center (MKWC) from the state-of-the-art Weather Research and Forecast (Weather Research and Forecasting Model (WRF)) model, with a statewide resolution of 4.5 km, provide input for the HYSPLIT model. A combination of remote sensing and in situ observations are used to provide initial conditions regarding volcanic emissions and to validate the model simulations. Vog is a form of air pollution that results from volcanic emissions that is primarily a mixture of SO2 gas and SO4 aerosol. SO2 (invisible) reacts with oxygen and moisture in the air to produce SO4 aerosol (visible). SO2 is expected to be the main problem in areas near the vent (Hawaii Volcanoes National Park) while SO4 aerosol is expected to be the main problem at locations far from the vent (Kona and farther north and west).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nso4 (sulfate (SO4) concentration averaged between 0 m and 100 m, ug/m3)\nso2 (sulfur dioxide (SO2) concentration averaged between 0 m and 100 m, ppm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d70c_7d79_1c8f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d70c_7d79_1c8f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d70c_7d79_1c8f/index.json", "http://weather.hawaii.edu/vmap/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d70c_7d79_1c8f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d70c_7d79_1c8f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d70c_7d79_1c8f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c412_a344_b84d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c412_a344_b84d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c412_a344_b84d/request", "", "public", "Wake Island Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, WakeIsland A), 0.008333333\u00b0", "Wake Island Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c412_a344_b84d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c412_a344_b84d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c412_a344_b84d/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c412_a344_b84d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c412_a344_b84d&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_c412_a344_b84d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bf55_3818_fd2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_bf55_3818_fd2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_bf55_3818_fd2d/request", "", "public", "Wake Island Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, WakeIsland B), 8.333333E-4\u00b0", "Wake Island Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_bf55_3818_fd2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_bf55_3818_fd2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_bf55_3818_fd2d/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_bf55_3818_fd2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_bf55_3818_fd2d&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_bf55_3818_fd2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7747_6122_6d2b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_7747_6122_6d2b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_7747_6122_6d2b/request", "", "public", "Wake Island Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, WakeIsland C), 2.7777778E-4\u00b0", "Wake Island Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_7747_6122_6d2b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_7747_6122_6d2b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_7747_6122_6d2b/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_7747_6122_6d2b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_7747_6122_6d2b&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_7747_6122_6d2b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/NWW3_Global_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/NWW3_Global_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/NWW3_Global_Best/request", "", "public", "WaveWatch III (WW3) Global Wave Model", "Through a collaborative effort with NOAA/NCEP and NWS Honolulu, the University of Hawaii has implemented a global-scale WaveWatch III (WW3) 7-day model with a 5-day hourly forecast at approximately 50-km or 0.5-deg resolution. The global model is forced with NOAA/NCEP's Global Forecast System (GFS) winds. This model is designed to capture the large-scale ocean waves and provide spectral boundary conditions for the Hawaii regional WW3 model. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTdir (peak wave direction, degrees)\nTper (peak wave period, second)\nThgt (significant wave height, meters)\nsdir (swell peak wave direction, degrees)\nsper (swell peak wave period, seconds)\nshgt (swell significant wave height, meters)\nwdir (wind peak wave direction, degrees)\nwper (wind peak wave period, seconds)\nwhgt (wind significant wave height, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/NWW3_Global_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/NWW3_Global_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/NWW3_Global_Best/index.json", "http://www.pacioos.hawaii.edu/waves/model-global/", "http://upwell.pfeg.noaa.gov/erddap/rss/NWW3_Global_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=NWW3_Global_Best&showErrors=false&email=", "University of Hawaii", "NWW3_Global_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/NWW3_Hawaii_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/NWW3_Hawaii_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/NWW3_Hawaii_Best/request", "", "public", "WaveWatch III (WW3) Hawaii Regional Wave Model", "Through a collaborative effort with NOAA/NCEP and NWS Honolulu, the University of Hawaii has implemented a global-scale WaveWatch III (WW3) model, which in turn provides boundary conditions for this Hawaii regional WW3: a 7-day model with a 5-day hourly forecast at approximately 5-km or 0.05-deg resolution. The primary purpose of this regional model is to capture island effects such as island shadowing, refraction, and accurate modeling of local wind waves. Hawaii WW3 is forced with winds from the University of Hawaii Meteorology Department's operational mesoscale model, which has a more suitable spatial resolution than the global scale wind field. The Hawaii regional WW3 also provides boundary conditions for nearshore island-scale models via Simulating WAves Nearshore (SWAN). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTdir (peak wave direction, degrees)\nTper (peak wave period, second)\nThgt (significant wave height, meters)\nsdir (swell peak wave direction, degrees)\nsper (swell peak wave period, seconds)\nshgt (swell significant wave height, meters)\nwdir (wind peak wave direction, degrees)\nwper (wind peak wave period, seconds)\nwhgt (wind significant wave height, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/NWW3_Hawaii_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/NWW3_Hawaii_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/NWW3_Hawaii_Best/index.json", "http://www.pacioos.hawaii.edu/waves/model-hawaii/", "http://upwell.pfeg.noaa.gov/erddap/rss/NWW3_Hawaii_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=NWW3_Hawaii_Best&showErrors=false&email=", "University of Hawaii", "NWW3_Hawaii_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/NWW3_Mariana_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/NWW3_Mariana_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/NWW3_Mariana_Best/request", "", "public", "WaveWatch III (WW3) Mariana Regional Wave Model", "Through a collaborative effort with NOAA/NCEP and NWS Honolulu, the University of Hawaii has implemented a global-scale WaveWatch III (WW3) model, which in turn provides boundary conditions for this Mariana Islands regional WW3: a 7-day model with a 5-day hourly forecast at approximately 5-km or 0.05-deg resolution. The primary purpose of this regional model is to capture island effects such as island shadowing, refraction, and accurate modeling of local wind waves. The Mariana regional WW3 also provides boundary conditions for nearshore island-scale models via Simulating WAves Nearshore (SWAN). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTdir (peak wave direction, degrees)\nTper (peak wave period, second)\nThgt (significant wave height, meters)\nsdir (swell peak wave direction, degrees)\nsper (swell peak wave period, seconds)\nshgt (swell significant wave height, meters)\nwdir (wind peak wave direction, degrees)\nwper (wind peak wave period, seconds)\nwhgt (wind significant wave height, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/NWW3_Mariana_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/NWW3_Mariana_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/NWW3_Mariana_Best/index.json", "http://www.pacioos.hawaii.edu/waves/model-mariana/", "http://upwell.pfeg.noaa.gov/erddap/rss/NWW3_Mariana_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=NWW3_Mariana_Best&showErrors=false&email=", "University of Hawaii", "NWW3_Mariana_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/NWW3_NWHI_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/NWW3_NWHI_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/NWW3_NWHI_Best/request", "", "public", "WaveWatch III (WW3) Northwestern Hawaiian Islands (NWHI) Regional Wave Model", "Through a collaborative effort with NOAA/NCEP and NWS Honolulu, the University of Hawaii has implemented a global-scale WaveWatch III (WW3) model, which in turn provides boundary conditions for this Northwestern Hawaiian Islands (NWHI) regional WW3: a 7-day model with a 5-day hourly forecast at approximately 5-km or 0.05-deg resolution. The primary purpose of this regional model is to capture island effects such as island shadowing, refraction, and accurate modeling of local wind waves. NWHI WW3 is forced with winds from the University of Hawaii Meteorology Department's operational mesoscale model, which has a more suitable spatial resolution than the global scale wind field. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTdir (peak wave direction, degrees)\nTper (peak wave period, second)\nThgt (significant wave height, meters)\nsdir (swell peak wave direction, degrees)\nsper (swell peak wave period, seconds)\nshgt (swell significant wave height, meters)\nwdir (wind peak wave direction, degrees)\nwper (wind peak wave period, seconds)\nwhgt (wind significant wave height, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/NWW3_NWHI_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/NWW3_NWHI_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/NWW3_NWHI_Best/index.json", "http://www.pacioos.hawaii.edu/waves/model-nwhi/", "http://upwell.pfeg.noaa.gov/erddap/rss/NWW3_NWHI_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=NWW3_NWHI_Best&showErrors=false&email=", "University of Hawaii", "NWW3_NWHI_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/NWW3_Samoa_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/NWW3_Samoa_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/NWW3_Samoa_Best/request", "", "public", "WaveWatch III (WW3) Samoa Regional Wave Model", "Through a collaborative effort with NOAA/NCEP and NWS Honolulu, the University of Hawaii has implemented a global-scale WaveWatch III (WW3) model, which in turn provides boundary conditions for this Samoa regional WW3: a 7-day model with a 5-day hourly forecast at approximately 5-km or 0.05-deg resolution. The primary purpose of this regional model is to capture island effects such as island shadowing, refraction, and accurate modeling of local wind waves. The Samoa regional WW3 also provides boundary conditions for nearshore island-scale models via Simulating WAves Nearshore (SWAN). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTdir (peak wave direction, degrees)\nTper (peak wave period, second)\nThgt (significant wave height, meters)\nsdir (swell peak wave direction, degrees)\nsper (swell peak wave period, seconds)\nshgt (swell significant wave height, meters)\nwdir (wind peak wave direction, degrees)\nwper (wind peak wave period, seconds)\nwhgt (wind significant wave height, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/NWW3_Samoa_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/NWW3_Samoa_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/NWW3_Samoa_Best/index.json", "http://www.pacioos.hawaii.edu/waves/model-samoa/", "http://upwell.pfeg.noaa.gov/erddap/rss/NWW3_Samoa_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=NWW3_Samoa_Best&showErrors=false&email=", "University of Hawaii", "NWW3_Samoa_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_abb0_162c_0f29", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_abb0_162c_0f29.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_abb0_162c_0f29/request", "", "public", "Westport, Washington Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, WestportWA A)", "Westport, Washington Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_abb0_162c_0f29_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_abb0_162c_0f29_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_abb0_162c_0f29/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_abb0_162c_0f29.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_abb0_162c_0f29&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_abb0_162c_0f29"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e355_45d2_2896", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_e355_45d2_2896.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_e355_45d2_2896/request", "", "public", "Westport, Washington Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, WestportWA B), 0.005\u00b0", "Westport, Washington Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_e355_45d2_2896_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_e355_45d2_2896_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_e355_45d2_2896/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_e355_45d2_2896.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_e355_45d2_2896&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_e355_45d2_2896"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_116f_1c7f_8439", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_116f_1c7f_8439.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_116f_1c7f_8439/request", "", "public", "Westport, Washington Tsunami Forecast Grids for MOST Model (Top Dataset, PMEL, WestportWA C)", "Westport, Washington Tsunami Forecast Grids for MOST Model. Pacific Marine Environmental Laboratory (PMEL) Forecast Model Grids provide bathymetric data strictly for tsunami inundation modeling with the Method of Splitting Tsunami (MOST) model. MOST is a suite of numerical simulation codes capable of simulating three processes of tsunami evolution: generation, transoceanic propagation, and inundation of dry land. Tsunami waves are computationally propagated across a set of three nested grids (A, B, and C), each of which is successively finer in resolution, moving from offshore to onshore. Nearshore details are resolved to the point that model output can be directly compared with tide gauge observations and can provide estimates of wave arrival time, wave amplitude and simulation of wave inundation onto dry land.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nbathy (Grid Bathymetry, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_116f_1c7f_8439_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_116f_1c7f_8439_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_116f_1c7f_8439/index.json", "https://nctr.pmel.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_116f_1c7f_8439.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_116f_1c7f_8439&showErrors=false&email=", "NOAA OAR PMEL Center for Tsunami Research", "noaa_ngdc_116f_1c7f_8439"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c804_ac47_b593", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_c804_ac47_b593.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_c804_ac47_b593/request", "", "public", "Whittier, Alaska Coastal Digital Elevation Model (whittier 815 mhhw 2009), 1.4814814E-4\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_c804_ac47_b593_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_c804_ac47_b593_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_c804_ac47_b593/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_c804_ac47_b593.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_c804_ac47_b593&showErrors=false&email=", "NOAA", "noaa_ngdc_c804_ac47_b593"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_21e3_cf91_adce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_21e3_cf91_adce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_21e3_cf91_adce/request", "", "public", "Willapa Bay (P270) Bathymetric Digital Elevation Model (willapa bay P270 2018), 9.259259E-5\u00b0", "National Centers for Environmental Information (NCEI) builds and distributes high-resolution, coastal digital elevation models (DEMs) that integrate ocean bathymetry and land topography to support NOAA's mission to understand and predict changes in Earth's environment, and conserve and manage coastal and marine resources to meet our Nation's economic, social, and environmental needs. DEMs are used for coastal process modeling (tsunami inundation, storm surge, sea-level rise, contaminant dispersal, etc.), ecosystems management and habitat research, coastal and marine spatial planning, and hazard mitigation and community preparedness.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nBand1 (GDAL Band Number 1, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_21e3_cf91_adce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_21e3_cf91_adce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_21e3_cf91_adce/index.json", "https://www.ngdc.noaa.gov/mgg/coastal/coastal.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_21e3_cf91_adce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_21e3_cf91_adce&showErrors=false&email=", "NOAA", "noaa_ngdc_21e3_cf91_adce"] + ] + } + } + recorded_at: 2019-01-31 19:30:16 GMT + recorded_with: vcr/0.2.2, webmockr/0.3.0 diff --git a/tests/vcr_cassettes/ed_datasets_table.yml b/tests/vcr_cassettes/ed_datasets_table.yml new file mode 100644 index 0000000..dfa9eb0 --- /dev/null +++ b/tests/vcr_cassettes/ed_datasets_table.yml @@ -0,0 +1,441 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.7.0.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Thu, 31 Jan 2019 19:30:57 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Thu, 31 Jan 2019 19:30:57 GMT + xdods-server: dods/3.7 + erddap-server: '1.82' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "http://upwell.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_01af_e372_5bb6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_01af_e372_5bb6.graph", "", "", "public", "AIS Ship Traffic: Hawaii: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_01af_e372_5bb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_01af_e372_5bb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_01af_e372_5bb6/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_01af_e372_5bb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_01af_e372_5bb6&showErrors=false&email=", "University of Hawaii", "hawaii_soest_01af_e372_5bb6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f70b_c777_2d0b", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f70b_c777_2d0b.graph", "", "", "public", "AIS Ship Traffic: Johnston Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f70b_c777_2d0b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f70b_c777_2d0b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f70b_c777_2d0b/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f70b_c777_2d0b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f70b_c777_2d0b&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f70b_c777_2d0b"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_be9a_9be0_1f0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_be9a_9be0_1f0a.graph", "", "", "public", "AIS Ship Traffic: Mariana and Wake: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_be9a_9be0_1f0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_be9a_9be0_1f0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_be9a_9be0_1f0a/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_be9a_9be0_1f0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_be9a_9be0_1f0a&showErrors=false&email=", "University of Hawaii", "hawaii_soest_be9a_9be0_1f0a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5742_4f35_ff55", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5742_4f35_ff55.graph", "", "", "public", "AIS Ship Traffic: Rose Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5742_4f35_ff55_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5742_4f35_ff55_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5742_4f35_ff55/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5742_4f35_ff55.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5742_4f35_ff55&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5742_4f35_ff55"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_490d_1198_15c1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_490d_1198_15c1.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_490d_1198_15c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_490d_1198_15c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_490d_1198_15c1/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_490d_1198_15c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_490d_1198_15c1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_490d_1198_15c1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0956_e939_cefc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0956_e939_cefc.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Velocity", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean current velocity at the ACO from a 250 kHz SonTek acoustic doppler current profiler (ADCP) at 1.83 m above the ocean bottom. Velocities are flagged bad if the amplitude is excessively low or high. An amplitude is high if it exceeds the average of the ping before and the ping after by 20 counts. An amplitude is low if less than 6 counts. After this the velocities are flagged bad if the absolute deviation of the vertical velocity from its ensemble median exceeds 0.15 m/s or if its value is less than -0.25 m/s.\n\ncdm_data_type = Profile\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each location, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\neastward_sea_water_velocity (current east component, meters/second)\nnorthward_sea_water_velocity (current north component, meters/second)\nupward_sea_water_velocity (current upward component, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_0956_e939_cefc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_0956_e939_cefc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_0956_e939_cefc/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_0956_e939_cefc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_0956_e939_cefc&showErrors=false&email=", "University of Hawaii", "hawaii_soest_0956_e939_cefc"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d1bf_1535_741f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d1bf_1535_741f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d1bf_1535_741f.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Bottom Pressure Recorder (BPR)", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean pressure at the ACO from a Bottom Pressure Recorder (BPR).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\npressure (sea water pressure, psi)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d1bf_1535_741f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d1bf_1535_741f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d1bf_1535_741f/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d1bf_1535_741f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d1bf_1535_741f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d1bf_1535_741f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc9b_209f_ea2f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc9b_209f_ea2f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc9b_209f_ea2f.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Hydrophone Acoustics", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographi\nc observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides sound files of ocean acoustics at the ocean floor from the ACO hydrophone.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nelapsedTime (Elapsed Time, seconds)\nchannel_1\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_cc9b_209f_ea2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_cc9b_209f_ea2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_cc9b_209f_ea2f/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_cc9b_209f_ea2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_cc9b_209f_ea2f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_cc9b_209f_ea2f"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "http://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "http://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/database-tables-description", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/database-tables-description", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/cast-table-column-descriptions", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://upwell.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "http://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the November 2018 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10180&flag=view\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.graph", "", "", "public", "GLOBEC NEP Vertical Plankton Tow (VPT) Data, 1997-2001", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nCalifornia Current Program\nVertical Plankton Tow (VPT) Data\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10181&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/vpt%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/vpt.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ncast_no (Cast Number Within the Cruise)\nstation_id\nabund_m3 (Abundance, count m-3)\ncomments\ncounter_id\nd_n_flag (Day/Night Flag)\ngear_area (Mouth Area of Net, m2)\ngear_mesh (Net's Mesh Size, mm)\ngear_type\ngenus_species\nlife_stage\nlocal_code\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecVpt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecVpt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecVpt/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecVpt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecVpt&showErrors=false&email=", "GLOBEC", "erdGlobecVpt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://www.usgodae.org/cgi-bin/datalist.pl?summary=Go&dset=fnmoc_obs_sfcobs", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1995.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1995", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1995.graph", "", "", "public", "Hake Survey ADCP (1995)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp1995_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp1995_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp1995/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/1995%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp1995.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp1995&showErrors=false&email=", "OSU", "nwioosAdcp1995"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1998.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1998", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1998.graph", "", "", "public", "Hake Survey ADCP (1998)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp1998_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp1998_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp1998/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/1998%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp1998.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp1998&showErrors=false&email=", "OSU", "nwioosAdcp1998"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2001.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2001", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2001.graph", "", "", "public", "Hake Survey ADCP (2001)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (Altitude, m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp2001_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp2001_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp2001/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/2001%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp2001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp2001&showErrors=false&email=", "OSU", "nwioosAdcp2001"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2003.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2003", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2003.graph", "", "", "public", "Hake Survey ADCP (2003)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp2003_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp2003_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp2003/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/2003%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp2003.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp2003&showErrors=false&email=", "OSU", "nwioosAdcp2003"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2005.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2005", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2005.graph", "", "", "public", "Hake Survey ADCP (2005)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp2005_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp2005_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp2005/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/2005%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp2005.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp2005&showErrors=false&email=", "OSU", "nwioosAdcp2005"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e5b4_d905_99ef", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e5b4_d905_99ef.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e5b4_d905_99ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e5b4_d905_99ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e5b4_d905_99ef/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e5b4_d905_99ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e5b4_d905_99ef&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "hawaii_soest_e5b4_d905_99ef"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_190f_1fe8_4cc4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_190f_1fe8_4cc4.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitors water quality at several beaches across the island of Maui in the State of Hawaii. This community-based monitoring effort provides valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites are also monitored for harmful bacteria levels of Enterococcus. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. \n\nData are managed through an online repository, the Coral Reef Monitoring Data Portal (http://monitoring.coral.org), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection is coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\n... (10 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_190f_1fe8_4cc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_190f_1fe8_4cc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_190f_1fe8_4cc4/index.json", "http://monitoring.coral.org", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_190f_1fe8_4cc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_190f_1fe8_4cc4&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "hawaii_soest_190f_1fe8_4cc4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys.\n\nThe data is from NOAA NDBC. It has been reformatted by NOAA Coastwatch,\nWest Coast Node. This dataset only has the data that is closest to a\ngiven hour. The time values in the dataset are rounded to the nearest hour.\n\nThis dataset has both historical data (quality controlled, before\n2018-11-01T00:00:00Z) and near real time data (less quality controlled, from\n2018-11-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Name)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nwd (Wind Direction, degrees_true)\nwspd (Wind Speed, m s-1)\ngst (Wind Gust Speed, m s-1)\nwvht (Wave Height, m)\ndpd (Wave Period, Dominant, s)\napd (Wave Period, Average, s)\nmwd (Wave Direction, degrees_true)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.graph", "", "", "public", "NEFSC Continuous Plankton Recorder", "A summary for the data\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ncruise\nsample\nlatitude (degrees_north)\nlongitude (degrees_east)\nphyto_color_indx (Phytoplankton Color Index)\nmarmap_tax_code (Marmap Taxonomic Code)\nmarmap_stage_code\nabundance (per 100 cubic meters)\nlife_stage\ntaxonomic_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/wocecpr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/wocecpr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/wocecpr/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "http://upwell.pfeg.noaa.gov/erddap/rss/wocecpr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=wocecpr&showErrors=false&email=", "NEFSC", "wocecpr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp.graph", "", "", "public", "NOAA NDBC SOS, 2006-present, sea_water_temperature", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_water_temperature data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWTemp/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWTemp&showErrors=false&email=", "NOAA NDBC", "ndbcSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind.graph", "", "", "public", "NOAA NDBC SOS, 2006-present, winds", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have winds data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwind_from_direction (degrees_true)\nwind_speed (m s-1)\nwind_speed_of_gust (m s-1)\nupward_air_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWind_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWind_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWind/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWind.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWind&showErrors=false&email=", "NOAA NDBC", "ndbcSosWind"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents.graph", "", "", "public", "NOAA NDBC SOS, 2007-present, currents", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have currents data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\nWARNING: Always check the quality_flags before using this data. A simple criterion is: only use a row of data if the first quality_flags value for the row (overall bin status) is 3 (good data/passed quality test). You can do this by appending &quality_flags=~\"3;.*\" to your request.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nbin (count)\ndirection_of_sea_water_velocity (degrees_true)\nsea_water_speed (cm/s)\nupward_sea_water_velocity (cm/s)\nerror_velocity (cm/s)\nplatform_orientation (degrees_true)\nplatform_pitch_angle (degree)\nplatform_roll_angle (degree)\nsea_water_temperature (Cel)\npct_good_3_beam (Percent Good 3 Beam, percent)\npct_good_4_beam (Percent Good 4 Beam, percent)\npct_rejected (Percent Rejected, percent)\npct_bad (Percent Bad, percent)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosCurrents_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosCurrents_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosCurrents/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosCurrents.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosCurrents&showErrors=false&email=", "NOAA NDBC", "ndbcSosCurrents"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity.graph", "", "", "public", "NOAA NDBC SOS, 2007-present, sea_water_practical_salinity", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_water_practical_salinity data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosSalinity/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosSalinity&showErrors=false&email=", "NOAA NDBC", "ndbcSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel.graph", "", "", "public", "NOAA NDBC SOS, 2008-present, sea_floor_depth_below_sea_surface", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_floor_depth_below_sea_surface data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\naveraging_interval (s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWLevel/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWLevel&showErrors=false&email=", "NOAA NDBC", "ndbcSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "", "public", "North Pacific High, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_43a8_6d6d_9052.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_43a8_6d6d_9052", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_43a8_6d6d_9052.graph", "", "", "public", "Northwestern Hawaiian Islands, Coral Reef Monitoring, Fish Surveys, Belt Transects (BLT)", "Papahanaumokuakea Marine National Monument (PMNM) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_43a8_6d6d_9052_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_43a8_6d6d_9052_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_43a8_6d6d_9052/index.json", "http://www.papahanaumokuakea.gov/research/welcome.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_43a8_6d6d_9052.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_43a8_6d6d_9052&showErrors=false&email=", "USDOC/NOAA/NOS/PMNM", "hawaii_soest_43a8_6d6d_9052"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_68f2_d17d_d413.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_68f2_d17d_d413", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_68f2_d17d_d413.graph", "", "", "public", "Northwestern Hawaiian Islands, Coral Reef Monitoring, Fish Surveys, Belt Transects (vBLT)", "Papahanaumokuakea Marine National Monument (PMNM) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_68f2_d17d_d413_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_68f2_d17d_d413_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_68f2_d17d_d413/index.json", "http://www.papahanaumokuakea.gov/research/welcome.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_68f2_d17d_d413.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_68f2_d17d_d413&showErrors=false&email=", "USDOC/NOAA/NOS/PMNM", "hawaii_soest_68f2_d17d_d413"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_ec1c_1aa4_ddaf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_ec1c_1aa4_ddaf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_ec1c_1aa4_ddaf.graph", "", "", "public", "Northwestern Hawaiian Islands, Coral Reef Monitoring, Fish Surveys, Stationary Point Counts (nSPC)", "Papahanaumokuakea Marine National Monument (PMNM) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_ec1c_1aa4_ddaf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_ec1c_1aa4_ddaf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_ec1c_1aa4_ddaf/index.json", "http://www.papahanaumokuakea.gov/research/welcome.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_ec1c_1aa4_ddaf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_ec1c_1aa4_ddaf&showErrors=false&email=", "USDOC/NOAA/NOS/PMNM", "hawaii_soest_ec1c_1aa4_ddaf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosCoral.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosCoral", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosCoral.graph", "", "", "public", "NWFSC Coral Data Collected off West Coast of US (1980-2005)", "This data contains the locations of some observations of\ncold-water/deep-sea corals off the west coast of the United States.\nRecords of coral catch originate from bottom trawl surveys conducted\nfrom 1980 to 2001 by the Alaska Fisheries Science Center (AFSC) and\n2001 to 2005 by the Northwest Fisheries Science Center (NWFSC).\nLocational information represent the vessel mid positions (for AFSC\nsurvey trawls) or \"best position\" (i.e., priority order: 1) gear\nmidpoint 2) vessel midpoint, 3) vessel start point, 4) vessel end\npoint, 5) station coordinates for NWFSC survey trawls) conducted as\npart of regular surveys of groundfish off the coasts of Washington,\nOregon and California by NOAA Fisheries. Only records where corals\nwere identified in the total catch are included. Each catch sample\nof coral was identified down to the most specific taxonomic level\npossible by the biologists onboard, therefore identification was\ndependent on their expertise. When positive identification was not\npossible, samples were sometimes archived for future identification\nby systematist experts. Data were compiled by the NWFSC, Fishery\nResource Analysis & Monitoring Division\n\nPurpose - Examination of the spatial and temporal distributions of\nobservations of cold-water/deep-sea corals off the west coast of the\nUnited States, including waters off the states of Washington, Oregon,\nand California. It is important to note that these records represent\nonly presence of corals in the area swept by the trawl gear. Since\nbottom trawls used during these surveys are not designed to sample\nepibenthic invertebrates, absence of corals in the catch does not\nnecessary mean they do not occupy the area swept by the trawl gear.\n\nData Credits - NOAA Fisheries, Alaska Fisheries Science Center,\nResource Assessment & Conservation Engineering Division (RACE) NOAA\nFisheries, Northwest Fisheries Science Center, Fishery Resource\nAnalysis & Monitoring Division (FRAM)\n\nContact: Curt Whitmire, NOAA NWFSC, Curt.Whitmire@noaa.gov\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosCoral_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosCoral_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosCoral/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Coral%201980-2005.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosCoral.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosCoral&showErrors=false&email=", "NOAA NWFSC", "nwioosCoral"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosGroundfish.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosGroundfish", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosGroundfish.graph", "", "", "public", "NWFSC Groundfish Data for U.S. West Coast (2003-2005)", "The data available for downloading is summarized data from the 2003-2005\nU.S. West Coast Bottom Trawl Survey (WCGTS) of Groundfish Resources off\nWashington, Oregon and California.\n\nThe Northwest Fisheries Science Center's Fishery Resource Analysis and\nMonitoring Division (FRAM) completed the sixth in an annual series of\ngroundfish bottom trawl surveys in 2003. The survey was conducted June\n24 to October 23, 2003 and targeted the commercial groundfish resources\ninhabiting depths of 55 to 1,280 meters [m], (30 - 700 fathoms [fm])\nfrom the area off Cape Flattery, Washington (latitude [lat.] 48\u00b010'N)\nto the U.S.-Mexican border (lat. 32\u00b030'N) using chartered West Coast\ncommercial trawlers. These ongoing series of annual surveys, conducted\nby FRAM since 1998, are designed to monitor long-term trends in\ndistribution and abundance of west coast groundfish, especially those\nspecies of management concern. The 2003 survey represents the first\nyear in which the depth range was expanded to include both the\ncontinental shelf (55 - 183 m) and continental slope (183 - 1,280 m)\narea and the first year in which a stratified-random sampling design\nwas adopted.\n\nIn 2003, a total of 574 successful tows were completed out of 643\nattempts. Simrad ITI net mensuration data, as well as global\npositioning system (GPS) navigation data and bottom contact sensor\ndata, used to document performance (e.g. bottom tending), were\nobtained for most tows.\n\nAn Aberdeen-style net with a small mesh (2\" stretched measure or less)\nliner in the codend (to retain smaller specimens) was used to sample\nfish biomass. Target duration of each tow was 15 minutes. Tow\nduration was the time between touchdown and lift-off of the trawl net\nfrom the seafloor based on readings from bottom contact sensors.\n\nCatches were sorted to species, aggregate or other appropriate\ntaxonomic level and then weighed using an electronic,\nmotion-compensated scale. A total of 517 species or families (fish\nand invertebrates) were identified within the survey area. Although\nbiological sampling effort continues to include Dover sole\n(Microstomus pacificus), shortspine thornyhead (Sebastolobus\nalascanus), longspine thornyhead (Sebastolobus altivelis), and\nsablefish (Anoplopoma fimbria), focus has increasingly shifted to\nencompass all groundfish species of management concern. Up to 100\nlength measurements, sex determinations, and individual weights\nand up to 25 age structures were collected per haul for these species.\n\ncdm_data_type = Trajectory\nVARIABLES:\nhaul_id (Haul Identifier)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosGroundfish_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosGroundfish_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosGroundfish/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Groundfish%20Survey%202003-2005.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosGroundfish.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosGroundfish&showErrors=false&email=", "NOAA NWFSC", "nwioosGroundfish"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails.graph", "", "", "public", "NWFSC HUD Fish Species Details", "Habitat Use Database (HUD) Fish Species Details compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\nspecies_id\ncommon_name\nscientific_name\nlife_stage\nabsolute_min_depth (m)\npreferred_min_depth (m)\nabsolute_max_depth (m)\npreferred_max_depth (m)\nabsolute_min_temp (Absolute Min Temperature, degree_C)\npreferred_min_temp (Preferred Min Temperature, degree_C)\nabsolute_max_temp (Absolute Max Temperature, degree_C)\npreferred_max_temp (Preferred Max Temperature, degree_C)\nabsolute_min_latitude (degrees_north)\npreferred_min_latitude (degrees_north)\nabsolute_max_latitude (degrees_north)\npreferred_max_latitude (degrees_north)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudFishDetails/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Fish%20Species%20Details.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudFishDetails.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudFishDetails&showErrors=false&email=", "NOAA NWFSC", "nwioosHudFishDetails"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishOccur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishOccur", "", "", "", "public", "NWFSC HUD Fish Species Occurrence", "Habitat Use Database (HUD) Fish Species Occurrence data compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\ncommon_name\nscientific_name\nlife_stage\ngender\nhabitat_association\nseason\nlevel_1_habitat\nlevel_2_habitat\nlevel_3_habitat\nlevel_4_habitat\nactivity\nactivity_association\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudFishOccur/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Fish%20Species%20Occurrence.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudFishOccur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudFishOccur&showErrors=false&email=", "NOAA NWFSC", "nwioosHudFishOccur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudPredPrey.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudPredPrey", "", "", "", "public", "NWFSC HUD Predators and Prey", "Habitat Use Database (HUD) Predators and Prey data compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\necoregion\nseason\nlevel_1_habitat\nlevel_2_habitat\nlevel_3_habitat\nlevel_4_habitat\nscientific_name\ngender\nlife_stage\nprey_name\nprey_gender\nprey_life_stage\npredator_name\npredator_gender\npredator_life_stage\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudPredPrey/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Predators%20and%20Prey.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudPredPrey.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudPredPrey&showErrors=false&email=", "NOAA NWFSC", "nwioosHudPredPrey"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudRef.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudRef", "", "", "", "public", "NWFSC HUD References", "Habitat Use Database (HUD) References compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\nseason\nlevel_1_habitat\nlevel_2_habitat\nlevel_3_habitat\nlevel_4_habitat\nscientific_name\ngender\nlife_stage\nreference_to\nreference_type\nauthors\npublication_year\nreference_name\neditor\npublication_name\npublisher_city\npublisher\nvolume\nnumber\nreferenced_pages\nthesis_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudRef/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20References.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudRef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudRef&showErrors=false&email=", "NOAA NWFSC", "nwioosHudRef"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002.graph", "", "", "public", "NWFSC Observer Fixed Gear Data, off West Coast of US, 2002-2006", "Observer Fixed Gear Data collected during 2002-2006 off West Coast of US.\n\nThis data product originates from data collected by fishery observers in the West Coast Groundfish Observer Program (WCGOP), Fishery Resource Analysis and Monitoring Division (FRAM) at the Northwest Fisheries Science Center, NOAA Fisheries. The WCGOP's goal is to improve total catch estimates by collecting information on the discarded catch (fish returned overboard at-sea) of west coast groundfish species. All data were collected according to standard protocols and data quality control established by the WCGOP. The observed portion of overall catch or landings in a fishery varies by coverage level. Since all fishing operations are not observed, neither the maps nor the data can be used to characterize the fishery completely. This is especially true for rarely-occurring species and when observed sample sizes are small. We urge caution when utilizing these data due to the complexity of groundfish management and fleet harvest dynamics. Grid cells representing less than 3 vessels and less than 10 hauls or sets are not shown due to confidentiality and to ensure adequate sample size. In the limited-entry fixed gear fishery, species discard rates (species discard weight / groundfish total catch (discard + retained weight)) are categorized by approximate quartile ranges and geo-referenced to 20 x 20 kilometer grid cells. The observed fixed gear set location (start location of fishing) was used to allocate data to 20 x 20 kilometer grid cells for calculation. Sixteen species were represented based on combined observer data from 2002-2006. The species included in this data product are dover sole (Microstomus pacificus), sablefish (Anoplopoma fimbria), longspine thornyhead (Sebastolobus altivelis), shortspine thornyhead (Sebastolobus alascanus), lingcod (Ophiodon elongatus), arrowtooth flounder (Atheresthes stomias), petrale sole (Eopsetta jordani), and the rockfishes (genus Sebastes), darkblotched rockfish (S. crameri), Pacific ocean perch (S. alutus), chilipepper (S. goodei), cowcod (S. levis), bocaccio (S. paucispinis), canary rockfish (S. pinniger), widow rockfish (S. entomelas), yelloweye rockfish (S. ruberrimus), and yellowtail rockfish (S. flavidus).\n\nPurpose: This data product was developed to provide basic groundfish discard distribution information for a wide variety of audiences. The West Coast Groundfish Observer Program conducts sampling of groundfish discarded by commercial fisheries along the entire continental U.S. West Coast. The seventeen species included in this data product are among those of most interest to the fisheries management and commercial fishing communities.\n\nData Credits: NOAA Fisheries, Northwest Fisheries Science Center, Fishery Resource Analysis & Monitoring Division, West Coast Groundfish Observer Program, Seattle, WA.\n\ncdm_data_type = Other\nVARIABLES:\nlongitude (Longitude (Center of 20x20 km Grid Cell), degrees_east)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosObsFixed2002_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosObsFixed2002_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosObsFixed2002/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Observer%20Fixed%20Gear%202002%202006.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosObsFixed2002.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosObsFixed2002&showErrors=false&email=", "NOAA NWFSC", "nwioosObsFixed2002"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002.graph", "", "", "public", "NWFSC Observer Trawl Data, off West Coast of US, 2002-2006", "Observer Trawl Data collected during 2002-2006 off West Coast of US.\n\nThis data product originates from data collected by fishery observers in the West Coast Groundfish Observer Program (WCGOP), Fishery Resource Analysis and Monitoring Division (FRAM) at the Northwest Fisheries Science Center, NOAA Fisheries. The WCGOP's goal is to improve total catch estimates by collecting information on the discarded catch (fish returned overboard at-sea) of west coast groundfish species. All data were collected according to standard protocols and data quality control established by the WCGOP. The observed portion of overall catch or landings in a fishery varies by coverage level. Since all fishing operations are not observed, neither the maps nor the data can be used to characterize the fishery completely. This is especially true for rarely-occurring species and when observed sample sizes are small. We urge caution when utilizing these data due to the complexity of groundfish management and fleet harvest dynamics. Grid cells representing less than 3 vessels and less than 10 hauls or sets are not shown due to confidentiality and to ensure adequate sample size. In the limited-entry groundfish bottom trawl fishery, species discard rates (species discard weight / groundfish total catch (discard + retained weight)) are categorized by approximate quartile ranges and geo-referenced to 10 x 10 kilometer grid cells. The observed trawl towline (line drawn from the start to end location of a trawl tow) was used to allocate data to 10 x 10 kilometer grid cells for calculation. Seventeen species were represented based on combined observer data from 2002-2006. The species included in this data product are dover sole (Microstomus pacificus), sablefish (Anoplopoma fimbria), longspine thornyhead (Sebastolobus altivelis), shortspine thornyhead (Sebastolobus alascanus), lingcod (Ophiodon elongatus), arrowtooth flounder (Atheresthes stomias), English sole (Parophrys vetulus), petrale sole (Eopsetta jordani), and the rockfishes (genus Sebastes), darkblotched rockfish (S. crameri), Pacific ocean perch (S. alutus), chilipepper (S. goodei), cowcod (S. levis), bocaccio (S. paucispinis), canary rockfish (S. pinniger), widow rockfish (S. entomelas), yelloweye rockfish (S. ruberrimus), and yellowtail rockfish (S. flavidus).\n\nPurpose: This data product was developed to provide basic groundfish discard distribution information for a wide variety of audiences. The West Coast Groundfish Observer Program conducts sampling of groundfish discarded by commercial fisheries along the entire continental U.S. West Coast. The seventeen species included in this data product are among those of most interest to the fisheries management and commercial fishing communities.\n\nData Credits: NOAA Fisheries, Northwest Fisheries Science Center, Fishery Resource Analysis & Monitoring Division, West Coast Groundfish Observer Program, Seattle, WA.\n\ncdm_data_type = Other\nVARIABLES:\nlongitude (Longitude (Center of 10x10 km Grid Cell), degrees_east)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosObsTrawl2002_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosObsTrawl2002_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosObsTrawl2002/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Observer%20Trawl%202002%202006.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosObsTrawl2002.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosObsTrawl2002&showErrors=false&email=", "NOAA NWFSC", "nwioosObsTrawl2002"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a.graph", "", "", "public", "OceanSITES KEO daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from the Kuroshio Extension Observatory (KEO) site nominally at 32.3N,144.6E, in the Kuroshio Extension recirculation gyre. The actual anchor position is different for each deployment, and this is a slack line mooring with a watch circle radius greater than 5km. For users performing inter comparisons, it may be important to use the actual position of the buoy from the Global Positioning System (GPS) data. This mooring has been instrumented with upper ocean and surface sensors since June 2004. Included in this file are sea temperatures and pressures from the surface to 525m depth, salinity and density (sigma-theta) from the surface to 400m depth, sea currents to 35m depth, a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and barometric pressure. Note that because this is a slack-line mooring, subsurface sensor depths vary with time, and hence one must use the observed and calculated water pressures to compute sensor depths. Also, due to the relatively large scope and different anchor positions, the positions of the buoy at the surface are included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndeptemp (Depth of each measurement, meters)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepth (m)\nPRES (water pressure, observed and calculated, decibar)\nPRES_QC (quality flag)\nPRES_DM (method of data processing)\n... (53 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/keo_121f_a3d0_3c0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/keo_121f_a3d0_3c0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/keo_121f_a3d0_3c0a/index.json", "https://www.pmel.noaa.gov/ocs/", "http://upwell.pfeg.noaa.gov/erddap/rss/keo_121f_a3d0_3c0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=keo_121f_a3d0_3c0a&showErrors=false&email=", "NOAA/PMEL", "keo_121f_a3d0_3c0a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f.graph", "", "", "public", "OceanSITES PAPA daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from station Papa at 50N,145W in the North Pacific. This taut-line mooring has been instrumented with upper ocean and surface sensors since June 2007. Included in this file are sea temperatures from the surface to 300 meters depth, salinity and density (sigma-theta) from the surface to 200m depth, sea currents at 5m and 35m depth, acoustic doppler profiles of zonal and meridional ocean current to from 30 to 158 meters depth, and a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and barometric pressure. Time series of buoy latitude and longitude are included as well.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each measurement, m)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepcur (Depth of each measurement, m)\nUCUR\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\ndeppsal (Depth of each measurement, m)\n... (43 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/papa_8bb5_dcd5_981f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/papa_8bb5_dcd5_981f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/papa_8bb5_dcd5_981f/index.json", "https://www.pmel.noaa.gov/ocs/", "http://upwell.pfeg.noaa.gov/erddap/rss/papa_8bb5_dcd5_981f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=papa_8bb5_dcd5_981f&showErrors=false&email=", "NOAA/PMEL", "papa_8bb5_dcd5_981f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219.graph", "", "", "public", "OceanSITES PIRATA daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from one of the Tropical Atmosphere/Ocean (TAO)/TRITON, Pilot Research Moored Array in the Tropical Atlantic (PIRATA), or Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) mooring sites in the tropical oceans. Included in this file are sea temperatures from the surface to 500 meters at most sites and deeper at others, salinity and potential density (sigma-theta) at the sea surface and deeper at some sites, sea currents at 10m depth and deeper at some sites, a variety of surface observations including winds, air temperature, relative humidity, shortwave solar radiation, longwave radiation, rain rate, barometric pressure. Buoy positions are also included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each TEMP measurement, m)\ndepcur (Depth of each current measurement)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndeppsal (Depth of each Salinity measurement)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\nPSAL (sea_water_practical_salinity)\nPSAL_QC\nPSAL_DM (method of data processing)\ndepden (Depth of each density measurement)\nheightwind (altitude, meters)\nUWND (zonal wind)\nVWND (meridional wind, m/s)\n... (44 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pirata_5922_7dcd_7219_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pirata_5922_7dcd_7219_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pirata_5922_7dcd_7219/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/pirata_5922_7dcd_7219.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pirata_5922_7dcd_7219&showErrors=false&email=", "NOAA/PMEL", "pirata_5922_7dcd_7219"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc.graph", "", "", "public", "OceanSITES TAO daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from one of the flux reference mooring sites in the tropical oceans. Included in this file are sea temperatures from the surface to 500m depth, salinity and density (sigma-theta) from the surface to typically 120m depth, sea currents typically at 10m depth and at some sites deeper, a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and sea level airpressure. Buoy positions are also included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each measurement, m)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\n... (42 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/tao_6eb4_e773_2fbc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/tao_6eb4_e773_2fbc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/tao_6eb4_e773_2fbc/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/tao_6eb4_e773_2fbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=tao_6eb4_e773_2fbc&showErrors=false&email=", "NOAA/PMEL", "tao_6eb4_e773_2fbc"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.graph", "", "", "public", "OSMC Argo Profile data", "OSMC Argo Profile data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\norganization_name\ncountry_name\nplatform_type_name\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nparameter_name\ndaily_obs_count\nobservation_depth\nobservation_value\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_PROFILERS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_PROFILERS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_PROFILERS/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_PROFILERS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_PROFILERS&showErrors=false&email=", "OSMC", "OSMC_PROFILERS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.graph", "", "", "public", "OSMC normalized observations from GTS", "OSMC normalized In-situ Real time GTS data\n\ncdm_data_type = Point\nVARIABLES:\nPLATFORM_CODE (Station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform\nparameter\nOBSERVATION_VALUE\nOBSERVATION_DEPTH\nCOUNTRY_NAME\norganization_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_Points_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_Points_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_Points/index.json", "http://www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_Points.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_Points&showErrors=false&email=", "OSMC", "OSMC_Points"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_417d_33ad_dead.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_417d_33ad_dead", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_417d_33ad_dead.graph", "", "", "public", "Pacific Island Network Marine Fish Monitoring Dataset - Surveys", "National Park Service Fish Stock Data\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\nhigherInstitutionCode\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\nisland\n... (67 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_417d_33ad_dead_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_417d_33ad_dead_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_417d_33ad_dead/index.json", "http://science.nature.nps.gov/im/units/pacn/monitoring/vs_fish_marine.cfm", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_417d_33ad_dead.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_417d_33ad_dead&showErrors=false&email=", "USDOI/NPS/NRSS/IMD/PACN", "hawaii_soest_417d_33ad_dead"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_31bb_eee9_ef0a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_31bb_eee9_ef0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_31bb_eee9_ef0a.graph", "", "", "public", "Pacific Island Network Marine Fish Monitoring Dataset - Transects", "The benthic marine community in the Pacific Island Network (PACN) is a complex ecologic system and a diverse taxonomic environment, including algae and corals and other invertebrates. Reef-building corals are the primary architectural organism and are sensitive to environmental degradation; therefore, they are a good indicator of overall health for nearshore marine ecosystems. Primary stressors to coral reefs include disease, bleaching, sedimentation, eutrophication, storms, and global climate change. The United Nations Environment Programme (UNEP) has proposed using coral reefs as a worldwide indicator ecosystem for global climate change (Spalding et al. 2004). For these reasons, the PACN has chosen to implement long term monitoring of benthic marine communities. Benthic marine communities is most closely linked with marine fish, and monitoring efforts will be conducted at the same time and location to maximize data value\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\n... (58 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_31bb_eee9_ef0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_31bb_eee9_ef0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_31bb_eee9_ef0a/index.json", "http://science.nature.nps.gov/im/units/pacn/monitoring/vs_fish_marine.cfm", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_31bb_eee9_ef0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_31bb_eee9_ef0a&showErrors=false&email=", "USDOI/NPS/NRSS/IMD/PACN", "hawaii_soest_31bb_eee9_ef0a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5673_517d_3b8c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5673_517d_3b8c.graph", "", "", "public", "PacIOOS Nearshore Sensor 01 (NS01): Waikiki Yacht Club, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS01 is located at the Waikiki Yacht Club and is fixed to the bridge pier. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to a piling ~0.5m below mean sea level.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5673_517d_3b8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5673_517d_3b8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5673_517d_3b8c/index.json", "http://www.pacioos.hawaii.edu/water/sensor-waikiki/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5673_517d_3b8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5673_517d_3b8c&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5673_517d_3b8c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_1273_fad1_0404", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_1273_fad1_0404.graph", "", "", "public", "PacIOOS Nearshore Sensor 02 (NS02): Hawaii Yacht Club, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS02 is located at a floating dock off the Hawaii Yacht Club. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to a floating dock just below the ocean surface.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nturbidity_dm_qd (Turbidity quality descriptor)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nchlorophyll_dm_qd (Chlorophyll quality descriptor)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_1273_fad1_0404_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_1273_fad1_0404_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_1273_fad1_0404/index.json", "http://www.pacioos.hawaii.edu/water/sensor-hawaiiyachtclub/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_1273_fad1_0404.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_1273_fad1_0404&showErrors=false&email=", "University of Hawaii", "hawaii_soest_1273_fad1_0404"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d787_1c35_208d", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d787_1c35_208d.graph", "", "", "public", "PacIOOS Nearshore Sensor 03 (NS03): Hilton Hawaiian Pier, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS03 is located at the Atlantis Pier off the Hilton Hawaiian Village. The instrument is a Sea-Bird Electronics model 37SMP. The package is located at approximately 2.0 meters below mean sea level.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\npressure_dm_qd (Pressure quality descriptor)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d787_1c35_208d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d787_1c35_208d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d787_1c35_208d/index.json", "http://www.pacioos.hawaii.edu/water/sensor-atlantis/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d787_1c35_208d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d787_1c35_208d&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d787_1c35_208d"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_c9f9_c232_1fe9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_c9f9_c232_1fe9.graph", "", "", "public", "PacIOOS Nearshore Sensor 04 (NS04): Waikiki Aquarium, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS04 is located just off the Waikiki Aquarium and is fixed to the pier. The instrument is a Sea-Bird Electronics model 37SMP. The package is mounted on the bottom in approximately 2.0 to 2.5 meters ocean depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\npressure_dm_qd (Pressure quality descriptor)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_c9f9_c232_1fe9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_c9f9_c232_1fe9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_c9f9_c232_1fe9/index.json", "http://www.pacioos.hawaii.edu/water/sensor-waikikiaquarium/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_c9f9_c232_1fe9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_c9f9_c232_1fe9&showErrors=false&email=", "University of Hawaii", "hawaii_soest_c9f9_c232_1fe9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b55f_a8f2_ad70", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b55f_a8f2_ad70.graph", "", "", "public", "PacIOOS Nearshore Sensor 05 (NS05): Pago Pago, American Samoa", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS05 is located at the Department of Marine and Wildlife Resources (DMWR) dock in Pago Pago Harbor, American Samoa and is mounted to the bottom in about 2 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_b55f_a8f2_ad70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_b55f_a8f2_ad70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_b55f_a8f2_ad70/index.json", "http://www.pacioos.hawaii.edu/water/sensor-pagopago/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_b55f_a8f2_ad70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_b55f_a8f2_ad70&showErrors=false&email=", "University of Hawaii", "hawaii_soest_b55f_a8f2_ad70"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f59_c29c_d820", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f59_c29c_d820.graph", "", "", "public", "PacIOOS Nearshore Sensor 06 (NS06): Pohnpei, Micronesia", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS06 is located at the dock in Pohnpei lagoon and is mounted to the bottom in about 1 meter of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8f59_c29c_d820_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8f59_c29c_d820_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8f59_c29c_d820/index.json", "http://www.pacioos.hawaii.edu/water/sensor-pohnpei/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8f59_c29c_d820.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8f59_c29c_d820&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8f59_c29c_d820"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_77b7_f5dd_cda3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_77b7_f5dd_cda3.graph", "", "", "public", "PacIOOS Nearshore Sensor 07 (NS07): Majuro, Marshall Islands", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS07 is located at the Uliga dock in Majuro, Republic of the Marshall Islands and is mounted to the bottom in about 2 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_77b7_f5dd_cda3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_77b7_f5dd_cda3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_77b7_f5dd_cda3/index.json", "http://www.pacioos.hawaii.edu/water/sensor-majuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_77b7_f5dd_cda3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_77b7_f5dd_cda3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_77b7_f5dd_cda3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e3c0_a956_de01", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e3c0_a956_de01.graph", "", "", "public", "PacIOOS Nearshore Sensor 08 (NS08): Koror, Palau", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS08 is located at the Palau International Coral Reef Center (PICRC) dock in Koror, Palau and is mounted to the bottom in about 3.5 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e3c0_a956_de01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e3c0_a956_de01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e3c0_a956_de01/index.json", "http://www.pacioos.hawaii.edu/water/sensor-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e3c0_a956_de01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e3c0_a956_de01&showErrors=false&email=", "University of Hawaii", "hawaii_soest_e3c0_a956_de01"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0113_b43d_e024", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0113_b43d_e024.graph", "", "", "public", "PacIOOS Nearshore Sensor 09 (NS09): Cetti Bay, Guam", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS09 is approximately 70 meters offshore in Cetti Bay, Guam and is mounted to the bottom in about 3 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_0113_b43d_e024_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_0113_b43d_e024_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_0113_b43d_e024/index.json", "http://www.pacioos.hawaii.edu/water/sensor-cetti/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_0113_b43d_e024.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_0113_b43d_e024&showErrors=false&email=", "University of Hawaii", "hawaii_soest_0113_b43d_e024"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f25e_31a1_16f1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f25e_31a1_16f1.graph", "", "", "public", "PacIOOS Nearshore Sensor 10 (NS10): Maunalua Bay, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS10 is located off the old pier in Maunalua Bay in Hawaii Kai. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to the pier at about 2m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nturbidity_dm_qd (Turbidity quality descriptor)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nchlorophyll_dm_qd (Chlorophyll quality descriptor)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\npressure_dm_qd (Pressure quality descriptor)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f25e_31a1_16f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f25e_31a1_16f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f25e_31a1_16f1/index.json", "http://www.pacioos.hawaii.edu/water/sensor-maunalua/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f25e_31a1_16f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f25e_31a1_16f1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f25e_31a1_16f1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8668_b202_8233", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8668_b202_8233.graph", "", "", "public", "PacIOOS Nearshore Sensor 11 (NS11): Saipan, CNMI", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS11 is approximately 20 meters offshore of Puntan Babpot near the golf course at Laolao Bay on the east shore of Saipan in the Commonwealth of the Northern Mariana Islands (CNMI) and is mounted to the bottom in about 3 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8668_b202_8233_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8668_b202_8233_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8668_b202_8233/index.json", "http://www.pacioos.hawaii.edu/water/sensor-saipan/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8668_b202_8233.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8668_b202_8233&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8668_b202_8233"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b10c_af2d_3fe8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b10c_af2d_3fe8.graph", "", "", "public", "PacIOOS Nearshore Sensor 12 (NS12): Kalama Beach Park, Maui, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS12 is located at Kalama Beach Park in Kihei, Maui. The instrument is a 6600V2-4 Multi-parameter water quality logger. The package is fixed to a mooring at about 1.5m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\nwater_depth (Sensor depth, m)\nph (1)\noxygen (Dissolved oxygen concentration, kg m-3)\noxygen_saturation (Dissolved oxygen saturation, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_b10c_af2d_3fe8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_b10c_af2d_3fe8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_b10c_af2d_3fe8/index.json", "http://www.pacioos.hawaii.edu/water/sensor-kalama/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_b10c_af2d_3fe8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_b10c_af2d_3fe8&showErrors=false&email=", "University of Hawaii", "hawaii_soest_b10c_af2d_3fe8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_026f_4c1d_55e5", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_026f_4c1d_55e5.graph", "", "", "public", "PacIOOS Nearshore Sensor 13 (NS13): Kahului, Maui, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS13 is located in Kahului Harbor in Maui. The instrument is a 6600V2-4 Multi-parameter water quality logger. The package is fixed to a piling at about 1.5m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nturbidity_dm_qd (Turbidity quality descriptor)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nchlorophyll_dm_qd (Chlorophyll quality descriptor)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor)\nwater_depth (Sensor depth (processed), m)\nwater_depth_raw (Sensor depth (raw), m)\nwater_depth_dm_qd (Sensor depth quality descriptor)\nph (pH (processed), 1)\nph_raw (pH (raw), 1)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_026f_4c1d_55e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_026f_4c1d_55e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_026f_4c1d_55e5/index.json", "http://www.pacioos.hawaii.edu/water/sensor-kahului/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_026f_4c1d_55e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_026f_4c1d_55e5&showErrors=false&email=", "University of Hawaii", "hawaii_soest_026f_4c1d_55e5"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_191e_fe37_f9a0", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_191e_fe37_f9a0.graph", "", "", "public", "PacIOOS Nearshore Sensor 15 (NS15): Pago Bay, Guam", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS15 is in Pago Bay, Guam and is mounted to the bottom in about 1.5 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_191e_fe37_f9a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_191e_fe37_f9a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_191e_fe37_f9a0/index.json", "http://www.pacioos.hawaii.edu/water/sensor-pago/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_191e_fe37_f9a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_191e_fe37_f9a0&showErrors=false&email=", "University of Hawaii", "hawaii_soest_191e_fe37_f9a0"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d5ba_831c_443a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d5ba_831c_443a.graph", "", "", "public", "PacIOOS Nearshore Sensor 16 (NS16): Wailupe, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS16 is located off Wailupe in Maunalua Bay in Aina Haina. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to the pier at about 1m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nturbidity_dm_qd (Turbidity quality descriptor)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nchlorophyll_dm_qd (Chlorophyll quality descriptor)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\npressure_dm_qd (Pressure quality descriptor)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d5ba_831c_443a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d5ba_831c_443a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d5ba_831c_443a/index.json", "http://www.pacioos.hawaii.edu/water/sensor-wailupe/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d5ba_831c_443a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d5ba_831c_443a&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d5ba_831c_443a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_093e_cd55_43a3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_093e_cd55_43a3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_093e_cd55_43a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_093e_cd55_43a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_093e_cd55_43a3/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_093e_cd55_43a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_093e_cd55_43a3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_093e_cd55_43a3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc92_7d24_0627", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc92_7d24_0627.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_cc92_7d24_0627_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_cc92_7d24_0627_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_cc92_7d24_0627/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_cc92_7d24_0627.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_cc92_7d24_0627&showErrors=false&email=", "University of Hawaii", "hawaii_soest_cc92_7d24_0627"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f289_8170_ec45", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f289_8170_ec45.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f289_8170_ec45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f289_8170_ec45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f289_8170_ec45/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f289_8170_ec45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f289_8170_ec45&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f289_8170_ec45"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_36dd_cf4c_73a6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_36dd_cf4c_73a6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_36dd_cf4c_73a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_36dd_cf4c_73a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_36dd_cf4c_73a6/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_36dd_cf4c_73a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_36dd_cf4c_73a6&showErrors=false&email=", "University of Hawaii", "hawaii_soest_36dd_cf4c_73a6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5359_8678_82b1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5359_8678_82b1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5359_8678_82b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5359_8678_82b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5359_8678_82b1/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5359_8678_82b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5359_8678_82b1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5359_8678_82b1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_92c1_a2b0_55fb", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_92c1_a2b0_55fb.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_92c1_a2b0_55fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_92c1_a2b0_55fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_92c1_a2b0_55fb/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_92c1_a2b0_55fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_92c1_a2b0_55fb&showErrors=false&email=", "University of Hawaii", "hawaii_soest_92c1_a2b0_55fb"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_75b3_e52c_26a2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_75b3_e52c_26a2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_75b3_e52c_26a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_75b3_e52c_26a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_75b3_e52c_26a2/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_75b3_e52c_26a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_75b3_e52c_26a2&showErrors=false&email=", "University of Hawaii", "hawaii_soest_75b3_e52c_26a2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_a826_8633_00bb", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_a826_8633_00bb.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_a826_8633_00bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_a826_8633_00bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_a826_8633_00bb/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_a826_8633_00bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_a826_8633_00bb&showErrors=false&email=", "University of Hawaii", "hawaii_soest_a826_8633_00bb"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_076a_87b3_40a0", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_076a_87b3_40a0.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_076a_87b3_40a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_076a_87b3_40a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_076a_87b3_40a0/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_076a_87b3_40a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_076a_87b3_40a0&showErrors=false&email=", "University of Hawaii", "hawaii_soest_076a_87b3_40a0"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_4c82_4728_010b", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_4c82_4728_010b.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_4c82_4728_010b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_4c82_4728_010b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_4c82_4728_010b/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_4c82_4728_010b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_4c82_4728_010b&showErrors=false&email=", "University of Hawaii", "hawaii_soest_4c82_4728_010b"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_856b_7e66_8c3f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_856b_7e66_8c3f.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_856b_7e66_8c3f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_856b_7e66_8c3f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_856b_7e66_8c3f/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_856b_7e66_8c3f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_856b_7e66_8c3f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_856b_7e66_8c3f"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2f21_4063_cfec", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2f21_4063_cfec.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_2f21_4063_cfec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_2f21_4063_cfec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_2f21_4063_cfec/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_2f21_4063_cfec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_2f21_4063_cfec&showErrors=false&email=", "University of Hawaii", "hawaii_soest_2f21_4063_cfec"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7adc_5b2b_769e", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7adc_5b2b_769e.graph", "", "", "public", "PacIOOS Water Quality Buoy 03 (WQB-03): Kiholo Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-03 is located at Kiholo Bay along the leeward (Western) coast of the North Kona district of Big Island in Hawaii. Continuous sampling of this outflow area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\ntemperature (water temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_qd (Temperature quality descriptor, 0)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_qd (Conductivity quality descriptor, 0)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_qd (Salinity quality descriptor, 0)\noxygen (Dissolved oxygen concentration (processed), kg m-3)\noxygen_raw (Dissolved oxygen concentration (raw), kg m-3)\noxygen_qd (Dissolved oxygen concentration quality descriptor, 0)\noxygen_saturation (Dissolved oxygen saturation (processed), 1)\noxygen_saturation_raw (Dissolved oxygen saturation (raw), 1)\noxygen_saturation_qd (Dissolved oxygen saturation quality descriptor, 0)\noxygen_saturation_concentration (Dissolved oxygen saturation concentration (processed), kg m-3)\noxygen_saturation_concentration_raw (Dissolved oxygen saturation concentration (raw), kg m-3)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_7adc_5b2b_769e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_7adc_5b2b_769e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_7adc_5b2b_769e/index.json", "http://www.pacioos.hawaii.edu/water/wqbuoy-kiholo/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_7adc_5b2b_769e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_7adc_5b2b_769e&showErrors=false&email=", "University of Hawaii", "hawaii_soest_7adc_5b2b_769e"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5efb_06ec_ff63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5efb_06ec_ff63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5efb_06ec_ff63.graph", "", "", "public", "PacIOOS Water Quality Buoy 04 (WQB-04): Hilo Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB04 is located in Hilo Bay on the east side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Depth below mean sea level, m)\nstation_name (WQB04: PacIOOS Water Quality Buoy 04 (WQB-04): Hilo Bay, Big Island, Hawaii)\ntemperature (Temperature (processed), Celsius)\nsalinity (Salinity (processed), 1e-3)\nturbidity (Turbidity (processed), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\noxygen (Dissolved oxygen concentration (processed), kg m-3)\noxygen_saturation (Dissolved oxygen saturation (processed), 1)\nph (pH (processed), 1)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature delayed-mode quality descriptor, 0)\ntemperature_qc_gap (QARTOD Gap Test, 0)\ntemperature_qc_syn (0)\ntemperature_qc_loc (QARTOD Location Test, 0)\ntemperature_qc_rng (QARTOD Gross Range Test, 0)\ntemperature_qc_clm (QARTOD Climatological Test, 0)\ntemperature_qc_spk (QARTOD Spike Test, 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test, 0)\ntemperature_qc_flt (QARTOD Flat Line Test, 0)\ntemperature_qc_mvr (QARTOD Multi-Variate Test, 0)\n... (87 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5efb_06ec_ff63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5efb_06ec_ff63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5efb_06ec_ff63/index.json", "http://www.pacioos.hawaii.edu/water/wqbuoy-hilo/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5efb_06ec_ff63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5efb_06ec_ff63&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5efb_06ec_ff63"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5efa_cc6e_79c5", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5efa_cc6e_79c5.graph", "", "", "public", "PacIOOS Water Quality Buoy AW (WQB-AW): Ala Wai, Oahu, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-AW is located at the exit of the Ala Wai Canal, near Magic Island. Continuous sampling of this outflow area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor, 0)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor, 0)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor, 0)\noxygen (Dissolved oxygen concentration (processed), kg m-3)\noxygen_raw (Dissolved oxygen concentration (raw), kg m-3)\noxygen_dm_qd (Dissolved oxygen concentration quality descriptor, 0)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nturbidity_dm_qd (Turbidity quality descriptor, 0)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nchlorophyll_dm_qd (Chlorophyll quality descriptor, 0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5efa_cc6e_79c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5efa_cc6e_79c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5efa_cc6e_79c5/index.json", "http://www.pacioos.hawaii.edu/water/wqbuoy-alawai/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5efa_cc6e_79c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5efa_cc6e_79c5&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5efa_cc6e_79c5"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2d69_a0d9_d559", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2d69_a0d9_d559.graph", "", "", "public", "PacIOOS Water Quality Buoy KN (WQB-KN): Kilo Nalu, Oahu, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-KN is located at the Kilo Nalu Nearshore Reef Observatory, near Kakaako Waterfront Park and Kewalo Basin off of Ala Moana Boulevard in Honolulu. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor, 0)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor, 0)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor, 0)\noxygen (Dissolved oxygen concentration (processed), kg m-3)\noxygen_raw (Dissolved oxygen concentration (raw), kg m-3)\noxygen_dm_qd (Dissolved oxygen concentration quality descriptor, 0)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nturbidity_dm_qd (Turbidity quality descriptor, 0)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nchlorophyll_dm_qd (Chlorophyll quality descriptor, 0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_2d69_a0d9_d559_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_2d69_a0d9_d559_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_2d69_a0d9_d559/index.json", "http://www.pacioos.hawaii.edu/water/wqbuoy-kilonalu/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_2d69_a0d9_d559.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_2d69_a0d9_d559&showErrors=false&email=", "University of Hawaii", "hawaii_soest_2d69_a0d9_d559"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "http://www.ogcnetwork.net/node/344", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/PRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2017, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2017, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2017, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_88cd_7dfb_ecfa.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_88cd_7dfb_ecfa", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_88cd_7dfb_ecfa.graph", "", "", "public", "US Pacific Islands, Coral Reef Monitoring, Fish Surveys, Belt Transects (BLT)", "Coral Reef Ecosytem Division (CRED) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_88cd_7dfb_ecfa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_88cd_7dfb_ecfa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_88cd_7dfb_ecfa/index.json", "https://www.pifsc.noaa.gov/cred/fish.php", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_88cd_7dfb_ecfa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_88cd_7dfb_ecfa&showErrors=false&email=", "USDOC/NOAA/NMFS/PIFSC/CRED", "hawaii_soest_88cd_7dfb_ecfa"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7448_8dd2_e529.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7448_8dd2_e529", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7448_8dd2_e529.graph", "", "", "public", "US Pacific Islands, Coral Reef Monitoring, Fish Surveys, Stationary Point Counts (nSPC)", "Coral Reef Ecosytem Division (CRED) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\n... (49 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_7448_8dd2_e529_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_7448_8dd2_e529_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_7448_8dd2_e529/index.json", "https://www.pifsc.noaa.gov/cred/fish.php", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_7448_8dd2_e529.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_7448_8dd2_e529&showErrors=false&email=", "USDOC/NOAA/NMFS/PIFSC/CRED", "hawaii_soest_7448_8dd2_e529"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_6dcb_e681_3eab.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_6dcb_e681_3eab", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_6dcb_e681_3eab.graph", "", "", "public", "US Pacific Islands, Coral Reef Monitoring, Fish Surveys, Stationary Point Counts (SPC)", "Coral Reef Ecosytem Division (CRED) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\n... (49 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_6dcb_e681_3eab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_6dcb_e681_3eab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_6dcb_e681_3eab/index.json", "https://www.pifsc.noaa.gov/cred/fish.php", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_6dcb_e681_3eab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_6dcb_e681_3eab&showErrors=false&email=", "USDOC/NOAA/NMFS/PIFSC/CRED", "hawaii_soest_6dcb_e681_3eab"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f49_4796_ddc3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f49_4796_ddc3.graph", "", "", "public", "Weather Station: Hawaii: Oahu: Coconut Island", "The Hawaii Institute of Marine Biology (HIMB) automatic weather station (AWS) records hourly measurements of precipitation, air temperature, wind speed and direction, and irradiance. Sensors include an Eppley 295-385 nm ultraviolet (UV) radiometer, a LiCor 200SZ Pyranometer, and a LiCor Quantameter (400-700 nm). The sensors are located on the roof of HIMB's Coral Reef Ecology Laboratory (Point Lab) on Moku o Loe (Coconut Island) in Kaneohe Bay on the windward (eastern) coast of Oahu in Hawaii. An accompanying sea water temperature sensor is located less than 10 m offshore of the weather station at a shallow depth of approximately 1 m.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\naltitude (height above mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\nair_temperature (Surface air temperature, Celsius)\nsea_water_temperature (Mean ocean temperature, Celsius)\nwind_speed (Mean wind speed, m s-1)\nwind_from_direction (Mean wind from direction, degrees)\nwind_from_direction_std (Standard deviation of wind from direction, degrees)\nwind_speed_max (Maximum wind gust, m s-1)\nrainfall_amount (Rainfall total, mm)\nshortwave_radiation (Average downwelling shortwave radiation, W m-2)\nphotosynthetic_radiation (Photosynthetically active radiation, umol m-2 s-1)\nultraviolet_radiation (W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8f49_4796_ddc3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8f49_4796_ddc3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8f49_4796_ddc3/index.json", "http://www.pacioos.hawaii.edu/weather/obs-mokuoloe/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8f49_4796_ddc3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8f49_4796_ddc3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8f49_4796_ddc3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d98d_1d43_fef7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d98d_1d43_fef7.graph", "", "", "public", "Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\naltitude (height above mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\nair_temperature (Mean air temperature, Celsius)\nair_temperature_std (Standard deviation of air temperature, Celsius)\nair_temperature_max (Maximum air temperature, Celsius)\nair_temperature_max_time (Time of maximum air temperature, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (Minimum air temperature, Celsius)\nair_temperature_min_time (Time of minimum air temperature, seconds since 1970-01-01T00:00:00Z)\nwind_speed (Mean wind speed, m s-1)\nwind_speed_std (Standard deviation wind speed, m s-1)\nwind_speed_max (Maximum wind speed, m s-1)\nwind_speed_max_time (Time of maximum wind speed, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (Minimum wind speed, m s-1)\nwind_speed_min_time (Time of minimum wind speed, seconds since 1970-01-01T00:00:00Z)\nwind_from_direction (degrees)\nwind_from_direction_std (Standard deviation of wind direction, degrees)\nrainfall_amount (Rainfall total, mm)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d98d_1d43_fef7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d98d_1d43_fef7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d98d_1d43_fef7/index.json", "http://www.coralreefresearchfoundation.org", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d98d_1d43_fef7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d98d_1d43_fef7&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "hawaii_soest_d98d_1d43_fef7"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whoiSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whoiSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whoiSos.graph", "", "", "public", "WHOI MVCO 12m Node ADCP SOS, 2008-present", "Wave observations from the 12m node ADCP in the Martha's Vineyard Coastal Observatory (MVCO) in the northwest Atlantic in coastal waters of North America. Extensive, detailed documentation is available in these .xml files:\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/MVCO_ObservingSystem.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/ADCP_System.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/MVCO_Workhorse_1200.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/RDI_Workhorse_1200.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Pressure_Obs_Process.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Velocity_Obs_Process.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Pressure_QC_Chain.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Velocity_QC_Chain.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/PUV_Analysis.xml\n\nFor this dataset, if you want the most recent data, you MUST change the default end time constraint to be a time that is slightly (a few seconds or a few minutes) in the past. The source data server does not allow end time constraints that are after the exact current time.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\npressure (Mean Sea Water Pressure, cm)\nwaveHeightFromPressure (Wave Height from Pressure, cm)\nwavePeriodFromPressure (Wave Period from Pressure, s)\nloCutoffFrequency (Low Cutoff Frequency, Hz)\nhiCutoffFrequency (High Cutoff Frequency, Hz)\nwaveHeightAll (Wave Height All, cm)\nswell (cm)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whoiSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whoiSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whoiSos/index.json", "https://www.whoi.edu/mvco", "http://upwell.pfeg.noaa.gov/erddap/rss/whoiSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoiSos&showErrors=false&email=", "Woods Hole Oceanographic Institution", "whoiSos"] + ] + } + } + recorded_at: 2019-01-31 19:30:02 GMT + recorded_with: vcr/0.2.2, webmockr/0.3.0 diff --git a/tests/vcr_cassettes/ed_search.yml b/tests/vcr_cassettes/ed_search.yml new file mode 100644 index 0000000..08b47ff --- /dev/null +++ b/tests/vcr_cassettes/ed_search.yml @@ -0,0 +1,1095 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/search/index.json?searchFor=temperature + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.7.0.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Thu, 31 Jan 2019 19:31:24 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=search.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_490d_1198_15c1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_490d_1198_15c1.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_490d_1198_15c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_490d_1198_15c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_490d_1198_15c1/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_490d_1198_15c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_490d_1198_15c1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_490d_1198_15c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb9a_8f65_4783", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb9a_8f65_4783.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb9a_8f65_4783/request", "", "public", "Top Dataset, std, air.mon.anom.biased2.5 (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.biased2.5.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly 2.5 Bias Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb9a_8f65_4783_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb9a_8f65_4783_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb9a_8f65_4783/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb9a_8f65_4783.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb9a_8f65_4783&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fb9a_8f65_4783"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08b8_4b79_072d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08b8_4b79_072d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_08b8_4b79_072d/request", "", "public", "Top Dataset, std, air.mon.anom.biased97.5 (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.biased97.5.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly 97.5 Bias Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_08b8_4b79_072d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_08b8_4b79_072d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_08b8_4b79_072d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_08b8_4b79_072d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_08b8_4b79_072d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_08b8_4b79_072d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca10_45fa_9108", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca10_45fa_9108.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca10_45fa_9108/request", "", "public", "CRUTEM4 Air Temperature Dataset (Top Dataset, std, air.mon.anom), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca10_45fa_9108_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca10_45fa_9108_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca10_45fa_9108/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca10_45fa_9108.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca10_45fa_9108&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ca10_45fa_9108"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fc4_7974_6ee1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fc4_7974_6ee1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8fc4_7974_6ee1/request", "", "public", "Top Dataset, std, air.mon.anom.nobs (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.nobs.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Number of Observations, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8fc4_7974_6ee1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8fc4_7974_6ee1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8fc4_7974_6ee1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8fc4_7974_6ee1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8fc4_7974_6ee1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8fc4_7974_6ee1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1123_8add_cc23", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1123_8add_cc23.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1123_8add_cc23/request", "", "public", "Top Dataset, std, air.mon.anom.samplingerror (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.samplingerror.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Sampling Error, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1123_8add_cc23_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1123_8add_cc23_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1123_8add_cc23/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1123_8add_cc23.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1123_8add_cc23&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1123_8add_cc23"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7168_64d1_22b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7168_64d1_22b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7168_64d1_22b7/request", "", "public", "Top Dataset, std, air.mon.anom.stationerror (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.stationerror.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Station Errors, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7168_64d1_22b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7168_64d1_22b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7168_64d1_22b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7168_64d1_22b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7168_64d1_22b7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7168_64d1_22b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5523_8517_2d0a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5523_8517_2d0a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5523_8517_2d0a/request", "", "public", "CRUTEM4 Air Temperature Dataset (Top Dataset, std, air.mon.mean), 5.0\u00b0, 1851-2018", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.mean.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5523_8517_2d0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5523_8517_2d0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5523_8517_2d0a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5523_8517_2d0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5523_8517_2d0a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5523_8517_2d0a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7944_c525_7af1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7944_c525_7af1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7944_c525_7af1/request", "", "public", "CRUTEM4 Air Temperature Dataset (Top Dataset, var, air.mon.anom), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/var/air.mon.anom.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4V: Surface Air Temperature Monthly Anomaly Variance Adjusted, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7944_c525_7af1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7944_c525_7af1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7944_c525_7af1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7944_c525_7af1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7944_c525_7af1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7944_c525_7af1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff85_13e0_9b4c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff85_13e0_9b4c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff85_13e0_9b4c/request", "", "public", "CRU Combined Surface/Marine Air Temperature Climatology 1961-1990. (air.mon.ltm), 5.0\u00b0, 0001", "Climatic Research Unit (CRU) Combined Surface/Marine Air Temperature Climatology 1961-1990. (Top Dataset, ltm, air.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRU Combined Surface/Marine Air Temperature Monthly Climatology, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff85_13e0_9b4c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff85_13e0_9b4c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff85_13e0_9b4c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.hadcru3.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff85_13e0_9b4c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff85_13e0_9b4c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ff85_13e0_9b4c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db71_e764_2972", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db71_e764_2972.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db71_e764_2972/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom.biased2.5), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.biased2.5.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly 2.5 Bias Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db71_e764_2972_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db71_e764_2972_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db71_e764_2972/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db71_e764_2972.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db71_e764_2972&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_db71_e764_2972"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b69_a9bd_e36a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b69_a9bd_e36a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b69_a9bd_e36a/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom.biased97.5), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.biased97.5.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly 97.5 Bias Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b69_a9bd_e36a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b69_a9bd_e36a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b69_a9bd_e36a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b69_a9bd_e36a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b69_a9bd_e36a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6b69_a9bd_e36a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e9a_1f1a_237c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e9a_1f1a_237c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6e9a_1f1a_237c/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom.mserror), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.mserror.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly M+S Errors, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6e9a_1f1a_237c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6e9a_1f1a_237c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6e9a_1f1a_237c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6e9a_1f1a_237c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6e9a_1f1a_237c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6e9a_1f1a_237c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e0c_7b02_93a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e0c_7b02_93a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e0c_7b02_93a0/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e0c_7b02_93a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e0c_7b02_93a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e0c_7b02_93a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e0c_7b02_93a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e0c_7b02_93a0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3e0c_7b02_93a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_069d_ff4e_902c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_069d_ff4e_902c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_069d_ff4e_902c/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom.stationerror), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.stationerror.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly Station Errors, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_069d_ff4e_902c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_069d_ff4e_902c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_069d_ff4e_902c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_069d_ff4e_902c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_069d_ff4e_902c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_069d_ff4e_902c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f29a_8f1c_b66a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f29a_8f1c_b66a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f29a_8f1c_b66a/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly Variance Adjusted (air.mon.anom), 5.0\u00b0, 1850-2014", "This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/var/air.mon.anom.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3V: Surface Air Temperature Monthly Anomaly Variance Adjusted, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f29a_8f1c_b66a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f29a_8f1c_b66a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f29a_8f1c_b66a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f29a_8f1c_b66a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f29a_8f1c_b66a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f29a_8f1c_b66a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2454_f596_6532", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2454_f596_6532.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2454_f596_6532/request", "", "public", "HADCRUT4 Combined Air Temperature/SST Anomaly Error (Top Dataset, hadcrut4, air.mon.anom.error), 5.0\u00b0, 1850-present", "HADCRUT4 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly Error. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut4/air.mon.anom.error.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT4: Median Surface Air Temperature Monthly Median Anomaly Error from 100 ensemble members, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2454_f596_6532_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2454_f596_6532_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2454_f596_6532/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.hadcrut4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2454_f596_6532.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2454_f596_6532&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2454_f596_6532"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87e4_c3bd_8e9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87e4_c3bd_8e9f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_87e4_c3bd_8e9f/request", "", "public", "HADCRUT4 Combined Air Temperature/SST Anomaly (Top Dataset, hadcrut4, air.mon.anom.median), 5.0\u00b0, 1850-present", "HADCRUT4 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut4/air.mon.anom.median.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT4: Median Surface Air Temperature Monthly Median Anomaly from 100 ensemble members, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_87e4_c3bd_8e9f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_87e4_c3bd_8e9f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_87e4_c3bd_8e9f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.hadcrut4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_87e4_c3bd_8e9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_87e4_c3bd_8e9f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_87e4_c3bd_8e9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e74_4bc8_6541", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e74_4bc8_6541.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2e74_4bc8_6541/request", "", "public", "HADCRUT4 Combined Air Temperature/SST Anomaly (Top Dataset, hadcrut4, air.mon.ltm), 5.0\u00b0, 0001", "HADCRUT4 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut4/air.mon.ltm.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean HADCRUT4: Median Surface Air Temperature Monthly Median Anomaly from 100 ensemble members, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2e74_4bc8_6541_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2e74_4bc8_6541_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2e74_4bc8_6541/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.hadcrut4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2e74_4bc8_6541.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2e74_4bc8_6541&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2e74_4bc8_6541"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a2f_0bd6_7d46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a2f_0bd6_7d46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a2f_0bd6_7d46/request", "", "public", "NOAA/NCEP GHCN CAMS Monthly Temperature (Top Dataset, ghcncams, air.mon.mean), 0.5\u00b0, 1948-present", "NOAA/National Centers for Environmental Prediction (NCEP) Global Historical Climatology Network (GHCN) Climate Anomaly Monitoring System (CAMS) Monthly Temperature (Top Dataset, ghcncams, air.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly mean of surface temperature, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a2f_0bd6_7d46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a2f_0bd6_7d46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a2f_0bd6_7d46/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ghcncams.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a2f_0bd6_7d46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a2f_0bd6_7d46&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7a2f_0bd6_7d46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a52_974c_51c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a52_974c_51c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a52_974c_51c3/request", "", "public", "GHCN version 3 Land Temperature Anomalies from GHCN-M V3.2.1 (air.mon.anom), 5.0\u00b0, 1880-present", "Global Historical Climatology Network (GHCN) version 3 Land Temperature Anomalies from GHCN-M V3.2.1 (Top Dataset, ghcngridded, air.mon.anom)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (GHCN V3.2.1 Gridded Air Temperature Anomalies, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a52_974c_51c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a52_974c_51c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a52_974c_51c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ghcnv2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a52_974c_51c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a52_974c_51c3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6a52_974c_51c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59d9_7395_d51c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59d9_7395_d51c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_59d9_7395_d51c/request", "", "public", "Top Dataset, jmatemp, air.mon.anom (JMA Air Temperature), 5.0\u00b0, 1891-2017", "Japanese Meteorological Agency (JMA) Air Temperature (Top Dataset, jmatemp, air.mon.anom)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Surface Air Temperature and SST Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_59d9_7395_d51c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_59d9_7395_d51c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_59d9_7395_d51c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.jmatemp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_59d9_7395_d51c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_59d9_7395_d51c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_59d9_7395_d51c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e48_50e0_5563", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e48_50e0_5563.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7e48_50e0_5563/request", "", "public", "Top Dataset, jmatemp, air.mon.ltm.1981-2010 (JMA Air Temperature), 5.0\u00b0, 0001", "Japanese Meteorological Agency (JMA) Air Temperature (Top Dataset, jmatemp, air.mon.ltm.1981-2010)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Surface Air Temperature and SST Monthly Anomaly, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7e48_50e0_5563_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7e48_50e0_5563_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e48_50e0_5563/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.jmatemp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e48_50e0_5563.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e48_50e0_5563&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7e48_50e0_5563"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d54_f835_418e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d54_f835_418e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9d54_f835_418e/request", "", "public", "NOAA Merged Land-Ocean Surface Temperature (Top Dataset, mlost, air.mon.anom.v3.54), 5.0\u00b0, 1880-2015", "NOAA Merged Land-Ocean Surface Temperature Analysis (Top Dataset, mlost, air.mon.anom.v3.54)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Surface Air Temperature and SST Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9d54_f835_418e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9d54_f835_418e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9d54_f835_418e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.mlost.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9d54_f835_418e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9d54_f835_418e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9d54_f835_418e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e48_32de_0b48", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e48_32de_0b48.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e48_32de_0b48/request", "", "public", "Apr longterm mean diurnal cycle air temperature from the NCEP Reanalysis (airapr.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for April, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e48_32de_0b48_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e48_32de_0b48_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e48_32de_0b48/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e48_32de_0b48.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e48_32de_0b48&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8e48_32de_0b48"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37eb_c4e6_9e14", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37eb_c4e6_9e14.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_37eb_c4e6_9e14/request", "", "public", "Jan longterm mean diurnal cycle air temperature from the NCEP Reanalysis (airjan.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for January, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_37eb_c4e6_9e14_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_37eb_c4e6_9e14_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_37eb_c4e6_9e14/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_37eb_c4e6_9e14.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_37eb_c4e6_9e14&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_37eb_c4e6_9e14"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c667_f1d9_c606", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c667_f1d9_c606.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c667_f1d9_c606/request", "", "public", "Jul longterm mean diurnal cycle air temperature from the NCEP Reanalysis (airjul.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for July, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c667_f1d9_c606_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c667_f1d9_c606_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c667_f1d9_c606/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c667_f1d9_c606.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c667_f1d9_c606&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c667_f1d9_c606"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a71e_9825_5150", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a71e_9825_5150.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a71e_9825_5150/request", "", "public", "Oct longterm mean diurnal cycle air temperature from the NCEP Reanalysis (airoct.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for October, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a71e_9825_5150_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a71e_9825_5150_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a71e_9825_5150/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a71e_9825_5150.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a71e_9825_5150&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a71e_9825_5150"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b248_0ade_c33f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b248_0ade_c33f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b248_0ade_c33f/request", "", "public", "NCEP Reanalysis Diurnal Cycle Surface Air Temperature (airsfcapr.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for April, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b248_0ade_c33f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b248_0ade_c33f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b248_0ade_c33f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b248_0ade_c33f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b248_0ade_c33f&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b248_0ade_c33f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0b0_2f2e_629c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0b0_2f2e_629c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f0b0_2f2e_629c/request", "", "public", "NCEP Reanalysis Diurnal Cycle Surface Air Temperature (airsfcjan.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for January, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f0b0_2f2e_629c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f0b0_2f2e_629c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f0b0_2f2e_629c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f0b0_2f2e_629c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f0b0_2f2e_629c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f0b0_2f2e_629c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e20_c60c_81f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e20_c60c_81f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4e20_c60c_81f2/request", "", "public", "NCEP Reanalysis Diurnal Cycle Surface Air Temperature (airsfcjul.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for July, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4e20_c60c_81f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4e20_c60c_81f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4e20_c60c_81f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4e20_c60c_81f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4e20_c60c_81f2&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_4e20_c60c_81f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fced_49d1_25d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fced_49d1_25d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fced_49d1_25d5/request", "", "public", "NCEP Reanalysis Diurnal Cycle Surface Air Temperature (airsfcoct.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for October, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fced_49d1_25d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fced_49d1_25d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fced_49d1_25d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fced_49d1_25d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fced_49d1_25d5&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_fced_49d1_25d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e2c_a437_16c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e2c_a437_16c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5e2c_a437_16c1/request", "", "public", "Top Dataset, noaaglobaltemp, air.mon.anom.1971-2000 (NOAA Global Temperature), 5.0\u00b0, 0001", "NOAA Global Temperature (Top Dataset, noaaglobaltemp, air.mon.anom.1971-2000)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Surface Air Temperature and SST Monthly Anomaly, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5e2c_a437_16c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5e2c_a437_16c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5e2c_a437_16c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaaglobaltemp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5e2c_a437_16c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5e2c_a437_16c1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5e2c_a437_16c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4522_b5db_5cc8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4522_b5db_5cc8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4522_b5db_5cc8/request", "", "public", "Top Dataset, noaaglobaltemp, air.mon.anom.1981-2010 (NOAA Global Temperature), 5.0\u00b0, 0001", "NOAA Global Temperature (Top Dataset, noaaglobaltemp, air.mon.anom.1981-2010)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Surface Air Temperature and SST Monthly Anomaly, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4522_b5db_5cc8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4522_b5db_5cc8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4522_b5db_5cc8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaaglobaltemp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4522_b5db_5cc8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4522_b5db_5cc8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4522_b5db_5cc8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdc8_eec8_0c79", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdc8_eec8_0c79.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bdc8_eec8_0c79/request", "", "public", "Top Dataset, noaaglobaltemp, air.mon.anom (NOAA Global Temperature), 5.0\u00b0, 1880-present", "NOAA Global Temperature (Top Dataset, noaaglobaltemp, air.mon.anom)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Surface Air Temperature and SST Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bdc8_eec8_0c79_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bdc8_eec8_0c79_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bdc8_eec8_0c79/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaaglobaltemp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bdc8_eec8_0c79.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bdc8_eec8_0c79&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bdc8_eec8_0c79"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89c1_20dd_0d9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89c1_20dd_0d9f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_89c1_20dd_0d9f/request", "", "public", "NOAA Merged Land-Ocean Surface Temperature (Top Dataset, noaaglobaltemp, lsmask), 5.0\u00b0, 2000", "NOAA Merged Land-Ocean Surface Temperature Analysis (Top Dataset, noaaglobaltemp, lsmask)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlsmask (Surface Air Temperature and SST Land Mask, fraction)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_89c1_20dd_0d9f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_89c1_20dd_0d9f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_89c1_20dd_0d9f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaaglobaltemp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_89c1_20dd_0d9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_89c1_20dd_0d9f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_89c1_20dd_0d9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_307f_7a28_c260", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_307f_7a28_c260.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_307f_7a28_c260/request", "", "public", "Terrestrial Air Temperature and Precipitation: V4.01 (air.mon.ltm.v401), 0.5\u00b0, 0001", "Terrestrial Air Temperature and Precipitation: V4.01 (Top Dataset, udel.airt.precip, air.mon.ltm.v401)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly mean of surface temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_307f_7a28_c260_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_307f_7a28_c260_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_307f_7a28_c260/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.UDel_AirT_Precip.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_307f_7a28_c260.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_307f_7a28_c260&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_307f_7a28_c260"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d99a_9d42_4732", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d99a_9d42_4732.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d99a_9d42_4732/request", "", "public", "Terrestrial Air Temperature and Precipitation: V4.01 (air.mon.mean.v401), 0.5\u00b0, 1900-2014", "Terrestrial Air Temperature and Precipitation: V4.01 (Top Dataset, udel.airt.precip, air.mon.mean.v401)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly mean of surface temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d99a_9d42_4732_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d99a_9d42_4732_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d99a_9d42_4732/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.UDel_AirT_Precip.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d99a_9d42_4732.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d99a_9d42_4732&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d99a_9d42_4732"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_90a6_5d19_d812", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_90a6_5d19_d812.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_90a6_5d19_d812/request", "", "public", "Terrestrial Air Temperature and Precipitation: V4.01 (precip.mon.ltm.v401), 0.5\u00b0, 0001", "Terrestrial Air Temperature and Precipitation: V4.01 (Top Dataset, udel.airt.precip, precip.mon.ltm.v401)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Long Term Mean Monthly total of precipitation, cm)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_90a6_5d19_d812_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_90a6_5d19_d812_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_90a6_5d19_d812/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.UDel_AirT_Precip.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_90a6_5d19_d812.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_90a6_5d19_d812&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_90a6_5d19_d812"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4628_387e_f7bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4628_387e_f7bc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4628_387e_f7bc/request", "", "public", "Terrestrial Air Temperature and Precipitation: V4.01 (precip.mon.total.v401), 0.5\u00b0, 1900-2014", "Terrestrial Air Temperature and Precipitation: V4.01 (Top Dataset, udel.airt.precip, precip.mon.total.v401)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Monthly total of precipitation, cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4628_387e_f7bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4628_387e_f7bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4628_387e_f7bc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.UDel_AirT_Precip.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4628_387e_f7bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4628_387e_f7bc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4628_387e_f7bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKastdhday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKastdhday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKastdhday/request", "", "public", "Temperature, All Surface, POES AVHRR, LAC, Alaska, Daytime, 2005-2008 (Hourly)", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKastdhday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKastdhday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKastdhday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_astd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKastdhday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKastdhday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKastdhday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastdhday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastdhday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATastdhday/request", "", "public", "Temperature, All Surface, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Daytime, 2006-present (Single Scan)", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATastdhday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATastdhday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATastdhday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_astd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATastdhday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATastdhday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATastdhday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastnhday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastnhday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATastnhday/request", "", "public", "Temperature, All Surface, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Nighttime, 2006-present (Single Scan)", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATastnhday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATastnhday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATastnhday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_astn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATastnhday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATastnhday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATastnhday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWsstn1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWsstn1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWsstn1day/request", "", "public", "Coral Reef Watch, Nighttime Temperature, 50 km, 2000-2011 (1 Day Composite)", "NOAA Coral Reef Watch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWsstn1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWsstn1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWsstn1day/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWsstn1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWsstn1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWsstn1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWtanm1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWtanm1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWtanm1day/request", "", "public", "Coral Reef Watch, Temperature Anomaly, 50 km, 2000-2011 (1 Day Composite)", "NOAA Coral Reef Watch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWtanm1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWtanm1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWtanm1day/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWtanm1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWtanm1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWtanm1day"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://www.usgodae.org/cgi-bin/datalist.pl?summary=Go&dset=fnmoc_obs_sfcobs", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdHadISST", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdHadISST.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdHadISST/request", "", "public", "HadISST Average Sea Surface Temperature, 1\u00b0, Global, Monthly, 1870-present", "The Met Office Hadley Centre's sea ice and sea surface temperature (SST) data set, HadISST1, replaces the Global sea Ice and Sea Surface Temperature (GISST) data sets, and is a unique combination of monthly globally-complete fields of SST and sea ice concentration on a 1 degree latitude-longitude grid from 1870 to date. \n \nWARNING: 10 March 2016: A detailed analysis of HadISST (https://ir.library.oregonstate.edu/xmlui/handle/1957/58385) has identified a number of problems, some of which might limit the utility of the dataset for certain scientific applications, particularly where high resolution SST data or spatial gradients of SST are required. Thanks to Dudley Chelton and Craig Risien for bringing this to our attention and their detailed analysis. \n\nThe SST data are taken from the Met Office Marine Data Bank (MDB), which from 1982 onwards also includes data received through the Global Telecommunications System (GTS). In order to enhance data coverage, monthly median SSTs for 1871-1995 from the Comprehensive Ocean-Atmosphere Data Set (COADS) (now ICOADS) were also used where there were no MDB data.\n\nHadISST1 temperatures are reconstructed using a two stage reduced-space optimal interpolation procedure, followed by superposition of quality-improved gridded observations onto the reconstructions to restore local detail. SSTs near sea ice are estimated using statistical relationships between SST and sea ice concentration.\n\nData restrictions: for academic research use only.\n\nUpdates and supplementary information will be available from http://www.hadobs.org\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdHadISST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdHadISST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdHadISST/index.json", "http://hadobs.metoffice.com/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdHadISST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdHadISST&showErrors=false&email=", "Met Office Hadley Centre", "erdHadISST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKastdhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKastdhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKastdhday_LonPM180/request", "", "public", "Temperature, All Surface, POES AVHRR, LAC, Alaska, Daytime, 2005-2008 (Hourly), Lon+/-180", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKastdhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKastdhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKastdhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_astd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKastdhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKastdhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKastdhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastdhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastdhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATastdhday_LonPM180/request", "", "public", "Temperature, All Surface, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Daytime, 2006-present (Single Scan), Lon+/-180", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATastdhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATastdhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATastdhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_astd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATastdhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATastdhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATastdhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastnhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastnhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATastnhday_LonPM180/request", "", "public", "Temperature, All Surface, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Nighttime, 2006-present (Single Scan), Lon+/-180", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATastnhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATastnhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATastnhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_astn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATastnhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATastnhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATastnhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWsstn1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWsstn1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWsstn1day_LonPM180/request", "", "public", "Coral Reef Watch, Nighttime Temperature, 50 km, 2000-2011 (1 Day Composite), Lon+/-180", "NOAA Coral Reef Watch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWsstn1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWsstn1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWsstn1day_LonPM180/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWsstn1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWsstn1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWsstn1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWtanm1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWtanm1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWtanm1day_LonPM180/request", "", "public", "Coral Reef Watch, Temperature Anomaly, 50 km, 2000-2011 (1 Day Composite), Lon+/-180", "NOAA Coral Reef Watch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWtanm1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWtanm1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWtanm1day_LonPM180/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWtanm1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWtanm1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWtanm1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann1t", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann1t.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09ann1t/request", "", "public", "World Ocean Atlas 2009, Annual Climatology, 1 degree, Temperature, Salinity, Oxygen", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (1 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for an annual compositing period for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 1 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_an (Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_ma (Seasonal or Monthly Climatology minus Annual Climatology, degree_C)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\ntemperature_gp (Number of Temperature Mean Values within Radius of Influence, count)\nsalinity_an (Objectively Analyzed Practical Salinity Climatology, PSS-78)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_ma (Seasonal or Monthly Climatology minus Annual Climatology, PSU)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\nsalinity_gp (Number of Salinity Mean Values within Radius of Influence, count)\noxygenSat_an (Objectively Analyzed Oxygen Saturation Climatology, 1)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_ma (Seasonal or Monthly Climatology minus Annual Climatology, 1)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\noxygenSat_gp (Number of Oxygen Saturation Mean Values within Radius of Influence, count)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09ann1t_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09ann1t_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09ann1t/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09ann1t.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09ann1t&showErrors=false&email=", "NOAA NODC", "nodcWoa09ann1t"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann1t_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann1t_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09ann1t_LonPM180/request", "", "public", "World Ocean Atlas 2009, Annual Climatology, 1 degree, Temperature, Salinity, Oxygen, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (1 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for an annual compositing period for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 1 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_an (Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_ma (Seasonal or Monthly Climatology minus Annual Climatology, degree_C)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\ntemperature_gp (Number of Temperature Mean Values within Radius of Influence, count)\nsalinity_an (Objectively Analyzed Practical Salinity Climatology, PSS-78)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_ma (Seasonal or Monthly Climatology minus Annual Climatology, PSU)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\nsalinity_gp (Number of Salinity Mean Values within Radius of Influence, count)\noxygenSat_an (Objectively Analyzed Oxygen Saturation Climatology, 1)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_ma (Seasonal or Monthly Climatology minus Annual Climatology, 1)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\noxygenSat_gp (Number of Oxygen Saturation Mean Values within Radius of Influence, count)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09ann1t_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09ann1t_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09ann1t_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09ann1t_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09ann1t_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09ann1t_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann5t", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann5t.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09ann5t/request", "", "public", "World Ocean Atlas 2009, Annual Climatology, 5 degree, Temperature, Salinity, Oxygen", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for an annual compositing period for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\ndisOxygen_mn (Mean of Dissolved Oxygen Observations, ml/l)\ndisOxygen_dd (Number of Dissolved Oxygen Observations, count)\ndisOxygen_sd (Standard Deviation of Dissolved Oxygen Observations, ml/l)\ndisOxygen_se (Standard Error of Dissolved Oxygen Observations, ml/l)\nAOU_mn (Mean of Apparent Oxygen Utilization Observations, ml/l)\nAOU_dd (Number of Apparent Oxygen Utilization Observations, count)\nAOU_sd (Standard Deviation of Apparent Oxygen Utilization Observations, ml/l)\nAOU_se (Standard Error of Apparent Oxygen Utilization Observations, ml/l)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09ann5t_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09ann5t_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09ann5t/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09ann5t.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09ann5t&showErrors=false&email=", "NOAA NODC", "nodcWoa09ann5t"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann5t_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann5t_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09ann5t_LonPM180/request", "", "public", "World Ocean Atlas 2009, Annual Climatology, 5 degree, Temperature, Salinity, Oxygen, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for an annual compositing period for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\ndisOxygen_mn (Mean of Dissolved Oxygen Observations, ml/l)\ndisOxygen_dd (Number of Dissolved Oxygen Observations, count)\ndisOxygen_sd (Standard Deviation of Dissolved Oxygen Observations, ml/l)\ndisOxygen_se (Standard Error of Dissolved Oxygen Observations, ml/l)\nAOU_mn (Mean of Apparent Oxygen Utilization Observations, ml/l)\nAOU_dd (Number of Apparent Oxygen Utilization Observations, count)\nAOU_sd (Standard Deviation of Apparent Oxygen Utilization Observations, ml/l)\nAOU_se (Standard Error of Apparent Oxygen Utilization Observations, ml/l)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09ann5t_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09ann5t_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09ann5t_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09ann5t_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09ann5t_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09ann5t_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon1t", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon1t.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09mon1t/request", "", "public", "World Ocean Atlas 2009, Monthly Climatology, 1 degree, Temperature, Salinity, Oxygen", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (1 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for monthly compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 1 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_an (Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_ma (Monthly Temperature Climatology minus Annual Climatology, degree_C)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\ntemperature_oa (Temperature Mean minus Objectively Analyzed Climatology, degree_C)\ntemperature_gp (Number of Temperature Mean Values within Radius of Influence, count)\nsalinity_an (Objectively Analyzed Practical Salinity Climatology, PSS-78)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_ma (Monthly Salinity Climatology minus Annual Climatology, PSU)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\nsalinity_oa (Salinity Mean minus Objectively Analyzed Climatology, PSU)\nsalinity_gp (Number of Salinity Mean Values within Radius of Influence, count)\noxygenSat_an (Objectively Analyzed Oxygen Saturation Climatology, 1)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_ma (Monthly Oxygen Saturation Climatology minus Annual Climatology, 1)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09mon1t_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09mon1t_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09mon1t/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09mon1t.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09mon1t&showErrors=false&email=", "NOAA NODC", "nodcWoa09mon1t"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon1t_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon1t_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09mon1t_LonPM180/request", "", "public", "World Ocean Atlas 2009, Monthly Climatology, 1 degree, Temperature, Salinity, Oxygen, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (1 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for monthly compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 1 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_an (Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_ma (Monthly Temperature Climatology minus Annual Climatology, degree_C)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\ntemperature_oa (Temperature Mean minus Objectively Analyzed Climatology, degree_C)\ntemperature_gp (Number of Temperature Mean Values within Radius of Influence, count)\nsalinity_an (Objectively Analyzed Practical Salinity Climatology, PSS-78)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_ma (Monthly Salinity Climatology minus Annual Climatology, PSU)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\nsalinity_oa (Salinity Mean minus Objectively Analyzed Climatology, PSU)\nsalinity_gp (Number of Salinity Mean Values within Radius of Influence, count)\noxygenSat_an (Objectively Analyzed Oxygen Saturation Climatology, 1)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_ma (Monthly Oxygen Saturation Climatology minus Annual Climatology, 1)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09mon1t_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09mon1t_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09mon1t_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09mon1t_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09mon1t_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09mon1t_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon5t", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon5t.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09mon5t/request", "", "public", "World Ocean Atlas 2009, Monthly Climatology, 5 degree, Temperature, Salinity, Oxygen", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for monthly compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsslinity_dd (Number of Salinity Observations, count)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\ndisOxygen_mn (Mean of Dissolved Oxygen Observations, ml/l)\ndisOxygen_dd (Number of Dissolved Oxygen Observations, count)\ndisOxygen_sd (Standard Deviation of Dissolved Oxygen Observations, ml/l)\ndisOxygen_se (Standard Error of Dissolved Oxygen Observations, ml/l)\nAOU_mn (Mean of Apparent Oxygen Utilization Observations, ml/l)\nAOU_dd (Number of Apparent Oxygen Utilization Observations, count)\nAOU_sd (Standard Deviation of Apparent Oxygen Utilization Observations, ml/l)\nAOU_se (Standard Error of Apparent Oxygen Utilization Observations, ml/l)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09mon5t_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09mon5t_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09mon5t/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09mon5t.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09mon5t&showErrors=false&email=", "NOAA NODC", "nodcWoa09mon5t"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon5t_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon5t_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09mon5t_LonPM180/request", "", "public", "World Ocean Atlas 2009, Monthly Climatology, 5 degree, Temperature, Salinity, Oxygen, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for monthly compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsslinity_dd (Number of Salinity Observations, count)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\ndisOxygen_mn (Mean of Dissolved Oxygen Observations, ml/l)\ndisOxygen_dd (Number of Dissolved Oxygen Observations, count)\ndisOxygen_sd (Standard Deviation of Dissolved Oxygen Observations, ml/l)\ndisOxygen_se (Standard Error of Dissolved Oxygen Observations, ml/l)\nAOU_mn (Mean of Apparent Oxygen Utilization Observations, ml/l)\nAOU_dd (Number of Apparent Oxygen Utilization Observations, count)\nAOU_sd (Standard Deviation of Apparent Oxygen Utilization Observations, ml/l)\nAOU_se (Standard Error of Apparent Oxygen Utilization Observations, ml/l)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09mon5t_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09mon5t_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09mon5t_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09mon5t_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09mon5t_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09mon5t_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea1t", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea1t.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09sea1t/request", "", "public", "World Ocean Atlas 2009, Seasonal Climatology, 1 degree, Temperature, Salinity, Oxygen", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (1 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for seasonal compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 1 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_an (Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_ma (Temperature Monthly Minus Annual Climatology, degree_C)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\ntemperature_oa (Statistical Mean minus Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_gp (Number of Mean Temperature Values within Radius of Influence, count)\nsalinity_an (Objectively Analyzed Practical Salinity Climatology, PSS-78)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_ma (Seasonal Salinity Climatology minus Annual Climatology, PSU)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of the Statistical Mean, PSU)\nsalinity_oa (Salinity Mean minus Objectively Analyzed Climatology, PSU)\nsalinity_gp (Number of Salinity Mean Values within Radius of Influence, count)\noxygenSat_an (Objectively Analyzed Oxygen Saturation Climatology, 1)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_ma (Seasonal Oxygen Saturation Climatology minus Annual Climatology, 1)\noxygenSat_sd (Standard Deviation of Oxygen Saturation, 1)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09sea1t_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09sea1t_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09sea1t/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09sea1t.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09sea1t&showErrors=false&email=", "NOAA NODC", "nodcWoa09sea1t"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea1t_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea1t_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09sea1t_LonPM180/request", "", "public", "World Ocean Atlas 2009, Seasonal Climatology, 1 degree, Temperature, Salinity, Oxygen, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (1 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for seasonal compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 1 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_an (Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_ma (Temperature Monthly Minus Annual Climatology, degree_C)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\ntemperature_oa (Statistical Mean minus Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_gp (Number of Mean Temperature Values within Radius of Influence, count)\nsalinity_an (Objectively Analyzed Practical Salinity Climatology, PSS-78)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_ma (Seasonal Salinity Climatology minus Annual Climatology, PSU)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of the Statistical Mean, PSU)\nsalinity_oa (Salinity Mean minus Objectively Analyzed Climatology, PSU)\nsalinity_gp (Number of Salinity Mean Values within Radius of Influence, count)\noxygenSat_an (Objectively Analyzed Oxygen Saturation Climatology, 1)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_ma (Seasonal Oxygen Saturation Climatology minus Annual Climatology, 1)\noxygenSat_sd (Standard Deviation of Oxygen Saturation, 1)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09sea1t_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09sea1t_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09sea1t_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09sea1t_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09sea1t_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09sea1t_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea5t", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea5t.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09sea5t/request", "", "public", "World Ocean Atlas 2009, Seasonal Climatology, 5 degree, Temperature, Salinity, Oxygen", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for seasonal compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\ndisOxygen_mn (Mean of Dissolved Oxygen Observations, ml/l)\ndisOxygen_dd (Number of Dissolved Oxygen Observations, count)\ndisOxygen_sd (Standard Deviation of Dissolved Oxygen Observations, ml/l)\ndisOxygen_se (Standard Error of Dissolved Oxygen Observations, ml/l)\nAOU_mn (Mean of Apparent Oxygen Utilization Observations, ml/l)\nAOU_dd (Number of Apparent Oxygen Utilization Observations, count)\nAOU_sd (Standard Deviation of Apparent Oxygen Utilization Observations, ml/l)\nAOU_se (Standard Error of Apparent Oxygen Utilization Observations, ml/l)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09sea5t_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09sea5t_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09sea5t/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09sea5t.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09sea5t&showErrors=false&email=", "NOAA NODC", "nodcWoa09sea5t"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea5t_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea5t_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09sea5t_LonPM180/request", "", "public", "World Ocean Atlas 2009, Seasonal Climatology, 5 degree, Temperature, Salinity, Oxygen, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for seasonal compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\ndisOxygen_mn (Mean of Dissolved Oxygen Observations, ml/l)\ndisOxygen_dd (Number of Dissolved Oxygen Observations, count)\ndisOxygen_sd (Standard Deviation of Dissolved Oxygen Observations, ml/l)\ndisOxygen_se (Standard Error of Dissolved Oxygen Observations, ml/l)\nAOU_mn (Mean of Apparent Oxygen Utilization Observations, ml/l)\nAOU_dd (Number of Apparent Oxygen Utilization Observations, count)\nAOU_sd (Standard Deviation of Apparent Oxygen Utilization Observations, ml/l)\nAOU_se (Standard Error of Apparent Oxygen Utilization Observations, ml/l)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09sea5t_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09sea5t_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09sea5t_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09sea5t_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09sea5t_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09sea5t_LonPM180"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the November 2018 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "http://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplG1SST", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplG1SST.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplG1SST/request", "", "public", "GHRSST Global 1-km Sea Surface Temperature (G1SST), Global, 0.01 Degree, 2010-2017, Daily", "A daily, global Sea Surface Temperature (SST) data set is produced at 1-km (also known as ultra-high resolution) by the JPL ROMS (Regional Ocean Modeling System) group. The input SST data sets are derived from the Global High-Resolution Sea Surface Temperature (SST) Pilot Project (GHRSST-PP). For details, see\nhttps://podaac.jpl.nasa.gov/dataset/JPL_OUROCEAN-L4UHfnd-GLOB-G1SST .\nThis dataset is part of the Multi-sensor Improved Sea Surface Temperatures (MISST) project, which is part of the Group for High-Resolution Sea Surface Temperature (GHRSST) project.\n\nDISCONTINUED - The creators of the jplG1SST dataset stopped production in late Oct 2017. There are more recent files available from JPL, but they are flawed so they are not included in the dataset at ERD. You might consider using the similar jplMURSST41 dataset, \nhttps://coastwatch.pfeg.noaa.gov/erddap/search/index.html?searchFor=jplMURSST41\nwhich has the additional advantage of offering related climatology and anomaly datasets.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST (Analysed Sea Surface Temperature, degree_C)\nmask (sea/land/lake/ice field composite mask)\nanalysis_error (Estimated Error Standard Deviation of Analysed SST, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplG1SST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplG1SST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplG1SST/index.json", "https://podaac.jpl.nasa.gov/dataset/JPL_OUROCEAN-L4UHfnd-GLOB-G1SST", "http://upwell.pfeg.noaa.gov/erddap/rss/jplG1SST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplG1SST&showErrors=false&email=", "NASA JPL", "jplG1SST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1pp1day/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, Global, 2003-present, EXPERIMENTAL (1 Day Composite)", "calculates vertically integrated primary productivity using the Behrenfield - Falkowski method and satellite-based measurements of Chlorophyll a, incident visible surface irradiance, and sea surface temperature. see (Behrenfield and Falkowski, L&O 1997).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1pp1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1pp1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1pp1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PPMH_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1pp1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1pp1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMH1pp1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1pp3day/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, Global, 2003-present, EXPERIMENTAL (3 Day Composite)", "calculates the composite of vertically integrated primary productivity one day files that use the Behrenfield - Falkowski method and satellite-based measurements of Chlorophyll a, incident visible surface irradiance, and sea surface temperature. see (Behrenfield and Falkowski, L&O 1997).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\nnobs (Number of observations in composite, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1pp3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1pp3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1pp3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PPMH_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1pp3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1pp3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMH1pp3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1pp8day/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, Global, 2003-present, EXPERIMENTAL (8 Day Composite)", "calculates the composite of vertically integrated primary productivity one day files that use the Behrenfield - Falkowski method and satellite-based measurements of Chlorophyll a, incident visible surface irradiance, and sea surface temperature. see (Behrenfield and Falkowski, L&O 1997).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\nnobs (Number of observations in composite, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1pp8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1pp8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1pp8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PPMH_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1pp8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1pp8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMH1pp8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1ppmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1ppmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1ppmday/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, Global, 2003-present, EXPERIMENTAL (Monthly Composite)", "calculates the composite of vertically integrated primary productivity one day files that use the Behrenfield - Falkowski method and satellite-based measurements of Chlorophyll a, incident visible surface irradiance, and sea surface temperature. see (Behrenfield and Falkowski, L&O 1997).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1ppmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1ppmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1ppmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PPMH_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1ppmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1ppmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMH1ppmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstd1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstd1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1sstd1day/request", "", "public", "SST, Aqua MODIS, NPP, 4km, Daytime (11 microns), 2003-present (1 Day Composite)", "NOAA CoastWatch provides (mask-applied) global, 11km, Level 3, Standard Mapped Image (SMI), 4km, daytime SST data from NASA's Aqua Spacecraft. This is 1-day composite data. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Masked Daytime Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1sstd1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1sstd1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1sstd1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_sstMask_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1sstd1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1sstd1day&showErrors=false&email=", "NOAA SWFSC ERD", "erdMH1sstd1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstd8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstd8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1sstd8day/request", "", "public", "SST, Aqua MODIS, NPP, 4km, Daytime (11 microns), 2003-present (8 Day Composite)", "NOAA CoastWatch provides (mask-applied) global, 11km, Level 3, Standard Mapped Image (SMI), 4km, daytime SST data from NASA's Aqua Spacecraft. This is 8-day composite data. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Masked Daytime Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1sstd8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1sstd8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1sstd8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_sstMask_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1sstd8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1sstd8day&showErrors=false&email=", "NOAA SWFSC ERD", "erdMH1sstd8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstdmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstdmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1sstdmday/request", "", "public", "SST, Aqua MODIS, NPP, 4km, Daytime (11 microns), 2003-present (Monthly Composite)", "NOAA CoastWatch provides (mask-applied) global, 11km, Level 3, Standard Mapped Image (SMI), 4km, daytime SST data from NASA's Aqua Spacecraft. This is monthly composite data. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Masked Daytime Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1sstdmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1sstdmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1sstdmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_sstMask_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1sstdmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1sstdmday&showErrors=false&email=", "NOAA SWFSC ERD", "erdMH1sstdmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstdmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstdmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWsstdmday/request", "", "public", "SST, Aqua MODIS, NPP, 0.0125\u00b0, West US, Day time (11 microns), 2002-present (Monthly Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWsstdmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWsstdmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWsstdmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWsstdmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWsstdmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWsstdmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPNbfp28day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPNbfp28day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPNbfp28day/request", "", "public", "Primary Productivity, Aqua MODIS and GOES Imager, Global, 2006-2007, EXPERIMENTAL (8 Day Composite)", "Primary Productivity is calculated from NASA Aqua MODIS Chl a and NOAA GOES Imager SST data. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPNbfp28day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPNbfp28day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPNbfp28day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PN_bfp2_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPNbfp28day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPNbfp28day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdPNbfp28day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/osu2SstAnom", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/osu2SstAnom.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/osu2SstAnom/request", "", "public", "OSU SST Anomaly V2, MODIS Aqua, West US, July 2002-present", "This suite of CHLA and SST climatology and anomaly data products are derived from daily, 0.0125 degree x 0.0125 degree, MODIS Aqua CHLA and SST fields that cover the California Current System (22N - 51N, 155W - 105W) for the 11-year period July 2002 through June 2013. These daily fields, obtained from the NOAA CoastWatch West Coast Regional Node website, were processed using a successive 3x3, 5x5 and 7x7 grid cell hybrid median filtering technique. This technique was found to effectively reduce noise in the daily fields while maintaining features and detail in important regions such as capes and headlands. The resulting median filtered daily fields were then linearly interpolated to a 0.025 x 0.025 degree grid and averaged to create 132 monthly mean fields. The seasonal cycles at each 0.025 degree x 0.025 degree grid cell were obtained by fitting each multiyear time series of monthly means to a nine-parameter regression model consisting of a constant plus four harmonics (frequencies of N/(1-year), N-1,4; Risien and Chelton 2008, JPO). Even with the median filtering and the temporal averaging of the daily fields, the highly inhomogeneous nature of the MODIS fields still resulted in regression coefficients that were excessively noisy. We therefore applied the same successive 3x3, 5x5 and 7x7 hybrid median filtering technique, described above, to the regression coefficients before finally spatially smoothing the coefficients using a loess smoother (Schlax et al. 2001, JTECH) with filter cutoff wavelengths of 0.25 degree latitude by 0.25 degree longitude. The seasonal cycles were then calculated from the filtered regression coefficients for each 0.025 degree x 0.025 degree grid cell using the mean and all four harmonics. It is important to note that THIS SUITE OF DATA PRODUCTS IS HIGHLY EXPERIMENTAL and is strictly intended for scientific evaluation by experienced marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst_anomaly (Sea Surface Temperature Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/osu2SstAnom_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/osu2SstAnom_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/osu2SstAnom/index.json", "http://cioss.coas.oregonstate.edu/CIOSS/Documents/Published_Reports/Risien_USWC-Sat-Climatology_5-8-14.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/osu2SstAnom.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=osu2SstAnom&showErrors=false&email=", "Oregon State University - College of Earth, Ocean, and Atmospheric Sciences", "osu2SstAnom"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/osu2SstClimate", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/osu2SstClimate.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/osu2SstClimate/request", "", "public", "OSU SST Climatology V2, MODIS Aqua, West US, 2002-2003", "This suite of CHLA and SST climatology and anomaly data products are derived from daily, 0.0125 degree x 0.0125 degree, MODIS Aqua CHLA and SST fields that cover the California Current System (22N - 51N, 155W - 105W) for the 11-year period July 2002 through June 2013. These daily fields, obtained from the NOAA CoastWatch West Coast Regional Node website, were processed using a successive 3x3, 5x5 and 7x7 grid cell hybrid median filtering technique. This technique was found to effectively reduce noise in the daily fields while maintaining features and detail in important regions such as capes and headlands. The resulting median filtered daily fields were then linearly interpolated to a 0.025 degree x 0.025 degree grid and averaged to create 132 monthly mean fields. The seasonal cycles at each 0.025 degree x 0.025 degree grid cell were obtained by fitting each multiyear time series of monthly means to a nine-parameter regression model consisting of a constant plus four harmonics (frequencies of N/(1-year), N-1,4; Risien and Chelton 2008, JPO). Even with the median filtering and the temporal averaging of the daily fields, the highly inhomogeneous nature of the MODIS fields still resulted in regression coefficients that were excessively noisy. We therefore applied the same successive 3x3, 5x5 and 7x7 hybrid median filtering technique, described above, to the regression coefficients before finally spatially smoothing the coefficients using a loess smoother (Schlax et al. 2001, JTECH) with filter cutoff wavelengths of 0.25 degree latitude by 0.25 degree longitude. The seasonal cycles were then calculated from the filtered regression coefficients for each 0.025 degree x 0.025 degree grid cell using the mean and all four harmonics. It is important to note that THIS SUITE OF DATA PRODUCTS IS HIGHLY EXPERIMENTAL and is strictly intended for scientific evaluation by experienced marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/osu2SstClimate_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/osu2SstClimate_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/osu2SstClimate/index.json", "http://cioss.coas.oregonstate.edu/CIOSS/Documents/Published_Reports/Risien_USWC-Sat-Climatology_5-8-14.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/osu2SstClimate.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=osu2SstClimate&showErrors=false&email=", "Oregon State University - College of Earth, Ocean, and Atmospheric Sciences", "osu2SstClimate"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/NCEP_Global_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/NCEP_Global_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/NCEP_Global_Best/request", "", "public", "NOAA/NCEP Global Forecast System (GFS) Atmospheric Model", "U.S. National Oceanic and Atmospheric Administration (NOAA) National Centers for Environmental Prediction (NCEP) Global Forecast System (GFS) numerical weather prediction model 8-day, 3-hourly forecast for the globe at approximately 50-km or 0.5-deg resolution.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmpsfc (surface air temperature, K)\ntmp2m (air temperature at 2m, K)\nugrd10m (eastward wind velocity at 10m, m s-1)\nvgrd10m (northward wind velocity at 10m, m s-1)\npratesfc (rainfall rate, kg m-2 s-1)\nrh2m (relative humidity at 2m, %)\nprmslmsl (mean sea level pressure, Pa)\ndlwrfsfc (net downward longwave radiation flux, W m-2)\ndswrfsfc (net downward shortwave radiation flux, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/NCEP_Global_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/NCEP_Global_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/NCEP_Global_Best/index.json", "http://www.nco.ncep.noaa.gov/pmb/products/gfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/NCEP_Global_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=NCEP_Global_Best&showErrors=false&email=", "NOAA NCEP", "NCEP_Global_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/NCEP_Pacific_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/NCEP_Pacific_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/NCEP_Pacific_Best/request", "", "public", "NOAA/NCEP Global Forecast System (GFS) Atmospheric Model: Pacific", "U.S. National Oceanic and Atmospheric Administration (NOAA) National Centers for Environmental Prediction (NCEP) Global Forecast System (GFS) numerical weather prediction model 8-day, 3-hourly forecast for the Pacific region at approximately 25-km or 0.25-deg resolution.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmpsfc (surface air temperature, K)\ntmp2m (air temperature at 2m, K)\nugrd10m (eastward wind velocity at 10m, m s-1)\nvgrd10m (northward wind velocity at 10m, m s-1)\npratesfc (rainfall rate, kg m-2 s-1)\nrh2m (relative humidity at 2m, %)\nprmslmsl (mean sea level pressure, Pa)\ndlwrfsfc (net downward longwave radiation flux, W m-2)\ndswrfsfc (net downward shortwave radiation flux, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/NCEP_Pacific_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/NCEP_Pacific_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/NCEP_Pacific_Best/index.json", "http://www.nco.ncep.noaa.gov/pmb/products/gfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/NCEP_Pacific_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=NCEP_Pacific_Best&showErrors=false&email=", "NOAA NCEP", "NCEP_Pacific_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/NOAA_DHW_5km", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/NOAA_DHW_5km.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/NOAA_DHW_5km/request", "", "public", "NOAA Global Coral Bleaching Monitoring Products: Daily 5-km", "Contains a suite of NOAA Coral Reef Watch (CRW) version 3.1 operational global satellite coral bleaching thermal stress monitoring products at 5-km resolution produced daily in near real-time, including sea surface temperature (SST), SST anomaly, HotSpot, Degree Heating Week (DHW), and a 7-day maximum Bleaching Alert Area (BAA). These data are based on CoralTemp Version 1.0, a daily global 5-km sea surface temperature dataset combined from: (1.) NOAA/NESDIS operational near-real-time daily global 5-km geostationary-polar-orbiting (geo-polar) blended night-only SST analysis, (2.) NOAA/NESDIS 2002-2016 reprocessed daily global 5-km geo-polar blended night-only SST analysis, and (3.) United Kingdom Met Office 1985-2002 daily global 5-km night-only SST reanalysis of Operational SST and Sea Ice Analysis (OSTIA). The SST anomaly is the difference of SST compared to daily SST climatology. The coral bleaching HotSpot is a special type of sea surface temperature (SST) anomaly and shows the difference of SST compared to a coral bleaching SST threshold climatology. DHW is the accumulation of Coral Bleaching HotSpots over a period of 12 consecutive weeks. The DHW value at any particular location at any particular time is the summation of the product of HotSpot values which are at least 1 deg C above the bleaching threshold SST and their durations in weeks over the most recent 12-week period. One DHW is equivalent to 1 week of SST at 1 deg C above the threshold or 0.5 week of SST at 2 deg C above the threshold, etc. The units for DHW are deg C-weeks, combining the intensity and duration of thermal stress into one single number. Based on research at Coral Reef Watch, when the thermal stress reaches 4 deg C-weeks, you can expect to see significant coral bleaching, especially in more sensitive species. When thermal stress is 8 deg C-weeks or higher, you would likely see widespread bleaching and mortality from the thermal stress.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nCRW_DHW (degree heating week, Celsius weeks)\nCRW_HOTSPOT (coral bleaching hotspot, Celsius)\nCRW_BAA (bleaching alert area (7-day max), 1)\nCRW_SST (sea surface temperature, Celsius)\nCRW_SSTANOMALY (sea surface temperature anomaly, Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/NOAA_DHW_5km_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/NOAA_DHW_5km_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/NOAA_DHW_5km/index.json", "http://coralreefwatch.noaa.gov/satellite/", "http://upwell.pfeg.noaa.gov/erddap/rss/NOAA_DHW_5km.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=NOAA_DHW_5km&showErrors=false&email=", "NOAA Coral Reef Watch", "NOAA_DHW_5km"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_Assim_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_Assim_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_HIIG_Assim_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Main Hawaiian Islands: Data Assimilating: 3-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly data assimilating hindcast for the region surrounding the main Hawaiian Islands at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the main Hawaiian Islands (WRF_HI) at approximately 6-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast). Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; surface currents from PacIOOS high-frequency radios (HFR); and in-situ water temperature and salinity profiles from ARGO floats and ocean glider autonomous underwater vehicles (AUV). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_HIIG_Assim_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_HIIG_Assim_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_HIIG_Assim_Best/index.json", "http://www.pacioos.hawaii.edu/metadata/roms_hiig_assimilation.html", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_HIIG_Assim_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_HIIG_Assim_Best&showErrors=false&email=", "University of Hawaii", "ROMS_HIIG_Assim_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_Assim_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_Assim_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_HIIG_Assim_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Main Hawaiian Islands: Data Assimilating: 2-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly data assimilating hindcast for the region surrounding the main Hawaiian Islands at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the main Hawaiian Islands (WRF_HI) at approximately 6-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast). Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; surface currents from PacIOOS high-frequency radios (HFR); and in-situ water temperature and salinity profiles from ARGO floats and ocean glider autonomous underwater vehicles (AUV). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_HIIG_Assim_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_HIIG_Assim_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_HIIG_Assim_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/metadata/roms_hiig_assimilation.html", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_HIIG_Assim_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_HIIG_Assim_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_HIIG_Assim_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_HIIG_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Main Hawaiian Islands: 3-D Variables", "Regional Ocean Modeling System (ROMS) 7-day, 3-hourly forecast for the region surrounding the main Hawaiian Islands at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the main Hawaiian Islands (WRF_HI) at approximately 6-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; surface currents from PacIOOS high-frequency radios (HFR); and in-situ water temperature and salinity profiles from ARGO floats and ocean glider autonomous underwater vehicles (AUV). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_HIIG_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_HIIG_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_HIIG_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-hawaii/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_HIIG_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_HIIG_Best&showErrors=false&email=", "University of Hawaii", "ROMS_HIIG_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_HIIG_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Main Hawaiian Islands: 2-D Variables", "Regional Ocean Modeling System (ROMS) 7-day, 3-hourly forecast for the region surrounding the main Hawaiian Islands at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the main Hawaiian Islands (WRF_HI) at approximately 6-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; surface currents from PacIOOS high-frequency radios (HFR); and in-situ water temperature and salinity profiles from ARGO floats and ocean glider autonomous underwater vehicles (AUV). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_HIIG_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_HIIG_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_HIIG_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-hawaii/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_HIIG_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_HIIG_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_HIIG_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIOMSG_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIOMSG_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_HIOMSG_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Oahu South Shore: 3-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly forecast for the region surrounding the south shore of the island of Oahu at approximately 200-m resolution. Boundary conditions provided by the wider ROMS model for the region surrounding the island of Oahu (ROMS_HIOG) at approximately 1-km resolution. Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the island of Oahu (WRF_OA) at approximately 1.5-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; surface currents from PacIOOS high-frequency radios (HFR); and in-situ water temperature and salinity profiles from ARGO floats and ocean glider autonomous underwater vehicles (AUV). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_HIOMSG_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_HIOMSG_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_HIOMSG_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-southoahu/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_HIOMSG_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_HIOMSG_Best&showErrors=false&email=", "University of Hawaii", "ROMS_HIOMSG_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIOMSG_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIOMSG_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_HIOMSG_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Oahu South Shore: 2-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly forecast for the region surrounding the south shore of the island of Oahu at approximately 200-m resolution. Boundary conditions provided by the wider ROMS model for the region surrounding the island of Oahu (ROMS_HIOG) at approximately 1-km resolution. Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the island of Oahu (WRF_OA) at approximately 1.5-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; surface currents from PacIOOS high-frequency radios (HFR); and in-situ water temperature and salinity profiles from ARGO floats and ocean glider autonomous underwater vehicles (AUV). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_HIOMSG_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_HIOMSG_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_HIOMSG_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-southoahu/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_HIOMSG_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_HIOMSG_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_HIOMSG_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_Assim_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_Assim_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_MARI_Assim_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): CNMI: Data Assimilating: 3-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly data assimilating hindcast for the region surrounding the Western North Pacific, including Guam and the Commonwealth of the Northern Mariana Islands (CNMI), at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the Western North Pacific (WRF_CNMI) at approximately 12-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast). Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_MARI_Assim_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_MARI_Assim_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_MARI_Assim_Best/index.json", "http://www.pacioos.hawaii.edu/metadata/roms_mari_assimilation.html", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_MARI_Assim_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_MARI_Assim_Best&showErrors=false&email=", "University of Hawaii", "ROMS_MARI_Assim_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_Assim_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_Assim_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_MARI_Assim_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): CNMI: Data Assimilating: 2-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly data assimilating hindcast for the region surrounding the Western North Pacific, including Guam and the Commonwealth of the Northern Mariana Islands (CNMI), at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the Western North Pacific (WRF_CNMI) at approximately 12-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast). Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_MARI_Assim_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_MARI_Assim_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_MARI_Assim_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/metadata/roms_mari_assimilation.html", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_MARI_Assim_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_MARI_Assim_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_MARI_Assim_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_MARI_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): CNMI: 3-D Variables", "Regional Ocean Modeling System (ROMS) 6-day, 3-hourly forecast for the region surrounding the Western North Pacific, including Guam and the Commonwealth of the Northern Mariana Islands (CNMI), at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the Western North Pacific (WRF_CNMI) at approximately 12-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_MARI_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_MARI_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_MARI_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-wnpacific/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_MARI_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_MARI_Best&showErrors=false&email=", "University of Hawaii", "ROMS_MARI_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_MARI_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): CNMI: 2-D Variables", "Regional Ocean Modeling System (ROMS) 6-day, 3-hourly forecast for the region surrounding the Western North Pacific, including Guam and the Commonwealth of the Northern Mariana Islands (CNMI), at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the Western North Pacific (WRF_CNMI) at approximately 12-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_MARI_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_MARI_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_MARI_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-wnpacific/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_MARI_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_MARI_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_MARI_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARIG_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARIG_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_MARIG_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Guam: 3-D Variables", "Regional Ocean Modeling System (ROMS) 6-day, 3-hourly forecast for the region surrounding Guam and parts of the Commonwealth of the Northern Mariana Islands (CNMI) at approximately 2-km resolution. Boundary conditions provided by the wider ROMS model for the region surrounding the Western North Pacific (ROMS_MARI) at approximately 4-km resolution. Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding Guam and parts of the Commonwealth of the Northern Mariana Islands (CNMI) (WRF_Guam) at approximately 3-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_MARIG_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_MARIG_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_MARIG_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-mariana/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_MARIG_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_MARIG_Best&showErrors=false&email=", "University of Hawaii", "ROMS_MARIG_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARIG_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARIG_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_MARIG_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Guam: 2-D Variables", "Regional Ocean Modeling System (ROMS) 6-day, 3-hourly forecast for the region surrounding Guam and parts of the Commonwealth of the Northern Mariana Islands (CNMI) at approximately 2-km resolution. Boundary conditions provided by the wider ROMS model for the region surrounding the Western North Pacific (ROMS_MARI) at approximately 4-km resolution. Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding Guam and parts of the Commonwealth of the Northern Mariana Islands (CNMI) (WRF_Guam) at approximately 3-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_MARIG_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_MARIG_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_MARIG_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-mariana/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_MARIG_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_MARIG_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_MARIG_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_Assim_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_Assim_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_Samoa_Assim_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Samoa: Data Assimilating: 3-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly data assimilating hindcast for the region surrounding the islands of Samoa at approximately 3-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the islands of Samoa (WRF_Samoa) at approximately 3-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast). Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_Samoa_Assim_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_Samoa_Assim_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_Samoa_Assim_Best/index.json", "http://www.pacioos.hawaii.edu/metadata/roms_samoa_assimilation.html", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_Samoa_Assim_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_Samoa_Assim_Best&showErrors=false&email=", "University of Hawaii", "ROMS_Samoa_Assim_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_Assim_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_Assim_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_Samoa_Assim_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Samoa: Data Assimilating: 2-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly data assimilating hindcast for the region surrounding the islands of Samoa at approximately 3-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the islands of Samoa (WRF_Samoa) at approximately 3-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast). Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_Samoa_Assim_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_Samoa_Assim_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_Samoa_Assim_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/metadata/roms_samoa_assimilation.html", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_Samoa_Assim_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_Samoa_Assim_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_Samoa_Assim_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_Samoa_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Samoa: 3-D Variables", "Regional Ocean Modeling System (ROMS) 7-day, 3-hourly forecast for the region surrounding the islands of Samoa at approximately 3-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the islands of Samoa (WRF_Samoa) at approximately 3-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_Samoa_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_Samoa_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_Samoa_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-samoa/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_Samoa_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_Samoa_Best&showErrors=false&email=", "University of Hawaii", "ROMS_Samoa_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_Samoa_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Samoa: 2-D Variables", "Regional Ocean Modeling System (ROMS) 7-day, 3-hourly forecast for the region surrounding the islands of Samoa at approximately 3-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the islands of Samoa (WRF_Samoa) at approximately 3-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_Samoa_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_Samoa_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_Samoa_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-samoa/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_Samoa_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_Samoa_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_Samoa_SSH_Best"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e5b4_d905_99ef", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e5b4_d905_99ef.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e5b4_d905_99ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e5b4_d905_99ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e5b4_d905_99ef/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e5b4_d905_99ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e5b4_d905_99ef&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "hawaii_soest_e5b4_d905_99ef"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_190f_1fe8_4cc4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_190f_1fe8_4cc4.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitors water quality at several beaches across the island of Maui in the State of Hawaii. This community-based monitoring effort provides valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites are also monitored for harmful bacteria levels of Enterococcus. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. \n\nData are managed through an online repository, the Coral Reef Monitoring Data Portal (http://monitoring.coral.org), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection is coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\n... (10 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_190f_1fe8_4cc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_190f_1fe8_4cc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_190f_1fe8_4cc4/index.json", "http://monitoring.coral.org", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_190f_1fe8_4cc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_190f_1fe8_4cc4&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "hawaii_soest_190f_1fe8_4cc4"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5673_517d_3b8c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5673_517d_3b8c.graph", "", "", "public", "PacIOOS Nearshore Sensor 01 (NS01): Waikiki Yacht Club, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS01 is located at the Waikiki Yacht Club and is fixed to the bridge pier. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to a piling ~0.5m below mean sea level.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5673_517d_3b8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5673_517d_3b8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5673_517d_3b8c/index.json", "http://www.pacioos.hawaii.edu/water/sensor-waikiki/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5673_517d_3b8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5673_517d_3b8c&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5673_517d_3b8c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_1273_fad1_0404", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_1273_fad1_0404.graph", "", "", "public", "PacIOOS Nearshore Sensor 02 (NS02): Hawaii Yacht Club, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS02 is located at a floating dock off the Hawaii Yacht Club. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to a floating dock just below the ocean surface.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nturbidity_dm_qd (Turbidity quality descriptor)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nchlorophyll_dm_qd (Chlorophyll quality descriptor)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_1273_fad1_0404_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_1273_fad1_0404_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_1273_fad1_0404/index.json", "http://www.pacioos.hawaii.edu/water/sensor-hawaiiyachtclub/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_1273_fad1_0404.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_1273_fad1_0404&showErrors=false&email=", "University of Hawaii", "hawaii_soest_1273_fad1_0404"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d787_1c35_208d", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d787_1c35_208d.graph", "", "", "public", "PacIOOS Nearshore Sensor 03 (NS03): Hilton Hawaiian Pier, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS03 is located at the Atlantis Pier off the Hilton Hawaiian Village. The instrument is a Sea-Bird Electronics model 37SMP. The package is located at approximately 2.0 meters below mean sea level.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\npressure_dm_qd (Pressure quality descriptor)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d787_1c35_208d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d787_1c35_208d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d787_1c35_208d/index.json", "http://www.pacioos.hawaii.edu/water/sensor-atlantis/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d787_1c35_208d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d787_1c35_208d&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d787_1c35_208d"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_c9f9_c232_1fe9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_c9f9_c232_1fe9.graph", "", "", "public", "PacIOOS Nearshore Sensor 04 (NS04): Waikiki Aquarium, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS04 is located just off the Waikiki Aquarium and is fixed to the pier. The instrument is a Sea-Bird Electronics model 37SMP. The package is mounted on the bottom in approximately 2.0 to 2.5 meters ocean depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\npressure_dm_qd (Pressure quality descriptor)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_c9f9_c232_1fe9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_c9f9_c232_1fe9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_c9f9_c232_1fe9/index.json", "http://www.pacioos.hawaii.edu/water/sensor-waikikiaquarium/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_c9f9_c232_1fe9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_c9f9_c232_1fe9&showErrors=false&email=", "University of Hawaii", "hawaii_soest_c9f9_c232_1fe9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b55f_a8f2_ad70", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b55f_a8f2_ad70.graph", "", "", "public", "PacIOOS Nearshore Sensor 05 (NS05): Pago Pago, American Samoa", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS05 is located at the Department of Marine and Wildlife Resources (DMWR) dock in Pago Pago Harbor, American Samoa and is mounted to the bottom in about 2 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_b55f_a8f2_ad70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_b55f_a8f2_ad70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_b55f_a8f2_ad70/index.json", "http://www.pacioos.hawaii.edu/water/sensor-pagopago/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_b55f_a8f2_ad70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_b55f_a8f2_ad70&showErrors=false&email=", "University of Hawaii", "hawaii_soest_b55f_a8f2_ad70"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f59_c29c_d820", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f59_c29c_d820.graph", "", "", "public", "PacIOOS Nearshore Sensor 06 (NS06): Pohnpei, Micronesia", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS06 is located at the dock in Pohnpei lagoon and is mounted to the bottom in about 1 meter of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8f59_c29c_d820_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8f59_c29c_d820_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8f59_c29c_d820/index.json", "http://www.pacioos.hawaii.edu/water/sensor-pohnpei/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8f59_c29c_d820.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8f59_c29c_d820&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8f59_c29c_d820"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_77b7_f5dd_cda3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_77b7_f5dd_cda3.graph", "", "", "public", "PacIOOS Nearshore Sensor 07 (NS07): Majuro, Marshall Islands", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS07 is located at the Uliga dock in Majuro, Republic of the Marshall Islands and is mounted to the bottom in about 2 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_77b7_f5dd_cda3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_77b7_f5dd_cda3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_77b7_f5dd_cda3/index.json", "http://www.pacioos.hawaii.edu/water/sensor-majuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_77b7_f5dd_cda3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_77b7_f5dd_cda3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_77b7_f5dd_cda3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e3c0_a956_de01", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e3c0_a956_de01.graph", "", "", "public", "PacIOOS Nearshore Sensor 08 (NS08): Koror, Palau", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS08 is located at the Palau International Coral Reef Center (PICRC) dock in Koror, Palau and is mounted to the bottom in about 3.5 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e3c0_a956_de01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e3c0_a956_de01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e3c0_a956_de01/index.json", "http://www.pacioos.hawaii.edu/water/sensor-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e3c0_a956_de01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e3c0_a956_de01&showErrors=false&email=", "University of Hawaii", "hawaii_soest_e3c0_a956_de01"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0113_b43d_e024", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0113_b43d_e024.graph", "", "", "public", "PacIOOS Nearshore Sensor 09 (NS09): Cetti Bay, Guam", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS09 is approximately 70 meters offshore in Cetti Bay, Guam and is mounted to the bottom in about 3 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_0113_b43d_e024_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_0113_b43d_e024_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_0113_b43d_e024/index.json", "http://www.pacioos.hawaii.edu/water/sensor-cetti/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_0113_b43d_e024.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_0113_b43d_e024&showErrors=false&email=", "University of Hawaii", "hawaii_soest_0113_b43d_e024"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f25e_31a1_16f1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f25e_31a1_16f1.graph", "", "", "public", "PacIOOS Nearshore Sensor 10 (NS10): Maunalua Bay, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS10 is located off the old pier in Maunalua Bay in Hawaii Kai. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to the pier at about 2m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nturbidity_dm_qd (Turbidity quality descriptor)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nchlorophyll_dm_qd (Chlorophyll quality descriptor)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\npressure_dm_qd (Pressure quality descriptor)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f25e_31a1_16f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f25e_31a1_16f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f25e_31a1_16f1/index.json", "http://www.pacioos.hawaii.edu/water/sensor-maunalua/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f25e_31a1_16f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f25e_31a1_16f1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f25e_31a1_16f1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8668_b202_8233", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8668_b202_8233.graph", "", "", "public", "PacIOOS Nearshore Sensor 11 (NS11): Saipan, CNMI", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS11 is approximately 20 meters offshore of Puntan Babpot near the golf course at Laolao Bay on the east shore of Saipan in the Commonwealth of the Northern Mariana Islands (CNMI) and is mounted to the bottom in about 3 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8668_b202_8233_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8668_b202_8233_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8668_b202_8233/index.json", "http://www.pacioos.hawaii.edu/water/sensor-saipan/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8668_b202_8233.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8668_b202_8233&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8668_b202_8233"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b10c_af2d_3fe8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b10c_af2d_3fe8.graph", "", "", "public", "PacIOOS Nearshore Sensor 12 (NS12): Kalama Beach Park, Maui, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS12 is located at Kalama Beach Park in Kihei, Maui. The instrument is a 6600V2-4 Multi-parameter water quality logger. The package is fixed to a mooring at about 1.5m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\nwater_depth (Sensor depth, m)\nph (1)\noxygen (Dissolved oxygen concentration, kg m-3)\noxygen_saturation (Dissolved oxygen saturation, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_b10c_af2d_3fe8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_b10c_af2d_3fe8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_b10c_af2d_3fe8/index.json", "http://www.pacioos.hawaii.edu/water/sensor-kalama/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_b10c_af2d_3fe8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_b10c_af2d_3fe8&showErrors=false&email=", "University of Hawaii", "hawaii_soest_b10c_af2d_3fe8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_026f_4c1d_55e5", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_026f_4c1d_55e5.graph", "", "", "public", "PacIOOS Nearshore Sensor 13 (NS13): Kahului, Maui, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS13 is located in Kahului Harbor in Maui. The instrument is a 6600V2-4 Multi-parameter water quality logger. The package is fixed to a piling at about 1.5m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nturbidity_dm_qd (Turbidity quality descriptor)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nchlorophyll_dm_qd (Chlorophyll quality descriptor)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor)\nwater_depth (Sensor depth (processed), m)\nwater_depth_raw (Sensor depth (raw), m)\nwater_depth_dm_qd (Sensor depth quality descriptor)\nph (pH (processed), 1)\nph_raw (pH (raw), 1)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_026f_4c1d_55e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_026f_4c1d_55e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_026f_4c1d_55e5/index.json", "http://www.pacioos.hawaii.edu/water/sensor-kahului/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_026f_4c1d_55e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_026f_4c1d_55e5&showErrors=false&email=", "University of Hawaii", "hawaii_soest_026f_4c1d_55e5"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_191e_fe37_f9a0", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_191e_fe37_f9a0.graph", "", "", "public", "PacIOOS Nearshore Sensor 15 (NS15): Pago Bay, Guam", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS15 is in Pago Bay, Guam and is mounted to the bottom in about 1.5 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_191e_fe37_f9a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_191e_fe37_f9a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_191e_fe37_f9a0/index.json", "http://www.pacioos.hawaii.edu/water/sensor-pago/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_191e_fe37_f9a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_191e_fe37_f9a0&showErrors=false&email=", "University of Hawaii", "hawaii_soest_191e_fe37_f9a0"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d5ba_831c_443a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d5ba_831c_443a.graph", "", "", "public", "PacIOOS Nearshore Sensor 16 (NS16): Wailupe, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS16 is located off Wailupe in Maunalua Bay in Aina Haina. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to the pier at about 1m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nturbidity_dm_qd (Turbidity quality descriptor)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nchlorophyll_dm_qd (Chlorophyll quality descriptor)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\npressure_dm_qd (Pressure quality descriptor)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d5ba_831c_443a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d5ba_831c_443a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d5ba_831c_443a/index.json", "http://www.pacioos.hawaii.edu/water/sensor-wailupe/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d5ba_831c_443a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d5ba_831c_443a&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d5ba_831c_443a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_093e_cd55_43a3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_093e_cd55_43a3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_093e_cd55_43a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_093e_cd55_43a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_093e_cd55_43a3/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_093e_cd55_43a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_093e_cd55_43a3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_093e_cd55_43a3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc92_7d24_0627", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc92_7d24_0627.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_cc92_7d24_0627_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_cc92_7d24_0627_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_cc92_7d24_0627/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_cc92_7d24_0627.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_cc92_7d24_0627&showErrors=false&email=", "University of Hawaii", "hawaii_soest_cc92_7d24_0627"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f289_8170_ec45", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f289_8170_ec45.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f289_8170_ec45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f289_8170_ec45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f289_8170_ec45/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f289_8170_ec45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f289_8170_ec45&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f289_8170_ec45"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_36dd_cf4c_73a6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_36dd_cf4c_73a6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_36dd_cf4c_73a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_36dd_cf4c_73a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_36dd_cf4c_73a6/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_36dd_cf4c_73a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_36dd_cf4c_73a6&showErrors=false&email=", "University of Hawaii", "hawaii_soest_36dd_cf4c_73a6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5359_8678_82b1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5359_8678_82b1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5359_8678_82b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5359_8678_82b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5359_8678_82b1/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5359_8678_82b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5359_8678_82b1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5359_8678_82b1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_92c1_a2b0_55fb", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_92c1_a2b0_55fb.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_92c1_a2b0_55fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_92c1_a2b0_55fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_92c1_a2b0_55fb/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_92c1_a2b0_55fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_92c1_a2b0_55fb&showErrors=false&email=", "University of Hawaii", "hawaii_soest_92c1_a2b0_55fb"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_75b3_e52c_26a2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_75b3_e52c_26a2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_75b3_e52c_26a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_75b3_e52c_26a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_75b3_e52c_26a2/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_75b3_e52c_26a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_75b3_e52c_26a2&showErrors=false&email=", "University of Hawaii", "hawaii_soest_75b3_e52c_26a2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_a826_8633_00bb", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_a826_8633_00bb.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_a826_8633_00bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_a826_8633_00bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_a826_8633_00bb/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_a826_8633_00bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_a826_8633_00bb&showErrors=false&email=", "University of Hawaii", "hawaii_soest_a826_8633_00bb"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_076a_87b3_40a0", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_076a_87b3_40a0.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_076a_87b3_40a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_076a_87b3_40a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_076a_87b3_40a0/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_076a_87b3_40a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_076a_87b3_40a0&showErrors=false&email=", "University of Hawaii", "hawaii_soest_076a_87b3_40a0"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_4c82_4728_010b", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_4c82_4728_010b.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_4c82_4728_010b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_4c82_4728_010b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_4c82_4728_010b/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_4c82_4728_010b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_4c82_4728_010b&showErrors=false&email=", "University of Hawaii", "hawaii_soest_4c82_4728_010b"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_856b_7e66_8c3f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_856b_7e66_8c3f.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_856b_7e66_8c3f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_856b_7e66_8c3f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_856b_7e66_8c3f/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_856b_7e66_8c3f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_856b_7e66_8c3f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_856b_7e66_8c3f"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2f21_4063_cfec", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2f21_4063_cfec.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_2f21_4063_cfec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_2f21_4063_cfec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_2f21_4063_cfec/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_2f21_4063_cfec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_2f21_4063_cfec&showErrors=false&email=", "University of Hawaii", "hawaii_soest_2f21_4063_cfec"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7adc_5b2b_769e", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7adc_5b2b_769e.graph", "", "", "public", "PacIOOS Water Quality Buoy 03 (WQB-03): Kiholo Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-03 is located at Kiholo Bay along the leeward (Western) coast of the North Kona district of Big Island in Hawaii. Continuous sampling of this outflow area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\ntemperature (water temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_qd (Temperature quality descriptor, 0)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_qd (Conductivity quality descriptor, 0)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_qd (Salinity quality descriptor, 0)\noxygen (Dissolved oxygen concentration (processed), kg m-3)\noxygen_raw (Dissolved oxygen concentration (raw), kg m-3)\noxygen_qd (Dissolved oxygen concentration quality descriptor, 0)\noxygen_saturation (Dissolved oxygen saturation (processed), 1)\noxygen_saturation_raw (Dissolved oxygen saturation (raw), 1)\noxygen_saturation_qd (Dissolved oxygen saturation quality descriptor, 0)\noxygen_saturation_concentration (Dissolved oxygen saturation concentration (processed), kg m-3)\noxygen_saturation_concentration_raw (Dissolved oxygen saturation concentration (raw), kg m-3)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_7adc_5b2b_769e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_7adc_5b2b_769e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_7adc_5b2b_769e/index.json", "http://www.pacioos.hawaii.edu/water/wqbuoy-kiholo/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_7adc_5b2b_769e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_7adc_5b2b_769e&showErrors=false&email=", "University of Hawaii", "hawaii_soest_7adc_5b2b_769e"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5efb_06ec_ff63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5efb_06ec_ff63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5efb_06ec_ff63.graph", "", "", "public", "PacIOOS Water Quality Buoy 04 (WQB-04): Hilo Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB04 is located in Hilo Bay on the east side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Depth below mean sea level, m)\nstation_name (WQB04: PacIOOS Water Quality Buoy 04 (WQB-04): Hilo Bay, Big Island, Hawaii)\ntemperature (Temperature (processed), Celsius)\nsalinity (Salinity (processed), 1e-3)\nturbidity (Turbidity (processed), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\noxygen (Dissolved oxygen concentration (processed), kg m-3)\noxygen_saturation (Dissolved oxygen saturation (processed), 1)\nph (pH (processed), 1)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature delayed-mode quality descriptor, 0)\ntemperature_qc_gap (QARTOD Gap Test, 0)\ntemperature_qc_syn (0)\ntemperature_qc_loc (QARTOD Location Test, 0)\ntemperature_qc_rng (QARTOD Gross Range Test, 0)\ntemperature_qc_clm (QARTOD Climatological Test, 0)\ntemperature_qc_spk (QARTOD Spike Test, 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test, 0)\ntemperature_qc_flt (QARTOD Flat Line Test, 0)\ntemperature_qc_mvr (QARTOD Multi-Variate Test, 0)\n... (87 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5efb_06ec_ff63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5efb_06ec_ff63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5efb_06ec_ff63/index.json", "http://www.pacioos.hawaii.edu/water/wqbuoy-hilo/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5efb_06ec_ff63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5efb_06ec_ff63&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5efb_06ec_ff63"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5efa_cc6e_79c5", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5efa_cc6e_79c5.graph", "", "", "public", "PacIOOS Water Quality Buoy AW (WQB-AW): Ala Wai, Oahu, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-AW is located at the exit of the Ala Wai Canal, near Magic Island. Continuous sampling of this outflow area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor, 0)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor, 0)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor, 0)\noxygen (Dissolved oxygen concentration (processed), kg m-3)\noxygen_raw (Dissolved oxygen concentration (raw), kg m-3)\noxygen_dm_qd (Dissolved oxygen concentration quality descriptor, 0)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nturbidity_dm_qd (Turbidity quality descriptor, 0)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nchlorophyll_dm_qd (Chlorophyll quality descriptor, 0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5efa_cc6e_79c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5efa_cc6e_79c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5efa_cc6e_79c5/index.json", "http://www.pacioos.hawaii.edu/water/wqbuoy-alawai/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5efa_cc6e_79c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5efa_cc6e_79c5&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5efa_cc6e_79c5"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2d69_a0d9_d559", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2d69_a0d9_d559.graph", "", "", "public", "PacIOOS Water Quality Buoy KN (WQB-KN): Kilo Nalu, Oahu, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-KN is located at the Kilo Nalu Nearshore Reef Observatory, near Kakaako Waterfront Park and Kewalo Basin off of Ala Moana Boulevard in Honolulu. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor, 0)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor, 0)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor, 0)\noxygen (Dissolved oxygen concentration (processed), kg m-3)\noxygen_raw (Dissolved oxygen concentration (raw), kg m-3)\noxygen_dm_qd (Dissolved oxygen concentration quality descriptor, 0)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nturbidity_dm_qd (Turbidity quality descriptor, 0)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nchlorophyll_dm_qd (Chlorophyll quality descriptor, 0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_2d69_a0d9_d559_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_2d69_a0d9_d559_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_2d69_a0d9_d559/index.json", "http://www.pacioos.hawaii.edu/water/wqbuoy-kilonalu/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_2d69_a0d9_d559.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_2d69_a0d9_d559&showErrors=false&email=", "University of Hawaii", "hawaii_soest_2d69_a0d9_d559"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f49_4796_ddc3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f49_4796_ddc3.graph", "", "", "public", "Weather Station: Hawaii: Oahu: Coconut Island", "The Hawaii Institute of Marine Biology (HIMB) automatic weather station (AWS) records hourly measurements of precipitation, air temperature, wind speed and direction, and irradiance. Sensors include an Eppley 295-385 nm ultraviolet (UV) radiometer, a LiCor 200SZ Pyranometer, and a LiCor Quantameter (400-700 nm). The sensors are located on the roof of HIMB's Coral Reef Ecology Laboratory (Point Lab) on Moku o Loe (Coconut Island) in Kaneohe Bay on the windward (eastern) coast of Oahu in Hawaii. An accompanying sea water temperature sensor is located less than 10 m offshore of the weather station at a shallow depth of approximately 1 m.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\naltitude (height above mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\nair_temperature (Surface air temperature, Celsius)\nsea_water_temperature (Mean ocean temperature, Celsius)\nwind_speed (Mean wind speed, m s-1)\nwind_from_direction (Mean wind from direction, degrees)\nwind_from_direction_std (Standard deviation of wind from direction, degrees)\nwind_speed_max (Maximum wind gust, m s-1)\nrainfall_amount (Rainfall total, mm)\nshortwave_radiation (Average downwelling shortwave radiation, W m-2)\nphotosynthetic_radiation (Photosynthetically active radiation, umol m-2 s-1)\nultraviolet_radiation (W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8f49_4796_ddc3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8f49_4796_ddc3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8f49_4796_ddc3/index.json", "http://www.pacioos.hawaii.edu/weather/obs-mokuoloe/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8f49_4796_ddc3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8f49_4796_ddc3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8f49_4796_ddc3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d98d_1d43_fef7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d98d_1d43_fef7.graph", "", "", "public", "Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\naltitude (height above mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\nair_temperature (Mean air temperature, Celsius)\nair_temperature_std (Standard deviation of air temperature, Celsius)\nair_temperature_max (Maximum air temperature, Celsius)\nair_temperature_max_time (Time of maximum air temperature, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (Minimum air temperature, Celsius)\nair_temperature_min_time (Time of minimum air temperature, seconds since 1970-01-01T00:00:00Z)\nwind_speed (Mean wind speed, m s-1)\nwind_speed_std (Standard deviation wind speed, m s-1)\nwind_speed_max (Maximum wind speed, m s-1)\nwind_speed_max_time (Time of maximum wind speed, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (Minimum wind speed, m s-1)\nwind_speed_min_time (Time of minimum wind speed, seconds since 1970-01-01T00:00:00Z)\nwind_from_direction (degrees)\nwind_from_direction_std (Standard deviation of wind direction, degrees)\nrainfall_amount (Rainfall total, mm)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d98d_1d43_fef7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d98d_1d43_fef7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d98d_1d43_fef7/index.json", "http://www.coralreefresearchfoundation.org", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d98d_1d43_fef7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d98d_1d43_fef7&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "hawaii_soest_d98d_1d43_fef7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/FRD_SSTgradsmo", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/FRD_SSTgradsmo.graph", "", "", "public", "SST smoothed frontal gradients", "An improved automatic detection of mesoscale fronts, derived from Cayula, J. F., & Cornillon, P. (1992) and Cayula, J. F., & Cornillon, P. (1995), using the new method described by Nieto et al. (2012)\n\nNieto, Karen, Demarcq, H. and McClatchie, S. \"Mesoscale frontal structures in the Canary Upwelling System: new front and filament detection algorithms applied to spatial and temporal patterns\". Remote Sensing of the Environment 123, 2012 (pp.339-346)\"\n\nCayula, J. F., & Cornillon, P. (1992). Edge detection algorithm for SST images. Journal of Atmospheric and Oceanic Technology, 9, 67-80.\n\nCayula, J. F., & Cornillon, P. (1995). Multi-image edge detection for SST images. Journal of Atmospheric and Oceanic Technology, 12, 821-829.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSSTgrad (SST Edge-Gradient monthly, degrees C / km)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRD_SSTgradsmo_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRD_SSTgradsmo_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRD_SSTgradsmo/index.json", "https://oceanview.pfeg.noaa.gov/FRD/SSTgradsmo_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/FRD_SSTgradsmo.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRD_SSTgradsmo&showErrors=false&email=", "NOAA/NMFS/SWFSC", "FRD_SSTgradsmo"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlCOAMPS3km", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlCOAMPS3km.graph", "", "", "public", "COAMPS 3km Surface Fields", "COAMPS_Surface_Fields\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][lat][lon]):\nair_temperature (deg C)\nsurface_temperature (Ground temperature over land, Sea surface temperature over the ocean, deg C)\nlonflx (Net surface longwave radiative heat flux, W/m**2)\nrelative_humidity (percent)\nair_pressure_at_sea_level (Sea Level Pressure, millibars)\nsolflx (Net surface shortwave radiative heat flux, W/m**2)\nhourly_precip (Hourly Precipitation, mm)\nx_wind (Zonal Wind, m/s)\ny_wind (Meridional Wind, m/s)\nwind_speed (m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nrlCOAMPS3km/index.json", "https://www.nrlmry.navy.mil/coamps-web/web/home", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlCOAMPS3km.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlCOAMPS3km&showErrors=false&email=", "Naval Research Laboratory, Monterey Marine Meteorology Division", "nrlCOAMPS3km"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlCOAMPS3kmNogap", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlCOAMPS3kmNogap.graph", "", "", "public", "COAMPS 3km Surface Fields (Reanalysis, No Gaps)", "COAMPS_Surface_Fields\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][lat][lon]):\nair_temperature (deg C)\nsurface_temperature (Ground temperature over land, Sea surface temperature over the ocean, deg C)\nlonflx (Net surface longwave radiative heat flux, W/m**2)\nrelative_humidity (percent)\nair_pressure_at_sea_level (Sea Level Pressure, millibars)\nsolflx (Net surface shortwave radiative heat flux, W/m**2)\nttlpcp (Hourly Precipitation, mm)\nx_wind (Zonal Wind, m/s)\ny_wind (Meridional Wind, m/s)\nwind_speed (m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nrlCOAMPS3kmNogap/index.json", "https://www.nrlmry.navy.mil/coamps-web/web/home", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlCOAMPS3kmNogap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlCOAMPS3kmNogap&showErrors=false&email=", "Naval Research Laboratory, Monterey Marine Meteorology Division", "nrlCOAMPS3kmNogap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/database-tables-description", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/database-tables-description", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/cast-table-column-descriptions", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a.graph", "", "", "public", "OceanSITES KEO daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from the Kuroshio Extension Observatory (KEO) site nominally at 32.3N,144.6E, in the Kuroshio Extension recirculation gyre. The actual anchor position is different for each deployment, and this is a slack line mooring with a watch circle radius greater than 5km. For users performing inter comparisons, it may be important to use the actual position of the buoy from the Global Positioning System (GPS) data. This mooring has been instrumented with upper ocean and surface sensors since June 2004. Included in this file are sea temperatures and pressures from the surface to 525m depth, salinity and density (sigma-theta) from the surface to 400m depth, sea currents to 35m depth, a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and barometric pressure. Note that because this is a slack-line mooring, subsurface sensor depths vary with time, and hence one must use the observed and calculated water pressures to compute sensor depths. Also, due to the relatively large scope and different anchor positions, the positions of the buoy at the surface are included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndeptemp (Depth of each measurement, meters)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepth (m)\nPRES (water pressure, observed and calculated, decibar)\nPRES_QC (quality flag)\nPRES_DM (method of data processing)\n... (53 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/keo_121f_a3d0_3c0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/keo_121f_a3d0_3c0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/keo_121f_a3d0_3c0a/index.json", "https://www.pmel.noaa.gov/ocs/", "http://upwell.pfeg.noaa.gov/erddap/rss/keo_121f_a3d0_3c0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=keo_121f_a3d0_3c0a&showErrors=false&email=", "NOAA/PMEL", "keo_121f_a3d0_3c0a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f.graph", "", "", "public", "OceanSITES PAPA daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from station Papa at 50N,145W in the North Pacific. This taut-line mooring has been instrumented with upper ocean and surface sensors since June 2007. Included in this file are sea temperatures from the surface to 300 meters depth, salinity and density (sigma-theta) from the surface to 200m depth, sea currents at 5m and 35m depth, acoustic doppler profiles of zonal and meridional ocean current to from 30 to 158 meters depth, and a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and barometric pressure. Time series of buoy latitude and longitude are included as well.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each measurement, m)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepcur (Depth of each measurement, m)\nUCUR\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\ndeppsal (Depth of each measurement, m)\n... (43 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/papa_8bb5_dcd5_981f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/papa_8bb5_dcd5_981f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/papa_8bb5_dcd5_981f/index.json", "https://www.pmel.noaa.gov/ocs/", "http://upwell.pfeg.noaa.gov/erddap/rss/papa_8bb5_dcd5_981f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=papa_8bb5_dcd5_981f&showErrors=false&email=", "NOAA/PMEL", "papa_8bb5_dcd5_981f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219.graph", "", "", "public", "OceanSITES PIRATA daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from one of the Tropical Atmosphere/Ocean (TAO)/TRITON, Pilot Research Moored Array in the Tropical Atlantic (PIRATA), or Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) mooring sites in the tropical oceans. Included in this file are sea temperatures from the surface to 500 meters at most sites and deeper at others, salinity and potential density (sigma-theta) at the sea surface and deeper at some sites, sea currents at 10m depth and deeper at some sites, a variety of surface observations including winds, air temperature, relative humidity, shortwave solar radiation, longwave radiation, rain rate, barometric pressure. Buoy positions are also included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each TEMP measurement, m)\ndepcur (Depth of each current measurement)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndeppsal (Depth of each Salinity measurement)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\nPSAL (sea_water_practical_salinity)\nPSAL_QC\nPSAL_DM (method of data processing)\ndepden (Depth of each density measurement)\nheightwind (altitude, meters)\nUWND (zonal wind)\nVWND (meridional wind, m/s)\n... (44 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pirata_5922_7dcd_7219_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pirata_5922_7dcd_7219_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pirata_5922_7dcd_7219/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/pirata_5922_7dcd_7219.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pirata_5922_7dcd_7219&showErrors=false&email=", "NOAA/PMEL", "pirata_5922_7dcd_7219"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc.graph", "", "", "public", "OceanSITES TAO daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from one of the flux reference mooring sites in the tropical oceans. Included in this file are sea temperatures from the surface to 500m depth, salinity and density (sigma-theta) from the surface to typically 120m depth, sea currents typically at 10m depth and at some sites deeper, a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and sea level airpressure. Buoy positions are also included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each measurement, m)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\n... (42 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/tao_6eb4_e773_2fbc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/tao_6eb4_e773_2fbc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/tao_6eb4_e773_2fbc/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/tao_6eb4_e773_2fbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=tao_6eb4_e773_2fbc&showErrors=false&email=", "NOAA/PMEL", "tao_6eb4_e773_2fbc"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e1b2_3228_f482", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e1b2_3228_f482.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_e1b2_3228_f482/request", "", "public", "Obs-AMSRE model output prepared for obs4MIPs NASA-JPL observation", "Obs-Advanced Microwave Scanning Radiometer on EOS (AMSRE) model output prepared for Observations for Model Intercomparisons (obs4MIPs) NASA-Jet Propulsion Laboratory (JPL) observation (AMSRE L3 Sea Surface Temperature (SST) 1DEG 1MO)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntos (Sea Surface Temperature, K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_e1b2_3228_f482_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_e1b2_3228_f482_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_e1b2_3228_f482/index.json", "https://podaac.jpl.nasa.gov/dataset/AMSRE_L3_SST_1DEG_1MO", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_e1b2_3228_f482.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_e1b2_3228_f482&showErrors=false&email=", "Remote Sensing Systems", "nasa_jpl_e1b2_3228_f482"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e8d3_f614_6c50", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e8d3_f614_6c50.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_e8d3_f614_6c50/request", "", "public", "NAVOCEANO 10km Analyzed SST (GHRSST NAVO-L4HR1m-GLOB-K10 SST)", "Naval Oceanographic Office (NAVOCEANO) 10km Analyzed Sea Surface Temperature. Distribution Statement: Approved for public release. Distribution unlimited. (Global High-Resolution Sea Surface Temperature (GHRSST) Naval Oceanography (NAVO)-L4HR1m-GLOB-K10 SST)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (Analyzed Sea Surface Temperature, degree_C)\nanalysis_error (degree_C)\nmask (Land Sea Mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_e8d3_f614_6c50_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_e8d3_f614_6c50_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_e8d3_f614_6c50/index.json", "https://podaac.jpl.nasa.gov/dataset/NAVO-L4HR1m-GLOB-K10_SST", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_e8d3_f614_6c50.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_e8d3_f614_6c50&showErrors=false&email=", "Naval Oceanographic Office", "nasa_jpl_e8d3_f614_6c50"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_64e9_b48f_fa8a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_64e9_b48f_fa8a.graph", "", "", "public", "AVHRR SST NOAA19 NAR-OSISAF-L3C-v1.0 (SST) [nj][ni]", "Sea Surface Temperature. The NAR L3C product derived from NOAA19 Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures. (AVHRR SST NOAA19 NAR-Ocean and Sea Ice Satellite Application Facility (OSISAF)-L3C-v1.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nj][ni]):\nlat (latitude, degrees_north)\nlon (longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_64e9_b48f_fa8a/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_NOAA19_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_64e9_b48f_fa8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_64e9_b48f_fa8a&showErrors=false&email=", "OSISAF", "nasa_jpl_64e9_b48f_fa8a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_5345_5e3b_4d57", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_5345_5e3b_4d57.graph", "", "", "public", "AVHRR SST NOAA19 NAR-OSISAF-L3C-v1.0 (SST) [time][nj][ni]", "Sea Surface Temperature. The NAR L3C product derived from NOAA19 Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures. (AVHRR SST NOAA19 NAR-Ocean and Sea Ice Satellite Application Facility (OSISAF)-L3C-v1.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][nj][ni]):\nsea_surface_temperature (sea surface subskin temperature, degree_C)\nsst_dtime (time difference from reference time, seconds)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (deviation from SST analysis or reference climatology, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nadi_dtime_from_sst (time difference of ADI data from sst measurement, hour)\nsources_of_adi (sources of aerosol dynamic indicator)\nl2p_flags\nquality_level (quality level of SST pixel)\nsatellite_zenith_angle (angular_degree)\nsolar_zenith_angle (angular_degree)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_5345_5e3b_4d57/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_NOAA19_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_5345_5e3b_4d57.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_5345_5e3b_4d57&showErrors=false&email=", "OSISAF", "nasa_jpl_5345_5e3b_4d57"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3e3d_e75d_fe06", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3e3d_e75d_fe06.graph", "", "", "public", "AVHRR SST METOP A NAR-OSISAF-L3C-v1.0 (SST) [nj][ni]", "Sea Surface Temperature. The NAR L3C product derived from METOP A Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures. (AVHRR SST METOP A NAR-Ocean and Sea Ice Satellite Application Facility (OSISAF)-L3C-v1.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nj][ni]):\nlat (latitude, degrees_north)\nlon (longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_3e3d_e75d_fe06/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_METOP_A_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_3e3d_e75d_fe06.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_3e3d_e75d_fe06&showErrors=false&email=", "OSISAF", "nasa_jpl_3e3d_e75d_fe06"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3b29_afb1_adbc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3b29_afb1_adbc.graph", "", "", "public", "VIIRS SST NPP NAR-OSISAF-L3C-v1.0 (SST) [nj][ni]", "Sea Surface Temperature. The NAR L3C product derived from National Polar-orbiting Partnership (NPP) Visible and Infrared Imager/Radiometer Suite (VIIRS) brightness temperatures. (VIIRS SST NPP NAR-Ocean and Sea Ice Satellite Application Facility (OSISAF)-L3C-v1.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nj][ni]):\nlat (latitude, degrees_north)\nlon (longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_3b29_afb1_adbc/index.json", "https://podaac.jpl.nasa.gov/dataset/VIIRS_SST_NPP_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_3b29_afb1_adbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_3b29_afb1_adbc&showErrors=false&email=", "OSISAF", "nasa_jpl_3b29_afb1_adbc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_471c_9422_782d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_471c_9422_782d.graph", "", "", "public", "NCOM Region 1, NCOM Region 1, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 1 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_471c_9422_782d/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_471c_9422_782d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_471c_9422_782d&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_471c_9422_782d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_8c7a_4281_add4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_8c7a_4281_add4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_8c7a_4281_add4/request", "", "public", "NCOM Region 1, NCOM Region 1, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 1 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_8c7a_4281_add4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_8c7a_4281_add4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_8c7a_4281_add4/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_8c7a_4281_add4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_8c7a_4281_add4&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_8c7a_4281_add4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_42cc_a9de_41af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_42cc_a9de_41af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_42cc_a9de_41af/request", "", "public", "NCOM Region 1, NCOM Region 1, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 1 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_42cc_a9de_41af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_42cc_a9de_41af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_42cc_a9de_41af/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_42cc_a9de_41af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_42cc_a9de_41af&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_42cc_a9de_41af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_6858_1b33_06bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_6858_1b33_06bd.graph", "", "", "public", "NCOM Region 2, NCOM Region 2, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 2 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_6858_1b33_06bd/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_6858_1b33_06bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_6858_1b33_06bd&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_6858_1b33_06bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_32dc_2bcd_70ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_32dc_2bcd_70ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_32dc_2bcd_70ea/request", "", "public", "NCOM Region 2, NCOM Region 2, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 2 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalinity (PSU)\nwater_temp (Water Temperature, degree_C)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_32dc_2bcd_70ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_32dc_2bcd_70ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_32dc_2bcd_70ea/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_32dc_2bcd_70ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_32dc_2bcd_70ea&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_32dc_2bcd_70ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_e024_ac82_0c11", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_e024_ac82_0c11.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_e024_ac82_0c11/request", "", "public", "NCOM Region 2, NCOM Region 2, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 2 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_e024_ac82_0c11_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_e024_ac82_0c11_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_e024_ac82_0c11/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_e024_ac82_0c11.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_e024_ac82_0c11&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_e024_ac82_0c11"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_ebff_3cc4_a0c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_ebff_3cc4_a0c9.graph", "", "", "public", "NCOM Region 5, NCOM Region 5, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 5 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_ebff_3cc4_a0c9/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_ebff_3cc4_a0c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_ebff_3cc4_a0c9&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_ebff_3cc4_a0c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_750c_0664_336a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_750c_0664_336a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_750c_0664_336a/request", "", "public", "NCOM Region 5, NCOM Region 5, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 5 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_750c_0664_336a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_750c_0664_336a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_750c_0664_336a/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_750c_0664_336a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_750c_0664_336a&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_750c_0664_336a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_071d_34e8_7a21", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_071d_34e8_7a21.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_071d_34e8_7a21/request", "", "public", "NCOM Region 5, NCOM Region 5, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 5 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_071d_34e8_7a21_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_071d_34e8_7a21_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_071d_34e8_7a21/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_071d_34e8_7a21.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_071d_34e8_7a21&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_071d_34e8_7a21"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_7309_f69a_991a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_7309_f69a_991a.graph", "", "", "public", "NCOM Region 6, NCOM Region 6, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 6 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_7309_f69a_991a/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_7309_f69a_991a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_7309_f69a_991a&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_7309_f69a_991a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_bad7_0640_6d9a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_bad7_0640_6d9a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_bad7_0640_6d9a/request", "", "public", "NCOM Region 6, NCOM Region 6, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 6 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalinity (PSU)\nwater_temp (Water Temperature, degree_C)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_bad7_0640_6d9a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_bad7_0640_6d9a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_bad7_0640_6d9a/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_bad7_0640_6d9a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_bad7_0640_6d9a&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_bad7_0640_6d9a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_b8d7_7054_47d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_b8d7_7054_47d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_b8d7_7054_47d4/request", "", "public", "NCOM Region 6, NCOM Region 6, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 6 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_b8d7_7054_47d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_b8d7_7054_47d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_b8d7_7054_47d4/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_b8d7_7054_47d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_b8d7_7054_47d4&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_b8d7_7054_47d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_40a9_d027_7372", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_40a9_d027_7372.graph", "", "", "public", "NCOM Region 7, NCOM Region 7, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 7 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_40a9_d027_7372/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_40a9_d027_7372.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_40a9_d027_7372&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_40a9_d027_7372"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_bf9d_4a29_a5d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_bf9d_4a29_a5d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_bf9d_4a29_a5d3/request", "", "public", "NCOM Region 7, NCOM Region 7, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 7 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalinity (PSU)\nwater_temp (Water Temperature, degree_C)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_bf9d_4a29_a5d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_bf9d_4a29_a5d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_bf9d_4a29_a5d3/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_bf9d_4a29_a5d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_bf9d_4a29_a5d3&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_bf9d_4a29_a5d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5670_aa0a_3848", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5670_aa0a_3848.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_5670_aa0a_3848/request", "", "public", "NCOM Region 7, NCOM Region 7, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 7 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_5670_aa0a_3848_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_5670_aa0a_3848_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_5670_aa0a_3848/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_5670_aa0a_3848.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_5670_aa0a_3848&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_5670_aa0a_3848"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5325_cd6e_43de", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5325_cd6e_43de.graph", "", "", "public", "NCOM Region 10, NCOM Region 10, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 10 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_5325_cd6e_43de/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_5325_cd6e_43de.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_5325_cd6e_43de&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_5325_cd6e_43de"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_603c_bf5b_abc8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_603c_bf5b_abc8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_603c_bf5b_abc8/request", "", "public", "NCOM Region 10, NCOM Region 10, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 10 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalinity (PSU)\nwater_temp (Water Temperature, degree_C)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_603c_bf5b_abc8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_603c_bf5b_abc8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_603c_bf5b_abc8/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_603c_bf5b_abc8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_603c_bf5b_abc8&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_603c_bf5b_abc8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_23e1_3acd_99d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_23e1_3acd_99d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_23e1_3acd_99d0/request", "", "public", "NCOM Region 10, NCOM Region 10, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 10 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_23e1_3acd_99d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_23e1_3acd_99d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_23e1_3acd_99d0/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_23e1_3acd_99d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_23e1_3acd_99d0&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_23e1_3acd_99d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_15eb_3b9f_e2b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_15eb_3b9f_e2b1.graph", "", "", "public", "NCOM SFC 8, NCOM SFC 8, Best Time Series [time], 2009-2013", "Best time series, taking the data from the most recent run available. Aggregation of SFC 8 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_15eb_3b9f_e2b1/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_15eb_3b9f_e2b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_15eb_3b9f_e2b1&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_15eb_3b9f_e2b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_a560_b65b_e33f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_a560_b65b_e33f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_a560_b65b_e33f/request", "", "public", "NCOM SFC 8, NCOM SFC 8, Best Time Series [time][lat][lon], 0.125\u00b0, 2009-2013", "Best time series, taking the data from the most recent run available. Aggregation of SFC 8 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\nwater_u (Eastward Water Velocity, m/s)\nwater_v (Northward Water Velocity, m/s)\nsurf_el (Water Surface Elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_a560_b65b_e33f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_a560_b65b_e33f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_a560_b65b_e33f/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_a560_b65b_e33f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_a560_b65b_e33f&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_a560_b65b_e33f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_df8c_8539_aee5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_df8c_8539_aee5.graph", "", "", "public", "NCOM SFC8 Hindcast, NCOM SFC8 Hindcast, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_df8c_8539_aee5/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_df8c_8539_aee5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_df8c_8539_aee5&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_df8c_8539_aee5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_1643_41a8_1d04", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_1643_41a8_1d04.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_1643_41a8_1d04/request", "", "public", "NCOM SFC8 Hindcast, NCOM SFC8 Hindcast, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\nwater_u (Eastward Water Velocity, m/s)\nwater_v (Northward Water Velocity, m/s)\nsurf_el (Water Surface Elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_1643_41a8_1d04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_1643_41a8_1d04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_1643_41a8_1d04/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_1643_41a8_1d04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_1643_41a8_1d04&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_1643_41a8_1d04"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_30f3_dedb_1e46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_30f3_dedb_1e46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_30f3_dedb_1e46/request", "", "public", "Amseas May 2010 to Apr 04 2013, Amseas May 2010 to Apr 04 2013, Best Time Series [time][lat][lon]", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: American Seas Regional Forecast. Best time series, taking the data from the most recent run available. US East Before Resolution Change(11/18/09 - 4/05/13)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_atm_press (Surface Atmospherics Pressure, Pascal)\nsurf_el (Water Surface Elevation, meter)\nsurf_temp_flux (model surface temperature flux, degC-m/s)\nsurf_salt_flux (model surface salinity flux, psu-m/s)\nsurf_solar_flux (model surface shortwave flux, degC-m/s)\nsurf_roughness (model surface roughness, m)\nsurf_wnd_stress_gridx (Grid x Surface Wind Stress, newton/meter2)\nsurf_wnd_stress_gridy (Grid y Surface Wind Stress, newton/meter2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_30f3_dedb_1e46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_30f3_dedb_1e46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_30f3_dedb_1e46/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_amseas_agg_20091119_20130404/Amseas_May_2010_to_Apr_04_2013_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_30f3_dedb_1e46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_30f3_dedb_1e46&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_30f3_dedb_1e46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5646_f209_8b5a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5646_f209_8b5a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_5646_f209_8b5a/request", "", "public", "Amseas May 2010 to Apr 04 2013, Amseas May 2010 to Apr 04 2013, Best Time Series [time][depth][lat][lon]", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: American Seas Regional Forecast. Best time series, taking the data from the most recent run available. US East Before Resolution Change(11/18/09 - 4/05/13)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_5646_f209_8b5a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_5646_f209_8b5a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_5646_f209_8b5a/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_amseas_agg_20091119_20130404/Amseas_May_2010_to_Apr_04_2013_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_5646_f209_8b5a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_5646_f209_8b5a&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_5646_f209_8b5a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_01d3_5057_e3ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_01d3_5057_e3ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_01d3_5057_e3ef/request", "", "public", "US East Feb 2009 to November 18 2009, US East Feb 2009 to November 18 2009, Best Time Series [time][lat][lon]", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: Sendai Regional Forecast. Best time series, taking the data from the most recent run available. US East Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_atm_press (Surface Atmospherics Pressure, Pascal)\nsurf_el (Water Surface Elevation, meter)\nsurf_temp_flux (model surface temperature flux, degC-m/s)\nsurf_salt_flux (model surface salinity flux, psu-m/s)\nsurf_solar_flux (model surface shortwave flux, degC-m/s)\nsurf_roughness (model surface roughness, m)\nsurf_wnd_stress_gridx (Grid x Surface Wind Stress, newton/meter2)\nsurf_wnd_stress_gridy (Grid y Surface Wind Stress, newton/meter2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_01d3_5057_e3ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_01d3_5057_e3ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_01d3_5057_e3ef/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_us_east_before_depth_change_agg/US_East_Feb_2009_to_November_18_2009_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_01d3_5057_e3ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_01d3_5057_e3ef&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_01d3_5057_e3ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_a4af_5d09_927f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_a4af_5d09_927f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_a4af_5d09_927f/request", "", "public", "US East Feb 2009 to November 18 2009, US East Feb 2009 to November 18 2009, Best Time Series [time][depth][lat][lon]", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: Sendai Regional Forecast. Best time series, taking the data from the most recent run available. US East Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_a4af_5d09_927f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_a4af_5d09_927f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_a4af_5d09_927f/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_us_east_before_depth_change_agg/US_East_Feb_2009_to_November_18_2009_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_a4af_5d09_927f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_a4af_5d09_927f&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_a4af_5d09_927f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_786c_959f_ba5d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_786c_959f_ba5d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_786c_959f_ba5d/request", "", "public", "US East Nov 19 2009 to Apr 04 2013, US East Nov 19 2009 to Apr 04 2013, Best Time Series [time][lat][lon]", "Best time series, taking the data from the most recent run available. US East Before Resolution Change(11/18/09 - 4/05/13)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_atm_press (Surface Atmospherics Pressure, Pascal)\nsurf_el (Water Surface Elevation, meter)\nsurf_temp_flux (model surface temperature flux, degC-m/s)\nsurf_salt_flux (model surface salinity flux, psu-m/s)\nsurf_solar_flux (model surface shortwave flux, degC-m/s)\nsurf_roughness (model surface roughness, m)\nsurf_wnd_stress_gridx (Grid x Surface Wind Stress, newton/meter2)\nsurf_wnd_stress_gridy (Grid y Surface Wind Stress, newton/meter2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_786c_959f_ba5d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_786c_959f_ba5d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_786c_959f_ba5d/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_useast_agg_20091119_20130404/US_East_Nov_19_2009_to_Apr_04_2013_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_786c_959f_ba5d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_786c_959f_ba5d&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_786c_959f_ba5d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_3360_0e6c_c4f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_3360_0e6c_c4f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_3360_0e6c_c4f3/request", "", "public", "US East Nov 19 2009 to Apr 04 2013, US East Nov 19 2009 to Apr 04 2013, Best Time Series [time][depth][lat][lon]", "Best time series, taking the data from the most recent run available. US East Before Resolution Change(11/18/09 - 4/05/13)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_3360_0e6c_c4f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_3360_0e6c_c4f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_3360_0e6c_c4f3/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_useast_agg_20091119_20130404/US_East_Nov_19_2009_to_Apr_04_2013_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_3360_0e6c_c4f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_3360_0e6c_c4f3&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_3360_0e6c_c4f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_da08_dcdf_2100", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_da08_dcdf_2100.graph", "", "", "public", "Extended AVHRR Polar Pathfinder Fundamental Climate Data Record (APPx CDR) [columns][rows]", "The Extended Advanced Very High Resolution Radiometer (AVHRR) Polar Pathfinder (APP-x) version-2 Thematic Climate Data Record (CDR) includes surface temperature, surface albedo, surface and the Top Of the Atmosphere (TOA) shortwave and longwave radiative fluxes, cloud properties (amount, phase, particle size, optical depth,top pressure and temperature, surface and TOA radiative effect), and ice thickness and age. The APP-x CDR has twice daily data at local solar times of 14 and 04(02) for the Arctic(Antarctic) at a spatial resolution of 25 km for both poles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [columns][rows]):\nlongitude (longitude of EASE Grid 25km resolution in the polar regions, Arctic (361,361), Antarctic (321,321), degrees_east)\nlatitude (latitude of EASE Grid 25km resolution in the polar regionsArctic (361,361), Antarctic (321,321), degrees_north)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_da08_dcdf_2100/index.json", "https://www.ngdc.noaa.gov/thredds/dodsC/arctic/Polar-APP-X_v01r01_Nhem_1400_d20160801_c20160803.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_da08_dcdf_2100.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_da08_dcdf_2100&showErrors=false&email=", "Cooperative Institute for Meteorological Studies, University of Wisconsin at Madison", "noaa_ngdc_da08_dcdf_2100"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0fe5_a4b9_3776", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0fe5_a4b9_3776.graph", "", "", "public", "Extended AVHRR Polar Pathfinder Fundamental Climate Data Record (APPx CDR) [Time][columns][rows]", "The Extended Advanced Very High Resolution Radiometer (AVHRR) Polar Pathfinder (APP-x) version-2 Thematic Climate Data Record (CDR) includes surface temperature, surface albedo, surface and the Top Of the Atmosphere (TOA) shortwave and longwave radiative fluxes, cloud properties (amount, phase, particle size, optical depth,top pressure and temperature, surface and TOA radiative effect), and ice thickness and age. The APP-x CDR has twice daily data at local solar times of 14 and 04(02) for the Arctic(Antarctic) at a spatial resolution of 25 km for both poles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time2][columns][rows]):\ncdr_surface_temperature (NOAA CDR of surface skin temperature, K)\ncdr_surface_albedo (NOAA CDR of surface broadband albedo, 1)\ncdr_surface_downwelling_shortwave_flux (NOAA CDR of surface downwelling shortwave radiative flux, W m-2)\ncdr_surface_downwelling_longwave_flux (NOAA CDR of surface downwelling longwave radiative flux, W m-2)\ncdr_surface_upwelling_shortwave_flux (NOAA CDR of surface upwelling shortwave radiative flux, W m-2)\ncdr_surface_upwelling_longwave_flux (NOAA CDR of surface upwelling longwave radiative flux, W m-2)\ncdr_cloud_binary_mask (NOAA CDR of cloud mask, 1)\ncdr_sea_ice_thickness (NOAA CDR of sea ice thickness, m)\ncdr_toa_net_downward_shortwave_flux (NOAA CDR of TOA net downward shortwave radiative flux, W m-2)\ncdr_toa_outgoing_shortwave_flux (NOAA CDR of TOA outgoing shortwave radiative flux, W m-2)\ncdr_toa_outgoing_longwave_flux (NOAA CDR of TOA outgoing longwave radiative flux, W m-2)\nsurface_type (1)\ncloud_particle_phase (1)\ncloud_particle_radius (microns)\ncloud_optical_depth (1)\ncloud_top_pressure (hPa)\ncloud_top_temperature (K)\ncloud_type (1)\nsurface_shortwave_cloud_radiative_forcing (W m-2)\nsurface_longwave_cloud_radiative_forcing (W m-2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0fe5_a4b9_3776/index.json", "https://www.ngdc.noaa.gov/thredds/dodsC/arctic/Polar-APP-X_v01r01_Nhem_1400_d20160801_c20160803.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0fe5_a4b9_3776.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0fe5_a4b9_3776&showErrors=false&email=", "Cooperative Institute for Meteorological Studies, University of Wisconsin at Madison", "noaa_ngdc_0fe5_a4b9_3776"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5253_bf9e_db32", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5253_bf9e_db32.graph", "", "", "public", "Extended AVHRR Polar Pathfinder Fundamental Climate Data Record (APPx CDR) [columns][rows]", "The Extended Advanced Very High Resolution Radiometer (AVHRR) Polar Pathfinder (APP-x) Version-2 thematic Climate Data Record (CDR) includes more than 33 years of surface temperature, surface albedo, surface and the Top Of the Atmosphere (TOA) shortwave and longwave radiative fluxes, cloud properties (amount, phase, particle size, optical depth,top pressure and temperature, surface and TOA radiative effect), and ice thickness and age. The APP-x CDR has twice daily data at local solar times of 14 and 04(02) for the Arctic(Antarctic) at a spatial resolution of 25 km for both poles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [columns][rows]):\nlongitude (longitude of EASE Grid 25km resolution in the polar regions, Arctic (361,361), Antarctic (321,321), degrees_east)\nlatitude (latitude of EASE Grid 25km resolution in the polar regionsArctic (361,361), Antarctic (321,321), degrees_north)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5253_bf9e_db32/index.json", "https://www.ngdc.noaa.gov/thredds/dodsC/arctic/Polar-APP-X_v01r01_Nhem_1400_d20160731_c20160822.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5253_bf9e_db32.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5253_bf9e_db32&showErrors=false&email=", "Cooperative Institute for Meteorological Studies, University of Wisconsin at Madison", "noaa_ngdc_5253_bf9e_db32"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0f24_2f8c_d159", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0f24_2f8c_d159.graph", "", "", "public", "Extended AVHRR Polar Pathfinder Fundamental Climate Data Record (APPx CDR) [Time][columns][rows]", "The Extended Advanced Very High Resolution Radiometer (AVHRR) Polar Pathfinder (APP-x) Version-2 thematic Climate Data Record (CDR) includes more than 33 years of surface temperature, surface albedo, surface and the Top Of the Atmosphere (TOA) shortwave and longwave radiative fluxes, cloud properties (amount, phase, particle size, optical depth,top pressure and temperature, surface and TOA radiative effect), and ice thickness and age. The APP-x CDR has twice daily data at local solar times of 14 and 04(02) for the Arctic(Antarctic) at a spatial resolution of 25 km for both poles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time2][columns][rows]):\ncdr_surface_temperature (NOAA CDR of surface skin temperature, K)\ncdr_surface_albedo (NOAA CDR of surface broadband albedo, 1)\ncdr_surface_downwelling_shortwave_flux (NOAA CDR of surface downwelling shortwave radiative flux, W m-2)\ncdr_surface_downwelling_longwave_flux (NOAA CDR of surface downwelling longwave radiative flux, W m-2)\ncdr_surface_upwelling_shortwave_flux (NOAA CDR of surface upwelling shortwave radiative flux, W m-2)\ncdr_surface_upwelling_longwave_flux (NOAA CDR of surface upwelling longwave radiative flux, W m-2)\ncdr_cloud_binary_mask (NOAA CDR of cloud mask, 1)\ncdr_sea_ice_thickness (NOAA CDR of sea ice thickness, m)\ncdr_toa_net_downward_shortwave_flux (NOAA CDR of TOA net downward shortwave radiative flux, W m-2)\ncdr_toa_outgoing_shortwave_flux (NOAA CDR of TOA outgoing shortwave radiative flux, W m-2)\ncdr_toa_outgoing_longwave_flux (NOAA CDR of TOA outgoing longwave radiative flux, W m-2)\nsurface_type (1)\ncloud_particle_phase (1)\ncloud_particle_radius (microns)\ncloud_optical_depth (1)\ncloud_top_pressure (hPa)\ncloud_top_temperature (K)\ncloud_type (1)\nsurface_shortwave_cloud_radiative_forcing (W m-2)\nsurface_longwave_cloud_radiative_forcing (W m-2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0f24_2f8c_d159/index.json", "https://www.ngdc.noaa.gov/thredds/dodsC/arctic/Polar-APP-X_v01r01_Nhem_1400_d20160731_c20160822.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0f24_2f8c_d159.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0f24_2f8c_d159&showErrors=false&email=", "Cooperative Institute for Meteorological Studies, University of Wisconsin at Madison", "noaa_ngdc_0f24_2f8c_d159"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b05e_8ba1_e064", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b05e_8ba1_e064.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b05e_8ba1_e064/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b05e_8ba1_e064_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b05e_8ba1_e064_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b05e_8ba1_e064/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b05e_8ba1_e064.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b05e_8ba1_e064&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_b05e_8ba1_e064"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ba38_d298_7fb6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ba38_d298_7fb6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_ba38_d298_7fb6/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_ba38_d298_7fb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_ba38_d298_7fb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_ba38_d298_7fb6/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_ba38_d298_7fb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_ba38_d298_7fb6&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_ba38_d298_7fb6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2e80_3e92_0d96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2e80_3e92_0d96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_2e80_3e92_0d96/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Summer (Jul-Sep) 5.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_2e80_3e92_0d96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_2e80_3e92_0d96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_2e80_3e92_0d96/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_2e80_3e92_0d96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_2e80_3e92_0d96&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_2e80_3e92_0d96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_278d_ee5d_0336", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_278d_ee5d_0336.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_278d_ee5d_0336/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_278d_ee5d_0336_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_278d_ee5d_0336_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_278d_ee5d_0336/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_278d_ee5d_0336.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_278d_ee5d_0336&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_278d_ee5d_0336"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6eb3_1324_fe10", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6eb3_1324_fe10.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6eb3_1324_fe10/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6eb3_1324_fe10_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6eb3_1324_fe10_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6eb3_1324_fe10/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6eb3_1324_fe10.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6eb3_1324_fe10&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_6eb3_1324_fe10"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_baee_515e_5f93", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_baee_515e_5f93.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_baee_515e_5f93/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature November 5.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_baee_515e_5f93_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_baee_515e_5f93_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_baee_515e_5f93/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_baee_515e_5f93.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_baee_515e_5f93&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_baee_515e_5f93"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b320_a934_3ac2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b320_a934_3ac2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b320_a934_3ac2/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b320_a934_3ac2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b320_a934_3ac2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b320_a934_3ac2/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b320_a934_3ac2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b320_a934_3ac2&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_b320_a934_3ac2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e98e_e92a_9cfb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e98e_e92a_9cfb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e98e_e92a_9cfb/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e98e_e92a_9cfb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e98e_e92a_9cfb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e98e_e92a_9cfb/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e98e_e92a_9cfb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e98e_e92a_9cfb&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_e98e_e92a_9cfb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7d63_a8bc_2608", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7d63_a8bc_2608.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7d63_a8bc_2608/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Annual 5.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7d63_a8bc_2608_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7d63_a8bc_2608_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7d63_a8bc_2608/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7d63_a8bc_2608.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7d63_a8bc_2608&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_7d63_a8bc_2608"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_06bf_c74a_24c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_06bf_c74a_24c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_06bf_c74a_24c6/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_06bf_c74a_24c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_06bf_c74a_24c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_06bf_c74a_24c6/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_06bf_c74a_24c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_06bf_c74a_24c6&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_06bf_c74a_24c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4938_8b84_b07d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4938_8b84_b07d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_4938_8b84_b07d/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_4938_8b84_b07d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_4938_8b84_b07d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_4938_8b84_b07d/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_4938_8b84_b07d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_4938_8b84_b07d&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_4938_8b84_b07d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_c3c3_3090_b391", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_c3c3_3090_b391.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_c3c3_3090_b391/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Summer (Jul-Sep) 5.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_c3c3_3090_b391_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_c3c3_3090_b391_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_c3c3_3090_b391/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_c3c3_3090_b391.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_c3c3_3090_b391&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_c3c3_3090_b391"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8696_391d_42f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8696_391d_42f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_8696_391d_42f0/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_8696_391d_42f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_8696_391d_42f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_8696_391d_42f0/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_8696_391d_42f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_8696_391d_42f0&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_8696_391d_42f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_21e3_c4af_877c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_21e3_c4af_877c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_21e3_c4af_877c/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_21e3_c4af_877c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_21e3_c4af_877c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_21e3_c4af_877c/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_21e3_c4af_877c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_21e3_c4af_877c&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_21e3_c4af_877c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_dd75_631c_40ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_dd75_631c_40ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_dd75_631c_40ca/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature November 5.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_dd75_631c_40ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_dd75_631c_40ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_dd75_631c_40ca/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_dd75_631c_40ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_dd75_631c_40ca&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_dd75_631c_40ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b354_9598_1222", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b354_9598_1222.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b354_9598_1222/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b354_9598_1222_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b354_9598_1222_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b354_9598_1222/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b354_9598_1222.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b354_9598_1222&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_b354_9598_1222"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_aac9_c0d1_377c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_aac9_c0d1_377c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_aac9_c0d1_377c/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_aac9_c0d1_377c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_aac9_c0d1_377c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_aac9_c0d1_377c/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_aac9_c0d1_377c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_aac9_c0d1_377c&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_aac9_c0d1_377c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_695f_f9ac_ce44", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_695f_f9ac_ce44.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_695f_f9ac_ce44/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Annual 5.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_695f_f9ac_ce44_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_695f_f9ac_ce44_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_695f_f9ac_ce44/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_695f_f9ac_ce44.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_695f_f9ac_ce44&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_695f_f9ac_ce44"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2d23_8f3b_dbc9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2d23_8f3b_dbc9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_2d23_8f3b_dbc9/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature Summer (Jul-Sep) 0.10 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_2d23_8f3b_dbc9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_2d23_8f3b_dbc9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_2d23_8f3b_dbc9/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_2d23_8f3b_dbc9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_2d23_8f3b_dbc9&showErrors=false&email=", "NCEI", "noaa_nodc_2d23_8f3b_dbc9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a58e_0a09_068a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a58e_0a09_068a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_a58e_0a09_068a/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_a58e_0a09_068a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_a58e_0a09_068a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_a58e_0a09_068a/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_a58e_0a09_068a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_a58e_0a09_068a&showErrors=false&email=", "NCEI", "noaa_nodc_a58e_0a09_068a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a363_af52_bfdb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a363_af52_bfdb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_a363_af52_bfdb/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_a363_af52_bfdb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_a363_af52_bfdb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_a363_af52_bfdb/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_a363_af52_bfdb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_a363_af52_bfdb&showErrors=false&email=", "NCEI", "noaa_nodc_a363_af52_bfdb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_241d_ee2f_0868", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_241d_ee2f_0868.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_241d_ee2f_0868/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature November 0.10 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_241d_ee2f_0868_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_241d_ee2f_0868_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_241d_ee2f_0868/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_241d_ee2f_0868.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_241d_ee2f_0868&showErrors=false&email=", "NCEI", "noaa_nodc_241d_ee2f_0868"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8cc7_027b_fa4e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8cc7_027b_fa4e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_8cc7_027b_fa4e/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_8cc7_027b_fa4e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_8cc7_027b_fa4e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_8cc7_027b_fa4e/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_8cc7_027b_fa4e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_8cc7_027b_fa4e&showErrors=false&email=", "NCEI", "noaa_nodc_8cc7_027b_fa4e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e243_70b4_e532", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e243_70b4_e532.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e243_70b4_e532/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e243_70b4_e532_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e243_70b4_e532_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e243_70b4_e532/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e243_70b4_e532.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e243_70b4_e532&showErrors=false&email=", "NCEI", "noaa_nodc_e243_70b4_e532"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_180a_4a5a_1752", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_180a_4a5a_1752.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_180a_4a5a_1752/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature Annual 0.10 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_180a_4a5a_1752_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_180a_4a5a_1752_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_180a_4a5a_1752/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_180a_4a5a_1752.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_180a_4a5a_1752&showErrors=false&email=", "NCEI", "noaa_nodc_180a_4a5a_1752"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cff1_8339_4f48", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cff1_8339_4f48.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_cff1_8339_4f48/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_cff1_8339_4f48_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_cff1_8339_4f48_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_cff1_8339_4f48/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_cff1_8339_4f48.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_cff1_8339_4f48&showErrors=false&email=", "NCEI", "noaa_nodc_cff1_8339_4f48"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_315c_33bd_35b2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_315c_33bd_35b2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_315c_33bd_35b2/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_315c_33bd_35b2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_315c_33bd_35b2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_315c_33bd_35b2/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_315c_33bd_35b2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_315c_33bd_35b2&showErrors=false&email=", "NCEI", "noaa_nodc_315c_33bd_35b2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_24b8_8410_a9b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_24b8_8410_a9b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_24b8_8410_a9b0/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_24b8_8410_a9b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_24b8_8410_a9b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_24b8_8410_a9b0/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_24b8_8410_a9b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_24b8_8410_a9b0&showErrors=false&email=", "NOAA", "noaa_nodc_24b8_8410_a9b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2f98_8b54_19cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2f98_8b54_19cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_2f98_8b54_19cd/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_2f98_8b54_19cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_2f98_8b54_19cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_2f98_8b54_19cd/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_2f98_8b54_19cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_2f98_8b54_19cd&showErrors=false&email=", "NOAA", "noaa_nodc_2f98_8b54_19cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e86b_8826_9294", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e86b_8826_9294.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e86b_8826_9294/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e86b_8826_9294_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e86b_8826_9294_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e86b_8826_9294/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e86b_8826_9294.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e86b_8826_9294&showErrors=false&email=", "NOAA", "noaa_nodc_e86b_8826_9294"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0265_d582_2eb1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0265_d582_2eb1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_0265_d582_2eb1/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature November 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_0265_d582_2eb1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_0265_d582_2eb1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_0265_d582_2eb1/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_0265_d582_2eb1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_0265_d582_2eb1&showErrors=false&email=", "NOAA", "noaa_nodc_0265_d582_2eb1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1a13_9f47_37a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1a13_9f47_37a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_1a13_9f47_37a0/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_1a13_9f47_37a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_1a13_9f47_37a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_1a13_9f47_37a0/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_1a13_9f47_37a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_1a13_9f47_37a0&showErrors=false&email=", "NOAA", "noaa_nodc_1a13_9f47_37a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3595_6fdf_7375", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3595_6fdf_7375.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_3595_6fdf_7375/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_3595_6fdf_7375_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_3595_6fdf_7375_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_3595_6fdf_7375/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_3595_6fdf_7375.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_3595_6fdf_7375&showErrors=false&email=", "NOAA", "noaa_nodc_3595_6fdf_7375"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e2e7_50cb_cbd1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e2e7_50cb_cbd1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e2e7_50cb_cbd1/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Annual 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e2e7_50cb_cbd1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e2e7_50cb_cbd1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e2e7_50cb_cbd1/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e2e7_50cb_cbd1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e2e7_50cb_cbd1&showErrors=false&email=", "NOAA", "noaa_nodc_e2e7_50cb_cbd1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_d038_1191_14f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_d038_1191_14f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_d038_1191_14f1/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_d038_1191_14f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_d038_1191_14f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_d038_1191_14f1/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_d038_1191_14f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_d038_1191_14f1&showErrors=false&email=", "NOAA", "noaa_nodc_d038_1191_14f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6341_06e2_a6ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6341_06e2_a6ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6341_06e2_a6ee/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6341_06e2_a6ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6341_06e2_a6ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6341_06e2_a6ee/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6341_06e2_a6ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6341_06e2_a6ee&showErrors=false&email=", "NOAA", "noaa_nodc_6341_06e2_a6ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1a82_0175_b2a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1a82_0175_b2a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_1a82_0175_b2a7/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.10 degree, 0000", "Climatological mean temperature for the Greenland-Iceland-Norwegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_1a82_0175_b2a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_1a82_0175_b2a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_1a82_0175_b2a7/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_1a82_0175_b2a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_1a82_0175_b2a7&showErrors=false&email=", "NCEI", "noaa_nodc_1a82_0175_b2a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7112_d88f_1a37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7112_d88f_1a37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7112_d88f_1a37/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the Greenland-Iceland-Norwegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7112_d88f_1a37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7112_d88f_1a37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7112_d88f_1a37/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7112_d88f_1a37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7112_d88f_1a37&showErrors=false&email=", "NCEI", "noaa_nodc_7112_d88f_1a37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f6a4_95b0_2565", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f6a4_95b0_2565.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_f6a4_95b0_2565/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the Greenland-Iceland-Norwegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_f6a4_95b0_2565_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_f6a4_95b0_2565_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_f6a4_95b0_2565/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_f6a4_95b0_2565.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_f6a4_95b0_2565&showErrors=false&email=", "NCEI", "noaa_nodc_f6a4_95b0_2565"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1d9b_bb0c_da8e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1d9b_bb0c_da8e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_1d9b_bb0c_da8e/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature November 0.10 degree, 0000", "Climatological mean temperature for the Greenland-Iceland-Norwegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_1d9b_bb0c_da8e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_1d9b_bb0c_da8e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_1d9b_bb0c_da8e/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_1d9b_bb0c_da8e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_1d9b_bb0c_da8e&showErrors=false&email=", "NCEI", "noaa_nodc_1d9b_bb0c_da8e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7037_035f_0499", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7037_035f_0499.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7037_035f_0499/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the Greenland-Iceland-Norwegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7037_035f_0499_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7037_035f_0499_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7037_035f_0499/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7037_035f_0499.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7037_035f_0499&showErrors=false&email=", "NCEI", "noaa_nodc_7037_035f_0499"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4f7d_92ce_277f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4f7d_92ce_277f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_4f7d_92ce_277f/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the Greenland-Iceland-Norwegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_4f7d_92ce_277f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_4f7d_92ce_277f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_4f7d_92ce_277f/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_4f7d_92ce_277f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_4f7d_92ce_277f&showErrors=false&email=", "NCEI", "noaa_nodc_4f7d_92ce_277f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f8e0_afe3_c18f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f8e0_afe3_c18f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_f8e0_afe3_c18f/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.10 degree, 0000", "Climatological mean temperature and salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_f8e0_afe3_c18f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_f8e0_afe3_c18f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_f8e0_afe3_c18f/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_f8e0_afe3_c18f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_f8e0_afe3_c18f&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_f8e0_afe3_c18f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6e3c_65a4_ac41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6e3c_65a4_ac41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6e3c_65a4_ac41/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature and salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6e3c_65a4_ac41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6e3c_65a4_ac41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6e3c_65a4_ac41/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6e3c_65a4_ac41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6e3c_65a4_ac41&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_6e3c_65a4_ac41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7050_3786_dec0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7050_3786_dec0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7050_3786_dec0/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature and salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7050_3786_dec0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7050_3786_dec0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7050_3786_dec0/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7050_3786_dec0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7050_3786_dec0&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_7050_3786_dec0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_9caa_9986_e60c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_9caa_9986_e60c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_9caa_9986_e60c/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature November 0.10 degree, 0000", "Climatological mean temperature and salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_9caa_9986_e60c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_9caa_9986_e60c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_9caa_9986_e60c/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_9caa_9986_e60c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_9caa_9986_e60c&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_9caa_9986_e60c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e650_5530_ee6f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e650_5530_ee6f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e650_5530_ee6f/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature and salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e650_5530_ee6f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e650_5530_ee6f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e650_5530_ee6f/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e650_5530_ee6f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e650_5530_ee6f&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_e650_5530_ee6f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7b60_a439_dcfe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7b60_a439_dcfe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7b60_a439_dcfe/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature and salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7b60_a439_dcfe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7b60_a439_dcfe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7b60_a439_dcfe/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7b60_a439_dcfe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7b60_a439_dcfe&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_7b60_a439_dcfe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5aa1_e345_be88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5aa1_e345_be88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_5aa1_e345_be88/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature Summer (Jul-Sep) 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_5aa1_e345_be88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_5aa1_e345_be88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_5aa1_e345_be88/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_5aa1_e345_be88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_5aa1_e345_be88&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_5aa1_e345_be88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_293e_c3a7_aba9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_293e_c3a7_aba9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_293e_c3a7_aba9/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_293e_c3a7_aba9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_293e_c3a7_aba9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_293e_c3a7_aba9/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_293e_c3a7_aba9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_293e_c3a7_aba9&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_293e_c3a7_aba9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3007_1605_1962", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3007_1605_1962.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_3007_1605_1962/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_3007_1605_1962_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_3007_1605_1962_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_3007_1605_1962/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_3007_1605_1962.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_3007_1605_1962&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_3007_1605_1962"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4ac5_3a32_e8e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4ac5_3a32_e8e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_4ac5_3a32_e8e5/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature November 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_4ac5_3a32_e8e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_4ac5_3a32_e8e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_4ac5_3a32_e8e5/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_4ac5_3a32_e8e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_4ac5_3a32_e8e5&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_4ac5_3a32_e8e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0e93_d946_7a54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0e93_d946_7a54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_0e93_d946_7a54/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_0e93_d946_7a54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_0e93_d946_7a54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_0e93_d946_7a54/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_0e93_d946_7a54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_0e93_d946_7a54&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_0e93_d946_7a54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6b6f_24ef_6c56", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6b6f_24ef_6c56.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6b6f_24ef_6c56/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6b6f_24ef_6c56_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6b6f_24ef_6c56_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6b6f_24ef_6c56/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6b6f_24ef_6c56.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6b6f_24ef_6c56&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_6b6f_24ef_6c56"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_06ee_5ef7_2d38", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_06ee_5ef7_2d38.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_06ee_5ef7_2d38/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature Annual 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_06ee_5ef7_2d38_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_06ee_5ef7_2d38_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_06ee_5ef7_2d38/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_06ee_5ef7_2d38.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_06ee_5ef7_2d38&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_06ee_5ef7_2d38"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_38fa_57e1_1a18", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_38fa_57e1_1a18.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_38fa_57e1_1a18/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_38fa_57e1_1a18_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_38fa_57e1_1a18_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_38fa_57e1_1a18/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_38fa_57e1_1a18.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_38fa_57e1_1a18&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_38fa_57e1_1a18"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_df13_a0c1_f716", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_df13_a0c1_f716.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_df13_a0c1_f716/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_df13_a0c1_f716_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_df13_a0c1_f716_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_df13_a0c1_f716/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_df13_a0c1_f716.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_df13_a0c1_f716&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_df13_a0c1_f716"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cccf_c109_612f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cccf_c109_612f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_cccf_c109_612f/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_cccf_c109_612f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_cccf_c109_612f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_cccf_c109_612f/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_cccf_c109_612f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_cccf_c109_612f&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_cccf_c109_612f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7351_63e8_14f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7351_63e8_14f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7351_63e8_14f6/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7351_63e8_14f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7351_63e8_14f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7351_63e8_14f6/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7351_63e8_14f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7351_63e8_14f6&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_7351_63e8_14f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b9f2_8a6d_eaa7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b9f2_8a6d_eaa7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b9f2_8a6d_eaa7/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b9f2_8a6d_eaa7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b9f2_8a6d_eaa7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b9f2_8a6d_eaa7/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b9f2_8a6d_eaa7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b9f2_8a6d_eaa7&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_b9f2_8a6d_eaa7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2dfc_5215_06b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2dfc_5215_06b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_2dfc_5215_06b7/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_2dfc_5215_06b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_2dfc_5215_06b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_2dfc_5215_06b7/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_2dfc_5215_06b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_2dfc_5215_06b7&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_2dfc_5215_06b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e7bb_a1f5_fbbe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e7bb_a1f5_fbbe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e7bb_a1f5_fbbe/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e7bb_a1f5_fbbe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e7bb_a1f5_fbbe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e7bb_a1f5_fbbe/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e7bb_a1f5_fbbe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e7bb_a1f5_fbbe&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_e7bb_a1f5_fbbe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ca51_7345_079c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ca51_7345_079c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_ca51_7345_079c/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_ca51_7345_079c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_ca51_7345_079c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_ca51_7345_079c/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_ca51_7345_079c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_ca51_7345_079c&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_ca51_7345_079c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_fa05_b9af_6087", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_fa05_b9af_6087.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_fa05_b9af_6087/request", "", "public", "Arctic Seas Regional Climatology : salinity Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_fa05_b9af_6087_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_fa05_b9af_6087_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_fa05_b9af_6087/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_fa05_b9af_6087.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_fa05_b9af_6087&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_fa05_b9af_6087"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_25bf_d46b_b742", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_25bf_d46b_b742.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_25bf_d46b_b742/request", "", "public", "Arctic Seas Regional Climatology : salinity Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_25bf_d46b_b742_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_25bf_d46b_b742_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_25bf_d46b_b742/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_25bf_d46b_b742.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_25bf_d46b_b742&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_25bf_d46b_b742"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_342f_3d14_5607", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_342f_3d14_5607.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_342f_3d14_5607/request", "", "public", "Arctic Seas Regional Climatology : salinity November 0.25 degree (salinity monthly quarter), 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_342f_3d14_5607_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_342f_3d14_5607_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_342f_3d14_5607/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_342f_3d14_5607.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_342f_3d14_5607&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_342f_3d14_5607"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6ac1_daeb_4a22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6ac1_daeb_4a22.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6ac1_daeb_4a22/request", "", "public", "Arctic Seas Regional Climatology : salinity November 1.00 degree (salinity monthly one), 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6ac1_daeb_4a22_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6ac1_daeb_4a22_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6ac1_daeb_4a22/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6ac1_daeb_4a22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6ac1_daeb_4a22&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_6ac1_daeb_4a22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0f87_43a1_50d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0f87_43a1_50d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_0f87_43a1_50d3/request", "", "public", "Arctic Seas Regional Climatology : salinity Annual 0.25 degree (salinity annual quarter), 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_0f87_43a1_50d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_0f87_43a1_50d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_0f87_43a1_50d3/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_0f87_43a1_50d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_0f87_43a1_50d3&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_0f87_43a1_50d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f782_bc50_b9da", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f782_bc50_b9da.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_f782_bc50_b9da/request", "", "public", "Arctic Seas Regional Climatology : salinity Annual 1.00 degree (salinity annual one), 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_f782_bc50_b9da_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_f782_bc50_b9da_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_f782_bc50_b9da/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_f782_bc50_b9da.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_f782_bc50_b9da&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_f782_bc50_b9da"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6a44_2cb9_686f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6a44_2cb9_686f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6a44_2cb9_686f/request", "", "public", "AVHRR Pathfinder Version 5.2 L3-Collated (L3C) SST (pathFinderV5.2 night 2012 020614)", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\nsst_dtime (time difference from reference time, second)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (Deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nquality_level (SST measurement quality)\npathfinder_quality_level (Pathfinder SST quality flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6a44_2cb9_686f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6a44_2cb9_686f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6a44_2cb9_686f/index.json", "https://pathfinder.nodc.noaa.gov/ISO-AVHRR_Pathfinder-NODC-L3C-v5.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6a44_2cb9_686f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6a44_2cb9_686f&showErrors=false&email=", "NOAA NODC", "noaa_nodc_6a44_2cb9_686f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_78e2_de17_8305", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_78e2_de17_8305.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_78e2_de17_8305/request", "", "public", "AVHRR Pathfinder Version 5.2 L3-Collated (L3C) SST (pathFinderV5.2 night), 1981-2011", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\nsst_dtime (time difference from reference time, second)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (Deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nquality_level (SST measurement quality)\npathfinder_quality_level (Pathfinder SST quality flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_78e2_de17_8305_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_78e2_de17_8305_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_78e2_de17_8305/index.json", "https://pathfinder.nodc.noaa.gov/ISO-AVHRR_Pathfinder-NODC-L3C-v5.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_78e2_de17_8305.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_78e2_de17_8305&showErrors=false&email=", "NOAA NODC", "noaa_nodc_78e2_de17_8305"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1847_812f_2105", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1847_812f_2105.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_1847_812f_2105/request", "", "public", "AVHRR Pathfinder Version 5.2 L3-Collated (L3C) SST (pathFinderV5.2 day 2012 020614)", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\nsst_dtime (time difference from reference time, second)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (Deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nquality_level (SST measurement quality)\npathfinder_quality_level (Pathfinder SST quality flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_1847_812f_2105_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_1847_812f_2105_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_1847_812f_2105/index.json", "https://pathfinder.nodc.noaa.gov/ISO-AVHRR_Pathfinder-NODC-L3C-v5.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_1847_812f_2105.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_1847_812f_2105&showErrors=false&email=", "NOAA NODC", "noaa_nodc_1847_812f_2105"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7071_edc2_c76a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7071_edc2_c76a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7071_edc2_c76a/request", "", "public", "AVHRR Pathfinder Version 5.2 L3-Collated (L3C) SST (pathFinderV5.2 day), 1981-2011", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\nsst_dtime (time difference from reference time, second)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (Deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nquality_level (SST measurement quality)\npathfinder_quality_level (Pathfinder SST quality flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7071_edc2_c76a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7071_edc2_c76a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7071_edc2_c76a/index.json", "https://pathfinder.nodc.noaa.gov/ISO-AVHRR_Pathfinder-NODC-L3C-v5.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7071_edc2_c76a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7071_edc2_c76a&showErrors=false&email=", "NOAA NODC", "noaa_nodc_7071_edc2_c76a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5e47_99aa_f1e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5e47_99aa_f1e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_5e47_99aa_f1e6/request", "", "public", "Top Dataset, node, avhrrSST resFull, 0.043945312\u00b0, 1981-2009", "This data field contains Daytime Sea Surface Temperature (SST) data from Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5. The data are at 4 km-per-pixel resolution and have been averaged monthly after masking out any data with a quality flag of less than 4. Data in this file at this quality level include, for daytime: weekly SST values, number of pixels, and standard deviation. Data are stored as unsigned integers: to convert SST fields to degrees C, apply a scale factor of 0.075 and an offset of -3.0. To convert standard deviation and count fields to degrees C and number of pixels, respectively, apply a scale factor of 0.01.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST4_daynitavg (This data field contains Day-Night Average Sea Surface Temperature (SST) data from AVHRR Pathfinder Version 5. The data are at 4 km-per-pixel resolution and have been averaged monthly after masking out any data with a quality flag of less than 4. Data in this file at this quality level include, for day/night average: weekly SST values, number of pixels, and standard deviation. Data are stored as unsigned integers: to convert SST fields to degrees C, apply a scale factor of 0.075 and an offset of -3.0. To convert standard deviation and count fields to degrees C and number of pixels, respectively, apply a scale factor of 0.01., degree_C)\nSST7_daynitavg (This data field contains Day-Night Average Sea Surface Temperature (SST) data from AVHRR Pathfinder Version 5. The data are at 4 km-per-pixel resolution and have been averaged monthly after masking out any data with a quality flag of less than 7. Data in this file at this quality level include, for day/night average: weekly SST values, number of pixels, and standard deviation. Data are stored as unsigned integers: to convert SST fields to degrees C, apply a scale factor of 0.075 and an offset of -3.0. To convert standard deviation and count fields to degrees C and number of pixels, respectively, apply a scale factor of 0.01., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_5e47_99aa_f1e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_5e47_99aa_f1e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_5e47_99aa_f1e6/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/node/avhrrSST_resFull.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_5e47_99aa_f1e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_5e47_99aa_f1e6&showErrors=false&email=", "USDOC/NOAA/NESDIS/NODC", "noaa_nodc_5e47_99aa_f1e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_58e6_0040_f4f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_58e6_0040_f4f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_58e6_0040_f4f0/request", "", "public", "Top Dataset, node, avhrrSST res1deg, 1.0\u00b0, 1981-2009", "This data field contains Daytime Sea Surface Temperature (SST) data from Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5. The data have been averaged to a one-degree grid in space and monthly in time, after masking out any data with a quality flag of less than 4. All data has the V5.0 land mask applied. Data in this file at this quality level include, for daytime: monthly SST values, number of pixels, and standard deviation.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST4_daynitavg (This data field contains Day-Night Average Sea Surface Temperature (SST) data from AVHRR Pathfinder Version 5. The data have been averaged to a one-degree grid in space and monthly in time, after masking out any data with a quality flag of less than 4. All data has the V5.0 land mask applied. Data in this file at this quality level include, for day/night average: monthly SST values, number of pixels, and standard deviation., degree_C)\nSST7_daynitavg (This data field contains Day-Night Average Sea Surface Temperature (SST) data from AVHRR Pathfinder Version 5. The data have been averaged to a one-degree grid in space and monthly in time, after masking out any data with a quality flag of less than 7. All data has the V5.0 land mask applied. Data in this file at this quality level include, for day/night average: monthly SST values, number of pixels, and standard deviation., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_58e6_0040_f4f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_58e6_0040_f4f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_58e6_0040_f4f0/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/node/avhrrSST_res1deg.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_58e6_0040_f4f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_58e6_0040_f4f0&showErrors=false&email=", "USDOC/NOAA/NESDIS/NODC", "noaa_nodc_58e6_0040_f4f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_16be_ebb0_f17b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_16be_ebb0_f17b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_16be_ebb0_f17b/request", "", "public", "Top Dataset, hydromet data, monthly, 0.0625\u00b0, 1950-2013", "Top Dataset, hydromet data, monthly\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPrec (Precipitation, mm)\nTmax (Daily maximum temperature, degree_C)\nTmin (Daily minimum temperature, degree_C)\nwind (mean daily wind speed, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_16be_ebb0_f17b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_16be_ebb0_f17b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_16be_ebb0_f17b/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/hydromet_data/monthly.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_16be_ebb0_f17b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_16be_ebb0_f17b&showErrors=false&email=", "NOAA NODC", "noaa_nodc_16be_ebb0_f17b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a774_0eb4_6f88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a774_0eb4_6f88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_a774_0eb4_6f88/request", "", "public", "Top Dataset, hydromet data, daily, 0.0625\u00b0, 1950-2013", "Top Dataset, hydromet data, daily\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPrec (Precipitation, mm)\nTmax (Daily maximum temperature, degree_C)\nTmin (Daily minimum temperature, degree_C)\nwind (mean daily wind speed, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_a774_0eb4_6f88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_a774_0eb4_6f88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_a774_0eb4_6f88/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/hydromet_data/daily.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_a774_0eb4_6f88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_a774_0eb4_6f88&showErrors=false&email=", "NOAA NODC", "noaa_nodc_a774_0eb4_6f88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_da4e_3fc9_f107", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_da4e_3fc9_f107.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_da4e_3fc9_f107/request", "", "public", "Archived Suite of NOAA Coral Reef Watch Operational Twice-Weekly Near-Real-Time Global 50km Satellite Coral Bleaching Monitoring Products [time][latitude][longitude], 0.5\u00b0, 2000-2018", "These are Coral Reef Watch near-real-time satellite coral bleaching monitoring products produced twice a week. CoastWatch Utilities v3.2.1 or higher (https://coastwatch.noaa.gov/cw_software.html) can be used for viewing, analyzing, and plotting the data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nCRW_SST (Twice-weekly global 50km satellite nighttime sea surface temperature, degree_C)\nCRW_SSTANOMALY (Twice-weekly global 50km satellite nighttime sea surface temperature anomaly, degree_C)\nCRW_HOTSPOT (Twice-weekly global 50km satellite coral bleaching HotSpot, degree_C)\nCRW_DHW (Twice-weekly global 50km satellite coral bleaching Degree Heating Weeks, degree Celsius-weeks)\nsurface_flag (Pixel characteristics flag array)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_da4e_3fc9_f107_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_da4e_3fc9_f107_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_da4e_3fc9_f107/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/crw50km_test/crw_allinone_20180109.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_da4e_3fc9_f107.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_da4e_3fc9_f107&showErrors=false&email=", "U.S. DOC/NOAA Coral Reef Watch", "noaa_nodc_da4e_3fc9_f107"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_3392_87d7_dedc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_3392_87d7_dedc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_3392_87d7_dedc/request", "", "public", "Top Dataset, monthly, NOAAGlobalTemp monthly, 5.0\u00b0, 1880-present", "The NOAA Global Surface Temperature Dataset (NOAAGlobalTemp) (Top Dataset, monthly, NOAAGlobalTemp monthly)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nanom (Global Temperature Anomalies, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_3392_87d7_dedc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_3392_87d7_dedc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_3392_87d7_dedc/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/gcag/monthly/NOAAGlobalTemp_monthly.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_3392_87d7_dedc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_3392_87d7_dedc&showErrors=false&email=", "NOAAs National Centers for Environmental Information", "noaa_ncei_3392_87d7_dedc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_a29f_599c_0df2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_a29f_599c_0df2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_a29f_599c_0df2/request", "", "public", "Top Dataset, yearly, NOAAGlobalTemp annual, 5.0\u00b0, 1880-2016", "The NOAA Global Surface Temperature Dataset (NOAAGlobalTemp) (Top Dataset, yearly, NOAAGlobalTemp annual)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nanom (Global Temperature Anomalies, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_a29f_599c_0df2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_a29f_599c_0df2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_a29f_599c_0df2/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/gcag/yearly/NOAAGlobalTemp_annual.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_a29f_599c_0df2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_a29f_599c_0df2&showErrors=false&email=", "NOAAs National Centers for Environmental Information", "noaa_ncei_a29f_599c_0df2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_e7fc_68cb_0584", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_e7fc_68cb_0584.graph", "", "", "public", "OISST Daily AVHRR-only Feature Collection, OISST Daily AVHRR-only Feature Collection, Best Time Series [time], 1981-present", "National Centers for Environmental Information (NCEI) Daily-Optimum Interpolation Sea Surface Temperature (OISST)-V2 based mainly on Advanced Very High Resolution Radiometer (AVHRR), Final. Best time series, taking the data from the most recent run available. Aggregation of OISST files, not including preliminary files\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_e7fc_68cb_0584/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/ncFC/fc-oisst-daily-avhrr-only-dly/OISST_Daily_AVHRR-only_Feature_Collection_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_e7fc_68cb_0584.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_e7fc_68cb_0584&showErrors=false&email=", "NOAA", "noaa_ncei_e7fc_68cb_0584"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_9bc6_2d0d_9403", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_9bc6_2d0d_9403.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_9bc6_2d0d_9403/request", "", "public", "OISST Daily AVHRR-only Feature Collection, OISST Daily AVHRR-only Feature Collection, Best Time Series [time][zlev][lat][lon], 0.25\u00b0, 1981-present", "National Centers for Environmental Information (NCEI) Daily-Optimum Interpolation Sea Surface Temperature (OISST)-V2 based mainly on Advanced Very High Resolution Radiometer (AVHRR), Final. Best time series, taking the data from the most recent run available. Aggregation of OISST files, not including preliminary files\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nice (Sea ice concentration, percent)\nerr (Estimated error standard deviation of analysed_sst, degree_C)\nanom (Daily sea surface temperature anomalies, degree_C)\nsst (Daily sea surface temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_9bc6_2d0d_9403_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_9bc6_2d0d_9403_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_9bc6_2d0d_9403/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/ncFC/fc-oisst-daily-avhrr-only-dly/OISST_Daily_AVHRR-only_Feature_Collection_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_9bc6_2d0d_9403.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_9bc6_2d0d_9403&showErrors=false&email=", "NOAA", "noaa_ncei_9bc6_2d0d_9403"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_f6e2_8429_f317", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_f6e2_8429_f317.graph", "", "", "public", "OISST Daily AVHRR AMSR Feature Collection, OISST Daily AVHRR AMSR Feature Collection, Best Time Series [time], 2002-2011", "Daily-Optimum Interpolation (OI)-V2, Interim, Data (Ship, Buoy, Advanced Microwave Scanning Radiometer (AMSR), Advanced Very High Resolution Radiometer (AVHRR): NOAA19, METOP, National Centers for Environmental Prediction (NCEP)-ice). Best time series, taking the data from the most recent run available. Aggregation filename pattern: amsr-avhrr-v2.*.nc\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_f6e2_8429_f317/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/ncFC/fc-oisst-daily-avhrr-amsr-dly/OISST_Daily_AVHRR_AMSR_Feature_Collection_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_f6e2_8429_f317.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_f6e2_8429_f317&showErrors=false&email=", "NOAA", "noaa_ncei_f6e2_8429_f317"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_47c6_fd90_627c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_47c6_fd90_627c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_47c6_fd90_627c/request", "", "public", "OISST Daily AVHRR AMSR Feature Collection, OISST Daily AVHRR AMSR Feature Collection, Best Time Series [time][zlev][lat][lon], 0.25\u00b0, 2002-2011", "Daily-Optimum Interpolation (OI)-V2, Interim, Data (Ship, Buoy, Advanced Microwave Scanning Radiometer (AMSR), Advanced Very High Resolution Radiometer (AVHRR): NOAA19, METOP, National Centers for Environmental Prediction (NCEP)-ice). Best time series, taking the data from the most recent run available. Aggregation filename pattern: amsr-avhrr-v2.*.nc\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][zlev][latitude][longitude]):\nsst (Daily sea surface temperature, degree_C)\nanom (Daily sea surface temperature anomalies, degree_C)\nerr (Estimated error standard deviation of analysed_sst, degree_C)\nice (Sea ice concentration, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_47c6_fd90_627c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_47c6_fd90_627c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_47c6_fd90_627c/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/ncFC/fc-oisst-daily-avhrr-amsr-dly/OISST_Daily_AVHRR_AMSR_Feature_Collection_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_47c6_fd90_627c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_47c6_fd90_627c&showErrors=false&email=", "NOAA", "noaa_ncei_47c6_fd90_627c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_2689_8c24_7dcb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_2689_8c24_7dcb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/northerngulfinstitute_edac_dap3_2689_8c24_7dcb/request", "", "public", "NAVO NCOM: Fukushima Regional Forecast (Fukushima best) [time][lat][lon], 2011", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: Fukushima Regional Forecast. Best time series, taking the data from the most recent run available. Fukushima Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_temp_flux (model surface temperature flux, degC-m/s)\nsurf_salt_flux (model surface salinity flux, psu-m/s)\nsurf_solar_flux (model surface shortwave flux, degC-m/s)\nsurf_roughness (model surface roughness, m)\nsurf_wnd_stress_gridx (Grid x Surface Wind Stress, newton/meter2)\nsurf_wnd_stress_gridy (Grid y Surface Wind Stress, newton/meter2)\nsurf_atm_press (Surface Atmospherics Pressure, Pascal)\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/northerngulfinstitute_edac_dap3_2689_8c24_7dcb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/northerngulfinstitute_edac_dap3_2689_8c24_7dcb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/northerngulfinstitute_edac_dap3_2689_8c24_7dcb/index.json", "http://edac-dap3.northerngulfinstitute.org/thredds/dodsC/ncom_fukushima_agg/Fukushima_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/northerngulfinstitute_edac_dap3_2689_8c24_7dcb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=northerngulfinstitute_edac_dap3_2689_8c24_7dcb&showErrors=false&email=", "Naval Research Laboratory", "northerngulfinstitute_edac_dap3_2689_8c24_7dcb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_0a94_4f88_8950", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_0a94_4f88_8950.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/northerngulfinstitute_edac_dap3_0a94_4f88_8950/request", "", "public", "NAVO NCOM: Fukushima Regional Forecast (Fukushima best) [time][depth][lat][lon], 2011", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: Fukushima Regional Forecast. Best time series, taking the data from the most recent run available. Fukushima Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/northerngulfinstitute_edac_dap3_0a94_4f88_8950_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/northerngulfinstitute_edac_dap3_0a94_4f88_8950_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/northerngulfinstitute_edac_dap3_0a94_4f88_8950/index.json", "http://edac-dap3.northerngulfinstitute.org/thredds/dodsC/ncom_fukushima_agg/Fukushima_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/northerngulfinstitute_edac_dap3_0a94_4f88_8950.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=northerngulfinstitute_edac_dap3_0a94_4f88_8950&showErrors=false&email=", "Naval Research Laboratory", "northerngulfinstitute_edac_dap3_0a94_4f88_8950"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3/request", "", "public", "NAVO NCOM: Sendai Regional Forecast (Sendai, Sendai, Best Time Series) [time][depth][lat][lon], 2011", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: Sendai Regional Forecast. Best time series, taking the data from the most recent run available. Sendai Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalinity (PSU)\nwater_temp (Water Temperature, degree_C)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3/index.json", "http://edac-dap3.northerngulfinstitute.org/thredds/dodsC/ncom_sendai_agg/Sendai_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=northerngulfinstitute_edac_dap3_5b80_cc18_d8b3&showErrors=false&email=", "Naval Research Laboratory", "northerngulfinstitute_edac_dap3_5b80_cc18_d8b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afb3_9852_69f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afb3_9852_69f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_afb3_9852_69f9/request", "", "public", "Top Dataset, monolevel, air.sig995.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_afb3_9852_69f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_afb3_9852_69f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_afb3_9852_69f9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_afb3_9852_69f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_afb3_9852_69f9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_afb3_9852_69f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7da1_51a7_5b2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7da1_51a7_5b2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7da1_51a7_5b2a/request", "", "public", "Top Dataset, monolevel, air.sig995.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7da1_51a7_5b2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7da1_51a7_5b2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7da1_51a7_5b2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7da1_51a7_5b2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7da1_51a7_5b2a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7da1_51a7_5b2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_160d_65f8_e93e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_160d_65f8_e93e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_160d_65f8_e93e/request", "", "public", "Top Dataset, monolevel, air.tropo.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_160d_65f8_e93e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_160d_65f8_e93e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_160d_65f8_e93e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_160d_65f8_e93e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_160d_65f8_e93e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_160d_65f8_e93e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebf2_ccf6_8919", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebf2_ccf6_8919.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ebf2_ccf6_8919/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, air.tropo.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ebf2_ccf6_8919_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ebf2_ccf6_8919_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ebf2_ccf6_8919/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ebf2_ccf6_8919.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ebf2_ccf6_8919&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ebf2_ccf6_8919"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dd4_13b1_f3a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dd4_13b1_f3a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5dd4_13b1_f3a6/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean 6-hourly Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5dd4_13b1_f3a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5dd4_13b1_f3a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5dd4_13b1_f3a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5dd4_13b1_f3a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5dd4_13b1_f3a6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5dd4_13b1_f3a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f89_dcbc_79f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f89_dcbc_79f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f89_dcbc_79f5/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean 6-hourly Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f89_dcbc_79f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f89_dcbc_79f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f89_dcbc_79f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f89_dcbc_79f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f89_dcbc_79f5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7f89_dcbc_79f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad47_3fd6_51cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad47_3fd6_51cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ad47_3fd6_51cb/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ad47_3fd6_51cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ad47_3fd6_51cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ad47_3fd6_51cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ad47_3fd6_51cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ad47_3fd6_51cb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ad47_3fd6_51cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_576d_3042_439a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_576d_3042_439a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_576d_3042_439a/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_576d_3042_439a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_576d_3042_439a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_576d_3042_439a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_576d_3042_439a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_576d_3042_439a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_576d_3042_439a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_36aa_2320_b507", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_36aa_2320_b507.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_36aa_2320_b507/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_36aa_2320_b507_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_36aa_2320_b507_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_36aa_2320_b507/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_36aa_2320_b507.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_36aa_2320_b507&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_36aa_2320_b507"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21ec_147d_3622", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21ec_147d_3622.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_21ec_147d_3622/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_21ec_147d_3622_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_21ec_147d_3622_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_21ec_147d_3622/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_21ec_147d_3622.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_21ec_147d_3622&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_21ec_147d_3622"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_005e_be08_48b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_005e_be08_48b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_005e_be08_48b5/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean 6-hourly Potential Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_005e_be08_48b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_005e_be08_48b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_005e_be08_48b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_005e_be08_48b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_005e_be08_48b5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_005e_be08_48b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba93_8c68_0a99", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba93_8c68_0a99.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ba93_8c68_0a99/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean 6-hourly Potential Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ba93_8c68_0a99_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ba93_8c68_0a99_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ba93_8c68_0a99/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ba93_8c68_0a99.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ba93_8c68_0a99&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ba93_8c68_0a99"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db25_18e4_5a19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db25_18e4_5a19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db25_18e4_5a19/request", "", "public", "Top Dataset, pressure, air.4Xday.1981-2010.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db25_18e4_5a19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db25_18e4_5a19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db25_18e4_5a19/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db25_18e4_5a19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db25_18e4_5a19&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_db25_18e4_5a19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae10_1997_eb93", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae10_1997_eb93.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae10_1997_eb93/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, air.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae10_1997_eb93_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae10_1997_eb93_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae10_1997_eb93/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae10_1997_eb93.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae10_1997_eb93&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ae10_1997_eb93"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3396_b24d_adc1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3396_b24d_adc1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3396_b24d_adc1/request", "", "public", "Top Dataset, pressure sprd, air.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3396_b24d_adc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3396_b24d_adc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3396_b24d_adc1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3396_b24d_adc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3396_b24d_adc1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3396_b24d_adc1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e99a_df8f_5599", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e99a_df8f_5599.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e99a_df8f_5599/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, air.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e99a_df8f_5599_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e99a_df8f_5599_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e99a_df8f_5599/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e99a_df8f_5599.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e99a_df8f_5599&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e99a_df8f_5599"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65f7_7e17_5391", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65f7_7e17_5391.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_65f7_7e17_5391/request", "", "public", "Top Dataset, monolevel, air.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_65f7_7e17_5391_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_65f7_7e17_5391_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_65f7_7e17_5391/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_65f7_7e17_5391.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_65f7_7e17_5391&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_65f7_7e17_5391"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae8b_5a96_5ecd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae8b_5a96_5ecd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae8b_5a96_5ecd/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae8b_5a96_5ecd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae8b_5a96_5ecd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae8b_5a96_5ecd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae8b_5a96_5ecd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae8b_5a96_5ecd&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ae8b_5a96_5ecd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_699e_a306_3fb6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_699e_a306_3fb6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_699e_a306_3fb6/request", "", "public", "Top Dataset, monolevel, air.sfc.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature at Surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_699e_a306_3fb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_699e_a306_3fb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_699e_a306_3fb6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_699e_a306_3fb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_699e_a306_3fb6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_699e_a306_3fb6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50c5_cd46_75ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50c5_cd46_75ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_50c5_cd46_75ab/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature at Surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_50c5_cd46_75ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_50c5_cd46_75ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50c5_cd46_75ab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50c5_cd46_75ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50c5_cd46_75ab&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_50c5_cd46_75ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_68ae_403a_0ec4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_68ae_403a_0ec4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_68ae_403a_0ec4/request", "", "public", "Top Dataset, monolevel, tmax.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (3-hourly Long Term Mean Maximum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_68ae_403a_0ec4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_68ae_403a_0ec4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_68ae_403a_0ec4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_68ae_403a_0ec4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_68ae_403a_0ec4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_68ae_403a_0ec4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffa6_5de8_3896", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffa6_5de8_3896.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ffa6_5de8_3896/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (3-hourly Long Term Mean Maximum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ffa6_5de8_3896_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ffa6_5de8_3896_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ffa6_5de8_3896/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ffa6_5de8_3896.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ffa6_5de8_3896&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ffa6_5de8_3896"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5eac_5546_11df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5eac_5546_11df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5eac_5546_11df/request", "", "public", "Top Dataset, monolevel, tmin.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (3-hourly Long Term Mean Minimum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5eac_5546_11df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5eac_5546_11df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5eac_5546_11df/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5eac_5546_11df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5eac_5546_11df&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5eac_5546_11df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51ca_cc5a_dd4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51ca_cc5a_dd4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_51ca_cc5a_dd4d/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (3-hourly Long Term Mean Minimum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_51ca_cc5a_dd4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_51ca_cc5a_dd4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_51ca_cc5a_dd4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_51ca_cc5a_dd4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_51ca_cc5a_dd4d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_51ca_cc5a_dd4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fdd_8f6d_a5dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fdd_8f6d_a5dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8fdd_8f6d_a5dc/request", "", "public", "Top Dataset, subsurface, tsoil.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (3-hourly Long Term Mean Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8fdd_8f6d_a5dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8fdd_8f6d_a5dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8fdd_8f6d_a5dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8fdd_8f6d_a5dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8fdd_8f6d_a5dc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8fdd_8f6d_a5dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f617_8124_8b6b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f617_8124_8b6b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f617_8124_8b6b/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (3-hourly Long Term Mean Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f617_8124_8b6b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f617_8124_8b6b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f617_8124_8b6b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f617_8124_8b6b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f617_8124_8b6b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f617_8124_8b6b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fa5_1777_e5ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fa5_1777_e5ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5fa5_1777_e5ef/request", "", "public", "Top Dataset, monolevel, air.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5fa5_1777_e5ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5fa5_1777_e5ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5fa5_1777_e5ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5fa5_1777_e5ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5fa5_1777_e5ef&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5fa5_1777_e5ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1604_365e_d8ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1604_365e_d8ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1604_365e_d8ff/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1604_365e_d8ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1604_365e_d8ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1604_365e_d8ff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1604_365e_d8ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1604_365e_d8ff&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1604_365e_d8ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_737c_a8ad_aabf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_737c_a8ad_aabf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_737c_a8ad_aabf/request", "", "public", "Top Dataset, monolevel, air.sfc.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature Spread at surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_737c_a8ad_aabf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_737c_a8ad_aabf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_737c_a8ad_aabf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_737c_a8ad_aabf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_737c_a8ad_aabf&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_737c_a8ad_aabf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_082b_1e27_a382", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_082b_1e27_a382.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_082b_1e27_a382/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature Spread at surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_082b_1e27_a382_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_082b_1e27_a382_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_082b_1e27_a382/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_082b_1e27_a382.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_082b_1e27_a382&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_082b_1e27_a382"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7325_ea94_1d4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7325_ea94_1d4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7325_ea94_1d4d/request", "", "public", "Top Dataset, monolevel, tmax.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (3-hourly Long Term Mean Maximum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7325_ea94_1d4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7325_ea94_1d4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7325_ea94_1d4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7325_ea94_1d4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7325_ea94_1d4d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7325_ea94_1d4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_942a_b65c_5ba8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_942a_b65c_5ba8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_942a_b65c_5ba8/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (3-hourly Long Term Mean Maximum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_942a_b65c_5ba8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_942a_b65c_5ba8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_942a_b65c_5ba8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_942a_b65c_5ba8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_942a_b65c_5ba8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_942a_b65c_5ba8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54ea_d4b5_1f67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54ea_d4b5_1f67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54ea_d4b5_1f67/request", "", "public", "Top Dataset, monolevel, tmin.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (3-hourly Long Term Mean Minimum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54ea_d4b5_1f67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54ea_d4b5_1f67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54ea_d4b5_1f67/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54ea_d4b5_1f67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54ea_d4b5_1f67&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_54ea_d4b5_1f67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6009_b2c2_2d30", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6009_b2c2_2d30.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6009_b2c2_2d30/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (3-hourly Long Term Mean Minimum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6009_b2c2_2d30_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6009_b2c2_2d30_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6009_b2c2_2d30/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6009_b2c2_2d30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6009_b2c2_2d30&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6009_b2c2_2d30"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b17d_add9_395f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b17d_add9_395f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b17d_add9_395f/request", "", "public", "Top Dataset, subsurface, tsoil.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (3-hourly Long Term Mean Soil Temperature Spread, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b17d_add9_395f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b17d_add9_395f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b17d_add9_395f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b17d_add9_395f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b17d_add9_395f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b17d_add9_395f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d169_ebfc_698e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d169_ebfc_698e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d169_ebfc_698e/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (3-hourly Long Term Mean Soil Temperature Spread, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d169_ebfc_698e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d169_ebfc_698e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d169_ebfc_698e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d169_ebfc_698e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d169_ebfc_698e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d169_ebfc_698e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e4d_102b_2f44", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e4d_102b_2f44.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e4d_102b_2f44/request", "", "public", "Top Dataset, monolevel, air.2m.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Daily Air Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e4d_102b_2f44_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e4d_102b_2f44_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e4d_102b_2f44/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e4d_102b_2f44.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e4d_102b_2f44&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9e4d_102b_2f44"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_476f_f1b1_006e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_476f_f1b1_006e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_476f_f1b1_006e/request", "", "public", "Top Dataset, monolevel, air.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_476f_f1b1_006e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_476f_f1b1_006e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_476f_f1b1_006e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_476f_f1b1_006e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_476f_f1b1_006e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_476f_f1b1_006e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6109_fa1d_bb2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6109_fa1d_bb2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6109_fa1d_bb2f/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6109_fa1d_bb2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6109_fa1d_bb2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6109_fa1d_bb2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6109_fa1d_bb2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6109_fa1d_bb2f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6109_fa1d_bb2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a73_8385_70bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a73_8385_70bc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9a73_8385_70bc/request", "", "public", "Top Dataset, monolevel, air.sfc.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at Surface, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9a73_8385_70bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9a73_8385_70bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9a73_8385_70bc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9a73_8385_70bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9a73_8385_70bc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9a73_8385_70bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_623b_2594_f923", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_623b_2594_f923.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_623b_2594_f923/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at Surface, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_623b_2594_f923_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_623b_2594_f923_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_623b_2594_f923/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_623b_2594_f923.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_623b_2594_f923&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_623b_2594_f923"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c419_43f8_5645", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c419_43f8_5645.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c419_43f8_5645/request", "", "public", "Top Dataset, monolevel, tmax.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Daily Long Term Mean Maximum Temperature at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c419_43f8_5645_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c419_43f8_5645_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c419_43f8_5645/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c419_43f8_5645.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c419_43f8_5645&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c419_43f8_5645"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c14e_621e_38c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c14e_621e_38c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c14e_621e_38c4/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Daily Long Term Mean Maximum Temperature at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c14e_621e_38c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c14e_621e_38c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c14e_621e_38c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c14e_621e_38c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c14e_621e_38c4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c14e_621e_38c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3fff_7b0d_a809", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3fff_7b0d_a809.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3fff_7b0d_a809/request", "", "public", "Top Dataset, monolevel, tmin.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Daily Long Term Mean Minimum Temperature at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3fff_7b0d_a809_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3fff_7b0d_a809_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3fff_7b0d_a809/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3fff_7b0d_a809.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3fff_7b0d_a809&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3fff_7b0d_a809"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eff7_5033_aa45", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eff7_5033_aa45.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eff7_5033_aa45/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Daily Long Term Mean Minimum Temperature at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eff7_5033_aa45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eff7_5033_aa45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eff7_5033_aa45/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eff7_5033_aa45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eff7_5033_aa45&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_eff7_5033_aa45"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d3e_9d34_dad5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d3e_9d34_dad5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5d3e_9d34_dad5/request", "", "public", "Top Dataset, subsurface, tsoil.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Daily Long Term Mean Soil Temperature, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5d3e_9d34_dad5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5d3e_9d34_dad5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5d3e_9d34_dad5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5d3e_9d34_dad5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5d3e_9d34_dad5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5d3e_9d34_dad5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7440_4b13_5150", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7440_4b13_5150.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7440_4b13_5150/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Daily Long Term Mean Soil Temperature, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7440_4b13_5150_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7440_4b13_5150_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7440_4b13_5150/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7440_4b13_5150.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7440_4b13_5150&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7440_4b13_5150"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b02_b32d_8712", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b02_b32d_8712.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b02_b32d_8712/request", "", "public", "Top Dataset, monolevel, air.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b02_b32d_8712_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b02_b32d_8712_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b02_b32d_8712/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b02_b32d_8712.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b02_b32d_8712&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6b02_b32d_8712"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c50a_57bb_d817", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c50a_57bb_d817.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c50a_57bb_d817/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c50a_57bb_d817_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c50a_57bb_d817_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c50a_57bb_d817/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c50a_57bb_d817.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c50a_57bb_d817&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c50a_57bb_d817"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_254f_0448_f8d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_254f_0448_f8d1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_254f_0448_f8d1/request", "", "public", "Top Dataset, monolevel, air.sfc.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at surface, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_254f_0448_f8d1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_254f_0448_f8d1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_254f_0448_f8d1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_254f_0448_f8d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_254f_0448_f8d1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_254f_0448_f8d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d436_46e1_897c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d436_46e1_897c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d436_46e1_897c/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at surface, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d436_46e1_897c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d436_46e1_897c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d436_46e1_897c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d436_46e1_897c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d436_46e1_897c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d436_46e1_897c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5d5_8f70_9eef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5d5_8f70_9eef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5d5_8f70_9eef/request", "", "public", "Top Dataset, monolevel, tmax.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Daily Long Term Mean Maximum Temperature Spread at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5d5_8f70_9eef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5d5_8f70_9eef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5d5_8f70_9eef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5d5_8f70_9eef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5d5_8f70_9eef&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a5d5_8f70_9eef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70b5_ece6_6000", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70b5_ece6_6000.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_70b5_ece6_6000/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Daily Long Term Mean Maximum Temperature Spread at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_70b5_ece6_6000_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_70b5_ece6_6000_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_70b5_ece6_6000/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_70b5_ece6_6000.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_70b5_ece6_6000&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_70b5_ece6_6000"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41c0_391c_80fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41c0_391c_80fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_41c0_391c_80fc/request", "", "public", "Top Dataset, monolevel, tmin.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Daily Long Term Mean Minimum Temperature Spread at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_41c0_391c_80fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_41c0_391c_80fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_41c0_391c_80fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_41c0_391c_80fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_41c0_391c_80fc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_41c0_391c_80fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0565_9195_7b28", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0565_9195_7b28.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0565_9195_7b28/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Daily Long Term Mean Minimum Temperature Spread at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0565_9195_7b28_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0565_9195_7b28_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0565_9195_7b28/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0565_9195_7b28.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0565_9195_7b28&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0565_9195_7b28"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_426e_854f_426b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_426e_854f_426b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_426e_854f_426b/request", "", "public", "Top Dataset, subsurface, tsoil.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Daily Long Term Mean Soil Temperature Spread, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_426e_854f_426b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_426e_854f_426b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_426e_854f_426b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_426e_854f_426b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_426e_854f_426b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_426e_854f_426b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eca7_5d38_51d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eca7_5d38_51d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eca7_5d38_51d7/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Daily Long Term Mean Soil Temperature Spread, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eca7_5d38_51d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eca7_5d38_51d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eca7_5d38_51d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eca7_5d38_51d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eca7_5d38_51d7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_eca7_5d38_51d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f5c_0239_c7cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f5c_0239_c7cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f5c_0239_c7cd/request", "", "public", "Top Dataset, monolevel, air.sig995.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Daily Air Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f5c_0239_c7cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f5c_0239_c7cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f5c_0239_c7cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f5c_0239_c7cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f5c_0239_c7cd&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0f5c_0239_c7cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbba_8a71_4812", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbba_8a71_4812.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fbba_8a71_4812/request", "", "public", "Top Dataset, monolevel, air.sig995.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fbba_8a71_4812_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fbba_8a71_4812_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fbba_8a71_4812/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fbba_8a71_4812.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fbba_8a71_4812&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fbba_8a71_4812"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4810_0f37_146d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4810_0f37_146d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4810_0f37_146d/request", "", "public", "Top Dataset, monolevel, air.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4810_0f37_146d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4810_0f37_146d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4810_0f37_146d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4810_0f37_146d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4810_0f37_146d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4810_0f37_146d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c67c_bac3_3523", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c67c_bac3_3523.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c67c_bac3_3523/request", "", "public", "Top Dataset, monolevel, air.tropo.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Daily Air Temperature at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c67c_bac3_3523_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c67c_bac3_3523_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c67c_bac3_3523/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c67c_bac3_3523.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c67c_bac3_3523&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c67c_bac3_3523"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e211_d7d5_b64b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e211_d7d5_b64b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e211_d7d5_b64b/request", "", "public", "Top Dataset, monolevel, air.tropo.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at Tropopause, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e211_d7d5_b64b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e211_d7d5_b64b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e211_d7d5_b64b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e211_d7d5_b64b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e211_d7d5_b64b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e211_d7d5_b64b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e228_90b5_4385", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e228_90b5_4385.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e228_90b5_4385/request", "", "public", "Top Dataset, monolevel, air.tropo.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at Tropopause, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e228_90b5_4385_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e228_90b5_4385_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e228_90b5_4385/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e228_90b5_4385.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e228_90b5_4385&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e228_90b5_4385"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b0c_0a81_dcbb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b0c_0a81_dcbb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8b0c_0a81_dcbb/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.day.1968-1996.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean Daily Potential Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8b0c_0a81_dcbb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8b0c_0a81_dcbb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8b0c_0a81_dcbb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8b0c_0a81_dcbb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8b0c_0a81_dcbb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8b0c_0a81_dcbb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3534_85a9_6208", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3534_85a9_6208.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3534_85a9_6208/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Daily Long Term Mean Potential Temperature at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3534_85a9_6208_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3534_85a9_6208_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3534_85a9_6208/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3534_85a9_6208.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3534_85a9_6208&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3534_85a9_6208"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_737f_e51a_31f8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_737f_e51a_31f8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_737f_e51a_31f8/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Daily Long Term Mean Potential Temperature at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_737f_e51a_31f8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_737f_e51a_31f8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_737f_e51a_31f8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_737f_e51a_31f8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_737f_e51a_31f8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_737f_e51a_31f8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_916e_b73a_f774", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_916e_b73a_f774.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_916e_b73a_f774/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_916e_b73a_f774_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_916e_b73a_f774_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_916e_b73a_f774/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_916e_b73a_f774.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_916e_b73a_f774&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_916e_b73a_f774"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f02_62f6_f9f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f02_62f6_f9f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3f02_62f6_f9f5/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3f02_62f6_f9f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3f02_62f6_f9f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3f02_62f6_f9f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3f02_62f6_f9f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3f02_62f6_f9f5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3f02_62f6_f9f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6970_5fde_63b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6970_5fde_63b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6970_5fde_63b3/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at Tropopause, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6970_5fde_63b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6970_5fde_63b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6970_5fde_63b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6970_5fde_63b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6970_5fde_63b3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6970_5fde_63b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ae6_104a_9df1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ae6_104a_9df1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ae6_104a_9df1/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at Tropopause, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ae6_104a_9df1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ae6_104a_9df1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ae6_104a_9df1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ae6_104a_9df1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ae6_104a_9df1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4ae6_104a_9df1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_484c_f434_9d60", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_484c_f434_9d60.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_484c_f434_9d60/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Daily Long Term Mean Potential Temperature Spread at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_484c_f434_9d60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_484c_f434_9d60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_484c_f434_9d60/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_484c_f434_9d60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_484c_f434_9d60&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_484c_f434_9d60"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19d0_9497_7160", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19d0_9497_7160.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_19d0_9497_7160/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Daily Long Term Mean Potential Temperature Spread at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_19d0_9497_7160_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_19d0_9497_7160_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_19d0_9497_7160/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_19d0_9497_7160.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_19d0_9497_7160&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_19d0_9497_7160"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8816_642f_ec8e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8816_642f_ec8e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8816_642f_ec8e/request", "", "public", "Top Dataset, pressure, air.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean Daily Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8816_642f_ec8e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8816_642f_ec8e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8816_642f_ec8e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8816_642f_ec8e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8816_642f_ec8e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8816_642f_ec8e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efaa_59b5_04fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efaa_59b5_04fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_efaa_59b5_04fa/request", "", "public", "Top Dataset, pressure, air.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_efaa_59b5_04fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_efaa_59b5_04fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_efaa_59b5_04fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_efaa_59b5_04fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_efaa_59b5_04fa&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_efaa_59b5_04fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85c5_d8ad_4756", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85c5_d8ad_4756.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_85c5_d8ad_4756/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, air.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_85c5_d8ad_4756_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_85c5_d8ad_4756_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85c5_d8ad_4756/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85c5_d8ad_4756.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85c5_d8ad_4756&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_85c5_d8ad_4756"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fcd_63e1_3fc4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fcd_63e1_3fc4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8fcd_63e1_3fc4/request", "", "public", "Top Dataset, pressure sprd, air.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8fcd_63e1_3fc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8fcd_63e1_3fc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8fcd_63e1_3fc4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8fcd_63e1_3fc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8fcd_63e1_3fc4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8fcd_63e1_3fc4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c7b_7e76_a051", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c7b_7e76_a051.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c7b_7e76_a051/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, air.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c7b_7e76_a051_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c7b_7e76_a051_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c7b_7e76_a051/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c7b_7e76_a051.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c7b_7e76_a051&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5c7b_7e76_a051"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d767_7276_fbba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d767_7276_fbba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d767_7276_fbba/request", "", "public", "Top Dataset, monolevel, air.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d767_7276_fbba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d767_7276_fbba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d767_7276_fbba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d767_7276_fbba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d767_7276_fbba&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d767_7276_fbba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5bf_64f4_aca4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5bf_64f4_aca4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5bf_64f4_aca4/request", "", "public", "Top Dataset, monolevel, air.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5bf_64f4_aca4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5bf_64f4_aca4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5bf_64f4_aca4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5bf_64f4_aca4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5bf_64f4_aca4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c5bf_64f4_aca4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae8a_3bb2_d412", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae8a_3bb2_d412.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae8a_3bb2_d412/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae8a_3bb2_d412_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae8a_3bb2_d412_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae8a_3bb2_d412/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae8a_3bb2_d412.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae8a_3bb2_d412&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ae8a_3bb2_d412"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a81_4d60_25ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a81_4d60_25ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a81_4d60_25ce/request", "", "public", "Top Dataset, monolevel, air.sfc.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at Surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a81_4d60_25ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a81_4d60_25ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a81_4d60_25ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a81_4d60_25ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a81_4d60_25ce&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3a81_4d60_25ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c942_595e_dcfb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c942_595e_dcfb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c942_595e_dcfb/request", "", "public", "Top Dataset, monolevel, air.sfc.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at Surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c942_595e_dcfb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c942_595e_dcfb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c942_595e_dcfb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c942_595e_dcfb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c942_595e_dcfb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c942_595e_dcfb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c2a_38ed_f5fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c2a_38ed_f5fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c2a_38ed_f5fa/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at Surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c2a_38ed_f5fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c2a_38ed_f5fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c2a_38ed_f5fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c2a_38ed_f5fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c2a_38ed_f5fa&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5c2a_38ed_f5fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e18b_7a08_4c81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e18b_7a08_4c81.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e18b_7a08_4c81/request", "", "public", "Top Dataset, monolevel, tmax.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Long Term Mean Monthly Maximum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e18b_7a08_4c81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e18b_7a08_4c81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e18b_7a08_4c81/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e18b_7a08_4c81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e18b_7a08_4c81&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e18b_7a08_4c81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92a7_6330_4810", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92a7_6330_4810.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_92a7_6330_4810/request", "", "public", "Top Dataset, monolevel, tmax.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Long Term Maximum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_92a7_6330_4810_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_92a7_6330_4810_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_92a7_6330_4810/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_92a7_6330_4810.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_92a7_6330_4810&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_92a7_6330_4810"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4211_7a90_8734", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4211_7a90_8734.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4211_7a90_8734/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Long Term Maximum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4211_7a90_8734_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4211_7a90_8734_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4211_7a90_8734/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4211_7a90_8734.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4211_7a90_8734&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4211_7a90_8734"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffd4_842e_1bbb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffd4_842e_1bbb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ffd4_842e_1bbb/request", "", "public", "Top Dataset, monolevel, tmin.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Long Term Mean Monthly Minimum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ffd4_842e_1bbb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ffd4_842e_1bbb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ffd4_842e_1bbb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ffd4_842e_1bbb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ffd4_842e_1bbb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ffd4_842e_1bbb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b92_37b8_c719", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b92_37b8_c719.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b92_37b8_c719/request", "", "public", "Top Dataset, monolevel, tmin.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Long Term Minimum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b92_37b8_c719_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b92_37b8_c719_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b92_37b8_c719/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b92_37b8_c719.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b92_37b8_c719&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7b92_37b8_c719"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d151_f808_34e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d151_f808_34e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d151_f808_34e5/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Long Term Minimum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d151_f808_34e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d151_f808_34e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d151_f808_34e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d151_f808_34e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d151_f808_34e5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d151_f808_34e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02d9_08d2_ada6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02d9_08d2_ada6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_02d9_08d2_ada6/request", "", "public", "Top Dataset, subsurface, tsoil.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Long Term Mean Monthly Soil Temperature, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_02d9_08d2_ada6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_02d9_08d2_ada6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_02d9_08d2_ada6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_02d9_08d2_ada6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_02d9_08d2_ada6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_02d9_08d2_ada6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8001_d023_7d7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8001_d023_7d7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8001_d023_7d7b/request", "", "public", "Top Dataset, subsurface, tsoil.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Long Term Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8001_d023_7d7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8001_d023_7d7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8001_d023_7d7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8001_d023_7d7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8001_d023_7d7b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8001_d023_7d7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56c6_a4bb_8ad3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56c6_a4bb_8ad3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_56c6_a4bb_8ad3/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Long Term Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_56c6_a4bb_8ad3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_56c6_a4bb_8ad3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_56c6_a4bb_8ad3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_56c6_a4bb_8ad3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_56c6_a4bb_8ad3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_56c6_a4bb_8ad3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c97_e965_b31f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c97_e965_b31f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4c97_e965_b31f/request", "", "public", "Top Dataset, monolevel, air.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4c97_e965_b31f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4c97_e965_b31f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c97_e965_b31f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c97_e965_b31f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c97_e965_b31f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4c97_e965_b31f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_702a_b5b4_c287", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_702a_b5b4_c287.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_702a_b5b4_c287/request", "", "public", "Top Dataset, monolevel, air.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_702a_b5b4_c287_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_702a_b5b4_c287_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_702a_b5b4_c287/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_702a_b5b4_c287.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_702a_b5b4_c287&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_702a_b5b4_c287"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ee2_f669_66bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ee2_f669_66bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ee2_f669_66bb/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ee2_f669_66bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ee2_f669_66bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ee2_f669_66bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ee2_f669_66bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ee2_f669_66bb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3ee2_f669_66bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1829_9429_0d07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1829_9429_0d07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1829_9429_0d07/request", "", "public", "Top Dataset, monolevel, air.sfc.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1829_9429_0d07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1829_9429_0d07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1829_9429_0d07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1829_9429_0d07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1829_9429_0d07&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1829_9429_0d07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dd0_4bcc_d4ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dd0_4bcc_d4ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5dd0_4bcc_d4ae/request", "", "public", "Top Dataset, monolevel, air.sfc.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5dd0_4bcc_d4ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5dd0_4bcc_d4ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5dd0_4bcc_d4ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5dd0_4bcc_d4ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5dd0_4bcc_d4ae&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5dd0_4bcc_d4ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f5c_be24_028d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f5c_be24_028d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6f5c_be24_028d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6f5c_be24_028d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6f5c_be24_028d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6f5c_be24_028d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6f5c_be24_028d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6f5c_be24_028d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6f5c_be24_028d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3873_0743_7423", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3873_0743_7423.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3873_0743_7423/request", "", "public", "Top Dataset, monolevel, tmax.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Long Term Mean Monthly Maximum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3873_0743_7423_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3873_0743_7423_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3873_0743_7423/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3873_0743_7423.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3873_0743_7423&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3873_0743_7423"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8d9_47d7_5144", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8d9_47d7_5144.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b8d9_47d7_5144/request", "", "public", "Top Dataset, monolevel, tmax.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Long Term Maximum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b8d9_47d7_5144_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b8d9_47d7_5144_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b8d9_47d7_5144/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b8d9_47d7_5144.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b8d9_47d7_5144&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b8d9_47d7_5144"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8988_e9b0_8d79", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8988_e9b0_8d79.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8988_e9b0_8d79/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Long Term Maximum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8988_e9b0_8d79_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8988_e9b0_8d79_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8988_e9b0_8d79/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8988_e9b0_8d79.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8988_e9b0_8d79&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8988_e9b0_8d79"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7028_6086_abd8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7028_6086_abd8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7028_6086_abd8/request", "", "public", "Top Dataset, monolevel, tmin.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Long Term Mean Monthly Minimum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7028_6086_abd8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7028_6086_abd8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7028_6086_abd8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7028_6086_abd8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7028_6086_abd8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7028_6086_abd8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb17_d629_b0a4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb17_d629_b0a4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb17_d629_b0a4/request", "", "public", "Top Dataset, monolevel, tmin.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Long Term Minimum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb17_d629_b0a4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb17_d629_b0a4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb17_d629_b0a4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb17_d629_b0a4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb17_d629_b0a4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_cb17_d629_b0a4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5b4_2629_cd6f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5b4_2629_cd6f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5b4_2629_cd6f/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Long Term Minimum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5b4_2629_cd6f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5b4_2629_cd6f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5b4_2629_cd6f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5b4_2629_cd6f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5b4_2629_cd6f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e5b4_2629_cd6f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c38_3b30_f407", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c38_3b30_f407.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c38_3b30_f407/request", "", "public", "Top Dataset, subsurface, tsoil.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Long Term Mean Monthly Soil Temperature Spread, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c38_3b30_f407_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c38_3b30_f407_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c38_3b30_f407/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c38_3b30_f407.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c38_3b30_f407&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0c38_3b30_f407"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5ef_11b6_df5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5ef_11b6_df5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5ef_11b6_df5f/request", "", "public", "Top Dataset, subsurface, tsoil.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Long Term Soil Temperature Spread, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5ef_11b6_df5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5ef_11b6_df5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5ef_11b6_df5f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5ef_11b6_df5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5ef_11b6_df5f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c5ef_11b6_df5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_905b_262c_f5c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_905b_262c_f5c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_905b_262c_f5c0/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Long Term Soil Temperature Spread, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_905b_262c_f5c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_905b_262c_f5c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_905b_262c_f5c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_905b_262c_f5c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_905b_262c_f5c0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_905b_262c_f5c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2c7_d003_f653", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2c7_d003_f653.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f2c7_d003_f653/request", "", "public", "Top Dataset, monolevel, air.sig995.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f2c7_d003_f653_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f2c7_d003_f653_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f2c7_d003_f653/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f2c7_d003_f653.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f2c7_d003_f653&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f2c7_d003_f653"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_006f_5127_e61f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_006f_5127_e61f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_006f_5127_e61f/request", "", "public", "Top Dataset, monolevel, air.sig995.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_006f_5127_e61f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_006f_5127_e61f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_006f_5127_e61f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_006f_5127_e61f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_006f_5127_e61f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_006f_5127_e61f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cb6_5e95_1e51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cb6_5e95_1e51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8cb6_5e95_1e51/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, air.sig995.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8cb6_5e95_1e51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8cb6_5e95_1e51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8cb6_5e95_1e51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8cb6_5e95_1e51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8cb6_5e95_1e51&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8cb6_5e95_1e51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c43c_e01f_b95d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c43c_e01f_b95d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c43c_e01f_b95d/request", "", "public", "Top Dataset, monolevel, air.tropo.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c43c_e01f_b95d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c43c_e01f_b95d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c43c_e01f_b95d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c43c_e01f_b95d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c43c_e01f_b95d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c43c_e01f_b95d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92cf_56a1_a6b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92cf_56a1_a6b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_92cf_56a1_a6b7/request", "", "public", "Top Dataset, monolevel, air.tropo.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_92cf_56a1_a6b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_92cf_56a1_a6b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_92cf_56a1_a6b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_92cf_56a1_a6b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_92cf_56a1_a6b7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_92cf_56a1_a6b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fadf_b89a_8c37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fadf_b89a_8c37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fadf_b89a_8c37/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, air.tropo.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fadf_b89a_8c37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fadf_b89a_8c37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fadf_b89a_8c37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fadf_b89a_8c37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fadf_b89a_8c37&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fadf_b89a_8c37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_553c_46e1_0e22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_553c_46e1_0e22.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_553c_46e1_0e22/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean Monthly Potential Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_553c_46e1_0e22_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_553c_46e1_0e22_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_553c_46e1_0e22/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_553c_46e1_0e22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_553c_46e1_0e22&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_553c_46e1_0e22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b456_f8d1_d30c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b456_f8d1_d30c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b456_f8d1_d30c/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Long Term Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b456_f8d1_d30c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b456_f8d1_d30c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b456_f8d1_d30c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b456_f8d1_d30c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b456_f8d1_d30c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b456_f8d1_d30c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_644e_fe05_42b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_644e_fe05_42b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_644e_fe05_42b9/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Long Term Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_644e_fe05_42b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_644e_fe05_42b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_644e_fe05_42b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_644e_fe05_42b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_644e_fe05_42b9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_644e_fe05_42b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f73c_5cfb_7d7d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f73c_5cfb_7d7d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f73c_5cfb_7d7d/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f73c_5cfb_7d7d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f73c_5cfb_7d7d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f73c_5cfb_7d7d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f73c_5cfb_7d7d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f73c_5cfb_7d7d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f73c_5cfb_7d7d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8abc_8222_02d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8abc_8222_02d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8abc_8222_02d5/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8abc_8222_02d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8abc_8222_02d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8abc_8222_02d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8abc_8222_02d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8abc_8222_02d5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8abc_8222_02d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4254_3e33_671e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4254_3e33_671e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4254_3e33_671e/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4254_3e33_671e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4254_3e33_671e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4254_3e33_671e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4254_3e33_671e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4254_3e33_671e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4254_3e33_671e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94ea_35ee_0e4f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94ea_35ee_0e4f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_94ea_35ee_0e4f/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_94ea_35ee_0e4f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_94ea_35ee_0e4f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_94ea_35ee_0e4f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_94ea_35ee_0e4f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_94ea_35ee_0e4f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_94ea_35ee_0e4f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b422_3911_0054", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b422_3911_0054.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b422_3911_0054/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b422_3911_0054_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b422_3911_0054_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b422_3911_0054/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b422_3911_0054.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b422_3911_0054&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b422_3911_0054"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_67bb_5c25_7a16", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_67bb_5c25_7a16.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_67bb_5c25_7a16/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_67bb_5c25_7a16_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_67bb_5c25_7a16_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_67bb_5c25_7a16/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_67bb_5c25_7a16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_67bb_5c25_7a16&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_67bb_5c25_7a16"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b48_46c5_a175", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b48_46c5_a175.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b48_46c5_a175/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean Monthly Potential Temperature Spread at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b48_46c5_a175_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b48_46c5_a175_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b48_46c5_a175/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b48_46c5_a175.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b48_46c5_a175&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6b48_46c5_a175"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_385b_60f9_c9cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_385b_60f9_c9cc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_385b_60f9_c9cc/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Long Term Potential Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_385b_60f9_c9cc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_385b_60f9_c9cc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_385b_60f9_c9cc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_385b_60f9_c9cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_385b_60f9_c9cc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_385b_60f9_c9cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cee_ba6f_4871", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cee_ba6f_4871.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8cee_ba6f_4871/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Long Term Potential Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8cee_ba6f_4871_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8cee_ba6f_4871_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8cee_ba6f_4871/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8cee_ba6f_4871.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8cee_ba6f_4871&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8cee_ba6f_4871"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c4c7_7457_84bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c4c7_7457_84bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c4c7_7457_84bf/request", "", "public", "Top Dataset, pressure, air.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c4c7_7457_84bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c4c7_7457_84bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c4c7_7457_84bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c4c7_7457_84bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c4c7_7457_84bf&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c4c7_7457_84bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fda_9a93_831c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fda_9a93_831c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5fda_9a93_831c/request", "", "public", "Top Dataset, pressure, air.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Long Term Air Temperature on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5fda_9a93_831c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5fda_9a93_831c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5fda_9a93_831c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5fda_9a93_831c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5fda_9a93_831c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5fda_9a93_831c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6eab_9fe9_284f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6eab_9fe9_284f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6eab_9fe9_284f/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, air.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Long Term Air Temperature on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6eab_9fe9_284f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6eab_9fe9_284f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6eab_9fe9_284f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6eab_9fe9_284f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6eab_9fe9_284f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6eab_9fe9_284f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7bca_2a95_830f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7bca_2a95_830f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7bca_2a95_830f/request", "", "public", "Top Dataset, pressure sprd, air.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7bca_2a95_830f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7bca_2a95_830f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7bca_2a95_830f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7bca_2a95_830f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7bca_2a95_830f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7bca_2a95_830f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b3b_4d47_4bcc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b3b_4d47_4bcc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0b3b_4d47_4bcc/request", "", "public", "Top Dataset, pressure sprd, air.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0b3b_4d47_4bcc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0b3b_4d47_4bcc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0b3b_4d47_4bcc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0b3b_4d47_4bcc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0b3b_4d47_4bcc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0b3b_4d47_4bcc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c93d_1cb4_ec67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c93d_1cb4_ec67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c93d_1cb4_ec67/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, air.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c93d_1cb4_ec67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c93d_1cb4_ec67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c93d_1cb4_ec67/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c93d_1cb4_ec67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c93d_1cb4_ec67&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c93d_1cb4_ec67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd0b_34e4_82bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd0b_34e4_82bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bd0b_34e4_82bb/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bd0b_34e4_82bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bd0b_34e4_82bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bd0b_34e4_82bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bd0b_34e4_82bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bd0b_34e4_82bb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bd0b_34e4_82bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7d9_c99e_2d9a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7d9_c99e_2d9a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e7d9_c99e_2d9a/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at Surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e7d9_c99e_2d9a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e7d9_c99e_2d9a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e7d9_c99e_2d9a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e7d9_c99e_2d9a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e7d9_c99e_2d9a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e7d9_c99e_2d9a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_328f_9e9b_125d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_328f_9e9b_125d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_328f_9e9b_125d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Maximum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_328f_9e9b_125d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_328f_9e9b_125d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_328f_9e9b_125d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_328f_9e9b_125d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_328f_9e9b_125d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_328f_9e9b_125d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bacc_d99c_0451", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bacc_d99c_0451.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bacc_d99c_0451/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Minimum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bacc_d99c_0451_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bacc_d99c_0451_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bacc_d99c_0451/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bacc_d99c_0451.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bacc_d99c_0451&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bacc_d99c_0451"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ec6_5a5a_201d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ec6_5a5a_201d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ec6_5a5a_201d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Soil Temperature, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ec6_5a5a_201d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ec6_5a5a_201d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ec6_5a5a_201d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ec6_5a5a_201d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ec6_5a5a_201d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3ec6_5a5a_201d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d88_b808_0b86", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d88_b808_0b86.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7d88_b808_0b86/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7d88_b808_0b86_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7d88_b808_0b86_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7d88_b808_0b86/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7d88_b808_0b86.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7d88_b808_0b86&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7d88_b808_0b86"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_967e_324f_e2a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_967e_324f_e2a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_967e_324f_e2a0/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_967e_324f_e2a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_967e_324f_e2a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_967e_324f_e2a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_967e_324f_e2a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_967e_324f_e2a0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_967e_324f_e2a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1931_de51_6cf0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1931_de51_6cf0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1931_de51_6cf0/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Maximum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1931_de51_6cf0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1931_de51_6cf0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1931_de51_6cf0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1931_de51_6cf0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1931_de51_6cf0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1931_de51_6cf0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_624c_b357_05f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_624c_b357_05f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_624c_b357_05f2/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Minimum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_624c_b357_05f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_624c_b357_05f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_624c_b357_05f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_624c_b357_05f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_624c_b357_05f2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_624c_b357_05f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa13_331a_881b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa13_331a_881b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa13_331a_881b/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Soil Temperature Spread, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa13_331a_881b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa13_331a_881b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa13_331a_881b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa13_331a_881b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa13_331a_881b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_aa13_331a_881b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e760_836c_65dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e760_836c_65dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e760_836c_65dd/request", "", "public", "Top Dataset, monolevel, air.sig995.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e760_836c_65dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e760_836c_65dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e760_836c_65dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e760_836c_65dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e760_836c_65dd&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e760_836c_65dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc9b_5b0a_3283", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc9b_5b0a_3283.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bc9b_5b0a_3283/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, air.tropo.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bc9b_5b0a_3283_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bc9b_5b0a_3283_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bc9b_5b0a_3283/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bc9b_5b0a_3283.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bc9b_5b0a_3283&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bc9b_5b0a_3283"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ace_48ac_70b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ace_48ac_70b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ace_48ac_70b6/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Potential Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ace_48ac_70b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ace_48ac_70b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ace_48ac_70b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ace_48ac_70b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ace_48ac_70b6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5ace_48ac_70b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f33e_8165_4963", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f33e_8165_4963.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f33e_8165_4963/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f33e_8165_4963_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f33e_8165_4963_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f33e_8165_4963/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f33e_8165_4963.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f33e_8165_4963&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f33e_8165_4963"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5d4_f556_e693", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5d4_f556_e693.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5d4_f556_e693/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5d4_f556_e693_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5d4_f556_e693_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5d4_f556_e693/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5d4_f556_e693.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5d4_f556_e693&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e5d4_f556_e693"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4ab_fba1_63cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4ab_fba1_63cc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f4ab_fba1_63cc/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.mon.mean, 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Potential Temperature Spread at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f4ab_fba1_63cc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f4ab_fba1_63cc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f4ab_fba1_63cc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f4ab_fba1_63cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f4ab_fba1_63cc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f4ab_fba1_63cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aab0_5e09_779b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aab0_5e09_779b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aab0_5e09_779b/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, air.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aab0_5e09_779b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aab0_5e09_779b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aab0_5e09_779b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aab0_5e09_779b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aab0_5e09_779b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_aab0_5e09_779b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efee_45c6_e9ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efee_45c6_e9ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_efee_45c6_e9ce/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, air.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_efee_45c6_e9ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_efee_45c6_e9ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_efee_45c6_e9ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_efee_45c6_e9ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_efee_45c6_e9ce&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_efee_45c6_e9ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b45_5fda_e74c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b45_5fda_e74c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b45_5fda_e74c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sig995.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b45_5fda_e74c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b45_5fda_e74c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b45_5fda_e74c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b45_5fda_e74c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b45_5fda_e74c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5b45_5fda_e74c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2dfc_02f7_6b58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2dfc_02f7_6b58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2dfc_02f7_6b58/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.tropo.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2dfc_02f7_6b58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2dfc_02f7_6b58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2dfc_02f7_6b58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2dfc_02f7_6b58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2dfc_02f7_6b58&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2dfc_02f7_6b58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ede_942c_6a81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ede_942c_6a81.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ede_942c_6a81/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (pottmp.sig995.4Xday.ltm), 2.0\u00b0, 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean 6-hourly Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ede_942c_6a81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ede_942c_6a81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ede_942c_6a81/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ede_942c_6a81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ede_942c_6a81&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5ede_942c_6a81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2bf_4392_704f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2bf_4392_704f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f2bf_4392_704f/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f2bf_4392_704f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f2bf_4392_704f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f2bf_4392_704f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f2bf_4392_704f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f2bf_4392_704f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f2bf_4392_704f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_deac_f85a_7ae9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_deac_f85a_7ae9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_deac_f85a_7ae9/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_deac_f85a_7ae9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_deac_f85a_7ae9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_deac_f85a_7ae9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_deac_f85a_7ae9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_deac_f85a_7ae9&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_deac_f85a_7ae9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa88_f253_e4db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa88_f253_e4db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa88_f253_e4db/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean 6-hourly Potential Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa88_f253_e4db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa88_f253_e4db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa88_f253_e4db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa88_f253_e4db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa88_f253_e4db&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_aa88_f253_e4db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3397_f096_f525", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3397_f096_f525.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3397_f096_f525/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, air.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3397_f096_f525_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3397_f096_f525_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3397_f096_f525/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3397_f096_f525.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3397_f096_f525&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3397_f096_f525"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6889_9369_b6a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6889_9369_b6a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6889_9369_b6a7/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, air.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6889_9369_b6a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6889_9369_b6a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6889_9369_b6a7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6889_9369_b6a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6889_9369_b6a7&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6889_9369_b6a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2903_cfd7_e71b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2903_cfd7_e71b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2903_cfd7_e71b/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.2m.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2903_cfd7_e71b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2903_cfd7_e71b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2903_cfd7_e71b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2903_cfd7_e71b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2903_cfd7_e71b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2903_cfd7_e71b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3235_024d_f86a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3235_024d_f86a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3235_024d_f86a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sfc.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature at Surface, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3235_024d_f86a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3235_024d_f86a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3235_024d_f86a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3235_024d_f86a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3235_024d_f86a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3235_024d_f86a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c67_3aca_8c3e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c67_3aca_8c3e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c67_3aca_8c3e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (3-hourly Long Term Mean Maximum Temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c67_3aca_8c3e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c67_3aca_8c3e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c67_3aca_8c3e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c67_3aca_8c3e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c67_3aca_8c3e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5c67_3aca_8c3e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_706d_a47b_8c9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_706d_a47b_8c9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_706d_a47b_8c9d/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (3-hourly Long Term Mean Minimum Temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_706d_a47b_8c9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_706d_a47b_8c9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_706d_a47b_8c9d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_706d_a47b_8c9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_706d_a47b_8c9d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_706d_a47b_8c9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b303_ebcc_fb18", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b303_ebcc_fb18.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b303_ebcc_fb18/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, tsoil.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (3-hourly Long Term Mean Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b303_ebcc_fb18_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b303_ebcc_fb18_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b303_ebcc_fb18/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b303_ebcc_fb18.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b303_ebcc_fb18&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b303_ebcc_fb18"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c054_7cf9_b656", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c054_7cf9_b656.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c054_7cf9_b656/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (air.2m.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (daily Long Term Mean mean 3-hourly Air Temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c054_7cf9_b656_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c054_7cf9_b656_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c054_7cf9_b656/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c054_7cf9_b656.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c054_7cf9_b656&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c054_7cf9_b656"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c693_3ec4_345a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c693_3ec4_345a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c693_3ec4_345a/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (air.sfc.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (daily Long Term Mean mean 3-hourly Air Temperature at Surface, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c693_3ec4_345a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c693_3ec4_345a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c693_3ec4_345a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c693_3ec4_345a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c693_3ec4_345a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c693_3ec4_345a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c173_29a1_d8d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c173_29a1_d8d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c173_29a1_d8d3/request", "", "public", "daily 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.day.ltm), 0001", "daily 4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Daily Long Term Mean 3-hourly Maximum Temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c173_29a1_d8d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c173_29a1_d8d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c173_29a1_d8d3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c173_29a1_d8d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c173_29a1_d8d3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c173_29a1_d8d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd04_947b_6ec2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd04_947b_6ec2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bd04_947b_6ec2/request", "", "public", "daily 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.day.ltm), 0001", "daily 4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Daily Long Term Mean 3-hourly Minimum Temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bd04_947b_6ec2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bd04_947b_6ec2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bd04_947b_6ec2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bd04_947b_6ec2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bd04_947b_6ec2&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_bd04_947b_6ec2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5909_aae7_a5f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5909_aae7_a5f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5909_aae7_a5f0/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (tsoil.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (daily Long Term Mean mean 3-hourly Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5909_aae7_a5f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5909_aae7_a5f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5909_aae7_a5f0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5909_aae7_a5f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5909_aae7_a5f0&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5909_aae7_a5f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d115_bb45_ea8c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d115_bb45_ea8c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d115_bb45_ea8c/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sig995.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d115_bb45_ea8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d115_bb45_ea8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d115_bb45_ea8c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d115_bb45_ea8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d115_bb45_ea8c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d115_bb45_ea8c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d75_f9af_6746", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d75_f9af_6746.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2d75_f9af_6746/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.tropo.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2d75_f9af_6746_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2d75_f9af_6746_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d75_f9af_6746/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d75_f9af_6746.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d75_f9af_6746&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2d75_f9af_6746"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0cc7_0760_5bc1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0cc7_0760_5bc1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0cc7_0760_5bc1/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2c), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Daily Long Term Mean Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0cc7_0760_5bc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0cc7_0760_5bc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0cc7_0760_5bc1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0cc7_0760_5bc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0cc7_0760_5bc1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0cc7_0760_5bc1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a0f_b575_87bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a0f_b575_87bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a0f_b575_87bb/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, air.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a0f_b575_87bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a0f_b575_87bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a0f_b575_87bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a0f_b575_87bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a0f_b575_87bb&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5a0f_b575_87bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98f4_98a7_ebd4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98f4_98a7_ebd4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_98f4_98a7_ebd4/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_98f4_98a7_ebd4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_98f4_98a7_ebd4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_98f4_98a7_ebd4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_98f4_98a7_ebd4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_98f4_98a7_ebd4&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_98f4_98a7_ebd4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_314e_d1d6_f04c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_314e_d1d6_f04c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_314e_d1d6_f04c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sfc.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at Surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_314e_d1d6_f04c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_314e_d1d6_f04c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_314e_d1d6_f04c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_314e_d1d6_f04c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_314e_d1d6_f04c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_314e_d1d6_f04c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a28_8e70_ca46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a28_8e70_ca46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8a28_8e70_ca46/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Long Term Mean Monthly Maximum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8a28_8e70_ca46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8a28_8e70_ca46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8a28_8e70_ca46/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8a28_8e70_ca46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8a28_8e70_ca46&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8a28_8e70_ca46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c8e_3f66_6231", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c8e_3f66_6231.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3c8e_3f66_6231/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Long Term Mean Monthly Minimum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3c8e_3f66_6231_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3c8e_3f66_6231_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c8e_3f66_6231/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c8e_3f66_6231.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c8e_3f66_6231&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3c8e_3f66_6231"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b78c_38d4_da29", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b78c_38d4_da29.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b78c_38d4_da29/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, tsoil.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Long Term Mean Monthly Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b78c_38d4_da29_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b78c_38d4_da29_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b78c_38d4_da29/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b78c_38d4_da29.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b78c_38d4_da29&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b78c_38d4_da29"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f10_da40_ffa3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f10_da40_ffa3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f10_da40_ffa3/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f10_da40_ffa3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f10_da40_ffa3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f10_da40_ffa3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f10_da40_ffa3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f10_da40_ffa3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0f10_da40_ffa3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f950_cedb_93ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f950_cedb_93ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f950_cedb_93ff/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sfc.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f950_cedb_93ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f950_cedb_93ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f950_cedb_93ff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f950_cedb_93ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f950_cedb_93ff&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f950_cedb_93ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da34_ff03_2878", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da34_ff03_2878.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da34_ff03_2878/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Long Term Mean Monthly Maximum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da34_ff03_2878_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da34_ff03_2878_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da34_ff03_2878/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da34_ff03_2878.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da34_ff03_2878&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_da34_ff03_2878"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dc2_2190_084e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dc2_2190_084e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4dc2_2190_084e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Long Term Mean Monthly Minimum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4dc2_2190_084e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4dc2_2190_084e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4dc2_2190_084e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4dc2_2190_084e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4dc2_2190_084e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4dc2_2190_084e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e5c_f7ed_dc4e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e5c_f7ed_dc4e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e5c_f7ed_dc4e/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, tsoil.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Long Term Mean Monthly Soil Temperature Spread, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e5c_f7ed_dc4e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e5c_f7ed_dc4e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e5c_f7ed_dc4e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e5c_f7ed_dc4e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e5c_f7ed_dc4e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0e5c_f7ed_dc4e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b077_f03b_b4a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b077_f03b_b4a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b077_f03b_b4a1/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sig995.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b077_f03b_b4a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b077_f03b_b4a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b077_f03b_b4a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b077_f03b_b4a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b077_f03b_b4a1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b077_f03b_b4a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6fe_d15d_3825", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6fe_d15d_3825.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e6fe_d15d_3825/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.tropo.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e6fe_d15d_3825_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e6fe_d15d_3825_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e6fe_d15d_3825/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e6fe_d15d_3825.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e6fe_d15d_3825&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e6fe_d15d_3825"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_508d_e781_161d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_508d_e781_161d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_508d_e781_161d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pottmp.sig995.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean Monthly Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_508d_e781_161d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_508d_e781_161d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_508d_e781_161d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_508d_e781_161d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_508d_e781_161d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_508d_e781_161d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b552_91ba_ec3a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b552_91ba_ec3a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b552_91ba_ec3a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (air.sig995.mon.ltm), 2.0\u00b0, 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b552_91ba_ec3a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b552_91ba_ec3a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b552_91ba_ec3a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b552_91ba_ec3a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b552_91ba_ec3a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b552_91ba_ec3a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f478_1944_0cff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f478_1944_0cff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f478_1944_0cff/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (air.tropo.mon.ltm), 2.0\u00b0, 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f478_1944_0cff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f478_1944_0cff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f478_1944_0cff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f478_1944_0cff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f478_1944_0cff&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f478_1944_0cff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ae8_3cea_b081", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ae8_3cea_b081.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ae8_3cea_b081/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.mon.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean Monthly Potential Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ae8_3cea_b081_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ae8_3cea_b081_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ae8_3cea_b081/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ae8_3cea_b081.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ae8_3cea_b081&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5ae8_3cea_b081"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f01f_43cf_686b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f01f_43cf_686b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f01f_43cf_686b/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, air.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f01f_43cf_686b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f01f_43cf_686b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f01f_43cf_686b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f01f_43cf_686b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f01f_43cf_686b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f01f_43cf_686b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01a9_d724_75dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01a9_d724_75dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_01a9_d724_75dd/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, air.mon.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_01a9_d724_75dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_01a9_d724_75dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_01a9_d724_75dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_01a9_d724_75dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_01a9_d724_75dd&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_01a9_d724_75dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73b7_feea_c0e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73b7_feea_c0e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_73b7_feea_c0e3/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_73b7_feea_c0e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_73b7_feea_c0e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_73b7_feea_c0e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_73b7_feea_c0e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_73b7_feea_c0e3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_73b7_feea_c0e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5e1_2e73_fabb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5e1_2e73_fabb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5e1_2e73_fabb/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at Surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5e1_2e73_fabb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5e1_2e73_fabb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5e1_2e73_fabb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5e1_2e73_fabb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5e1_2e73_fabb&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b5e1_2e73_fabb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c02_7fe8_9f50", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c02_7fe8_9f50.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c02_7fe8_9f50/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Maximum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c02_7fe8_9f50_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c02_7fe8_9f50_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c02_7fe8_9f50/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c02_7fe8_9f50.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c02_7fe8_9f50&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9c02_7fe8_9f50"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5613_d6e9_14f4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5613_d6e9_14f4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5613_d6e9_14f4/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Minimum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5613_d6e9_14f4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5613_d6e9_14f4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5613_d6e9_14f4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5613_d6e9_14f4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5613_d6e9_14f4&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5613_d6e9_14f4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0257_dc9e_799e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0257_dc9e_799e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0257_dc9e_799e/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, tsoil.mon.mean), 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Soil Temperature, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0257_dc9e_799e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0257_dc9e_799e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0257_dc9e_799e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0257_dc9e_799e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0257_dc9e_799e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0257_dc9e_799e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38e2_4623_3d85", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38e2_4623_3d85.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_38e2_4623_3d85/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_38e2_4623_3d85_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_38e2_4623_3d85_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_38e2_4623_3d85/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_38e2_4623_3d85.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_38e2_4623_3d85&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_38e2_4623_3d85"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7655_8c18_3a9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7655_8c18_3a9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7655_8c18_3a9d/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7655_8c18_3a9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7655_8c18_3a9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7655_8c18_3a9d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7655_8c18_3a9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7655_8c18_3a9d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7655_8c18_3a9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_059c_6820_a42c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_059c_6820_a42c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_059c_6820_a42c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Maximum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_059c_6820_a42c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_059c_6820_a42c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_059c_6820_a42c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_059c_6820_a42c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_059c_6820_a42c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_059c_6820_a42c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0dd8_7adb_c629", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0dd8_7adb_c629.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0dd8_7adb_c629/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Minimum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0dd8_7adb_c629_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0dd8_7adb_c629_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0dd8_7adb_c629/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0dd8_7adb_c629.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0dd8_7adb_c629&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0dd8_7adb_c629"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1207_e277_400e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1207_e277_400e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1207_e277_400e/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, tsoil.mon.mean), 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Soil Temperature Spread, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1207_e277_400e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1207_e277_400e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1207_e277_400e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1207_e277_400e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1207_e277_400e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_1207_e277_400e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9118_5c8e_5fc3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9118_5c8e_5fc3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9118_5c8e_5fc3/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sig995.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9118_5c8e_5fc3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9118_5c8e_5fc3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9118_5c8e_5fc3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9118_5c8e_5fc3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9118_5c8e_5fc3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9118_5c8e_5fc3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5b1_3ac5_5570", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5b1_3ac5_5570.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5b1_3ac5_5570/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.tropo.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5b1_3ac5_5570_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5b1_3ac5_5570_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5b1_3ac5_5570/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5b1_3ac5_5570.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5b1_3ac5_5570&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a5b1_3ac5_5570"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d32b_2d9d_2af1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d32b_2d9d_2af1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d32b_2d9d_2af1/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pottmp.sig995.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Potential Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d32b_2d9d_2af1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d32b_2d9d_2af1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d32b_2d9d_2af1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d32b_2d9d_2af1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d32b_2d9d_2af1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d32b_2d9d_2af1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1a6_beae_f7e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1a6_beae_f7e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a1a6_beae_f7e0/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.mon.mean, 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a1a6_beae_f7e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a1a6_beae_f7e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a1a6_beae_f7e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a1a6_beae_f7e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a1a6_beae_f7e0&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a1a6_beae_f7e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_62ec_436e_705e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_62ec_436e_705e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_62ec_436e_705e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (air.tropo.mon.mean), 2.0\u00b0, 1851-2014", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_62ec_436e_705e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_62ec_436e_705e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_62ec_436e_705e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_62ec_436e_705e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_62ec_436e_705e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_62ec_436e_705e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4da7_e743_ddbd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4da7_e743_ddbd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4da7_e743_ddbd/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.mon.mean, 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Potential Temperature Spread at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4da7_e743_ddbd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4da7_e743_ddbd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4da7_e743_ddbd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4da7_e743_ddbd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4da7_e743_ddbd&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4da7_e743_ddbd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_808e_0b04_f524", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_808e_0b04_f524.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_808e_0b04_f524/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, air.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_808e_0b04_f524_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_808e_0b04_f524_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_808e_0b04_f524/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_808e_0b04_f524.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_808e_0b04_f524&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_808e_0b04_f524"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72b6_a6fc_cce9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72b6_a6fc_cce9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_72b6_a6fc_cce9/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, air.mon.mean), 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_72b6_a6fc_cce9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_72b6_a6fc_cce9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_72b6_a6fc_cce9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_72b6_a6fc_cce9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_72b6_a6fc_cce9&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_72b6_a6fc_cce9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d245_c858_56c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d245_c858_56c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d245_c858_56c1/request", "", "public", "Top Dataset, COBE, sst.mon.ltm.1981-2010 (COBE SST Analysis), 1.0\u00b0, 0001", "COBE Sea Surface Temperature Analysis. recent values (w/i last year) may change as dataset is updated. It is a monitoring dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Long Term Mean Monthly Means of Global Sea Surface Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d245_c858_56c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d245_c858_56c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d245_c858_56c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cobe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d245_c858_56c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d245_c858_56c1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d245_c858_56c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_acda_96fa_86e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_acda_96fa_86e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_acda_96fa_86e5/request", "", "public", "COBE SST Analysis (Top Dataset, COBE, sst.mon.mean), 1.0\u00b0, 1891-present", "COBE Sea Surface Temperature Analysis. recent values (w/i last year) may change as dataset is updated. It is a monitoring dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Means of Global Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_acda_96fa_86e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_acda_96fa_86e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_acda_96fa_86e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cobe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_acda_96fa_86e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_acda_96fa_86e5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_acda_96fa_86e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f36_550f_a27a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f36_550f_a27a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3f36_550f_a27a/request", "", "public", "Top Dataset, COBE2, icec.mon.ltm.1981-2010.2016 (created 05/2014 from data provided by JRA), 1.0\u00b0, 0001", "created 05/2014 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, icec.mon.ltm.1981-2010.2016)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Long Term Mean Monthly Means of Global Ice Concentration, fr)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3f36_550f_a27a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3f36_550f_a27a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3f36_550f_a27a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3f36_550f_a27a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3f36_550f_a27a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3f36_550f_a27a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b0b_c423_6eae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b0b_c423_6eae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b0b_c423_6eae/request", "", "public", "Top Dataset, COBE2, icec.mon.ltm.1981-2010 (created 05/2014 from data provided by JRA), 1.0\u00b0, 0001", "created 05/2014 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, icec.mon.ltm.1981-2010)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Long Term Mean Monthly Means of Global Ice Concentration, fr)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b0b_c423_6eae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b0b_c423_6eae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b0b_c423_6eae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b0b_c423_6eae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b0b_c423_6eae&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5b0b_c423_6eae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9e7_3b10_49c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9e7_3b10_49c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a9e7_3b10_49c0/request", "", "public", "created 05/2014 from data provided by JRA (Top Dataset, COBE2, icec.mon.mean.2016), 1.0\u00b0", "created 05/2014 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, icec.mon.mean.2016)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Monthly Means of Global Ice Concentration, fr)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9e7_3b10_49c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9e7_3b10_49c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9e7_3b10_49c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9e7_3b10_49c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9e7_3b10_49c0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a9e7_3b10_49c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e871_0ea9_74d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e871_0ea9_74d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e871_0ea9_74d9/request", "", "public", "created 05/2014 from data provided by JRA (Top Dataset, COBE2, icec.mon.mean), 1.0\u00b0, 1850-2017", "created 05/2014 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, icec.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Monthly Means of Global Ice Concentration, fr)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e871_0ea9_74d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e871_0ea9_74d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e871_0ea9_74d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e871_0ea9_74d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e871_0ea9_74d9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e871_0ea9_74d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e02e_d3e1_c3cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e02e_d3e1_c3cc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e02e_d3e1_c3cc/request", "", "public", "Top Dataset, COBE2, sst.mon.ltm.1981-2010.2016 (created 12/2013 from data provided by JRA), 1.0\u00b0, 0001", "created 12/2013 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, sst.mon.ltm.1981-2010.2016)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Long Term Mean Monthly Means of Global Sea Surface Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e02e_d3e1_c3cc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e02e_d3e1_c3cc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e02e_d3e1_c3cc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e02e_d3e1_c3cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e02e_d3e1_c3cc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e02e_d3e1_c3cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f681_efe5_3597", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f681_efe5_3597.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f681_efe5_3597/request", "", "public", "created 12/2013 from data provided by JRA (Top Dataset, COBE2, sst.mon.ltm.1981-2010), 1.0\u00b0, 0001", "created 12/2013 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, sst.mon.ltm.1981-2010)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Long Term Mean Monthly Means of Global Sea Surface Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f681_efe5_3597_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f681_efe5_3597_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f681_efe5_3597/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f681_efe5_3597.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f681_efe5_3597&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f681_efe5_3597"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc06_d1e5_9bf9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc06_d1e5_9bf9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc06_d1e5_9bf9/request", "", "public", "created 12/2013 from data provided by JRA (Top Dataset, COBE2, sst.mon.mean.2016), 1.0\u00b0", "created 12/2013 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, sst.mon.mean.2016)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Means of Global Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc06_d1e5_9bf9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc06_d1e5_9bf9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc06_d1e5_9bf9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc06_d1e5_9bf9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc06_d1e5_9bf9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_dc06_d1e5_9bf9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35ec_0735_a3f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35ec_0735_a3f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_35ec_0735_a3f5/request", "", "public", "created 12/2013 from data provided by JRA (Top Dataset, COBE2, sst.mon.mean), 1.0\u00b0, 1850-2017", "created 12/2013 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, sst.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Means of Global Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_35ec_0735_a3f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_35ec_0735_a3f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_35ec_0735_a3f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_35ec_0735_a3f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_35ec_0735_a3f5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_35ec_0735_a3f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5d8_2155_b839", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5d8_2155_b839.graph", "", "", "public", "Top Dataset, monolevel, air.2m.day.ltm (Daily NARR) [time][y][x], 0001", "Daily NARR (Top Dataset, monolevel, air.2m.day.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nair (Daily Air Temperature at 2 m, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5d8_2155_b839/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5d8_2155_b839.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5d8_2155_b839&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a5d8_2155_b839"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2538_a283_c9c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2538_a283_c9c1.graph", "", "", "public", "Top Dataset, monolevel, air.2m.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, air.2m.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nair (Monthly Long Term Mean Air Temperature at 2 m, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2538_a283_c9c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2538_a283_c9c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2538_a283_c9c1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_2538_a283_c9c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63f5_1e56_8f1d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63f5_1e56_8f1d.graph", "", "", "public", "Top Dataset, monolevel, air.sfc.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, air.sfc.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nair (Long Term Monthly Mean air temperature at Surface, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_63f5_1e56_8f1d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_63f5_1e56_8f1d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_63f5_1e56_8f1d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_63f5_1e56_8f1d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4163_0b75_70a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4163_0b75_70a0.graph", "", "", "public", "Top Dataset, monolevel, dpt.2m.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, dpt.2m.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ndpt (Long Term Monthly Mean Dew Point Temperature at 2m, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4163_0b75_70a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4163_0b75_70a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4163_0b75_70a0&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_4163_0b75_70a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a308_27ac_ed4f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a308_27ac_ed4f.graph", "", "", "public", "Top Dataset, monolevel, lftx4.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nlftx4 (Long Term Monthly Mean Best (4-layer) Lifted Index, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a308_27ac_ed4f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a308_27ac_ed4f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a308_27ac_ed4f&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a308_27ac_ed4f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccca_66a6_985b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccca_66a6_985b.graph", "", "", "public", "Top Dataset, monolevel, pottmp.hl1.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, pottmp.hl1.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\npottmp (Long Term Monthly Mean Potential Temperature, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ccca_66a6_985b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ccca_66a6_985b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ccca_66a6_985b&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ccca_66a6_985b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0da1_3e23_35ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0da1_3e23_35ba.graph", "", "", "public", "Top Dataset, monolevel, pottmp.sfc.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, pottmp.sfc.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\npottmp (Long Term Monthly Mean potential temperature at Surface, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0da1_3e23_35ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0da1_3e23_35ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0da1_3e23_35ba&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_0da1_3e23_35ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_704f_70b1_858c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_704f_70b1_858c.graph", "", "", "public", "Top Dataset, monolevel, rct.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, rct.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nrct (Long Term Monthly Mean Temperature Parameter Canopy Conductance at Surface, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_704f_70b1_858c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_704f_70b1_858c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_704f_70b1_858c&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_704f_70b1_858c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e561_e9aa_4447", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e561_e9aa_4447.graph", "", "", "public", "Top Dataset, pressure, air.day.ltm (Daily Long Term NARR) [time][level][y][x], 0001", "Daily Long Term NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nair (Daily Long Term Mean Air Temperature on Pressure Levels, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e561_e9aa_4447/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e561_e9aa_4447.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e561_e9aa_4447&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_e561_e9aa_4447"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c708_1d81_df82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c708_1d81_df82.graph", "", "", "public", "Top Dataset, pressure, air.mon.ltm (Monthly NARR) [time][level][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nair (Monthly Air Temperature on Pressure Levels, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c708_1d81_df82/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c708_1d81_df82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c708_1d81_df82&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_c708_1d81_df82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9015_699e_ba4b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9015_699e_ba4b.graph", "", "", "public", "Top Dataset, monolevel, air.2m.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, air.2m.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nair (Monthly Air Temperature at 2 m, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9015_699e_ba4b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9015_699e_ba4b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9015_699e_ba4b&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_9015_699e_ba4b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d097_1181_d9bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d097_1181_d9bf.graph", "", "", "public", "Top Dataset, monolevel, air.sfc.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, air.sfc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nair (Monthly air temperature at Surface, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d097_1181_d9bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d097_1181_d9bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d097_1181_d9bf&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_d097_1181_d9bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_faec_409c_074d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_faec_409c_074d.graph", "", "", "public", "Top Dataset, monolevel, dpt.2m.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, dpt.2m.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ndpt (Monthly Dew Point Temperature at 2m, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_faec_409c_074d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_faec_409c_074d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_faec_409c_074d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_faec_409c_074d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85e5_762a_e001", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85e5_762a_e001.graph", "", "", "public", "Top Dataset, monolevel, lftx4.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, lftx4.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nlftx4 (Monthly Best (4-layer) Lifted Index, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85e5_762a_e001/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85e5_762a_e001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85e5_762a_e001&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_85e5_762a_e001"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e19_c940_4ed1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e19_c940_4ed1.graph", "", "", "public", "Top Dataset, monolevel, pottmp.hl1.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, pottmp.hl1.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\npottmp (Monthly Potential Temperature, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e19_c940_4ed1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e19_c940_4ed1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e19_c940_4ed1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7e19_c940_4ed1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44f9_d80f_850f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44f9_d80f_850f.graph", "", "", "public", "Top Dataset, monolevel, pottmp.sfc.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, pottmp.sfc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\npottmp (Monthly potential temperature at Surface, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_44f9_d80f_850f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_44f9_d80f_850f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_44f9_d80f_850f&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_44f9_d80f_850f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_288f_8834_e2a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_288f_8834_e2a1.graph", "", "", "public", "Top Dataset, monolevel, rct.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, rct.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nrct (Monthly Temperature Parameter Canopy Conductance at Surface, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_288f_8834_e2a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_288f_8834_e2a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_288f_8834_e2a1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_288f_8834_e2a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff63_c2b5_12e9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff63_c2b5_12e9.graph", "", "", "public", "Top Dataset, pressure, air.mon.mean (NARR Monthly Means) [time][level][y][x], 1979-present", "NARR Monthly Means (Top Dataset, pressure, air.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nair (Monthly Air Temperature on Pressure Levels, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff63_c2b5_12e9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff63_c2b5_12e9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff63_c2b5_12e9&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ff63_c2b5_12e9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfc5_c3f5_62a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfc5_c3f5_62a7.graph", "", "", "public", "Top Dataset, subsurface, tsoil.mon.mean (NARR Monthly Means) [time][level][y][x], 1979-present", "NARR Monthly Means (Top Dataset, subsurface, tsoil.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\ntsoil (Monthly Soil Temperature, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bfc5_c3f5_62a7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bfc5_c3f5_62a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bfc5_c3f5_62a7&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_bfc5_c3f5_62a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2240_3479_8147", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2240_3479_8147.graph", "", "", "public", "Top Dataset, postprocessed, Global SST CESM-LE 40members 1920-2079 3moRunMeans [time][ens], 1918-present", "Top Dataset, postprocessed, Global Sea Surface Temperature (SST) CESM-LE 40members 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens]):\nGlobalSST (Global SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2240_3479_8147/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/Global_SST_CESM-LE_40members_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2240_3479_8147.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2240_3479_8147&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2240_3479_8147"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26b8_6789_b7d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26b8_6789_b7d7.graph", "", "", "public", "Top Dataset, postprocessed, Global SST CESM-LE 40members 1920-2079 3moRunMeans [time], 1918-present", "Top Dataset, postprocessed, Global Sea Surface Temperature (SST) CESM-LE 40members 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_26b8_6789_b7d7/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/Global_SST_CESM-LE_40members_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_26b8_6789_b7d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_26b8_6789_b7d7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_26b8_6789_b7d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8754_851b_0cbc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8754_851b_0cbc.graph", "", "", "public", "Top Dataset, postprocessed, Global SST CESM-LE 40members 1970-2039 3moRunMeans [time][ens], 1968-present", "Top Dataset, postprocessed, Global Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens]):\nGlobalSST (Global SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8754_851b_0cbc/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/Global_SST_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8754_851b_0cbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8754_851b_0cbc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8754_851b_0cbc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aab8_9f2e_e8d6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aab8_9f2e_e8d6.graph", "", "", "public", "Top Dataset, postprocessed, Global SST CESM-LE 40members 1970-2039 3moRunMeans [time], 1968-present", "Top Dataset, postprocessed, Global Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aab8_9f2e_e8d6/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/Global_SST_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aab8_9f2e_e8d6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aab8_9f2e_e8d6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_aab8_9f2e_e8d6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a81c_971f_d3b4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a81c_971f_d3b4.graph", "", "", "public", "Top Dataset, postprocessed, Global SST unweighted CESM-LE 40members 1970-2039 3moRunMeans [time][ens], 1968-present", "Top Dataset, postprocessed, Global Sea Surface Temperature (SST) unweighted CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens]):\nGlobalSST (Global SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a81c_971f_d3b4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/Global_SST_unweighted_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a81c_971f_d3b4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a81c_971f_d3b4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a81c_971f_d3b4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_536b_830d_de8a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_536b_830d_de8a.graph", "", "", "public", "Top Dataset, postprocessed, Global SST unweighted CESM-LE 40members 1970-2039 3moRunMeans [time], 1968-present", "Top Dataset, postprocessed, Global Sea Surface Temperature (SST) unweighted CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_536b_830d_de8a/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/Global_SST_unweighted_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_536b_830d_de8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_536b_830d_de8a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_536b_830d_de8a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0458_771b_978c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0458_771b_978c.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific 3moSSTanomalies CESM-LE 40members 1920-2079 [time][ens][nlat][nlon], 1918-present", "Top Dataset, postprocessed, IndoPacific 3moSSTanomalies CESM-LE 40members 1920-2079\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][nlat][nlon]):\nanomalies (anomalies of SST 3-month running mean)\nanoms_smooth (smoothed anomalies of SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0458_771b_978c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_3moSSTanomalies_CESM-LE_40members_1920-2079.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0458_771b_978c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0458_771b_978c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0458_771b_978c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8faa_fefa_a174", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8faa_fefa_a174.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2039 12moRunMeans [nlat][nlon]", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nlat][nlon]):\ntlat (array of t-grid latitudes, degrees_north)\ntlon (array of t-grid longitudes, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8faa_fefa_a174/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8faa_fefa_a174.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8faa_fefa_a174&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8faa_fefa_a174"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ed1_b386_9438", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ed1_b386_9438.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2039 12moRunMeans [time][ens][nlat][nlon], 1918-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][nlat][nlon]):\nSST (SST 12-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ed1_b386_9438/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ed1_b386_9438.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ed1_b386_9438&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6ed1_b386_9438"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a05_fa35_66bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a05_fa35_66bb.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2039 12moRunMeans [time], 1918-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a05_fa35_66bb/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a05_fa35_66bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a05_fa35_66bb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6a05_fa35_66bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15bf_53e1_d1b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15bf_53e1_d1b1.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2039 3moRunMeans [nlat][nlon]", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nlat][nlon]):\ntlat (array of t-grid latitudes, degrees_north)\ntlon (array of t-grid longitudes, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_15bf_53e1_d1b1/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_15bf_53e1_d1b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_15bf_53e1_d1b1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_15bf_53e1_d1b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a014_0ea7_670f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a014_0ea7_670f.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2039 3moRunMeans [time][ens][nlat][nlon], 1918-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][nlat][nlon]):\nSST (SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a014_0ea7_670f/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a014_0ea7_670f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a014_0ea7_670f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a014_0ea7_670f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d20c_b1d5_0cf4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d20c_b1d5_0cf4.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2039 3moRunMeans [time], 1918-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d20c_b1d5_0cf4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d20c_b1d5_0cf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d20c_b1d5_0cf4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d20c_b1d5_0cf4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a038_f634_3ea9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a038_f634_3ea9.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2079 3moRunMeans [nlat][nlon]", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nlat][nlon]):\ntlat (array of t-grid latitudes, degrees_north)\ntlon (array of t-grid longitudes, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a038_f634_3ea9/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a038_f634_3ea9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a038_f634_3ea9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a038_f634_3ea9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b500_ec93_86bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b500_ec93_86bc.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2079 3moRunMeans [time][ens][nlat][nlon], 1918-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][nlat][nlon]):\nSST (SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b500_ec93_86bc/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b500_ec93_86bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b500_ec93_86bc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b500_ec93_86bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63dd_d480_d707", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63dd_d480_d707.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2079 3moRunMeans [time], 1918-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_63dd_d480_d707/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_63dd_d480_d707.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_63dd_d480_d707&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_63dd_d480_d707"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3642_2f29_9a2c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3642_2f29_9a2c.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1970-2039 12moRunMeans [nlat][nlon]", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nlat][nlon]):\ntlat (array of t-grid latitudes, degrees_north)\ntlon (array of t-grid longitudes, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3642_2f29_9a2c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1970-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3642_2f29_9a2c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3642_2f29_9a2c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3642_2f29_9a2c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc26_d71f_c89a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc26_d71f_c89a.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1970-2039 12moRunMeans [time], 1968-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bc26_d71f_c89a/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1970-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bc26_d71f_c89a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bc26_d71f_c89a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bc26_d71f_c89a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a293_d3ea_81e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a293_d3ea_81e8.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1970-2039 3moRunMeans [nlat][nlon]", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nlat][nlon]):\ntlat (array of t-grid latitudes, degrees_north)\ntlon (array of t-grid longitudes, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a293_d3ea_81e8/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a293_d3ea_81e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a293_d3ea_81e8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a293_d3ea_81e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a6ed_991c_493c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a6ed_991c_493c.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1970-2039 3moRunMeans [time][ens][nlat][nlon], 1968-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][nlat][nlon]):\nSST (SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a6ed_991c_493c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a6ed_991c_493c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a6ed_991c_493c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a6ed_991c_493c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b18_d378_ccea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b18_d378_ccea.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1970-2039 3moRunMeans [time], 1968-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b18_d378_ccea/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b18_d378_ccea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b18_d378_ccea&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7b18_d378_ccea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5bd_04e7_a5d8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5bd_04e7_a5d8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5bd_04e7_a5d8/request", "", "public", "Top Dataset, B1850, SST CESM1-CAM5 B1850 1920-2079 3moRunMeans [time][lat][lon], 2.0\u00b0", "Top Dataset, B1850, Sea Surface Temperature (SST) CESM1-CAM5 B1850 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST (Surface temperature (radiative), K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5bd_04e7_a5d8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5bd_04e7_a5d8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5bd_04e7_a5d8/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM1-CAM5/B1850/SST_CESM1-CAM5_B1850_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5bd_04e7_a5d8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5bd_04e7_a5d8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e5bd_04e7_a5d8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6dc8_d21b_70d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6dc8_d21b_70d1.graph", "", "", "public", "Top Dataset, B1850, SST CESM1-CAM5 B1850 1920-2079 3moRunMeans [time]", "Top Dataset, B1850, Sea Surface Temperature (SST) CESM1-CAM5 B1850 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMM))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6dc8_d21b_70d1/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM1-CAM5/B1850/SST_CESM1-CAM5_B1850_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6dc8_d21b_70d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6dc8_d21b_70d1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6dc8_d21b_70d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca18_f565_c07a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca18_f565_c07a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca18_f565_c07a/request", "", "public", "Top Dataset, B2000, SST CESM1-CAM5 B2000 1920-2079 3moRunMeans [time][lat][lon], 2.0\u00b0", "Top Dataset, B2000, Sea Surface Temperature (SST) CESM1-CAM5 B2000 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST (Surface temperature (radiative), K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca18_f565_c07a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca18_f565_c07a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca18_f565_c07a/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM1-CAM5/B2000/SST_CESM1-CAM5_B2000_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca18_f565_c07a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca18_f565_c07a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ca18_f565_c07a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bddc_9f9e_d06d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bddc_9f9e_d06d.graph", "", "", "public", "Top Dataset, B2000, SST CESM1-CAM5 B2000 1920-2079 3moRunMeans [time]", "Top Dataset, B2000, Sea Surface Temperature (SST) CESM1-CAM5 B2000 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMM))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bddc_9f9e_d06d/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM1-CAM5/B2000/SST_CESM1-CAM5_B2000_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bddc_9f9e_d06d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bddc_9f9e_d06d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bddc_9f9e_d06d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f76c_63e7_0d82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f76c_63e7_0d82.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f76c_63e7_0d82/request", "", "public", "Top Dataset, B2000, T2M CESM1-CAM5 B2000 1920-2079 3moRunMeans [time][lat][lon]", "Top Dataset, B2000, T2M CESM1-CAM5 B2000 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nT2M (Reference height temperature, K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f76c_63e7_0d82_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f76c_63e7_0d82_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f76c_63e7_0d82/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM1-CAM5/B2000/T2M_CESM1-CAM5_B2000_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f76c_63e7_0d82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f76c_63e7_0d82&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f76c_63e7_0d82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cf9_e191_8d94", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cf9_e191_8d94.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3cf9_e191_8d94/request", "", "public", "Top Dataset, Livneh, monthly.mean.forcing.195001-201312, 0.5\u00b0", "Top Dataset, Livneh, monthly.mean.forcing.195001-201312\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprec (Precipitation, mm/day)\ntmax (Daily maximum temperature, degree_C)\ntmin (Daily minimum temperature, degree_C)\nwind (mean daily wind speed, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3cf9_e191_8d94_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3cf9_e191_8d94_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3cf9_e191_8d94/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Livneh/monthly.mean.forcing.195001-201312.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3cf9_e191_8d94.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3cf9_e191_8d94&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3cf9_e191_8d94"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c35b_b3ad_abc4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c35b_b3ad_abc4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c35b_b3ad_abc4/request", "", "public", "Princeton University Hydroclimatology Group 61-yr (1948-2008) Palmer Drought Severity Index (PDSI) dataset, 1.0\u00b0", "Forcings are an update to the original version reported in Sheffield et al., J. Climate (2006). Updates include: i) extension to 2008; ii) improved sampling procedure for correction of rain day statistics; iii) use of latest versions of Climatic Research Unit (CRU), SRB and Tropical Rainfall Measuring Mission (TRMM) products; iv) improved consistency between specific and relative humidity and air temperature; v) correction of relative humidity trends. See Sheffield et al., J. Climate (2006) for details of the observations used and the bias correction and downscaling methodology.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][z][latitude][longitude]):\npdsi_pm (self-calibrating Palmer Drought Severity Index with Thornthwaite PE)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c35b_b3ad_abc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c35b_b3ad_abc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c35b_b3ad_abc4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Sheffield/pdsi_pm_prec_cpcV1.0_rnet_pgf_sc_monthly_1948-2008.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c35b_b3ad_abc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c35b_b3ad_abc4&showErrors=false&email=", "Princeton University", "noaa_esrl_c35b_b3ad_abc4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28a5_c3e8_117d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28a5_c3e8_117d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28a5_c3e8_117d/request", "", "public", "Princeton University Hydroclimatology Group 61-yr (1948-2008) Palmer Drought Severity Index (PDSI) dataset, 1.0\u00b0", "Forcings are an update to the original version reported in Sheffield et al., J. Climate (2006). Updates include: i) extension to 2008; ii) improved sampling procedure for correction of rain day statistics; iii) use of latest versions of Climatic Research Unit (CRU), SRB and Tropical Rainfall Measuring Mission (TRMM) products; iv) improved consistency between specific and relative humidity and air temperature; v) correction of relative humidity trends. See Sheffield et al., J. Climate (2006) for details of the observations used and the bias correction and downscaling methodology.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][z][latitude][longitude]):\npdsi_pm (self-calibrating Palmer Drought Severity Index with Penman-Monteith PE)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28a5_c3e8_117d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28a5_c3e8_117d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28a5_c3e8_117d/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Sheffield/pdsi_pm_prec_cruV3.10_rnet_pgf_sc_monthly_1948-2008.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28a5_c3e8_117d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28a5_c3e8_117d&showErrors=false&email=", "Princeton University", "noaa_esrl_28a5_c3e8_117d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdc5_3ecb_d06e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdc5_3ecb_d06e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bdc5_3ecb_d06e/request", "", "public", "Princeton University Hydroclimatology Group 61-yr (1948-2012) Palmer Drought Severity Index (PDSI) dataset, 1.0\u00b0", "Forcings are an update to the original version reported in Sheffield et al., J. Climate (2006). Updates include: i) extension to 2012; ii) improved sampling procedure for correction of rain day statistics; iii) use of latest versions of Climatic Research Unit (CRU), SRB and Tropical Rainfall Measuring Mission (TRMM) products; iv) improved consistency between specific and relative humidity and air temperature; v) correction of relative humidity trends. See Sheffield et al., J. Climate (2006) for details of the observations used and the bias correction and downscaling methodology.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][z][latitude][longitude]):\npdsi_pm (self-calibrating Palmer Drought Severity Index with Penman-Monteith PE)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bdc5_3ecb_d06e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bdc5_3ecb_d06e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bdc5_3ecb_d06e/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Sheffield/pdsi_pm_prec_cruV3.21_rnet_pgfV2_sc_monthly_1948-2012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bdc5_3ecb_d06e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bdc5_3ecb_d06e&showErrors=false&email=", "Princeton University", "noaa_esrl_bdc5_3ecb_d06e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c6e_7cb7_4567", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c6e_7cb7_4567.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7c6e_7cb7_4567/request", "", "public", "Princeton University Hydroclimatology Group 61-yr (1948-2008) Palmer Drought Severity Index (PDSI) dataset, 1.0\u00b0", "Forcings are an update to the original version reported in Sheffield et al., J. Climate (2006). Updates include: i) extension to 2008; ii) improved sampling procedure for correction of rain day statistics; iii) use of latest versions of Climatic Research Unit (CRU), SRB and Tropical Rainfall Measuring Mission (TRMM) products; iv) improved consistency between specific and relative humidity and air temperature; v) correction of relative humidity trends. See Sheffield et al., J. Climate (2006) for details of the observations used and the bias correction and downscaling methodology.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][z][latitude][longitude]):\npdsi_pm (self-calibrating Palmer Drought Severity Index with Penman-Monteith PE)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7c6e_7cb7_4567_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7c6e_7cb7_4567_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7c6e_7cb7_4567/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Sheffield/pdsi_pm_prec_gpccV4_rnet_pgf_sc_monthly_1948-2007.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7c6e_7cb7_4567.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7c6e_7cb7_4567&showErrors=false&email=", "Princeton University", "noaa_esrl_7c6e_7cb7_4567"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bafd_3238_fe9c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bafd_3238_fe9c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bafd_3238_fe9c/request", "", "public", "Princeton University Hydroclimatology Group 61-yr (1948-2008) Palmer Drought Severity Index (PDSI) dataset, 1.0\u00b0", "Forcings are an update to the original version reported in Sheffield et al., J. Climate (2006). Updates include: i) extension to 2008; ii) improved sampling procedure for correction of rain day statistics; iii) use of latest versions of Climatic Research Unit (CRU), SRB and Tropical Rainfall Measuring Mission (TRMM) products; iv) improved consistency between specific and relative humidity and air temperature; v) correction of relative humidity trends. See Sheffield et al., J. Climate (2006) for details of the observations used and the bias correction and downscaling methodology.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][z][latitude][longitude]):\npdsi_pm (self-calibrating Palmer Drought Severity Index with Penman-Monteith PE)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bafd_3238_fe9c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bafd_3238_fe9c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bafd_3238_fe9c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Sheffield/pdsi_pm_prec_willmottV2.01_rnet_pgf_sc_monthly_1948-2008.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bafd_3238_fe9c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bafd_3238_fe9c&showErrors=false&email=", "Princeton University", "noaa_esrl_bafd_3238_fe9c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e791_ed5e_389c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e791_ed5e_389c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e791_ed5e_389c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e791_ed5e_389c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e791_ed5e_389c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e791_ed5e_389c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e791_ed5e_389c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e791_ed5e_389c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e791_ed5e_389c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e2c_4ff1_850d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e2c_4ff1_850d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e2c_4ff1_850d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e2c_4ff1_850d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e2c_4ff1_850d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e2c_4ff1_850d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e2c_4ff1_850d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e2c_4ff1_850d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8e2c_4ff1_850d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5c6_c0ec_632d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5c6_c0ec_632d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5c6_c0ec_632d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5c6_c0ec_632d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5c6_c0ec_632d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5c6_c0ec_632d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5c6_c0ec_632d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5c6_c0ec_632d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c5c6_c0ec_632d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_804f_8a2e_d99c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_804f_8a2e_d99c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_804f_8a2e_d99c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_804f_8a2e_d99c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_804f_8a2e_d99c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_804f_8a2e_d99c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_804f_8a2e_d99c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_804f_8a2e_d99c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_804f_8a2e_d99c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c153_e09d_b35f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c153_e09d_b35f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c153_e09d_b35f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c153_e09d_b35f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c153_e09d_b35f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c153_e09d_b35f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c153_e09d_b35f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c153_e09d_b35f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c153_e09d_b35f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb1e_53c6_585d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb1e_53c6_585d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bb1e_53c6_585d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bb1e_53c6_585d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bb1e_53c6_585d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bb1e_53c6_585d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bb1e_53c6_585d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bb1e_53c6_585d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bb1e_53c6_585d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7082_f00a_48ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7082_f00a_48ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7082_f00a_48ce/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7082_f00a_48ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7082_f00a_48ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7082_f00a_48ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7082_f00a_48ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7082_f00a_48ce&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7082_f00a_48ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fede_5d4d_15cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fede_5d4d_15cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fede_5d4d_15cd/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fede_5d4d_15cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fede_5d4d_15cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fede_5d4d_15cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fede_5d4d_15cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fede_5d4d_15cd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fede_5d4d_15cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9290_308f_ffd2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9290_308f_ffd2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9290_308f_ffd2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9290_308f_ffd2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9290_308f_ffd2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9290_308f_ffd2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9290_308f_ffd2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9290_308f_ffd2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9290_308f_ffd2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c32_37d4_26e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c32_37d4_26e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c32_37d4_26e3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c32_37d4_26e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c32_37d4_26e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c32_37d4_26e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c32_37d4_26e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c32_37d4_26e3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9c32_37d4_26e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c7c_de05_d943", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c7c_de05_d943.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4c7c_de05_d943/request", "", "public", "Top Dataset, enh, qsminq.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4c7c_de05_d943_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4c7c_de05_d943_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c7c_de05_d943/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c7c_de05_d943.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c7c_de05_d943&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4c7c_de05_d943"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c521_2719_4163", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c521_2719_4163.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c521_2719_4163/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c521_2719_4163_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c521_2719_4163_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c521_2719_4163/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c521_2719_4163.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c521_2719_4163&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c521_2719_4163"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d59_ff11_b119", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d59_ff11_b119.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d59_ff11_b119/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d59_ff11_b119_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d59_ff11_b119_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d59_ff11_b119/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d59_ff11_b119.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d59_ff11_b119&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6d59_ff11_b119"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2747_4e77_1565", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2747_4e77_1565.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2747_4e77_1565/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2747_4e77_1565_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2747_4e77_1565_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2747_4e77_1565/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2747_4e77_1565.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2747_4e77_1565&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2747_4e77_1565"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e16_8794_cf07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e16_8794_cf07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7e16_8794_cf07/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7e16_8794_cf07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7e16_8794_cf07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e16_8794_cf07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e16_8794_cf07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e16_8794_cf07&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7e16_8794_cf07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c575_5d7d_8b76", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c575_5d7d_8b76.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c575_5d7d_8b76/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c575_5d7d_8b76_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c575_5d7d_8b76_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c575_5d7d_8b76/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c575_5d7d_8b76.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c575_5d7d_8b76&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c575_5d7d_8b76"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bedf_2705_0cb1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bedf_2705_0cb1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bedf_2705_0cb1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bedf_2705_0cb1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bedf_2705_0cb1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bedf_2705_0cb1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bedf_2705_0cb1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bedf_2705_0cb1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bedf_2705_0cb1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5e1_f236_7286", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5e1_f236_7286.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5e1_f236_7286/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5e1_f236_7286_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5e1_f236_7286_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5e1_f236_7286/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5e1_f236_7286.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5e1_f236_7286&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b5e1_f236_7286"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_caea_0a7d_579c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_caea_0a7d_579c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_caea_0a7d_579c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_caea_0a7d_579c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_caea_0a7d_579c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_caea_0a7d_579c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_caea_0a7d_579c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_caea_0a7d_579c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_caea_0a7d_579c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_087c_59c3_75bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_087c_59c3_75bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_087c_59c3_75bd/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_087c_59c3_75bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_087c_59c3_75bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_087c_59c3_75bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_087c_59c3_75bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_087c_59c3_75bd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_087c_59c3_75bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9304_d962_7f0d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9304_d962_7f0d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9304_d962_7f0d/request", "", "public", "Top Dataset, enh, smina.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9304_d962_7f0d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9304_d962_7f0d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9304_d962_7f0d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9304_d962_7f0d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9304_d962_7f0d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9304_d962_7f0d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5db_439c_06cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5db_439c_06cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f5db_439c_06cf/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f5db_439c_06cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f5db_439c_06cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f5db_439c_06cf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f5db_439c_06cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f5db_439c_06cf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f5db_439c_06cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91a7_b6d7_c94b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91a7_b6d7_c94b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_91a7_b6d7_c94b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_91a7_b6d7_c94b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_91a7_b6d7_c94b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_91a7_b6d7_c94b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_91a7_b6d7_c94b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_91a7_b6d7_c94b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_91a7_b6d7_c94b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9b5_ee95_c510", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9b5_ee95_c510.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b9b5_ee95_c510/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b9b5_ee95_c510_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b9b5_ee95_c510_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b9b5_ee95_c510/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b9b5_ee95_c510.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b9b5_ee95_c510&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b9b5_ee95_c510"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b26_3ce5_5378", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b26_3ce5_5378.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b26_3ce5_5378/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b26_3ce5_5378_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b26_3ce5_5378_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b26_3ce5_5378/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b26_3ce5_5378.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b26_3ce5_5378&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6b26_3ce5_5378"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4fb_80f5_0c3c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4fb_80f5_0c3c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d4fb_80f5_0c3c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d4fb_80f5_0c3c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d4fb_80f5_0c3c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d4fb_80f5_0c3c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d4fb_80f5_0c3c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d4fb_80f5_0c3c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d4fb_80f5_0c3c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f96_f9f9_9055", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f96_f9f9_9055.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f96_f9f9_9055/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f96_f9f9_9055_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f96_f9f9_9055_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f96_f9f9_9055/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f96_f9f9_9055.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f96_f9f9_9055&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0f96_f9f9_9055"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8079_b74f_aabe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8079_b74f_aabe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8079_b74f_aabe/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8079_b74f_aabe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8079_b74f_aabe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8079_b74f_aabe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8079_b74f_aabe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8079_b74f_aabe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8079_b74f_aabe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48b9_e9df_98eb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48b9_e9df_98eb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_48b9_e9df_98eb/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_48b9_e9df_98eb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_48b9_e9df_98eb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_48b9_e9df_98eb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_48b9_e9df_98eb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_48b9_e9df_98eb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_48b9_e9df_98eb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1aa1_48e1_af58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1aa1_48e1_af58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1aa1_48e1_af58/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1aa1_48e1_af58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1aa1_48e1_af58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1aa1_48e1_af58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1aa1_48e1_af58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1aa1_48e1_af58&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1aa1_48e1_af58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed0c_513c_dc53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed0c_513c_dc53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ed0c_513c_dc53/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ed0c_513c_dc53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ed0c_513c_dc53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ed0c_513c_dc53/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ed0c_513c_dc53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ed0c_513c_dc53&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ed0c_513c_dc53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_588b_c283_d8cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_588b_c283_d8cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_588b_c283_d8cb/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_588b_c283_d8cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_588b_c283_d8cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_588b_c283_d8cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_588b_c283_d8cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_588b_c283_d8cb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_588b_c283_d8cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3401_177c_65b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3401_177c_65b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3401_177c_65b8/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3401_177c_65b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3401_177c_65b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3401_177c_65b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3401_177c_65b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3401_177c_65b8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3401_177c_65b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e178_dce8_9000", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e178_dce8_9000.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e178_dce8_9000/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e178_dce8_9000_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e178_dce8_9000_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e178_dce8_9000/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e178_dce8_9000.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e178_dce8_9000&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e178_dce8_9000"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ed8_a1f2_394b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ed8_a1f2_394b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ed8_a1f2_394b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ed8_a1f2_394b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ed8_a1f2_394b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ed8_a1f2_394b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ed8_a1f2_394b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ed8_a1f2_394b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8ed8_a1f2_394b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aac4_18a1_3e22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aac4_18a1_3e22.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aac4_18a1_3e22/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aac4_18a1_3e22_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aac4_18a1_3e22_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aac4_18a1_3e22/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aac4_18a1_3e22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aac4_18a1_3e22&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aac4_18a1_3e22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5445_3d29_11f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5445_3d29_11f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5445_3d29_11f3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5445_3d29_11f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5445_3d29_11f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5445_3d29_11f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5445_3d29_11f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5445_3d29_11f3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5445_3d29_11f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3174_3b59_db07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3174_3b59_db07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3174_3b59_db07/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3174_3b59_db07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3174_3b59_db07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3174_3b59_db07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3174_3b59_db07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3174_3b59_db07&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3174_3b59_db07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6977_71a2_7e83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6977_71a2_7e83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6977_71a2_7e83/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6977_71a2_7e83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6977_71a2_7e83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6977_71a2_7e83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6977_71a2_7e83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6977_71a2_7e83&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6977_71a2_7e83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03b5_5794_37e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03b5_5794_37e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03b5_5794_37e6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03b5_5794_37e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03b5_5794_37e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03b5_5794_37e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03b5_5794_37e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03b5_5794_37e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_03b5_5794_37e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b79b_8963_5952", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b79b_8963_5952.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b79b_8963_5952/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b79b_8963_5952_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b79b_8963_5952_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b79b_8963_5952/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b79b_8963_5952.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b79b_8963_5952&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b79b_8963_5952"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd7e_c727_7008", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd7e_c727_7008.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fd7e_c727_7008/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fd7e_c727_7008_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fd7e_c727_7008_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fd7e_c727_7008/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fd7e_c727_7008.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fd7e_c727_7008&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fd7e_c727_7008"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fa9_1bb7_f667", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fa9_1bb7_f667.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7fa9_1bb7_f667/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7fa9_1bb7_f667_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7fa9_1bb7_f667_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7fa9_1bb7_f667/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7fa9_1bb7_f667.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7fa9_1bb7_f667&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7fa9_1bb7_f667"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a474_ed6c_d4bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a474_ed6c_d4bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a474_ed6c_d4bd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a474_ed6c_d4bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a474_ed6c_d4bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a474_ed6c_d4bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a474_ed6c_d4bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a474_ed6c_d4bd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a474_ed6c_d4bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8cb_e756_7816", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8cb_e756_7816.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f8cb_e756_7816/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f8cb_e756_7816_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f8cb_e756_7816_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f8cb_e756_7816/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f8cb_e756_7816.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f8cb_e756_7816&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f8cb_e756_7816"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f7b_96b0_a1fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f7b_96b0_a1fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f7b_96b0_a1fa/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f7b_96b0_a1fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f7b_96b0_a1fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f7b_96b0_a1fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f7b_96b0_a1fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f7b_96b0_a1fa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9f7b_96b0_a1fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c29_2a03_28a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c29_2a03_28a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c29_2a03_28a2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c29_2a03_28a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c29_2a03_28a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c29_2a03_28a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c29_2a03_28a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c29_2a03_28a2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9c29_2a03_28a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2237_a84f_012e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2237_a84f_012e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2237_a84f_012e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2237_a84f_012e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2237_a84f_012e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2237_a84f_012e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2237_a84f_012e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2237_a84f_012e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2237_a84f_012e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f28f_970a_4c41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f28f_970a_4c41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f28f_970a_4c41/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f28f_970a_4c41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f28f_970a_4c41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f28f_970a_4c41/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f28f_970a_4c41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f28f_970a_4c41&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f28f_970a_4c41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efb7_1da4_d99f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efb7_1da4_d99f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_efb7_1da4_d99f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_efb7_1da4_d99f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_efb7_1da4_d99f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_efb7_1da4_d99f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_efb7_1da4_d99f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_efb7_1da4_d99f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_efb7_1da4_d99f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a07_33c1_bf73", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a07_33c1_bf73.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1a07_33c1_bf73/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1a07_33c1_bf73_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1a07_33c1_bf73_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1a07_33c1_bf73/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1a07_33c1_bf73.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1a07_33c1_bf73&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1a07_33c1_bf73"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f204_e8f5_949c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f204_e8f5_949c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f204_e8f5_949c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f204_e8f5_949c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f204_e8f5_949c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f204_e8f5_949c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f204_e8f5_949c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f204_e8f5_949c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f204_e8f5_949c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a06f_9578_7ff9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a06f_9578_7ff9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a06f_9578_7ff9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a06f_9578_7ff9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a06f_9578_7ff9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a06f_9578_7ff9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a06f_9578_7ff9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a06f_9578_7ff9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a06f_9578_7ff9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a96f_46d9_e620", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a96f_46d9_e620.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a96f_46d9_e620/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a96f_46d9_e620_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a96f_46d9_e620_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a96f_46d9_e620/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a96f_46d9_e620.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a96f_46d9_e620&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a96f_46d9_e620"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aecd_6721_a218", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aecd_6721_a218.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aecd_6721_a218/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aecd_6721_a218_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aecd_6721_a218_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aecd_6721_a218/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aecd_6721_a218.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aecd_6721_a218&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aecd_6721_a218"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1049_89c1_4cee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1049_89c1_4cee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1049_89c1_4cee/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1049_89c1_4cee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1049_89c1_4cee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1049_89c1_4cee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1049_89c1_4cee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1049_89c1_4cee&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1049_89c1_4cee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b7b1_fcb6_4ce2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b7b1_fcb6_4ce2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b7b1_fcb6_4ce2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b7b1_fcb6_4ce2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b7b1_fcb6_4ce2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b7b1_fcb6_4ce2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b7b1_fcb6_4ce2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b7b1_fcb6_4ce2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b7b1_fcb6_4ce2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_253d_8fd6_8cf5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_253d_8fd6_8cf5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_253d_8fd6_8cf5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_253d_8fd6_8cf5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_253d_8fd6_8cf5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_253d_8fd6_8cf5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_253d_8fd6_8cf5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_253d_8fd6_8cf5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_253d_8fd6_8cf5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14c1_8726_74f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14c1_8726_74f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_14c1_8726_74f2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_14c1_8726_74f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_14c1_8726_74f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_14c1_8726_74f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_14c1_8726_74f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_14c1_8726_74f2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_14c1_8726_74f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28d9_87be_80b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28d9_87be_80b1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28d9_87be_80b1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28d9_87be_80b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28d9_87be_80b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28d9_87be_80b1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28d9_87be_80b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28d9_87be_80b1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_28d9_87be_80b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_831d_2706_fe83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_831d_2706_fe83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_831d_2706_fe83/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_831d_2706_fe83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_831d_2706_fe83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_831d_2706_fe83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_831d_2706_fe83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_831d_2706_fe83&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_831d_2706_fe83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1142_a84b_74dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1142_a84b_74dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1142_a84b_74dc/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1142_a84b_74dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1142_a84b_74dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1142_a84b_74dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1142_a84b_74dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1142_a84b_74dc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1142_a84b_74dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a30e_af8d_6204", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a30e_af8d_6204.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a30e_af8d_6204/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a30e_af8d_6204_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a30e_af8d_6204_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a30e_af8d_6204/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a30e_af8d_6204.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a30e_af8d_6204&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a30e_af8d_6204"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fd0_6f45_48b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fd0_6f45_48b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1fd0_6f45_48b6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1fd0_6f45_48b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1fd0_6f45_48b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1fd0_6f45_48b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1fd0_6f45_48b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1fd0_6f45_48b6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1fd0_6f45_48b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_014e_dc8b_6ad7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_014e_dc8b_6ad7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_014e_dc8b_6ad7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_014e_dc8b_6ad7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_014e_dc8b_6ad7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_014e_dc8b_6ad7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_014e_dc8b_6ad7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_014e_dc8b_6ad7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_014e_dc8b_6ad7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2337_ccf0_324b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2337_ccf0_324b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2337_ccf0_324b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2337_ccf0_324b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2337_ccf0_324b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2337_ccf0_324b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2337_ccf0_324b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2337_ccf0_324b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2337_ccf0_324b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1693_7933_61ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1693_7933_61ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1693_7933_61ac/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1693_7933_61ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1693_7933_61ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1693_7933_61ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1693_7933_61ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1693_7933_61ac&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1693_7933_61ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea58_2e8b_d661", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea58_2e8b_d661.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ea58_2e8b_d661/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ea58_2e8b_d661_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ea58_2e8b_d661_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ea58_2e8b_d661/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ea58_2e8b_d661.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ea58_2e8b_d661&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ea58_2e8b_d661"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6028_43bb_dd51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6028_43bb_dd51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6028_43bb_dd51/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6028_43bb_dd51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6028_43bb_dd51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6028_43bb_dd51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6028_43bb_dd51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6028_43bb_dd51&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6028_43bb_dd51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b0b2_3d26_9728", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b0b2_3d26_9728.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b0b2_3d26_9728/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b0b2_3d26_9728_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b0b2_3d26_9728_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b0b2_3d26_9728/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b0b2_3d26_9728.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b0b2_3d26_9728&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b0b2_3d26_9728"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a20c_7a00_27fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a20c_7a00_27fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a20c_7a00_27fe/request", "", "public", "Top Dataset, std, qsminq.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a20c_7a00_27fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a20c_7a00_27fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a20c_7a00_27fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a20c_7a00_27fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a20c_7a00_27fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a20c_7a00_27fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19d2_044c_7e93", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19d2_044c_7e93.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_19d2_044c_7e93/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_19d2_044c_7e93_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_19d2_044c_7e93_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_19d2_044c_7e93/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_19d2_044c_7e93.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_19d2_044c_7e93&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_19d2_044c_7e93"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9c5_5f35_d004", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9c5_5f35_d004.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c9c5_5f35_d004/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c9c5_5f35_d004_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c9c5_5f35_d004_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c9c5_5f35_d004/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c9c5_5f35_d004.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c9c5_5f35_d004&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c9c5_5f35_d004"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7227_9e08_e826", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7227_9e08_e826.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7227_9e08_e826/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7227_9e08_e826_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7227_9e08_e826_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7227_9e08_e826/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7227_9e08_e826.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7227_9e08_e826&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7227_9e08_e826"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af9b_7e08_c851", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af9b_7e08_c851.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_af9b_7e08_c851/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_af9b_7e08_c851_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_af9b_7e08_c851_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_af9b_7e08_c851/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_af9b_7e08_c851.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_af9b_7e08_c851&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_af9b_7e08_c851"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95d6_5f5f_06e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95d6_5f5f_06e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_95d6_5f5f_06e0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_95d6_5f5f_06e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_95d6_5f5f_06e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_95d6_5f5f_06e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_95d6_5f5f_06e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_95d6_5f5f_06e0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_95d6_5f5f_06e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_838b_1be3_fde4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_838b_1be3_fde4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_838b_1be3_fde4/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_838b_1be3_fde4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_838b_1be3_fde4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_838b_1be3_fde4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_838b_1be3_fde4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_838b_1be3_fde4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_838b_1be3_fde4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6aa0_03dc_f7d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6aa0_03dc_f7d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6aa0_03dc_f7d4/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6aa0_03dc_f7d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6aa0_03dc_f7d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6aa0_03dc_f7d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6aa0_03dc_f7d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6aa0_03dc_f7d4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6aa0_03dc_f7d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e491_74c7_7e46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e491_74c7_7e46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e491_74c7_7e46/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e491_74c7_7e46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e491_74c7_7e46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e491_74c7_7e46/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e491_74c7_7e46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e491_74c7_7e46&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e491_74c7_7e46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_adb8_e1bb_151e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_adb8_e1bb_151e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_adb8_e1bb_151e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_adb8_e1bb_151e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_adb8_e1bb_151e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_adb8_e1bb_151e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_adb8_e1bb_151e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_adb8_e1bb_151e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_adb8_e1bb_151e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cd3_3208_b177", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cd3_3208_b177.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9cd3_3208_b177/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9cd3_3208_b177_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9cd3_3208_b177_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9cd3_3208_b177/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9cd3_3208_b177.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9cd3_3208_b177&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9cd3_3208_b177"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f98_6889_03c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f98_6889_03c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5f98_6889_03c0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5f98_6889_03c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5f98_6889_03c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5f98_6889_03c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5f98_6889_03c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5f98_6889_03c0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5f98_6889_03c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f65_c029_b91a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f65_c029_b91a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f65_c029_b91a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f65_c029_b91a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f65_c029_b91a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f65_c029_b91a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f65_c029_b91a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f65_c029_b91a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1f65_c029_b91a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f02_3b5c_fdaf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f02_3b5c_fdaf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f02_3b5c_fdaf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f02_3b5c_fdaf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f02_3b5c_fdaf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f02_3b5c_fdaf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f02_3b5c_fdaf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f02_3b5c_fdaf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1f02_3b5c_fdaf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef45_8079_2cec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef45_8079_2cec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ef45_8079_2cec/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ef45_8079_2cec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ef45_8079_2cec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ef45_8079_2cec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ef45_8079_2cec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ef45_8079_2cec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ef45_8079_2cec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70a7_e719_8c88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70a7_e719_8c88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_70a7_e719_8c88/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_70a7_e719_8c88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_70a7_e719_8c88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_70a7_e719_8c88/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_70a7_e719_8c88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_70a7_e719_8c88&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_70a7_e719_8c88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9868_e495_7890", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9868_e495_7890.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9868_e495_7890/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9868_e495_7890_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9868_e495_7890_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9868_e495_7890/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9868_e495_7890.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9868_e495_7890&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9868_e495_7890"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e571_562f_700b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e571_562f_700b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e571_562f_700b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e571_562f_700b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e571_562f_700b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e571_562f_700b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e571_562f_700b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e571_562f_700b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e571_562f_700b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fc3_9298_7109", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fc3_9298_7109.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4fc3_9298_7109/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4fc3_9298_7109_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4fc3_9298_7109_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4fc3_9298_7109/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4fc3_9298_7109.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4fc3_9298_7109&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4fc3_9298_7109"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d703_d93a_bed5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d703_d93a_bed5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d703_d93a_bed5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d703_d93a_bed5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d703_d93a_bed5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d703_d93a_bed5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d703_d93a_bed5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d703_d93a_bed5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d703_d93a_bed5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_760e_f339_53fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_760e_f339_53fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_760e_f339_53fd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_760e_f339_53fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_760e_f339_53fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_760e_f339_53fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_760e_f339_53fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_760e_f339_53fd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_760e_f339_53fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2562_f1b5_6e23", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2562_f1b5_6e23.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2562_f1b5_6e23/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2562_f1b5_6e23_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2562_f1b5_6e23_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2562_f1b5_6e23/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2562_f1b5_6e23.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2562_f1b5_6e23&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2562_f1b5_6e23"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de8d_a199_3122", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de8d_a199_3122.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_de8d_a199_3122/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_de8d_a199_3122_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_de8d_a199_3122_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_de8d_a199_3122/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_de8d_a199_3122.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_de8d_a199_3122&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_de8d_a199_3122"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff25_85f7_4cab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff25_85f7_4cab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff25_85f7_4cab/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff25_85f7_4cab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff25_85f7_4cab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff25_85f7_4cab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff25_85f7_4cab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff25_85f7_4cab&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ff25_85f7_4cab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3580_d177_1f05", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3580_d177_1f05.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3580_d177_1f05/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3580_d177_1f05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3580_d177_1f05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3580_d177_1f05/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3580_d177_1f05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3580_d177_1f05&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3580_d177_1f05"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_767c_33fe_1a83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_767c_33fe_1a83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_767c_33fe_1a83/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_767c_33fe_1a83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_767c_33fe_1a83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_767c_33fe_1a83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_767c_33fe_1a83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_767c_33fe_1a83&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_767c_33fe_1a83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b7b_0bca_5d4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b7b_0bca_5d4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b7b_0bca_5d4d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b7b_0bca_5d4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b7b_0bca_5d4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b7b_0bca_5d4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b7b_0bca_5d4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b7b_0bca_5d4d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7b7b_0bca_5d4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_61f5_7213_d8ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_61f5_7213_d8ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_61f5_7213_d8ac/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_61f5_7213_d8ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_61f5_7213_d8ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_61f5_7213_d8ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_61f5_7213_d8ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_61f5_7213_d8ac&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_61f5_7213_d8ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf99_a802_8a2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf99_a802_8a2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf99_a802_8a2f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf99_a802_8a2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf99_a802_8a2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf99_a802_8a2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf99_a802_8a2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf99_a802_8a2f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cf99_a802_8a2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cbe_f52a_25f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cbe_f52a_25f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2cbe_f52a_25f3/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2cbe_f52a_25f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2cbe_f52a_25f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2cbe_f52a_25f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2cbe_f52a_25f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2cbe_f52a_25f3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2cbe_f52a_25f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a89d_6eef_3057", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a89d_6eef_3057.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a89d_6eef_3057/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a89d_6eef_3057_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a89d_6eef_3057_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a89d_6eef_3057/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a89d_6eef_3057.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a89d_6eef_3057&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a89d_6eef_3057"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d16_d819_edf1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d16_d819_edf1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d16_d819_edf1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d16_d819_edf1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d16_d819_edf1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d16_d819_edf1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d16_d819_edf1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d16_d819_edf1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d16_d819_edf1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f612_ea67_17e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f612_ea67_17e4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f612_ea67_17e4/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f612_ea67_17e4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f612_ea67_17e4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f612_ea67_17e4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f612_ea67_17e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f612_ea67_17e4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f612_ea67_17e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f42_7c0f_639f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f42_7c0f_639f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f42_7c0f_639f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f42_7c0f_639f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f42_7c0f_639f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f42_7c0f_639f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f42_7c0f_639f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f42_7c0f_639f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8f42_7c0f_639f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c01_681b_0deb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c01_681b_0deb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1c01_681b_0deb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1c01_681b_0deb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1c01_681b_0deb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1c01_681b_0deb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1c01_681b_0deb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1c01_681b_0deb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1c01_681b_0deb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_865d_062a_c376", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_865d_062a_c376.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_865d_062a_c376/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_865d_062a_c376_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_865d_062a_c376_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_865d_062a_c376/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_865d_062a_c376.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_865d_062a_c376&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_865d_062a_c376"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06e0_0214_2f2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06e0_0214_2f2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_06e0_0214_2f2a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_06e0_0214_2f2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_06e0_0214_2f2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_06e0_0214_2f2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_06e0_0214_2f2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_06e0_0214_2f2a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_06e0_0214_2f2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b13c_30e6_a0ad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b13c_30e6_a0ad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b13c_30e6_a0ad/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b13c_30e6_a0ad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b13c_30e6_a0ad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b13c_30e6_a0ad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b13c_30e6_a0ad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b13c_30e6_a0ad&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b13c_30e6_a0ad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a630_e574_07e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a630_e574_07e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a630_e574_07e5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a630_e574_07e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a630_e574_07e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a630_e574_07e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a630_e574_07e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a630_e574_07e5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a630_e574_07e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fb6_5d87_3c07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fb6_5d87_3c07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4fb6_5d87_3c07/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4fb6_5d87_3c07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4fb6_5d87_3c07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4fb6_5d87_3c07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4fb6_5d87_3c07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4fb6_5d87_3c07&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4fb6_5d87_3c07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e03c_ecde_6ddf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e03c_ecde_6ddf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e03c_ecde_6ddf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e03c_ecde_6ddf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e03c_ecde_6ddf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e03c_ecde_6ddf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e03c_ecde_6ddf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e03c_ecde_6ddf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e03c_ecde_6ddf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a856_19db_a5d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a856_19db_a5d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a856_19db_a5d5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a856_19db_a5d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a856_19db_a5d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a856_19db_a5d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a856_19db_a5d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a856_19db_a5d5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a856_19db_a5d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c88_4ee5_6f39", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c88_4ee5_6f39.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c88_4ee5_6f39/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c88_4ee5_6f39_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c88_4ee5_6f39_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c88_4ee5_6f39/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c88_4ee5_6f39.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c88_4ee5_6f39&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0c88_4ee5_6f39"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8a1_5719_b476", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8a1_5719_b476.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f8a1_5719_b476/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f8a1_5719_b476_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f8a1_5719_b476_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f8a1_5719_b476/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f8a1_5719_b476.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f8a1_5719_b476&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f8a1_5719_b476"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1d7_6bc1_ced7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1d7_6bc1_ced7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f1d7_6bc1_ced7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f1d7_6bc1_ced7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f1d7_6bc1_ced7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f1d7_6bc1_ced7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f1d7_6bc1_ced7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f1d7_6bc1_ced7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f1d7_6bc1_ced7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53ae_ea38_f082", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53ae_ea38_f082.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_53ae_ea38_f082/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_53ae_ea38_f082_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_53ae_ea38_f082_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_53ae_ea38_f082/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_53ae_ea38_f082.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_53ae_ea38_f082&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_53ae_ea38_f082"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8790_8df1_4d91", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8790_8df1_4d91.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8790_8df1_4d91/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8790_8df1_4d91_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8790_8df1_4d91_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8790_8df1_4d91/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8790_8df1_4d91.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8790_8df1_4d91&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8790_8df1_4d91"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f86_1140_d23f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f86_1140_d23f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6f86_1140_d23f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6f86_1140_d23f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6f86_1140_d23f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6f86_1140_d23f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6f86_1140_d23f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6f86_1140_d23f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6f86_1140_d23f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2124_cef3_09b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2124_cef3_09b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2124_cef3_09b9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2124_cef3_09b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2124_cef3_09b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2124_cef3_09b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2124_cef3_09b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2124_cef3_09b9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2124_cef3_09b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eec7_9f31_21bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eec7_9f31_21bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eec7_9f31_21bb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eec7_9f31_21bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eec7_9f31_21bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eec7_9f31_21bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eec7_9f31_21bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eec7_9f31_21bb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eec7_9f31_21bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4a4_6d3f_9789", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4a4_6d3f_9789.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a4a4_6d3f_9789/request", "", "public", "Top Dataset, std, smina.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a4a4_6d3f_9789_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a4a4_6d3f_9789_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a4a4_6d3f_9789/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a4a4_6d3f_9789.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a4a4_6d3f_9789&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a4a4_6d3f_9789"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fec8_fb76_70f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fec8_fb76_70f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fec8_fb76_70f6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fec8_fb76_70f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fec8_fb76_70f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fec8_fb76_70f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fec8_fb76_70f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fec8_fb76_70f6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fec8_fb76_70f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_606e_525e_bd82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_606e_525e_bd82.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_606e_525e_bd82/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_606e_525e_bd82_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_606e_525e_bd82_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_606e_525e_bd82/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_606e_525e_bd82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_606e_525e_bd82&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_606e_525e_bd82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_719e_77c6_d92d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_719e_77c6_d92d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_719e_77c6_d92d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_719e_77c6_d92d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_719e_77c6_d92d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_719e_77c6_d92d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_719e_77c6_d92d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_719e_77c6_d92d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_719e_77c6_d92d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b470_8154_a7e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b470_8154_a7e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b470_8154_a7e6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b470_8154_a7e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b470_8154_a7e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b470_8154_a7e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b470_8154_a7e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b470_8154_a7e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b470_8154_a7e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfd9_2609_61dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfd9_2609_61dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dfd9_2609_61dd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dfd9_2609_61dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dfd9_2609_61dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dfd9_2609_61dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dfd9_2609_61dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dfd9_2609_61dd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dfd9_2609_61dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ea6_2e04_eb96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ea6_2e04_eb96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ea6_2e04_eb96/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ea6_2e04_eb96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ea6_2e04_eb96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ea6_2e04_eb96/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ea6_2e04_eb96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ea6_2e04_eb96&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8ea6_2e04_eb96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41d0_145f_337e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41d0_145f_337e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_41d0_145f_337e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_41d0_145f_337e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_41d0_145f_337e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_41d0_145f_337e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_41d0_145f_337e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_41d0_145f_337e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_41d0_145f_337e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99c0_b304_46be", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99c0_b304_46be.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99c0_b304_46be/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99c0_b304_46be_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99c0_b304_46be_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99c0_b304_46be/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99c0_b304_46be.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99c0_b304_46be&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_99c0_b304_46be"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f242_afc4_fceb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f242_afc4_fceb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f242_afc4_fceb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f242_afc4_fceb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f242_afc4_fceb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f242_afc4_fceb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f242_afc4_fceb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f242_afc4_fceb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f242_afc4_fceb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fec_e828_a030", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fec_e828_a030.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1fec_e828_a030/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1fec_e828_a030_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1fec_e828_a030_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1fec_e828_a030/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1fec_e828_a030.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1fec_e828_a030&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1fec_e828_a030"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_681f_621c_8fd7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_681f_621c_8fd7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_681f_621c_8fd7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_681f_621c_8fd7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_681f_621c_8fd7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_681f_621c_8fd7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_681f_621c_8fd7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_681f_621c_8fd7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_681f_621c_8fd7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4cf_9abf_b834", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4cf_9abf_b834.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e4cf_9abf_b834/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e4cf_9abf_b834_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e4cf_9abf_b834_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e4cf_9abf_b834/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e4cf_9abf_b834.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e4cf_9abf_b834&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e4cf_9abf_b834"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f913_e9aa_00f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f913_e9aa_00f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f913_e9aa_00f3/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f913_e9aa_00f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f913_e9aa_00f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f913_e9aa_00f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f913_e9aa_00f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f913_e9aa_00f3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f913_e9aa_00f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9c8_dba2_5720", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9c8_dba2_5720.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e9c8_dba2_5720/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e9c8_dba2_5720_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e9c8_dba2_5720_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e9c8_dba2_5720/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e9c8_dba2_5720.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e9c8_dba2_5720&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e9c8_dba2_5720"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_75ce_ca82_4c12", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_75ce_ca82_4c12.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_75ce_ca82_4c12/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_75ce_ca82_4c12_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_75ce_ca82_4c12_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_75ce_ca82_4c12/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_75ce_ca82_4c12.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_75ce_ca82_4c12&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_75ce_ca82_4c12"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d53_feba_5b14", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d53_feba_5b14.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d53_feba_5b14/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d53_feba_5b14_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d53_feba_5b14_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d53_feba_5b14/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d53_feba_5b14.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d53_feba_5b14&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d53_feba_5b14"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb97_1a29_a44c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb97_1a29_a44c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eb97_1a29_a44c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eb97_1a29_a44c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eb97_1a29_a44c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb97_1a29_a44c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb97_1a29_a44c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb97_1a29_a44c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eb97_1a29_a44c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0551_955e_b323", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0551_955e_b323.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0551_955e_b323/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0551_955e_b323_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0551_955e_b323_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0551_955e_b323/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0551_955e_b323.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0551_955e_b323&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0551_955e_b323"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8a0_292d_895f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8a0_292d_895f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d8a0_292d_895f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d8a0_292d_895f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d8a0_292d_895f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d8a0_292d_895f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d8a0_292d_895f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d8a0_292d_895f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d8a0_292d_895f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50e4_1b3d_f6e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50e4_1b3d_f6e4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_50e4_1b3d_f6e4/request", "", "public", "Top Dataset, std, uairt.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_50e4_1b3d_f6e4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_50e4_1b3d_f6e4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50e4_1b3d_f6e4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50e4_1b3d_f6e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50e4_1b3d_f6e4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_50e4_1b3d_f6e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7360_50f3_de7e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7360_50f3_de7e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7360_50f3_de7e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7360_50f3_de7e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7360_50f3_de7e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7360_50f3_de7e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7360_50f3_de7e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7360_50f3_de7e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7360_50f3_de7e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a0f_3077_f256", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a0f_3077_f256.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8a0f_3077_f256/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8a0f_3077_f256_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8a0f_3077_f256_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8a0f_3077_f256/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8a0f_3077_f256.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8a0f_3077_f256&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8a0f_3077_f256"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fc9_d632_7c54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fc9_d632_7c54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2fc9_d632_7c54/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2fc9_d632_7c54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2fc9_d632_7c54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2fc9_d632_7c54/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2fc9_d632_7c54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2fc9_d632_7c54&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2fc9_d632_7c54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e536_80f8_c85e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e536_80f8_c85e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e536_80f8_c85e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e536_80f8_c85e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e536_80f8_c85e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e536_80f8_c85e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e536_80f8_c85e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e536_80f8_c85e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e536_80f8_c85e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5ed_c394_b0bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5ed_c394_b0bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f5ed_c394_b0bf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f5ed_c394_b0bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f5ed_c394_b0bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f5ed_c394_b0bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f5ed_c394_b0bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f5ed_c394_b0bf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f5ed_c394_b0bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93ba_e052_c3c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93ba_e052_c3c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_93ba_e052_c3c1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_93ba_e052_c3c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_93ba_e052_c3c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_93ba_e052_c3c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_93ba_e052_c3c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_93ba_e052_c3c1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_93ba_e052_c3c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff60_15d3_3ec8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff60_15d3_3ec8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff60_15d3_3ec8/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff60_15d3_3ec8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff60_15d3_3ec8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff60_15d3_3ec8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff60_15d3_3ec8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff60_15d3_3ec8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ff60_15d3_3ec8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2861_c0a4_4c5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2861_c0a4_4c5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2861_c0a4_4c5f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2861_c0a4_4c5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2861_c0a4_4c5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2861_c0a4_4c5f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2861_c0a4_4c5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2861_c0a4_4c5f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2861_c0a4_4c5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1d0_c851_6ee7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1d0_c851_6ee7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b1d0_c851_6ee7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b1d0_c851_6ee7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b1d0_c851_6ee7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b1d0_c851_6ee7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b1d0_c851_6ee7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b1d0_c851_6ee7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b1d0_c851_6ee7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc9c_18b2_a11a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc9c_18b2_a11a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc9c_18b2_a11a/request", "", "public", "Top Dataset, std, ulflx.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc9c_18b2_a11a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc9c_18b2_a11a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc9c_18b2_a11a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc9c_18b2_a11a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc9c_18b2_a11a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cc9c_18b2_a11a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ba8_8961_9aed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ba8_8961_9aed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ba8_8961_9aed/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ba8_8961_9aed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ba8_8961_9aed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ba8_8961_9aed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ba8_8961_9aed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ba8_8961_9aed&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7ba8_8961_9aed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ead3_529a_24ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ead3_529a_24ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ead3_529a_24ae/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ead3_529a_24ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ead3_529a_24ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ead3_529a_24ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ead3_529a_24ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ead3_529a_24ae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ead3_529a_24ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81e1_87dc_b3ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81e1_87dc_b3ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_81e1_87dc_b3ec/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_81e1_87dc_b3ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_81e1_87dc_b3ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_81e1_87dc_b3ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_81e1_87dc_b3ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_81e1_87dc_b3ec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_81e1_87dc_b3ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b1e_93c2_d757", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b1e_93c2_d757.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4b1e_93c2_d757/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4b1e_93c2_d757_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4b1e_93c2_d757_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4b1e_93c2_d757/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4b1e_93c2_d757.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4b1e_93c2_d757&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4b1e_93c2_d757"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4720_3f35_735b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4720_3f35_735b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4720_3f35_735b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4720_3f35_735b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4720_3f35_735b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4720_3f35_735b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4720_3f35_735b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4720_3f35_735b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4720_3f35_735b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83ac_e387_c8bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83ac_e387_c8bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_83ac_e387_c8bf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_83ac_e387_c8bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_83ac_e387_c8bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_83ac_e387_c8bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_83ac_e387_c8bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_83ac_e387_c8bf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_83ac_e387_c8bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f909_1a28_90bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f909_1a28_90bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f909_1a28_90bf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f909_1a28_90bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f909_1a28_90bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f909_1a28_90bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f909_1a28_90bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f909_1a28_90bf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f909_1a28_90bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3127_ba27_8daf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3127_ba27_8daf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3127_ba27_8daf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3127_ba27_8daf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3127_ba27_8daf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3127_ba27_8daf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3127_ba27_8daf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3127_ba27_8daf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3127_ba27_8daf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f70_b3f9_1da7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f70_b3f9_1da7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f70_b3f9_1da7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f70_b3f9_1da7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f70_b3f9_1da7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f70_b3f9_1da7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f70_b3f9_1da7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f70_b3f9_1da7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8f70_b3f9_1da7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14d9_6450_0a1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14d9_6450_0a1e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_14d9_6450_0a1e/request", "", "public", "Top Dataset, std, upstr.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_14d9_6450_0a1e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_14d9_6450_0a1e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_14d9_6450_0a1e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_14d9_6450_0a1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_14d9_6450_0a1e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_14d9_6450_0a1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bcc_7ee6_c71e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bcc_7ee6_c71e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9bcc_7ee6_c71e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9bcc_7ee6_c71e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9bcc_7ee6_c71e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9bcc_7ee6_c71e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9bcc_7ee6_c71e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9bcc_7ee6_c71e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9bcc_7ee6_c71e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_759f_a4e7_2ab9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_759f_a4e7_2ab9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_759f_a4e7_2ab9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_759f_a4e7_2ab9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_759f_a4e7_2ab9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_759f_a4e7_2ab9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_759f_a4e7_2ab9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_759f_a4e7_2ab9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_759f_a4e7_2ab9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3d7_bd9c_99cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3d7_bd9c_99cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f3d7_bd9c_99cf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f3d7_bd9c_99cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f3d7_bd9c_99cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f3d7_bd9c_99cf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f3d7_bd9c_99cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f3d7_bd9c_99cf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f3d7_bd9c_99cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b45_4075_bf5d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b45_4075_bf5d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9b45_4075_bf5d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9b45_4075_bf5d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9b45_4075_bf5d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9b45_4075_bf5d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9b45_4075_bf5d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9b45_4075_bf5d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9b45_4075_bf5d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_396e_fb9c_b5df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_396e_fb9c_b5df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_396e_fb9c_b5df/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_396e_fb9c_b5df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_396e_fb9c_b5df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_396e_fb9c_b5df/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_396e_fb9c_b5df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_396e_fb9c_b5df&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_396e_fb9c_b5df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01db_e260_cc77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01db_e260_cc77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_01db_e260_cc77/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_01db_e260_cc77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_01db_e260_cc77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_01db_e260_cc77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_01db_e260_cc77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_01db_e260_cc77&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_01db_e260_cc77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e19_97fc_89a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e19_97fc_89a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1e19_97fc_89a2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1e19_97fc_89a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1e19_97fc_89a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1e19_97fc_89a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1e19_97fc_89a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1e19_97fc_89a2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1e19_97fc_89a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85cd_8259_1279", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85cd_8259_1279.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_85cd_8259_1279/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_85cd_8259_1279_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_85cd_8259_1279_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85cd_8259_1279/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85cd_8259_1279.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85cd_8259_1279&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_85cd_8259_1279"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dccc_0bea_7258", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dccc_0bea_7258.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dccc_0bea_7258/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dccc_0bea_7258_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dccc_0bea_7258_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dccc_0bea_7258/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dccc_0bea_7258.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dccc_0bea_7258&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dccc_0bea_7258"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc04_2b3d_92e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc04_2b3d_92e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc04_2b3d_92e1/request", "", "public", "Top Dataset, std, uspeh.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc04_2b3d_92e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc04_2b3d_92e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc04_2b3d_92e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc04_2b3d_92e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc04_2b3d_92e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dc04_2b3d_92e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd05_b4e9_7702", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd05_b4e9_7702.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dd05_b4e9_7702/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dd05_b4e9_7702_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dd05_b4e9_7702_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dd05_b4e9_7702/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dd05_b4e9_7702.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dd05_b4e9_7702&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dd05_b4e9_7702"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e566_b310_9dab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e566_b310_9dab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e566_b310_9dab/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e566_b310_9dab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e566_b310_9dab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e566_b310_9dab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e566_b310_9dab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e566_b310_9dab&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e566_b310_9dab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cd8_f6f1_acb1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cd8_f6f1_acb1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9cd8_f6f1_acb1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9cd8_f6f1_acb1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9cd8_f6f1_acb1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9cd8_f6f1_acb1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9cd8_f6f1_acb1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9cd8_f6f1_acb1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9cd8_f6f1_acb1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34ad_b531_7b53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34ad_b531_7b53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_34ad_b531_7b53/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_34ad_b531_7b53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_34ad_b531_7b53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_34ad_b531_7b53/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_34ad_b531_7b53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_34ad_b531_7b53&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_34ad_b531_7b53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff2d_08d3_6a3c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff2d_08d3_6a3c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff2d_08d3_6a3c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff2d_08d3_6a3c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff2d_08d3_6a3c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff2d_08d3_6a3c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff2d_08d3_6a3c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff2d_08d3_6a3c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ff2d_08d3_6a3c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_847a_486c_d7e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_847a_486c_d7e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_847a_486c_d7e6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_847a_486c_d7e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_847a_486c_d7e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_847a_486c_d7e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_847a_486c_d7e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_847a_486c_d7e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_847a_486c_d7e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7b3_db62_c8a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7b3_db62_c8a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c7b3_db62_c8a0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c7b3_db62_c8a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c7b3_db62_c8a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c7b3_db62_c8a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c7b3_db62_c8a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c7b3_db62_c8a0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c7b3_db62_c8a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08d9_0719_05dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08d9_0719_05dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_08d9_0719_05dc/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_08d9_0719_05dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_08d9_0719_05dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_08d9_0719_05dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_08d9_0719_05dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_08d9_0719_05dc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_08d9_0719_05dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45c7_076f_c5af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45c7_076f_c5af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_45c7_076f_c5af/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_45c7_076f_c5af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_45c7_076f_c5af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_45c7_076f_c5af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_45c7_076f_c5af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_45c7_076f_c5af&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_45c7_076f_c5af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86d2_179a_a519", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86d2_179a_a519.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_86d2_179a_a519/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86d2_179a_a519_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86d2_179a_a519_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86d2_179a_a519/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86d2_179a_a519.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86d2_179a_a519&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_86d2_179a_a519"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1902_d36c_6ea2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1902_d36c_6ea2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1902_d36c_6ea2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1902_d36c_6ea2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1902_d36c_6ea2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1902_d36c_6ea2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1902_d36c_6ea2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1902_d36c_6ea2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1902_d36c_6ea2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_195e_e8da_3a6c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_195e_e8da_3a6c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_195e_e8da_3a6c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_195e_e8da_3a6c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_195e_e8da_3a6c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_195e_e8da_3a6c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_195e_e8da_3a6c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_195e_e8da_3a6c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_195e_e8da_3a6c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4966_e263_e189", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4966_e263_e189.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4966_e263_e189/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4966_e263_e189_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4966_e263_e189_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4966_e263_e189/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4966_e263_e189.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4966_e263_e189&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4966_e263_e189"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a904_b238_5528", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a904_b238_5528.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a904_b238_5528/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a904_b238_5528_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a904_b238_5528_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a904_b238_5528/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a904_b238_5528.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a904_b238_5528&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a904_b238_5528"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d06_8c82_17e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d06_8c82_17e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d06_8c82_17e6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d06_8c82_17e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d06_8c82_17e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d06_8c82_17e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d06_8c82_17e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d06_8c82_17e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4d06_8c82_17e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa48_288e_2413", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa48_288e_2413.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa48_288e_2413/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa48_288e_2413_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa48_288e_2413_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa48_288e_2413/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa48_288e_2413.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa48_288e_2413&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aa48_288e_2413"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_928e_5298_5726", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_928e_5298_5726.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_928e_5298_5726/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_928e_5298_5726_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_928e_5298_5726_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_928e_5298_5726/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_928e_5298_5726.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_928e_5298_5726&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_928e_5298_5726"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89ad_de37_46cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89ad_de37_46cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_89ad_de37_46cb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_89ad_de37_46cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_89ad_de37_46cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_89ad_de37_46cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_89ad_de37_46cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_89ad_de37_46cb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_89ad_de37_46cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c3b_04ba_8d84", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c3b_04ba_8d84.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c3b_04ba_8d84/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c3b_04ba_8d84_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c3b_04ba_8d84_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c3b_04ba_8d84/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c3b_04ba_8d84.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c3b_04ba_8d84&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5c3b_04ba_8d84"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c50_c799_3276", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c50_c799_3276.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3c50_c799_3276/request", "", "public", "Top Dataset, std, vairt.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3c50_c799_3276_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3c50_c799_3276_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c50_c799_3276/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c50_c799_3276.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c50_c799_3276&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3c50_c799_3276"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2103_cf90_c2aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2103_cf90_c2aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2103_cf90_c2aa/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2103_cf90_c2aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2103_cf90_c2aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2103_cf90_c2aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2103_cf90_c2aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2103_cf90_c2aa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2103_cf90_c2aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cc4_1a23_8c11", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cc4_1a23_8c11.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1cc4_1a23_8c11/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1cc4_1a23_8c11_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1cc4_1a23_8c11_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1cc4_1a23_8c11/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1cc4_1a23_8c11.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1cc4_1a23_8c11&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1cc4_1a23_8c11"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_011d_10c8_7876", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_011d_10c8_7876.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_011d_10c8_7876/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_011d_10c8_7876_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_011d_10c8_7876_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_011d_10c8_7876/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_011d_10c8_7876.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_011d_10c8_7876&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_011d_10c8_7876"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06dd_dc9e_f718", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06dd_dc9e_f718.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_06dd_dc9e_f718/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_06dd_dc9e_f718_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_06dd_dc9e_f718_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_06dd_dc9e_f718/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_06dd_dc9e_f718.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_06dd_dc9e_f718&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_06dd_dc9e_f718"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91ac_208c_ab0a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91ac_208c_ab0a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_91ac_208c_ab0a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_91ac_208c_ab0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_91ac_208c_ab0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_91ac_208c_ab0a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_91ac_208c_ab0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_91ac_208c_ab0a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_91ac_208c_ab0a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb94_a641_8cf0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb94_a641_8cf0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb94_a641_8cf0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb94_a641_8cf0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb94_a641_8cf0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb94_a641_8cf0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb94_a641_8cf0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb94_a641_8cf0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cb94_a641_8cf0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8c0_f25e_accd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8c0_f25e_accd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f8c0_f25e_accd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f8c0_f25e_accd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f8c0_f25e_accd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f8c0_f25e_accd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f8c0_f25e_accd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f8c0_f25e_accd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f8c0_f25e_accd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f33_7dcd_5094", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f33_7dcd_5094.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f33_7dcd_5094/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f33_7dcd_5094_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f33_7dcd_5094_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f33_7dcd_5094/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f33_7dcd_5094.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f33_7dcd_5094&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9f33_7dcd_5094"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a07e_88e6_9df5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a07e_88e6_9df5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a07e_88e6_9df5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a07e_88e6_9df5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a07e_88e6_9df5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a07e_88e6_9df5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a07e_88e6_9df5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a07e_88e6_9df5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a07e_88e6_9df5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ad3_5ba0_4850", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ad3_5ba0_4850.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2ad3_5ba0_4850/request", "", "public", "Top Dataset, std, vlflx.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2ad3_5ba0_4850_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2ad3_5ba0_4850_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2ad3_5ba0_4850/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2ad3_5ba0_4850.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2ad3_5ba0_4850&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2ad3_5ba0_4850"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8f3_ed86_78f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8f3_ed86_78f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d8f3_ed86_78f2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d8f3_ed86_78f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d8f3_ed86_78f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d8f3_ed86_78f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d8f3_ed86_78f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d8f3_ed86_78f2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d8f3_ed86_78f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8125_9d62_03e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8125_9d62_03e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8125_9d62_03e1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8125_9d62_03e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8125_9d62_03e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8125_9d62_03e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8125_9d62_03e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8125_9d62_03e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8125_9d62_03e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3c2_6ff0_f185", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3c2_6ff0_f185.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c3c2_6ff0_f185/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c3c2_6ff0_f185_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c3c2_6ff0_f185_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c3c2_6ff0_f185/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c3c2_6ff0_f185.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c3c2_6ff0_f185&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c3c2_6ff0_f185"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b41a_b09e_34b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b41a_b09e_34b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b41a_b09e_34b7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b41a_b09e_34b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b41a_b09e_34b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b41a_b09e_34b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b41a_b09e_34b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b41a_b09e_34b7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b41a_b09e_34b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00f4_d3ef_25d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00f4_d3ef_25d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_00f4_d3ef_25d4/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_00f4_d3ef_25d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_00f4_d3ef_25d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_00f4_d3ef_25d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_00f4_d3ef_25d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_00f4_d3ef_25d4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_00f4_d3ef_25d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d771_9eec_710f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d771_9eec_710f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d771_9eec_710f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d771_9eec_710f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d771_9eec_710f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d771_9eec_710f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d771_9eec_710f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d771_9eec_710f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d771_9eec_710f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58f8_a9f5_9aee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58f8_a9f5_9aee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_58f8_a9f5_9aee/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_58f8_a9f5_9aee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_58f8_a9f5_9aee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_58f8_a9f5_9aee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_58f8_a9f5_9aee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_58f8_a9f5_9aee&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_58f8_a9f5_9aee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03c2_43c0_27a9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03c2_43c0_27a9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03c2_43c0_27a9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03c2_43c0_27a9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03c2_43c0_27a9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03c2_43c0_27a9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03c2_43c0_27a9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03c2_43c0_27a9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_03c2_43c0_27a9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85a1_a457_bfe6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85a1_a457_bfe6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_85a1_a457_bfe6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_85a1_a457_bfe6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_85a1_a457_bfe6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85a1_a457_bfe6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85a1_a457_bfe6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85a1_a457_bfe6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_85a1_a457_bfe6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1bf_221e_267a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1bf_221e_267a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d1bf_221e_267a/request", "", "public", "Top Dataset, std, vpstr.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d1bf_221e_267a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d1bf_221e_267a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d1bf_221e_267a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d1bf_221e_267a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d1bf_221e_267a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d1bf_221e_267a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bbb1_edfd_2a6d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bbb1_edfd_2a6d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bbb1_edfd_2a6d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bbb1_edfd_2a6d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bbb1_edfd_2a6d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bbb1_edfd_2a6d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bbb1_edfd_2a6d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bbb1_edfd_2a6d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bbb1_edfd_2a6d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfd1_3f97_4f2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfd1_3f97_4f2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bfd1_3f97_4f2d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bfd1_3f97_4f2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bfd1_3f97_4f2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bfd1_3f97_4f2d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bfd1_3f97_4f2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bfd1_3f97_4f2d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bfd1_3f97_4f2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccb1_955e_65ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccb1_955e_65ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ccb1_955e_65ce/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ccb1_955e_65ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ccb1_955e_65ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ccb1_955e_65ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ccb1_955e_65ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ccb1_955e_65ce&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ccb1_955e_65ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54f7_b84f_a608", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54f7_b84f_a608.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54f7_b84f_a608/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54f7_b84f_a608_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54f7_b84f_a608_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54f7_b84f_a608/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54f7_b84f_a608.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54f7_b84f_a608&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_54f7_b84f_a608"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efa9_c0db_1ecf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efa9_c0db_1ecf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_efa9_c0db_1ecf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_efa9_c0db_1ecf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_efa9_c0db_1ecf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_efa9_c0db_1ecf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_efa9_c0db_1ecf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_efa9_c0db_1ecf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_efa9_c0db_1ecf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee6d_0990_484a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee6d_0990_484a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ee6d_0990_484a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ee6d_0990_484a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ee6d_0990_484a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ee6d_0990_484a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ee6d_0990_484a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ee6d_0990_484a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ee6d_0990_484a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ffe_eaf6_45a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ffe_eaf6_45a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ffe_eaf6_45a2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ffe_eaf6_45a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ffe_eaf6_45a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ffe_eaf6_45a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ffe_eaf6_45a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ffe_eaf6_45a2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3ffe_eaf6_45a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c6c0_a586_0fb7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c6c0_a586_0fb7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c6c0_a586_0fb7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c6c0_a586_0fb7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c6c0_a586_0fb7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c6c0_a586_0fb7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c6c0_a586_0fb7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c6c0_a586_0fb7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c6c0_a586_0fb7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec45_3225_8906", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec45_3225_8906.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ec45_3225_8906/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ec45_3225_8906_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ec45_3225_8906_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ec45_3225_8906/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ec45_3225_8906.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ec45_3225_8906&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ec45_3225_8906"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6673_ac7e_4549", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6673_ac7e_4549.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6673_ac7e_4549/request", "", "public", "Top Dataset, std, vspeh.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6673_ac7e_4549_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6673_ac7e_4549_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6673_ac7e_4549/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6673_ac7e_4549.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6673_ac7e_4549&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6673_ac7e_4549"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf6a_07a8_f9c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf6a_07a8_f9c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf6a_07a8_f9c1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf6a_07a8_f9c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf6a_07a8_f9c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf6a_07a8_f9c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf6a_07a8_f9c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf6a_07a8_f9c1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cf6a_07a8_f9c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4588_81f1_aa2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4588_81f1_aa2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4588_81f1_aa2f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4588_81f1_aa2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4588_81f1_aa2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4588_81f1_aa2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4588_81f1_aa2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4588_81f1_aa2f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4588_81f1_aa2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4eac_7aa3_6eaf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4eac_7aa3_6eaf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4eac_7aa3_6eaf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4eac_7aa3_6eaf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4eac_7aa3_6eaf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4eac_7aa3_6eaf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4eac_7aa3_6eaf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4eac_7aa3_6eaf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4eac_7aa3_6eaf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2979_b42b_d084", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2979_b42b_d084.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2979_b42b_d084/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2979_b42b_d084_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2979_b42b_d084_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2979_b42b_d084/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2979_b42b_d084.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2979_b42b_d084&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2979_b42b_d084"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30b3_e6bd_f0ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30b3_e6bd_f0ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_30b3_e6bd_f0ae/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_30b3_e6bd_f0ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_30b3_e6bd_f0ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_30b3_e6bd_f0ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_30b3_e6bd_f0ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_30b3_e6bd_f0ae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_30b3_e6bd_f0ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d3d_dd03_db58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d3d_dd03_db58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0d3d_dd03_db58/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0d3d_dd03_db58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0d3d_dd03_db58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0d3d_dd03_db58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0d3d_dd03_db58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0d3d_dd03_db58&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0d3d_dd03_db58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df15_27a1_6da1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df15_27a1_6da1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_df15_27a1_6da1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_df15_27a1_6da1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_df15_27a1_6da1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_df15_27a1_6da1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_df15_27a1_6da1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_df15_27a1_6da1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_df15_27a1_6da1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a50_6552_adbd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a50_6552_adbd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a50_6552_adbd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a50_6552_adbd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a50_6552_adbd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a50_6552_adbd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a50_6552_adbd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a50_6552_adbd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6a50_6552_adbd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db4e_abe4_b099", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db4e_abe4_b099.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db4e_abe4_b099/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db4e_abe4_b099_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db4e_abe4_b099_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db4e_abe4_b099/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db4e_abe4_b099.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db4e_abe4_b099&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_db4e_abe4_b099"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef03_7432_921d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef03_7432_921d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ef03_7432_921d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ef03_7432_921d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ef03_7432_921d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ef03_7432_921d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ef03_7432_921d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ef03_7432_921d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ef03_7432_921d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_23ce_69d3_65cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_23ce_69d3_65cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_23ce_69d3_65cb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_23ce_69d3_65cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_23ce_69d3_65cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_23ce_69d3_65cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_23ce_69d3_65cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_23ce_69d3_65cb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_23ce_69d3_65cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9134_6af7_cdcd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9134_6af7_cdcd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9134_6af7_cdcd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9134_6af7_cdcd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9134_6af7_cdcd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9134_6af7_cdcd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9134_6af7_cdcd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9134_6af7_cdcd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9134_6af7_cdcd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ff5_1748_e1d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ff5_1748_e1d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ff5_1748_e1d3/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ff5_1748_e1d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ff5_1748_e1d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ff5_1748_e1d3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ff5_1748_e1d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ff5_1748_e1d3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4ff5_1748_e1d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1b4_807d_6ab2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1b4_807d_6ab2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b1b4_807d_6ab2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b1b4_807d_6ab2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b1b4_807d_6ab2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b1b4_807d_6ab2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b1b4_807d_6ab2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b1b4_807d_6ab2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b1b4_807d_6ab2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4def_02da_3d00", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4def_02da_3d00.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4def_02da_3d00/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4def_02da_3d00_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4def_02da_3d00_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4def_02da_3d00/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4def_02da_3d00.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4def_02da_3d00&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4def_02da_3d00"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c99_29a7_8a23", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c99_29a7_8a23.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c99_29a7_8a23/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c99_29a7_8a23_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c99_29a7_8a23_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c99_29a7_8a23/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c99_29a7_8a23.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c99_29a7_8a23&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0c99_29a7_8a23"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5fd_c11b_b8fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5fd_c11b_b8fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5fd_c11b_b8fd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5fd_c11b_b8fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5fd_c11b_b8fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5fd_c11b_b8fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5fd_c11b_b8fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5fd_c11b_b8fd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a5fd_c11b_b8fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc3a_eb0c_b1ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc3a_eb0c_b1ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc3a_eb0c_b1ec/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc3a_eb0c_b1ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc3a_eb0c_b1ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc3a_eb0c_b1ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc3a_eb0c_b1ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc3a_eb0c_b1ec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cc3a_eb0c_b1ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebfc_fb9d_6189", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebfc_fb9d_6189.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ebfc_fb9d_6189/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ebfc_fb9d_6189_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ebfc_fb9d_6189_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ebfc_fb9d_6189/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ebfc_fb9d_6189.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ebfc_fb9d_6189&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ebfc_fb9d_6189"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aed4_5fb3_571e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aed4_5fb3_571e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aed4_5fb3_571e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aed4_5fb3_571e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aed4_5fb3_571e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aed4_5fb3_571e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aed4_5fb3_571e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aed4_5fb3_571e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aed4_5fb3_571e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79b0_e766_ec29", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79b0_e766_ec29.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_79b0_e766_ec29/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_79b0_e766_ec29_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_79b0_e766_ec29_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_79b0_e766_ec29/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_79b0_e766_ec29.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_79b0_e766_ec29&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_79b0_e766_ec29"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0380_80c0_660b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0380_80c0_660b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0380_80c0_660b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0380_80c0_660b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0380_80c0_660b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0380_80c0_660b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0380_80c0_660b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0380_80c0_660b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0380_80c0_660b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b978_84b4_470a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b978_84b4_470a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b978_84b4_470a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b978_84b4_470a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b978_84b4_470a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b978_84b4_470a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b978_84b4_470a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b978_84b4_470a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b978_84b4_470a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddbf_488d_c9f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddbf_488d_c9f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ddbf_488d_c9f5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ddbf_488d_c9f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ddbf_488d_c9f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ddbf_488d_c9f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ddbf_488d_c9f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ddbf_488d_c9f5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ddbf_488d_c9f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2aa_f30b_0c0d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2aa_f30b_0c0d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f2aa_f30b_0c0d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f2aa_f30b_0c0d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f2aa_f30b_0c0d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f2aa_f30b_0c0d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f2aa_f30b_0c0d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f2aa_f30b_0c0d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f2aa_f30b_0c0d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c992_1b9b_03eb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c992_1b9b_03eb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c992_1b9b_03eb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c992_1b9b_03eb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c992_1b9b_03eb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c992_1b9b_03eb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c992_1b9b_03eb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c992_1b9b_03eb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c992_1b9b_03eb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ee0_70cc_c2f7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ee0_70cc_c2f7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ee0_70cc_c2f7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ee0_70cc_c2f7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ee0_70cc_c2f7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ee0_70cc_c2f7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ee0_70cc_c2f7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ee0_70cc_c2f7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7ee0_70cc_c2f7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5a4_1658_8b7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5a4_1658_8b7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5a4_1658_8b7b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5a4_1658_8b7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5a4_1658_8b7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5a4_1658_8b7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5a4_1658_8b7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5a4_1658_8b7b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c5a4_1658_8b7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d200_e90c_aceb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d200_e90c_aceb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d200_e90c_aceb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d200_e90c_aceb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d200_e90c_aceb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d200_e90c_aceb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d200_e90c_aceb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d200_e90c_aceb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d200_e90c_aceb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8c5_4ff6_4794", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8c5_4ff6_4794.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a8c5_4ff6_4794/request", "", "public", "Top Dataset, std, wspd3.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a8c5_4ff6_4794_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a8c5_4ff6_4794_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a8c5_4ff6_4794/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a8c5_4ff6_4794.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a8c5_4ff6_4794&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a8c5_4ff6_4794"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6ae_2efd_d0ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6ae_2efd_d0ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f6ae_2efd_d0ea/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f6ae_2efd_d0ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f6ae_2efd_d0ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f6ae_2efd_d0ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f6ae_2efd_d0ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f6ae_2efd_d0ea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f6ae_2efd_d0ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f9a_e7f4_f0d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f9a_e7f4_f0d2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f9a_e7f4_f0d2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f9a_e7f4_f0d2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f9a_e7f4_f0d2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f9a_e7f4_f0d2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f9a_e7f4_f0d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f9a_e7f4_f0d2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2f9a_e7f4_f0d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00b7_4bf0_4236", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00b7_4bf0_4236.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_00b7_4bf0_4236/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_00b7_4bf0_4236_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_00b7_4bf0_4236_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_00b7_4bf0_4236/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_00b7_4bf0_4236.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_00b7_4bf0_4236&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_00b7_4bf0_4236"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab9a_fb18_725a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab9a_fb18_725a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab9a_fb18_725a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab9a_fb18_725a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab9a_fb18_725a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab9a_fb18_725a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab9a_fb18_725a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab9a_fb18_725a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ab9a_fb18_725a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c74_c965_4d19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c74_c965_4d19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c74_c965_4d19/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c74_c965_4d19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c74_c965_4d19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c74_c965_4d19/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c74_c965_4d19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c74_c965_4d19&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5c74_c965_4d19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c83_03dd_6389", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c83_03dd_6389.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c83_03dd_6389/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 1st Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c83_03dd_6389_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c83_03dd_6389_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c83_03dd_6389/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c83_03dd_6389.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c83_03dd_6389&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5c83_03dd_6389"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d384_3b56_de4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d384_3b56_de4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d384_3b56_de4d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 3rd Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d384_3b56_de4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d384_3b56_de4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d384_3b56_de4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d384_3b56_de4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d384_3b56_de4d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d384_3b56_de4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_064e_2410_cfc1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_064e_2410_cfc1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_064e_2410_cfc1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 5th Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_064e_2410_cfc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_064e_2410_cfc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_064e_2410_cfc1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_064e_2410_cfc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_064e_2410_cfc1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_064e_2410_cfc1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb93_4a1f_1adb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb93_4a1f_1adb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb93_4a1f_1adb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Standard Deviation at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb93_4a1f_1adb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb93_4a1f_1adb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb93_4a1f_1adb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb93_4a1f_1adb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb93_4a1f_1adb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fb93_4a1f_1adb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e544_3a94_b69e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e544_3a94_b69e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e544_3a94_b69e/request", "", "public", "Top Dataset, enh, air.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e544_3a94_b69e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e544_3a94_b69e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e544_3a94_b69e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e544_3a94_b69e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e544_3a94_b69e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e544_3a94_b69e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2289_bad6_53f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2289_bad6_53f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2289_bad6_53f1/request", "", "public", "Top Dataset, enh, air.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2289_bad6_53f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2289_bad6_53f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2289_bad6_53f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2289_bad6_53f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2289_bad6_53f1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2289_bad6_53f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_695a_2adf_ab4a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_695a_2adf_ab4a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_695a_2adf_ab4a/request", "", "public", "Top Dataset, enh, air.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_695a_2adf_ab4a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_695a_2adf_ab4a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_695a_2adf_ab4a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_695a_2adf_ab4a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_695a_2adf_ab4a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_695a_2adf_ab4a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3212_1e70_011e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3212_1e70_011e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3212_1e70_011e/request", "", "public", "Top Dataset, enh, air.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3212_1e70_011e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3212_1e70_011e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3212_1e70_011e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3212_1e70_011e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3212_1e70_011e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3212_1e70_011e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f140_79fd_8774", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f140_79fd_8774.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f140_79fd_8774/request", "", "public", "Top Dataset, enh, air.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f140_79fd_8774_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f140_79fd_8774_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f140_79fd_8774/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f140_79fd_8774.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f140_79fd_8774&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f140_79fd_8774"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f94e_4297_a749", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f94e_4297_a749.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f94e_4297_a749/request", "", "public", "Top Dataset, enh, air.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f94e_4297_a749_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f94e_4297_a749_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f94e_4297_a749/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f94e_4297_a749.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f94e_4297_a749&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f94e_4297_a749"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9aa8_d6f1_552d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9aa8_d6f1_552d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9aa8_d6f1_552d/request", "", "public", "Top Dataset, enh, air.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9aa8_d6f1_552d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9aa8_d6f1_552d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9aa8_d6f1_552d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9aa8_d6f1_552d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9aa8_d6f1_552d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9aa8_d6f1_552d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14ad_13ed_3e2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14ad_13ed_3e2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_14ad_13ed_3e2d/request", "", "public", "Top Dataset, enh, air.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_14ad_13ed_3e2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_14ad_13ed_3e2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_14ad_13ed_3e2d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_14ad_13ed_3e2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_14ad_13ed_3e2d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_14ad_13ed_3e2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cac5_f5a5_0e57", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cac5_f5a5_0e57.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cac5_f5a5_0e57/request", "", "public", "Top Dataset, enh, air.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cac5_f5a5_0e57_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cac5_f5a5_0e57_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cac5_f5a5_0e57/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cac5_f5a5_0e57.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cac5_f5a5_0e57&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cac5_f5a5_0e57"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfa4_69c6_a3b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfa4_69c6_a3b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dfa4_69c6_a3b0/request", "", "public", "Top Dataset, enh, air.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dfa4_69c6_a3b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dfa4_69c6_a3b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dfa4_69c6_a3b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dfa4_69c6_a3b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dfa4_69c6_a3b0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dfa4_69c6_a3b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6279_8f97_0724", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6279_8f97_0724.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6279_8f97_0724/request", "", "public", "Top Dataset, enh, qsminq.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6279_8f97_0724_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6279_8f97_0724_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6279_8f97_0724/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6279_8f97_0724.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6279_8f97_0724&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6279_8f97_0724"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c13e_aac0_469f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c13e_aac0_469f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c13e_aac0_469f/request", "", "public", "Top Dataset, enh, qsminq.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c13e_aac0_469f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c13e_aac0_469f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c13e_aac0_469f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c13e_aac0_469f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c13e_aac0_469f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c13e_aac0_469f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a93_1c8b_d8cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a93_1c8b_d8cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a93_1c8b_d8cd/request", "", "public", "Top Dataset, enh, qsminq.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a93_1c8b_d8cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a93_1c8b_d8cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a93_1c8b_d8cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a93_1c8b_d8cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a93_1c8b_d8cd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5a93_1c8b_d8cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f224_e22d_8ad6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f224_e22d_8ad6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f224_e22d_8ad6/request", "", "public", "Top Dataset, enh, qsminq.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f224_e22d_8ad6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f224_e22d_8ad6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f224_e22d_8ad6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f224_e22d_8ad6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f224_e22d_8ad6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f224_e22d_8ad6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d93_ce7c_ac1a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d93_ce7c_ac1a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9d93_ce7c_ac1a/request", "", "public", "Top Dataset, enh, qsminq.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9d93_ce7c_ac1a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9d93_ce7c_ac1a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9d93_ce7c_ac1a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9d93_ce7c_ac1a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9d93_ce7c_ac1a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9d93_ce7c_ac1a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8865_ca89_117d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8865_ca89_117d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8865_ca89_117d/request", "", "public", "Top Dataset, enh, qsminq.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8865_ca89_117d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8865_ca89_117d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8865_ca89_117d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8865_ca89_117d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8865_ca89_117d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8865_ca89_117d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b79_4386_ee1b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b79_4386_ee1b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b79_4386_ee1b/request", "", "public", "Top Dataset, enh, qsminq.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b79_4386_ee1b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b79_4386_ee1b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b79_4386_ee1b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b79_4386_ee1b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b79_4386_ee1b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6b79_4386_ee1b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab3f_4b1f_9f1c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab3f_4b1f_9f1c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab3f_4b1f_9f1c/request", "", "public", "Top Dataset, enh, qsminq.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab3f_4b1f_9f1c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab3f_4b1f_9f1c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab3f_4b1f_9f1c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab3f_4b1f_9f1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab3f_4b1f_9f1c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ab3f_4b1f_9f1c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ea7_d548_6f07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ea7_d548_6f07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ea7_d548_6f07/request", "", "public", "Top Dataset, enh, qsminq.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ea7_d548_6f07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ea7_d548_6f07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ea7_d548_6f07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ea7_d548_6f07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ea7_d548_6f07&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8ea7_d548_6f07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03d4_86f1_cedf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03d4_86f1_cedf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03d4_86f1_cedf/request", "", "public", "Top Dataset, enh, qsminq.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03d4_86f1_cedf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03d4_86f1_cedf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03d4_86f1_cedf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03d4_86f1_cedf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03d4_86f1_cedf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_03d4_86f1_cedf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88a3_b8ea_a6f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88a3_b8ea_a6f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_88a3_b8ea_a6f3/request", "", "public", "Top Dataset, enh, smina.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_88a3_b8ea_a6f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_88a3_b8ea_a6f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_88a3_b8ea_a6f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_88a3_b8ea_a6f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_88a3_b8ea_a6f3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_88a3_b8ea_a6f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2dbe_6caa_6a1f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2dbe_6caa_6a1f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2dbe_6caa_6a1f/request", "", "public", "Top Dataset, enh, smina.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2dbe_6caa_6a1f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2dbe_6caa_6a1f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2dbe_6caa_6a1f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2dbe_6caa_6a1f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2dbe_6caa_6a1f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2dbe_6caa_6a1f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c18_d0ee_414a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c18_d0ee_414a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8c18_d0ee_414a/request", "", "public", "Top Dataset, enh, smina.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8c18_d0ee_414a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8c18_d0ee_414a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8c18_d0ee_414a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8c18_d0ee_414a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8c18_d0ee_414a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8c18_d0ee_414a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf5c_6df3_5b67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf5c_6df3_5b67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf5c_6df3_5b67/request", "", "public", "Top Dataset, enh, smina.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf5c_6df3_5b67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf5c_6df3_5b67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf5c_6df3_5b67/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf5c_6df3_5b67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf5c_6df3_5b67&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cf5c_6df3_5b67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0936_7e65_c266", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0936_7e65_c266.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0936_7e65_c266/request", "", "public", "Top Dataset, enh, smina.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0936_7e65_c266_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0936_7e65_c266_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0936_7e65_c266/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0936_7e65_c266.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0936_7e65_c266&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0936_7e65_c266"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ed8_b63b_e53f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ed8_b63b_e53f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ed8_b63b_e53f/request", "", "public", "Top Dataset, enh, smina.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ed8_b63b_e53f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ed8_b63b_e53f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ed8_b63b_e53f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ed8_b63b_e53f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ed8_b63b_e53f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4ed8_b63b_e53f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d37_a2e6_0028", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d37_a2e6_0028.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d37_a2e6_0028/request", "", "public", "Top Dataset, enh, smina.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d37_a2e6_0028_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d37_a2e6_0028_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d37_a2e6_0028/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d37_a2e6_0028.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d37_a2e6_0028&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d37_a2e6_0028"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d646_d58b_51c8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d646_d58b_51c8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d646_d58b_51c8/request", "", "public", "Top Dataset, enh, smina.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d646_d58b_51c8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d646_d58b_51c8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d646_d58b_51c8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d646_d58b_51c8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d646_d58b_51c8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d646_d58b_51c8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc00_8d86_38dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc00_8d86_38dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc00_8d86_38dd/request", "", "public", "Top Dataset, enh, smina.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc00_8d86_38dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc00_8d86_38dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc00_8d86_38dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc00_8d86_38dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc00_8d86_38dd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dc00_8d86_38dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d752_c3fe_f8fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d752_c3fe_f8fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d752_c3fe_f8fe/request", "", "public", "Top Dataset, enh, smina.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d752_c3fe_f8fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d752_c3fe_f8fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d752_c3fe_f8fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d752_c3fe_f8fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d752_c3fe_f8fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d752_c3fe_f8fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be13_2c2c_483c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be13_2c2c_483c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_be13_2c2c_483c/request", "", "public", "Top Dataset, enh, sst.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_be13_2c2c_483c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_be13_2c2c_483c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_be13_2c2c_483c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_be13_2c2c_483c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_be13_2c2c_483c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_be13_2c2c_483c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af1a_ac23_922f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af1a_ac23_922f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_af1a_ac23_922f/request", "", "public", "Top Dataset, enh, sst.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_af1a_ac23_922f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_af1a_ac23_922f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_af1a_ac23_922f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_af1a_ac23_922f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_af1a_ac23_922f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_af1a_ac23_922f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c1b_5128_86fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c1b_5128_86fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6c1b_5128_86fe/request", "", "public", "Top Dataset, enh, sst.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6c1b_5128_86fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6c1b_5128_86fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6c1b_5128_86fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6c1b_5128_86fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6c1b_5128_86fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6c1b_5128_86fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_503d_aefd_364a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_503d_aefd_364a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_503d_aefd_364a/request", "", "public", "Top Dataset, enh, sst.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_503d_aefd_364a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_503d_aefd_364a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_503d_aefd_364a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_503d_aefd_364a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_503d_aefd_364a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_503d_aefd_364a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f10c_e9b7_bc8f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f10c_e9b7_bc8f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f10c_e9b7_bc8f/request", "", "public", "Top Dataset, enh, sst.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f10c_e9b7_bc8f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f10c_e9b7_bc8f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f10c_e9b7_bc8f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f10c_e9b7_bc8f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f10c_e9b7_bc8f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f10c_e9b7_bc8f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_928e_e4b9_900c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_928e_e4b9_900c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_928e_e4b9_900c/request", "", "public", "Top Dataset, enh, sst.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_928e_e4b9_900c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_928e_e4b9_900c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_928e_e4b9_900c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_928e_e4b9_900c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_928e_e4b9_900c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_928e_e4b9_900c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e747_f61c_3eb4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e747_f61c_3eb4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e747_f61c_3eb4/request", "", "public", "Top Dataset, enh, sst.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e747_f61c_3eb4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e747_f61c_3eb4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e747_f61c_3eb4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e747_f61c_3eb4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e747_f61c_3eb4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e747_f61c_3eb4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e6f_eebb_2deb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e6f_eebb_2deb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7e6f_eebb_2deb/request", "", "public", "Top Dataset, enh, sst.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7e6f_eebb_2deb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7e6f_eebb_2deb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e6f_eebb_2deb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e6f_eebb_2deb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e6f_eebb_2deb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7e6f_eebb_2deb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_11ef_2a11_e62c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_11ef_2a11_e62c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_11ef_2a11_e62c/request", "", "public", "Top Dataset, enh, sst.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_11ef_2a11_e62c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_11ef_2a11_e62c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_11ef_2a11_e62c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_11ef_2a11_e62c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_11ef_2a11_e62c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_11ef_2a11_e62c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ebc_f25d_2bd0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ebc_f25d_2bd0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ebc_f25d_2bd0/request", "", "public", "Top Dataset, enh, sst.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ebc_f25d_2bd0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ebc_f25d_2bd0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ebc_f25d_2bd0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ebc_f25d_2bd0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ebc_f25d_2bd0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1ebc_f25d_2bd0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87a0_8fb3_1f7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87a0_8fb3_1f7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_87a0_8fb3_1f7b/request", "", "public", "Top Dataset, std, air.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_87a0_8fb3_1f7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_87a0_8fb3_1f7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_87a0_8fb3_1f7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_87a0_8fb3_1f7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_87a0_8fb3_1f7b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_87a0_8fb3_1f7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54c9_d804_a6e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54c9_d804_a6e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54c9_d804_a6e1/request", "", "public", "Top Dataset, std, air.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54c9_d804_a6e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54c9_d804_a6e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54c9_d804_a6e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54c9_d804_a6e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54c9_d804_a6e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_54c9_d804_a6e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_649d_54ee_de6f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_649d_54ee_de6f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_649d_54ee_de6f/request", "", "public", "Top Dataset, std, air.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_649d_54ee_de6f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_649d_54ee_de6f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_649d_54ee_de6f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_649d_54ee_de6f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_649d_54ee_de6f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_649d_54ee_de6f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b29d_c87d_393e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b29d_c87d_393e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b29d_c87d_393e/request", "", "public", "Top Dataset, std, air.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b29d_c87d_393e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b29d_c87d_393e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b29d_c87d_393e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b29d_c87d_393e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b29d_c87d_393e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b29d_c87d_393e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfe2_3fbd_c880", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfe2_3fbd_c880.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cfe2_3fbd_c880/request", "", "public", "Top Dataset, std, air.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cfe2_3fbd_c880_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cfe2_3fbd_c880_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cfe2_3fbd_c880/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cfe2_3fbd_c880.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cfe2_3fbd_c880&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cfe2_3fbd_c880"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0408_57be_ff7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0408_57be_ff7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0408_57be_ff7b/request", "", "public", "Top Dataset, std, air.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0408_57be_ff7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0408_57be_ff7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0408_57be_ff7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0408_57be_ff7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0408_57be_ff7b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0408_57be_ff7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5f3_9de4_5b63", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5f3_9de4_5b63.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5f3_9de4_5b63/request", "", "public", "Top Dataset, std, air.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5f3_9de4_5b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5f3_9de4_5b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5f3_9de4_5b63/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5f3_9de4_5b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5f3_9de4_5b63&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a5f3_9de4_5b63"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf4c_8700_bb23", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf4c_8700_bb23.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf4c_8700_bb23/request", "", "public", "Top Dataset, std, air.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf4c_8700_bb23_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf4c_8700_bb23_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf4c_8700_bb23/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf4c_8700_bb23.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf4c_8700_bb23&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bf4c_8700_bb23"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f17d_22d0_af5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f17d_22d0_af5b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f17d_22d0_af5b/request", "", "public", "Top Dataset, std, air.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f17d_22d0_af5b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f17d_22d0_af5b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f17d_22d0_af5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f17d_22d0_af5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f17d_22d0_af5b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f17d_22d0_af5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13ad_3a91_72b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13ad_3a91_72b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_13ad_3a91_72b8/request", "", "public", "Top Dataset, std, air.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_13ad_3a91_72b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_13ad_3a91_72b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_13ad_3a91_72b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_13ad_3a91_72b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_13ad_3a91_72b8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_13ad_3a91_72b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9dba_e7b1_7e78", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9dba_e7b1_7e78.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9dba_e7b1_7e78/request", "", "public", "Top Dataset, std, cldc.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9dba_e7b1_7e78_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9dba_e7b1_7e78_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9dba_e7b1_7e78/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9dba_e7b1_7e78.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9dba_e7b1_7e78&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9dba_e7b1_7e78"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4751_1fc3_0b37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4751_1fc3_0b37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4751_1fc3_0b37/request", "", "public", "Top Dataset, std, cldc.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4751_1fc3_0b37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4751_1fc3_0b37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4751_1fc3_0b37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4751_1fc3_0b37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4751_1fc3_0b37&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4751_1fc3_0b37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2828_8fe4_18e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2828_8fe4_18e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2828_8fe4_18e2/request", "", "public", "Top Dataset, std, cldc.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2828_8fe4_18e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2828_8fe4_18e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2828_8fe4_18e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2828_8fe4_18e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2828_8fe4_18e2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2828_8fe4_18e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8daa_28b5_ea1b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8daa_28b5_ea1b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8daa_28b5_ea1b/request", "", "public", "Top Dataset, std, cldc.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8daa_28b5_ea1b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8daa_28b5_ea1b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8daa_28b5_ea1b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8daa_28b5_ea1b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8daa_28b5_ea1b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8daa_28b5_ea1b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4cff_85dd_b8fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4cff_85dd_b8fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4cff_85dd_b8fb/request", "", "public", "Top Dataset, std, cldc.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4cff_85dd_b8fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4cff_85dd_b8fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4cff_85dd_b8fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4cff_85dd_b8fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4cff_85dd_b8fb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4cff_85dd_b8fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f5b_089a_ee7c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f5b_089a_ee7c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f5b_089a_ee7c/request", "", "public", "Top Dataset, std, cldc.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f5b_089a_ee7c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f5b_089a_ee7c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f5b_089a_ee7c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f5b_089a_ee7c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f5b_089a_ee7c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2f5b_089a_ee7c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dba_ff89_f8ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dba_ff89_f8ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1dba_ff89_f8ca/request", "", "public", "Top Dataset, std, cldc.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1dba_ff89_f8ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1dba_ff89_f8ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1dba_ff89_f8ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1dba_ff89_f8ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1dba_ff89_f8ca&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1dba_ff89_f8ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6520_2866_91f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6520_2866_91f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6520_2866_91f2/request", "", "public", "Top Dataset, std, cldc.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6520_2866_91f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6520_2866_91f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6520_2866_91f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6520_2866_91f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6520_2866_91f2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6520_2866_91f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_624f_e6ec_d97e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_624f_e6ec_d97e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_624f_e6ec_d97e/request", "", "public", "Top Dataset, std, cldc.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_624f_e6ec_d97e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_624f_e6ec_d97e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_624f_e6ec_d97e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_624f_e6ec_d97e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_624f_e6ec_d97e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_624f_e6ec_d97e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abec_23e6_fb72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abec_23e6_fb72.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_abec_23e6_fb72/request", "", "public", "Top Dataset, std, cldc.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_abec_23e6_fb72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_abec_23e6_fb72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_abec_23e6_fb72/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_abec_23e6_fb72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_abec_23e6_fb72&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_abec_23e6_fb72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d41_55ee_1324", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d41_55ee_1324.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d41_55ee_1324/request", "", "public", "Top Dataset, std, lflx.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d41_55ee_1324_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d41_55ee_1324_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d41_55ee_1324/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d41_55ee_1324.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d41_55ee_1324&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d41_55ee_1324"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79a8_b549_cfaa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79a8_b549_cfaa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_79a8_b549_cfaa/request", "", "public", "Top Dataset, std, lflx.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_79a8_b549_cfaa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_79a8_b549_cfaa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_79a8_b549_cfaa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_79a8_b549_cfaa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_79a8_b549_cfaa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_79a8_b549_cfaa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_547c_a9ca_fa20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_547c_a9ca_fa20.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_547c_a9ca_fa20/request", "", "public", "Top Dataset, std, lflx.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_547c_a9ca_fa20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_547c_a9ca_fa20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_547c_a9ca_fa20/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_547c_a9ca_fa20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_547c_a9ca_fa20&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_547c_a9ca_fa20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2db3_b88c_c57d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2db3_b88c_c57d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2db3_b88c_c57d/request", "", "public", "Top Dataset, std, lflx.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2db3_b88c_c57d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2db3_b88c_c57d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2db3_b88c_c57d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2db3_b88c_c57d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2db3_b88c_c57d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2db3_b88c_c57d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7821_3d52_f732", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7821_3d52_f732.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7821_3d52_f732/request", "", "public", "Top Dataset, std, lflx.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7821_3d52_f732_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7821_3d52_f732_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7821_3d52_f732/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7821_3d52_f732.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7821_3d52_f732&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7821_3d52_f732"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2527_69d7_fbfa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2527_69d7_fbfa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2527_69d7_fbfa/request", "", "public", "Top Dataset, std, lflx.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2527_69d7_fbfa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2527_69d7_fbfa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2527_69d7_fbfa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2527_69d7_fbfa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2527_69d7_fbfa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2527_69d7_fbfa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24de_0c1c_e781", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24de_0c1c_e781.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_24de_0c1c_e781/request", "", "public", "Top Dataset, std, lflx.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_24de_0c1c_e781_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_24de_0c1c_e781_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_24de_0c1c_e781/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_24de_0c1c_e781.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_24de_0c1c_e781&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_24de_0c1c_e781"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa6c_4a0f_a348", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa6c_4a0f_a348.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fa6c_4a0f_a348/request", "", "public", "Top Dataset, std, lflx.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fa6c_4a0f_a348_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fa6c_4a0f_a348_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fa6c_4a0f_a348/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fa6c_4a0f_a348.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fa6c_4a0f_a348&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fa6c_4a0f_a348"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb5b_0e91_4f03", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb5b_0e91_4f03.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bb5b_0e91_4f03/request", "", "public", "Top Dataset, std, lflx.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bb5b_0e91_4f03_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bb5b_0e91_4f03_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bb5b_0e91_4f03/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bb5b_0e91_4f03.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bb5b_0e91_4f03&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bb5b_0e91_4f03"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bf4_fdd7_62b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bf4_fdd7_62b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2bf4_fdd7_62b9/request", "", "public", "Top Dataset, std, lflx.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2bf4_fdd7_62b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2bf4_fdd7_62b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2bf4_fdd7_62b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2bf4_fdd7_62b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2bf4_fdd7_62b9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2bf4_fdd7_62b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56f4_10c5_e2cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56f4_10c5_e2cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_56f4_10c5_e2cd/request", "", "public", "Top Dataset, std, qsminq.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_56f4_10c5_e2cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_56f4_10c5_e2cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_56f4_10c5_e2cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_56f4_10c5_e2cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_56f4_10c5_e2cd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_56f4_10c5_e2cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_603a_aaa2_33af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_603a_aaa2_33af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_603a_aaa2_33af/request", "", "public", "Top Dataset, std, qsminq.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_603a_aaa2_33af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_603a_aaa2_33af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_603a_aaa2_33af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_603a_aaa2_33af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_603a_aaa2_33af&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_603a_aaa2_33af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef82_52a2_322c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef82_52a2_322c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ef82_52a2_322c/request", "", "public", "Top Dataset, std, qsminq.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ef82_52a2_322c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ef82_52a2_322c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ef82_52a2_322c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ef82_52a2_322c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ef82_52a2_322c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ef82_52a2_322c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_969b_e47d_a6e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_969b_e47d_a6e4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_969b_e47d_a6e4/request", "", "public", "Top Dataset, std, qsminq.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_969b_e47d_a6e4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_969b_e47d_a6e4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_969b_e47d_a6e4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_969b_e47d_a6e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_969b_e47d_a6e4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_969b_e47d_a6e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99c3_058d_8b06", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99c3_058d_8b06.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99c3_058d_8b06/request", "", "public", "Top Dataset, std, qsminq.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99c3_058d_8b06_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99c3_058d_8b06_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99c3_058d_8b06/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99c3_058d_8b06.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99c3_058d_8b06&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_99c3_058d_8b06"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0600_4e32_9400", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0600_4e32_9400.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0600_4e32_9400/request", "", "public", "Top Dataset, std, qsminq.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0600_4e32_9400_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0600_4e32_9400_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0600_4e32_9400/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0600_4e32_9400.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0600_4e32_9400&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0600_4e32_9400"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_578e_f257_ce05", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_578e_f257_ce05.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_578e_f257_ce05/request", "", "public", "Top Dataset, std, qsminq.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_578e_f257_ce05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_578e_f257_ce05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_578e_f257_ce05/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_578e_f257_ce05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_578e_f257_ce05&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_578e_f257_ce05"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_615e_965e_85d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_615e_965e_85d1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_615e_965e_85d1/request", "", "public", "Top Dataset, std, qsminq.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_615e_965e_85d1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_615e_965e_85d1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_615e_965e_85d1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_615e_965e_85d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_615e_965e_85d1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_615e_965e_85d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_25e9_62ca_5ff6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_25e9_62ca_5ff6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_25e9_62ca_5ff6/request", "", "public", "Top Dataset, std, qsminq.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_25e9_62ca_5ff6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_25e9_62ca_5ff6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_25e9_62ca_5ff6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_25e9_62ca_5ff6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_25e9_62ca_5ff6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_25e9_62ca_5ff6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5307_bf70_cef8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5307_bf70_cef8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5307_bf70_cef8/request", "", "public", "Top Dataset, std, qsminq.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5307_bf70_cef8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5307_bf70_cef8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5307_bf70_cef8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5307_bf70_cef8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5307_bf70_cef8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5307_bf70_cef8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3ec_6e93_ac54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3ec_6e93_ac54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c3ec_6e93_ac54/request", "", "public", "Top Dataset, std, rhum.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c3ec_6e93_ac54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c3ec_6e93_ac54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c3ec_6e93_ac54/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c3ec_6e93_ac54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c3ec_6e93_ac54&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c3ec_6e93_ac54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_74b5_bafc_c697", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_74b5_bafc_c697.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_74b5_bafc_c697/request", "", "public", "Top Dataset, std, rhum.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_74b5_bafc_c697_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_74b5_bafc_c697_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_74b5_bafc_c697/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_74b5_bafc_c697.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_74b5_bafc_c697&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_74b5_bafc_c697"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0d8_9f6a_3120", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0d8_9f6a_3120.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e0d8_9f6a_3120/request", "", "public", "Top Dataset, std, rhum.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e0d8_9f6a_3120_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e0d8_9f6a_3120_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e0d8_9f6a_3120/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e0d8_9f6a_3120.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e0d8_9f6a_3120&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e0d8_9f6a_3120"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfc5_92e5_9a3a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfc5_92e5_9a3a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cfc5_92e5_9a3a/request", "", "public", "Top Dataset, std, rhum.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cfc5_92e5_9a3a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cfc5_92e5_9a3a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cfc5_92e5_9a3a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cfc5_92e5_9a3a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cfc5_92e5_9a3a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cfc5_92e5_9a3a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7da_08be_88c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7da_08be_88c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c7da_08be_88c3/request", "", "public", "Top Dataset, std, rhum.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c7da_08be_88c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c7da_08be_88c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c7da_08be_88c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c7da_08be_88c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c7da_08be_88c3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c7da_08be_88c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de80_7287_3170", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de80_7287_3170.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_de80_7287_3170/request", "", "public", "Top Dataset, std, rhum.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_de80_7287_3170_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_de80_7287_3170_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_de80_7287_3170/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_de80_7287_3170.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_de80_7287_3170&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_de80_7287_3170"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cf4_c6b1_b084", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cf4_c6b1_b084.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1cf4_c6b1_b084/request", "", "public", "Top Dataset, std, rhum.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1cf4_c6b1_b084_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1cf4_c6b1_b084_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1cf4_c6b1_b084/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1cf4_c6b1_b084.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1cf4_c6b1_b084&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1cf4_c6b1_b084"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dda_6637_b0b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dda_6637_b0b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8dda_6637_b0b0/request", "", "public", "Top Dataset, std, rhum.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8dda_6637_b0b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8dda_6637_b0b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8dda_6637_b0b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8dda_6637_b0b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8dda_6637_b0b0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8dda_6637_b0b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_114d_d8dc_c2c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_114d_d8dc_c2c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_114d_d8dc_c2c6/request", "", "public", "Top Dataset, std, rhum.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_114d_d8dc_c2c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_114d_d8dc_c2c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_114d_d8dc_c2c6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_114d_d8dc_c2c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_114d_d8dc_c2c6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_114d_d8dc_c2c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4841_86e2_1b6b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4841_86e2_1b6b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4841_86e2_1b6b/request", "", "public", "Top Dataset, std, rhum.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4841_86e2_1b6b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4841_86e2_1b6b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4841_86e2_1b6b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4841_86e2_1b6b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4841_86e2_1b6b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4841_86e2_1b6b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e3c1_b96d_30de", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e3c1_b96d_30de.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e3c1_b96d_30de/request", "", "public", "Top Dataset, std, sflx.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e3c1_b96d_30de_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e3c1_b96d_30de_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e3c1_b96d_30de/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e3c1_b96d_30de.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e3c1_b96d_30de&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e3c1_b96d_30de"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_694c_40b4_0570", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_694c_40b4_0570.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_694c_40b4_0570/request", "", "public", "Top Dataset, std, sflx.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_694c_40b4_0570_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_694c_40b4_0570_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_694c_40b4_0570/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_694c_40b4_0570.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_694c_40b4_0570&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_694c_40b4_0570"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2250_9e63_adef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2250_9e63_adef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2250_9e63_adef/request", "", "public", "Top Dataset, std, sflx.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2250_9e63_adef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2250_9e63_adef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2250_9e63_adef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2250_9e63_adef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2250_9e63_adef&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2250_9e63_adef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae61_a6fb_05bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae61_a6fb_05bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae61_a6fb_05bb/request", "", "public", "Top Dataset, std, sflx.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae61_a6fb_05bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae61_a6fb_05bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae61_a6fb_05bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae61_a6fb_05bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae61_a6fb_05bb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ae61_a6fb_05bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a85_0487_67a5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a85_0487_67a5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a85_0487_67a5/request", "", "public", "Top Dataset, std, sflx.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a85_0487_67a5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a85_0487_67a5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a85_0487_67a5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a85_0487_67a5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a85_0487_67a5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0a85_0487_67a5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e2a_b018_dfb8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e2a_b018_dfb8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e2a_b018_dfb8/request", "", "public", "Top Dataset, std, sflx.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e2a_b018_dfb8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e2a_b018_dfb8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e2a_b018_dfb8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e2a_b018_dfb8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e2a_b018_dfb8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3e2a_b018_dfb8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eac8_6632_b1b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eac8_6632_b1b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eac8_6632_b1b5/request", "", "public", "Top Dataset, std, sflx.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eac8_6632_b1b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eac8_6632_b1b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eac8_6632_b1b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eac8_6632_b1b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eac8_6632_b1b5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eac8_6632_b1b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28f7_4da1_39fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28f7_4da1_39fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28f7_4da1_39fb/request", "", "public", "Top Dataset, std, sflx.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28f7_4da1_39fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28f7_4da1_39fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28f7_4da1_39fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28f7_4da1_39fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28f7_4da1_39fb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_28f7_4da1_39fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c5f_0dac_82a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c5f_0dac_82a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8c5f_0dac_82a6/request", "", "public", "Top Dataset, std, sflx.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8c5f_0dac_82a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8c5f_0dac_82a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8c5f_0dac_82a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8c5f_0dac_82a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8c5f_0dac_82a6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8c5f_0dac_82a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e162_c58a_7de0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e162_c58a_7de0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e162_c58a_7de0/request", "", "public", "Top Dataset, std, sflx.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e162_c58a_7de0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e162_c58a_7de0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e162_c58a_7de0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e162_c58a_7de0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e162_c58a_7de0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e162_c58a_7de0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b10_0b02_65b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b10_0b02_65b1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8b10_0b02_65b1/request", "", "public", "Top Dataset, std, shum.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8b10_0b02_65b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8b10_0b02_65b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8b10_0b02_65b1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8b10_0b02_65b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8b10_0b02_65b1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8b10_0b02_65b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fcd5_8d8c_ba77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fcd5_8d8c_ba77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fcd5_8d8c_ba77/request", "", "public", "Top Dataset, std, shum.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fcd5_8d8c_ba77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fcd5_8d8c_ba77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fcd5_8d8c_ba77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fcd5_8d8c_ba77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fcd5_8d8c_ba77&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fcd5_8d8c_ba77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9806_e7af_66aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9806_e7af_66aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9806_e7af_66aa/request", "", "public", "Top Dataset, std, shum.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9806_e7af_66aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9806_e7af_66aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9806_e7af_66aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9806_e7af_66aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9806_e7af_66aa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9806_e7af_66aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_345b_5e91_d0f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_345b_5e91_d0f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_345b_5e91_d0f6/request", "", "public", "Top Dataset, std, shum.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_345b_5e91_d0f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_345b_5e91_d0f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_345b_5e91_d0f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_345b_5e91_d0f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_345b_5e91_d0f6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_345b_5e91_d0f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99f4_1284_5a68", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99f4_1284_5a68.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99f4_1284_5a68/request", "", "public", "Top Dataset, std, shum.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99f4_1284_5a68_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99f4_1284_5a68_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99f4_1284_5a68/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99f4_1284_5a68.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99f4_1284_5a68&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_99f4_1284_5a68"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e62e_503e_189a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e62e_503e_189a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e62e_503e_189a/request", "", "public", "Top Dataset, std, shum.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e62e_503e_189a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e62e_503e_189a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e62e_503e_189a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e62e_503e_189a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e62e_503e_189a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e62e_503e_189a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8253_f49a_62f4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8253_f49a_62f4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8253_f49a_62f4/request", "", "public", "Top Dataset, std, shum.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8253_f49a_62f4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8253_f49a_62f4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8253_f49a_62f4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8253_f49a_62f4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8253_f49a_62f4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8253_f49a_62f4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f827_b9fb_f0b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f827_b9fb_f0b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f827_b9fb_f0b6/request", "", "public", "Top Dataset, std, shum.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f827_b9fb_f0b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f827_b9fb_f0b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f827_b9fb_f0b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f827_b9fb_f0b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f827_b9fb_f0b6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f827_b9fb_f0b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4217_cf69_4dae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4217_cf69_4dae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4217_cf69_4dae/request", "", "public", "Top Dataset, std, shum.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4217_cf69_4dae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4217_cf69_4dae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4217_cf69_4dae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4217_cf69_4dae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4217_cf69_4dae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4217_cf69_4dae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_158f_f3f5_e71f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_158f_f3f5_e71f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_158f_f3f5_e71f/request", "", "public", "Top Dataset, std, shum.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_158f_f3f5_e71f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_158f_f3f5_e71f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_158f_f3f5_e71f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_158f_f3f5_e71f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_158f_f3f5_e71f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_158f_f3f5_e71f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc26_2f73_52fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc26_2f73_52fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc26_2f73_52fe/request", "", "public", "Top Dataset, std, slp.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc26_2f73_52fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc26_2f73_52fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc26_2f73_52fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc26_2f73_52fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc26_2f73_52fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fc26_2f73_52fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f5d_8d20_8a65", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f5d_8d20_8a65.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f5d_8d20_8a65/request", "", "public", "Top Dataset, std, slp.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f5d_8d20_8a65_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f5d_8d20_8a65_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f5d_8d20_8a65/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f5d_8d20_8a65.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f5d_8d20_8a65&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7f5d_8d20_8a65"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5900_02b1_6dd1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5900_02b1_6dd1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5900_02b1_6dd1/request", "", "public", "Top Dataset, std, slp.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5900_02b1_6dd1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5900_02b1_6dd1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5900_02b1_6dd1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5900_02b1_6dd1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5900_02b1_6dd1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5900_02b1_6dd1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbb6_c90d_096b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbb6_c90d_096b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dbb6_c90d_096b/request", "", "public", "Top Dataset, std, slp.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dbb6_c90d_096b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dbb6_c90d_096b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dbb6_c90d_096b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dbb6_c90d_096b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dbb6_c90d_096b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dbb6_c90d_096b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f63d_2dba_ec54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f63d_2dba_ec54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f63d_2dba_ec54/request", "", "public", "Top Dataset, std, slp.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f63d_2dba_ec54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f63d_2dba_ec54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f63d_2dba_ec54/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f63d_2dba_ec54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f63d_2dba_ec54&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f63d_2dba_ec54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dc4_abae_6014", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dc4_abae_6014.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4dc4_abae_6014/request", "", "public", "Top Dataset, std, slp.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4dc4_abae_6014_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4dc4_abae_6014_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4dc4_abae_6014/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4dc4_abae_6014.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4dc4_abae_6014&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4dc4_abae_6014"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5387_0dec_5fa5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5387_0dec_5fa5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5387_0dec_5fa5/request", "", "public", "Top Dataset, std, slp.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5387_0dec_5fa5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5387_0dec_5fa5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5387_0dec_5fa5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5387_0dec_5fa5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5387_0dec_5fa5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5387_0dec_5fa5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e612_f76a_b1bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e612_f76a_b1bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e612_f76a_b1bf/request", "", "public", "Top Dataset, std, slp.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e612_f76a_b1bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e612_f76a_b1bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e612_f76a_b1bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e612_f76a_b1bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e612_f76a_b1bf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e612_f76a_b1bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a31a_efac_d3d6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a31a_efac_d3d6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a31a_efac_d3d6/request", "", "public", "Top Dataset, std, slp.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a31a_efac_d3d6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a31a_efac_d3d6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a31a_efac_d3d6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a31a_efac_d3d6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a31a_efac_d3d6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a31a_efac_d3d6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7665_e04e_34ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7665_e04e_34ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7665_e04e_34ec/request", "", "public", "Top Dataset, std, slp.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7665_e04e_34ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7665_e04e_34ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7665_e04e_34ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7665_e04e_34ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7665_e04e_34ec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7665_e04e_34ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2225_d3d5_6580", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2225_d3d5_6580.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2225_d3d5_6580/request", "", "public", "Top Dataset, std, smina.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2225_d3d5_6580_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2225_d3d5_6580_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2225_d3d5_6580/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2225_d3d5_6580.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2225_d3d5_6580&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2225_d3d5_6580"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dca2_ac6a_6fec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dca2_ac6a_6fec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dca2_ac6a_6fec/request", "", "public", "Top Dataset, std, smina.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dca2_ac6a_6fec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dca2_ac6a_6fec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dca2_ac6a_6fec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dca2_ac6a_6fec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dca2_ac6a_6fec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dca2_ac6a_6fec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f63d_fd77_a5b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f63d_fd77_a5b1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f63d_fd77_a5b1/request", "", "public", "Top Dataset, std, smina.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f63d_fd77_a5b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f63d_fd77_a5b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f63d_fd77_a5b1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f63d_fd77_a5b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f63d_fd77_a5b1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f63d_fd77_a5b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91b7_2287_80e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91b7_2287_80e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_91b7_2287_80e6/request", "", "public", "Top Dataset, std, smina.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_91b7_2287_80e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_91b7_2287_80e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_91b7_2287_80e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_91b7_2287_80e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_91b7_2287_80e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_91b7_2287_80e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca85_01e5_c75e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca85_01e5_c75e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca85_01e5_c75e/request", "", "public", "Top Dataset, std, smina.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca85_01e5_c75e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca85_01e5_c75e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca85_01e5_c75e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca85_01e5_c75e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca85_01e5_c75e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ca85_01e5_c75e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b4c_62d2_eb9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b4c_62d2_eb9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4b4c_62d2_eb9d/request", "", "public", "Top Dataset, std, smina.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4b4c_62d2_eb9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4b4c_62d2_eb9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4b4c_62d2_eb9d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4b4c_62d2_eb9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4b4c_62d2_eb9d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4b4c_62d2_eb9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d54_b65a_ee2b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d54_b65a_ee2b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d54_b65a_ee2b/request", "", "public", "Top Dataset, std, smina.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d54_b65a_ee2b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d54_b65a_ee2b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d54_b65a_ee2b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d54_b65a_ee2b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d54_b65a_ee2b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d54_b65a_ee2b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_201c_f4f7_ace8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_201c_f4f7_ace8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_201c_f4f7_ace8/request", "", "public", "Top Dataset, std, smina.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_201c_f4f7_ace8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_201c_f4f7_ace8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_201c_f4f7_ace8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_201c_f4f7_ace8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_201c_f4f7_ace8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_201c_f4f7_ace8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c1f_729f_0b7f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c1f_729f_0b7f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6c1f_729f_0b7f/request", "", "public", "Top Dataset, std, smina.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6c1f_729f_0b7f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6c1f_729f_0b7f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6c1f_729f_0b7f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6c1f_729f_0b7f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6c1f_729f_0b7f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6c1f_729f_0b7f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_060e_d578_864e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_060e_d578_864e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_060e_d578_864e/request", "", "public", "Top Dataset, std, smina.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_060e_d578_864e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_060e_d578_864e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_060e_d578_864e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_060e_d578_864e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_060e_d578_864e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_060e_d578_864e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2828_6d44_e37e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2828_6d44_e37e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2828_6d44_e37e/request", "", "public", "Top Dataset, std, sst.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2828_6d44_e37e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2828_6d44_e37e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2828_6d44_e37e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2828_6d44_e37e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2828_6d44_e37e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2828_6d44_e37e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6760_111e_b125", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6760_111e_b125.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6760_111e_b125/request", "", "public", "Top Dataset, std, sst.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6760_111e_b125_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6760_111e_b125_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6760_111e_b125/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6760_111e_b125.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6760_111e_b125&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6760_111e_b125"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab73_36e3_5f70", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab73_36e3_5f70.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab73_36e3_5f70/request", "", "public", "Top Dataset, std, sst.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab73_36e3_5f70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab73_36e3_5f70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab73_36e3_5f70/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab73_36e3_5f70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab73_36e3_5f70&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ab73_36e3_5f70"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e1c_b6f3_698a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e1c_b6f3_698a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7e1c_b6f3_698a/request", "", "public", "Top Dataset, std, sst.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7e1c_b6f3_698a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7e1c_b6f3_698a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e1c_b6f3_698a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e1c_b6f3_698a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e1c_b6f3_698a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7e1c_b6f3_698a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9cc_c1fd_1219", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9cc_c1fd_1219.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a9cc_c1fd_1219/request", "", "public", "Top Dataset, std, sst.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9cc_c1fd_1219_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9cc_c1fd_1219_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9cc_c1fd_1219/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9cc_c1fd_1219.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9cc_c1fd_1219&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a9cc_c1fd_1219"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d613_0daf_0f2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d613_0daf_0f2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d613_0daf_0f2a/request", "", "public", "Top Dataset, std, sst.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d613_0daf_0f2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d613_0daf_0f2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d613_0daf_0f2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d613_0daf_0f2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d613_0daf_0f2a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d613_0daf_0f2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f601_edd3_9957", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f601_edd3_9957.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f601_edd3_9957/request", "", "public", "Top Dataset, std, sst.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f601_edd3_9957_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f601_edd3_9957_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f601_edd3_9957/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f601_edd3_9957.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f601_edd3_9957&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f601_edd3_9957"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b9c_0fc6_9226", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b9c_0fc6_9226.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3b9c_0fc6_9226/request", "", "public", "Top Dataset, std, sst.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3b9c_0fc6_9226_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3b9c_0fc6_9226_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3b9c_0fc6_9226/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3b9c_0fc6_9226.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3b9c_0fc6_9226&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3b9c_0fc6_9226"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bcd_e43f_51c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bcd_e43f_51c5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2bcd_e43f_51c5/request", "", "public", "Top Dataset, std, sst.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2bcd_e43f_51c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2bcd_e43f_51c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2bcd_e43f_51c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2bcd_e43f_51c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2bcd_e43f_51c5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2bcd_e43f_51c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5881_405f_f1e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5881_405f_f1e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5881_405f_f1e5/request", "", "public", "Top Dataset, std, sst.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5881_405f_f1e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5881_405f_f1e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5881_405f_f1e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5881_405f_f1e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5881_405f_f1e5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5881_405f_f1e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d306_b00f_66b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d306_b00f_66b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d306_b00f_66b0/request", "", "public", "Top Dataset, std, uairt.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d306_b00f_66b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d306_b00f_66b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d306_b00f_66b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d306_b00f_66b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d306_b00f_66b0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d306_b00f_66b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ffd_e7af_88e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ffd_e7af_88e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6ffd_e7af_88e5/request", "", "public", "Top Dataset, std, uairt.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6ffd_e7af_88e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6ffd_e7af_88e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ffd_e7af_88e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ffd_e7af_88e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ffd_e7af_88e5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6ffd_e7af_88e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a5e_5816_a5f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a5e_5816_a5f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a5e_5816_a5f1/request", "", "public", "Top Dataset, std, uairt.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a5e_5816_a5f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a5e_5816_a5f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a5e_5816_a5f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a5e_5816_a5f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a5e_5816_a5f1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5a5e_5816_a5f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2aef_1916_6694", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2aef_1916_6694.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2aef_1916_6694/request", "", "public", "Top Dataset, std, uairt.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2aef_1916_6694_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2aef_1916_6694_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2aef_1916_6694/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2aef_1916_6694.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2aef_1916_6694&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2aef_1916_6694"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da6b_ac2e_afe9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da6b_ac2e_afe9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da6b_ac2e_afe9/request", "", "public", "Top Dataset, std, uairt.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da6b_ac2e_afe9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da6b_ac2e_afe9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da6b_ac2e_afe9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da6b_ac2e_afe9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da6b_ac2e_afe9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_da6b_ac2e_afe9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5c1_642c_9333", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5c1_642c_9333.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5c1_642c_9333/request", "", "public", "Top Dataset, std, uairt.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5c1_642c_9333_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5c1_642c_9333_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5c1_642c_9333/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5c1_642c_9333.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5c1_642c_9333&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e5c1_642c_9333"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd1c_144f_b69e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd1c_144f_b69e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bd1c_144f_b69e/request", "", "public", "Top Dataset, std, uairt.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bd1c_144f_b69e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bd1c_144f_b69e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bd1c_144f_b69e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bd1c_144f_b69e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bd1c_144f_b69e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bd1c_144f_b69e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ae4_81e1_db62", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ae4_81e1_db62.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ae4_81e1_db62/request", "", "public", "Top Dataset, std, uairt.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ae4_81e1_db62_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ae4_81e1_db62_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ae4_81e1_db62/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ae4_81e1_db62.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ae4_81e1_db62&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1ae4_81e1_db62"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9205_71b3_8443", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9205_71b3_8443.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9205_71b3_8443/request", "", "public", "Top Dataset, std, uairt.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9205_71b3_8443_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9205_71b3_8443_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9205_71b3_8443/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9205_71b3_8443.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9205_71b3_8443&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9205_71b3_8443"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f2e_f3d4_e7e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f2e_f3d4_e7e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4f2e_f3d4_e7e0/request", "", "public", "Top Dataset, std, uairt.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4f2e_f3d4_e7e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4f2e_f3d4_e7e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4f2e_f3d4_e7e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4f2e_f3d4_e7e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4f2e_f3d4_e7e0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4f2e_f3d4_e7e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_142d_4483_7819", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_142d_4483_7819.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_142d_4483_7819/request", "", "public", "Top Dataset, std, ulflx.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_142d_4483_7819_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_142d_4483_7819_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_142d_4483_7819/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_142d_4483_7819.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_142d_4483_7819&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_142d_4483_7819"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b01d_298c_d242", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b01d_298c_d242.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b01d_298c_d242/request", "", "public", "Top Dataset, std, ulflx.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b01d_298c_d242_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b01d_298c_d242_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b01d_298c_d242/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b01d_298c_d242.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b01d_298c_d242&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b01d_298c_d242"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60cb_6313_acdf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60cb_6313_acdf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_60cb_6313_acdf/request", "", "public", "Top Dataset, std, ulflx.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_60cb_6313_acdf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_60cb_6313_acdf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_60cb_6313_acdf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_60cb_6313_acdf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_60cb_6313_acdf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_60cb_6313_acdf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7071_02cf_2587", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7071_02cf_2587.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7071_02cf_2587/request", "", "public", "Top Dataset, std, ulflx.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7071_02cf_2587_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7071_02cf_2587_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7071_02cf_2587/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7071_02cf_2587.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7071_02cf_2587&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7071_02cf_2587"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d3c_6b78_8566", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d3c_6b78_8566.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d3c_6b78_8566/request", "", "public", "Top Dataset, std, ulflx.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d3c_6b78_8566_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d3c_6b78_8566_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d3c_6b78_8566/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d3c_6b78_8566.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d3c_6b78_8566&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1d3c_6b78_8566"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be25_d2df_115f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be25_d2df_115f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_be25_d2df_115f/request", "", "public", "Top Dataset, std, ulflx.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_be25_d2df_115f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_be25_d2df_115f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_be25_d2df_115f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_be25_d2df_115f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_be25_d2df_115f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_be25_d2df_115f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5f8_f037_68fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5f8_f037_68fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d5f8_f037_68fb/request", "", "public", "Top Dataset, std, ulflx.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d5f8_f037_68fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d5f8_f037_68fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d5f8_f037_68fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d5f8_f037_68fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d5f8_f037_68fb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d5f8_f037_68fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d35_d6cc_190b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d35_d6cc_190b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d35_d6cc_190b/request", "", "public", "Top Dataset, std, ulflx.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d35_d6cc_190b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d35_d6cc_190b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d35_d6cc_190b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d35_d6cc_190b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d35_d6cc_190b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4d35_d6cc_190b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c47_8c32_a872", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c47_8c32_a872.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2c47_8c32_a872/request", "", "public", "Top Dataset, std, ulflx.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2c47_8c32_a872_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2c47_8c32_a872_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2c47_8c32_a872/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2c47_8c32_a872.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2c47_8c32_a872&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2c47_8c32_a872"] + ] + } + } + recorded_at: 2019-01-31 19:30:29 GMT + recorded_with: vcr/0.2.2, webmockr/0.3.0 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/search/index.json?searchFor=size + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.7.0.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Thu, 31 Jan 2019 19:31:25 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=search.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_da08_dcdf_2100", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_da08_dcdf_2100.graph", "", "", "public", "Extended AVHRR Polar Pathfinder Fundamental Climate Data Record (APPx CDR) [columns][rows]", "The Extended Advanced Very High Resolution Radiometer (AVHRR) Polar Pathfinder (APP-x) version-2 Thematic Climate Data Record (CDR) includes surface temperature, surface albedo, surface and the Top Of the Atmosphere (TOA) shortwave and longwave radiative fluxes, cloud properties (amount, phase, particle size, optical depth,top pressure and temperature, surface and TOA radiative effect), and ice thickness and age. The APP-x CDR has twice daily data at local solar times of 14 and 04(02) for the Arctic(Antarctic) at a spatial resolution of 25 km for both poles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [columns][rows]):\nlongitude (longitude of EASE Grid 25km resolution in the polar regions, Arctic (361,361), Antarctic (321,321), degrees_east)\nlatitude (latitude of EASE Grid 25km resolution in the polar regionsArctic (361,361), Antarctic (321,321), degrees_north)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_da08_dcdf_2100/index.json", "https://www.ngdc.noaa.gov/thredds/dodsC/arctic/Polar-APP-X_v01r01_Nhem_1400_d20160801_c20160803.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_da08_dcdf_2100.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_da08_dcdf_2100&showErrors=false&email=", "Cooperative Institute for Meteorological Studies, University of Wisconsin at Madison", "noaa_ngdc_da08_dcdf_2100"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0fe5_a4b9_3776", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0fe5_a4b9_3776.graph", "", "", "public", "Extended AVHRR Polar Pathfinder Fundamental Climate Data Record (APPx CDR) [Time][columns][rows]", "The Extended Advanced Very High Resolution Radiometer (AVHRR) Polar Pathfinder (APP-x) version-2 Thematic Climate Data Record (CDR) includes surface temperature, surface albedo, surface and the Top Of the Atmosphere (TOA) shortwave and longwave radiative fluxes, cloud properties (amount, phase, particle size, optical depth,top pressure and temperature, surface and TOA radiative effect), and ice thickness and age. The APP-x CDR has twice daily data at local solar times of 14 and 04(02) for the Arctic(Antarctic) at a spatial resolution of 25 km for both poles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time2][columns][rows]):\ncdr_surface_temperature (NOAA CDR of surface skin temperature, K)\ncdr_surface_albedo (NOAA CDR of surface broadband albedo, 1)\ncdr_surface_downwelling_shortwave_flux (NOAA CDR of surface downwelling shortwave radiative flux, W m-2)\ncdr_surface_downwelling_longwave_flux (NOAA CDR of surface downwelling longwave radiative flux, W m-2)\ncdr_surface_upwelling_shortwave_flux (NOAA CDR of surface upwelling shortwave radiative flux, W m-2)\ncdr_surface_upwelling_longwave_flux (NOAA CDR of surface upwelling longwave radiative flux, W m-2)\ncdr_cloud_binary_mask (NOAA CDR of cloud mask, 1)\ncdr_sea_ice_thickness (NOAA CDR of sea ice thickness, m)\ncdr_toa_net_downward_shortwave_flux (NOAA CDR of TOA net downward shortwave radiative flux, W m-2)\ncdr_toa_outgoing_shortwave_flux (NOAA CDR of TOA outgoing shortwave radiative flux, W m-2)\ncdr_toa_outgoing_longwave_flux (NOAA CDR of TOA outgoing longwave radiative flux, W m-2)\nsurface_type (1)\ncloud_particle_phase (1)\ncloud_particle_radius (microns)\ncloud_optical_depth (1)\ncloud_top_pressure (hPa)\ncloud_top_temperature (K)\ncloud_type (1)\nsurface_shortwave_cloud_radiative_forcing (W m-2)\nsurface_longwave_cloud_radiative_forcing (W m-2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0fe5_a4b9_3776/index.json", "https://www.ngdc.noaa.gov/thredds/dodsC/arctic/Polar-APP-X_v01r01_Nhem_1400_d20160801_c20160803.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0fe5_a4b9_3776.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0fe5_a4b9_3776&showErrors=false&email=", "Cooperative Institute for Meteorological Studies, University of Wisconsin at Madison", "noaa_ngdc_0fe5_a4b9_3776"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5253_bf9e_db32", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5253_bf9e_db32.graph", "", "", "public", "Extended AVHRR Polar Pathfinder Fundamental Climate Data Record (APPx CDR) [columns][rows]", "The Extended Advanced Very High Resolution Radiometer (AVHRR) Polar Pathfinder (APP-x) Version-2 thematic Climate Data Record (CDR) includes more than 33 years of surface temperature, surface albedo, surface and the Top Of the Atmosphere (TOA) shortwave and longwave radiative fluxes, cloud properties (amount, phase, particle size, optical depth,top pressure and temperature, surface and TOA radiative effect), and ice thickness and age. The APP-x CDR has twice daily data at local solar times of 14 and 04(02) for the Arctic(Antarctic) at a spatial resolution of 25 km for both poles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [columns][rows]):\nlongitude (longitude of EASE Grid 25km resolution in the polar regions, Arctic (361,361), Antarctic (321,321), degrees_east)\nlatitude (latitude of EASE Grid 25km resolution in the polar regionsArctic (361,361), Antarctic (321,321), degrees_north)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5253_bf9e_db32/index.json", "https://www.ngdc.noaa.gov/thredds/dodsC/arctic/Polar-APP-X_v01r01_Nhem_1400_d20160731_c20160822.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5253_bf9e_db32.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5253_bf9e_db32&showErrors=false&email=", "Cooperative Institute for Meteorological Studies, University of Wisconsin at Madison", "noaa_ngdc_5253_bf9e_db32"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0f24_2f8c_d159", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0f24_2f8c_d159.graph", "", "", "public", "Extended AVHRR Polar Pathfinder Fundamental Climate Data Record (APPx CDR) [Time][columns][rows]", "The Extended Advanced Very High Resolution Radiometer (AVHRR) Polar Pathfinder (APP-x) Version-2 thematic Climate Data Record (CDR) includes more than 33 years of surface temperature, surface albedo, surface and the Top Of the Atmosphere (TOA) shortwave and longwave radiative fluxes, cloud properties (amount, phase, particle size, optical depth,top pressure and temperature, surface and TOA radiative effect), and ice thickness and age. The APP-x CDR has twice daily data at local solar times of 14 and 04(02) for the Arctic(Antarctic) at a spatial resolution of 25 km for both poles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time2][columns][rows]):\ncdr_surface_temperature (NOAA CDR of surface skin temperature, K)\ncdr_surface_albedo (NOAA CDR of surface broadband albedo, 1)\ncdr_surface_downwelling_shortwave_flux (NOAA CDR of surface downwelling shortwave radiative flux, W m-2)\ncdr_surface_downwelling_longwave_flux (NOAA CDR of surface downwelling longwave radiative flux, W m-2)\ncdr_surface_upwelling_shortwave_flux (NOAA CDR of surface upwelling shortwave radiative flux, W m-2)\ncdr_surface_upwelling_longwave_flux (NOAA CDR of surface upwelling longwave radiative flux, W m-2)\ncdr_cloud_binary_mask (NOAA CDR of cloud mask, 1)\ncdr_sea_ice_thickness (NOAA CDR of sea ice thickness, m)\ncdr_toa_net_downward_shortwave_flux (NOAA CDR of TOA net downward shortwave radiative flux, W m-2)\ncdr_toa_outgoing_shortwave_flux (NOAA CDR of TOA outgoing shortwave radiative flux, W m-2)\ncdr_toa_outgoing_longwave_flux (NOAA CDR of TOA outgoing longwave radiative flux, W m-2)\nsurface_type (1)\ncloud_particle_phase (1)\ncloud_particle_radius (microns)\ncloud_optical_depth (1)\ncloud_top_pressure (hPa)\ncloud_top_temperature (K)\ncloud_type (1)\nsurface_shortwave_cloud_radiative_forcing (W m-2)\nsurface_longwave_cloud_radiative_forcing (W m-2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0f24_2f8c_d159/index.json", "https://www.ngdc.noaa.gov/thredds/dodsC/arctic/Polar-APP-X_v01r01_Nhem_1400_d20160731_c20160822.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0f24_2f8c_d159.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0f24_2f8c_d159&showErrors=false&email=", "Cooperative Institute for Meteorological Studies, University of Wisconsin at Madison", "noaa_ngdc_0f24_2f8c_d159"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_9f8b_ab7e_343d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_9f8b_ab7e_343d.graph", "", "", "public", "Archived Suite of NOAA Coral Reef Watch Operational Twice-Weekly Near-Real-Time Global 50km Satellite Coral Bleaching Monitoring Products [ydim][xdim]", "These are Coral Reef Watch near-real-time satellite coral bleaching monitoring products produced twice a week. CoastWatch Utilities v3.2.1 or higher (https://coastwatch.noaa.gov/cw_software.html) can be used for viewing, analyzing, and plotting the data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [ydim][xdim]):\nImage_170\nImage_171\nImage_172\nImage_173\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_9f8b_ab7e_343d/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/crw50km_test/crw_allinone_20180109.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_9f8b_ab7e_343d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_9f8b_ab7e_343d&showErrors=false&email=", "U.S. DOC/NOAA Coral Reef Watch", "noaa_nodc_9f8b_ab7e_343d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_da4e_3fc9_f107", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_da4e_3fc9_f107.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_da4e_3fc9_f107/request", "", "public", "Archived Suite of NOAA Coral Reef Watch Operational Twice-Weekly Near-Real-Time Global 50km Satellite Coral Bleaching Monitoring Products [time][latitude][longitude], 0.5\u00b0, 2000-2018", "These are Coral Reef Watch near-real-time satellite coral bleaching monitoring products produced twice a week. CoastWatch Utilities v3.2.1 or higher (https://coastwatch.noaa.gov/cw_software.html) can be used for viewing, analyzing, and plotting the data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nCRW_SST (Twice-weekly global 50km satellite nighttime sea surface temperature, degree_C)\nCRW_SSTANOMALY (Twice-weekly global 50km satellite nighttime sea surface temperature anomaly, degree_C)\nCRW_HOTSPOT (Twice-weekly global 50km satellite coral bleaching HotSpot, degree_C)\nCRW_DHW (Twice-weekly global 50km satellite coral bleaching Degree Heating Weeks, degree Celsius-weeks)\nsurface_flag (Pixel characteristics flag array)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_da4e_3fc9_f107_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_da4e_3fc9_f107_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_da4e_3fc9_f107/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/crw50km_test/crw_allinone_20180109.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_da4e_3fc9_f107.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_da4e_3fc9_f107&showErrors=false&email=", "U.S. DOC/NOAA Coral Reef Watch", "noaa_nodc_da4e_3fc9_f107"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002.graph", "", "", "public", "NWFSC Observer Fixed Gear Data, off West Coast of US, 2002-2006", "Observer Fixed Gear Data collected during 2002-2006 off West Coast of US.\n\nThis data product originates from data collected by fishery observers in the West Coast Groundfish Observer Program (WCGOP), Fishery Resource Analysis and Monitoring Division (FRAM) at the Northwest Fisheries Science Center, NOAA Fisheries. The WCGOP's goal is to improve total catch estimates by collecting information on the discarded catch (fish returned overboard at-sea) of west coast groundfish species. All data were collected according to standard protocols and data quality control established by the WCGOP. The observed portion of overall catch or landings in a fishery varies by coverage level. Since all fishing operations are not observed, neither the maps nor the data can be used to characterize the fishery completely. This is especially true for rarely-occurring species and when observed sample sizes are small. We urge caution when utilizing these data due to the complexity of groundfish management and fleet harvest dynamics. Grid cells representing less than 3 vessels and less than 10 hauls or sets are not shown due to confidentiality and to ensure adequate sample size. In the limited-entry fixed gear fishery, species discard rates (species discard weight / groundfish total catch (discard + retained weight)) are categorized by approximate quartile ranges and geo-referenced to 20 x 20 kilometer grid cells. The observed fixed gear set location (start location of fishing) was used to allocate data to 20 x 20 kilometer grid cells for calculation. Sixteen species were represented based on combined observer data from 2002-2006. The species included in this data product are dover sole (Microstomus pacificus), sablefish (Anoplopoma fimbria), longspine thornyhead (Sebastolobus altivelis), shortspine thornyhead (Sebastolobus alascanus), lingcod (Ophiodon elongatus), arrowtooth flounder (Atheresthes stomias), petrale sole (Eopsetta jordani), and the rockfishes (genus Sebastes), darkblotched rockfish (S. crameri), Pacific ocean perch (S. alutus), chilipepper (S. goodei), cowcod (S. levis), bocaccio (S. paucispinis), canary rockfish (S. pinniger), widow rockfish (S. entomelas), yelloweye rockfish (S. ruberrimus), and yellowtail rockfish (S. flavidus).\n\nPurpose: This data product was developed to provide basic groundfish discard distribution information for a wide variety of audiences. The West Coast Groundfish Observer Program conducts sampling of groundfish discarded by commercial fisheries along the entire continental U.S. West Coast. The seventeen species included in this data product are among those of most interest to the fisheries management and commercial fishing communities.\n\nData Credits: NOAA Fisheries, Northwest Fisheries Science Center, Fishery Resource Analysis & Monitoring Division, West Coast Groundfish Observer Program, Seattle, WA.\n\ncdm_data_type = Other\nVARIABLES:\nlongitude (Longitude (Center of 20x20 km Grid Cell), degrees_east)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosObsFixed2002_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosObsFixed2002_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosObsFixed2002/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Observer%20Fixed%20Gear%202002%202006.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosObsFixed2002.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosObsFixed2002&showErrors=false&email=", "NOAA NWFSC", "nwioosObsFixed2002"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002.graph", "", "", "public", "NWFSC Observer Trawl Data, off West Coast of US, 2002-2006", "Observer Trawl Data collected during 2002-2006 off West Coast of US.\n\nThis data product originates from data collected by fishery observers in the West Coast Groundfish Observer Program (WCGOP), Fishery Resource Analysis and Monitoring Division (FRAM) at the Northwest Fisheries Science Center, NOAA Fisheries. The WCGOP's goal is to improve total catch estimates by collecting information on the discarded catch (fish returned overboard at-sea) of west coast groundfish species. All data were collected according to standard protocols and data quality control established by the WCGOP. The observed portion of overall catch or landings in a fishery varies by coverage level. Since all fishing operations are not observed, neither the maps nor the data can be used to characterize the fishery completely. This is especially true for rarely-occurring species and when observed sample sizes are small. We urge caution when utilizing these data due to the complexity of groundfish management and fleet harvest dynamics. Grid cells representing less than 3 vessels and less than 10 hauls or sets are not shown due to confidentiality and to ensure adequate sample size. In the limited-entry groundfish bottom trawl fishery, species discard rates (species discard weight / groundfish total catch (discard + retained weight)) are categorized by approximate quartile ranges and geo-referenced to 10 x 10 kilometer grid cells. The observed trawl towline (line drawn from the start to end location of a trawl tow) was used to allocate data to 10 x 10 kilometer grid cells for calculation. Seventeen species were represented based on combined observer data from 2002-2006. The species included in this data product are dover sole (Microstomus pacificus), sablefish (Anoplopoma fimbria), longspine thornyhead (Sebastolobus altivelis), shortspine thornyhead (Sebastolobus alascanus), lingcod (Ophiodon elongatus), arrowtooth flounder (Atheresthes stomias), English sole (Parophrys vetulus), petrale sole (Eopsetta jordani), and the rockfishes (genus Sebastes), darkblotched rockfish (S. crameri), Pacific ocean perch (S. alutus), chilipepper (S. goodei), cowcod (S. levis), bocaccio (S. paucispinis), canary rockfish (S. pinniger), widow rockfish (S. entomelas), yelloweye rockfish (S. ruberrimus), and yellowtail rockfish (S. flavidus).\n\nPurpose: This data product was developed to provide basic groundfish discard distribution information for a wide variety of audiences. The West Coast Groundfish Observer Program conducts sampling of groundfish discarded by commercial fisheries along the entire continental U.S. West Coast. The seventeen species included in this data product are among those of most interest to the fisheries management and commercial fishing communities.\n\nData Credits: NOAA Fisheries, Northwest Fisheries Science Center, Fishery Resource Analysis & Monitoring Division, West Coast Groundfish Observer Program, Seattle, WA.\n\ncdm_data_type = Other\nVARIABLES:\nlongitude (Longitude (Center of 10x10 km Grid Cell), degrees_east)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosObsTrawl2002_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosObsTrawl2002_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosObsTrawl2002/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Observer%20Trawl%202002%202006.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosObsTrawl2002.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosObsTrawl2002&showErrors=false&email=", "NOAA NWFSC", "nwioosObsTrawl2002"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.graph", "", "", "public", "GLOBEC NEP Vertical Plankton Tow (VPT) Data, 1997-2001", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nCalifornia Current Program\nVertical Plankton Tow (VPT) Data\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10181&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/vpt%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/vpt.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ncast_no (Cast Number Within the Cruise)\nstation_id\nabund_m3 (Abundance, count m-3)\ncomments\ncounter_id\nd_n_flag (Day/Night Flag)\ngear_area (Mouth Area of Net, m2)\ngear_mesh (Net's Mesh Size, mm)\ngear_type\ngenus_species\nlife_stage\nlocal_code\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecVpt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecVpt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecVpt/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecVpt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecVpt&showErrors=false&email=", "GLOBEC", "erdGlobecVpt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "http://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_62d0_9d64_c8ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_62d0_9d64_c8ff.graph", "", "", "public", "USGS COAWST Forecast, US East Coast and Gulf of Mexico (Experimental) (coawst 4 use best) [time][eta_v][xi_v], 2013-present", "Coupled Ocean-Atmosphere-Wave-Sediment Transport (COAWST) Forecast System : United States Geological Survey (USGS) : US East Coast and Gulf of Mexico (Experimental). Best time series, taking the data from the most recent run available. Regional Ocean Modeling System (ROMS) USE Output from COAWST\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][eta_v][xi_v]):\nwetdry_mask_v (wet/dry mask on V-points)\nvbar (vertically integrated v-momentum component, meter second-1)\nsvstr (surface v-momentum stress, newton meter-2)\nbedload_Vsand_01 (bed load flux of sand in V-direction, size class 01, kilogram meter-1 s-1)\nbedload_Vsand_02 (bed load flux of sand in V-direction, size class 02, kilogram meter-1 s-1)\nbedload_Vsand_03 (bed load flux of sand in V-direction, size class 03, kilogram meter-1 s-1)\nbedload_Vsand_04 (bed load flux of sand in V-direction, size class 04, kilogram meter-1 s-1)\nbedload_Vsand_05 (bed load flux of sand in V-direction, size class 05, kilogram meter-1 s-1)\nbedload_Vsand_06 (bed load flux of sand in V-direction, size class 06, kilogram meter-1 s-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_geoport_62d0_9d64_c8ff/index.json", "https://woodshole.er.usgs.gov/project-pages/cccp/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_geoport_62d0_9d64_c8ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_geoport_62d0_9d64_c8ff&showErrors=false&email=", "USGS", "whoi_geoport_62d0_9d64_c8ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_7dd7_db97_4bbe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_7dd7_db97_4bbe.graph", "", "", "public", "USGS COAWST Forecast, US East Coast and Gulf of Mexico (Experimental) (coawst 4 use best) [time][s_rho][eta_rho][xi_rho], 2013-present", "Coupled Ocean-Atmosphere-Wave-Sediment Transport (COAWST) Forecast System : United States Geological Survey (USGS) : US East Coast and Gulf of Mexico (Experimental). Best time series, taking the data from the most recent run available. Regional Ocean Modeling System (ROMS) USE Output from COAWST\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][s_rho][eta_rho][xi_rho]):\ntemp (potential temperature, degree_C)\nsalt (salinity, PSU)\nsand_01 (suspended noncohesive sediment, size class 01, kilogram meter-3)\nsand_02 (suspended noncohesive sediment, size class 02, kilogram meter-3)\nsand_03 (suspended noncohesive sediment, size class 03, kilogram meter-3)\nsand_04 (suspended noncohesive sediment, size class 04, kilogram meter-3)\nsand_05 (suspended noncohesive sediment, size class 05, kilogram meter-3)\nsand_06 (suspended noncohesive sediment, size class 06, kilogram meter-3)\nrho (density anomaly, kilogram meter-3)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_geoport_7dd7_db97_4bbe/index.json", "https://woodshole.er.usgs.gov/project-pages/cccp/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_geoport_7dd7_db97_4bbe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_geoport_7dd7_db97_4bbe&showErrors=false&email=", "USGS", "whoi_geoport_7dd7_db97_4bbe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_a4fb_2c9c_16a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_a4fb_2c9c_16a7.graph", "", "", "public", "USGS COAWST Forecast, US East Coast and Gulf of Mexico (Experimental) (coawst 4 use best) [time][Nbed][eta_rho][xi_rho], 2013-present", "Coupled Ocean-Atmosphere-Wave-Sediment Transport (COAWST) Forecast System : United States Geological Survey (USGS) : US East Coast and Gulf of Mexico (Experimental). Best time series, taking the data from the most recent run available. Regional Ocean Modeling System (ROMS) USE Output from COAWST\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][Nbed][eta_rho][xi_rho]):\nsandfrac_01 (noncohesive sediment fraction, size class 01)\nsandfrac_02 (noncohesive sediment fraction, size class 02)\nsandfrac_03 (noncohesive sediment fraction, size class 03)\nsandfrac_04 (noncohesive sediment fraction, size class 04)\nsandfrac_05 (noncohesive sediment fraction, size class 05)\nsandfrac_06 (noncohesive sediment fraction, size class 06)\nsandmass_01 (noncohesive sediment mass, size class 01, kilogram meter-2)\nsandmass_02 (noncohesive sediment mass, size class 02, kilogram meter-2)\nsandmass_03 (noncohesive sediment mass, size class 03, kilogram meter-2)\nsandmass_04 (noncohesive sediment mass, size class 04, kilogram meter-2)\nsandmass_05 (noncohesive sediment mass, size class 05, kilogram meter-2)\nsandmass_06 (noncohesive sediment mass, size class 06, kilogram meter-2)\nbed_thickness (sediment bed layer thickness, meter)\nbed_age (sediment layer age, seconds)\nbed_porosity (sediment layer porosity)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_geoport_a4fb_2c9c_16a7/index.json", "https://woodshole.er.usgs.gov/project-pages/cccp/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_geoport_a4fb_2c9c_16a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_geoport_a4fb_2c9c_16a7&showErrors=false&email=", "USGS", "whoi_geoport_a4fb_2c9c_16a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_ed12_89ce_9592", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_ed12_89ce_9592.graph", "", "", "public", "USGS COAWST Forecast, US East Coast and Gulf of Mexico (Experimental) (coawst 4 use best) [time][eta_rho][xi_rho], 2013-present", "Coupled Ocean-Atmosphere-Wave-Sediment Transport (COAWST) Forecast System : United States Geological Survey (USGS) : US East Coast and Gulf of Mexico (Experimental). Best time series, taking the data from the most recent run available. Regional Ocean Modeling System (ROMS) USE Output from COAWST\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][eta_rho][xi_rho]):\nwetdry_mask_rho (wet/dry mask on RHO-points)\nzeta (free-surface, meter)\nUwind (surface u-wind component, meter second-1)\nVwind (surface v-wind component, meter second-1)\nshflux (surface net heat flux, watt meter-2)\nssflux (surface net salt flux, (E-P)*SALT, meter second-1)\nlatent (net latent heat flux, watt meter-2)\nsensible (net sensible heat flux, watt meter-2)\nlwrad (net longwave radiation flux, watt meter-2)\nevaporation (evaporation rate, kilogram meter-2 second-1)\nrain (rain fall rate, kilogram meter-2 second-1)\nswrad (solar shortwave radiation flux, watt meter-2)\nuWave (coupling vertically integrated u-momentum component, meter second-1)\nvWave (coupling vertically integrated v-momentum component, meter second-1)\nbustrc (current-induced, bottom u-momentum stress, newton meter-2)\nbvstrc (current-induced, bottom v-momentum stress, newton meter-2)\nbustrw (wind-induced, bottom u-momentum stress, newton meter-2)\nbvstrw (wind-induced, bottom v-momentum stress, newton meter-2)\nbstrcwmax (max wave and current bottom stress magnitude, newton meter-2)\ngrain_diameter (sediment median grain diameter size, meter)\ngrain_density (sediment median grain density, kilogram meter3)\nsettling_vel (sediment median grain settling velocity, meter second-1)\nerosion_stress (sediment median critical erosion stress, newton meter-2)\nripple_length (bottom ripple length, meter)\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_geoport_ed12_89ce_9592/index.json", "https://woodshole.er.usgs.gov/project-pages/cccp/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_geoport_ed12_89ce_9592.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_geoport_ed12_89ce_9592&showErrors=false&email=", "USGS", "whoi_geoport_ed12_89ce_9592"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_61c3_0b5d_cd61", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/whoi_geoport_61c3_0b5d_cd61.graph", "", "", "public", "USGS COAWST Forecast, US East Coast and Gulf of Mexico (Experimental) (coawst 4 use best) [time][eta_u][xi_u], 2013-present", "Coupled Ocean-Atmosphere-Wave-Sediment Transport (COAWST) Forecast System : United States Geological Survey (USGS) : US East Coast and Gulf of Mexico (Experimental). Best time series, taking the data from the most recent run available. Regional Ocean Modeling System (ROMS) USE Output from COAWST\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][eta_u][xi_u]):\nwetdry_mask_u (wet/dry mask on U-points)\nubar (vertically integrated u-momentum component, meter second-1)\nsustr (surface u-momentum stress, newton meter-2)\nbedload_Usand_01 (bed load flux of sand in U-direction, size class 01, kilogram meter-1 s-1)\nbedload_Usand_02 (bed load flux of sand in U-direction, size class 02, kilogram meter-1 s-1)\nbedload_Usand_03 (bed load flux of sand in U-direction, size class 03, kilogram meter-1 s-1)\nbedload_Usand_04 (bed load flux of sand in U-direction, size class 04, kilogram meter-1 s-1)\nbedload_Usand_05 (bed load flux of sand in U-direction, size class 05, kilogram meter-1 s-1)\nbedload_Usand_06 (bed load flux of sand in U-direction, size class 06, kilogram meter-1 s-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/whoi_geoport_61c3_0b5d_cd61/index.json", "https://woodshole.er.usgs.gov/project-pages/cccp/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/whoi_geoport_61c3_0b5d_cd61.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoi_geoport_61c3_0b5d_cd61&showErrors=false&email=", "USGS", "whoi_geoport_61c3_0b5d_cd61"] + ] + } + } + recorded_at: 2019-01-31 19:30:29 GMT + recorded_with: vcr/0.2.2, webmockr/0.3.0 diff --git a/tests/vcr_cassettes/ed_search_adv.yml b/tests/vcr_cassettes/ed_search_adv.yml new file mode 100644 index 0000000..0815197 --- /dev/null +++ b/tests/vcr_cassettes/ed_search_adv.yml @@ -0,0 +1,4158 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/search/advanced.json?searchFor=temperature&page=1&itemsPerPage=1000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.7.0.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Thu, 31 Jan 2019 19:31:13 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=AdvancedSearch.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_490d_1198_15c1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_490d_1198_15c1.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_490d_1198_15c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_490d_1198_15c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_490d_1198_15c1/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_490d_1198_15c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_490d_1198_15c1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_490d_1198_15c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb9a_8f65_4783", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb9a_8f65_4783.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb9a_8f65_4783/request", "", "public", "Top Dataset, std, air.mon.anom.biased2.5 (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.biased2.5.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly 2.5 Bias Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb9a_8f65_4783_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb9a_8f65_4783_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb9a_8f65_4783/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb9a_8f65_4783.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb9a_8f65_4783&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fb9a_8f65_4783"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08b8_4b79_072d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08b8_4b79_072d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_08b8_4b79_072d/request", "", "public", "Top Dataset, std, air.mon.anom.biased97.5 (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.biased97.5.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly 97.5 Bias Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_08b8_4b79_072d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_08b8_4b79_072d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_08b8_4b79_072d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_08b8_4b79_072d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_08b8_4b79_072d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_08b8_4b79_072d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca10_45fa_9108", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca10_45fa_9108.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca10_45fa_9108/request", "", "public", "CRUTEM4 Air Temperature Dataset (Top Dataset, std, air.mon.anom), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca10_45fa_9108_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca10_45fa_9108_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca10_45fa_9108/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca10_45fa_9108.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca10_45fa_9108&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ca10_45fa_9108"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fc4_7974_6ee1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fc4_7974_6ee1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8fc4_7974_6ee1/request", "", "public", "Top Dataset, std, air.mon.anom.nobs (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.nobs.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Number of Observations, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8fc4_7974_6ee1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8fc4_7974_6ee1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8fc4_7974_6ee1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8fc4_7974_6ee1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8fc4_7974_6ee1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8fc4_7974_6ee1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1123_8add_cc23", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1123_8add_cc23.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1123_8add_cc23/request", "", "public", "Top Dataset, std, air.mon.anom.samplingerror (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.samplingerror.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Sampling Error, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1123_8add_cc23_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1123_8add_cc23_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1123_8add_cc23/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1123_8add_cc23.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1123_8add_cc23&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1123_8add_cc23"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7168_64d1_22b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7168_64d1_22b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7168_64d1_22b7/request", "", "public", "Top Dataset, std, air.mon.anom.stationerror (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.stationerror.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Station Errors, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7168_64d1_22b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7168_64d1_22b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7168_64d1_22b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7168_64d1_22b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7168_64d1_22b7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7168_64d1_22b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5523_8517_2d0a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5523_8517_2d0a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5523_8517_2d0a/request", "", "public", "CRUTEM4 Air Temperature Dataset (Top Dataset, std, air.mon.mean), 5.0\u00b0, 1851-2018", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.mean.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5523_8517_2d0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5523_8517_2d0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5523_8517_2d0a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5523_8517_2d0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5523_8517_2d0a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5523_8517_2d0a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7944_c525_7af1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7944_c525_7af1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7944_c525_7af1/request", "", "public", "CRUTEM4 Air Temperature Dataset (Top Dataset, var, air.mon.anom), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/var/air.mon.anom.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4V: Surface Air Temperature Monthly Anomaly Variance Adjusted, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7944_c525_7af1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7944_c525_7af1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7944_c525_7af1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7944_c525_7af1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7944_c525_7af1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7944_c525_7af1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff85_13e0_9b4c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff85_13e0_9b4c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff85_13e0_9b4c/request", "", "public", "CRU Combined Surface/Marine Air Temperature Climatology 1961-1990. (air.mon.ltm), 5.0\u00b0, 0001", "Climatic Research Unit (CRU) Combined Surface/Marine Air Temperature Climatology 1961-1990. (Top Dataset, ltm, air.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRU Combined Surface/Marine Air Temperature Monthly Climatology, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff85_13e0_9b4c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff85_13e0_9b4c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff85_13e0_9b4c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.hadcru3.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff85_13e0_9b4c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff85_13e0_9b4c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ff85_13e0_9b4c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db71_e764_2972", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db71_e764_2972.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db71_e764_2972/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom.biased2.5), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.biased2.5.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly 2.5 Bias Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db71_e764_2972_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db71_e764_2972_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db71_e764_2972/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db71_e764_2972.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db71_e764_2972&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_db71_e764_2972"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b69_a9bd_e36a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b69_a9bd_e36a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b69_a9bd_e36a/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom.biased97.5), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.biased97.5.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly 97.5 Bias Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b69_a9bd_e36a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b69_a9bd_e36a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b69_a9bd_e36a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b69_a9bd_e36a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b69_a9bd_e36a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6b69_a9bd_e36a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e9a_1f1a_237c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e9a_1f1a_237c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6e9a_1f1a_237c/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom.mserror), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.mserror.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly M+S Errors, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6e9a_1f1a_237c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6e9a_1f1a_237c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6e9a_1f1a_237c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6e9a_1f1a_237c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6e9a_1f1a_237c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6e9a_1f1a_237c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e0c_7b02_93a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e0c_7b02_93a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e0c_7b02_93a0/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e0c_7b02_93a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e0c_7b02_93a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e0c_7b02_93a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e0c_7b02_93a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e0c_7b02_93a0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3e0c_7b02_93a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_069d_ff4e_902c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_069d_ff4e_902c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_069d_ff4e_902c/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom.stationerror), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.stationerror.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly Station Errors, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_069d_ff4e_902c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_069d_ff4e_902c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_069d_ff4e_902c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_069d_ff4e_902c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_069d_ff4e_902c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_069d_ff4e_902c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f29a_8f1c_b66a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f29a_8f1c_b66a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f29a_8f1c_b66a/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly Variance Adjusted (air.mon.anom), 5.0\u00b0, 1850-2014", "This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/var/air.mon.anom.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3V: Surface Air Temperature Monthly Anomaly Variance Adjusted, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f29a_8f1c_b66a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f29a_8f1c_b66a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f29a_8f1c_b66a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f29a_8f1c_b66a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f29a_8f1c_b66a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f29a_8f1c_b66a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2454_f596_6532", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2454_f596_6532.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2454_f596_6532/request", "", "public", "HADCRUT4 Combined Air Temperature/SST Anomaly Error (Top Dataset, hadcrut4, air.mon.anom.error), 5.0\u00b0, 1850-present", "HADCRUT4 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly Error. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut4/air.mon.anom.error.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT4: Median Surface Air Temperature Monthly Median Anomaly Error from 100 ensemble members, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2454_f596_6532_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2454_f596_6532_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2454_f596_6532/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.hadcrut4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2454_f596_6532.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2454_f596_6532&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2454_f596_6532"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87e4_c3bd_8e9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87e4_c3bd_8e9f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_87e4_c3bd_8e9f/request", "", "public", "HADCRUT4 Combined Air Temperature/SST Anomaly (Top Dataset, hadcrut4, air.mon.anom.median), 5.0\u00b0, 1850-present", "HADCRUT4 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut4/air.mon.anom.median.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT4: Median Surface Air Temperature Monthly Median Anomaly from 100 ensemble members, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_87e4_c3bd_8e9f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_87e4_c3bd_8e9f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_87e4_c3bd_8e9f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.hadcrut4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_87e4_c3bd_8e9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_87e4_c3bd_8e9f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_87e4_c3bd_8e9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e74_4bc8_6541", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e74_4bc8_6541.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2e74_4bc8_6541/request", "", "public", "HADCRUT4 Combined Air Temperature/SST Anomaly (Top Dataset, hadcrut4, air.mon.ltm), 5.0\u00b0, 0001", "HADCRUT4 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut4/air.mon.ltm.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean HADCRUT4: Median Surface Air Temperature Monthly Median Anomaly from 100 ensemble members, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2e74_4bc8_6541_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2e74_4bc8_6541_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2e74_4bc8_6541/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.hadcrut4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2e74_4bc8_6541.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2e74_4bc8_6541&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2e74_4bc8_6541"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a2f_0bd6_7d46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a2f_0bd6_7d46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a2f_0bd6_7d46/request", "", "public", "NOAA/NCEP GHCN CAMS Monthly Temperature (Top Dataset, ghcncams, air.mon.mean), 0.5\u00b0, 1948-present", "NOAA/National Centers for Environmental Prediction (NCEP) Global Historical Climatology Network (GHCN) Climate Anomaly Monitoring System (CAMS) Monthly Temperature (Top Dataset, ghcncams, air.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly mean of surface temperature, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a2f_0bd6_7d46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a2f_0bd6_7d46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a2f_0bd6_7d46/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ghcncams.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a2f_0bd6_7d46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a2f_0bd6_7d46&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7a2f_0bd6_7d46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a52_974c_51c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a52_974c_51c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a52_974c_51c3/request", "", "public", "GHCN version 3 Land Temperature Anomalies from GHCN-M V3.2.1 (air.mon.anom), 5.0\u00b0, 1880-present", "Global Historical Climatology Network (GHCN) version 3 Land Temperature Anomalies from GHCN-M V3.2.1 (Top Dataset, ghcngridded, air.mon.anom)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (GHCN V3.2.1 Gridded Air Temperature Anomalies, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a52_974c_51c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a52_974c_51c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a52_974c_51c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ghcnv2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a52_974c_51c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a52_974c_51c3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6a52_974c_51c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59d9_7395_d51c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59d9_7395_d51c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_59d9_7395_d51c/request", "", "public", "Top Dataset, jmatemp, air.mon.anom (JMA Air Temperature), 5.0\u00b0, 1891-2017", "Japanese Meteorological Agency (JMA) Air Temperature (Top Dataset, jmatemp, air.mon.anom)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Surface Air Temperature and SST Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_59d9_7395_d51c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_59d9_7395_d51c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_59d9_7395_d51c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.jmatemp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_59d9_7395_d51c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_59d9_7395_d51c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_59d9_7395_d51c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e48_50e0_5563", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e48_50e0_5563.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7e48_50e0_5563/request", "", "public", "Top Dataset, jmatemp, air.mon.ltm.1981-2010 (JMA Air Temperature), 5.0\u00b0, 0001", "Japanese Meteorological Agency (JMA) Air Temperature (Top Dataset, jmatemp, air.mon.ltm.1981-2010)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Surface Air Temperature and SST Monthly Anomaly, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7e48_50e0_5563_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7e48_50e0_5563_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e48_50e0_5563/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.jmatemp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e48_50e0_5563.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e48_50e0_5563&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7e48_50e0_5563"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d54_f835_418e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d54_f835_418e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9d54_f835_418e/request", "", "public", "NOAA Merged Land-Ocean Surface Temperature (Top Dataset, mlost, air.mon.anom.v3.54), 5.0\u00b0, 1880-2015", "NOAA Merged Land-Ocean Surface Temperature Analysis (Top Dataset, mlost, air.mon.anom.v3.54)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Surface Air Temperature and SST Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9d54_f835_418e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9d54_f835_418e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9d54_f835_418e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.mlost.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9d54_f835_418e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9d54_f835_418e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9d54_f835_418e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e48_32de_0b48", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e48_32de_0b48.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e48_32de_0b48/request", "", "public", "Apr longterm mean diurnal cycle air temperature from the NCEP Reanalysis (airapr.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for April, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e48_32de_0b48_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e48_32de_0b48_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e48_32de_0b48/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e48_32de_0b48.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e48_32de_0b48&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8e48_32de_0b48"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37eb_c4e6_9e14", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37eb_c4e6_9e14.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_37eb_c4e6_9e14/request", "", "public", "Jan longterm mean diurnal cycle air temperature from the NCEP Reanalysis (airjan.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for January, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_37eb_c4e6_9e14_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_37eb_c4e6_9e14_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_37eb_c4e6_9e14/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_37eb_c4e6_9e14.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_37eb_c4e6_9e14&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_37eb_c4e6_9e14"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c667_f1d9_c606", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c667_f1d9_c606.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c667_f1d9_c606/request", "", "public", "Jul longterm mean diurnal cycle air temperature from the NCEP Reanalysis (airjul.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for July, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c667_f1d9_c606_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c667_f1d9_c606_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c667_f1d9_c606/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c667_f1d9_c606.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c667_f1d9_c606&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c667_f1d9_c606"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a71e_9825_5150", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a71e_9825_5150.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a71e_9825_5150/request", "", "public", "Oct longterm mean diurnal cycle air temperature from the NCEP Reanalysis (airoct.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for October, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a71e_9825_5150_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a71e_9825_5150_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a71e_9825_5150/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a71e_9825_5150.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a71e_9825_5150&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a71e_9825_5150"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b248_0ade_c33f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b248_0ade_c33f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b248_0ade_c33f/request", "", "public", "NCEP Reanalysis Diurnal Cycle Surface Air Temperature (airsfcapr.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for April, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b248_0ade_c33f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b248_0ade_c33f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b248_0ade_c33f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b248_0ade_c33f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b248_0ade_c33f&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b248_0ade_c33f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0b0_2f2e_629c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0b0_2f2e_629c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f0b0_2f2e_629c/request", "", "public", "NCEP Reanalysis Diurnal Cycle Surface Air Temperature (airsfcjan.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for January, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f0b0_2f2e_629c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f0b0_2f2e_629c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f0b0_2f2e_629c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f0b0_2f2e_629c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f0b0_2f2e_629c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f0b0_2f2e_629c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e20_c60c_81f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e20_c60c_81f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4e20_c60c_81f2/request", "", "public", "NCEP Reanalysis Diurnal Cycle Surface Air Temperature (airsfcjul.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for July, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4e20_c60c_81f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4e20_c60c_81f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4e20_c60c_81f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4e20_c60c_81f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4e20_c60c_81f2&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_4e20_c60c_81f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fced_49d1_25d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fced_49d1_25d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fced_49d1_25d5/request", "", "public", "NCEP Reanalysis Diurnal Cycle Surface Air Temperature (airsfcoct.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for October, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fced_49d1_25d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fced_49d1_25d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fced_49d1_25d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fced_49d1_25d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fced_49d1_25d5&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_fced_49d1_25d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e2c_a437_16c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e2c_a437_16c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5e2c_a437_16c1/request", "", "public", "Top Dataset, noaaglobaltemp, air.mon.anom.1971-2000 (NOAA Global Temperature), 5.0\u00b0, 0001", "NOAA Global Temperature (Top Dataset, noaaglobaltemp, air.mon.anom.1971-2000)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Surface Air Temperature and SST Monthly Anomaly, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5e2c_a437_16c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5e2c_a437_16c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5e2c_a437_16c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaaglobaltemp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5e2c_a437_16c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5e2c_a437_16c1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5e2c_a437_16c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4522_b5db_5cc8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4522_b5db_5cc8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4522_b5db_5cc8/request", "", "public", "Top Dataset, noaaglobaltemp, air.mon.anom.1981-2010 (NOAA Global Temperature), 5.0\u00b0, 0001", "NOAA Global Temperature (Top Dataset, noaaglobaltemp, air.mon.anom.1981-2010)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Surface Air Temperature and SST Monthly Anomaly, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4522_b5db_5cc8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4522_b5db_5cc8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4522_b5db_5cc8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaaglobaltemp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4522_b5db_5cc8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4522_b5db_5cc8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4522_b5db_5cc8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdc8_eec8_0c79", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdc8_eec8_0c79.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bdc8_eec8_0c79/request", "", "public", "Top Dataset, noaaglobaltemp, air.mon.anom (NOAA Global Temperature), 5.0\u00b0, 1880-present", "NOAA Global Temperature (Top Dataset, noaaglobaltemp, air.mon.anom)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Surface Air Temperature and SST Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bdc8_eec8_0c79_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bdc8_eec8_0c79_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bdc8_eec8_0c79/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaaglobaltemp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bdc8_eec8_0c79.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bdc8_eec8_0c79&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bdc8_eec8_0c79"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89c1_20dd_0d9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89c1_20dd_0d9f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_89c1_20dd_0d9f/request", "", "public", "NOAA Merged Land-Ocean Surface Temperature (Top Dataset, noaaglobaltemp, lsmask), 5.0\u00b0, 2000", "NOAA Merged Land-Ocean Surface Temperature Analysis (Top Dataset, noaaglobaltemp, lsmask)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlsmask (Surface Air Temperature and SST Land Mask, fraction)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_89c1_20dd_0d9f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_89c1_20dd_0d9f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_89c1_20dd_0d9f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaaglobaltemp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_89c1_20dd_0d9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_89c1_20dd_0d9f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_89c1_20dd_0d9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_307f_7a28_c260", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_307f_7a28_c260.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_307f_7a28_c260/request", "", "public", "Terrestrial Air Temperature and Precipitation: V4.01 (air.mon.ltm.v401), 0.5\u00b0, 0001", "Terrestrial Air Temperature and Precipitation: V4.01 (Top Dataset, udel.airt.precip, air.mon.ltm.v401)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly mean of surface temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_307f_7a28_c260_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_307f_7a28_c260_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_307f_7a28_c260/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.UDel_AirT_Precip.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_307f_7a28_c260.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_307f_7a28_c260&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_307f_7a28_c260"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d99a_9d42_4732", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d99a_9d42_4732.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d99a_9d42_4732/request", "", "public", "Terrestrial Air Temperature and Precipitation: V4.01 (air.mon.mean.v401), 0.5\u00b0, 1900-2014", "Terrestrial Air Temperature and Precipitation: V4.01 (Top Dataset, udel.airt.precip, air.mon.mean.v401)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly mean of surface temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d99a_9d42_4732_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d99a_9d42_4732_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d99a_9d42_4732/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.UDel_AirT_Precip.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d99a_9d42_4732.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d99a_9d42_4732&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d99a_9d42_4732"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_90a6_5d19_d812", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_90a6_5d19_d812.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_90a6_5d19_d812/request", "", "public", "Terrestrial Air Temperature and Precipitation: V4.01 (precip.mon.ltm.v401), 0.5\u00b0, 0001", "Terrestrial Air Temperature and Precipitation: V4.01 (Top Dataset, udel.airt.precip, precip.mon.ltm.v401)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Long Term Mean Monthly total of precipitation, cm)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_90a6_5d19_d812_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_90a6_5d19_d812_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_90a6_5d19_d812/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.UDel_AirT_Precip.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_90a6_5d19_d812.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_90a6_5d19_d812&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_90a6_5d19_d812"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4628_387e_f7bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4628_387e_f7bc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4628_387e_f7bc/request", "", "public", "Terrestrial Air Temperature and Precipitation: V4.01 (precip.mon.total.v401), 0.5\u00b0, 1900-2014", "Terrestrial Air Temperature and Precipitation: V4.01 (Top Dataset, udel.airt.precip, precip.mon.total.v401)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Monthly total of precipitation, cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4628_387e_f7bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4628_387e_f7bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4628_387e_f7bc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.UDel_AirT_Precip.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4628_387e_f7bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4628_387e_f7bc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4628_387e_f7bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKastdhday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKastdhday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKastdhday/request", "", "public", "Temperature, All Surface, POES AVHRR, LAC, Alaska, Daytime, 2005-2008 (Hourly)", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKastdhday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKastdhday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKastdhday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_astd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKastdhday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKastdhday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKastdhday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastdhday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastdhday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATastdhday/request", "", "public", "Temperature, All Surface, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Daytime, 2006-present (Single Scan)", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATastdhday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATastdhday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATastdhday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_astd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATastdhday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATastdhday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATastdhday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastnhday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastnhday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATastnhday/request", "", "public", "Temperature, All Surface, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Nighttime, 2006-present (Single Scan)", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATastnhday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATastnhday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATastnhday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_astn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATastnhday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATastnhday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATastnhday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWsstn1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWsstn1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWsstn1day/request", "", "public", "Coral Reef Watch, Nighttime Temperature, 50 km, 2000-2011 (1 Day Composite)", "NOAA Coral Reef Watch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWsstn1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWsstn1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWsstn1day/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWsstn1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWsstn1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWsstn1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWtanm1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWtanm1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWtanm1day/request", "", "public", "Coral Reef Watch, Temperature Anomaly, 50 km, 2000-2011 (1 Day Composite)", "NOAA Coral Reef Watch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWtanm1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWtanm1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWtanm1day/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWtanm1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWtanm1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWtanm1day"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://www.usgodae.org/cgi-bin/datalist.pl?summary=Go&dset=fnmoc_obs_sfcobs", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdHadISST", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdHadISST.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdHadISST/request", "", "public", "HadISST Average Sea Surface Temperature, 1\u00b0, Global, Monthly, 1870-present", "The Met Office Hadley Centre's sea ice and sea surface temperature (SST) data set, HadISST1, replaces the Global sea Ice and Sea Surface Temperature (GISST) data sets, and is a unique combination of monthly globally-complete fields of SST and sea ice concentration on a 1 degree latitude-longitude grid from 1870 to date. \n \nWARNING: 10 March 2016: A detailed analysis of HadISST (https://ir.library.oregonstate.edu/xmlui/handle/1957/58385) has identified a number of problems, some of which might limit the utility of the dataset for certain scientific applications, particularly where high resolution SST data or spatial gradients of SST are required. Thanks to Dudley Chelton and Craig Risien for bringing this to our attention and their detailed analysis. \n\nThe SST data are taken from the Met Office Marine Data Bank (MDB), which from 1982 onwards also includes data received through the Global Telecommunications System (GTS). In order to enhance data coverage, monthly median SSTs for 1871-1995 from the Comprehensive Ocean-Atmosphere Data Set (COADS) (now ICOADS) were also used where there were no MDB data.\n\nHadISST1 temperatures are reconstructed using a two stage reduced-space optimal interpolation procedure, followed by superposition of quality-improved gridded observations onto the reconstructions to restore local detail. SSTs near sea ice are estimated using statistical relationships between SST and sea ice concentration.\n\nData restrictions: for academic research use only.\n\nUpdates and supplementary information will be available from http://www.hadobs.org\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdHadISST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdHadISST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdHadISST/index.json", "http://hadobs.metoffice.com/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdHadISST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdHadISST&showErrors=false&email=", "Met Office Hadley Centre", "erdHadISST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKastdhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKastdhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKastdhday_LonPM180/request", "", "public", "Temperature, All Surface, POES AVHRR, LAC, Alaska, Daytime, 2005-2008 (Hourly), Lon+/-180", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKastdhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKastdhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKastdhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_astd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKastdhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKastdhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKastdhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastdhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastdhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATastdhday_LonPM180/request", "", "public", "Temperature, All Surface, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Daytime, 2006-present (Single Scan), Lon+/-180", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATastdhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATastdhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATastdhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_astd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATastdhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATastdhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATastdhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastnhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastnhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATastnhday_LonPM180/request", "", "public", "Temperature, All Surface, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Nighttime, 2006-present (Single Scan), Lon+/-180", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATastnhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATastnhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATastnhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_astn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATastnhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATastnhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATastnhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWsstn1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWsstn1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWsstn1day_LonPM180/request", "", "public", "Coral Reef Watch, Nighttime Temperature, 50 km, 2000-2011 (1 Day Composite), Lon+/-180", "NOAA Coral Reef Watch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWsstn1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWsstn1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWsstn1day_LonPM180/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWsstn1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWsstn1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWsstn1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWtanm1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWtanm1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWtanm1day_LonPM180/request", "", "public", "Coral Reef Watch, Temperature Anomaly, 50 km, 2000-2011 (1 Day Composite), Lon+/-180", "NOAA Coral Reef Watch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWtanm1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWtanm1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWtanm1day_LonPM180/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWtanm1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWtanm1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWtanm1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann1t", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann1t.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09ann1t/request", "", "public", "World Ocean Atlas 2009, Annual Climatology, 1 degree, Temperature, Salinity, Oxygen", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (1 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for an annual compositing period for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 1 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_an (Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_ma (Seasonal or Monthly Climatology minus Annual Climatology, degree_C)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\ntemperature_gp (Number of Temperature Mean Values within Radius of Influence, count)\nsalinity_an (Objectively Analyzed Practical Salinity Climatology, PSS-78)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_ma (Seasonal or Monthly Climatology minus Annual Climatology, PSU)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\nsalinity_gp (Number of Salinity Mean Values within Radius of Influence, count)\noxygenSat_an (Objectively Analyzed Oxygen Saturation Climatology, 1)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_ma (Seasonal or Monthly Climatology minus Annual Climatology, 1)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\noxygenSat_gp (Number of Oxygen Saturation Mean Values within Radius of Influence, count)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09ann1t_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09ann1t_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09ann1t/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09ann1t.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09ann1t&showErrors=false&email=", "NOAA NODC", "nodcWoa09ann1t"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann1t_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann1t_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09ann1t_LonPM180/request", "", "public", "World Ocean Atlas 2009, Annual Climatology, 1 degree, Temperature, Salinity, Oxygen, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (1 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for an annual compositing period for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 1 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_an (Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_ma (Seasonal or Monthly Climatology minus Annual Climatology, degree_C)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\ntemperature_gp (Number of Temperature Mean Values within Radius of Influence, count)\nsalinity_an (Objectively Analyzed Practical Salinity Climatology, PSS-78)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_ma (Seasonal or Monthly Climatology minus Annual Climatology, PSU)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\nsalinity_gp (Number of Salinity Mean Values within Radius of Influence, count)\noxygenSat_an (Objectively Analyzed Oxygen Saturation Climatology, 1)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_ma (Seasonal or Monthly Climatology minus Annual Climatology, 1)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\noxygenSat_gp (Number of Oxygen Saturation Mean Values within Radius of Influence, count)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09ann1t_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09ann1t_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09ann1t_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09ann1t_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09ann1t_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09ann1t_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann5t", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann5t.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09ann5t/request", "", "public", "World Ocean Atlas 2009, Annual Climatology, 5 degree, Temperature, Salinity, Oxygen", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for an annual compositing period for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\ndisOxygen_mn (Mean of Dissolved Oxygen Observations, ml/l)\ndisOxygen_dd (Number of Dissolved Oxygen Observations, count)\ndisOxygen_sd (Standard Deviation of Dissolved Oxygen Observations, ml/l)\ndisOxygen_se (Standard Error of Dissolved Oxygen Observations, ml/l)\nAOU_mn (Mean of Apparent Oxygen Utilization Observations, ml/l)\nAOU_dd (Number of Apparent Oxygen Utilization Observations, count)\nAOU_sd (Standard Deviation of Apparent Oxygen Utilization Observations, ml/l)\nAOU_se (Standard Error of Apparent Oxygen Utilization Observations, ml/l)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09ann5t_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09ann5t_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09ann5t/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09ann5t.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09ann5t&showErrors=false&email=", "NOAA NODC", "nodcWoa09ann5t"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann5t_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann5t_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09ann5t_LonPM180/request", "", "public", "World Ocean Atlas 2009, Annual Climatology, 5 degree, Temperature, Salinity, Oxygen, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for an annual compositing period for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\ndisOxygen_mn (Mean of Dissolved Oxygen Observations, ml/l)\ndisOxygen_dd (Number of Dissolved Oxygen Observations, count)\ndisOxygen_sd (Standard Deviation of Dissolved Oxygen Observations, ml/l)\ndisOxygen_se (Standard Error of Dissolved Oxygen Observations, ml/l)\nAOU_mn (Mean of Apparent Oxygen Utilization Observations, ml/l)\nAOU_dd (Number of Apparent Oxygen Utilization Observations, count)\nAOU_sd (Standard Deviation of Apparent Oxygen Utilization Observations, ml/l)\nAOU_se (Standard Error of Apparent Oxygen Utilization Observations, ml/l)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09ann5t_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09ann5t_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09ann5t_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09ann5t_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09ann5t_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09ann5t_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon1t", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon1t.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09mon1t/request", "", "public", "World Ocean Atlas 2009, Monthly Climatology, 1 degree, Temperature, Salinity, Oxygen", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (1 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for monthly compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 1 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_an (Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_ma (Monthly Temperature Climatology minus Annual Climatology, degree_C)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\ntemperature_oa (Temperature Mean minus Objectively Analyzed Climatology, degree_C)\ntemperature_gp (Number of Temperature Mean Values within Radius of Influence, count)\nsalinity_an (Objectively Analyzed Practical Salinity Climatology, PSS-78)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_ma (Monthly Salinity Climatology minus Annual Climatology, PSU)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\nsalinity_oa (Salinity Mean minus Objectively Analyzed Climatology, PSU)\nsalinity_gp (Number of Salinity Mean Values within Radius of Influence, count)\noxygenSat_an (Objectively Analyzed Oxygen Saturation Climatology, 1)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_ma (Monthly Oxygen Saturation Climatology minus Annual Climatology, 1)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09mon1t_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09mon1t_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09mon1t/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09mon1t.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09mon1t&showErrors=false&email=", "NOAA NODC", "nodcWoa09mon1t"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon1t_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon1t_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09mon1t_LonPM180/request", "", "public", "World Ocean Atlas 2009, Monthly Climatology, 1 degree, Temperature, Salinity, Oxygen, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (1 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for monthly compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 1 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_an (Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_ma (Monthly Temperature Climatology minus Annual Climatology, degree_C)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\ntemperature_oa (Temperature Mean minus Objectively Analyzed Climatology, degree_C)\ntemperature_gp (Number of Temperature Mean Values within Radius of Influence, count)\nsalinity_an (Objectively Analyzed Practical Salinity Climatology, PSS-78)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_ma (Monthly Salinity Climatology minus Annual Climatology, PSU)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\nsalinity_oa (Salinity Mean minus Objectively Analyzed Climatology, PSU)\nsalinity_gp (Number of Salinity Mean Values within Radius of Influence, count)\noxygenSat_an (Objectively Analyzed Oxygen Saturation Climatology, 1)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_ma (Monthly Oxygen Saturation Climatology minus Annual Climatology, 1)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09mon1t_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09mon1t_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09mon1t_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09mon1t_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09mon1t_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09mon1t_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon5t", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon5t.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09mon5t/request", "", "public", "World Ocean Atlas 2009, Monthly Climatology, 5 degree, Temperature, Salinity, Oxygen", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for monthly compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsslinity_dd (Number of Salinity Observations, count)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\ndisOxygen_mn (Mean of Dissolved Oxygen Observations, ml/l)\ndisOxygen_dd (Number of Dissolved Oxygen Observations, count)\ndisOxygen_sd (Standard Deviation of Dissolved Oxygen Observations, ml/l)\ndisOxygen_se (Standard Error of Dissolved Oxygen Observations, ml/l)\nAOU_mn (Mean of Apparent Oxygen Utilization Observations, ml/l)\nAOU_dd (Number of Apparent Oxygen Utilization Observations, count)\nAOU_sd (Standard Deviation of Apparent Oxygen Utilization Observations, ml/l)\nAOU_se (Standard Error of Apparent Oxygen Utilization Observations, ml/l)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09mon5t_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09mon5t_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09mon5t/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09mon5t.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09mon5t&showErrors=false&email=", "NOAA NODC", "nodcWoa09mon5t"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon5t_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon5t_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09mon5t_LonPM180/request", "", "public", "World Ocean Atlas 2009, Monthly Climatology, 5 degree, Temperature, Salinity, Oxygen, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for monthly compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsslinity_dd (Number of Salinity Observations, count)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\ndisOxygen_mn (Mean of Dissolved Oxygen Observations, ml/l)\ndisOxygen_dd (Number of Dissolved Oxygen Observations, count)\ndisOxygen_sd (Standard Deviation of Dissolved Oxygen Observations, ml/l)\ndisOxygen_se (Standard Error of Dissolved Oxygen Observations, ml/l)\nAOU_mn (Mean of Apparent Oxygen Utilization Observations, ml/l)\nAOU_dd (Number of Apparent Oxygen Utilization Observations, count)\nAOU_sd (Standard Deviation of Apparent Oxygen Utilization Observations, ml/l)\nAOU_se (Standard Error of Apparent Oxygen Utilization Observations, ml/l)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09mon5t_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09mon5t_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09mon5t_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09mon5t_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09mon5t_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09mon5t_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea1t", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea1t.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09sea1t/request", "", "public", "World Ocean Atlas 2009, Seasonal Climatology, 1 degree, Temperature, Salinity, Oxygen", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (1 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for seasonal compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 1 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_an (Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_ma (Temperature Monthly Minus Annual Climatology, degree_C)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\ntemperature_oa (Statistical Mean minus Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_gp (Number of Mean Temperature Values within Radius of Influence, count)\nsalinity_an (Objectively Analyzed Practical Salinity Climatology, PSS-78)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_ma (Seasonal Salinity Climatology minus Annual Climatology, PSU)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of the Statistical Mean, PSU)\nsalinity_oa (Salinity Mean minus Objectively Analyzed Climatology, PSU)\nsalinity_gp (Number of Salinity Mean Values within Radius of Influence, count)\noxygenSat_an (Objectively Analyzed Oxygen Saturation Climatology, 1)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_ma (Seasonal Oxygen Saturation Climatology minus Annual Climatology, 1)\noxygenSat_sd (Standard Deviation of Oxygen Saturation, 1)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09sea1t_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09sea1t_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09sea1t/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09sea1t.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09sea1t&showErrors=false&email=", "NOAA NODC", "nodcWoa09sea1t"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea1t_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea1t_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09sea1t_LonPM180/request", "", "public", "World Ocean Atlas 2009, Seasonal Climatology, 1 degree, Temperature, Salinity, Oxygen, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (1 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for seasonal compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 1 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_an (Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_ma (Temperature Monthly Minus Annual Climatology, degree_C)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\ntemperature_oa (Statistical Mean minus Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_gp (Number of Mean Temperature Values within Radius of Influence, count)\nsalinity_an (Objectively Analyzed Practical Salinity Climatology, PSS-78)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_ma (Seasonal Salinity Climatology minus Annual Climatology, PSU)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of the Statistical Mean, PSU)\nsalinity_oa (Salinity Mean minus Objectively Analyzed Climatology, PSU)\nsalinity_gp (Number of Salinity Mean Values within Radius of Influence, count)\noxygenSat_an (Objectively Analyzed Oxygen Saturation Climatology, 1)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_ma (Seasonal Oxygen Saturation Climatology minus Annual Climatology, 1)\noxygenSat_sd (Standard Deviation of Oxygen Saturation, 1)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09sea1t_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09sea1t_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09sea1t_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09sea1t_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09sea1t_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09sea1t_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea5t", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea5t.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09sea5t/request", "", "public", "World Ocean Atlas 2009, Seasonal Climatology, 5 degree, Temperature, Salinity, Oxygen", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for seasonal compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\ndisOxygen_mn (Mean of Dissolved Oxygen Observations, ml/l)\ndisOxygen_dd (Number of Dissolved Oxygen Observations, count)\ndisOxygen_sd (Standard Deviation of Dissolved Oxygen Observations, ml/l)\ndisOxygen_se (Standard Error of Dissolved Oxygen Observations, ml/l)\nAOU_mn (Mean of Apparent Oxygen Utilization Observations, ml/l)\nAOU_dd (Number of Apparent Oxygen Utilization Observations, count)\nAOU_sd (Standard Deviation of Apparent Oxygen Utilization Observations, ml/l)\nAOU_se (Standard Error of Apparent Oxygen Utilization Observations, ml/l)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09sea5t_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09sea5t_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09sea5t/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09sea5t.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09sea5t&showErrors=false&email=", "NOAA NODC", "nodcWoa09sea5t"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea5t_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea5t_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09sea5t_LonPM180/request", "", "public", "World Ocean Atlas 2009, Seasonal Climatology, 5 degree, Temperature, Salinity, Oxygen, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for seasonal compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\ndisOxygen_mn (Mean of Dissolved Oxygen Observations, ml/l)\ndisOxygen_dd (Number of Dissolved Oxygen Observations, count)\ndisOxygen_sd (Standard Deviation of Dissolved Oxygen Observations, ml/l)\ndisOxygen_se (Standard Error of Dissolved Oxygen Observations, ml/l)\nAOU_mn (Mean of Apparent Oxygen Utilization Observations, ml/l)\nAOU_dd (Number of Apparent Oxygen Utilization Observations, count)\nAOU_sd (Standard Deviation of Apparent Oxygen Utilization Observations, ml/l)\nAOU_se (Standard Error of Apparent Oxygen Utilization Observations, ml/l)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09sea5t_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09sea5t_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09sea5t_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09sea5t_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09sea5t_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09sea5t_LonPM180"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the November 2018 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "http://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplG1SST", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplG1SST.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplG1SST/request", "", "public", "GHRSST Global 1-km Sea Surface Temperature (G1SST), Global, 0.01 Degree, 2010-2017, Daily", "A daily, global Sea Surface Temperature (SST) data set is produced at 1-km (also known as ultra-high resolution) by the JPL ROMS (Regional Ocean Modeling System) group. The input SST data sets are derived from the Global High-Resolution Sea Surface Temperature (SST) Pilot Project (GHRSST-PP). For details, see\nhttps://podaac.jpl.nasa.gov/dataset/JPL_OUROCEAN-L4UHfnd-GLOB-G1SST .\nThis dataset is part of the Multi-sensor Improved Sea Surface Temperatures (MISST) project, which is part of the Group for High-Resolution Sea Surface Temperature (GHRSST) project.\n\nDISCONTINUED - The creators of the jplG1SST dataset stopped production in late Oct 2017. There are more recent files available from JPL, but they are flawed so they are not included in the dataset at ERD. You might consider using the similar jplMURSST41 dataset, \nhttps://coastwatch.pfeg.noaa.gov/erddap/search/index.html?searchFor=jplMURSST41\nwhich has the additional advantage of offering related climatology and anomaly datasets.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST (Analysed Sea Surface Temperature, degree_C)\nmask (sea/land/lake/ice field composite mask)\nanalysis_error (Estimated Error Standard Deviation of Analysed SST, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplG1SST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplG1SST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplG1SST/index.json", "https://podaac.jpl.nasa.gov/dataset/JPL_OUROCEAN-L4UHfnd-GLOB-G1SST", "http://upwell.pfeg.noaa.gov/erddap/rss/jplG1SST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplG1SST&showErrors=false&email=", "NASA JPL", "jplG1SST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1pp1day/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, Global, 2003-present, EXPERIMENTAL (1 Day Composite)", "calculates vertically integrated primary productivity using the Behrenfield - Falkowski method and satellite-based measurements of Chlorophyll a, incident visible surface irradiance, and sea surface temperature. see (Behrenfield and Falkowski, L&O 1997).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1pp1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1pp1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1pp1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PPMH_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1pp1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1pp1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMH1pp1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1pp3day/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, Global, 2003-present, EXPERIMENTAL (3 Day Composite)", "calculates the composite of vertically integrated primary productivity one day files that use the Behrenfield - Falkowski method and satellite-based measurements of Chlorophyll a, incident visible surface irradiance, and sea surface temperature. see (Behrenfield and Falkowski, L&O 1997).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\nnobs (Number of observations in composite, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1pp3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1pp3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1pp3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PPMH_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1pp3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1pp3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMH1pp3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1pp8day/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, Global, 2003-present, EXPERIMENTAL (8 Day Composite)", "calculates the composite of vertically integrated primary productivity one day files that use the Behrenfield - Falkowski method and satellite-based measurements of Chlorophyll a, incident visible surface irradiance, and sea surface temperature. see (Behrenfield and Falkowski, L&O 1997).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\nnobs (Number of observations in composite, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1pp8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1pp8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1pp8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PPMH_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1pp8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1pp8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMH1pp8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1ppmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1ppmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1ppmday/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, Global, 2003-present, EXPERIMENTAL (Monthly Composite)", "calculates the composite of vertically integrated primary productivity one day files that use the Behrenfield - Falkowski method and satellite-based measurements of Chlorophyll a, incident visible surface irradiance, and sea surface temperature. see (Behrenfield and Falkowski, L&O 1997).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1ppmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1ppmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1ppmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PPMH_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1ppmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1ppmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMH1ppmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstd1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstd1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1sstd1day/request", "", "public", "SST, Aqua MODIS, NPP, 4km, Daytime (11 microns), 2003-present (1 Day Composite)", "NOAA CoastWatch provides (mask-applied) global, 11km, Level 3, Standard Mapped Image (SMI), 4km, daytime SST data from NASA's Aqua Spacecraft. This is 1-day composite data. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Masked Daytime Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1sstd1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1sstd1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1sstd1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_sstMask_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1sstd1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1sstd1day&showErrors=false&email=", "NOAA SWFSC ERD", "erdMH1sstd1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstd8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstd8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1sstd8day/request", "", "public", "SST, Aqua MODIS, NPP, 4km, Daytime (11 microns), 2003-present (8 Day Composite)", "NOAA CoastWatch provides (mask-applied) global, 11km, Level 3, Standard Mapped Image (SMI), 4km, daytime SST data from NASA's Aqua Spacecraft. This is 8-day composite data. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Masked Daytime Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1sstd8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1sstd8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1sstd8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_sstMask_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1sstd8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1sstd8day&showErrors=false&email=", "NOAA SWFSC ERD", "erdMH1sstd8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstdmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstdmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1sstdmday/request", "", "public", "SST, Aqua MODIS, NPP, 4km, Daytime (11 microns), 2003-present (Monthly Composite)", "NOAA CoastWatch provides (mask-applied) global, 11km, Level 3, Standard Mapped Image (SMI), 4km, daytime SST data from NASA's Aqua Spacecraft. This is monthly composite data. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Masked Daytime Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1sstdmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1sstdmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1sstdmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_sstMask_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1sstdmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1sstdmday&showErrors=false&email=", "NOAA SWFSC ERD", "erdMH1sstdmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstdmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstdmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWsstdmday/request", "", "public", "SST, Aqua MODIS, NPP, 0.0125\u00b0, West US, Day time (11 microns), 2002-present (Monthly Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWsstdmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWsstdmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWsstdmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWsstdmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWsstdmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWsstdmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPNbfp28day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPNbfp28day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPNbfp28day/request", "", "public", "Primary Productivity, Aqua MODIS and GOES Imager, Global, 2006-2007, EXPERIMENTAL (8 Day Composite)", "Primary Productivity is calculated from NASA Aqua MODIS Chl a and NOAA GOES Imager SST data. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPNbfp28day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPNbfp28day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPNbfp28day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PN_bfp2_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPNbfp28day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPNbfp28day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdPNbfp28day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/osu2SstAnom", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/osu2SstAnom.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/osu2SstAnom/request", "", "public", "OSU SST Anomaly V2, MODIS Aqua, West US, July 2002-present", "This suite of CHLA and SST climatology and anomaly data products are derived from daily, 0.0125 degree x 0.0125 degree, MODIS Aqua CHLA and SST fields that cover the California Current System (22N - 51N, 155W - 105W) for the 11-year period July 2002 through June 2013. These daily fields, obtained from the NOAA CoastWatch West Coast Regional Node website, were processed using a successive 3x3, 5x5 and 7x7 grid cell hybrid median filtering technique. This technique was found to effectively reduce noise in the daily fields while maintaining features and detail in important regions such as capes and headlands. The resulting median filtered daily fields were then linearly interpolated to a 0.025 x 0.025 degree grid and averaged to create 132 monthly mean fields. The seasonal cycles at each 0.025 degree x 0.025 degree grid cell were obtained by fitting each multiyear time series of monthly means to a nine-parameter regression model consisting of a constant plus four harmonics (frequencies of N/(1-year), N-1,4; Risien and Chelton 2008, JPO). Even with the median filtering and the temporal averaging of the daily fields, the highly inhomogeneous nature of the MODIS fields still resulted in regression coefficients that were excessively noisy. We therefore applied the same successive 3x3, 5x5 and 7x7 hybrid median filtering technique, described above, to the regression coefficients before finally spatially smoothing the coefficients using a loess smoother (Schlax et al. 2001, JTECH) with filter cutoff wavelengths of 0.25 degree latitude by 0.25 degree longitude. The seasonal cycles were then calculated from the filtered regression coefficients for each 0.025 degree x 0.025 degree grid cell using the mean and all four harmonics. It is important to note that THIS SUITE OF DATA PRODUCTS IS HIGHLY EXPERIMENTAL and is strictly intended for scientific evaluation by experienced marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst_anomaly (Sea Surface Temperature Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/osu2SstAnom_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/osu2SstAnom_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/osu2SstAnom/index.json", "http://cioss.coas.oregonstate.edu/CIOSS/Documents/Published_Reports/Risien_USWC-Sat-Climatology_5-8-14.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/osu2SstAnom.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=osu2SstAnom&showErrors=false&email=", "Oregon State University - College of Earth, Ocean, and Atmospheric Sciences", "osu2SstAnom"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/osu2SstClimate", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/osu2SstClimate.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/osu2SstClimate/request", "", "public", "OSU SST Climatology V2, MODIS Aqua, West US, 2002-2003", "This suite of CHLA and SST climatology and anomaly data products are derived from daily, 0.0125 degree x 0.0125 degree, MODIS Aqua CHLA and SST fields that cover the California Current System (22N - 51N, 155W - 105W) for the 11-year period July 2002 through June 2013. These daily fields, obtained from the NOAA CoastWatch West Coast Regional Node website, were processed using a successive 3x3, 5x5 and 7x7 grid cell hybrid median filtering technique. This technique was found to effectively reduce noise in the daily fields while maintaining features and detail in important regions such as capes and headlands. The resulting median filtered daily fields were then linearly interpolated to a 0.025 degree x 0.025 degree grid and averaged to create 132 monthly mean fields. The seasonal cycles at each 0.025 degree x 0.025 degree grid cell were obtained by fitting each multiyear time series of monthly means to a nine-parameter regression model consisting of a constant plus four harmonics (frequencies of N/(1-year), N-1,4; Risien and Chelton 2008, JPO). Even with the median filtering and the temporal averaging of the daily fields, the highly inhomogeneous nature of the MODIS fields still resulted in regression coefficients that were excessively noisy. We therefore applied the same successive 3x3, 5x5 and 7x7 hybrid median filtering technique, described above, to the regression coefficients before finally spatially smoothing the coefficients using a loess smoother (Schlax et al. 2001, JTECH) with filter cutoff wavelengths of 0.25 degree latitude by 0.25 degree longitude. The seasonal cycles were then calculated from the filtered regression coefficients for each 0.025 degree x 0.025 degree grid cell using the mean and all four harmonics. It is important to note that THIS SUITE OF DATA PRODUCTS IS HIGHLY EXPERIMENTAL and is strictly intended for scientific evaluation by experienced marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/osu2SstClimate_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/osu2SstClimate_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/osu2SstClimate/index.json", "http://cioss.coas.oregonstate.edu/CIOSS/Documents/Published_Reports/Risien_USWC-Sat-Climatology_5-8-14.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/osu2SstClimate.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=osu2SstClimate&showErrors=false&email=", "Oregon State University - College of Earth, Ocean, and Atmospheric Sciences", "osu2SstClimate"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/NCEP_Global_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/NCEP_Global_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/NCEP_Global_Best/request", "", "public", "NOAA/NCEP Global Forecast System (GFS) Atmospheric Model", "U.S. National Oceanic and Atmospheric Administration (NOAA) National Centers for Environmental Prediction (NCEP) Global Forecast System (GFS) numerical weather prediction model 8-day, 3-hourly forecast for the globe at approximately 50-km or 0.5-deg resolution.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmpsfc (surface air temperature, K)\ntmp2m (air temperature at 2m, K)\nugrd10m (eastward wind velocity at 10m, m s-1)\nvgrd10m (northward wind velocity at 10m, m s-1)\npratesfc (rainfall rate, kg m-2 s-1)\nrh2m (relative humidity at 2m, %)\nprmslmsl (mean sea level pressure, Pa)\ndlwrfsfc (net downward longwave radiation flux, W m-2)\ndswrfsfc (net downward shortwave radiation flux, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/NCEP_Global_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/NCEP_Global_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/NCEP_Global_Best/index.json", "http://www.nco.ncep.noaa.gov/pmb/products/gfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/NCEP_Global_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=NCEP_Global_Best&showErrors=false&email=", "NOAA NCEP", "NCEP_Global_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/NCEP_Pacific_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/NCEP_Pacific_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/NCEP_Pacific_Best/request", "", "public", "NOAA/NCEP Global Forecast System (GFS) Atmospheric Model: Pacific", "U.S. National Oceanic and Atmospheric Administration (NOAA) National Centers for Environmental Prediction (NCEP) Global Forecast System (GFS) numerical weather prediction model 8-day, 3-hourly forecast for the Pacific region at approximately 25-km or 0.25-deg resolution.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmpsfc (surface air temperature, K)\ntmp2m (air temperature at 2m, K)\nugrd10m (eastward wind velocity at 10m, m s-1)\nvgrd10m (northward wind velocity at 10m, m s-1)\npratesfc (rainfall rate, kg m-2 s-1)\nrh2m (relative humidity at 2m, %)\nprmslmsl (mean sea level pressure, Pa)\ndlwrfsfc (net downward longwave radiation flux, W m-2)\ndswrfsfc (net downward shortwave radiation flux, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/NCEP_Pacific_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/NCEP_Pacific_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/NCEP_Pacific_Best/index.json", "http://www.nco.ncep.noaa.gov/pmb/products/gfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/NCEP_Pacific_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=NCEP_Pacific_Best&showErrors=false&email=", "NOAA NCEP", "NCEP_Pacific_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/NOAA_DHW_5km", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/NOAA_DHW_5km.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/NOAA_DHW_5km/request", "", "public", "NOAA Global Coral Bleaching Monitoring Products: Daily 5-km", "Contains a suite of NOAA Coral Reef Watch (CRW) version 3.1 operational global satellite coral bleaching thermal stress monitoring products at 5-km resolution produced daily in near real-time, including sea surface temperature (SST), SST anomaly, HotSpot, Degree Heating Week (DHW), and a 7-day maximum Bleaching Alert Area (BAA). These data are based on CoralTemp Version 1.0, a daily global 5-km sea surface temperature dataset combined from: (1.) NOAA/NESDIS operational near-real-time daily global 5-km geostationary-polar-orbiting (geo-polar) blended night-only SST analysis, (2.) NOAA/NESDIS 2002-2016 reprocessed daily global 5-km geo-polar blended night-only SST analysis, and (3.) United Kingdom Met Office 1985-2002 daily global 5-km night-only SST reanalysis of Operational SST and Sea Ice Analysis (OSTIA). The SST anomaly is the difference of SST compared to daily SST climatology. The coral bleaching HotSpot is a special type of sea surface temperature (SST) anomaly and shows the difference of SST compared to a coral bleaching SST threshold climatology. DHW is the accumulation of Coral Bleaching HotSpots over a period of 12 consecutive weeks. The DHW value at any particular location at any particular time is the summation of the product of HotSpot values which are at least 1 deg C above the bleaching threshold SST and their durations in weeks over the most recent 12-week period. One DHW is equivalent to 1 week of SST at 1 deg C above the threshold or 0.5 week of SST at 2 deg C above the threshold, etc. The units for DHW are deg C-weeks, combining the intensity and duration of thermal stress into one single number. Based on research at Coral Reef Watch, when the thermal stress reaches 4 deg C-weeks, you can expect to see significant coral bleaching, especially in more sensitive species. When thermal stress is 8 deg C-weeks or higher, you would likely see widespread bleaching and mortality from the thermal stress.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nCRW_DHW (degree heating week, Celsius weeks)\nCRW_HOTSPOT (coral bleaching hotspot, Celsius)\nCRW_BAA (bleaching alert area (7-day max), 1)\nCRW_SST (sea surface temperature, Celsius)\nCRW_SSTANOMALY (sea surface temperature anomaly, Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/NOAA_DHW_5km_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/NOAA_DHW_5km_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/NOAA_DHW_5km/index.json", "http://coralreefwatch.noaa.gov/satellite/", "http://upwell.pfeg.noaa.gov/erddap/rss/NOAA_DHW_5km.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=NOAA_DHW_5km&showErrors=false&email=", "NOAA Coral Reef Watch", "NOAA_DHW_5km"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_Assim_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_Assim_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_HIIG_Assim_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Main Hawaiian Islands: Data Assimilating: 3-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly data assimilating hindcast for the region surrounding the main Hawaiian Islands at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the main Hawaiian Islands (WRF_HI) at approximately 6-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast). Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; surface currents from PacIOOS high-frequency radios (HFR); and in-situ water temperature and salinity profiles from ARGO floats and ocean glider autonomous underwater vehicles (AUV). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_HIIG_Assim_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_HIIG_Assim_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_HIIG_Assim_Best/index.json", "http://www.pacioos.hawaii.edu/metadata/roms_hiig_assimilation.html", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_HIIG_Assim_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_HIIG_Assim_Best&showErrors=false&email=", "University of Hawaii", "ROMS_HIIG_Assim_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_Assim_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_Assim_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_HIIG_Assim_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Main Hawaiian Islands: Data Assimilating: 2-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly data assimilating hindcast for the region surrounding the main Hawaiian Islands at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the main Hawaiian Islands (WRF_HI) at approximately 6-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast). Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; surface currents from PacIOOS high-frequency radios (HFR); and in-situ water temperature and salinity profiles from ARGO floats and ocean glider autonomous underwater vehicles (AUV). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_HIIG_Assim_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_HIIG_Assim_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_HIIG_Assim_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/metadata/roms_hiig_assimilation.html", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_HIIG_Assim_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_HIIG_Assim_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_HIIG_Assim_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_HIIG_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Main Hawaiian Islands: 3-D Variables", "Regional Ocean Modeling System (ROMS) 7-day, 3-hourly forecast for the region surrounding the main Hawaiian Islands at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the main Hawaiian Islands (WRF_HI) at approximately 6-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; surface currents from PacIOOS high-frequency radios (HFR); and in-situ water temperature and salinity profiles from ARGO floats and ocean glider autonomous underwater vehicles (AUV). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_HIIG_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_HIIG_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_HIIG_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-hawaii/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_HIIG_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_HIIG_Best&showErrors=false&email=", "University of Hawaii", "ROMS_HIIG_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_HIIG_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Main Hawaiian Islands: 2-D Variables", "Regional Ocean Modeling System (ROMS) 7-day, 3-hourly forecast for the region surrounding the main Hawaiian Islands at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the main Hawaiian Islands (WRF_HI) at approximately 6-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; surface currents from PacIOOS high-frequency radios (HFR); and in-situ water temperature and salinity profiles from ARGO floats and ocean glider autonomous underwater vehicles (AUV). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_HIIG_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_HIIG_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_HIIG_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-hawaii/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_HIIG_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_HIIG_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_HIIG_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIOMSG_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIOMSG_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_HIOMSG_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Oahu South Shore: 3-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly forecast for the region surrounding the south shore of the island of Oahu at approximately 200-m resolution. Boundary conditions provided by the wider ROMS model for the region surrounding the island of Oahu (ROMS_HIOG) at approximately 1-km resolution. Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the island of Oahu (WRF_OA) at approximately 1.5-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; surface currents from PacIOOS high-frequency radios (HFR); and in-situ water temperature and salinity profiles from ARGO floats and ocean glider autonomous underwater vehicles (AUV). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_HIOMSG_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_HIOMSG_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_HIOMSG_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-southoahu/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_HIOMSG_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_HIOMSG_Best&showErrors=false&email=", "University of Hawaii", "ROMS_HIOMSG_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIOMSG_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIOMSG_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_HIOMSG_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Oahu South Shore: 2-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly forecast for the region surrounding the south shore of the island of Oahu at approximately 200-m resolution. Boundary conditions provided by the wider ROMS model for the region surrounding the island of Oahu (ROMS_HIOG) at approximately 1-km resolution. Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the island of Oahu (WRF_OA) at approximately 1.5-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; surface currents from PacIOOS high-frequency radios (HFR); and in-situ water temperature and salinity profiles from ARGO floats and ocean glider autonomous underwater vehicles (AUV). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_HIOMSG_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_HIOMSG_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_HIOMSG_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-southoahu/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_HIOMSG_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_HIOMSG_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_HIOMSG_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_Assim_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_Assim_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_MARI_Assim_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): CNMI: Data Assimilating: 3-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly data assimilating hindcast for the region surrounding the Western North Pacific, including Guam and the Commonwealth of the Northern Mariana Islands (CNMI), at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the Western North Pacific (WRF_CNMI) at approximately 12-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast). Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_MARI_Assim_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_MARI_Assim_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_MARI_Assim_Best/index.json", "http://www.pacioos.hawaii.edu/metadata/roms_mari_assimilation.html", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_MARI_Assim_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_MARI_Assim_Best&showErrors=false&email=", "University of Hawaii", "ROMS_MARI_Assim_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_Assim_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_Assim_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_MARI_Assim_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): CNMI: Data Assimilating: 2-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly data assimilating hindcast for the region surrounding the Western North Pacific, including Guam and the Commonwealth of the Northern Mariana Islands (CNMI), at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the Western North Pacific (WRF_CNMI) at approximately 12-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast). Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_MARI_Assim_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_MARI_Assim_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_MARI_Assim_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/metadata/roms_mari_assimilation.html", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_MARI_Assim_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_MARI_Assim_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_MARI_Assim_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_MARI_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): CNMI: 3-D Variables", "Regional Ocean Modeling System (ROMS) 6-day, 3-hourly forecast for the region surrounding the Western North Pacific, including Guam and the Commonwealth of the Northern Mariana Islands (CNMI), at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the Western North Pacific (WRF_CNMI) at approximately 12-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_MARI_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_MARI_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_MARI_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-wnpacific/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_MARI_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_MARI_Best&showErrors=false&email=", "University of Hawaii", "ROMS_MARI_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_MARI_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): CNMI: 2-D Variables", "Regional Ocean Modeling System (ROMS) 6-day, 3-hourly forecast for the region surrounding the Western North Pacific, including Guam and the Commonwealth of the Northern Mariana Islands (CNMI), at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the Western North Pacific (WRF_CNMI) at approximately 12-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_MARI_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_MARI_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_MARI_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-wnpacific/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_MARI_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_MARI_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_MARI_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARIG_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARIG_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_MARIG_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Guam: 3-D Variables", "Regional Ocean Modeling System (ROMS) 6-day, 3-hourly forecast for the region surrounding Guam and parts of the Commonwealth of the Northern Mariana Islands (CNMI) at approximately 2-km resolution. Boundary conditions provided by the wider ROMS model for the region surrounding the Western North Pacific (ROMS_MARI) at approximately 4-km resolution. Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding Guam and parts of the Commonwealth of the Northern Mariana Islands (CNMI) (WRF_Guam) at approximately 3-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_MARIG_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_MARIG_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_MARIG_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-mariana/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_MARIG_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_MARIG_Best&showErrors=false&email=", "University of Hawaii", "ROMS_MARIG_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARIG_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARIG_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_MARIG_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Guam: 2-D Variables", "Regional Ocean Modeling System (ROMS) 6-day, 3-hourly forecast for the region surrounding Guam and parts of the Commonwealth of the Northern Mariana Islands (CNMI) at approximately 2-km resolution. Boundary conditions provided by the wider ROMS model for the region surrounding the Western North Pacific (ROMS_MARI) at approximately 4-km resolution. Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding Guam and parts of the Commonwealth of the Northern Mariana Islands (CNMI) (WRF_Guam) at approximately 3-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_MARIG_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_MARIG_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_MARIG_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-mariana/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_MARIG_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_MARIG_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_MARIG_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_Assim_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_Assim_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_Samoa_Assim_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Samoa: Data Assimilating: 3-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly data assimilating hindcast for the region surrounding the islands of Samoa at approximately 3-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the islands of Samoa (WRF_Samoa) at approximately 3-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast). Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_Samoa_Assim_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_Samoa_Assim_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_Samoa_Assim_Best/index.json", "http://www.pacioos.hawaii.edu/metadata/roms_samoa_assimilation.html", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_Samoa_Assim_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_Samoa_Assim_Best&showErrors=false&email=", "University of Hawaii", "ROMS_Samoa_Assim_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_Assim_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_Assim_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_Samoa_Assim_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Samoa: Data Assimilating: 2-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly data assimilating hindcast for the region surrounding the islands of Samoa at approximately 3-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the islands of Samoa (WRF_Samoa) at approximately 3-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast). Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_Samoa_Assim_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_Samoa_Assim_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_Samoa_Assim_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/metadata/roms_samoa_assimilation.html", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_Samoa_Assim_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_Samoa_Assim_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_Samoa_Assim_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_Samoa_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Samoa: 3-D Variables", "Regional Ocean Modeling System (ROMS) 7-day, 3-hourly forecast for the region surrounding the islands of Samoa at approximately 3-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the islands of Samoa (WRF_Samoa) at approximately 3-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_Samoa_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_Samoa_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_Samoa_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-samoa/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_Samoa_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_Samoa_Best&showErrors=false&email=", "University of Hawaii", "ROMS_Samoa_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_Samoa_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Samoa: 2-D Variables", "Regional Ocean Modeling System (ROMS) 7-day, 3-hourly forecast for the region surrounding the islands of Samoa at approximately 3-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the islands of Samoa (WRF_Samoa) at approximately 3-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_Samoa_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_Samoa_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_Samoa_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-samoa/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_Samoa_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_Samoa_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_Samoa_SSH_Best"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e5b4_d905_99ef", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e5b4_d905_99ef.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e5b4_d905_99ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e5b4_d905_99ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e5b4_d905_99ef/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e5b4_d905_99ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e5b4_d905_99ef&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "hawaii_soest_e5b4_d905_99ef"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_190f_1fe8_4cc4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_190f_1fe8_4cc4.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitors water quality at several beaches across the island of Maui in the State of Hawaii. This community-based monitoring effort provides valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites are also monitored for harmful bacteria levels of Enterococcus. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. \n\nData are managed through an online repository, the Coral Reef Monitoring Data Portal (http://monitoring.coral.org), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection is coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\n... (10 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_190f_1fe8_4cc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_190f_1fe8_4cc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_190f_1fe8_4cc4/index.json", "http://monitoring.coral.org", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_190f_1fe8_4cc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_190f_1fe8_4cc4&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "hawaii_soest_190f_1fe8_4cc4"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5673_517d_3b8c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5673_517d_3b8c.graph", "", "", "public", "PacIOOS Nearshore Sensor 01 (NS01): Waikiki Yacht Club, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS01 is located at the Waikiki Yacht Club and is fixed to the bridge pier. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to a piling ~0.5m below mean sea level.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5673_517d_3b8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5673_517d_3b8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5673_517d_3b8c/index.json", "http://www.pacioos.hawaii.edu/water/sensor-waikiki/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5673_517d_3b8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5673_517d_3b8c&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5673_517d_3b8c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_1273_fad1_0404", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_1273_fad1_0404.graph", "", "", "public", "PacIOOS Nearshore Sensor 02 (NS02): Hawaii Yacht Club, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS02 is located at a floating dock off the Hawaii Yacht Club. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to a floating dock just below the ocean surface.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nturbidity_dm_qd (Turbidity quality descriptor)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nchlorophyll_dm_qd (Chlorophyll quality descriptor)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_1273_fad1_0404_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_1273_fad1_0404_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_1273_fad1_0404/index.json", "http://www.pacioos.hawaii.edu/water/sensor-hawaiiyachtclub/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_1273_fad1_0404.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_1273_fad1_0404&showErrors=false&email=", "University of Hawaii", "hawaii_soest_1273_fad1_0404"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d787_1c35_208d", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d787_1c35_208d.graph", "", "", "public", "PacIOOS Nearshore Sensor 03 (NS03): Hilton Hawaiian Pier, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS03 is located at the Atlantis Pier off the Hilton Hawaiian Village. The instrument is a Sea-Bird Electronics model 37SMP. The package is located at approximately 2.0 meters below mean sea level.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\npressure_dm_qd (Pressure quality descriptor)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d787_1c35_208d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d787_1c35_208d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d787_1c35_208d/index.json", "http://www.pacioos.hawaii.edu/water/sensor-atlantis/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d787_1c35_208d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d787_1c35_208d&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d787_1c35_208d"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_c9f9_c232_1fe9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_c9f9_c232_1fe9.graph", "", "", "public", "PacIOOS Nearshore Sensor 04 (NS04): Waikiki Aquarium, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS04 is located just off the Waikiki Aquarium and is fixed to the pier. The instrument is a Sea-Bird Electronics model 37SMP. The package is mounted on the bottom in approximately 2.0 to 2.5 meters ocean depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\npressure_dm_qd (Pressure quality descriptor)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_c9f9_c232_1fe9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_c9f9_c232_1fe9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_c9f9_c232_1fe9/index.json", "http://www.pacioos.hawaii.edu/water/sensor-waikikiaquarium/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_c9f9_c232_1fe9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_c9f9_c232_1fe9&showErrors=false&email=", "University of Hawaii", "hawaii_soest_c9f9_c232_1fe9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b55f_a8f2_ad70", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b55f_a8f2_ad70.graph", "", "", "public", "PacIOOS Nearshore Sensor 05 (NS05): Pago Pago, American Samoa", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS05 is located at the Department of Marine and Wildlife Resources (DMWR) dock in Pago Pago Harbor, American Samoa and is mounted to the bottom in about 2 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_b55f_a8f2_ad70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_b55f_a8f2_ad70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_b55f_a8f2_ad70/index.json", "http://www.pacioos.hawaii.edu/water/sensor-pagopago/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_b55f_a8f2_ad70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_b55f_a8f2_ad70&showErrors=false&email=", "University of Hawaii", "hawaii_soest_b55f_a8f2_ad70"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f59_c29c_d820", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f59_c29c_d820.graph", "", "", "public", "PacIOOS Nearshore Sensor 06 (NS06): Pohnpei, Micronesia", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS06 is located at the dock in Pohnpei lagoon and is mounted to the bottom in about 1 meter of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8f59_c29c_d820_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8f59_c29c_d820_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8f59_c29c_d820/index.json", "http://www.pacioos.hawaii.edu/water/sensor-pohnpei/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8f59_c29c_d820.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8f59_c29c_d820&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8f59_c29c_d820"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_77b7_f5dd_cda3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_77b7_f5dd_cda3.graph", "", "", "public", "PacIOOS Nearshore Sensor 07 (NS07): Majuro, Marshall Islands", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS07 is located at the Uliga dock in Majuro, Republic of the Marshall Islands and is mounted to the bottom in about 2 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_77b7_f5dd_cda3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_77b7_f5dd_cda3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_77b7_f5dd_cda3/index.json", "http://www.pacioos.hawaii.edu/water/sensor-majuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_77b7_f5dd_cda3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_77b7_f5dd_cda3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_77b7_f5dd_cda3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e3c0_a956_de01", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e3c0_a956_de01.graph", "", "", "public", "PacIOOS Nearshore Sensor 08 (NS08): Koror, Palau", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS08 is located at the Palau International Coral Reef Center (PICRC) dock in Koror, Palau and is mounted to the bottom in about 3.5 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e3c0_a956_de01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e3c0_a956_de01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e3c0_a956_de01/index.json", "http://www.pacioos.hawaii.edu/water/sensor-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e3c0_a956_de01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e3c0_a956_de01&showErrors=false&email=", "University of Hawaii", "hawaii_soest_e3c0_a956_de01"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0113_b43d_e024", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0113_b43d_e024.graph", "", "", "public", "PacIOOS Nearshore Sensor 09 (NS09): Cetti Bay, Guam", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS09 is approximately 70 meters offshore in Cetti Bay, Guam and is mounted to the bottom in about 3 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_0113_b43d_e024_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_0113_b43d_e024_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_0113_b43d_e024/index.json", "http://www.pacioos.hawaii.edu/water/sensor-cetti/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_0113_b43d_e024.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_0113_b43d_e024&showErrors=false&email=", "University of Hawaii", "hawaii_soest_0113_b43d_e024"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f25e_31a1_16f1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f25e_31a1_16f1.graph", "", "", "public", "PacIOOS Nearshore Sensor 10 (NS10): Maunalua Bay, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS10 is located off the old pier in Maunalua Bay in Hawaii Kai. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to the pier at about 2m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nturbidity_dm_qd (Turbidity quality descriptor)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nchlorophyll_dm_qd (Chlorophyll quality descriptor)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\npressure_dm_qd (Pressure quality descriptor)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f25e_31a1_16f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f25e_31a1_16f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f25e_31a1_16f1/index.json", "http://www.pacioos.hawaii.edu/water/sensor-maunalua/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f25e_31a1_16f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f25e_31a1_16f1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f25e_31a1_16f1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8668_b202_8233", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8668_b202_8233.graph", "", "", "public", "PacIOOS Nearshore Sensor 11 (NS11): Saipan, CNMI", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS11 is approximately 20 meters offshore of Puntan Babpot near the golf course at Laolao Bay on the east shore of Saipan in the Commonwealth of the Northern Mariana Islands (CNMI) and is mounted to the bottom in about 3 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8668_b202_8233_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8668_b202_8233_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8668_b202_8233/index.json", "http://www.pacioos.hawaii.edu/water/sensor-saipan/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8668_b202_8233.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8668_b202_8233&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8668_b202_8233"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b10c_af2d_3fe8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b10c_af2d_3fe8.graph", "", "", "public", "PacIOOS Nearshore Sensor 12 (NS12): Kalama Beach Park, Maui, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS12 is located at Kalama Beach Park in Kihei, Maui. The instrument is a 6600V2-4 Multi-parameter water quality logger. The package is fixed to a mooring at about 1.5m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\nwater_depth (Sensor depth, m)\nph (1)\noxygen (Dissolved oxygen concentration, kg m-3)\noxygen_saturation (Dissolved oxygen saturation, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_b10c_af2d_3fe8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_b10c_af2d_3fe8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_b10c_af2d_3fe8/index.json", "http://www.pacioos.hawaii.edu/water/sensor-kalama/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_b10c_af2d_3fe8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_b10c_af2d_3fe8&showErrors=false&email=", "University of Hawaii", "hawaii_soest_b10c_af2d_3fe8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_026f_4c1d_55e5", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_026f_4c1d_55e5.graph", "", "", "public", "PacIOOS Nearshore Sensor 13 (NS13): Kahului, Maui, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS13 is located in Kahului Harbor in Maui. The instrument is a 6600V2-4 Multi-parameter water quality logger. The package is fixed to a piling at about 1.5m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nturbidity_dm_qd (Turbidity quality descriptor)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nchlorophyll_dm_qd (Chlorophyll quality descriptor)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor)\nwater_depth (Sensor depth (processed), m)\nwater_depth_raw (Sensor depth (raw), m)\nwater_depth_dm_qd (Sensor depth quality descriptor)\nph (pH (processed), 1)\nph_raw (pH (raw), 1)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_026f_4c1d_55e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_026f_4c1d_55e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_026f_4c1d_55e5/index.json", "http://www.pacioos.hawaii.edu/water/sensor-kahului/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_026f_4c1d_55e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_026f_4c1d_55e5&showErrors=false&email=", "University of Hawaii", "hawaii_soest_026f_4c1d_55e5"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_191e_fe37_f9a0", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_191e_fe37_f9a0.graph", "", "", "public", "PacIOOS Nearshore Sensor 15 (NS15): Pago Bay, Guam", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS15 is in Pago Bay, Guam and is mounted to the bottom in about 1.5 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_191e_fe37_f9a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_191e_fe37_f9a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_191e_fe37_f9a0/index.json", "http://www.pacioos.hawaii.edu/water/sensor-pago/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_191e_fe37_f9a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_191e_fe37_f9a0&showErrors=false&email=", "University of Hawaii", "hawaii_soest_191e_fe37_f9a0"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d5ba_831c_443a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d5ba_831c_443a.graph", "", "", "public", "PacIOOS Nearshore Sensor 16 (NS16): Wailupe, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS16 is located off Wailupe in Maunalua Bay in Aina Haina. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to the pier at about 1m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nturbidity_dm_qd (Turbidity quality descriptor)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nchlorophyll_dm_qd (Chlorophyll quality descriptor)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\npressure_dm_qd (Pressure quality descriptor)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d5ba_831c_443a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d5ba_831c_443a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d5ba_831c_443a/index.json", "http://www.pacioos.hawaii.edu/water/sensor-wailupe/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d5ba_831c_443a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d5ba_831c_443a&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d5ba_831c_443a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_093e_cd55_43a3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_093e_cd55_43a3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_093e_cd55_43a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_093e_cd55_43a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_093e_cd55_43a3/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_093e_cd55_43a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_093e_cd55_43a3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_093e_cd55_43a3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc92_7d24_0627", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc92_7d24_0627.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_cc92_7d24_0627_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_cc92_7d24_0627_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_cc92_7d24_0627/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_cc92_7d24_0627.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_cc92_7d24_0627&showErrors=false&email=", "University of Hawaii", "hawaii_soest_cc92_7d24_0627"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f289_8170_ec45", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f289_8170_ec45.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f289_8170_ec45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f289_8170_ec45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f289_8170_ec45/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f289_8170_ec45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f289_8170_ec45&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f289_8170_ec45"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_36dd_cf4c_73a6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_36dd_cf4c_73a6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_36dd_cf4c_73a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_36dd_cf4c_73a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_36dd_cf4c_73a6/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_36dd_cf4c_73a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_36dd_cf4c_73a6&showErrors=false&email=", "University of Hawaii", "hawaii_soest_36dd_cf4c_73a6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5359_8678_82b1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5359_8678_82b1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5359_8678_82b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5359_8678_82b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5359_8678_82b1/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5359_8678_82b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5359_8678_82b1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5359_8678_82b1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_92c1_a2b0_55fb", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_92c1_a2b0_55fb.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_92c1_a2b0_55fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_92c1_a2b0_55fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_92c1_a2b0_55fb/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_92c1_a2b0_55fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_92c1_a2b0_55fb&showErrors=false&email=", "University of Hawaii", "hawaii_soest_92c1_a2b0_55fb"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_75b3_e52c_26a2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_75b3_e52c_26a2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_75b3_e52c_26a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_75b3_e52c_26a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_75b3_e52c_26a2/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_75b3_e52c_26a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_75b3_e52c_26a2&showErrors=false&email=", "University of Hawaii", "hawaii_soest_75b3_e52c_26a2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_a826_8633_00bb", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_a826_8633_00bb.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_a826_8633_00bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_a826_8633_00bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_a826_8633_00bb/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_a826_8633_00bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_a826_8633_00bb&showErrors=false&email=", "University of Hawaii", "hawaii_soest_a826_8633_00bb"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_076a_87b3_40a0", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_076a_87b3_40a0.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_076a_87b3_40a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_076a_87b3_40a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_076a_87b3_40a0/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_076a_87b3_40a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_076a_87b3_40a0&showErrors=false&email=", "University of Hawaii", "hawaii_soest_076a_87b3_40a0"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_4c82_4728_010b", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_4c82_4728_010b.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_4c82_4728_010b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_4c82_4728_010b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_4c82_4728_010b/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_4c82_4728_010b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_4c82_4728_010b&showErrors=false&email=", "University of Hawaii", "hawaii_soest_4c82_4728_010b"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_856b_7e66_8c3f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_856b_7e66_8c3f.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_856b_7e66_8c3f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_856b_7e66_8c3f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_856b_7e66_8c3f/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_856b_7e66_8c3f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_856b_7e66_8c3f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_856b_7e66_8c3f"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2f21_4063_cfec", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2f21_4063_cfec.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_2f21_4063_cfec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_2f21_4063_cfec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_2f21_4063_cfec/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_2f21_4063_cfec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_2f21_4063_cfec&showErrors=false&email=", "University of Hawaii", "hawaii_soest_2f21_4063_cfec"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7adc_5b2b_769e", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7adc_5b2b_769e.graph", "", "", "public", "PacIOOS Water Quality Buoy 03 (WQB-03): Kiholo Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-03 is located at Kiholo Bay along the leeward (Western) coast of the North Kona district of Big Island in Hawaii. Continuous sampling of this outflow area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\ntemperature (water temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_qd (Temperature quality descriptor, 0)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_qd (Conductivity quality descriptor, 0)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_qd (Salinity quality descriptor, 0)\noxygen (Dissolved oxygen concentration (processed), kg m-3)\noxygen_raw (Dissolved oxygen concentration (raw), kg m-3)\noxygen_qd (Dissolved oxygen concentration quality descriptor, 0)\noxygen_saturation (Dissolved oxygen saturation (processed), 1)\noxygen_saturation_raw (Dissolved oxygen saturation (raw), 1)\noxygen_saturation_qd (Dissolved oxygen saturation quality descriptor, 0)\noxygen_saturation_concentration (Dissolved oxygen saturation concentration (processed), kg m-3)\noxygen_saturation_concentration_raw (Dissolved oxygen saturation concentration (raw), kg m-3)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_7adc_5b2b_769e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_7adc_5b2b_769e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_7adc_5b2b_769e/index.json", "http://www.pacioos.hawaii.edu/water/wqbuoy-kiholo/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_7adc_5b2b_769e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_7adc_5b2b_769e&showErrors=false&email=", "University of Hawaii", "hawaii_soest_7adc_5b2b_769e"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5efb_06ec_ff63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5efb_06ec_ff63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5efb_06ec_ff63.graph", "", "", "public", "PacIOOS Water Quality Buoy 04 (WQB-04): Hilo Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB04 is located in Hilo Bay on the east side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Depth below mean sea level, m)\nstation_name (WQB04: PacIOOS Water Quality Buoy 04 (WQB-04): Hilo Bay, Big Island, Hawaii)\ntemperature (Temperature (processed), Celsius)\nsalinity (Salinity (processed), 1e-3)\nturbidity (Turbidity (processed), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\noxygen (Dissolved oxygen concentration (processed), kg m-3)\noxygen_saturation (Dissolved oxygen saturation (processed), 1)\nph (pH (processed), 1)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature delayed-mode quality descriptor, 0)\ntemperature_qc_gap (QARTOD Gap Test, 0)\ntemperature_qc_syn (0)\ntemperature_qc_loc (QARTOD Location Test, 0)\ntemperature_qc_rng (QARTOD Gross Range Test, 0)\ntemperature_qc_clm (QARTOD Climatological Test, 0)\ntemperature_qc_spk (QARTOD Spike Test, 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test, 0)\ntemperature_qc_flt (QARTOD Flat Line Test, 0)\ntemperature_qc_mvr (QARTOD Multi-Variate Test, 0)\n... (87 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5efb_06ec_ff63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5efb_06ec_ff63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5efb_06ec_ff63/index.json", "http://www.pacioos.hawaii.edu/water/wqbuoy-hilo/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5efb_06ec_ff63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5efb_06ec_ff63&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5efb_06ec_ff63"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5efa_cc6e_79c5", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5efa_cc6e_79c5.graph", "", "", "public", "PacIOOS Water Quality Buoy AW (WQB-AW): Ala Wai, Oahu, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-AW is located at the exit of the Ala Wai Canal, near Magic Island. Continuous sampling of this outflow area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor, 0)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor, 0)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor, 0)\noxygen (Dissolved oxygen concentration (processed), kg m-3)\noxygen_raw (Dissolved oxygen concentration (raw), kg m-3)\noxygen_dm_qd (Dissolved oxygen concentration quality descriptor, 0)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nturbidity_dm_qd (Turbidity quality descriptor, 0)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nchlorophyll_dm_qd (Chlorophyll quality descriptor, 0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5efa_cc6e_79c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5efa_cc6e_79c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5efa_cc6e_79c5/index.json", "http://www.pacioos.hawaii.edu/water/wqbuoy-alawai/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5efa_cc6e_79c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5efa_cc6e_79c5&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5efa_cc6e_79c5"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2d69_a0d9_d559", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2d69_a0d9_d559.graph", "", "", "public", "PacIOOS Water Quality Buoy KN (WQB-KN): Kilo Nalu, Oahu, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-KN is located at the Kilo Nalu Nearshore Reef Observatory, near Kakaako Waterfront Park and Kewalo Basin off of Ala Moana Boulevard in Honolulu. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor, 0)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor, 0)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor, 0)\noxygen (Dissolved oxygen concentration (processed), kg m-3)\noxygen_raw (Dissolved oxygen concentration (raw), kg m-3)\noxygen_dm_qd (Dissolved oxygen concentration quality descriptor, 0)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nturbidity_dm_qd (Turbidity quality descriptor, 0)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nchlorophyll_dm_qd (Chlorophyll quality descriptor, 0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_2d69_a0d9_d559_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_2d69_a0d9_d559_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_2d69_a0d9_d559/index.json", "http://www.pacioos.hawaii.edu/water/wqbuoy-kilonalu/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_2d69_a0d9_d559.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_2d69_a0d9_d559&showErrors=false&email=", "University of Hawaii", "hawaii_soest_2d69_a0d9_d559"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f49_4796_ddc3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f49_4796_ddc3.graph", "", "", "public", "Weather Station: Hawaii: Oahu: Coconut Island", "The Hawaii Institute of Marine Biology (HIMB) automatic weather station (AWS) records hourly measurements of precipitation, air temperature, wind speed and direction, and irradiance. Sensors include an Eppley 295-385 nm ultraviolet (UV) radiometer, a LiCor 200SZ Pyranometer, and a LiCor Quantameter (400-700 nm). The sensors are located on the roof of HIMB's Coral Reef Ecology Laboratory (Point Lab) on Moku o Loe (Coconut Island) in Kaneohe Bay on the windward (eastern) coast of Oahu in Hawaii. An accompanying sea water temperature sensor is located less than 10 m offshore of the weather station at a shallow depth of approximately 1 m.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\naltitude (height above mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\nair_temperature (Surface air temperature, Celsius)\nsea_water_temperature (Mean ocean temperature, Celsius)\nwind_speed (Mean wind speed, m s-1)\nwind_from_direction (Mean wind from direction, degrees)\nwind_from_direction_std (Standard deviation of wind from direction, degrees)\nwind_speed_max (Maximum wind gust, m s-1)\nrainfall_amount (Rainfall total, mm)\nshortwave_radiation (Average downwelling shortwave radiation, W m-2)\nphotosynthetic_radiation (Photosynthetically active radiation, umol m-2 s-1)\nultraviolet_radiation (W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8f49_4796_ddc3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8f49_4796_ddc3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8f49_4796_ddc3/index.json", "http://www.pacioos.hawaii.edu/weather/obs-mokuoloe/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8f49_4796_ddc3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8f49_4796_ddc3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8f49_4796_ddc3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d98d_1d43_fef7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d98d_1d43_fef7.graph", "", "", "public", "Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\naltitude (height above mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\nair_temperature (Mean air temperature, Celsius)\nair_temperature_std (Standard deviation of air temperature, Celsius)\nair_temperature_max (Maximum air temperature, Celsius)\nair_temperature_max_time (Time of maximum air temperature, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (Minimum air temperature, Celsius)\nair_temperature_min_time (Time of minimum air temperature, seconds since 1970-01-01T00:00:00Z)\nwind_speed (Mean wind speed, m s-1)\nwind_speed_std (Standard deviation wind speed, m s-1)\nwind_speed_max (Maximum wind speed, m s-1)\nwind_speed_max_time (Time of maximum wind speed, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (Minimum wind speed, m s-1)\nwind_speed_min_time (Time of minimum wind speed, seconds since 1970-01-01T00:00:00Z)\nwind_from_direction (degrees)\nwind_from_direction_std (Standard deviation of wind direction, degrees)\nrainfall_amount (Rainfall total, mm)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d98d_1d43_fef7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d98d_1d43_fef7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d98d_1d43_fef7/index.json", "http://www.coralreefresearchfoundation.org", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d98d_1d43_fef7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d98d_1d43_fef7&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "hawaii_soest_d98d_1d43_fef7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/FRD_SSTgradsmo", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/FRD_SSTgradsmo.graph", "", "", "public", "SST smoothed frontal gradients", "An improved automatic detection of mesoscale fronts, derived from Cayula, J. F., & Cornillon, P. (1992) and Cayula, J. F., & Cornillon, P. (1995), using the new method described by Nieto et al. (2012)\n\nNieto, Karen, Demarcq, H. and McClatchie, S. \"Mesoscale frontal structures in the Canary Upwelling System: new front and filament detection algorithms applied to spatial and temporal patterns\". Remote Sensing of the Environment 123, 2012 (pp.339-346)\"\n\nCayula, J. F., & Cornillon, P. (1992). Edge detection algorithm for SST images. Journal of Atmospheric and Oceanic Technology, 9, 67-80.\n\nCayula, J. F., & Cornillon, P. (1995). Multi-image edge detection for SST images. Journal of Atmospheric and Oceanic Technology, 12, 821-829.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSSTgrad (SST Edge-Gradient monthly, degrees C / km)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRD_SSTgradsmo_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRD_SSTgradsmo_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRD_SSTgradsmo/index.json", "https://oceanview.pfeg.noaa.gov/FRD/SSTgradsmo_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/FRD_SSTgradsmo.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRD_SSTgradsmo&showErrors=false&email=", "NOAA/NMFS/SWFSC", "FRD_SSTgradsmo"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlCOAMPS3km", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlCOAMPS3km.graph", "", "", "public", "COAMPS 3km Surface Fields", "COAMPS_Surface_Fields\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][lat][lon]):\nair_temperature (deg C)\nsurface_temperature (Ground temperature over land, Sea surface temperature over the ocean, deg C)\nlonflx (Net surface longwave radiative heat flux, W/m**2)\nrelative_humidity (percent)\nair_pressure_at_sea_level (Sea Level Pressure, millibars)\nsolflx (Net surface shortwave radiative heat flux, W/m**2)\nhourly_precip (Hourly Precipitation, mm)\nx_wind (Zonal Wind, m/s)\ny_wind (Meridional Wind, m/s)\nwind_speed (m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nrlCOAMPS3km/index.json", "https://www.nrlmry.navy.mil/coamps-web/web/home", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlCOAMPS3km.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlCOAMPS3km&showErrors=false&email=", "Naval Research Laboratory, Monterey Marine Meteorology Division", "nrlCOAMPS3km"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlCOAMPS3kmNogap", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlCOAMPS3kmNogap.graph", "", "", "public", "COAMPS 3km Surface Fields (Reanalysis, No Gaps)", "COAMPS_Surface_Fields\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][lat][lon]):\nair_temperature (deg C)\nsurface_temperature (Ground temperature over land, Sea surface temperature over the ocean, deg C)\nlonflx (Net surface longwave radiative heat flux, W/m**2)\nrelative_humidity (percent)\nair_pressure_at_sea_level (Sea Level Pressure, millibars)\nsolflx (Net surface shortwave radiative heat flux, W/m**2)\nttlpcp (Hourly Precipitation, mm)\nx_wind (Zonal Wind, m/s)\ny_wind (Meridional Wind, m/s)\nwind_speed (m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nrlCOAMPS3kmNogap/index.json", "https://www.nrlmry.navy.mil/coamps-web/web/home", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlCOAMPS3kmNogap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlCOAMPS3kmNogap&showErrors=false&email=", "Naval Research Laboratory, Monterey Marine Meteorology Division", "nrlCOAMPS3kmNogap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/database-tables-description", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/database-tables-description", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/cast-table-column-descriptions", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a.graph", "", "", "public", "OceanSITES KEO daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from the Kuroshio Extension Observatory (KEO) site nominally at 32.3N,144.6E, in the Kuroshio Extension recirculation gyre. The actual anchor position is different for each deployment, and this is a slack line mooring with a watch circle radius greater than 5km. For users performing inter comparisons, it may be important to use the actual position of the buoy from the Global Positioning System (GPS) data. This mooring has been instrumented with upper ocean and surface sensors since June 2004. Included in this file are sea temperatures and pressures from the surface to 525m depth, salinity and density (sigma-theta) from the surface to 400m depth, sea currents to 35m depth, a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and barometric pressure. Note that because this is a slack-line mooring, subsurface sensor depths vary with time, and hence one must use the observed and calculated water pressures to compute sensor depths. Also, due to the relatively large scope and different anchor positions, the positions of the buoy at the surface are included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndeptemp (Depth of each measurement, meters)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepth (m)\nPRES (water pressure, observed and calculated, decibar)\nPRES_QC (quality flag)\nPRES_DM (method of data processing)\n... (53 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/keo_121f_a3d0_3c0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/keo_121f_a3d0_3c0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/keo_121f_a3d0_3c0a/index.json", "https://www.pmel.noaa.gov/ocs/", "http://upwell.pfeg.noaa.gov/erddap/rss/keo_121f_a3d0_3c0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=keo_121f_a3d0_3c0a&showErrors=false&email=", "NOAA/PMEL", "keo_121f_a3d0_3c0a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f.graph", "", "", "public", "OceanSITES PAPA daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from station Papa at 50N,145W in the North Pacific. This taut-line mooring has been instrumented with upper ocean and surface sensors since June 2007. Included in this file are sea temperatures from the surface to 300 meters depth, salinity and density (sigma-theta) from the surface to 200m depth, sea currents at 5m and 35m depth, acoustic doppler profiles of zonal and meridional ocean current to from 30 to 158 meters depth, and a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and barometric pressure. Time series of buoy latitude and longitude are included as well.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each measurement, m)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepcur (Depth of each measurement, m)\nUCUR\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\ndeppsal (Depth of each measurement, m)\n... (43 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/papa_8bb5_dcd5_981f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/papa_8bb5_dcd5_981f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/papa_8bb5_dcd5_981f/index.json", "https://www.pmel.noaa.gov/ocs/", "http://upwell.pfeg.noaa.gov/erddap/rss/papa_8bb5_dcd5_981f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=papa_8bb5_dcd5_981f&showErrors=false&email=", "NOAA/PMEL", "papa_8bb5_dcd5_981f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219.graph", "", "", "public", "OceanSITES PIRATA daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from one of the Tropical Atmosphere/Ocean (TAO)/TRITON, Pilot Research Moored Array in the Tropical Atlantic (PIRATA), or Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) mooring sites in the tropical oceans. Included in this file are sea temperatures from the surface to 500 meters at most sites and deeper at others, salinity and potential density (sigma-theta) at the sea surface and deeper at some sites, sea currents at 10m depth and deeper at some sites, a variety of surface observations including winds, air temperature, relative humidity, shortwave solar radiation, longwave radiation, rain rate, barometric pressure. Buoy positions are also included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each TEMP measurement, m)\ndepcur (Depth of each current measurement)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndeppsal (Depth of each Salinity measurement)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\nPSAL (sea_water_practical_salinity)\nPSAL_QC\nPSAL_DM (method of data processing)\ndepden (Depth of each density measurement)\nheightwind (altitude, meters)\nUWND (zonal wind)\nVWND (meridional wind, m/s)\n... (44 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pirata_5922_7dcd_7219_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pirata_5922_7dcd_7219_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pirata_5922_7dcd_7219/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/pirata_5922_7dcd_7219.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pirata_5922_7dcd_7219&showErrors=false&email=", "NOAA/PMEL", "pirata_5922_7dcd_7219"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc.graph", "", "", "public", "OceanSITES TAO daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from one of the flux reference mooring sites in the tropical oceans. Included in this file are sea temperatures from the surface to 500m depth, salinity and density (sigma-theta) from the surface to typically 120m depth, sea currents typically at 10m depth and at some sites deeper, a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and sea level airpressure. Buoy positions are also included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each measurement, m)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\n... (42 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/tao_6eb4_e773_2fbc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/tao_6eb4_e773_2fbc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/tao_6eb4_e773_2fbc/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/tao_6eb4_e773_2fbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=tao_6eb4_e773_2fbc&showErrors=false&email=", "NOAA/PMEL", "tao_6eb4_e773_2fbc"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e1b2_3228_f482", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e1b2_3228_f482.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_e1b2_3228_f482/request", "", "public", "Obs-AMSRE model output prepared for obs4MIPs NASA-JPL observation", "Obs-Advanced Microwave Scanning Radiometer on EOS (AMSRE) model output prepared for Observations for Model Intercomparisons (obs4MIPs) NASA-Jet Propulsion Laboratory (JPL) observation (AMSRE L3 Sea Surface Temperature (SST) 1DEG 1MO)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntos (Sea Surface Temperature, K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_e1b2_3228_f482_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_e1b2_3228_f482_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_e1b2_3228_f482/index.json", "https://podaac.jpl.nasa.gov/dataset/AMSRE_L3_SST_1DEG_1MO", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_e1b2_3228_f482.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_e1b2_3228_f482&showErrors=false&email=", "Remote Sensing Systems", "nasa_jpl_e1b2_3228_f482"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e8d3_f614_6c50", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e8d3_f614_6c50.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_e8d3_f614_6c50/request", "", "public", "NAVOCEANO 10km Analyzed SST (GHRSST NAVO-L4HR1m-GLOB-K10 SST)", "Naval Oceanographic Office (NAVOCEANO) 10km Analyzed Sea Surface Temperature. Distribution Statement: Approved for public release. Distribution unlimited. (Global High-Resolution Sea Surface Temperature (GHRSST) Naval Oceanography (NAVO)-L4HR1m-GLOB-K10 SST)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (Analyzed Sea Surface Temperature, degree_C)\nanalysis_error (degree_C)\nmask (Land Sea Mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_e8d3_f614_6c50_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_e8d3_f614_6c50_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_e8d3_f614_6c50/index.json", "https://podaac.jpl.nasa.gov/dataset/NAVO-L4HR1m-GLOB-K10_SST", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_e8d3_f614_6c50.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_e8d3_f614_6c50&showErrors=false&email=", "Naval Oceanographic Office", "nasa_jpl_e8d3_f614_6c50"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_64e9_b48f_fa8a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_64e9_b48f_fa8a.graph", "", "", "public", "AVHRR SST NOAA19 NAR-OSISAF-L3C-v1.0 (SST) [nj][ni]", "Sea Surface Temperature. The NAR L3C product derived from NOAA19 Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures. (AVHRR SST NOAA19 NAR-Ocean and Sea Ice Satellite Application Facility (OSISAF)-L3C-v1.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nj][ni]):\nlat (latitude, degrees_north)\nlon (longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_64e9_b48f_fa8a/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_NOAA19_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_64e9_b48f_fa8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_64e9_b48f_fa8a&showErrors=false&email=", "OSISAF", "nasa_jpl_64e9_b48f_fa8a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_5345_5e3b_4d57", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_5345_5e3b_4d57.graph", "", "", "public", "AVHRR SST NOAA19 NAR-OSISAF-L3C-v1.0 (SST) [time][nj][ni]", "Sea Surface Temperature. The NAR L3C product derived from NOAA19 Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures. (AVHRR SST NOAA19 NAR-Ocean and Sea Ice Satellite Application Facility (OSISAF)-L3C-v1.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][nj][ni]):\nsea_surface_temperature (sea surface subskin temperature, degree_C)\nsst_dtime (time difference from reference time, seconds)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (deviation from SST analysis or reference climatology, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nadi_dtime_from_sst (time difference of ADI data from sst measurement, hour)\nsources_of_adi (sources of aerosol dynamic indicator)\nl2p_flags\nquality_level (quality level of SST pixel)\nsatellite_zenith_angle (angular_degree)\nsolar_zenith_angle (angular_degree)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_5345_5e3b_4d57/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_NOAA19_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_5345_5e3b_4d57.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_5345_5e3b_4d57&showErrors=false&email=", "OSISAF", "nasa_jpl_5345_5e3b_4d57"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3e3d_e75d_fe06", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3e3d_e75d_fe06.graph", "", "", "public", "AVHRR SST METOP A NAR-OSISAF-L3C-v1.0 (SST) [nj][ni]", "Sea Surface Temperature. The NAR L3C product derived from METOP A Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures. (AVHRR SST METOP A NAR-Ocean and Sea Ice Satellite Application Facility (OSISAF)-L3C-v1.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nj][ni]):\nlat (latitude, degrees_north)\nlon (longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_3e3d_e75d_fe06/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_METOP_A_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_3e3d_e75d_fe06.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_3e3d_e75d_fe06&showErrors=false&email=", "OSISAF", "nasa_jpl_3e3d_e75d_fe06"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3b29_afb1_adbc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3b29_afb1_adbc.graph", "", "", "public", "VIIRS SST NPP NAR-OSISAF-L3C-v1.0 (SST) [nj][ni]", "Sea Surface Temperature. The NAR L3C product derived from National Polar-orbiting Partnership (NPP) Visible and Infrared Imager/Radiometer Suite (VIIRS) brightness temperatures. (VIIRS SST NPP NAR-Ocean and Sea Ice Satellite Application Facility (OSISAF)-L3C-v1.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nj][ni]):\nlat (latitude, degrees_north)\nlon (longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_3b29_afb1_adbc/index.json", "https://podaac.jpl.nasa.gov/dataset/VIIRS_SST_NPP_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_3b29_afb1_adbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_3b29_afb1_adbc&showErrors=false&email=", "OSISAF", "nasa_jpl_3b29_afb1_adbc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_471c_9422_782d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_471c_9422_782d.graph", "", "", "public", "NCOM Region 1, NCOM Region 1, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 1 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_471c_9422_782d/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_471c_9422_782d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_471c_9422_782d&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_471c_9422_782d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_8c7a_4281_add4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_8c7a_4281_add4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_8c7a_4281_add4/request", "", "public", "NCOM Region 1, NCOM Region 1, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 1 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_8c7a_4281_add4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_8c7a_4281_add4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_8c7a_4281_add4/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_8c7a_4281_add4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_8c7a_4281_add4&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_8c7a_4281_add4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_42cc_a9de_41af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_42cc_a9de_41af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_42cc_a9de_41af/request", "", "public", "NCOM Region 1, NCOM Region 1, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 1 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_42cc_a9de_41af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_42cc_a9de_41af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_42cc_a9de_41af/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_42cc_a9de_41af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_42cc_a9de_41af&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_42cc_a9de_41af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_6858_1b33_06bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_6858_1b33_06bd.graph", "", "", "public", "NCOM Region 2, NCOM Region 2, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 2 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_6858_1b33_06bd/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_6858_1b33_06bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_6858_1b33_06bd&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_6858_1b33_06bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_32dc_2bcd_70ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_32dc_2bcd_70ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_32dc_2bcd_70ea/request", "", "public", "NCOM Region 2, NCOM Region 2, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 2 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalinity (PSU)\nwater_temp (Water Temperature, degree_C)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_32dc_2bcd_70ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_32dc_2bcd_70ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_32dc_2bcd_70ea/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_32dc_2bcd_70ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_32dc_2bcd_70ea&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_32dc_2bcd_70ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_e024_ac82_0c11", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_e024_ac82_0c11.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_e024_ac82_0c11/request", "", "public", "NCOM Region 2, NCOM Region 2, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 2 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_e024_ac82_0c11_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_e024_ac82_0c11_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_e024_ac82_0c11/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_e024_ac82_0c11.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_e024_ac82_0c11&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_e024_ac82_0c11"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_ebff_3cc4_a0c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_ebff_3cc4_a0c9.graph", "", "", "public", "NCOM Region 5, NCOM Region 5, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 5 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_ebff_3cc4_a0c9/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_ebff_3cc4_a0c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_ebff_3cc4_a0c9&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_ebff_3cc4_a0c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_750c_0664_336a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_750c_0664_336a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_750c_0664_336a/request", "", "public", "NCOM Region 5, NCOM Region 5, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 5 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_750c_0664_336a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_750c_0664_336a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_750c_0664_336a/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_750c_0664_336a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_750c_0664_336a&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_750c_0664_336a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_071d_34e8_7a21", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_071d_34e8_7a21.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_071d_34e8_7a21/request", "", "public", "NCOM Region 5, NCOM Region 5, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 5 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_071d_34e8_7a21_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_071d_34e8_7a21_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_071d_34e8_7a21/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_071d_34e8_7a21.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_071d_34e8_7a21&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_071d_34e8_7a21"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_7309_f69a_991a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_7309_f69a_991a.graph", "", "", "public", "NCOM Region 6, NCOM Region 6, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 6 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_7309_f69a_991a/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_7309_f69a_991a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_7309_f69a_991a&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_7309_f69a_991a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_bad7_0640_6d9a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_bad7_0640_6d9a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_bad7_0640_6d9a/request", "", "public", "NCOM Region 6, NCOM Region 6, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 6 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalinity (PSU)\nwater_temp (Water Temperature, degree_C)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_bad7_0640_6d9a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_bad7_0640_6d9a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_bad7_0640_6d9a/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_bad7_0640_6d9a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_bad7_0640_6d9a&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_bad7_0640_6d9a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_b8d7_7054_47d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_b8d7_7054_47d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_b8d7_7054_47d4/request", "", "public", "NCOM Region 6, NCOM Region 6, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 6 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_b8d7_7054_47d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_b8d7_7054_47d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_b8d7_7054_47d4/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_b8d7_7054_47d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_b8d7_7054_47d4&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_b8d7_7054_47d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_40a9_d027_7372", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_40a9_d027_7372.graph", "", "", "public", "NCOM Region 7, NCOM Region 7, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 7 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_40a9_d027_7372/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_40a9_d027_7372.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_40a9_d027_7372&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_40a9_d027_7372"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_bf9d_4a29_a5d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_bf9d_4a29_a5d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_bf9d_4a29_a5d3/request", "", "public", "NCOM Region 7, NCOM Region 7, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 7 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalinity (PSU)\nwater_temp (Water Temperature, degree_C)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_bf9d_4a29_a5d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_bf9d_4a29_a5d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_bf9d_4a29_a5d3/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_bf9d_4a29_a5d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_bf9d_4a29_a5d3&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_bf9d_4a29_a5d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5670_aa0a_3848", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5670_aa0a_3848.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_5670_aa0a_3848/request", "", "public", "NCOM Region 7, NCOM Region 7, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 7 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_5670_aa0a_3848_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_5670_aa0a_3848_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_5670_aa0a_3848/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_5670_aa0a_3848.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_5670_aa0a_3848&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_5670_aa0a_3848"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5325_cd6e_43de", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5325_cd6e_43de.graph", "", "", "public", "NCOM Region 10, NCOM Region 10, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 10 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_5325_cd6e_43de/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_5325_cd6e_43de.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_5325_cd6e_43de&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_5325_cd6e_43de"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_603c_bf5b_abc8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_603c_bf5b_abc8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_603c_bf5b_abc8/request", "", "public", "NCOM Region 10, NCOM Region 10, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 10 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalinity (PSU)\nwater_temp (Water Temperature, degree_C)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_603c_bf5b_abc8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_603c_bf5b_abc8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_603c_bf5b_abc8/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_603c_bf5b_abc8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_603c_bf5b_abc8&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_603c_bf5b_abc8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_23e1_3acd_99d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_23e1_3acd_99d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_23e1_3acd_99d0/request", "", "public", "NCOM Region 10, NCOM Region 10, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 10 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_23e1_3acd_99d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_23e1_3acd_99d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_23e1_3acd_99d0/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_23e1_3acd_99d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_23e1_3acd_99d0&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_23e1_3acd_99d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_15eb_3b9f_e2b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_15eb_3b9f_e2b1.graph", "", "", "public", "NCOM SFC 8, NCOM SFC 8, Best Time Series [time], 2009-2013", "Best time series, taking the data from the most recent run available. Aggregation of SFC 8 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_15eb_3b9f_e2b1/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_15eb_3b9f_e2b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_15eb_3b9f_e2b1&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_15eb_3b9f_e2b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_a560_b65b_e33f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_a560_b65b_e33f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_a560_b65b_e33f/request", "", "public", "NCOM SFC 8, NCOM SFC 8, Best Time Series [time][lat][lon], 0.125\u00b0, 2009-2013", "Best time series, taking the data from the most recent run available. Aggregation of SFC 8 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\nwater_u (Eastward Water Velocity, m/s)\nwater_v (Northward Water Velocity, m/s)\nsurf_el (Water Surface Elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_a560_b65b_e33f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_a560_b65b_e33f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_a560_b65b_e33f/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_a560_b65b_e33f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_a560_b65b_e33f&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_a560_b65b_e33f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_df8c_8539_aee5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_df8c_8539_aee5.graph", "", "", "public", "NCOM SFC8 Hindcast, NCOM SFC8 Hindcast, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_df8c_8539_aee5/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_df8c_8539_aee5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_df8c_8539_aee5&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_df8c_8539_aee5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_1643_41a8_1d04", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_1643_41a8_1d04.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_1643_41a8_1d04/request", "", "public", "NCOM SFC8 Hindcast, NCOM SFC8 Hindcast, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\nwater_u (Eastward Water Velocity, m/s)\nwater_v (Northward Water Velocity, m/s)\nsurf_el (Water Surface Elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_1643_41a8_1d04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_1643_41a8_1d04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_1643_41a8_1d04/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_1643_41a8_1d04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_1643_41a8_1d04&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_1643_41a8_1d04"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_30f3_dedb_1e46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_30f3_dedb_1e46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_30f3_dedb_1e46/request", "", "public", "Amseas May 2010 to Apr 04 2013, Amseas May 2010 to Apr 04 2013, Best Time Series [time][lat][lon]", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: American Seas Regional Forecast. Best time series, taking the data from the most recent run available. US East Before Resolution Change(11/18/09 - 4/05/13)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_atm_press (Surface Atmospherics Pressure, Pascal)\nsurf_el (Water Surface Elevation, meter)\nsurf_temp_flux (model surface temperature flux, degC-m/s)\nsurf_salt_flux (model surface salinity flux, psu-m/s)\nsurf_solar_flux (model surface shortwave flux, degC-m/s)\nsurf_roughness (model surface roughness, m)\nsurf_wnd_stress_gridx (Grid x Surface Wind Stress, newton/meter2)\nsurf_wnd_stress_gridy (Grid y Surface Wind Stress, newton/meter2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_30f3_dedb_1e46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_30f3_dedb_1e46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_30f3_dedb_1e46/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_amseas_agg_20091119_20130404/Amseas_May_2010_to_Apr_04_2013_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_30f3_dedb_1e46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_30f3_dedb_1e46&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_30f3_dedb_1e46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5646_f209_8b5a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5646_f209_8b5a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_5646_f209_8b5a/request", "", "public", "Amseas May 2010 to Apr 04 2013, Amseas May 2010 to Apr 04 2013, Best Time Series [time][depth][lat][lon]", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: American Seas Regional Forecast. Best time series, taking the data from the most recent run available. US East Before Resolution Change(11/18/09 - 4/05/13)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_5646_f209_8b5a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_5646_f209_8b5a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_5646_f209_8b5a/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_amseas_agg_20091119_20130404/Amseas_May_2010_to_Apr_04_2013_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_5646_f209_8b5a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_5646_f209_8b5a&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_5646_f209_8b5a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_01d3_5057_e3ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_01d3_5057_e3ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_01d3_5057_e3ef/request", "", "public", "US East Feb 2009 to November 18 2009, US East Feb 2009 to November 18 2009, Best Time Series [time][lat][lon]", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: Sendai Regional Forecast. Best time series, taking the data from the most recent run available. US East Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_atm_press (Surface Atmospherics Pressure, Pascal)\nsurf_el (Water Surface Elevation, meter)\nsurf_temp_flux (model surface temperature flux, degC-m/s)\nsurf_salt_flux (model surface salinity flux, psu-m/s)\nsurf_solar_flux (model surface shortwave flux, degC-m/s)\nsurf_roughness (model surface roughness, m)\nsurf_wnd_stress_gridx (Grid x Surface Wind Stress, newton/meter2)\nsurf_wnd_stress_gridy (Grid y Surface Wind Stress, newton/meter2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_01d3_5057_e3ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_01d3_5057_e3ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_01d3_5057_e3ef/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_us_east_before_depth_change_agg/US_East_Feb_2009_to_November_18_2009_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_01d3_5057_e3ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_01d3_5057_e3ef&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_01d3_5057_e3ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_a4af_5d09_927f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_a4af_5d09_927f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_a4af_5d09_927f/request", "", "public", "US East Feb 2009 to November 18 2009, US East Feb 2009 to November 18 2009, Best Time Series [time][depth][lat][lon]", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: Sendai Regional Forecast. Best time series, taking the data from the most recent run available. US East Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_a4af_5d09_927f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_a4af_5d09_927f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_a4af_5d09_927f/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_us_east_before_depth_change_agg/US_East_Feb_2009_to_November_18_2009_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_a4af_5d09_927f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_a4af_5d09_927f&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_a4af_5d09_927f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_786c_959f_ba5d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_786c_959f_ba5d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_786c_959f_ba5d/request", "", "public", "US East Nov 19 2009 to Apr 04 2013, US East Nov 19 2009 to Apr 04 2013, Best Time Series [time][lat][lon]", "Best time series, taking the data from the most recent run available. US East Before Resolution Change(11/18/09 - 4/05/13)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_atm_press (Surface Atmospherics Pressure, Pascal)\nsurf_el (Water Surface Elevation, meter)\nsurf_temp_flux (model surface temperature flux, degC-m/s)\nsurf_salt_flux (model surface salinity flux, psu-m/s)\nsurf_solar_flux (model surface shortwave flux, degC-m/s)\nsurf_roughness (model surface roughness, m)\nsurf_wnd_stress_gridx (Grid x Surface Wind Stress, newton/meter2)\nsurf_wnd_stress_gridy (Grid y Surface Wind Stress, newton/meter2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_786c_959f_ba5d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_786c_959f_ba5d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_786c_959f_ba5d/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_useast_agg_20091119_20130404/US_East_Nov_19_2009_to_Apr_04_2013_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_786c_959f_ba5d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_786c_959f_ba5d&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_786c_959f_ba5d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_3360_0e6c_c4f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_3360_0e6c_c4f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_3360_0e6c_c4f3/request", "", "public", "US East Nov 19 2009 to Apr 04 2013, US East Nov 19 2009 to Apr 04 2013, Best Time Series [time][depth][lat][lon]", "Best time series, taking the data from the most recent run available. US East Before Resolution Change(11/18/09 - 4/05/13)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_3360_0e6c_c4f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_3360_0e6c_c4f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_3360_0e6c_c4f3/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_useast_agg_20091119_20130404/US_East_Nov_19_2009_to_Apr_04_2013_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_3360_0e6c_c4f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_3360_0e6c_c4f3&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_3360_0e6c_c4f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_da08_dcdf_2100", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_da08_dcdf_2100.graph", "", "", "public", "Extended AVHRR Polar Pathfinder Fundamental Climate Data Record (APPx CDR) [columns][rows]", "The Extended Advanced Very High Resolution Radiometer (AVHRR) Polar Pathfinder (APP-x) version-2 Thematic Climate Data Record (CDR) includes surface temperature, surface albedo, surface and the Top Of the Atmosphere (TOA) shortwave and longwave radiative fluxes, cloud properties (amount, phase, particle size, optical depth,top pressure and temperature, surface and TOA radiative effect), and ice thickness and age. The APP-x CDR has twice daily data at local solar times of 14 and 04(02) for the Arctic(Antarctic) at a spatial resolution of 25 km for both poles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [columns][rows]):\nlongitude (longitude of EASE Grid 25km resolution in the polar regions, Arctic (361,361), Antarctic (321,321), degrees_east)\nlatitude (latitude of EASE Grid 25km resolution in the polar regionsArctic (361,361), Antarctic (321,321), degrees_north)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_da08_dcdf_2100/index.json", "https://www.ngdc.noaa.gov/thredds/dodsC/arctic/Polar-APP-X_v01r01_Nhem_1400_d20160801_c20160803.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_da08_dcdf_2100.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_da08_dcdf_2100&showErrors=false&email=", "Cooperative Institute for Meteorological Studies, University of Wisconsin at Madison", "noaa_ngdc_da08_dcdf_2100"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0fe5_a4b9_3776", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0fe5_a4b9_3776.graph", "", "", "public", "Extended AVHRR Polar Pathfinder Fundamental Climate Data Record (APPx CDR) [Time][columns][rows]", "The Extended Advanced Very High Resolution Radiometer (AVHRR) Polar Pathfinder (APP-x) version-2 Thematic Climate Data Record (CDR) includes surface temperature, surface albedo, surface and the Top Of the Atmosphere (TOA) shortwave and longwave radiative fluxes, cloud properties (amount, phase, particle size, optical depth,top pressure and temperature, surface and TOA radiative effect), and ice thickness and age. The APP-x CDR has twice daily data at local solar times of 14 and 04(02) for the Arctic(Antarctic) at a spatial resolution of 25 km for both poles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time2][columns][rows]):\ncdr_surface_temperature (NOAA CDR of surface skin temperature, K)\ncdr_surface_albedo (NOAA CDR of surface broadband albedo, 1)\ncdr_surface_downwelling_shortwave_flux (NOAA CDR of surface downwelling shortwave radiative flux, W m-2)\ncdr_surface_downwelling_longwave_flux (NOAA CDR of surface downwelling longwave radiative flux, W m-2)\ncdr_surface_upwelling_shortwave_flux (NOAA CDR of surface upwelling shortwave radiative flux, W m-2)\ncdr_surface_upwelling_longwave_flux (NOAA CDR of surface upwelling longwave radiative flux, W m-2)\ncdr_cloud_binary_mask (NOAA CDR of cloud mask, 1)\ncdr_sea_ice_thickness (NOAA CDR of sea ice thickness, m)\ncdr_toa_net_downward_shortwave_flux (NOAA CDR of TOA net downward shortwave radiative flux, W m-2)\ncdr_toa_outgoing_shortwave_flux (NOAA CDR of TOA outgoing shortwave radiative flux, W m-2)\ncdr_toa_outgoing_longwave_flux (NOAA CDR of TOA outgoing longwave radiative flux, W m-2)\nsurface_type (1)\ncloud_particle_phase (1)\ncloud_particle_radius (microns)\ncloud_optical_depth (1)\ncloud_top_pressure (hPa)\ncloud_top_temperature (K)\ncloud_type (1)\nsurface_shortwave_cloud_radiative_forcing (W m-2)\nsurface_longwave_cloud_radiative_forcing (W m-2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0fe5_a4b9_3776/index.json", "https://www.ngdc.noaa.gov/thredds/dodsC/arctic/Polar-APP-X_v01r01_Nhem_1400_d20160801_c20160803.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0fe5_a4b9_3776.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0fe5_a4b9_3776&showErrors=false&email=", "Cooperative Institute for Meteorological Studies, University of Wisconsin at Madison", "noaa_ngdc_0fe5_a4b9_3776"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5253_bf9e_db32", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5253_bf9e_db32.graph", "", "", "public", "Extended AVHRR Polar Pathfinder Fundamental Climate Data Record (APPx CDR) [columns][rows]", "The Extended Advanced Very High Resolution Radiometer (AVHRR) Polar Pathfinder (APP-x) Version-2 thematic Climate Data Record (CDR) includes more than 33 years of surface temperature, surface albedo, surface and the Top Of the Atmosphere (TOA) shortwave and longwave radiative fluxes, cloud properties (amount, phase, particle size, optical depth,top pressure and temperature, surface and TOA radiative effect), and ice thickness and age. The APP-x CDR has twice daily data at local solar times of 14 and 04(02) for the Arctic(Antarctic) at a spatial resolution of 25 km for both poles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [columns][rows]):\nlongitude (longitude of EASE Grid 25km resolution in the polar regions, Arctic (361,361), Antarctic (321,321), degrees_east)\nlatitude (latitude of EASE Grid 25km resolution in the polar regionsArctic (361,361), Antarctic (321,321), degrees_north)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5253_bf9e_db32/index.json", "https://www.ngdc.noaa.gov/thredds/dodsC/arctic/Polar-APP-X_v01r01_Nhem_1400_d20160731_c20160822.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5253_bf9e_db32.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5253_bf9e_db32&showErrors=false&email=", "Cooperative Institute for Meteorological Studies, University of Wisconsin at Madison", "noaa_ngdc_5253_bf9e_db32"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0f24_2f8c_d159", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0f24_2f8c_d159.graph", "", "", "public", "Extended AVHRR Polar Pathfinder Fundamental Climate Data Record (APPx CDR) [Time][columns][rows]", "The Extended Advanced Very High Resolution Radiometer (AVHRR) Polar Pathfinder (APP-x) Version-2 thematic Climate Data Record (CDR) includes more than 33 years of surface temperature, surface albedo, surface and the Top Of the Atmosphere (TOA) shortwave and longwave radiative fluxes, cloud properties (amount, phase, particle size, optical depth,top pressure and temperature, surface and TOA radiative effect), and ice thickness and age. The APP-x CDR has twice daily data at local solar times of 14 and 04(02) for the Arctic(Antarctic) at a spatial resolution of 25 km for both poles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time2][columns][rows]):\ncdr_surface_temperature (NOAA CDR of surface skin temperature, K)\ncdr_surface_albedo (NOAA CDR of surface broadband albedo, 1)\ncdr_surface_downwelling_shortwave_flux (NOAA CDR of surface downwelling shortwave radiative flux, W m-2)\ncdr_surface_downwelling_longwave_flux (NOAA CDR of surface downwelling longwave radiative flux, W m-2)\ncdr_surface_upwelling_shortwave_flux (NOAA CDR of surface upwelling shortwave radiative flux, W m-2)\ncdr_surface_upwelling_longwave_flux (NOAA CDR of surface upwelling longwave radiative flux, W m-2)\ncdr_cloud_binary_mask (NOAA CDR of cloud mask, 1)\ncdr_sea_ice_thickness (NOAA CDR of sea ice thickness, m)\ncdr_toa_net_downward_shortwave_flux (NOAA CDR of TOA net downward shortwave radiative flux, W m-2)\ncdr_toa_outgoing_shortwave_flux (NOAA CDR of TOA outgoing shortwave radiative flux, W m-2)\ncdr_toa_outgoing_longwave_flux (NOAA CDR of TOA outgoing longwave radiative flux, W m-2)\nsurface_type (1)\ncloud_particle_phase (1)\ncloud_particle_radius (microns)\ncloud_optical_depth (1)\ncloud_top_pressure (hPa)\ncloud_top_temperature (K)\ncloud_type (1)\nsurface_shortwave_cloud_radiative_forcing (W m-2)\nsurface_longwave_cloud_radiative_forcing (W m-2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0f24_2f8c_d159/index.json", "https://www.ngdc.noaa.gov/thredds/dodsC/arctic/Polar-APP-X_v01r01_Nhem_1400_d20160731_c20160822.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0f24_2f8c_d159.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0f24_2f8c_d159&showErrors=false&email=", "Cooperative Institute for Meteorological Studies, University of Wisconsin at Madison", "noaa_ngdc_0f24_2f8c_d159"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b05e_8ba1_e064", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b05e_8ba1_e064.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b05e_8ba1_e064/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b05e_8ba1_e064_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b05e_8ba1_e064_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b05e_8ba1_e064/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b05e_8ba1_e064.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b05e_8ba1_e064&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_b05e_8ba1_e064"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ba38_d298_7fb6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ba38_d298_7fb6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_ba38_d298_7fb6/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_ba38_d298_7fb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_ba38_d298_7fb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_ba38_d298_7fb6/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_ba38_d298_7fb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_ba38_d298_7fb6&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_ba38_d298_7fb6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2e80_3e92_0d96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2e80_3e92_0d96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_2e80_3e92_0d96/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Summer (Jul-Sep) 5.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_2e80_3e92_0d96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_2e80_3e92_0d96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_2e80_3e92_0d96/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_2e80_3e92_0d96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_2e80_3e92_0d96&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_2e80_3e92_0d96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_278d_ee5d_0336", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_278d_ee5d_0336.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_278d_ee5d_0336/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_278d_ee5d_0336_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_278d_ee5d_0336_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_278d_ee5d_0336/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_278d_ee5d_0336.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_278d_ee5d_0336&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_278d_ee5d_0336"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6eb3_1324_fe10", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6eb3_1324_fe10.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6eb3_1324_fe10/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6eb3_1324_fe10_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6eb3_1324_fe10_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6eb3_1324_fe10/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6eb3_1324_fe10.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6eb3_1324_fe10&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_6eb3_1324_fe10"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_baee_515e_5f93", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_baee_515e_5f93.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_baee_515e_5f93/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature November 5.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_baee_515e_5f93_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_baee_515e_5f93_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_baee_515e_5f93/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_baee_515e_5f93.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_baee_515e_5f93&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_baee_515e_5f93"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b320_a934_3ac2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b320_a934_3ac2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b320_a934_3ac2/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b320_a934_3ac2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b320_a934_3ac2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b320_a934_3ac2/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b320_a934_3ac2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b320_a934_3ac2&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_b320_a934_3ac2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e98e_e92a_9cfb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e98e_e92a_9cfb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e98e_e92a_9cfb/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e98e_e92a_9cfb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e98e_e92a_9cfb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e98e_e92a_9cfb/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e98e_e92a_9cfb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e98e_e92a_9cfb&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_e98e_e92a_9cfb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7d63_a8bc_2608", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7d63_a8bc_2608.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7d63_a8bc_2608/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Annual 5.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7d63_a8bc_2608_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7d63_a8bc_2608_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7d63_a8bc_2608/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7d63_a8bc_2608.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7d63_a8bc_2608&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_7d63_a8bc_2608"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_06bf_c74a_24c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_06bf_c74a_24c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_06bf_c74a_24c6/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_06bf_c74a_24c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_06bf_c74a_24c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_06bf_c74a_24c6/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_06bf_c74a_24c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_06bf_c74a_24c6&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_06bf_c74a_24c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4938_8b84_b07d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4938_8b84_b07d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_4938_8b84_b07d/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_4938_8b84_b07d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_4938_8b84_b07d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_4938_8b84_b07d/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_4938_8b84_b07d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_4938_8b84_b07d&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_4938_8b84_b07d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_c3c3_3090_b391", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_c3c3_3090_b391.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_c3c3_3090_b391/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Summer (Jul-Sep) 5.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_c3c3_3090_b391_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_c3c3_3090_b391_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_c3c3_3090_b391/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_c3c3_3090_b391.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_c3c3_3090_b391&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_c3c3_3090_b391"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8696_391d_42f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8696_391d_42f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_8696_391d_42f0/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_8696_391d_42f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_8696_391d_42f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_8696_391d_42f0/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_8696_391d_42f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_8696_391d_42f0&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_8696_391d_42f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_21e3_c4af_877c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_21e3_c4af_877c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_21e3_c4af_877c/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_21e3_c4af_877c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_21e3_c4af_877c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_21e3_c4af_877c/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_21e3_c4af_877c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_21e3_c4af_877c&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_21e3_c4af_877c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_dd75_631c_40ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_dd75_631c_40ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_dd75_631c_40ca/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature November 5.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_dd75_631c_40ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_dd75_631c_40ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_dd75_631c_40ca/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_dd75_631c_40ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_dd75_631c_40ca&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_dd75_631c_40ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b354_9598_1222", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b354_9598_1222.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b354_9598_1222/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b354_9598_1222_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b354_9598_1222_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b354_9598_1222/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b354_9598_1222.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b354_9598_1222&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_b354_9598_1222"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_aac9_c0d1_377c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_aac9_c0d1_377c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_aac9_c0d1_377c/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_aac9_c0d1_377c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_aac9_c0d1_377c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_aac9_c0d1_377c/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_aac9_c0d1_377c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_aac9_c0d1_377c&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_aac9_c0d1_377c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_695f_f9ac_ce44", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_695f_f9ac_ce44.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_695f_f9ac_ce44/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Annual 5.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_695f_f9ac_ce44_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_695f_f9ac_ce44_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_695f_f9ac_ce44/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_695f_f9ac_ce44.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_695f_f9ac_ce44&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_695f_f9ac_ce44"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2d23_8f3b_dbc9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2d23_8f3b_dbc9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_2d23_8f3b_dbc9/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature Summer (Jul-Sep) 0.10 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_2d23_8f3b_dbc9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_2d23_8f3b_dbc9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_2d23_8f3b_dbc9/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_2d23_8f3b_dbc9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_2d23_8f3b_dbc9&showErrors=false&email=", "NCEI", "noaa_nodc_2d23_8f3b_dbc9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a58e_0a09_068a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a58e_0a09_068a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_a58e_0a09_068a/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_a58e_0a09_068a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_a58e_0a09_068a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_a58e_0a09_068a/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_a58e_0a09_068a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_a58e_0a09_068a&showErrors=false&email=", "NCEI", "noaa_nodc_a58e_0a09_068a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a363_af52_bfdb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a363_af52_bfdb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_a363_af52_bfdb/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_a363_af52_bfdb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_a363_af52_bfdb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_a363_af52_bfdb/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_a363_af52_bfdb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_a363_af52_bfdb&showErrors=false&email=", "NCEI", "noaa_nodc_a363_af52_bfdb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_241d_ee2f_0868", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_241d_ee2f_0868.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_241d_ee2f_0868/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature November 0.10 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_241d_ee2f_0868_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_241d_ee2f_0868_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_241d_ee2f_0868/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_241d_ee2f_0868.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_241d_ee2f_0868&showErrors=false&email=", "NCEI", "noaa_nodc_241d_ee2f_0868"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8cc7_027b_fa4e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8cc7_027b_fa4e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_8cc7_027b_fa4e/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_8cc7_027b_fa4e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_8cc7_027b_fa4e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_8cc7_027b_fa4e/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_8cc7_027b_fa4e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_8cc7_027b_fa4e&showErrors=false&email=", "NCEI", "noaa_nodc_8cc7_027b_fa4e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e243_70b4_e532", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e243_70b4_e532.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e243_70b4_e532/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e243_70b4_e532_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e243_70b4_e532_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e243_70b4_e532/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e243_70b4_e532.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e243_70b4_e532&showErrors=false&email=", "NCEI", "noaa_nodc_e243_70b4_e532"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_180a_4a5a_1752", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_180a_4a5a_1752.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_180a_4a5a_1752/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature Annual 0.10 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_180a_4a5a_1752_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_180a_4a5a_1752_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_180a_4a5a_1752/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_180a_4a5a_1752.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_180a_4a5a_1752&showErrors=false&email=", "NCEI", "noaa_nodc_180a_4a5a_1752"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cff1_8339_4f48", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cff1_8339_4f48.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_cff1_8339_4f48/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_cff1_8339_4f48_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_cff1_8339_4f48_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_cff1_8339_4f48/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_cff1_8339_4f48.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_cff1_8339_4f48&showErrors=false&email=", "NCEI", "noaa_nodc_cff1_8339_4f48"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_315c_33bd_35b2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_315c_33bd_35b2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_315c_33bd_35b2/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_315c_33bd_35b2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_315c_33bd_35b2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_315c_33bd_35b2/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_315c_33bd_35b2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_315c_33bd_35b2&showErrors=false&email=", "NCEI", "noaa_nodc_315c_33bd_35b2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_24b8_8410_a9b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_24b8_8410_a9b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_24b8_8410_a9b0/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_24b8_8410_a9b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_24b8_8410_a9b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_24b8_8410_a9b0/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_24b8_8410_a9b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_24b8_8410_a9b0&showErrors=false&email=", "NOAA", "noaa_nodc_24b8_8410_a9b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2f98_8b54_19cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2f98_8b54_19cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_2f98_8b54_19cd/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_2f98_8b54_19cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_2f98_8b54_19cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_2f98_8b54_19cd/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_2f98_8b54_19cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_2f98_8b54_19cd&showErrors=false&email=", "NOAA", "noaa_nodc_2f98_8b54_19cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e86b_8826_9294", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e86b_8826_9294.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e86b_8826_9294/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e86b_8826_9294_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e86b_8826_9294_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e86b_8826_9294/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e86b_8826_9294.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e86b_8826_9294&showErrors=false&email=", "NOAA", "noaa_nodc_e86b_8826_9294"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0265_d582_2eb1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0265_d582_2eb1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_0265_d582_2eb1/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature November 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_0265_d582_2eb1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_0265_d582_2eb1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_0265_d582_2eb1/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_0265_d582_2eb1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_0265_d582_2eb1&showErrors=false&email=", "NOAA", "noaa_nodc_0265_d582_2eb1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1a13_9f47_37a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1a13_9f47_37a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_1a13_9f47_37a0/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_1a13_9f47_37a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_1a13_9f47_37a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_1a13_9f47_37a0/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_1a13_9f47_37a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_1a13_9f47_37a0&showErrors=false&email=", "NOAA", "noaa_nodc_1a13_9f47_37a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3595_6fdf_7375", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3595_6fdf_7375.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_3595_6fdf_7375/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_3595_6fdf_7375_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_3595_6fdf_7375_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_3595_6fdf_7375/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_3595_6fdf_7375.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_3595_6fdf_7375&showErrors=false&email=", "NOAA", "noaa_nodc_3595_6fdf_7375"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e2e7_50cb_cbd1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e2e7_50cb_cbd1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e2e7_50cb_cbd1/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Annual 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e2e7_50cb_cbd1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e2e7_50cb_cbd1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e2e7_50cb_cbd1/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e2e7_50cb_cbd1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e2e7_50cb_cbd1&showErrors=false&email=", "NOAA", "noaa_nodc_e2e7_50cb_cbd1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_d038_1191_14f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_d038_1191_14f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_d038_1191_14f1/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_d038_1191_14f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_d038_1191_14f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_d038_1191_14f1/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_d038_1191_14f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_d038_1191_14f1&showErrors=false&email=", "NOAA", "noaa_nodc_d038_1191_14f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6341_06e2_a6ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6341_06e2_a6ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6341_06e2_a6ee/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6341_06e2_a6ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6341_06e2_a6ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6341_06e2_a6ee/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6341_06e2_a6ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6341_06e2_a6ee&showErrors=false&email=", "NOAA", "noaa_nodc_6341_06e2_a6ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1a82_0175_b2a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1a82_0175_b2a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_1a82_0175_b2a7/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.10 degree, 0000", "Climatological mean temperature for the Greenland-Iceland-Norwegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_1a82_0175_b2a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_1a82_0175_b2a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_1a82_0175_b2a7/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_1a82_0175_b2a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_1a82_0175_b2a7&showErrors=false&email=", "NCEI", "noaa_nodc_1a82_0175_b2a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7112_d88f_1a37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7112_d88f_1a37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7112_d88f_1a37/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the Greenland-Iceland-Norwegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7112_d88f_1a37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7112_d88f_1a37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7112_d88f_1a37/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7112_d88f_1a37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7112_d88f_1a37&showErrors=false&email=", "NCEI", "noaa_nodc_7112_d88f_1a37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f6a4_95b0_2565", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f6a4_95b0_2565.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_f6a4_95b0_2565/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the Greenland-Iceland-Norwegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_f6a4_95b0_2565_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_f6a4_95b0_2565_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_f6a4_95b0_2565/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_f6a4_95b0_2565.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_f6a4_95b0_2565&showErrors=false&email=", "NCEI", "noaa_nodc_f6a4_95b0_2565"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1d9b_bb0c_da8e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1d9b_bb0c_da8e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_1d9b_bb0c_da8e/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature November 0.10 degree, 0000", "Climatological mean temperature for the Greenland-Iceland-Norwegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_1d9b_bb0c_da8e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_1d9b_bb0c_da8e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_1d9b_bb0c_da8e/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_1d9b_bb0c_da8e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_1d9b_bb0c_da8e&showErrors=false&email=", "NCEI", "noaa_nodc_1d9b_bb0c_da8e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7037_035f_0499", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7037_035f_0499.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7037_035f_0499/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the Greenland-Iceland-Norwegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7037_035f_0499_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7037_035f_0499_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7037_035f_0499/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7037_035f_0499.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7037_035f_0499&showErrors=false&email=", "NCEI", "noaa_nodc_7037_035f_0499"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4f7d_92ce_277f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4f7d_92ce_277f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_4f7d_92ce_277f/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the Greenland-Iceland-Norwegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_4f7d_92ce_277f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_4f7d_92ce_277f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_4f7d_92ce_277f/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_4f7d_92ce_277f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_4f7d_92ce_277f&showErrors=false&email=", "NCEI", "noaa_nodc_4f7d_92ce_277f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f8e0_afe3_c18f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f8e0_afe3_c18f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_f8e0_afe3_c18f/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.10 degree, 0000", "Climatological mean temperature and salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_f8e0_afe3_c18f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_f8e0_afe3_c18f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_f8e0_afe3_c18f/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_f8e0_afe3_c18f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_f8e0_afe3_c18f&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_f8e0_afe3_c18f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6e3c_65a4_ac41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6e3c_65a4_ac41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6e3c_65a4_ac41/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature and salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6e3c_65a4_ac41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6e3c_65a4_ac41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6e3c_65a4_ac41/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6e3c_65a4_ac41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6e3c_65a4_ac41&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_6e3c_65a4_ac41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7050_3786_dec0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7050_3786_dec0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7050_3786_dec0/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature and salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7050_3786_dec0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7050_3786_dec0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7050_3786_dec0/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7050_3786_dec0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7050_3786_dec0&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_7050_3786_dec0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_9caa_9986_e60c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_9caa_9986_e60c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_9caa_9986_e60c/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature November 0.10 degree, 0000", "Climatological mean temperature and salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_9caa_9986_e60c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_9caa_9986_e60c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_9caa_9986_e60c/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_9caa_9986_e60c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_9caa_9986_e60c&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_9caa_9986_e60c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e650_5530_ee6f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e650_5530_ee6f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e650_5530_ee6f/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature and salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e650_5530_ee6f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e650_5530_ee6f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e650_5530_ee6f/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e650_5530_ee6f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e650_5530_ee6f&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_e650_5530_ee6f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7b60_a439_dcfe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7b60_a439_dcfe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7b60_a439_dcfe/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature and salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7b60_a439_dcfe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7b60_a439_dcfe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7b60_a439_dcfe/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7b60_a439_dcfe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7b60_a439_dcfe&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_7b60_a439_dcfe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5aa1_e345_be88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5aa1_e345_be88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_5aa1_e345_be88/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature Summer (Jul-Sep) 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_5aa1_e345_be88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_5aa1_e345_be88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_5aa1_e345_be88/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_5aa1_e345_be88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_5aa1_e345_be88&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_5aa1_e345_be88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_293e_c3a7_aba9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_293e_c3a7_aba9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_293e_c3a7_aba9/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_293e_c3a7_aba9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_293e_c3a7_aba9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_293e_c3a7_aba9/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_293e_c3a7_aba9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_293e_c3a7_aba9&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_293e_c3a7_aba9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3007_1605_1962", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3007_1605_1962.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_3007_1605_1962/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_3007_1605_1962_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_3007_1605_1962_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_3007_1605_1962/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_3007_1605_1962.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_3007_1605_1962&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_3007_1605_1962"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4ac5_3a32_e8e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4ac5_3a32_e8e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_4ac5_3a32_e8e5/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature November 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_4ac5_3a32_e8e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_4ac5_3a32_e8e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_4ac5_3a32_e8e5/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_4ac5_3a32_e8e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_4ac5_3a32_e8e5&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_4ac5_3a32_e8e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0e93_d946_7a54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0e93_d946_7a54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_0e93_d946_7a54/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_0e93_d946_7a54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_0e93_d946_7a54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_0e93_d946_7a54/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_0e93_d946_7a54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_0e93_d946_7a54&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_0e93_d946_7a54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6b6f_24ef_6c56", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6b6f_24ef_6c56.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6b6f_24ef_6c56/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6b6f_24ef_6c56_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6b6f_24ef_6c56_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6b6f_24ef_6c56/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6b6f_24ef_6c56.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6b6f_24ef_6c56&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_6b6f_24ef_6c56"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_06ee_5ef7_2d38", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_06ee_5ef7_2d38.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_06ee_5ef7_2d38/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature Annual 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_06ee_5ef7_2d38_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_06ee_5ef7_2d38_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_06ee_5ef7_2d38/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_06ee_5ef7_2d38.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_06ee_5ef7_2d38&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_06ee_5ef7_2d38"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_38fa_57e1_1a18", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_38fa_57e1_1a18.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_38fa_57e1_1a18/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_38fa_57e1_1a18_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_38fa_57e1_1a18_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_38fa_57e1_1a18/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_38fa_57e1_1a18.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_38fa_57e1_1a18&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_38fa_57e1_1a18"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_df13_a0c1_f716", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_df13_a0c1_f716.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_df13_a0c1_f716/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_df13_a0c1_f716_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_df13_a0c1_f716_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_df13_a0c1_f716/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_df13_a0c1_f716.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_df13_a0c1_f716&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_df13_a0c1_f716"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cccf_c109_612f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cccf_c109_612f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_cccf_c109_612f/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_cccf_c109_612f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_cccf_c109_612f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_cccf_c109_612f/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_cccf_c109_612f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_cccf_c109_612f&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_cccf_c109_612f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7351_63e8_14f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7351_63e8_14f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7351_63e8_14f6/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7351_63e8_14f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7351_63e8_14f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7351_63e8_14f6/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7351_63e8_14f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7351_63e8_14f6&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_7351_63e8_14f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b9f2_8a6d_eaa7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b9f2_8a6d_eaa7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b9f2_8a6d_eaa7/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b9f2_8a6d_eaa7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b9f2_8a6d_eaa7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b9f2_8a6d_eaa7/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b9f2_8a6d_eaa7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b9f2_8a6d_eaa7&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_b9f2_8a6d_eaa7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2dfc_5215_06b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2dfc_5215_06b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_2dfc_5215_06b7/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_2dfc_5215_06b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_2dfc_5215_06b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_2dfc_5215_06b7/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_2dfc_5215_06b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_2dfc_5215_06b7&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_2dfc_5215_06b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e7bb_a1f5_fbbe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e7bb_a1f5_fbbe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e7bb_a1f5_fbbe/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e7bb_a1f5_fbbe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e7bb_a1f5_fbbe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e7bb_a1f5_fbbe/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e7bb_a1f5_fbbe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e7bb_a1f5_fbbe&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_e7bb_a1f5_fbbe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ca51_7345_079c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ca51_7345_079c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_ca51_7345_079c/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_ca51_7345_079c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_ca51_7345_079c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_ca51_7345_079c/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_ca51_7345_079c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_ca51_7345_079c&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_ca51_7345_079c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_fa05_b9af_6087", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_fa05_b9af_6087.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_fa05_b9af_6087/request", "", "public", "Arctic Seas Regional Climatology : salinity Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_fa05_b9af_6087_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_fa05_b9af_6087_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_fa05_b9af_6087/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_fa05_b9af_6087.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_fa05_b9af_6087&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_fa05_b9af_6087"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_25bf_d46b_b742", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_25bf_d46b_b742.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_25bf_d46b_b742/request", "", "public", "Arctic Seas Regional Climatology : salinity Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_25bf_d46b_b742_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_25bf_d46b_b742_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_25bf_d46b_b742/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_25bf_d46b_b742.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_25bf_d46b_b742&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_25bf_d46b_b742"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_342f_3d14_5607", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_342f_3d14_5607.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_342f_3d14_5607/request", "", "public", "Arctic Seas Regional Climatology : salinity November 0.25 degree (salinity monthly quarter), 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_342f_3d14_5607_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_342f_3d14_5607_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_342f_3d14_5607/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_342f_3d14_5607.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_342f_3d14_5607&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_342f_3d14_5607"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6ac1_daeb_4a22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6ac1_daeb_4a22.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6ac1_daeb_4a22/request", "", "public", "Arctic Seas Regional Climatology : salinity November 1.00 degree (salinity monthly one), 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6ac1_daeb_4a22_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6ac1_daeb_4a22_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6ac1_daeb_4a22/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6ac1_daeb_4a22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6ac1_daeb_4a22&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_6ac1_daeb_4a22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0f87_43a1_50d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0f87_43a1_50d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_0f87_43a1_50d3/request", "", "public", "Arctic Seas Regional Climatology : salinity Annual 0.25 degree (salinity annual quarter), 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_0f87_43a1_50d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_0f87_43a1_50d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_0f87_43a1_50d3/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_0f87_43a1_50d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_0f87_43a1_50d3&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_0f87_43a1_50d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f782_bc50_b9da", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f782_bc50_b9da.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_f782_bc50_b9da/request", "", "public", "Arctic Seas Regional Climatology : salinity Annual 1.00 degree (salinity annual one), 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_f782_bc50_b9da_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_f782_bc50_b9da_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_f782_bc50_b9da/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_f782_bc50_b9da.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_f782_bc50_b9da&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_f782_bc50_b9da"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6a44_2cb9_686f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6a44_2cb9_686f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6a44_2cb9_686f/request", "", "public", "AVHRR Pathfinder Version 5.2 L3-Collated (L3C) SST (pathFinderV5.2 night 2012 020614)", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\nsst_dtime (time difference from reference time, second)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (Deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nquality_level (SST measurement quality)\npathfinder_quality_level (Pathfinder SST quality flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6a44_2cb9_686f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6a44_2cb9_686f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6a44_2cb9_686f/index.json", "https://pathfinder.nodc.noaa.gov/ISO-AVHRR_Pathfinder-NODC-L3C-v5.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6a44_2cb9_686f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6a44_2cb9_686f&showErrors=false&email=", "NOAA NODC", "noaa_nodc_6a44_2cb9_686f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_78e2_de17_8305", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_78e2_de17_8305.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_78e2_de17_8305/request", "", "public", "AVHRR Pathfinder Version 5.2 L3-Collated (L3C) SST (pathFinderV5.2 night), 1981-2011", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\nsst_dtime (time difference from reference time, second)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (Deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nquality_level (SST measurement quality)\npathfinder_quality_level (Pathfinder SST quality flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_78e2_de17_8305_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_78e2_de17_8305_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_78e2_de17_8305/index.json", "https://pathfinder.nodc.noaa.gov/ISO-AVHRR_Pathfinder-NODC-L3C-v5.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_78e2_de17_8305.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_78e2_de17_8305&showErrors=false&email=", "NOAA NODC", "noaa_nodc_78e2_de17_8305"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1847_812f_2105", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1847_812f_2105.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_1847_812f_2105/request", "", "public", "AVHRR Pathfinder Version 5.2 L3-Collated (L3C) SST (pathFinderV5.2 day 2012 020614)", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\nsst_dtime (time difference from reference time, second)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (Deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nquality_level (SST measurement quality)\npathfinder_quality_level (Pathfinder SST quality flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_1847_812f_2105_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_1847_812f_2105_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_1847_812f_2105/index.json", "https://pathfinder.nodc.noaa.gov/ISO-AVHRR_Pathfinder-NODC-L3C-v5.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_1847_812f_2105.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_1847_812f_2105&showErrors=false&email=", "NOAA NODC", "noaa_nodc_1847_812f_2105"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7071_edc2_c76a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7071_edc2_c76a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7071_edc2_c76a/request", "", "public", "AVHRR Pathfinder Version 5.2 L3-Collated (L3C) SST (pathFinderV5.2 day), 1981-2011", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\nsst_dtime (time difference from reference time, second)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (Deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nquality_level (SST measurement quality)\npathfinder_quality_level (Pathfinder SST quality flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7071_edc2_c76a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7071_edc2_c76a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7071_edc2_c76a/index.json", "https://pathfinder.nodc.noaa.gov/ISO-AVHRR_Pathfinder-NODC-L3C-v5.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7071_edc2_c76a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7071_edc2_c76a&showErrors=false&email=", "NOAA NODC", "noaa_nodc_7071_edc2_c76a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5e47_99aa_f1e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5e47_99aa_f1e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_5e47_99aa_f1e6/request", "", "public", "Top Dataset, node, avhrrSST resFull, 0.043945312\u00b0, 1981-2009", "This data field contains Daytime Sea Surface Temperature (SST) data from Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5. The data are at 4 km-per-pixel resolution and have been averaged monthly after masking out any data with a quality flag of less than 4. Data in this file at this quality level include, for daytime: weekly SST values, number of pixels, and standard deviation. Data are stored as unsigned integers: to convert SST fields to degrees C, apply a scale factor of 0.075 and an offset of -3.0. To convert standard deviation and count fields to degrees C and number of pixels, respectively, apply a scale factor of 0.01.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST4_daynitavg (This data field contains Day-Night Average Sea Surface Temperature (SST) data from AVHRR Pathfinder Version 5. The data are at 4 km-per-pixel resolution and have been averaged monthly after masking out any data with a quality flag of less than 4. Data in this file at this quality level include, for day/night average: weekly SST values, number of pixels, and standard deviation. Data are stored as unsigned integers: to convert SST fields to degrees C, apply a scale factor of 0.075 and an offset of -3.0. To convert standard deviation and count fields to degrees C and number of pixels, respectively, apply a scale factor of 0.01., degree_C)\nSST7_daynitavg (This data field contains Day-Night Average Sea Surface Temperature (SST) data from AVHRR Pathfinder Version 5. The data are at 4 km-per-pixel resolution and have been averaged monthly after masking out any data with a quality flag of less than 7. Data in this file at this quality level include, for day/night average: weekly SST values, number of pixels, and standard deviation. Data are stored as unsigned integers: to convert SST fields to degrees C, apply a scale factor of 0.075 and an offset of -3.0. To convert standard deviation and count fields to degrees C and number of pixels, respectively, apply a scale factor of 0.01., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_5e47_99aa_f1e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_5e47_99aa_f1e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_5e47_99aa_f1e6/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/node/avhrrSST_resFull.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_5e47_99aa_f1e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_5e47_99aa_f1e6&showErrors=false&email=", "USDOC/NOAA/NESDIS/NODC", "noaa_nodc_5e47_99aa_f1e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_58e6_0040_f4f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_58e6_0040_f4f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_58e6_0040_f4f0/request", "", "public", "Top Dataset, node, avhrrSST res1deg, 1.0\u00b0, 1981-2009", "This data field contains Daytime Sea Surface Temperature (SST) data from Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5. The data have been averaged to a one-degree grid in space and monthly in time, after masking out any data with a quality flag of less than 4. All data has the V5.0 land mask applied. Data in this file at this quality level include, for daytime: monthly SST values, number of pixels, and standard deviation.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST4_daynitavg (This data field contains Day-Night Average Sea Surface Temperature (SST) data from AVHRR Pathfinder Version 5. The data have been averaged to a one-degree grid in space and monthly in time, after masking out any data with a quality flag of less than 4. All data has the V5.0 land mask applied. Data in this file at this quality level include, for day/night average: monthly SST values, number of pixels, and standard deviation., degree_C)\nSST7_daynitavg (This data field contains Day-Night Average Sea Surface Temperature (SST) data from AVHRR Pathfinder Version 5. The data have been averaged to a one-degree grid in space and monthly in time, after masking out any data with a quality flag of less than 7. All data has the V5.0 land mask applied. Data in this file at this quality level include, for day/night average: monthly SST values, number of pixels, and standard deviation., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_58e6_0040_f4f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_58e6_0040_f4f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_58e6_0040_f4f0/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/node/avhrrSST_res1deg.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_58e6_0040_f4f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_58e6_0040_f4f0&showErrors=false&email=", "USDOC/NOAA/NESDIS/NODC", "noaa_nodc_58e6_0040_f4f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_16be_ebb0_f17b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_16be_ebb0_f17b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_16be_ebb0_f17b/request", "", "public", "Top Dataset, hydromet data, monthly, 0.0625\u00b0, 1950-2013", "Top Dataset, hydromet data, monthly\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPrec (Precipitation, mm)\nTmax (Daily maximum temperature, degree_C)\nTmin (Daily minimum temperature, degree_C)\nwind (mean daily wind speed, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_16be_ebb0_f17b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_16be_ebb0_f17b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_16be_ebb0_f17b/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/hydromet_data/monthly.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_16be_ebb0_f17b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_16be_ebb0_f17b&showErrors=false&email=", "NOAA NODC", "noaa_nodc_16be_ebb0_f17b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a774_0eb4_6f88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a774_0eb4_6f88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_a774_0eb4_6f88/request", "", "public", "Top Dataset, hydromet data, daily, 0.0625\u00b0, 1950-2013", "Top Dataset, hydromet data, daily\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPrec (Precipitation, mm)\nTmax (Daily maximum temperature, degree_C)\nTmin (Daily minimum temperature, degree_C)\nwind (mean daily wind speed, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_a774_0eb4_6f88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_a774_0eb4_6f88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_a774_0eb4_6f88/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/hydromet_data/daily.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_a774_0eb4_6f88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_a774_0eb4_6f88&showErrors=false&email=", "NOAA NODC", "noaa_nodc_a774_0eb4_6f88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_da4e_3fc9_f107", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_da4e_3fc9_f107.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_da4e_3fc9_f107/request", "", "public", "Archived Suite of NOAA Coral Reef Watch Operational Twice-Weekly Near-Real-Time Global 50km Satellite Coral Bleaching Monitoring Products [time][latitude][longitude], 0.5\u00b0, 2000-2018", "These are Coral Reef Watch near-real-time satellite coral bleaching monitoring products produced twice a week. CoastWatch Utilities v3.2.1 or higher (https://coastwatch.noaa.gov/cw_software.html) can be used for viewing, analyzing, and plotting the data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nCRW_SST (Twice-weekly global 50km satellite nighttime sea surface temperature, degree_C)\nCRW_SSTANOMALY (Twice-weekly global 50km satellite nighttime sea surface temperature anomaly, degree_C)\nCRW_HOTSPOT (Twice-weekly global 50km satellite coral bleaching HotSpot, degree_C)\nCRW_DHW (Twice-weekly global 50km satellite coral bleaching Degree Heating Weeks, degree Celsius-weeks)\nsurface_flag (Pixel characteristics flag array)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_da4e_3fc9_f107_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_da4e_3fc9_f107_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_da4e_3fc9_f107/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/crw50km_test/crw_allinone_20180109.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_da4e_3fc9_f107.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_da4e_3fc9_f107&showErrors=false&email=", "U.S. DOC/NOAA Coral Reef Watch", "noaa_nodc_da4e_3fc9_f107"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_3392_87d7_dedc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_3392_87d7_dedc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_3392_87d7_dedc/request", "", "public", "Top Dataset, monthly, NOAAGlobalTemp monthly, 5.0\u00b0, 1880-present", "The NOAA Global Surface Temperature Dataset (NOAAGlobalTemp) (Top Dataset, monthly, NOAAGlobalTemp monthly)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nanom (Global Temperature Anomalies, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_3392_87d7_dedc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_3392_87d7_dedc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_3392_87d7_dedc/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/gcag/monthly/NOAAGlobalTemp_monthly.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_3392_87d7_dedc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_3392_87d7_dedc&showErrors=false&email=", "NOAAs National Centers for Environmental Information", "noaa_ncei_3392_87d7_dedc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_a29f_599c_0df2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_a29f_599c_0df2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_a29f_599c_0df2/request", "", "public", "Top Dataset, yearly, NOAAGlobalTemp annual, 5.0\u00b0, 1880-2016", "The NOAA Global Surface Temperature Dataset (NOAAGlobalTemp) (Top Dataset, yearly, NOAAGlobalTemp annual)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nanom (Global Temperature Anomalies, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_a29f_599c_0df2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_a29f_599c_0df2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_a29f_599c_0df2/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/gcag/yearly/NOAAGlobalTemp_annual.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_a29f_599c_0df2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_a29f_599c_0df2&showErrors=false&email=", "NOAAs National Centers for Environmental Information", "noaa_ncei_a29f_599c_0df2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_e7fc_68cb_0584", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_e7fc_68cb_0584.graph", "", "", "public", "OISST Daily AVHRR-only Feature Collection, OISST Daily AVHRR-only Feature Collection, Best Time Series [time], 1981-present", "National Centers for Environmental Information (NCEI) Daily-Optimum Interpolation Sea Surface Temperature (OISST)-V2 based mainly on Advanced Very High Resolution Radiometer (AVHRR), Final. Best time series, taking the data from the most recent run available. Aggregation of OISST files, not including preliminary files\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_e7fc_68cb_0584/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/ncFC/fc-oisst-daily-avhrr-only-dly/OISST_Daily_AVHRR-only_Feature_Collection_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_e7fc_68cb_0584.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_e7fc_68cb_0584&showErrors=false&email=", "NOAA", "noaa_ncei_e7fc_68cb_0584"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_9bc6_2d0d_9403", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_9bc6_2d0d_9403.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_9bc6_2d0d_9403/request", "", "public", "OISST Daily AVHRR-only Feature Collection, OISST Daily AVHRR-only Feature Collection, Best Time Series [time][zlev][lat][lon], 0.25\u00b0, 1981-present", "National Centers for Environmental Information (NCEI) Daily-Optimum Interpolation Sea Surface Temperature (OISST)-V2 based mainly on Advanced Very High Resolution Radiometer (AVHRR), Final. Best time series, taking the data from the most recent run available. Aggregation of OISST files, not including preliminary files\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nice (Sea ice concentration, percent)\nerr (Estimated error standard deviation of analysed_sst, degree_C)\nanom (Daily sea surface temperature anomalies, degree_C)\nsst (Daily sea surface temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_9bc6_2d0d_9403_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_9bc6_2d0d_9403_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_9bc6_2d0d_9403/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/ncFC/fc-oisst-daily-avhrr-only-dly/OISST_Daily_AVHRR-only_Feature_Collection_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_9bc6_2d0d_9403.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_9bc6_2d0d_9403&showErrors=false&email=", "NOAA", "noaa_ncei_9bc6_2d0d_9403"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_f6e2_8429_f317", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_f6e2_8429_f317.graph", "", "", "public", "OISST Daily AVHRR AMSR Feature Collection, OISST Daily AVHRR AMSR Feature Collection, Best Time Series [time], 2002-2011", "Daily-Optimum Interpolation (OI)-V2, Interim, Data (Ship, Buoy, Advanced Microwave Scanning Radiometer (AMSR), Advanced Very High Resolution Radiometer (AVHRR): NOAA19, METOP, National Centers for Environmental Prediction (NCEP)-ice). Best time series, taking the data from the most recent run available. Aggregation filename pattern: amsr-avhrr-v2.*.nc\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_f6e2_8429_f317/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/ncFC/fc-oisst-daily-avhrr-amsr-dly/OISST_Daily_AVHRR_AMSR_Feature_Collection_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_f6e2_8429_f317.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_f6e2_8429_f317&showErrors=false&email=", "NOAA", "noaa_ncei_f6e2_8429_f317"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_47c6_fd90_627c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_47c6_fd90_627c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_47c6_fd90_627c/request", "", "public", "OISST Daily AVHRR AMSR Feature Collection, OISST Daily AVHRR AMSR Feature Collection, Best Time Series [time][zlev][lat][lon], 0.25\u00b0, 2002-2011", "Daily-Optimum Interpolation (OI)-V2, Interim, Data (Ship, Buoy, Advanced Microwave Scanning Radiometer (AMSR), Advanced Very High Resolution Radiometer (AVHRR): NOAA19, METOP, National Centers for Environmental Prediction (NCEP)-ice). Best time series, taking the data from the most recent run available. Aggregation filename pattern: amsr-avhrr-v2.*.nc\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][zlev][latitude][longitude]):\nsst (Daily sea surface temperature, degree_C)\nanom (Daily sea surface temperature anomalies, degree_C)\nerr (Estimated error standard deviation of analysed_sst, degree_C)\nice (Sea ice concentration, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_47c6_fd90_627c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_47c6_fd90_627c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_47c6_fd90_627c/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/ncFC/fc-oisst-daily-avhrr-amsr-dly/OISST_Daily_AVHRR_AMSR_Feature_Collection_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_47c6_fd90_627c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_47c6_fd90_627c&showErrors=false&email=", "NOAA", "noaa_ncei_47c6_fd90_627c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_2689_8c24_7dcb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_2689_8c24_7dcb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/northerngulfinstitute_edac_dap3_2689_8c24_7dcb/request", "", "public", "NAVO NCOM: Fukushima Regional Forecast (Fukushima best) [time][lat][lon], 2011", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: Fukushima Regional Forecast. Best time series, taking the data from the most recent run available. Fukushima Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_temp_flux (model surface temperature flux, degC-m/s)\nsurf_salt_flux (model surface salinity flux, psu-m/s)\nsurf_solar_flux (model surface shortwave flux, degC-m/s)\nsurf_roughness (model surface roughness, m)\nsurf_wnd_stress_gridx (Grid x Surface Wind Stress, newton/meter2)\nsurf_wnd_stress_gridy (Grid y Surface Wind Stress, newton/meter2)\nsurf_atm_press (Surface Atmospherics Pressure, Pascal)\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/northerngulfinstitute_edac_dap3_2689_8c24_7dcb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/northerngulfinstitute_edac_dap3_2689_8c24_7dcb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/northerngulfinstitute_edac_dap3_2689_8c24_7dcb/index.json", "http://edac-dap3.northerngulfinstitute.org/thredds/dodsC/ncom_fukushima_agg/Fukushima_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/northerngulfinstitute_edac_dap3_2689_8c24_7dcb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=northerngulfinstitute_edac_dap3_2689_8c24_7dcb&showErrors=false&email=", "Naval Research Laboratory", "northerngulfinstitute_edac_dap3_2689_8c24_7dcb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_0a94_4f88_8950", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_0a94_4f88_8950.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/northerngulfinstitute_edac_dap3_0a94_4f88_8950/request", "", "public", "NAVO NCOM: Fukushima Regional Forecast (Fukushima best) [time][depth][lat][lon], 2011", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: Fukushima Regional Forecast. Best time series, taking the data from the most recent run available. Fukushima Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/northerngulfinstitute_edac_dap3_0a94_4f88_8950_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/northerngulfinstitute_edac_dap3_0a94_4f88_8950_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/northerngulfinstitute_edac_dap3_0a94_4f88_8950/index.json", "http://edac-dap3.northerngulfinstitute.org/thredds/dodsC/ncom_fukushima_agg/Fukushima_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/northerngulfinstitute_edac_dap3_0a94_4f88_8950.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=northerngulfinstitute_edac_dap3_0a94_4f88_8950&showErrors=false&email=", "Naval Research Laboratory", "northerngulfinstitute_edac_dap3_0a94_4f88_8950"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3/request", "", "public", "NAVO NCOM: Sendai Regional Forecast (Sendai, Sendai, Best Time Series) [time][depth][lat][lon], 2011", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: Sendai Regional Forecast. Best time series, taking the data from the most recent run available. Sendai Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalinity (PSU)\nwater_temp (Water Temperature, degree_C)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3/index.json", "http://edac-dap3.northerngulfinstitute.org/thredds/dodsC/ncom_sendai_agg/Sendai_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=northerngulfinstitute_edac_dap3_5b80_cc18_d8b3&showErrors=false&email=", "Naval Research Laboratory", "northerngulfinstitute_edac_dap3_5b80_cc18_d8b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afb3_9852_69f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afb3_9852_69f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_afb3_9852_69f9/request", "", "public", "Top Dataset, monolevel, air.sig995.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_afb3_9852_69f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_afb3_9852_69f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_afb3_9852_69f9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_afb3_9852_69f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_afb3_9852_69f9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_afb3_9852_69f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7da1_51a7_5b2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7da1_51a7_5b2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7da1_51a7_5b2a/request", "", "public", "Top Dataset, monolevel, air.sig995.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7da1_51a7_5b2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7da1_51a7_5b2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7da1_51a7_5b2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7da1_51a7_5b2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7da1_51a7_5b2a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7da1_51a7_5b2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_160d_65f8_e93e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_160d_65f8_e93e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_160d_65f8_e93e/request", "", "public", "Top Dataset, monolevel, air.tropo.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_160d_65f8_e93e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_160d_65f8_e93e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_160d_65f8_e93e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_160d_65f8_e93e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_160d_65f8_e93e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_160d_65f8_e93e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebf2_ccf6_8919", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebf2_ccf6_8919.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ebf2_ccf6_8919/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, air.tropo.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ebf2_ccf6_8919_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ebf2_ccf6_8919_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ebf2_ccf6_8919/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ebf2_ccf6_8919.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ebf2_ccf6_8919&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ebf2_ccf6_8919"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dd4_13b1_f3a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dd4_13b1_f3a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5dd4_13b1_f3a6/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean 6-hourly Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5dd4_13b1_f3a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5dd4_13b1_f3a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5dd4_13b1_f3a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5dd4_13b1_f3a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5dd4_13b1_f3a6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5dd4_13b1_f3a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f89_dcbc_79f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f89_dcbc_79f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f89_dcbc_79f5/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean 6-hourly Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f89_dcbc_79f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f89_dcbc_79f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f89_dcbc_79f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f89_dcbc_79f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f89_dcbc_79f5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7f89_dcbc_79f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad47_3fd6_51cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad47_3fd6_51cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ad47_3fd6_51cb/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ad47_3fd6_51cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ad47_3fd6_51cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ad47_3fd6_51cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ad47_3fd6_51cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ad47_3fd6_51cb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ad47_3fd6_51cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_576d_3042_439a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_576d_3042_439a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_576d_3042_439a/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_576d_3042_439a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_576d_3042_439a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_576d_3042_439a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_576d_3042_439a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_576d_3042_439a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_576d_3042_439a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_36aa_2320_b507", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_36aa_2320_b507.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_36aa_2320_b507/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_36aa_2320_b507_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_36aa_2320_b507_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_36aa_2320_b507/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_36aa_2320_b507.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_36aa_2320_b507&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_36aa_2320_b507"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21ec_147d_3622", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21ec_147d_3622.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_21ec_147d_3622/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_21ec_147d_3622_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_21ec_147d_3622_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_21ec_147d_3622/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_21ec_147d_3622.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_21ec_147d_3622&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_21ec_147d_3622"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_005e_be08_48b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_005e_be08_48b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_005e_be08_48b5/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean 6-hourly Potential Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_005e_be08_48b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_005e_be08_48b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_005e_be08_48b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_005e_be08_48b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_005e_be08_48b5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_005e_be08_48b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba93_8c68_0a99", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba93_8c68_0a99.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ba93_8c68_0a99/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean 6-hourly Potential Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ba93_8c68_0a99_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ba93_8c68_0a99_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ba93_8c68_0a99/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ba93_8c68_0a99.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ba93_8c68_0a99&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ba93_8c68_0a99"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db25_18e4_5a19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db25_18e4_5a19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db25_18e4_5a19/request", "", "public", "Top Dataset, pressure, air.4Xday.1981-2010.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db25_18e4_5a19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db25_18e4_5a19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db25_18e4_5a19/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db25_18e4_5a19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db25_18e4_5a19&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_db25_18e4_5a19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae10_1997_eb93", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae10_1997_eb93.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae10_1997_eb93/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, air.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae10_1997_eb93_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae10_1997_eb93_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae10_1997_eb93/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae10_1997_eb93.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae10_1997_eb93&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ae10_1997_eb93"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3396_b24d_adc1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3396_b24d_adc1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3396_b24d_adc1/request", "", "public", "Top Dataset, pressure sprd, air.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3396_b24d_adc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3396_b24d_adc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3396_b24d_adc1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3396_b24d_adc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3396_b24d_adc1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3396_b24d_adc1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e99a_df8f_5599", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e99a_df8f_5599.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e99a_df8f_5599/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, air.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e99a_df8f_5599_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e99a_df8f_5599_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e99a_df8f_5599/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e99a_df8f_5599.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e99a_df8f_5599&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e99a_df8f_5599"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65f7_7e17_5391", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65f7_7e17_5391.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_65f7_7e17_5391/request", "", "public", "Top Dataset, monolevel, air.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_65f7_7e17_5391_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_65f7_7e17_5391_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_65f7_7e17_5391/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_65f7_7e17_5391.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_65f7_7e17_5391&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_65f7_7e17_5391"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae8b_5a96_5ecd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae8b_5a96_5ecd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae8b_5a96_5ecd/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae8b_5a96_5ecd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae8b_5a96_5ecd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae8b_5a96_5ecd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae8b_5a96_5ecd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae8b_5a96_5ecd&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ae8b_5a96_5ecd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_699e_a306_3fb6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_699e_a306_3fb6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_699e_a306_3fb6/request", "", "public", "Top Dataset, monolevel, air.sfc.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature at Surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_699e_a306_3fb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_699e_a306_3fb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_699e_a306_3fb6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_699e_a306_3fb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_699e_a306_3fb6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_699e_a306_3fb6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50c5_cd46_75ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50c5_cd46_75ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_50c5_cd46_75ab/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature at Surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_50c5_cd46_75ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_50c5_cd46_75ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50c5_cd46_75ab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50c5_cd46_75ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50c5_cd46_75ab&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_50c5_cd46_75ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_68ae_403a_0ec4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_68ae_403a_0ec4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_68ae_403a_0ec4/request", "", "public", "Top Dataset, monolevel, tmax.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (3-hourly Long Term Mean Maximum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_68ae_403a_0ec4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_68ae_403a_0ec4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_68ae_403a_0ec4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_68ae_403a_0ec4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_68ae_403a_0ec4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_68ae_403a_0ec4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffa6_5de8_3896", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffa6_5de8_3896.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ffa6_5de8_3896/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (3-hourly Long Term Mean Maximum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ffa6_5de8_3896_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ffa6_5de8_3896_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ffa6_5de8_3896/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ffa6_5de8_3896.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ffa6_5de8_3896&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ffa6_5de8_3896"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5eac_5546_11df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5eac_5546_11df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5eac_5546_11df/request", "", "public", "Top Dataset, monolevel, tmin.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (3-hourly Long Term Mean Minimum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5eac_5546_11df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5eac_5546_11df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5eac_5546_11df/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5eac_5546_11df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5eac_5546_11df&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5eac_5546_11df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51ca_cc5a_dd4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51ca_cc5a_dd4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_51ca_cc5a_dd4d/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (3-hourly Long Term Mean Minimum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_51ca_cc5a_dd4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_51ca_cc5a_dd4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_51ca_cc5a_dd4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_51ca_cc5a_dd4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_51ca_cc5a_dd4d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_51ca_cc5a_dd4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fdd_8f6d_a5dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fdd_8f6d_a5dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8fdd_8f6d_a5dc/request", "", "public", "Top Dataset, subsurface, tsoil.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (3-hourly Long Term Mean Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8fdd_8f6d_a5dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8fdd_8f6d_a5dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8fdd_8f6d_a5dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8fdd_8f6d_a5dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8fdd_8f6d_a5dc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8fdd_8f6d_a5dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f617_8124_8b6b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f617_8124_8b6b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f617_8124_8b6b/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (3-hourly Long Term Mean Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f617_8124_8b6b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f617_8124_8b6b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f617_8124_8b6b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f617_8124_8b6b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f617_8124_8b6b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f617_8124_8b6b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fa5_1777_e5ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fa5_1777_e5ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5fa5_1777_e5ef/request", "", "public", "Top Dataset, monolevel, air.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5fa5_1777_e5ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5fa5_1777_e5ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5fa5_1777_e5ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5fa5_1777_e5ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5fa5_1777_e5ef&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5fa5_1777_e5ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1604_365e_d8ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1604_365e_d8ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1604_365e_d8ff/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1604_365e_d8ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1604_365e_d8ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1604_365e_d8ff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1604_365e_d8ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1604_365e_d8ff&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1604_365e_d8ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_737c_a8ad_aabf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_737c_a8ad_aabf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_737c_a8ad_aabf/request", "", "public", "Top Dataset, monolevel, air.sfc.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature Spread at surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_737c_a8ad_aabf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_737c_a8ad_aabf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_737c_a8ad_aabf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_737c_a8ad_aabf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_737c_a8ad_aabf&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_737c_a8ad_aabf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_082b_1e27_a382", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_082b_1e27_a382.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_082b_1e27_a382/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature Spread at surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_082b_1e27_a382_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_082b_1e27_a382_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_082b_1e27_a382/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_082b_1e27_a382.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_082b_1e27_a382&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_082b_1e27_a382"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7325_ea94_1d4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7325_ea94_1d4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7325_ea94_1d4d/request", "", "public", "Top Dataset, monolevel, tmax.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (3-hourly Long Term Mean Maximum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7325_ea94_1d4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7325_ea94_1d4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7325_ea94_1d4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7325_ea94_1d4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7325_ea94_1d4d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7325_ea94_1d4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_942a_b65c_5ba8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_942a_b65c_5ba8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_942a_b65c_5ba8/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (3-hourly Long Term Mean Maximum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_942a_b65c_5ba8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_942a_b65c_5ba8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_942a_b65c_5ba8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_942a_b65c_5ba8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_942a_b65c_5ba8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_942a_b65c_5ba8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54ea_d4b5_1f67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54ea_d4b5_1f67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54ea_d4b5_1f67/request", "", "public", "Top Dataset, monolevel, tmin.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (3-hourly Long Term Mean Minimum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54ea_d4b5_1f67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54ea_d4b5_1f67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54ea_d4b5_1f67/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54ea_d4b5_1f67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54ea_d4b5_1f67&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_54ea_d4b5_1f67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6009_b2c2_2d30", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6009_b2c2_2d30.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6009_b2c2_2d30/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (3-hourly Long Term Mean Minimum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6009_b2c2_2d30_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6009_b2c2_2d30_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6009_b2c2_2d30/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6009_b2c2_2d30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6009_b2c2_2d30&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6009_b2c2_2d30"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b17d_add9_395f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b17d_add9_395f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b17d_add9_395f/request", "", "public", "Top Dataset, subsurface, tsoil.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (3-hourly Long Term Mean Soil Temperature Spread, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b17d_add9_395f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b17d_add9_395f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b17d_add9_395f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b17d_add9_395f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b17d_add9_395f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b17d_add9_395f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d169_ebfc_698e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d169_ebfc_698e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d169_ebfc_698e/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (3-hourly Long Term Mean Soil Temperature Spread, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d169_ebfc_698e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d169_ebfc_698e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d169_ebfc_698e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d169_ebfc_698e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d169_ebfc_698e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d169_ebfc_698e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e4d_102b_2f44", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e4d_102b_2f44.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e4d_102b_2f44/request", "", "public", "Top Dataset, monolevel, air.2m.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Daily Air Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e4d_102b_2f44_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e4d_102b_2f44_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e4d_102b_2f44/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e4d_102b_2f44.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e4d_102b_2f44&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9e4d_102b_2f44"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_476f_f1b1_006e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_476f_f1b1_006e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_476f_f1b1_006e/request", "", "public", "Top Dataset, monolevel, air.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_476f_f1b1_006e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_476f_f1b1_006e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_476f_f1b1_006e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_476f_f1b1_006e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_476f_f1b1_006e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_476f_f1b1_006e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6109_fa1d_bb2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6109_fa1d_bb2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6109_fa1d_bb2f/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6109_fa1d_bb2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6109_fa1d_bb2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6109_fa1d_bb2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6109_fa1d_bb2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6109_fa1d_bb2f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6109_fa1d_bb2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a73_8385_70bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a73_8385_70bc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9a73_8385_70bc/request", "", "public", "Top Dataset, monolevel, air.sfc.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at Surface, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9a73_8385_70bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9a73_8385_70bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9a73_8385_70bc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9a73_8385_70bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9a73_8385_70bc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9a73_8385_70bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_623b_2594_f923", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_623b_2594_f923.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_623b_2594_f923/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at Surface, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_623b_2594_f923_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_623b_2594_f923_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_623b_2594_f923/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_623b_2594_f923.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_623b_2594_f923&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_623b_2594_f923"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c419_43f8_5645", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c419_43f8_5645.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c419_43f8_5645/request", "", "public", "Top Dataset, monolevel, tmax.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Daily Long Term Mean Maximum Temperature at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c419_43f8_5645_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c419_43f8_5645_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c419_43f8_5645/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c419_43f8_5645.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c419_43f8_5645&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c419_43f8_5645"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c14e_621e_38c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c14e_621e_38c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c14e_621e_38c4/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Daily Long Term Mean Maximum Temperature at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c14e_621e_38c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c14e_621e_38c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c14e_621e_38c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c14e_621e_38c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c14e_621e_38c4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c14e_621e_38c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3fff_7b0d_a809", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3fff_7b0d_a809.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3fff_7b0d_a809/request", "", "public", "Top Dataset, monolevel, tmin.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Daily Long Term Mean Minimum Temperature at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3fff_7b0d_a809_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3fff_7b0d_a809_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3fff_7b0d_a809/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3fff_7b0d_a809.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3fff_7b0d_a809&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3fff_7b0d_a809"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eff7_5033_aa45", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eff7_5033_aa45.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eff7_5033_aa45/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Daily Long Term Mean Minimum Temperature at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eff7_5033_aa45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eff7_5033_aa45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eff7_5033_aa45/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eff7_5033_aa45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eff7_5033_aa45&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_eff7_5033_aa45"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d3e_9d34_dad5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d3e_9d34_dad5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5d3e_9d34_dad5/request", "", "public", "Top Dataset, subsurface, tsoil.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Daily Long Term Mean Soil Temperature, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5d3e_9d34_dad5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5d3e_9d34_dad5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5d3e_9d34_dad5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5d3e_9d34_dad5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5d3e_9d34_dad5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5d3e_9d34_dad5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7440_4b13_5150", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7440_4b13_5150.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7440_4b13_5150/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Daily Long Term Mean Soil Temperature, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7440_4b13_5150_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7440_4b13_5150_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7440_4b13_5150/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7440_4b13_5150.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7440_4b13_5150&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7440_4b13_5150"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b02_b32d_8712", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b02_b32d_8712.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b02_b32d_8712/request", "", "public", "Top Dataset, monolevel, air.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b02_b32d_8712_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b02_b32d_8712_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b02_b32d_8712/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b02_b32d_8712.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b02_b32d_8712&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6b02_b32d_8712"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c50a_57bb_d817", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c50a_57bb_d817.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c50a_57bb_d817/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c50a_57bb_d817_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c50a_57bb_d817_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c50a_57bb_d817/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c50a_57bb_d817.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c50a_57bb_d817&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c50a_57bb_d817"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_254f_0448_f8d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_254f_0448_f8d1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_254f_0448_f8d1/request", "", "public", "Top Dataset, monolevel, air.sfc.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at surface, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_254f_0448_f8d1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_254f_0448_f8d1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_254f_0448_f8d1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_254f_0448_f8d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_254f_0448_f8d1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_254f_0448_f8d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d436_46e1_897c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d436_46e1_897c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d436_46e1_897c/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at surface, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d436_46e1_897c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d436_46e1_897c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d436_46e1_897c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d436_46e1_897c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d436_46e1_897c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d436_46e1_897c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5d5_8f70_9eef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5d5_8f70_9eef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5d5_8f70_9eef/request", "", "public", "Top Dataset, monolevel, tmax.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Daily Long Term Mean Maximum Temperature Spread at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5d5_8f70_9eef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5d5_8f70_9eef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5d5_8f70_9eef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5d5_8f70_9eef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5d5_8f70_9eef&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a5d5_8f70_9eef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70b5_ece6_6000", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70b5_ece6_6000.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_70b5_ece6_6000/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Daily Long Term Mean Maximum Temperature Spread at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_70b5_ece6_6000_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_70b5_ece6_6000_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_70b5_ece6_6000/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_70b5_ece6_6000.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_70b5_ece6_6000&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_70b5_ece6_6000"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41c0_391c_80fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41c0_391c_80fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_41c0_391c_80fc/request", "", "public", "Top Dataset, monolevel, tmin.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Daily Long Term Mean Minimum Temperature Spread at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_41c0_391c_80fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_41c0_391c_80fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_41c0_391c_80fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_41c0_391c_80fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_41c0_391c_80fc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_41c0_391c_80fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0565_9195_7b28", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0565_9195_7b28.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0565_9195_7b28/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Daily Long Term Mean Minimum Temperature Spread at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0565_9195_7b28_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0565_9195_7b28_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0565_9195_7b28/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0565_9195_7b28.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0565_9195_7b28&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0565_9195_7b28"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_426e_854f_426b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_426e_854f_426b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_426e_854f_426b/request", "", "public", "Top Dataset, subsurface, tsoil.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Daily Long Term Mean Soil Temperature Spread, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_426e_854f_426b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_426e_854f_426b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_426e_854f_426b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_426e_854f_426b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_426e_854f_426b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_426e_854f_426b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eca7_5d38_51d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eca7_5d38_51d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eca7_5d38_51d7/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Daily Long Term Mean Soil Temperature Spread, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eca7_5d38_51d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eca7_5d38_51d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eca7_5d38_51d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eca7_5d38_51d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eca7_5d38_51d7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_eca7_5d38_51d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f5c_0239_c7cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f5c_0239_c7cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f5c_0239_c7cd/request", "", "public", "Top Dataset, monolevel, air.sig995.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Daily Air Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f5c_0239_c7cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f5c_0239_c7cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f5c_0239_c7cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f5c_0239_c7cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f5c_0239_c7cd&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0f5c_0239_c7cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbba_8a71_4812", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbba_8a71_4812.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fbba_8a71_4812/request", "", "public", "Top Dataset, monolevel, air.sig995.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fbba_8a71_4812_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fbba_8a71_4812_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fbba_8a71_4812/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fbba_8a71_4812.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fbba_8a71_4812&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fbba_8a71_4812"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4810_0f37_146d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4810_0f37_146d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4810_0f37_146d/request", "", "public", "Top Dataset, monolevel, air.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4810_0f37_146d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4810_0f37_146d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4810_0f37_146d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4810_0f37_146d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4810_0f37_146d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4810_0f37_146d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c67c_bac3_3523", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c67c_bac3_3523.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c67c_bac3_3523/request", "", "public", "Top Dataset, monolevel, air.tropo.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Daily Air Temperature at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c67c_bac3_3523_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c67c_bac3_3523_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c67c_bac3_3523/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c67c_bac3_3523.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c67c_bac3_3523&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c67c_bac3_3523"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e211_d7d5_b64b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e211_d7d5_b64b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e211_d7d5_b64b/request", "", "public", "Top Dataset, monolevel, air.tropo.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at Tropopause, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e211_d7d5_b64b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e211_d7d5_b64b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e211_d7d5_b64b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e211_d7d5_b64b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e211_d7d5_b64b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e211_d7d5_b64b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e228_90b5_4385", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e228_90b5_4385.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e228_90b5_4385/request", "", "public", "Top Dataset, monolevel, air.tropo.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at Tropopause, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e228_90b5_4385_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e228_90b5_4385_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e228_90b5_4385/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e228_90b5_4385.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e228_90b5_4385&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e228_90b5_4385"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b0c_0a81_dcbb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b0c_0a81_dcbb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8b0c_0a81_dcbb/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.day.1968-1996.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean Daily Potential Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8b0c_0a81_dcbb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8b0c_0a81_dcbb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8b0c_0a81_dcbb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8b0c_0a81_dcbb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8b0c_0a81_dcbb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8b0c_0a81_dcbb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3534_85a9_6208", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3534_85a9_6208.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3534_85a9_6208/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Daily Long Term Mean Potential Temperature at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3534_85a9_6208_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3534_85a9_6208_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3534_85a9_6208/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3534_85a9_6208.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3534_85a9_6208&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3534_85a9_6208"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_737f_e51a_31f8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_737f_e51a_31f8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_737f_e51a_31f8/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Daily Long Term Mean Potential Temperature at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_737f_e51a_31f8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_737f_e51a_31f8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_737f_e51a_31f8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_737f_e51a_31f8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_737f_e51a_31f8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_737f_e51a_31f8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_916e_b73a_f774", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_916e_b73a_f774.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_916e_b73a_f774/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_916e_b73a_f774_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_916e_b73a_f774_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_916e_b73a_f774/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_916e_b73a_f774.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_916e_b73a_f774&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_916e_b73a_f774"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f02_62f6_f9f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f02_62f6_f9f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3f02_62f6_f9f5/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3f02_62f6_f9f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3f02_62f6_f9f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3f02_62f6_f9f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3f02_62f6_f9f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3f02_62f6_f9f5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3f02_62f6_f9f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6970_5fde_63b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6970_5fde_63b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6970_5fde_63b3/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at Tropopause, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6970_5fde_63b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6970_5fde_63b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6970_5fde_63b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6970_5fde_63b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6970_5fde_63b3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6970_5fde_63b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ae6_104a_9df1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ae6_104a_9df1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ae6_104a_9df1/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at Tropopause, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ae6_104a_9df1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ae6_104a_9df1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ae6_104a_9df1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ae6_104a_9df1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ae6_104a_9df1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4ae6_104a_9df1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_484c_f434_9d60", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_484c_f434_9d60.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_484c_f434_9d60/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Daily Long Term Mean Potential Temperature Spread at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_484c_f434_9d60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_484c_f434_9d60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_484c_f434_9d60/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_484c_f434_9d60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_484c_f434_9d60&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_484c_f434_9d60"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19d0_9497_7160", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19d0_9497_7160.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_19d0_9497_7160/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Daily Long Term Mean Potential Temperature Spread at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_19d0_9497_7160_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_19d0_9497_7160_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_19d0_9497_7160/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_19d0_9497_7160.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_19d0_9497_7160&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_19d0_9497_7160"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8816_642f_ec8e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8816_642f_ec8e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8816_642f_ec8e/request", "", "public", "Top Dataset, pressure, air.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean Daily Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8816_642f_ec8e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8816_642f_ec8e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8816_642f_ec8e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8816_642f_ec8e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8816_642f_ec8e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8816_642f_ec8e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efaa_59b5_04fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efaa_59b5_04fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_efaa_59b5_04fa/request", "", "public", "Top Dataset, pressure, air.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_efaa_59b5_04fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_efaa_59b5_04fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_efaa_59b5_04fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_efaa_59b5_04fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_efaa_59b5_04fa&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_efaa_59b5_04fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85c5_d8ad_4756", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85c5_d8ad_4756.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_85c5_d8ad_4756/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, air.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_85c5_d8ad_4756_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_85c5_d8ad_4756_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85c5_d8ad_4756/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85c5_d8ad_4756.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85c5_d8ad_4756&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_85c5_d8ad_4756"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fcd_63e1_3fc4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fcd_63e1_3fc4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8fcd_63e1_3fc4/request", "", "public", "Top Dataset, pressure sprd, air.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8fcd_63e1_3fc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8fcd_63e1_3fc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8fcd_63e1_3fc4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8fcd_63e1_3fc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8fcd_63e1_3fc4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8fcd_63e1_3fc4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c7b_7e76_a051", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c7b_7e76_a051.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c7b_7e76_a051/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, air.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c7b_7e76_a051_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c7b_7e76_a051_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c7b_7e76_a051/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c7b_7e76_a051.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c7b_7e76_a051&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5c7b_7e76_a051"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d767_7276_fbba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d767_7276_fbba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d767_7276_fbba/request", "", "public", "Top Dataset, monolevel, air.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d767_7276_fbba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d767_7276_fbba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d767_7276_fbba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d767_7276_fbba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d767_7276_fbba&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d767_7276_fbba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5bf_64f4_aca4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5bf_64f4_aca4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5bf_64f4_aca4/request", "", "public", "Top Dataset, monolevel, air.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5bf_64f4_aca4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5bf_64f4_aca4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5bf_64f4_aca4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5bf_64f4_aca4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5bf_64f4_aca4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c5bf_64f4_aca4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae8a_3bb2_d412", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae8a_3bb2_d412.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae8a_3bb2_d412/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae8a_3bb2_d412_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae8a_3bb2_d412_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae8a_3bb2_d412/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae8a_3bb2_d412.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae8a_3bb2_d412&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ae8a_3bb2_d412"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a81_4d60_25ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a81_4d60_25ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a81_4d60_25ce/request", "", "public", "Top Dataset, monolevel, air.sfc.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at Surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a81_4d60_25ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a81_4d60_25ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a81_4d60_25ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a81_4d60_25ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a81_4d60_25ce&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3a81_4d60_25ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c942_595e_dcfb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c942_595e_dcfb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c942_595e_dcfb/request", "", "public", "Top Dataset, monolevel, air.sfc.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at Surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c942_595e_dcfb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c942_595e_dcfb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c942_595e_dcfb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c942_595e_dcfb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c942_595e_dcfb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c942_595e_dcfb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c2a_38ed_f5fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c2a_38ed_f5fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c2a_38ed_f5fa/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at Surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c2a_38ed_f5fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c2a_38ed_f5fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c2a_38ed_f5fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c2a_38ed_f5fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c2a_38ed_f5fa&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5c2a_38ed_f5fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e18b_7a08_4c81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e18b_7a08_4c81.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e18b_7a08_4c81/request", "", "public", "Top Dataset, monolevel, tmax.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Long Term Mean Monthly Maximum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e18b_7a08_4c81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e18b_7a08_4c81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e18b_7a08_4c81/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e18b_7a08_4c81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e18b_7a08_4c81&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e18b_7a08_4c81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92a7_6330_4810", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92a7_6330_4810.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_92a7_6330_4810/request", "", "public", "Top Dataset, monolevel, tmax.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Long Term Maximum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_92a7_6330_4810_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_92a7_6330_4810_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_92a7_6330_4810/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_92a7_6330_4810.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_92a7_6330_4810&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_92a7_6330_4810"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4211_7a90_8734", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4211_7a90_8734.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4211_7a90_8734/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Long Term Maximum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4211_7a90_8734_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4211_7a90_8734_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4211_7a90_8734/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4211_7a90_8734.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4211_7a90_8734&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4211_7a90_8734"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffd4_842e_1bbb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffd4_842e_1bbb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ffd4_842e_1bbb/request", "", "public", "Top Dataset, monolevel, tmin.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Long Term Mean Monthly Minimum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ffd4_842e_1bbb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ffd4_842e_1bbb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ffd4_842e_1bbb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ffd4_842e_1bbb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ffd4_842e_1bbb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ffd4_842e_1bbb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b92_37b8_c719", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b92_37b8_c719.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b92_37b8_c719/request", "", "public", "Top Dataset, monolevel, tmin.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Long Term Minimum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b92_37b8_c719_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b92_37b8_c719_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b92_37b8_c719/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b92_37b8_c719.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b92_37b8_c719&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7b92_37b8_c719"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d151_f808_34e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d151_f808_34e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d151_f808_34e5/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Long Term Minimum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d151_f808_34e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d151_f808_34e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d151_f808_34e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d151_f808_34e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d151_f808_34e5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d151_f808_34e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02d9_08d2_ada6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02d9_08d2_ada6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_02d9_08d2_ada6/request", "", "public", "Top Dataset, subsurface, tsoil.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Long Term Mean Monthly Soil Temperature, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_02d9_08d2_ada6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_02d9_08d2_ada6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_02d9_08d2_ada6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_02d9_08d2_ada6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_02d9_08d2_ada6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_02d9_08d2_ada6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8001_d023_7d7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8001_d023_7d7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8001_d023_7d7b/request", "", "public", "Top Dataset, subsurface, tsoil.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Long Term Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8001_d023_7d7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8001_d023_7d7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8001_d023_7d7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8001_d023_7d7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8001_d023_7d7b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8001_d023_7d7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56c6_a4bb_8ad3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56c6_a4bb_8ad3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_56c6_a4bb_8ad3/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Long Term Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_56c6_a4bb_8ad3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_56c6_a4bb_8ad3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_56c6_a4bb_8ad3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_56c6_a4bb_8ad3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_56c6_a4bb_8ad3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_56c6_a4bb_8ad3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c97_e965_b31f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c97_e965_b31f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4c97_e965_b31f/request", "", "public", "Top Dataset, monolevel, air.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4c97_e965_b31f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4c97_e965_b31f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c97_e965_b31f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c97_e965_b31f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c97_e965_b31f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4c97_e965_b31f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_702a_b5b4_c287", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_702a_b5b4_c287.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_702a_b5b4_c287/request", "", "public", "Top Dataset, monolevel, air.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_702a_b5b4_c287_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_702a_b5b4_c287_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_702a_b5b4_c287/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_702a_b5b4_c287.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_702a_b5b4_c287&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_702a_b5b4_c287"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ee2_f669_66bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ee2_f669_66bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ee2_f669_66bb/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ee2_f669_66bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ee2_f669_66bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ee2_f669_66bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ee2_f669_66bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ee2_f669_66bb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3ee2_f669_66bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1829_9429_0d07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1829_9429_0d07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1829_9429_0d07/request", "", "public", "Top Dataset, monolevel, air.sfc.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1829_9429_0d07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1829_9429_0d07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1829_9429_0d07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1829_9429_0d07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1829_9429_0d07&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1829_9429_0d07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dd0_4bcc_d4ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dd0_4bcc_d4ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5dd0_4bcc_d4ae/request", "", "public", "Top Dataset, monolevel, air.sfc.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5dd0_4bcc_d4ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5dd0_4bcc_d4ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5dd0_4bcc_d4ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5dd0_4bcc_d4ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5dd0_4bcc_d4ae&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5dd0_4bcc_d4ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f5c_be24_028d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f5c_be24_028d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6f5c_be24_028d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6f5c_be24_028d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6f5c_be24_028d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6f5c_be24_028d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6f5c_be24_028d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6f5c_be24_028d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6f5c_be24_028d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3873_0743_7423", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3873_0743_7423.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3873_0743_7423/request", "", "public", "Top Dataset, monolevel, tmax.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Long Term Mean Monthly Maximum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3873_0743_7423_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3873_0743_7423_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3873_0743_7423/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3873_0743_7423.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3873_0743_7423&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3873_0743_7423"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8d9_47d7_5144", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8d9_47d7_5144.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b8d9_47d7_5144/request", "", "public", "Top Dataset, monolevel, tmax.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Long Term Maximum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b8d9_47d7_5144_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b8d9_47d7_5144_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b8d9_47d7_5144/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b8d9_47d7_5144.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b8d9_47d7_5144&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b8d9_47d7_5144"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8988_e9b0_8d79", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8988_e9b0_8d79.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8988_e9b0_8d79/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Long Term Maximum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8988_e9b0_8d79_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8988_e9b0_8d79_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8988_e9b0_8d79/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8988_e9b0_8d79.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8988_e9b0_8d79&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8988_e9b0_8d79"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7028_6086_abd8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7028_6086_abd8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7028_6086_abd8/request", "", "public", "Top Dataset, monolevel, tmin.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Long Term Mean Monthly Minimum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7028_6086_abd8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7028_6086_abd8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7028_6086_abd8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7028_6086_abd8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7028_6086_abd8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7028_6086_abd8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb17_d629_b0a4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb17_d629_b0a4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb17_d629_b0a4/request", "", "public", "Top Dataset, monolevel, tmin.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Long Term Minimum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb17_d629_b0a4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb17_d629_b0a4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb17_d629_b0a4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb17_d629_b0a4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb17_d629_b0a4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_cb17_d629_b0a4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5b4_2629_cd6f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5b4_2629_cd6f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5b4_2629_cd6f/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Long Term Minimum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5b4_2629_cd6f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5b4_2629_cd6f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5b4_2629_cd6f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5b4_2629_cd6f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5b4_2629_cd6f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e5b4_2629_cd6f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c38_3b30_f407", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c38_3b30_f407.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c38_3b30_f407/request", "", "public", "Top Dataset, subsurface, tsoil.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Long Term Mean Monthly Soil Temperature Spread, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c38_3b30_f407_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c38_3b30_f407_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c38_3b30_f407/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c38_3b30_f407.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c38_3b30_f407&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0c38_3b30_f407"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5ef_11b6_df5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5ef_11b6_df5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5ef_11b6_df5f/request", "", "public", "Top Dataset, subsurface, tsoil.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Long Term Soil Temperature Spread, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5ef_11b6_df5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5ef_11b6_df5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5ef_11b6_df5f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5ef_11b6_df5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5ef_11b6_df5f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c5ef_11b6_df5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_905b_262c_f5c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_905b_262c_f5c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_905b_262c_f5c0/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Long Term Soil Temperature Spread, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_905b_262c_f5c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_905b_262c_f5c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_905b_262c_f5c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_905b_262c_f5c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_905b_262c_f5c0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_905b_262c_f5c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2c7_d003_f653", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2c7_d003_f653.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f2c7_d003_f653/request", "", "public", "Top Dataset, monolevel, air.sig995.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f2c7_d003_f653_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f2c7_d003_f653_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f2c7_d003_f653/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f2c7_d003_f653.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f2c7_d003_f653&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f2c7_d003_f653"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_006f_5127_e61f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_006f_5127_e61f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_006f_5127_e61f/request", "", "public", "Top Dataset, monolevel, air.sig995.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_006f_5127_e61f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_006f_5127_e61f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_006f_5127_e61f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_006f_5127_e61f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_006f_5127_e61f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_006f_5127_e61f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cb6_5e95_1e51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cb6_5e95_1e51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8cb6_5e95_1e51/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, air.sig995.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8cb6_5e95_1e51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8cb6_5e95_1e51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8cb6_5e95_1e51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8cb6_5e95_1e51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8cb6_5e95_1e51&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8cb6_5e95_1e51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c43c_e01f_b95d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c43c_e01f_b95d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c43c_e01f_b95d/request", "", "public", "Top Dataset, monolevel, air.tropo.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c43c_e01f_b95d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c43c_e01f_b95d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c43c_e01f_b95d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c43c_e01f_b95d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c43c_e01f_b95d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c43c_e01f_b95d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92cf_56a1_a6b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92cf_56a1_a6b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_92cf_56a1_a6b7/request", "", "public", "Top Dataset, monolevel, air.tropo.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_92cf_56a1_a6b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_92cf_56a1_a6b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_92cf_56a1_a6b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_92cf_56a1_a6b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_92cf_56a1_a6b7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_92cf_56a1_a6b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fadf_b89a_8c37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fadf_b89a_8c37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fadf_b89a_8c37/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, air.tropo.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fadf_b89a_8c37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fadf_b89a_8c37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fadf_b89a_8c37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fadf_b89a_8c37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fadf_b89a_8c37&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fadf_b89a_8c37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_553c_46e1_0e22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_553c_46e1_0e22.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_553c_46e1_0e22/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean Monthly Potential Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_553c_46e1_0e22_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_553c_46e1_0e22_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_553c_46e1_0e22/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_553c_46e1_0e22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_553c_46e1_0e22&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_553c_46e1_0e22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b456_f8d1_d30c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b456_f8d1_d30c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b456_f8d1_d30c/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Long Term Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b456_f8d1_d30c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b456_f8d1_d30c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b456_f8d1_d30c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b456_f8d1_d30c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b456_f8d1_d30c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b456_f8d1_d30c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_644e_fe05_42b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_644e_fe05_42b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_644e_fe05_42b9/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Long Term Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_644e_fe05_42b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_644e_fe05_42b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_644e_fe05_42b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_644e_fe05_42b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_644e_fe05_42b9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_644e_fe05_42b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f73c_5cfb_7d7d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f73c_5cfb_7d7d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f73c_5cfb_7d7d/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f73c_5cfb_7d7d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f73c_5cfb_7d7d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f73c_5cfb_7d7d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f73c_5cfb_7d7d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f73c_5cfb_7d7d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f73c_5cfb_7d7d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8abc_8222_02d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8abc_8222_02d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8abc_8222_02d5/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8abc_8222_02d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8abc_8222_02d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8abc_8222_02d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8abc_8222_02d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8abc_8222_02d5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8abc_8222_02d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4254_3e33_671e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4254_3e33_671e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4254_3e33_671e/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4254_3e33_671e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4254_3e33_671e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4254_3e33_671e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4254_3e33_671e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4254_3e33_671e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4254_3e33_671e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94ea_35ee_0e4f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94ea_35ee_0e4f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_94ea_35ee_0e4f/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_94ea_35ee_0e4f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_94ea_35ee_0e4f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_94ea_35ee_0e4f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_94ea_35ee_0e4f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_94ea_35ee_0e4f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_94ea_35ee_0e4f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b422_3911_0054", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b422_3911_0054.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b422_3911_0054/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b422_3911_0054_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b422_3911_0054_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b422_3911_0054/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b422_3911_0054.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b422_3911_0054&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b422_3911_0054"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_67bb_5c25_7a16", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_67bb_5c25_7a16.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_67bb_5c25_7a16/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_67bb_5c25_7a16_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_67bb_5c25_7a16_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_67bb_5c25_7a16/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_67bb_5c25_7a16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_67bb_5c25_7a16&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_67bb_5c25_7a16"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b48_46c5_a175", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b48_46c5_a175.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b48_46c5_a175/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean Monthly Potential Temperature Spread at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b48_46c5_a175_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b48_46c5_a175_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b48_46c5_a175/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b48_46c5_a175.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b48_46c5_a175&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6b48_46c5_a175"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_385b_60f9_c9cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_385b_60f9_c9cc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_385b_60f9_c9cc/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Long Term Potential Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_385b_60f9_c9cc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_385b_60f9_c9cc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_385b_60f9_c9cc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_385b_60f9_c9cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_385b_60f9_c9cc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_385b_60f9_c9cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cee_ba6f_4871", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cee_ba6f_4871.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8cee_ba6f_4871/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Long Term Potential Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8cee_ba6f_4871_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8cee_ba6f_4871_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8cee_ba6f_4871/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8cee_ba6f_4871.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8cee_ba6f_4871&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8cee_ba6f_4871"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c4c7_7457_84bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c4c7_7457_84bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c4c7_7457_84bf/request", "", "public", "Top Dataset, pressure, air.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c4c7_7457_84bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c4c7_7457_84bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c4c7_7457_84bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c4c7_7457_84bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c4c7_7457_84bf&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c4c7_7457_84bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fda_9a93_831c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fda_9a93_831c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5fda_9a93_831c/request", "", "public", "Top Dataset, pressure, air.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Long Term Air Temperature on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5fda_9a93_831c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5fda_9a93_831c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5fda_9a93_831c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5fda_9a93_831c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5fda_9a93_831c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5fda_9a93_831c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6eab_9fe9_284f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6eab_9fe9_284f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6eab_9fe9_284f/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, air.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Long Term Air Temperature on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6eab_9fe9_284f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6eab_9fe9_284f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6eab_9fe9_284f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6eab_9fe9_284f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6eab_9fe9_284f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6eab_9fe9_284f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7bca_2a95_830f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7bca_2a95_830f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7bca_2a95_830f/request", "", "public", "Top Dataset, pressure sprd, air.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7bca_2a95_830f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7bca_2a95_830f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7bca_2a95_830f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7bca_2a95_830f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7bca_2a95_830f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7bca_2a95_830f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b3b_4d47_4bcc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b3b_4d47_4bcc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0b3b_4d47_4bcc/request", "", "public", "Top Dataset, pressure sprd, air.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0b3b_4d47_4bcc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0b3b_4d47_4bcc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0b3b_4d47_4bcc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0b3b_4d47_4bcc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0b3b_4d47_4bcc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0b3b_4d47_4bcc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c93d_1cb4_ec67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c93d_1cb4_ec67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c93d_1cb4_ec67/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, air.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c93d_1cb4_ec67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c93d_1cb4_ec67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c93d_1cb4_ec67/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c93d_1cb4_ec67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c93d_1cb4_ec67&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c93d_1cb4_ec67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd0b_34e4_82bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd0b_34e4_82bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bd0b_34e4_82bb/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bd0b_34e4_82bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bd0b_34e4_82bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bd0b_34e4_82bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bd0b_34e4_82bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bd0b_34e4_82bb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bd0b_34e4_82bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7d9_c99e_2d9a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7d9_c99e_2d9a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e7d9_c99e_2d9a/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at Surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e7d9_c99e_2d9a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e7d9_c99e_2d9a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e7d9_c99e_2d9a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e7d9_c99e_2d9a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e7d9_c99e_2d9a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e7d9_c99e_2d9a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_328f_9e9b_125d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_328f_9e9b_125d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_328f_9e9b_125d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Maximum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_328f_9e9b_125d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_328f_9e9b_125d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_328f_9e9b_125d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_328f_9e9b_125d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_328f_9e9b_125d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_328f_9e9b_125d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bacc_d99c_0451", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bacc_d99c_0451.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bacc_d99c_0451/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Minimum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bacc_d99c_0451_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bacc_d99c_0451_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bacc_d99c_0451/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bacc_d99c_0451.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bacc_d99c_0451&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bacc_d99c_0451"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ec6_5a5a_201d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ec6_5a5a_201d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ec6_5a5a_201d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Soil Temperature, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ec6_5a5a_201d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ec6_5a5a_201d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ec6_5a5a_201d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ec6_5a5a_201d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ec6_5a5a_201d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3ec6_5a5a_201d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d88_b808_0b86", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d88_b808_0b86.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7d88_b808_0b86/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7d88_b808_0b86_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7d88_b808_0b86_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7d88_b808_0b86/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7d88_b808_0b86.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7d88_b808_0b86&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7d88_b808_0b86"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_967e_324f_e2a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_967e_324f_e2a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_967e_324f_e2a0/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_967e_324f_e2a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_967e_324f_e2a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_967e_324f_e2a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_967e_324f_e2a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_967e_324f_e2a0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_967e_324f_e2a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1931_de51_6cf0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1931_de51_6cf0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1931_de51_6cf0/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Maximum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1931_de51_6cf0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1931_de51_6cf0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1931_de51_6cf0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1931_de51_6cf0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1931_de51_6cf0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1931_de51_6cf0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_624c_b357_05f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_624c_b357_05f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_624c_b357_05f2/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Minimum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_624c_b357_05f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_624c_b357_05f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_624c_b357_05f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_624c_b357_05f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_624c_b357_05f2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_624c_b357_05f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa13_331a_881b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa13_331a_881b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa13_331a_881b/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Soil Temperature Spread, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa13_331a_881b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa13_331a_881b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa13_331a_881b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa13_331a_881b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa13_331a_881b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_aa13_331a_881b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e760_836c_65dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e760_836c_65dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e760_836c_65dd/request", "", "public", "Top Dataset, monolevel, air.sig995.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e760_836c_65dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e760_836c_65dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e760_836c_65dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e760_836c_65dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e760_836c_65dd&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e760_836c_65dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc9b_5b0a_3283", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc9b_5b0a_3283.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bc9b_5b0a_3283/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, air.tropo.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bc9b_5b0a_3283_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bc9b_5b0a_3283_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bc9b_5b0a_3283/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bc9b_5b0a_3283.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bc9b_5b0a_3283&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bc9b_5b0a_3283"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ace_48ac_70b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ace_48ac_70b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ace_48ac_70b6/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Potential Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ace_48ac_70b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ace_48ac_70b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ace_48ac_70b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ace_48ac_70b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ace_48ac_70b6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5ace_48ac_70b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f33e_8165_4963", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f33e_8165_4963.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f33e_8165_4963/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f33e_8165_4963_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f33e_8165_4963_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f33e_8165_4963/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f33e_8165_4963.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f33e_8165_4963&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f33e_8165_4963"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5d4_f556_e693", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5d4_f556_e693.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5d4_f556_e693/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5d4_f556_e693_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5d4_f556_e693_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5d4_f556_e693/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5d4_f556_e693.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5d4_f556_e693&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e5d4_f556_e693"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4ab_fba1_63cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4ab_fba1_63cc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f4ab_fba1_63cc/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.mon.mean, 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Potential Temperature Spread at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f4ab_fba1_63cc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f4ab_fba1_63cc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f4ab_fba1_63cc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f4ab_fba1_63cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f4ab_fba1_63cc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f4ab_fba1_63cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aab0_5e09_779b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aab0_5e09_779b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aab0_5e09_779b/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, air.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aab0_5e09_779b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aab0_5e09_779b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aab0_5e09_779b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aab0_5e09_779b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aab0_5e09_779b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_aab0_5e09_779b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efee_45c6_e9ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efee_45c6_e9ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_efee_45c6_e9ce/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, air.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_efee_45c6_e9ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_efee_45c6_e9ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_efee_45c6_e9ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_efee_45c6_e9ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_efee_45c6_e9ce&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_efee_45c6_e9ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b45_5fda_e74c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b45_5fda_e74c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b45_5fda_e74c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sig995.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b45_5fda_e74c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b45_5fda_e74c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b45_5fda_e74c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b45_5fda_e74c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b45_5fda_e74c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5b45_5fda_e74c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2dfc_02f7_6b58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2dfc_02f7_6b58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2dfc_02f7_6b58/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.tropo.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2dfc_02f7_6b58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2dfc_02f7_6b58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2dfc_02f7_6b58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2dfc_02f7_6b58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2dfc_02f7_6b58&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2dfc_02f7_6b58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ede_942c_6a81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ede_942c_6a81.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ede_942c_6a81/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (pottmp.sig995.4Xday.ltm), 2.0\u00b0, 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean 6-hourly Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ede_942c_6a81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ede_942c_6a81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ede_942c_6a81/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ede_942c_6a81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ede_942c_6a81&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5ede_942c_6a81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2bf_4392_704f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2bf_4392_704f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f2bf_4392_704f/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f2bf_4392_704f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f2bf_4392_704f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f2bf_4392_704f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f2bf_4392_704f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f2bf_4392_704f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f2bf_4392_704f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_deac_f85a_7ae9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_deac_f85a_7ae9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_deac_f85a_7ae9/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_deac_f85a_7ae9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_deac_f85a_7ae9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_deac_f85a_7ae9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_deac_f85a_7ae9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_deac_f85a_7ae9&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_deac_f85a_7ae9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa88_f253_e4db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa88_f253_e4db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa88_f253_e4db/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean 6-hourly Potential Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa88_f253_e4db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa88_f253_e4db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa88_f253_e4db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa88_f253_e4db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa88_f253_e4db&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_aa88_f253_e4db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3397_f096_f525", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3397_f096_f525.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3397_f096_f525/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, air.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3397_f096_f525_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3397_f096_f525_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3397_f096_f525/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3397_f096_f525.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3397_f096_f525&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3397_f096_f525"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6889_9369_b6a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6889_9369_b6a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6889_9369_b6a7/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, air.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6889_9369_b6a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6889_9369_b6a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6889_9369_b6a7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6889_9369_b6a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6889_9369_b6a7&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6889_9369_b6a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2903_cfd7_e71b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2903_cfd7_e71b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2903_cfd7_e71b/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.2m.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2903_cfd7_e71b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2903_cfd7_e71b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2903_cfd7_e71b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2903_cfd7_e71b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2903_cfd7_e71b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2903_cfd7_e71b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3235_024d_f86a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3235_024d_f86a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3235_024d_f86a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sfc.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature at Surface, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3235_024d_f86a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3235_024d_f86a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3235_024d_f86a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3235_024d_f86a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3235_024d_f86a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3235_024d_f86a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c67_3aca_8c3e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c67_3aca_8c3e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c67_3aca_8c3e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (3-hourly Long Term Mean Maximum Temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c67_3aca_8c3e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c67_3aca_8c3e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c67_3aca_8c3e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c67_3aca_8c3e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c67_3aca_8c3e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5c67_3aca_8c3e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_706d_a47b_8c9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_706d_a47b_8c9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_706d_a47b_8c9d/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (3-hourly Long Term Mean Minimum Temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_706d_a47b_8c9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_706d_a47b_8c9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_706d_a47b_8c9d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_706d_a47b_8c9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_706d_a47b_8c9d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_706d_a47b_8c9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b303_ebcc_fb18", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b303_ebcc_fb18.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b303_ebcc_fb18/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, tsoil.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (3-hourly Long Term Mean Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b303_ebcc_fb18_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b303_ebcc_fb18_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b303_ebcc_fb18/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b303_ebcc_fb18.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b303_ebcc_fb18&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b303_ebcc_fb18"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c054_7cf9_b656", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c054_7cf9_b656.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c054_7cf9_b656/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (air.2m.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (daily Long Term Mean mean 3-hourly Air Temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c054_7cf9_b656_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c054_7cf9_b656_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c054_7cf9_b656/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c054_7cf9_b656.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c054_7cf9_b656&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c054_7cf9_b656"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c693_3ec4_345a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c693_3ec4_345a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c693_3ec4_345a/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (air.sfc.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (daily Long Term Mean mean 3-hourly Air Temperature at Surface, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c693_3ec4_345a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c693_3ec4_345a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c693_3ec4_345a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c693_3ec4_345a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c693_3ec4_345a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c693_3ec4_345a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c173_29a1_d8d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c173_29a1_d8d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c173_29a1_d8d3/request", "", "public", "daily 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.day.ltm), 0001", "daily 4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Daily Long Term Mean 3-hourly Maximum Temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c173_29a1_d8d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c173_29a1_d8d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c173_29a1_d8d3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c173_29a1_d8d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c173_29a1_d8d3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c173_29a1_d8d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd04_947b_6ec2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd04_947b_6ec2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bd04_947b_6ec2/request", "", "public", "daily 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.day.ltm), 0001", "daily 4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Daily Long Term Mean 3-hourly Minimum Temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bd04_947b_6ec2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bd04_947b_6ec2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bd04_947b_6ec2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bd04_947b_6ec2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bd04_947b_6ec2&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_bd04_947b_6ec2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5909_aae7_a5f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5909_aae7_a5f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5909_aae7_a5f0/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (tsoil.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (daily Long Term Mean mean 3-hourly Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5909_aae7_a5f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5909_aae7_a5f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5909_aae7_a5f0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5909_aae7_a5f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5909_aae7_a5f0&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5909_aae7_a5f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d115_bb45_ea8c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d115_bb45_ea8c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d115_bb45_ea8c/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sig995.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d115_bb45_ea8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d115_bb45_ea8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d115_bb45_ea8c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d115_bb45_ea8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d115_bb45_ea8c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d115_bb45_ea8c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d75_f9af_6746", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d75_f9af_6746.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2d75_f9af_6746/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.tropo.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2d75_f9af_6746_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2d75_f9af_6746_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d75_f9af_6746/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d75_f9af_6746.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d75_f9af_6746&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2d75_f9af_6746"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0cc7_0760_5bc1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0cc7_0760_5bc1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0cc7_0760_5bc1/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2c), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Daily Long Term Mean Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0cc7_0760_5bc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0cc7_0760_5bc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0cc7_0760_5bc1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0cc7_0760_5bc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0cc7_0760_5bc1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0cc7_0760_5bc1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a0f_b575_87bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a0f_b575_87bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a0f_b575_87bb/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, air.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a0f_b575_87bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a0f_b575_87bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a0f_b575_87bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a0f_b575_87bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a0f_b575_87bb&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5a0f_b575_87bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98f4_98a7_ebd4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98f4_98a7_ebd4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_98f4_98a7_ebd4/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_98f4_98a7_ebd4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_98f4_98a7_ebd4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_98f4_98a7_ebd4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_98f4_98a7_ebd4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_98f4_98a7_ebd4&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_98f4_98a7_ebd4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_314e_d1d6_f04c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_314e_d1d6_f04c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_314e_d1d6_f04c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sfc.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at Surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_314e_d1d6_f04c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_314e_d1d6_f04c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_314e_d1d6_f04c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_314e_d1d6_f04c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_314e_d1d6_f04c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_314e_d1d6_f04c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a28_8e70_ca46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a28_8e70_ca46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8a28_8e70_ca46/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Long Term Mean Monthly Maximum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8a28_8e70_ca46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8a28_8e70_ca46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8a28_8e70_ca46/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8a28_8e70_ca46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8a28_8e70_ca46&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8a28_8e70_ca46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c8e_3f66_6231", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c8e_3f66_6231.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3c8e_3f66_6231/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Long Term Mean Monthly Minimum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3c8e_3f66_6231_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3c8e_3f66_6231_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c8e_3f66_6231/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c8e_3f66_6231.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c8e_3f66_6231&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3c8e_3f66_6231"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b78c_38d4_da29", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b78c_38d4_da29.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b78c_38d4_da29/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, tsoil.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Long Term Mean Monthly Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b78c_38d4_da29_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b78c_38d4_da29_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b78c_38d4_da29/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b78c_38d4_da29.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b78c_38d4_da29&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b78c_38d4_da29"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f10_da40_ffa3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f10_da40_ffa3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f10_da40_ffa3/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f10_da40_ffa3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f10_da40_ffa3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f10_da40_ffa3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f10_da40_ffa3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f10_da40_ffa3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0f10_da40_ffa3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f950_cedb_93ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f950_cedb_93ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f950_cedb_93ff/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sfc.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f950_cedb_93ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f950_cedb_93ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f950_cedb_93ff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f950_cedb_93ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f950_cedb_93ff&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f950_cedb_93ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da34_ff03_2878", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da34_ff03_2878.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da34_ff03_2878/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Long Term Mean Monthly Maximum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da34_ff03_2878_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da34_ff03_2878_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da34_ff03_2878/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da34_ff03_2878.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da34_ff03_2878&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_da34_ff03_2878"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dc2_2190_084e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dc2_2190_084e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4dc2_2190_084e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Long Term Mean Monthly Minimum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4dc2_2190_084e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4dc2_2190_084e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4dc2_2190_084e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4dc2_2190_084e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4dc2_2190_084e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4dc2_2190_084e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e5c_f7ed_dc4e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e5c_f7ed_dc4e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e5c_f7ed_dc4e/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, tsoil.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Long Term Mean Monthly Soil Temperature Spread, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e5c_f7ed_dc4e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e5c_f7ed_dc4e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e5c_f7ed_dc4e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e5c_f7ed_dc4e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e5c_f7ed_dc4e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0e5c_f7ed_dc4e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b077_f03b_b4a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b077_f03b_b4a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b077_f03b_b4a1/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sig995.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b077_f03b_b4a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b077_f03b_b4a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b077_f03b_b4a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b077_f03b_b4a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b077_f03b_b4a1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b077_f03b_b4a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6fe_d15d_3825", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6fe_d15d_3825.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e6fe_d15d_3825/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.tropo.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e6fe_d15d_3825_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e6fe_d15d_3825_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e6fe_d15d_3825/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e6fe_d15d_3825.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e6fe_d15d_3825&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e6fe_d15d_3825"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_508d_e781_161d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_508d_e781_161d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_508d_e781_161d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pottmp.sig995.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean Monthly Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_508d_e781_161d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_508d_e781_161d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_508d_e781_161d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_508d_e781_161d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_508d_e781_161d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_508d_e781_161d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b552_91ba_ec3a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b552_91ba_ec3a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b552_91ba_ec3a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (air.sig995.mon.ltm), 2.0\u00b0, 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b552_91ba_ec3a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b552_91ba_ec3a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b552_91ba_ec3a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b552_91ba_ec3a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b552_91ba_ec3a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b552_91ba_ec3a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f478_1944_0cff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f478_1944_0cff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f478_1944_0cff/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (air.tropo.mon.ltm), 2.0\u00b0, 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f478_1944_0cff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f478_1944_0cff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f478_1944_0cff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f478_1944_0cff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f478_1944_0cff&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f478_1944_0cff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ae8_3cea_b081", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ae8_3cea_b081.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ae8_3cea_b081/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.mon.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean Monthly Potential Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ae8_3cea_b081_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ae8_3cea_b081_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ae8_3cea_b081/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ae8_3cea_b081.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ae8_3cea_b081&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5ae8_3cea_b081"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f01f_43cf_686b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f01f_43cf_686b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f01f_43cf_686b/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, air.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f01f_43cf_686b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f01f_43cf_686b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f01f_43cf_686b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f01f_43cf_686b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f01f_43cf_686b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f01f_43cf_686b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01a9_d724_75dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01a9_d724_75dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_01a9_d724_75dd/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, air.mon.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_01a9_d724_75dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_01a9_d724_75dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_01a9_d724_75dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_01a9_d724_75dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_01a9_d724_75dd&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_01a9_d724_75dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73b7_feea_c0e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73b7_feea_c0e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_73b7_feea_c0e3/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_73b7_feea_c0e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_73b7_feea_c0e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_73b7_feea_c0e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_73b7_feea_c0e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_73b7_feea_c0e3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_73b7_feea_c0e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5e1_2e73_fabb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5e1_2e73_fabb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5e1_2e73_fabb/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at Surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5e1_2e73_fabb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5e1_2e73_fabb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5e1_2e73_fabb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5e1_2e73_fabb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5e1_2e73_fabb&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b5e1_2e73_fabb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c02_7fe8_9f50", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c02_7fe8_9f50.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c02_7fe8_9f50/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Maximum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c02_7fe8_9f50_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c02_7fe8_9f50_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c02_7fe8_9f50/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c02_7fe8_9f50.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c02_7fe8_9f50&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9c02_7fe8_9f50"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5613_d6e9_14f4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5613_d6e9_14f4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5613_d6e9_14f4/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Minimum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5613_d6e9_14f4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5613_d6e9_14f4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5613_d6e9_14f4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5613_d6e9_14f4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5613_d6e9_14f4&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5613_d6e9_14f4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0257_dc9e_799e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0257_dc9e_799e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0257_dc9e_799e/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, tsoil.mon.mean), 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Soil Temperature, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0257_dc9e_799e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0257_dc9e_799e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0257_dc9e_799e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0257_dc9e_799e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0257_dc9e_799e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0257_dc9e_799e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38e2_4623_3d85", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38e2_4623_3d85.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_38e2_4623_3d85/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_38e2_4623_3d85_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_38e2_4623_3d85_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_38e2_4623_3d85/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_38e2_4623_3d85.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_38e2_4623_3d85&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_38e2_4623_3d85"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7655_8c18_3a9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7655_8c18_3a9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7655_8c18_3a9d/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7655_8c18_3a9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7655_8c18_3a9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7655_8c18_3a9d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7655_8c18_3a9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7655_8c18_3a9d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7655_8c18_3a9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_059c_6820_a42c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_059c_6820_a42c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_059c_6820_a42c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Maximum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_059c_6820_a42c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_059c_6820_a42c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_059c_6820_a42c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_059c_6820_a42c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_059c_6820_a42c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_059c_6820_a42c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0dd8_7adb_c629", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0dd8_7adb_c629.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0dd8_7adb_c629/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Minimum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0dd8_7adb_c629_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0dd8_7adb_c629_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0dd8_7adb_c629/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0dd8_7adb_c629.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0dd8_7adb_c629&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0dd8_7adb_c629"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1207_e277_400e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1207_e277_400e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1207_e277_400e/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, tsoil.mon.mean), 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Soil Temperature Spread, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1207_e277_400e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1207_e277_400e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1207_e277_400e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1207_e277_400e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1207_e277_400e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_1207_e277_400e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9118_5c8e_5fc3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9118_5c8e_5fc3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9118_5c8e_5fc3/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sig995.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9118_5c8e_5fc3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9118_5c8e_5fc3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9118_5c8e_5fc3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9118_5c8e_5fc3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9118_5c8e_5fc3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9118_5c8e_5fc3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5b1_3ac5_5570", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5b1_3ac5_5570.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5b1_3ac5_5570/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.tropo.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5b1_3ac5_5570_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5b1_3ac5_5570_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5b1_3ac5_5570/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5b1_3ac5_5570.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5b1_3ac5_5570&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a5b1_3ac5_5570"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d32b_2d9d_2af1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d32b_2d9d_2af1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d32b_2d9d_2af1/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pottmp.sig995.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Potential Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d32b_2d9d_2af1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d32b_2d9d_2af1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d32b_2d9d_2af1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d32b_2d9d_2af1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d32b_2d9d_2af1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d32b_2d9d_2af1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1a6_beae_f7e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1a6_beae_f7e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a1a6_beae_f7e0/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.mon.mean, 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a1a6_beae_f7e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a1a6_beae_f7e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a1a6_beae_f7e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a1a6_beae_f7e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a1a6_beae_f7e0&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a1a6_beae_f7e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_62ec_436e_705e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_62ec_436e_705e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_62ec_436e_705e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (air.tropo.mon.mean), 2.0\u00b0, 1851-2014", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_62ec_436e_705e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_62ec_436e_705e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_62ec_436e_705e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_62ec_436e_705e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_62ec_436e_705e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_62ec_436e_705e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4da7_e743_ddbd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4da7_e743_ddbd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4da7_e743_ddbd/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.mon.mean, 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Potential Temperature Spread at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4da7_e743_ddbd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4da7_e743_ddbd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4da7_e743_ddbd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4da7_e743_ddbd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4da7_e743_ddbd&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4da7_e743_ddbd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_808e_0b04_f524", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_808e_0b04_f524.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_808e_0b04_f524/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, air.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_808e_0b04_f524_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_808e_0b04_f524_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_808e_0b04_f524/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_808e_0b04_f524.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_808e_0b04_f524&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_808e_0b04_f524"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72b6_a6fc_cce9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72b6_a6fc_cce9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_72b6_a6fc_cce9/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, air.mon.mean), 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_72b6_a6fc_cce9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_72b6_a6fc_cce9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_72b6_a6fc_cce9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_72b6_a6fc_cce9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_72b6_a6fc_cce9&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_72b6_a6fc_cce9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d245_c858_56c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d245_c858_56c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d245_c858_56c1/request", "", "public", "Top Dataset, COBE, sst.mon.ltm.1981-2010 (COBE SST Analysis), 1.0\u00b0, 0001", "COBE Sea Surface Temperature Analysis. recent values (w/i last year) may change as dataset is updated. It is a monitoring dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Long Term Mean Monthly Means of Global Sea Surface Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d245_c858_56c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d245_c858_56c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d245_c858_56c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cobe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d245_c858_56c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d245_c858_56c1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d245_c858_56c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_acda_96fa_86e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_acda_96fa_86e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_acda_96fa_86e5/request", "", "public", "COBE SST Analysis (Top Dataset, COBE, sst.mon.mean), 1.0\u00b0, 1891-present", "COBE Sea Surface Temperature Analysis. recent values (w/i last year) may change as dataset is updated. It is a monitoring dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Means of Global Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_acda_96fa_86e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_acda_96fa_86e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_acda_96fa_86e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cobe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_acda_96fa_86e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_acda_96fa_86e5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_acda_96fa_86e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f36_550f_a27a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f36_550f_a27a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3f36_550f_a27a/request", "", "public", "Top Dataset, COBE2, icec.mon.ltm.1981-2010.2016 (created 05/2014 from data provided by JRA), 1.0\u00b0, 0001", "created 05/2014 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, icec.mon.ltm.1981-2010.2016)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Long Term Mean Monthly Means of Global Ice Concentration, fr)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3f36_550f_a27a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3f36_550f_a27a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3f36_550f_a27a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3f36_550f_a27a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3f36_550f_a27a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3f36_550f_a27a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b0b_c423_6eae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b0b_c423_6eae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b0b_c423_6eae/request", "", "public", "Top Dataset, COBE2, icec.mon.ltm.1981-2010 (created 05/2014 from data provided by JRA), 1.0\u00b0, 0001", "created 05/2014 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, icec.mon.ltm.1981-2010)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Long Term Mean Monthly Means of Global Ice Concentration, fr)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b0b_c423_6eae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b0b_c423_6eae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b0b_c423_6eae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b0b_c423_6eae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b0b_c423_6eae&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5b0b_c423_6eae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9e7_3b10_49c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9e7_3b10_49c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a9e7_3b10_49c0/request", "", "public", "created 05/2014 from data provided by JRA (Top Dataset, COBE2, icec.mon.mean.2016), 1.0\u00b0", "created 05/2014 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, icec.mon.mean.2016)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Monthly Means of Global Ice Concentration, fr)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9e7_3b10_49c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9e7_3b10_49c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9e7_3b10_49c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9e7_3b10_49c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9e7_3b10_49c0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a9e7_3b10_49c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e871_0ea9_74d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e871_0ea9_74d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e871_0ea9_74d9/request", "", "public", "created 05/2014 from data provided by JRA (Top Dataset, COBE2, icec.mon.mean), 1.0\u00b0, 1850-2017", "created 05/2014 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, icec.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Monthly Means of Global Ice Concentration, fr)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e871_0ea9_74d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e871_0ea9_74d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e871_0ea9_74d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e871_0ea9_74d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e871_0ea9_74d9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e871_0ea9_74d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e02e_d3e1_c3cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e02e_d3e1_c3cc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e02e_d3e1_c3cc/request", "", "public", "Top Dataset, COBE2, sst.mon.ltm.1981-2010.2016 (created 12/2013 from data provided by JRA), 1.0\u00b0, 0001", "created 12/2013 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, sst.mon.ltm.1981-2010.2016)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Long Term Mean Monthly Means of Global Sea Surface Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e02e_d3e1_c3cc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e02e_d3e1_c3cc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e02e_d3e1_c3cc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e02e_d3e1_c3cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e02e_d3e1_c3cc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e02e_d3e1_c3cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f681_efe5_3597", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f681_efe5_3597.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f681_efe5_3597/request", "", "public", "created 12/2013 from data provided by JRA (Top Dataset, COBE2, sst.mon.ltm.1981-2010), 1.0\u00b0, 0001", "created 12/2013 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, sst.mon.ltm.1981-2010)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Long Term Mean Monthly Means of Global Sea Surface Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f681_efe5_3597_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f681_efe5_3597_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f681_efe5_3597/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f681_efe5_3597.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f681_efe5_3597&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f681_efe5_3597"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc06_d1e5_9bf9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc06_d1e5_9bf9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc06_d1e5_9bf9/request", "", "public", "created 12/2013 from data provided by JRA (Top Dataset, COBE2, sst.mon.mean.2016), 1.0\u00b0", "created 12/2013 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, sst.mon.mean.2016)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Means of Global Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc06_d1e5_9bf9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc06_d1e5_9bf9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc06_d1e5_9bf9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc06_d1e5_9bf9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc06_d1e5_9bf9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_dc06_d1e5_9bf9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35ec_0735_a3f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35ec_0735_a3f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_35ec_0735_a3f5/request", "", "public", "created 12/2013 from data provided by JRA (Top Dataset, COBE2, sst.mon.mean), 1.0\u00b0, 1850-2017", "created 12/2013 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, sst.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Means of Global Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_35ec_0735_a3f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_35ec_0735_a3f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_35ec_0735_a3f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_35ec_0735_a3f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_35ec_0735_a3f5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_35ec_0735_a3f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5d8_2155_b839", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5d8_2155_b839.graph", "", "", "public", "Top Dataset, monolevel, air.2m.day.ltm (Daily NARR) [time][y][x], 0001", "Daily NARR (Top Dataset, monolevel, air.2m.day.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nair (Daily Air Temperature at 2 m, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5d8_2155_b839/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5d8_2155_b839.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5d8_2155_b839&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a5d8_2155_b839"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2538_a283_c9c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2538_a283_c9c1.graph", "", "", "public", "Top Dataset, monolevel, air.2m.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, air.2m.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nair (Monthly Long Term Mean Air Temperature at 2 m, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2538_a283_c9c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2538_a283_c9c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2538_a283_c9c1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_2538_a283_c9c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63f5_1e56_8f1d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63f5_1e56_8f1d.graph", "", "", "public", "Top Dataset, monolevel, air.sfc.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, air.sfc.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nair (Long Term Monthly Mean air temperature at Surface, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_63f5_1e56_8f1d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_63f5_1e56_8f1d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_63f5_1e56_8f1d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_63f5_1e56_8f1d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4163_0b75_70a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4163_0b75_70a0.graph", "", "", "public", "Top Dataset, monolevel, dpt.2m.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, dpt.2m.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ndpt (Long Term Monthly Mean Dew Point Temperature at 2m, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4163_0b75_70a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4163_0b75_70a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4163_0b75_70a0&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_4163_0b75_70a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a308_27ac_ed4f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a308_27ac_ed4f.graph", "", "", "public", "Top Dataset, monolevel, lftx4.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nlftx4 (Long Term Monthly Mean Best (4-layer) Lifted Index, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a308_27ac_ed4f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a308_27ac_ed4f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a308_27ac_ed4f&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a308_27ac_ed4f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccca_66a6_985b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccca_66a6_985b.graph", "", "", "public", "Top Dataset, monolevel, pottmp.hl1.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, pottmp.hl1.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\npottmp (Long Term Monthly Mean Potential Temperature, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ccca_66a6_985b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ccca_66a6_985b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ccca_66a6_985b&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ccca_66a6_985b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0da1_3e23_35ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0da1_3e23_35ba.graph", "", "", "public", "Top Dataset, monolevel, pottmp.sfc.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, pottmp.sfc.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\npottmp (Long Term Monthly Mean potential temperature at Surface, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0da1_3e23_35ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0da1_3e23_35ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0da1_3e23_35ba&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_0da1_3e23_35ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_704f_70b1_858c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_704f_70b1_858c.graph", "", "", "public", "Top Dataset, monolevel, rct.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, rct.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nrct (Long Term Monthly Mean Temperature Parameter Canopy Conductance at Surface, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_704f_70b1_858c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_704f_70b1_858c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_704f_70b1_858c&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_704f_70b1_858c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e561_e9aa_4447", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e561_e9aa_4447.graph", "", "", "public", "Top Dataset, pressure, air.day.ltm (Daily Long Term NARR) [time][level][y][x], 0001", "Daily Long Term NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nair (Daily Long Term Mean Air Temperature on Pressure Levels, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e561_e9aa_4447/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e561_e9aa_4447.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e561_e9aa_4447&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_e561_e9aa_4447"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c708_1d81_df82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c708_1d81_df82.graph", "", "", "public", "Top Dataset, pressure, air.mon.ltm (Monthly NARR) [time][level][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nair (Monthly Air Temperature on Pressure Levels, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c708_1d81_df82/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c708_1d81_df82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c708_1d81_df82&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_c708_1d81_df82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9015_699e_ba4b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9015_699e_ba4b.graph", "", "", "public", "Top Dataset, monolevel, air.2m.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, air.2m.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nair (Monthly Air Temperature at 2 m, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9015_699e_ba4b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9015_699e_ba4b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9015_699e_ba4b&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_9015_699e_ba4b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d097_1181_d9bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d097_1181_d9bf.graph", "", "", "public", "Top Dataset, monolevel, air.sfc.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, air.sfc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nair (Monthly air temperature at Surface, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d097_1181_d9bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d097_1181_d9bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d097_1181_d9bf&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_d097_1181_d9bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_faec_409c_074d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_faec_409c_074d.graph", "", "", "public", "Top Dataset, monolevel, dpt.2m.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, dpt.2m.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ndpt (Monthly Dew Point Temperature at 2m, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_faec_409c_074d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_faec_409c_074d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_faec_409c_074d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_faec_409c_074d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85e5_762a_e001", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85e5_762a_e001.graph", "", "", "public", "Top Dataset, monolevel, lftx4.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, lftx4.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nlftx4 (Monthly Best (4-layer) Lifted Index, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85e5_762a_e001/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85e5_762a_e001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85e5_762a_e001&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_85e5_762a_e001"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e19_c940_4ed1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e19_c940_4ed1.graph", "", "", "public", "Top Dataset, monolevel, pottmp.hl1.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, pottmp.hl1.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\npottmp (Monthly Potential Temperature, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e19_c940_4ed1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e19_c940_4ed1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e19_c940_4ed1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7e19_c940_4ed1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44f9_d80f_850f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44f9_d80f_850f.graph", "", "", "public", "Top Dataset, monolevel, pottmp.sfc.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, pottmp.sfc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\npottmp (Monthly potential temperature at Surface, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_44f9_d80f_850f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_44f9_d80f_850f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_44f9_d80f_850f&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_44f9_d80f_850f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_288f_8834_e2a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_288f_8834_e2a1.graph", "", "", "public", "Top Dataset, monolevel, rct.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, rct.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nrct (Monthly Temperature Parameter Canopy Conductance at Surface, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_288f_8834_e2a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_288f_8834_e2a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_288f_8834_e2a1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_288f_8834_e2a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff63_c2b5_12e9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff63_c2b5_12e9.graph", "", "", "public", "Top Dataset, pressure, air.mon.mean (NARR Monthly Means) [time][level][y][x], 1979-present", "NARR Monthly Means (Top Dataset, pressure, air.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nair (Monthly Air Temperature on Pressure Levels, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff63_c2b5_12e9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff63_c2b5_12e9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff63_c2b5_12e9&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ff63_c2b5_12e9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfc5_c3f5_62a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfc5_c3f5_62a7.graph", "", "", "public", "Top Dataset, subsurface, tsoil.mon.mean (NARR Monthly Means) [time][level][y][x], 1979-present", "NARR Monthly Means (Top Dataset, subsurface, tsoil.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\ntsoil (Monthly Soil Temperature, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bfc5_c3f5_62a7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bfc5_c3f5_62a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bfc5_c3f5_62a7&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_bfc5_c3f5_62a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2240_3479_8147", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2240_3479_8147.graph", "", "", "public", "Top Dataset, postprocessed, Global SST CESM-LE 40members 1920-2079 3moRunMeans [time][ens], 1918-present", "Top Dataset, postprocessed, Global Sea Surface Temperature (SST) CESM-LE 40members 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens]):\nGlobalSST (Global SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2240_3479_8147/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/Global_SST_CESM-LE_40members_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2240_3479_8147.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2240_3479_8147&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2240_3479_8147"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26b8_6789_b7d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26b8_6789_b7d7.graph", "", "", "public", "Top Dataset, postprocessed, Global SST CESM-LE 40members 1920-2079 3moRunMeans [time], 1918-present", "Top Dataset, postprocessed, Global Sea Surface Temperature (SST) CESM-LE 40members 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_26b8_6789_b7d7/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/Global_SST_CESM-LE_40members_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_26b8_6789_b7d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_26b8_6789_b7d7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_26b8_6789_b7d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8754_851b_0cbc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8754_851b_0cbc.graph", "", "", "public", "Top Dataset, postprocessed, Global SST CESM-LE 40members 1970-2039 3moRunMeans [time][ens], 1968-present", "Top Dataset, postprocessed, Global Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens]):\nGlobalSST (Global SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8754_851b_0cbc/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/Global_SST_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8754_851b_0cbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8754_851b_0cbc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8754_851b_0cbc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aab8_9f2e_e8d6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aab8_9f2e_e8d6.graph", "", "", "public", "Top Dataset, postprocessed, Global SST CESM-LE 40members 1970-2039 3moRunMeans [time], 1968-present", "Top Dataset, postprocessed, Global Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aab8_9f2e_e8d6/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/Global_SST_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aab8_9f2e_e8d6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aab8_9f2e_e8d6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_aab8_9f2e_e8d6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a81c_971f_d3b4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a81c_971f_d3b4.graph", "", "", "public", "Top Dataset, postprocessed, Global SST unweighted CESM-LE 40members 1970-2039 3moRunMeans [time][ens], 1968-present", "Top Dataset, postprocessed, Global Sea Surface Temperature (SST) unweighted CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens]):\nGlobalSST (Global SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a81c_971f_d3b4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/Global_SST_unweighted_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a81c_971f_d3b4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a81c_971f_d3b4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a81c_971f_d3b4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_536b_830d_de8a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_536b_830d_de8a.graph", "", "", "public", "Top Dataset, postprocessed, Global SST unweighted CESM-LE 40members 1970-2039 3moRunMeans [time], 1968-present", "Top Dataset, postprocessed, Global Sea Surface Temperature (SST) unweighted CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_536b_830d_de8a/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/Global_SST_unweighted_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_536b_830d_de8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_536b_830d_de8a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_536b_830d_de8a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0458_771b_978c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0458_771b_978c.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific 3moSSTanomalies CESM-LE 40members 1920-2079 [time][ens][nlat][nlon], 1918-present", "Top Dataset, postprocessed, IndoPacific 3moSSTanomalies CESM-LE 40members 1920-2079\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][nlat][nlon]):\nanomalies (anomalies of SST 3-month running mean)\nanoms_smooth (smoothed anomalies of SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0458_771b_978c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_3moSSTanomalies_CESM-LE_40members_1920-2079.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0458_771b_978c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0458_771b_978c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0458_771b_978c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8faa_fefa_a174", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8faa_fefa_a174.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2039 12moRunMeans [nlat][nlon]", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nlat][nlon]):\ntlat (array of t-grid latitudes, degrees_north)\ntlon (array of t-grid longitudes, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8faa_fefa_a174/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8faa_fefa_a174.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8faa_fefa_a174&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8faa_fefa_a174"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ed1_b386_9438", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ed1_b386_9438.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2039 12moRunMeans [time][ens][nlat][nlon], 1918-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][nlat][nlon]):\nSST (SST 12-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ed1_b386_9438/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ed1_b386_9438.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ed1_b386_9438&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6ed1_b386_9438"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a05_fa35_66bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a05_fa35_66bb.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2039 12moRunMeans [time], 1918-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a05_fa35_66bb/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a05_fa35_66bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a05_fa35_66bb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6a05_fa35_66bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15bf_53e1_d1b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15bf_53e1_d1b1.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2039 3moRunMeans [nlat][nlon]", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nlat][nlon]):\ntlat (array of t-grid latitudes, degrees_north)\ntlon (array of t-grid longitudes, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_15bf_53e1_d1b1/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_15bf_53e1_d1b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_15bf_53e1_d1b1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_15bf_53e1_d1b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a014_0ea7_670f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a014_0ea7_670f.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2039 3moRunMeans [time][ens][nlat][nlon], 1918-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][nlat][nlon]):\nSST (SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a014_0ea7_670f/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a014_0ea7_670f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a014_0ea7_670f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a014_0ea7_670f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d20c_b1d5_0cf4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d20c_b1d5_0cf4.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2039 3moRunMeans [time], 1918-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d20c_b1d5_0cf4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d20c_b1d5_0cf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d20c_b1d5_0cf4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d20c_b1d5_0cf4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a038_f634_3ea9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a038_f634_3ea9.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2079 3moRunMeans [nlat][nlon]", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nlat][nlon]):\ntlat (array of t-grid latitudes, degrees_north)\ntlon (array of t-grid longitudes, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a038_f634_3ea9/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a038_f634_3ea9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a038_f634_3ea9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a038_f634_3ea9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b500_ec93_86bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b500_ec93_86bc.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2079 3moRunMeans [time][ens][nlat][nlon], 1918-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][nlat][nlon]):\nSST (SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b500_ec93_86bc/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b500_ec93_86bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b500_ec93_86bc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b500_ec93_86bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63dd_d480_d707", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63dd_d480_d707.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2079 3moRunMeans [time], 1918-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_63dd_d480_d707/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_63dd_d480_d707.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_63dd_d480_d707&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_63dd_d480_d707"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3642_2f29_9a2c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3642_2f29_9a2c.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1970-2039 12moRunMeans [nlat][nlon]", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nlat][nlon]):\ntlat (array of t-grid latitudes, degrees_north)\ntlon (array of t-grid longitudes, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3642_2f29_9a2c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1970-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3642_2f29_9a2c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3642_2f29_9a2c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3642_2f29_9a2c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc26_d71f_c89a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc26_d71f_c89a.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1970-2039 12moRunMeans [time], 1968-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bc26_d71f_c89a/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1970-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bc26_d71f_c89a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bc26_d71f_c89a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bc26_d71f_c89a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a293_d3ea_81e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a293_d3ea_81e8.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1970-2039 3moRunMeans [nlat][nlon]", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nlat][nlon]):\ntlat (array of t-grid latitudes, degrees_north)\ntlon (array of t-grid longitudes, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a293_d3ea_81e8/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a293_d3ea_81e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a293_d3ea_81e8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a293_d3ea_81e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a6ed_991c_493c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a6ed_991c_493c.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1970-2039 3moRunMeans [time][ens][nlat][nlon], 1968-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][nlat][nlon]):\nSST (SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a6ed_991c_493c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a6ed_991c_493c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a6ed_991c_493c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a6ed_991c_493c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b18_d378_ccea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b18_d378_ccea.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1970-2039 3moRunMeans [time], 1968-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b18_d378_ccea/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b18_d378_ccea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b18_d378_ccea&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7b18_d378_ccea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5bd_04e7_a5d8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5bd_04e7_a5d8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5bd_04e7_a5d8/request", "", "public", "Top Dataset, B1850, SST CESM1-CAM5 B1850 1920-2079 3moRunMeans [time][lat][lon], 2.0\u00b0", "Top Dataset, B1850, Sea Surface Temperature (SST) CESM1-CAM5 B1850 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST (Surface temperature (radiative), K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5bd_04e7_a5d8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5bd_04e7_a5d8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5bd_04e7_a5d8/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM1-CAM5/B1850/SST_CESM1-CAM5_B1850_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5bd_04e7_a5d8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5bd_04e7_a5d8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e5bd_04e7_a5d8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6dc8_d21b_70d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6dc8_d21b_70d1.graph", "", "", "public", "Top Dataset, B1850, SST CESM1-CAM5 B1850 1920-2079 3moRunMeans [time]", "Top Dataset, B1850, Sea Surface Temperature (SST) CESM1-CAM5 B1850 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMM))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6dc8_d21b_70d1/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM1-CAM5/B1850/SST_CESM1-CAM5_B1850_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6dc8_d21b_70d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6dc8_d21b_70d1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6dc8_d21b_70d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca18_f565_c07a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca18_f565_c07a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca18_f565_c07a/request", "", "public", "Top Dataset, B2000, SST CESM1-CAM5 B2000 1920-2079 3moRunMeans [time][lat][lon], 2.0\u00b0", "Top Dataset, B2000, Sea Surface Temperature (SST) CESM1-CAM5 B2000 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST (Surface temperature (radiative), K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca18_f565_c07a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca18_f565_c07a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca18_f565_c07a/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM1-CAM5/B2000/SST_CESM1-CAM5_B2000_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca18_f565_c07a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca18_f565_c07a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ca18_f565_c07a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bddc_9f9e_d06d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bddc_9f9e_d06d.graph", "", "", "public", "Top Dataset, B2000, SST CESM1-CAM5 B2000 1920-2079 3moRunMeans [time]", "Top Dataset, B2000, Sea Surface Temperature (SST) CESM1-CAM5 B2000 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMM))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bddc_9f9e_d06d/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM1-CAM5/B2000/SST_CESM1-CAM5_B2000_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bddc_9f9e_d06d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bddc_9f9e_d06d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bddc_9f9e_d06d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f76c_63e7_0d82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f76c_63e7_0d82.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f76c_63e7_0d82/request", "", "public", "Top Dataset, B2000, T2M CESM1-CAM5 B2000 1920-2079 3moRunMeans [time][lat][lon]", "Top Dataset, B2000, T2M CESM1-CAM5 B2000 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nT2M (Reference height temperature, K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f76c_63e7_0d82_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f76c_63e7_0d82_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f76c_63e7_0d82/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM1-CAM5/B2000/T2M_CESM1-CAM5_B2000_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f76c_63e7_0d82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f76c_63e7_0d82&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f76c_63e7_0d82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cf9_e191_8d94", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cf9_e191_8d94.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3cf9_e191_8d94/request", "", "public", "Top Dataset, Livneh, monthly.mean.forcing.195001-201312, 0.5\u00b0", "Top Dataset, Livneh, monthly.mean.forcing.195001-201312\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprec (Precipitation, mm/day)\ntmax (Daily maximum temperature, degree_C)\ntmin (Daily minimum temperature, degree_C)\nwind (mean daily wind speed, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3cf9_e191_8d94_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3cf9_e191_8d94_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3cf9_e191_8d94/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Livneh/monthly.mean.forcing.195001-201312.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3cf9_e191_8d94.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3cf9_e191_8d94&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3cf9_e191_8d94"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c35b_b3ad_abc4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c35b_b3ad_abc4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c35b_b3ad_abc4/request", "", "public", "Princeton University Hydroclimatology Group 61-yr (1948-2008) Palmer Drought Severity Index (PDSI) dataset, 1.0\u00b0", "Forcings are an update to the original version reported in Sheffield et al., J. Climate (2006). Updates include: i) extension to 2008; ii) improved sampling procedure for correction of rain day statistics; iii) use of latest versions of Climatic Research Unit (CRU), SRB and Tropical Rainfall Measuring Mission (TRMM) products; iv) improved consistency between specific and relative humidity and air temperature; v) correction of relative humidity trends. See Sheffield et al., J. Climate (2006) for details of the observations used and the bias correction and downscaling methodology.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][z][latitude][longitude]):\npdsi_pm (self-calibrating Palmer Drought Severity Index with Thornthwaite PE)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c35b_b3ad_abc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c35b_b3ad_abc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c35b_b3ad_abc4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Sheffield/pdsi_pm_prec_cpcV1.0_rnet_pgf_sc_monthly_1948-2008.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c35b_b3ad_abc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c35b_b3ad_abc4&showErrors=false&email=", "Princeton University", "noaa_esrl_c35b_b3ad_abc4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28a5_c3e8_117d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28a5_c3e8_117d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28a5_c3e8_117d/request", "", "public", "Princeton University Hydroclimatology Group 61-yr (1948-2008) Palmer Drought Severity Index (PDSI) dataset, 1.0\u00b0", "Forcings are an update to the original version reported in Sheffield et al., J. Climate (2006). Updates include: i) extension to 2008; ii) improved sampling procedure for correction of rain day statistics; iii) use of latest versions of Climatic Research Unit (CRU), SRB and Tropical Rainfall Measuring Mission (TRMM) products; iv) improved consistency between specific and relative humidity and air temperature; v) correction of relative humidity trends. See Sheffield et al., J. Climate (2006) for details of the observations used and the bias correction and downscaling methodology.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][z][latitude][longitude]):\npdsi_pm (self-calibrating Palmer Drought Severity Index with Penman-Monteith PE)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28a5_c3e8_117d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28a5_c3e8_117d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28a5_c3e8_117d/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Sheffield/pdsi_pm_prec_cruV3.10_rnet_pgf_sc_monthly_1948-2008.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28a5_c3e8_117d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28a5_c3e8_117d&showErrors=false&email=", "Princeton University", "noaa_esrl_28a5_c3e8_117d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdc5_3ecb_d06e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdc5_3ecb_d06e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bdc5_3ecb_d06e/request", "", "public", "Princeton University Hydroclimatology Group 61-yr (1948-2012) Palmer Drought Severity Index (PDSI) dataset, 1.0\u00b0", "Forcings are an update to the original version reported in Sheffield et al., J. Climate (2006). Updates include: i) extension to 2012; ii) improved sampling procedure for correction of rain day statistics; iii) use of latest versions of Climatic Research Unit (CRU), SRB and Tropical Rainfall Measuring Mission (TRMM) products; iv) improved consistency between specific and relative humidity and air temperature; v) correction of relative humidity trends. See Sheffield et al., J. Climate (2006) for details of the observations used and the bias correction and downscaling methodology.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][z][latitude][longitude]):\npdsi_pm (self-calibrating Palmer Drought Severity Index with Penman-Monteith PE)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bdc5_3ecb_d06e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bdc5_3ecb_d06e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bdc5_3ecb_d06e/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Sheffield/pdsi_pm_prec_cruV3.21_rnet_pgfV2_sc_monthly_1948-2012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bdc5_3ecb_d06e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bdc5_3ecb_d06e&showErrors=false&email=", "Princeton University", "noaa_esrl_bdc5_3ecb_d06e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c6e_7cb7_4567", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c6e_7cb7_4567.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7c6e_7cb7_4567/request", "", "public", "Princeton University Hydroclimatology Group 61-yr (1948-2008) Palmer Drought Severity Index (PDSI) dataset, 1.0\u00b0", "Forcings are an update to the original version reported in Sheffield et al., J. Climate (2006). Updates include: i) extension to 2008; ii) improved sampling procedure for correction of rain day statistics; iii) use of latest versions of Climatic Research Unit (CRU), SRB and Tropical Rainfall Measuring Mission (TRMM) products; iv) improved consistency between specific and relative humidity and air temperature; v) correction of relative humidity trends. See Sheffield et al., J. Climate (2006) for details of the observations used and the bias correction and downscaling methodology.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][z][latitude][longitude]):\npdsi_pm (self-calibrating Palmer Drought Severity Index with Penman-Monteith PE)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7c6e_7cb7_4567_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7c6e_7cb7_4567_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7c6e_7cb7_4567/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Sheffield/pdsi_pm_prec_gpccV4_rnet_pgf_sc_monthly_1948-2007.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7c6e_7cb7_4567.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7c6e_7cb7_4567&showErrors=false&email=", "Princeton University", "noaa_esrl_7c6e_7cb7_4567"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bafd_3238_fe9c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bafd_3238_fe9c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bafd_3238_fe9c/request", "", "public", "Princeton University Hydroclimatology Group 61-yr (1948-2008) Palmer Drought Severity Index (PDSI) dataset, 1.0\u00b0", "Forcings are an update to the original version reported in Sheffield et al., J. Climate (2006). Updates include: i) extension to 2008; ii) improved sampling procedure for correction of rain day statistics; iii) use of latest versions of Climatic Research Unit (CRU), SRB and Tropical Rainfall Measuring Mission (TRMM) products; iv) improved consistency between specific and relative humidity and air temperature; v) correction of relative humidity trends. See Sheffield et al., J. Climate (2006) for details of the observations used and the bias correction and downscaling methodology.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][z][latitude][longitude]):\npdsi_pm (self-calibrating Palmer Drought Severity Index with Penman-Monteith PE)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bafd_3238_fe9c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bafd_3238_fe9c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bafd_3238_fe9c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Sheffield/pdsi_pm_prec_willmottV2.01_rnet_pgf_sc_monthly_1948-2008.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bafd_3238_fe9c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bafd_3238_fe9c&showErrors=false&email=", "Princeton University", "noaa_esrl_bafd_3238_fe9c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e791_ed5e_389c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e791_ed5e_389c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e791_ed5e_389c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e791_ed5e_389c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e791_ed5e_389c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e791_ed5e_389c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e791_ed5e_389c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e791_ed5e_389c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e791_ed5e_389c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e2c_4ff1_850d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e2c_4ff1_850d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e2c_4ff1_850d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e2c_4ff1_850d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e2c_4ff1_850d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e2c_4ff1_850d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e2c_4ff1_850d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e2c_4ff1_850d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8e2c_4ff1_850d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5c6_c0ec_632d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5c6_c0ec_632d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5c6_c0ec_632d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5c6_c0ec_632d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5c6_c0ec_632d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5c6_c0ec_632d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5c6_c0ec_632d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5c6_c0ec_632d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c5c6_c0ec_632d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_804f_8a2e_d99c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_804f_8a2e_d99c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_804f_8a2e_d99c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_804f_8a2e_d99c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_804f_8a2e_d99c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_804f_8a2e_d99c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_804f_8a2e_d99c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_804f_8a2e_d99c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_804f_8a2e_d99c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c153_e09d_b35f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c153_e09d_b35f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c153_e09d_b35f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c153_e09d_b35f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c153_e09d_b35f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c153_e09d_b35f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c153_e09d_b35f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c153_e09d_b35f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c153_e09d_b35f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb1e_53c6_585d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb1e_53c6_585d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bb1e_53c6_585d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bb1e_53c6_585d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bb1e_53c6_585d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bb1e_53c6_585d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bb1e_53c6_585d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bb1e_53c6_585d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bb1e_53c6_585d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7082_f00a_48ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7082_f00a_48ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7082_f00a_48ce/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7082_f00a_48ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7082_f00a_48ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7082_f00a_48ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7082_f00a_48ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7082_f00a_48ce&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7082_f00a_48ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fede_5d4d_15cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fede_5d4d_15cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fede_5d4d_15cd/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fede_5d4d_15cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fede_5d4d_15cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fede_5d4d_15cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fede_5d4d_15cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fede_5d4d_15cd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fede_5d4d_15cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9290_308f_ffd2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9290_308f_ffd2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9290_308f_ffd2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9290_308f_ffd2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9290_308f_ffd2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9290_308f_ffd2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9290_308f_ffd2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9290_308f_ffd2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9290_308f_ffd2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c32_37d4_26e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c32_37d4_26e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c32_37d4_26e3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c32_37d4_26e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c32_37d4_26e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c32_37d4_26e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c32_37d4_26e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c32_37d4_26e3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9c32_37d4_26e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c7c_de05_d943", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c7c_de05_d943.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4c7c_de05_d943/request", "", "public", "Top Dataset, enh, qsminq.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4c7c_de05_d943_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4c7c_de05_d943_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c7c_de05_d943/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c7c_de05_d943.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c7c_de05_d943&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4c7c_de05_d943"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c521_2719_4163", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c521_2719_4163.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c521_2719_4163/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c521_2719_4163_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c521_2719_4163_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c521_2719_4163/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c521_2719_4163.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c521_2719_4163&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c521_2719_4163"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d59_ff11_b119", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d59_ff11_b119.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d59_ff11_b119/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d59_ff11_b119_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d59_ff11_b119_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d59_ff11_b119/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d59_ff11_b119.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d59_ff11_b119&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6d59_ff11_b119"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2747_4e77_1565", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2747_4e77_1565.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2747_4e77_1565/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2747_4e77_1565_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2747_4e77_1565_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2747_4e77_1565/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2747_4e77_1565.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2747_4e77_1565&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2747_4e77_1565"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e16_8794_cf07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e16_8794_cf07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7e16_8794_cf07/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7e16_8794_cf07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7e16_8794_cf07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e16_8794_cf07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e16_8794_cf07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e16_8794_cf07&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7e16_8794_cf07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c575_5d7d_8b76", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c575_5d7d_8b76.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c575_5d7d_8b76/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c575_5d7d_8b76_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c575_5d7d_8b76_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c575_5d7d_8b76/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c575_5d7d_8b76.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c575_5d7d_8b76&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c575_5d7d_8b76"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bedf_2705_0cb1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bedf_2705_0cb1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bedf_2705_0cb1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bedf_2705_0cb1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bedf_2705_0cb1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bedf_2705_0cb1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bedf_2705_0cb1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bedf_2705_0cb1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bedf_2705_0cb1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5e1_f236_7286", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5e1_f236_7286.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5e1_f236_7286/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5e1_f236_7286_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5e1_f236_7286_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5e1_f236_7286/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5e1_f236_7286.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5e1_f236_7286&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b5e1_f236_7286"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_caea_0a7d_579c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_caea_0a7d_579c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_caea_0a7d_579c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_caea_0a7d_579c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_caea_0a7d_579c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_caea_0a7d_579c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_caea_0a7d_579c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_caea_0a7d_579c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_caea_0a7d_579c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_087c_59c3_75bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_087c_59c3_75bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_087c_59c3_75bd/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_087c_59c3_75bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_087c_59c3_75bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_087c_59c3_75bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_087c_59c3_75bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_087c_59c3_75bd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_087c_59c3_75bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9304_d962_7f0d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9304_d962_7f0d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9304_d962_7f0d/request", "", "public", "Top Dataset, enh, smina.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9304_d962_7f0d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9304_d962_7f0d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9304_d962_7f0d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9304_d962_7f0d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9304_d962_7f0d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9304_d962_7f0d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5db_439c_06cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5db_439c_06cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f5db_439c_06cf/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f5db_439c_06cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f5db_439c_06cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f5db_439c_06cf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f5db_439c_06cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f5db_439c_06cf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f5db_439c_06cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91a7_b6d7_c94b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91a7_b6d7_c94b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_91a7_b6d7_c94b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_91a7_b6d7_c94b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_91a7_b6d7_c94b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_91a7_b6d7_c94b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_91a7_b6d7_c94b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_91a7_b6d7_c94b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_91a7_b6d7_c94b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9b5_ee95_c510", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9b5_ee95_c510.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b9b5_ee95_c510/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b9b5_ee95_c510_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b9b5_ee95_c510_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b9b5_ee95_c510/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b9b5_ee95_c510.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b9b5_ee95_c510&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b9b5_ee95_c510"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b26_3ce5_5378", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b26_3ce5_5378.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b26_3ce5_5378/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b26_3ce5_5378_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b26_3ce5_5378_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b26_3ce5_5378/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b26_3ce5_5378.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b26_3ce5_5378&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6b26_3ce5_5378"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4fb_80f5_0c3c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4fb_80f5_0c3c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d4fb_80f5_0c3c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d4fb_80f5_0c3c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d4fb_80f5_0c3c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d4fb_80f5_0c3c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d4fb_80f5_0c3c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d4fb_80f5_0c3c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d4fb_80f5_0c3c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f96_f9f9_9055", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f96_f9f9_9055.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f96_f9f9_9055/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f96_f9f9_9055_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f96_f9f9_9055_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f96_f9f9_9055/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f96_f9f9_9055.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f96_f9f9_9055&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0f96_f9f9_9055"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8079_b74f_aabe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8079_b74f_aabe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8079_b74f_aabe/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8079_b74f_aabe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8079_b74f_aabe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8079_b74f_aabe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8079_b74f_aabe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8079_b74f_aabe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8079_b74f_aabe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48b9_e9df_98eb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48b9_e9df_98eb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_48b9_e9df_98eb/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_48b9_e9df_98eb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_48b9_e9df_98eb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_48b9_e9df_98eb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_48b9_e9df_98eb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_48b9_e9df_98eb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_48b9_e9df_98eb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1aa1_48e1_af58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1aa1_48e1_af58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1aa1_48e1_af58/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1aa1_48e1_af58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1aa1_48e1_af58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1aa1_48e1_af58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1aa1_48e1_af58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1aa1_48e1_af58&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1aa1_48e1_af58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed0c_513c_dc53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed0c_513c_dc53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ed0c_513c_dc53/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ed0c_513c_dc53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ed0c_513c_dc53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ed0c_513c_dc53/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ed0c_513c_dc53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ed0c_513c_dc53&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ed0c_513c_dc53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_588b_c283_d8cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_588b_c283_d8cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_588b_c283_d8cb/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_588b_c283_d8cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_588b_c283_d8cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_588b_c283_d8cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_588b_c283_d8cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_588b_c283_d8cb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_588b_c283_d8cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3401_177c_65b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3401_177c_65b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3401_177c_65b8/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3401_177c_65b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3401_177c_65b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3401_177c_65b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3401_177c_65b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3401_177c_65b8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3401_177c_65b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e178_dce8_9000", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e178_dce8_9000.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e178_dce8_9000/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e178_dce8_9000_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e178_dce8_9000_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e178_dce8_9000/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e178_dce8_9000.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e178_dce8_9000&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e178_dce8_9000"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ed8_a1f2_394b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ed8_a1f2_394b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ed8_a1f2_394b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ed8_a1f2_394b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ed8_a1f2_394b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ed8_a1f2_394b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ed8_a1f2_394b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ed8_a1f2_394b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8ed8_a1f2_394b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aac4_18a1_3e22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aac4_18a1_3e22.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aac4_18a1_3e22/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aac4_18a1_3e22_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aac4_18a1_3e22_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aac4_18a1_3e22/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aac4_18a1_3e22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aac4_18a1_3e22&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aac4_18a1_3e22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5445_3d29_11f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5445_3d29_11f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5445_3d29_11f3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5445_3d29_11f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5445_3d29_11f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5445_3d29_11f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5445_3d29_11f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5445_3d29_11f3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5445_3d29_11f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3174_3b59_db07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3174_3b59_db07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3174_3b59_db07/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3174_3b59_db07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3174_3b59_db07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3174_3b59_db07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3174_3b59_db07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3174_3b59_db07&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3174_3b59_db07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6977_71a2_7e83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6977_71a2_7e83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6977_71a2_7e83/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6977_71a2_7e83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6977_71a2_7e83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6977_71a2_7e83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6977_71a2_7e83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6977_71a2_7e83&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6977_71a2_7e83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03b5_5794_37e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03b5_5794_37e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03b5_5794_37e6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03b5_5794_37e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03b5_5794_37e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03b5_5794_37e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03b5_5794_37e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03b5_5794_37e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_03b5_5794_37e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b79b_8963_5952", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b79b_8963_5952.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b79b_8963_5952/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b79b_8963_5952_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b79b_8963_5952_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b79b_8963_5952/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b79b_8963_5952.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b79b_8963_5952&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b79b_8963_5952"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd7e_c727_7008", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd7e_c727_7008.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fd7e_c727_7008/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fd7e_c727_7008_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fd7e_c727_7008_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fd7e_c727_7008/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fd7e_c727_7008.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fd7e_c727_7008&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fd7e_c727_7008"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fa9_1bb7_f667", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fa9_1bb7_f667.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7fa9_1bb7_f667/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7fa9_1bb7_f667_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7fa9_1bb7_f667_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7fa9_1bb7_f667/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7fa9_1bb7_f667.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7fa9_1bb7_f667&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7fa9_1bb7_f667"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a474_ed6c_d4bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a474_ed6c_d4bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a474_ed6c_d4bd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a474_ed6c_d4bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a474_ed6c_d4bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a474_ed6c_d4bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a474_ed6c_d4bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a474_ed6c_d4bd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a474_ed6c_d4bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8cb_e756_7816", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8cb_e756_7816.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f8cb_e756_7816/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f8cb_e756_7816_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f8cb_e756_7816_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f8cb_e756_7816/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f8cb_e756_7816.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f8cb_e756_7816&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f8cb_e756_7816"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f7b_96b0_a1fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f7b_96b0_a1fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f7b_96b0_a1fa/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f7b_96b0_a1fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f7b_96b0_a1fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f7b_96b0_a1fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f7b_96b0_a1fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f7b_96b0_a1fa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9f7b_96b0_a1fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c29_2a03_28a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c29_2a03_28a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c29_2a03_28a2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c29_2a03_28a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c29_2a03_28a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c29_2a03_28a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c29_2a03_28a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c29_2a03_28a2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9c29_2a03_28a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2237_a84f_012e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2237_a84f_012e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2237_a84f_012e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2237_a84f_012e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2237_a84f_012e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2237_a84f_012e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2237_a84f_012e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2237_a84f_012e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2237_a84f_012e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f28f_970a_4c41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f28f_970a_4c41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f28f_970a_4c41/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f28f_970a_4c41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f28f_970a_4c41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f28f_970a_4c41/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f28f_970a_4c41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f28f_970a_4c41&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f28f_970a_4c41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efb7_1da4_d99f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efb7_1da4_d99f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_efb7_1da4_d99f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_efb7_1da4_d99f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_efb7_1da4_d99f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_efb7_1da4_d99f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_efb7_1da4_d99f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_efb7_1da4_d99f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_efb7_1da4_d99f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a07_33c1_bf73", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a07_33c1_bf73.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1a07_33c1_bf73/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1a07_33c1_bf73_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1a07_33c1_bf73_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1a07_33c1_bf73/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1a07_33c1_bf73.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1a07_33c1_bf73&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1a07_33c1_bf73"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f204_e8f5_949c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f204_e8f5_949c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f204_e8f5_949c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f204_e8f5_949c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f204_e8f5_949c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f204_e8f5_949c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f204_e8f5_949c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f204_e8f5_949c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f204_e8f5_949c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a06f_9578_7ff9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a06f_9578_7ff9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a06f_9578_7ff9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a06f_9578_7ff9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a06f_9578_7ff9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a06f_9578_7ff9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a06f_9578_7ff9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a06f_9578_7ff9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a06f_9578_7ff9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a96f_46d9_e620", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a96f_46d9_e620.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a96f_46d9_e620/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a96f_46d9_e620_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a96f_46d9_e620_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a96f_46d9_e620/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a96f_46d9_e620.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a96f_46d9_e620&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a96f_46d9_e620"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aecd_6721_a218", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aecd_6721_a218.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aecd_6721_a218/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aecd_6721_a218_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aecd_6721_a218_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aecd_6721_a218/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aecd_6721_a218.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aecd_6721_a218&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aecd_6721_a218"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1049_89c1_4cee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1049_89c1_4cee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1049_89c1_4cee/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1049_89c1_4cee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1049_89c1_4cee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1049_89c1_4cee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1049_89c1_4cee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1049_89c1_4cee&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1049_89c1_4cee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b7b1_fcb6_4ce2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b7b1_fcb6_4ce2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b7b1_fcb6_4ce2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b7b1_fcb6_4ce2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b7b1_fcb6_4ce2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b7b1_fcb6_4ce2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b7b1_fcb6_4ce2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b7b1_fcb6_4ce2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b7b1_fcb6_4ce2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_253d_8fd6_8cf5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_253d_8fd6_8cf5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_253d_8fd6_8cf5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_253d_8fd6_8cf5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_253d_8fd6_8cf5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_253d_8fd6_8cf5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_253d_8fd6_8cf5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_253d_8fd6_8cf5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_253d_8fd6_8cf5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14c1_8726_74f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14c1_8726_74f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_14c1_8726_74f2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_14c1_8726_74f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_14c1_8726_74f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_14c1_8726_74f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_14c1_8726_74f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_14c1_8726_74f2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_14c1_8726_74f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28d9_87be_80b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28d9_87be_80b1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28d9_87be_80b1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28d9_87be_80b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28d9_87be_80b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28d9_87be_80b1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28d9_87be_80b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28d9_87be_80b1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_28d9_87be_80b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_831d_2706_fe83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_831d_2706_fe83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_831d_2706_fe83/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_831d_2706_fe83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_831d_2706_fe83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_831d_2706_fe83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_831d_2706_fe83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_831d_2706_fe83&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_831d_2706_fe83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1142_a84b_74dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1142_a84b_74dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1142_a84b_74dc/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1142_a84b_74dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1142_a84b_74dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1142_a84b_74dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1142_a84b_74dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1142_a84b_74dc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1142_a84b_74dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a30e_af8d_6204", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a30e_af8d_6204.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a30e_af8d_6204/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a30e_af8d_6204_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a30e_af8d_6204_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a30e_af8d_6204/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a30e_af8d_6204.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a30e_af8d_6204&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a30e_af8d_6204"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fd0_6f45_48b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fd0_6f45_48b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1fd0_6f45_48b6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1fd0_6f45_48b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1fd0_6f45_48b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1fd0_6f45_48b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1fd0_6f45_48b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1fd0_6f45_48b6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1fd0_6f45_48b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_014e_dc8b_6ad7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_014e_dc8b_6ad7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_014e_dc8b_6ad7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_014e_dc8b_6ad7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_014e_dc8b_6ad7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_014e_dc8b_6ad7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_014e_dc8b_6ad7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_014e_dc8b_6ad7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_014e_dc8b_6ad7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2337_ccf0_324b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2337_ccf0_324b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2337_ccf0_324b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2337_ccf0_324b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2337_ccf0_324b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2337_ccf0_324b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2337_ccf0_324b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2337_ccf0_324b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2337_ccf0_324b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1693_7933_61ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1693_7933_61ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1693_7933_61ac/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1693_7933_61ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1693_7933_61ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1693_7933_61ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1693_7933_61ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1693_7933_61ac&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1693_7933_61ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea58_2e8b_d661", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea58_2e8b_d661.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ea58_2e8b_d661/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ea58_2e8b_d661_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ea58_2e8b_d661_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ea58_2e8b_d661/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ea58_2e8b_d661.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ea58_2e8b_d661&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ea58_2e8b_d661"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6028_43bb_dd51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6028_43bb_dd51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6028_43bb_dd51/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6028_43bb_dd51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6028_43bb_dd51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6028_43bb_dd51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6028_43bb_dd51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6028_43bb_dd51&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6028_43bb_dd51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b0b2_3d26_9728", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b0b2_3d26_9728.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b0b2_3d26_9728/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b0b2_3d26_9728_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b0b2_3d26_9728_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b0b2_3d26_9728/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b0b2_3d26_9728.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b0b2_3d26_9728&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b0b2_3d26_9728"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a20c_7a00_27fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a20c_7a00_27fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a20c_7a00_27fe/request", "", "public", "Top Dataset, std, qsminq.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a20c_7a00_27fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a20c_7a00_27fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a20c_7a00_27fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a20c_7a00_27fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a20c_7a00_27fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a20c_7a00_27fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19d2_044c_7e93", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19d2_044c_7e93.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_19d2_044c_7e93/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_19d2_044c_7e93_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_19d2_044c_7e93_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_19d2_044c_7e93/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_19d2_044c_7e93.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_19d2_044c_7e93&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_19d2_044c_7e93"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9c5_5f35_d004", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9c5_5f35_d004.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c9c5_5f35_d004/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c9c5_5f35_d004_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c9c5_5f35_d004_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c9c5_5f35_d004/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c9c5_5f35_d004.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c9c5_5f35_d004&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c9c5_5f35_d004"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7227_9e08_e826", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7227_9e08_e826.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7227_9e08_e826/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7227_9e08_e826_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7227_9e08_e826_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7227_9e08_e826/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7227_9e08_e826.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7227_9e08_e826&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7227_9e08_e826"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af9b_7e08_c851", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af9b_7e08_c851.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_af9b_7e08_c851/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_af9b_7e08_c851_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_af9b_7e08_c851_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_af9b_7e08_c851/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_af9b_7e08_c851.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_af9b_7e08_c851&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_af9b_7e08_c851"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95d6_5f5f_06e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95d6_5f5f_06e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_95d6_5f5f_06e0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_95d6_5f5f_06e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_95d6_5f5f_06e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_95d6_5f5f_06e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_95d6_5f5f_06e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_95d6_5f5f_06e0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_95d6_5f5f_06e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_838b_1be3_fde4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_838b_1be3_fde4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_838b_1be3_fde4/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_838b_1be3_fde4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_838b_1be3_fde4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_838b_1be3_fde4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_838b_1be3_fde4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_838b_1be3_fde4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_838b_1be3_fde4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6aa0_03dc_f7d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6aa0_03dc_f7d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6aa0_03dc_f7d4/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6aa0_03dc_f7d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6aa0_03dc_f7d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6aa0_03dc_f7d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6aa0_03dc_f7d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6aa0_03dc_f7d4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6aa0_03dc_f7d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e491_74c7_7e46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e491_74c7_7e46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e491_74c7_7e46/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e491_74c7_7e46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e491_74c7_7e46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e491_74c7_7e46/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e491_74c7_7e46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e491_74c7_7e46&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e491_74c7_7e46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_adb8_e1bb_151e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_adb8_e1bb_151e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_adb8_e1bb_151e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_adb8_e1bb_151e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_adb8_e1bb_151e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_adb8_e1bb_151e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_adb8_e1bb_151e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_adb8_e1bb_151e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_adb8_e1bb_151e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cd3_3208_b177", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cd3_3208_b177.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9cd3_3208_b177/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9cd3_3208_b177_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9cd3_3208_b177_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9cd3_3208_b177/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9cd3_3208_b177.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9cd3_3208_b177&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9cd3_3208_b177"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f98_6889_03c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f98_6889_03c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5f98_6889_03c0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5f98_6889_03c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5f98_6889_03c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5f98_6889_03c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5f98_6889_03c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5f98_6889_03c0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5f98_6889_03c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f65_c029_b91a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f65_c029_b91a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f65_c029_b91a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f65_c029_b91a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f65_c029_b91a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f65_c029_b91a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f65_c029_b91a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f65_c029_b91a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1f65_c029_b91a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f02_3b5c_fdaf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f02_3b5c_fdaf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f02_3b5c_fdaf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f02_3b5c_fdaf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f02_3b5c_fdaf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f02_3b5c_fdaf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f02_3b5c_fdaf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f02_3b5c_fdaf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1f02_3b5c_fdaf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef45_8079_2cec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef45_8079_2cec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ef45_8079_2cec/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ef45_8079_2cec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ef45_8079_2cec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ef45_8079_2cec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ef45_8079_2cec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ef45_8079_2cec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ef45_8079_2cec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70a7_e719_8c88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70a7_e719_8c88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_70a7_e719_8c88/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_70a7_e719_8c88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_70a7_e719_8c88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_70a7_e719_8c88/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_70a7_e719_8c88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_70a7_e719_8c88&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_70a7_e719_8c88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9868_e495_7890", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9868_e495_7890.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9868_e495_7890/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9868_e495_7890_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9868_e495_7890_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9868_e495_7890/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9868_e495_7890.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9868_e495_7890&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9868_e495_7890"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e571_562f_700b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e571_562f_700b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e571_562f_700b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e571_562f_700b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e571_562f_700b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e571_562f_700b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e571_562f_700b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e571_562f_700b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e571_562f_700b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fc3_9298_7109", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fc3_9298_7109.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4fc3_9298_7109/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4fc3_9298_7109_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4fc3_9298_7109_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4fc3_9298_7109/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4fc3_9298_7109.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4fc3_9298_7109&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4fc3_9298_7109"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d703_d93a_bed5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d703_d93a_bed5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d703_d93a_bed5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d703_d93a_bed5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d703_d93a_bed5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d703_d93a_bed5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d703_d93a_bed5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d703_d93a_bed5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d703_d93a_bed5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_760e_f339_53fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_760e_f339_53fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_760e_f339_53fd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_760e_f339_53fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_760e_f339_53fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_760e_f339_53fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_760e_f339_53fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_760e_f339_53fd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_760e_f339_53fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2562_f1b5_6e23", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2562_f1b5_6e23.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2562_f1b5_6e23/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2562_f1b5_6e23_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2562_f1b5_6e23_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2562_f1b5_6e23/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2562_f1b5_6e23.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2562_f1b5_6e23&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2562_f1b5_6e23"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de8d_a199_3122", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de8d_a199_3122.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_de8d_a199_3122/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_de8d_a199_3122_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_de8d_a199_3122_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_de8d_a199_3122/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_de8d_a199_3122.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_de8d_a199_3122&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_de8d_a199_3122"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff25_85f7_4cab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff25_85f7_4cab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff25_85f7_4cab/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff25_85f7_4cab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff25_85f7_4cab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff25_85f7_4cab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff25_85f7_4cab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff25_85f7_4cab&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ff25_85f7_4cab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3580_d177_1f05", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3580_d177_1f05.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3580_d177_1f05/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3580_d177_1f05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3580_d177_1f05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3580_d177_1f05/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3580_d177_1f05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3580_d177_1f05&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3580_d177_1f05"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_767c_33fe_1a83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_767c_33fe_1a83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_767c_33fe_1a83/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_767c_33fe_1a83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_767c_33fe_1a83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_767c_33fe_1a83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_767c_33fe_1a83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_767c_33fe_1a83&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_767c_33fe_1a83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b7b_0bca_5d4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b7b_0bca_5d4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b7b_0bca_5d4d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b7b_0bca_5d4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b7b_0bca_5d4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b7b_0bca_5d4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b7b_0bca_5d4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b7b_0bca_5d4d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7b7b_0bca_5d4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_61f5_7213_d8ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_61f5_7213_d8ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_61f5_7213_d8ac/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_61f5_7213_d8ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_61f5_7213_d8ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_61f5_7213_d8ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_61f5_7213_d8ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_61f5_7213_d8ac&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_61f5_7213_d8ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf99_a802_8a2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf99_a802_8a2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf99_a802_8a2f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf99_a802_8a2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf99_a802_8a2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf99_a802_8a2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf99_a802_8a2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf99_a802_8a2f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cf99_a802_8a2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cbe_f52a_25f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cbe_f52a_25f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2cbe_f52a_25f3/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2cbe_f52a_25f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2cbe_f52a_25f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2cbe_f52a_25f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2cbe_f52a_25f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2cbe_f52a_25f3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2cbe_f52a_25f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a89d_6eef_3057", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a89d_6eef_3057.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a89d_6eef_3057/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a89d_6eef_3057_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a89d_6eef_3057_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a89d_6eef_3057/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a89d_6eef_3057.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a89d_6eef_3057&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a89d_6eef_3057"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d16_d819_edf1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d16_d819_edf1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d16_d819_edf1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d16_d819_edf1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d16_d819_edf1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d16_d819_edf1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d16_d819_edf1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d16_d819_edf1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d16_d819_edf1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f612_ea67_17e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f612_ea67_17e4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f612_ea67_17e4/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f612_ea67_17e4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f612_ea67_17e4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f612_ea67_17e4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f612_ea67_17e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f612_ea67_17e4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f612_ea67_17e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f42_7c0f_639f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f42_7c0f_639f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f42_7c0f_639f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f42_7c0f_639f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f42_7c0f_639f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f42_7c0f_639f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f42_7c0f_639f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f42_7c0f_639f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8f42_7c0f_639f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c01_681b_0deb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c01_681b_0deb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1c01_681b_0deb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1c01_681b_0deb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1c01_681b_0deb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1c01_681b_0deb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1c01_681b_0deb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1c01_681b_0deb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1c01_681b_0deb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_865d_062a_c376", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_865d_062a_c376.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_865d_062a_c376/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_865d_062a_c376_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_865d_062a_c376_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_865d_062a_c376/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_865d_062a_c376.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_865d_062a_c376&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_865d_062a_c376"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06e0_0214_2f2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06e0_0214_2f2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_06e0_0214_2f2a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_06e0_0214_2f2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_06e0_0214_2f2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_06e0_0214_2f2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_06e0_0214_2f2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_06e0_0214_2f2a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_06e0_0214_2f2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b13c_30e6_a0ad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b13c_30e6_a0ad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b13c_30e6_a0ad/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b13c_30e6_a0ad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b13c_30e6_a0ad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b13c_30e6_a0ad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b13c_30e6_a0ad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b13c_30e6_a0ad&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b13c_30e6_a0ad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a630_e574_07e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a630_e574_07e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a630_e574_07e5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a630_e574_07e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a630_e574_07e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a630_e574_07e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a630_e574_07e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a630_e574_07e5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a630_e574_07e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fb6_5d87_3c07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fb6_5d87_3c07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4fb6_5d87_3c07/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4fb6_5d87_3c07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4fb6_5d87_3c07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4fb6_5d87_3c07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4fb6_5d87_3c07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4fb6_5d87_3c07&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4fb6_5d87_3c07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e03c_ecde_6ddf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e03c_ecde_6ddf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e03c_ecde_6ddf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e03c_ecde_6ddf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e03c_ecde_6ddf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e03c_ecde_6ddf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e03c_ecde_6ddf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e03c_ecde_6ddf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e03c_ecde_6ddf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a856_19db_a5d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a856_19db_a5d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a856_19db_a5d5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a856_19db_a5d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a856_19db_a5d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a856_19db_a5d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a856_19db_a5d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a856_19db_a5d5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a856_19db_a5d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c88_4ee5_6f39", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c88_4ee5_6f39.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c88_4ee5_6f39/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c88_4ee5_6f39_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c88_4ee5_6f39_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c88_4ee5_6f39/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c88_4ee5_6f39.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c88_4ee5_6f39&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0c88_4ee5_6f39"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8a1_5719_b476", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8a1_5719_b476.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f8a1_5719_b476/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f8a1_5719_b476_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f8a1_5719_b476_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f8a1_5719_b476/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f8a1_5719_b476.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f8a1_5719_b476&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f8a1_5719_b476"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1d7_6bc1_ced7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1d7_6bc1_ced7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f1d7_6bc1_ced7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f1d7_6bc1_ced7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f1d7_6bc1_ced7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f1d7_6bc1_ced7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f1d7_6bc1_ced7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f1d7_6bc1_ced7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f1d7_6bc1_ced7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53ae_ea38_f082", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53ae_ea38_f082.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_53ae_ea38_f082/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_53ae_ea38_f082_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_53ae_ea38_f082_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_53ae_ea38_f082/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_53ae_ea38_f082.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_53ae_ea38_f082&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_53ae_ea38_f082"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8790_8df1_4d91", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8790_8df1_4d91.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8790_8df1_4d91/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8790_8df1_4d91_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8790_8df1_4d91_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8790_8df1_4d91/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8790_8df1_4d91.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8790_8df1_4d91&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8790_8df1_4d91"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f86_1140_d23f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f86_1140_d23f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6f86_1140_d23f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6f86_1140_d23f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6f86_1140_d23f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6f86_1140_d23f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6f86_1140_d23f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6f86_1140_d23f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6f86_1140_d23f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2124_cef3_09b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2124_cef3_09b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2124_cef3_09b9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2124_cef3_09b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2124_cef3_09b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2124_cef3_09b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2124_cef3_09b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2124_cef3_09b9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2124_cef3_09b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eec7_9f31_21bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eec7_9f31_21bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eec7_9f31_21bb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eec7_9f31_21bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eec7_9f31_21bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eec7_9f31_21bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eec7_9f31_21bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eec7_9f31_21bb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eec7_9f31_21bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4a4_6d3f_9789", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4a4_6d3f_9789.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a4a4_6d3f_9789/request", "", "public", "Top Dataset, std, smina.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a4a4_6d3f_9789_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a4a4_6d3f_9789_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a4a4_6d3f_9789/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a4a4_6d3f_9789.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a4a4_6d3f_9789&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a4a4_6d3f_9789"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fec8_fb76_70f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fec8_fb76_70f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fec8_fb76_70f6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fec8_fb76_70f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fec8_fb76_70f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fec8_fb76_70f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fec8_fb76_70f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fec8_fb76_70f6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fec8_fb76_70f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_606e_525e_bd82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_606e_525e_bd82.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_606e_525e_bd82/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_606e_525e_bd82_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_606e_525e_bd82_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_606e_525e_bd82/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_606e_525e_bd82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_606e_525e_bd82&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_606e_525e_bd82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_719e_77c6_d92d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_719e_77c6_d92d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_719e_77c6_d92d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_719e_77c6_d92d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_719e_77c6_d92d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_719e_77c6_d92d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_719e_77c6_d92d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_719e_77c6_d92d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_719e_77c6_d92d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b470_8154_a7e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b470_8154_a7e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b470_8154_a7e6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b470_8154_a7e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b470_8154_a7e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b470_8154_a7e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b470_8154_a7e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b470_8154_a7e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b470_8154_a7e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfd9_2609_61dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfd9_2609_61dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dfd9_2609_61dd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dfd9_2609_61dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dfd9_2609_61dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dfd9_2609_61dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dfd9_2609_61dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dfd9_2609_61dd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dfd9_2609_61dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ea6_2e04_eb96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ea6_2e04_eb96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ea6_2e04_eb96/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ea6_2e04_eb96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ea6_2e04_eb96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ea6_2e04_eb96/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ea6_2e04_eb96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ea6_2e04_eb96&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8ea6_2e04_eb96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41d0_145f_337e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41d0_145f_337e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_41d0_145f_337e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_41d0_145f_337e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_41d0_145f_337e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_41d0_145f_337e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_41d0_145f_337e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_41d0_145f_337e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_41d0_145f_337e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99c0_b304_46be", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99c0_b304_46be.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99c0_b304_46be/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99c0_b304_46be_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99c0_b304_46be_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99c0_b304_46be/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99c0_b304_46be.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99c0_b304_46be&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_99c0_b304_46be"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f242_afc4_fceb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f242_afc4_fceb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f242_afc4_fceb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f242_afc4_fceb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f242_afc4_fceb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f242_afc4_fceb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f242_afc4_fceb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f242_afc4_fceb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f242_afc4_fceb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fec_e828_a030", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fec_e828_a030.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1fec_e828_a030/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1fec_e828_a030_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1fec_e828_a030_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1fec_e828_a030/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1fec_e828_a030.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1fec_e828_a030&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1fec_e828_a030"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_681f_621c_8fd7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_681f_621c_8fd7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_681f_621c_8fd7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_681f_621c_8fd7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_681f_621c_8fd7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_681f_621c_8fd7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_681f_621c_8fd7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_681f_621c_8fd7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_681f_621c_8fd7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4cf_9abf_b834", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4cf_9abf_b834.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e4cf_9abf_b834/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e4cf_9abf_b834_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e4cf_9abf_b834_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e4cf_9abf_b834/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e4cf_9abf_b834.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e4cf_9abf_b834&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e4cf_9abf_b834"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f913_e9aa_00f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f913_e9aa_00f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f913_e9aa_00f3/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f913_e9aa_00f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f913_e9aa_00f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f913_e9aa_00f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f913_e9aa_00f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f913_e9aa_00f3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f913_e9aa_00f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9c8_dba2_5720", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9c8_dba2_5720.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e9c8_dba2_5720/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e9c8_dba2_5720_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e9c8_dba2_5720_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e9c8_dba2_5720/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e9c8_dba2_5720.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e9c8_dba2_5720&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e9c8_dba2_5720"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_75ce_ca82_4c12", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_75ce_ca82_4c12.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_75ce_ca82_4c12/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_75ce_ca82_4c12_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_75ce_ca82_4c12_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_75ce_ca82_4c12/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_75ce_ca82_4c12.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_75ce_ca82_4c12&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_75ce_ca82_4c12"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d53_feba_5b14", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d53_feba_5b14.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d53_feba_5b14/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d53_feba_5b14_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d53_feba_5b14_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d53_feba_5b14/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d53_feba_5b14.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d53_feba_5b14&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d53_feba_5b14"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb97_1a29_a44c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb97_1a29_a44c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eb97_1a29_a44c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eb97_1a29_a44c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eb97_1a29_a44c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb97_1a29_a44c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb97_1a29_a44c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb97_1a29_a44c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eb97_1a29_a44c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0551_955e_b323", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0551_955e_b323.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0551_955e_b323/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0551_955e_b323_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0551_955e_b323_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0551_955e_b323/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0551_955e_b323.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0551_955e_b323&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0551_955e_b323"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8a0_292d_895f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8a0_292d_895f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d8a0_292d_895f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d8a0_292d_895f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d8a0_292d_895f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d8a0_292d_895f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d8a0_292d_895f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d8a0_292d_895f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d8a0_292d_895f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50e4_1b3d_f6e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50e4_1b3d_f6e4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_50e4_1b3d_f6e4/request", "", "public", "Top Dataset, std, uairt.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_50e4_1b3d_f6e4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_50e4_1b3d_f6e4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50e4_1b3d_f6e4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50e4_1b3d_f6e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50e4_1b3d_f6e4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_50e4_1b3d_f6e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7360_50f3_de7e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7360_50f3_de7e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7360_50f3_de7e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7360_50f3_de7e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7360_50f3_de7e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7360_50f3_de7e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7360_50f3_de7e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7360_50f3_de7e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7360_50f3_de7e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a0f_3077_f256", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a0f_3077_f256.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8a0f_3077_f256/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8a0f_3077_f256_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8a0f_3077_f256_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8a0f_3077_f256/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8a0f_3077_f256.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8a0f_3077_f256&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8a0f_3077_f256"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fc9_d632_7c54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fc9_d632_7c54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2fc9_d632_7c54/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2fc9_d632_7c54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2fc9_d632_7c54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2fc9_d632_7c54/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2fc9_d632_7c54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2fc9_d632_7c54&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2fc9_d632_7c54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e536_80f8_c85e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e536_80f8_c85e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e536_80f8_c85e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e536_80f8_c85e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e536_80f8_c85e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e536_80f8_c85e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e536_80f8_c85e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e536_80f8_c85e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e536_80f8_c85e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5ed_c394_b0bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5ed_c394_b0bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f5ed_c394_b0bf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f5ed_c394_b0bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f5ed_c394_b0bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f5ed_c394_b0bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f5ed_c394_b0bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f5ed_c394_b0bf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f5ed_c394_b0bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93ba_e052_c3c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93ba_e052_c3c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_93ba_e052_c3c1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_93ba_e052_c3c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_93ba_e052_c3c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_93ba_e052_c3c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_93ba_e052_c3c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_93ba_e052_c3c1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_93ba_e052_c3c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff60_15d3_3ec8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff60_15d3_3ec8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff60_15d3_3ec8/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff60_15d3_3ec8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff60_15d3_3ec8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff60_15d3_3ec8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff60_15d3_3ec8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff60_15d3_3ec8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ff60_15d3_3ec8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2861_c0a4_4c5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2861_c0a4_4c5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2861_c0a4_4c5f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2861_c0a4_4c5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2861_c0a4_4c5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2861_c0a4_4c5f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2861_c0a4_4c5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2861_c0a4_4c5f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2861_c0a4_4c5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1d0_c851_6ee7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1d0_c851_6ee7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b1d0_c851_6ee7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b1d0_c851_6ee7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b1d0_c851_6ee7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b1d0_c851_6ee7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b1d0_c851_6ee7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b1d0_c851_6ee7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b1d0_c851_6ee7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc9c_18b2_a11a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc9c_18b2_a11a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc9c_18b2_a11a/request", "", "public", "Top Dataset, std, ulflx.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc9c_18b2_a11a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc9c_18b2_a11a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc9c_18b2_a11a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc9c_18b2_a11a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc9c_18b2_a11a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cc9c_18b2_a11a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ba8_8961_9aed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ba8_8961_9aed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ba8_8961_9aed/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ba8_8961_9aed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ba8_8961_9aed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ba8_8961_9aed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ba8_8961_9aed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ba8_8961_9aed&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7ba8_8961_9aed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ead3_529a_24ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ead3_529a_24ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ead3_529a_24ae/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ead3_529a_24ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ead3_529a_24ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ead3_529a_24ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ead3_529a_24ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ead3_529a_24ae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ead3_529a_24ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81e1_87dc_b3ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81e1_87dc_b3ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_81e1_87dc_b3ec/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_81e1_87dc_b3ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_81e1_87dc_b3ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_81e1_87dc_b3ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_81e1_87dc_b3ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_81e1_87dc_b3ec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_81e1_87dc_b3ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b1e_93c2_d757", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b1e_93c2_d757.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4b1e_93c2_d757/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4b1e_93c2_d757_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4b1e_93c2_d757_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4b1e_93c2_d757/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4b1e_93c2_d757.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4b1e_93c2_d757&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4b1e_93c2_d757"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4720_3f35_735b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4720_3f35_735b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4720_3f35_735b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4720_3f35_735b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4720_3f35_735b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4720_3f35_735b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4720_3f35_735b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4720_3f35_735b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4720_3f35_735b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83ac_e387_c8bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83ac_e387_c8bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_83ac_e387_c8bf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_83ac_e387_c8bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_83ac_e387_c8bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_83ac_e387_c8bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_83ac_e387_c8bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_83ac_e387_c8bf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_83ac_e387_c8bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f909_1a28_90bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f909_1a28_90bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f909_1a28_90bf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f909_1a28_90bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f909_1a28_90bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f909_1a28_90bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f909_1a28_90bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f909_1a28_90bf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f909_1a28_90bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3127_ba27_8daf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3127_ba27_8daf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3127_ba27_8daf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3127_ba27_8daf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3127_ba27_8daf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3127_ba27_8daf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3127_ba27_8daf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3127_ba27_8daf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3127_ba27_8daf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f70_b3f9_1da7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f70_b3f9_1da7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f70_b3f9_1da7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f70_b3f9_1da7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f70_b3f9_1da7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f70_b3f9_1da7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f70_b3f9_1da7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f70_b3f9_1da7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8f70_b3f9_1da7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14d9_6450_0a1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14d9_6450_0a1e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_14d9_6450_0a1e/request", "", "public", "Top Dataset, std, upstr.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_14d9_6450_0a1e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_14d9_6450_0a1e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_14d9_6450_0a1e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_14d9_6450_0a1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_14d9_6450_0a1e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_14d9_6450_0a1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bcc_7ee6_c71e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bcc_7ee6_c71e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9bcc_7ee6_c71e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9bcc_7ee6_c71e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9bcc_7ee6_c71e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9bcc_7ee6_c71e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9bcc_7ee6_c71e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9bcc_7ee6_c71e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9bcc_7ee6_c71e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_759f_a4e7_2ab9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_759f_a4e7_2ab9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_759f_a4e7_2ab9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_759f_a4e7_2ab9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_759f_a4e7_2ab9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_759f_a4e7_2ab9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_759f_a4e7_2ab9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_759f_a4e7_2ab9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_759f_a4e7_2ab9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3d7_bd9c_99cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3d7_bd9c_99cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f3d7_bd9c_99cf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f3d7_bd9c_99cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f3d7_bd9c_99cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f3d7_bd9c_99cf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f3d7_bd9c_99cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f3d7_bd9c_99cf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f3d7_bd9c_99cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b45_4075_bf5d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b45_4075_bf5d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9b45_4075_bf5d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9b45_4075_bf5d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9b45_4075_bf5d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9b45_4075_bf5d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9b45_4075_bf5d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9b45_4075_bf5d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9b45_4075_bf5d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_396e_fb9c_b5df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_396e_fb9c_b5df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_396e_fb9c_b5df/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_396e_fb9c_b5df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_396e_fb9c_b5df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_396e_fb9c_b5df/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_396e_fb9c_b5df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_396e_fb9c_b5df&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_396e_fb9c_b5df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01db_e260_cc77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01db_e260_cc77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_01db_e260_cc77/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_01db_e260_cc77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_01db_e260_cc77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_01db_e260_cc77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_01db_e260_cc77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_01db_e260_cc77&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_01db_e260_cc77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e19_97fc_89a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e19_97fc_89a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1e19_97fc_89a2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1e19_97fc_89a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1e19_97fc_89a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1e19_97fc_89a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1e19_97fc_89a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1e19_97fc_89a2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1e19_97fc_89a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85cd_8259_1279", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85cd_8259_1279.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_85cd_8259_1279/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_85cd_8259_1279_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_85cd_8259_1279_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85cd_8259_1279/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85cd_8259_1279.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85cd_8259_1279&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_85cd_8259_1279"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dccc_0bea_7258", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dccc_0bea_7258.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dccc_0bea_7258/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dccc_0bea_7258_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dccc_0bea_7258_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dccc_0bea_7258/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dccc_0bea_7258.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dccc_0bea_7258&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dccc_0bea_7258"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc04_2b3d_92e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc04_2b3d_92e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc04_2b3d_92e1/request", "", "public", "Top Dataset, std, uspeh.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc04_2b3d_92e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc04_2b3d_92e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc04_2b3d_92e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc04_2b3d_92e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc04_2b3d_92e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dc04_2b3d_92e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd05_b4e9_7702", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd05_b4e9_7702.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dd05_b4e9_7702/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dd05_b4e9_7702_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dd05_b4e9_7702_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dd05_b4e9_7702/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dd05_b4e9_7702.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dd05_b4e9_7702&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dd05_b4e9_7702"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e566_b310_9dab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e566_b310_9dab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e566_b310_9dab/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e566_b310_9dab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e566_b310_9dab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e566_b310_9dab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e566_b310_9dab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e566_b310_9dab&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e566_b310_9dab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cd8_f6f1_acb1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cd8_f6f1_acb1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9cd8_f6f1_acb1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9cd8_f6f1_acb1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9cd8_f6f1_acb1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9cd8_f6f1_acb1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9cd8_f6f1_acb1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9cd8_f6f1_acb1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9cd8_f6f1_acb1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34ad_b531_7b53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34ad_b531_7b53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_34ad_b531_7b53/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_34ad_b531_7b53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_34ad_b531_7b53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_34ad_b531_7b53/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_34ad_b531_7b53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_34ad_b531_7b53&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_34ad_b531_7b53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff2d_08d3_6a3c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff2d_08d3_6a3c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff2d_08d3_6a3c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff2d_08d3_6a3c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff2d_08d3_6a3c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff2d_08d3_6a3c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff2d_08d3_6a3c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff2d_08d3_6a3c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ff2d_08d3_6a3c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_847a_486c_d7e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_847a_486c_d7e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_847a_486c_d7e6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_847a_486c_d7e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_847a_486c_d7e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_847a_486c_d7e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_847a_486c_d7e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_847a_486c_d7e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_847a_486c_d7e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7b3_db62_c8a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7b3_db62_c8a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c7b3_db62_c8a0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c7b3_db62_c8a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c7b3_db62_c8a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c7b3_db62_c8a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c7b3_db62_c8a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c7b3_db62_c8a0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c7b3_db62_c8a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08d9_0719_05dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08d9_0719_05dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_08d9_0719_05dc/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_08d9_0719_05dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_08d9_0719_05dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_08d9_0719_05dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_08d9_0719_05dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_08d9_0719_05dc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_08d9_0719_05dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45c7_076f_c5af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45c7_076f_c5af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_45c7_076f_c5af/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_45c7_076f_c5af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_45c7_076f_c5af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_45c7_076f_c5af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_45c7_076f_c5af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_45c7_076f_c5af&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_45c7_076f_c5af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86d2_179a_a519", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86d2_179a_a519.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_86d2_179a_a519/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86d2_179a_a519_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86d2_179a_a519_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86d2_179a_a519/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86d2_179a_a519.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86d2_179a_a519&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_86d2_179a_a519"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1902_d36c_6ea2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1902_d36c_6ea2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1902_d36c_6ea2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1902_d36c_6ea2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1902_d36c_6ea2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1902_d36c_6ea2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1902_d36c_6ea2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1902_d36c_6ea2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1902_d36c_6ea2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_195e_e8da_3a6c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_195e_e8da_3a6c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_195e_e8da_3a6c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_195e_e8da_3a6c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_195e_e8da_3a6c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_195e_e8da_3a6c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_195e_e8da_3a6c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_195e_e8da_3a6c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_195e_e8da_3a6c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4966_e263_e189", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4966_e263_e189.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4966_e263_e189/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4966_e263_e189_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4966_e263_e189_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4966_e263_e189/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4966_e263_e189.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4966_e263_e189&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4966_e263_e189"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a904_b238_5528", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a904_b238_5528.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a904_b238_5528/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a904_b238_5528_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a904_b238_5528_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a904_b238_5528/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a904_b238_5528.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a904_b238_5528&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a904_b238_5528"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d06_8c82_17e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d06_8c82_17e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d06_8c82_17e6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d06_8c82_17e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d06_8c82_17e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d06_8c82_17e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d06_8c82_17e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d06_8c82_17e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4d06_8c82_17e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa48_288e_2413", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa48_288e_2413.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa48_288e_2413/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa48_288e_2413_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa48_288e_2413_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa48_288e_2413/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa48_288e_2413.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa48_288e_2413&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aa48_288e_2413"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_928e_5298_5726", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_928e_5298_5726.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_928e_5298_5726/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_928e_5298_5726_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_928e_5298_5726_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_928e_5298_5726/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_928e_5298_5726.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_928e_5298_5726&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_928e_5298_5726"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89ad_de37_46cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89ad_de37_46cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_89ad_de37_46cb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_89ad_de37_46cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_89ad_de37_46cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_89ad_de37_46cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_89ad_de37_46cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_89ad_de37_46cb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_89ad_de37_46cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c3b_04ba_8d84", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c3b_04ba_8d84.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c3b_04ba_8d84/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c3b_04ba_8d84_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c3b_04ba_8d84_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c3b_04ba_8d84/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c3b_04ba_8d84.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c3b_04ba_8d84&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5c3b_04ba_8d84"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c50_c799_3276", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c50_c799_3276.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3c50_c799_3276/request", "", "public", "Top Dataset, std, vairt.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3c50_c799_3276_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3c50_c799_3276_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c50_c799_3276/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c50_c799_3276.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c50_c799_3276&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3c50_c799_3276"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2103_cf90_c2aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2103_cf90_c2aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2103_cf90_c2aa/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2103_cf90_c2aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2103_cf90_c2aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2103_cf90_c2aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2103_cf90_c2aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2103_cf90_c2aa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2103_cf90_c2aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cc4_1a23_8c11", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cc4_1a23_8c11.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1cc4_1a23_8c11/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1cc4_1a23_8c11_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1cc4_1a23_8c11_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1cc4_1a23_8c11/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1cc4_1a23_8c11.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1cc4_1a23_8c11&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1cc4_1a23_8c11"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_011d_10c8_7876", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_011d_10c8_7876.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_011d_10c8_7876/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_011d_10c8_7876_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_011d_10c8_7876_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_011d_10c8_7876/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_011d_10c8_7876.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_011d_10c8_7876&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_011d_10c8_7876"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06dd_dc9e_f718", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06dd_dc9e_f718.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_06dd_dc9e_f718/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_06dd_dc9e_f718_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_06dd_dc9e_f718_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_06dd_dc9e_f718/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_06dd_dc9e_f718.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_06dd_dc9e_f718&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_06dd_dc9e_f718"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91ac_208c_ab0a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91ac_208c_ab0a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_91ac_208c_ab0a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_91ac_208c_ab0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_91ac_208c_ab0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_91ac_208c_ab0a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_91ac_208c_ab0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_91ac_208c_ab0a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_91ac_208c_ab0a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb94_a641_8cf0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb94_a641_8cf0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb94_a641_8cf0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb94_a641_8cf0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb94_a641_8cf0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb94_a641_8cf0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb94_a641_8cf0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb94_a641_8cf0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cb94_a641_8cf0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8c0_f25e_accd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8c0_f25e_accd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f8c0_f25e_accd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f8c0_f25e_accd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f8c0_f25e_accd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f8c0_f25e_accd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f8c0_f25e_accd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f8c0_f25e_accd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f8c0_f25e_accd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f33_7dcd_5094", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f33_7dcd_5094.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f33_7dcd_5094/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f33_7dcd_5094_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f33_7dcd_5094_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f33_7dcd_5094/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f33_7dcd_5094.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f33_7dcd_5094&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9f33_7dcd_5094"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a07e_88e6_9df5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a07e_88e6_9df5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a07e_88e6_9df5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a07e_88e6_9df5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a07e_88e6_9df5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a07e_88e6_9df5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a07e_88e6_9df5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a07e_88e6_9df5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a07e_88e6_9df5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ad3_5ba0_4850", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ad3_5ba0_4850.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2ad3_5ba0_4850/request", "", "public", "Top Dataset, std, vlflx.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2ad3_5ba0_4850_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2ad3_5ba0_4850_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2ad3_5ba0_4850/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2ad3_5ba0_4850.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2ad3_5ba0_4850&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2ad3_5ba0_4850"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8f3_ed86_78f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8f3_ed86_78f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d8f3_ed86_78f2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d8f3_ed86_78f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d8f3_ed86_78f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d8f3_ed86_78f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d8f3_ed86_78f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d8f3_ed86_78f2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d8f3_ed86_78f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8125_9d62_03e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8125_9d62_03e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8125_9d62_03e1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8125_9d62_03e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8125_9d62_03e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8125_9d62_03e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8125_9d62_03e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8125_9d62_03e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8125_9d62_03e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3c2_6ff0_f185", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3c2_6ff0_f185.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c3c2_6ff0_f185/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c3c2_6ff0_f185_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c3c2_6ff0_f185_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c3c2_6ff0_f185/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c3c2_6ff0_f185.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c3c2_6ff0_f185&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c3c2_6ff0_f185"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b41a_b09e_34b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b41a_b09e_34b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b41a_b09e_34b7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b41a_b09e_34b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b41a_b09e_34b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b41a_b09e_34b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b41a_b09e_34b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b41a_b09e_34b7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b41a_b09e_34b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00f4_d3ef_25d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00f4_d3ef_25d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_00f4_d3ef_25d4/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_00f4_d3ef_25d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_00f4_d3ef_25d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_00f4_d3ef_25d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_00f4_d3ef_25d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_00f4_d3ef_25d4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_00f4_d3ef_25d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d771_9eec_710f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d771_9eec_710f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d771_9eec_710f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d771_9eec_710f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d771_9eec_710f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d771_9eec_710f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d771_9eec_710f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d771_9eec_710f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d771_9eec_710f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58f8_a9f5_9aee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58f8_a9f5_9aee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_58f8_a9f5_9aee/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_58f8_a9f5_9aee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_58f8_a9f5_9aee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_58f8_a9f5_9aee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_58f8_a9f5_9aee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_58f8_a9f5_9aee&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_58f8_a9f5_9aee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03c2_43c0_27a9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03c2_43c0_27a9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03c2_43c0_27a9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03c2_43c0_27a9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03c2_43c0_27a9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03c2_43c0_27a9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03c2_43c0_27a9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03c2_43c0_27a9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_03c2_43c0_27a9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85a1_a457_bfe6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85a1_a457_bfe6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_85a1_a457_bfe6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_85a1_a457_bfe6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_85a1_a457_bfe6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85a1_a457_bfe6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85a1_a457_bfe6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85a1_a457_bfe6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_85a1_a457_bfe6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1bf_221e_267a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1bf_221e_267a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d1bf_221e_267a/request", "", "public", "Top Dataset, std, vpstr.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d1bf_221e_267a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d1bf_221e_267a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d1bf_221e_267a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d1bf_221e_267a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d1bf_221e_267a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d1bf_221e_267a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bbb1_edfd_2a6d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bbb1_edfd_2a6d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bbb1_edfd_2a6d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bbb1_edfd_2a6d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bbb1_edfd_2a6d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bbb1_edfd_2a6d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bbb1_edfd_2a6d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bbb1_edfd_2a6d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bbb1_edfd_2a6d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfd1_3f97_4f2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfd1_3f97_4f2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bfd1_3f97_4f2d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bfd1_3f97_4f2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bfd1_3f97_4f2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bfd1_3f97_4f2d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bfd1_3f97_4f2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bfd1_3f97_4f2d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bfd1_3f97_4f2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccb1_955e_65ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccb1_955e_65ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ccb1_955e_65ce/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ccb1_955e_65ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ccb1_955e_65ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ccb1_955e_65ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ccb1_955e_65ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ccb1_955e_65ce&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ccb1_955e_65ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54f7_b84f_a608", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54f7_b84f_a608.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54f7_b84f_a608/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54f7_b84f_a608_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54f7_b84f_a608_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54f7_b84f_a608/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54f7_b84f_a608.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54f7_b84f_a608&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_54f7_b84f_a608"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efa9_c0db_1ecf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efa9_c0db_1ecf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_efa9_c0db_1ecf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_efa9_c0db_1ecf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_efa9_c0db_1ecf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_efa9_c0db_1ecf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_efa9_c0db_1ecf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_efa9_c0db_1ecf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_efa9_c0db_1ecf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee6d_0990_484a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee6d_0990_484a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ee6d_0990_484a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ee6d_0990_484a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ee6d_0990_484a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ee6d_0990_484a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ee6d_0990_484a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ee6d_0990_484a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ee6d_0990_484a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ffe_eaf6_45a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ffe_eaf6_45a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ffe_eaf6_45a2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ffe_eaf6_45a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ffe_eaf6_45a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ffe_eaf6_45a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ffe_eaf6_45a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ffe_eaf6_45a2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3ffe_eaf6_45a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c6c0_a586_0fb7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c6c0_a586_0fb7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c6c0_a586_0fb7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c6c0_a586_0fb7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c6c0_a586_0fb7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c6c0_a586_0fb7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c6c0_a586_0fb7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c6c0_a586_0fb7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c6c0_a586_0fb7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec45_3225_8906", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec45_3225_8906.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ec45_3225_8906/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ec45_3225_8906_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ec45_3225_8906_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ec45_3225_8906/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ec45_3225_8906.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ec45_3225_8906&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ec45_3225_8906"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6673_ac7e_4549", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6673_ac7e_4549.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6673_ac7e_4549/request", "", "public", "Top Dataset, std, vspeh.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6673_ac7e_4549_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6673_ac7e_4549_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6673_ac7e_4549/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6673_ac7e_4549.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6673_ac7e_4549&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6673_ac7e_4549"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf6a_07a8_f9c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf6a_07a8_f9c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf6a_07a8_f9c1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf6a_07a8_f9c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf6a_07a8_f9c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf6a_07a8_f9c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf6a_07a8_f9c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf6a_07a8_f9c1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cf6a_07a8_f9c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4588_81f1_aa2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4588_81f1_aa2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4588_81f1_aa2f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4588_81f1_aa2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4588_81f1_aa2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4588_81f1_aa2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4588_81f1_aa2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4588_81f1_aa2f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4588_81f1_aa2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4eac_7aa3_6eaf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4eac_7aa3_6eaf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4eac_7aa3_6eaf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4eac_7aa3_6eaf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4eac_7aa3_6eaf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4eac_7aa3_6eaf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4eac_7aa3_6eaf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4eac_7aa3_6eaf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4eac_7aa3_6eaf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2979_b42b_d084", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2979_b42b_d084.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2979_b42b_d084/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2979_b42b_d084_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2979_b42b_d084_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2979_b42b_d084/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2979_b42b_d084.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2979_b42b_d084&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2979_b42b_d084"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30b3_e6bd_f0ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30b3_e6bd_f0ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_30b3_e6bd_f0ae/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_30b3_e6bd_f0ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_30b3_e6bd_f0ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_30b3_e6bd_f0ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_30b3_e6bd_f0ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_30b3_e6bd_f0ae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_30b3_e6bd_f0ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d3d_dd03_db58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d3d_dd03_db58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0d3d_dd03_db58/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0d3d_dd03_db58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0d3d_dd03_db58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0d3d_dd03_db58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0d3d_dd03_db58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0d3d_dd03_db58&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0d3d_dd03_db58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df15_27a1_6da1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df15_27a1_6da1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_df15_27a1_6da1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_df15_27a1_6da1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_df15_27a1_6da1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_df15_27a1_6da1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_df15_27a1_6da1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_df15_27a1_6da1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_df15_27a1_6da1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a50_6552_adbd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a50_6552_adbd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a50_6552_adbd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a50_6552_adbd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a50_6552_adbd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a50_6552_adbd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a50_6552_adbd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a50_6552_adbd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6a50_6552_adbd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db4e_abe4_b099", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db4e_abe4_b099.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db4e_abe4_b099/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db4e_abe4_b099_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db4e_abe4_b099_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db4e_abe4_b099/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db4e_abe4_b099.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db4e_abe4_b099&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_db4e_abe4_b099"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef03_7432_921d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef03_7432_921d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ef03_7432_921d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ef03_7432_921d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ef03_7432_921d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ef03_7432_921d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ef03_7432_921d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ef03_7432_921d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ef03_7432_921d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_23ce_69d3_65cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_23ce_69d3_65cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_23ce_69d3_65cb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_23ce_69d3_65cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_23ce_69d3_65cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_23ce_69d3_65cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_23ce_69d3_65cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_23ce_69d3_65cb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_23ce_69d3_65cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9134_6af7_cdcd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9134_6af7_cdcd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9134_6af7_cdcd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9134_6af7_cdcd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9134_6af7_cdcd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9134_6af7_cdcd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9134_6af7_cdcd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9134_6af7_cdcd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9134_6af7_cdcd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ff5_1748_e1d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ff5_1748_e1d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ff5_1748_e1d3/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ff5_1748_e1d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ff5_1748_e1d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ff5_1748_e1d3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ff5_1748_e1d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ff5_1748_e1d3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4ff5_1748_e1d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1b4_807d_6ab2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1b4_807d_6ab2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b1b4_807d_6ab2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b1b4_807d_6ab2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b1b4_807d_6ab2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b1b4_807d_6ab2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b1b4_807d_6ab2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b1b4_807d_6ab2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b1b4_807d_6ab2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4def_02da_3d00", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4def_02da_3d00.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4def_02da_3d00/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4def_02da_3d00_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4def_02da_3d00_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4def_02da_3d00/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4def_02da_3d00.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4def_02da_3d00&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4def_02da_3d00"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c99_29a7_8a23", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c99_29a7_8a23.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c99_29a7_8a23/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c99_29a7_8a23_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c99_29a7_8a23_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c99_29a7_8a23/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c99_29a7_8a23.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c99_29a7_8a23&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0c99_29a7_8a23"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5fd_c11b_b8fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5fd_c11b_b8fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5fd_c11b_b8fd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5fd_c11b_b8fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5fd_c11b_b8fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5fd_c11b_b8fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5fd_c11b_b8fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5fd_c11b_b8fd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a5fd_c11b_b8fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc3a_eb0c_b1ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc3a_eb0c_b1ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc3a_eb0c_b1ec/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc3a_eb0c_b1ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc3a_eb0c_b1ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc3a_eb0c_b1ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc3a_eb0c_b1ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc3a_eb0c_b1ec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cc3a_eb0c_b1ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebfc_fb9d_6189", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebfc_fb9d_6189.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ebfc_fb9d_6189/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ebfc_fb9d_6189_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ebfc_fb9d_6189_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ebfc_fb9d_6189/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ebfc_fb9d_6189.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ebfc_fb9d_6189&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ebfc_fb9d_6189"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aed4_5fb3_571e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aed4_5fb3_571e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aed4_5fb3_571e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aed4_5fb3_571e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aed4_5fb3_571e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aed4_5fb3_571e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aed4_5fb3_571e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aed4_5fb3_571e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aed4_5fb3_571e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79b0_e766_ec29", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79b0_e766_ec29.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_79b0_e766_ec29/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_79b0_e766_ec29_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_79b0_e766_ec29_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_79b0_e766_ec29/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_79b0_e766_ec29.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_79b0_e766_ec29&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_79b0_e766_ec29"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0380_80c0_660b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0380_80c0_660b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0380_80c0_660b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0380_80c0_660b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0380_80c0_660b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0380_80c0_660b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0380_80c0_660b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0380_80c0_660b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0380_80c0_660b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b978_84b4_470a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b978_84b4_470a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b978_84b4_470a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b978_84b4_470a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b978_84b4_470a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b978_84b4_470a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b978_84b4_470a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b978_84b4_470a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b978_84b4_470a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddbf_488d_c9f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddbf_488d_c9f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ddbf_488d_c9f5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ddbf_488d_c9f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ddbf_488d_c9f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ddbf_488d_c9f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ddbf_488d_c9f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ddbf_488d_c9f5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ddbf_488d_c9f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2aa_f30b_0c0d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2aa_f30b_0c0d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f2aa_f30b_0c0d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f2aa_f30b_0c0d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f2aa_f30b_0c0d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f2aa_f30b_0c0d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f2aa_f30b_0c0d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f2aa_f30b_0c0d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f2aa_f30b_0c0d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c992_1b9b_03eb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c992_1b9b_03eb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c992_1b9b_03eb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c992_1b9b_03eb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c992_1b9b_03eb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c992_1b9b_03eb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c992_1b9b_03eb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c992_1b9b_03eb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c992_1b9b_03eb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ee0_70cc_c2f7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ee0_70cc_c2f7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ee0_70cc_c2f7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ee0_70cc_c2f7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ee0_70cc_c2f7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ee0_70cc_c2f7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ee0_70cc_c2f7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ee0_70cc_c2f7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7ee0_70cc_c2f7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5a4_1658_8b7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5a4_1658_8b7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5a4_1658_8b7b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5a4_1658_8b7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5a4_1658_8b7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5a4_1658_8b7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5a4_1658_8b7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5a4_1658_8b7b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c5a4_1658_8b7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d200_e90c_aceb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d200_e90c_aceb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d200_e90c_aceb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d200_e90c_aceb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d200_e90c_aceb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d200_e90c_aceb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d200_e90c_aceb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d200_e90c_aceb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d200_e90c_aceb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8c5_4ff6_4794", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8c5_4ff6_4794.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a8c5_4ff6_4794/request", "", "public", "Top Dataset, std, wspd3.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a8c5_4ff6_4794_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a8c5_4ff6_4794_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a8c5_4ff6_4794/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a8c5_4ff6_4794.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a8c5_4ff6_4794&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a8c5_4ff6_4794"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6ae_2efd_d0ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6ae_2efd_d0ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f6ae_2efd_d0ea/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f6ae_2efd_d0ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f6ae_2efd_d0ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f6ae_2efd_d0ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f6ae_2efd_d0ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f6ae_2efd_d0ea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f6ae_2efd_d0ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f9a_e7f4_f0d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f9a_e7f4_f0d2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f9a_e7f4_f0d2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f9a_e7f4_f0d2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f9a_e7f4_f0d2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f9a_e7f4_f0d2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f9a_e7f4_f0d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f9a_e7f4_f0d2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2f9a_e7f4_f0d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00b7_4bf0_4236", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00b7_4bf0_4236.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_00b7_4bf0_4236/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_00b7_4bf0_4236_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_00b7_4bf0_4236_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_00b7_4bf0_4236/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_00b7_4bf0_4236.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_00b7_4bf0_4236&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_00b7_4bf0_4236"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab9a_fb18_725a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab9a_fb18_725a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab9a_fb18_725a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab9a_fb18_725a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab9a_fb18_725a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab9a_fb18_725a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab9a_fb18_725a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab9a_fb18_725a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ab9a_fb18_725a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c74_c965_4d19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c74_c965_4d19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c74_c965_4d19/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c74_c965_4d19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c74_c965_4d19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c74_c965_4d19/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c74_c965_4d19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c74_c965_4d19&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5c74_c965_4d19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c83_03dd_6389", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c83_03dd_6389.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c83_03dd_6389/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 1st Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c83_03dd_6389_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c83_03dd_6389_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c83_03dd_6389/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c83_03dd_6389.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c83_03dd_6389&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5c83_03dd_6389"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d384_3b56_de4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d384_3b56_de4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d384_3b56_de4d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 3rd Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d384_3b56_de4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d384_3b56_de4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d384_3b56_de4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d384_3b56_de4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d384_3b56_de4d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d384_3b56_de4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_064e_2410_cfc1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_064e_2410_cfc1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_064e_2410_cfc1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 5th Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_064e_2410_cfc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_064e_2410_cfc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_064e_2410_cfc1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_064e_2410_cfc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_064e_2410_cfc1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_064e_2410_cfc1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb93_4a1f_1adb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb93_4a1f_1adb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb93_4a1f_1adb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Standard Deviation at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb93_4a1f_1adb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb93_4a1f_1adb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb93_4a1f_1adb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb93_4a1f_1adb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb93_4a1f_1adb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fb93_4a1f_1adb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e544_3a94_b69e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e544_3a94_b69e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e544_3a94_b69e/request", "", "public", "Top Dataset, enh, air.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e544_3a94_b69e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e544_3a94_b69e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e544_3a94_b69e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e544_3a94_b69e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e544_3a94_b69e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e544_3a94_b69e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2289_bad6_53f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2289_bad6_53f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2289_bad6_53f1/request", "", "public", "Top Dataset, enh, air.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2289_bad6_53f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2289_bad6_53f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2289_bad6_53f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2289_bad6_53f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2289_bad6_53f1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2289_bad6_53f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_695a_2adf_ab4a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_695a_2adf_ab4a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_695a_2adf_ab4a/request", "", "public", "Top Dataset, enh, air.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_695a_2adf_ab4a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_695a_2adf_ab4a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_695a_2adf_ab4a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_695a_2adf_ab4a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_695a_2adf_ab4a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_695a_2adf_ab4a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3212_1e70_011e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3212_1e70_011e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3212_1e70_011e/request", "", "public", "Top Dataset, enh, air.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3212_1e70_011e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3212_1e70_011e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3212_1e70_011e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3212_1e70_011e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3212_1e70_011e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3212_1e70_011e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f140_79fd_8774", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f140_79fd_8774.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f140_79fd_8774/request", "", "public", "Top Dataset, enh, air.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f140_79fd_8774_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f140_79fd_8774_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f140_79fd_8774/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f140_79fd_8774.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f140_79fd_8774&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f140_79fd_8774"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f94e_4297_a749", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f94e_4297_a749.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f94e_4297_a749/request", "", "public", "Top Dataset, enh, air.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f94e_4297_a749_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f94e_4297_a749_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f94e_4297_a749/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f94e_4297_a749.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f94e_4297_a749&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f94e_4297_a749"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9aa8_d6f1_552d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9aa8_d6f1_552d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9aa8_d6f1_552d/request", "", "public", "Top Dataset, enh, air.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9aa8_d6f1_552d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9aa8_d6f1_552d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9aa8_d6f1_552d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9aa8_d6f1_552d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9aa8_d6f1_552d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9aa8_d6f1_552d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14ad_13ed_3e2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14ad_13ed_3e2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_14ad_13ed_3e2d/request", "", "public", "Top Dataset, enh, air.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_14ad_13ed_3e2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_14ad_13ed_3e2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_14ad_13ed_3e2d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_14ad_13ed_3e2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_14ad_13ed_3e2d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_14ad_13ed_3e2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cac5_f5a5_0e57", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cac5_f5a5_0e57.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cac5_f5a5_0e57/request", "", "public", "Top Dataset, enh, air.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cac5_f5a5_0e57_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cac5_f5a5_0e57_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cac5_f5a5_0e57/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cac5_f5a5_0e57.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cac5_f5a5_0e57&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cac5_f5a5_0e57"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfa4_69c6_a3b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfa4_69c6_a3b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dfa4_69c6_a3b0/request", "", "public", "Top Dataset, enh, air.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dfa4_69c6_a3b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dfa4_69c6_a3b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dfa4_69c6_a3b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dfa4_69c6_a3b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dfa4_69c6_a3b0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dfa4_69c6_a3b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6279_8f97_0724", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6279_8f97_0724.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6279_8f97_0724/request", "", "public", "Top Dataset, enh, qsminq.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6279_8f97_0724_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6279_8f97_0724_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6279_8f97_0724/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6279_8f97_0724.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6279_8f97_0724&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6279_8f97_0724"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c13e_aac0_469f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c13e_aac0_469f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c13e_aac0_469f/request", "", "public", "Top Dataset, enh, qsminq.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c13e_aac0_469f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c13e_aac0_469f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c13e_aac0_469f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c13e_aac0_469f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c13e_aac0_469f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c13e_aac0_469f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a93_1c8b_d8cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a93_1c8b_d8cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a93_1c8b_d8cd/request", "", "public", "Top Dataset, enh, qsminq.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a93_1c8b_d8cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a93_1c8b_d8cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a93_1c8b_d8cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a93_1c8b_d8cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a93_1c8b_d8cd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5a93_1c8b_d8cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f224_e22d_8ad6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f224_e22d_8ad6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f224_e22d_8ad6/request", "", "public", "Top Dataset, enh, qsminq.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f224_e22d_8ad6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f224_e22d_8ad6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f224_e22d_8ad6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f224_e22d_8ad6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f224_e22d_8ad6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f224_e22d_8ad6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d93_ce7c_ac1a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d93_ce7c_ac1a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9d93_ce7c_ac1a/request", "", "public", "Top Dataset, enh, qsminq.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9d93_ce7c_ac1a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9d93_ce7c_ac1a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9d93_ce7c_ac1a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9d93_ce7c_ac1a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9d93_ce7c_ac1a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9d93_ce7c_ac1a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8865_ca89_117d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8865_ca89_117d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8865_ca89_117d/request", "", "public", "Top Dataset, enh, qsminq.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8865_ca89_117d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8865_ca89_117d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8865_ca89_117d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8865_ca89_117d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8865_ca89_117d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8865_ca89_117d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b79_4386_ee1b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b79_4386_ee1b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b79_4386_ee1b/request", "", "public", "Top Dataset, enh, qsminq.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b79_4386_ee1b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b79_4386_ee1b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b79_4386_ee1b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b79_4386_ee1b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b79_4386_ee1b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6b79_4386_ee1b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab3f_4b1f_9f1c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab3f_4b1f_9f1c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab3f_4b1f_9f1c/request", "", "public", "Top Dataset, enh, qsminq.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab3f_4b1f_9f1c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab3f_4b1f_9f1c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab3f_4b1f_9f1c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab3f_4b1f_9f1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab3f_4b1f_9f1c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ab3f_4b1f_9f1c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ea7_d548_6f07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ea7_d548_6f07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ea7_d548_6f07/request", "", "public", "Top Dataset, enh, qsminq.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ea7_d548_6f07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ea7_d548_6f07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ea7_d548_6f07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ea7_d548_6f07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ea7_d548_6f07&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8ea7_d548_6f07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03d4_86f1_cedf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03d4_86f1_cedf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03d4_86f1_cedf/request", "", "public", "Top Dataset, enh, qsminq.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03d4_86f1_cedf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03d4_86f1_cedf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03d4_86f1_cedf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03d4_86f1_cedf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03d4_86f1_cedf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_03d4_86f1_cedf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88a3_b8ea_a6f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88a3_b8ea_a6f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_88a3_b8ea_a6f3/request", "", "public", "Top Dataset, enh, smina.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_88a3_b8ea_a6f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_88a3_b8ea_a6f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_88a3_b8ea_a6f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_88a3_b8ea_a6f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_88a3_b8ea_a6f3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_88a3_b8ea_a6f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2dbe_6caa_6a1f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2dbe_6caa_6a1f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2dbe_6caa_6a1f/request", "", "public", "Top Dataset, enh, smina.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2dbe_6caa_6a1f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2dbe_6caa_6a1f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2dbe_6caa_6a1f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2dbe_6caa_6a1f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2dbe_6caa_6a1f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2dbe_6caa_6a1f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c18_d0ee_414a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c18_d0ee_414a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8c18_d0ee_414a/request", "", "public", "Top Dataset, enh, smina.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8c18_d0ee_414a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8c18_d0ee_414a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8c18_d0ee_414a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8c18_d0ee_414a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8c18_d0ee_414a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8c18_d0ee_414a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf5c_6df3_5b67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf5c_6df3_5b67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf5c_6df3_5b67/request", "", "public", "Top Dataset, enh, smina.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf5c_6df3_5b67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf5c_6df3_5b67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf5c_6df3_5b67/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf5c_6df3_5b67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf5c_6df3_5b67&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cf5c_6df3_5b67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0936_7e65_c266", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0936_7e65_c266.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0936_7e65_c266/request", "", "public", "Top Dataset, enh, smina.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0936_7e65_c266_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0936_7e65_c266_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0936_7e65_c266/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0936_7e65_c266.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0936_7e65_c266&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0936_7e65_c266"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ed8_b63b_e53f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ed8_b63b_e53f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ed8_b63b_e53f/request", "", "public", "Top Dataset, enh, smina.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ed8_b63b_e53f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ed8_b63b_e53f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ed8_b63b_e53f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ed8_b63b_e53f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ed8_b63b_e53f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4ed8_b63b_e53f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d37_a2e6_0028", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d37_a2e6_0028.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d37_a2e6_0028/request", "", "public", "Top Dataset, enh, smina.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d37_a2e6_0028_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d37_a2e6_0028_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d37_a2e6_0028/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d37_a2e6_0028.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d37_a2e6_0028&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d37_a2e6_0028"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d646_d58b_51c8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d646_d58b_51c8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d646_d58b_51c8/request", "", "public", "Top Dataset, enh, smina.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d646_d58b_51c8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d646_d58b_51c8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d646_d58b_51c8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d646_d58b_51c8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d646_d58b_51c8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d646_d58b_51c8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc00_8d86_38dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc00_8d86_38dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc00_8d86_38dd/request", "", "public", "Top Dataset, enh, smina.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc00_8d86_38dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc00_8d86_38dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc00_8d86_38dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc00_8d86_38dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc00_8d86_38dd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dc00_8d86_38dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d752_c3fe_f8fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d752_c3fe_f8fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d752_c3fe_f8fe/request", "", "public", "Top Dataset, enh, smina.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d752_c3fe_f8fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d752_c3fe_f8fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d752_c3fe_f8fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d752_c3fe_f8fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d752_c3fe_f8fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d752_c3fe_f8fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be13_2c2c_483c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be13_2c2c_483c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_be13_2c2c_483c/request", "", "public", "Top Dataset, enh, sst.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_be13_2c2c_483c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_be13_2c2c_483c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_be13_2c2c_483c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_be13_2c2c_483c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_be13_2c2c_483c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_be13_2c2c_483c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af1a_ac23_922f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af1a_ac23_922f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_af1a_ac23_922f/request", "", "public", "Top Dataset, enh, sst.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_af1a_ac23_922f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_af1a_ac23_922f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_af1a_ac23_922f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_af1a_ac23_922f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_af1a_ac23_922f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_af1a_ac23_922f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c1b_5128_86fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c1b_5128_86fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6c1b_5128_86fe/request", "", "public", "Top Dataset, enh, sst.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6c1b_5128_86fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6c1b_5128_86fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6c1b_5128_86fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6c1b_5128_86fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6c1b_5128_86fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6c1b_5128_86fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_503d_aefd_364a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_503d_aefd_364a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_503d_aefd_364a/request", "", "public", "Top Dataset, enh, sst.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_503d_aefd_364a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_503d_aefd_364a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_503d_aefd_364a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_503d_aefd_364a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_503d_aefd_364a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_503d_aefd_364a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f10c_e9b7_bc8f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f10c_e9b7_bc8f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f10c_e9b7_bc8f/request", "", "public", "Top Dataset, enh, sst.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f10c_e9b7_bc8f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f10c_e9b7_bc8f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f10c_e9b7_bc8f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f10c_e9b7_bc8f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f10c_e9b7_bc8f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f10c_e9b7_bc8f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_928e_e4b9_900c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_928e_e4b9_900c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_928e_e4b9_900c/request", "", "public", "Top Dataset, enh, sst.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_928e_e4b9_900c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_928e_e4b9_900c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_928e_e4b9_900c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_928e_e4b9_900c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_928e_e4b9_900c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_928e_e4b9_900c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e747_f61c_3eb4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e747_f61c_3eb4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e747_f61c_3eb4/request", "", "public", "Top Dataset, enh, sst.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e747_f61c_3eb4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e747_f61c_3eb4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e747_f61c_3eb4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e747_f61c_3eb4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e747_f61c_3eb4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e747_f61c_3eb4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e6f_eebb_2deb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e6f_eebb_2deb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7e6f_eebb_2deb/request", "", "public", "Top Dataset, enh, sst.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7e6f_eebb_2deb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7e6f_eebb_2deb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e6f_eebb_2deb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e6f_eebb_2deb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e6f_eebb_2deb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7e6f_eebb_2deb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_11ef_2a11_e62c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_11ef_2a11_e62c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_11ef_2a11_e62c/request", "", "public", "Top Dataset, enh, sst.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_11ef_2a11_e62c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_11ef_2a11_e62c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_11ef_2a11_e62c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_11ef_2a11_e62c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_11ef_2a11_e62c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_11ef_2a11_e62c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ebc_f25d_2bd0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ebc_f25d_2bd0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ebc_f25d_2bd0/request", "", "public", "Top Dataset, enh, sst.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ebc_f25d_2bd0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ebc_f25d_2bd0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ebc_f25d_2bd0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ebc_f25d_2bd0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ebc_f25d_2bd0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1ebc_f25d_2bd0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87a0_8fb3_1f7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87a0_8fb3_1f7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_87a0_8fb3_1f7b/request", "", "public", "Top Dataset, std, air.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_87a0_8fb3_1f7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_87a0_8fb3_1f7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_87a0_8fb3_1f7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_87a0_8fb3_1f7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_87a0_8fb3_1f7b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_87a0_8fb3_1f7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54c9_d804_a6e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54c9_d804_a6e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54c9_d804_a6e1/request", "", "public", "Top Dataset, std, air.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54c9_d804_a6e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54c9_d804_a6e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54c9_d804_a6e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54c9_d804_a6e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54c9_d804_a6e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_54c9_d804_a6e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_649d_54ee_de6f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_649d_54ee_de6f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_649d_54ee_de6f/request", "", "public", "Top Dataset, std, air.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_649d_54ee_de6f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_649d_54ee_de6f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_649d_54ee_de6f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_649d_54ee_de6f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_649d_54ee_de6f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_649d_54ee_de6f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b29d_c87d_393e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b29d_c87d_393e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b29d_c87d_393e/request", "", "public", "Top Dataset, std, air.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b29d_c87d_393e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b29d_c87d_393e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b29d_c87d_393e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b29d_c87d_393e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b29d_c87d_393e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b29d_c87d_393e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfe2_3fbd_c880", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfe2_3fbd_c880.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cfe2_3fbd_c880/request", "", "public", "Top Dataset, std, air.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cfe2_3fbd_c880_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cfe2_3fbd_c880_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cfe2_3fbd_c880/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cfe2_3fbd_c880.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cfe2_3fbd_c880&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cfe2_3fbd_c880"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0408_57be_ff7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0408_57be_ff7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0408_57be_ff7b/request", "", "public", "Top Dataset, std, air.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0408_57be_ff7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0408_57be_ff7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0408_57be_ff7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0408_57be_ff7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0408_57be_ff7b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0408_57be_ff7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5f3_9de4_5b63", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5f3_9de4_5b63.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5f3_9de4_5b63/request", "", "public", "Top Dataset, std, air.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5f3_9de4_5b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5f3_9de4_5b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5f3_9de4_5b63/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5f3_9de4_5b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5f3_9de4_5b63&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a5f3_9de4_5b63"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf4c_8700_bb23", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf4c_8700_bb23.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf4c_8700_bb23/request", "", "public", "Top Dataset, std, air.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf4c_8700_bb23_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf4c_8700_bb23_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf4c_8700_bb23/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf4c_8700_bb23.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf4c_8700_bb23&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bf4c_8700_bb23"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f17d_22d0_af5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f17d_22d0_af5b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f17d_22d0_af5b/request", "", "public", "Top Dataset, std, air.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f17d_22d0_af5b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f17d_22d0_af5b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f17d_22d0_af5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f17d_22d0_af5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f17d_22d0_af5b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f17d_22d0_af5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13ad_3a91_72b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13ad_3a91_72b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_13ad_3a91_72b8/request", "", "public", "Top Dataset, std, air.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_13ad_3a91_72b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_13ad_3a91_72b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_13ad_3a91_72b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_13ad_3a91_72b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_13ad_3a91_72b8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_13ad_3a91_72b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9dba_e7b1_7e78", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9dba_e7b1_7e78.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9dba_e7b1_7e78/request", "", "public", "Top Dataset, std, cldc.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9dba_e7b1_7e78_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9dba_e7b1_7e78_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9dba_e7b1_7e78/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9dba_e7b1_7e78.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9dba_e7b1_7e78&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9dba_e7b1_7e78"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4751_1fc3_0b37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4751_1fc3_0b37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4751_1fc3_0b37/request", "", "public", "Top Dataset, std, cldc.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4751_1fc3_0b37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4751_1fc3_0b37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4751_1fc3_0b37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4751_1fc3_0b37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4751_1fc3_0b37&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4751_1fc3_0b37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2828_8fe4_18e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2828_8fe4_18e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2828_8fe4_18e2/request", "", "public", "Top Dataset, std, cldc.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2828_8fe4_18e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2828_8fe4_18e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2828_8fe4_18e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2828_8fe4_18e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2828_8fe4_18e2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2828_8fe4_18e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8daa_28b5_ea1b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8daa_28b5_ea1b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8daa_28b5_ea1b/request", "", "public", "Top Dataset, std, cldc.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8daa_28b5_ea1b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8daa_28b5_ea1b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8daa_28b5_ea1b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8daa_28b5_ea1b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8daa_28b5_ea1b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8daa_28b5_ea1b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4cff_85dd_b8fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4cff_85dd_b8fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4cff_85dd_b8fb/request", "", "public", "Top Dataset, std, cldc.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4cff_85dd_b8fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4cff_85dd_b8fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4cff_85dd_b8fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4cff_85dd_b8fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4cff_85dd_b8fb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4cff_85dd_b8fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f5b_089a_ee7c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f5b_089a_ee7c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f5b_089a_ee7c/request", "", "public", "Top Dataset, std, cldc.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f5b_089a_ee7c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f5b_089a_ee7c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f5b_089a_ee7c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f5b_089a_ee7c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f5b_089a_ee7c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2f5b_089a_ee7c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dba_ff89_f8ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dba_ff89_f8ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1dba_ff89_f8ca/request", "", "public", "Top Dataset, std, cldc.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1dba_ff89_f8ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1dba_ff89_f8ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1dba_ff89_f8ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1dba_ff89_f8ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1dba_ff89_f8ca&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1dba_ff89_f8ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6520_2866_91f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6520_2866_91f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6520_2866_91f2/request", "", "public", "Top Dataset, std, cldc.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6520_2866_91f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6520_2866_91f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6520_2866_91f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6520_2866_91f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6520_2866_91f2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6520_2866_91f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_624f_e6ec_d97e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_624f_e6ec_d97e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_624f_e6ec_d97e/request", "", "public", "Top Dataset, std, cldc.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_624f_e6ec_d97e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_624f_e6ec_d97e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_624f_e6ec_d97e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_624f_e6ec_d97e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_624f_e6ec_d97e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_624f_e6ec_d97e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abec_23e6_fb72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abec_23e6_fb72.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_abec_23e6_fb72/request", "", "public", "Top Dataset, std, cldc.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_abec_23e6_fb72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_abec_23e6_fb72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_abec_23e6_fb72/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_abec_23e6_fb72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_abec_23e6_fb72&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_abec_23e6_fb72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d41_55ee_1324", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d41_55ee_1324.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d41_55ee_1324/request", "", "public", "Top Dataset, std, lflx.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d41_55ee_1324_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d41_55ee_1324_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d41_55ee_1324/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d41_55ee_1324.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d41_55ee_1324&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d41_55ee_1324"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79a8_b549_cfaa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79a8_b549_cfaa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_79a8_b549_cfaa/request", "", "public", "Top Dataset, std, lflx.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_79a8_b549_cfaa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_79a8_b549_cfaa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_79a8_b549_cfaa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_79a8_b549_cfaa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_79a8_b549_cfaa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_79a8_b549_cfaa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_547c_a9ca_fa20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_547c_a9ca_fa20.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_547c_a9ca_fa20/request", "", "public", "Top Dataset, std, lflx.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_547c_a9ca_fa20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_547c_a9ca_fa20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_547c_a9ca_fa20/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_547c_a9ca_fa20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_547c_a9ca_fa20&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_547c_a9ca_fa20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2db3_b88c_c57d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2db3_b88c_c57d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2db3_b88c_c57d/request", "", "public", "Top Dataset, std, lflx.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2db3_b88c_c57d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2db3_b88c_c57d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2db3_b88c_c57d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2db3_b88c_c57d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2db3_b88c_c57d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2db3_b88c_c57d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7821_3d52_f732", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7821_3d52_f732.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7821_3d52_f732/request", "", "public", "Top Dataset, std, lflx.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7821_3d52_f732_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7821_3d52_f732_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7821_3d52_f732/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7821_3d52_f732.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7821_3d52_f732&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7821_3d52_f732"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2527_69d7_fbfa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2527_69d7_fbfa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2527_69d7_fbfa/request", "", "public", "Top Dataset, std, lflx.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2527_69d7_fbfa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2527_69d7_fbfa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2527_69d7_fbfa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2527_69d7_fbfa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2527_69d7_fbfa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2527_69d7_fbfa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24de_0c1c_e781", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24de_0c1c_e781.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_24de_0c1c_e781/request", "", "public", "Top Dataset, std, lflx.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_24de_0c1c_e781_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_24de_0c1c_e781_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_24de_0c1c_e781/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_24de_0c1c_e781.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_24de_0c1c_e781&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_24de_0c1c_e781"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa6c_4a0f_a348", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa6c_4a0f_a348.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fa6c_4a0f_a348/request", "", "public", "Top Dataset, std, lflx.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fa6c_4a0f_a348_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fa6c_4a0f_a348_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fa6c_4a0f_a348/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fa6c_4a0f_a348.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fa6c_4a0f_a348&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fa6c_4a0f_a348"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb5b_0e91_4f03", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb5b_0e91_4f03.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bb5b_0e91_4f03/request", "", "public", "Top Dataset, std, lflx.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bb5b_0e91_4f03_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bb5b_0e91_4f03_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bb5b_0e91_4f03/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bb5b_0e91_4f03.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bb5b_0e91_4f03&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bb5b_0e91_4f03"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bf4_fdd7_62b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bf4_fdd7_62b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2bf4_fdd7_62b9/request", "", "public", "Top Dataset, std, lflx.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2bf4_fdd7_62b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2bf4_fdd7_62b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2bf4_fdd7_62b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2bf4_fdd7_62b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2bf4_fdd7_62b9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2bf4_fdd7_62b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56f4_10c5_e2cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56f4_10c5_e2cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_56f4_10c5_e2cd/request", "", "public", "Top Dataset, std, qsminq.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_56f4_10c5_e2cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_56f4_10c5_e2cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_56f4_10c5_e2cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_56f4_10c5_e2cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_56f4_10c5_e2cd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_56f4_10c5_e2cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_603a_aaa2_33af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_603a_aaa2_33af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_603a_aaa2_33af/request", "", "public", "Top Dataset, std, qsminq.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_603a_aaa2_33af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_603a_aaa2_33af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_603a_aaa2_33af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_603a_aaa2_33af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_603a_aaa2_33af&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_603a_aaa2_33af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef82_52a2_322c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef82_52a2_322c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ef82_52a2_322c/request", "", "public", "Top Dataset, std, qsminq.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ef82_52a2_322c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ef82_52a2_322c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ef82_52a2_322c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ef82_52a2_322c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ef82_52a2_322c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ef82_52a2_322c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_969b_e47d_a6e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_969b_e47d_a6e4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_969b_e47d_a6e4/request", "", "public", "Top Dataset, std, qsminq.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_969b_e47d_a6e4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_969b_e47d_a6e4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_969b_e47d_a6e4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_969b_e47d_a6e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_969b_e47d_a6e4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_969b_e47d_a6e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99c3_058d_8b06", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99c3_058d_8b06.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99c3_058d_8b06/request", "", "public", "Top Dataset, std, qsminq.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99c3_058d_8b06_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99c3_058d_8b06_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99c3_058d_8b06/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99c3_058d_8b06.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99c3_058d_8b06&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_99c3_058d_8b06"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0600_4e32_9400", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0600_4e32_9400.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0600_4e32_9400/request", "", "public", "Top Dataset, std, qsminq.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0600_4e32_9400_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0600_4e32_9400_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0600_4e32_9400/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0600_4e32_9400.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0600_4e32_9400&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0600_4e32_9400"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_578e_f257_ce05", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_578e_f257_ce05.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_578e_f257_ce05/request", "", "public", "Top Dataset, std, qsminq.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_578e_f257_ce05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_578e_f257_ce05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_578e_f257_ce05/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_578e_f257_ce05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_578e_f257_ce05&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_578e_f257_ce05"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_615e_965e_85d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_615e_965e_85d1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_615e_965e_85d1/request", "", "public", "Top Dataset, std, qsminq.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_615e_965e_85d1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_615e_965e_85d1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_615e_965e_85d1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_615e_965e_85d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_615e_965e_85d1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_615e_965e_85d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_25e9_62ca_5ff6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_25e9_62ca_5ff6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_25e9_62ca_5ff6/request", "", "public", "Top Dataset, std, qsminq.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_25e9_62ca_5ff6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_25e9_62ca_5ff6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_25e9_62ca_5ff6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_25e9_62ca_5ff6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_25e9_62ca_5ff6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_25e9_62ca_5ff6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5307_bf70_cef8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5307_bf70_cef8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5307_bf70_cef8/request", "", "public", "Top Dataset, std, qsminq.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5307_bf70_cef8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5307_bf70_cef8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5307_bf70_cef8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5307_bf70_cef8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5307_bf70_cef8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5307_bf70_cef8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3ec_6e93_ac54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3ec_6e93_ac54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c3ec_6e93_ac54/request", "", "public", "Top Dataset, std, rhum.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c3ec_6e93_ac54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c3ec_6e93_ac54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c3ec_6e93_ac54/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c3ec_6e93_ac54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c3ec_6e93_ac54&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c3ec_6e93_ac54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_74b5_bafc_c697", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_74b5_bafc_c697.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_74b5_bafc_c697/request", "", "public", "Top Dataset, std, rhum.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_74b5_bafc_c697_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_74b5_bafc_c697_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_74b5_bafc_c697/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_74b5_bafc_c697.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_74b5_bafc_c697&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_74b5_bafc_c697"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0d8_9f6a_3120", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0d8_9f6a_3120.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e0d8_9f6a_3120/request", "", "public", "Top Dataset, std, rhum.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e0d8_9f6a_3120_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e0d8_9f6a_3120_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e0d8_9f6a_3120/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e0d8_9f6a_3120.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e0d8_9f6a_3120&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e0d8_9f6a_3120"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfc5_92e5_9a3a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfc5_92e5_9a3a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cfc5_92e5_9a3a/request", "", "public", "Top Dataset, std, rhum.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cfc5_92e5_9a3a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cfc5_92e5_9a3a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cfc5_92e5_9a3a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cfc5_92e5_9a3a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cfc5_92e5_9a3a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cfc5_92e5_9a3a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7da_08be_88c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7da_08be_88c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c7da_08be_88c3/request", "", "public", "Top Dataset, std, rhum.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c7da_08be_88c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c7da_08be_88c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c7da_08be_88c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c7da_08be_88c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c7da_08be_88c3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c7da_08be_88c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de80_7287_3170", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de80_7287_3170.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_de80_7287_3170/request", "", "public", "Top Dataset, std, rhum.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_de80_7287_3170_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_de80_7287_3170_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_de80_7287_3170/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_de80_7287_3170.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_de80_7287_3170&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_de80_7287_3170"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cf4_c6b1_b084", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cf4_c6b1_b084.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1cf4_c6b1_b084/request", "", "public", "Top Dataset, std, rhum.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1cf4_c6b1_b084_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1cf4_c6b1_b084_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1cf4_c6b1_b084/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1cf4_c6b1_b084.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1cf4_c6b1_b084&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1cf4_c6b1_b084"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dda_6637_b0b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dda_6637_b0b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8dda_6637_b0b0/request", "", "public", "Top Dataset, std, rhum.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8dda_6637_b0b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8dda_6637_b0b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8dda_6637_b0b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8dda_6637_b0b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8dda_6637_b0b0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8dda_6637_b0b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_114d_d8dc_c2c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_114d_d8dc_c2c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_114d_d8dc_c2c6/request", "", "public", "Top Dataset, std, rhum.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_114d_d8dc_c2c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_114d_d8dc_c2c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_114d_d8dc_c2c6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_114d_d8dc_c2c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_114d_d8dc_c2c6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_114d_d8dc_c2c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4841_86e2_1b6b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4841_86e2_1b6b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4841_86e2_1b6b/request", "", "public", "Top Dataset, std, rhum.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4841_86e2_1b6b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4841_86e2_1b6b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4841_86e2_1b6b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4841_86e2_1b6b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4841_86e2_1b6b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4841_86e2_1b6b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e3c1_b96d_30de", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e3c1_b96d_30de.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e3c1_b96d_30de/request", "", "public", "Top Dataset, std, sflx.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e3c1_b96d_30de_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e3c1_b96d_30de_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e3c1_b96d_30de/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e3c1_b96d_30de.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e3c1_b96d_30de&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e3c1_b96d_30de"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_694c_40b4_0570", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_694c_40b4_0570.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_694c_40b4_0570/request", "", "public", "Top Dataset, std, sflx.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_694c_40b4_0570_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_694c_40b4_0570_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_694c_40b4_0570/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_694c_40b4_0570.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_694c_40b4_0570&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_694c_40b4_0570"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2250_9e63_adef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2250_9e63_adef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2250_9e63_adef/request", "", "public", "Top Dataset, std, sflx.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2250_9e63_adef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2250_9e63_adef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2250_9e63_adef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2250_9e63_adef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2250_9e63_adef&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2250_9e63_adef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae61_a6fb_05bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae61_a6fb_05bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae61_a6fb_05bb/request", "", "public", "Top Dataset, std, sflx.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae61_a6fb_05bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae61_a6fb_05bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae61_a6fb_05bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae61_a6fb_05bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae61_a6fb_05bb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ae61_a6fb_05bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a85_0487_67a5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a85_0487_67a5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a85_0487_67a5/request", "", "public", "Top Dataset, std, sflx.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a85_0487_67a5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a85_0487_67a5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a85_0487_67a5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a85_0487_67a5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a85_0487_67a5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0a85_0487_67a5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e2a_b018_dfb8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e2a_b018_dfb8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e2a_b018_dfb8/request", "", "public", "Top Dataset, std, sflx.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e2a_b018_dfb8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e2a_b018_dfb8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e2a_b018_dfb8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e2a_b018_dfb8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e2a_b018_dfb8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3e2a_b018_dfb8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eac8_6632_b1b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eac8_6632_b1b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eac8_6632_b1b5/request", "", "public", "Top Dataset, std, sflx.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eac8_6632_b1b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eac8_6632_b1b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eac8_6632_b1b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eac8_6632_b1b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eac8_6632_b1b5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eac8_6632_b1b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28f7_4da1_39fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28f7_4da1_39fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28f7_4da1_39fb/request", "", "public", "Top Dataset, std, sflx.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28f7_4da1_39fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28f7_4da1_39fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28f7_4da1_39fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28f7_4da1_39fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28f7_4da1_39fb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_28f7_4da1_39fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c5f_0dac_82a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c5f_0dac_82a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8c5f_0dac_82a6/request", "", "public", "Top Dataset, std, sflx.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8c5f_0dac_82a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8c5f_0dac_82a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8c5f_0dac_82a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8c5f_0dac_82a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8c5f_0dac_82a6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8c5f_0dac_82a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e162_c58a_7de0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e162_c58a_7de0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e162_c58a_7de0/request", "", "public", "Top Dataset, std, sflx.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e162_c58a_7de0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e162_c58a_7de0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e162_c58a_7de0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e162_c58a_7de0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e162_c58a_7de0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e162_c58a_7de0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b10_0b02_65b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b10_0b02_65b1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8b10_0b02_65b1/request", "", "public", "Top Dataset, std, shum.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8b10_0b02_65b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8b10_0b02_65b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8b10_0b02_65b1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8b10_0b02_65b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8b10_0b02_65b1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8b10_0b02_65b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fcd5_8d8c_ba77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fcd5_8d8c_ba77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fcd5_8d8c_ba77/request", "", "public", "Top Dataset, std, shum.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fcd5_8d8c_ba77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fcd5_8d8c_ba77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fcd5_8d8c_ba77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fcd5_8d8c_ba77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fcd5_8d8c_ba77&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fcd5_8d8c_ba77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9806_e7af_66aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9806_e7af_66aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9806_e7af_66aa/request", "", "public", "Top Dataset, std, shum.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9806_e7af_66aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9806_e7af_66aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9806_e7af_66aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9806_e7af_66aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9806_e7af_66aa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9806_e7af_66aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_345b_5e91_d0f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_345b_5e91_d0f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_345b_5e91_d0f6/request", "", "public", "Top Dataset, std, shum.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_345b_5e91_d0f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_345b_5e91_d0f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_345b_5e91_d0f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_345b_5e91_d0f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_345b_5e91_d0f6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_345b_5e91_d0f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99f4_1284_5a68", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99f4_1284_5a68.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99f4_1284_5a68/request", "", "public", "Top Dataset, std, shum.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99f4_1284_5a68_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99f4_1284_5a68_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99f4_1284_5a68/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99f4_1284_5a68.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99f4_1284_5a68&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_99f4_1284_5a68"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e62e_503e_189a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e62e_503e_189a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e62e_503e_189a/request", "", "public", "Top Dataset, std, shum.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e62e_503e_189a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e62e_503e_189a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e62e_503e_189a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e62e_503e_189a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e62e_503e_189a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e62e_503e_189a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8253_f49a_62f4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8253_f49a_62f4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8253_f49a_62f4/request", "", "public", "Top Dataset, std, shum.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8253_f49a_62f4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8253_f49a_62f4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8253_f49a_62f4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8253_f49a_62f4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8253_f49a_62f4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8253_f49a_62f4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f827_b9fb_f0b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f827_b9fb_f0b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f827_b9fb_f0b6/request", "", "public", "Top Dataset, std, shum.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f827_b9fb_f0b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f827_b9fb_f0b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f827_b9fb_f0b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f827_b9fb_f0b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f827_b9fb_f0b6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f827_b9fb_f0b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4217_cf69_4dae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4217_cf69_4dae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4217_cf69_4dae/request", "", "public", "Top Dataset, std, shum.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4217_cf69_4dae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4217_cf69_4dae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4217_cf69_4dae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4217_cf69_4dae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4217_cf69_4dae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4217_cf69_4dae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_158f_f3f5_e71f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_158f_f3f5_e71f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_158f_f3f5_e71f/request", "", "public", "Top Dataset, std, shum.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_158f_f3f5_e71f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_158f_f3f5_e71f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_158f_f3f5_e71f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_158f_f3f5_e71f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_158f_f3f5_e71f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_158f_f3f5_e71f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc26_2f73_52fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc26_2f73_52fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc26_2f73_52fe/request", "", "public", "Top Dataset, std, slp.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc26_2f73_52fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc26_2f73_52fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc26_2f73_52fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc26_2f73_52fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc26_2f73_52fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fc26_2f73_52fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f5d_8d20_8a65", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f5d_8d20_8a65.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f5d_8d20_8a65/request", "", "public", "Top Dataset, std, slp.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f5d_8d20_8a65_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f5d_8d20_8a65_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f5d_8d20_8a65/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f5d_8d20_8a65.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f5d_8d20_8a65&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7f5d_8d20_8a65"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5900_02b1_6dd1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5900_02b1_6dd1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5900_02b1_6dd1/request", "", "public", "Top Dataset, std, slp.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5900_02b1_6dd1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5900_02b1_6dd1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5900_02b1_6dd1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5900_02b1_6dd1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5900_02b1_6dd1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5900_02b1_6dd1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbb6_c90d_096b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbb6_c90d_096b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dbb6_c90d_096b/request", "", "public", "Top Dataset, std, slp.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dbb6_c90d_096b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dbb6_c90d_096b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dbb6_c90d_096b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dbb6_c90d_096b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dbb6_c90d_096b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dbb6_c90d_096b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f63d_2dba_ec54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f63d_2dba_ec54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f63d_2dba_ec54/request", "", "public", "Top Dataset, std, slp.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f63d_2dba_ec54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f63d_2dba_ec54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f63d_2dba_ec54/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f63d_2dba_ec54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f63d_2dba_ec54&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f63d_2dba_ec54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dc4_abae_6014", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dc4_abae_6014.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4dc4_abae_6014/request", "", "public", "Top Dataset, std, slp.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4dc4_abae_6014_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4dc4_abae_6014_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4dc4_abae_6014/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4dc4_abae_6014.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4dc4_abae_6014&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4dc4_abae_6014"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5387_0dec_5fa5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5387_0dec_5fa5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5387_0dec_5fa5/request", "", "public", "Top Dataset, std, slp.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5387_0dec_5fa5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5387_0dec_5fa5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5387_0dec_5fa5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5387_0dec_5fa5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5387_0dec_5fa5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5387_0dec_5fa5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e612_f76a_b1bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e612_f76a_b1bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e612_f76a_b1bf/request", "", "public", "Top Dataset, std, slp.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e612_f76a_b1bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e612_f76a_b1bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e612_f76a_b1bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e612_f76a_b1bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e612_f76a_b1bf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e612_f76a_b1bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a31a_efac_d3d6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a31a_efac_d3d6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a31a_efac_d3d6/request", "", "public", "Top Dataset, std, slp.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a31a_efac_d3d6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a31a_efac_d3d6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a31a_efac_d3d6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a31a_efac_d3d6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a31a_efac_d3d6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a31a_efac_d3d6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7665_e04e_34ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7665_e04e_34ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7665_e04e_34ec/request", "", "public", "Top Dataset, std, slp.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7665_e04e_34ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7665_e04e_34ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7665_e04e_34ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7665_e04e_34ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7665_e04e_34ec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7665_e04e_34ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2225_d3d5_6580", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2225_d3d5_6580.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2225_d3d5_6580/request", "", "public", "Top Dataset, std, smina.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2225_d3d5_6580_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2225_d3d5_6580_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2225_d3d5_6580/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2225_d3d5_6580.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2225_d3d5_6580&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2225_d3d5_6580"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dca2_ac6a_6fec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dca2_ac6a_6fec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dca2_ac6a_6fec/request", "", "public", "Top Dataset, std, smina.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dca2_ac6a_6fec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dca2_ac6a_6fec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dca2_ac6a_6fec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dca2_ac6a_6fec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dca2_ac6a_6fec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dca2_ac6a_6fec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f63d_fd77_a5b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f63d_fd77_a5b1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f63d_fd77_a5b1/request", "", "public", "Top Dataset, std, smina.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f63d_fd77_a5b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f63d_fd77_a5b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f63d_fd77_a5b1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f63d_fd77_a5b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f63d_fd77_a5b1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f63d_fd77_a5b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91b7_2287_80e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91b7_2287_80e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_91b7_2287_80e6/request", "", "public", "Top Dataset, std, smina.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_91b7_2287_80e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_91b7_2287_80e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_91b7_2287_80e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_91b7_2287_80e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_91b7_2287_80e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_91b7_2287_80e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca85_01e5_c75e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca85_01e5_c75e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca85_01e5_c75e/request", "", "public", "Top Dataset, std, smina.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca85_01e5_c75e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca85_01e5_c75e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca85_01e5_c75e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca85_01e5_c75e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca85_01e5_c75e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ca85_01e5_c75e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b4c_62d2_eb9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b4c_62d2_eb9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4b4c_62d2_eb9d/request", "", "public", "Top Dataset, std, smina.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4b4c_62d2_eb9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4b4c_62d2_eb9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4b4c_62d2_eb9d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4b4c_62d2_eb9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4b4c_62d2_eb9d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4b4c_62d2_eb9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d54_b65a_ee2b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d54_b65a_ee2b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d54_b65a_ee2b/request", "", "public", "Top Dataset, std, smina.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d54_b65a_ee2b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d54_b65a_ee2b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d54_b65a_ee2b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d54_b65a_ee2b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d54_b65a_ee2b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d54_b65a_ee2b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_201c_f4f7_ace8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_201c_f4f7_ace8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_201c_f4f7_ace8/request", "", "public", "Top Dataset, std, smina.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_201c_f4f7_ace8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_201c_f4f7_ace8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_201c_f4f7_ace8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_201c_f4f7_ace8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_201c_f4f7_ace8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_201c_f4f7_ace8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c1f_729f_0b7f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c1f_729f_0b7f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6c1f_729f_0b7f/request", "", "public", "Top Dataset, std, smina.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6c1f_729f_0b7f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6c1f_729f_0b7f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6c1f_729f_0b7f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6c1f_729f_0b7f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6c1f_729f_0b7f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6c1f_729f_0b7f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_060e_d578_864e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_060e_d578_864e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_060e_d578_864e/request", "", "public", "Top Dataset, std, smina.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_060e_d578_864e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_060e_d578_864e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_060e_d578_864e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_060e_d578_864e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_060e_d578_864e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_060e_d578_864e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2828_6d44_e37e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2828_6d44_e37e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2828_6d44_e37e/request", "", "public", "Top Dataset, std, sst.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2828_6d44_e37e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2828_6d44_e37e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2828_6d44_e37e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2828_6d44_e37e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2828_6d44_e37e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2828_6d44_e37e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6760_111e_b125", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6760_111e_b125.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6760_111e_b125/request", "", "public", "Top Dataset, std, sst.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6760_111e_b125_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6760_111e_b125_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6760_111e_b125/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6760_111e_b125.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6760_111e_b125&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6760_111e_b125"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab73_36e3_5f70", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab73_36e3_5f70.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab73_36e3_5f70/request", "", "public", "Top Dataset, std, sst.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab73_36e3_5f70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab73_36e3_5f70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab73_36e3_5f70/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab73_36e3_5f70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab73_36e3_5f70&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ab73_36e3_5f70"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e1c_b6f3_698a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e1c_b6f3_698a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7e1c_b6f3_698a/request", "", "public", "Top Dataset, std, sst.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7e1c_b6f3_698a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7e1c_b6f3_698a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e1c_b6f3_698a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e1c_b6f3_698a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e1c_b6f3_698a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7e1c_b6f3_698a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9cc_c1fd_1219", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9cc_c1fd_1219.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a9cc_c1fd_1219/request", "", "public", "Top Dataset, std, sst.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9cc_c1fd_1219_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9cc_c1fd_1219_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9cc_c1fd_1219/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9cc_c1fd_1219.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9cc_c1fd_1219&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a9cc_c1fd_1219"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d613_0daf_0f2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d613_0daf_0f2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d613_0daf_0f2a/request", "", "public", "Top Dataset, std, sst.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d613_0daf_0f2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d613_0daf_0f2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d613_0daf_0f2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d613_0daf_0f2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d613_0daf_0f2a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d613_0daf_0f2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f601_edd3_9957", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f601_edd3_9957.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f601_edd3_9957/request", "", "public", "Top Dataset, std, sst.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f601_edd3_9957_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f601_edd3_9957_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f601_edd3_9957/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f601_edd3_9957.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f601_edd3_9957&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f601_edd3_9957"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b9c_0fc6_9226", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b9c_0fc6_9226.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3b9c_0fc6_9226/request", "", "public", "Top Dataset, std, sst.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3b9c_0fc6_9226_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3b9c_0fc6_9226_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3b9c_0fc6_9226/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3b9c_0fc6_9226.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3b9c_0fc6_9226&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3b9c_0fc6_9226"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bcd_e43f_51c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bcd_e43f_51c5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2bcd_e43f_51c5/request", "", "public", "Top Dataset, std, sst.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2bcd_e43f_51c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2bcd_e43f_51c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2bcd_e43f_51c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2bcd_e43f_51c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2bcd_e43f_51c5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2bcd_e43f_51c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5881_405f_f1e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5881_405f_f1e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5881_405f_f1e5/request", "", "public", "Top Dataset, std, sst.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5881_405f_f1e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5881_405f_f1e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5881_405f_f1e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5881_405f_f1e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5881_405f_f1e5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5881_405f_f1e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d306_b00f_66b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d306_b00f_66b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d306_b00f_66b0/request", "", "public", "Top Dataset, std, uairt.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d306_b00f_66b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d306_b00f_66b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d306_b00f_66b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d306_b00f_66b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d306_b00f_66b0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d306_b00f_66b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ffd_e7af_88e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ffd_e7af_88e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6ffd_e7af_88e5/request", "", "public", "Top Dataset, std, uairt.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6ffd_e7af_88e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6ffd_e7af_88e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ffd_e7af_88e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ffd_e7af_88e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ffd_e7af_88e5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6ffd_e7af_88e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a5e_5816_a5f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a5e_5816_a5f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a5e_5816_a5f1/request", "", "public", "Top Dataset, std, uairt.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a5e_5816_a5f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a5e_5816_a5f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a5e_5816_a5f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a5e_5816_a5f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a5e_5816_a5f1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5a5e_5816_a5f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2aef_1916_6694", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2aef_1916_6694.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2aef_1916_6694/request", "", "public", "Top Dataset, std, uairt.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2aef_1916_6694_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2aef_1916_6694_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2aef_1916_6694/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2aef_1916_6694.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2aef_1916_6694&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2aef_1916_6694"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da6b_ac2e_afe9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da6b_ac2e_afe9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da6b_ac2e_afe9/request", "", "public", "Top Dataset, std, uairt.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da6b_ac2e_afe9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da6b_ac2e_afe9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da6b_ac2e_afe9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da6b_ac2e_afe9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da6b_ac2e_afe9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_da6b_ac2e_afe9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5c1_642c_9333", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5c1_642c_9333.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5c1_642c_9333/request", "", "public", "Top Dataset, std, uairt.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5c1_642c_9333_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5c1_642c_9333_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5c1_642c_9333/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5c1_642c_9333.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5c1_642c_9333&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e5c1_642c_9333"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd1c_144f_b69e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd1c_144f_b69e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bd1c_144f_b69e/request", "", "public", "Top Dataset, std, uairt.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bd1c_144f_b69e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bd1c_144f_b69e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bd1c_144f_b69e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bd1c_144f_b69e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bd1c_144f_b69e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bd1c_144f_b69e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ae4_81e1_db62", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ae4_81e1_db62.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ae4_81e1_db62/request", "", "public", "Top Dataset, std, uairt.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ae4_81e1_db62_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ae4_81e1_db62_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ae4_81e1_db62/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ae4_81e1_db62.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ae4_81e1_db62&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1ae4_81e1_db62"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9205_71b3_8443", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9205_71b3_8443.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9205_71b3_8443/request", "", "public", "Top Dataset, std, uairt.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9205_71b3_8443_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9205_71b3_8443_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9205_71b3_8443/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9205_71b3_8443.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9205_71b3_8443&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9205_71b3_8443"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f2e_f3d4_e7e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f2e_f3d4_e7e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4f2e_f3d4_e7e0/request", "", "public", "Top Dataset, std, uairt.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4f2e_f3d4_e7e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4f2e_f3d4_e7e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4f2e_f3d4_e7e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4f2e_f3d4_e7e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4f2e_f3d4_e7e0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4f2e_f3d4_e7e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_142d_4483_7819", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_142d_4483_7819.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_142d_4483_7819/request", "", "public", "Top Dataset, std, ulflx.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_142d_4483_7819_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_142d_4483_7819_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_142d_4483_7819/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_142d_4483_7819.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_142d_4483_7819&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_142d_4483_7819"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b01d_298c_d242", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b01d_298c_d242.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b01d_298c_d242/request", "", "public", "Top Dataset, std, ulflx.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b01d_298c_d242_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b01d_298c_d242_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b01d_298c_d242/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b01d_298c_d242.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b01d_298c_d242&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b01d_298c_d242"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60cb_6313_acdf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60cb_6313_acdf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_60cb_6313_acdf/request", "", "public", "Top Dataset, std, ulflx.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_60cb_6313_acdf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_60cb_6313_acdf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_60cb_6313_acdf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_60cb_6313_acdf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_60cb_6313_acdf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_60cb_6313_acdf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7071_02cf_2587", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7071_02cf_2587.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7071_02cf_2587/request", "", "public", "Top Dataset, std, ulflx.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7071_02cf_2587_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7071_02cf_2587_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7071_02cf_2587/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7071_02cf_2587.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7071_02cf_2587&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7071_02cf_2587"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d3c_6b78_8566", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d3c_6b78_8566.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d3c_6b78_8566/request", "", "public", "Top Dataset, std, ulflx.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d3c_6b78_8566_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d3c_6b78_8566_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d3c_6b78_8566/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d3c_6b78_8566.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d3c_6b78_8566&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1d3c_6b78_8566"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be25_d2df_115f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be25_d2df_115f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_be25_d2df_115f/request", "", "public", "Top Dataset, std, ulflx.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_be25_d2df_115f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_be25_d2df_115f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_be25_d2df_115f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_be25_d2df_115f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_be25_d2df_115f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_be25_d2df_115f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5f8_f037_68fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5f8_f037_68fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d5f8_f037_68fb/request", "", "public", "Top Dataset, std, ulflx.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d5f8_f037_68fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d5f8_f037_68fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d5f8_f037_68fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d5f8_f037_68fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d5f8_f037_68fb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d5f8_f037_68fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d35_d6cc_190b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d35_d6cc_190b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d35_d6cc_190b/request", "", "public", "Top Dataset, std, ulflx.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d35_d6cc_190b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d35_d6cc_190b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d35_d6cc_190b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d35_d6cc_190b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d35_d6cc_190b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4d35_d6cc_190b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c47_8c32_a872", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c47_8c32_a872.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2c47_8c32_a872/request", "", "public", "Top Dataset, std, ulflx.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2c47_8c32_a872_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2c47_8c32_a872_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2c47_8c32_a872/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2c47_8c32_a872.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2c47_8c32_a872&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2c47_8c32_a872"] + ] + } + } + recorded_at: 2019-01-31 19:30:23 GMT + recorded_with: vcr/0.2.2, webmockr/0.3.0 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/search/advanced.json?searchFor=temperature&page=1&itemsPerPage=1000&protocol=griddap + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.7.0.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Thu, 31 Jan 2019 19:31:14 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=AdvancedSearch.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb9a_8f65_4783", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb9a_8f65_4783.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb9a_8f65_4783/request", "", "public", "Top Dataset, std, air.mon.anom.biased2.5 (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.biased2.5.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly 2.5 Bias Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb9a_8f65_4783_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb9a_8f65_4783_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb9a_8f65_4783/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb9a_8f65_4783.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb9a_8f65_4783&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fb9a_8f65_4783"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08b8_4b79_072d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08b8_4b79_072d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_08b8_4b79_072d/request", "", "public", "Top Dataset, std, air.mon.anom.biased97.5 (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.biased97.5.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly 97.5 Bias Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_08b8_4b79_072d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_08b8_4b79_072d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_08b8_4b79_072d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_08b8_4b79_072d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_08b8_4b79_072d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_08b8_4b79_072d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca10_45fa_9108", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca10_45fa_9108.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca10_45fa_9108/request", "", "public", "CRUTEM4 Air Temperature Dataset (Top Dataset, std, air.mon.anom), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca10_45fa_9108_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca10_45fa_9108_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca10_45fa_9108/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca10_45fa_9108.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca10_45fa_9108&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ca10_45fa_9108"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fc4_7974_6ee1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fc4_7974_6ee1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8fc4_7974_6ee1/request", "", "public", "Top Dataset, std, air.mon.anom.nobs (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.nobs.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Number of Observations, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8fc4_7974_6ee1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8fc4_7974_6ee1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8fc4_7974_6ee1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8fc4_7974_6ee1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8fc4_7974_6ee1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8fc4_7974_6ee1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1123_8add_cc23", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1123_8add_cc23.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1123_8add_cc23/request", "", "public", "Top Dataset, std, air.mon.anom.samplingerror (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.samplingerror.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Sampling Error, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1123_8add_cc23_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1123_8add_cc23_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1123_8add_cc23/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1123_8add_cc23.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1123_8add_cc23&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1123_8add_cc23"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7168_64d1_22b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7168_64d1_22b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7168_64d1_22b7/request", "", "public", "Top Dataset, std, air.mon.anom.stationerror (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.stationerror.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Station Errors, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7168_64d1_22b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7168_64d1_22b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7168_64d1_22b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7168_64d1_22b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7168_64d1_22b7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7168_64d1_22b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5523_8517_2d0a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5523_8517_2d0a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5523_8517_2d0a/request", "", "public", "CRUTEM4 Air Temperature Dataset (Top Dataset, std, air.mon.mean), 5.0\u00b0, 1851-2018", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.mean.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5523_8517_2d0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5523_8517_2d0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5523_8517_2d0a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5523_8517_2d0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5523_8517_2d0a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5523_8517_2d0a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7944_c525_7af1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7944_c525_7af1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7944_c525_7af1/request", "", "public", "CRUTEM4 Air Temperature Dataset (Top Dataset, var, air.mon.anom), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/var/air.mon.anom.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4V: Surface Air Temperature Monthly Anomaly Variance Adjusted, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7944_c525_7af1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7944_c525_7af1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7944_c525_7af1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7944_c525_7af1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7944_c525_7af1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7944_c525_7af1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff85_13e0_9b4c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff85_13e0_9b4c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff85_13e0_9b4c/request", "", "public", "CRU Combined Surface/Marine Air Temperature Climatology 1961-1990. (air.mon.ltm), 5.0\u00b0, 0001", "Climatic Research Unit (CRU) Combined Surface/Marine Air Temperature Climatology 1961-1990. (Top Dataset, ltm, air.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRU Combined Surface/Marine Air Temperature Monthly Climatology, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff85_13e0_9b4c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff85_13e0_9b4c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff85_13e0_9b4c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.hadcru3.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff85_13e0_9b4c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff85_13e0_9b4c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ff85_13e0_9b4c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db71_e764_2972", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db71_e764_2972.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db71_e764_2972/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom.biased2.5), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.biased2.5.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly 2.5 Bias Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db71_e764_2972_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db71_e764_2972_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db71_e764_2972/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db71_e764_2972.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db71_e764_2972&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_db71_e764_2972"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b69_a9bd_e36a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b69_a9bd_e36a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b69_a9bd_e36a/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom.biased97.5), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.biased97.5.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly 97.5 Bias Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b69_a9bd_e36a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b69_a9bd_e36a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b69_a9bd_e36a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b69_a9bd_e36a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b69_a9bd_e36a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6b69_a9bd_e36a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e9a_1f1a_237c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e9a_1f1a_237c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6e9a_1f1a_237c/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom.mserror), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.mserror.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly M+S Errors, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6e9a_1f1a_237c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6e9a_1f1a_237c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6e9a_1f1a_237c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6e9a_1f1a_237c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6e9a_1f1a_237c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6e9a_1f1a_237c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e0c_7b02_93a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e0c_7b02_93a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e0c_7b02_93a0/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e0c_7b02_93a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e0c_7b02_93a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e0c_7b02_93a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e0c_7b02_93a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e0c_7b02_93a0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3e0c_7b02_93a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_069d_ff4e_902c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_069d_ff4e_902c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_069d_ff4e_902c/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom.stationerror), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.stationerror.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly Station Errors, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_069d_ff4e_902c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_069d_ff4e_902c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_069d_ff4e_902c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_069d_ff4e_902c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_069d_ff4e_902c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_069d_ff4e_902c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f29a_8f1c_b66a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f29a_8f1c_b66a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f29a_8f1c_b66a/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly Variance Adjusted (air.mon.anom), 5.0\u00b0, 1850-2014", "This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/var/air.mon.anom.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3V: Surface Air Temperature Monthly Anomaly Variance Adjusted, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f29a_8f1c_b66a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f29a_8f1c_b66a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f29a_8f1c_b66a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f29a_8f1c_b66a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f29a_8f1c_b66a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f29a_8f1c_b66a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2454_f596_6532", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2454_f596_6532.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2454_f596_6532/request", "", "public", "HADCRUT4 Combined Air Temperature/SST Anomaly Error (Top Dataset, hadcrut4, air.mon.anom.error), 5.0\u00b0, 1850-present", "HADCRUT4 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly Error. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut4/air.mon.anom.error.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT4: Median Surface Air Temperature Monthly Median Anomaly Error from 100 ensemble members, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2454_f596_6532_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2454_f596_6532_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2454_f596_6532/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.hadcrut4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2454_f596_6532.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2454_f596_6532&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2454_f596_6532"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87e4_c3bd_8e9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87e4_c3bd_8e9f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_87e4_c3bd_8e9f/request", "", "public", "HADCRUT4 Combined Air Temperature/SST Anomaly (Top Dataset, hadcrut4, air.mon.anom.median), 5.0\u00b0, 1850-present", "HADCRUT4 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut4/air.mon.anom.median.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT4: Median Surface Air Temperature Monthly Median Anomaly from 100 ensemble members, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_87e4_c3bd_8e9f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_87e4_c3bd_8e9f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_87e4_c3bd_8e9f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.hadcrut4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_87e4_c3bd_8e9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_87e4_c3bd_8e9f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_87e4_c3bd_8e9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e74_4bc8_6541", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e74_4bc8_6541.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2e74_4bc8_6541/request", "", "public", "HADCRUT4 Combined Air Temperature/SST Anomaly (Top Dataset, hadcrut4, air.mon.ltm), 5.0\u00b0, 0001", "HADCRUT4 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut4/air.mon.ltm.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean HADCRUT4: Median Surface Air Temperature Monthly Median Anomaly from 100 ensemble members, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2e74_4bc8_6541_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2e74_4bc8_6541_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2e74_4bc8_6541/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.hadcrut4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2e74_4bc8_6541.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2e74_4bc8_6541&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2e74_4bc8_6541"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a2f_0bd6_7d46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a2f_0bd6_7d46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a2f_0bd6_7d46/request", "", "public", "NOAA/NCEP GHCN CAMS Monthly Temperature (Top Dataset, ghcncams, air.mon.mean), 0.5\u00b0, 1948-present", "NOAA/National Centers for Environmental Prediction (NCEP) Global Historical Climatology Network (GHCN) Climate Anomaly Monitoring System (CAMS) Monthly Temperature (Top Dataset, ghcncams, air.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly mean of surface temperature, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a2f_0bd6_7d46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a2f_0bd6_7d46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a2f_0bd6_7d46/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ghcncams.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a2f_0bd6_7d46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a2f_0bd6_7d46&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7a2f_0bd6_7d46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a52_974c_51c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a52_974c_51c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a52_974c_51c3/request", "", "public", "GHCN version 3 Land Temperature Anomalies from GHCN-M V3.2.1 (air.mon.anom), 5.0\u00b0, 1880-present", "Global Historical Climatology Network (GHCN) version 3 Land Temperature Anomalies from GHCN-M V3.2.1 (Top Dataset, ghcngridded, air.mon.anom)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (GHCN V3.2.1 Gridded Air Temperature Anomalies, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a52_974c_51c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a52_974c_51c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a52_974c_51c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ghcnv2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a52_974c_51c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a52_974c_51c3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6a52_974c_51c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59d9_7395_d51c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_59d9_7395_d51c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_59d9_7395_d51c/request", "", "public", "Top Dataset, jmatemp, air.mon.anom (JMA Air Temperature), 5.0\u00b0, 1891-2017", "Japanese Meteorological Agency (JMA) Air Temperature (Top Dataset, jmatemp, air.mon.anom)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Surface Air Temperature and SST Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_59d9_7395_d51c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_59d9_7395_d51c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_59d9_7395_d51c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.jmatemp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_59d9_7395_d51c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_59d9_7395_d51c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_59d9_7395_d51c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e48_50e0_5563", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e48_50e0_5563.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7e48_50e0_5563/request", "", "public", "Top Dataset, jmatemp, air.mon.ltm.1981-2010 (JMA Air Temperature), 5.0\u00b0, 0001", "Japanese Meteorological Agency (JMA) Air Temperature (Top Dataset, jmatemp, air.mon.ltm.1981-2010)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Surface Air Temperature and SST Monthly Anomaly, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7e48_50e0_5563_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7e48_50e0_5563_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e48_50e0_5563/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.jmatemp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e48_50e0_5563.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e48_50e0_5563&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7e48_50e0_5563"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d54_f835_418e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d54_f835_418e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9d54_f835_418e/request", "", "public", "NOAA Merged Land-Ocean Surface Temperature (Top Dataset, mlost, air.mon.anom.v3.54), 5.0\u00b0, 1880-2015", "NOAA Merged Land-Ocean Surface Temperature Analysis (Top Dataset, mlost, air.mon.anom.v3.54)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Surface Air Temperature and SST Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9d54_f835_418e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9d54_f835_418e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9d54_f835_418e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.mlost.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9d54_f835_418e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9d54_f835_418e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9d54_f835_418e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e48_32de_0b48", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e48_32de_0b48.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e48_32de_0b48/request", "", "public", "Apr longterm mean diurnal cycle air temperature from the NCEP Reanalysis (airapr.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for April, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e48_32de_0b48_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e48_32de_0b48_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e48_32de_0b48/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e48_32de_0b48.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e48_32de_0b48&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_8e48_32de_0b48"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37eb_c4e6_9e14", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37eb_c4e6_9e14.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_37eb_c4e6_9e14/request", "", "public", "Jan longterm mean diurnal cycle air temperature from the NCEP Reanalysis (airjan.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for January, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_37eb_c4e6_9e14_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_37eb_c4e6_9e14_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_37eb_c4e6_9e14/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_37eb_c4e6_9e14.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_37eb_c4e6_9e14&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_37eb_c4e6_9e14"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c667_f1d9_c606", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c667_f1d9_c606.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c667_f1d9_c606/request", "", "public", "Jul longterm mean diurnal cycle air temperature from the NCEP Reanalysis (airjul.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for July, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c667_f1d9_c606_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c667_f1d9_c606_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c667_f1d9_c606/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c667_f1d9_c606.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c667_f1d9_c606&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_c667_f1d9_c606"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a71e_9825_5150", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a71e_9825_5150.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a71e_9825_5150/request", "", "public", "Oct longterm mean diurnal cycle air temperature from the NCEP Reanalysis (airoct.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are interpolated to pressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for October, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a71e_9825_5150_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a71e_9825_5150_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a71e_9825_5150/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a71e_9825_5150.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a71e_9825_5150&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_a71e_9825_5150"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b248_0ade_c33f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b248_0ade_c33f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b248_0ade_c33f/request", "", "public", "NCEP Reanalysis Diurnal Cycle Surface Air Temperature (airsfcapr.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for April, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b248_0ade_c33f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b248_0ade_c33f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b248_0ade_c33f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b248_0ade_c33f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b248_0ade_c33f&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_b248_0ade_c33f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0b0_2f2e_629c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0b0_2f2e_629c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f0b0_2f2e_629c/request", "", "public", "NCEP Reanalysis Diurnal Cycle Surface Air Temperature (airsfcjan.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for January, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f0b0_2f2e_629c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f0b0_2f2e_629c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f0b0_2f2e_629c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f0b0_2f2e_629c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f0b0_2f2e_629c&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_f0b0_2f2e_629c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e20_c60c_81f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e20_c60c_81f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4e20_c60c_81f2/request", "", "public", "NCEP Reanalysis Diurnal Cycle Surface Air Temperature (airsfcjul.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for July, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4e20_c60c_81f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4e20_c60c_81f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4e20_c60c_81f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4e20_c60c_81f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4e20_c60c_81f2&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_4e20_c60c_81f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fced_49d1_25d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fced_49d1_25d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fced_49d1_25d5/request", "", "public", "NCEP Reanalysis Diurnal Cycle Surface Air Temperature (airsfcoct.mon.dailyanom), 2.5\u00b0, 0001", "Data from National Centers for Environmental Prediction (NCEP) initialized reanalysis (4x/day). These are the 0.9950 sigma level values\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Diurnal Cycle Anomaly of Air Temperature for October, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fced_49d1_25d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fced_49d1_25d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fced_49d1_25d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fced_49d1_25d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fced_49d1_25d5&showErrors=false&email=", "NOAA NWS NCEP, NCAR", "noaa_esrl_fced_49d1_25d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e2c_a437_16c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e2c_a437_16c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5e2c_a437_16c1/request", "", "public", "Top Dataset, noaaglobaltemp, air.mon.anom.1971-2000 (NOAA Global Temperature), 5.0\u00b0, 0001", "NOAA Global Temperature (Top Dataset, noaaglobaltemp, air.mon.anom.1971-2000)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Surface Air Temperature and SST Monthly Anomaly, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5e2c_a437_16c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5e2c_a437_16c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5e2c_a437_16c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaaglobaltemp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5e2c_a437_16c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5e2c_a437_16c1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5e2c_a437_16c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4522_b5db_5cc8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4522_b5db_5cc8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4522_b5db_5cc8/request", "", "public", "Top Dataset, noaaglobaltemp, air.mon.anom.1981-2010 (NOAA Global Temperature), 5.0\u00b0, 0001", "NOAA Global Temperature (Top Dataset, noaaglobaltemp, air.mon.anom.1981-2010)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Surface Air Temperature and SST Monthly Anomaly, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4522_b5db_5cc8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4522_b5db_5cc8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4522_b5db_5cc8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaaglobaltemp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4522_b5db_5cc8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4522_b5db_5cc8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4522_b5db_5cc8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdc8_eec8_0c79", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdc8_eec8_0c79.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bdc8_eec8_0c79/request", "", "public", "Top Dataset, noaaglobaltemp, air.mon.anom (NOAA Global Temperature), 5.0\u00b0, 1880-present", "NOAA Global Temperature (Top Dataset, noaaglobaltemp, air.mon.anom)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Surface Air Temperature and SST Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bdc8_eec8_0c79_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bdc8_eec8_0c79_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bdc8_eec8_0c79/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaaglobaltemp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bdc8_eec8_0c79.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bdc8_eec8_0c79&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bdc8_eec8_0c79"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89c1_20dd_0d9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89c1_20dd_0d9f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_89c1_20dd_0d9f/request", "", "public", "NOAA Merged Land-Ocean Surface Temperature (Top Dataset, noaaglobaltemp, lsmask), 5.0\u00b0, 2000", "NOAA Merged Land-Ocean Surface Temperature Analysis (Top Dataset, noaaglobaltemp, lsmask)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlsmask (Surface Air Temperature and SST Land Mask, fraction)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_89c1_20dd_0d9f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_89c1_20dd_0d9f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_89c1_20dd_0d9f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.noaaglobaltemp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_89c1_20dd_0d9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_89c1_20dd_0d9f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_89c1_20dd_0d9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_307f_7a28_c260", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_307f_7a28_c260.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_307f_7a28_c260/request", "", "public", "Terrestrial Air Temperature and Precipitation: V4.01 (air.mon.ltm.v401), 0.5\u00b0, 0001", "Terrestrial Air Temperature and Precipitation: V4.01 (Top Dataset, udel.airt.precip, air.mon.ltm.v401)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly mean of surface temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_307f_7a28_c260_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_307f_7a28_c260_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_307f_7a28_c260/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.UDel_AirT_Precip.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_307f_7a28_c260.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_307f_7a28_c260&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_307f_7a28_c260"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d99a_9d42_4732", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d99a_9d42_4732.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d99a_9d42_4732/request", "", "public", "Terrestrial Air Temperature and Precipitation: V4.01 (air.mon.mean.v401), 0.5\u00b0, 1900-2014", "Terrestrial Air Temperature and Precipitation: V4.01 (Top Dataset, udel.airt.precip, air.mon.mean.v401)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly mean of surface temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d99a_9d42_4732_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d99a_9d42_4732_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d99a_9d42_4732/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.UDel_AirT_Precip.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d99a_9d42_4732.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d99a_9d42_4732&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d99a_9d42_4732"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_90a6_5d19_d812", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_90a6_5d19_d812.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_90a6_5d19_d812/request", "", "public", "Terrestrial Air Temperature and Precipitation: V4.01 (precip.mon.ltm.v401), 0.5\u00b0, 0001", "Terrestrial Air Temperature and Precipitation: V4.01 (Top Dataset, udel.airt.precip, precip.mon.ltm.v401)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Long Term Mean Monthly total of precipitation, cm)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_90a6_5d19_d812_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_90a6_5d19_d812_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_90a6_5d19_d812/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.UDel_AirT_Precip.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_90a6_5d19_d812.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_90a6_5d19_d812&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_90a6_5d19_d812"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4628_387e_f7bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4628_387e_f7bc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4628_387e_f7bc/request", "", "public", "Terrestrial Air Temperature and Precipitation: V4.01 (precip.mon.total.v401), 0.5\u00b0, 1900-2014", "Terrestrial Air Temperature and Precipitation: V4.01 (Top Dataset, udel.airt.precip, precip.mon.total.v401)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Monthly total of precipitation, cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4628_387e_f7bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4628_387e_f7bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4628_387e_f7bc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.UDel_AirT_Precip.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4628_387e_f7bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4628_387e_f7bc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4628_387e_f7bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKastdhday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKastdhday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKastdhday/request", "", "public", "Temperature, All Surface, POES AVHRR, LAC, Alaska, Daytime, 2005-2008 (Hourly)", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKastdhday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKastdhday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKastdhday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_astd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKastdhday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKastdhday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKastdhday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastdhday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastdhday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATastdhday/request", "", "public", "Temperature, All Surface, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Daytime, 2006-present (Single Scan)", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATastdhday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATastdhday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATastdhday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_astd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATastdhday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATastdhday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATastdhday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastnhday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastnhday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATastnhday/request", "", "public", "Temperature, All Surface, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Nighttime, 2006-present (Single Scan)", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATastnhday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATastnhday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATastnhday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_astn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATastnhday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATastnhday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATastnhday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWsstn1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWsstn1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWsstn1day/request", "", "public", "Coral Reef Watch, Nighttime Temperature, 50 km, 2000-2011 (1 Day Composite)", "NOAA Coral Reef Watch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWsstn1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWsstn1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWsstn1day/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWsstn1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWsstn1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWsstn1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWtanm1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWtanm1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWtanm1day/request", "", "public", "Coral Reef Watch, Temperature Anomaly, 50 km, 2000-2011 (1 Day Composite)", "NOAA Coral Reef Watch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWtanm1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWtanm1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWtanm1day/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWtanm1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWtanm1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWtanm1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdHadISST", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdHadISST.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdHadISST/request", "", "public", "HadISST Average Sea Surface Temperature, 1\u00b0, Global, Monthly, 1870-present", "The Met Office Hadley Centre's sea ice and sea surface temperature (SST) data set, HadISST1, replaces the Global sea Ice and Sea Surface Temperature (GISST) data sets, and is a unique combination of monthly globally-complete fields of SST and sea ice concentration on a 1 degree latitude-longitude grid from 1870 to date. \n \nWARNING: 10 March 2016: A detailed analysis of HadISST (https://ir.library.oregonstate.edu/xmlui/handle/1957/58385) has identified a number of problems, some of which might limit the utility of the dataset for certain scientific applications, particularly where high resolution SST data or spatial gradients of SST are required. Thanks to Dudley Chelton and Craig Risien for bringing this to our attention and their detailed analysis. \n\nThe SST data are taken from the Met Office Marine Data Bank (MDB), which from 1982 onwards also includes data received through the Global Telecommunications System (GTS). In order to enhance data coverage, monthly median SSTs for 1871-1995 from the Comprehensive Ocean-Atmosphere Data Set (COADS) (now ICOADS) were also used where there were no MDB data.\n\nHadISST1 temperatures are reconstructed using a two stage reduced-space optimal interpolation procedure, followed by superposition of quality-improved gridded observations onto the reconstructions to restore local detail. SSTs near sea ice are estimated using statistical relationships between SST and sea ice concentration.\n\nData restrictions: for academic research use only.\n\nUpdates and supplementary information will be available from http://www.hadobs.org\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdHadISST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdHadISST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdHadISST/index.json", "http://hadobs.metoffice.com/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdHadISST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdHadISST&showErrors=false&email=", "Met Office Hadley Centre", "erdHadISST"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKastdhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKastdhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKastdhday_LonPM180/request", "", "public", "Temperature, All Surface, POES AVHRR, LAC, Alaska, Daytime, 2005-2008 (Hourly), Lon+/-180", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKastdhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKastdhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKastdhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_astd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKastdhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKastdhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKastdhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastdhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastdhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATastdhday_LonPM180/request", "", "public", "Temperature, All Surface, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Daytime, 2006-present (Single Scan), Lon+/-180", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATastdhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATastdhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATastdhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_astd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATastdhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATastdhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATastdhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastnhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastnhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATastnhday_LonPM180/request", "", "public", "Temperature, All Surface, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Nighttime, 2006-present (Single Scan), Lon+/-180", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATastnhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATastnhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATastnhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_astn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATastnhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATastnhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATastnhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWsstn1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWsstn1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWsstn1day_LonPM180/request", "", "public", "Coral Reef Watch, Nighttime Temperature, 50 km, 2000-2011 (1 Day Composite), Lon+/-180", "NOAA Coral Reef Watch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWsstn1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWsstn1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWsstn1day_LonPM180/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWsstn1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWsstn1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWsstn1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWtanm1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWtanm1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWtanm1day_LonPM180/request", "", "public", "Coral Reef Watch, Temperature Anomaly, 50 km, 2000-2011 (1 Day Composite), Lon+/-180", "NOAA Coral Reef Watch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWtanm1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWtanm1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWtanm1day_LonPM180/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWtanm1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWtanm1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWtanm1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann1t", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann1t.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09ann1t/request", "", "public", "World Ocean Atlas 2009, Annual Climatology, 1 degree, Temperature, Salinity, Oxygen", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (1 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for an annual compositing period for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 1 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_an (Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_ma (Seasonal or Monthly Climatology minus Annual Climatology, degree_C)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\ntemperature_gp (Number of Temperature Mean Values within Radius of Influence, count)\nsalinity_an (Objectively Analyzed Practical Salinity Climatology, PSS-78)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_ma (Seasonal or Monthly Climatology minus Annual Climatology, PSU)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\nsalinity_gp (Number of Salinity Mean Values within Radius of Influence, count)\noxygenSat_an (Objectively Analyzed Oxygen Saturation Climatology, 1)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_ma (Seasonal or Monthly Climatology minus Annual Climatology, 1)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\noxygenSat_gp (Number of Oxygen Saturation Mean Values within Radius of Influence, count)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09ann1t_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09ann1t_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09ann1t/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09ann1t.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09ann1t&showErrors=false&email=", "NOAA NODC", "nodcWoa09ann1t"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann1t_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann1t_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09ann1t_LonPM180/request", "", "public", "World Ocean Atlas 2009, Annual Climatology, 1 degree, Temperature, Salinity, Oxygen, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (1 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for an annual compositing period for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 1 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_an (Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_ma (Seasonal or Monthly Climatology minus Annual Climatology, degree_C)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\ntemperature_gp (Number of Temperature Mean Values within Radius of Influence, count)\nsalinity_an (Objectively Analyzed Practical Salinity Climatology, PSS-78)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_ma (Seasonal or Monthly Climatology minus Annual Climatology, PSU)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\nsalinity_gp (Number of Salinity Mean Values within Radius of Influence, count)\noxygenSat_an (Objectively Analyzed Oxygen Saturation Climatology, 1)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_ma (Seasonal or Monthly Climatology minus Annual Climatology, 1)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\noxygenSat_gp (Number of Oxygen Saturation Mean Values within Radius of Influence, count)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09ann1t_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09ann1t_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09ann1t_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09ann1t_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09ann1t_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09ann1t_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann5t", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann5t.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09ann5t/request", "", "public", "World Ocean Atlas 2009, Annual Climatology, 5 degree, Temperature, Salinity, Oxygen", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for an annual compositing period for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\ndisOxygen_mn (Mean of Dissolved Oxygen Observations, ml/l)\ndisOxygen_dd (Number of Dissolved Oxygen Observations, count)\ndisOxygen_sd (Standard Deviation of Dissolved Oxygen Observations, ml/l)\ndisOxygen_se (Standard Error of Dissolved Oxygen Observations, ml/l)\nAOU_mn (Mean of Apparent Oxygen Utilization Observations, ml/l)\nAOU_dd (Number of Apparent Oxygen Utilization Observations, count)\nAOU_sd (Standard Deviation of Apparent Oxygen Utilization Observations, ml/l)\nAOU_se (Standard Error of Apparent Oxygen Utilization Observations, ml/l)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09ann5t_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09ann5t_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09ann5t/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09ann5t.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09ann5t&showErrors=false&email=", "NOAA NODC", "nodcWoa09ann5t"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann5t_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann5t_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09ann5t_LonPM180/request", "", "public", "World Ocean Atlas 2009, Annual Climatology, 5 degree, Temperature, Salinity, Oxygen, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for an annual compositing period for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\ndisOxygen_mn (Mean of Dissolved Oxygen Observations, ml/l)\ndisOxygen_dd (Number of Dissolved Oxygen Observations, count)\ndisOxygen_sd (Standard Deviation of Dissolved Oxygen Observations, ml/l)\ndisOxygen_se (Standard Error of Dissolved Oxygen Observations, ml/l)\nAOU_mn (Mean of Apparent Oxygen Utilization Observations, ml/l)\nAOU_dd (Number of Apparent Oxygen Utilization Observations, count)\nAOU_sd (Standard Deviation of Apparent Oxygen Utilization Observations, ml/l)\nAOU_se (Standard Error of Apparent Oxygen Utilization Observations, ml/l)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09ann5t_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09ann5t_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09ann5t_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09ann5t_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09ann5t_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09ann5t_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon1t", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon1t.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09mon1t/request", "", "public", "World Ocean Atlas 2009, Monthly Climatology, 1 degree, Temperature, Salinity, Oxygen", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (1 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for monthly compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 1 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_an (Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_ma (Monthly Temperature Climatology minus Annual Climatology, degree_C)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\ntemperature_oa (Temperature Mean minus Objectively Analyzed Climatology, degree_C)\ntemperature_gp (Number of Temperature Mean Values within Radius of Influence, count)\nsalinity_an (Objectively Analyzed Practical Salinity Climatology, PSS-78)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_ma (Monthly Salinity Climatology minus Annual Climatology, PSU)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\nsalinity_oa (Salinity Mean minus Objectively Analyzed Climatology, PSU)\nsalinity_gp (Number of Salinity Mean Values within Radius of Influence, count)\noxygenSat_an (Objectively Analyzed Oxygen Saturation Climatology, 1)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_ma (Monthly Oxygen Saturation Climatology minus Annual Climatology, 1)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09mon1t_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09mon1t_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09mon1t/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09mon1t.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09mon1t&showErrors=false&email=", "NOAA NODC", "nodcWoa09mon1t"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon1t_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon1t_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09mon1t_LonPM180/request", "", "public", "World Ocean Atlas 2009, Monthly Climatology, 1 degree, Temperature, Salinity, Oxygen, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (1 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for monthly compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 1 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_an (Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_ma (Monthly Temperature Climatology minus Annual Climatology, degree_C)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\ntemperature_oa (Temperature Mean minus Objectively Analyzed Climatology, degree_C)\ntemperature_gp (Number of Temperature Mean Values within Radius of Influence, count)\nsalinity_an (Objectively Analyzed Practical Salinity Climatology, PSS-78)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_ma (Monthly Salinity Climatology minus Annual Climatology, PSU)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\nsalinity_oa (Salinity Mean minus Objectively Analyzed Climatology, PSU)\nsalinity_gp (Number of Salinity Mean Values within Radius of Influence, count)\noxygenSat_an (Objectively Analyzed Oxygen Saturation Climatology, 1)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_ma (Monthly Oxygen Saturation Climatology minus Annual Climatology, 1)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09mon1t_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09mon1t_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09mon1t_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09mon1t_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09mon1t_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09mon1t_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon5t", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon5t.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09mon5t/request", "", "public", "World Ocean Atlas 2009, Monthly Climatology, 5 degree, Temperature, Salinity, Oxygen", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for monthly compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsslinity_dd (Number of Salinity Observations, count)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\ndisOxygen_mn (Mean of Dissolved Oxygen Observations, ml/l)\ndisOxygen_dd (Number of Dissolved Oxygen Observations, count)\ndisOxygen_sd (Standard Deviation of Dissolved Oxygen Observations, ml/l)\ndisOxygen_se (Standard Error of Dissolved Oxygen Observations, ml/l)\nAOU_mn (Mean of Apparent Oxygen Utilization Observations, ml/l)\nAOU_dd (Number of Apparent Oxygen Utilization Observations, count)\nAOU_sd (Standard Deviation of Apparent Oxygen Utilization Observations, ml/l)\nAOU_se (Standard Error of Apparent Oxygen Utilization Observations, ml/l)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09mon5t_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09mon5t_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09mon5t/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09mon5t.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09mon5t&showErrors=false&email=", "NOAA NODC", "nodcWoa09mon5t"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon5t_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon5t_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09mon5t_LonPM180/request", "", "public", "World Ocean Atlas 2009, Monthly Climatology, 5 degree, Temperature, Salinity, Oxygen, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for monthly compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsslinity_dd (Number of Salinity Observations, count)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\ndisOxygen_mn (Mean of Dissolved Oxygen Observations, ml/l)\ndisOxygen_dd (Number of Dissolved Oxygen Observations, count)\ndisOxygen_sd (Standard Deviation of Dissolved Oxygen Observations, ml/l)\ndisOxygen_se (Standard Error of Dissolved Oxygen Observations, ml/l)\nAOU_mn (Mean of Apparent Oxygen Utilization Observations, ml/l)\nAOU_dd (Number of Apparent Oxygen Utilization Observations, count)\nAOU_sd (Standard Deviation of Apparent Oxygen Utilization Observations, ml/l)\nAOU_se (Standard Error of Apparent Oxygen Utilization Observations, ml/l)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09mon5t_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09mon5t_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09mon5t_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09mon5t_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09mon5t_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09mon5t_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea1t", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea1t.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09sea1t/request", "", "public", "World Ocean Atlas 2009, Seasonal Climatology, 1 degree, Temperature, Salinity, Oxygen", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (1 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for seasonal compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 1 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_an (Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_ma (Temperature Monthly Minus Annual Climatology, degree_C)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\ntemperature_oa (Statistical Mean minus Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_gp (Number of Mean Temperature Values within Radius of Influence, count)\nsalinity_an (Objectively Analyzed Practical Salinity Climatology, PSS-78)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_ma (Seasonal Salinity Climatology minus Annual Climatology, PSU)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of the Statistical Mean, PSU)\nsalinity_oa (Salinity Mean minus Objectively Analyzed Climatology, PSU)\nsalinity_gp (Number of Salinity Mean Values within Radius of Influence, count)\noxygenSat_an (Objectively Analyzed Oxygen Saturation Climatology, 1)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_ma (Seasonal Oxygen Saturation Climatology minus Annual Climatology, 1)\noxygenSat_sd (Standard Deviation of Oxygen Saturation, 1)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09sea1t_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09sea1t_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09sea1t/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09sea1t.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09sea1t&showErrors=false&email=", "NOAA NODC", "nodcWoa09sea1t"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea1t_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea1t_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09sea1t_LonPM180/request", "", "public", "World Ocean Atlas 2009, Seasonal Climatology, 1 degree, Temperature, Salinity, Oxygen, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (1 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for seasonal compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 1 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_an (Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_ma (Temperature Monthly Minus Annual Climatology, degree_C)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\ntemperature_oa (Statistical Mean minus Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_gp (Number of Mean Temperature Values within Radius of Influence, count)\nsalinity_an (Objectively Analyzed Practical Salinity Climatology, PSS-78)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_ma (Seasonal Salinity Climatology minus Annual Climatology, PSU)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of the Statistical Mean, PSU)\nsalinity_oa (Salinity Mean minus Objectively Analyzed Climatology, PSU)\nsalinity_gp (Number of Salinity Mean Values within Radius of Influence, count)\noxygenSat_an (Objectively Analyzed Oxygen Saturation Climatology, 1)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_ma (Seasonal Oxygen Saturation Climatology minus Annual Climatology, 1)\noxygenSat_sd (Standard Deviation of Oxygen Saturation, 1)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09sea1t_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09sea1t_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09sea1t_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09sea1t_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09sea1t_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09sea1t_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea5t", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea5t.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09sea5t/request", "", "public", "World Ocean Atlas 2009, Seasonal Climatology, 5 degree, Temperature, Salinity, Oxygen", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for seasonal compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\ndisOxygen_mn (Mean of Dissolved Oxygen Observations, ml/l)\ndisOxygen_dd (Number of Dissolved Oxygen Observations, count)\ndisOxygen_sd (Standard Deviation of Dissolved Oxygen Observations, ml/l)\ndisOxygen_se (Standard Error of Dissolved Oxygen Observations, ml/l)\nAOU_mn (Mean of Apparent Oxygen Utilization Observations, ml/l)\nAOU_dd (Number of Apparent Oxygen Utilization Observations, count)\nAOU_sd (Standard Deviation of Apparent Oxygen Utilization Observations, ml/l)\nAOU_se (Standard Error of Apparent Oxygen Utilization Observations, ml/l)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09sea5t_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09sea5t_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09sea5t/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09sea5t.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09sea5t&showErrors=false&email=", "NOAA NODC", "nodcWoa09sea5t"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea5t_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea5t_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09sea5t_LonPM180/request", "", "public", "World Ocean Atlas 2009, Seasonal Climatology, 5 degree, Temperature, Salinity, Oxygen, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for seasonal compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\ndisOxygen_mn (Mean of Dissolved Oxygen Observations, ml/l)\ndisOxygen_dd (Number of Dissolved Oxygen Observations, count)\ndisOxygen_sd (Standard Deviation of Dissolved Oxygen Observations, ml/l)\ndisOxygen_se (Standard Error of Dissolved Oxygen Observations, ml/l)\nAOU_mn (Mean of Apparent Oxygen Utilization Observations, ml/l)\nAOU_dd (Number of Apparent Oxygen Utilization Observations, count)\nAOU_sd (Standard Deviation of Apparent Oxygen Utilization Observations, ml/l)\nAOU_se (Standard Error of Apparent Oxygen Utilization Observations, ml/l)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09sea5t_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09sea5t_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09sea5t_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09sea5t_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09sea5t_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09sea5t_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplG1SST", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplG1SST.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplG1SST/request", "", "public", "GHRSST Global 1-km Sea Surface Temperature (G1SST), Global, 0.01 Degree, 2010-2017, Daily", "A daily, global Sea Surface Temperature (SST) data set is produced at 1-km (also known as ultra-high resolution) by the JPL ROMS (Regional Ocean Modeling System) group. The input SST data sets are derived from the Global High-Resolution Sea Surface Temperature (SST) Pilot Project (GHRSST-PP). For details, see\nhttps://podaac.jpl.nasa.gov/dataset/JPL_OUROCEAN-L4UHfnd-GLOB-G1SST .\nThis dataset is part of the Multi-sensor Improved Sea Surface Temperatures (MISST) project, which is part of the Group for High-Resolution Sea Surface Temperature (GHRSST) project.\n\nDISCONTINUED - The creators of the jplG1SST dataset stopped production in late Oct 2017. There are more recent files available from JPL, but they are flawed so they are not included in the dataset at ERD. You might consider using the similar jplMURSST41 dataset, \nhttps://coastwatch.pfeg.noaa.gov/erddap/search/index.html?searchFor=jplMURSST41\nwhich has the additional advantage of offering related climatology and anomaly datasets.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST (Analysed Sea Surface Temperature, degree_C)\nmask (sea/land/lake/ice field composite mask)\nanalysis_error (Estimated Error Standard Deviation of Analysed SST, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplG1SST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplG1SST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplG1SST/index.json", "https://podaac.jpl.nasa.gov/dataset/JPL_OUROCEAN-L4UHfnd-GLOB-G1SST", "http://upwell.pfeg.noaa.gov/erddap/rss/jplG1SST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplG1SST&showErrors=false&email=", "NASA JPL", "jplG1SST"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1pp1day/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, Global, 2003-present, EXPERIMENTAL (1 Day Composite)", "calculates vertically integrated primary productivity using the Behrenfield - Falkowski method and satellite-based measurements of Chlorophyll a, incident visible surface irradiance, and sea surface temperature. see (Behrenfield and Falkowski, L&O 1997).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1pp1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1pp1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1pp1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PPMH_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1pp1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1pp1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMH1pp1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1pp3day/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, Global, 2003-present, EXPERIMENTAL (3 Day Composite)", "calculates the composite of vertically integrated primary productivity one day files that use the Behrenfield - Falkowski method and satellite-based measurements of Chlorophyll a, incident visible surface irradiance, and sea surface temperature. see (Behrenfield and Falkowski, L&O 1997).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\nnobs (Number of observations in composite, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1pp3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1pp3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1pp3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PPMH_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1pp3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1pp3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMH1pp3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1pp8day/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, Global, 2003-present, EXPERIMENTAL (8 Day Composite)", "calculates the composite of vertically integrated primary productivity one day files that use the Behrenfield - Falkowski method and satellite-based measurements of Chlorophyll a, incident visible surface irradiance, and sea surface temperature. see (Behrenfield and Falkowski, L&O 1997).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\nnobs (Number of observations in composite, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1pp8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1pp8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1pp8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PPMH_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1pp8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1pp8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMH1pp8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1ppmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1ppmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1ppmday/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, Global, 2003-present, EXPERIMENTAL (Monthly Composite)", "calculates the composite of vertically integrated primary productivity one day files that use the Behrenfield - Falkowski method and satellite-based measurements of Chlorophyll a, incident visible surface irradiance, and sea surface temperature. see (Behrenfield and Falkowski, L&O 1997).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1ppmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1ppmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1ppmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PPMH_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1ppmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1ppmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMH1ppmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstd1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstd1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1sstd1day/request", "", "public", "SST, Aqua MODIS, NPP, 4km, Daytime (11 microns), 2003-present (1 Day Composite)", "NOAA CoastWatch provides (mask-applied) global, 11km, Level 3, Standard Mapped Image (SMI), 4km, daytime SST data from NASA's Aqua Spacecraft. This is 1-day composite data. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Masked Daytime Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1sstd1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1sstd1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1sstd1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_sstMask_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1sstd1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1sstd1day&showErrors=false&email=", "NOAA SWFSC ERD", "erdMH1sstd1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstd8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstd8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1sstd8day/request", "", "public", "SST, Aqua MODIS, NPP, 4km, Daytime (11 microns), 2003-present (8 Day Composite)", "NOAA CoastWatch provides (mask-applied) global, 11km, Level 3, Standard Mapped Image (SMI), 4km, daytime SST data from NASA's Aqua Spacecraft. This is 8-day composite data. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Masked Daytime Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1sstd8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1sstd8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1sstd8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_sstMask_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1sstd8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1sstd8day&showErrors=false&email=", "NOAA SWFSC ERD", "erdMH1sstd8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstdmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstdmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1sstdmday/request", "", "public", "SST, Aqua MODIS, NPP, 4km, Daytime (11 microns), 2003-present (Monthly Composite)", "NOAA CoastWatch provides (mask-applied) global, 11km, Level 3, Standard Mapped Image (SMI), 4km, daytime SST data from NASA's Aqua Spacecraft. This is monthly composite data. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Masked Daytime Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1sstdmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1sstdmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1sstdmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_sstMask_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1sstdmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1sstdmday&showErrors=false&email=", "NOAA SWFSC ERD", "erdMH1sstdmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstdmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstdmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWsstdmday/request", "", "public", "SST, Aqua MODIS, NPP, 0.0125\u00b0, West US, Day time (11 microns), 2002-present (Monthly Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWsstdmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWsstdmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWsstdmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWsstdmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWsstdmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWsstdmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPNbfp28day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPNbfp28day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPNbfp28day/request", "", "public", "Primary Productivity, Aqua MODIS and GOES Imager, Global, 2006-2007, EXPERIMENTAL (8 Day Composite)", "Primary Productivity is calculated from NASA Aqua MODIS Chl a and NOAA GOES Imager SST data. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPNbfp28day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPNbfp28day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPNbfp28day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PN_bfp2_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPNbfp28day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPNbfp28day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdPNbfp28day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/osu2SstAnom", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/osu2SstAnom.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/osu2SstAnom/request", "", "public", "OSU SST Anomaly V2, MODIS Aqua, West US, July 2002-present", "This suite of CHLA and SST climatology and anomaly data products are derived from daily, 0.0125 degree x 0.0125 degree, MODIS Aqua CHLA and SST fields that cover the California Current System (22N - 51N, 155W - 105W) for the 11-year period July 2002 through June 2013. These daily fields, obtained from the NOAA CoastWatch West Coast Regional Node website, were processed using a successive 3x3, 5x5 and 7x7 grid cell hybrid median filtering technique. This technique was found to effectively reduce noise in the daily fields while maintaining features and detail in important regions such as capes and headlands. The resulting median filtered daily fields were then linearly interpolated to a 0.025 x 0.025 degree grid and averaged to create 132 monthly mean fields. The seasonal cycles at each 0.025 degree x 0.025 degree grid cell were obtained by fitting each multiyear time series of monthly means to a nine-parameter regression model consisting of a constant plus four harmonics (frequencies of N/(1-year), N-1,4; Risien and Chelton 2008, JPO). Even with the median filtering and the temporal averaging of the daily fields, the highly inhomogeneous nature of the MODIS fields still resulted in regression coefficients that were excessively noisy. We therefore applied the same successive 3x3, 5x5 and 7x7 hybrid median filtering technique, described above, to the regression coefficients before finally spatially smoothing the coefficients using a loess smoother (Schlax et al. 2001, JTECH) with filter cutoff wavelengths of 0.25 degree latitude by 0.25 degree longitude. The seasonal cycles were then calculated from the filtered regression coefficients for each 0.025 degree x 0.025 degree grid cell using the mean and all four harmonics. It is important to note that THIS SUITE OF DATA PRODUCTS IS HIGHLY EXPERIMENTAL and is strictly intended for scientific evaluation by experienced marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst_anomaly (Sea Surface Temperature Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/osu2SstAnom_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/osu2SstAnom_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/osu2SstAnom/index.json", "http://cioss.coas.oregonstate.edu/CIOSS/Documents/Published_Reports/Risien_USWC-Sat-Climatology_5-8-14.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/osu2SstAnom.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=osu2SstAnom&showErrors=false&email=", "Oregon State University - College of Earth, Ocean, and Atmospheric Sciences", "osu2SstAnom"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/osu2SstClimate", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/osu2SstClimate.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/osu2SstClimate/request", "", "public", "OSU SST Climatology V2, MODIS Aqua, West US, 2002-2003", "This suite of CHLA and SST climatology and anomaly data products are derived from daily, 0.0125 degree x 0.0125 degree, MODIS Aqua CHLA and SST fields that cover the California Current System (22N - 51N, 155W - 105W) for the 11-year period July 2002 through June 2013. These daily fields, obtained from the NOAA CoastWatch West Coast Regional Node website, were processed using a successive 3x3, 5x5 and 7x7 grid cell hybrid median filtering technique. This technique was found to effectively reduce noise in the daily fields while maintaining features and detail in important regions such as capes and headlands. The resulting median filtered daily fields were then linearly interpolated to a 0.025 degree x 0.025 degree grid and averaged to create 132 monthly mean fields. The seasonal cycles at each 0.025 degree x 0.025 degree grid cell were obtained by fitting each multiyear time series of monthly means to a nine-parameter regression model consisting of a constant plus four harmonics (frequencies of N/(1-year), N-1,4; Risien and Chelton 2008, JPO). Even with the median filtering and the temporal averaging of the daily fields, the highly inhomogeneous nature of the MODIS fields still resulted in regression coefficients that were excessively noisy. We therefore applied the same successive 3x3, 5x5 and 7x7 hybrid median filtering technique, described above, to the regression coefficients before finally spatially smoothing the coefficients using a loess smoother (Schlax et al. 2001, JTECH) with filter cutoff wavelengths of 0.25 degree latitude by 0.25 degree longitude. The seasonal cycles were then calculated from the filtered regression coefficients for each 0.025 degree x 0.025 degree grid cell using the mean and all four harmonics. It is important to note that THIS SUITE OF DATA PRODUCTS IS HIGHLY EXPERIMENTAL and is strictly intended for scientific evaluation by experienced marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/osu2SstClimate_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/osu2SstClimate_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/osu2SstClimate/index.json", "http://cioss.coas.oregonstate.edu/CIOSS/Documents/Published_Reports/Risien_USWC-Sat-Climatology_5-8-14.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/osu2SstClimate.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=osu2SstClimate&showErrors=false&email=", "Oregon State University - College of Earth, Ocean, and Atmospheric Sciences", "osu2SstClimate"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/NCEP_Global_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/NCEP_Global_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/NCEP_Global_Best/request", "", "public", "NOAA/NCEP Global Forecast System (GFS) Atmospheric Model", "U.S. National Oceanic and Atmospheric Administration (NOAA) National Centers for Environmental Prediction (NCEP) Global Forecast System (GFS) numerical weather prediction model 8-day, 3-hourly forecast for the globe at approximately 50-km or 0.5-deg resolution.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmpsfc (surface air temperature, K)\ntmp2m (air temperature at 2m, K)\nugrd10m (eastward wind velocity at 10m, m s-1)\nvgrd10m (northward wind velocity at 10m, m s-1)\npratesfc (rainfall rate, kg m-2 s-1)\nrh2m (relative humidity at 2m, %)\nprmslmsl (mean sea level pressure, Pa)\ndlwrfsfc (net downward longwave radiation flux, W m-2)\ndswrfsfc (net downward shortwave radiation flux, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/NCEP_Global_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/NCEP_Global_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/NCEP_Global_Best/index.json", "http://www.nco.ncep.noaa.gov/pmb/products/gfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/NCEP_Global_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=NCEP_Global_Best&showErrors=false&email=", "NOAA NCEP", "NCEP_Global_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/NCEP_Pacific_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/NCEP_Pacific_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/NCEP_Pacific_Best/request", "", "public", "NOAA/NCEP Global Forecast System (GFS) Atmospheric Model: Pacific", "U.S. National Oceanic and Atmospheric Administration (NOAA) National Centers for Environmental Prediction (NCEP) Global Forecast System (GFS) numerical weather prediction model 8-day, 3-hourly forecast for the Pacific region at approximately 25-km or 0.25-deg resolution.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmpsfc (surface air temperature, K)\ntmp2m (air temperature at 2m, K)\nugrd10m (eastward wind velocity at 10m, m s-1)\nvgrd10m (northward wind velocity at 10m, m s-1)\npratesfc (rainfall rate, kg m-2 s-1)\nrh2m (relative humidity at 2m, %)\nprmslmsl (mean sea level pressure, Pa)\ndlwrfsfc (net downward longwave radiation flux, W m-2)\ndswrfsfc (net downward shortwave radiation flux, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/NCEP_Pacific_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/NCEP_Pacific_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/NCEP_Pacific_Best/index.json", "http://www.nco.ncep.noaa.gov/pmb/products/gfs/", "http://upwell.pfeg.noaa.gov/erddap/rss/NCEP_Pacific_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=NCEP_Pacific_Best&showErrors=false&email=", "NOAA NCEP", "NCEP_Pacific_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/NOAA_DHW_5km", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/NOAA_DHW_5km.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/NOAA_DHW_5km/request", "", "public", "NOAA Global Coral Bleaching Monitoring Products: Daily 5-km", "Contains a suite of NOAA Coral Reef Watch (CRW) version 3.1 operational global satellite coral bleaching thermal stress monitoring products at 5-km resolution produced daily in near real-time, including sea surface temperature (SST), SST anomaly, HotSpot, Degree Heating Week (DHW), and a 7-day maximum Bleaching Alert Area (BAA). These data are based on CoralTemp Version 1.0, a daily global 5-km sea surface temperature dataset combined from: (1.) NOAA/NESDIS operational near-real-time daily global 5-km geostationary-polar-orbiting (geo-polar) blended night-only SST analysis, (2.) NOAA/NESDIS 2002-2016 reprocessed daily global 5-km geo-polar blended night-only SST analysis, and (3.) United Kingdom Met Office 1985-2002 daily global 5-km night-only SST reanalysis of Operational SST and Sea Ice Analysis (OSTIA). The SST anomaly is the difference of SST compared to daily SST climatology. The coral bleaching HotSpot is a special type of sea surface temperature (SST) anomaly and shows the difference of SST compared to a coral bleaching SST threshold climatology. DHW is the accumulation of Coral Bleaching HotSpots over a period of 12 consecutive weeks. The DHW value at any particular location at any particular time is the summation of the product of HotSpot values which are at least 1 deg C above the bleaching threshold SST and their durations in weeks over the most recent 12-week period. One DHW is equivalent to 1 week of SST at 1 deg C above the threshold or 0.5 week of SST at 2 deg C above the threshold, etc. The units for DHW are deg C-weeks, combining the intensity and duration of thermal stress into one single number. Based on research at Coral Reef Watch, when the thermal stress reaches 4 deg C-weeks, you can expect to see significant coral bleaching, especially in more sensitive species. When thermal stress is 8 deg C-weeks or higher, you would likely see widespread bleaching and mortality from the thermal stress.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nCRW_DHW (degree heating week, Celsius weeks)\nCRW_HOTSPOT (coral bleaching hotspot, Celsius)\nCRW_BAA (bleaching alert area (7-day max), 1)\nCRW_SST (sea surface temperature, Celsius)\nCRW_SSTANOMALY (sea surface temperature anomaly, Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/NOAA_DHW_5km_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/NOAA_DHW_5km_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/NOAA_DHW_5km/index.json", "http://coralreefwatch.noaa.gov/satellite/", "http://upwell.pfeg.noaa.gov/erddap/rss/NOAA_DHW_5km.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=NOAA_DHW_5km&showErrors=false&email=", "NOAA Coral Reef Watch", "NOAA_DHW_5km"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_Assim_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_Assim_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_HIIG_Assim_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Main Hawaiian Islands: Data Assimilating: 3-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly data assimilating hindcast for the region surrounding the main Hawaiian Islands at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the main Hawaiian Islands (WRF_HI) at approximately 6-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast). Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; surface currents from PacIOOS high-frequency radios (HFR); and in-situ water temperature and salinity profiles from ARGO floats and ocean glider autonomous underwater vehicles (AUV). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_HIIG_Assim_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_HIIG_Assim_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_HIIG_Assim_Best/index.json", "http://www.pacioos.hawaii.edu/metadata/roms_hiig_assimilation.html", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_HIIG_Assim_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_HIIG_Assim_Best&showErrors=false&email=", "University of Hawaii", "ROMS_HIIG_Assim_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_Assim_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_Assim_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_HIIG_Assim_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Main Hawaiian Islands: Data Assimilating: 2-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly data assimilating hindcast for the region surrounding the main Hawaiian Islands at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the main Hawaiian Islands (WRF_HI) at approximately 6-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast). Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; surface currents from PacIOOS high-frequency radios (HFR); and in-situ water temperature and salinity profiles from ARGO floats and ocean glider autonomous underwater vehicles (AUV). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_HIIG_Assim_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_HIIG_Assim_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_HIIG_Assim_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/metadata/roms_hiig_assimilation.html", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_HIIG_Assim_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_HIIG_Assim_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_HIIG_Assim_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_HIIG_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Main Hawaiian Islands: 3-D Variables", "Regional Ocean Modeling System (ROMS) 7-day, 3-hourly forecast for the region surrounding the main Hawaiian Islands at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the main Hawaiian Islands (WRF_HI) at approximately 6-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; surface currents from PacIOOS high-frequency radios (HFR); and in-situ water temperature and salinity profiles from ARGO floats and ocean glider autonomous underwater vehicles (AUV). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_HIIG_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_HIIG_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_HIIG_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-hawaii/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_HIIG_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_HIIG_Best&showErrors=false&email=", "University of Hawaii", "ROMS_HIIG_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIIG_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_HIIG_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Main Hawaiian Islands: 2-D Variables", "Regional Ocean Modeling System (ROMS) 7-day, 3-hourly forecast for the region surrounding the main Hawaiian Islands at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the main Hawaiian Islands (WRF_HI) at approximately 6-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; surface currents from PacIOOS high-frequency radios (HFR); and in-situ water temperature and salinity profiles from ARGO floats and ocean glider autonomous underwater vehicles (AUV). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_HIIG_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_HIIG_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_HIIG_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-hawaii/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_HIIG_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_HIIG_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_HIIG_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIOMSG_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIOMSG_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_HIOMSG_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Oahu South Shore: 3-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly forecast for the region surrounding the south shore of the island of Oahu at approximately 200-m resolution. Boundary conditions provided by the wider ROMS model for the region surrounding the island of Oahu (ROMS_HIOG) at approximately 1-km resolution. Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the island of Oahu (WRF_OA) at approximately 1.5-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; surface currents from PacIOOS high-frequency radios (HFR); and in-situ water temperature and salinity profiles from ARGO floats and ocean glider autonomous underwater vehicles (AUV). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_HIOMSG_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_HIOMSG_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_HIOMSG_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-southoahu/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_HIOMSG_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_HIOMSG_Best&showErrors=false&email=", "University of Hawaii", "ROMS_HIOMSG_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIOMSG_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_HIOMSG_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_HIOMSG_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Oahu South Shore: 2-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly forecast for the region surrounding the south shore of the island of Oahu at approximately 200-m resolution. Boundary conditions provided by the wider ROMS model for the region surrounding the island of Oahu (ROMS_HIOG) at approximately 1-km resolution. Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the island of Oahu (WRF_OA) at approximately 1.5-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; surface currents from PacIOOS high-frequency radios (HFR); and in-situ water temperature and salinity profiles from ARGO floats and ocean glider autonomous underwater vehicles (AUV). While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_HIOMSG_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_HIOMSG_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_HIOMSG_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-southoahu/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_HIOMSG_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_HIOMSG_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_HIOMSG_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_Assim_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_Assim_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_MARI_Assim_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): CNMI: Data Assimilating: 3-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly data assimilating hindcast for the region surrounding the Western North Pacific, including Guam and the Commonwealth of the Northern Mariana Islands (CNMI), at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the Western North Pacific (WRF_CNMI) at approximately 12-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast). Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_MARI_Assim_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_MARI_Assim_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_MARI_Assim_Best/index.json", "http://www.pacioos.hawaii.edu/metadata/roms_mari_assimilation.html", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_MARI_Assim_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_MARI_Assim_Best&showErrors=false&email=", "University of Hawaii", "ROMS_MARI_Assim_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_Assim_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_Assim_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_MARI_Assim_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): CNMI: Data Assimilating: 2-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly data assimilating hindcast for the region surrounding the Western North Pacific, including Guam and the Commonwealth of the Northern Mariana Islands (CNMI), at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the Western North Pacific (WRF_CNMI) at approximately 12-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast). Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_MARI_Assim_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_MARI_Assim_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_MARI_Assim_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/metadata/roms_mari_assimilation.html", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_MARI_Assim_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_MARI_Assim_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_MARI_Assim_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_MARI_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): CNMI: 3-D Variables", "Regional Ocean Modeling System (ROMS) 6-day, 3-hourly forecast for the region surrounding the Western North Pacific, including Guam and the Commonwealth of the Northern Mariana Islands (CNMI), at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the Western North Pacific (WRF_CNMI) at approximately 12-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_MARI_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_MARI_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_MARI_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-wnpacific/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_MARI_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_MARI_Best&showErrors=false&email=", "University of Hawaii", "ROMS_MARI_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARI_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_MARI_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): CNMI: 2-D Variables", "Regional Ocean Modeling System (ROMS) 6-day, 3-hourly forecast for the region surrounding the Western North Pacific, including Guam and the Commonwealth of the Northern Mariana Islands (CNMI), at approximately 4-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the Western North Pacific (WRF_CNMI) at approximately 12-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_MARI_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_MARI_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_MARI_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-wnpacific/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_MARI_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_MARI_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_MARI_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARIG_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARIG_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_MARIG_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Guam: 3-D Variables", "Regional Ocean Modeling System (ROMS) 6-day, 3-hourly forecast for the region surrounding Guam and parts of the Commonwealth of the Northern Mariana Islands (CNMI) at approximately 2-km resolution. Boundary conditions provided by the wider ROMS model for the region surrounding the Western North Pacific (ROMS_MARI) at approximately 4-km resolution. Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding Guam and parts of the Commonwealth of the Northern Mariana Islands (CNMI) (WRF_Guam) at approximately 3-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_MARIG_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_MARIG_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_MARIG_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-mariana/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_MARIG_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_MARIG_Best&showErrors=false&email=", "University of Hawaii", "ROMS_MARIG_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARIG_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_MARIG_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_MARIG_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Guam: 2-D Variables", "Regional Ocean Modeling System (ROMS) 6-day, 3-hourly forecast for the region surrounding Guam and parts of the Commonwealth of the Northern Mariana Islands (CNMI) at approximately 2-km resolution. Boundary conditions provided by the wider ROMS model for the region surrounding the Western North Pacific (ROMS_MARI) at approximately 4-km resolution. Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding Guam and parts of the Commonwealth of the Northern Mariana Islands (CNMI) (WRF_Guam) at approximately 3-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_MARIG_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_MARIG_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_MARIG_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-mariana/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_MARIG_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_MARIG_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_MARIG_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_Assim_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_Assim_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_Samoa_Assim_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Samoa: Data Assimilating: 3-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly data assimilating hindcast for the region surrounding the islands of Samoa at approximately 3-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the islands of Samoa (WRF_Samoa) at approximately 3-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast). Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_Samoa_Assim_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_Samoa_Assim_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_Samoa_Assim_Best/index.json", "http://www.pacioos.hawaii.edu/metadata/roms_samoa_assimilation.html", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_Samoa_Assim_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_Samoa_Assim_Best&showErrors=false&email=", "University of Hawaii", "ROMS_Samoa_Assim_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_Assim_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_Assim_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_Samoa_Assim_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Samoa: Data Assimilating: 2-D Variables", "Regional Ocean Modeling System (ROMS) 3-day, 3-hourly data assimilating hindcast for the region surrounding the islands of Samoa at approximately 3-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the islands of Samoa (WRF_Samoa) at approximately 3-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast). Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_Samoa_Assim_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_Samoa_Assim_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_Samoa_Assim_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/metadata/roms_samoa_assimilation.html", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_Samoa_Assim_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_Samoa_Assim_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_Samoa_Assim_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_Samoa_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Samoa: 3-D Variables", "Regional Ocean Modeling System (ROMS) 7-day, 3-hourly forecast for the region surrounding the islands of Samoa at approximately 3-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the islands of Samoa (WRF_Samoa) at approximately 3-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (potential temperature, Celsius)\nsalt (salinity, 1e-3)\nu (u-velocity component, meter second-1)\nv (v-velocity component, meter second-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_Samoa_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_Samoa_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_Samoa_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-samoa/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_Samoa_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_Samoa_Best&showErrors=false&email=", "University of Hawaii", "ROMS_Samoa_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_SSH_Best", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ROMS_Samoa_SSH_Best.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ROMS_Samoa_SSH_Best/request", "", "public", "Regional Ocean Modeling System (ROMS): Samoa: 2-D Variables", "Regional Ocean Modeling System (ROMS) 7-day, 3-hourly forecast for the region surrounding the islands of Samoa at approximately 3-km resolution. Boundary conditions provided by the global, 1/12-degree (~9-km) HYbrid Coordinate Ocean Model (HYCOM). Atmospheric forcing generated by the Weather Research and Forecasting (WRF) model for the region surrounding the islands of Samoa (WRF_Samoa) at approximately 3-km resolution. Tide forcing uses the Oregon State University (OSU) Tidal Prediction Software (OTPS) TOPEX/Poseidon global inverse solution (TPXO) to derive barotropic tidal elevation and velocity. Data are assimilated over the previous 3 days using all available observations to improve the model estimate of current ocean state (its nowcast) before forecasts are run. Assimilated observations may include satellite-based sea surface temperatures from MODIS, AVHRR, or OSTIA; satellite-based sea surface height from AVISO; and in-situ water temperature and salinity profiles from ARGO floats. While considerable effort has been made to implement all model components in a thorough, correct, and accurate manner, numerous sources of error are possible. As such, please use these data with the caution appropriate for any ocean related activity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nzeta (free-surface, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ROMS_Samoa_SSH_Best_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ROMS_Samoa_SSH_Best_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ROMS_Samoa_SSH_Best/index.json", "http://www.pacioos.hawaii.edu/currents/model-samoa/", "http://upwell.pfeg.noaa.gov/erddap/rss/ROMS_Samoa_SSH_Best.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ROMS_Samoa_SSH_Best&showErrors=false&email=", "University of Hawaii", "ROMS_Samoa_SSH_Best"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/FRD_SSTgradsmo", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/FRD_SSTgradsmo.graph", "", "", "public", "SST smoothed frontal gradients", "An improved automatic detection of mesoscale fronts, derived from Cayula, J. F., & Cornillon, P. (1992) and Cayula, J. F., & Cornillon, P. (1995), using the new method described by Nieto et al. (2012)\n\nNieto, Karen, Demarcq, H. and McClatchie, S. \"Mesoscale frontal structures in the Canary Upwelling System: new front and filament detection algorithms applied to spatial and temporal patterns\". Remote Sensing of the Environment 123, 2012 (pp.339-346)\"\n\nCayula, J. F., & Cornillon, P. (1992). Edge detection algorithm for SST images. Journal of Atmospheric and Oceanic Technology, 9, 67-80.\n\nCayula, J. F., & Cornillon, P. (1995). Multi-image edge detection for SST images. Journal of Atmospheric and Oceanic Technology, 12, 821-829.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSSTgrad (SST Edge-Gradient monthly, degrees C / km)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRD_SSTgradsmo_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRD_SSTgradsmo_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRD_SSTgradsmo/index.json", "https://oceanview.pfeg.noaa.gov/FRD/SSTgradsmo_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/FRD_SSTgradsmo.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRD_SSTgradsmo&showErrors=false&email=", "NOAA/NMFS/SWFSC", "FRD_SSTgradsmo"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlCOAMPS3km", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlCOAMPS3km.graph", "", "", "public", "COAMPS 3km Surface Fields", "COAMPS_Surface_Fields\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][lat][lon]):\nair_temperature (deg C)\nsurface_temperature (Ground temperature over land, Sea surface temperature over the ocean, deg C)\nlonflx (Net surface longwave radiative heat flux, W/m**2)\nrelative_humidity (percent)\nair_pressure_at_sea_level (Sea Level Pressure, millibars)\nsolflx (Net surface shortwave radiative heat flux, W/m**2)\nhourly_precip (Hourly Precipitation, mm)\nx_wind (Zonal Wind, m/s)\ny_wind (Meridional Wind, m/s)\nwind_speed (m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nrlCOAMPS3km/index.json", "https://www.nrlmry.navy.mil/coamps-web/web/home", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlCOAMPS3km.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlCOAMPS3km&showErrors=false&email=", "Naval Research Laboratory, Monterey Marine Meteorology Division", "nrlCOAMPS3km"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlCOAMPS3kmNogap", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlCOAMPS3kmNogap.graph", "", "", "public", "COAMPS 3km Surface Fields (Reanalysis, No Gaps)", "COAMPS_Surface_Fields\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][lat][lon]):\nair_temperature (deg C)\nsurface_temperature (Ground temperature over land, Sea surface temperature over the ocean, deg C)\nlonflx (Net surface longwave radiative heat flux, W/m**2)\nrelative_humidity (percent)\nair_pressure_at_sea_level (Sea Level Pressure, millibars)\nsolflx (Net surface shortwave radiative heat flux, W/m**2)\nttlpcp (Hourly Precipitation, mm)\nx_wind (Zonal Wind, m/s)\ny_wind (Meridional Wind, m/s)\nwind_speed (m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nrlCOAMPS3kmNogap/index.json", "https://www.nrlmry.navy.mil/coamps-web/web/home", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlCOAMPS3kmNogap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlCOAMPS3kmNogap&showErrors=false&email=", "Naval Research Laboratory, Monterey Marine Meteorology Division", "nrlCOAMPS3kmNogap"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e1b2_3228_f482", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e1b2_3228_f482.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_e1b2_3228_f482/request", "", "public", "Obs-AMSRE model output prepared for obs4MIPs NASA-JPL observation", "Obs-Advanced Microwave Scanning Radiometer on EOS (AMSRE) model output prepared for Observations for Model Intercomparisons (obs4MIPs) NASA-Jet Propulsion Laboratory (JPL) observation (AMSRE L3 Sea Surface Temperature (SST) 1DEG 1MO)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntos (Sea Surface Temperature, K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_e1b2_3228_f482_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_e1b2_3228_f482_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_e1b2_3228_f482/index.json", "https://podaac.jpl.nasa.gov/dataset/AMSRE_L3_SST_1DEG_1MO", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_e1b2_3228_f482.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_e1b2_3228_f482&showErrors=false&email=", "Remote Sensing Systems", "nasa_jpl_e1b2_3228_f482"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e8d3_f614_6c50", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e8d3_f614_6c50.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_e8d3_f614_6c50/request", "", "public", "NAVOCEANO 10km Analyzed SST (GHRSST NAVO-L4HR1m-GLOB-K10 SST)", "Naval Oceanographic Office (NAVOCEANO) 10km Analyzed Sea Surface Temperature. Distribution Statement: Approved for public release. Distribution unlimited. (Global High-Resolution Sea Surface Temperature (GHRSST) Naval Oceanography (NAVO)-L4HR1m-GLOB-K10 SST)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (Analyzed Sea Surface Temperature, degree_C)\nanalysis_error (degree_C)\nmask (Land Sea Mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_e8d3_f614_6c50_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_e8d3_f614_6c50_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_e8d3_f614_6c50/index.json", "https://podaac.jpl.nasa.gov/dataset/NAVO-L4HR1m-GLOB-K10_SST", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_e8d3_f614_6c50.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_e8d3_f614_6c50&showErrors=false&email=", "Naval Oceanographic Office", "nasa_jpl_e8d3_f614_6c50"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_64e9_b48f_fa8a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_64e9_b48f_fa8a.graph", "", "", "public", "AVHRR SST NOAA19 NAR-OSISAF-L3C-v1.0 (SST) [nj][ni]", "Sea Surface Temperature. The NAR L3C product derived from NOAA19 Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures. (AVHRR SST NOAA19 NAR-Ocean and Sea Ice Satellite Application Facility (OSISAF)-L3C-v1.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nj][ni]):\nlat (latitude, degrees_north)\nlon (longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_64e9_b48f_fa8a/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_NOAA19_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_64e9_b48f_fa8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_64e9_b48f_fa8a&showErrors=false&email=", "OSISAF", "nasa_jpl_64e9_b48f_fa8a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_5345_5e3b_4d57", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_5345_5e3b_4d57.graph", "", "", "public", "AVHRR SST NOAA19 NAR-OSISAF-L3C-v1.0 (SST) [time][nj][ni]", "Sea Surface Temperature. The NAR L3C product derived from NOAA19 Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures. (AVHRR SST NOAA19 NAR-Ocean and Sea Ice Satellite Application Facility (OSISAF)-L3C-v1.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][nj][ni]):\nsea_surface_temperature (sea surface subskin temperature, degree_C)\nsst_dtime (time difference from reference time, seconds)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (deviation from SST analysis or reference climatology, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nadi_dtime_from_sst (time difference of ADI data from sst measurement, hour)\nsources_of_adi (sources of aerosol dynamic indicator)\nl2p_flags\nquality_level (quality level of SST pixel)\nsatellite_zenith_angle (angular_degree)\nsolar_zenith_angle (angular_degree)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_5345_5e3b_4d57/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_NOAA19_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_5345_5e3b_4d57.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_5345_5e3b_4d57&showErrors=false&email=", "OSISAF", "nasa_jpl_5345_5e3b_4d57"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3e3d_e75d_fe06", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3e3d_e75d_fe06.graph", "", "", "public", "AVHRR SST METOP A NAR-OSISAF-L3C-v1.0 (SST) [nj][ni]", "Sea Surface Temperature. The NAR L3C product derived from METOP A Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures. (AVHRR SST METOP A NAR-Ocean and Sea Ice Satellite Application Facility (OSISAF)-L3C-v1.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nj][ni]):\nlat (latitude, degrees_north)\nlon (longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_3e3d_e75d_fe06/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_METOP_A_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_3e3d_e75d_fe06.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_3e3d_e75d_fe06&showErrors=false&email=", "OSISAF", "nasa_jpl_3e3d_e75d_fe06"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3b29_afb1_adbc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3b29_afb1_adbc.graph", "", "", "public", "VIIRS SST NPP NAR-OSISAF-L3C-v1.0 (SST) [nj][ni]", "Sea Surface Temperature. The NAR L3C product derived from National Polar-orbiting Partnership (NPP) Visible and Infrared Imager/Radiometer Suite (VIIRS) brightness temperatures. (VIIRS SST NPP NAR-Ocean and Sea Ice Satellite Application Facility (OSISAF)-L3C-v1.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nj][ni]):\nlat (latitude, degrees_north)\nlon (longitude, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_3b29_afb1_adbc/index.json", "https://podaac.jpl.nasa.gov/dataset/VIIRS_SST_NPP_NAR-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_3b29_afb1_adbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_3b29_afb1_adbc&showErrors=false&email=", "OSISAF", "nasa_jpl_3b29_afb1_adbc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_471c_9422_782d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_471c_9422_782d.graph", "", "", "public", "NCOM Region 1, NCOM Region 1, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 1 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_471c_9422_782d/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_471c_9422_782d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_471c_9422_782d&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_471c_9422_782d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_8c7a_4281_add4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_8c7a_4281_add4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_8c7a_4281_add4/request", "", "public", "NCOM Region 1, NCOM Region 1, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 1 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_8c7a_4281_add4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_8c7a_4281_add4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_8c7a_4281_add4/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_8c7a_4281_add4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_8c7a_4281_add4&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_8c7a_4281_add4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_42cc_a9de_41af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_42cc_a9de_41af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_42cc_a9de_41af/request", "", "public", "NCOM Region 1, NCOM Region 1, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 1 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_42cc_a9de_41af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_42cc_a9de_41af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_42cc_a9de_41af/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_42cc_a9de_41af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_42cc_a9de_41af&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_42cc_a9de_41af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_6858_1b33_06bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_6858_1b33_06bd.graph", "", "", "public", "NCOM Region 2, NCOM Region 2, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 2 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_6858_1b33_06bd/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_6858_1b33_06bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_6858_1b33_06bd&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_6858_1b33_06bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_32dc_2bcd_70ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_32dc_2bcd_70ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_32dc_2bcd_70ea/request", "", "public", "NCOM Region 2, NCOM Region 2, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 2 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalinity (PSU)\nwater_temp (Water Temperature, degree_C)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_32dc_2bcd_70ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_32dc_2bcd_70ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_32dc_2bcd_70ea/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_32dc_2bcd_70ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_32dc_2bcd_70ea&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_32dc_2bcd_70ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_e024_ac82_0c11", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_e024_ac82_0c11.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_e024_ac82_0c11/request", "", "public", "NCOM Region 2, NCOM Region 2, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 2 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_e024_ac82_0c11_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_e024_ac82_0c11_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_e024_ac82_0c11/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_e024_ac82_0c11.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_e024_ac82_0c11&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_e024_ac82_0c11"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_ebff_3cc4_a0c9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_ebff_3cc4_a0c9.graph", "", "", "public", "NCOM Region 5, NCOM Region 5, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 5 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_ebff_3cc4_a0c9/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_ebff_3cc4_a0c9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_ebff_3cc4_a0c9&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_ebff_3cc4_a0c9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_750c_0664_336a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_750c_0664_336a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_750c_0664_336a/request", "", "public", "NCOM Region 5, NCOM Region 5, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 5 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_750c_0664_336a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_750c_0664_336a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_750c_0664_336a/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_750c_0664_336a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_750c_0664_336a&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_750c_0664_336a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_071d_34e8_7a21", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_071d_34e8_7a21.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_071d_34e8_7a21/request", "", "public", "NCOM Region 5, NCOM Region 5, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 5 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_071d_34e8_7a21_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_071d_34e8_7a21_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_071d_34e8_7a21/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_071d_34e8_7a21.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_071d_34e8_7a21&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_071d_34e8_7a21"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_7309_f69a_991a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_7309_f69a_991a.graph", "", "", "public", "NCOM Region 6, NCOM Region 6, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 6 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_7309_f69a_991a/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_7309_f69a_991a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_7309_f69a_991a&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_7309_f69a_991a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_bad7_0640_6d9a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_bad7_0640_6d9a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_bad7_0640_6d9a/request", "", "public", "NCOM Region 6, NCOM Region 6, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 6 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalinity (PSU)\nwater_temp (Water Temperature, degree_C)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_bad7_0640_6d9a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_bad7_0640_6d9a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_bad7_0640_6d9a/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_bad7_0640_6d9a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_bad7_0640_6d9a&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_bad7_0640_6d9a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_b8d7_7054_47d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_b8d7_7054_47d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_b8d7_7054_47d4/request", "", "public", "NCOM Region 6, NCOM Region 6, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 6 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_b8d7_7054_47d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_b8d7_7054_47d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_b8d7_7054_47d4/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_b8d7_7054_47d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_b8d7_7054_47d4&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_b8d7_7054_47d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_40a9_d027_7372", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_40a9_d027_7372.graph", "", "", "public", "NCOM Region 7, NCOM Region 7, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 7 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_40a9_d027_7372/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_40a9_d027_7372.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_40a9_d027_7372&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_40a9_d027_7372"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_bf9d_4a29_a5d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_bf9d_4a29_a5d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_bf9d_4a29_a5d3/request", "", "public", "NCOM Region 7, NCOM Region 7, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 7 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalinity (PSU)\nwater_temp (Water Temperature, degree_C)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_bf9d_4a29_a5d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_bf9d_4a29_a5d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_bf9d_4a29_a5d3/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_bf9d_4a29_a5d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_bf9d_4a29_a5d3&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_bf9d_4a29_a5d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5670_aa0a_3848", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5670_aa0a_3848.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_5670_aa0a_3848/request", "", "public", "NCOM Region 7, NCOM Region 7, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 7 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_5670_aa0a_3848_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_5670_aa0a_3848_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_5670_aa0a_3848/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_5670_aa0a_3848.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_5670_aa0a_3848&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_5670_aa0a_3848"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5325_cd6e_43de", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5325_cd6e_43de.graph", "", "", "public", "NCOM Region 10, NCOM Region 10, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 10 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_5325_cd6e_43de/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_5325_cd6e_43de.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_5325_cd6e_43de&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_5325_cd6e_43de"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_603c_bf5b_abc8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_603c_bf5b_abc8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_603c_bf5b_abc8/request", "", "public", "NCOM Region 10, NCOM Region 10, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 10 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalinity (PSU)\nwater_temp (Water Temperature, degree_C)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_603c_bf5b_abc8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_603c_bf5b_abc8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_603c_bf5b_abc8/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_603c_bf5b_abc8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_603c_bf5b_abc8&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_603c_bf5b_abc8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_23e1_3acd_99d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_23e1_3acd_99d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_23e1_3acd_99d0/request", "", "public", "NCOM Region 10, NCOM Region 10, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 10 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_23e1_3acd_99d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_23e1_3acd_99d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_23e1_3acd_99d0/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_23e1_3acd_99d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_23e1_3acd_99d0&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_23e1_3acd_99d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_15eb_3b9f_e2b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_15eb_3b9f_e2b1.graph", "", "", "public", "NCOM SFC 8, NCOM SFC 8, Best Time Series [time], 2009-2013", "Best time series, taking the data from the most recent run available. Aggregation of SFC 8 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_15eb_3b9f_e2b1/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_15eb_3b9f_e2b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_15eb_3b9f_e2b1&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_15eb_3b9f_e2b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_a560_b65b_e33f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_a560_b65b_e33f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_a560_b65b_e33f/request", "", "public", "NCOM SFC 8, NCOM SFC 8, Best Time Series [time][lat][lon], 0.125\u00b0, 2009-2013", "Best time series, taking the data from the most recent run available. Aggregation of SFC 8 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\nwater_u (Eastward Water Velocity, m/s)\nwater_v (Northward Water Velocity, m/s)\nsurf_el (Water Surface Elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_a560_b65b_e33f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_a560_b65b_e33f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_a560_b65b_e33f/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_a560_b65b_e33f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_a560_b65b_e33f&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_a560_b65b_e33f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_df8c_8539_aee5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_df8c_8539_aee5.graph", "", "", "public", "NCOM SFC8 Hindcast, NCOM SFC8 Hindcast, Best Time Series [time], 2010-2013", "Best time series, taking the data from the most recent run available. These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_df8c_8539_aee5/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_df8c_8539_aee5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_df8c_8539_aee5&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_df8c_8539_aee5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_1643_41a8_1d04", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_1643_41a8_1d04.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_1643_41a8_1d04/request", "", "public", "NCOM SFC8 Hindcast, NCOM SFC8 Hindcast, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\nwater_u (Eastward Water Velocity, m/s)\nwater_v (Northward Water Velocity, m/s)\nsurf_el (Water Surface Elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_1643_41a8_1d04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_1643_41a8_1d04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_1643_41a8_1d04/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_1643_41a8_1d04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_1643_41a8_1d04&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_1643_41a8_1d04"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_30f3_dedb_1e46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_30f3_dedb_1e46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_30f3_dedb_1e46/request", "", "public", "Amseas May 2010 to Apr 04 2013, Amseas May 2010 to Apr 04 2013, Best Time Series [time][lat][lon]", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: American Seas Regional Forecast. Best time series, taking the data from the most recent run available. US East Before Resolution Change(11/18/09 - 4/05/13)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_atm_press (Surface Atmospherics Pressure, Pascal)\nsurf_el (Water Surface Elevation, meter)\nsurf_temp_flux (model surface temperature flux, degC-m/s)\nsurf_salt_flux (model surface salinity flux, psu-m/s)\nsurf_solar_flux (model surface shortwave flux, degC-m/s)\nsurf_roughness (model surface roughness, m)\nsurf_wnd_stress_gridx (Grid x Surface Wind Stress, newton/meter2)\nsurf_wnd_stress_gridy (Grid y Surface Wind Stress, newton/meter2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_30f3_dedb_1e46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_30f3_dedb_1e46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_30f3_dedb_1e46/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_amseas_agg_20091119_20130404/Amseas_May_2010_to_Apr_04_2013_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_30f3_dedb_1e46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_30f3_dedb_1e46&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_30f3_dedb_1e46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5646_f209_8b5a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5646_f209_8b5a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_5646_f209_8b5a/request", "", "public", "Amseas May 2010 to Apr 04 2013, Amseas May 2010 to Apr 04 2013, Best Time Series [time][depth][lat][lon]", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: American Seas Regional Forecast. Best time series, taking the data from the most recent run available. US East Before Resolution Change(11/18/09 - 4/05/13)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_5646_f209_8b5a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_5646_f209_8b5a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_5646_f209_8b5a/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_amseas_agg_20091119_20130404/Amseas_May_2010_to_Apr_04_2013_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_5646_f209_8b5a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_5646_f209_8b5a&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_5646_f209_8b5a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_01d3_5057_e3ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_01d3_5057_e3ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_01d3_5057_e3ef/request", "", "public", "US East Feb 2009 to November 18 2009, US East Feb 2009 to November 18 2009, Best Time Series [time][lat][lon]", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: Sendai Regional Forecast. Best time series, taking the data from the most recent run available. US East Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_atm_press (Surface Atmospherics Pressure, Pascal)\nsurf_el (Water Surface Elevation, meter)\nsurf_temp_flux (model surface temperature flux, degC-m/s)\nsurf_salt_flux (model surface salinity flux, psu-m/s)\nsurf_solar_flux (model surface shortwave flux, degC-m/s)\nsurf_roughness (model surface roughness, m)\nsurf_wnd_stress_gridx (Grid x Surface Wind Stress, newton/meter2)\nsurf_wnd_stress_gridy (Grid y Surface Wind Stress, newton/meter2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_01d3_5057_e3ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_01d3_5057_e3ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_01d3_5057_e3ef/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_us_east_before_depth_change_agg/US_East_Feb_2009_to_November_18_2009_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_01d3_5057_e3ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_01d3_5057_e3ef&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_01d3_5057_e3ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_a4af_5d09_927f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_a4af_5d09_927f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_a4af_5d09_927f/request", "", "public", "US East Feb 2009 to November 18 2009, US East Feb 2009 to November 18 2009, Best Time Series [time][depth][lat][lon]", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: Sendai Regional Forecast. Best time series, taking the data from the most recent run available. US East Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_a4af_5d09_927f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_a4af_5d09_927f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_a4af_5d09_927f/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_us_east_before_depth_change_agg/US_East_Feb_2009_to_November_18_2009_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_a4af_5d09_927f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_a4af_5d09_927f&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_a4af_5d09_927f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_786c_959f_ba5d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_786c_959f_ba5d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_786c_959f_ba5d/request", "", "public", "US East Nov 19 2009 to Apr 04 2013, US East Nov 19 2009 to Apr 04 2013, Best Time Series [time][lat][lon]", "Best time series, taking the data from the most recent run available. US East Before Resolution Change(11/18/09 - 4/05/13)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_atm_press (Surface Atmospherics Pressure, Pascal)\nsurf_el (Water Surface Elevation, meter)\nsurf_temp_flux (model surface temperature flux, degC-m/s)\nsurf_salt_flux (model surface salinity flux, psu-m/s)\nsurf_solar_flux (model surface shortwave flux, degC-m/s)\nsurf_roughness (model surface roughness, m)\nsurf_wnd_stress_gridx (Grid x Surface Wind Stress, newton/meter2)\nsurf_wnd_stress_gridy (Grid y Surface Wind Stress, newton/meter2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_786c_959f_ba5d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_786c_959f_ba5d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_786c_959f_ba5d/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_useast_agg_20091119_20130404/US_East_Nov_19_2009_to_Apr_04_2013_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_786c_959f_ba5d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_786c_959f_ba5d&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_786c_959f_ba5d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_3360_0e6c_c4f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_3360_0e6c_c4f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_3360_0e6c_c4f3/request", "", "public", "US East Nov 19 2009 to Apr 04 2013, US East Nov 19 2009 to Apr 04 2013, Best Time Series [time][depth][lat][lon]", "Best time series, taking the data from the most recent run available. US East Before Resolution Change(11/18/09 - 4/05/13)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_3360_0e6c_c4f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_3360_0e6c_c4f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_3360_0e6c_c4f3/index.json", "https://ecowatch.ncddc.noaa.gov/thredds/dodsC/ncom_useast_agg_20091119_20130404/US_East_Nov_19_2009_to_Apr_04_2013_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_3360_0e6c_c4f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_3360_0e6c_c4f3&showErrors=false&email=", "Naval Research Laboratory", "noaa_ncddc_3360_0e6c_c4f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_da08_dcdf_2100", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_da08_dcdf_2100.graph", "", "", "public", "Extended AVHRR Polar Pathfinder Fundamental Climate Data Record (APPx CDR) [columns][rows]", "The Extended Advanced Very High Resolution Radiometer (AVHRR) Polar Pathfinder (APP-x) version-2 Thematic Climate Data Record (CDR) includes surface temperature, surface albedo, surface and the Top Of the Atmosphere (TOA) shortwave and longwave radiative fluxes, cloud properties (amount, phase, particle size, optical depth,top pressure and temperature, surface and TOA radiative effect), and ice thickness and age. The APP-x CDR has twice daily data at local solar times of 14 and 04(02) for the Arctic(Antarctic) at a spatial resolution of 25 km for both poles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [columns][rows]):\nlongitude (longitude of EASE Grid 25km resolution in the polar regions, Arctic (361,361), Antarctic (321,321), degrees_east)\nlatitude (latitude of EASE Grid 25km resolution in the polar regionsArctic (361,361), Antarctic (321,321), degrees_north)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_da08_dcdf_2100/index.json", "https://www.ngdc.noaa.gov/thredds/dodsC/arctic/Polar-APP-X_v01r01_Nhem_1400_d20160801_c20160803.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_da08_dcdf_2100.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_da08_dcdf_2100&showErrors=false&email=", "Cooperative Institute for Meteorological Studies, University of Wisconsin at Madison", "noaa_ngdc_da08_dcdf_2100"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0fe5_a4b9_3776", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0fe5_a4b9_3776.graph", "", "", "public", "Extended AVHRR Polar Pathfinder Fundamental Climate Data Record (APPx CDR) [Time][columns][rows]", "The Extended Advanced Very High Resolution Radiometer (AVHRR) Polar Pathfinder (APP-x) version-2 Thematic Climate Data Record (CDR) includes surface temperature, surface albedo, surface and the Top Of the Atmosphere (TOA) shortwave and longwave radiative fluxes, cloud properties (amount, phase, particle size, optical depth,top pressure and temperature, surface and TOA radiative effect), and ice thickness and age. The APP-x CDR has twice daily data at local solar times of 14 and 04(02) for the Arctic(Antarctic) at a spatial resolution of 25 km for both poles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time2][columns][rows]):\ncdr_surface_temperature (NOAA CDR of surface skin temperature, K)\ncdr_surface_albedo (NOAA CDR of surface broadband albedo, 1)\ncdr_surface_downwelling_shortwave_flux (NOAA CDR of surface downwelling shortwave radiative flux, W m-2)\ncdr_surface_downwelling_longwave_flux (NOAA CDR of surface downwelling longwave radiative flux, W m-2)\ncdr_surface_upwelling_shortwave_flux (NOAA CDR of surface upwelling shortwave radiative flux, W m-2)\ncdr_surface_upwelling_longwave_flux (NOAA CDR of surface upwelling longwave radiative flux, W m-2)\ncdr_cloud_binary_mask (NOAA CDR of cloud mask, 1)\ncdr_sea_ice_thickness (NOAA CDR of sea ice thickness, m)\ncdr_toa_net_downward_shortwave_flux (NOAA CDR of TOA net downward shortwave radiative flux, W m-2)\ncdr_toa_outgoing_shortwave_flux (NOAA CDR of TOA outgoing shortwave radiative flux, W m-2)\ncdr_toa_outgoing_longwave_flux (NOAA CDR of TOA outgoing longwave radiative flux, W m-2)\nsurface_type (1)\ncloud_particle_phase (1)\ncloud_particle_radius (microns)\ncloud_optical_depth (1)\ncloud_top_pressure (hPa)\ncloud_top_temperature (K)\ncloud_type (1)\nsurface_shortwave_cloud_radiative_forcing (W m-2)\nsurface_longwave_cloud_radiative_forcing (W m-2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0fe5_a4b9_3776/index.json", "https://www.ngdc.noaa.gov/thredds/dodsC/arctic/Polar-APP-X_v01r01_Nhem_1400_d20160801_c20160803.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0fe5_a4b9_3776.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0fe5_a4b9_3776&showErrors=false&email=", "Cooperative Institute for Meteorological Studies, University of Wisconsin at Madison", "noaa_ngdc_0fe5_a4b9_3776"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5253_bf9e_db32", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_5253_bf9e_db32.graph", "", "", "public", "Extended AVHRR Polar Pathfinder Fundamental Climate Data Record (APPx CDR) [columns][rows]", "The Extended Advanced Very High Resolution Radiometer (AVHRR) Polar Pathfinder (APP-x) Version-2 thematic Climate Data Record (CDR) includes more than 33 years of surface temperature, surface albedo, surface and the Top Of the Atmosphere (TOA) shortwave and longwave radiative fluxes, cloud properties (amount, phase, particle size, optical depth,top pressure and temperature, surface and TOA radiative effect), and ice thickness and age. The APP-x CDR has twice daily data at local solar times of 14 and 04(02) for the Arctic(Antarctic) at a spatial resolution of 25 km for both poles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [columns][rows]):\nlongitude (longitude of EASE Grid 25km resolution in the polar regions, Arctic (361,361), Antarctic (321,321), degrees_east)\nlatitude (latitude of EASE Grid 25km resolution in the polar regionsArctic (361,361), Antarctic (321,321), degrees_north)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_5253_bf9e_db32/index.json", "https://www.ngdc.noaa.gov/thredds/dodsC/arctic/Polar-APP-X_v01r01_Nhem_1400_d20160731_c20160822.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_5253_bf9e_db32.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_5253_bf9e_db32&showErrors=false&email=", "Cooperative Institute for Meteorological Studies, University of Wisconsin at Madison", "noaa_ngdc_5253_bf9e_db32"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0f24_2f8c_d159", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_0f24_2f8c_d159.graph", "", "", "public", "Extended AVHRR Polar Pathfinder Fundamental Climate Data Record (APPx CDR) [Time][columns][rows]", "The Extended Advanced Very High Resolution Radiometer (AVHRR) Polar Pathfinder (APP-x) Version-2 thematic Climate Data Record (CDR) includes more than 33 years of surface temperature, surface albedo, surface and the Top Of the Atmosphere (TOA) shortwave and longwave radiative fluxes, cloud properties (amount, phase, particle size, optical depth,top pressure and temperature, surface and TOA radiative effect), and ice thickness and age. The APP-x CDR has twice daily data at local solar times of 14 and 04(02) for the Arctic(Antarctic) at a spatial resolution of 25 km for both poles.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time2][columns][rows]):\ncdr_surface_temperature (NOAA CDR of surface skin temperature, K)\ncdr_surface_albedo (NOAA CDR of surface broadband albedo, 1)\ncdr_surface_downwelling_shortwave_flux (NOAA CDR of surface downwelling shortwave radiative flux, W m-2)\ncdr_surface_downwelling_longwave_flux (NOAA CDR of surface downwelling longwave radiative flux, W m-2)\ncdr_surface_upwelling_shortwave_flux (NOAA CDR of surface upwelling shortwave radiative flux, W m-2)\ncdr_surface_upwelling_longwave_flux (NOAA CDR of surface upwelling longwave radiative flux, W m-2)\ncdr_cloud_binary_mask (NOAA CDR of cloud mask, 1)\ncdr_sea_ice_thickness (NOAA CDR of sea ice thickness, m)\ncdr_toa_net_downward_shortwave_flux (NOAA CDR of TOA net downward shortwave radiative flux, W m-2)\ncdr_toa_outgoing_shortwave_flux (NOAA CDR of TOA outgoing shortwave radiative flux, W m-2)\ncdr_toa_outgoing_longwave_flux (NOAA CDR of TOA outgoing longwave radiative flux, W m-2)\nsurface_type (1)\ncloud_particle_phase (1)\ncloud_particle_radius (microns)\ncloud_optical_depth (1)\ncloud_top_pressure (hPa)\ncloud_top_temperature (K)\ncloud_type (1)\nsurface_shortwave_cloud_radiative_forcing (W m-2)\nsurface_longwave_cloud_radiative_forcing (W m-2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_0f24_2f8c_d159/index.json", "https://www.ngdc.noaa.gov/thredds/dodsC/arctic/Polar-APP-X_v01r01_Nhem_1400_d20160731_c20160822.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_0f24_2f8c_d159.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_0f24_2f8c_d159&showErrors=false&email=", "Cooperative Institute for Meteorological Studies, University of Wisconsin at Madison", "noaa_ngdc_0f24_2f8c_d159"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b05e_8ba1_e064", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b05e_8ba1_e064.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b05e_8ba1_e064/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b05e_8ba1_e064_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b05e_8ba1_e064_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b05e_8ba1_e064/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b05e_8ba1_e064.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b05e_8ba1_e064&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_b05e_8ba1_e064"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ba38_d298_7fb6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ba38_d298_7fb6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_ba38_d298_7fb6/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_ba38_d298_7fb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_ba38_d298_7fb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_ba38_d298_7fb6/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_ba38_d298_7fb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_ba38_d298_7fb6&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_ba38_d298_7fb6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2e80_3e92_0d96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2e80_3e92_0d96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_2e80_3e92_0d96/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Summer (Jul-Sep) 5.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_2e80_3e92_0d96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_2e80_3e92_0d96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_2e80_3e92_0d96/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_2e80_3e92_0d96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_2e80_3e92_0d96&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_2e80_3e92_0d96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_278d_ee5d_0336", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_278d_ee5d_0336.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_278d_ee5d_0336/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_278d_ee5d_0336_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_278d_ee5d_0336_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_278d_ee5d_0336/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_278d_ee5d_0336.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_278d_ee5d_0336&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_278d_ee5d_0336"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6eb3_1324_fe10", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6eb3_1324_fe10.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6eb3_1324_fe10/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6eb3_1324_fe10_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6eb3_1324_fe10_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6eb3_1324_fe10/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6eb3_1324_fe10.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6eb3_1324_fe10&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_6eb3_1324_fe10"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_baee_515e_5f93", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_baee_515e_5f93.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_baee_515e_5f93/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature November 5.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_baee_515e_5f93_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_baee_515e_5f93_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_baee_515e_5f93/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_baee_515e_5f93.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_baee_515e_5f93&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_baee_515e_5f93"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b320_a934_3ac2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b320_a934_3ac2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b320_a934_3ac2/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b320_a934_3ac2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b320_a934_3ac2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b320_a934_3ac2/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b320_a934_3ac2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b320_a934_3ac2&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_b320_a934_3ac2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e98e_e92a_9cfb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e98e_e92a_9cfb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e98e_e92a_9cfb/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e98e_e92a_9cfb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e98e_e92a_9cfb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e98e_e92a_9cfb/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e98e_e92a_9cfb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e98e_e92a_9cfb&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_e98e_e92a_9cfb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7d63_a8bc_2608", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7d63_a8bc_2608.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7d63_a8bc_2608/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Annual 5.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7d63_a8bc_2608_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7d63_a8bc_2608_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7d63_a8bc_2608/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7d63_a8bc_2608.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7d63_a8bc_2608&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_7d63_a8bc_2608"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_06bf_c74a_24c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_06bf_c74a_24c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_06bf_c74a_24c6/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_06bf_c74a_24c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_06bf_c74a_24c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_06bf_c74a_24c6/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_06bf_c74a_24c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_06bf_c74a_24c6&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_06bf_c74a_24c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4938_8b84_b07d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4938_8b84_b07d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_4938_8b84_b07d/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_4938_8b84_b07d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_4938_8b84_b07d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_4938_8b84_b07d/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_4938_8b84_b07d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_4938_8b84_b07d&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_4938_8b84_b07d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_c3c3_3090_b391", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_c3c3_3090_b391.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_c3c3_3090_b391/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Summer (Jul-Sep) 5.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_c3c3_3090_b391_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_c3c3_3090_b391_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_c3c3_3090_b391/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_c3c3_3090_b391.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_c3c3_3090_b391&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_c3c3_3090_b391"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8696_391d_42f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8696_391d_42f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_8696_391d_42f0/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_8696_391d_42f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_8696_391d_42f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_8696_391d_42f0/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_8696_391d_42f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_8696_391d_42f0&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_8696_391d_42f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_21e3_c4af_877c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_21e3_c4af_877c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_21e3_c4af_877c/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_21e3_c4af_877c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_21e3_c4af_877c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_21e3_c4af_877c/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_21e3_c4af_877c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_21e3_c4af_877c&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_21e3_c4af_877c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_dd75_631c_40ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_dd75_631c_40ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_dd75_631c_40ca/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature November 5.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_dd75_631c_40ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_dd75_631c_40ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_dd75_631c_40ca/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_dd75_631c_40ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_dd75_631c_40ca&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_dd75_631c_40ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b354_9598_1222", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b354_9598_1222.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b354_9598_1222/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b354_9598_1222_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b354_9598_1222_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b354_9598_1222/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b354_9598_1222.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b354_9598_1222&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_b354_9598_1222"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_aac9_c0d1_377c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_aac9_c0d1_377c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_aac9_c0d1_377c/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_aac9_c0d1_377c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_aac9_c0d1_377c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_aac9_c0d1_377c/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_aac9_c0d1_377c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_aac9_c0d1_377c&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_aac9_c0d1_377c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_695f_f9ac_ce44", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_695f_f9ac_ce44.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_695f_f9ac_ce44/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Annual 5.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_695f_f9ac_ce44_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_695f_f9ac_ce44_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_695f_f9ac_ce44/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_695f_f9ac_ce44.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_695f_f9ac_ce44&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_695f_f9ac_ce44"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2d23_8f3b_dbc9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2d23_8f3b_dbc9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_2d23_8f3b_dbc9/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature Summer (Jul-Sep) 0.10 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_2d23_8f3b_dbc9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_2d23_8f3b_dbc9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_2d23_8f3b_dbc9/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_2d23_8f3b_dbc9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_2d23_8f3b_dbc9&showErrors=false&email=", "NCEI", "noaa_nodc_2d23_8f3b_dbc9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a58e_0a09_068a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a58e_0a09_068a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_a58e_0a09_068a/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_a58e_0a09_068a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_a58e_0a09_068a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_a58e_0a09_068a/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_a58e_0a09_068a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_a58e_0a09_068a&showErrors=false&email=", "NCEI", "noaa_nodc_a58e_0a09_068a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a363_af52_bfdb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a363_af52_bfdb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_a363_af52_bfdb/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_a363_af52_bfdb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_a363_af52_bfdb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_a363_af52_bfdb/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_a363_af52_bfdb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_a363_af52_bfdb&showErrors=false&email=", "NCEI", "noaa_nodc_a363_af52_bfdb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_241d_ee2f_0868", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_241d_ee2f_0868.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_241d_ee2f_0868/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature November 0.10 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_241d_ee2f_0868_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_241d_ee2f_0868_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_241d_ee2f_0868/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_241d_ee2f_0868.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_241d_ee2f_0868&showErrors=false&email=", "NCEI", "noaa_nodc_241d_ee2f_0868"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8cc7_027b_fa4e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8cc7_027b_fa4e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_8cc7_027b_fa4e/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_8cc7_027b_fa4e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_8cc7_027b_fa4e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_8cc7_027b_fa4e/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_8cc7_027b_fa4e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_8cc7_027b_fa4e&showErrors=false&email=", "NCEI", "noaa_nodc_8cc7_027b_fa4e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e243_70b4_e532", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e243_70b4_e532.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e243_70b4_e532/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e243_70b4_e532_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e243_70b4_e532_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e243_70b4_e532/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e243_70b4_e532.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e243_70b4_e532&showErrors=false&email=", "NCEI", "noaa_nodc_e243_70b4_e532"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_180a_4a5a_1752", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_180a_4a5a_1752.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_180a_4a5a_1752/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature Annual 0.10 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_180a_4a5a_1752_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_180a_4a5a_1752_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_180a_4a5a_1752/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_180a_4a5a_1752.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_180a_4a5a_1752&showErrors=false&email=", "NCEI", "noaa_nodc_180a_4a5a_1752"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cff1_8339_4f48", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cff1_8339_4f48.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_cff1_8339_4f48/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_cff1_8339_4f48_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_cff1_8339_4f48_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_cff1_8339_4f48/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_cff1_8339_4f48.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_cff1_8339_4f48&showErrors=false&email=", "NCEI", "noaa_nodc_cff1_8339_4f48"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_315c_33bd_35b2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_315c_33bd_35b2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_315c_33bd_35b2/request", "", "public", "Northwest Atlantic regional climatology : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature for the Northwest Atlantic from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_315c_33bd_35b2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_315c_33bd_35b2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_315c_33bd_35b2/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_315c_33bd_35b2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_315c_33bd_35b2&showErrors=false&email=", "NCEI", "noaa_nodc_315c_33bd_35b2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_24b8_8410_a9b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_24b8_8410_a9b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_24b8_8410_a9b0/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_24b8_8410_a9b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_24b8_8410_a9b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_24b8_8410_a9b0/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_24b8_8410_a9b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_24b8_8410_a9b0&showErrors=false&email=", "NOAA", "noaa_nodc_24b8_8410_a9b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2f98_8b54_19cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2f98_8b54_19cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_2f98_8b54_19cd/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_2f98_8b54_19cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_2f98_8b54_19cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_2f98_8b54_19cd/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_2f98_8b54_19cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_2f98_8b54_19cd&showErrors=false&email=", "NOAA", "noaa_nodc_2f98_8b54_19cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e86b_8826_9294", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e86b_8826_9294.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e86b_8826_9294/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e86b_8826_9294_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e86b_8826_9294_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e86b_8826_9294/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e86b_8826_9294.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e86b_8826_9294&showErrors=false&email=", "NOAA", "noaa_nodc_e86b_8826_9294"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0265_d582_2eb1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0265_d582_2eb1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_0265_d582_2eb1/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature November 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_0265_d582_2eb1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_0265_d582_2eb1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_0265_d582_2eb1/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_0265_d582_2eb1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_0265_d582_2eb1&showErrors=false&email=", "NOAA", "noaa_nodc_0265_d582_2eb1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1a13_9f47_37a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1a13_9f47_37a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_1a13_9f47_37a0/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_1a13_9f47_37a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_1a13_9f47_37a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_1a13_9f47_37a0/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_1a13_9f47_37a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_1a13_9f47_37a0&showErrors=false&email=", "NOAA", "noaa_nodc_1a13_9f47_37a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3595_6fdf_7375", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3595_6fdf_7375.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_3595_6fdf_7375/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_3595_6fdf_7375_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_3595_6fdf_7375_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_3595_6fdf_7375/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_3595_6fdf_7375.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_3595_6fdf_7375&showErrors=false&email=", "NOAA", "noaa_nodc_3595_6fdf_7375"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e2e7_50cb_cbd1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e2e7_50cb_cbd1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e2e7_50cb_cbd1/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Annual 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e2e7_50cb_cbd1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e2e7_50cb_cbd1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e2e7_50cb_cbd1/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e2e7_50cb_cbd1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e2e7_50cb_cbd1&showErrors=false&email=", "NOAA", "noaa_nodc_e2e7_50cb_cbd1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_d038_1191_14f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_d038_1191_14f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_d038_1191_14f1/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_d038_1191_14f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_d038_1191_14f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_d038_1191_14f1/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_d038_1191_14f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_d038_1191_14f1&showErrors=false&email=", "NOAA", "noaa_nodc_d038_1191_14f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6341_06e2_a6ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6341_06e2_a6ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6341_06e2_a6ee/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6341_06e2_a6ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6341_06e2_a6ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6341_06e2_a6ee/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6341_06e2_a6ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6341_06e2_a6ee&showErrors=false&email=", "NOAA", "noaa_nodc_6341_06e2_a6ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1a82_0175_b2a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1a82_0175_b2a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_1a82_0175_b2a7/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.10 degree, 0000", "Climatological mean temperature for the Greenland-Iceland-Norwegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_1a82_0175_b2a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_1a82_0175_b2a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_1a82_0175_b2a7/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_1a82_0175_b2a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_1a82_0175_b2a7&showErrors=false&email=", "NCEI", "noaa_nodc_1a82_0175_b2a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7112_d88f_1a37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7112_d88f_1a37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7112_d88f_1a37/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the Greenland-Iceland-Norwegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7112_d88f_1a37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7112_d88f_1a37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7112_d88f_1a37/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7112_d88f_1a37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7112_d88f_1a37&showErrors=false&email=", "NCEI", "noaa_nodc_7112_d88f_1a37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f6a4_95b0_2565", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f6a4_95b0_2565.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_f6a4_95b0_2565/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the Greenland-Iceland-Norwegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_f6a4_95b0_2565_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_f6a4_95b0_2565_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_f6a4_95b0_2565/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_f6a4_95b0_2565.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_f6a4_95b0_2565&showErrors=false&email=", "NCEI", "noaa_nodc_f6a4_95b0_2565"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1d9b_bb0c_da8e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1d9b_bb0c_da8e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_1d9b_bb0c_da8e/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature November 0.10 degree, 0000", "Climatological mean temperature for the Greenland-Iceland-Norwegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_1d9b_bb0c_da8e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_1d9b_bb0c_da8e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_1d9b_bb0c_da8e/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_1d9b_bb0c_da8e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_1d9b_bb0c_da8e&showErrors=false&email=", "NCEI", "noaa_nodc_1d9b_bb0c_da8e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7037_035f_0499", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7037_035f_0499.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7037_035f_0499/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the Greenland-Iceland-Norwegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7037_035f_0499_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7037_035f_0499_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7037_035f_0499/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7037_035f_0499.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7037_035f_0499&showErrors=false&email=", "NCEI", "noaa_nodc_7037_035f_0499"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4f7d_92ce_277f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4f7d_92ce_277f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_4f7d_92ce_277f/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the Greenland-Iceland-Norwegian Seas from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_4f7d_92ce_277f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_4f7d_92ce_277f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_4f7d_92ce_277f/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_4f7d_92ce_277f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_4f7d_92ce_277f&showErrors=false&email=", "NCEI", "noaa_nodc_4f7d_92ce_277f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f8e0_afe3_c18f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f8e0_afe3_c18f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_f8e0_afe3_c18f/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.10 degree, 0000", "Climatological mean temperature and salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_f8e0_afe3_c18f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_f8e0_afe3_c18f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_f8e0_afe3_c18f/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_f8e0_afe3_c18f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_f8e0_afe3_c18f&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_f8e0_afe3_c18f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6e3c_65a4_ac41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6e3c_65a4_ac41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6e3c_65a4_ac41/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature and salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6e3c_65a4_ac41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6e3c_65a4_ac41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6e3c_65a4_ac41/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6e3c_65a4_ac41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6e3c_65a4_ac41&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_6e3c_65a4_ac41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7050_3786_dec0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7050_3786_dec0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7050_3786_dec0/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature and salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7050_3786_dec0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7050_3786_dec0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7050_3786_dec0/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7050_3786_dec0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7050_3786_dec0&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_7050_3786_dec0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_9caa_9986_e60c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_9caa_9986_e60c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_9caa_9986_e60c/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature November 0.10 degree, 0000", "Climatological mean temperature and salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_9caa_9986_e60c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_9caa_9986_e60c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_9caa_9986_e60c/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_9caa_9986_e60c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_9caa_9986_e60c&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_9caa_9986_e60c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e650_5530_ee6f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e650_5530_ee6f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e650_5530_ee6f/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature and salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e650_5530_ee6f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e650_5530_ee6f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e650_5530_ee6f/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e650_5530_ee6f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e650_5530_ee6f&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_e650_5530_ee6f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7b60_a439_dcfe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7b60_a439_dcfe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7b60_a439_dcfe/request", "", "public", "GIN Seas Regional Climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature and salinity for the Greenland/Iceland/Norwegian Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7b60_a439_dcfe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7b60_a439_dcfe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7b60_a439_dcfe/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7b60_a439_dcfe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7b60_a439_dcfe&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_7b60_a439_dcfe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5aa1_e345_be88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5aa1_e345_be88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_5aa1_e345_be88/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature Summer (Jul-Sep) 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_5aa1_e345_be88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_5aa1_e345_be88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_5aa1_e345_be88/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_5aa1_e345_be88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_5aa1_e345_be88&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_5aa1_e345_be88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_293e_c3a7_aba9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_293e_c3a7_aba9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_293e_c3a7_aba9/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_293e_c3a7_aba9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_293e_c3a7_aba9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_293e_c3a7_aba9/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_293e_c3a7_aba9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_293e_c3a7_aba9&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_293e_c3a7_aba9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3007_1605_1962", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3007_1605_1962.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_3007_1605_1962/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_3007_1605_1962_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_3007_1605_1962_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_3007_1605_1962/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_3007_1605_1962.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_3007_1605_1962&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_3007_1605_1962"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4ac5_3a32_e8e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4ac5_3a32_e8e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_4ac5_3a32_e8e5/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature November 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_4ac5_3a32_e8e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_4ac5_3a32_e8e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_4ac5_3a32_e8e5/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_4ac5_3a32_e8e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_4ac5_3a32_e8e5&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_4ac5_3a32_e8e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0e93_d946_7a54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0e93_d946_7a54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_0e93_d946_7a54/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_0e93_d946_7a54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_0e93_d946_7a54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_0e93_d946_7a54/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_0e93_d946_7a54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_0e93_d946_7a54&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_0e93_d946_7a54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6b6f_24ef_6c56", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6b6f_24ef_6c56.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6b6f_24ef_6c56/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6b6f_24ef_6c56_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6b6f_24ef_6c56_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6b6f_24ef_6c56/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6b6f_24ef_6c56.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6b6f_24ef_6c56&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_6b6f_24ef_6c56"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_06ee_5ef7_2d38", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_06ee_5ef7_2d38.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_06ee_5ef7_2d38/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature Annual 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_06ee_5ef7_2d38_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_06ee_5ef7_2d38_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_06ee_5ef7_2d38/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_06ee_5ef7_2d38.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_06ee_5ef7_2d38&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_06ee_5ef7_2d38"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_38fa_57e1_1a18", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_38fa_57e1_1a18.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_38fa_57e1_1a18/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_38fa_57e1_1a18_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_38fa_57e1_1a18_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_38fa_57e1_1a18/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_38fa_57e1_1a18.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_38fa_57e1_1a18&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_38fa_57e1_1a18"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_df13_a0c1_f716", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_df13_a0c1_f716.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_df13_a0c1_f716/request", "", "public", "East Asian Seas regional climatology : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_df13_a0c1_f716_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_df13_a0c1_f716_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_df13_a0c1_f716/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_df13_a0c1_f716.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_df13_a0c1_f716&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_df13_a0c1_f716"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cccf_c109_612f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cccf_c109_612f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_cccf_c109_612f/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_cccf_c109_612f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_cccf_c109_612f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_cccf_c109_612f/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_cccf_c109_612f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_cccf_c109_612f&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_cccf_c109_612f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7351_63e8_14f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7351_63e8_14f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7351_63e8_14f6/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7351_63e8_14f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7351_63e8_14f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7351_63e8_14f6/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7351_63e8_14f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7351_63e8_14f6&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_7351_63e8_14f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b9f2_8a6d_eaa7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b9f2_8a6d_eaa7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b9f2_8a6d_eaa7/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b9f2_8a6d_eaa7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b9f2_8a6d_eaa7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b9f2_8a6d_eaa7/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b9f2_8a6d_eaa7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b9f2_8a6d_eaa7&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_b9f2_8a6d_eaa7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2dfc_5215_06b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2dfc_5215_06b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_2dfc_5215_06b7/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_2dfc_5215_06b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_2dfc_5215_06b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_2dfc_5215_06b7/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_2dfc_5215_06b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_2dfc_5215_06b7&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_2dfc_5215_06b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e7bb_a1f5_fbbe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e7bb_a1f5_fbbe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e7bb_a1f5_fbbe/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e7bb_a1f5_fbbe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e7bb_a1f5_fbbe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e7bb_a1f5_fbbe/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e7bb_a1f5_fbbe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e7bb_a1f5_fbbe&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_e7bb_a1f5_fbbe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ca51_7345_079c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ca51_7345_079c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_ca51_7345_079c/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_ca51_7345_079c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_ca51_7345_079c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_ca51_7345_079c/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_ca51_7345_079c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_ca51_7345_079c&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_ca51_7345_079c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_fa05_b9af_6087", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_fa05_b9af_6087.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_fa05_b9af_6087/request", "", "public", "Arctic Seas Regional Climatology : salinity Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_fa05_b9af_6087_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_fa05_b9af_6087_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_fa05_b9af_6087/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_fa05_b9af_6087.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_fa05_b9af_6087&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_fa05_b9af_6087"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_25bf_d46b_b742", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_25bf_d46b_b742.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_25bf_d46b_b742/request", "", "public", "Arctic Seas Regional Climatology : salinity Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_25bf_d46b_b742_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_25bf_d46b_b742_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_25bf_d46b_b742/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_25bf_d46b_b742.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_25bf_d46b_b742&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_25bf_d46b_b742"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_342f_3d14_5607", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_342f_3d14_5607.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_342f_3d14_5607/request", "", "public", "Arctic Seas Regional Climatology : salinity November 0.25 degree (salinity monthly quarter), 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_342f_3d14_5607_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_342f_3d14_5607_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_342f_3d14_5607/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_342f_3d14_5607.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_342f_3d14_5607&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_342f_3d14_5607"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6ac1_daeb_4a22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6ac1_daeb_4a22.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6ac1_daeb_4a22/request", "", "public", "Arctic Seas Regional Climatology : salinity November 1.00 degree (salinity monthly one), 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6ac1_daeb_4a22_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6ac1_daeb_4a22_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6ac1_daeb_4a22/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6ac1_daeb_4a22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6ac1_daeb_4a22&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_6ac1_daeb_4a22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0f87_43a1_50d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0f87_43a1_50d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_0f87_43a1_50d3/request", "", "public", "Arctic Seas Regional Climatology : salinity Annual 0.25 degree (salinity annual quarter), 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_0f87_43a1_50d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_0f87_43a1_50d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_0f87_43a1_50d3/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_0f87_43a1_50d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_0f87_43a1_50d3&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_0f87_43a1_50d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f782_bc50_b9da", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f782_bc50_b9da.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_f782_bc50_b9da/request", "", "public", "Arctic Seas Regional Climatology : salinity Annual 1.00 degree (salinity annual one), 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_f782_bc50_b9da_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_f782_bc50_b9da_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_f782_bc50_b9da/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_f782_bc50_b9da.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_f782_bc50_b9da&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_f782_bc50_b9da"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6a44_2cb9_686f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6a44_2cb9_686f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6a44_2cb9_686f/request", "", "public", "AVHRR Pathfinder Version 5.2 L3-Collated (L3C) SST (pathFinderV5.2 night 2012 020614)", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\nsst_dtime (time difference from reference time, second)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (Deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nquality_level (SST measurement quality)\npathfinder_quality_level (Pathfinder SST quality flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6a44_2cb9_686f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6a44_2cb9_686f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6a44_2cb9_686f/index.json", "https://pathfinder.nodc.noaa.gov/ISO-AVHRR_Pathfinder-NODC-L3C-v5.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6a44_2cb9_686f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6a44_2cb9_686f&showErrors=false&email=", "NOAA NODC", "noaa_nodc_6a44_2cb9_686f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_78e2_de17_8305", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_78e2_de17_8305.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_78e2_de17_8305/request", "", "public", "AVHRR Pathfinder Version 5.2 L3-Collated (L3C) SST (pathFinderV5.2 night), 1981-2011", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\nsst_dtime (time difference from reference time, second)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (Deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nquality_level (SST measurement quality)\npathfinder_quality_level (Pathfinder SST quality flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_78e2_de17_8305_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_78e2_de17_8305_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_78e2_de17_8305/index.json", "https://pathfinder.nodc.noaa.gov/ISO-AVHRR_Pathfinder-NODC-L3C-v5.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_78e2_de17_8305.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_78e2_de17_8305&showErrors=false&email=", "NOAA NODC", "noaa_nodc_78e2_de17_8305"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1847_812f_2105", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1847_812f_2105.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_1847_812f_2105/request", "", "public", "AVHRR Pathfinder Version 5.2 L3-Collated (L3C) SST (pathFinderV5.2 day 2012 020614)", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\nsst_dtime (time difference from reference time, second)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (Deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nquality_level (SST measurement quality)\npathfinder_quality_level (Pathfinder SST quality flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_1847_812f_2105_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_1847_812f_2105_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_1847_812f_2105/index.json", "https://pathfinder.nodc.noaa.gov/ISO-AVHRR_Pathfinder-NODC-L3C-v5.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_1847_812f_2105.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_1847_812f_2105&showErrors=false&email=", "NOAA NODC", "noaa_nodc_1847_812f_2105"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7071_edc2_c76a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7071_edc2_c76a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7071_edc2_c76a/request", "", "public", "AVHRR Pathfinder Version 5.2 L3-Collated (L3C) SST (pathFinderV5.2 day), 1981-2011", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\nsst_dtime (time difference from reference time, second)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (Deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nquality_level (SST measurement quality)\npathfinder_quality_level (Pathfinder SST quality flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7071_edc2_c76a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7071_edc2_c76a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7071_edc2_c76a/index.json", "https://pathfinder.nodc.noaa.gov/ISO-AVHRR_Pathfinder-NODC-L3C-v5.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7071_edc2_c76a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7071_edc2_c76a&showErrors=false&email=", "NOAA NODC", "noaa_nodc_7071_edc2_c76a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5e47_99aa_f1e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5e47_99aa_f1e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_5e47_99aa_f1e6/request", "", "public", "Top Dataset, node, avhrrSST resFull, 0.043945312\u00b0, 1981-2009", "This data field contains Daytime Sea Surface Temperature (SST) data from Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5. The data are at 4 km-per-pixel resolution and have been averaged monthly after masking out any data with a quality flag of less than 4. Data in this file at this quality level include, for daytime: weekly SST values, number of pixels, and standard deviation. Data are stored as unsigned integers: to convert SST fields to degrees C, apply a scale factor of 0.075 and an offset of -3.0. To convert standard deviation and count fields to degrees C and number of pixels, respectively, apply a scale factor of 0.01.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST4_daynitavg (This data field contains Day-Night Average Sea Surface Temperature (SST) data from AVHRR Pathfinder Version 5. The data are at 4 km-per-pixel resolution and have been averaged monthly after masking out any data with a quality flag of less than 4. Data in this file at this quality level include, for day/night average: weekly SST values, number of pixels, and standard deviation. Data are stored as unsigned integers: to convert SST fields to degrees C, apply a scale factor of 0.075 and an offset of -3.0. To convert standard deviation and count fields to degrees C and number of pixels, respectively, apply a scale factor of 0.01., degree_C)\nSST7_daynitavg (This data field contains Day-Night Average Sea Surface Temperature (SST) data from AVHRR Pathfinder Version 5. The data are at 4 km-per-pixel resolution and have been averaged monthly after masking out any data with a quality flag of less than 7. Data in this file at this quality level include, for day/night average: weekly SST values, number of pixels, and standard deviation. Data are stored as unsigned integers: to convert SST fields to degrees C, apply a scale factor of 0.075 and an offset of -3.0. To convert standard deviation and count fields to degrees C and number of pixels, respectively, apply a scale factor of 0.01., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_5e47_99aa_f1e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_5e47_99aa_f1e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_5e47_99aa_f1e6/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/node/avhrrSST_resFull.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_5e47_99aa_f1e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_5e47_99aa_f1e6&showErrors=false&email=", "USDOC/NOAA/NESDIS/NODC", "noaa_nodc_5e47_99aa_f1e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_58e6_0040_f4f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_58e6_0040_f4f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_58e6_0040_f4f0/request", "", "public", "Top Dataset, node, avhrrSST res1deg, 1.0\u00b0, 1981-2009", "This data field contains Daytime Sea Surface Temperature (SST) data from Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5. The data have been averaged to a one-degree grid in space and monthly in time, after masking out any data with a quality flag of less than 4. All data has the V5.0 land mask applied. Data in this file at this quality level include, for daytime: monthly SST values, number of pixels, and standard deviation.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST4_daynitavg (This data field contains Day-Night Average Sea Surface Temperature (SST) data from AVHRR Pathfinder Version 5. The data have been averaged to a one-degree grid in space and monthly in time, after masking out any data with a quality flag of less than 4. All data has the V5.0 land mask applied. Data in this file at this quality level include, for day/night average: monthly SST values, number of pixels, and standard deviation., degree_C)\nSST7_daynitavg (This data field contains Day-Night Average Sea Surface Temperature (SST) data from AVHRR Pathfinder Version 5. The data have been averaged to a one-degree grid in space and monthly in time, after masking out any data with a quality flag of less than 7. All data has the V5.0 land mask applied. Data in this file at this quality level include, for day/night average: monthly SST values, number of pixels, and standard deviation., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_58e6_0040_f4f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_58e6_0040_f4f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_58e6_0040_f4f0/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/node/avhrrSST_res1deg.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_58e6_0040_f4f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_58e6_0040_f4f0&showErrors=false&email=", "USDOC/NOAA/NESDIS/NODC", "noaa_nodc_58e6_0040_f4f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_16be_ebb0_f17b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_16be_ebb0_f17b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_16be_ebb0_f17b/request", "", "public", "Top Dataset, hydromet data, monthly, 0.0625\u00b0, 1950-2013", "Top Dataset, hydromet data, monthly\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPrec (Precipitation, mm)\nTmax (Daily maximum temperature, degree_C)\nTmin (Daily minimum temperature, degree_C)\nwind (mean daily wind speed, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_16be_ebb0_f17b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_16be_ebb0_f17b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_16be_ebb0_f17b/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/hydromet_data/monthly.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_16be_ebb0_f17b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_16be_ebb0_f17b&showErrors=false&email=", "NOAA NODC", "noaa_nodc_16be_ebb0_f17b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a774_0eb4_6f88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a774_0eb4_6f88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_a774_0eb4_6f88/request", "", "public", "Top Dataset, hydromet data, daily, 0.0625\u00b0, 1950-2013", "Top Dataset, hydromet data, daily\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPrec (Precipitation, mm)\nTmax (Daily maximum temperature, degree_C)\nTmin (Daily minimum temperature, degree_C)\nwind (mean daily wind speed, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_a774_0eb4_6f88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_a774_0eb4_6f88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_a774_0eb4_6f88/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/hydromet_data/daily.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_a774_0eb4_6f88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_a774_0eb4_6f88&showErrors=false&email=", "NOAA NODC", "noaa_nodc_a774_0eb4_6f88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_da4e_3fc9_f107", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_da4e_3fc9_f107.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_da4e_3fc9_f107/request", "", "public", "Archived Suite of NOAA Coral Reef Watch Operational Twice-Weekly Near-Real-Time Global 50km Satellite Coral Bleaching Monitoring Products [time][latitude][longitude], 0.5\u00b0, 2000-2018", "These are Coral Reef Watch near-real-time satellite coral bleaching monitoring products produced twice a week. CoastWatch Utilities v3.2.1 or higher (https://coastwatch.noaa.gov/cw_software.html) can be used for viewing, analyzing, and plotting the data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nCRW_SST (Twice-weekly global 50km satellite nighttime sea surface temperature, degree_C)\nCRW_SSTANOMALY (Twice-weekly global 50km satellite nighttime sea surface temperature anomaly, degree_C)\nCRW_HOTSPOT (Twice-weekly global 50km satellite coral bleaching HotSpot, degree_C)\nCRW_DHW (Twice-weekly global 50km satellite coral bleaching Degree Heating Weeks, degree Celsius-weeks)\nsurface_flag (Pixel characteristics flag array)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_da4e_3fc9_f107_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_da4e_3fc9_f107_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_da4e_3fc9_f107/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/crw50km_test/crw_allinone_20180109.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_da4e_3fc9_f107.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_da4e_3fc9_f107&showErrors=false&email=", "U.S. DOC/NOAA Coral Reef Watch", "noaa_nodc_da4e_3fc9_f107"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_3392_87d7_dedc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_3392_87d7_dedc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_3392_87d7_dedc/request", "", "public", "Top Dataset, monthly, NOAAGlobalTemp monthly, 5.0\u00b0, 1880-present", "The NOAA Global Surface Temperature Dataset (NOAAGlobalTemp) (Top Dataset, monthly, NOAAGlobalTemp monthly)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nanom (Global Temperature Anomalies, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_3392_87d7_dedc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_3392_87d7_dedc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_3392_87d7_dedc/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/gcag/monthly/NOAAGlobalTemp_monthly.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_3392_87d7_dedc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_3392_87d7_dedc&showErrors=false&email=", "NOAAs National Centers for Environmental Information", "noaa_ncei_3392_87d7_dedc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_a29f_599c_0df2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_a29f_599c_0df2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_a29f_599c_0df2/request", "", "public", "Top Dataset, yearly, NOAAGlobalTemp annual, 5.0\u00b0, 1880-2016", "The NOAA Global Surface Temperature Dataset (NOAAGlobalTemp) (Top Dataset, yearly, NOAAGlobalTemp annual)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nanom (Global Temperature Anomalies, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_a29f_599c_0df2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_a29f_599c_0df2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_a29f_599c_0df2/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/gcag/yearly/NOAAGlobalTemp_annual.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_a29f_599c_0df2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_a29f_599c_0df2&showErrors=false&email=", "NOAAs National Centers for Environmental Information", "noaa_ncei_a29f_599c_0df2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_e7fc_68cb_0584", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_e7fc_68cb_0584.graph", "", "", "public", "OISST Daily AVHRR-only Feature Collection, OISST Daily AVHRR-only Feature Collection, Best Time Series [time], 1981-present", "National Centers for Environmental Information (NCEI) Daily-Optimum Interpolation Sea Surface Temperature (OISST)-V2 based mainly on Advanced Very High Resolution Radiometer (AVHRR), Final. Best time series, taking the data from the most recent run available. Aggregation of OISST files, not including preliminary files\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_e7fc_68cb_0584/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/ncFC/fc-oisst-daily-avhrr-only-dly/OISST_Daily_AVHRR-only_Feature_Collection_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_e7fc_68cb_0584.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_e7fc_68cb_0584&showErrors=false&email=", "NOAA", "noaa_ncei_e7fc_68cb_0584"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_9bc6_2d0d_9403", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_9bc6_2d0d_9403.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_9bc6_2d0d_9403/request", "", "public", "OISST Daily AVHRR-only Feature Collection, OISST Daily AVHRR-only Feature Collection, Best Time Series [time][zlev][lat][lon], 0.25\u00b0, 1981-present", "National Centers for Environmental Information (NCEI) Daily-Optimum Interpolation Sea Surface Temperature (OISST)-V2 based mainly on Advanced Very High Resolution Radiometer (AVHRR), Final. Best time series, taking the data from the most recent run available. Aggregation of OISST files, not including preliminary files\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nice (Sea ice concentration, percent)\nerr (Estimated error standard deviation of analysed_sst, degree_C)\nanom (Daily sea surface temperature anomalies, degree_C)\nsst (Daily sea surface temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_9bc6_2d0d_9403_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_9bc6_2d0d_9403_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_9bc6_2d0d_9403/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/ncFC/fc-oisst-daily-avhrr-only-dly/OISST_Daily_AVHRR-only_Feature_Collection_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_9bc6_2d0d_9403.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_9bc6_2d0d_9403&showErrors=false&email=", "NOAA", "noaa_ncei_9bc6_2d0d_9403"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_f6e2_8429_f317", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_f6e2_8429_f317.graph", "", "", "public", "OISST Daily AVHRR AMSR Feature Collection, OISST Daily AVHRR AMSR Feature Collection, Best Time Series [time], 2002-2011", "Daily-Optimum Interpolation (OI)-V2, Interim, Data (Ship, Buoy, Advanced Microwave Scanning Radiometer (AMSR), Advanced Very High Resolution Radiometer (AVHRR): NOAA19, METOP, National Centers for Environmental Prediction (NCEP)-ice). Best time series, taking the data from the most recent run available. Aggregation filename pattern: amsr-avhrr-v2.*.nc\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ntime_run (run times for coordinate = time, seconds since 1970-01-01T00:00:00Z)\ntime_offset (offset hour from start of run for coordinate = time, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_f6e2_8429_f317/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/ncFC/fc-oisst-daily-avhrr-amsr-dly/OISST_Daily_AVHRR_AMSR_Feature_Collection_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_f6e2_8429_f317.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_f6e2_8429_f317&showErrors=false&email=", "NOAA", "noaa_ncei_f6e2_8429_f317"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_47c6_fd90_627c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_47c6_fd90_627c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_47c6_fd90_627c/request", "", "public", "OISST Daily AVHRR AMSR Feature Collection, OISST Daily AVHRR AMSR Feature Collection, Best Time Series [time][zlev][lat][lon], 0.25\u00b0, 2002-2011", "Daily-Optimum Interpolation (OI)-V2, Interim, Data (Ship, Buoy, Advanced Microwave Scanning Radiometer (AMSR), Advanced Very High Resolution Radiometer (AVHRR): NOAA19, METOP, National Centers for Environmental Prediction (NCEP)-ice). Best time series, taking the data from the most recent run available. Aggregation filename pattern: amsr-avhrr-v2.*.nc\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][zlev][latitude][longitude]):\nsst (Daily sea surface temperature, degree_C)\nanom (Daily sea surface temperature anomalies, degree_C)\nerr (Estimated error standard deviation of analysed_sst, degree_C)\nice (Sea ice concentration, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_47c6_fd90_627c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_47c6_fd90_627c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_47c6_fd90_627c/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/ncFC/fc-oisst-daily-avhrr-amsr-dly/OISST_Daily_AVHRR_AMSR_Feature_Collection_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_47c6_fd90_627c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_47c6_fd90_627c&showErrors=false&email=", "NOAA", "noaa_ncei_47c6_fd90_627c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_2689_8c24_7dcb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_2689_8c24_7dcb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/northerngulfinstitute_edac_dap3_2689_8c24_7dcb/request", "", "public", "NAVO NCOM: Fukushima Regional Forecast (Fukushima best) [time][lat][lon], 2011", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: Fukushima Regional Forecast. Best time series, taking the data from the most recent run available. Fukushima Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_temp_flux (model surface temperature flux, degC-m/s)\nsurf_salt_flux (model surface salinity flux, psu-m/s)\nsurf_solar_flux (model surface shortwave flux, degC-m/s)\nsurf_roughness (model surface roughness, m)\nsurf_wnd_stress_gridx (Grid x Surface Wind Stress, newton/meter2)\nsurf_wnd_stress_gridy (Grid y Surface Wind Stress, newton/meter2)\nsurf_atm_press (Surface Atmospherics Pressure, Pascal)\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/northerngulfinstitute_edac_dap3_2689_8c24_7dcb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/northerngulfinstitute_edac_dap3_2689_8c24_7dcb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/northerngulfinstitute_edac_dap3_2689_8c24_7dcb/index.json", "http://edac-dap3.northerngulfinstitute.org/thredds/dodsC/ncom_fukushima_agg/Fukushima_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/northerngulfinstitute_edac_dap3_2689_8c24_7dcb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=northerngulfinstitute_edac_dap3_2689_8c24_7dcb&showErrors=false&email=", "Naval Research Laboratory", "northerngulfinstitute_edac_dap3_2689_8c24_7dcb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_0a94_4f88_8950", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_0a94_4f88_8950.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/northerngulfinstitute_edac_dap3_0a94_4f88_8950/request", "", "public", "NAVO NCOM: Fukushima Regional Forecast (Fukushima best) [time][depth][lat][lon], 2011", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: Fukushima Regional Forecast. Best time series, taking the data from the most recent run available. Fukushima Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/northerngulfinstitute_edac_dap3_0a94_4f88_8950_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/northerngulfinstitute_edac_dap3_0a94_4f88_8950_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/northerngulfinstitute_edac_dap3_0a94_4f88_8950/index.json", "http://edac-dap3.northerngulfinstitute.org/thredds/dodsC/ncom_fukushima_agg/Fukushima_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/northerngulfinstitute_edac_dap3_0a94_4f88_8950.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=northerngulfinstitute_edac_dap3_0a94_4f88_8950&showErrors=false&email=", "Naval Research Laboratory", "northerngulfinstitute_edac_dap3_0a94_4f88_8950"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3/request", "", "public", "NAVO NCOM: Sendai Regional Forecast (Sendai, Sendai, Best Time Series) [time][depth][lat][lon], 2011", "Naval Oceanography (NAVO) Navy Coastal Ocean Model (NCOM) Relocatable Model: Sendai Regional Forecast. Best time series, taking the data from the most recent run available. Sendai Aggregation\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalinity (PSU)\nwater_temp (Water Temperature, degree_C)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3/index.json", "http://edac-dap3.northerngulfinstitute.org/thredds/dodsC/ncom_sendai_agg/Sendai_best.ncd.html", "http://upwell.pfeg.noaa.gov/erddap/rss/northerngulfinstitute_edac_dap3_5b80_cc18_d8b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=northerngulfinstitute_edac_dap3_5b80_cc18_d8b3&showErrors=false&email=", "Naval Research Laboratory", "northerngulfinstitute_edac_dap3_5b80_cc18_d8b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afb3_9852_69f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afb3_9852_69f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_afb3_9852_69f9/request", "", "public", "Top Dataset, monolevel, air.sig995.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_afb3_9852_69f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_afb3_9852_69f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_afb3_9852_69f9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_afb3_9852_69f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_afb3_9852_69f9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_afb3_9852_69f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7da1_51a7_5b2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7da1_51a7_5b2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7da1_51a7_5b2a/request", "", "public", "Top Dataset, monolevel, air.sig995.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7da1_51a7_5b2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7da1_51a7_5b2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7da1_51a7_5b2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7da1_51a7_5b2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7da1_51a7_5b2a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7da1_51a7_5b2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_160d_65f8_e93e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_160d_65f8_e93e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_160d_65f8_e93e/request", "", "public", "Top Dataset, monolevel, air.tropo.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_160d_65f8_e93e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_160d_65f8_e93e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_160d_65f8_e93e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_160d_65f8_e93e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_160d_65f8_e93e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_160d_65f8_e93e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebf2_ccf6_8919", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebf2_ccf6_8919.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ebf2_ccf6_8919/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, air.tropo.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ebf2_ccf6_8919_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ebf2_ccf6_8919_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ebf2_ccf6_8919/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ebf2_ccf6_8919.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ebf2_ccf6_8919&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ebf2_ccf6_8919"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dd4_13b1_f3a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dd4_13b1_f3a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5dd4_13b1_f3a6/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean 6-hourly Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5dd4_13b1_f3a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5dd4_13b1_f3a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5dd4_13b1_f3a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5dd4_13b1_f3a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5dd4_13b1_f3a6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5dd4_13b1_f3a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f89_dcbc_79f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f89_dcbc_79f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f89_dcbc_79f5/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean 6-hourly Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f89_dcbc_79f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f89_dcbc_79f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f89_dcbc_79f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f89_dcbc_79f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f89_dcbc_79f5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7f89_dcbc_79f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad47_3fd6_51cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad47_3fd6_51cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ad47_3fd6_51cb/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ad47_3fd6_51cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ad47_3fd6_51cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ad47_3fd6_51cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ad47_3fd6_51cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ad47_3fd6_51cb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ad47_3fd6_51cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_576d_3042_439a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_576d_3042_439a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_576d_3042_439a/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_576d_3042_439a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_576d_3042_439a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_576d_3042_439a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_576d_3042_439a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_576d_3042_439a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_576d_3042_439a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_36aa_2320_b507", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_36aa_2320_b507.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_36aa_2320_b507/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_36aa_2320_b507_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_36aa_2320_b507_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_36aa_2320_b507/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_36aa_2320_b507.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_36aa_2320_b507&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_36aa_2320_b507"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21ec_147d_3622", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21ec_147d_3622.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_21ec_147d_3622/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.4Xday.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_21ec_147d_3622_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_21ec_147d_3622_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_21ec_147d_3622/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_21ec_147d_3622.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_21ec_147d_3622&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_21ec_147d_3622"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_005e_be08_48b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_005e_be08_48b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_005e_be08_48b5/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean 6-hourly Potential Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_005e_be08_48b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_005e_be08_48b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_005e_be08_48b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_005e_be08_48b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_005e_be08_48b5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_005e_be08_48b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba93_8c68_0a99", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba93_8c68_0a99.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ba93_8c68_0a99/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean 6-hourly Potential Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ba93_8c68_0a99_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ba93_8c68_0a99_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ba93_8c68_0a99/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ba93_8c68_0a99.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ba93_8c68_0a99&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ba93_8c68_0a99"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db25_18e4_5a19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db25_18e4_5a19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db25_18e4_5a19/request", "", "public", "Top Dataset, pressure, air.4Xday.1981-2010.ltm (4x Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db25_18e4_5a19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db25_18e4_5a19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db25_18e4_5a19/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db25_18e4_5a19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db25_18e4_5a19&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_db25_18e4_5a19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae10_1997_eb93", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae10_1997_eb93.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae10_1997_eb93/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, air.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae10_1997_eb93_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae10_1997_eb93_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae10_1997_eb93/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae10_1997_eb93.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae10_1997_eb93&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ae10_1997_eb93"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3396_b24d_adc1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3396_b24d_adc1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3396_b24d_adc1/request", "", "public", "Top Dataset, pressure sprd, air.4Xday.1981-2010.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3396_b24d_adc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3396_b24d_adc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3396_b24d_adc1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3396_b24d_adc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3396_b24d_adc1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3396_b24d_adc1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e99a_df8f_5599", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e99a_df8f_5599.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e99a_df8f_5599/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, air.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e99a_df8f_5599_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e99a_df8f_5599_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e99a_df8f_5599/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e99a_df8f_5599.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e99a_df8f_5599&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e99a_df8f_5599"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65f7_7e17_5391", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65f7_7e17_5391.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_65f7_7e17_5391/request", "", "public", "Top Dataset, monolevel, air.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_65f7_7e17_5391_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_65f7_7e17_5391_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_65f7_7e17_5391/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_65f7_7e17_5391.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_65f7_7e17_5391&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_65f7_7e17_5391"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae8b_5a96_5ecd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae8b_5a96_5ecd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae8b_5a96_5ecd/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae8b_5a96_5ecd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae8b_5a96_5ecd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae8b_5a96_5ecd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae8b_5a96_5ecd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae8b_5a96_5ecd&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ae8b_5a96_5ecd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_699e_a306_3fb6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_699e_a306_3fb6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_699e_a306_3fb6/request", "", "public", "Top Dataset, monolevel, air.sfc.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature at Surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_699e_a306_3fb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_699e_a306_3fb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_699e_a306_3fb6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_699e_a306_3fb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_699e_a306_3fb6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_699e_a306_3fb6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50c5_cd46_75ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50c5_cd46_75ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_50c5_cd46_75ab/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature at Surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_50c5_cd46_75ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_50c5_cd46_75ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50c5_cd46_75ab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50c5_cd46_75ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50c5_cd46_75ab&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_50c5_cd46_75ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_68ae_403a_0ec4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_68ae_403a_0ec4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_68ae_403a_0ec4/request", "", "public", "Top Dataset, monolevel, tmax.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (3-hourly Long Term Mean Maximum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_68ae_403a_0ec4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_68ae_403a_0ec4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_68ae_403a_0ec4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_68ae_403a_0ec4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_68ae_403a_0ec4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_68ae_403a_0ec4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffa6_5de8_3896", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffa6_5de8_3896.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ffa6_5de8_3896/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (3-hourly Long Term Mean Maximum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ffa6_5de8_3896_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ffa6_5de8_3896_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ffa6_5de8_3896/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ffa6_5de8_3896.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ffa6_5de8_3896&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ffa6_5de8_3896"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5eac_5546_11df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5eac_5546_11df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5eac_5546_11df/request", "", "public", "Top Dataset, monolevel, tmin.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (3-hourly Long Term Mean Minimum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5eac_5546_11df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5eac_5546_11df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5eac_5546_11df/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5eac_5546_11df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5eac_5546_11df&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5eac_5546_11df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51ca_cc5a_dd4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51ca_cc5a_dd4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_51ca_cc5a_dd4d/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (3-hourly Long Term Mean Minimum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_51ca_cc5a_dd4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_51ca_cc5a_dd4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_51ca_cc5a_dd4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_51ca_cc5a_dd4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_51ca_cc5a_dd4d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_51ca_cc5a_dd4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fdd_8f6d_a5dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fdd_8f6d_a5dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8fdd_8f6d_a5dc/request", "", "public", "Top Dataset, subsurface, tsoil.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (3-hourly Long Term Mean Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8fdd_8f6d_a5dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8fdd_8f6d_a5dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8fdd_8f6d_a5dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8fdd_8f6d_a5dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8fdd_8f6d_a5dc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8fdd_8f6d_a5dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f617_8124_8b6b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f617_8124_8b6b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f617_8124_8b6b/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (3-hourly Long Term Mean Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f617_8124_8b6b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f617_8124_8b6b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f617_8124_8b6b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f617_8124_8b6b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f617_8124_8b6b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f617_8124_8b6b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fa5_1777_e5ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fa5_1777_e5ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5fa5_1777_e5ef/request", "", "public", "Top Dataset, monolevel, air.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5fa5_1777_e5ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5fa5_1777_e5ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5fa5_1777_e5ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5fa5_1777_e5ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5fa5_1777_e5ef&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5fa5_1777_e5ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1604_365e_d8ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1604_365e_d8ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1604_365e_d8ff/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1604_365e_d8ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1604_365e_d8ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1604_365e_d8ff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1604_365e_d8ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1604_365e_d8ff&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1604_365e_d8ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_737c_a8ad_aabf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_737c_a8ad_aabf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_737c_a8ad_aabf/request", "", "public", "Top Dataset, monolevel, air.sfc.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature Spread at surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_737c_a8ad_aabf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_737c_a8ad_aabf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_737c_a8ad_aabf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_737c_a8ad_aabf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_737c_a8ad_aabf&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_737c_a8ad_aabf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_082b_1e27_a382", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_082b_1e27_a382.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_082b_1e27_a382/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature Spread at surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_082b_1e27_a382_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_082b_1e27_a382_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_082b_1e27_a382/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_082b_1e27_a382.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_082b_1e27_a382&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_082b_1e27_a382"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7325_ea94_1d4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7325_ea94_1d4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7325_ea94_1d4d/request", "", "public", "Top Dataset, monolevel, tmax.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (3-hourly Long Term Mean Maximum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7325_ea94_1d4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7325_ea94_1d4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7325_ea94_1d4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7325_ea94_1d4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7325_ea94_1d4d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7325_ea94_1d4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_942a_b65c_5ba8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_942a_b65c_5ba8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_942a_b65c_5ba8/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (3-hourly Long Term Mean Maximum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_942a_b65c_5ba8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_942a_b65c_5ba8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_942a_b65c_5ba8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_942a_b65c_5ba8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_942a_b65c_5ba8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_942a_b65c_5ba8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54ea_d4b5_1f67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54ea_d4b5_1f67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54ea_d4b5_1f67/request", "", "public", "Top Dataset, monolevel, tmin.2m.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (3-hourly Long Term Mean Minimum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54ea_d4b5_1f67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54ea_d4b5_1f67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54ea_d4b5_1f67/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54ea_d4b5_1f67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54ea_d4b5_1f67&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_54ea_d4b5_1f67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6009_b2c2_2d30", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6009_b2c2_2d30.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6009_b2c2_2d30/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (3-hourly Long Term Mean Minimum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6009_b2c2_2d30_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6009_b2c2_2d30_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6009_b2c2_2d30/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6009_b2c2_2d30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6009_b2c2_2d30&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6009_b2c2_2d30"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b17d_add9_395f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b17d_add9_395f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b17d_add9_395f/request", "", "public", "Top Dataset, subsurface, tsoil.8Xday.1981-2010.ltm, 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (3-hourly Long Term Mean Soil Temperature Spread, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b17d_add9_395f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b17d_add9_395f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b17d_add9_395f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b17d_add9_395f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b17d_add9_395f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b17d_add9_395f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d169_ebfc_698e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d169_ebfc_698e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d169_ebfc_698e/request", "", "public", "8x Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.8Xday.ltm), 0001", "8x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (3-hourly Long Term Mean Soil Temperature Spread, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d169_ebfc_698e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d169_ebfc_698e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d169_ebfc_698e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d169_ebfc_698e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d169_ebfc_698e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d169_ebfc_698e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e4d_102b_2f44", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e4d_102b_2f44.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e4d_102b_2f44/request", "", "public", "Top Dataset, monolevel, air.2m.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Daily Air Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e4d_102b_2f44_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e4d_102b_2f44_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e4d_102b_2f44/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e4d_102b_2f44.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e4d_102b_2f44&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9e4d_102b_2f44"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_476f_f1b1_006e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_476f_f1b1_006e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_476f_f1b1_006e/request", "", "public", "Top Dataset, monolevel, air.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_476f_f1b1_006e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_476f_f1b1_006e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_476f_f1b1_006e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_476f_f1b1_006e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_476f_f1b1_006e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_476f_f1b1_006e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6109_fa1d_bb2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6109_fa1d_bb2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6109_fa1d_bb2f/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6109_fa1d_bb2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6109_fa1d_bb2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6109_fa1d_bb2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6109_fa1d_bb2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6109_fa1d_bb2f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6109_fa1d_bb2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a73_8385_70bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a73_8385_70bc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9a73_8385_70bc/request", "", "public", "Top Dataset, monolevel, air.sfc.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at Surface, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9a73_8385_70bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9a73_8385_70bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9a73_8385_70bc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9a73_8385_70bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9a73_8385_70bc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_9a73_8385_70bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_623b_2594_f923", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_623b_2594_f923.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_623b_2594_f923/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at Surface, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_623b_2594_f923_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_623b_2594_f923_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_623b_2594_f923/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_623b_2594_f923.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_623b_2594_f923&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_623b_2594_f923"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c419_43f8_5645", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c419_43f8_5645.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c419_43f8_5645/request", "", "public", "Top Dataset, monolevel, tmax.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Daily Long Term Mean Maximum Temperature at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c419_43f8_5645_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c419_43f8_5645_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c419_43f8_5645/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c419_43f8_5645.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c419_43f8_5645&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c419_43f8_5645"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c14e_621e_38c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c14e_621e_38c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c14e_621e_38c4/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Daily Long Term Mean Maximum Temperature at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c14e_621e_38c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c14e_621e_38c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c14e_621e_38c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c14e_621e_38c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c14e_621e_38c4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c14e_621e_38c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3fff_7b0d_a809", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3fff_7b0d_a809.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3fff_7b0d_a809/request", "", "public", "Top Dataset, monolevel, tmin.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Daily Long Term Mean Minimum Temperature at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3fff_7b0d_a809_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3fff_7b0d_a809_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3fff_7b0d_a809/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3fff_7b0d_a809.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3fff_7b0d_a809&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3fff_7b0d_a809"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eff7_5033_aa45", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eff7_5033_aa45.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eff7_5033_aa45/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Daily Long Term Mean Minimum Temperature at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eff7_5033_aa45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eff7_5033_aa45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eff7_5033_aa45/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eff7_5033_aa45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eff7_5033_aa45&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_eff7_5033_aa45"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d3e_9d34_dad5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5d3e_9d34_dad5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5d3e_9d34_dad5/request", "", "public", "Top Dataset, subsurface, tsoil.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Daily Long Term Mean Soil Temperature, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5d3e_9d34_dad5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5d3e_9d34_dad5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5d3e_9d34_dad5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5d3e_9d34_dad5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5d3e_9d34_dad5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5d3e_9d34_dad5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7440_4b13_5150", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7440_4b13_5150.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7440_4b13_5150/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Daily Long Term Mean Soil Temperature, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7440_4b13_5150_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7440_4b13_5150_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7440_4b13_5150/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7440_4b13_5150.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7440_4b13_5150&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7440_4b13_5150"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b02_b32d_8712", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b02_b32d_8712.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b02_b32d_8712/request", "", "public", "Top Dataset, monolevel, air.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b02_b32d_8712_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b02_b32d_8712_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b02_b32d_8712/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b02_b32d_8712.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b02_b32d_8712&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6b02_b32d_8712"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c50a_57bb_d817", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c50a_57bb_d817.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c50a_57bb_d817/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c50a_57bb_d817_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c50a_57bb_d817_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c50a_57bb_d817/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c50a_57bb_d817.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c50a_57bb_d817&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c50a_57bb_d817"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_254f_0448_f8d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_254f_0448_f8d1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_254f_0448_f8d1/request", "", "public", "Top Dataset, monolevel, air.sfc.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at surface, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_254f_0448_f8d1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_254f_0448_f8d1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_254f_0448_f8d1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_254f_0448_f8d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_254f_0448_f8d1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_254f_0448_f8d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d436_46e1_897c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d436_46e1_897c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d436_46e1_897c/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at surface, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d436_46e1_897c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d436_46e1_897c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d436_46e1_897c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d436_46e1_897c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d436_46e1_897c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d436_46e1_897c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5d5_8f70_9eef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5d5_8f70_9eef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5d5_8f70_9eef/request", "", "public", "Top Dataset, monolevel, tmax.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Daily Long Term Mean Maximum Temperature Spread at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5d5_8f70_9eef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5d5_8f70_9eef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5d5_8f70_9eef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5d5_8f70_9eef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5d5_8f70_9eef&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a5d5_8f70_9eef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70b5_ece6_6000", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70b5_ece6_6000.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_70b5_ece6_6000/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Daily Long Term Mean Maximum Temperature Spread at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_70b5_ece6_6000_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_70b5_ece6_6000_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_70b5_ece6_6000/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_70b5_ece6_6000.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_70b5_ece6_6000&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_70b5_ece6_6000"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41c0_391c_80fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41c0_391c_80fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_41c0_391c_80fc/request", "", "public", "Top Dataset, monolevel, tmin.2m.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Daily Long Term Mean Minimum Temperature Spread at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_41c0_391c_80fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_41c0_391c_80fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_41c0_391c_80fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_41c0_391c_80fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_41c0_391c_80fc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_41c0_391c_80fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0565_9195_7b28", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0565_9195_7b28.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0565_9195_7b28/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Daily Long Term Mean Minimum Temperature Spread at 2 m, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0565_9195_7b28_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0565_9195_7b28_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0565_9195_7b28/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0565_9195_7b28.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0565_9195_7b28&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0565_9195_7b28"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_426e_854f_426b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_426e_854f_426b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_426e_854f_426b/request", "", "public", "Top Dataset, subsurface, tsoil.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Daily Long Term Mean Soil Temperature Spread, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_426e_854f_426b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_426e_854f_426b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_426e_854f_426b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_426e_854f_426b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_426e_854f_426b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_426e_854f_426b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eca7_5d38_51d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eca7_5d38_51d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eca7_5d38_51d7/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.day.ltm), 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Daily Long Term Mean Soil Temperature Spread, degree_K)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eca7_5d38_51d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eca7_5d38_51d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eca7_5d38_51d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eca7_5d38_51d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eca7_5d38_51d7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_eca7_5d38_51d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f5c_0239_c7cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f5c_0239_c7cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f5c_0239_c7cd/request", "", "public", "Top Dataset, monolevel, air.sig995.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Daily Air Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f5c_0239_c7cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f5c_0239_c7cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f5c_0239_c7cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f5c_0239_c7cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f5c_0239_c7cd&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0f5c_0239_c7cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbba_8a71_4812", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fbba_8a71_4812.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fbba_8a71_4812/request", "", "public", "Top Dataset, monolevel, air.sig995.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fbba_8a71_4812_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fbba_8a71_4812_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fbba_8a71_4812/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fbba_8a71_4812.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fbba_8a71_4812&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fbba_8a71_4812"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4810_0f37_146d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4810_0f37_146d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4810_0f37_146d/request", "", "public", "Top Dataset, monolevel, air.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4810_0f37_146d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4810_0f37_146d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4810_0f37_146d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4810_0f37_146d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4810_0f37_146d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4810_0f37_146d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c67c_bac3_3523", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c67c_bac3_3523.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c67c_bac3_3523/request", "", "public", "Top Dataset, monolevel, air.tropo.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Daily Air Temperature at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c67c_bac3_3523_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c67c_bac3_3523_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c67c_bac3_3523/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c67c_bac3_3523.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c67c_bac3_3523&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c67c_bac3_3523"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e211_d7d5_b64b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e211_d7d5_b64b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e211_d7d5_b64b/request", "", "public", "Top Dataset, monolevel, air.tropo.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at Tropopause, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e211_d7d5_b64b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e211_d7d5_b64b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e211_d7d5_b64b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e211_d7d5_b64b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e211_d7d5_b64b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e211_d7d5_b64b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e228_90b5_4385", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e228_90b5_4385.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e228_90b5_4385/request", "", "public", "Top Dataset, monolevel, air.tropo.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at Tropopause, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e228_90b5_4385_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e228_90b5_4385_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e228_90b5_4385/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e228_90b5_4385.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e228_90b5_4385&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e228_90b5_4385"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b0c_0a81_dcbb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b0c_0a81_dcbb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8b0c_0a81_dcbb/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.day.1968-1996.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean Daily Potential Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8b0c_0a81_dcbb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8b0c_0a81_dcbb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8b0c_0a81_dcbb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8b0c_0a81_dcbb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8b0c_0a81_dcbb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8b0c_0a81_dcbb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3534_85a9_6208", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3534_85a9_6208.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3534_85a9_6208/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Daily Long Term Mean Potential Temperature at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3534_85a9_6208_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3534_85a9_6208_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3534_85a9_6208/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3534_85a9_6208.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3534_85a9_6208&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3534_85a9_6208"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_737f_e51a_31f8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_737f_e51a_31f8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_737f_e51a_31f8/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Daily Long Term Mean Potential Temperature at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_737f_e51a_31f8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_737f_e51a_31f8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_737f_e51a_31f8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_737f_e51a_31f8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_737f_e51a_31f8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_737f_e51a_31f8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_916e_b73a_f774", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_916e_b73a_f774.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_916e_b73a_f774/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_916e_b73a_f774_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_916e_b73a_f774_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_916e_b73a_f774/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_916e_b73a_f774.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_916e_b73a_f774&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_916e_b73a_f774"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f02_62f6_f9f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f02_62f6_f9f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3f02_62f6_f9f5/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3f02_62f6_f9f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3f02_62f6_f9f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3f02_62f6_f9f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3f02_62f6_f9f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3f02_62f6_f9f5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3f02_62f6_f9f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6970_5fde_63b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6970_5fde_63b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6970_5fde_63b3/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at Tropopause, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6970_5fde_63b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6970_5fde_63b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6970_5fde_63b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6970_5fde_63b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6970_5fde_63b3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6970_5fde_63b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ae6_104a_9df1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ae6_104a_9df1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ae6_104a_9df1/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread at Tropopause, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ae6_104a_9df1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ae6_104a_9df1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ae6_104a_9df1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ae6_104a_9df1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ae6_104a_9df1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4ae6_104a_9df1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_484c_f434_9d60", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_484c_f434_9d60.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_484c_f434_9d60/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.day.1981-2010.ltm, 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Daily Long Term Mean Potential Temperature Spread at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_484c_f434_9d60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_484c_f434_9d60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_484c_f434_9d60/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_484c_f434_9d60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_484c_f434_9d60&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_484c_f434_9d60"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19d0_9497_7160", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19d0_9497_7160.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_19d0_9497_7160/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Daily Long Term Mean Potential Temperature Spread at sigma level 0.995, degK)\nnot_missing_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_19d0_9497_7160_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_19d0_9497_7160_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_19d0_9497_7160/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_19d0_9497_7160.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_19d0_9497_7160&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_19d0_9497_7160"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8816_642f_ec8e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8816_642f_ec8e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8816_642f_ec8e/request", "", "public", "Top Dataset, pressure, air.day.1968-1996.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean Daily Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8816_642f_ec8e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8816_642f_ec8e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8816_642f_ec8e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8816_642f_ec8e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8816_642f_ec8e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8816_642f_ec8e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efaa_59b5_04fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efaa_59b5_04fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_efaa_59b5_04fa/request", "", "public", "Top Dataset, pressure, air.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_efaa_59b5_04fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_efaa_59b5_04fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_efaa_59b5_04fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_efaa_59b5_04fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_efaa_59b5_04fa&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_efaa_59b5_04fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85c5_d8ad_4756", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85c5_d8ad_4756.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_85c5_d8ad_4756/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, air.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_85c5_d8ad_4756_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_85c5_d8ad_4756_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85c5_d8ad_4756/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85c5_d8ad_4756.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85c5_d8ad_4756&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_85c5_d8ad_4756"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fcd_63e1_3fc4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fcd_63e1_3fc4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8fcd_63e1_3fc4/request", "", "public", "Top Dataset, pressure sprd, air.day.1981-2010.ltm (Daily NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8fcd_63e1_3fc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8fcd_63e1_3fc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8fcd_63e1_3fc4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8fcd_63e1_3fc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8fcd_63e1_3fc4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8fcd_63e1_3fc4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c7b_7e76_a051", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c7b_7e76_a051.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c7b_7e76_a051/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, air.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c7b_7e76_a051_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c7b_7e76_a051_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c7b_7e76_a051/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysisV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c7b_7e76_a051.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c7b_7e76_a051&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5c7b_7e76_a051"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d767_7276_fbba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d767_7276_fbba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d767_7276_fbba/request", "", "public", "Top Dataset, monolevel, air.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d767_7276_fbba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d767_7276_fbba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d767_7276_fbba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d767_7276_fbba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d767_7276_fbba&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d767_7276_fbba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5bf_64f4_aca4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5bf_64f4_aca4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5bf_64f4_aca4/request", "", "public", "Top Dataset, monolevel, air.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5bf_64f4_aca4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5bf_64f4_aca4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5bf_64f4_aca4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5bf_64f4_aca4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5bf_64f4_aca4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c5bf_64f4_aca4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae8a_3bb2_d412", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae8a_3bb2_d412.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae8a_3bb2_d412/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae8a_3bb2_d412_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae8a_3bb2_d412_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae8a_3bb2_d412/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae8a_3bb2_d412.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae8a_3bb2_d412&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ae8a_3bb2_d412"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a81_4d60_25ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a81_4d60_25ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a81_4d60_25ce/request", "", "public", "Top Dataset, monolevel, air.sfc.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at Surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a81_4d60_25ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a81_4d60_25ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a81_4d60_25ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a81_4d60_25ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a81_4d60_25ce&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3a81_4d60_25ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c942_595e_dcfb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c942_595e_dcfb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c942_595e_dcfb/request", "", "public", "Top Dataset, monolevel, air.sfc.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at Surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c942_595e_dcfb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c942_595e_dcfb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c942_595e_dcfb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c942_595e_dcfb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c942_595e_dcfb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c942_595e_dcfb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c2a_38ed_f5fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c2a_38ed_f5fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c2a_38ed_f5fa/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at Surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c2a_38ed_f5fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c2a_38ed_f5fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c2a_38ed_f5fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c2a_38ed_f5fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c2a_38ed_f5fa&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5c2a_38ed_f5fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e18b_7a08_4c81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e18b_7a08_4c81.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e18b_7a08_4c81/request", "", "public", "Top Dataset, monolevel, tmax.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Long Term Mean Monthly Maximum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e18b_7a08_4c81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e18b_7a08_4c81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e18b_7a08_4c81/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e18b_7a08_4c81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e18b_7a08_4c81&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e18b_7a08_4c81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92a7_6330_4810", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92a7_6330_4810.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_92a7_6330_4810/request", "", "public", "Top Dataset, monolevel, tmax.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Long Term Maximum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_92a7_6330_4810_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_92a7_6330_4810_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_92a7_6330_4810/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_92a7_6330_4810.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_92a7_6330_4810&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_92a7_6330_4810"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4211_7a90_8734", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4211_7a90_8734.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4211_7a90_8734/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Long Term Maximum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4211_7a90_8734_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4211_7a90_8734_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4211_7a90_8734/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4211_7a90_8734.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4211_7a90_8734&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4211_7a90_8734"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffd4_842e_1bbb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ffd4_842e_1bbb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ffd4_842e_1bbb/request", "", "public", "Top Dataset, monolevel, tmin.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Long Term Mean Monthly Minimum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ffd4_842e_1bbb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ffd4_842e_1bbb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ffd4_842e_1bbb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ffd4_842e_1bbb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ffd4_842e_1bbb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_ffd4_842e_1bbb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b92_37b8_c719", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b92_37b8_c719.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b92_37b8_c719/request", "", "public", "Top Dataset, monolevel, tmin.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Long Term Minimum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b92_37b8_c719_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b92_37b8_c719_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b92_37b8_c719/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b92_37b8_c719.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b92_37b8_c719&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7b92_37b8_c719"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d151_f808_34e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d151_f808_34e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d151_f808_34e5/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Long Term Minimum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d151_f808_34e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d151_f808_34e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d151_f808_34e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d151_f808_34e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d151_f808_34e5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d151_f808_34e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02d9_08d2_ada6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02d9_08d2_ada6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_02d9_08d2_ada6/request", "", "public", "Top Dataset, subsurface, tsoil.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Long Term Mean Monthly Soil Temperature, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_02d9_08d2_ada6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_02d9_08d2_ada6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_02d9_08d2_ada6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_02d9_08d2_ada6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_02d9_08d2_ada6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_02d9_08d2_ada6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8001_d023_7d7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8001_d023_7d7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8001_d023_7d7b/request", "", "public", "Top Dataset, subsurface, tsoil.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Long Term Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8001_d023_7d7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8001_d023_7d7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8001_d023_7d7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8001_d023_7d7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8001_d023_7d7b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8001_d023_7d7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56c6_a4bb_8ad3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56c6_a4bb_8ad3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_56c6_a4bb_8ad3/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Long Term Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_56c6_a4bb_8ad3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_56c6_a4bb_8ad3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_56c6_a4bb_8ad3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_56c6_a4bb_8ad3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_56c6_a4bb_8ad3&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_56c6_a4bb_8ad3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c97_e965_b31f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c97_e965_b31f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4c97_e965_b31f/request", "", "public", "Top Dataset, monolevel, air.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4c97_e965_b31f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4c97_e965_b31f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c97_e965_b31f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c97_e965_b31f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c97_e965_b31f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4c97_e965_b31f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_702a_b5b4_c287", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_702a_b5b4_c287.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_702a_b5b4_c287/request", "", "public", "Top Dataset, monolevel, air.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_702a_b5b4_c287_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_702a_b5b4_c287_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_702a_b5b4_c287/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_702a_b5b4_c287.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_702a_b5b4_c287&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_702a_b5b4_c287"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ee2_f669_66bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ee2_f669_66bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ee2_f669_66bb/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ee2_f669_66bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ee2_f669_66bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ee2_f669_66bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ee2_f669_66bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ee2_f669_66bb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3ee2_f669_66bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1829_9429_0d07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1829_9429_0d07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1829_9429_0d07/request", "", "public", "Top Dataset, monolevel, air.sfc.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1829_9429_0d07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1829_9429_0d07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1829_9429_0d07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1829_9429_0d07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1829_9429_0d07&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1829_9429_0d07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dd0_4bcc_d4ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5dd0_4bcc_d4ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5dd0_4bcc_d4ae/request", "", "public", "Top Dataset, monolevel, air.sfc.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5dd0_4bcc_d4ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5dd0_4bcc_d4ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5dd0_4bcc_d4ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5dd0_4bcc_d4ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5dd0_4bcc_d4ae&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5dd0_4bcc_d4ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f5c_be24_028d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f5c_be24_028d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6f5c_be24_028d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6f5c_be24_028d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6f5c_be24_028d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6f5c_be24_028d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6f5c_be24_028d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6f5c_be24_028d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6f5c_be24_028d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3873_0743_7423", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3873_0743_7423.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3873_0743_7423/request", "", "public", "Top Dataset, monolevel, tmax.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Long Term Mean Monthly Maximum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3873_0743_7423_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3873_0743_7423_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3873_0743_7423/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3873_0743_7423.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3873_0743_7423&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3873_0743_7423"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8d9_47d7_5144", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8d9_47d7_5144.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b8d9_47d7_5144/request", "", "public", "Top Dataset, monolevel, tmax.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Long Term Maximum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b8d9_47d7_5144_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b8d9_47d7_5144_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b8d9_47d7_5144/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b8d9_47d7_5144.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b8d9_47d7_5144&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b8d9_47d7_5144"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8988_e9b0_8d79", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8988_e9b0_8d79.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8988_e9b0_8d79/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Long Term Maximum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8988_e9b0_8d79_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8988_e9b0_8d79_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8988_e9b0_8d79/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8988_e9b0_8d79.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8988_e9b0_8d79&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8988_e9b0_8d79"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7028_6086_abd8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7028_6086_abd8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7028_6086_abd8/request", "", "public", "Top Dataset, monolevel, tmin.2m.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Long Term Mean Monthly Minimum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7028_6086_abd8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7028_6086_abd8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7028_6086_abd8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7028_6086_abd8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7028_6086_abd8&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7028_6086_abd8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb17_d629_b0a4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb17_d629_b0a4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb17_d629_b0a4/request", "", "public", "Top Dataset, monolevel, tmin.2m.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Long Term Minimum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb17_d629_b0a4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb17_d629_b0a4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb17_d629_b0a4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb17_d629_b0a4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb17_d629_b0a4&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_cb17_d629_b0a4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5b4_2629_cd6f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5b4_2629_cd6f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5b4_2629_cd6f/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Long Term Minimum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5b4_2629_cd6f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5b4_2629_cd6f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5b4_2629_cd6f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5b4_2629_cd6f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5b4_2629_cd6f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e5b4_2629_cd6f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c38_3b30_f407", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c38_3b30_f407.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c38_3b30_f407/request", "", "public", "Top Dataset, subsurface, tsoil.mon.1968-1996.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Long Term Mean Monthly Soil Temperature Spread, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c38_3b30_f407_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c38_3b30_f407_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c38_3b30_f407/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c38_3b30_f407.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c38_3b30_f407&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0c38_3b30_f407"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5ef_11b6_df5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5ef_11b6_df5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5ef_11b6_df5f/request", "", "public", "Top Dataset, subsurface, tsoil.mon.1981-2010.ltm, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Long Term Soil Temperature Spread, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5ef_11b6_df5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5ef_11b6_df5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5ef_11b6_df5f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5ef_11b6_df5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5ef_11b6_df5f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c5ef_11b6_df5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_905b_262c_f5c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_905b_262c_f5c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_905b_262c_f5c0/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Long Term Soil Temperature Spread, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_905b_262c_f5c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_905b_262c_f5c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_905b_262c_f5c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_905b_262c_f5c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_905b_262c_f5c0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_905b_262c_f5c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2c7_d003_f653", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2c7_d003_f653.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f2c7_d003_f653/request", "", "public", "Top Dataset, monolevel, air.sig995.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f2c7_d003_f653_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f2c7_d003_f653_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f2c7_d003_f653/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f2c7_d003_f653.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f2c7_d003_f653&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f2c7_d003_f653"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_006f_5127_e61f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_006f_5127_e61f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_006f_5127_e61f/request", "", "public", "Top Dataset, monolevel, air.sig995.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_006f_5127_e61f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_006f_5127_e61f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_006f_5127_e61f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_006f_5127_e61f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_006f_5127_e61f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_006f_5127_e61f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cb6_5e95_1e51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cb6_5e95_1e51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8cb6_5e95_1e51/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, air.sig995.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8cb6_5e95_1e51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8cb6_5e95_1e51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8cb6_5e95_1e51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8cb6_5e95_1e51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8cb6_5e95_1e51&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8cb6_5e95_1e51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c43c_e01f_b95d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c43c_e01f_b95d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c43c_e01f_b95d/request", "", "public", "Top Dataset, monolevel, air.tropo.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c43c_e01f_b95d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c43c_e01f_b95d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c43c_e01f_b95d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c43c_e01f_b95d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c43c_e01f_b95d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c43c_e01f_b95d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92cf_56a1_a6b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_92cf_56a1_a6b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_92cf_56a1_a6b7/request", "", "public", "Top Dataset, monolevel, air.tropo.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_92cf_56a1_a6b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_92cf_56a1_a6b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_92cf_56a1_a6b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_92cf_56a1_a6b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_92cf_56a1_a6b7&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_92cf_56a1_a6b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fadf_b89a_8c37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fadf_b89a_8c37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fadf_b89a_8c37/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, air.tropo.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fadf_b89a_8c37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fadf_b89a_8c37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fadf_b89a_8c37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fadf_b89a_8c37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fadf_b89a_8c37&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_fadf_b89a_8c37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_553c_46e1_0e22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_553c_46e1_0e22.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_553c_46e1_0e22/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean Monthly Potential Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_553c_46e1_0e22_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_553c_46e1_0e22_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_553c_46e1_0e22/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_553c_46e1_0e22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_553c_46e1_0e22&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_553c_46e1_0e22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b456_f8d1_d30c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b456_f8d1_d30c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b456_f8d1_d30c/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Long Term Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b456_f8d1_d30c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b456_f8d1_d30c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b456_f8d1_d30c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b456_f8d1_d30c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b456_f8d1_d30c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b456_f8d1_d30c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_644e_fe05_42b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_644e_fe05_42b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_644e_fe05_42b9/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Long Term Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_644e_fe05_42b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_644e_fe05_42b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_644e_fe05_42b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_644e_fe05_42b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_644e_fe05_42b9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_644e_fe05_42b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f73c_5cfb_7d7d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f73c_5cfb_7d7d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f73c_5cfb_7d7d/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f73c_5cfb_7d7d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f73c_5cfb_7d7d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f73c_5cfb_7d7d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f73c_5cfb_7d7d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f73c_5cfb_7d7d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f73c_5cfb_7d7d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8abc_8222_02d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8abc_8222_02d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8abc_8222_02d5/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8abc_8222_02d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8abc_8222_02d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8abc_8222_02d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8abc_8222_02d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8abc_8222_02d5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8abc_8222_02d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4254_3e33_671e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4254_3e33_671e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4254_3e33_671e/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4254_3e33_671e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4254_3e33_671e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4254_3e33_671e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4254_3e33_671e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4254_3e33_671e&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_4254_3e33_671e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94ea_35ee_0e4f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94ea_35ee_0e4f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_94ea_35ee_0e4f/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_94ea_35ee_0e4f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_94ea_35ee_0e4f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_94ea_35ee_0e4f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_94ea_35ee_0e4f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_94ea_35ee_0e4f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_94ea_35ee_0e4f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b422_3911_0054", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b422_3911_0054.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b422_3911_0054/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b422_3911_0054_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b422_3911_0054_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b422_3911_0054/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b422_3911_0054.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b422_3911_0054&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_b422_3911_0054"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_67bb_5c25_7a16", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_67bb_5c25_7a16.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_67bb_5c25_7a16/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_67bb_5c25_7a16_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_67bb_5c25_7a16_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_67bb_5c25_7a16/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_67bb_5c25_7a16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_67bb_5c25_7a16&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_67bb_5c25_7a16"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b48_46c5_a175", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b48_46c5_a175.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b48_46c5_a175/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.mon.1968-1996.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean Monthly Potential Temperature Spread at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b48_46c5_a175_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b48_46c5_a175_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b48_46c5_a175/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b48_46c5_a175.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b48_46c5_a175&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6b48_46c5_a175"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_385b_60f9_c9cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_385b_60f9_c9cc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_385b_60f9_c9cc/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.mon.1981-2010.ltm, 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Long Term Potential Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_385b_60f9_c9cc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_385b_60f9_c9cc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_385b_60f9_c9cc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_385b_60f9_c9cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_385b_60f9_c9cc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_385b_60f9_c9cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cee_ba6f_4871", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cee_ba6f_4871.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8cee_ba6f_4871/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.mon.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Long Term Potential Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8cee_ba6f_4871_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8cee_ba6f_4871_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8cee_ba6f_4871/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8cee_ba6f_4871.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8cee_ba6f_4871&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_8cee_ba6f_4871"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c4c7_7457_84bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c4c7_7457_84bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c4c7_7457_84bf/request", "", "public", "Top Dataset, pressure, air.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c4c7_7457_84bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c4c7_7457_84bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c4c7_7457_84bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c4c7_7457_84bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c4c7_7457_84bf&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c4c7_7457_84bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fda_9a93_831c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5fda_9a93_831c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5fda_9a93_831c/request", "", "public", "Top Dataset, pressure, air.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Long Term Air Temperature on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5fda_9a93_831c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5fda_9a93_831c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5fda_9a93_831c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5fda_9a93_831c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5fda_9a93_831c&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5fda_9a93_831c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6eab_9fe9_284f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6eab_9fe9_284f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6eab_9fe9_284f/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, air.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Long Term Air Temperature on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6eab_9fe9_284f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6eab_9fe9_284f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6eab_9fe9_284f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6eab_9fe9_284f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6eab_9fe9_284f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_6eab_9fe9_284f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7bca_2a95_830f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7bca_2a95_830f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7bca_2a95_830f/request", "", "public", "Top Dataset, pressure sprd, air.mon.1968-1996.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7bca_2a95_830f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7bca_2a95_830f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7bca_2a95_830f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thCentReanalysis.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7bca_2a95_830f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7bca_2a95_830f&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7bca_2a95_830f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b3b_4d47_4bcc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0b3b_4d47_4bcc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0b3b_4d47_4bcc/request", "", "public", "Top Dataset, pressure sprd, air.mon.1981-2010.ltm (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0b3b_4d47_4bcc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0b3b_4d47_4bcc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0b3b_4d47_4bcc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0b3b_4d47_4bcc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0b3b_4d47_4bcc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_0b3b_4d47_4bcc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c93d_1cb4_ec67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c93d_1cb4_ec67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c93d_1cb4_ec67/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, air.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Long Term Air Temperature Spread on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c93d_1cb4_ec67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c93d_1cb4_ec67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c93d_1cb4_ec67/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c93d_1cb4_ec67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c93d_1cb4_ec67&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_c93d_1cb4_ec67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd0b_34e4_82bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd0b_34e4_82bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bd0b_34e4_82bb/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bd0b_34e4_82bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bd0b_34e4_82bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bd0b_34e4_82bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bd0b_34e4_82bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bd0b_34e4_82bb&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bd0b_34e4_82bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7d9_c99e_2d9a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7d9_c99e_2d9a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e7d9_c99e_2d9a/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at Surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e7d9_c99e_2d9a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e7d9_c99e_2d9a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e7d9_c99e_2d9a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e7d9_c99e_2d9a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e7d9_c99e_2d9a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e7d9_c99e_2d9a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_328f_9e9b_125d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_328f_9e9b_125d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_328f_9e9b_125d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Maximum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_328f_9e9b_125d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_328f_9e9b_125d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_328f_9e9b_125d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_328f_9e9b_125d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_328f_9e9b_125d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_328f_9e9b_125d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bacc_d99c_0451", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bacc_d99c_0451.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bacc_d99c_0451/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Minimum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bacc_d99c_0451_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bacc_d99c_0451_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bacc_d99c_0451/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bacc_d99c_0451.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bacc_d99c_0451&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bacc_d99c_0451"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ec6_5a5a_201d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ec6_5a5a_201d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ec6_5a5a_201d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Soil Temperature, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ec6_5a5a_201d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ec6_5a5a_201d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ec6_5a5a_201d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ec6_5a5a_201d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ec6_5a5a_201d&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3ec6_5a5a_201d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d88_b808_0b86", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7d88_b808_0b86.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7d88_b808_0b86/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7d88_b808_0b86_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7d88_b808_0b86_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7d88_b808_0b86/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7d88_b808_0b86.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7d88_b808_0b86&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_7d88_b808_0b86"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_967e_324f_e2a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_967e_324f_e2a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_967e_324f_e2a0/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, air.sfc.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_967e_324f_e2a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_967e_324f_e2a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_967e_324f_e2a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_967e_324f_e2a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_967e_324f_e2a0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_967e_324f_e2a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1931_de51_6cf0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1931_de51_6cf0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1931_de51_6cf0/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmax.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Maximum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1931_de51_6cf0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1931_de51_6cf0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1931_de51_6cf0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1931_de51_6cf0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1931_de51_6cf0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_1931_de51_6cf0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_624c_b357_05f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_624c_b357_05f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_624c_b357_05f2/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, monolevel, tmin.2m.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Minimum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_624c_b357_05f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_624c_b357_05f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_624c_b357_05f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_624c_b357_05f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_624c_b357_05f2&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_624c_b357_05f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa13_331a_881b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa13_331a_881b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa13_331a_881b/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2 (Top Dataset, subsurface, tsoil.mon.mean), 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Soil Temperature Spread, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa13_331a_881b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa13_331a_881b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa13_331a_881b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa13_331a_881b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa13_331a_881b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_aa13_331a_881b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e760_836c_65dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e760_836c_65dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e760_836c_65dd/request", "", "public", "Top Dataset, monolevel, air.sig995.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e760_836c_65dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e760_836c_65dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e760_836c_65dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e760_836c_65dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e760_836c_65dd&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e760_836c_65dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc9b_5b0a_3283", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc9b_5b0a_3283.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bc9b_5b0a_3283/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, monolevel, air.tropo.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bc9b_5b0a_3283_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bc9b_5b0a_3283_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bc9b_5b0a_3283/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bc9b_5b0a_3283.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bc9b_5b0a_3283&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_bc9b_5b0a_3283"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ace_48ac_70b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ace_48ac_70b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ace_48ac_70b6/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Potential Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ace_48ac_70b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ace_48ac_70b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ace_48ac_70b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ace_48ac_70b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ace_48ac_70b6&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5ace_48ac_70b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f33e_8165_4963", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f33e_8165_4963.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f33e_8165_4963/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f33e_8165_4963_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f33e_8165_4963_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f33e_8165_4963/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f33e_8165_4963.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f33e_8165_4963&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f33e_8165_4963"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5d4_f556_e693", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5d4_f556_e693.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5d4_f556_e693/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.mon.mean (Monthly NOAA-CIRES 20th Century Reanalysis), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5d4_f556_e693_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5d4_f556_e693_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5d4_f556_e693/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5d4_f556_e693.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5d4_f556_e693&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e5d4_f556_e693"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4ab_fba1_63cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4ab_fba1_63cc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f4ab_fba1_63cc/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.mon.mean, 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Potential Temperature Spread at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f4ab_fba1_63cc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f4ab_fba1_63cc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f4ab_fba1_63cc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f4ab_fba1_63cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f4ab_fba1_63cc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f4ab_fba1_63cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aab0_5e09_779b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aab0_5e09_779b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aab0_5e09_779b/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure, air.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aab0_5e09_779b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aab0_5e09_779b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aab0_5e09_779b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aab0_5e09_779b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aab0_5e09_779b&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_aab0_5e09_779b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efee_45c6_e9ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efee_45c6_e9ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_efee_45c6_e9ce/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis (Top Dataset, pressure sprd, air.mon.mean), 2.0\u00b0, 1871-2012", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_efee_45c6_e9ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_efee_45c6_e9ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_efee_45c6_e9ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_efee_45c6_e9ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_efee_45c6_e9ce&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_efee_45c6_e9ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b45_5fda_e74c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b45_5fda_e74c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b45_5fda_e74c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sig995.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b45_5fda_e74c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b45_5fda_e74c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b45_5fda_e74c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b45_5fda_e74c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b45_5fda_e74c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5b45_5fda_e74c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2dfc_02f7_6b58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2dfc_02f7_6b58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2dfc_02f7_6b58/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.tropo.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2dfc_02f7_6b58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2dfc_02f7_6b58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2dfc_02f7_6b58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2dfc_02f7_6b58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2dfc_02f7_6b58&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2dfc_02f7_6b58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ede_942c_6a81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ede_942c_6a81.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ede_942c_6a81/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (pottmp.sig995.4Xday.ltm), 2.0\u00b0, 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean 6-hourly Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ede_942c_6a81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ede_942c_6a81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ede_942c_6a81/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ede_942c_6a81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ede_942c_6a81&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5ede_942c_6a81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2bf_4392_704f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2bf_4392_704f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f2bf_4392_704f/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f2bf_4392_704f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f2bf_4392_704f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f2bf_4392_704f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f2bf_4392_704f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f2bf_4392_704f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f2bf_4392_704f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_deac_f85a_7ae9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_deac_f85a_7ae9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_deac_f85a_7ae9/request", "", "public", "Top Dataset, monolevel sprd, air.tropo.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_deac_f85a_7ae9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_deac_f85a_7ae9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_deac_f85a_7ae9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_deac_f85a_7ae9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_deac_f85a_7ae9&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_deac_f85a_7ae9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa88_f253_e4db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa88_f253_e4db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa88_f253_e4db/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.4Xday.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean 6-hourly Potential Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa88_f253_e4db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa88_f253_e4db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa88_f253_e4db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa88_f253_e4db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa88_f253_e4db&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_aa88_f253_e4db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3397_f096_f525", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3397_f096_f525.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3397_f096_f525/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, air.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3397_f096_f525_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3397_f096_f525_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3397_f096_f525/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3397_f096_f525.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3397_f096_f525&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3397_f096_f525"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6889_9369_b6a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6889_9369_b6a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6889_9369_b6a7/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, air.4Xday.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean 6-hourly Air Temperature Spread on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6889_9369_b6a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6889_9369_b6a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6889_9369_b6a7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6889_9369_b6a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6889_9369_b6a7&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6889_9369_b6a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2903_cfd7_e71b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2903_cfd7_e71b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2903_cfd7_e71b/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.2m.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2903_cfd7_e71b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2903_cfd7_e71b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2903_cfd7_e71b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2903_cfd7_e71b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2903_cfd7_e71b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2903_cfd7_e71b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3235_024d_f86a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3235_024d_f86a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3235_024d_f86a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sfc.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (3-hourly Long Term Mean Air Temperature at Surface, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3235_024d_f86a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3235_024d_f86a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3235_024d_f86a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3235_024d_f86a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3235_024d_f86a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3235_024d_f86a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c67_3aca_8c3e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c67_3aca_8c3e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c67_3aca_8c3e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (3-hourly Long Term Mean Maximum Temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c67_3aca_8c3e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c67_3aca_8c3e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c67_3aca_8c3e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c67_3aca_8c3e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c67_3aca_8c3e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5c67_3aca_8c3e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_706d_a47b_8c9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_706d_a47b_8c9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_706d_a47b_8c9d/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (3-hourly Long Term Mean Minimum Temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_706d_a47b_8c9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_706d_a47b_8c9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_706d_a47b_8c9d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_706d_a47b_8c9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_706d_a47b_8c9d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_706d_a47b_8c9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b303_ebcc_fb18", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b303_ebcc_fb18.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b303_ebcc_fb18/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, tsoil.8Xday.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (3-hourly Long Term Mean Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b303_ebcc_fb18_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b303_ebcc_fb18_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b303_ebcc_fb18/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b303_ebcc_fb18.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b303_ebcc_fb18&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b303_ebcc_fb18"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c054_7cf9_b656", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c054_7cf9_b656.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c054_7cf9_b656/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (air.2m.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (daily Long Term Mean mean 3-hourly Air Temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c054_7cf9_b656_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c054_7cf9_b656_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c054_7cf9_b656/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c054_7cf9_b656.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c054_7cf9_b656&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c054_7cf9_b656"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c693_3ec4_345a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c693_3ec4_345a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c693_3ec4_345a/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (air.sfc.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (daily Long Term Mean mean 3-hourly Air Temperature at Surface, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c693_3ec4_345a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c693_3ec4_345a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c693_3ec4_345a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c693_3ec4_345a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c693_3ec4_345a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c693_3ec4_345a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c173_29a1_d8d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c173_29a1_d8d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c173_29a1_d8d3/request", "", "public", "daily 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.day.ltm), 0001", "daily 4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Daily Long Term Mean 3-hourly Maximum Temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c173_29a1_d8d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c173_29a1_d8d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c173_29a1_d8d3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c173_29a1_d8d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c173_29a1_d8d3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c173_29a1_d8d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd04_947b_6ec2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd04_947b_6ec2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bd04_947b_6ec2/request", "", "public", "daily 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.day.ltm), 0001", "daily 4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Daily Long Term Mean 3-hourly Minimum Temperature at 2 m, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bd04_947b_6ec2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bd04_947b_6ec2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bd04_947b_6ec2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bd04_947b_6ec2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bd04_947b_6ec2&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_bd04_947b_6ec2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5909_aae7_a5f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5909_aae7_a5f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5909_aae7_a5f0/request", "", "public", "daily mean 4x Daily NOAA-CIRES 20th Century Reanalysis V2c (tsoil.day.ltm), 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (daily Long Term Mean mean 3-hourly Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5909_aae7_a5f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5909_aae7_a5f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5909_aae7_a5f0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5909_aae7_a5f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5909_aae7_a5f0&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5909_aae7_a5f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d115_bb45_ea8c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d115_bb45_ea8c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d115_bb45_ea8c/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sig995.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d115_bb45_ea8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d115_bb45_ea8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d115_bb45_ea8c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d115_bb45_ea8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d115_bb45_ea8c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d115_bb45_ea8c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d75_f9af_6746", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d75_f9af_6746.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2d75_f9af_6746/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.tropo.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2d75_f9af_6746_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2d75_f9af_6746_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d75_f9af_6746/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d75_f9af_6746.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d75_f9af_6746&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2d75_f9af_6746"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0cc7_0760_5bc1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0cc7_0760_5bc1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0cc7_0760_5bc1/request", "", "public", "Top Dataset, monolevel, pottmp.sig995.day.ltm (Daily NOAA-CIRES 20th Century Reanalysis V2c), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Daily Long Term Mean Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0cc7_0760_5bc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0cc7_0760_5bc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0cc7_0760_5bc1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0cc7_0760_5bc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0cc7_0760_5bc1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0cc7_0760_5bc1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a0f_b575_87bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a0f_b575_87bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a0f_b575_87bb/request", "", "public", "Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, air.day.ltm), 2.0\u00b0, 0001", "Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Daily Long Term Mean Air Temperature on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a0f_b575_87bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a0f_b575_87bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a0f_b575_87bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a0f_b575_87bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a0f_b575_87bb&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5a0f_b575_87bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98f4_98a7_ebd4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98f4_98a7_ebd4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_98f4_98a7_ebd4/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_98f4_98a7_ebd4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_98f4_98a7_ebd4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_98f4_98a7_ebd4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_98f4_98a7_ebd4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_98f4_98a7_ebd4&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_98f4_98a7_ebd4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_314e_d1d6_f04c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_314e_d1d6_f04c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_314e_d1d6_f04c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sfc.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at Surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_314e_d1d6_f04c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_314e_d1d6_f04c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_314e_d1d6_f04c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_314e_d1d6_f04c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_314e_d1d6_f04c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_314e_d1d6_f04c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a28_8e70_ca46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a28_8e70_ca46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8a28_8e70_ca46/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Long Term Mean Monthly Maximum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8a28_8e70_ca46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8a28_8e70_ca46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8a28_8e70_ca46/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8a28_8e70_ca46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8a28_8e70_ca46&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8a28_8e70_ca46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c8e_3f66_6231", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c8e_3f66_6231.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3c8e_3f66_6231/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Long Term Mean Monthly Minimum Temperature at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3c8e_3f66_6231_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3c8e_3f66_6231_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c8e_3f66_6231/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c8e_3f66_6231.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c8e_3f66_6231&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3c8e_3f66_6231"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b78c_38d4_da29", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b78c_38d4_da29.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b78c_38d4_da29/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, tsoil.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Long Term Mean Monthly Soil Temperature, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b78c_38d4_da29_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b78c_38d4_da29_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b78c_38d4_da29/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b78c_38d4_da29.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b78c_38d4_da29&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b78c_38d4_da29"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f10_da40_ffa3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f10_da40_ffa3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f10_da40_ffa3/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f10_da40_ffa3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f10_da40_ffa3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f10_da40_ffa3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f10_da40_ffa3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f10_da40_ffa3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0f10_da40_ffa3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f950_cedb_93ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f950_cedb_93ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f950_cedb_93ff/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sfc.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at surface, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f950_cedb_93ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f950_cedb_93ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f950_cedb_93ff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f950_cedb_93ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f950_cedb_93ff&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f950_cedb_93ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da34_ff03_2878", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da34_ff03_2878.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da34_ff03_2878/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Long Term Mean Monthly Maximum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da34_ff03_2878_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da34_ff03_2878_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da34_ff03_2878/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da34_ff03_2878.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da34_ff03_2878&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_da34_ff03_2878"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dc2_2190_084e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dc2_2190_084e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4dc2_2190_084e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.mon.ltm), 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Long Term Mean Monthly Minimum Temperature Spread at 2 m, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4dc2_2190_084e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4dc2_2190_084e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4dc2_2190_084e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4dc2_2190_084e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4dc2_2190_084e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4dc2_2190_084e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e5c_f7ed_dc4e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e5c_f7ed_dc4e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e5c_f7ed_dc4e/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, tsoil.mon.ltm), 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Long Term Mean Monthly Soil Temperature Spread, degree_K)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e5c_f7ed_dc4e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e5c_f7ed_dc4e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e5c_f7ed_dc4e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e5c_f7ed_dc4e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e5c_f7ed_dc4e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0e5c_f7ed_dc4e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b077_f03b_b4a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b077_f03b_b4a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b077_f03b_b4a1/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sig995.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b077_f03b_b4a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b077_f03b_b4a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b077_f03b_b4a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b077_f03b_b4a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b077_f03b_b4a1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b077_f03b_b4a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6fe_d15d_3825", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6fe_d15d_3825.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e6fe_d15d_3825/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.tropo.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e6fe_d15d_3825_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e6fe_d15d_3825_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e6fe_d15d_3825/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e6fe_d15d_3825.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e6fe_d15d_3825&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e6fe_d15d_3825"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_508d_e781_161d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_508d_e781_161d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_508d_e781_161d/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pottmp.sig995.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean Monthly Potential Temperature at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_508d_e781_161d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_508d_e781_161d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_508d_e781_161d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_508d_e781_161d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_508d_e781_161d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_508d_e781_161d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b552_91ba_ec3a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b552_91ba_ec3a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b552_91ba_ec3a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (air.sig995.mon.ltm), 2.0\u00b0, 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b552_91ba_ec3a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b552_91ba_ec3a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b552_91ba_ec3a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b552_91ba_ec3a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b552_91ba_ec3a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b552_91ba_ec3a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f478_1944_0cff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f478_1944_0cff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f478_1944_0cff/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (air.tropo.mon.ltm), 2.0\u00b0, 0001", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread at Tropopause, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f478_1944_0cff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f478_1944_0cff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f478_1944_0cff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f478_1944_0cff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f478_1944_0cff&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f478_1944_0cff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ae8_3cea_b081", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ae8_3cea_b081.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ae8_3cea_b081/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.mon.ltm, 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Long Term Mean Monthly Potential Temperature Spread at sigma level 0.995, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ae8_3cea_b081_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ae8_3cea_b081_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ae8_3cea_b081/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ae8_3cea_b081.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ae8_3cea_b081&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5ae8_3cea_b081"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f01f_43cf_686b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f01f_43cf_686b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f01f_43cf_686b/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, air.mon.ltm), 2.0\u00b0, 0001", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f01f_43cf_686b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f01f_43cf_686b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f01f_43cf_686b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f01f_43cf_686b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f01f_43cf_686b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f01f_43cf_686b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01a9_d724_75dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01a9_d724_75dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_01a9_d724_75dd/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, air.mon.ltm), 2.0\u00b0, 0001", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Long Term Mean Monthly Air Temperature Spread on Pressure Levels, degK)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_01a9_d724_75dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_01a9_d724_75dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_01a9_d724_75dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_01a9_d724_75dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_01a9_d724_75dd&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_01a9_d724_75dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73b7_feea_c0e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73b7_feea_c0e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_73b7_feea_c0e3/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_73b7_feea_c0e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_73b7_feea_c0e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_73b7_feea_c0e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_73b7_feea_c0e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_73b7_feea_c0e3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_73b7_feea_c0e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5e1_2e73_fabb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5e1_2e73_fabb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5e1_2e73_fabb/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at Surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5e1_2e73_fabb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5e1_2e73_fabb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5e1_2e73_fabb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5e1_2e73_fabb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5e1_2e73_fabb&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b5e1_2e73_fabb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c02_7fe8_9f50", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c02_7fe8_9f50.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c02_7fe8_9f50/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Maximum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c02_7fe8_9f50_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c02_7fe8_9f50_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c02_7fe8_9f50/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c02_7fe8_9f50.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c02_7fe8_9f50&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9c02_7fe8_9f50"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5613_d6e9_14f4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5613_d6e9_14f4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5613_d6e9_14f4/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Minimum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5613_d6e9_14f4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5613_d6e9_14f4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5613_d6e9_14f4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5613_d6e9_14f4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5613_d6e9_14f4&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5613_d6e9_14f4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0257_dc9e_799e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0257_dc9e_799e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0257_dc9e_799e/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, tsoil.mon.mean), 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Soil Temperature, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0257_dc9e_799e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0257_dc9e_799e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0257_dc9e_799e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0257_dc9e_799e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0257_dc9e_799e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0257_dc9e_799e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38e2_4623_3d85", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38e2_4623_3d85.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_38e2_4623_3d85/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_38e2_4623_3d85_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_38e2_4623_3d85_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_38e2_4623_3d85/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_38e2_4623_3d85.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_38e2_4623_3d85&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_38e2_4623_3d85"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7655_8c18_3a9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7655_8c18_3a9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7655_8c18_3a9d/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7655_8c18_3a9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7655_8c18_3a9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7655_8c18_3a9d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7655_8c18_3a9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7655_8c18_3a9d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7655_8c18_3a9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_059c_6820_a42c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_059c_6820_a42c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_059c_6820_a42c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Maximum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_059c_6820_a42c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_059c_6820_a42c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_059c_6820_a42c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_059c_6820_a42c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_059c_6820_a42c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_059c_6820_a42c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0dd8_7adb_c629", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0dd8_7adb_c629.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0dd8_7adb_c629/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Minimum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0dd8_7adb_c629_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0dd8_7adb_c629_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0dd8_7adb_c629/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0dd8_7adb_c629.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0dd8_7adb_c629&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0dd8_7adb_c629"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1207_e277_400e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1207_e277_400e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1207_e277_400e/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, subsurface, tsoil.mon.mean), 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntsoil (Monthly Soil Temperature Spread, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1207_e277_400e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1207_e277_400e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1207_e277_400e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1207_e277_400e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1207_e277_400e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_1207_e277_400e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9118_5c8e_5fc3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9118_5c8e_5fc3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9118_5c8e_5fc3/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sig995.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9118_5c8e_5fc3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9118_5c8e_5fc3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9118_5c8e_5fc3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9118_5c8e_5fc3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9118_5c8e_5fc3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9118_5c8e_5fc3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5b1_3ac5_5570", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5b1_3ac5_5570.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5b1_3ac5_5570/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.tropo.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5b1_3ac5_5570_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5b1_3ac5_5570_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5b1_3ac5_5570/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5b1_3ac5_5570.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5b1_3ac5_5570&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a5b1_3ac5_5570"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d32b_2d9d_2af1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d32b_2d9d_2af1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d32b_2d9d_2af1/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pottmp.sig995.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Potential Temperature at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d32b_2d9d_2af1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d32b_2d9d_2af1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d32b_2d9d_2af1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d32b_2d9d_2af1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d32b_2d9d_2af1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d32b_2d9d_2af1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1a6_beae_f7e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1a6_beae_f7e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a1a6_beae_f7e0/request", "", "public", "Top Dataset, monolevel sprd, air.sig995.mon.mean, 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a1a6_beae_f7e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a1a6_beae_f7e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a1a6_beae_f7e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a1a6_beae_f7e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a1a6_beae_f7e0&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a1a6_beae_f7e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_62ec_436e_705e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_62ec_436e_705e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_62ec_436e_705e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (air.tropo.mon.mean), 2.0\u00b0, 1851-2014", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_62ec_436e_705e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_62ec_436e_705e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_62ec_436e_705e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_62ec_436e_705e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_62ec_436e_705e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_62ec_436e_705e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4da7_e743_ddbd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4da7_e743_ddbd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4da7_e743_ddbd/request", "", "public", "Top Dataset, monolevel sprd, pottmp.sig995.mon.mean, 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npottmp (Monthly Potential Temperature Spread at sigma level 0.995, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4da7_e743_ddbd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4da7_e743_ddbd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4da7_e743_ddbd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4da7_e743_ddbd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4da7_e743_ddbd&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4da7_e743_ddbd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_808e_0b04_f524", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_808e_0b04_f524.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_808e_0b04_f524/request", "", "public", "Monthly NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure, air.mon.mean), 2.0\u00b0, 1851-2014", "Monthly NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Air Temperature on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_808e_0b04_f524_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_808e_0b04_f524_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_808e_0b04_f524/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_808e_0b04_f524.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_808e_0b04_f524&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_808e_0b04_f524"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72b6_a6fc_cce9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72b6_a6fc_cce9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_72b6_a6fc_cce9/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, air.mon.mean), 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_72b6_a6fc_cce9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_72b6_a6fc_cce9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_72b6_a6fc_cce9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_72b6_a6fc_cce9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_72b6_a6fc_cce9&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_72b6_a6fc_cce9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d245_c858_56c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d245_c858_56c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d245_c858_56c1/request", "", "public", "Top Dataset, COBE, sst.mon.ltm.1981-2010 (COBE SST Analysis), 1.0\u00b0, 0001", "COBE Sea Surface Temperature Analysis. recent values (w/i last year) may change as dataset is updated. It is a monitoring dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Long Term Mean Monthly Means of Global Sea Surface Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d245_c858_56c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d245_c858_56c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d245_c858_56c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cobe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d245_c858_56c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d245_c858_56c1&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_d245_c858_56c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_acda_96fa_86e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_acda_96fa_86e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_acda_96fa_86e5/request", "", "public", "COBE SST Analysis (Top Dataset, COBE, sst.mon.mean), 1.0\u00b0, 1891-present", "COBE Sea Surface Temperature Analysis. recent values (w/i last year) may change as dataset is updated. It is a monitoring dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Means of Global Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_acda_96fa_86e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_acda_96fa_86e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_acda_96fa_86e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cobe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_acda_96fa_86e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_acda_96fa_86e5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_acda_96fa_86e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f36_550f_a27a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3f36_550f_a27a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3f36_550f_a27a/request", "", "public", "Top Dataset, COBE2, icec.mon.ltm.1981-2010.2016 (created 05/2014 from data provided by JRA), 1.0\u00b0, 0001", "created 05/2014 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, icec.mon.ltm.1981-2010.2016)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Long Term Mean Monthly Means of Global Ice Concentration, fr)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3f36_550f_a27a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3f36_550f_a27a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3f36_550f_a27a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3f36_550f_a27a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3f36_550f_a27a&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_3f36_550f_a27a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b0b_c423_6eae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b0b_c423_6eae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b0b_c423_6eae/request", "", "public", "Top Dataset, COBE2, icec.mon.ltm.1981-2010 (created 05/2014 from data provided by JRA), 1.0\u00b0, 0001", "created 05/2014 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, icec.mon.ltm.1981-2010)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Long Term Mean Monthly Means of Global Ice Concentration, fr)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b0b_c423_6eae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b0b_c423_6eae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b0b_c423_6eae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b0b_c423_6eae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b0b_c423_6eae&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_5b0b_c423_6eae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9e7_3b10_49c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9e7_3b10_49c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a9e7_3b10_49c0/request", "", "public", "created 05/2014 from data provided by JRA (Top Dataset, COBE2, icec.mon.mean.2016), 1.0\u00b0", "created 05/2014 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, icec.mon.mean.2016)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Monthly Means of Global Ice Concentration, fr)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9e7_3b10_49c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9e7_3b10_49c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9e7_3b10_49c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9e7_3b10_49c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9e7_3b10_49c0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a9e7_3b10_49c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e871_0ea9_74d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e871_0ea9_74d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e871_0ea9_74d9/request", "", "public", "created 05/2014 from data provided by JRA (Top Dataset, COBE2, icec.mon.mean), 1.0\u00b0, 1850-2017", "created 05/2014 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, icec.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Monthly Means of Global Ice Concentration, fr)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e871_0ea9_74d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e871_0ea9_74d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e871_0ea9_74d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e871_0ea9_74d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e871_0ea9_74d9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e871_0ea9_74d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e02e_d3e1_c3cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e02e_d3e1_c3cc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e02e_d3e1_c3cc/request", "", "public", "Top Dataset, COBE2, sst.mon.ltm.1981-2010.2016 (created 12/2013 from data provided by JRA), 1.0\u00b0, 0001", "created 12/2013 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, sst.mon.ltm.1981-2010.2016)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Long Term Mean Monthly Means of Global Sea Surface Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e02e_d3e1_c3cc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e02e_d3e1_c3cc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e02e_d3e1_c3cc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e02e_d3e1_c3cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e02e_d3e1_c3cc&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e02e_d3e1_c3cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f681_efe5_3597", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f681_efe5_3597.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f681_efe5_3597/request", "", "public", "created 12/2013 from data provided by JRA (Top Dataset, COBE2, sst.mon.ltm.1981-2010), 1.0\u00b0, 0001", "created 12/2013 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, sst.mon.ltm.1981-2010)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Long Term Mean Monthly Means of Global Sea Surface Temperature, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f681_efe5_3597_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f681_efe5_3597_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f681_efe5_3597/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f681_efe5_3597.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f681_efe5_3597&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_f681_efe5_3597"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc06_d1e5_9bf9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc06_d1e5_9bf9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc06_d1e5_9bf9/request", "", "public", "created 12/2013 from data provided by JRA (Top Dataset, COBE2, sst.mon.mean.2016), 1.0\u00b0", "created 12/2013 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, sst.mon.mean.2016)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Means of Global Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc06_d1e5_9bf9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc06_d1e5_9bf9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc06_d1e5_9bf9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc06_d1e5_9bf9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc06_d1e5_9bf9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_dc06_d1e5_9bf9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35ec_0735_a3f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35ec_0735_a3f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_35ec_0735_a3f5/request", "", "public", "created 12/2013 from data provided by JRA (Top Dataset, COBE2, sst.mon.mean), 1.0\u00b0, 1850-2017", "created 12/2013 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, sst.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Means of Global Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_35ec_0735_a3f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_35ec_0735_a3f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_35ec_0735_a3f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_35ec_0735_a3f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_35ec_0735_a3f5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_35ec_0735_a3f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5d8_2155_b839", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5d8_2155_b839.graph", "", "", "public", "Top Dataset, monolevel, air.2m.day.ltm (Daily NARR) [time][y][x], 0001", "Daily NARR (Top Dataset, monolevel, air.2m.day.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nair (Daily Air Temperature at 2 m, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5d8_2155_b839/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5d8_2155_b839.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5d8_2155_b839&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a5d8_2155_b839"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2538_a283_c9c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2538_a283_c9c1.graph", "", "", "public", "Top Dataset, monolevel, air.2m.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, air.2m.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nair (Monthly Long Term Mean Air Temperature at 2 m, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2538_a283_c9c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2538_a283_c9c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2538_a283_c9c1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_2538_a283_c9c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63f5_1e56_8f1d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63f5_1e56_8f1d.graph", "", "", "public", "Top Dataset, monolevel, air.sfc.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, air.sfc.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nair (Long Term Monthly Mean air temperature at Surface, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_63f5_1e56_8f1d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_63f5_1e56_8f1d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_63f5_1e56_8f1d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_63f5_1e56_8f1d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4163_0b75_70a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4163_0b75_70a0.graph", "", "", "public", "Top Dataset, monolevel, dpt.2m.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, dpt.2m.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ndpt (Long Term Monthly Mean Dew Point Temperature at 2m, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4163_0b75_70a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4163_0b75_70a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4163_0b75_70a0&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_4163_0b75_70a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a308_27ac_ed4f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a308_27ac_ed4f.graph", "", "", "public", "Top Dataset, monolevel, lftx4.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nlftx4 (Long Term Monthly Mean Best (4-layer) Lifted Index, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a308_27ac_ed4f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a308_27ac_ed4f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a308_27ac_ed4f&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_a308_27ac_ed4f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccca_66a6_985b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccca_66a6_985b.graph", "", "", "public", "Top Dataset, monolevel, pottmp.hl1.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, pottmp.hl1.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\npottmp (Long Term Monthly Mean Potential Temperature, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ccca_66a6_985b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ccca_66a6_985b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ccca_66a6_985b&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ccca_66a6_985b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0da1_3e23_35ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0da1_3e23_35ba.graph", "", "", "public", "Top Dataset, monolevel, pottmp.sfc.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, pottmp.sfc.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\npottmp (Long Term Monthly Mean potential temperature at Surface, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0da1_3e23_35ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0da1_3e23_35ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0da1_3e23_35ba&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_0da1_3e23_35ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_704f_70b1_858c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_704f_70b1_858c.graph", "", "", "public", "Top Dataset, monolevel, rct.mon.ltm (Monthly NARR) [time][y][x], 0001", "Monthly NARR (Top Dataset, monolevel, rct.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nrct (Long Term Monthly Mean Temperature Parameter Canopy Conductance at Surface, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_704f_70b1_858c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_704f_70b1_858c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_704f_70b1_858c&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_704f_70b1_858c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e561_e9aa_4447", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e561_e9aa_4447.graph", "", "", "public", "Top Dataset, pressure, air.day.ltm (Daily Long Term NARR) [time][level][y][x], 0001", "Daily Long Term NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nair (Daily Long Term Mean Air Temperature on Pressure Levels, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e561_e9aa_4447/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e561_e9aa_4447.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e561_e9aa_4447&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_e561_e9aa_4447"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c708_1d81_df82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c708_1d81_df82.graph", "", "", "public", "Top Dataset, pressure, air.mon.ltm (Monthly NARR) [time][level][y][x], 0001", "Monthly NARR. Data is from North American Regional Reanalysis\n(8x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nair (Monthly Air Temperature on Pressure Levels, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c708_1d81_df82/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c708_1d81_df82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c708_1d81_df82&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_c708_1d81_df82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9015_699e_ba4b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9015_699e_ba4b.graph", "", "", "public", "Top Dataset, monolevel, air.2m.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, air.2m.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nair (Monthly Air Temperature at 2 m, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9015_699e_ba4b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9015_699e_ba4b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9015_699e_ba4b&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_9015_699e_ba4b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d097_1181_d9bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d097_1181_d9bf.graph", "", "", "public", "Top Dataset, monolevel, air.sfc.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, air.sfc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nair (Monthly air temperature at Surface, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d097_1181_d9bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d097_1181_d9bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d097_1181_d9bf&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_d097_1181_d9bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_faec_409c_074d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_faec_409c_074d.graph", "", "", "public", "Top Dataset, monolevel, dpt.2m.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, dpt.2m.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\ndpt (Monthly Dew Point Temperature at 2m, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_faec_409c_074d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_faec_409c_074d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_faec_409c_074d&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_faec_409c_074d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85e5_762a_e001", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85e5_762a_e001.graph", "", "", "public", "Top Dataset, monolevel, lftx4.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, lftx4.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nlftx4 (Monthly Best (4-layer) Lifted Index, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85e5_762a_e001/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85e5_762a_e001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85e5_762a_e001&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_85e5_762a_e001"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e19_c940_4ed1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e19_c940_4ed1.graph", "", "", "public", "Top Dataset, monolevel, pottmp.hl1.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, pottmp.hl1.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\npottmp (Monthly Potential Temperature, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e19_c940_4ed1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e19_c940_4ed1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e19_c940_4ed1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_7e19_c940_4ed1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44f9_d80f_850f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44f9_d80f_850f.graph", "", "", "public", "Top Dataset, monolevel, pottmp.sfc.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, pottmp.sfc.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\npottmp (Monthly potential temperature at Surface, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_44f9_d80f_850f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_44f9_d80f_850f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_44f9_d80f_850f&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_44f9_d80f_850f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_288f_8834_e2a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_288f_8834_e2a1.graph", "", "", "public", "Top Dataset, monolevel, rct.mon.mean (NARR Monthly Means) [time][y][x], 1979-present", "NARR Monthly Means (Top Dataset, monolevel, rct.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][y][x]):\nrct (Monthly Temperature Parameter Canopy Conductance at Surface, 1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_288f_8834_e2a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_288f_8834_e2a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_288f_8834_e2a1&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_288f_8834_e2a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff63_c2b5_12e9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff63_c2b5_12e9.graph", "", "", "public", "Top Dataset, pressure, air.mon.mean (NARR Monthly Means) [time][level][y][x], 1979-present", "NARR Monthly Means (Top Dataset, pressure, air.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\nair (Monthly Air Temperature on Pressure Levels, degK)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff63_c2b5_12e9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff63_c2b5_12e9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff63_c2b5_12e9&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_ff63_c2b5_12e9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfc5_c3f5_62a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfc5_c3f5_62a7.graph", "", "", "public", "Top Dataset, subsurface, tsoil.mon.mean (NARR Monthly Means) [time][level][y][x], 1979-present", "NARR Monthly Means (Top Dataset, subsurface, tsoil.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][y][x]):\ntsoil (Monthly Soil Temperature, K)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bfc5_c3f5_62a7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.narr.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bfc5_c3f5_62a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bfc5_c3f5_62a7&showErrors=false&email=", "National Centers for Environmental Prediction", "noaa_esrl_bfc5_c3f5_62a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2240_3479_8147", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2240_3479_8147.graph", "", "", "public", "Top Dataset, postprocessed, Global SST CESM-LE 40members 1920-2079 3moRunMeans [time][ens], 1918-present", "Top Dataset, postprocessed, Global Sea Surface Temperature (SST) CESM-LE 40members 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens]):\nGlobalSST (Global SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2240_3479_8147/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/Global_SST_CESM-LE_40members_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2240_3479_8147.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2240_3479_8147&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2240_3479_8147"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26b8_6789_b7d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26b8_6789_b7d7.graph", "", "", "public", "Top Dataset, postprocessed, Global SST CESM-LE 40members 1920-2079 3moRunMeans [time], 1918-present", "Top Dataset, postprocessed, Global Sea Surface Temperature (SST) CESM-LE 40members 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_26b8_6789_b7d7/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/Global_SST_CESM-LE_40members_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_26b8_6789_b7d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_26b8_6789_b7d7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_26b8_6789_b7d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8754_851b_0cbc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8754_851b_0cbc.graph", "", "", "public", "Top Dataset, postprocessed, Global SST CESM-LE 40members 1970-2039 3moRunMeans [time][ens], 1968-present", "Top Dataset, postprocessed, Global Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens]):\nGlobalSST (Global SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8754_851b_0cbc/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/Global_SST_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8754_851b_0cbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8754_851b_0cbc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8754_851b_0cbc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aab8_9f2e_e8d6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aab8_9f2e_e8d6.graph", "", "", "public", "Top Dataset, postprocessed, Global SST CESM-LE 40members 1970-2039 3moRunMeans [time], 1968-present", "Top Dataset, postprocessed, Global Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aab8_9f2e_e8d6/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/Global_SST_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aab8_9f2e_e8d6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aab8_9f2e_e8d6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_aab8_9f2e_e8d6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a81c_971f_d3b4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a81c_971f_d3b4.graph", "", "", "public", "Top Dataset, postprocessed, Global SST unweighted CESM-LE 40members 1970-2039 3moRunMeans [time][ens], 1968-present", "Top Dataset, postprocessed, Global Sea Surface Temperature (SST) unweighted CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens]):\nGlobalSST (Global SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a81c_971f_d3b4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/Global_SST_unweighted_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a81c_971f_d3b4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a81c_971f_d3b4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a81c_971f_d3b4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_536b_830d_de8a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_536b_830d_de8a.graph", "", "", "public", "Top Dataset, postprocessed, Global SST unweighted CESM-LE 40members 1970-2039 3moRunMeans [time], 1968-present", "Top Dataset, postprocessed, Global Sea Surface Temperature (SST) unweighted CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_536b_830d_de8a/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/Global_SST_unweighted_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_536b_830d_de8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_536b_830d_de8a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_536b_830d_de8a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0458_771b_978c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0458_771b_978c.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific 3moSSTanomalies CESM-LE 40members 1920-2079 [time][ens][nlat][nlon], 1918-present", "Top Dataset, postprocessed, IndoPacific 3moSSTanomalies CESM-LE 40members 1920-2079\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][nlat][nlon]):\nanomalies (anomalies of SST 3-month running mean)\nanoms_smooth (smoothed anomalies of SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0458_771b_978c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_3moSSTanomalies_CESM-LE_40members_1920-2079.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0458_771b_978c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0458_771b_978c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0458_771b_978c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8faa_fefa_a174", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8faa_fefa_a174.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2039 12moRunMeans [nlat][nlon]", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nlat][nlon]):\ntlat (array of t-grid latitudes, degrees_north)\ntlon (array of t-grid longitudes, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8faa_fefa_a174/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8faa_fefa_a174.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8faa_fefa_a174&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8faa_fefa_a174"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ed1_b386_9438", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ed1_b386_9438.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2039 12moRunMeans [time][ens][nlat][nlon], 1918-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][nlat][nlon]):\nSST (SST 12-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ed1_b386_9438/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ed1_b386_9438.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ed1_b386_9438&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6ed1_b386_9438"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a05_fa35_66bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a05_fa35_66bb.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2039 12moRunMeans [time], 1918-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a05_fa35_66bb/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a05_fa35_66bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a05_fa35_66bb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6a05_fa35_66bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15bf_53e1_d1b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_15bf_53e1_d1b1.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2039 3moRunMeans [nlat][nlon]", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nlat][nlon]):\ntlat (array of t-grid latitudes, degrees_north)\ntlon (array of t-grid longitudes, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_15bf_53e1_d1b1/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_15bf_53e1_d1b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_15bf_53e1_d1b1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_15bf_53e1_d1b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a014_0ea7_670f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a014_0ea7_670f.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2039 3moRunMeans [time][ens][nlat][nlon], 1918-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][nlat][nlon]):\nSST (SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a014_0ea7_670f/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a014_0ea7_670f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a014_0ea7_670f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a014_0ea7_670f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d20c_b1d5_0cf4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d20c_b1d5_0cf4.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2039 3moRunMeans [time], 1918-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d20c_b1d5_0cf4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d20c_b1d5_0cf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d20c_b1d5_0cf4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d20c_b1d5_0cf4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a038_f634_3ea9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a038_f634_3ea9.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2079 3moRunMeans [nlat][nlon]", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nlat][nlon]):\ntlat (array of t-grid latitudes, degrees_north)\ntlon (array of t-grid longitudes, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a038_f634_3ea9/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a038_f634_3ea9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a038_f634_3ea9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a038_f634_3ea9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b500_ec93_86bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b500_ec93_86bc.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2079 3moRunMeans [time][ens][nlat][nlon], 1918-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][nlat][nlon]):\nSST (SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b500_ec93_86bc/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b500_ec93_86bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b500_ec93_86bc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b500_ec93_86bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63dd_d480_d707", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63dd_d480_d707.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1920-2079 3moRunMeans [time], 1918-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_63dd_d480_d707/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_63dd_d480_d707.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_63dd_d480_d707&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_63dd_d480_d707"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3642_2f29_9a2c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3642_2f29_9a2c.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1970-2039 12moRunMeans [nlat][nlon]", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nlat][nlon]):\ntlat (array of t-grid latitudes, degrees_north)\ntlon (array of t-grid longitudes, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3642_2f29_9a2c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1970-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3642_2f29_9a2c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3642_2f29_9a2c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3642_2f29_9a2c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc26_d71f_c89a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc26_d71f_c89a.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1970-2039 12moRunMeans [time], 1968-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 12moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bc26_d71f_c89a/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1970-2039_12moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bc26_d71f_c89a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bc26_d71f_c89a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bc26_d71f_c89a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a293_d3ea_81e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a293_d3ea_81e8.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1970-2039 3moRunMeans [nlat][nlon]", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [nlat][nlon]):\ntlat (array of t-grid latitudes, degrees_north)\ntlon (array of t-grid longitudes, degrees_east)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a293_d3ea_81e8/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a293_d3ea_81e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a293_d3ea_81e8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a293_d3ea_81e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a6ed_991c_493c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a6ed_991c_493c.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1970-2039 3moRunMeans [time][ens][nlat][nlon], 1968-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][ens][nlat][nlon]):\nSST (SST 3-month running mean)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a6ed_991c_493c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a6ed_991c_493c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a6ed_991c_493c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a6ed_991c_493c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b18_d378_ccea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b18_d378_ccea.graph", "", "", "public", "Top Dataset, postprocessed, IndoPacific SST CESM-LE 40members 1970-2039 3moRunMeans [time], 1968-present", "Top Dataset, postprocessed, IndoPacific Sea Surface Temperature (SST) CESM-LE 40members 1970-2039 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMMDD))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b18_d378_ccea/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM-LE/ocn/postprocessed/IndoPacific_SST_CESM-LE_40members_1970-2039_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b18_d378_ccea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b18_d378_ccea&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7b18_d378_ccea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5bd_04e7_a5d8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5bd_04e7_a5d8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5bd_04e7_a5d8/request", "", "public", "Top Dataset, B1850, SST CESM1-CAM5 B1850 1920-2079 3moRunMeans [time][lat][lon], 2.0\u00b0", "Top Dataset, B1850, Sea Surface Temperature (SST) CESM1-CAM5 B1850 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST (Surface temperature (radiative), K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5bd_04e7_a5d8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5bd_04e7_a5d8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5bd_04e7_a5d8/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM1-CAM5/B1850/SST_CESM1-CAM5_B1850_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5bd_04e7_a5d8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5bd_04e7_a5d8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e5bd_04e7_a5d8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6dc8_d21b_70d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6dc8_d21b_70d1.graph", "", "", "public", "Top Dataset, B1850, SST CESM1-CAM5 B1850 1920-2079 3moRunMeans [time]", "Top Dataset, B1850, Sea Surface Temperature (SST) CESM1-CAM5 B1850 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMM))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6dc8_d21b_70d1/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM1-CAM5/B1850/SST_CESM1-CAM5_B1850_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6dc8_d21b_70d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6dc8_d21b_70d1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6dc8_d21b_70d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca18_f565_c07a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca18_f565_c07a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca18_f565_c07a/request", "", "public", "Top Dataset, B2000, SST CESM1-CAM5 B2000 1920-2079 3moRunMeans [time][lat][lon], 2.0\u00b0", "Top Dataset, B2000, Sea Surface Temperature (SST) CESM1-CAM5 B2000 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST (Surface temperature (radiative), K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca18_f565_c07a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca18_f565_c07a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca18_f565_c07a/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM1-CAM5/B2000/SST_CESM1-CAM5_B2000_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca18_f565_c07a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca18_f565_c07a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ca18_f565_c07a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bddc_9f9e_d06d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bddc_9f9e_d06d.graph", "", "", "public", "Top Dataset, B2000, SST CESM1-CAM5 B2000 1920-2079 3moRunMeans [time]", "Top Dataset, B2000, Sea Surface Temperature (SST) CESM1-CAM5 B2000 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time]):\ndate (current date (YYYYMM))\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bddc_9f9e_d06d/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM1-CAM5/B2000/SST_CESM1-CAM5_B2000_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bddc_9f9e_d06d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bddc_9f9e_d06d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bddc_9f9e_d06d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f76c_63e7_0d82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f76c_63e7_0d82.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f76c_63e7_0d82/request", "", "public", "Top Dataset, B2000, T2M CESM1-CAM5 B2000 1920-2079 3moRunMeans [time][lat][lon]", "Top Dataset, B2000, T2M CESM1-CAM5 B2000 1920-2079 3moRunMeans\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nT2M (Reference height temperature, K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f76c_63e7_0d82_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f76c_63e7_0d82_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f76c_63e7_0d82/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/CESM1-CAM5/B2000/T2M_CESM1-CAM5_B2000_1920-2079_3moRunMeans.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f76c_63e7_0d82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f76c_63e7_0d82&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f76c_63e7_0d82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cf9_e191_8d94", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cf9_e191_8d94.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3cf9_e191_8d94/request", "", "public", "Top Dataset, Livneh, monthly.mean.forcing.195001-201312, 0.5\u00b0", "Top Dataset, Livneh, monthly.mean.forcing.195001-201312\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprec (Precipitation, mm/day)\ntmax (Daily maximum temperature, degree_C)\ntmin (Daily minimum temperature, degree_C)\nwind (mean daily wind speed, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3cf9_e191_8d94_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3cf9_e191_8d94_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3cf9_e191_8d94/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Livneh/monthly.mean.forcing.195001-201312.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3cf9_e191_8d94.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3cf9_e191_8d94&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3cf9_e191_8d94"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c35b_b3ad_abc4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c35b_b3ad_abc4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c35b_b3ad_abc4/request", "", "public", "Princeton University Hydroclimatology Group 61-yr (1948-2008) Palmer Drought Severity Index (PDSI) dataset, 1.0\u00b0", "Forcings are an update to the original version reported in Sheffield et al., J. Climate (2006). Updates include: i) extension to 2008; ii) improved sampling procedure for correction of rain day statistics; iii) use of latest versions of Climatic Research Unit (CRU), SRB and Tropical Rainfall Measuring Mission (TRMM) products; iv) improved consistency between specific and relative humidity and air temperature; v) correction of relative humidity trends. See Sheffield et al., J. Climate (2006) for details of the observations used and the bias correction and downscaling methodology.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][z][latitude][longitude]):\npdsi_pm (self-calibrating Palmer Drought Severity Index with Thornthwaite PE)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c35b_b3ad_abc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c35b_b3ad_abc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c35b_b3ad_abc4/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Sheffield/pdsi_pm_prec_cpcV1.0_rnet_pgf_sc_monthly_1948-2008.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c35b_b3ad_abc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c35b_b3ad_abc4&showErrors=false&email=", "Princeton University", "noaa_esrl_c35b_b3ad_abc4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28a5_c3e8_117d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28a5_c3e8_117d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28a5_c3e8_117d/request", "", "public", "Princeton University Hydroclimatology Group 61-yr (1948-2008) Palmer Drought Severity Index (PDSI) dataset, 1.0\u00b0", "Forcings are an update to the original version reported in Sheffield et al., J. Climate (2006). Updates include: i) extension to 2008; ii) improved sampling procedure for correction of rain day statistics; iii) use of latest versions of Climatic Research Unit (CRU), SRB and Tropical Rainfall Measuring Mission (TRMM) products; iv) improved consistency between specific and relative humidity and air temperature; v) correction of relative humidity trends. See Sheffield et al., J. Climate (2006) for details of the observations used and the bias correction and downscaling methodology.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][z][latitude][longitude]):\npdsi_pm (self-calibrating Palmer Drought Severity Index with Penman-Monteith PE)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28a5_c3e8_117d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28a5_c3e8_117d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28a5_c3e8_117d/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Sheffield/pdsi_pm_prec_cruV3.10_rnet_pgf_sc_monthly_1948-2008.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28a5_c3e8_117d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28a5_c3e8_117d&showErrors=false&email=", "Princeton University", "noaa_esrl_28a5_c3e8_117d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdc5_3ecb_d06e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdc5_3ecb_d06e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bdc5_3ecb_d06e/request", "", "public", "Princeton University Hydroclimatology Group 61-yr (1948-2012) Palmer Drought Severity Index (PDSI) dataset, 1.0\u00b0", "Forcings are an update to the original version reported in Sheffield et al., J. Climate (2006). Updates include: i) extension to 2012; ii) improved sampling procedure for correction of rain day statistics; iii) use of latest versions of Climatic Research Unit (CRU), SRB and Tropical Rainfall Measuring Mission (TRMM) products; iv) improved consistency between specific and relative humidity and air temperature; v) correction of relative humidity trends. See Sheffield et al., J. Climate (2006) for details of the observations used and the bias correction and downscaling methodology.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][z][latitude][longitude]):\npdsi_pm (self-calibrating Palmer Drought Severity Index with Penman-Monteith PE)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bdc5_3ecb_d06e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bdc5_3ecb_d06e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bdc5_3ecb_d06e/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Sheffield/pdsi_pm_prec_cruV3.21_rnet_pgfV2_sc_monthly_1948-2012.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bdc5_3ecb_d06e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bdc5_3ecb_d06e&showErrors=false&email=", "Princeton University", "noaa_esrl_bdc5_3ecb_d06e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c6e_7cb7_4567", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c6e_7cb7_4567.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7c6e_7cb7_4567/request", "", "public", "Princeton University Hydroclimatology Group 61-yr (1948-2008) Palmer Drought Severity Index (PDSI) dataset, 1.0\u00b0", "Forcings are an update to the original version reported in Sheffield et al., J. Climate (2006). Updates include: i) extension to 2008; ii) improved sampling procedure for correction of rain day statistics; iii) use of latest versions of Climatic Research Unit (CRU), SRB and Tropical Rainfall Measuring Mission (TRMM) products; iv) improved consistency between specific and relative humidity and air temperature; v) correction of relative humidity trends. See Sheffield et al., J. Climate (2006) for details of the observations used and the bias correction and downscaling methodology.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][z][latitude][longitude]):\npdsi_pm (self-calibrating Palmer Drought Severity Index with Penman-Monteith PE)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7c6e_7cb7_4567_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7c6e_7cb7_4567_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7c6e_7cb7_4567/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Sheffield/pdsi_pm_prec_gpccV4_rnet_pgf_sc_monthly_1948-2007.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7c6e_7cb7_4567.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7c6e_7cb7_4567&showErrors=false&email=", "Princeton University", "noaa_esrl_7c6e_7cb7_4567"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bafd_3238_fe9c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bafd_3238_fe9c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bafd_3238_fe9c/request", "", "public", "Princeton University Hydroclimatology Group 61-yr (1948-2008) Palmer Drought Severity Index (PDSI) dataset, 1.0\u00b0", "Forcings are an update to the original version reported in Sheffield et al., J. Climate (2006). Updates include: i) extension to 2008; ii) improved sampling procedure for correction of rain day statistics; iii) use of latest versions of Climatic Research Unit (CRU), SRB and Tropical Rainfall Measuring Mission (TRMM) products; iv) improved consistency between specific and relative humidity and air temperature; v) correction of relative humidity trends. See Sheffield et al., J. Climate (2006) for details of the observations used and the bias correction and downscaling methodology.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][z][latitude][longitude]):\npdsi_pm (self-calibrating Palmer Drought Severity Index with Penman-Monteith PE)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bafd_3238_fe9c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bafd_3238_fe9c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bafd_3238_fe9c/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/SERDP_regimeshifts/data/OBS/Sheffield/pdsi_pm_prec_willmottV2.01_rnet_pgf_sc_monthly_1948-2008.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bafd_3238_fe9c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bafd_3238_fe9c&showErrors=false&email=", "Princeton University", "noaa_esrl_bafd_3238_fe9c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e791_ed5e_389c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e791_ed5e_389c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e791_ed5e_389c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e791_ed5e_389c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e791_ed5e_389c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e791_ed5e_389c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e791_ed5e_389c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e791_ed5e_389c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e791_ed5e_389c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e2c_4ff1_850d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e2c_4ff1_850d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e2c_4ff1_850d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e2c_4ff1_850d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e2c_4ff1_850d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e2c_4ff1_850d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e2c_4ff1_850d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e2c_4ff1_850d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8e2c_4ff1_850d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5c6_c0ec_632d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5c6_c0ec_632d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5c6_c0ec_632d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5c6_c0ec_632d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5c6_c0ec_632d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5c6_c0ec_632d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5c6_c0ec_632d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5c6_c0ec_632d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c5c6_c0ec_632d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_804f_8a2e_d99c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_804f_8a2e_d99c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_804f_8a2e_d99c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_804f_8a2e_d99c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_804f_8a2e_d99c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_804f_8a2e_d99c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_804f_8a2e_d99c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_804f_8a2e_d99c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_804f_8a2e_d99c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c153_e09d_b35f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c153_e09d_b35f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c153_e09d_b35f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c153_e09d_b35f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c153_e09d_b35f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c153_e09d_b35f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c153_e09d_b35f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c153_e09d_b35f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c153_e09d_b35f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb1e_53c6_585d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb1e_53c6_585d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bb1e_53c6_585d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bb1e_53c6_585d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bb1e_53c6_585d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bb1e_53c6_585d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bb1e_53c6_585d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bb1e_53c6_585d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bb1e_53c6_585d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7082_f00a_48ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7082_f00a_48ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7082_f00a_48ce/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7082_f00a_48ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7082_f00a_48ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7082_f00a_48ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7082_f00a_48ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7082_f00a_48ce&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7082_f00a_48ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fede_5d4d_15cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fede_5d4d_15cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fede_5d4d_15cd/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fede_5d4d_15cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fede_5d4d_15cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fede_5d4d_15cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fede_5d4d_15cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fede_5d4d_15cd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fede_5d4d_15cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9290_308f_ffd2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9290_308f_ffd2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9290_308f_ffd2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9290_308f_ffd2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9290_308f_ffd2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9290_308f_ffd2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9290_308f_ffd2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9290_308f_ffd2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9290_308f_ffd2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c32_37d4_26e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c32_37d4_26e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c32_37d4_26e3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c32_37d4_26e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c32_37d4_26e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c32_37d4_26e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c32_37d4_26e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c32_37d4_26e3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9c32_37d4_26e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c7c_de05_d943", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c7c_de05_d943.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4c7c_de05_d943/request", "", "public", "Top Dataset, enh, qsminq.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4c7c_de05_d943_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4c7c_de05_d943_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c7c_de05_d943/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c7c_de05_d943.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c7c_de05_d943&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4c7c_de05_d943"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c521_2719_4163", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c521_2719_4163.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c521_2719_4163/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c521_2719_4163_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c521_2719_4163_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c521_2719_4163/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c521_2719_4163.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c521_2719_4163&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c521_2719_4163"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d59_ff11_b119", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d59_ff11_b119.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d59_ff11_b119/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d59_ff11_b119_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d59_ff11_b119_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d59_ff11_b119/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d59_ff11_b119.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d59_ff11_b119&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6d59_ff11_b119"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2747_4e77_1565", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2747_4e77_1565.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2747_4e77_1565/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2747_4e77_1565_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2747_4e77_1565_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2747_4e77_1565/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2747_4e77_1565.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2747_4e77_1565&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2747_4e77_1565"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e16_8794_cf07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e16_8794_cf07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7e16_8794_cf07/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7e16_8794_cf07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7e16_8794_cf07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e16_8794_cf07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e16_8794_cf07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e16_8794_cf07&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7e16_8794_cf07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c575_5d7d_8b76", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c575_5d7d_8b76.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c575_5d7d_8b76/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c575_5d7d_8b76_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c575_5d7d_8b76_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c575_5d7d_8b76/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c575_5d7d_8b76.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c575_5d7d_8b76&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c575_5d7d_8b76"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bedf_2705_0cb1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bedf_2705_0cb1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bedf_2705_0cb1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bedf_2705_0cb1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bedf_2705_0cb1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bedf_2705_0cb1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bedf_2705_0cb1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bedf_2705_0cb1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bedf_2705_0cb1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5e1_f236_7286", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5e1_f236_7286.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5e1_f236_7286/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5e1_f236_7286_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5e1_f236_7286_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5e1_f236_7286/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5e1_f236_7286.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5e1_f236_7286&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b5e1_f236_7286"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_caea_0a7d_579c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_caea_0a7d_579c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_caea_0a7d_579c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_caea_0a7d_579c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_caea_0a7d_579c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_caea_0a7d_579c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_caea_0a7d_579c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_caea_0a7d_579c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_caea_0a7d_579c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_087c_59c3_75bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_087c_59c3_75bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_087c_59c3_75bd/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_087c_59c3_75bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_087c_59c3_75bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_087c_59c3_75bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_087c_59c3_75bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_087c_59c3_75bd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_087c_59c3_75bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9304_d962_7f0d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9304_d962_7f0d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9304_d962_7f0d/request", "", "public", "Top Dataset, enh, smina.day fraction (ICOADS 1-degree Equatorial Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9304_d962_7f0d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9304_d962_7f0d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9304_d962_7f0d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9304_d962_7f0d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9304_d962_7f0d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9304_d962_7f0d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5db_439c_06cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5db_439c_06cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f5db_439c_06cf/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f5db_439c_06cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f5db_439c_06cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f5db_439c_06cf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f5db_439c_06cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f5db_439c_06cf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f5db_439c_06cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91a7_b6d7_c94b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91a7_b6d7_c94b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_91a7_b6d7_c94b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_91a7_b6d7_c94b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_91a7_b6d7_c94b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_91a7_b6d7_c94b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_91a7_b6d7_c94b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_91a7_b6d7_c94b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_91a7_b6d7_c94b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9b5_ee95_c510", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9b5_ee95_c510.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b9b5_ee95_c510/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b9b5_ee95_c510_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b9b5_ee95_c510_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b9b5_ee95_c510/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b9b5_ee95_c510.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b9b5_ee95_c510&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b9b5_ee95_c510"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b26_3ce5_5378", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b26_3ce5_5378.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b26_3ce5_5378/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b26_3ce5_5378_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b26_3ce5_5378_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b26_3ce5_5378/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b26_3ce5_5378.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b26_3ce5_5378&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6b26_3ce5_5378"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4fb_80f5_0c3c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4fb_80f5_0c3c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d4fb_80f5_0c3c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d4fb_80f5_0c3c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d4fb_80f5_0c3c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d4fb_80f5_0c3c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d4fb_80f5_0c3c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d4fb_80f5_0c3c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d4fb_80f5_0c3c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f96_f9f9_9055", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f96_f9f9_9055.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f96_f9f9_9055/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f96_f9f9_9055_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f96_f9f9_9055_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f96_f9f9_9055/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f96_f9f9_9055.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f96_f9f9_9055&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0f96_f9f9_9055"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8079_b74f_aabe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8079_b74f_aabe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8079_b74f_aabe/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8079_b74f_aabe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8079_b74f_aabe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8079_b74f_aabe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8079_b74f_aabe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8079_b74f_aabe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8079_b74f_aabe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48b9_e9df_98eb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48b9_e9df_98eb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_48b9_e9df_98eb/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_48b9_e9df_98eb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_48b9_e9df_98eb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_48b9_e9df_98eb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_48b9_e9df_98eb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_48b9_e9df_98eb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_48b9_e9df_98eb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1aa1_48e1_af58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1aa1_48e1_af58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1aa1_48e1_af58/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1aa1_48e1_af58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1aa1_48e1_af58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1aa1_48e1_af58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1aa1_48e1_af58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1aa1_48e1_af58&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1aa1_48e1_af58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed0c_513c_dc53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed0c_513c_dc53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ed0c_513c_dc53/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ed0c_513c_dc53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ed0c_513c_dc53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ed0c_513c_dc53/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ed0c_513c_dc53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ed0c_513c_dc53&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ed0c_513c_dc53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_588b_c283_d8cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_588b_c283_d8cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_588b_c283_d8cb/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_588b_c283_d8cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_588b_c283_d8cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_588b_c283_d8cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_588b_c283_d8cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_588b_c283_d8cb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_588b_c283_d8cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3401_177c_65b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3401_177c_65b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3401_177c_65b8/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3401_177c_65b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3401_177c_65b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3401_177c_65b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3401_177c_65b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3401_177c_65b8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3401_177c_65b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e178_dce8_9000", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e178_dce8_9000.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e178_dce8_9000/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e178_dce8_9000_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e178_dce8_9000_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e178_dce8_9000/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e178_dce8_9000.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e178_dce8_9000&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e178_dce8_9000"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ed8_a1f2_394b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ed8_a1f2_394b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ed8_a1f2_394b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ed8_a1f2_394b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ed8_a1f2_394b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ed8_a1f2_394b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ed8_a1f2_394b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ed8_a1f2_394b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8ed8_a1f2_394b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aac4_18a1_3e22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aac4_18a1_3e22.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aac4_18a1_3e22/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aac4_18a1_3e22_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aac4_18a1_3e22_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aac4_18a1_3e22/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aac4_18a1_3e22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aac4_18a1_3e22&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aac4_18a1_3e22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5445_3d29_11f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5445_3d29_11f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5445_3d29_11f3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5445_3d29_11f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5445_3d29_11f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5445_3d29_11f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5445_3d29_11f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5445_3d29_11f3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5445_3d29_11f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3174_3b59_db07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3174_3b59_db07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3174_3b59_db07/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3174_3b59_db07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3174_3b59_db07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3174_3b59_db07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3174_3b59_db07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3174_3b59_db07&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3174_3b59_db07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6977_71a2_7e83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6977_71a2_7e83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6977_71a2_7e83/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6977_71a2_7e83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6977_71a2_7e83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6977_71a2_7e83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6977_71a2_7e83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6977_71a2_7e83&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6977_71a2_7e83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03b5_5794_37e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03b5_5794_37e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03b5_5794_37e6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03b5_5794_37e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03b5_5794_37e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03b5_5794_37e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03b5_5794_37e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03b5_5794_37e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_03b5_5794_37e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b79b_8963_5952", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b79b_8963_5952.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b79b_8963_5952/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b79b_8963_5952_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b79b_8963_5952_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b79b_8963_5952/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b79b_8963_5952.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b79b_8963_5952&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b79b_8963_5952"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd7e_c727_7008", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd7e_c727_7008.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fd7e_c727_7008/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fd7e_c727_7008_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fd7e_c727_7008_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fd7e_c727_7008/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fd7e_c727_7008.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fd7e_c727_7008&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fd7e_c727_7008"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fa9_1bb7_f667", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7fa9_1bb7_f667.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7fa9_1bb7_f667/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7fa9_1bb7_f667_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7fa9_1bb7_f667_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7fa9_1bb7_f667/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7fa9_1bb7_f667.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7fa9_1bb7_f667&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7fa9_1bb7_f667"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a474_ed6c_d4bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a474_ed6c_d4bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a474_ed6c_d4bd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a474_ed6c_d4bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a474_ed6c_d4bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a474_ed6c_d4bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a474_ed6c_d4bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a474_ed6c_d4bd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a474_ed6c_d4bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8cb_e756_7816", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8cb_e756_7816.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f8cb_e756_7816/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f8cb_e756_7816_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f8cb_e756_7816_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f8cb_e756_7816/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f8cb_e756_7816.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f8cb_e756_7816&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f8cb_e756_7816"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f7b_96b0_a1fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f7b_96b0_a1fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f7b_96b0_a1fa/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f7b_96b0_a1fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f7b_96b0_a1fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f7b_96b0_a1fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f7b_96b0_a1fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f7b_96b0_a1fa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9f7b_96b0_a1fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c29_2a03_28a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c29_2a03_28a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c29_2a03_28a2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c29_2a03_28a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c29_2a03_28a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c29_2a03_28a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c29_2a03_28a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c29_2a03_28a2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9c29_2a03_28a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2237_a84f_012e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2237_a84f_012e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2237_a84f_012e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2237_a84f_012e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2237_a84f_012e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2237_a84f_012e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2237_a84f_012e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2237_a84f_012e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2237_a84f_012e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f28f_970a_4c41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f28f_970a_4c41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f28f_970a_4c41/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f28f_970a_4c41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f28f_970a_4c41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f28f_970a_4c41/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f28f_970a_4c41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f28f_970a_4c41&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f28f_970a_4c41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efb7_1da4_d99f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efb7_1da4_d99f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_efb7_1da4_d99f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, air.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_efb7_1da4_d99f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_efb7_1da4_d99f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_efb7_1da4_d99f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_efb7_1da4_d99f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_efb7_1da4_d99f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_efb7_1da4_d99f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a07_33c1_bf73", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a07_33c1_bf73.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1a07_33c1_bf73/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1a07_33c1_bf73_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1a07_33c1_bf73_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1a07_33c1_bf73/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1a07_33c1_bf73.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1a07_33c1_bf73&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1a07_33c1_bf73"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f204_e8f5_949c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f204_e8f5_949c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f204_e8f5_949c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f204_e8f5_949c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f204_e8f5_949c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f204_e8f5_949c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f204_e8f5_949c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f204_e8f5_949c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f204_e8f5_949c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a06f_9578_7ff9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a06f_9578_7ff9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a06f_9578_7ff9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a06f_9578_7ff9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a06f_9578_7ff9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a06f_9578_7ff9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a06f_9578_7ff9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a06f_9578_7ff9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a06f_9578_7ff9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a96f_46d9_e620", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a96f_46d9_e620.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a96f_46d9_e620/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a96f_46d9_e620_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a96f_46d9_e620_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a96f_46d9_e620/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a96f_46d9_e620.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a96f_46d9_e620&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a96f_46d9_e620"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aecd_6721_a218", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aecd_6721_a218.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aecd_6721_a218/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aecd_6721_a218_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aecd_6721_a218_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aecd_6721_a218/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aecd_6721_a218.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aecd_6721_a218&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aecd_6721_a218"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1049_89c1_4cee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1049_89c1_4cee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1049_89c1_4cee/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1049_89c1_4cee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1049_89c1_4cee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1049_89c1_4cee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1049_89c1_4cee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1049_89c1_4cee&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1049_89c1_4cee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b7b1_fcb6_4ce2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b7b1_fcb6_4ce2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b7b1_fcb6_4ce2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b7b1_fcb6_4ce2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b7b1_fcb6_4ce2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b7b1_fcb6_4ce2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b7b1_fcb6_4ce2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b7b1_fcb6_4ce2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b7b1_fcb6_4ce2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_253d_8fd6_8cf5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_253d_8fd6_8cf5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_253d_8fd6_8cf5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_253d_8fd6_8cf5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_253d_8fd6_8cf5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_253d_8fd6_8cf5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_253d_8fd6_8cf5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_253d_8fd6_8cf5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_253d_8fd6_8cf5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14c1_8726_74f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14c1_8726_74f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_14c1_8726_74f2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_14c1_8726_74f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_14c1_8726_74f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_14c1_8726_74f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_14c1_8726_74f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_14c1_8726_74f2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_14c1_8726_74f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28d9_87be_80b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28d9_87be_80b1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28d9_87be_80b1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, cldc.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28d9_87be_80b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28d9_87be_80b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28d9_87be_80b1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28d9_87be_80b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28d9_87be_80b1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_28d9_87be_80b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_831d_2706_fe83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_831d_2706_fe83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_831d_2706_fe83/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_831d_2706_fe83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_831d_2706_fe83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_831d_2706_fe83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_831d_2706_fe83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_831d_2706_fe83&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_831d_2706_fe83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1142_a84b_74dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1142_a84b_74dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1142_a84b_74dc/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1142_a84b_74dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1142_a84b_74dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1142_a84b_74dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1142_a84b_74dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1142_a84b_74dc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1142_a84b_74dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a30e_af8d_6204", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a30e_af8d_6204.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a30e_af8d_6204/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a30e_af8d_6204_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a30e_af8d_6204_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a30e_af8d_6204/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a30e_af8d_6204.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a30e_af8d_6204&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a30e_af8d_6204"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fd0_6f45_48b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fd0_6f45_48b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1fd0_6f45_48b6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1fd0_6f45_48b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1fd0_6f45_48b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1fd0_6f45_48b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1fd0_6f45_48b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1fd0_6f45_48b6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1fd0_6f45_48b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_014e_dc8b_6ad7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_014e_dc8b_6ad7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_014e_dc8b_6ad7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_014e_dc8b_6ad7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_014e_dc8b_6ad7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_014e_dc8b_6ad7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_014e_dc8b_6ad7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_014e_dc8b_6ad7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_014e_dc8b_6ad7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2337_ccf0_324b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2337_ccf0_324b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2337_ccf0_324b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2337_ccf0_324b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2337_ccf0_324b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2337_ccf0_324b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2337_ccf0_324b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2337_ccf0_324b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2337_ccf0_324b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1693_7933_61ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1693_7933_61ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1693_7933_61ac/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1693_7933_61ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1693_7933_61ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1693_7933_61ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1693_7933_61ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1693_7933_61ac&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1693_7933_61ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea58_2e8b_d661", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea58_2e8b_d661.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ea58_2e8b_d661/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ea58_2e8b_d661_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ea58_2e8b_d661_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ea58_2e8b_d661/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ea58_2e8b_d661.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ea58_2e8b_d661&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ea58_2e8b_d661"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6028_43bb_dd51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6028_43bb_dd51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6028_43bb_dd51/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6028_43bb_dd51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6028_43bb_dd51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6028_43bb_dd51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6028_43bb_dd51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6028_43bb_dd51&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6028_43bb_dd51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b0b2_3d26_9728", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b0b2_3d26_9728.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b0b2_3d26_9728/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, lflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b0b2_3d26_9728_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b0b2_3d26_9728_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b0b2_3d26_9728/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b0b2_3d26_9728.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b0b2_3d26_9728&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b0b2_3d26_9728"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a20c_7a00_27fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a20c_7a00_27fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a20c_7a00_27fe/request", "", "public", "Top Dataset, std, qsminq.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a20c_7a00_27fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a20c_7a00_27fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a20c_7a00_27fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a20c_7a00_27fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a20c_7a00_27fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a20c_7a00_27fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19d2_044c_7e93", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19d2_044c_7e93.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_19d2_044c_7e93/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_19d2_044c_7e93_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_19d2_044c_7e93_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_19d2_044c_7e93/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_19d2_044c_7e93.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_19d2_044c_7e93&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_19d2_044c_7e93"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9c5_5f35_d004", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9c5_5f35_d004.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c9c5_5f35_d004/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c9c5_5f35_d004_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c9c5_5f35_d004_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c9c5_5f35_d004/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c9c5_5f35_d004.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c9c5_5f35_d004&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c9c5_5f35_d004"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7227_9e08_e826", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7227_9e08_e826.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7227_9e08_e826/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7227_9e08_e826_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7227_9e08_e826_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7227_9e08_e826/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7227_9e08_e826.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7227_9e08_e826&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7227_9e08_e826"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af9b_7e08_c851", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af9b_7e08_c851.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_af9b_7e08_c851/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_af9b_7e08_c851_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_af9b_7e08_c851_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_af9b_7e08_c851/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_af9b_7e08_c851.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_af9b_7e08_c851&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_af9b_7e08_c851"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95d6_5f5f_06e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_95d6_5f5f_06e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_95d6_5f5f_06e0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_95d6_5f5f_06e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_95d6_5f5f_06e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_95d6_5f5f_06e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_95d6_5f5f_06e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_95d6_5f5f_06e0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_95d6_5f5f_06e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_838b_1be3_fde4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_838b_1be3_fde4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_838b_1be3_fde4/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_838b_1be3_fde4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_838b_1be3_fde4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_838b_1be3_fde4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_838b_1be3_fde4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_838b_1be3_fde4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_838b_1be3_fde4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6aa0_03dc_f7d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6aa0_03dc_f7d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6aa0_03dc_f7d4/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6aa0_03dc_f7d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6aa0_03dc_f7d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6aa0_03dc_f7d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6aa0_03dc_f7d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6aa0_03dc_f7d4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6aa0_03dc_f7d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e491_74c7_7e46", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e491_74c7_7e46.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e491_74c7_7e46/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e491_74c7_7e46_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e491_74c7_7e46_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e491_74c7_7e46/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e491_74c7_7e46.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e491_74c7_7e46&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e491_74c7_7e46"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_adb8_e1bb_151e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_adb8_e1bb_151e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_adb8_e1bb_151e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, qsminq.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_adb8_e1bb_151e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_adb8_e1bb_151e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_adb8_e1bb_151e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_adb8_e1bb_151e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_adb8_e1bb_151e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_adb8_e1bb_151e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cd3_3208_b177", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cd3_3208_b177.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9cd3_3208_b177/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9cd3_3208_b177_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9cd3_3208_b177_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9cd3_3208_b177/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9cd3_3208_b177.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9cd3_3208_b177&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9cd3_3208_b177"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f98_6889_03c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5f98_6889_03c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5f98_6889_03c0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5f98_6889_03c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5f98_6889_03c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5f98_6889_03c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5f98_6889_03c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5f98_6889_03c0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5f98_6889_03c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f65_c029_b91a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f65_c029_b91a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f65_c029_b91a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f65_c029_b91a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f65_c029_b91a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f65_c029_b91a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f65_c029_b91a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f65_c029_b91a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1f65_c029_b91a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f02_3b5c_fdaf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f02_3b5c_fdaf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f02_3b5c_fdaf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f02_3b5c_fdaf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f02_3b5c_fdaf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f02_3b5c_fdaf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f02_3b5c_fdaf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f02_3b5c_fdaf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1f02_3b5c_fdaf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef45_8079_2cec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef45_8079_2cec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ef45_8079_2cec/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ef45_8079_2cec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ef45_8079_2cec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ef45_8079_2cec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ef45_8079_2cec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ef45_8079_2cec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ef45_8079_2cec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70a7_e719_8c88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70a7_e719_8c88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_70a7_e719_8c88/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_70a7_e719_8c88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_70a7_e719_8c88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_70a7_e719_8c88/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_70a7_e719_8c88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_70a7_e719_8c88&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_70a7_e719_8c88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9868_e495_7890", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9868_e495_7890.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9868_e495_7890/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9868_e495_7890_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9868_e495_7890_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9868_e495_7890/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9868_e495_7890.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9868_e495_7890&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9868_e495_7890"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e571_562f_700b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e571_562f_700b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e571_562f_700b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e571_562f_700b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e571_562f_700b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e571_562f_700b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e571_562f_700b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e571_562f_700b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e571_562f_700b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fc3_9298_7109", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fc3_9298_7109.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4fc3_9298_7109/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4fc3_9298_7109_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4fc3_9298_7109_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4fc3_9298_7109/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4fc3_9298_7109.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4fc3_9298_7109&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4fc3_9298_7109"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d703_d93a_bed5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d703_d93a_bed5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d703_d93a_bed5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, rhum.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d703_d93a_bed5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d703_d93a_bed5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d703_d93a_bed5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d703_d93a_bed5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d703_d93a_bed5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d703_d93a_bed5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_760e_f339_53fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_760e_f339_53fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_760e_f339_53fd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_760e_f339_53fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_760e_f339_53fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_760e_f339_53fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_760e_f339_53fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_760e_f339_53fd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_760e_f339_53fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2562_f1b5_6e23", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2562_f1b5_6e23.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2562_f1b5_6e23/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2562_f1b5_6e23_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2562_f1b5_6e23_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2562_f1b5_6e23/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2562_f1b5_6e23.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2562_f1b5_6e23&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2562_f1b5_6e23"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de8d_a199_3122", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de8d_a199_3122.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_de8d_a199_3122/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_de8d_a199_3122_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_de8d_a199_3122_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_de8d_a199_3122/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_de8d_a199_3122.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_de8d_a199_3122&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_de8d_a199_3122"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff25_85f7_4cab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff25_85f7_4cab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff25_85f7_4cab/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff25_85f7_4cab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff25_85f7_4cab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff25_85f7_4cab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff25_85f7_4cab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff25_85f7_4cab&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ff25_85f7_4cab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3580_d177_1f05", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3580_d177_1f05.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3580_d177_1f05/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3580_d177_1f05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3580_d177_1f05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3580_d177_1f05/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3580_d177_1f05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3580_d177_1f05&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3580_d177_1f05"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_767c_33fe_1a83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_767c_33fe_1a83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_767c_33fe_1a83/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_767c_33fe_1a83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_767c_33fe_1a83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_767c_33fe_1a83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_767c_33fe_1a83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_767c_33fe_1a83&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_767c_33fe_1a83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b7b_0bca_5d4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7b7b_0bca_5d4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7b7b_0bca_5d4d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7b7b_0bca_5d4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7b7b_0bca_5d4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7b7b_0bca_5d4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7b7b_0bca_5d4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7b7b_0bca_5d4d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7b7b_0bca_5d4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_61f5_7213_d8ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_61f5_7213_d8ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_61f5_7213_d8ac/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_61f5_7213_d8ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_61f5_7213_d8ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_61f5_7213_d8ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_61f5_7213_d8ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_61f5_7213_d8ac&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_61f5_7213_d8ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf99_a802_8a2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf99_a802_8a2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf99_a802_8a2f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf99_a802_8a2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf99_a802_8a2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf99_a802_8a2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf99_a802_8a2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf99_a802_8a2f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cf99_a802_8a2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cbe_f52a_25f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cbe_f52a_25f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2cbe_f52a_25f3/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2cbe_f52a_25f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2cbe_f52a_25f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2cbe_f52a_25f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2cbe_f52a_25f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2cbe_f52a_25f3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2cbe_f52a_25f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a89d_6eef_3057", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a89d_6eef_3057.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a89d_6eef_3057/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a89d_6eef_3057_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a89d_6eef_3057_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a89d_6eef_3057/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a89d_6eef_3057.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a89d_6eef_3057&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a89d_6eef_3057"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d16_d819_edf1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d16_d819_edf1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d16_d819_edf1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d16_d819_edf1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d16_d819_edf1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d16_d819_edf1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d16_d819_edf1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d16_d819_edf1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d16_d819_edf1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f612_ea67_17e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f612_ea67_17e4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f612_ea67_17e4/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f612_ea67_17e4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f612_ea67_17e4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f612_ea67_17e4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f612_ea67_17e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f612_ea67_17e4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f612_ea67_17e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f42_7c0f_639f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f42_7c0f_639f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f42_7c0f_639f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f42_7c0f_639f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f42_7c0f_639f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f42_7c0f_639f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f42_7c0f_639f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f42_7c0f_639f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8f42_7c0f_639f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c01_681b_0deb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c01_681b_0deb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1c01_681b_0deb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1c01_681b_0deb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1c01_681b_0deb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1c01_681b_0deb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1c01_681b_0deb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1c01_681b_0deb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1c01_681b_0deb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_865d_062a_c376", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_865d_062a_c376.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_865d_062a_c376/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_865d_062a_c376_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_865d_062a_c376_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_865d_062a_c376/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_865d_062a_c376.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_865d_062a_c376&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_865d_062a_c376"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06e0_0214_2f2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06e0_0214_2f2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_06e0_0214_2f2a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_06e0_0214_2f2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_06e0_0214_2f2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_06e0_0214_2f2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_06e0_0214_2f2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_06e0_0214_2f2a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_06e0_0214_2f2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b13c_30e6_a0ad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b13c_30e6_a0ad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b13c_30e6_a0ad/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b13c_30e6_a0ad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b13c_30e6_a0ad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b13c_30e6_a0ad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b13c_30e6_a0ad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b13c_30e6_a0ad&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b13c_30e6_a0ad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a630_e574_07e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a630_e574_07e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a630_e574_07e5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a630_e574_07e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a630_e574_07e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a630_e574_07e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a630_e574_07e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a630_e574_07e5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a630_e574_07e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fb6_5d87_3c07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fb6_5d87_3c07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4fb6_5d87_3c07/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, shum.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4fb6_5d87_3c07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4fb6_5d87_3c07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4fb6_5d87_3c07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4fb6_5d87_3c07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4fb6_5d87_3c07&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4fb6_5d87_3c07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e03c_ecde_6ddf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e03c_ecde_6ddf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e03c_ecde_6ddf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e03c_ecde_6ddf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e03c_ecde_6ddf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e03c_ecde_6ddf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e03c_ecde_6ddf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e03c_ecde_6ddf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e03c_ecde_6ddf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a856_19db_a5d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a856_19db_a5d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a856_19db_a5d5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a856_19db_a5d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a856_19db_a5d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a856_19db_a5d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a856_19db_a5d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a856_19db_a5d5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a856_19db_a5d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c88_4ee5_6f39", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c88_4ee5_6f39.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c88_4ee5_6f39/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c88_4ee5_6f39_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c88_4ee5_6f39_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c88_4ee5_6f39/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c88_4ee5_6f39.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c88_4ee5_6f39&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0c88_4ee5_6f39"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8a1_5719_b476", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8a1_5719_b476.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f8a1_5719_b476/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f8a1_5719_b476_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f8a1_5719_b476_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f8a1_5719_b476/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f8a1_5719_b476.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f8a1_5719_b476&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f8a1_5719_b476"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1d7_6bc1_ced7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1d7_6bc1_ced7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f1d7_6bc1_ced7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f1d7_6bc1_ced7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f1d7_6bc1_ced7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f1d7_6bc1_ced7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f1d7_6bc1_ced7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f1d7_6bc1_ced7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f1d7_6bc1_ced7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53ae_ea38_f082", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_53ae_ea38_f082.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_53ae_ea38_f082/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_53ae_ea38_f082_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_53ae_ea38_f082_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_53ae_ea38_f082/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_53ae_ea38_f082.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_53ae_ea38_f082&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_53ae_ea38_f082"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8790_8df1_4d91", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8790_8df1_4d91.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8790_8df1_4d91/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8790_8df1_4d91_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8790_8df1_4d91_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8790_8df1_4d91/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8790_8df1_4d91.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8790_8df1_4d91&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8790_8df1_4d91"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f86_1140_d23f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f86_1140_d23f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6f86_1140_d23f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6f86_1140_d23f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6f86_1140_d23f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6f86_1140_d23f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6f86_1140_d23f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6f86_1140_d23f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6f86_1140_d23f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2124_cef3_09b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2124_cef3_09b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2124_cef3_09b9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2124_cef3_09b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2124_cef3_09b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2124_cef3_09b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2124_cef3_09b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2124_cef3_09b9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2124_cef3_09b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eec7_9f31_21bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eec7_9f31_21bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eec7_9f31_21bb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, slp.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eec7_9f31_21bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eec7_9f31_21bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eec7_9f31_21bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eec7_9f31_21bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eec7_9f31_21bb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eec7_9f31_21bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4a4_6d3f_9789", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4a4_6d3f_9789.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a4a4_6d3f_9789/request", "", "public", "Top Dataset, std, smina.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a4a4_6d3f_9789_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a4a4_6d3f_9789_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a4a4_6d3f_9789/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a4a4_6d3f_9789.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a4a4_6d3f_9789&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a4a4_6d3f_9789"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fec8_fb76_70f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fec8_fb76_70f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fec8_fb76_70f6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fec8_fb76_70f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fec8_fb76_70f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fec8_fb76_70f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fec8_fb76_70f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fec8_fb76_70f6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fec8_fb76_70f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_606e_525e_bd82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_606e_525e_bd82.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_606e_525e_bd82/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_606e_525e_bd82_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_606e_525e_bd82_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_606e_525e_bd82/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_606e_525e_bd82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_606e_525e_bd82&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_606e_525e_bd82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_719e_77c6_d92d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_719e_77c6_d92d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_719e_77c6_d92d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_719e_77c6_d92d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_719e_77c6_d92d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_719e_77c6_d92d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_719e_77c6_d92d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_719e_77c6_d92d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_719e_77c6_d92d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b470_8154_a7e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b470_8154_a7e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b470_8154_a7e6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b470_8154_a7e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b470_8154_a7e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b470_8154_a7e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b470_8154_a7e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b470_8154_a7e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b470_8154_a7e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfd9_2609_61dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfd9_2609_61dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dfd9_2609_61dd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dfd9_2609_61dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dfd9_2609_61dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dfd9_2609_61dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dfd9_2609_61dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dfd9_2609_61dd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dfd9_2609_61dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ea6_2e04_eb96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ea6_2e04_eb96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ea6_2e04_eb96/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ea6_2e04_eb96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ea6_2e04_eb96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ea6_2e04_eb96/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ea6_2e04_eb96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ea6_2e04_eb96&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8ea6_2e04_eb96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41d0_145f_337e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41d0_145f_337e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_41d0_145f_337e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_41d0_145f_337e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_41d0_145f_337e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_41d0_145f_337e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_41d0_145f_337e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_41d0_145f_337e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_41d0_145f_337e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99c0_b304_46be", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99c0_b304_46be.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99c0_b304_46be/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99c0_b304_46be_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99c0_b304_46be_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99c0_b304_46be/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99c0_b304_46be.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99c0_b304_46be&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_99c0_b304_46be"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f242_afc4_fceb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f242_afc4_fceb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f242_afc4_fceb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, smina.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f242_afc4_fceb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f242_afc4_fceb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f242_afc4_fceb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f242_afc4_fceb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f242_afc4_fceb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f242_afc4_fceb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fec_e828_a030", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fec_e828_a030.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1fec_e828_a030/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1fec_e828_a030_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1fec_e828_a030_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1fec_e828_a030/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1fec_e828_a030.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1fec_e828_a030&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1fec_e828_a030"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_681f_621c_8fd7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_681f_621c_8fd7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_681f_621c_8fd7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_681f_621c_8fd7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_681f_621c_8fd7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_681f_621c_8fd7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_681f_621c_8fd7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_681f_621c_8fd7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_681f_621c_8fd7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4cf_9abf_b834", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4cf_9abf_b834.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e4cf_9abf_b834/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e4cf_9abf_b834_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e4cf_9abf_b834_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e4cf_9abf_b834/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e4cf_9abf_b834.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e4cf_9abf_b834&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e4cf_9abf_b834"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f913_e9aa_00f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f913_e9aa_00f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f913_e9aa_00f3/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f913_e9aa_00f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f913_e9aa_00f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f913_e9aa_00f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f913_e9aa_00f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f913_e9aa_00f3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f913_e9aa_00f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9c8_dba2_5720", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9c8_dba2_5720.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e9c8_dba2_5720/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e9c8_dba2_5720_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e9c8_dba2_5720_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e9c8_dba2_5720/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e9c8_dba2_5720.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e9c8_dba2_5720&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e9c8_dba2_5720"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_75ce_ca82_4c12", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_75ce_ca82_4c12.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_75ce_ca82_4c12/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_75ce_ca82_4c12_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_75ce_ca82_4c12_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_75ce_ca82_4c12/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_75ce_ca82_4c12.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_75ce_ca82_4c12&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_75ce_ca82_4c12"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d53_feba_5b14", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d53_feba_5b14.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d53_feba_5b14/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d53_feba_5b14_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d53_feba_5b14_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d53_feba_5b14/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d53_feba_5b14.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d53_feba_5b14&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d53_feba_5b14"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb97_1a29_a44c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb97_1a29_a44c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eb97_1a29_a44c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eb97_1a29_a44c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eb97_1a29_a44c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb97_1a29_a44c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb97_1a29_a44c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb97_1a29_a44c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eb97_1a29_a44c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0551_955e_b323", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0551_955e_b323.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0551_955e_b323/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0551_955e_b323_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0551_955e_b323_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0551_955e_b323/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0551_955e_b323.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0551_955e_b323&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0551_955e_b323"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8a0_292d_895f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8a0_292d_895f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d8a0_292d_895f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, sst.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d8a0_292d_895f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d8a0_292d_895f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d8a0_292d_895f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d8a0_292d_895f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d8a0_292d_895f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d8a0_292d_895f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50e4_1b3d_f6e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50e4_1b3d_f6e4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_50e4_1b3d_f6e4/request", "", "public", "Top Dataset, std, uairt.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_50e4_1b3d_f6e4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_50e4_1b3d_f6e4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50e4_1b3d_f6e4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50e4_1b3d_f6e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50e4_1b3d_f6e4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_50e4_1b3d_f6e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7360_50f3_de7e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7360_50f3_de7e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7360_50f3_de7e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7360_50f3_de7e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7360_50f3_de7e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7360_50f3_de7e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7360_50f3_de7e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7360_50f3_de7e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7360_50f3_de7e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a0f_3077_f256", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8a0f_3077_f256.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8a0f_3077_f256/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8a0f_3077_f256_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8a0f_3077_f256_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8a0f_3077_f256/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8a0f_3077_f256.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8a0f_3077_f256&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8a0f_3077_f256"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fc9_d632_7c54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fc9_d632_7c54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2fc9_d632_7c54/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2fc9_d632_7c54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2fc9_d632_7c54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2fc9_d632_7c54/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2fc9_d632_7c54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2fc9_d632_7c54&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2fc9_d632_7c54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e536_80f8_c85e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e536_80f8_c85e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e536_80f8_c85e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e536_80f8_c85e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e536_80f8_c85e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e536_80f8_c85e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e536_80f8_c85e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e536_80f8_c85e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e536_80f8_c85e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5ed_c394_b0bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5ed_c394_b0bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f5ed_c394_b0bf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f5ed_c394_b0bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f5ed_c394_b0bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f5ed_c394_b0bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f5ed_c394_b0bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f5ed_c394_b0bf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f5ed_c394_b0bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93ba_e052_c3c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93ba_e052_c3c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_93ba_e052_c3c1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_93ba_e052_c3c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_93ba_e052_c3c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_93ba_e052_c3c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_93ba_e052_c3c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_93ba_e052_c3c1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_93ba_e052_c3c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff60_15d3_3ec8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff60_15d3_3ec8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff60_15d3_3ec8/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff60_15d3_3ec8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff60_15d3_3ec8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff60_15d3_3ec8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff60_15d3_3ec8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff60_15d3_3ec8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ff60_15d3_3ec8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2861_c0a4_4c5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2861_c0a4_4c5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2861_c0a4_4c5f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2861_c0a4_4c5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2861_c0a4_4c5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2861_c0a4_4c5f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2861_c0a4_4c5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2861_c0a4_4c5f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2861_c0a4_4c5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1d0_c851_6ee7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1d0_c851_6ee7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b1d0_c851_6ee7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uairt.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b1d0_c851_6ee7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b1d0_c851_6ee7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b1d0_c851_6ee7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b1d0_c851_6ee7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b1d0_c851_6ee7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b1d0_c851_6ee7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc9c_18b2_a11a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc9c_18b2_a11a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc9c_18b2_a11a/request", "", "public", "Top Dataset, std, ulflx.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc9c_18b2_a11a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc9c_18b2_a11a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc9c_18b2_a11a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc9c_18b2_a11a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc9c_18b2_a11a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cc9c_18b2_a11a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ba8_8961_9aed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ba8_8961_9aed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ba8_8961_9aed/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ba8_8961_9aed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ba8_8961_9aed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ba8_8961_9aed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ba8_8961_9aed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ba8_8961_9aed&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7ba8_8961_9aed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ead3_529a_24ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ead3_529a_24ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ead3_529a_24ae/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ead3_529a_24ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ead3_529a_24ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ead3_529a_24ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ead3_529a_24ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ead3_529a_24ae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ead3_529a_24ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81e1_87dc_b3ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81e1_87dc_b3ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_81e1_87dc_b3ec/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_81e1_87dc_b3ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_81e1_87dc_b3ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_81e1_87dc_b3ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_81e1_87dc_b3ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_81e1_87dc_b3ec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_81e1_87dc_b3ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b1e_93c2_d757", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b1e_93c2_d757.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4b1e_93c2_d757/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4b1e_93c2_d757_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4b1e_93c2_d757_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4b1e_93c2_d757/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4b1e_93c2_d757.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4b1e_93c2_d757&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4b1e_93c2_d757"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4720_3f35_735b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4720_3f35_735b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4720_3f35_735b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4720_3f35_735b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4720_3f35_735b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4720_3f35_735b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4720_3f35_735b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4720_3f35_735b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4720_3f35_735b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83ac_e387_c8bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_83ac_e387_c8bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_83ac_e387_c8bf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_83ac_e387_c8bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_83ac_e387_c8bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_83ac_e387_c8bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_83ac_e387_c8bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_83ac_e387_c8bf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_83ac_e387_c8bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f909_1a28_90bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f909_1a28_90bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f909_1a28_90bf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f909_1a28_90bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f909_1a28_90bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f909_1a28_90bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f909_1a28_90bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f909_1a28_90bf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f909_1a28_90bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3127_ba27_8daf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3127_ba27_8daf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3127_ba27_8daf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3127_ba27_8daf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3127_ba27_8daf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3127_ba27_8daf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3127_ba27_8daf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3127_ba27_8daf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3127_ba27_8daf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f70_b3f9_1da7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f70_b3f9_1da7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f70_b3f9_1da7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, ulflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f70_b3f9_1da7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f70_b3f9_1da7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f70_b3f9_1da7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f70_b3f9_1da7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f70_b3f9_1da7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8f70_b3f9_1da7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14d9_6450_0a1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14d9_6450_0a1e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_14d9_6450_0a1e/request", "", "public", "Top Dataset, std, upstr.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_14d9_6450_0a1e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_14d9_6450_0a1e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_14d9_6450_0a1e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_14d9_6450_0a1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_14d9_6450_0a1e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_14d9_6450_0a1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bcc_7ee6_c71e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bcc_7ee6_c71e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9bcc_7ee6_c71e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9bcc_7ee6_c71e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9bcc_7ee6_c71e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9bcc_7ee6_c71e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9bcc_7ee6_c71e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9bcc_7ee6_c71e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9bcc_7ee6_c71e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_759f_a4e7_2ab9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_759f_a4e7_2ab9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_759f_a4e7_2ab9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_759f_a4e7_2ab9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_759f_a4e7_2ab9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_759f_a4e7_2ab9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_759f_a4e7_2ab9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_759f_a4e7_2ab9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_759f_a4e7_2ab9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3d7_bd9c_99cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3d7_bd9c_99cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f3d7_bd9c_99cf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f3d7_bd9c_99cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f3d7_bd9c_99cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f3d7_bd9c_99cf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f3d7_bd9c_99cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f3d7_bd9c_99cf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f3d7_bd9c_99cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b45_4075_bf5d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b45_4075_bf5d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9b45_4075_bf5d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9b45_4075_bf5d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9b45_4075_bf5d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9b45_4075_bf5d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9b45_4075_bf5d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9b45_4075_bf5d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9b45_4075_bf5d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_396e_fb9c_b5df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_396e_fb9c_b5df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_396e_fb9c_b5df/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_396e_fb9c_b5df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_396e_fb9c_b5df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_396e_fb9c_b5df/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_396e_fb9c_b5df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_396e_fb9c_b5df&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_396e_fb9c_b5df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01db_e260_cc77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01db_e260_cc77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_01db_e260_cc77/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_01db_e260_cc77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_01db_e260_cc77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_01db_e260_cc77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_01db_e260_cc77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_01db_e260_cc77&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_01db_e260_cc77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e19_97fc_89a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e19_97fc_89a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1e19_97fc_89a2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1e19_97fc_89a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1e19_97fc_89a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1e19_97fc_89a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1e19_97fc_89a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1e19_97fc_89a2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1e19_97fc_89a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85cd_8259_1279", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85cd_8259_1279.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_85cd_8259_1279/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_85cd_8259_1279_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_85cd_8259_1279_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85cd_8259_1279/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85cd_8259_1279.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85cd_8259_1279&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_85cd_8259_1279"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dccc_0bea_7258", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dccc_0bea_7258.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dccc_0bea_7258/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, upstr.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dccc_0bea_7258_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dccc_0bea_7258_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dccc_0bea_7258/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dccc_0bea_7258.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dccc_0bea_7258&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dccc_0bea_7258"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc04_2b3d_92e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc04_2b3d_92e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc04_2b3d_92e1/request", "", "public", "Top Dataset, std, uspeh.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc04_2b3d_92e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc04_2b3d_92e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc04_2b3d_92e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc04_2b3d_92e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc04_2b3d_92e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dc04_2b3d_92e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd05_b4e9_7702", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dd05_b4e9_7702.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dd05_b4e9_7702/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dd05_b4e9_7702_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dd05_b4e9_7702_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dd05_b4e9_7702/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dd05_b4e9_7702.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dd05_b4e9_7702&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dd05_b4e9_7702"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e566_b310_9dab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e566_b310_9dab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e566_b310_9dab/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e566_b310_9dab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e566_b310_9dab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e566_b310_9dab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e566_b310_9dab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e566_b310_9dab&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e566_b310_9dab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cd8_f6f1_acb1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cd8_f6f1_acb1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9cd8_f6f1_acb1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9cd8_f6f1_acb1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9cd8_f6f1_acb1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9cd8_f6f1_acb1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9cd8_f6f1_acb1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9cd8_f6f1_acb1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9cd8_f6f1_acb1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34ad_b531_7b53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34ad_b531_7b53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_34ad_b531_7b53/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_34ad_b531_7b53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_34ad_b531_7b53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_34ad_b531_7b53/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_34ad_b531_7b53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_34ad_b531_7b53&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_34ad_b531_7b53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff2d_08d3_6a3c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff2d_08d3_6a3c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff2d_08d3_6a3c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff2d_08d3_6a3c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff2d_08d3_6a3c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff2d_08d3_6a3c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff2d_08d3_6a3c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff2d_08d3_6a3c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ff2d_08d3_6a3c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_847a_486c_d7e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_847a_486c_d7e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_847a_486c_d7e6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_847a_486c_d7e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_847a_486c_d7e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_847a_486c_d7e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_847a_486c_d7e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_847a_486c_d7e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_847a_486c_d7e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7b3_db62_c8a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7b3_db62_c8a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c7b3_db62_c8a0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c7b3_db62_c8a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c7b3_db62_c8a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c7b3_db62_c8a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c7b3_db62_c8a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c7b3_db62_c8a0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c7b3_db62_c8a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08d9_0719_05dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08d9_0719_05dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_08d9_0719_05dc/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_08d9_0719_05dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_08d9_0719_05dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_08d9_0719_05dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_08d9_0719_05dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_08d9_0719_05dc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_08d9_0719_05dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45c7_076f_c5af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_45c7_076f_c5af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_45c7_076f_c5af/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uspeh.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_45c7_076f_c5af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_45c7_076f_c5af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_45c7_076f_c5af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_45c7_076f_c5af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_45c7_076f_c5af&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_45c7_076f_c5af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86d2_179a_a519", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86d2_179a_a519.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_86d2_179a_a519/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86d2_179a_a519_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86d2_179a_a519_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86d2_179a_a519/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86d2_179a_a519.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86d2_179a_a519&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_86d2_179a_a519"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1902_d36c_6ea2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1902_d36c_6ea2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1902_d36c_6ea2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1902_d36c_6ea2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1902_d36c_6ea2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1902_d36c_6ea2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1902_d36c_6ea2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1902_d36c_6ea2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1902_d36c_6ea2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_195e_e8da_3a6c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_195e_e8da_3a6c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_195e_e8da_3a6c/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_195e_e8da_3a6c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_195e_e8da_3a6c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_195e_e8da_3a6c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_195e_e8da_3a6c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_195e_e8da_3a6c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_195e_e8da_3a6c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4966_e263_e189", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4966_e263_e189.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4966_e263_e189/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4966_e263_e189_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4966_e263_e189_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4966_e263_e189/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4966_e263_e189.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4966_e263_e189&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4966_e263_e189"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a904_b238_5528", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a904_b238_5528.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a904_b238_5528/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a904_b238_5528_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a904_b238_5528_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a904_b238_5528/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a904_b238_5528.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a904_b238_5528&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a904_b238_5528"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d06_8c82_17e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d06_8c82_17e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d06_8c82_17e6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d06_8c82_17e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d06_8c82_17e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d06_8c82_17e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d06_8c82_17e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d06_8c82_17e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4d06_8c82_17e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa48_288e_2413", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa48_288e_2413.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa48_288e_2413/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa48_288e_2413_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa48_288e_2413_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa48_288e_2413/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa48_288e_2413.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa48_288e_2413&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aa48_288e_2413"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_928e_5298_5726", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_928e_5298_5726.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_928e_5298_5726/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_928e_5298_5726_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_928e_5298_5726_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_928e_5298_5726/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_928e_5298_5726.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_928e_5298_5726&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_928e_5298_5726"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89ad_de37_46cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89ad_de37_46cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_89ad_de37_46cb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_89ad_de37_46cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_89ad_de37_46cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_89ad_de37_46cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_89ad_de37_46cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_89ad_de37_46cb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_89ad_de37_46cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c3b_04ba_8d84", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c3b_04ba_8d84.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c3b_04ba_8d84/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, uwnd.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c3b_04ba_8d84_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c3b_04ba_8d84_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c3b_04ba_8d84/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c3b_04ba_8d84.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c3b_04ba_8d84&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5c3b_04ba_8d84"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c50_c799_3276", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c50_c799_3276.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3c50_c799_3276/request", "", "public", "Top Dataset, std, vairt.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3c50_c799_3276_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3c50_c799_3276_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c50_c799_3276/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c50_c799_3276.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c50_c799_3276&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3c50_c799_3276"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2103_cf90_c2aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2103_cf90_c2aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2103_cf90_c2aa/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2103_cf90_c2aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2103_cf90_c2aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2103_cf90_c2aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2103_cf90_c2aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2103_cf90_c2aa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2103_cf90_c2aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cc4_1a23_8c11", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cc4_1a23_8c11.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1cc4_1a23_8c11/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1cc4_1a23_8c11_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1cc4_1a23_8c11_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1cc4_1a23_8c11/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1cc4_1a23_8c11.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1cc4_1a23_8c11&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1cc4_1a23_8c11"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_011d_10c8_7876", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_011d_10c8_7876.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_011d_10c8_7876/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_011d_10c8_7876_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_011d_10c8_7876_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_011d_10c8_7876/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_011d_10c8_7876.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_011d_10c8_7876&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_011d_10c8_7876"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06dd_dc9e_f718", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06dd_dc9e_f718.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_06dd_dc9e_f718/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_06dd_dc9e_f718_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_06dd_dc9e_f718_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_06dd_dc9e_f718/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_06dd_dc9e_f718.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_06dd_dc9e_f718&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_06dd_dc9e_f718"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91ac_208c_ab0a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91ac_208c_ab0a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_91ac_208c_ab0a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_91ac_208c_ab0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_91ac_208c_ab0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_91ac_208c_ab0a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_91ac_208c_ab0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_91ac_208c_ab0a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_91ac_208c_ab0a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb94_a641_8cf0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb94_a641_8cf0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb94_a641_8cf0/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb94_a641_8cf0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb94_a641_8cf0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb94_a641_8cf0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb94_a641_8cf0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb94_a641_8cf0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cb94_a641_8cf0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8c0_f25e_accd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8c0_f25e_accd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f8c0_f25e_accd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f8c0_f25e_accd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f8c0_f25e_accd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f8c0_f25e_accd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f8c0_f25e_accd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f8c0_f25e_accd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f8c0_f25e_accd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f33_7dcd_5094", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f33_7dcd_5094.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f33_7dcd_5094/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f33_7dcd_5094_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f33_7dcd_5094_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f33_7dcd_5094/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f33_7dcd_5094.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f33_7dcd_5094&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9f33_7dcd_5094"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a07e_88e6_9df5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a07e_88e6_9df5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a07e_88e6_9df5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vairt.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a07e_88e6_9df5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a07e_88e6_9df5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a07e_88e6_9df5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a07e_88e6_9df5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a07e_88e6_9df5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a07e_88e6_9df5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ad3_5ba0_4850", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ad3_5ba0_4850.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2ad3_5ba0_4850/request", "", "public", "Top Dataset, std, vlflx.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2ad3_5ba0_4850_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2ad3_5ba0_4850_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2ad3_5ba0_4850/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2ad3_5ba0_4850.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2ad3_5ba0_4850&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2ad3_5ba0_4850"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8f3_ed86_78f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d8f3_ed86_78f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d8f3_ed86_78f2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d8f3_ed86_78f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d8f3_ed86_78f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d8f3_ed86_78f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d8f3_ed86_78f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d8f3_ed86_78f2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d8f3_ed86_78f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8125_9d62_03e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8125_9d62_03e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8125_9d62_03e1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8125_9d62_03e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8125_9d62_03e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8125_9d62_03e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8125_9d62_03e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8125_9d62_03e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8125_9d62_03e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3c2_6ff0_f185", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3c2_6ff0_f185.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c3c2_6ff0_f185/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c3c2_6ff0_f185_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c3c2_6ff0_f185_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c3c2_6ff0_f185/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c3c2_6ff0_f185.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c3c2_6ff0_f185&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c3c2_6ff0_f185"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b41a_b09e_34b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b41a_b09e_34b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b41a_b09e_34b7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b41a_b09e_34b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b41a_b09e_34b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b41a_b09e_34b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b41a_b09e_34b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b41a_b09e_34b7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b41a_b09e_34b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00f4_d3ef_25d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00f4_d3ef_25d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_00f4_d3ef_25d4/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_00f4_d3ef_25d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_00f4_d3ef_25d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_00f4_d3ef_25d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_00f4_d3ef_25d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_00f4_d3ef_25d4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_00f4_d3ef_25d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d771_9eec_710f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d771_9eec_710f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d771_9eec_710f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d771_9eec_710f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d771_9eec_710f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d771_9eec_710f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d771_9eec_710f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d771_9eec_710f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d771_9eec_710f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58f8_a9f5_9aee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58f8_a9f5_9aee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_58f8_a9f5_9aee/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_58f8_a9f5_9aee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_58f8_a9f5_9aee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_58f8_a9f5_9aee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_58f8_a9f5_9aee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_58f8_a9f5_9aee&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_58f8_a9f5_9aee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03c2_43c0_27a9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03c2_43c0_27a9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03c2_43c0_27a9/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03c2_43c0_27a9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03c2_43c0_27a9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03c2_43c0_27a9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03c2_43c0_27a9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03c2_43c0_27a9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_03c2_43c0_27a9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85a1_a457_bfe6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85a1_a457_bfe6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_85a1_a457_bfe6/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vlflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_85a1_a457_bfe6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_85a1_a457_bfe6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85a1_a457_bfe6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85a1_a457_bfe6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85a1_a457_bfe6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_85a1_a457_bfe6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1bf_221e_267a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1bf_221e_267a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d1bf_221e_267a/request", "", "public", "Top Dataset, std, vpstr.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d1bf_221e_267a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d1bf_221e_267a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d1bf_221e_267a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d1bf_221e_267a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d1bf_221e_267a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d1bf_221e_267a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bbb1_edfd_2a6d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bbb1_edfd_2a6d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bbb1_edfd_2a6d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bbb1_edfd_2a6d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bbb1_edfd_2a6d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bbb1_edfd_2a6d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bbb1_edfd_2a6d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bbb1_edfd_2a6d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bbb1_edfd_2a6d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfd1_3f97_4f2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfd1_3f97_4f2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bfd1_3f97_4f2d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bfd1_3f97_4f2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bfd1_3f97_4f2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bfd1_3f97_4f2d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bfd1_3f97_4f2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bfd1_3f97_4f2d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bfd1_3f97_4f2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccb1_955e_65ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ccb1_955e_65ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ccb1_955e_65ce/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ccb1_955e_65ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ccb1_955e_65ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ccb1_955e_65ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ccb1_955e_65ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ccb1_955e_65ce&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ccb1_955e_65ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54f7_b84f_a608", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54f7_b84f_a608.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54f7_b84f_a608/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54f7_b84f_a608_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54f7_b84f_a608_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54f7_b84f_a608/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54f7_b84f_a608.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54f7_b84f_a608&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_54f7_b84f_a608"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efa9_c0db_1ecf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_efa9_c0db_1ecf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_efa9_c0db_1ecf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_efa9_c0db_1ecf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_efa9_c0db_1ecf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_efa9_c0db_1ecf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_efa9_c0db_1ecf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_efa9_c0db_1ecf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_efa9_c0db_1ecf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee6d_0990_484a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ee6d_0990_484a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ee6d_0990_484a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ee6d_0990_484a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ee6d_0990_484a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ee6d_0990_484a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ee6d_0990_484a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ee6d_0990_484a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ee6d_0990_484a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ffe_eaf6_45a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ffe_eaf6_45a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ffe_eaf6_45a2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ffe_eaf6_45a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ffe_eaf6_45a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ffe_eaf6_45a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ffe_eaf6_45a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ffe_eaf6_45a2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3ffe_eaf6_45a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c6c0_a586_0fb7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c6c0_a586_0fb7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c6c0_a586_0fb7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c6c0_a586_0fb7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c6c0_a586_0fb7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c6c0_a586_0fb7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c6c0_a586_0fb7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c6c0_a586_0fb7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c6c0_a586_0fb7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec45_3225_8906", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec45_3225_8906.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ec45_3225_8906/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vpstr.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ec45_3225_8906_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ec45_3225_8906_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ec45_3225_8906/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ec45_3225_8906.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ec45_3225_8906&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ec45_3225_8906"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6673_ac7e_4549", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6673_ac7e_4549.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6673_ac7e_4549/request", "", "public", "Top Dataset, std, vspeh.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6673_ac7e_4549_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6673_ac7e_4549_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6673_ac7e_4549/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6673_ac7e_4549.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6673_ac7e_4549&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6673_ac7e_4549"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf6a_07a8_f9c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf6a_07a8_f9c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf6a_07a8_f9c1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf6a_07a8_f9c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf6a_07a8_f9c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf6a_07a8_f9c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf6a_07a8_f9c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf6a_07a8_f9c1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cf6a_07a8_f9c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4588_81f1_aa2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4588_81f1_aa2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4588_81f1_aa2f/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4588_81f1_aa2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4588_81f1_aa2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4588_81f1_aa2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4588_81f1_aa2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4588_81f1_aa2f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4588_81f1_aa2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4eac_7aa3_6eaf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4eac_7aa3_6eaf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4eac_7aa3_6eaf/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4eac_7aa3_6eaf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4eac_7aa3_6eaf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4eac_7aa3_6eaf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4eac_7aa3_6eaf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4eac_7aa3_6eaf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4eac_7aa3_6eaf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2979_b42b_d084", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2979_b42b_d084.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2979_b42b_d084/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2979_b42b_d084_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2979_b42b_d084_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2979_b42b_d084/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2979_b42b_d084.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2979_b42b_d084&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2979_b42b_d084"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30b3_e6bd_f0ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30b3_e6bd_f0ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_30b3_e6bd_f0ae/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_30b3_e6bd_f0ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_30b3_e6bd_f0ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_30b3_e6bd_f0ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_30b3_e6bd_f0ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_30b3_e6bd_f0ae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_30b3_e6bd_f0ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d3d_dd03_db58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d3d_dd03_db58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0d3d_dd03_db58/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0d3d_dd03_db58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0d3d_dd03_db58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0d3d_dd03_db58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0d3d_dd03_db58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0d3d_dd03_db58&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0d3d_dd03_db58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df15_27a1_6da1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df15_27a1_6da1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_df15_27a1_6da1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_df15_27a1_6da1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_df15_27a1_6da1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_df15_27a1_6da1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_df15_27a1_6da1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_df15_27a1_6da1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_df15_27a1_6da1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a50_6552_adbd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a50_6552_adbd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a50_6552_adbd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a50_6552_adbd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a50_6552_adbd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a50_6552_adbd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a50_6552_adbd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a50_6552_adbd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6a50_6552_adbd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db4e_abe4_b099", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db4e_abe4_b099.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db4e_abe4_b099/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vspeh.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db4e_abe4_b099_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db4e_abe4_b099_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db4e_abe4_b099/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db4e_abe4_b099.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db4e_abe4_b099&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_db4e_abe4_b099"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef03_7432_921d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef03_7432_921d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ef03_7432_921d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ef03_7432_921d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ef03_7432_921d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ef03_7432_921d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ef03_7432_921d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ef03_7432_921d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ef03_7432_921d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_23ce_69d3_65cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_23ce_69d3_65cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_23ce_69d3_65cb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_23ce_69d3_65cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_23ce_69d3_65cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_23ce_69d3_65cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_23ce_69d3_65cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_23ce_69d3_65cb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_23ce_69d3_65cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9134_6af7_cdcd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9134_6af7_cdcd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9134_6af7_cdcd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9134_6af7_cdcd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9134_6af7_cdcd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9134_6af7_cdcd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9134_6af7_cdcd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9134_6af7_cdcd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9134_6af7_cdcd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ff5_1748_e1d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ff5_1748_e1d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ff5_1748_e1d3/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ff5_1748_e1d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ff5_1748_e1d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ff5_1748_e1d3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ff5_1748_e1d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ff5_1748_e1d3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4ff5_1748_e1d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1b4_807d_6ab2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b1b4_807d_6ab2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b1b4_807d_6ab2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b1b4_807d_6ab2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b1b4_807d_6ab2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b1b4_807d_6ab2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b1b4_807d_6ab2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b1b4_807d_6ab2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b1b4_807d_6ab2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4def_02da_3d00", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4def_02da_3d00.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4def_02da_3d00/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4def_02da_3d00_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4def_02da_3d00_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4def_02da_3d00/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4def_02da_3d00.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4def_02da_3d00&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4def_02da_3d00"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c99_29a7_8a23", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c99_29a7_8a23.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c99_29a7_8a23/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c99_29a7_8a23_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c99_29a7_8a23_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c99_29a7_8a23/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c99_29a7_8a23.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c99_29a7_8a23&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0c99_29a7_8a23"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5fd_c11b_b8fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5fd_c11b_b8fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5fd_c11b_b8fd/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5fd_c11b_b8fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5fd_c11b_b8fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5fd_c11b_b8fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5fd_c11b_b8fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5fd_c11b_b8fd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a5fd_c11b_b8fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc3a_eb0c_b1ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc3a_eb0c_b1ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc3a_eb0c_b1ec/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc3a_eb0c_b1ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc3a_eb0c_b1ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc3a_eb0c_b1ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc3a_eb0c_b1ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc3a_eb0c_b1ec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cc3a_eb0c_b1ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebfc_fb9d_6189", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebfc_fb9d_6189.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ebfc_fb9d_6189/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, vwnd.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, vwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ebfc_fb9d_6189_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ebfc_fb9d_6189_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ebfc_fb9d_6189/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ebfc_fb9d_6189.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ebfc_fb9d_6189&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ebfc_fb9d_6189"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aed4_5fb3_571e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aed4_5fb3_571e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aed4_5fb3_571e/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aed4_5fb3_571e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aed4_5fb3_571e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aed4_5fb3_571e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aed4_5fb3_571e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aed4_5fb3_571e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aed4_5fb3_571e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79b0_e766_ec29", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79b0_e766_ec29.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_79b0_e766_ec29/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_79b0_e766_ec29_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_79b0_e766_ec29_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_79b0_e766_ec29/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_79b0_e766_ec29.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_79b0_e766_ec29&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_79b0_e766_ec29"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0380_80c0_660b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0380_80c0_660b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0380_80c0_660b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0380_80c0_660b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0380_80c0_660b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0380_80c0_660b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0380_80c0_660b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0380_80c0_660b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0380_80c0_660b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b978_84b4_470a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b978_84b4_470a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b978_84b4_470a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b978_84b4_470a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b978_84b4_470a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b978_84b4_470a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b978_84b4_470a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b978_84b4_470a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b978_84b4_470a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddbf_488d_c9f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddbf_488d_c9f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ddbf_488d_c9f5/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ddbf_488d_c9f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ddbf_488d_c9f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ddbf_488d_c9f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ddbf_488d_c9f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ddbf_488d_c9f5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ddbf_488d_c9f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2aa_f30b_0c0d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f2aa_f30b_0c0d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f2aa_f30b_0c0d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f2aa_f30b_0c0d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f2aa_f30b_0c0d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f2aa_f30b_0c0d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f2aa_f30b_0c0d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f2aa_f30b_0c0d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f2aa_f30b_0c0d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c992_1b9b_03eb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c992_1b9b_03eb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c992_1b9b_03eb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c992_1b9b_03eb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c992_1b9b_03eb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c992_1b9b_03eb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c992_1b9b_03eb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c992_1b9b_03eb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c992_1b9b_03eb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ee0_70cc_c2f7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ee0_70cc_c2f7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ee0_70cc_c2f7/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ee0_70cc_c2f7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ee0_70cc_c2f7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ee0_70cc_c2f7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ee0_70cc_c2f7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ee0_70cc_c2f7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7ee0_70cc_c2f7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5a4_1658_8b7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5a4_1658_8b7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5a4_1658_8b7b/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5a4_1658_8b7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5a4_1658_8b7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5a4_1658_8b7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5a4_1658_8b7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5a4_1658_8b7b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c5a4_1658_8b7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d200_e90c_aceb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d200_e90c_aceb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d200_e90c_aceb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d200_e90c_aceb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d200_e90c_aceb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d200_e90c_aceb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d200_e90c_aceb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d200_e90c_aceb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d200_e90c_aceb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8c5_4ff6_4794", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a8c5_4ff6_4794.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a8c5_4ff6_4794/request", "", "public", "Top Dataset, std, wspd3.day fraction (ICOADS 1-degree Equatorial Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a8c5_4ff6_4794_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a8c5_4ff6_4794_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a8c5_4ff6_4794/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a8c5_4ff6_4794.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a8c5_4ff6_4794&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a8c5_4ff6_4794"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6ae_2efd_d0ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6ae_2efd_d0ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f6ae_2efd_d0ea/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f6ae_2efd_d0ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f6ae_2efd_d0ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f6ae_2efd_d0ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f6ae_2efd_d0ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f6ae_2efd_d0ea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f6ae_2efd_d0ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f9a_e7f4_f0d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f9a_e7f4_f0d2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f9a_e7f4_f0d2/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f9a_e7f4_f0d2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f9a_e7f4_f0d2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f9a_e7f4_f0d2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f9a_e7f4_f0d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f9a_e7f4_f0d2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2f9a_e7f4_f0d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00b7_4bf0_4236", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00b7_4bf0_4236.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_00b7_4bf0_4236/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_00b7_4bf0_4236_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_00b7_4bf0_4236_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_00b7_4bf0_4236/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_00b7_4bf0_4236.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_00b7_4bf0_4236&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_00b7_4bf0_4236"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab9a_fb18_725a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab9a_fb18_725a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab9a_fb18_725a/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab9a_fb18_725a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab9a_fb18_725a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab9a_fb18_725a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab9a_fb18_725a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab9a_fb18_725a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ab9a_fb18_725a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c74_c965_4d19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c74_c965_4d19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c74_c965_4d19/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c74_c965_4d19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c74_c965_4d19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c74_c965_4d19/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c74_c965_4d19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c74_c965_4d19&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5c74_c965_4d19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c83_03dd_6389", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c83_03dd_6389.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c83_03dd_6389/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 1st Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c83_03dd_6389_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c83_03dd_6389_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c83_03dd_6389/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c83_03dd_6389.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c83_03dd_6389&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5c83_03dd_6389"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d384_3b56_de4d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d384_3b56_de4d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d384_3b56_de4d/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 3rd Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d384_3b56_de4d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d384_3b56_de4d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d384_3b56_de4d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d384_3b56_de4d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d384_3b56_de4d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d384_3b56_de4d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_064e_2410_cfc1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_064e_2410_cfc1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_064e_2410_cfc1/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly 5th Sextile at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_064e_2410_cfc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_064e_2410_cfc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_064e_2410_cfc1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_064e_2410_cfc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_064e_2410_cfc1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_064e_2410_cfc1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb93_4a1f_1adb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb93_4a1f_1adb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb93_4a1f_1adb/request", "", "public", "ICOADS 1-degree Equatorial Standard (Top Dataset, std, wspd3.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Standard (Top Dataset, std, wspd3.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Standard Deviation at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb93_4a1f_1adb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb93_4a1f_1adb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb93_4a1f_1adb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb93_4a1f_1adb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb93_4a1f_1adb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fb93_4a1f_1adb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e544_3a94_b69e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e544_3a94_b69e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e544_3a94_b69e/request", "", "public", "Top Dataset, enh, air.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e544_3a94_b69e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e544_3a94_b69e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e544_3a94_b69e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e544_3a94_b69e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e544_3a94_b69e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e544_3a94_b69e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2289_bad6_53f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2289_bad6_53f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2289_bad6_53f1/request", "", "public", "Top Dataset, enh, air.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2289_bad6_53f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2289_bad6_53f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2289_bad6_53f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2289_bad6_53f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2289_bad6_53f1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2289_bad6_53f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_695a_2adf_ab4a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_695a_2adf_ab4a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_695a_2adf_ab4a/request", "", "public", "Top Dataset, enh, air.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_695a_2adf_ab4a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_695a_2adf_ab4a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_695a_2adf_ab4a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_695a_2adf_ab4a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_695a_2adf_ab4a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_695a_2adf_ab4a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3212_1e70_011e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3212_1e70_011e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3212_1e70_011e/request", "", "public", "Top Dataset, enh, air.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3212_1e70_011e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3212_1e70_011e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3212_1e70_011e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3212_1e70_011e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3212_1e70_011e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3212_1e70_011e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f140_79fd_8774", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f140_79fd_8774.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f140_79fd_8774/request", "", "public", "Top Dataset, enh, air.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f140_79fd_8774_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f140_79fd_8774_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f140_79fd_8774/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f140_79fd_8774.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f140_79fd_8774&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f140_79fd_8774"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f94e_4297_a749", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f94e_4297_a749.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f94e_4297_a749/request", "", "public", "Top Dataset, enh, air.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f94e_4297_a749_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f94e_4297_a749_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f94e_4297_a749/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f94e_4297_a749.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f94e_4297_a749&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f94e_4297_a749"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9aa8_d6f1_552d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9aa8_d6f1_552d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9aa8_d6f1_552d/request", "", "public", "Top Dataset, enh, air.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9aa8_d6f1_552d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9aa8_d6f1_552d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9aa8_d6f1_552d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9aa8_d6f1_552d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9aa8_d6f1_552d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9aa8_d6f1_552d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14ad_13ed_3e2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14ad_13ed_3e2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_14ad_13ed_3e2d/request", "", "public", "Top Dataset, enh, air.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_14ad_13ed_3e2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_14ad_13ed_3e2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_14ad_13ed_3e2d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_14ad_13ed_3e2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_14ad_13ed_3e2d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_14ad_13ed_3e2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cac5_f5a5_0e57", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cac5_f5a5_0e57.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cac5_f5a5_0e57/request", "", "public", "Top Dataset, enh, air.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cac5_f5a5_0e57_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cac5_f5a5_0e57_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cac5_f5a5_0e57/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cac5_f5a5_0e57.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cac5_f5a5_0e57&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cac5_f5a5_0e57"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfa4_69c6_a3b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dfa4_69c6_a3b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dfa4_69c6_a3b0/request", "", "public", "Top Dataset, enh, air.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dfa4_69c6_a3b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dfa4_69c6_a3b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dfa4_69c6_a3b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dfa4_69c6_a3b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dfa4_69c6_a3b0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dfa4_69c6_a3b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6279_8f97_0724", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6279_8f97_0724.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6279_8f97_0724/request", "", "public", "Top Dataset, enh, qsminq.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6279_8f97_0724_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6279_8f97_0724_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6279_8f97_0724/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6279_8f97_0724.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6279_8f97_0724&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6279_8f97_0724"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c13e_aac0_469f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c13e_aac0_469f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c13e_aac0_469f/request", "", "public", "Top Dataset, enh, qsminq.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c13e_aac0_469f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c13e_aac0_469f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c13e_aac0_469f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c13e_aac0_469f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c13e_aac0_469f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c13e_aac0_469f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a93_1c8b_d8cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a93_1c8b_d8cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a93_1c8b_d8cd/request", "", "public", "Top Dataset, enh, qsminq.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a93_1c8b_d8cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a93_1c8b_d8cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a93_1c8b_d8cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a93_1c8b_d8cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a93_1c8b_d8cd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5a93_1c8b_d8cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f224_e22d_8ad6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f224_e22d_8ad6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f224_e22d_8ad6/request", "", "public", "Top Dataset, enh, qsminq.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f224_e22d_8ad6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f224_e22d_8ad6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f224_e22d_8ad6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f224_e22d_8ad6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f224_e22d_8ad6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f224_e22d_8ad6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d93_ce7c_ac1a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d93_ce7c_ac1a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9d93_ce7c_ac1a/request", "", "public", "Top Dataset, enh, qsminq.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9d93_ce7c_ac1a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9d93_ce7c_ac1a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9d93_ce7c_ac1a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9d93_ce7c_ac1a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9d93_ce7c_ac1a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9d93_ce7c_ac1a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8865_ca89_117d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8865_ca89_117d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8865_ca89_117d/request", "", "public", "Top Dataset, enh, qsminq.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8865_ca89_117d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8865_ca89_117d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8865_ca89_117d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8865_ca89_117d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8865_ca89_117d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8865_ca89_117d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b79_4386_ee1b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b79_4386_ee1b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b79_4386_ee1b/request", "", "public", "Top Dataset, enh, qsminq.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b79_4386_ee1b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b79_4386_ee1b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b79_4386_ee1b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b79_4386_ee1b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b79_4386_ee1b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6b79_4386_ee1b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab3f_4b1f_9f1c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab3f_4b1f_9f1c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab3f_4b1f_9f1c/request", "", "public", "Top Dataset, enh, qsminq.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab3f_4b1f_9f1c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab3f_4b1f_9f1c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab3f_4b1f_9f1c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab3f_4b1f_9f1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab3f_4b1f_9f1c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ab3f_4b1f_9f1c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ea7_d548_6f07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ea7_d548_6f07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ea7_d548_6f07/request", "", "public", "Top Dataset, enh, qsminq.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ea7_d548_6f07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ea7_d548_6f07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ea7_d548_6f07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ea7_d548_6f07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ea7_d548_6f07&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8ea7_d548_6f07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03d4_86f1_cedf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03d4_86f1_cedf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03d4_86f1_cedf/request", "", "public", "Top Dataset, enh, qsminq.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03d4_86f1_cedf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03d4_86f1_cedf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03d4_86f1_cedf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03d4_86f1_cedf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03d4_86f1_cedf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_03d4_86f1_cedf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88a3_b8ea_a6f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88a3_b8ea_a6f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_88a3_b8ea_a6f3/request", "", "public", "Top Dataset, enh, smina.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_88a3_b8ea_a6f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_88a3_b8ea_a6f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_88a3_b8ea_a6f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_88a3_b8ea_a6f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_88a3_b8ea_a6f3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_88a3_b8ea_a6f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2dbe_6caa_6a1f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2dbe_6caa_6a1f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2dbe_6caa_6a1f/request", "", "public", "Top Dataset, enh, smina.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2dbe_6caa_6a1f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2dbe_6caa_6a1f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2dbe_6caa_6a1f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2dbe_6caa_6a1f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2dbe_6caa_6a1f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2dbe_6caa_6a1f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c18_d0ee_414a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c18_d0ee_414a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8c18_d0ee_414a/request", "", "public", "Top Dataset, enh, smina.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8c18_d0ee_414a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8c18_d0ee_414a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8c18_d0ee_414a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8c18_d0ee_414a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8c18_d0ee_414a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8c18_d0ee_414a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf5c_6df3_5b67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf5c_6df3_5b67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf5c_6df3_5b67/request", "", "public", "Top Dataset, enh, smina.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf5c_6df3_5b67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf5c_6df3_5b67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf5c_6df3_5b67/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf5c_6df3_5b67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf5c_6df3_5b67&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cf5c_6df3_5b67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0936_7e65_c266", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0936_7e65_c266.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0936_7e65_c266/request", "", "public", "Top Dataset, enh, smina.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0936_7e65_c266_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0936_7e65_c266_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0936_7e65_c266/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0936_7e65_c266.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0936_7e65_c266&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0936_7e65_c266"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ed8_b63b_e53f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ed8_b63b_e53f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ed8_b63b_e53f/request", "", "public", "Top Dataset, enh, smina.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ed8_b63b_e53f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ed8_b63b_e53f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ed8_b63b_e53f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ed8_b63b_e53f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ed8_b63b_e53f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4ed8_b63b_e53f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d37_a2e6_0028", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d37_a2e6_0028.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d37_a2e6_0028/request", "", "public", "Top Dataset, enh, smina.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d37_a2e6_0028_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d37_a2e6_0028_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d37_a2e6_0028/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d37_a2e6_0028.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d37_a2e6_0028&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d37_a2e6_0028"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d646_d58b_51c8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d646_d58b_51c8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d646_d58b_51c8/request", "", "public", "Top Dataset, enh, smina.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d646_d58b_51c8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d646_d58b_51c8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d646_d58b_51c8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d646_d58b_51c8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d646_d58b_51c8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d646_d58b_51c8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc00_8d86_38dd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc00_8d86_38dd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc00_8d86_38dd/request", "", "public", "Top Dataset, enh, smina.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc00_8d86_38dd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc00_8d86_38dd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc00_8d86_38dd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc00_8d86_38dd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc00_8d86_38dd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dc00_8d86_38dd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d752_c3fe_f8fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d752_c3fe_f8fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d752_c3fe_f8fe/request", "", "public", "Top Dataset, enh, smina.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d752_c3fe_f8fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d752_c3fe_f8fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d752_c3fe_f8fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d752_c3fe_f8fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d752_c3fe_f8fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d752_c3fe_f8fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be13_2c2c_483c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be13_2c2c_483c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_be13_2c2c_483c/request", "", "public", "Top Dataset, enh, sst.day fraction (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_be13_2c2c_483c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_be13_2c2c_483c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_be13_2c2c_483c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_be13_2c2c_483c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_be13_2c2c_483c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_be13_2c2c_483c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af1a_ac23_922f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af1a_ac23_922f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_af1a_ac23_922f/request", "", "public", "Top Dataset, enh, sst.mean (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_af1a_ac23_922f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_af1a_ac23_922f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_af1a_ac23_922f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_af1a_ac23_922f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_af1a_ac23_922f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_af1a_ac23_922f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c1b_5128_86fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c1b_5128_86fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6c1b_5128_86fe/request", "", "public", "Top Dataset, enh, sst.mean day (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6c1b_5128_86fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6c1b_5128_86fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6c1b_5128_86fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6c1b_5128_86fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6c1b_5128_86fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6c1b_5128_86fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_503d_aefd_364a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_503d_aefd_364a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_503d_aefd_364a/request", "", "public", "Top Dataset, enh, sst.mean lat (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_503d_aefd_364a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_503d_aefd_364a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_503d_aefd_364a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_503d_aefd_364a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_503d_aefd_364a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_503d_aefd_364a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f10c_e9b7_bc8f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f10c_e9b7_bc8f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f10c_e9b7_bc8f/request", "", "public", "Top Dataset, enh, sst.mean lon (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f10c_e9b7_bc8f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f10c_e9b7_bc8f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f10c_e9b7_bc8f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f10c_e9b7_bc8f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f10c_e9b7_bc8f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f10c_e9b7_bc8f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_928e_e4b9_900c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_928e_e4b9_900c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_928e_e4b9_900c/request", "", "public", "Top Dataset, enh, sst.nobs (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_928e_e4b9_900c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_928e_e4b9_900c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_928e_e4b9_900c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_928e_e4b9_900c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_928e_e4b9_900c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_928e_e4b9_900c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e747_f61c_3eb4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e747_f61c_3eb4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e747_f61c_3eb4/request", "", "public", "Top Dataset, enh, sst.sextile1 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e747_f61c_3eb4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e747_f61c_3eb4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e747_f61c_3eb4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e747_f61c_3eb4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e747_f61c_3eb4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e747_f61c_3eb4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e6f_eebb_2deb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e6f_eebb_2deb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7e6f_eebb_2deb/request", "", "public", "Top Dataset, enh, sst.sextile3 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7e6f_eebb_2deb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7e6f_eebb_2deb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e6f_eebb_2deb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e6f_eebb_2deb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e6f_eebb_2deb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7e6f_eebb_2deb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_11ef_2a11_e62c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_11ef_2a11_e62c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_11ef_2a11_e62c/request", "", "public", "Top Dataset, enh, sst.sextile5 (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_11ef_2a11_e62c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_11ef_2a11_e62c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_11ef_2a11_e62c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_11ef_2a11_e62c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_11ef_2a11_e62c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_11ef_2a11_e62c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ebc_f25d_2bd0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ebc_f25d_2bd0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ebc_f25d_2bd0/request", "", "public", "Top Dataset, enh, sst.stddev (ICOADS 1-degree Enhanced), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Enhanced (Top Dataset, enh, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ebc_f25d_2bd0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ebc_f25d_2bd0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ebc_f25d_2bd0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ebc_f25d_2bd0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ebc_f25d_2bd0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1ebc_f25d_2bd0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87a0_8fb3_1f7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87a0_8fb3_1f7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_87a0_8fb3_1f7b/request", "", "public", "Top Dataset, std, air.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_87a0_8fb3_1f7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_87a0_8fb3_1f7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_87a0_8fb3_1f7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_87a0_8fb3_1f7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_87a0_8fb3_1f7b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_87a0_8fb3_1f7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54c9_d804_a6e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54c9_d804_a6e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54c9_d804_a6e1/request", "", "public", "Top Dataset, std, air.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54c9_d804_a6e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54c9_d804_a6e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54c9_d804_a6e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54c9_d804_a6e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54c9_d804_a6e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_54c9_d804_a6e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_649d_54ee_de6f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_649d_54ee_de6f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_649d_54ee_de6f/request", "", "public", "Top Dataset, std, air.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_649d_54ee_de6f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_649d_54ee_de6f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_649d_54ee_de6f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_649d_54ee_de6f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_649d_54ee_de6f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_649d_54ee_de6f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b29d_c87d_393e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b29d_c87d_393e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b29d_c87d_393e/request", "", "public", "Top Dataset, std, air.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b29d_c87d_393e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b29d_c87d_393e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b29d_c87d_393e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b29d_c87d_393e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b29d_c87d_393e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b29d_c87d_393e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfe2_3fbd_c880", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfe2_3fbd_c880.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cfe2_3fbd_c880/request", "", "public", "Top Dataset, std, air.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cfe2_3fbd_c880_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cfe2_3fbd_c880_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cfe2_3fbd_c880/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cfe2_3fbd_c880.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cfe2_3fbd_c880&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cfe2_3fbd_c880"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0408_57be_ff7b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0408_57be_ff7b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0408_57be_ff7b/request", "", "public", "Top Dataset, std, air.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0408_57be_ff7b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0408_57be_ff7b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0408_57be_ff7b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0408_57be_ff7b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0408_57be_ff7b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0408_57be_ff7b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5f3_9de4_5b63", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5f3_9de4_5b63.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5f3_9de4_5b63/request", "", "public", "Top Dataset, std, air.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5f3_9de4_5b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5f3_9de4_5b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5f3_9de4_5b63/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5f3_9de4_5b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5f3_9de4_5b63&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a5f3_9de4_5b63"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf4c_8700_bb23", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf4c_8700_bb23.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf4c_8700_bb23/request", "", "public", "Top Dataset, std, air.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf4c_8700_bb23_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf4c_8700_bb23_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf4c_8700_bb23/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf4c_8700_bb23.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf4c_8700_bb23&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bf4c_8700_bb23"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f17d_22d0_af5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f17d_22d0_af5b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f17d_22d0_af5b/request", "", "public", "Top Dataset, std, air.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f17d_22d0_af5b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f17d_22d0_af5b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f17d_22d0_af5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f17d_22d0_af5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f17d_22d0_af5b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f17d_22d0_af5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13ad_3a91_72b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13ad_3a91_72b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_13ad_3a91_72b8/request", "", "public", "Top Dataset, std, air.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_13ad_3a91_72b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_13ad_3a91_72b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_13ad_3a91_72b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_13ad_3a91_72b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_13ad_3a91_72b8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_13ad_3a91_72b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9dba_e7b1_7e78", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9dba_e7b1_7e78.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9dba_e7b1_7e78/request", "", "public", "Top Dataset, std, cldc.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9dba_e7b1_7e78_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9dba_e7b1_7e78_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9dba_e7b1_7e78/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9dba_e7b1_7e78.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9dba_e7b1_7e78&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9dba_e7b1_7e78"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4751_1fc3_0b37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4751_1fc3_0b37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4751_1fc3_0b37/request", "", "public", "Top Dataset, std, cldc.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4751_1fc3_0b37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4751_1fc3_0b37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4751_1fc3_0b37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4751_1fc3_0b37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4751_1fc3_0b37&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4751_1fc3_0b37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2828_8fe4_18e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2828_8fe4_18e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2828_8fe4_18e2/request", "", "public", "Top Dataset, std, cldc.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2828_8fe4_18e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2828_8fe4_18e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2828_8fe4_18e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2828_8fe4_18e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2828_8fe4_18e2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2828_8fe4_18e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8daa_28b5_ea1b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8daa_28b5_ea1b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8daa_28b5_ea1b/request", "", "public", "Top Dataset, std, cldc.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8daa_28b5_ea1b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8daa_28b5_ea1b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8daa_28b5_ea1b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8daa_28b5_ea1b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8daa_28b5_ea1b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8daa_28b5_ea1b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4cff_85dd_b8fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4cff_85dd_b8fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4cff_85dd_b8fb/request", "", "public", "Top Dataset, std, cldc.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4cff_85dd_b8fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4cff_85dd_b8fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4cff_85dd_b8fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4cff_85dd_b8fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4cff_85dd_b8fb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4cff_85dd_b8fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f5b_089a_ee7c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f5b_089a_ee7c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f5b_089a_ee7c/request", "", "public", "Top Dataset, std, cldc.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f5b_089a_ee7c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f5b_089a_ee7c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f5b_089a_ee7c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f5b_089a_ee7c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f5b_089a_ee7c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2f5b_089a_ee7c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dba_ff89_f8ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dba_ff89_f8ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1dba_ff89_f8ca/request", "", "public", "Top Dataset, std, cldc.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1dba_ff89_f8ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1dba_ff89_f8ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1dba_ff89_f8ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1dba_ff89_f8ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1dba_ff89_f8ca&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1dba_ff89_f8ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6520_2866_91f2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6520_2866_91f2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6520_2866_91f2/request", "", "public", "Top Dataset, std, cldc.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6520_2866_91f2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6520_2866_91f2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6520_2866_91f2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6520_2866_91f2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6520_2866_91f2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6520_2866_91f2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_624f_e6ec_d97e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_624f_e6ec_d97e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_624f_e6ec_d97e/request", "", "public", "Top Dataset, std, cldc.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_624f_e6ec_d97e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_624f_e6ec_d97e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_624f_e6ec_d97e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_624f_e6ec_d97e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_624f_e6ec_d97e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_624f_e6ec_d97e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abec_23e6_fb72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abec_23e6_fb72.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_abec_23e6_fb72/request", "", "public", "Top Dataset, std, cldc.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_abec_23e6_fb72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_abec_23e6_fb72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_abec_23e6_fb72/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_abec_23e6_fb72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_abec_23e6_fb72&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_abec_23e6_fb72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d41_55ee_1324", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d41_55ee_1324.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d41_55ee_1324/request", "", "public", "Top Dataset, std, lflx.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d41_55ee_1324_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d41_55ee_1324_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d41_55ee_1324/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d41_55ee_1324.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d41_55ee_1324&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d41_55ee_1324"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79a8_b549_cfaa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_79a8_b549_cfaa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_79a8_b549_cfaa/request", "", "public", "Top Dataset, std, lflx.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_79a8_b549_cfaa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_79a8_b549_cfaa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_79a8_b549_cfaa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_79a8_b549_cfaa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_79a8_b549_cfaa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_79a8_b549_cfaa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_547c_a9ca_fa20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_547c_a9ca_fa20.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_547c_a9ca_fa20/request", "", "public", "Top Dataset, std, lflx.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_547c_a9ca_fa20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_547c_a9ca_fa20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_547c_a9ca_fa20/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_547c_a9ca_fa20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_547c_a9ca_fa20&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_547c_a9ca_fa20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2db3_b88c_c57d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2db3_b88c_c57d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2db3_b88c_c57d/request", "", "public", "Top Dataset, std, lflx.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2db3_b88c_c57d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2db3_b88c_c57d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2db3_b88c_c57d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2db3_b88c_c57d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2db3_b88c_c57d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2db3_b88c_c57d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7821_3d52_f732", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7821_3d52_f732.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7821_3d52_f732/request", "", "public", "Top Dataset, std, lflx.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7821_3d52_f732_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7821_3d52_f732_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7821_3d52_f732/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7821_3d52_f732.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7821_3d52_f732&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7821_3d52_f732"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2527_69d7_fbfa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2527_69d7_fbfa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2527_69d7_fbfa/request", "", "public", "Top Dataset, std, lflx.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2527_69d7_fbfa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2527_69d7_fbfa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2527_69d7_fbfa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2527_69d7_fbfa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2527_69d7_fbfa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2527_69d7_fbfa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24de_0c1c_e781", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24de_0c1c_e781.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_24de_0c1c_e781/request", "", "public", "Top Dataset, std, lflx.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_24de_0c1c_e781_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_24de_0c1c_e781_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_24de_0c1c_e781/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_24de_0c1c_e781.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_24de_0c1c_e781&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_24de_0c1c_e781"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa6c_4a0f_a348", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fa6c_4a0f_a348.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fa6c_4a0f_a348/request", "", "public", "Top Dataset, std, lflx.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fa6c_4a0f_a348_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fa6c_4a0f_a348_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fa6c_4a0f_a348/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fa6c_4a0f_a348.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fa6c_4a0f_a348&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fa6c_4a0f_a348"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb5b_0e91_4f03", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb5b_0e91_4f03.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bb5b_0e91_4f03/request", "", "public", "Top Dataset, std, lflx.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bb5b_0e91_4f03_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bb5b_0e91_4f03_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bb5b_0e91_4f03/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bb5b_0e91_4f03.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bb5b_0e91_4f03&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bb5b_0e91_4f03"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bf4_fdd7_62b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bf4_fdd7_62b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2bf4_fdd7_62b9/request", "", "public", "Top Dataset, std, lflx.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2bf4_fdd7_62b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2bf4_fdd7_62b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2bf4_fdd7_62b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2bf4_fdd7_62b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2bf4_fdd7_62b9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2bf4_fdd7_62b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56f4_10c5_e2cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_56f4_10c5_e2cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_56f4_10c5_e2cd/request", "", "public", "Top Dataset, std, qsminq.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_56f4_10c5_e2cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_56f4_10c5_e2cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_56f4_10c5_e2cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_56f4_10c5_e2cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_56f4_10c5_e2cd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_56f4_10c5_e2cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_603a_aaa2_33af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_603a_aaa2_33af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_603a_aaa2_33af/request", "", "public", "Top Dataset, std, qsminq.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_603a_aaa2_33af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_603a_aaa2_33af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_603a_aaa2_33af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_603a_aaa2_33af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_603a_aaa2_33af&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_603a_aaa2_33af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef82_52a2_322c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef82_52a2_322c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ef82_52a2_322c/request", "", "public", "Top Dataset, std, qsminq.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ef82_52a2_322c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ef82_52a2_322c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ef82_52a2_322c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ef82_52a2_322c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ef82_52a2_322c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ef82_52a2_322c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_969b_e47d_a6e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_969b_e47d_a6e4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_969b_e47d_a6e4/request", "", "public", "Top Dataset, std, qsminq.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_969b_e47d_a6e4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_969b_e47d_a6e4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_969b_e47d_a6e4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_969b_e47d_a6e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_969b_e47d_a6e4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_969b_e47d_a6e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99c3_058d_8b06", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99c3_058d_8b06.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99c3_058d_8b06/request", "", "public", "Top Dataset, std, qsminq.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99c3_058d_8b06_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99c3_058d_8b06_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99c3_058d_8b06/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99c3_058d_8b06.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99c3_058d_8b06&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_99c3_058d_8b06"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0600_4e32_9400", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0600_4e32_9400.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0600_4e32_9400/request", "", "public", "Top Dataset, std, qsminq.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0600_4e32_9400_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0600_4e32_9400_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0600_4e32_9400/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0600_4e32_9400.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0600_4e32_9400&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0600_4e32_9400"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_578e_f257_ce05", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_578e_f257_ce05.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_578e_f257_ce05/request", "", "public", "Top Dataset, std, qsminq.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_578e_f257_ce05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_578e_f257_ce05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_578e_f257_ce05/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_578e_f257_ce05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_578e_f257_ce05&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_578e_f257_ce05"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_615e_965e_85d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_615e_965e_85d1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_615e_965e_85d1/request", "", "public", "Top Dataset, std, qsminq.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_615e_965e_85d1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_615e_965e_85d1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_615e_965e_85d1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_615e_965e_85d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_615e_965e_85d1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_615e_965e_85d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_25e9_62ca_5ff6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_25e9_62ca_5ff6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_25e9_62ca_5ff6/request", "", "public", "Top Dataset, std, qsminq.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_25e9_62ca_5ff6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_25e9_62ca_5ff6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_25e9_62ca_5ff6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_25e9_62ca_5ff6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_25e9_62ca_5ff6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_25e9_62ca_5ff6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5307_bf70_cef8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5307_bf70_cef8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5307_bf70_cef8/request", "", "public", "Top Dataset, std, qsminq.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5307_bf70_cef8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5307_bf70_cef8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5307_bf70_cef8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5307_bf70_cef8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5307_bf70_cef8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5307_bf70_cef8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3ec_6e93_ac54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3ec_6e93_ac54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c3ec_6e93_ac54/request", "", "public", "Top Dataset, std, rhum.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c3ec_6e93_ac54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c3ec_6e93_ac54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c3ec_6e93_ac54/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c3ec_6e93_ac54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c3ec_6e93_ac54&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c3ec_6e93_ac54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_74b5_bafc_c697", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_74b5_bafc_c697.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_74b5_bafc_c697/request", "", "public", "Top Dataset, std, rhum.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_74b5_bafc_c697_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_74b5_bafc_c697_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_74b5_bafc_c697/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_74b5_bafc_c697.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_74b5_bafc_c697&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_74b5_bafc_c697"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0d8_9f6a_3120", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0d8_9f6a_3120.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e0d8_9f6a_3120/request", "", "public", "Top Dataset, std, rhum.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e0d8_9f6a_3120_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e0d8_9f6a_3120_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e0d8_9f6a_3120/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e0d8_9f6a_3120.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e0d8_9f6a_3120&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e0d8_9f6a_3120"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfc5_92e5_9a3a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfc5_92e5_9a3a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cfc5_92e5_9a3a/request", "", "public", "Top Dataset, std, rhum.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cfc5_92e5_9a3a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cfc5_92e5_9a3a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cfc5_92e5_9a3a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cfc5_92e5_9a3a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cfc5_92e5_9a3a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cfc5_92e5_9a3a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7da_08be_88c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c7da_08be_88c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c7da_08be_88c3/request", "", "public", "Top Dataset, std, rhum.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c7da_08be_88c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c7da_08be_88c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c7da_08be_88c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c7da_08be_88c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c7da_08be_88c3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c7da_08be_88c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de80_7287_3170", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de80_7287_3170.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_de80_7287_3170/request", "", "public", "Top Dataset, std, rhum.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_de80_7287_3170_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_de80_7287_3170_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_de80_7287_3170/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_de80_7287_3170.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_de80_7287_3170&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_de80_7287_3170"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cf4_c6b1_b084", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cf4_c6b1_b084.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1cf4_c6b1_b084/request", "", "public", "Top Dataset, std, rhum.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1cf4_c6b1_b084_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1cf4_c6b1_b084_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1cf4_c6b1_b084/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1cf4_c6b1_b084.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1cf4_c6b1_b084&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1cf4_c6b1_b084"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dda_6637_b0b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dda_6637_b0b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8dda_6637_b0b0/request", "", "public", "Top Dataset, std, rhum.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8dda_6637_b0b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8dda_6637_b0b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8dda_6637_b0b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8dda_6637_b0b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8dda_6637_b0b0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8dda_6637_b0b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_114d_d8dc_c2c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_114d_d8dc_c2c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_114d_d8dc_c2c6/request", "", "public", "Top Dataset, std, rhum.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_114d_d8dc_c2c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_114d_d8dc_c2c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_114d_d8dc_c2c6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_114d_d8dc_c2c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_114d_d8dc_c2c6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_114d_d8dc_c2c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4841_86e2_1b6b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4841_86e2_1b6b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4841_86e2_1b6b/request", "", "public", "Top Dataset, std, rhum.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4841_86e2_1b6b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4841_86e2_1b6b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4841_86e2_1b6b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4841_86e2_1b6b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4841_86e2_1b6b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4841_86e2_1b6b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e3c1_b96d_30de", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e3c1_b96d_30de.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e3c1_b96d_30de/request", "", "public", "Top Dataset, std, sflx.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e3c1_b96d_30de_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e3c1_b96d_30de_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e3c1_b96d_30de/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e3c1_b96d_30de.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e3c1_b96d_30de&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e3c1_b96d_30de"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_694c_40b4_0570", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_694c_40b4_0570.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_694c_40b4_0570/request", "", "public", "Top Dataset, std, sflx.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_694c_40b4_0570_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_694c_40b4_0570_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_694c_40b4_0570/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_694c_40b4_0570.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_694c_40b4_0570&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_694c_40b4_0570"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2250_9e63_adef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2250_9e63_adef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2250_9e63_adef/request", "", "public", "Top Dataset, std, sflx.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2250_9e63_adef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2250_9e63_adef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2250_9e63_adef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2250_9e63_adef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2250_9e63_adef&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2250_9e63_adef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae61_a6fb_05bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae61_a6fb_05bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae61_a6fb_05bb/request", "", "public", "Top Dataset, std, sflx.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae61_a6fb_05bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae61_a6fb_05bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae61_a6fb_05bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae61_a6fb_05bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae61_a6fb_05bb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ae61_a6fb_05bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a85_0487_67a5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a85_0487_67a5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a85_0487_67a5/request", "", "public", "Top Dataset, std, sflx.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a85_0487_67a5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a85_0487_67a5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a85_0487_67a5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a85_0487_67a5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a85_0487_67a5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0a85_0487_67a5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e2a_b018_dfb8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e2a_b018_dfb8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e2a_b018_dfb8/request", "", "public", "Top Dataset, std, sflx.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e2a_b018_dfb8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e2a_b018_dfb8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e2a_b018_dfb8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e2a_b018_dfb8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e2a_b018_dfb8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3e2a_b018_dfb8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eac8_6632_b1b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eac8_6632_b1b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eac8_6632_b1b5/request", "", "public", "Top Dataset, std, sflx.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eac8_6632_b1b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eac8_6632_b1b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eac8_6632_b1b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eac8_6632_b1b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eac8_6632_b1b5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eac8_6632_b1b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28f7_4da1_39fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_28f7_4da1_39fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_28f7_4da1_39fb/request", "", "public", "Top Dataset, std, sflx.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_28f7_4da1_39fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_28f7_4da1_39fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_28f7_4da1_39fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_28f7_4da1_39fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_28f7_4da1_39fb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_28f7_4da1_39fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c5f_0dac_82a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8c5f_0dac_82a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8c5f_0dac_82a6/request", "", "public", "Top Dataset, std, sflx.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8c5f_0dac_82a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8c5f_0dac_82a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8c5f_0dac_82a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8c5f_0dac_82a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8c5f_0dac_82a6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8c5f_0dac_82a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e162_c58a_7de0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e162_c58a_7de0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e162_c58a_7de0/request", "", "public", "Top Dataset, std, sflx.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e162_c58a_7de0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e162_c58a_7de0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e162_c58a_7de0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e162_c58a_7de0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e162_c58a_7de0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e162_c58a_7de0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b10_0b02_65b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b10_0b02_65b1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8b10_0b02_65b1/request", "", "public", "Top Dataset, std, shum.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8b10_0b02_65b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8b10_0b02_65b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8b10_0b02_65b1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8b10_0b02_65b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8b10_0b02_65b1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8b10_0b02_65b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fcd5_8d8c_ba77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fcd5_8d8c_ba77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fcd5_8d8c_ba77/request", "", "public", "Top Dataset, std, shum.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fcd5_8d8c_ba77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fcd5_8d8c_ba77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fcd5_8d8c_ba77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fcd5_8d8c_ba77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fcd5_8d8c_ba77&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fcd5_8d8c_ba77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9806_e7af_66aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9806_e7af_66aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9806_e7af_66aa/request", "", "public", "Top Dataset, std, shum.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9806_e7af_66aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9806_e7af_66aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9806_e7af_66aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9806_e7af_66aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9806_e7af_66aa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9806_e7af_66aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_345b_5e91_d0f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_345b_5e91_d0f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_345b_5e91_d0f6/request", "", "public", "Top Dataset, std, shum.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_345b_5e91_d0f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_345b_5e91_d0f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_345b_5e91_d0f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_345b_5e91_d0f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_345b_5e91_d0f6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_345b_5e91_d0f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99f4_1284_5a68", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99f4_1284_5a68.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99f4_1284_5a68/request", "", "public", "Top Dataset, std, shum.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99f4_1284_5a68_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99f4_1284_5a68_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99f4_1284_5a68/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99f4_1284_5a68.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99f4_1284_5a68&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_99f4_1284_5a68"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e62e_503e_189a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e62e_503e_189a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e62e_503e_189a/request", "", "public", "Top Dataset, std, shum.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e62e_503e_189a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e62e_503e_189a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e62e_503e_189a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e62e_503e_189a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e62e_503e_189a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e62e_503e_189a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8253_f49a_62f4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8253_f49a_62f4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8253_f49a_62f4/request", "", "public", "Top Dataset, std, shum.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8253_f49a_62f4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8253_f49a_62f4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8253_f49a_62f4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8253_f49a_62f4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8253_f49a_62f4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8253_f49a_62f4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f827_b9fb_f0b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f827_b9fb_f0b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f827_b9fb_f0b6/request", "", "public", "Top Dataset, std, shum.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f827_b9fb_f0b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f827_b9fb_f0b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f827_b9fb_f0b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f827_b9fb_f0b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f827_b9fb_f0b6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f827_b9fb_f0b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4217_cf69_4dae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4217_cf69_4dae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4217_cf69_4dae/request", "", "public", "Top Dataset, std, shum.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4217_cf69_4dae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4217_cf69_4dae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4217_cf69_4dae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4217_cf69_4dae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4217_cf69_4dae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4217_cf69_4dae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_158f_f3f5_e71f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_158f_f3f5_e71f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_158f_f3f5_e71f/request", "", "public", "Top Dataset, std, shum.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_158f_f3f5_e71f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_158f_f3f5_e71f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_158f_f3f5_e71f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_158f_f3f5_e71f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_158f_f3f5_e71f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_158f_f3f5_e71f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc26_2f73_52fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc26_2f73_52fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc26_2f73_52fe/request", "", "public", "Top Dataset, std, slp.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc26_2f73_52fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc26_2f73_52fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc26_2f73_52fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc26_2f73_52fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc26_2f73_52fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fc26_2f73_52fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f5d_8d20_8a65", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f5d_8d20_8a65.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f5d_8d20_8a65/request", "", "public", "Top Dataset, std, slp.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f5d_8d20_8a65_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f5d_8d20_8a65_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f5d_8d20_8a65/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f5d_8d20_8a65.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f5d_8d20_8a65&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7f5d_8d20_8a65"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5900_02b1_6dd1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5900_02b1_6dd1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5900_02b1_6dd1/request", "", "public", "Top Dataset, std, slp.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5900_02b1_6dd1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5900_02b1_6dd1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5900_02b1_6dd1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5900_02b1_6dd1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5900_02b1_6dd1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5900_02b1_6dd1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbb6_c90d_096b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbb6_c90d_096b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dbb6_c90d_096b/request", "", "public", "Top Dataset, std, slp.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dbb6_c90d_096b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dbb6_c90d_096b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dbb6_c90d_096b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dbb6_c90d_096b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dbb6_c90d_096b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dbb6_c90d_096b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f63d_2dba_ec54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f63d_2dba_ec54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f63d_2dba_ec54/request", "", "public", "Top Dataset, std, slp.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f63d_2dba_ec54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f63d_2dba_ec54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f63d_2dba_ec54/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f63d_2dba_ec54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f63d_2dba_ec54&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f63d_2dba_ec54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dc4_abae_6014", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4dc4_abae_6014.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4dc4_abae_6014/request", "", "public", "Top Dataset, std, slp.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4dc4_abae_6014_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4dc4_abae_6014_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4dc4_abae_6014/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4dc4_abae_6014.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4dc4_abae_6014&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4dc4_abae_6014"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5387_0dec_5fa5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5387_0dec_5fa5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5387_0dec_5fa5/request", "", "public", "Top Dataset, std, slp.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5387_0dec_5fa5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5387_0dec_5fa5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5387_0dec_5fa5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5387_0dec_5fa5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5387_0dec_5fa5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5387_0dec_5fa5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e612_f76a_b1bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e612_f76a_b1bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e612_f76a_b1bf/request", "", "public", "Top Dataset, std, slp.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e612_f76a_b1bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e612_f76a_b1bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e612_f76a_b1bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e612_f76a_b1bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e612_f76a_b1bf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e612_f76a_b1bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a31a_efac_d3d6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a31a_efac_d3d6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a31a_efac_d3d6/request", "", "public", "Top Dataset, std, slp.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a31a_efac_d3d6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a31a_efac_d3d6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a31a_efac_d3d6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a31a_efac_d3d6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a31a_efac_d3d6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a31a_efac_d3d6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7665_e04e_34ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7665_e04e_34ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7665_e04e_34ec/request", "", "public", "Top Dataset, std, slp.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7665_e04e_34ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7665_e04e_34ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7665_e04e_34ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7665_e04e_34ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7665_e04e_34ec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7665_e04e_34ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2225_d3d5_6580", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2225_d3d5_6580.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2225_d3d5_6580/request", "", "public", "Top Dataset, std, smina.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2225_d3d5_6580_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2225_d3d5_6580_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2225_d3d5_6580/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2225_d3d5_6580.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2225_d3d5_6580&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2225_d3d5_6580"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dca2_ac6a_6fec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dca2_ac6a_6fec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dca2_ac6a_6fec/request", "", "public", "Top Dataset, std, smina.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dca2_ac6a_6fec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dca2_ac6a_6fec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dca2_ac6a_6fec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dca2_ac6a_6fec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dca2_ac6a_6fec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dca2_ac6a_6fec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f63d_fd77_a5b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f63d_fd77_a5b1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f63d_fd77_a5b1/request", "", "public", "Top Dataset, std, smina.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f63d_fd77_a5b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f63d_fd77_a5b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f63d_fd77_a5b1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f63d_fd77_a5b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f63d_fd77_a5b1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f63d_fd77_a5b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91b7_2287_80e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91b7_2287_80e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_91b7_2287_80e6/request", "", "public", "Top Dataset, std, smina.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_91b7_2287_80e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_91b7_2287_80e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_91b7_2287_80e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_91b7_2287_80e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_91b7_2287_80e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_91b7_2287_80e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca85_01e5_c75e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca85_01e5_c75e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca85_01e5_c75e/request", "", "public", "Top Dataset, std, smina.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca85_01e5_c75e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca85_01e5_c75e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca85_01e5_c75e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca85_01e5_c75e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca85_01e5_c75e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ca85_01e5_c75e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b4c_62d2_eb9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b4c_62d2_eb9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4b4c_62d2_eb9d/request", "", "public", "Top Dataset, std, smina.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4b4c_62d2_eb9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4b4c_62d2_eb9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4b4c_62d2_eb9d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4b4c_62d2_eb9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4b4c_62d2_eb9d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4b4c_62d2_eb9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d54_b65a_ee2b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d54_b65a_ee2b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d54_b65a_ee2b/request", "", "public", "Top Dataset, std, smina.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d54_b65a_ee2b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d54_b65a_ee2b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d54_b65a_ee2b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d54_b65a_ee2b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d54_b65a_ee2b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d54_b65a_ee2b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_201c_f4f7_ace8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_201c_f4f7_ace8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_201c_f4f7_ace8/request", "", "public", "Top Dataset, std, smina.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_201c_f4f7_ace8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_201c_f4f7_ace8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_201c_f4f7_ace8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_201c_f4f7_ace8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_201c_f4f7_ace8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_201c_f4f7_ace8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c1f_729f_0b7f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c1f_729f_0b7f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6c1f_729f_0b7f/request", "", "public", "Top Dataset, std, smina.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6c1f_729f_0b7f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6c1f_729f_0b7f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6c1f_729f_0b7f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6c1f_729f_0b7f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6c1f_729f_0b7f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6c1f_729f_0b7f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_060e_d578_864e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_060e_d578_864e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_060e_d578_864e/request", "", "public", "Top Dataset, std, smina.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_060e_d578_864e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_060e_d578_864e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_060e_d578_864e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_060e_d578_864e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_060e_d578_864e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_060e_d578_864e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2828_6d44_e37e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2828_6d44_e37e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2828_6d44_e37e/request", "", "public", "Top Dataset, std, sst.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2828_6d44_e37e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2828_6d44_e37e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2828_6d44_e37e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2828_6d44_e37e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2828_6d44_e37e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2828_6d44_e37e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6760_111e_b125", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6760_111e_b125.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6760_111e_b125/request", "", "public", "Top Dataset, std, sst.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6760_111e_b125_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6760_111e_b125_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6760_111e_b125/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6760_111e_b125.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6760_111e_b125&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6760_111e_b125"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab73_36e3_5f70", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab73_36e3_5f70.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab73_36e3_5f70/request", "", "public", "Top Dataset, std, sst.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab73_36e3_5f70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab73_36e3_5f70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab73_36e3_5f70/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab73_36e3_5f70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab73_36e3_5f70&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ab73_36e3_5f70"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e1c_b6f3_698a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e1c_b6f3_698a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7e1c_b6f3_698a/request", "", "public", "Top Dataset, std, sst.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7e1c_b6f3_698a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7e1c_b6f3_698a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e1c_b6f3_698a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e1c_b6f3_698a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e1c_b6f3_698a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7e1c_b6f3_698a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9cc_c1fd_1219", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9cc_c1fd_1219.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a9cc_c1fd_1219/request", "", "public", "Top Dataset, std, sst.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9cc_c1fd_1219_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9cc_c1fd_1219_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9cc_c1fd_1219/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9cc_c1fd_1219.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9cc_c1fd_1219&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a9cc_c1fd_1219"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d613_0daf_0f2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d613_0daf_0f2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d613_0daf_0f2a/request", "", "public", "Top Dataset, std, sst.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d613_0daf_0f2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d613_0daf_0f2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d613_0daf_0f2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d613_0daf_0f2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d613_0daf_0f2a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d613_0daf_0f2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f601_edd3_9957", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f601_edd3_9957.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f601_edd3_9957/request", "", "public", "Top Dataset, std, sst.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f601_edd3_9957_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f601_edd3_9957_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f601_edd3_9957/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f601_edd3_9957.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f601_edd3_9957&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f601_edd3_9957"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b9c_0fc6_9226", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b9c_0fc6_9226.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3b9c_0fc6_9226/request", "", "public", "Top Dataset, std, sst.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3b9c_0fc6_9226_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3b9c_0fc6_9226_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3b9c_0fc6_9226/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3b9c_0fc6_9226.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3b9c_0fc6_9226&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3b9c_0fc6_9226"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bcd_e43f_51c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bcd_e43f_51c5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2bcd_e43f_51c5/request", "", "public", "Top Dataset, std, sst.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2bcd_e43f_51c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2bcd_e43f_51c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2bcd_e43f_51c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2bcd_e43f_51c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2bcd_e43f_51c5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2bcd_e43f_51c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5881_405f_f1e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5881_405f_f1e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5881_405f_f1e5/request", "", "public", "Top Dataset, std, sst.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5881_405f_f1e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5881_405f_f1e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5881_405f_f1e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5881_405f_f1e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5881_405f_f1e5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5881_405f_f1e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d306_b00f_66b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d306_b00f_66b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d306_b00f_66b0/request", "", "public", "Top Dataset, std, uairt.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d306_b00f_66b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d306_b00f_66b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d306_b00f_66b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d306_b00f_66b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d306_b00f_66b0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d306_b00f_66b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ffd_e7af_88e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6ffd_e7af_88e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6ffd_e7af_88e5/request", "", "public", "Top Dataset, std, uairt.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6ffd_e7af_88e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6ffd_e7af_88e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6ffd_e7af_88e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6ffd_e7af_88e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6ffd_e7af_88e5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6ffd_e7af_88e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a5e_5816_a5f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5a5e_5816_a5f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5a5e_5816_a5f1/request", "", "public", "Top Dataset, std, uairt.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5a5e_5816_a5f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5a5e_5816_a5f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5a5e_5816_a5f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5a5e_5816_a5f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5a5e_5816_a5f1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5a5e_5816_a5f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2aef_1916_6694", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2aef_1916_6694.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2aef_1916_6694/request", "", "public", "Top Dataset, std, uairt.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2aef_1916_6694_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2aef_1916_6694_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2aef_1916_6694/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2aef_1916_6694.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2aef_1916_6694&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2aef_1916_6694"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da6b_ac2e_afe9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_da6b_ac2e_afe9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_da6b_ac2e_afe9/request", "", "public", "Top Dataset, std, uairt.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_da6b_ac2e_afe9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_da6b_ac2e_afe9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_da6b_ac2e_afe9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_da6b_ac2e_afe9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_da6b_ac2e_afe9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_da6b_ac2e_afe9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5c1_642c_9333", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5c1_642c_9333.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5c1_642c_9333/request", "", "public", "Top Dataset, std, uairt.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5c1_642c_9333_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5c1_642c_9333_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5c1_642c_9333/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5c1_642c_9333.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5c1_642c_9333&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e5c1_642c_9333"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd1c_144f_b69e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd1c_144f_b69e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bd1c_144f_b69e/request", "", "public", "Top Dataset, std, uairt.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bd1c_144f_b69e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bd1c_144f_b69e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bd1c_144f_b69e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bd1c_144f_b69e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bd1c_144f_b69e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bd1c_144f_b69e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ae4_81e1_db62", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ae4_81e1_db62.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ae4_81e1_db62/request", "", "public", "Top Dataset, std, uairt.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ae4_81e1_db62_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ae4_81e1_db62_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ae4_81e1_db62/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ae4_81e1_db62.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ae4_81e1_db62&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1ae4_81e1_db62"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9205_71b3_8443", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9205_71b3_8443.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9205_71b3_8443/request", "", "public", "Top Dataset, std, uairt.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9205_71b3_8443_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9205_71b3_8443_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9205_71b3_8443/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9205_71b3_8443.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9205_71b3_8443&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9205_71b3_8443"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f2e_f3d4_e7e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f2e_f3d4_e7e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4f2e_f3d4_e7e0/request", "", "public", "Top Dataset, std, uairt.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4f2e_f3d4_e7e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4f2e_f3d4_e7e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4f2e_f3d4_e7e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4f2e_f3d4_e7e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4f2e_f3d4_e7e0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4f2e_f3d4_e7e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_142d_4483_7819", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_142d_4483_7819.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_142d_4483_7819/request", "", "public", "Top Dataset, std, ulflx.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_142d_4483_7819_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_142d_4483_7819_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_142d_4483_7819/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_142d_4483_7819.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_142d_4483_7819&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_142d_4483_7819"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b01d_298c_d242", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b01d_298c_d242.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b01d_298c_d242/request", "", "public", "Top Dataset, std, ulflx.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b01d_298c_d242_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b01d_298c_d242_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b01d_298c_d242/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b01d_298c_d242.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b01d_298c_d242&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b01d_298c_d242"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60cb_6313_acdf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60cb_6313_acdf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_60cb_6313_acdf/request", "", "public", "Top Dataset, std, ulflx.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_60cb_6313_acdf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_60cb_6313_acdf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_60cb_6313_acdf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_60cb_6313_acdf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_60cb_6313_acdf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_60cb_6313_acdf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7071_02cf_2587", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7071_02cf_2587.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7071_02cf_2587/request", "", "public", "Top Dataset, std, ulflx.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7071_02cf_2587_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7071_02cf_2587_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7071_02cf_2587/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7071_02cf_2587.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7071_02cf_2587&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7071_02cf_2587"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d3c_6b78_8566", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d3c_6b78_8566.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d3c_6b78_8566/request", "", "public", "Top Dataset, std, ulflx.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d3c_6b78_8566_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d3c_6b78_8566_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d3c_6b78_8566/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d3c_6b78_8566.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d3c_6b78_8566&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1d3c_6b78_8566"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be25_d2df_115f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_be25_d2df_115f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_be25_d2df_115f/request", "", "public", "Top Dataset, std, ulflx.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_be25_d2df_115f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_be25_d2df_115f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_be25_d2df_115f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_be25_d2df_115f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_be25_d2df_115f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_be25_d2df_115f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5f8_f037_68fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d5f8_f037_68fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d5f8_f037_68fb/request", "", "public", "Top Dataset, std, ulflx.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d5f8_f037_68fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d5f8_f037_68fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d5f8_f037_68fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d5f8_f037_68fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d5f8_f037_68fb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d5f8_f037_68fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d35_d6cc_190b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d35_d6cc_190b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d35_d6cc_190b/request", "", "public", "Top Dataset, std, ulflx.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d35_d6cc_190b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d35_d6cc_190b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d35_d6cc_190b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d35_d6cc_190b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d35_d6cc_190b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4d35_d6cc_190b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c47_8c32_a872", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c47_8c32_a872.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2c47_8c32_a872/request", "", "public", "Top Dataset, std, ulflx.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2c47_8c32_a872_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2c47_8c32_a872_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2c47_8c32_a872/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2c47_8c32_a872.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2c47_8c32_a872&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2c47_8c32_a872"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9f9_a9e8_85ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9f9_a9e8_85ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e9f9_a9e8_85ec/request", "", "public", "Top Dataset, std, ulflx.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e9f9_a9e8_85ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e9f9_a9e8_85ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e9f9_a9e8_85ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e9f9_a9e8_85ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e9f9_a9e8_85ec&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e9f9_a9e8_85ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c856_7d90_cf72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c856_7d90_cf72.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c856_7d90_cf72/request", "", "public", "Top Dataset, std, upstr.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c856_7d90_cf72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c856_7d90_cf72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c856_7d90_cf72/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c856_7d90_cf72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c856_7d90_cf72&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c856_7d90_cf72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b56_fb87_9de1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b56_fb87_9de1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4b56_fb87_9de1/request", "", "public", "Top Dataset, std, upstr.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4b56_fb87_9de1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4b56_fb87_9de1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4b56_fb87_9de1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4b56_fb87_9de1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4b56_fb87_9de1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4b56_fb87_9de1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb06_6491_021b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb06_6491_021b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb06_6491_021b/request", "", "public", "Top Dataset, std, upstr.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb06_6491_021b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb06_6491_021b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb06_6491_021b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb06_6491_021b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb06_6491_021b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cb06_6491_021b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c658_1b26_dc2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c658_1b26_dc2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c658_1b26_dc2f/request", "", "public", "Top Dataset, std, upstr.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c658_1b26_dc2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c658_1b26_dc2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c658_1b26_dc2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c658_1b26_dc2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c658_1b26_dc2f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c658_1b26_dc2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_407c_ed83_08fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_407c_ed83_08fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_407c_ed83_08fe/request", "", "public", "Top Dataset, std, upstr.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_407c_ed83_08fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_407c_ed83_08fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_407c_ed83_08fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_407c_ed83_08fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_407c_ed83_08fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_407c_ed83_08fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a80_b3b8_a5e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a80_b3b8_a5e8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a80_b3b8_a5e8/request", "", "public", "Top Dataset, std, upstr.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a80_b3b8_a5e8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a80_b3b8_a5e8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a80_b3b8_a5e8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a80_b3b8_a5e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a80_b3b8_a5e8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3a80_b3b8_a5e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0251_133f_0809", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0251_133f_0809.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0251_133f_0809/request", "", "public", "Top Dataset, std, upstr.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0251_133f_0809_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0251_133f_0809_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0251_133f_0809/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0251_133f_0809.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0251_133f_0809&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0251_133f_0809"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_42f4_cb24_3b51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_42f4_cb24_3b51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_42f4_cb24_3b51/request", "", "public", "Top Dataset, std, upstr.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_42f4_cb24_3b51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_42f4_cb24_3b51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_42f4_cb24_3b51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_42f4_cb24_3b51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_42f4_cb24_3b51&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_42f4_cb24_3b51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3928_8fdd_d9db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3928_8fdd_d9db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3928_8fdd_d9db/request", "", "public", "Top Dataset, std, upstr.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3928_8fdd_d9db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3928_8fdd_d9db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3928_8fdd_d9db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3928_8fdd_d9db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3928_8fdd_d9db&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3928_8fdd_d9db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c13c_d3bd_d13e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c13c_d3bd_d13e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c13c_d3bd_d13e/request", "", "public", "Top Dataset, std, upstr.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c13c_d3bd_d13e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c13c_d3bd_d13e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c13c_d3bd_d13e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c13c_d3bd_d13e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c13c_d3bd_d13e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c13c_d3bd_d13e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19e8_6d8d_9760", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19e8_6d8d_9760.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_19e8_6d8d_9760/request", "", "public", "Top Dataset, std, uspeh.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_19e8_6d8d_9760_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_19e8_6d8d_9760_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_19e8_6d8d_9760/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_19e8_6d8d_9760.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_19e8_6d8d_9760&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_19e8_6d8d_9760"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5280_24ec_e616", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5280_24ec_e616.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5280_24ec_e616/request", "", "public", "Top Dataset, std, uspeh.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5280_24ec_e616_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5280_24ec_e616_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5280_24ec_e616/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5280_24ec_e616.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5280_24ec_e616&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5280_24ec_e616"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05a8_cacf_e5d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05a8_cacf_e5d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_05a8_cacf_e5d4/request", "", "public", "Top Dataset, std, uspeh.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_05a8_cacf_e5d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_05a8_cacf_e5d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_05a8_cacf_e5d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_05a8_cacf_e5d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_05a8_cacf_e5d4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_05a8_cacf_e5d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2742_c00c_4ee0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2742_c00c_4ee0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2742_c00c_4ee0/request", "", "public", "Top Dataset, std, uspeh.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2742_c00c_4ee0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2742_c00c_4ee0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2742_c00c_4ee0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2742_c00c_4ee0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2742_c00c_4ee0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2742_c00c_4ee0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a956_27d4_a21d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a956_27d4_a21d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a956_27d4_a21d/request", "", "public", "Top Dataset, std, uspeh.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a956_27d4_a21d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a956_27d4_a21d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a956_27d4_a21d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a956_27d4_a21d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a956_27d4_a21d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a956_27d4_a21d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b59d_614e_2d39", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b59d_614e_2d39.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b59d_614e_2d39/request", "", "public", "Top Dataset, std, uspeh.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b59d_614e_2d39_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b59d_614e_2d39_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b59d_614e_2d39/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b59d_614e_2d39.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b59d_614e_2d39&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b59d_614e_2d39"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc28_8db0_c804", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc28_8db0_c804.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc28_8db0_c804/request", "", "public", "Top Dataset, std, uspeh.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc28_8db0_c804_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc28_8db0_c804_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc28_8db0_c804/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc28_8db0_c804.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc28_8db0_c804&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cc28_8db0_c804"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e46_ca79_d665", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e46_ca79_d665.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1e46_ca79_d665/request", "", "public", "Top Dataset, std, uspeh.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1e46_ca79_d665_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1e46_ca79_d665_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1e46_ca79_d665/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1e46_ca79_d665.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1e46_ca79_d665&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1e46_ca79_d665"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78ba_126a_921f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78ba_126a_921f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_78ba_126a_921f/request", "", "public", "Top Dataset, std, uspeh.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_78ba_126a_921f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_78ba_126a_921f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_78ba_126a_921f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_78ba_126a_921f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_78ba_126a_921f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_78ba_126a_921f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_098c_19a6_0fb1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_098c_19a6_0fb1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_098c_19a6_0fb1/request", "", "public", "Top Dataset, std, uspeh.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_098c_19a6_0fb1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_098c_19a6_0fb1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_098c_19a6_0fb1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_098c_19a6_0fb1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_098c_19a6_0fb1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_098c_19a6_0fb1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3618_4258_7408", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3618_4258_7408.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3618_4258_7408/request", "", "public", "Top Dataset, std, uwnd.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3618_4258_7408_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3618_4258_7408_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3618_4258_7408/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3618_4258_7408.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3618_4258_7408&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3618_4258_7408"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca08_0c16_6cbd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca08_0c16_6cbd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca08_0c16_6cbd/request", "", "public", "Top Dataset, std, uwnd.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca08_0c16_6cbd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca08_0c16_6cbd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca08_0c16_6cbd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca08_0c16_6cbd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca08_0c16_6cbd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ca08_0c16_6cbd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3241_b53a_260b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3241_b53a_260b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3241_b53a_260b/request", "", "public", "Top Dataset, std, uwnd.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3241_b53a_260b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3241_b53a_260b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3241_b53a_260b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3241_b53a_260b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3241_b53a_260b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3241_b53a_260b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_944f_f537_1ed1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_944f_f537_1ed1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_944f_f537_1ed1/request", "", "public", "Top Dataset, std, uwnd.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_944f_f537_1ed1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_944f_f537_1ed1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_944f_f537_1ed1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_944f_f537_1ed1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_944f_f537_1ed1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_944f_f537_1ed1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fc5_c328_356d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1fc5_c328_356d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1fc5_c328_356d/request", "", "public", "Top Dataset, std, uwnd.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1fc5_c328_356d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1fc5_c328_356d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1fc5_c328_356d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1fc5_c328_356d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1fc5_c328_356d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1fc5_c328_356d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c418_72be_dfa8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c418_72be_dfa8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c418_72be_dfa8/request", "", "public", "Top Dataset, std, uwnd.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c418_72be_dfa8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c418_72be_dfa8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c418_72be_dfa8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c418_72be_dfa8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c418_72be_dfa8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c418_72be_dfa8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe56_81ee_cd17", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe56_81ee_cd17.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fe56_81ee_cd17/request", "", "public", "Top Dataset, std, uwnd.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fe56_81ee_cd17_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fe56_81ee_cd17_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fe56_81ee_cd17/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fe56_81ee_cd17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fe56_81ee_cd17&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fe56_81ee_cd17"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c3e_81c8_aca4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c3e_81c8_aca4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6c3e_81c8_aca4/request", "", "public", "Top Dataset, std, uwnd.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6c3e_81c8_aca4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6c3e_81c8_aca4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6c3e_81c8_aca4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6c3e_81c8_aca4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6c3e_81c8_aca4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6c3e_81c8_aca4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_233b_187c_804d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_233b_187c_804d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_233b_187c_804d/request", "", "public", "Top Dataset, std, uwnd.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_233b_187c_804d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_233b_187c_804d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_233b_187c_804d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_233b_187c_804d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_233b_187c_804d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_233b_187c_804d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0dbc_138e_a3e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0dbc_138e_a3e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0dbc_138e_a3e6/request", "", "public", "Top Dataset, std, uwnd.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0dbc_138e_a3e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0dbc_138e_a3e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0dbc_138e_a3e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0dbc_138e_a3e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0dbc_138e_a3e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0dbc_138e_a3e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78a7_5107_425f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_78a7_5107_425f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_78a7_5107_425f/request", "", "public", "Top Dataset, std, vairt.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_78a7_5107_425f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_78a7_5107_425f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_78a7_5107_425f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_78a7_5107_425f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_78a7_5107_425f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_78a7_5107_425f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e67_f6ad_4304", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e67_f6ad_4304.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e67_f6ad_4304/request", "", "public", "Top Dataset, std, vairt.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e67_f6ad_4304_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e67_f6ad_4304_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e67_f6ad_4304/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e67_f6ad_4304.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e67_f6ad_4304&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3e67_f6ad_4304"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0e5_aa67_893f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0e5_aa67_893f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e0e5_aa67_893f/request", "", "public", "Top Dataset, std, vairt.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e0e5_aa67_893f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e0e5_aa67_893f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e0e5_aa67_893f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e0e5_aa67_893f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e0e5_aa67_893f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e0e5_aa67_893f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d70_03a6_7ce1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d70_03a6_7ce1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d70_03a6_7ce1/request", "", "public", "Top Dataset, std, vairt.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d70_03a6_7ce1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d70_03a6_7ce1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d70_03a6_7ce1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d70_03a6_7ce1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d70_03a6_7ce1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8d70_03a6_7ce1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_579d_ad3a_24a7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_579d_ad3a_24a7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_579d_ad3a_24a7/request", "", "public", "Top Dataset, std, vairt.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_579d_ad3a_24a7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_579d_ad3a_24a7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_579d_ad3a_24a7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_579d_ad3a_24a7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_579d_ad3a_24a7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_579d_ad3a_24a7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9956_19af_bba1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9956_19af_bba1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9956_19af_bba1/request", "", "public", "Top Dataset, std, vairt.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9956_19af_bba1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9956_19af_bba1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9956_19af_bba1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9956_19af_bba1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9956_19af_bba1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9956_19af_bba1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a60c_d94f_f0d8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a60c_d94f_f0d8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a60c_d94f_f0d8/request", "", "public", "Top Dataset, std, vairt.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a60c_d94f_f0d8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a60c_d94f_f0d8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a60c_d94f_f0d8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a60c_d94f_f0d8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a60c_d94f_f0d8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a60c_d94f_f0d8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22d7_923b_d34b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_22d7_923b_d34b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_22d7_923b_d34b/request", "", "public", "Top Dataset, std, vairt.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_22d7_923b_d34b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_22d7_923b_d34b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_22d7_923b_d34b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_22d7_923b_d34b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_22d7_923b_d34b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_22d7_923b_d34b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aecf_c967_053d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aecf_c967_053d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aecf_c967_053d/request", "", "public", "Top Dataset, std, vairt.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aecf_c967_053d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aecf_c967_053d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aecf_c967_053d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aecf_c967_053d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aecf_c967_053d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aecf_c967_053d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a96_ace7_4aaa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a96_ace7_4aaa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4a96_ace7_4aaa/request", "", "public", "Top Dataset, std, vairt.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4a96_ace7_4aaa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4a96_ace7_4aaa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4a96_ace7_4aaa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4a96_ace7_4aaa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4a96_ace7_4aaa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4a96_ace7_4aaa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0ac_566e_f1fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e0ac_566e_f1fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e0ac_566e_f1fc/request", "", "public", "Top Dataset, std, vlflx.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e0ac_566e_f1fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e0ac_566e_f1fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e0ac_566e_f1fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e0ac_566e_f1fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e0ac_566e_f1fc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e0ac_566e_f1fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3729_006e_c0e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3729_006e_c0e4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3729_006e_c0e4/request", "", "public", "Top Dataset, std, vlflx.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3729_006e_c0e4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3729_006e_c0e4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3729_006e_c0e4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3729_006e_c0e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3729_006e_c0e4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3729_006e_c0e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57a8_ff53_4235", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57a8_ff53_4235.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_57a8_ff53_4235/request", "", "public", "Top Dataset, std, vlflx.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_57a8_ff53_4235_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_57a8_ff53_4235_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_57a8_ff53_4235/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_57a8_ff53_4235.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_57a8_ff53_4235&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_57a8_ff53_4235"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_172f_ea24_6882", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_172f_ea24_6882.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_172f_ea24_6882/request", "", "public", "Top Dataset, std, vlflx.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_172f_ea24_6882_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_172f_ea24_6882_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_172f_ea24_6882/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_172f_ea24_6882.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_172f_ea24_6882&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_172f_ea24_6882"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_33b1_1d35_4800", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_33b1_1d35_4800.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_33b1_1d35_4800/request", "", "public", "Top Dataset, std, vlflx.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_33b1_1d35_4800_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_33b1_1d35_4800_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_33b1_1d35_4800/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_33b1_1d35_4800.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_33b1_1d35_4800&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_33b1_1d35_4800"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2212_e6f9_c97b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2212_e6f9_c97b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2212_e6f9_c97b/request", "", "public", "Top Dataset, std, vlflx.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2212_e6f9_c97b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2212_e6f9_c97b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2212_e6f9_c97b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2212_e6f9_c97b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2212_e6f9_c97b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2212_e6f9_c97b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b10c_255c_4d28", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b10c_255c_4d28.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b10c_255c_4d28/request", "", "public", "Top Dataset, std, vlflx.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b10c_255c_4d28_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b10c_255c_4d28_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b10c_255c_4d28/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b10c_255c_4d28.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b10c_255c_4d28&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b10c_255c_4d28"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_76a5_1091_4f0d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_76a5_1091_4f0d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_76a5_1091_4f0d/request", "", "public", "Top Dataset, std, vlflx.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_76a5_1091_4f0d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_76a5_1091_4f0d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_76a5_1091_4f0d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_76a5_1091_4f0d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_76a5_1091_4f0d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_76a5_1091_4f0d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_220e_d9b9_7c4f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_220e_d9b9_7c4f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_220e_d9b9_7c4f/request", "", "public", "Top Dataset, std, vlflx.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_220e_d9b9_7c4f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_220e_d9b9_7c4f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_220e_d9b9_7c4f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_220e_d9b9_7c4f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_220e_d9b9_7c4f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_220e_d9b9_7c4f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b480_76cf_e2e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b480_76cf_e2e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b480_76cf_e2e2/request", "", "public", "Top Dataset, std, vlflx.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b480_76cf_e2e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b480_76cf_e2e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b480_76cf_e2e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b480_76cf_e2e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b480_76cf_e2e2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b480_76cf_e2e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86e4_8ff4_0f49", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_86e4_8ff4_0f49.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_86e4_8ff4_0f49/request", "", "public", "Top Dataset, std, vpstr.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_86e4_8ff4_0f49_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_86e4_8ff4_0f49_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_86e4_8ff4_0f49/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_86e4_8ff4_0f49.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_86e4_8ff4_0f49&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_86e4_8ff4_0f49"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c388_d288_818d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c388_d288_818d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c388_d288_818d/request", "", "public", "Top Dataset, std, vpstr.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c388_d288_818d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c388_d288_818d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c388_d288_818d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c388_d288_818d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c388_d288_818d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c388_d288_818d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb6c_c15e_e9d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb6c_c15e_e9d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bb6c_c15e_e9d7/request", "", "public", "Top Dataset, std, vpstr.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bb6c_c15e_e9d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bb6c_c15e_e9d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bb6c_c15e_e9d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bb6c_c15e_e9d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bb6c_c15e_e9d7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bb6c_c15e_e9d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_31d7_ad43_f8f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_31d7_ad43_f8f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_31d7_ad43_f8f6/request", "", "public", "Top Dataset, std, vpstr.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_31d7_ad43_f8f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_31d7_ad43_f8f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_31d7_ad43_f8f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_31d7_ad43_f8f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_31d7_ad43_f8f6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_31d7_ad43_f8f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1d5_c244_ed95", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1d5_c244_ed95.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d1d5_c244_ed95/request", "", "public", "Top Dataset, std, vpstr.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d1d5_c244_ed95_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d1d5_c244_ed95_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d1d5_c244_ed95/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d1d5_c244_ed95.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d1d5_c244_ed95&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d1d5_c244_ed95"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4352_40a5_22ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4352_40a5_22ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4352_40a5_22ab/request", "", "public", "Top Dataset, std, vpstr.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4352_40a5_22ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4352_40a5_22ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4352_40a5_22ab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4352_40a5_22ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4352_40a5_22ab&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4352_40a5_22ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bed_8ac8_cf19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bed_8ac8_cf19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2bed_8ac8_cf19/request", "", "public", "Top Dataset, std, vpstr.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2bed_8ac8_cf19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2bed_8ac8_cf19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2bed_8ac8_cf19/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2bed_8ac8_cf19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2bed_8ac8_cf19&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2bed_8ac8_cf19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85b9_e3b0_ea73", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_85b9_e3b0_ea73.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_85b9_e3b0_ea73/request", "", "public", "Top Dataset, std, vpstr.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_85b9_e3b0_ea73_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_85b9_e3b0_ea73_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_85b9_e3b0_ea73/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_85b9_e3b0_ea73.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_85b9_e3b0_ea73&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_85b9_e3b0_ea73"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddeb_d949_c645", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ddeb_d949_c645.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ddeb_d949_c645/request", "", "public", "Top Dataset, std, vpstr.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ddeb_d949_c645_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ddeb_d949_c645_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ddeb_d949_c645/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ddeb_d949_c645.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ddeb_d949_c645&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ddeb_d949_c645"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34af_bf28_391f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_34af_bf28_391f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_34af_bf28_391f/request", "", "public", "Top Dataset, std, vpstr.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_34af_bf28_391f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_34af_bf28_391f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_34af_bf28_391f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_34af_bf28_391f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_34af_bf28_391f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_34af_bf28_391f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5a9_3810_b5fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5a9_3810_b5fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5a9_3810_b5fd/request", "", "public", "Top Dataset, std, vspeh.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5a9_3810_b5fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5a9_3810_b5fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5a9_3810_b5fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5a9_3810_b5fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5a9_3810_b5fd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e5a9_3810_b5fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c94f_6f04_3bdf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c94f_6f04_3bdf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c94f_6f04_3bdf/request", "", "public", "Top Dataset, std, vspeh.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c94f_6f04_3bdf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c94f_6f04_3bdf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c94f_6f04_3bdf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c94f_6f04_3bdf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c94f_6f04_3bdf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c94f_6f04_3bdf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d47_5d84_0b21", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d47_5d84_0b21.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d47_5d84_0b21/request", "", "public", "Top Dataset, std, vspeh.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d47_5d84_0b21_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d47_5d84_0b21_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d47_5d84_0b21/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d47_5d84_0b21.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d47_5d84_0b21&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8d47_5d84_0b21"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1679_207d_f7df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1679_207d_f7df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1679_207d_f7df/request", "", "public", "Top Dataset, std, vspeh.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1679_207d_f7df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1679_207d_f7df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1679_207d_f7df/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1679_207d_f7df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1679_207d_f7df&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1679_207d_f7df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b42_fe4b_243e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b42_fe4b_243e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4b42_fe4b_243e/request", "", "public", "Top Dataset, std, vspeh.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4b42_fe4b_243e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4b42_fe4b_243e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4b42_fe4b_243e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4b42_fe4b_243e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4b42_fe4b_243e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4b42_fe4b_243e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6ec_39c8_e756", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e6ec_39c8_e756.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e6ec_39c8_e756/request", "", "public", "Top Dataset, std, vspeh.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e6ec_39c8_e756_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e6ec_39c8_e756_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e6ec_39c8_e756/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e6ec_39c8_e756.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e6ec_39c8_e756&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e6ec_39c8_e756"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fcd8_708b_15fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fcd8_708b_15fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fcd8_708b_15fc/request", "", "public", "Top Dataset, std, vspeh.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fcd8_708b_15fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fcd8_708b_15fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fcd8_708b_15fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fcd8_708b_15fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fcd8_708b_15fc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fcd8_708b_15fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5b2_1ef6_7fe9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5b2_1ef6_7fe9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5b2_1ef6_7fe9/request", "", "public", "Top Dataset, std, vspeh.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5b2_1ef6_7fe9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5b2_1ef6_7fe9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5b2_1ef6_7fe9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5b2_1ef6_7fe9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5b2_1ef6_7fe9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a5b2_1ef6_7fe9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6696_8b08_f94f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6696_8b08_f94f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6696_8b08_f94f/request", "", "public", "Top Dataset, std, vspeh.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6696_8b08_f94f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6696_8b08_f94f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6696_8b08_f94f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6696_8b08_f94f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6696_8b08_f94f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6696_8b08_f94f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1a7_8870_d060", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1a7_8870_d060.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d1a7_8870_d060/request", "", "public", "Top Dataset, std, vspeh.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d1a7_8870_d060_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d1a7_8870_d060_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d1a7_8870_d060/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d1a7_8870_d060.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d1a7_8870_d060&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d1a7_8870_d060"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_31dc_09f6_e8ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_31dc_09f6_e8ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_31dc_09f6_e8ef/request", "", "public", "Top Dataset, std, vwnd.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_31dc_09f6_e8ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_31dc_09f6_e8ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_31dc_09f6_e8ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_31dc_09f6_e8ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_31dc_09f6_e8ef&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_31dc_09f6_e8ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c47c_9f38_3eb4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c47c_9f38_3eb4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c47c_9f38_3eb4/request", "", "public", "Top Dataset, std, vwnd.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c47c_9f38_3eb4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c47c_9f38_3eb4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c47c_9f38_3eb4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c47c_9f38_3eb4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c47c_9f38_3eb4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c47c_9f38_3eb4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48c0_881a_053e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48c0_881a_053e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_48c0_881a_053e/request", "", "public", "Top Dataset, std, vwnd.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_48c0_881a_053e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_48c0_881a_053e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_48c0_881a_053e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_48c0_881a_053e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_48c0_881a_053e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_48c0_881a_053e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c311_80a1_9716", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c311_80a1_9716.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c311_80a1_9716/request", "", "public", "Top Dataset, std, vwnd.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c311_80a1_9716_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c311_80a1_9716_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c311_80a1_9716/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c311_80a1_9716.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c311_80a1_9716&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c311_80a1_9716"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8597_09f0_81b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8597_09f0_81b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8597_09f0_81b3/request", "", "public", "Top Dataset, std, vwnd.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8597_09f0_81b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8597_09f0_81b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8597_09f0_81b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8597_09f0_81b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8597_09f0_81b3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8597_09f0_81b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc3f_f6cc_af64", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fc3f_f6cc_af64.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fc3f_f6cc_af64/request", "", "public", "Top Dataset, std, vwnd.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fc3f_f6cc_af64_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fc3f_f6cc_af64_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fc3f_f6cc_af64/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fc3f_f6cc_af64.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fc3f_f6cc_af64&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fc3f_f6cc_af64"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a087_cccb_a178", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a087_cccb_a178.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a087_cccb_a178/request", "", "public", "Top Dataset, std, vwnd.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a087_cccb_a178_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a087_cccb_a178_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a087_cccb_a178/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a087_cccb_a178.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a087_cccb_a178&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a087_cccb_a178"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb13_ba24_2796", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb13_ba24_2796.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eb13_ba24_2796/request", "", "public", "Top Dataset, std, vwnd.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eb13_ba24_2796_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eb13_ba24_2796_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb13_ba24_2796/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb13_ba24_2796.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb13_ba24_2796&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eb13_ba24_2796"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bad2_bf25_be41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bad2_bf25_be41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bad2_bf25_be41/request", "", "public", "Top Dataset, std, vwnd.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bad2_bf25_be41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bad2_bf25_be41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bad2_bf25_be41/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bad2_bf25_be41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bad2_bf25_be41&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bad2_bf25_be41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9293_1bc0_c738", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9293_1bc0_c738.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9293_1bc0_c738/request", "", "public", "Top Dataset, std, vwnd.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, vwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9293_1bc0_c738_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9293_1bc0_c738_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9293_1bc0_c738/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9293_1bc0_c738.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9293_1bc0_c738&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9293_1bc0_c738"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e85c_45be_30b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e85c_45be_30b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e85c_45be_30b3/request", "", "public", "Top Dataset, std, wspd.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e85c_45be_30b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e85c_45be_30b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e85c_45be_30b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e85c_45be_30b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e85c_45be_30b3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e85c_45be_30b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4150_40b9_59bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4150_40b9_59bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4150_40b9_59bb/request", "", "public", "Top Dataset, std, wspd.mean (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4150_40b9_59bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4150_40b9_59bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4150_40b9_59bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4150_40b9_59bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4150_40b9_59bb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4150_40b9_59bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dab7_3658_9480", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dab7_3658_9480.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dab7_3658_9480/request", "", "public", "Top Dataset, std, wspd.mean day (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dab7_3658_9480_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dab7_3658_9480_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dab7_3658_9480/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dab7_3658_9480.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dab7_3658_9480&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_dab7_3658_9480"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01d0_4fba_e86d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01d0_4fba_e86d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_01d0_4fba_e86d/request", "", "public", "Top Dataset, std, wspd.mean lat (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_01d0_4fba_e86d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_01d0_4fba_e86d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_01d0_4fba_e86d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_01d0_4fba_e86d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_01d0_4fba_e86d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_01d0_4fba_e86d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d75b_4a74_a962", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d75b_4a74_a962.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d75b_4a74_a962/request", "", "public", "Top Dataset, std, wspd.mean lon (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d75b_4a74_a962_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d75b_4a74_a962_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d75b_4a74_a962/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d75b_4a74_a962.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d75b_4a74_a962&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d75b_4a74_a962"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c577_d929_df37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c577_d929_df37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c577_d929_df37/request", "", "public", "Top Dataset, std, wspd.nobs (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c577_d929_df37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c577_d929_df37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c577_d929_df37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c577_d929_df37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c577_d929_df37&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c577_d929_df37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc2e_639c_f4a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc2e_639c_f4a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc2e_639c_f4a0/request", "", "public", "Top Dataset, std, wspd.sextile1 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc2e_639c_f4a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc2e_639c_f4a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc2e_639c_f4a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc2e_639c_f4a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc2e_639c_f4a0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cc2e_639c_f4a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_071a_3a36_230a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_071a_3a36_230a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_071a_3a36_230a/request", "", "public", "Top Dataset, std, wspd.sextile3 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_071a_3a36_230a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_071a_3a36_230a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_071a_3a36_230a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_071a_3a36_230a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_071a_3a36_230a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_071a_3a36_230a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_138e_1085_a270", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_138e_1085_a270.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_138e_1085_a270/request", "", "public", "Top Dataset, std, wspd.sextile5 (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_138e_1085_a270_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_138e_1085_a270_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_138e_1085_a270/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_138e_1085_a270.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_138e_1085_a270&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_138e_1085_a270"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2275_b996_15cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2275_b996_15cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2275_b996_15cb/request", "", "public", "Top Dataset, std, wspd.stddev (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Scalar Wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2275_b996_15cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2275_b996_15cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2275_b996_15cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2275_b996_15cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2275_b996_15cb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2275_b996_15cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0026_0408_db77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0026_0408_db77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0026_0408_db77/request", "", "public", "Top Dataset, std, wspd3.day fraction (ICOADS 1-degree Standard), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Standard (Top Dataset, std, wspd3.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd3 (Scalar Wind Cubed Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0026_0408_db77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0026_0408_db77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0026_0408_db77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0026_0408_db77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0026_0408_db77&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0026_0408_db77"] + ] + } + } + recorded_at: 2019-01-31 19:30:23 GMT + recorded_with: vcr/0.2.2, webmockr/0.3.0 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/search/advanced.json?searchFor=temperature&page=1&itemsPerPage=1000&protocol=tabledap + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.7.0.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Thu, 31 Jan 2019 19:31:16 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=AdvancedSearch.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_490d_1198_15c1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_490d_1198_15c1.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_490d_1198_15c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_490d_1198_15c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_490d_1198_15c1/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_490d_1198_15c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_490d_1198_15c1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_490d_1198_15c1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://www.usgodae.org/cgi-bin/datalist.pl?summary=Go&dset=fnmoc_obs_sfcobs", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the November 2018 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "http://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e5b4_d905_99ef", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e5b4_d905_99ef.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e5b4_d905_99ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e5b4_d905_99ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e5b4_d905_99ef/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e5b4_d905_99ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e5b4_d905_99ef&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "hawaii_soest_e5b4_d905_99ef"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_190f_1fe8_4cc4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_190f_1fe8_4cc4.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitors water quality at several beaches across the island of Maui in the State of Hawaii. This community-based monitoring effort provides valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites are also monitored for harmful bacteria levels of Enterococcus. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. \n\nData are managed through an online repository, the Coral Reef Monitoring Data Portal (http://monitoring.coral.org), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection is coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\n... (10 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_190f_1fe8_4cc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_190f_1fe8_4cc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_190f_1fe8_4cc4/index.json", "http://monitoring.coral.org", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_190f_1fe8_4cc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_190f_1fe8_4cc4&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "hawaii_soest_190f_1fe8_4cc4"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5673_517d_3b8c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5673_517d_3b8c.graph", "", "", "public", "PacIOOS Nearshore Sensor 01 (NS01): Waikiki Yacht Club, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS01 is located at the Waikiki Yacht Club and is fixed to the bridge pier. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to a piling ~0.5m below mean sea level.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5673_517d_3b8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5673_517d_3b8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5673_517d_3b8c/index.json", "http://www.pacioos.hawaii.edu/water/sensor-waikiki/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5673_517d_3b8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5673_517d_3b8c&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5673_517d_3b8c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_1273_fad1_0404", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_1273_fad1_0404.graph", "", "", "public", "PacIOOS Nearshore Sensor 02 (NS02): Hawaii Yacht Club, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS02 is located at a floating dock off the Hawaii Yacht Club. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to a floating dock just below the ocean surface.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nturbidity_dm_qd (Turbidity quality descriptor)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nchlorophyll_dm_qd (Chlorophyll quality descriptor)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_1273_fad1_0404_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_1273_fad1_0404_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_1273_fad1_0404/index.json", "http://www.pacioos.hawaii.edu/water/sensor-hawaiiyachtclub/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_1273_fad1_0404.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_1273_fad1_0404&showErrors=false&email=", "University of Hawaii", "hawaii_soest_1273_fad1_0404"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d787_1c35_208d", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d787_1c35_208d.graph", "", "", "public", "PacIOOS Nearshore Sensor 03 (NS03): Hilton Hawaiian Pier, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS03 is located at the Atlantis Pier off the Hilton Hawaiian Village. The instrument is a Sea-Bird Electronics model 37SMP. The package is located at approximately 2.0 meters below mean sea level.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\npressure_dm_qd (Pressure quality descriptor)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d787_1c35_208d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d787_1c35_208d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d787_1c35_208d/index.json", "http://www.pacioos.hawaii.edu/water/sensor-atlantis/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d787_1c35_208d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d787_1c35_208d&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d787_1c35_208d"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_c9f9_c232_1fe9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_c9f9_c232_1fe9.graph", "", "", "public", "PacIOOS Nearshore Sensor 04 (NS04): Waikiki Aquarium, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS04 is located just off the Waikiki Aquarium and is fixed to the pier. The instrument is a Sea-Bird Electronics model 37SMP. The package is mounted on the bottom in approximately 2.0 to 2.5 meters ocean depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\npressure_dm_qd (Pressure quality descriptor)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_c9f9_c232_1fe9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_c9f9_c232_1fe9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_c9f9_c232_1fe9/index.json", "http://www.pacioos.hawaii.edu/water/sensor-waikikiaquarium/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_c9f9_c232_1fe9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_c9f9_c232_1fe9&showErrors=false&email=", "University of Hawaii", "hawaii_soest_c9f9_c232_1fe9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b55f_a8f2_ad70", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b55f_a8f2_ad70.graph", "", "", "public", "PacIOOS Nearshore Sensor 05 (NS05): Pago Pago, American Samoa", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS05 is located at the Department of Marine and Wildlife Resources (DMWR) dock in Pago Pago Harbor, American Samoa and is mounted to the bottom in about 2 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_b55f_a8f2_ad70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_b55f_a8f2_ad70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_b55f_a8f2_ad70/index.json", "http://www.pacioos.hawaii.edu/water/sensor-pagopago/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_b55f_a8f2_ad70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_b55f_a8f2_ad70&showErrors=false&email=", "University of Hawaii", "hawaii_soest_b55f_a8f2_ad70"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f59_c29c_d820", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f59_c29c_d820.graph", "", "", "public", "PacIOOS Nearshore Sensor 06 (NS06): Pohnpei, Micronesia", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS06 is located at the dock in Pohnpei lagoon and is mounted to the bottom in about 1 meter of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8f59_c29c_d820_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8f59_c29c_d820_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8f59_c29c_d820/index.json", "http://www.pacioos.hawaii.edu/water/sensor-pohnpei/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8f59_c29c_d820.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8f59_c29c_d820&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8f59_c29c_d820"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_77b7_f5dd_cda3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_77b7_f5dd_cda3.graph", "", "", "public", "PacIOOS Nearshore Sensor 07 (NS07): Majuro, Marshall Islands", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS07 is located at the Uliga dock in Majuro, Republic of the Marshall Islands and is mounted to the bottom in about 2 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_77b7_f5dd_cda3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_77b7_f5dd_cda3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_77b7_f5dd_cda3/index.json", "http://www.pacioos.hawaii.edu/water/sensor-majuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_77b7_f5dd_cda3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_77b7_f5dd_cda3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_77b7_f5dd_cda3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e3c0_a956_de01", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e3c0_a956_de01.graph", "", "", "public", "PacIOOS Nearshore Sensor 08 (NS08): Koror, Palau", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS08 is located at the Palau International Coral Reef Center (PICRC) dock in Koror, Palau and is mounted to the bottom in about 3.5 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e3c0_a956_de01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e3c0_a956_de01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e3c0_a956_de01/index.json", "http://www.pacioos.hawaii.edu/water/sensor-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e3c0_a956_de01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e3c0_a956_de01&showErrors=false&email=", "University of Hawaii", "hawaii_soest_e3c0_a956_de01"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0113_b43d_e024", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0113_b43d_e024.graph", "", "", "public", "PacIOOS Nearshore Sensor 09 (NS09): Cetti Bay, Guam", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS09 is approximately 70 meters offshore in Cetti Bay, Guam and is mounted to the bottom in about 3 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_0113_b43d_e024_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_0113_b43d_e024_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_0113_b43d_e024/index.json", "http://www.pacioos.hawaii.edu/water/sensor-cetti/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_0113_b43d_e024.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_0113_b43d_e024&showErrors=false&email=", "University of Hawaii", "hawaii_soest_0113_b43d_e024"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f25e_31a1_16f1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f25e_31a1_16f1.graph", "", "", "public", "PacIOOS Nearshore Sensor 10 (NS10): Maunalua Bay, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS10 is located off the old pier in Maunalua Bay in Hawaii Kai. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to the pier at about 2m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nturbidity_dm_qd (Turbidity quality descriptor)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nchlorophyll_dm_qd (Chlorophyll quality descriptor)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\npressure_dm_qd (Pressure quality descriptor)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f25e_31a1_16f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f25e_31a1_16f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f25e_31a1_16f1/index.json", "http://www.pacioos.hawaii.edu/water/sensor-maunalua/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f25e_31a1_16f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f25e_31a1_16f1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f25e_31a1_16f1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8668_b202_8233", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8668_b202_8233.graph", "", "", "public", "PacIOOS Nearshore Sensor 11 (NS11): Saipan, CNMI", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS11 is approximately 20 meters offshore of Puntan Babpot near the golf course at Laolao Bay on the east shore of Saipan in the Commonwealth of the Northern Mariana Islands (CNMI) and is mounted to the bottom in about 3 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8668_b202_8233_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8668_b202_8233_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8668_b202_8233/index.json", "http://www.pacioos.hawaii.edu/water/sensor-saipan/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8668_b202_8233.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8668_b202_8233&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8668_b202_8233"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b10c_af2d_3fe8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b10c_af2d_3fe8.graph", "", "", "public", "PacIOOS Nearshore Sensor 12 (NS12): Kalama Beach Park, Maui, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS12 is located at Kalama Beach Park in Kihei, Maui. The instrument is a 6600V2-4 Multi-parameter water quality logger. The package is fixed to a mooring at about 1.5m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\nwater_depth (Sensor depth, m)\nph (1)\noxygen (Dissolved oxygen concentration, kg m-3)\noxygen_saturation (Dissolved oxygen saturation, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_b10c_af2d_3fe8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_b10c_af2d_3fe8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_b10c_af2d_3fe8/index.json", "http://www.pacioos.hawaii.edu/water/sensor-kalama/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_b10c_af2d_3fe8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_b10c_af2d_3fe8&showErrors=false&email=", "University of Hawaii", "hawaii_soest_b10c_af2d_3fe8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_026f_4c1d_55e5", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_026f_4c1d_55e5.graph", "", "", "public", "PacIOOS Nearshore Sensor 13 (NS13): Kahului, Maui, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS13 is located in Kahului Harbor in Maui. The instrument is a 6600V2-4 Multi-parameter water quality logger. The package is fixed to a piling at about 1.5m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nturbidity_dm_qd (Turbidity quality descriptor)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nchlorophyll_dm_qd (Chlorophyll quality descriptor)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor)\nwater_depth (Sensor depth (processed), m)\nwater_depth_raw (Sensor depth (raw), m)\nwater_depth_dm_qd (Sensor depth quality descriptor)\nph (pH (processed), 1)\nph_raw (pH (raw), 1)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_026f_4c1d_55e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_026f_4c1d_55e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_026f_4c1d_55e5/index.json", "http://www.pacioos.hawaii.edu/water/sensor-kahului/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_026f_4c1d_55e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_026f_4c1d_55e5&showErrors=false&email=", "University of Hawaii", "hawaii_soest_026f_4c1d_55e5"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_191e_fe37_f9a0", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_191e_fe37_f9a0.graph", "", "", "public", "PacIOOS Nearshore Sensor 15 (NS15): Pago Bay, Guam", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS15 is in Pago Bay, Guam and is mounted to the bottom in about 1.5 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_191e_fe37_f9a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_191e_fe37_f9a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_191e_fe37_f9a0/index.json", "http://www.pacioos.hawaii.edu/water/sensor-pago/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_191e_fe37_f9a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_191e_fe37_f9a0&showErrors=false&email=", "University of Hawaii", "hawaii_soest_191e_fe37_f9a0"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d5ba_831c_443a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d5ba_831c_443a.graph", "", "", "public", "PacIOOS Nearshore Sensor 16 (NS16): Wailupe, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS16 is located off Wailupe in Maunalua Bay in Aina Haina. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to the pier at about 1m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nturbidity_dm_qd (Turbidity quality descriptor)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nchlorophyll_dm_qd (Chlorophyll quality descriptor)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\npressure_dm_qd (Pressure quality descriptor)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d5ba_831c_443a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d5ba_831c_443a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d5ba_831c_443a/index.json", "http://www.pacioos.hawaii.edu/water/sensor-wailupe/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d5ba_831c_443a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d5ba_831c_443a&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d5ba_831c_443a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_093e_cd55_43a3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_093e_cd55_43a3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_093e_cd55_43a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_093e_cd55_43a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_093e_cd55_43a3/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_093e_cd55_43a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_093e_cd55_43a3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_093e_cd55_43a3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc92_7d24_0627", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc92_7d24_0627.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_cc92_7d24_0627_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_cc92_7d24_0627_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_cc92_7d24_0627/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_cc92_7d24_0627.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_cc92_7d24_0627&showErrors=false&email=", "University of Hawaii", "hawaii_soest_cc92_7d24_0627"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f289_8170_ec45", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f289_8170_ec45.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f289_8170_ec45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f289_8170_ec45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f289_8170_ec45/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f289_8170_ec45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f289_8170_ec45&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f289_8170_ec45"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_36dd_cf4c_73a6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_36dd_cf4c_73a6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_36dd_cf4c_73a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_36dd_cf4c_73a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_36dd_cf4c_73a6/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_36dd_cf4c_73a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_36dd_cf4c_73a6&showErrors=false&email=", "University of Hawaii", "hawaii_soest_36dd_cf4c_73a6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5359_8678_82b1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5359_8678_82b1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5359_8678_82b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5359_8678_82b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5359_8678_82b1/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5359_8678_82b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5359_8678_82b1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5359_8678_82b1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_92c1_a2b0_55fb", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_92c1_a2b0_55fb.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_92c1_a2b0_55fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_92c1_a2b0_55fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_92c1_a2b0_55fb/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_92c1_a2b0_55fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_92c1_a2b0_55fb&showErrors=false&email=", "University of Hawaii", "hawaii_soest_92c1_a2b0_55fb"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_75b3_e52c_26a2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_75b3_e52c_26a2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_75b3_e52c_26a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_75b3_e52c_26a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_75b3_e52c_26a2/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_75b3_e52c_26a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_75b3_e52c_26a2&showErrors=false&email=", "University of Hawaii", "hawaii_soest_75b3_e52c_26a2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_a826_8633_00bb", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_a826_8633_00bb.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_a826_8633_00bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_a826_8633_00bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_a826_8633_00bb/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_a826_8633_00bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_a826_8633_00bb&showErrors=false&email=", "University of Hawaii", "hawaii_soest_a826_8633_00bb"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_076a_87b3_40a0", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_076a_87b3_40a0.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_076a_87b3_40a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_076a_87b3_40a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_076a_87b3_40a0/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_076a_87b3_40a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_076a_87b3_40a0&showErrors=false&email=", "University of Hawaii", "hawaii_soest_076a_87b3_40a0"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_4c82_4728_010b", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_4c82_4728_010b.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_4c82_4728_010b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_4c82_4728_010b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_4c82_4728_010b/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_4c82_4728_010b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_4c82_4728_010b&showErrors=false&email=", "University of Hawaii", "hawaii_soest_4c82_4728_010b"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_856b_7e66_8c3f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_856b_7e66_8c3f.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_856b_7e66_8c3f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_856b_7e66_8c3f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_856b_7e66_8c3f/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_856b_7e66_8c3f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_856b_7e66_8c3f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_856b_7e66_8c3f"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2f21_4063_cfec", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2f21_4063_cfec.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_2f21_4063_cfec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_2f21_4063_cfec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_2f21_4063_cfec/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_2f21_4063_cfec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_2f21_4063_cfec&showErrors=false&email=", "University of Hawaii", "hawaii_soest_2f21_4063_cfec"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7adc_5b2b_769e", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7adc_5b2b_769e.graph", "", "", "public", "PacIOOS Water Quality Buoy 03 (WQB-03): Kiholo Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-03 is located at Kiholo Bay along the leeward (Western) coast of the North Kona district of Big Island in Hawaii. Continuous sampling of this outflow area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\ntemperature (water temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_qd (Temperature quality descriptor, 0)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_qd (Conductivity quality descriptor, 0)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_qd (Salinity quality descriptor, 0)\noxygen (Dissolved oxygen concentration (processed), kg m-3)\noxygen_raw (Dissolved oxygen concentration (raw), kg m-3)\noxygen_qd (Dissolved oxygen concentration quality descriptor, 0)\noxygen_saturation (Dissolved oxygen saturation (processed), 1)\noxygen_saturation_raw (Dissolved oxygen saturation (raw), 1)\noxygen_saturation_qd (Dissolved oxygen saturation quality descriptor, 0)\noxygen_saturation_concentration (Dissolved oxygen saturation concentration (processed), kg m-3)\noxygen_saturation_concentration_raw (Dissolved oxygen saturation concentration (raw), kg m-3)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_7adc_5b2b_769e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_7adc_5b2b_769e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_7adc_5b2b_769e/index.json", "http://www.pacioos.hawaii.edu/water/wqbuoy-kiholo/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_7adc_5b2b_769e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_7adc_5b2b_769e&showErrors=false&email=", "University of Hawaii", "hawaii_soest_7adc_5b2b_769e"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5efb_06ec_ff63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5efb_06ec_ff63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5efb_06ec_ff63.graph", "", "", "public", "PacIOOS Water Quality Buoy 04 (WQB-04): Hilo Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB04 is located in Hilo Bay on the east side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Depth below mean sea level, m)\nstation_name (WQB04: PacIOOS Water Quality Buoy 04 (WQB-04): Hilo Bay, Big Island, Hawaii)\ntemperature (Temperature (processed), Celsius)\nsalinity (Salinity (processed), 1e-3)\nturbidity (Turbidity (processed), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\noxygen (Dissolved oxygen concentration (processed), kg m-3)\noxygen_saturation (Dissolved oxygen saturation (processed), 1)\nph (pH (processed), 1)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature delayed-mode quality descriptor, 0)\ntemperature_qc_gap (QARTOD Gap Test, 0)\ntemperature_qc_syn (0)\ntemperature_qc_loc (QARTOD Location Test, 0)\ntemperature_qc_rng (QARTOD Gross Range Test, 0)\ntemperature_qc_clm (QARTOD Climatological Test, 0)\ntemperature_qc_spk (QARTOD Spike Test, 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test, 0)\ntemperature_qc_flt (QARTOD Flat Line Test, 0)\ntemperature_qc_mvr (QARTOD Multi-Variate Test, 0)\n... (87 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5efb_06ec_ff63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5efb_06ec_ff63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5efb_06ec_ff63/index.json", "http://www.pacioos.hawaii.edu/water/wqbuoy-hilo/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5efb_06ec_ff63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5efb_06ec_ff63&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5efb_06ec_ff63"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5efa_cc6e_79c5", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5efa_cc6e_79c5.graph", "", "", "public", "PacIOOS Water Quality Buoy AW (WQB-AW): Ala Wai, Oahu, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-AW is located at the exit of the Ala Wai Canal, near Magic Island. Continuous sampling of this outflow area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor, 0)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor, 0)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor, 0)\noxygen (Dissolved oxygen concentration (processed), kg m-3)\noxygen_raw (Dissolved oxygen concentration (raw), kg m-3)\noxygen_dm_qd (Dissolved oxygen concentration quality descriptor, 0)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nturbidity_dm_qd (Turbidity quality descriptor, 0)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nchlorophyll_dm_qd (Chlorophyll quality descriptor, 0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5efa_cc6e_79c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5efa_cc6e_79c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5efa_cc6e_79c5/index.json", "http://www.pacioos.hawaii.edu/water/wqbuoy-alawai/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5efa_cc6e_79c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5efa_cc6e_79c5&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5efa_cc6e_79c5"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2d69_a0d9_d559", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2d69_a0d9_d559.graph", "", "", "public", "PacIOOS Water Quality Buoy KN (WQB-KN): Kilo Nalu, Oahu, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-KN is located at the Kilo Nalu Nearshore Reef Observatory, near Kakaako Waterfront Park and Kewalo Basin off of Ala Moana Boulevard in Honolulu. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\ntemperature_dm_qd (Temperature quality descriptor, 0)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nsalinity_dm_qd (Salinity quality descriptor, 0)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nconductivity_dm_qd (Conductivity quality descriptor, 0)\noxygen (Dissolved oxygen concentration (processed), kg m-3)\noxygen_raw (Dissolved oxygen concentration (raw), kg m-3)\noxygen_dm_qd (Dissolved oxygen concentration quality descriptor, 0)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nturbidity_dm_qd (Turbidity quality descriptor, 0)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nchlorophyll_dm_qd (Chlorophyll quality descriptor, 0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_2d69_a0d9_d559_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_2d69_a0d9_d559_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_2d69_a0d9_d559/index.json", "http://www.pacioos.hawaii.edu/water/wqbuoy-kilonalu/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_2d69_a0d9_d559.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_2d69_a0d9_d559&showErrors=false&email=", "University of Hawaii", "hawaii_soest_2d69_a0d9_d559"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f49_4796_ddc3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f49_4796_ddc3.graph", "", "", "public", "Weather Station: Hawaii: Oahu: Coconut Island", "The Hawaii Institute of Marine Biology (HIMB) automatic weather station (AWS) records hourly measurements of precipitation, air temperature, wind speed and direction, and irradiance. Sensors include an Eppley 295-385 nm ultraviolet (UV) radiometer, a LiCor 200SZ Pyranometer, and a LiCor Quantameter (400-700 nm). The sensors are located on the roof of HIMB's Coral Reef Ecology Laboratory (Point Lab) on Moku o Loe (Coconut Island) in Kaneohe Bay on the windward (eastern) coast of Oahu in Hawaii. An accompanying sea water temperature sensor is located less than 10 m offshore of the weather station at a shallow depth of approximately 1 m.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\naltitude (height above mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\nair_temperature (Surface air temperature, Celsius)\nsea_water_temperature (Mean ocean temperature, Celsius)\nwind_speed (Mean wind speed, m s-1)\nwind_from_direction (Mean wind from direction, degrees)\nwind_from_direction_std (Standard deviation of wind from direction, degrees)\nwind_speed_max (Maximum wind gust, m s-1)\nrainfall_amount (Rainfall total, mm)\nshortwave_radiation (Average downwelling shortwave radiation, W m-2)\nphotosynthetic_radiation (Photosynthetically active radiation, umol m-2 s-1)\nultraviolet_radiation (W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8f49_4796_ddc3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8f49_4796_ddc3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8f49_4796_ddc3/index.json", "http://www.pacioos.hawaii.edu/weather/obs-mokuoloe/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8f49_4796_ddc3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8f49_4796_ddc3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8f49_4796_ddc3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d98d_1d43_fef7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d98d_1d43_fef7.graph", "", "", "public", "Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\naltitude (height above mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\nair_temperature (Mean air temperature, Celsius)\nair_temperature_std (Standard deviation of air temperature, Celsius)\nair_temperature_max (Maximum air temperature, Celsius)\nair_temperature_max_time (Time of maximum air temperature, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (Minimum air temperature, Celsius)\nair_temperature_min_time (Time of minimum air temperature, seconds since 1970-01-01T00:00:00Z)\nwind_speed (Mean wind speed, m s-1)\nwind_speed_std (Standard deviation wind speed, m s-1)\nwind_speed_max (Maximum wind speed, m s-1)\nwind_speed_max_time (Time of maximum wind speed, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (Minimum wind speed, m s-1)\nwind_speed_min_time (Time of minimum wind speed, seconds since 1970-01-01T00:00:00Z)\nwind_from_direction (degrees)\nwind_from_direction_std (Standard deviation of wind direction, degrees)\nrainfall_amount (Rainfall total, mm)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d98d_1d43_fef7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d98d_1d43_fef7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d98d_1d43_fef7/index.json", "http://www.coralreefresearchfoundation.org", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d98d_1d43_fef7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d98d_1d43_fef7&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "hawaii_soest_d98d_1d43_fef7"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/database-tables-description", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/database-tables-description", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/cast-table-column-descriptions", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a.graph", "", "", "public", "OceanSITES KEO daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from the Kuroshio Extension Observatory (KEO) site nominally at 32.3N,144.6E, in the Kuroshio Extension recirculation gyre. The actual anchor position is different for each deployment, and this is a slack line mooring with a watch circle radius greater than 5km. For users performing inter comparisons, it may be important to use the actual position of the buoy from the Global Positioning System (GPS) data. This mooring has been instrumented with upper ocean and surface sensors since June 2004. Included in this file are sea temperatures and pressures from the surface to 525m depth, salinity and density (sigma-theta) from the surface to 400m depth, sea currents to 35m depth, a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and barometric pressure. Note that because this is a slack-line mooring, subsurface sensor depths vary with time, and hence one must use the observed and calculated water pressures to compute sensor depths. Also, due to the relatively large scope and different anchor positions, the positions of the buoy at the surface are included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndeptemp (Depth of each measurement, meters)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepth (m)\nPRES (water pressure, observed and calculated, decibar)\nPRES_QC (quality flag)\nPRES_DM (method of data processing)\n... (53 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/keo_121f_a3d0_3c0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/keo_121f_a3d0_3c0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/keo_121f_a3d0_3c0a/index.json", "https://www.pmel.noaa.gov/ocs/", "http://upwell.pfeg.noaa.gov/erddap/rss/keo_121f_a3d0_3c0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=keo_121f_a3d0_3c0a&showErrors=false&email=", "NOAA/PMEL", "keo_121f_a3d0_3c0a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f.graph", "", "", "public", "OceanSITES PAPA daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from station Papa at 50N,145W in the North Pacific. This taut-line mooring has been instrumented with upper ocean and surface sensors since June 2007. Included in this file are sea temperatures from the surface to 300 meters depth, salinity and density (sigma-theta) from the surface to 200m depth, sea currents at 5m and 35m depth, acoustic doppler profiles of zonal and meridional ocean current to from 30 to 158 meters depth, and a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and barometric pressure. Time series of buoy latitude and longitude are included as well.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each measurement, m)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepcur (Depth of each measurement, m)\nUCUR\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\ndeppsal (Depth of each measurement, m)\n... (43 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/papa_8bb5_dcd5_981f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/papa_8bb5_dcd5_981f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/papa_8bb5_dcd5_981f/index.json", "https://www.pmel.noaa.gov/ocs/", "http://upwell.pfeg.noaa.gov/erddap/rss/papa_8bb5_dcd5_981f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=papa_8bb5_dcd5_981f&showErrors=false&email=", "NOAA/PMEL", "papa_8bb5_dcd5_981f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219.graph", "", "", "public", "OceanSITES PIRATA daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from one of the Tropical Atmosphere/Ocean (TAO)/TRITON, Pilot Research Moored Array in the Tropical Atlantic (PIRATA), or Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) mooring sites in the tropical oceans. Included in this file are sea temperatures from the surface to 500 meters at most sites and deeper at others, salinity and potential density (sigma-theta) at the sea surface and deeper at some sites, sea currents at 10m depth and deeper at some sites, a variety of surface observations including winds, air temperature, relative humidity, shortwave solar radiation, longwave radiation, rain rate, barometric pressure. Buoy positions are also included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each TEMP measurement, m)\ndepcur (Depth of each current measurement)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndeppsal (Depth of each Salinity measurement)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\nPSAL (sea_water_practical_salinity)\nPSAL_QC\nPSAL_DM (method of data processing)\ndepden (Depth of each density measurement)\nheightwind (altitude, meters)\nUWND (zonal wind)\nVWND (meridional wind, m/s)\n... (44 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pirata_5922_7dcd_7219_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pirata_5922_7dcd_7219_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pirata_5922_7dcd_7219/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/pirata_5922_7dcd_7219.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pirata_5922_7dcd_7219&showErrors=false&email=", "NOAA/PMEL", "pirata_5922_7dcd_7219"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc.graph", "", "", "public", "OceanSITES TAO daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from one of the flux reference mooring sites in the tropical oceans. Included in this file are sea temperatures from the surface to 500m depth, salinity and density (sigma-theta) from the surface to typically 120m depth, sea currents typically at 10m depth and at some sites deeper, a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and sea level airpressure. Buoy positions are also included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each measurement, m)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\n... (42 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/tao_6eb4_e773_2fbc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/tao_6eb4_e773_2fbc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/tao_6eb4_e773_2fbc/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/tao_6eb4_e773_2fbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=tao_6eb4_e773_2fbc&showErrors=false&email=", "NOAA/PMEL", "tao_6eb4_e773_2fbc"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails.graph", "", "", "public", "NWFSC HUD Fish Species Details", "Habitat Use Database (HUD) Fish Species Details compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\nspecies_id\ncommon_name\nscientific_name\nlife_stage\nabsolute_min_depth (m)\npreferred_min_depth (m)\nabsolute_max_depth (m)\npreferred_max_depth (m)\nabsolute_min_temp (Absolute Min Temperature, degree_C)\npreferred_min_temp (Preferred Min Temperature, degree_C)\nabsolute_max_temp (Absolute Max Temperature, degree_C)\npreferred_max_temp (Preferred Max Temperature, degree_C)\nabsolute_min_latitude (degrees_north)\npreferred_min_latitude (degrees_north)\nabsolute_max_latitude (degrees_north)\npreferred_max_latitude (degrees_north)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudFishDetails/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Fish%20Species%20Details.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudFishDetails.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudFishDetails&showErrors=false&email=", "NOAA NWFSC", "nwioosHudFishDetails"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/PRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10180&flag=view\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "http://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys.\n\nThe data is from NOAA NDBC. It has been reformatted by NOAA Coastwatch,\nWest Coast Node. This dataset only has the data that is closest to a\ngiven hour. The time values in the dataset are rounded to the nearest hour.\n\nThis dataset has both historical data (quality controlled, before\n2018-11-01T00:00:00Z) and near real time data (less quality controlled, from\n2018-11-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Name)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nwd (Wind Direction, degrees_true)\nwspd (Wind Speed, m s-1)\ngst (Wind Gust Speed, m s-1)\nwvht (Wave Height, m)\ndpd (Wave Period, Dominant, s)\napd (Wave Period, Average, s)\nmwd (Wave Direction, degrees_true)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents.graph", "", "", "public", "NOAA NDBC SOS, 2007-present, currents", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have currents data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\nWARNING: Always check the quality_flags before using this data. A simple criterion is: only use a row of data if the first quality_flags value for the row (overall bin status) is 3 (good data/passed quality test). You can do this by appending &quality_flags=~\"3;.*\" to your request.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nbin (count)\ndirection_of_sea_water_velocity (degrees_true)\nsea_water_speed (cm/s)\nupward_sea_water_velocity (cm/s)\nerror_velocity (cm/s)\nplatform_orientation (degrees_true)\nplatform_pitch_angle (degree)\nplatform_roll_angle (degree)\nsea_water_temperature (Cel)\npct_good_3_beam (Percent Good 3 Beam, percent)\npct_good_4_beam (Percent Good 4 Beam, percent)\npct_rejected (Percent Rejected, percent)\npct_bad (Percent Bad, percent)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosCurrents_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosCurrents_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosCurrents/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosCurrents.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosCurrents&showErrors=false&email=", "NOAA NDBC", "ndbcSosCurrents"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "http://www.ogcnetwork.net/node/344", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp.graph", "", "", "public", "NOAA NDBC SOS, 2006-present, sea_water_temperature", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_water_temperature data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWTemp/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWTemp&showErrors=false&email=", "NOAA NDBC", "ndbcSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttp://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"] + ] + } + } + recorded_at: 2019-01-31 19:30:23 GMT + recorded_with: vcr/0.2.2, webmockr/0.3.0 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/search/advanced.json?page=1&itemsPerPage=1000&protocol=griddap&maxLat=63&minLon=-107&maxLon=-87&minLat=50 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.7.0.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Thu, 31 Jan 2019 19:31:17 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=AdvancedSearch.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAmsreSstMon_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAmsreSstMon_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAmsreSstMon_LonPM180/request", "", "public", "AMSRE Model Output, obs4MIPs NASA-JPL, Global, 1 Degree, 2002-2010, Monthly, Lon+/-180", "This data set contains sea surface temperature (SST) data on a monthly 1 degree grid from the Advanced Microwave Scanning Radiometer (AMSR-E) aboard NASA's Aqua spacecraft. The data were produced by Remote Sensing Systems in support of the CMIP5 (Coupled Model Intercomparison Project Phase 5) under the World Climate Research Program (WCRP). Along with this dataset, two additional ancillary data files are included in the same directory which contain the number of observations and standard error co-located on the same 1 degree grids. AMSR-E, a passive-microwave radiometer launched on the Aqua platform on 4 May 2002, was provided by the National Space Development Agency (NASDA) of Japan to NASA as an indispensable part of Aqua's global hydrology mission. Over the oceans, AMSR-E is measuring a number of important geophysical parameters, including SST, wind speed, atmospheric water vapor, cloud water, and rain rate. A key feature of AMSR-E is its capability to see through clouds, thereby providing an uninterrupted view of global SST and surface wind fields. For more information, see\nftp://podaac.jpl.nasa.gov/OceanTemperature/amsre/L3/sst_1deg_1mo/docs/tosTechNote_AMSRE_L3_v7_200206-201012.pdf\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntos (Sea Surface Temperature, degree_C)\ntosNobs (Number of Observations, 1)\ntosStderr (Standard Error, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAmsreSstMon_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAmsreSstMon_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAmsreSstMon_LonPM180/index.json", "https://podaac.jpl.nasa.gov/dataset/AMSRE_L3_SST_1DEG_1MO", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAmsreSstMon_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAmsreSstMon_LonPM180&showErrors=false&email=", "Remote Sensing Systems", "jplAmsreSstMon_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_b88b_1451_f102", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_b88b_1451_f102.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_b88b_1451_f102/request", "", "public", "Analysed blended SST over the global ocean using day and night input data", "Analysed blended sea surface temperature over the global ocean using day and night input data. An SST estimation scheme which combines multi-satellite retrievals of sea surface temperature datasets available from polar orbiters, geostationary InfraRed (IR) and microwave sensors into a single global analysis. This global SST ananlysis provide a daily gap free map of the foundation sea surface temperature at 0.05o spatial resolution. (Geo Polar Blended-Office of Satellite and Product Operations (OSPO)-L4-GLOB-v1.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nmask (sea/land/ice bit mask)\nsea_ice_fraction (1)\nanalysed_sst (analysed sea surface temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_b88b_1451_f102_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_b88b_1451_f102_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_b88b_1451_f102/index.json", "https://podaac.jpl.nasa.gov/dataset/Geo_Polar_Blended-OSPO-L4-GLOB-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_b88b_1451_f102.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_b88b_1451_f102&showErrors=false&email=", "Office of Satellite Products and Operations", "nasa_jpl_b88b_1451_f102"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_7864_0ba8_d6e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_7864_0ba8_d6e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_7864_0ba8_d6e1/request", "", "public", "Analysed blended SST over the global ocean using day and night input data, 0.05\u00b0, 2014-2016", "Analysed blended sea surface temperature over the global ocean using day and night input data. An SST estimation scheme which combines multi-satellite retrievals of sea surface temperature datasets available from polar orbiters, geostationary InfraRed (IR) and microwave sensors into a single global analysis. This global SST ananlysis provide a daily gap free map of the foundation sea surface temperature at 0.05o spatial resolution.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nmask (sea/land/ice bit mask)\nsea_ice_fraction (1)\nanalysed_sst (analysed sea surface temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_7864_0ba8_d6e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_7864_0ba8_d6e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_7864_0ba8_d6e1/index.json", "https://podaac.jpl.nasa.gov/dataset/Geo_Polar_Blended-OSPO-L4-GLOB-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_7864_0ba8_d6e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_7864_0ba8_d6e1&showErrors=false&email=", "Office of Satellite Products and Operations", "nasa_jpl_7864_0ba8_d6e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_1a3a_c9d5_2366", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_1a3a_c9d5_2366.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_1a3a_c9d5_2366/request", "", "public", "Analysed blended SST over the global ocean using night only input data", "Analysed blended sea surface temperature over the global ocean using night only input data. An SST estimation scheme which combines multi-satellite retrievals of sea surface temperature datasets available from polar orbiters, geostationary InfraRed (IR) and microwave sensors into a single global analysis. This global SST ananlysis provide a daily gap free map of the foundation sea surface temperature at 0.05o spatial resolution. (Geo Polar Blended Night-Office of Satellite and Product Operations (OSPO)-L4-GLOB-v1.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nmask (sea/land/ice bit mask)\nsea_ice_fraction (1)\nanalysed_sst (analysed sea surface temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_1a3a_c9d5_2366_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_1a3a_c9d5_2366_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_1a3a_c9d5_2366/index.json", "https://podaac.jpl.nasa.gov/dataset/Geo_Polar_Blended_Night-OSPO-L4-GLOB-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_1a3a_c9d5_2366.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_1a3a_c9d5_2366&showErrors=false&email=", "Office of Satellite Products and Operations", "nasa_jpl_1a3a_c9d5_2366"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_7dc0_f0d8_2b33", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_7dc0_f0d8_2b33.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_7dc0_f0d8_2b33/request", "", "public", "Analysed blended SST over the global ocean using night only input data, 0.05\u00b0, 2014-2016", "Analysed blended sea surface temperature over the global ocean using night only input data. An SST estimation scheme which combines multi-satellite retrievals of sea surface temperature datasets available from polar orbiters, geostationary InfraRed (IR) and microwave sensors into a single global analysis. This global SST ananlysis provide a daily gap free map of the foundation sea surface temperature at 0.05o spatial resolution.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nmask (sea/land/ice bit mask)\nsea_ice_fraction (1)\nanalysed_sst (analysed sea surface temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_7dc0_f0d8_2b33_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_7dc0_f0d8_2b33_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_7dc0_f0d8_2b33/index.json", "https://podaac.jpl.nasa.gov/dataset/Geo_Polar_Blended_Night-OSPO-L4-GLOB-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_7dc0_f0d8_2b33.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_7dc0_f0d8_2b33&showErrors=false&email=", "Office of Satellite Products and Operations", "nasa_jpl_7dc0_f0d8_2b33"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_844f_dc54_9c41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_844f_dc54_9c41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_844f_dc54_9c41/request", "", "public", "Analysed foundation SST over the global ocean (MW OI-REMSS-L4-GLOB-v5.0), 0.25\u00b0, 1998-present", "Analysed foundation sea surface temperature over the global ocean. A merged, multi-sensor L4 foundation SST product from Remote Sensing Systems\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (land sea ice lake bit mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_844f_dc54_9c41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_844f_dc54_9c41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_844f_dc54_9c41/index.json", "https://podaac.jpl.nasa.gov/dataset/MW_OI-REMSS-L4-GLOB-v5.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_844f_dc54_9c41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_844f_dc54_9c41&showErrors=false&email=", "REMSS", "nasa_jpl_844f_dc54_9c41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusSSS3MonthV5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusSSS3MonthV5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAquariusSSS3MonthV5/request", "", "public", "Aquarius Sea Surface Salinity, L3 SMI, Version 5, 1.0\u00b0, Global, 2011-2015, 3-Month", "This dataset has 3-month composites of Aquarius Sea Surface Salinity data, version 5. Part of NASA's Earth System Science Pathfinder (ESSP) Mission International Partnership between NASA & CONAE, Aquarius provides unprecedented global maps of surface sea water salinity (SSS) to discover how our oceans respond to climate change and the water cycle. Sea surface salinity, along with sea surface temperature, determines the sea surface density. This controls the formation of water masses in the ocean and regulates the 3-dimensional ocean circulation. Aquarius documentation is at ftp://podaac-ftp.jpl.nasa.gov/allData/aquarius/docs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAquariusSSS3MonthV5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAquariusSSS3MonthV5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAquariusSSS3MonthV5/index.json", "https://aquarius.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAquariusSSS3MonthV5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAquariusSSS3MonthV5&showErrors=false&email=", "NASA/GSFC OBPG", "jplAquariusSSS3MonthV5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusSSS7DayV5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusSSS7DayV5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAquariusSSS7DayV5/request", "", "public", "Aquarius Sea Surface Salinity, L3 SMI, Version 5, 1.0\u00b0, Global, 2011-2015, 7-Day", "This dataset has 7-day composites of Aquarius Sea Surface Salinity data, version 5. Part of NASA's Earth System Science Pathfinder (ESSP) Mission International Partnership between NASA & CONAE, Aquarius provides unprecedented global maps of surface sea water salinity (SSS) to discover how our oceans respond to climate change and the water cycle. Sea surface salinity, along with sea surface temperature, determines the sea surface density. This controls the formation of water masses in the ocean and regulates the 3-dimensional ocean circulation. Aquarius documentation is at ftp://podaac-ftp.jpl.nasa.gov/allData/aquarius/docs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAquariusSSS7DayV5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAquariusSSS7DayV5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAquariusSSS7DayV5/index.json", "https://aquarius.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAquariusSSS7DayV5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAquariusSSS7DayV5&showErrors=false&email=", "NASA/GSFC OBPG", "jplAquariusSSS7DayV5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusSSSDailyV5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusSSSDailyV5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAquariusSSSDailyV5/request", "", "public", "Aquarius Sea Surface Salinity, L3 SMI, Version 5, 1.0\u00b0, Global, 2011-2015, Daily", "This dataset has daily composites of Aquarius Sea Surface Salinity data, version 5. Part of NASA's Earth System Science Pathfinder (ESSP) Mission International Partnership between NASA & CONAE, Aquarius provides unprecedented global maps of surface sea water salinity (SSS) to discover how our oceans respond to climate change and the water cycle. Sea surface salinity, along with sea surface temperature, determines the sea surface density. This controls the formation of water masses in the ocean and regulates the 3-dimensional ocean circulation. Aquarius documentation is at ftp://podaac-ftp.jpl.nasa.gov/allData/aquarius/docs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAquariusSSSDailyV5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAquariusSSSDailyV5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAquariusSSSDailyV5/index.json", "https://aquarius.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAquariusSSSDailyV5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAquariusSSSDailyV5&showErrors=false&email=", "NASA/GSFC OBPG", "jplAquariusSSSDailyV5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusSSSMonthlyV5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusSSSMonthlyV5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAquariusSSSMonthlyV5/request", "", "public", "Aquarius Sea Surface Salinity, L3 SMI, Version 5, 1.0\u00b0, Global, 2011-2015, Monthly", "This dataset has monthly composites of Aquarius Sea Surface Salinity data, version 5. Part of NASA's Earth System Science Pathfinder (ESSP) Mission International Partnership between NASA & CONAE, Aquarius provides unprecedented global maps of surface sea water salinity (SSS) to discover how our oceans respond to climate change and the water cycle. Sea surface salinity, along with sea surface temperature, determines the sea surface density. This controls the formation of water masses in the ocean and regulates the 3-dimensional ocean circulation. Aquarius documentation is at ftp://podaac-ftp.jpl.nasa.gov/allData/aquarius/docs\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss (Sea Surface Salinity, PSU)\nsss_ran_unc (Sea Surface Salinity Uncertainty (random))\nsss_sys_unc (Sea Surface Salinity Uncertainty (systematic))\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAquariusSSSMonthlyV5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAquariusSSSMonthlyV5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAquariusSSSMonthlyV5/index.json", "https://aquarius.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAquariusSSSMonthlyV5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAquariusSSSMonthlyV5&showErrors=false&email=", "NASA/GSFC OBPG", "jplAquariusSSSMonthlyV5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_da4e_3fc9_f107", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_da4e_3fc9_f107.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_da4e_3fc9_f107/request", "", "public", "Archived Suite of NOAA Coral Reef Watch Operational Twice-Weekly Near-Real-Time Global 50km Satellite Coral Bleaching Monitoring Products [time][latitude][longitude], 0.5\u00b0, 2000-2018", "These are Coral Reef Watch near-real-time satellite coral bleaching monitoring products produced twice a week. CoastWatch Utilities v3.2.1 or higher (https://coastwatch.noaa.gov/cw_software.html) can be used for viewing, analyzing, and plotting the data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nCRW_SST (Twice-weekly global 50km satellite nighttime sea surface temperature, degree_C)\nCRW_SSTANOMALY (Twice-weekly global 50km satellite nighttime sea surface temperature anomaly, degree_C)\nCRW_HOTSPOT (Twice-weekly global 50km satellite coral bleaching HotSpot, degree_C)\nCRW_DHW (Twice-weekly global 50km satellite coral bleaching Degree Heating Weeks, degree Celsius-weeks)\nsurface_flag (Pixel characteristics flag array)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_da4e_3fc9_f107_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_da4e_3fc9_f107_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_da4e_3fc9_f107/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/crw50km_test/crw_allinone_20180109.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_da4e_3fc9_f107.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_da4e_3fc9_f107&showErrors=false&email=", "U.S. DOC/NOAA Coral Reef Watch", "noaa_nodc_da4e_3fc9_f107"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0f87_43a1_50d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0f87_43a1_50d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_0f87_43a1_50d3/request", "", "public", "Arctic Seas Regional Climatology : salinity Annual 0.25 degree (salinity annual quarter), 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_0f87_43a1_50d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_0f87_43a1_50d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_0f87_43a1_50d3/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_0f87_43a1_50d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_0f87_43a1_50d3&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_0f87_43a1_50d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f782_bc50_b9da", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f782_bc50_b9da.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_f782_bc50_b9da/request", "", "public", "Arctic Seas Regional Climatology : salinity Annual 1.00 degree (salinity annual one), 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_f782_bc50_b9da_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_f782_bc50_b9da_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_f782_bc50_b9da/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_f782_bc50_b9da.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_f782_bc50_b9da&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_f782_bc50_b9da"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_342f_3d14_5607", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_342f_3d14_5607.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_342f_3d14_5607/request", "", "public", "Arctic Seas Regional Climatology : salinity November 0.25 degree (salinity monthly quarter), 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_342f_3d14_5607_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_342f_3d14_5607_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_342f_3d14_5607/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_342f_3d14_5607.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_342f_3d14_5607&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_342f_3d14_5607"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6ac1_daeb_4a22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6ac1_daeb_4a22.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6ac1_daeb_4a22/request", "", "public", "Arctic Seas Regional Climatology : salinity November 1.00 degree (salinity monthly one), 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6ac1_daeb_4a22_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6ac1_daeb_4a22_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6ac1_daeb_4a22/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6ac1_daeb_4a22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6ac1_daeb_4a22&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_6ac1_daeb_4a22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_fa05_b9af_6087", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_fa05_b9af_6087.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_fa05_b9af_6087/request", "", "public", "Arctic Seas Regional Climatology : salinity Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_fa05_b9af_6087_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_fa05_b9af_6087_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_fa05_b9af_6087/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_fa05_b9af_6087.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_fa05_b9af_6087&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_fa05_b9af_6087"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_25bf_d46b_b742", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_25bf_d46b_b742.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_25bf_d46b_b742/request", "", "public", "Arctic Seas Regional Climatology : salinity Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_25bf_d46b_b742_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_25bf_d46b_b742_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_25bf_d46b_b742/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_25bf_d46b_b742.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_25bf_d46b_b742&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_25bf_d46b_b742"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e7bb_a1f5_fbbe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e7bb_a1f5_fbbe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e7bb_a1f5_fbbe/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e7bb_a1f5_fbbe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e7bb_a1f5_fbbe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e7bb_a1f5_fbbe/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e7bb_a1f5_fbbe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e7bb_a1f5_fbbe&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_e7bb_a1f5_fbbe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ca51_7345_079c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ca51_7345_079c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_ca51_7345_079c/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_ca51_7345_079c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_ca51_7345_079c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_ca51_7345_079c/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_ca51_7345_079c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_ca51_7345_079c&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_ca51_7345_079c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b9f2_8a6d_eaa7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b9f2_8a6d_eaa7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b9f2_8a6d_eaa7/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b9f2_8a6d_eaa7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b9f2_8a6d_eaa7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b9f2_8a6d_eaa7/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b9f2_8a6d_eaa7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b9f2_8a6d_eaa7&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_b9f2_8a6d_eaa7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2dfc_5215_06b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2dfc_5215_06b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_2dfc_5215_06b7/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_2dfc_5215_06b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_2dfc_5215_06b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_2dfc_5215_06b7/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_2dfc_5215_06b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_2dfc_5215_06b7&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_2dfc_5215_06b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cccf_c109_612f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cccf_c109_612f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_cccf_c109_612f/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_cccf_c109_612f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_cccf_c109_612f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_cccf_c109_612f/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_cccf_c109_612f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_cccf_c109_612f&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_cccf_c109_612f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7351_63e8_14f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7351_63e8_14f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7351_63e8_14f6/request", "", "public", "Arctic Seas Regional Climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature and salinity for the Arctic Seas and environs from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7351_63e8_14f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7351_63e8_14f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7351_63e8_14f6/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/arctic/about_arctic.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7351_63e8_14f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7351_63e8_14f6&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_7351_63e8_14f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1847_812f_2105", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1847_812f_2105.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_1847_812f_2105/request", "", "public", "AVHRR Pathfinder Version 5.2 L3-Collated (L3C) SST (pathFinderV5.2 day 2012 020614)", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\nsst_dtime (time difference from reference time, second)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (Deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nquality_level (SST measurement quality)\npathfinder_quality_level (Pathfinder SST quality flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_1847_812f_2105_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_1847_812f_2105_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_1847_812f_2105/index.json", "https://pathfinder.nodc.noaa.gov/ISO-AVHRR_Pathfinder-NODC-L3C-v5.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_1847_812f_2105.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_1847_812f_2105&showErrors=false&email=", "NOAA NODC", "noaa_nodc_1847_812f_2105"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7071_edc2_c76a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7071_edc2_c76a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7071_edc2_c76a/request", "", "public", "AVHRR Pathfinder Version 5.2 L3-Collated (L3C) SST (pathFinderV5.2 day), 1981-2011", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\nsst_dtime (time difference from reference time, second)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (Deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nquality_level (SST measurement quality)\npathfinder_quality_level (Pathfinder SST quality flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7071_edc2_c76a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7071_edc2_c76a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7071_edc2_c76a/index.json", "https://pathfinder.nodc.noaa.gov/ISO-AVHRR_Pathfinder-NODC-L3C-v5.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7071_edc2_c76a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7071_edc2_c76a&showErrors=false&email=", "NOAA NODC", "noaa_nodc_7071_edc2_c76a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6a44_2cb9_686f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6a44_2cb9_686f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6a44_2cb9_686f/request", "", "public", "AVHRR Pathfinder Version 5.2 L3-Collated (L3C) SST (pathFinderV5.2 night 2012 020614)", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\nsst_dtime (time difference from reference time, second)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (Deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nquality_level (SST measurement quality)\npathfinder_quality_level (Pathfinder SST quality flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6a44_2cb9_686f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6a44_2cb9_686f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6a44_2cb9_686f/index.json", "https://pathfinder.nodc.noaa.gov/ISO-AVHRR_Pathfinder-NODC-L3C-v5.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6a44_2cb9_686f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6a44_2cb9_686f&showErrors=false&email=", "NOAA NODC", "noaa_nodc_6a44_2cb9_686f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_78e2_de17_8305", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_78e2_de17_8305.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_78e2_de17_8305/request", "", "public", "AVHRR Pathfinder Version 5.2 L3-Collated (L3C) SST (pathFinderV5.2 night), 1981-2011", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\nsst_dtime (time difference from reference time, second)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (Deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nquality_level (SST measurement quality)\npathfinder_quality_level (Pathfinder SST quality flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_78e2_de17_8305_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_78e2_de17_8305_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_78e2_de17_8305/index.json", "https://pathfinder.nodc.noaa.gov/ISO-AVHRR_Pathfinder-NODC-L3C-v5.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_78e2_de17_8305.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_78e2_de17_8305&showErrors=false&email=", "NOAA NODC", "noaa_nodc_78e2_de17_8305"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nceiPH53sstd1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nceiPH53sstd1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nceiPH53sstd1day/request", "", "public", "AVHRR Pathfinder Version 5.3 L3-Collated (L3C) SST, Global, 0.0417\u00b0, 1981-present, Daytime (1 Day Composite)", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.3 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.3 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created by the NOAA National Centers for Environmental Information (NCEI).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\ndt_analysis (deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction (percent)\nquality_level (quality level of SST pixel, 1)\npathfinder_quality_level (Pathfinder SST quality flag, 1)\nl2p_flags (1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nceiPH53sstd1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nceiPH53sstd1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nceiPH53sstd1day/index.json", "https://data.nodc.noaa.gov/cgi-bin/iso?id=gov.noaa.nodc:AVHRR_Pathfinder-NCEI-L3C-v5.3", "http://upwell.pfeg.noaa.gov/erddap/rss/nceiPH53sstd1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nceiPH53sstd1day&showErrors=false&email=", "NCEI", "nceiPH53sstd1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nceiPH53sstn1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nceiPH53sstn1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nceiPH53sstn1day/request", "", "public", "AVHRR Pathfinder Version 5.3 L3-Collated (L3C) SST, Global, 0.0417\u00b0, 1981-present, Nighttime (1 Day Composite)", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.3 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.3 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created by the NOAA National Centers for Environmental Information (NCEI).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\ndt_analysis (deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction (percent)\nquality_level (quality level of SST pixel, 1)\npathfinder_quality_level (Pathfinder SST quality flag, 1)\nl2p_flags (1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nceiPH53sstn1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nceiPH53sstn1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nceiPH53sstn1day/index.json", "https://data.nodc.noaa.gov/cgi-bin/iso?id=gov.noaa.nodc:AVHRR_Pathfinder-NCEI-L3C-v5.3", "http://upwell.pfeg.noaa.gov/erddap/rss/nceiPH53sstn1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nceiPH53sstn1day&showErrors=false&email=", "NCEI", "nceiPH53sstn1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_dfcd_429a_212c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_dfcd_429a_212c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_dfcd_429a_212c/request", "", "public", "AVHRR SST METOP A GLB-OSISAF-l3C-V1.0 (SST)", "Sea Surface Temperature. The GLB L3C product derived from METOP A Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures. (AVHRR SST METOP A GLB-Ocean and Sea Ice Satellite Application Facility (OSISAF)-l3C-V1.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (sea surface subskin temperature, degree_C)\nsst_dtime (time difference from reference time, seconds)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (deviation from SST analysis or reference climatology, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nadi_dtime_from_sst (time difference of ADI data from sst measurement, hour)\nsources_of_adi (sources of aerosol dynamic indicator)\nl2p_flags\nquality_level (quality level of SST pixel)\nsatellite_zenith_angle (angular_degree)\nsolar_zenith_angle (angular_degree)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_dfcd_429a_212c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_dfcd_429a_212c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_dfcd_429a_212c/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_METOP_A_GLB-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_dfcd_429a_212c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_dfcd_429a_212c&showErrors=false&email=", "OSISAF", "nasa_jpl_dfcd_429a_212c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAvisoSshMon_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAvisoSshMon_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAvisoSshMon_LonPM180/request", "", "public", "AVISO Model Output, obs4MIPs NASA-JPL, Global, 1 Degree, 1992-2010, Monthly, Lon+/-180", "This dataset contains absolute dynamic topography (similar to sea level but with respect to the geoid) binned and averaged monthly on 1 degree grids. The coverage is from October 1992 to December 2010. These data were provided by AVISO (French space agency data provider) to support the CMIP5 (Coupled Model Intercomparison Project Phase 5) under the World Climate Research Program (WCRP) and was first made available via the JPL Earth System Grid. The dynamic topography are derived from sea surface height measured by several satellites including Envisat, TOPEX/Poseidon, Jason-1 and OSTM/Jason-2, and referenced to the geoid. Along with this dataset, two additional ancillary data files are included in the same directory which contain the number of observations and standard error co-located on the same 1 degree grids. For more information, see\nhttps://podaac.jpl.nasa.gov/dataset/AVISO_L4_DYN_TOPO_1DEG_1MO\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsshag (Sea Surface Height Above Geoid, m)\nnObs (Number of Observations, 1)\nstdErr (Standard Error, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAvisoSshMon_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAvisoSshMon_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAvisoSshMon_LonPM180/index.json", "https://podaac.jpl.nasa.gov/dataset/AVISO_L4_DYN_TOPO_1DEG_1MO", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAvisoSshMon_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAvisoSshMon_LonPM180&showErrors=false&email=", "Centre National d'Etudes Spatiales", "jplAvisoSshMon_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAbomGhrsstL4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAbomGhrsstL4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAbomGhrsstL4/request", "", "public", "BLUElink Global Australian Multi-Sensor SST Analysis (GAMSSA), daily, 1/4 degree resolution, 0.25\u00b0, 2008-present", "This is a BLUElink> Ocean Forecasting Australia Project research product run operationally at the Bureau of Meteorology. WARNING: some applications are unable to properly handle signed byte values. If byte values >127 are encountered, subtract 256 from this reported value.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, none (fraction))\nmask (sea/land/lake/ice field composite mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAbomGhrsstL4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAbomGhrsstL4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAbomGhrsstL4/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAbomGhrsstL4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAbomGhrsstL4&showErrors=false&email=", "Australian Bureau of Meteorology", "jplAbomGhrsstL4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_addc_c4d7_ef67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_addc_c4d7_ef67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_addc_c4d7_ef67/request", "", "public", "BLUElink Global Australian Multi-Sensor SST Analysis (GAMSSA), daily, 1/4 degree resolution, 0.25\u00b0, 2008-present", "This is a BLUElink> Ocean Forecasting Australia Project research product run operationally at the Bureau of Meteorology. WARNING: some applications are unable to properly handle signed byte values. If byte values >127 are encountered, subtract 256 from this reported value.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, none (fraction))\nmask (sea/land/lake/ice field composite mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_addc_c4d7_ef67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_addc_c4d7_ef67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_addc_c4d7_ef67/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_addc_c4d7_ef67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_addc_c4d7_ef67&showErrors=false&email=", "Australian Bureau of Meteorology", "nasa_jpl_addc_c4d7_ef67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_pmel_3c69_a5f4_1d72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_pmel_3c69_a5f4_1d72.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_pmel_3c69_a5f4_1d72/request", "", "public", "Ca rbonTracker CT2009, Carbontracker CT2009 Fluxes (ct flux) [date][lat][lon], 1.0\u00b0, 2000-2001", "Ca rbonTracker CT2009, Carbontracker CT2009 Fluxes\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nfossil_imposed (imposed surface CO2 flux due to fossil fuel burning, mol m-2 s-1)\nbio_flux_optimized (optimized surface CO2 flux due to terrestrial biosphere exchange, mol m-2 s-1)\nocean_flux_optimized (optimized surface CO2 flux due to air-sea exchange, mol m-2 s-1)\nfire_flux_imposed (imposed surface CO2 flux due to fire emissions, mol m-2 s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_pmel_3c69_a5f4_1d72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_pmel_3c69_a5f4_1d72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_pmel_3c69_a5f4_1d72/index.json", "http://carbontracker.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_pmel_3c69_a5f4_1d72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_pmel_3c69_a5f4_1d72&showErrors=false&email=", "NOAA ESRL", "noaa_pmel_3c69_a5f4_1d72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_d3ac_563c_21bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_d3ac_563c_21bc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_aoml_d3ac_563c_21bc/request", "", "public", "Caribbean and Gulf of Mexico Regional Node, CHLOR MODIS AQUA (CHLOR A), 2016-present", "NETCDF/20180711_TERRA (Caribbean and Gulf of Mexico Regional Node, CHLOR Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchl_a (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_aoml_d3ac_563c_21bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_aoml_d3ac_563c_21bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_aoml_d3ac_563c_21bc/index.json", "https://cwcgom.aoml.noaa.gov/thredds/dodsC/MODISAQUACHLOR/CHLOR_A.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_aoml_d3ac_563c_21bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_aoml_d3ac_563c_21bc&showErrors=false&email=", "NOAA NESDIS CWCGOM, NOAA AOML", "noaa_aoml_d3ac_563c_21bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_4356_201f_c48c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_4356_201f_c48c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_aoml_4356_201f_c48c/request", "", "public", "Caribbean and Gulf of Mexico Regional Node, GLOBAL MONTHLY CARBON FLUXES, 1982-2016", "Caribbean and Gulf of Mexico Regional Node, GLOBAL MONTHLY CARBON FLUXES\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nflux (Sea-Air Carbon Flux, molm-2Yr-1)\nflux_anom (Sea-Air Carbon Flux Anomaly, molm-2Yr-1)\ndifco2 (Surface Water-Atmospheric Partial Pressure Difference, uatm)\ndifco2_anom (Surface Water-Atmospheric Part. Press Diff Anom, uatm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_aoml_4356_201f_c48c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_aoml_4356_201f_c48c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_aoml_4356_201f_c48c/index.json", "https://cwcgom.aoml.noaa.gov/thredds/dodsC/GLOBAL_MONTHLY_CARBON_FLUXES/FLUXES.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_aoml_4356_201f_c48c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_aoml_4356_201f_c48c&showErrors=false&email=", "NOAA NESDIS CWCGOM, NOAA AOML", "noaa_aoml_4356_201f_c48c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_a82b_2ec0_f8b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_a82b_2ec0_f8b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_aoml_a82b_2ec0_f8b5/request", "", "public", "Caribbean and Gulf of Mexico Regional Node, GLOBAL SEASON CARBON FLUXES, 1982-2016", "Caribbean and Gulf of Mexico Regional Node, GLOBAL SEASON CARBON FLUXES\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nflux (Seasonal Sea-Air Carbon Flux, molm-2Season-1)\nflux_anom (Seasonal Sea-Air Carbon Flux Anom, molm-2Season-1)\ndifco2 (Surface Water-Atmospheric Part Press Diff, uatm)\ndifco2_anom (Surface Water-Atmospheric Part Press Diff Anom, uatm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_aoml_a82b_2ec0_f8b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_aoml_a82b_2ec0_f8b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_aoml_a82b_2ec0_f8b5/index.json", "https://cwcgom.aoml.noaa.gov/thredds/dodsC/GLOBAL_SEASON_CARBON_FLUXES/FLUXES.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_aoml_a82b_2ec0_f8b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_aoml_a82b_2ec0_f8b5&showErrors=false&email=", "NOAA NESDIS CWCGOM, NOAA AOML", "noaa_aoml_a82b_2ec0_f8b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_9d87_426a_2497", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_9d87_426a_2497.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_aoml_9d87_426a_2497/request", "", "public", "Caribbean and Gulf of Mexico Regional Node, GOES16 SST HOURLY, 0.020000001\u00b0, 2018-present", "Geostationary Operational Environmental Satellite (GOES)-16 Hourly Sea Surface Temperature (Caribbean and Gulf of Mexico Regional Node, GOES16 SST HOURLY)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (sea surface temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_aoml_9d87_426a_2497_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_aoml_9d87_426a_2497_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_aoml_9d87_426a_2497/index.json", "https://cwcgom.aoml.noaa.gov/thredds/dodsC/GOES16SSTHOURLY/SST.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_aoml_9d87_426a_2497.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_aoml_9d87_426a_2497&showErrors=false&email=", "NOAA NESDIS CWCGOM, NOAA AOML", "noaa_aoml_9d87_426a_2497"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_22bb_251b_1e38", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_22bb_251b_1e38.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_aoml_22bb_251b_1e38/request", "", "public", "Caribbean and Gulf of Mexico Regional Node, OCEAN GEOSTROPHIC CURRENTS, 0.19999999\u00b0, 2016-present", "Near Real Time Geostrophic Currents (Caribbean and Gulf of Mexico Regional Node, OCEAN GEOSTROPHIC CURRENTS)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nu_current (Eastward Sea Water Velocity, m/s)\nv_current (Northward Sea Water Velocity, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_aoml_22bb_251b_1e38_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_aoml_22bb_251b_1e38_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_aoml_22bb_251b_1e38/index.json", "http://www.aoml.noaa.gov/phod/dataphod/work/trinanes/INTERFACE/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_aoml_22bb_251b_1e38.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_aoml_22bb_251b_1e38&showErrors=false&email=", "CoastWatch, NOAA/AOML", "noaa_aoml_22bb_251b_1e38"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_b508_1f43_1627", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_b508_1f43_1627.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_aoml_b508_1f43_1627/request", "", "public", "Caribbean and Gulf of Mexico Regional Node, SST GOES MSG, 0.05\u00b0, 2017-present", "Geostationary Operational Environmental Satellite (GOES)-Meteosat Second Generation (MSG) Daily Sea Surface Temperature (Caribbean and Gulf of Mexico Regional Node, SST GOES MSG)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (sea surface temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_aoml_b508_1f43_1627_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_aoml_b508_1f43_1627_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_aoml_b508_1f43_1627/index.json", "https://cwcgom.aoml.noaa.gov/thredds/dodsC/GOESMSGSST/SST.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_aoml_b508_1f43_1627.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_aoml_b508_1f43_1627&showErrors=false&email=", "NOAA NESDIS CWCGOM, NOAA AOML", "noaa_aoml_b508_1f43_1627"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_8ae4_97fc_2f06", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_8ae4_97fc_2f06.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_aoml_8ae4_97fc_2f06/request", "", "public", "Caribbean and Gulf of Mexico Regional Node, SST GOES, 0.05\u00b0, 2015-present", "Caribbean and Gulf of Mexico Regional Node, Sea Surface Temperature (SST) Geostationary Operational Environmental Satellite (GOES)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (sea surface temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_aoml_8ae4_97fc_2f06_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_aoml_8ae4_97fc_2f06_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_aoml_8ae4_97fc_2f06/index.json", "https://cwcgom.aoml.noaa.gov/thredds/dodsC/GOESSST/SST.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_aoml_8ae4_97fc_2f06.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_aoml_8ae4_97fc_2f06&showErrors=false&email=", "NOAA NESDIS CWCGOM, NOAA AOML", "noaa_aoml_8ae4_97fc_2f06"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmpL3Wind6Hourly_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmpL3Wind6Hourly_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplCcmpL3Wind6Hourly_LonPM180/request", "", "public", "CCMP Winds, Atlas FLK v1.1 Derived Surface Winds (Level 3.0), Global, 0.25 Degree, 1987-2011, 6-Hourly, Lon+/-180", "This dataset is derived under the Cross-Calibrated Multi-Platform (CCMP)\nproject and contains a value-added monthly mean ocean surface wind and\npseudostress to approximate a satellite-only climatological data record. The\nCCMP datasets combine cross-calibrated satellite winds obtained from Remote\nSensing Systems (REMSS) using a Variational Analysis Method (VAM) to produce\na high-resolution (0.25 degree) gridded analysis. The CCMP data set includes\ncross-calibrated satellite winds derived from SSM/I, SSMIS, AMSR-E, TRMM TMI,\nQuikSCAT, SeaWinds, WindSat and other satellite instruments as they become\navailable from REMSS. Created by NASA Goddard Space Flight Center under the\nNASA REASoN CAN.\n\nAtlas, R., R. N. Hoffman, J. Ardizzone, S. M. Leidner, J. C. Jusem, D. K.\nSmith, D. Gombos, 2011: A cross-calibrated, multiplatform ocean surface wind\nvelocity product for meteorological and oceanographic applications. Bull.\nAmer. Meteor. Soc., 92, 157-174. doi: 10.1175/2010BAMS2946.1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind at 10 meters, m s-1)\nvwnd (v-wind at 10 meters, m s-1)\nnobs (Number of Observations, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplCcmpL3Wind6Hourly_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplCcmpL3Wind6Hourly_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplCcmpL3Wind6Hourly_LonPM180/index.json", "https://podaac.jpl.nasa.gov/dataset/CCMP_MEASURES_ATLAS_L4_OW_L3_0_WIND_VECTORS_FLK", "http://upwell.pfeg.noaa.gov/erddap/rss/jplCcmpL3Wind6Hourly_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplCcmpL3Wind6Hourly_LonPM180&showErrors=false&email=", "NASA/GSFC, NOAA", "jplCcmpL3Wind6Hourly_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmp35aWindMonthly_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmp35aWindMonthly_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplCcmp35aWindMonthly_LonPM180/request", "", "public", "CCMP Winds, Atlas FLK v1.1 Derived Surface Winds (Level 3.5a), Global, 0.25 Degree, 1987-1987, Monthly, Lon+/-180", "This dataset is derived under the Cross-Calibrated Multi-Platform (CCMP) project and contains a value-added monthly mean ocean surface wind and pseudostress to approximate a satellite-only climatological data record. The CCMP datasets combine cross-calibrated satellite winds obtained from Remote Sensing Systems (REMSS) using a Variational Analysis Method (VAM) to produce a high-resolution (0.25 degree) gridded analysis. The CCMP data set includes cross-calibrated satellite winds derived from SSM/I, SSMIS, AMSR-E, TRMM TMI, QuikSCAT, SeaWinds, WindSat and other satellite instruments as they become available from REMSS. \n\nftp://podaac-ftp.jpl.nasa.gov/allData/ccmp/L3.5a/docs/ccmp_users_guide.pdf\n\nAtlas, R., R. N. Hoffman, J. Ardizzone, S. M. Leidner, J. C. Jusem, D. K. Smith, D. Gombos, 2011: A cross-calibrated, multiplatform ocean surface wind velocity product for meteorological and oceanographic applications. Bull. Amer. Meteor. Soc., 92, 157-174. doi: 10.1175/2010BAMS2946.1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind at 10 meters, m/s)\nvwnd (v-wind at 10 meters, m/s)\nwspd (wind speed at 10 meters, m/s)\nupstr (u-component of pseudostress at 10 meters, m2/s2)\nvpstr (v-component of pseudostress at 10 meters, m2/s2)\nnobs (number of observations, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplCcmp35aWindMonthly_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplCcmp35aWindMonthly_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplCcmp35aWindMonthly_LonPM180/index.json", "https://podaac.jpl.nasa.gov/dataset/CCMP_MEASURES_ATLAS_L4_OW_L3_5A_MONTHLY_WIND_VECTORS_FLK?ids=Collections&values=Cross-Calibrated%20Multi-Platform%20Ocean%20Surface%20Wind%20Vector%20Analysis%20Fields", "http://upwell.pfeg.noaa.gov/erddap/rss/jplCcmp35aWindMonthly_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplCcmp35aWindMonthly_LonPM180&showErrors=false&email=", "NASA JPL", "jplCcmp35aWindMonthly_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmp35aWindPentad_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmp35aWindPentad_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplCcmp35aWindPentad_LonPM180/request", "", "public", "CCMP Winds, Atlas FLK v1.1 Derived Surface Winds (Level 3.5a), Global, 0.25 Degree, 1987-2011, 5-Day Averages, Lon+/-180", "This dataset is derived under the Cross-Calibrated Multi-Platform (CCMP) project and contains a value-added 5-day mean ocean surface wind and pseudostress to approximate a satellite-only climatological data record. The CCMP datasets combine cross-calibrated satellite winds obtained from Remote Sensing Systems (REMSS) using a Variational Analysis Method (VAM) to produce a high-resolution (0.25 degree) gridded analysis. The CCMP data set includes cross-calibrated satellite winds derived from SSM/I, SSMIS, AMSR-E, TRMM TMI, QuikSCAT, SeaWinds, WindSat and other satellite instruments as they become available from REMSS. \n\nftp://podaac-ftp.jpl.nasa.gov/allData/ccmp/L3.5a/docs/ccmp_users_guide.pdf\n\nAtlas, R., R. N. Hoffman, J. Ardizzone, S. M. Leidner, J. C. Jusem, D. K. Smith, D. Gombos, 2011: A cross-calibrated, multiplatform ocean surface wind velocity product for meteorological and oceanographic applications. Bull. Amer. Meteor. Soc., 92, 157-174. doi: 10.1175/2010BAMS2946.1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind at 10 meters, m/s)\nvwnd (v-wind at 10 meters, m/s)\nwspd (wind speed at 10 meters, m/s)\nupstr (u-component of pseudostress at 10 meters, m2/s2)\nvpstr (v-component of pseudostress at 10 meters, m2/s2)\nnobs (number of observations, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplCcmp35aWindPentad_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplCcmp35aWindPentad_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplCcmp35aWindPentad_LonPM180/index.json", "https://podaac.jpl.nasa.gov/dataset/CCMP_MEASURES_ATLAS_L4_OW_L3_5A_MONTHLY_WIND_VECTORS_FLK?ids=Collections&values=Cross-Calibrated%20Multi-Platform%20Ocean%20Surface%20Wind%20Vector%20Analysis%20Fields", "http://upwell.pfeg.noaa.gov/erddap/rss/jplCcmp35aWindPentad_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplCcmp35aWindPentad_LonPM180&showErrors=false&email=", "NASA JPL", "jplCcmp35aWindPentad_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNchlaDaily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNchlaDaily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNchlaDaily/request", "", "public", "Chlorophyll, NOAA VIIRS, Near Real-Time, Global, Level 3, 2017-present, EXPERIMENTAL, Daily", "Visible and Infrared Imager/Radiometer Suite/Suomi-NPP (VIIRSN) Level-3 (WW00), Near Real-Time, Chlorophyll, Global, Daily, processed by NOAA. EXPERIMENTAL.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlor_a (Chlorophyll Concentration, OC3 Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNchlaDaily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNchlaDaily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNchlaDaily/index.json", "https://www.star.nesdis.noaa.gov/thredds/dodsC/CoastWatch/VIIRS/chlora/Daily/WW00.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNchlaDaily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNchlaDaily&showErrors=false&email=", "STAR", "nesdisVHNchlaDaily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNchlaMonthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNchlaMonthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNchlaMonthly/request", "", "public", "Chlorophyll, NOAA VIIRS, Near Real-Time, Global, Level 3, 2017-present, EXPERIMENTAL, Monthly", "Visible and Infrared Imager/Radiometer Suite/Suomi-NPP (VIIRSN) Level-3 (WW00), Geometric Mean Baseline of Chlorophyll, Near Real-Time, Global, Monthly, processed by NOAA. EXPERIMENTAL.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlor_a (Chlorophyll Concentration, Default Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNchlaMonthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNchlaMonthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNchlaMonthly/index.json", "https://www.star.nesdis.noaa.gov/thredds/dodsC/CoastWatch/VIIRS/chlora/Monthly/WW00.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNchlaMonthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNchlaMonthly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNchlaMonthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNchlaWeekly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNchlaWeekly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNchlaWeekly/request", "", "public", "Chlorophyll, NOAA VIIRS, Near Real-Time, Global, Level 3, 2017-present, EXPERIMENTAL, Weekly", "Visible and Infrared Imager/Radiometer Suite/Suomi-NPP (VIIRSN) Level-3 (WW00), Geometric Mean Baseline of Chlorophyll, Near Real-Time, Global, Weekly, processed by NOAA. EXPERIMENTAL.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlor_a (Chlorophyll Concentration, OC3 Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNchlaWeekly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNchlaWeekly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNchlaWeekly/index.json", "https://www.star.nesdis.noaa.gov/thredds/dodsC/CoastWatch/VIIRS/chlora/Weekly/WW00.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNchlaWeekly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNchlaWeekly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNchlaWeekly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQchlaDaily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQchlaDaily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQchlaDaily/request", "", "public", "Chlorophyll, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Daily", "Level-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlor_a (Chlorophyll Concentration, Default Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQchlaDaily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQchlaDaily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQchlaDaily/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQchlaDaily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQchlaDaily&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQchlaDaily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQchlaMonthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQchlaMonthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQchlaMonthly/request", "", "public", "Chlorophyll, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Monthly", "Level-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlor_a (Chlorophyll Concentration, Default Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQchlaMonthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQchlaMonthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQchlaMonthly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQchlaMonthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQchlaMonthly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQchlaMonthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQchlaWeekly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQchlaWeekly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQchlaWeekly/request", "", "public", "Chlorophyll, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Weekly", "Level-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll, Weekly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlor_a (Chlorophyll Concentration, Default Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQchlaWeekly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQchlaWeekly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQchlaWeekly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQchlaWeekly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQchlaWeekly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQchlaWeekly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchla1day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (1 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchla1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchla1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchla1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchla1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchla1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchla1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchla14day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (14 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchla14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchla14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchla14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchla14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchla14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchla14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchla3day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (3 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchla3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchla3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchla3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchla3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchla3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchla3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchla8day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (8 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchla8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchla8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchla8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchla8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchla8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchla8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchlamday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchlamday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchlamday_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (Monthly Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchlamday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchlamday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchlamday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchlamday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchlamday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchlamday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchla1day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (1 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchla1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchla1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchla1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchla1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchla1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchla1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchla14day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (14 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchla14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchla14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchla14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchla14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchla14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchla14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchla3day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (3 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchla3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchla3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchla3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchla3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchla3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchla3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchla8day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (8 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchla8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchla8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchla8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchla8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchla8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchla8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchlamday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchlamday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchlamday_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (Monthly Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchlamday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchlamday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchlamday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchlamday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchlamday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchlamday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla5day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla5day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchla5day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2013-present, EXPERIMENTAL (5 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchla5day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchla5day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchla5day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchla5day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchla5day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchla5day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEchla1day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, East US, 2002-2012 (1 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEchla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEchla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEchla1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEchla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEchla1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEchla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchla14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchla14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEchla14day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, East US, 2002-2012 (14 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEchla14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEchla14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEchla14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEchla14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEchla14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEchla14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchla3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchla3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEchla3day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, East US, 2002-2012 (3 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEchla3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEchla3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEchla3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEchla3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEchla3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEchla3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEchla8day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, East US, 2002-2012 (8 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEchla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEchla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEchla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEchla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEchla8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEchla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEchlamday/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, East US, 2002-2012 (Monthly Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEchlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEchlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEchlamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEchlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEchlamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEchlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1chla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1chla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1chla1day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (1 Day Composite)", "This dataset has Level 3, Standard Mapped Image, 4km, chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Mean Chlorophyll a Concentration, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1chla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1chla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1chla1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1chla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1chla1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMH1chla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1chla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1chla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1chla8day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (8 Day Composite)", "This dataset has Level 3, Standard Mapped Image, 4km, chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Mean Chlorophyll a Concentration, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1chla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1chla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1chla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1chla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1chla8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1chla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1chlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1chlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1chlamday/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (Monthly Composite)", "This dataset has Level 3, Standard Mapped Image, 4km, chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Mean Chlorophyll a Concentration, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1chlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1chlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1chlamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1chlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1chlamday&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1chlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchla1day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (1 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchla1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchla1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchla1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchla1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchla1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchla1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchla14day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (14 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchla14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchla14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchla14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchla14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchla14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchla14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchla3day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (3 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchla3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchla3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchla3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchla3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchla3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchla3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchla8day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (8 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchla8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchla8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchla8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchla8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchla8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchla8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchlahday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchlahday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchlahday_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (Hourly), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchlahday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchlahday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchlahday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchlahday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchlahday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchlahday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchlamday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchlamday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchlamday_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2007-2007 (Monthly Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchlamday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchlamday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchlamday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchlamday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchlamday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchlamday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW1chla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW1chla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSW1chla1day/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, R2014.0, 0.1\u00b0, Global, 1997-2010 (1 Day Composite) DEPRECATED", "THIS VERSION IS DEPRECATED. SEE THE NEW R2018.0 VERSION IN erdSW2018chla1day. (Feb 2018)\n\nNASA GSFC Ocean Color Web distributes science-quality chlorophyll-a\nconcentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS)\non the Orbview-2 satellite. This version is the 2014.0 Reprocessing (R2014.0).\n\nThe SeaWiFS instrument was launched by Orbital Sciences Corporation on the\nOrbView-2 (a.k.a. SeaStar) satellite in August 1997, and collected data from\nSeptember 1997 until the end of mission in December 2010. SeaWiFS had 8\nspectral bands from 412 to 865 nm. It collected global data at 4 km\nresolution, and local data (limited onboard storage and direct broadcast)\nat 1 km. The mission and sensor were optimized for ocean color measurements,\nwith a local noon (descending) equator crossing time orbit, fore-and-aft\ntilt capability, full dynamic range, and low polarization sensitivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSW1chla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSW1chla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSW1chla1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/seawifs/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSW1chla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSW1chla1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdSW1chla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW1chla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW1chla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSW1chla8day/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, R2014.0, 0.1\u00b0, Global, 1997-2010 (8 Day Composite) DEPRECATED", "THIS VERSION IS DEPRECATED. SEE THE NEW R2018.0 VERSION IN erdSW2018chla8day. (Feb 2018)\n\nNASA GSFC Ocean Color Web distributes science-quality chlorophyll-a\nconcentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS)\non the Orbview-2 satellite. This version is the 2014.0 Reprocessing (R2014.0).\n\nThe SeaWiFS instrument was launched by Orbital Sciences Corporation on the\nOrbView-2 (a.k.a. SeaStar) satellite in August 1997, and collected data from\nSeptember 1997 until the end of mission in December 2010. SeaWiFS had 8\nspectral bands from 412 to 865 nm. It collected global data at 4 km\nresolution, and local data (limited onboard storage and direct broadcast)\nat 1 km. The mission and sensor were optimized for ocean color measurements,\nwith a local noon (descending) equator crossing time orbit, fore-and-aft\ntilt capability, full dynamic range, and low polarization sensitivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSW1chla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSW1chla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSW1chla8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/seawifs/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSW1chla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSW1chla8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdSW1chla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW1chlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW1chlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSW1chlamday/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, R2014.0, 0.1\u00b0, Global, 1997-2010 (Monthly Composite) DEPRECATED", "THIS VERSION IS DEPRECATED. SEE THE NEW R2018.0 VERSION IN erdSW2018chlamday. (Feb 2018)\n\nNASA GSFC Ocean Color Web distributes science-quality chlorophyll-a\nconcentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS)\non the Orbview-2 satellite. This version is the 2014.0 Reprocessing (R2014.0).\n\nThe SeaWiFS instrument was launched by Orbital Sciences Corporation on the\nOrbView-2 (a.k.a. SeaStar) satellite in August 1997, and collected data from\nSeptember 1997 until the end of mission in December 2010. SeaWiFS had 8\nspectral bands from 412 to 865 nm. It collected global data at 4 km\nresolution, and local data (limited onboard storage and direct broadcast)\nat 1 km. The mission and sensor were optimized for ocean color measurements,\nwith a local noon (descending) equator crossing time orbit, fore-and-aft\ntilt capability, full dynamic range, and low polarization sensitivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSW1chlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSW1chlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSW1chlamday/index.json", "https://oceancolor.gsfc.nasa.gov/data/seawifs/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSW1chlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSW1chlamday&showErrors=false&email=", "NASA/GSFC OBPG", "erdSW1chlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW2018chla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW2018chla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSW2018chla1day/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, R2018.0, 0.1\u00b0, Global, 1997-2010 (1 Day Composite)", "NASA GSFC Ocean Color Web distributes science-quality chlorophyll-a\nconcentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS)\non the Orbview-2 satellite. This version is the 2018.0 Reprocessing (R2018.0). https://oceancolor.gsfc.nasa.gov/reprocessing/r2018/seawifs/\n\nThe SeaWiFS instrument was launched by Orbital Sciences Corporation on the\nOrbView-2 (a.k.a. SeaStar) satellite in August 1997, and collected data from\nSeptember 1997 until the end of mission in December 2010. SeaWiFS had 8\nspectral bands from 412 to 865 nm. It collected global data at 4 km\nresolution, and local data (limited onboard storage and direct broadcast)\nat 1 km. The mission and sensor were optimized for ocean color measurements,\nwith a local noon (descending) equator crossing time orbit, fore-and-aft\ntilt capability, full dynamic range, and low polarization sensitivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSW2018chla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSW2018chla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSW2018chla1day/index.json", "https://oceandata.sci.gsfc.nasa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSW2018chla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSW2018chla1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdSW2018chla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW2018chla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW2018chla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSW2018chla8day/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, R2018.0, 0.1\u00b0, Global, 1997-2010 (8 Day Composite)", "NASA GSFC Ocean Color Web distributes science-quality chlorophyll-a\nconcentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS)\non the Orbview-2 satellite. This version is the 2018.0 Reprocessing (R2018.0).\nhttps://oceancolor.gsfc.nasa.gov/reprocessing/r2018/seawifs/\n\nThe SeaWiFS instrument was launched by Orbital Sciences Corporation on the\nOrbView-2 (a.k.a. SeaStar) satellite in August 1997, and collected data from\nSeptember 1997 until the end of mission in December 2010. SeaWiFS had 8\nspectral bands from 412 to 865 nm. It collected global data at 4 km\nresolution, and local data (limited onboard storage and direct broadcast)\nat 1 km. The mission and sensor were optimized for ocean color measurements,\nwith a local noon (descending) equator crossing time orbit, fore-and-aft\ntilt capability, full dynamic range, and low polarization sensitivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSW2018chla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSW2018chla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSW2018chla8day/index.json", "https://oceandata.sci.gsfc.nasa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSW2018chla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSW2018chla8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdSW2018chla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW2018chlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW2018chlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSW2018chlamday/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, R2018.0, 0.1\u00b0, Global, 1997-2010 (Monthly Composite)", "NASA GSFC Ocean Color Web distributes science-quality chlorophyll-a\nconcentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS)\non the Orbview-2 satellite. This version is the 2018.0 Reprocessing (R2018.0). https://oceancolor.gsfc.nasa.gov/reprocessing/r2018/seawifs/\n\nThe SeaWiFS instrument was launched by Orbital Sciences Corporation on the\nOrbView-2 (a.k.a. SeaStar) satellite in August 1997, and collected data from\nSeptember 1997 until the end of mission in December 2010. SeaWiFS had 8\nspectral bands from 412 to 865 nm. It collected global data at 4 km\nresolution, and local data (limited onboard storage and direct broadcast)\nat 1 km. The mission and sensor were optimized for ocean color measurements,\nwith a local noon (descending) equator crossing time orbit, fore-and-aft\ntilt capability, full dynamic range, and low polarization sensitivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSW2018chlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSW2018chlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSW2018chlamday/index.json", "https://oceandata.sci.gsfc.nasa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSW2018chlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSW2018chlamday&showErrors=false&email=", "NASA/GSFC OBPG", "erdSW2018chlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchla1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchla1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMOchla1day_LonPM180/request", "", "public", "Chlorophyll-a, Terra MODIS, OSU DB, West US, 2006-2007, EXPERIMENTAL (1 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Terra satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMOchla1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMOchla1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMOchla1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MO_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMOchla1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMOchla1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMOchla1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchla14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchla14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMOchla14day_LonPM180/request", "", "public", "Chlorophyll-a, Terra MODIS, OSU DB, West US, 2006-2007, EXPERIMENTAL (14 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Terra satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMOchla14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMOchla14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMOchla14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MO_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMOchla14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMOchla14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMOchla14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchla3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchla3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMOchla3day_LonPM180/request", "", "public", "Chlorophyll-a, Terra MODIS, OSU DB, West US, 2006-2007, EXPERIMENTAL (3 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Terra satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMOchla3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMOchla3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMOchla3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MO_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMOchla3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMOchla3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMOchla3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchla8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchla8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMOchla8day_LonPM180/request", "", "public", "Chlorophyll-a, Terra MODIS, OSU DB, West US, 2006-2007, EXPERIMENTAL (8 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Terra satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMOchla8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMOchla8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMOchla8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MO_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMOchla8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMOchla8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMOchla8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchlahday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMOchlahday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMOchlahday_LonPM180/request", "", "public", "Chlorophyll-a, Terra MODIS, OSU DB, West US, 2006-2007, EXPERIMENTAL (Hourly), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Terra satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMOchlahday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMOchlahday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMOchlahday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MO_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMOchlahday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMOchlahday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMOchlahday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdommday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdommday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcdommday_LonPM180/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2010-2013 (Monthly Composite), Lon+/-180", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcdommday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcdommday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcdommday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcdommday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcdommday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcdommday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdom14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdom14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcdom14day_LonPM180/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2012-2015 (14 Day Composite), Lon+/-180", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcdom14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcdom14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcdom14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcdom14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcdom14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcdom14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdom3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdom3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcdom3day_LonPM180/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2012-2015 (3 Day Composite), Lon+/-180", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcdom3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcdom3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcdom3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcdom3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcdom3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcdom3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdom8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdom8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcdom8day_LonPM180/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2012-2015 (8 Day Composite), Lon+/-180", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcdom8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcdom8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcdom8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcdom8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcdom8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcdom8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdom1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcdom1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcdom1day_LonPM180/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2012-2016 (1 Day Composite), Lon+/-180", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcdom1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcdom1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcdom1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcdom1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcdom1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcdom1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdom1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdom1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcdom1day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, East US, 2002-2012 (1 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcdom1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcdom1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcdom1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcdom1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcdom1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcdom1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdom14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdom14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcdom14day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, East US, 2002-2012 (14 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcdom14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcdom14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcdom14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcdom14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcdom14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcdom14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdom3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdom3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcdom3day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, East US, 2002-2012 (3 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcdom3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcdom3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcdom3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcdom3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcdom3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcdom3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdom8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdom8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcdom8day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, East US, 2002-2012 (8 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcdom8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcdom8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcdom8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcdom8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcdom8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcdom8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdommday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdommday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcdommday/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, East US, 2002-2012 (Monthly Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcdommday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcdommday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcdommday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcdommday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcdommday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcdommday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATclddhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATclddhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATclddhday_LonPM180/request", "", "public", "Cloudmask, CLAVR-1, NOAA POES AVHRR, 0.0125 degrees, West US, 2007-present, Daytime (Single Scan), Lon+/-180", "The CLAVR-1 cloudmask (Stowe, 1999) is used to cloudmask AVHRR high resolution sea surface temperature products. The cloudmask runs a series of tests on each surface temperature pixel to determine whether the pixel is contaminated by cloud cover. Users may evaluate which specific tests in the cloudmask returned positive cloud presence results by examining the value of the cloudmask. This value corresponds to an 8 bit binary number which details which tests flagged the pixel as a cloudy pixel. See https://coastwatch.pfeg.noaa.gov/info/CLAVR.html for more information regarding the specific tests used in the cloudmask.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncloudmask (Daytime Cloud Mask, 8 bits, encoded)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATclddhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATclddhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATclddhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_cldd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATclddhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATclddhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATclddhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATcldnhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATcldnhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATcldnhday_LonPM180/request", "", "public", "Cloudmask, CLAVR-1, NOAA POES AVHRR, 0.0125 degrees, West US, 2007-present, Nighttime (Single Scan), Lon+/-180", "The CLAVR-1 cloudmask (Stowe, 1999) is used to cloudmask AVHRR high resolution sea surface temperature products. The cloudmask runs a series of tests on each surface temperature pixel to determine whether the pixel is contaminated by cloud cover. Users may evaluate which specific tests in the cloudmask returned positive cloud presence results by examining the value of the cloudmask. This value corresponds to an 8 bit binary number which details which tests flagged the pixel as a cloudy pixel. See https://coastwatch.pfeg.noaa.gov/info/CLAVR.html for more information regarding the specific tests used in the cloudmask.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncloudmask (Nighttime Cloud Mask, 8 bits, encoded)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATcldnhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATcldnhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATcldnhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_cldn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATcldnhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATcldnhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATcldnhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKclddhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKclddhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKclddhday_LonPM180/request", "", "public", "Cloudmask, CLAVR-1, POES AVHRR, Alaska, Daytime, 2005-2008 (Hourly), Lon+/-180", "The CLAVR-1 cloudmask (Stowe, 1999) is used to cloudmask AVHRR high resolution sea surface temperature products. The cloudmask runs a series of tests on each surface temperature pixel to determine whether the pixel is contaminated by cloud cover. Users may evaluate which specific tests in the cloudmask returned positive cloud presence results by examining the value of the cloudmask. This value corresponds to an 8 bit binary number which details which tests flagged the pixel as a cloudy pixel. See https://coastwatch.pfeg.noaa.gov/info/CLAVR.html for more information regarding the specific tests used in the cloudmask.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncloudmask (Daytime Cloud Mask, 8 bits, encoded)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKclddhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKclddhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKclddhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_cldd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKclddhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKclddhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKclddhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_8a77_333a_af12", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_8a77_333a_af12.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_8a77_333a_af12/request", "", "public", "CMC 0.2 deg global SST analysis (CMC0.2deg-CMC-L4-GLOB-v2.0)", "Canadian Meteorological Centre (CMC) 0.2 deg global sea surface temperature analysis. Applies the method of statistical interpolation to assimilate observations from in situ and satellite sources using, as the background, the analysis valid 24 hours prior assuming persistence of the anomalies. (CMC0.2deg-CMC-L4-GLOB-v2.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (sea/land/lake/ice field composite mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_8a77_333a_af12_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_8a77_333a_af12_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_8a77_333a_af12/index.json", "https://podaac.jpl.nasa.gov/dataset/CMC0.2deg-CMC-L4-GLOB-v2.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_8a77_333a_af12.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_8a77_333a_af12&showErrors=false&email=", "CMC", "nasa_jpl_8a77_333a_af12"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplCMCSST1DL4V30", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplCMCSST1DL4V30.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplCMCSST1DL4V30/request", "", "public", "CMC, GHRSST, Group for High Resolution SST, CMC0.1deg-CMC-L4-GLOB-v3.0, 2016-present", "Canadian Meteorological Centre (CMC) 0.1 deg global sea surface temperature analysis. Applies the method of statistical interpolation to assimilate observations from in situ and satellite sources using, as the background, the analysis valid 24 hours prior assuming persistence of the anomalies.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (sea/land/lake/ice field composite mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplCMCSST1DL4V30_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplCMCSST1DL4V30_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplCMCSST1DL4V30/index.json", "https://podaac.jpl.nasa.gov/dataset/CMC0.1deg-CMC-L4-GLOB-v3.0", "http://upwell.pfeg.noaa.gov/erddap/rss/jplCMCSST1DL4V30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplCMCSST1DL4V30&showErrors=false&email=", "CMC", "jplCMCSST1DL4V30"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWdhws1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWdhws1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWdhws1day_LonPM180/request", "", "public", "Coral Reef Watch, Degree Heating Weeks, 50 km, 2000-2011, Lon+/-180", "NOAA Coral Reef Watch distributes Degree Heating Week products using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndhw (Degree Heating Weeks, weeks)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWdhws1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWdhws1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWdhws1day_LonPM180/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWdhws1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWdhws1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWdhws1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWhots1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWhots1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWhots1day_LonPM180/request", "", "public", "Coral Reef Watch, Hotspots, 50 km, 2000-2011 (1 Day Composite), Lon+/-180", "NOAA Coral Reef Watch provides Coral Bleaching hotspot maps derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nhots (Hot Spots, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWhots1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWhots1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWhots1day_LonPM180/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWhots1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWhots1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWhots1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWsstn1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWsstn1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWsstn1day_LonPM180/request", "", "public", "Coral Reef Watch, Nighttime Temperature, 50 km, 2000-2011 (1 Day Composite), Lon+/-180", "NOAA Coral Reef Watch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWsstn1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWsstn1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWsstn1day_LonPM180/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWsstn1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWsstn1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWsstn1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWtanm1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWtanm1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWtanm1day_LonPM180/request", "", "public", "Coral Reef Watch, Temperature Anomaly, 50 km, 2000-2011 (1 Day Composite), Lon+/-180", "NOAA Coral Reef Watch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWtanm1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWtanm1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWtanm1day_LonPM180/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWtanm1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWtanm1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWtanm1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff85_13e0_9b4c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ff85_13e0_9b4c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ff85_13e0_9b4c/request", "", "public", "CRU Combined Surface/Marine Air Temperature Climatology 1961-1990. (air.mon.ltm), 5.0\u00b0, 0001", "Climatic Research Unit (CRU) Combined Surface/Marine Air Temperature Climatology 1961-1990. (Top Dataset, ltm, air.mon.ltm)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRU Combined Surface/Marine Air Temperature Monthly Climatology, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ff85_13e0_9b4c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ff85_13e0_9b4c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ff85_13e0_9b4c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.hadcru3.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ff85_13e0_9b4c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ff85_13e0_9b4c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ff85_13e0_9b4c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca10_45fa_9108", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca10_45fa_9108.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca10_45fa_9108/request", "", "public", "CRUTEM4 Air Temperature Dataset (Top Dataset, std, air.mon.anom), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca10_45fa_9108_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca10_45fa_9108_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca10_45fa_9108/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca10_45fa_9108.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca10_45fa_9108&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ca10_45fa_9108"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5523_8517_2d0a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5523_8517_2d0a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5523_8517_2d0a/request", "", "public", "CRUTEM4 Air Temperature Dataset (Top Dataset, std, air.mon.mean), 5.0\u00b0, 1851-2018", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.mean.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5523_8517_2d0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5523_8517_2d0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5523_8517_2d0a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5523_8517_2d0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5523_8517_2d0a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5523_8517_2d0a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7944_c525_7af1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7944_c525_7af1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7944_c525_7af1/request", "", "public", "CRUTEM4 Air Temperature Dataset (Top Dataset, var, air.mon.anom), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/var/air.mon.anom.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4V: Surface Air Temperature Monthly Anomaly Variance Adjusted, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7944_c525_7af1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7944_c525_7af1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7944_c525_7af1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7944_c525_7af1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7944_c525_7af1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7944_c525_7af1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAgeomday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAgeomday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTAgeomday_LonPM180/request", "", "public", "Currents, Geostrophic, Aviso, 0.25 degrees, Global, 1992-2009 (Monthly Composite), Lon+/-180", "Aviso Zonal Geostrophic Current is inferred from Sea Surface Height Deviation, climatological dynamic height, and basic fluid mechanics.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Eastward Sea Water Velocity, m s-1)\nv_current (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTAgeomday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTAgeomday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTAgeomday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TA_ugeo_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTAgeomday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTAgeomday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTAgeomday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAgeo1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAgeo1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTAgeo1day_LonPM180/request", "", "public", "Currents, Geostrophic, Aviso, 0.25 degrees, Global, 1992-2012 (1 Day Composite), Lon+/-180", "Aviso Zonal Geostrophic Current is inferred from Sea Surface Height Deviation, climatological dynamic height, and basic fluid mechanics.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Eastward Sea Water Velocity, m s-1)\nv_current (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTAgeo1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTAgeo1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTAgeo1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TA_ugeo_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTAgeo1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTAgeo1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTAgeo1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_28d8_bd66_24b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_28d8_bd66_24b1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_28d8_bd66_24b1/request", "", "public", "Daily MUR SST, Final product (MUR-JPL-L4-GLOB-v4.1)", "Daily Multi-scale Ultra-high Resolution (MUR) Sea Surface Temperature (SST), Final product. A merged, multi-sensor L4 Foundation SST analysis product from Jet Propulsion Laboratory (JPL). (MUR-JPL-L4-GLOB-v4.1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nmask (sea/land field composite mask)\nsea_ice_fraction (sea ice area fraction, fraction (between 0 and 1))\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_28d8_bd66_24b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_28d8_bd66_24b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_28d8_bd66_24b1/index.json", "https://podaac.jpl.nasa.gov/dataset/MUR-JPL-L4-GLOB-v04.1", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_28d8_bd66_24b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_28d8_bd66_24b1&showErrors=false&email=", "Jet Propulsion Laboratory", "nasa_jpl_28d8_bd66_24b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4901day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4901day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk4901day_LonPM180/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (1 Day Composite), Lon+/-180", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk4901day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk4901day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk4901day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk4901day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk4901day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk4901day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk49014day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk49014day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk49014day_LonPM180/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (14 Day Composite), Lon+/-180", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk49014day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk49014day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk49014day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk49014day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk49014day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk49014day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4903day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4903day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk4903day_LonPM180/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (3 Day Composite), Lon+/-180", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk4903day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk4903day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk4903day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk4903day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk4903day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk4903day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4908day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4908day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk4908day_LonPM180/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (8 Day Composite), Lon+/-180", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk4908day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk4908day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk4908day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk4908day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk4908day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk4908day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk490mday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk490mday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk490mday_LonPM180/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (Monthly Composite), Lon+/-180", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk490mday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk490mday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk490mday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk490mday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk490mday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk490mday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk4901day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk4901day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEk4901day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, East US, 2002-2012 (1 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEk4901day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEk4901day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEk4901day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEk4901day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEk4901day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEk4901day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk49014day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk49014day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEk49014day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, East US, 2002-2012 (14 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEk49014day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEk49014day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEk49014day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEk49014day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEk49014day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEk49014day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk4903day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk4903day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEk4903day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, East US, 2002-2012 (3 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEk4903day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEk4903day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEk4903day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEk4903day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEk4903day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEk4903day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk4908day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk4908day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEk4908day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, East US, 2002-2012 (8 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEk4908day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEk4908day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEk4908day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEk4908day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEk4908day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEk4908day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk490mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk490mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEk490mday/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, East US, 2002-2012 (Monthly Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEk490mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEk490mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEk490mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEk490mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEk490mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEk490mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1kd4901day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1kd4901day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1kd4901day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (1 Day Composite)", "This dataset has monthly composites of Level 3, Standard Mapped Image, 4km, Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1kd4901day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1kd4901day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1kd4901day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_kd490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1kd4901day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1kd4901day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1kd4901day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1kd4908day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1kd4908day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1kd4908day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (8 Day Composite)", "This dataset has monthly composites of Level 3, Standard Mapped Image, 4km, Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1kd4908day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1kd4908day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1kd4908day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_kd490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1kd4908day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1kd4908day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1kd4908day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1kd490mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1kd490mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1kd490mday/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (Monthly Composite)", "This dataset has monthly composites of Level 3, Standard Mapped Image, 4km, Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1kd490mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1kd490mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1kd490mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_kd490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1kd490mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1kd490mday&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1kd490mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/dist2coast_1deg", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/dist2coast_1deg.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/dist2coast_1deg/request", "", "public", "Distance from Nearest Coastline: 0.01-Degree Grid", "A global data set of distances from the nearest coastline. Negative distances represent locations over land (including land-locked bodies of water), while positive distances represent the ocean. NASA's Ocean Color Group generated this data set using the Generic Mapping Tools (GMT) software package. Distances were computed with GMT using its intermediate-resolution coastline and then gridded globally at a spatial resolution of 0.04 degrees. Bilinear interpolation was then applied to increase the spatial resolution to 0.01 degrees. There is an uncertainty of up to 1 km in the computed distance at any given point.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ndist (distance to nearest coastline, km)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/dist2coast_1deg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/dist2coast_1deg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/dist2coast_1deg/index.json", "https://oceancolor.gsfc.nasa.gov/DOCS/DistFromCoast/", "http://upwell.pfeg.noaa.gov/erddap/rss/dist2coast_1deg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=dist2coast_1deg&showErrors=false&email=", "NASA GSFC", "dist2coast_1deg"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/dist2coast_4deg", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/dist2coast_4deg.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/dist2coast_4deg/request", "", "public", "Distance from Nearest Coastline: 0.04-Degree Grid", "A global data set of distances from the nearest coastline. Negative distances represent locations over land (including land-locked bodies of water), while positive distances represent the ocean. NASA's Ocean Color Group generated this data set using the Generic Mapping Tools (GMT) software package. Distances were computed with GMT using its intermediate-resolution coastline and then gridded globally at a spatial resolution of 0.04 degrees.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ndist (distance to nearest coastline, km)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/dist2coast_4deg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/dist2coast_4deg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/dist2coast_4deg/index.json", "https://oceancolor.gsfc.nasa.gov/DOCS/DistFromCoast/", "http://upwell.pfeg.noaa.gov/erddap/rss/dist2coast_4deg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=dist2coast_4deg&showErrors=false&email=", "NASA GSFC", "dist2coast_4deg"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pmlEsaCCI31OceanColor8Day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pmlEsaCCI31OceanColor8Day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pmlEsaCCI31OceanColor8Day/request", "", "public", "ESA CCI Ocean Colour Product (CCI ALL-v3.1-8DAY), 0.04166666\u00b0, 1997-present", "Data products generated by the Ocean Colour component of the European Space Agency Climate Change Initiative project. These files are 8 day composites of merged sensor (MERIS, Moderate Resolution Imaging Spectroradiometer (MODIS) Aqua, Sea-Wide Field-of-View Sensor (SeaWiFS) Local Area Coverage (LAC) & Global Area Coverage (GAC), Visible and Infrared Imager/Radiometer Suite (VIIRS)) products. MODIS Aqua and MERIS were band-shifted and bias-corrected to SeaWiFS bands and values using a temporally and spatially varying scheme based on the overlap years of 2003-2007. VIIRS was band-shifted and bias-corrected in a second stage against the MODIS Rrs that had already been corrected to SeaWiFS levels, for the overlap period 2012-2013. VIIRS and SeaWiFS Rrs were derived from standard NASA L2 products; MERIS and MODIS from a combination of NASA's l2gen (for basic sensor geometry corrections, etc) and HYGEOS Polymer v3.5 (for atmospheric correction). The Rrs were binned to a sinusoidal 4km level-3 grid, and later to 4km geographic projection, by Brockmann Consult's BEAM. Derived products were generally computed with the standard SeaDAS algorithms. QAA IOPs were derived using the standard SeaDAS algorithm but with a modified backscattering table to match that used in the bandshifting. The final chlorophyll is a combination of OC4, Hu's CI and OC5, depending on the water class memberships. Uncertainty estimates were added using the fuzzy water classifier and uncertainty estimation algorithm of Tim Moore as documented in Jackson et al (2017).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nRrs_412 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 412 nm., sr-1)\nRrs_443 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 443 nm., sr-1)\nRrs_490 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 490 nm., sr-1)\nRrs_510 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 510 nm., sr-1)\nRrs_555 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 555 nm., sr-1)\nRrs_670 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 670 nm., sr-1)\nwater_class1 (Mean of normalised water class 1 membership over the compositing period)\nwater_class2 (Mean of normalised water class 2 membership over the compositing period)\nwater_class3 (Mean of normalised water class 3 membership over the compositing period)\nwater_class4 (Mean of normalised water class 4 membership over the compositing period)\nwater_class5 (Mean of normalised water class 5 membership over the compositing period)\n... (80 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmlEsaCCI31OceanColor8Day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmlEsaCCI31OceanColor8Day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmlEsaCCI31OceanColor8Day/index.json", "http://www.esa-oceancolour-cci.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/pmlEsaCCI31OceanColor8Day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmlEsaCCI31OceanColor8Day&showErrors=false&email=", "Plymouth Marine Laboratory", "pmlEsaCCI31OceanColor8Day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pmlEsaCCI31OceanColorDaily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pmlEsaCCI31OceanColorDaily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pmlEsaCCI31OceanColorDaily/request", "", "public", "ESA CCI Ocean Colour Product (CCI ALL-v3.1-DAILY), 0.04166666\u00b0, 1997-present", "Data products generated by the Ocean Colour component of the European Space Agency Climate Change Initiative project. These files are daily composites of merged sensor (MERIS, Moderate Resolution Imaging Spectroradiometer (MODIS) Aqua, Sea-Wide Field-of-View Sensor (SeaWiFS) Local Area Coverage (LAC) & Global Area Coverage (GAC), Visible and Infrared Imager/Radiometer Suite (VIIRS)) products. MODIS Aqua and MERIS were band-shifted and bias-corrected to SeaWiFS bands and values using a temporally and spatially varying scheme based on the overlap years of 2003-2007. VIIRS was band-shifted and bias-corrected in a second stage against the MODIS Rrs that had already been corrected to SeaWiFS levels, for the overlap period 2012-2013. VIIRS and SeaWiFS Rrs were derived from standard NASA L2 products; MERIS and MODIS from a combination of NASA's l2gen (for basic sensor geometry corrections, etc) and HYGEOS Polymer v3.5 (for atmospheric correction). The Rrs were binned to a sinusoidal 4km level-3 grid, and later to 4km geographic projection, by Brockmann Consult's BEAM. Derived products were generally computed with the standard SeaDAS algorithms. QAA IOPs were derived using the standard SeaDAS algorithm but with a modified backscattering table to match that used in the bandshifting. The final chlorophyll is a combination of OC4, Hu's CI and OC5, depending on the water class memberships. Uncertainty estimates were added using the fuzzy water classifier and uncertainty estimation algorithm of Tim Moore as documented in Jackson et al (2017).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nMODISA_nobs (Count of the number of observations from the MODIS (Aqua) sensor contributing to this bin cell)\nVIIRS_nobs (Count of the number of observations from the VIIRS sensor contributing to this bin cell)\nMERIS_nobs (Count of the number of observations from the MERIS sensor contributing to this bin cell)\nSeaWiFS_nobs (Count of the number of observations from the SeaWiFS (GAC and LAC) sensor contributing to this bin cell)\ntotal_nobs (Count of the total number of observations contributing to this bin cell)\nRrs_412 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 412 nm., sr-1)\nRrs_443 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 443 nm., sr-1)\nRrs_490 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 490 nm., sr-1)\nRrs_510 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 510 nm., sr-1)\nRrs_555 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 555 nm., sr-1)\nRrs_670 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 670 nm., sr-1)\n... (80 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmlEsaCCI31OceanColorDaily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmlEsaCCI31OceanColorDaily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmlEsaCCI31OceanColorDaily/index.json", "http://www.esa-oceancolour-cci.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/pmlEsaCCI31OceanColorDaily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmlEsaCCI31OceanColorDaily&showErrors=false&email=", "Plymouth Marine Laboratory", "pmlEsaCCI31OceanColorDaily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pmlEsaCCI31OceanColorMonthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pmlEsaCCI31OceanColorMonthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pmlEsaCCI31OceanColorMonthly/request", "", "public", "ESA CCI Ocean Colour Product (CCI ALL-v3.1-MONTHLY), 0.04166666\u00b0, 1997-present", "Data products generated by the Ocean Colour component of the European Space Agency Climate Change Initiative project. These files are monthly composites of merged sensor (MERIS, Moderate Resolution Imaging Spectroradiometer (MODIS) Aqua, Sea-Wide Field-of-View Sensor (SeaWiFS) Local Area Coverage (LAC) & Global Area Coverage (GAC), Visible and Infrared Imager/Radiometer Suite (VIIRS)) products. MODIS Aqua and MERIS were band-shifted and bias-corrected to SeaWiFS bands and values using a temporally and spatially varying scheme based on the overlap years of 2003-2007. VIIRS was band-shifted and bias-corrected in a second stage against the MODIS Rrs that had already been corrected to SeaWiFS levels, for the overlap period 2012-2013. VIIRS and SeaWiFS Rrs were derived from standard NASA L2 products; MERIS and MODIS from a combination of NASA's l2gen (for basic sensor geometry corrections, etc) and HYGEOS Polymer v3.5 (for atmospheric correction). The Rrs were binned to a sinusoidal 4km level-3 grid, and later to 4km geographic projection, by Brockmann Consult's BEAM. Derived products were generally computed with the standard SeaDAS algorithms. QAA IOPs were derived using the standard SeaDAS algorithm but with a modified backscattering table to match that used in the bandshifting. The final chlorophyll is a combination of OC4, Hu's CI and OC5, depending on the water class memberships. Uncertainty estimates were added using the fuzzy water classifier and uncertainty estimation algorithm of Tim Moore as documented in Jackson et al (2017).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nRrs_412 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 412 nm., sr-1)\nRrs_443 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 443 nm., sr-1)\nRrs_490 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 490 nm., sr-1)\nRrs_510 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 510 nm., sr-1)\nRrs_555 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 555 nm., sr-1)\nRrs_670 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 670 nm., sr-1)\nwater_class1 (Mean of normalised water class 1 membership over the compositing period)\nwater_class2 (Mean of normalised water class 2 membership over the compositing period)\nwater_class3 (Mean of normalised water class 3 membership over the compositing period)\nwater_class4 (Mean of normalised water class 4 membership over the compositing period)\nwater_class5 (Mean of normalised water class 5 membership over the compositing period)\n... (80 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmlEsaCCI31OceanColorMonthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmlEsaCCI31OceanColorMonthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmlEsaCCI31OceanColorMonthly/index.json", "http://www.esa-oceancolour-cci.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/pmlEsaCCI31OceanColorMonthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmlEsaCCI31OceanColorMonthly&showErrors=false&email=", "Plymouth Marine Laboratory", "pmlEsaCCI31OceanColorMonthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflh1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflh1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcflh1day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, East US, 2002-2012 (1 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcflh1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcflh1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcflh1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcflh1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcflh1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcflh1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflh14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflh14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcflh14day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, East US, 2002-2012 (14 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcflh14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcflh14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcflh14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcflh14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcflh14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcflh14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflh3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflh3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcflh3day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, East US, 2002-2012 (3 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcflh3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcflh3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcflh3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcflh3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcflh3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcflh3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflh8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflh8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcflh8day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, East US, 2002-2012 (8 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcflh8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcflh8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcflh8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcflh8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcflh8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcflh8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflhmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflhmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcflhmday/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, East US, 2002-2012 (Monthly Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcflhmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcflhmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcflhmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcflhmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcflhmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcflhmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1cflh1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1cflh1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1cflh1day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (1 Day Composite)", "This dataset has monthly composites of Level 3, Standard Mapped Image, 4km, chlorophyll fluorescence data from NASA's Aqua Spacecraft, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which they fluoresce can be decoupled from the rate of photosynthetic productivity. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncflh (Normalized Fluorescence Line Height, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1cflh1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1cflh1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1cflh1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_nflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1cflh1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1cflh1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1cflh1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1cflh8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1cflh8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1cflh8day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (8 Day Composite)", "This dataset has monthly composites of Level 3, Standard Mapped Image, 4km, chlorophyll fluorescence data from NASA's Aqua Spacecraft, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which they fluoresce can be decoupled from the rate of photosynthetic productivity. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncflh (Normalized Fluorescence Line Height, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1cflh8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1cflh8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1cflh8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_nflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1cflh8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1cflh8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1cflh8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1cflhmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1cflhmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1cflhmday/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (Monthly Composite)", "This dataset has monthly composites of Level 3, Standard Mapped Image, 4km, chlorophyll fluorescence data from NASA's Aqua Spacecraft, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which they fluoresce can be decoupled from the rate of photosynthetic productivity. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncflh (Normalized Fluorescence Line Height, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1cflhmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1cflhmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1cflhmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_nflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1cflhmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1cflhmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1cflhmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflh1day_LonPM180/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (1 Day Composite), Lon+/-180", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflh1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflh1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflh1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflh1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflh1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflh1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflh14day_LonPM180/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (14 Day Composite), Lon+/-180", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflh14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflh14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflh14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflh14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflh14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflh14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflh3day_LonPM180/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (3 Day Composite), Lon+/-180", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflh3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflh3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflh3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflh3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflh3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflh3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflh8day_LonPM180/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (8 Day Composite), Lon+/-180", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflh8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflh8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflh8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflh8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflh8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflh8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflhmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflhmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflhmday_LonPM180/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (Monthly Composite), Lon+/-180", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflhmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflhmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflhmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflhmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflhmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflhmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWind10_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWind10_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnWind10_LonPM180/request", "", "public", "FNMOC 10m Surface Winds, 360x181, Monthly, Lon+/-180", "Global monthly derived winds can be obtained for any point on the ocean\n(Northern Hemisphere: 1967 - present, Southern Hemisphere: 1981 - present).\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nu_mean (East-West Component of 10m Surface Wind, m s-1)\nv_mean (North-South Component of 10m Surface Wind, m s-1)\nuv_mag_mean (Magnitude of 10m Surface Wind, m s-1)\ntaux_mean (East-West Component of 10m Wind Stress, N m-2)\ntauy_mean (North-South Component of 10m Wind Stress, N m-2)\ncurl (Curl of Surface 10m Wind Stress, MPa m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnWind10_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnWind10_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnWind10_LonPM180/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/sfc_wind/sfc_wind.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnWind10_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnWind10_LonPM180&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnWind10_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWind20_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWind20_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnWind20_LonPM180/request", "", "public", "FNMOC 20m Surface Winds, 360x181, Monthly, Lon+/-180", "Global monthly derived winds can be obtained for any point on the ocean\n(Northern Hemisphere: 1967 - present, Southern Hemisphere: 1981 - present).\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nu_mean (East-West Component of 20m Surface Wind, m s-1)\nv_mean (North-South Component of 20m Surface Wind, m s-1)\nuv_mag_mean (Magnitude of 20m Surface Wind, m s-1)\ntaux_mean (East-West Component of 20m Wind Stress, N m-2)\ntauy_mean (North-South Component of 20m Wind Stress, N m-2)\ncurl (Curl of Surface 20m Wind Stress, MPa m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnWind20_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnWind20_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnWind20_LonPM180/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/sfc_wind/sfc_wind.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnWind20_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnWind20_LonPM180&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnWind20_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFn500mb_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFn500mb_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFn500mb_LonPM180/request", "", "public", "FNMOC 500 mb Geopotential Height, 360x181, Monthly, Lon+/-180", "Monthly means of the FNMOC (Fleet Numerical Meteorology and Oceanography Center) 6-hourly analyzed geopotential height field on a 360 by 181 global spherical grid (1 degree). For more information on the models used to compute these data please see:\n\nRosmond, T. E., 1992: A prototype fully coupled Ocean-Atmosphere Prediction System, Oceanography Vol. 5, No. 1, 25-30.\n\nClancy, R. M., 1992: Operational Modeling: Ocean Modeling at the Fleet Numerical Oceanography Center, Oceanography Vol. 5, No. 1, 31-35.\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) to take advantage of the Navy's global oceanographic and meteorological databases. FNMOC produces operational forecasts of the state of the atmosphere and the ocean several times daily and maintains archives of several important parameters, such as sea level pressure and temperature. ERD derives a number of well-known environmental data and index products which are routinely distributed to researchers at many state and federal laboratories, as well as to academic and international researchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nz_mean (Geopotential height at 500mb, gp)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFn500mb_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFn500mb_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFn500mb_LonPM180/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/500mb_height/500mb_height.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFn500mb_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFn500mb_LonPM180&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFn500mb_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnTran6_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnTran6_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnTran6_LonPM180/request", "", "public", "FNMOC Ekman Transports, 360x180, 6-hourly, Lon+/-180", "Ekman transports and wind stress curl calculated from geostrophic winds based\non FNMOC 360x180 (1-degree) analyzed fields of sea level pressure. This\ndataset has data prior to the current month.\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncurl (Curl of Surface Wind Stress, MPa m-1)\nektrx (East-West Component of Ekman Transport, kg m-1 s-1)\nektry (North-South Component of Ekman Transport, kg m-1 s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnTran6_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnTran6_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnTran6_LonPM180/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/holdings.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnTran6_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnTran6_LonPM180&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnTran6_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnPres6_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnPres6_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnPres6_LonPM180/request", "", "public", "FNMOC Sea Level Pressure, 360x180, 6-hourly, Lon+/-180", "Sea level pressure based on the FNMOC 360x180 (1-degree) analyzed fields.\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\np_msl (Pressure Reduced To Mean Sea Level, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnPres6_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnPres6_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnPres6_LonPM180/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/holdings.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnPres6_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnPres6_LonPM180&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnPres6_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWPr_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWPr_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnWPr_LonPM180/request", "", "public", "FNMOC Wind and Ekman Transport Data, 360x180, Monthly, from 6-hr Pressure, Lon+/-180", "Global monthly derived winds and Ekman transports can be obtained for any\npoint on the ocean (Northern Hemisphere: 1967 - present, Southern Hemisphere:\n1981 - present).\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npmsl (Pressure Reduced To MSL, Mb)\nu_mean (East-West Component of Surface Wind, m s-1)\nv_mean (North-South Component of Surface Wind, m s-1)\nuv_mag_mean (Magnitude of Surface Wind, m s-1)\ntaux_mean (East-West Component of Wind Stress, N m-2)\ntauy_mean (North-South Component of Wind Stress, N m-2)\ncurl (Curl of Surface Wind Stress, MPa m-1)\nektrx (East-West Component of Ekman Transport, kg m-1 s-1)\nektry (North-South Component of Ekman Transport, kg m-1 s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnWPr_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnWPr_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnWPr_LonPM180/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/holdings.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnWPr_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnWPr_LonPM180&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnWPr_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnTransMon_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnTransMon_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnTransMon_LonPM180/request", "", "public", "FNMOC Wind and Ekman Transport Data, 360x181, 6-hourly for This Month, Lon+/-180", "Global monthly derived winds and transports can be obtained for any point on\nthe ocean (Northern Hemisphere: 1967 - present, Southern Hemisphere:\n1981 - present).\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nP_msl (Pressure Reduced To Mean Sea Level, hPa)\nu (East-West Component of Surface Wind, m s-1)\nv (North-South Component of Surface Wind, m s-1)\nuv_mag (Magnitude of Surface Wind, m s-1)\ntaux (East-West Component of Wind Stress, N m-2)\ntauy (North-South Component of Wind Stress, N m-2)\ncurl (Curl of Surface Wind Stress, MPa m-1)\nektrx (East-West Component of Ekman Transport, kg m-1 s-1)\nektry (North-South Component of Ekman Transport, kg m-1 s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnTransMon_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnTransMon_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnTransMon_LonPM180/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/holdings.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnTransMon_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnTransMon_LonPM180&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnTransMon_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfnt1day_LonPM180/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2000-present, EXPERIMENTAL (1 Day Composite), Lon+/-180", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfnt1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfnt1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfnt1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfnt1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfnt1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfnt1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt10day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt10day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfnt10day_LonPM180/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2001-present, EXPERIMENTAL (10 Day Composite), Lon+/-180", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfnt10day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfnt10day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfnt10day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfnt10day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfnt10day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfnt10day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfntmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfntmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfntmday_LonPM180/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2001-present, EXPERIMENTAL (Monthly Composite), Lon+/-180", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfntmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfntmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfntmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfntmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfntmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfntmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfnt14day_LonPM180/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2005-present, EXPERIMENTAL (14 Day Composite), Lon+/-180", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfnt14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfnt14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfnt14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfnt14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfnt14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfnt14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt5day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt5day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfnt5day_LonPM180/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2007-present, EXPERIMENTAL (5 Day Composite), Lon+/-180", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfnt5day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfnt5day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfnt5day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfnt5day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfnt5day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfnt5day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplG1SST", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplG1SST.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplG1SST/request", "", "public", "GHRSST Global 1-km Sea Surface Temperature (G1SST), Global, 0.01 Degree, 2010-2017, Daily", "A daily, global Sea Surface Temperature (SST) data set is produced at 1-km (also known as ultra-high resolution) by the JPL ROMS (Regional Ocean Modeling System) group. The input SST data sets are derived from the Global High-Resolution Sea Surface Temperature (SST) Pilot Project (GHRSST-PP). For details, see\nhttps://podaac.jpl.nasa.gov/dataset/JPL_OUROCEAN-L4UHfnd-GLOB-G1SST .\nThis dataset is part of the Multi-sensor Improved Sea Surface Temperatures (MISST) project, which is part of the Group for High-Resolution Sea Surface Temperature (GHRSST) project.\n\nDISCONTINUED - The creators of the jplG1SST dataset stopped production in late Oct 2017. There are more recent files available from JPL, but they are flawed so they are not included in the dataset at ERD. You might consider using the similar jplMURSST41 dataset, \nhttps://coastwatch.pfeg.noaa.gov/erddap/search/index.html?searchFor=jplMURSST41\nwhich has the additional advantage of offering related climatology and anomaly datasets.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST (Analysed Sea Surface Temperature, degree_C)\nmask (sea/land/lake/ice field composite mask)\nanalysis_error (Estimated Error Standard Deviation of Analysed SST, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplG1SST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplG1SST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplG1SST/index.json", "https://podaac.jpl.nasa.gov/dataset/JPL_OUROCEAN-L4UHfnd-GLOB-G1SST", "http://upwell.pfeg.noaa.gov/erddap/rss/jplG1SST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplG1SST&showErrors=false&email=", "NASA JPL", "jplG1SST"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_aa77_f42f_c5ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_aa77_f42f_c5ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_aa77_f42f_c5ff/request", "", "public", "GHRSST, Group for High Resolution SST, AVHRR SST METOP A GLB-OSISAF-l3C-V1.0, 2013-2016", "Sea Surface Temperature. The GLB L3C product derived from METOP A Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (sea surface subskin temperature, degree_C)\nsst_dtime (time difference from reference time, seconds)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (deviation from SST analysis or reference climatology, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nadi_dtime_from_sst (time difference of ADI data from sst measurement, hour)\nsources_of_adi (sources of aerosol dynamic indicator)\nl2p_flags\nquality_level (quality level of SST pixel)\nsatellite_zenith_angle (angular_degree)\nsolar_zenith_angle (angular_degree)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_aa77_f42f_c5ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_aa77_f42f_c5ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_aa77_f42f_c5ff/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_METOP_A_GLB-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_aa77_f42f_c5ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_aa77_f42f_c5ff&showErrors=false&email=", "OSISAF", "nasa_jpl_aa77_f42f_c5ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_33ad_9bfb_a108", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_33ad_9bfb_a108.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_33ad_9bfb_a108/request", "", "public", "GHRSST, Group for High Resolution SST, AVHRR SST METOP B GLB-OSISAF-L3C-v1.0, 2016-present", "Sea Surface Temperature. The GLB L3C product derived from METOP B Advanced Very High Resolution Radiometer (AVHRR) brightness temperatures.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (sea surface subskin temperature, degree_C)\nsst_dtime (time difference from reference time, seconds)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (deviation from SST analysis or reference climatology, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nadi_dtime_from_sst (time difference of ADI data from sst measurement, hour)\nsources_of_adi (sources of aerosol dynamic indicator)\nl2p_flags\nquality_level (quality level of SST pixel)\nsatellite_zenith_angle (angular_degree)\nsolar_zenith_angle (angular_degree)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_33ad_9bfb_a108_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_33ad_9bfb_a108_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_33ad_9bfb_a108/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_SST_METOP_B_GLB-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_33ad_9bfb_a108.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_33ad_9bfb_a108&showErrors=false&email=", "OSISAF", "nasa_jpl_33ad_9bfb_a108"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_72a3_eae2_0c14", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_72a3_eae2_0c14.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_72a3_eae2_0c14/request", "", "public", "GHRSST, Group for High Resolution SST, CMC0.2deg-CMC-L4-GLOB-v2.0, 1991-2017", "Canadian Meteorological Centre (CMC) 0.2 deg global sea surface temperature analysis. Applies the method of statistical interpolation to assimilate observations from in situ and satellite sources using, as the background, the analysis valid 24 hours prior assuming persistence of the anomalies.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (sea/land/lake/ice field composite mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_72a3_eae2_0c14_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_72a3_eae2_0c14_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_72a3_eae2_0c14/index.json", "https://podaac.jpl.nasa.gov/dataset/CMC0.2deg-CMC-L4-GLOB-v2.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_72a3_eae2_0c14.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_72a3_eae2_0c14&showErrors=false&email=", "CMC", "nasa_jpl_72a3_eae2_0c14"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3468_7d7f_3f3c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3468_7d7f_3f3c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_3468_7d7f_3f3c/request", "", "public", "GHRSST, Group for High Resolution SST, GOES16-OSISAF-L3C-v1.0 (SST), 0.049999997\u00b0, 2017-present", "Sea Surface Temperature. The L3C product derived from GOES16/ABI brightness temperatures.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (sea surface subskin temperature, degree_C)\nsst_dtime (time difference from reference time, seconds)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (deviation from SST analysis or reference climatology, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nadi_dtime_from_sst (time difference of ADI data from sst measurement, hour)\nsources_of_adi (sources of aerosol dynamic indicator)\nl2p_flags\nquality_level (quality level of SST pixel)\nsatellite_zenith_angle (angular_degree)\nsolar_zenith_angle (angular_degree)\nor_latitude (original latitude of the SST value, degrees_north)\nor_longitude (original longitude of the SST value, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_3468_7d7f_3f3c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_3468_7d7f_3f3c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_3468_7d7f_3f3c/index.json", "https://podaac.jpl.nasa.gov/dataset/GOES16-OSISAF-L3C-v1.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_3468_7d7f_3f3c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_3468_7d7f_3f3c&showErrors=false&email=", "OSISAF", "nasa_jpl_3468_7d7f_3f3c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_dde5_3be1_897b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_dde5_3be1_897b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_dde5_3be1_897b/request", "", "public", "GHRSST, Group for High Resolution SST, MUR-JPL-L4-GLOB-v4.1 (Daily MUR SST, Final product), 0.01\u00b0, 2002-present", "Daily Multi-scale Ultra-high Resolution (MUR) Sea Surface Temperature (SST), Final product. A merged, multi-sensor L4 Foundation SST analysis product from Jet Propulsion Laboratory (JPL).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nmask (sea/land field composite mask)\nsea_ice_fraction (sea ice area fraction, fraction (between 0 and 1))\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_dde5_3be1_897b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_dde5_3be1_897b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_dde5_3be1_897b/index.json", "https://podaac.jpl.nasa.gov/dataset/MUR-JPL-L4-GLOB-v4.1", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_dde5_3be1_897b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_dde5_3be1_897b&showErrors=false&email=", "Jet Propulsion Laboratory", "nasa_jpl_dde5_3be1_897b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_61b9_f6bc_3913", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_61b9_f6bc_3913.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_61b9_f6bc_3913/request", "", "public", "GHRSST, Group for High Resolution SST, MW IR OI-REMSS-L4-GLOB-v5.0, 0.08789057\u00b0, 2002-present", "Analysed foundation sea surface temperature over the global ocean. A merged, multi-sensor L4 foundation SST product from Remote Sensing Systems\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (land sea ice lake bit mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_61b9_f6bc_3913_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_61b9_f6bc_3913_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_61b9_f6bc_3913/index.json", "https://podaac.jpl.nasa.gov/dataset/MW_IR_OI-REMSS-L4-GLOB-v5.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_61b9_f6bc_3913.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_61b9_f6bc_3913&showErrors=false&email=", "REMSS", "nasa_jpl_61b9_f6bc_3913"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_abc2_74fa_55b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_abc2_74fa_55b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_abc2_74fa_55b5/request", "", "public", "GHRSST, Group for High Resolution SST, VIIRS NPP-OSPO-L3U-v2.41 (VIIRS L3U SST), 0.02\u00b0, 2017-present", "Visible and Infrared Imager/Radiometer Suite (VIIRS) L3U SST. Sea surface temperature retrievals produced by NOAA/NESDIS/Office of Satellite and Product Operations (OSPO) office from VIIRS sensor\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nquality_level (quality level of SST pixel)\nor_number_of_pixels (number of pixels from the L2Ps contributing to the SST value, 1)\ndt_analysis (deviation from SST reference, degree_C)\nsatellite_zenith_angle (degrees)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\nwind_speed (m s-1)\nsst_dtime (time difference from reference time, seconds)\nl2p_flags\nsea_surface_temperature (sea surface sub-skin temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_abc2_74fa_55b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_abc2_74fa_55b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_abc2_74fa_55b5/index.json", "https://podaac.jpl.nasa.gov/dataset/VIIRS_NPP-OSPO-L3U-v2.41", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_abc2_74fa_55b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_abc2_74fa_55b5&showErrors=false&email=", "NOAA/NESDIS/OSPO", "nasa_jpl_abc2_74fa_55b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72db_1e2b_fede", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72db_1e2b_fede.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_72db_1e2b_fede/request", "", "public", "Global Monthly Dai Palmer Drought Severity Index (Top Dataset, dai pdsi, pdsi.mon.mean), 2.5\u00b0, 1870-2005", "Global Monthly Dai Palmer Drought Severity Index. This version of the dataset (1870-2005) supersedes the 1870-2003 version art Physical Sciences Division (PSD) before Feb 2007\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Monthly Global Palmer Drought Severity Index: v2, Standardized Units of Relative Dry and Wet)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_72db_1e2b_fede_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_72db_1e2b_fede_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_72db_1e2b_fede/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.pdsi.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_72db_1e2b_fede.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_72db_1e2b_fede&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_72db_1e2b_fede"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_d024_dac2_2e1a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_d024_dac2_2e1a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_d024_dac2_2e1a/request", "", "public", "Global SST & Sea Ice Analysis, L4 OSTIA, 0.05 deg daily (METOFFICE-GLO-SST-L4-NRT-OBS-SST-V2)", "A merged, multi-sensor L4 Foundation SST product (Operational Sea Surface Temperature and Sea Ice Analysis (OSTIA)-United Kingdom Meteorology Office (UKMO)-L4-GLOB-v2.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (land sea ice lake bit mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_d024_dac2_2e1a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_d024_dac2_2e1a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_d024_dac2_2e1a/index.json", "https://podaac.jpl.nasa.gov/dataset/UKMO-L4HRfnd-GLOB-OSTIA", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_d024_dac2_2e1a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_d024_dac2_2e1a&showErrors=false&email=", "UKMO", "nasa_jpl_d024_dac2_2e1a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_2fa2_cbe7_cd13", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_2fa2_cbe7_cd13.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_2fa2_cbe7_cd13/request", "", "public", "Global SST & Sea Ice Analysis, L4 OSTIA, 0.05 deg daily (METOFFICE-GLO-SST-L4-NRT-OBS-SST-V2), 2013-present", "A merged, multi-sensor L4 Foundation Sea Surface Temperature (SST) product\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (land sea ice lake bit mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_2fa2_cbe7_cd13_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_2fa2_cbe7_cd13_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_2fa2_cbe7_cd13/index.json", "https://podaac.jpl.nasa.gov/dataset/OSTIA-UKMO-L4-GLOB-v2.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_2fa2_cbe7_cd13.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_2fa2_cbe7_cd13&showErrors=false&email=", "UKMO", "nasa_jpl_2fa2_cbe7_cd13"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplUKMO_OSTIAv20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplUKMO_OSTIAv20.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplUKMO_OSTIAv20/request", "", "public", "Global SST & Sea Ice Analysis, L4 OSTIA, UK Met Office, Global, 0.05\u00b0, Daily, 2013-present", "A Group for High Resolution Sea Surface Temperature (GHRSST) Level 4 sea surface temperature analysis produced daily on an operational basis at the UK Met Office using optimal interpolation (OI) on a global 0.054 degree grid. The Operational Sea Surface Temperature and Sea Ice Analysis (OSTIA) analysis uses satellite data from sensors that include the Advanced Very High Resolution Radiometer (AVHRR), the Advanced Along Track Scanning Radiometer (AATSR), the Spinning Enhanced Visible and Infrared Imager (SEVIRI), the Advanced Microwave Scanning Radiometer-EOS (AMSRE), the Tropical Rainfall Measuring Mission Microwave Imager (TMI), and in situ data from drifting and moored buoys. This analysis has a highly smoothed SST field and was specifically produced to support SST data assimilation into Numerical Weather Prediction (NWP) models. (METOFFICE-GLO-SST-L4-NRT-OBS-SST-V2)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (land sea ice lake bit mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplUKMO_OSTIAv20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplUKMO_OSTIAv20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplUKMO_OSTIAv20/index.json", "https://podaac.jpl.nasa.gov/dataset/UKMO-L4HRfnd-GLOB-OSTIA", "http://upwell.pfeg.noaa.gov/erddap/rss/jplUKMO_OSTIAv20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplUKMO_OSTIAv20&showErrors=false&email=", "UKMO", "jplUKMO_OSTIAv20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e923_4360_6db0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e923_4360_6db0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e923_4360_6db0/request", "", "public", "Gridded 3-day average of Sea Surface Salinity calculated from SMOS level-2 User Data Product, 1.0\u00b0, 2010-2015", "This dataset is created by National Oceanographic Data Center (NODC) Satellite Oceanography Group from SMOS level-2 Sea Surface Salinity User Data Product (SM_xxxx_MIR_OSUDP2), calculted from using 1.0x1.0 (lon/lat) degree box average\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss1 (3-days average of Sea Surface Salinity using roughness model 1, PSU)\nsss1_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 1, count)\nsss1_qi (3-days average of quality index for sss1: lower=better., count)\nsss2 (3-days average of Sea Surface Salinity using roughness model 2, PSU)\nsss2_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 2, count)\nsss2_qi (3-days average of quality index for sss2: lower=better., count)\nsss3 (3-days average of Sea Surface Salinity using roughness model 3, PSU)\nsss3_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 3, count)\nsss3_qi (3-days average of quality index for sss3: lower=better., count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e923_4360_6db0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e923_4360_6db0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e923_4360_6db0/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/smos/nodc_binned_v2.0/SMOS_sss_3day_aggregate_20150813.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e923_4360_6db0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e923_4360_6db0&showErrors=false&email=", "US NGDC", "noaa_nodc_e923_4360_6db0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a63d_f90a_cc71", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a63d_f90a_cc71.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_a63d_f90a_cc71/request", "", "public", "Gridded 8-day running mean sea surface salinity calculted from JPL SMAP level-2 swath data, 1.0\u00b0, 2015-present", "This dataset is created by National Centers for Environmental Information (NCEI) CCOG from SMAP level-2 sea surface salinity Product (Version 3.0) created by Jet Propulsion Laboratory (JPL).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss (SMAP 8-day running mean sea surface salinity, PSU)\nsss_obs (valid observation number used to calculate sss from level-2 swath data, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_a63d_f90a_cc71_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_a63d_f90a_cc71_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_a63d_f90a_cc71/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/smap/smap_8day.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_a63d_f90a_cc71.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_a63d_f90a_cc71&showErrors=false&email=", "US National Centers for Environmental Information", "noaa_nodc_a63d_f90a_cc71"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ca4b_b7a4_55cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ca4b_b7a4_55cc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_ca4b_b7a4_55cc/request", "", "public", "Gridded monthly mean of Sea Surface Salinity calculated from SMOS level-2 User Data Product, 1.0\u00b0, 2010-2015", "This dataset is created by National Oceanographic Data Center (NODC) Satellite Oceanography Group from SMOS level-2 Sea Surface Salinity User Data Product (SM_xxxx_MIR_OSUDP2), calculted from using 1.0x1.0 (lon/lat) degree box average\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss1 (Monthly mean of Sea Surface Salinity using roughness model 1, PSU)\nsss1_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 1, count)\nsss1_qi (Monthly mean of quality index for sss1: lower=better., count)\nsss2 (Monthly mean of Sea Surface Salinity using roughness model 2, PSU)\nsss2_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 2, count)\nsss2_qi (Monthly mean of quality index for sss2: lower=better., count)\nsss3 (Monthly mean of Sea Surface Salinity using roughness model 3, PSU)\nsss3_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 3, count)\nsss3_qi (Monthly mean of quality index for sss3: lower=better., count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_ca4b_b7a4_55cc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_ca4b_b7a4_55cc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_ca4b_b7a4_55cc/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/smos/nodc_binned_v2.0/SMOS_sss_monthly_aggregate_20150813.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_ca4b_b7a4_55cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_ca4b_b7a4_55cc&showErrors=false&email=", "US NGDC", "noaa_nodc_ca4b_b7a4_55cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_aeeb_0706_c4b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_aeeb_0706_c4b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_aeeb_0706_c4b8/request", "", "public", "Gridded monthly mean Sea Surface Salinity calculated from Aquarius level-2 Combined Active-Passive algorithm (CAP) data, 1.0\u00b0, 2011-2014", "This dataset is created by National Oceanographic Data Center (NODC) Satellite Oceanography Group from Aquarius level-2 V2.0 CAP data,using 1.0x1.0 (lon/lat) degree box average\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss (Monthly mean Sea Surface Salinity from level-2 swath data, PSU)\nsss_obs (Valid observation number used to calculate SSS from level-2 swath data, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_aeeb_0706_c4b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_aeeb_0706_c4b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_aeeb_0706_c4b8/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/aquarius/nodc_binned_cap_v2.0/aquarius_monthly_aggregate_SSS_cap_V2_l3_binned_new.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_aeeb_0706_c4b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_aeeb_0706_c4b8&showErrors=false&email=", "JPL, California Institute of Technology", "noaa_nodc_aeeb_0706_c4b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b5c4_8771_1c1f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b5c4_8771_1c1f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b5c4_8771_1c1f/request", "", "public", "Gridded monthly mean sea surface salinity calculted from JPL SMAP level-2 swath data, 1.0\u00b0, 2015-present", "This dataset is created by National Centers for Environmental Information (NCEI) CCOG from SMAP level-2 sea surface salinity Product (Version 3.0) created by Jet Propulsion Laboratory (JPL).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss (SMAP monthly mean sea surface salinit, PSU)\nsss_obs (valid observation number used to calculate sss from level-2 swath data, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b5c4_8771_1c1f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b5c4_8771_1c1f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b5c4_8771_1c1f/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/smap/smap_monthly.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b5c4_8771_1c1f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b5c4_8771_1c1f&showErrors=false&email=", "US National Centers for Environmental Information", "noaa_nodc_b5c4_8771_1c1f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e0c_7b02_93a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e0c_7b02_93a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e0c_7b02_93a0/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e0c_7b02_93a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e0c_7b02_93a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e0c_7b02_93a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e0c_7b02_93a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e0c_7b02_93a0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3e0c_7b02_93a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db71_e764_2972", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db71_e764_2972.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db71_e764_2972/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom.biased2.5), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.biased2.5.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly 2.5 Bias Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db71_e764_2972_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db71_e764_2972_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db71_e764_2972/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db71_e764_2972.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db71_e764_2972&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_db71_e764_2972"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b69_a9bd_e36a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b69_a9bd_e36a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b69_a9bd_e36a/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom.biased97.5), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.biased97.5.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly 97.5 Bias Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b69_a9bd_e36a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b69_a9bd_e36a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b69_a9bd_e36a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b69_a9bd_e36a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b69_a9bd_e36a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6b69_a9bd_e36a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e9a_1f1a_237c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e9a_1f1a_237c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6e9a_1f1a_237c/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom.mserror), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.mserror.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly M+S Errors, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6e9a_1f1a_237c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6e9a_1f1a_237c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6e9a_1f1a_237c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6e9a_1f1a_237c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6e9a_1f1a_237c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6e9a_1f1a_237c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_069d_ff4e_902c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_069d_ff4e_902c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_069d_ff4e_902c/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom.stationerror), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.stationerror.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly Station Errors, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_069d_ff4e_902c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_069d_ff4e_902c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_069d_ff4e_902c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_069d_ff4e_902c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_069d_ff4e_902c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_069d_ff4e_902c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f29a_8f1c_b66a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f29a_8f1c_b66a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f29a_8f1c_b66a/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly Variance Adjusted (air.mon.anom), 5.0\u00b0, 1850-2014", "This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/var/air.mon.anom.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3V: Surface Air Temperature Monthly Anomaly Variance Adjusted, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f29a_8f1c_b66a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f29a_8f1c_b66a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f29a_8f1c_b66a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f29a_8f1c_b66a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f29a_8f1c_b66a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f29a_8f1c_b66a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87e4_c3bd_8e9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87e4_c3bd_8e9f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_87e4_c3bd_8e9f/request", "", "public", "HADCRUT4 Combined Air Temperature/SST Anomaly (Top Dataset, hadcrut4, air.mon.anom.median), 5.0\u00b0, 1850-present", "HADCRUT4 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut4/air.mon.anom.median.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT4: Median Surface Air Temperature Monthly Median Anomaly from 100 ensemble members, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_87e4_c3bd_8e9f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_87e4_c3bd_8e9f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_87e4_c3bd_8e9f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.hadcrut4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_87e4_c3bd_8e9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_87e4_c3bd_8e9f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_87e4_c3bd_8e9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e74_4bc8_6541", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e74_4bc8_6541.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2e74_4bc8_6541/request", "", "public", "HADCRUT4 Combined Air Temperature/SST Anomaly (Top Dataset, hadcrut4, air.mon.ltm), 5.0\u00b0, 0001", "HADCRUT4 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut4/air.mon.ltm.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Long Term Mean HADCRUT4: Median Surface Air Temperature Monthly Median Anomaly from 100 ensemble members, degree_C)\nvalid_yr_count (count of non-missing values used in mean)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2e74_4bc8_6541_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2e74_4bc8_6541_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2e74_4bc8_6541/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.hadcrut4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2e74_4bc8_6541.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2e74_4bc8_6541&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2e74_4bc8_6541"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2454_f596_6532", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2454_f596_6532.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2454_f596_6532/request", "", "public", "HADCRUT4 Combined Air Temperature/SST Anomaly Error (Top Dataset, hadcrut4, air.mon.anom.error), 5.0\u00b0, 1850-present", "HADCRUT4 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly Error. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut4/air.mon.anom.error.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT4: Median Surface Air Temperature Monthly Median Anomaly Error from 100 ensemble members, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2454_f596_6532_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2454_f596_6532_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2454_f596_6532/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.hadcrut4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2454_f596_6532.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2454_f596_6532&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2454_f596_6532"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdHadISST", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdHadISST.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdHadISST/request", "", "public", "HadISST Average Sea Surface Temperature, 1\u00b0, Global, Monthly, 1870-present", "The Met Office Hadley Centre's sea ice and sea surface temperature (SST) data set, HadISST1, replaces the Global sea Ice and Sea Surface Temperature (GISST) data sets, and is a unique combination of monthly globally-complete fields of SST and sea ice concentration on a 1 degree latitude-longitude grid from 1870 to date. \n \nWARNING: 10 March 2016: A detailed analysis of HadISST (https://ir.library.oregonstate.edu/xmlui/handle/1957/58385) has identified a number of problems, some of which might limit the utility of the dataset for certain scientific applications, particularly where high resolution SST data or spatial gradients of SST are required. Thanks to Dudley Chelton and Craig Risien for bringing this to our attention and their detailed analysis. \n\nThe SST data are taken from the Met Office Marine Data Bank (MDB), which from 1982 onwards also includes data received through the Global Telecommunications System (GTS). In order to enhance data coverage, monthly median SSTs for 1871-1995 from the Comprehensive Ocean-Atmosphere Data Set (COADS) (now ICOADS) were also used where there were no MDB data.\n\nHadISST1 temperatures are reconstructed using a two stage reduced-space optimal interpolation procedure, followed by superposition of quality-improved gridded observations onto the reconstructions to restore local detail. SSTs near sea ice are estimated using statistical relationships between SST and sea ice concentration.\n\nData restrictions: for academic research use only.\n\nUpdates and supplementary information will be available from http://www.hadobs.org\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdHadISST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdHadISST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdHadISST/index.json", "http://hadobs.metoffice.com/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdHadISST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdHadISST&showErrors=false&email=", "Met Office Hadley Centre", "erdHadISST"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdHadISSTIce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdHadISSTIce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdHadISSTIce/request", "", "public", "HadISST Sea Ice Component, 1\u00b0, Global, Monthly, 1870-present", "The Met Office Hadley Centre's sea ice and sea surface temperature (SST) data set, HadISST1, replaces the Global sea Ice and Sea Surface Temperature (GISST) data sets, and is a unique combination of monthly globally-complete fields of SST and sea ice concentration on a 1 degree latitude-longitude grid from 1870 to date. \n \nWARNING: 10 March 2016: A detailed analysis of HadISST (https://ir.library.oregonstate.edu/xmlui/handle/1957/58385) has identified a number of problems, some of which might limit the utility of the dataset for certain scientific applications, particularly where high resolution SST data or spatial gradients of SST are required. Thanks to Dudley Chelton and Craig Risien for bringing this to our attention and their detailed analysis.\n\nData restrictions: for academic research use only.\n\nUpdates and supplementary information will be available from http://www.hadobs.org\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsic (Monthly 1 degree resolution sea ice concentration, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdHadISSTIce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdHadISSTIce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdHadISSTIce/index.json", "http://hadobs.metoffice.com/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdHadISSTIce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdHadISSTIce&showErrors=false&email=", "Met Office Hadley Centre", "erdHadISSTIce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdHadISSTDecomp", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdHadISSTDecomp.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdHadISSTDecomp/request", "", "public", "HadISST SST State-Space Components, 1870-present (Monthly)", "State-space components from analysis of HadISST data by Roy Mendelssohn.\n\nThe SST data are taken from the Met Office Marine Data Bank (MDB), which from 1982 onwards also includes data received through the Global Telecommunications System (GTS). In order to enhance data coverage, monthly median SSTs for 1871-1995 from the Comprehensive Ocean-Atmosphere Data Set (COADS) (now ICOADS) were also used where there were no MDB data.\n\nHadISST1 temperatures are reconstructed using a two stage reduced-space optimal interpolation procedure, followed by superposition of quality-improved gridded observations onto the reconstructions to restore local detail. SSTs near sea ice are estimated using statistical relationships between SST and sea ice concentration.\n\nData restrictions: for academic research use only.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst_trend (Monthly 1 degree resolution SST Trend, degC)\nsst_cycle (Monthly 1 degree resolution SST Cycle, degC)\nsst_seasonal (Monthly 1 degree resolution SST Seasonal, degC)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdHadISSTDecomp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdHadISSTDecomp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdHadISSTDecomp/index.json", "https://oceanwatch.pfeg.noaa.gov/thredds/dodsC/HadleyCenter/HadISSTDecomp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdHadISSTDecomp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdHadISSTDecomp&showErrors=false&email=", "NOAA SWFSC ERD", "erdHadISSTDecomp"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAIicov1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAIicov1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAIicov1day_LonPM180/request", "", "public", "Ice Coverage, Aqua AMSR-E, Near Real Time, Global, 2004-2011 (1 Day Composite), Lon+/-180", "Ice Coverage is measured by the Advanced Microwave Scanning Radiometer for the Earth Observing System (AMSR-E) onboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nice (Sea Ice Area Fraction, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAIicov1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAIicov1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAIicov1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AI_icov_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAIicov1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAIicov1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAIicov1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAIicovmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAIicovmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAIicovmday_LonPM180/request", "", "public", "Ice Coverage, Aqua AMSR-E, Near Real Time, Global, 2004-2011 (Monthly Composite), Lon+/-180", "Ice Coverage is measured by the Advanced Microwave Scanning Radiometer for the Earth Observing System (AMSR-E) onboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nice (Sea Ice Area Fraction, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAIicovmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAIicovmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAIicovmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AI_icov_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAIicovmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAIicovmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAIicovmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/esrlIcoads1ge_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/esrlIcoads1ge_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/esrlIcoads1ge_LonPM180/request", "", "public", "ICOADS, 1-degree, Enhanced, Monthly, 1960-present, Lon+/-180", "This dataset has the 1-degree, Global, Enhanced, simple gridded monthly\nsummary product (1960 to present) from the International Comprehensive\nOcean-Atmosphere Data Set (ICOADS), the most extensive collection of surface\nmarine data.\nTemporal Coverage:\n * Monthly values for 1960/01 - 2007/12.\n * Preliminary monthly values for 2008/01 - present.\nIMPORTANT: The time period of these products is defined in two segments.\n 1. Release 2.5 1960 through 2007\n 2. Following the Release 2.5 end date data are based exclusively on\n real-time GTS data with minimal quality control. These data should be\n considered preliminary and will be subject to change in new releases.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degC)\ncldc (Cloudiness Monthly Mean at Surface, okta)\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\nrhum (Relative Humidity Monthly Mean at Surface, %)\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degC)\nsst (Sea Surface Temperature Monthly Mean at Surface, degC)\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\nuwnd (u-wind Monthly Mean at Surface, m/s)\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/esrlIcoads1ge_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/esrlIcoads1ge_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/esrlIcoads1ge_LonPM180/index.json", "https://icoads.noaa.gov/data.icoads.html", "http://upwell.pfeg.noaa.gov/erddap/rss/esrlIcoads1ge_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=esrlIcoads1ge_LonPM180&showErrors=false&email=", "ICOADS", "esrlIcoads1ge_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/esrlIcoads2ge_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/esrlIcoads2ge_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/esrlIcoads2ge_LonPM180/request", "", "public", "ICOADS, 2-degree, Enhanced, Monthly, 1800-present, Lon+/-180", "This dataset has the 2-degree, Global, Enhanced, simple gridded monthly\nsummary product (1800 to present) from the International Comprehensive\nOcean-Atmosphere Data Set (ICOADS), the most extensive collection of surface\nmarine data.\nTemporal Coverage:\n * Monthly values for 1800/01 - 2007/12.\n * Preliminary monthly values for 2008/01 - present.\nIMPORTANT: The time period of these products is defined in two segments.\n 1. Release 2.5 1800 through 2007\n 2. Following the Release 2.5 end date data are based exclusively on\n real-time GTS data with minimal quality control. These data should be\n considered preliminary and will be subject to change in new releases.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degC)\ncldc (Cloudiness Monthly Mean at Surface, okta)\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\nrhum (Relative Humidity Monthly Mean at Surface, %)\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degC)\nsst (Sea Surface Temperature Monthly Mean at Surface, degC)\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\nuwnd (u-wind Monthly Mean at Surface, m/s)\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/esrlIcoads2ge_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/esrlIcoads2ge_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/esrlIcoads2ge_LonPM180/index.json", "http://icoads.noaa.gov/data.icoads.html", "http://upwell.pfeg.noaa.gov/erddap/rss/esrlIcoads2ge_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=esrlIcoads2ge_LonPM180&showErrors=false&email=", "ICOADS", "esrlIcoads2ge_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/esrlIcoads2gec50_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/esrlIcoads2gec50_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/esrlIcoads2gec50_LonPM180/request", "", "public", "ICOADS, 2-degree, Enhanced, Monthly, Long Term Mean 1950-1979, Lon+/-180", "This dataset has the long term mean (monthly climatology) of the 2-degree,\nGlobal, Enhanced, simple gridded monthly summary product (1950 - 1979) from\nthe International Comprehensive Ocean-Atmosphere Data Set (ICOADS), the most\nextensive collection of surface marine data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Long Term Mean at Surface, degC)\ncldc (Cloudiness Monthly Long Term Mean at Surface, okta)\nlflx (Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\nrhum (Relative Humidity Monthly Long Term Mean at Surface, %)\nsflx (Sensible Heat Parameter Monthly Long Term Mean at Surface, degC m/s)\nshum (Specific Humidity Monthly Long Term Mean at Surface, grams/kg)\nslp (Sea Level Pressure Monthly Long Term Mean at Surface, millibars)\nsst (Sea Surface Temperature Monthly Long Term Mean at Surface, degC)\nupstr (u-wind Stress Monthly Long Term Mean at Surface, m^2/s^2)\nuwnd (u-wind Monthly Long Term Mean at Surface, m/s)\nvpstr (v-wind Stress Monthly Long Term Mean at Surface, m^2/s^2)\nvwnd (v-wind Monthly Long Term Mean at Surface, m/s)\nwspd (Scalar Wind Monthly Long Term Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/esrlIcoads2gec50_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/esrlIcoads2gec50_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/esrlIcoads2gec50_LonPM180/index.json", "http://icoads.noaa.gov/data.icoads.html", "http://upwell.pfeg.noaa.gov/erddap/rss/esrlIcoads2gec50_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=esrlIcoads2gec50_LonPM180&showErrors=false&email=", "ICOADS", "esrlIcoads2gec50_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/esrlIcoads2gec71_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/esrlIcoads2gec71_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/esrlIcoads2gec71_LonPM180/request", "", "public", "ICOADS, 2-degree, Enhanced, Monthly, Long Term Mean 1971-2000, Lon+/-180", "This dataset has the long term mean (monthly climatology) of the 2-degree,\nGlobal, Enhanced, simple gridded monthly summary product (1971 - 2000) from\nthe International Comprehensive Ocean-Atmosphere Data Set (ICOADS), the most\nextensive collection of surface marine data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Long Term Mean at Surface, degC)\ncldc (Cloudiness Monthly Long Term Mean at Surface, okta)\nlflx (Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Long Term Mean at Surface, grams/kg)\nrhum (Relative Humidity Monthly Long Term Mean at Surface, %)\nsflx (Sensible Heat Parameter Monthly Long Term Mean at Surface, degC m/s)\nshum (Specific Humidity Monthly Long Term Mean at Surface, grams/kg)\nslp (Sea Level Pressure Monthly Long Term Mean at Surface, millibars)\nsmina (Sea-air Temperature Difference Monthly Long Term Mean at Surface, degC)\nsst (Sea Surface Temperature Monthly Long Term Mean at Surface, degC)\nuairt (Sensible Heat Trans Eastward Param Monthly Long Term Mean at Surface, degC m/s)\nulflx (Zonal Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\nupstr (u-wind Stress Monthly Long Term Mean at Surface, m^2/s^2)\nuspeh (Latent Heat Trans Eastward Param Monthly Long Term Mean at Surface, grams/kg m/s)\nuwnd (u-wind Monthly Long Term Mean at Surface, m/s)\nvairt (Sensible Heat Trans Northward Param Monthly Long Term Mean at Surface, degC m/s)\nvlflx (Meridional Latent Heat Parameter Monthly Long Term Mean at Surface, grams/kg m/s)\nvpstr (v-wind Stress Monthly Long Term Mean at Surface, m^2/s^2)\nvspeh (Latent Heat Trans Northward Param Monthly Long Term Mean at Surface, grams/kg m/s)\nvwnd (v-wind Monthly Long Term Mean at Surface, m/s)\nwspd (Scalar Wind Monthly Long Term Mean at Surface, m/s)\nwspd3 (Scalar Wind Cubed Monthly Long Term Mean at Surface, m**3/s**3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/esrlIcoads2gec71_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/esrlIcoads2gec71_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/esrlIcoads2gec71_LonPM180/index.json", "http://icoads.noaa.gov/data.icoads.html", "http://upwell.pfeg.noaa.gov/erddap/rss/esrlIcoads2gec71_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=esrlIcoads2gec71_LonPM180&showErrors=false&email=", "ICOADS", "esrlIcoads2gec71_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/iprcAquariusOISSS7day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/iprcAquariusOISSS7day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/iprcAquariusOISSS7day/request", "", "public", "IPRC, Aquarius, Optimally Interpolated Salinity, 0.5\u00b0, Global, 7-Day, 2011-2015, v4.0", "Level 4 optimally interpolated, 0.5 degree, near-global, 7 day sea surface salinity (OISSS) product for version 4.0 of the Aquarius/SAC-D dataset. OISSS is a principal investigator produced dataset developed at the International Pacific Research Center (IPRC) of the University of Hawaii at Manoa, School of Ocean and Earth Science and Technology (SOEST). The optimal interpolation (OI) mapping procedure used to create this product corrects for systematic spatial biases in Aquarius SSS data with respect to Argo near-surface salinity observations and takes into account available statistical information about the signal and noise, specific to the Aquarius instrument. The product covers the entire duration of the Aquarius/SAC-D mission: 8/26/2011 - 6/7/2015. Further details on the data processing can be found in: Melnichenko, O., P. Hacker., N. Maximenko, G. Lagerloef, and J. Potemra (2016), Optimal interpolation of Aquarius sea surface salinity, J. Geophys. Res. Oceans, 121, 602-616, doi:10.1002/2015JC011343.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss (sea surface salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/iprcAquariusOISSS7day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/iprcAquariusOISSS7day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/iprcAquariusOISSS7day/index.json", "https://iprc.soest.hawaii.edu/users/oleg/oisss/glb/Technical_Notes.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/iprcAquariusOISSS7day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=iprcAquariusOISSS7day&showErrors=false&email=", "IPRC, NASA", "iprcAquariusOISSS7day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplSMAPSSSv42_8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplSMAPSSSv42_8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplSMAPSSSv42_8day/request", "", "public", "JPL SMAP Sea Surface Salinity and Wind Speed, V4.2, 0.25x0.25\u00b0, 2015-present, 8 Day Composite", "This is version 4.2 of the Gaussian-weighted map gridding of Soil Moisture Active Passive (SMAP) L2B Sea Surface Salinity (SSS) and Wind Speed Product. This is the PI-produced JPL SMAP-SSS CAP, 8-day running mean, level 3 mapped, sea surface salinity product from the NASA Soil Moisture Active Passive (SMAP) observatory. It is based on the Combined Active-Passive (CAP) retrieval algorithm developed at JPL originally in the context of Aquarius/SAC-D and now extended to SMAP. Daily data files for this product are based on SSS averages spanning an 8-day moving time window. Associated file variables include: derived SSS and wind speed data from SMAP and ancillary surface salinity from HYCOM. SMAP data begins on April 1, 2015 and is ongoing, with a 7-day latency in processing and availability. L3 products are global in extent and gridded at 0.25degree x 0.25degree with an approximate spatial resolution of 60km.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmap_sss (SMAP sea surface salinity, PSU)\nanc_sss (HYCOM sea surface salinity, PSU)\nsmap_spd (SMAP 10 m wind speed, m s-1)\nsmap_high_spd (SMAP 10 m wind speed (using ancillary SSS), m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplSMAPSSSv42_8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplSMAPSSSv42_8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplSMAPSSSv42_8day/index.json", "https://podaac.jpl.nasa.gov/dataset/SMAP_JPL_L3_SSS_CAP_8DAY-RUNNINGMEAN_V42", "http://upwell.pfeg.noaa.gov/erddap/rss/jplSMAPSSSv42_8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplSMAPSSSv42_8day&showErrors=false&email=", "Jet Propulsion Laboratory", "jplSMAPSSSv42_8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplSMAPSSSv42_mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplSMAPSSSv42_mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplSMAPSSSv42_mday/request", "", "public", "JPL SMAP Sea Surface Salinity and Wind Speed, V4.2, 0.25x0.25\u00b0, 2015-present, Monthly Composite", "This is version 4.2 of the Gaussian-weighted map gridding of Soil Moisture Active Passive (SMAP) L2B Sea Surface Salinity (SSS) and Wind Speed Product. This is the PI-produced JPL SMAP-SSS CAP, level 3, monthly mapped sea surface salinity product from the NASA Soil Moisture Active Passive (SMAP) observatory. It is based on the Combined Active-Passive (CAP) retrieval algorithm developed at JPL originally in the context of Aquarius/SAC-D and now extended to SMAP. Associated file variables include: derived SSS and wind speed from SMAP and ancillary surface salinity from HYCOM. SMAP data begins on April 1, 2015 and is ongoing, with a 1 month latency in processing and availability. L3 products are global in extent and gridded at 0.25degree x 0.25degree with an approximate spatial resolution of 60km.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmap_sss (SMAP sea surface salinity, PSU)\nanc_sss (HYCOM sea surface salinity, PSU)\nsmap_spd (SMAP 10 m wind speed, m s-1)\nsmap_high_spd (SMAP 10 m wind speed (using ancillary SSS), m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplSMAPSSSv42_mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplSMAPSSSv42_mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplSMAPSSSv42_mday/index.json", "https://podaac.jpl.nasa.gov/dataset/SMAP_JPL_L3_SSS_CAP_MONTHLY_V42", "http://upwell.pfeg.noaa.gov/erddap/rss/jplSMAPSSSv42_mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplSMAPSSSv42_mday&showErrors=false&email=", "Jet Propulsion Laboratory", "jplSMAPSSSv42_mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedSmi28DayRMV5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedSmi28DayRMV5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAquariusL3WindSpeedSmi28DayRMV5/request", "", "public", "JPL, Aquarius L3 Wind Speed SMI 28Day-RunningMean V5, Global, 1.0\u00b0, 2011-2015", "Version 5.0.SMI Aquarius SMI Level 3 products contain the Standard Mapped Image (SMI) of Aquarius sea surface salinity or wind speed data. (For further details see https://podaac.jpl.nasa.gov/aquarius )\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwind_speed (m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAquariusL3WindSpeedSmi28DayRMV5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAquariusL3WindSpeedSmi28DayRMV5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAquariusL3WindSpeedSmi28DayRMV5/index.json", "https://podaac.jpl.nasa.gov/aquarius", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAquariusL3WindSpeedSmi28DayRMV5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAquariusL3WindSpeedSmi28DayRMV5&showErrors=false&email=", "NASA/GSFC OBPG", "jplAquariusL3WindSpeedSmi28DayRMV5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedSmi3MonthV5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedSmi3MonthV5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAquariusL3WindSpeedSmi3MonthV5/request", "", "public", "JPL, Aquarius L3 Wind Speed SMI 3Month V5, Global, 1.0\u00b0, 2011-2015", "Version 5.0.SMI Aquarius SMI Level 3 products contain the Standard Mapped Image (SMI) of Aquarius sea surface salinity or wind speed data. (For further details see https://podaac.jpl.nasa.gov/aquarius )\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwind_speed (m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAquariusL3WindSpeedSmi3MonthV5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAquariusL3WindSpeedSmi3MonthV5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAquariusL3WindSpeedSmi3MonthV5/index.json", "https://podaac.jpl.nasa.gov/aquarius", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAquariusL3WindSpeedSmi3MonthV5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAquariusL3WindSpeedSmi3MonthV5&showErrors=false&email=", "NASA/GSFC OBPG", "jplAquariusL3WindSpeedSmi3MonthV5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedSmi7DayV5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedSmi7DayV5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAquariusL3WindSpeedSmi7DayV5/request", "", "public", "JPL, Aquarius L3 Wind Speed SMI 7Day V5, Global, 1.0\u00b0, 2011-2015", "Version 5.0.SMI Aquarius SMI Level 3 products contain the Standard Mapped Image (SMI) of Aquarius sea surface salinity or wind speed data. (For further details see https://podaac.jpl.nasa.gov/aquarius )\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwind_speed (m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAquariusL3WindSpeedSmi7DayV5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAquariusL3WindSpeedSmi7DayV5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAquariusL3WindSpeedSmi7DayV5/index.json", "https://podaac.jpl.nasa.gov/aquarius", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAquariusL3WindSpeedSmi7DayV5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAquariusL3WindSpeedSmi7DayV5&showErrors=false&email=", "NASA/GSFC OBPG", "jplAquariusL3WindSpeedSmi7DayV5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedSmi7DayRMV5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedSmi7DayRMV5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAquariusL3WindSpeedSmi7DayRMV5/request", "", "public", "JPL, Aquarius L3 Wind Speed SMI 7Day-RunningMean V5, Global, 1.0\u00b0, 2011-2015", "Version 5.0.SMI Aquarius SMI Level 3 products contain the Standard Mapped Image (SMI) of Aquarius sea surface salinity or wind speed data. (For further details see https://podaac.jpl.nasa.gov/aquarius )\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwind_speed (m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAquariusL3WindSpeedSmi7DayRMV5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAquariusL3WindSpeedSmi7DayRMV5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAquariusL3WindSpeedSmi7DayRMV5/index.json", "https://podaac.jpl.nasa.gov/aquarius", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAquariusL3WindSpeedSmi7DayRMV5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAquariusL3WindSpeedSmi7DayRMV5&showErrors=false&email=", "NASA/GSFC OBPG", "jplAquariusL3WindSpeedSmi7DayRMV5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedSmiDailyV5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedSmiDailyV5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAquariusL3WindSpeedSmiDailyV5/request", "", "public", "JPL, Aquarius L3 Wind Speed SMI Daily V5, Global, 1.0\u00b0, 2011-2015", "Version 5.0.SMI Aquarius SMI Level 3 products contain the Standard Mapped Image (SMI) of Aquarius sea surface salinity or wind speed data. (For further details see https://podaac.jpl.nasa.gov/aquarius )\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwind_speed (m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAquariusL3WindSpeedSmiDailyV5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAquariusL3WindSpeedSmiDailyV5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAquariusL3WindSpeedSmiDailyV5/index.json", "https://podaac.jpl.nasa.gov/aquarius", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAquariusL3WindSpeedSmiDailyV5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAquariusL3WindSpeedSmiDailyV5&showErrors=false&email=", "NASA/GSFC OBPG", "jplAquariusL3WindSpeedSmiDailyV5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedSmiMonthlyV5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAquariusL3WindSpeedSmiMonthlyV5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAquariusL3WindSpeedSmiMonthlyV5/request", "", "public", "JPL, Aquarius L3 Wind Speed SMI Monthly V5, Global, 1.0\u00b0, 2011-2015", "Version 5.0.SMI Aquarius SMI Level 3 products contain the Standard Mapped Image (SMI) of Aquarius sea surface salinity or wind speed data. (For further details see https://podaac.jpl.nasa.gov/aquarius )\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwind_speed (m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAquariusL3WindSpeedSmiMonthlyV5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAquariusL3WindSpeedSmiMonthlyV5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAquariusL3WindSpeedSmiMonthlyV5/index.json", "https://podaac.jpl.nasa.gov/aquarius", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAquariusL3WindSpeedSmiMonthlyV5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAquariusL3WindSpeedSmiMonthlyV5&showErrors=false&email=", "NASA/GSFC OBPG", "jplAquariusL3WindSpeedSmiMonthlyV5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQkd490Daily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQkd490Daily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQkd490Daily/request", "", "public", "Kd490, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Daily", "Level-3 Standard Mapped Image (SMI), Global, 4km, Kd490, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nkd_490 (Diffuse attenuation coefficient at 490 nm, kd2 algorithm, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQkd490Daily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQkd490Daily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQkd490Daily/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQkd490Daily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQkd490Daily&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQkd490Daily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQkd490Monthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQkd490Monthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQkd490Monthly/request", "", "public", "Kd490, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Monthly", "Level-3 Standard Mapped Image (SMI), Global, 4km, Kd490, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nkd_490 (Diffuse attenuation coefficient at 490 nm, kd2 algorithm, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQkd490Monthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQkd490Monthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQkd490Monthly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQkd490Monthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQkd490Monthly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQkd490Monthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQkd490Weekly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQkd490Weekly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQkd490Weekly/request", "", "public", "Kd490, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Weekly", "Level-3 Standard Mapped Image (SMI), Global, 4km, Kd490, Weekly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nkd_490 (Diffuse attenuation coefficient at 490 nm, kd2 algorithm, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQkd490Weekly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQkd490Weekly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQkd490Weekly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQkd490Weekly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQkd490Weekly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQkd490Weekly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNkdparMonthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNkdparMonthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNkdparMonthly/request", "", "public", "KDPAR, NOAA VIIRS, Near Real-Time, Global, Level 3, 2015-2016, EXPERIMENTAL, Monthly", "Visible and Infrared Imager/Radiometer Suite/Suomi-NPP (VIIRSN) Level-3 (WW00), Diffuse Attenuation Coefficient for PAR (kdpar), Near Real-Time, Global, Monthly, processed by NOAA. EXPERIMENTAL.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nkd_par (Diffuse attenuation coefficient for PAR, m^-1)\ngraphics (graphics overlay planes)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNkdparMonthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNkdparMonthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNkdparMonthly/index.json", "https://www.star.nesdis.noaa.gov/thredds/dodsC/CoastWatch/VIIRS/kdpar/Monthly/WW00.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNkdparMonthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNkdparMonthly&showErrors=false&email=", "NOAA/NESDIS Center for Satellite Applications and Research", "nesdisVHNkdparMonthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNkdparDaily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNkdparDaily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNkdparDaily/request", "", "public", "KDPAR, NOAA VIIRS, Near Real-Time, Global, Level 3, 2017-present, EXPERIMENTAL, Daily", "Visible and Infrared Imager/Radiometer Suite/Suomi-NPP (VIIRSN) Level-3 (WW00), Diffuse Attenuation Coefficient for PAR (kdpar), Near Real-Time, Global, Daily, processed by NOAA. EXPERIMENTAL.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nkd_par (Diffuse Attenuation Coefficient for PAR, m^-1)\ngraphics (graphics overlay planes)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNkdparDaily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNkdparDaily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNkdparDaily/index.json", "https://www.star.nesdis.noaa.gov/thredds/dodsC/CoastWatch/VIIRS/kdpar/Daily/WW00.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNkdparDaily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNkdparDaily&showErrors=false&email=", "NOAA/NESDIS Center for Satellite Applications and Research (STAR)", "nesdisVHNkdparDaily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNkdparWeekly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNkdparWeekly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNkdparWeekly/request", "", "public", "KDPAR, NOAA VIIRS, Near Real-Time, Global, Level 3, 2017-present, EXPERIMENTAL, Weekly", "Visible and Infrared Imager/Radiometer Suite/Suomi-NPP (VIIRSN) Level-3 (WW00), Diffuse Attenuation Coefficient for PAR (kdpar), Near Real-Time, Global, Weekly, processed by NOAA. EXPERIMENTAL.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nkd_par (Diffuse Attenuation Coefficient for PAR, m^-1)\ngraphics (graphics overlay planes)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNkdparWeekly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNkdparWeekly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNkdparWeekly/index.json", "https://www.star.nesdis.noaa.gov/thredds/dodsC/CoastWatch/VIIRS/kdpar/Weekly/WW00.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNkdparWeekly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNkdparWeekly&showErrors=false&email=", "NOAA/NESDIS Center for Satellite Applications and Research (STAR)", "nesdisVHNkdparWeekly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQkdparDaily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQkdparDaily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQkdparDaily/request", "", "public", "KdPAR, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Daily", "Level-3 Standard Mapped Image (SMI), Global, 4km, KdPAR, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nkd_par (K(PAR) Lee (1st optical depth), m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQkdparDaily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQkdparDaily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQkdparDaily/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQkdparDaily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQkdparDaily&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQkdparDaily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQkdparMonthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQkdparMonthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQkdparMonthly/request", "", "public", "KdPAR, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Monthly", "Level-3 Standard Mapped Image (SMI), Global, 4km, KdPAR, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nkd_par (K(PAR) Lee (1st optical depth), m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQkdparMonthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQkdparMonthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQkdparMonthly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQkdparMonthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQkdparMonthly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQkdparMonthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQkdparWeekly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQkdparWeekly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQkdparWeekly/request", "", "public", "KdPAR, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Weekly", "Level-3 Standard Mapped Image (SMI), Global, 4km, KdPAR, Weekly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nkd_par (K(PAR) Lee (1st optical depth), m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQkdparWeekly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQkdparWeekly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQkdparWeekly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQkdparWeekly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQkdparWeekly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQkdparWeekly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_99c2_e495_30e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_99c2_e495_30e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_99c2_e495_30e1/request", "", "public", "MODIS AQUA L3 CHLA DAILY 4KM R", "HMODISA Level-3 Standard Mapped Image (Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Chlorophyll-a (CHLA) DAILY 4KM R)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll a concentration, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_99c2_e495_30e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_99c2_e495_30e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_99c2_e495_30e1/index.json", "https://podaac.jpl.nasa.gov/dataset/MODIS_Aqua_L3_CHLA_Daily_4km_R", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_99c2_e495_30e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_99c2_e495_30e1&showErrors=false&email=", "NASA JPL", "nasa_jpl_99c2_e495_30e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_0d42_152d_f9ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_0d42_152d_f9ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_0d42_152d_f9ea/request", "", "public", "MODIS AQUA L3 CHLA MONTHLY 4KM R", "HMODISA Level-3 Standard Mapped Image (Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Chlorophyll-a (CHLA) MONTHLY 4KM R)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll a concentration, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_0d42_152d_f9ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_0d42_152d_f9ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_0d42_152d_f9ea/index.json", "https://podaac.jpl.nasa.gov/dataset/MODIS_Aqua_L3_CHLA_Monthly_4km_R", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_0d42_152d_f9ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_0d42_152d_f9ea&showErrors=false&email=", "NASA JPL", "nasa_jpl_0d42_152d_f9ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPIC1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPIC1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPIC1day/request", "", "public", "MODIS Aqua, Level-3 SMI, Global, 4km, Particulate Inorganic Carbon, 2003-present (1 Day Composite)", "MODIS Aqua, Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC) (1 Day Composite)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Calcite Concentration, Balch and Gordon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPIC1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPIC1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPIC1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MPIC_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPIC1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPIC1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMPIC1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPIC8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPIC8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPIC8day/request", "", "public", "MODIS Aqua, Level-3 SMI, Global, 4km, Particulate Inorganic Carbon, 2003-present (8 Day Composite)", "MODIS Aqua, Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC) (8 Day Composite)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Calcite Concentration, Balch and Gordon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPIC8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPIC8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPIC8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MPIC_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPIC8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPIC8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMPIC8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPICmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPICmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPICmday/request", "", "public", "MODIS Aqua, Level-3 SMI, Global, 4km, Particulate Inorganic Carbon, 2003-present (Monthly Composite)", "MODIS Aqua, Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC) (Monthly Composite)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Calcite Concentration, Balch and Gordon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPICmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPICmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPICmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MPIC_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPICmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPICmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdMPICmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPOC1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPOC1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPOC1day/request", "", "public", "MODIS Aqua, Level-3 SMI, Global, 4km, Particulate Organic Carbon, 2003-present (1 Day Composite)", "MODIS Aqua, Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC) (1 Day Composite)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, D. Stramski, 2007 (443/555 version), mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPOC1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPOC1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPOC1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MPOC_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPOC1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPOC1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMPOC1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPOC8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPOC8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPOC8day/request", "", "public", "MODIS Aqua, Level-3 SMI, Global, 4km, Particulate Organic Carbon, 2003-present (8 Day Composite)", "MODIS Aqua, Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC) (8 Day Composite)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, D. Stramski, 2007 (443/555 version), mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPOC8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPOC8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPOC8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MPOC_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPOC8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPOC8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMPOC8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPOCmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPOCmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPOCmday/request", "", "public", "MODIS Aqua, Level-3 SMI, Global, 4km, Particulate Organic Carbon, 2003-present (Monthly Composite)", "MODIS Aqua, Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC) (Monthly Composite)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, D. Stramski, 2007 (443/555 version), mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPOCmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPOCmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPOCmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MPOC_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPOCmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPOCmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdMPOCmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplMURSST41anom1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplMURSST41anom1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplMURSST41anom1day/request", "", "public", "Multi-scale Ultra-high Resolution (MUR) SST Analysis Anomaly fv04.1, Global, 0.01\u00b0, 2002-present, Daily", "A daily Sea Surface Temperature (SST) Anomaly product created by ERD based on JPL MUR's climatology (2003-2014) of the Jet Propulsion Laboratory's (JPL) Multi-scale Ultra-high Resolution (MUR), merged, multi-sensor L4 v4.1 Foundation SST analysis product (part of the Group for High-Resolution Sea Surface Temperature (GHRSST) project).\n \nThe data for the most recent 4 days is usually revised everyday. The data for other days is sometimes revised.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsstAnom (sea surface temperature anomaly, degree_C)\nmask (sea/land field composite mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplMURSST41anom1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplMURSST41anom1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplMURSST41anom1day/index.json", "https://podaac.jpl.nasa.gov/dataset/MUR-JPL-L4-GLOB-v4.1", "http://upwell.pfeg.noaa.gov/erddap/rss/jplMURSST41anom1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplMURSST41anom1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD and NOAA NESDIS CoastWatch WCRN", "jplMURSST41anom1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplMURSST41anommday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplMURSST41anommday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplMURSST41anommday/request", "", "public", "Multi-scale Ultra-high Resolution (MUR) SST Analysis Anomaly fv04.1, Global, 0.01\u00b0, 2002-present, Monthly", "This monthly Sea Surface Temperature (SST) Anomaly product is a simple mean of the daily anomaly product created by ERD for a given month. The daily anomalies were created by ERD based on JPL MUR's climatology (2003-2014) of the Jet Propulsion Laboratory's (JPL) Multi-scale Ultra-high Resolution (MUR), merged, multi-sensor L4 v4.1 Foundation SST analysis product (part of the Group for High-Resolution Sea Surface Temperature (GHRSST) project).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsstAnom (Sea Surface Temperature Anomaly Monthly Mean, degree_C)\nmask (sea/land field composite mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplMURSST41anommday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplMURSST41anommday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplMURSST41anommday/index.json", "https://podaac.jpl.nasa.gov/dataset/MUR-JPL-L4-GLOB-v4.1", "http://upwell.pfeg.noaa.gov/erddap/rss/jplMURSST41anommday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplMURSST41anommday&showErrors=false&email=", "NOAA NMFS SWFSC ERD and NOAA NESDIS CoastWatch WCRN", "jplMURSST41anommday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplMURSST", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplMURSST.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplMURSST/request", "", "public", "Multi-scale Ultra-high Resolution (MUR) SST Analysis fv04.0, Global, 0.011\u00b0, 2002-2017, Daily, DEPRECATED", "(This is now DEPRECATED. See the newer version 4.1 of this dataset: jplMURSST41.) \nThis daily, global, Multi-scale, Ultra-high Resolution (MUR) Sea Surface Temperature (SST) 1-km data set, Version 4.0, is produced at JPL under the NASA MEaSUREs program. For details, see https://mur.jpl.nasa.gov/ . This dataset is part of the Multi-sensor Improved Sea Surface Temperatures (MISST) project, which is part of the Group for High-Resolution Sea Surface Temperature (GHRSST) project. Before 2015-05-05, this dataset had the latest files available from JPL (various versions at various times). Starting 2015-05-05, this dataset has entirely fv04 files.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (Analysed Sea Surface Temperature, degree_C)\nanalysis_error (Estimated Error Standard Deviation of analysed_sst, degree_C)\nmask (Sea/Land Field Composite Mask)\nsea_ice_fraction (Sea Ice Area Fraction, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplMURSST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplMURSST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplMURSST/index.json", "https://mur.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplMURSST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplMURSST&showErrors=false&email=", "NASA JPL", "jplMURSST"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplMURSST41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplMURSST41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplMURSST41/request", "", "public", "Multi-scale Ultra-high Resolution (MUR) SST Analysis fv04.1, Global, 0.01\u00b0, 2002-present, Daily", "This is a merged, multi-sensor L4 Foundation Sea Surface Temperature (SST) analysis product from Jet Propulsion Laboratory (JPL). This daily, global, Multi-scale, Ultra-high Resolution (MUR) Sea Surface Temperature (SST) 1-km data set, Version 4.1, is produced at JPL under the NASA MEaSUREs program. For details, see https://podaac.jpl.nasa.gov/dataset/MUR-JPL-L4-GLOB-v4.1 . This dataset is part of the Group for High-Resolution Sea Surface Temperature (GHRSST) project. The data for the most recent 4 days is usually revised everyday. The data for other days is sometimes revised.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (Analysed Sea Surface Temperature, degree_C)\nanalysis_error (Estimated Error Standard Deviation of analysed_sst, degree_C)\nmask (Sea/Land Field Composite Mask)\nsea_ice_fraction (Sea Ice Area Fraction, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplMURSST41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplMURSST41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplMURSST41/index.json", "https://podaac.jpl.nasa.gov/dataset/MUR-JPL-L4-GLOB-v4.1", "http://upwell.pfeg.noaa.gov/erddap/rss/jplMURSST41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplMURSST41&showErrors=false&email=", "NASA JPL", "jplMURSST41"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplMURSST41mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplMURSST41mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplMURSST41mday/request", "", "public", "Multi-scale Ultra-high Resolution (MUR) SST Analysis fv04.1, Global, 0.01\u00b0, 2002-present, Monthly", "A monthly mean Sea Surface Temperature (SST) product created by NOAA NMFS SWFSC ERD based on the daily, global, Multi-scale, Ultra-high Resolution (MUR) Sea Surface Temperature (SST) 1-km data set, Version 4.1, which is produced at the NASA Jet Propulsion Laboratory (JPL) under the NASA MEaSUREs program. For details of the source dataset, see https://podaac.jpl.nasa.gov/dataset/MUR-JPL-L4-GLOB-v4.1 . The source dataset is part of the Group for High-Resolution Sea Surface Temperature (GHRSST) project.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean, degree_C)\nnobs (Number of Observations)\nmask (Sea/Land Field Composite Mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplMURSST41mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplMURSST41mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplMURSST41mday/index.json", "https://podaac.jpl.nasa.gov/Multi-scale_Ultra-high_Resolution_MUR-SST", "http://upwell.pfeg.noaa.gov/erddap/rss/jplMURSST41mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplMURSST41mday&showErrors=false&email=", "NOAA ERD and CoastWatch West Coast Regional Node", "jplMURSST41mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplMURSST41clim", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplMURSST41clim.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplMURSST41clim/request", "", "public", "Multi-scale Ultra-high Resolution (MUR) SST Daily Climatology 2003-2014, fv04.1, Global, 0.01\u00b0", "This JPL MUR SST daily climatology v4.1 (2003-2014) is from ftp://mariana.jpl.nasa.gov/mur_sst/tmchin/seasonal/ and is based on the Jet Propulsion Laboratory's (JPL) Multi-scale Ultra-high Resolution (MUR), merged, multi-sensor L4 v4.1 Foundation SST analysis product (part of the Group for High-Resolution Sea Surface Temperature (GHRSST) project).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [dayOfYear][latitude][longitude]):\nmean_sst (2003-2014 Climatological Mean Sea Surface Temperature, degree_C)\nstandard_deviation (standard deviation of mean_sst, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplMURSST41clim_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplMURSST41clim_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplMURSST41clim/index.json", "https://podaac.jpl.nasa.gov/dataset/MUR-JPL-L4-GLOB-v4.1", "http://upwell.pfeg.noaa.gov/erddap/rss/jplMURSST41clim.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplMURSST41clim&showErrors=false&email=", "NOAA NMFS SWFSC ERD and NOAA NESDIS CoastWatch WCRN", "jplMURSST41clim"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e8d3_f614_6c50", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e8d3_f614_6c50.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_e8d3_f614_6c50/request", "", "public", "NAVOCEANO 10km Analyzed SST (GHRSST NAVO-L4HR1m-GLOB-K10 SST)", "Naval Oceanographic Office (NAVOCEANO) 10km Analyzed Sea Surface Temperature. Distribution Statement: Approved for public release. Distribution unlimited. (Global High-Resolution Sea Surface Temperature (GHRSST) Naval Oceanography (NAVO)-L4HR1m-GLOB-K10 SST)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (Analyzed Sea Surface Temperature, degree_C)\nanalysis_error (degree_C)\nmask (Land Sea Mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_e8d3_f614_6c50_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_e8d3_f614_6c50_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_e8d3_f614_6c50/index.json", "https://podaac.jpl.nasa.gov/dataset/NAVO-L4HR1m-GLOB-K10_SST", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_e8d3_f614_6c50.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_e8d3_f614_6c50&showErrors=false&email=", "Naval Oceanographic Office", "nasa_jpl_e8d3_f614_6c50"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem05D10mWind_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem05D10mWind_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNavgem05D10mWind_LonPM180/request", "", "public", "Navy Global Environmental Model (NAVGEM), 0.5 degree, 2013-present, 10 m Wind, Lon+/-180", "Navy Global Environmental Model (NAVGEM) is a global numerical weather prediction computer model. It replaced NOGAPS as the prime model in the middle of February 2013 at the Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) Weather model synoptic site. [Wikipedia]\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][height_above_ground][latitude][longitude]):\nwnd_ucmp_height_above_ground (Eastward Wind, m/s)\nwnd_vcmp_height_above_ground (Northward Wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNavgem05D10mWind_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNavgem05D10mWind_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNavgem05D10mWind_LonPM180/index.json", "https://en.wikipedia.org/wiki/NAVGEM", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNavgem05D10mWind_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNavgem05D10mWind_LonPM180&showErrors=false&email=", "FNMOC", "erdNavgem05D10mWind_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem05D20mWind_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem05D20mWind_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNavgem05D20mWind_LonPM180/request", "", "public", "Navy Global Environmental Model (NAVGEM), 0.5 degree, 2013-present, 20 m Wind, Lon+/-180", "Navy Global Environmental Model (NAVGEM) is a global numerical weather prediction computer model. It replaced NOGAPS as the prime model in the middle of February 2013 at the Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) Weather model synoptic site. [Wikipedia]\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][height_above_ground][latitude][longitude]):\nwnd_ucmp_height_above_ground (Eastward Wind, m/s)\nwnd_vcmp_height_above_ground (Northward Wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNavgem05D20mWind_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNavgem05D20mWind_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNavgem05D20mWind_LonPM180/index.json", "https://en.wikipedia.org/wiki/NAVGEM", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNavgem05D20mWind_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNavgem05D20mWind_LonPM180&showErrors=false&email=", "FNMOC", "erdNavgem05D20mWind_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem05D500mb_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem05D500mb_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNavgem05D500mb_LonPM180/request", "", "public", "Navy Global Environmental Model (NAVGEM), 0.5 degree, 2013-present, 500 hPa Height, Lon+/-180", "Navy Global Environmental Model (NAVGEM) is a global numerical weather prediction computer model. It replaced NOGAPS as the prime model in the middle of February 2013 at the Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) Weather model synoptic site. [Wikipedia]\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][isobaric][latitude][longitude]):\ngeop_ht_isobaric (Geopotential Height (500 hPa), gpm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNavgem05D500mb_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNavgem05D500mb_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNavgem05D500mb_LonPM180/index.json", "https://en.wikipedia.org/wiki/NAVGEM", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNavgem05D500mb_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNavgem05D500mb_LonPM180&showErrors=false&email=", "FNMOC", "erdNavgem05D500mb_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem05DPres_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem05DPres_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNavgem05DPres_LonPM180/request", "", "public", "Navy Global Environmental Model (NAVGEM), 0.5 degree, 2013-present, Pressure MSL, Lon+/-180", "Navy Global Environmental Model (NAVGEM) is a global numerical weather prediction computer model. It replaced NOGAPS as the prime model in the middle of February 2013 at the Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) Weather model synoptic site. [Wikipedia]\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres_reduced_msl (Pressure (adjusted to Mean Sea Level), hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNavgem05DPres_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNavgem05DPres_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNavgem05DPres_LonPM180/index.json", "https://en.wikipedia.org/wiki/NAVGEM", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNavgem05DPres_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNavgem05DPres_LonPM180&showErrors=false&email=", "FNMOC", "erdNavgem05DPres_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem1D10mWind_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem1D10mWind_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNavgem1D10mWind_LonPM180/request", "", "public", "Navy Global Environmental Model (NAVGEM), 1 degree, 2013-present, 10 m Wind, Lon+/-180", "Navy Global Environmental Model (NAVGEM) is a global numerical weather prediction computer model. It replaced NOGAPS as the prime model in the middle of February 2013 at the Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) Weather model synoptic site. [Wikipedia]\n\nBUG: Because of a bug in THREDDS aggregations, the last time point of this dataset is an invalid time ~4 days in the future and has all missing values. All of the rest of this dataset (with data as recent as now-2days) is correct.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][height_above_ground][latitude][longitude]):\nwnd_ucmp_height_above_ground (Eastward Wind, m/s)\nwnd_vcmp_height_above_ground (Northward Wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNavgem1D10mWind_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNavgem1D10mWind_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNavgem1D10mWind_LonPM180/index.json", "https://en.wikipedia.org/wiki/NAVGEM", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNavgem1D10mWind_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNavgem1D10mWind_LonPM180&showErrors=false&email=", "FNMOC", "erdNavgem1D10mWind_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem1D20mWind_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem1D20mWind_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNavgem1D20mWind_LonPM180/request", "", "public", "Navy Global Environmental Model (NAVGEM), 1 degree, 2013-present, 20 m Wind, Lon+/-180", "Navy Global Environmental Model (NAVGEM) is a global numerical weather prediction computer model. It replaced NOGAPS as the prime model in the middle of February 2013 at the Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) Weather model synoptic site. [Wikipedia]\n\nBUG: Because of a bug in THREDDS aggregations, the last ~16 time points of this dataset have all missing values. All of the rest of this dataset (with data as recent as now-2days) is correct.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][height_above_ground][latitude][longitude]):\nwnd_ucmp_height_above_ground (Eastward Wind, m/s)\nwnd_vcmp_height_above_ground (Northward Wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNavgem1D20mWind_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNavgem1D20mWind_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNavgem1D20mWind_LonPM180/index.json", "https://en.wikipedia.org/wiki/NAVGEM", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNavgem1D20mWind_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNavgem1D20mWind_LonPM180&showErrors=false&email=", "FNMOC", "erdNavgem1D20mWind_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem1D500mb_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem1D500mb_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNavgem1D500mb_LonPM180/request", "", "public", "Navy Global Environmental Model (NAVGEM), 1 degree, 2013-present, 500 hPa Height, Lon+/-180", "Navy Global Environmental Model (NAVGEM) is a global numerical weather prediction computer model. It replaced NOGAPS as the prime model in the middle of February 2013 at the Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) Weather model synoptic site. [Wikipedia]\n\nBUG: Because of a bug in THREDDS aggregations, the last time point of this dataset is an invalid time ~4 days in the future and has all missing values. All of the rest of this dataset (with data as recent as now-2days) is correct.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][isobaric][latitude][longitude]):\ngeop_ht_isobaric (Geopotential Height (500 hPa), gpm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNavgem1D500mb_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNavgem1D500mb_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNavgem1D500mb_LonPM180/index.json", "https://en.wikipedia.org/wiki/NAVGEM", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNavgem1D500mb_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNavgem1D500mb_LonPM180&showErrors=false&email=", "FNMOC", "erdNavgem1D500mb_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem1DPres_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNavgem1DPres_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNavgem1DPres_LonPM180/request", "", "public", "Navy Global Environmental Model (NAVGEM), 1 degree, 2013-present, Pressure MSL, Lon+/-180", "Navy Global Environmental Model (NAVGEM) is a global numerical weather prediction computer model. It replaced NOGAPS as the prime model in the middle of February 2013 at the Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) Weather model synoptic site. [Wikipedia]\n\nBUG: Because of a bug in THREDDS aggregations, the last time point of this dataset is an invalid time ~4 days in the future and has all missing values. All of the rest of this dataset (with data as recent as now-2days) is correct.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres_reduced_msl (Pressure (adjusted to Mean Sea Level), hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNavgem1DPres_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNavgem1DPres_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNavgem1DPres_LonPM180/index.json", "https://en.wikipedia.org/wiki/NAVGEM", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNavgem1DPres_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNavgem1DPres_LonPM180&showErrors=false&email=", "FNMOC", "erdNavgem1DPres_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNogaps1D10mWind_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNogaps1D10mWind_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNogaps1D10mWind_LonPM180/request", "", "public", "Navy Operational Global Atmospheric Prediction System (NOGAPS), 1 degree, 2012-2013, 10 m Wind, Lon+/-180", "The Navy Operational Global Atmospheric Prediction System (NOGAPS) is a global numerical weather prediction computer model run by the United States Navy's Fleet Numerical Meteorology and Oceanography Center (FNMOC). It is run four times a day to produce weather forecasts. NOGAPS was replaced by the NAVGEM in February 2013.[Wikipedia]\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][height_above_ground][latitude][longitude]):\nwnd_ucmp_height_above_ground (Eastward Wind, m/s)\nwnd_vcmp_height_above_ground (Northward Wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNogaps1D10mWind_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNogaps1D10mWind_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNogaps1D10mWind_LonPM180/index.json", "https://en.wikipedia.org/wiki/Navy_Operational_Global_Atmospheric_Prediction_System", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNogaps1D10mWind_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNogaps1D10mWind_LonPM180&showErrors=false&email=", "FNMOC", "erdNogaps1D10mWind_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNogaps1D20mWind_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNogaps1D20mWind_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNogaps1D20mWind_LonPM180/request", "", "public", "Navy Operational Global Atmospheric Prediction System (NOGAPS), 1 degree, 2012-2013, 20 m Wind, Lon+/-180", "The Navy Operational Global Atmospheric Prediction System (NOGAPS) is a global numerical weather prediction computer model run by the United States Navy's Fleet Numerical Meteorology and Oceanography Center (FNMOC). It is run four times a day to produce weather forecasts. NOGAPS was replaced by the NAVGEM in February 2013.[Wikipedia]\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][height_above_ground][latitude][longitude]):\nwnd_ucmp_height_above_ground (Eastward Wind, m/s)\nwnd_vcmp_height_above_ground (Northward Wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNogaps1D20mWind_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNogaps1D20mWind_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNogaps1D20mWind_LonPM180/index.json", "https://en.wikipedia.org/wiki/Navy_Operational_Global_Atmospheric_Prediction_System", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNogaps1D20mWind_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNogaps1D20mWind_LonPM180&showErrors=false&email=", "FNMOC", "erdNogaps1D20mWind_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNogaps1D500mb_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNogaps1D500mb_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNogaps1D500mb_LonPM180/request", "", "public", "Navy Operational Global Atmospheric Prediction System (NOGAPS), 1 degree, 2012-2013, 500 hPa Height, Lon+/-180", "The Navy Operational Global Atmospheric Prediction System (NOGAPS) is a global numerical weather prediction computer model run by the United States Navy's Fleet Numerical Meteorology and Oceanography Center (FNMOC). It is run four times a day to produce weather forecasts. NOGAPS was replaced by the NAVGEM in February 2013.[Wikipedia]\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][isobaric][latitude][longitude]):\ngeop_ht_isobaric (Geopotential Height (500 hPa), gpm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNogaps1D500mb_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNogaps1D500mb_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNogaps1D500mb_LonPM180/index.json", "https://en.wikipedia.org/wiki/Navy_Operational_Global_Atmospheric_Prediction_System", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNogaps1D500mb_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNogaps1D500mb_LonPM180&showErrors=false&email=", "FNMOC", "erdNogaps1D500mb_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdNogaps1DPres_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdNogaps1DPres_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdNogaps1DPres_LonPM180/request", "", "public", "Navy Operational Global Atmospheric Prediction System (NOGAPS), 1 degree, 2013-2013, Pressure MSL, Lon+/-180", "The Navy Operational Global Atmospheric Prediction System (NOGAPS) is a global numerical weather prediction computer model run by the United States Navy's Fleet Numerical Meteorology and Oceanography Center (FNMOC). It is run four times a day to produce weather forecasts. NOGAPS was replaced by the NAVGEM in February 2013.[Wikipedia]\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres_reduced_msl (Pressure (adjusted to Mean Sea Level), hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNogaps1DPres_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNogaps1DPres_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNogaps1DPres_LonPM180/index.json", "https://en.wikipedia.org/wiki/Navy_Operational_Global_Atmospheric_Prediction_System", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNogaps1DPres_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNogaps1DPres_LonPM180&showErrors=false&email=", "FNMOC", "erdNogaps1DPres_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplNceiAvhrrOisstL4V2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplNceiAvhrrOisstL4V2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplNceiAvhrrOisstL4V2/request", "", "public", "NCEI global 0.25\u00b0 daily SST analysis based mainly on Advanced Very High Resolution Radiometer, V2.0, Final, 1981-present", "National Centers for Environmental Information (NCEI) global 0.25 deg daily sea surface temperature analysis based mainly on Advanced Very High Resolution Radiometer (AVHRR), final. NOAA's 1/4-degree Daily Optimum Interpolation Sea Surface Temperature (OISST) (sometimes referred to as Reynold's SST, which however also refers to earlier products at different resolution), currently available as version 2, is created by interpolating and extrapolating SST observations from different sources, resulting in a smoothed complete field. The sources of data are satellite (AVHRR) and in situ platforms (i.e., ships and buoys), and the specific datasets employed may change over. At the marginal ice zone, sea ice concentrations are used to generate proxy SSTs. A preliminary version of this file is produced in near-real time (1-day latency), and then replaced with a final version after 2 weeks. Note that this is the AVHRR-ONLY DOISST, available from Oct 1981, but there is a companion DOISST product that includes microwave satellite data, available from June 2002.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nmask (sea/land field composite mask)\nsea_ice_fraction (sea ice area fraction, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplNceiAvhrrOisstL4V2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplNceiAvhrrOisstL4V2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplNceiAvhrrOisstL4V2/index.json", "https://podaac.jpl.nasa.gov/dataset/AVHRR_OI-NCEI-L4-GLOB-v2.0", "http://upwell.pfeg.noaa.gov/erddap/rss/jplNceiAvhrrOisstL4V2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplNceiAvhrrOisstL4V2&showErrors=false&email=", "NCEI", "jplNceiAvhrrOisstL4V2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/esrlNcepRe_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/esrlNcepRe_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/esrlNcepRe_LonPM180/request", "", "public", "NCEP/NCAR Reanalysis (1948-present), Lon+/-180", "The NCEP/NCAR Reanalysis 1 project is using a state-of-the-art analysis/forecast system to perform data assimilation using past data from 1948 to the present. Data is from NMC initialized reanalysis (4x/day). See the PROBLEMS LIST at https://www.esrl.noaa.gov/psd/data/reanalysis/problems.shtml\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (mean Daily Air temperature at sigma level 995, degK)\nlftx (mean Daily Surface Lifted Index, degK)\nlftx4 (mean Daily Best (4-layer) Lifted Index, degK)\nomega (mean Daily omega at sigma level 0.995, Pascal/s)\npottmp (mean Daily potential temperature at sigma level 995, degK)\npr_wtr (mean Daily Precipitable Water for entire atmosphere, kg/m^2)\npres (mean Daily Pressure at surface, Pascals)\nrhum (mean Daily relative humidity at sigma level 995, percent)\nslp (mean Daily Sea Level Pressure, Pascals)\nuwnd (mean Daily u-wind at sigma level 995, m/s)\nvwnd (mean Daily v wind at sigma level 995, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/esrlNcepRe_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/esrlNcepRe_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/esrlNcepRe_LonPM180/index.json", "https://www.esrl.noaa.gov/psd/data/reanalysis/reanalysis.shtml", "http://upwell.pfeg.noaa.gov/erddap/rss/esrlNcepRe_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=esrlNcepRe_LonPM180&showErrors=false&email=", "NCEP, NCAR, NOAA ESRL", "esrlNcepRe_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_8c7a_4281_add4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_8c7a_4281_add4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_8c7a_4281_add4/request", "", "public", "NCOM Region 1, NCOM Region 1, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 1 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degree_C)\nsalinity (PSU)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_8c7a_4281_add4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_8c7a_4281_add4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_8c7a_4281_add4/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_8c7a_4281_add4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_8c7a_4281_add4&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_8c7a_4281_add4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_42cc_a9de_41af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_42cc_a9de_41af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_42cc_a9de_41af/request", "", "public", "NCOM Region 1, NCOM Region 1, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 1 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_42cc_a9de_41af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_42cc_a9de_41af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_42cc_a9de_41af/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_42cc_a9de_41af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_42cc_a9de_41af&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_42cc_a9de_41af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_bf9d_4a29_a5d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_bf9d_4a29_a5d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_bf9d_4a29_a5d3/request", "", "public", "NCOM Region 7, NCOM Region 7, Best Time Series [time][depth][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 7 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsalinity (PSU)\nwater_temp (Water Temperature, degree_C)\nwater_u (Eastward Water Velocity, meter/sec)\nwater_v (Northward Water Velocity, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_bf9d_4a29_a5d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_bf9d_4a29_a5d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_bf9d_4a29_a5d3/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_bf9d_4a29_a5d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_bf9d_4a29_a5d3&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_bf9d_4a29_a5d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5670_aa0a_3848", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncddc_5670_aa0a_3848.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncddc_5670_aa0a_3848/request", "", "public", "NCOM Region 7, NCOM Region 7, Best Time Series [time][lat][lon], 0.125\u00b0, 2010-2013", "Best time series, taking the data from the most recent run available. Aggregation of NCOM Region 7 These forecasts are from an operational, data assimilating nowcast-forecast system run by the Naval Oceanographic Office using the Navy Coastal Ocean Model (NCOM). The output files contain temperature, salinity, east and north components of current, and surface elevation, interpolated to a 1/8 degree Cartesian grid in the horizontal and to standard depth levels in the vertical, and written at three-hour intervals out to 72 hours. The Navy global atmospheric model, Navy Operational Global Atmospheric Prediction System (NOGAPS), provides atmospheric forcing. A tidal component is not included in the model output.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, meter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncddc_5670_aa0a_3848_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncddc_5670_aa0a_3848_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncddc_5670_aa0a_3848/index.json", "https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/navoceano-ncom-glb", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncddc_5670_aa0a_3848.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncddc_5670_aa0a_3848&showErrors=false&email=", "Naval Oceanographic Office", "noaa_ncddc_5670_aa0a_3848"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/miamicurrents", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/miamicurrents.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/miamicurrents/request", "", "public", "Near Real Time Geostrophic Currents", "Near Real Time Geostrophic Currents\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nu_current (Eastward Sea Water Velocity, m/s)\nv_current (Northward Sea Water Velocity, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/miamicurrents_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/miamicurrents_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/miamicurrents/index.json", "http://www.aoml.noaa.gov/phod/dataphod/work/trinanes/INTERFACE/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/miamicurrents.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=miamicurrents&showErrors=false&email=", "CoastWatch Caribb-NOAA AOML", "miamicurrents"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw410Daily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw410Daily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw410Daily/request", "", "public", "nLw410, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Daily", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw410, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_410 (Normalized water-leaving radiance at 410 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw410Daily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw410Daily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw410Daily/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw410Daily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw410Daily&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw410Daily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw410Monthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw410Monthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw410Monthly/request", "", "public", "nLw410, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Monthly", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw410, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_410 (Normalized water-leaving radiance at 410 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw410Monthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw410Monthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw410Monthly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw410Monthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw410Monthly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw410Monthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw410Weekly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw410Weekly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw410Weekly/request", "", "public", "nLw410, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Weekly", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw410, Weekly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_410 (Normalized water-leaving radiance at 410 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw410Weekly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw410Weekly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw410Weekly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw410Weekly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw410Weekly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw410Weekly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw443Daily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw443Daily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw443Daily/request", "", "public", "nLw443, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Daily", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw443, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_443 (Normalized water-leaving radiance at 443 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw443Daily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw443Daily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw443Daily/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw443Daily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw443Daily&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw443Daily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw443Monthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw443Monthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw443Monthly/request", "", "public", "nLw443, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Monthly", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw443, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_443 (Normalized water-leaving radiance at 443 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw443Monthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw443Monthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw443Monthly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw443Monthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw443Monthly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw443Monthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw443Weekly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw443Weekly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw443Weekly/request", "", "public", "nLw443, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Weekly", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw443, Weekly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_443 (Normalized water-leaving radiance at 443 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw443Weekly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw443Weekly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw443Weekly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw443Weekly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw443Weekly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw443Weekly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw486Daily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw486Daily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw486Daily/request", "", "public", "nLw486, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Daily", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw486, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_486 (Normalized water-leaving radiance at 486 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw486Daily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw486Daily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw486Daily/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw486Daily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw486Daily&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw486Daily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw486Monthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw486Monthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw486Monthly/request", "", "public", "nLw486, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Monthly", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw486, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_486 (Normalized water-leaving radiance at 486 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw486Monthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw486Monthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw486Monthly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw486Monthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw486Monthly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw486Monthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw486Weekly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw486Weekly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw486Weekly/request", "", "public", "nLw486, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Weekly", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw486, Weekly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_486 (Normalized water-leaving radiance at 486 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw486Weekly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw486Weekly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw486Weekly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw486Weekly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw486Weekly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw486Weekly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw551Daily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw551Daily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw551Daily/request", "", "public", "nLw551, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Daily", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw551, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_551 (Normalized water-leaving radiance at 551 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw551Daily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw551Daily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw551Daily/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw551Daily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw551Daily&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw551Daily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw551Monthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw551Monthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw551Monthly/request", "", "public", "nLw551, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Monthly", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw551, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_551 (Normalized water-leaving radiance at 551 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw551Monthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw551Monthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw551Monthly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw551Monthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw551Monthly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw551Monthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw551Weekly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw551Weekly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw551Weekly/request", "", "public", "nLw551, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Weekly", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw551, Weekly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_551 (Normalized water-leaving radiance at 551 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw551Weekly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw551Weekly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw551Weekly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw551Weekly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw551Weekly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw551Weekly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw671Daily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw671Daily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw671Daily/request", "", "public", "nLw671, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Daily", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw671, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_671 (Normalized water-leaving radiance at 671 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw671Daily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw671Daily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw671Daily/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw671Daily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw671Daily&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw671Daily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw671Monthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw671Monthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw671Monthly/request", "", "public", "nLw671, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Monthly", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw671, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_671 (Normalized water-leaving radiance at 671 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw671Monthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw671Monthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw671Monthly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw671Monthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw671Monthly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw671Monthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw671Weekly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisVHNSQnLw671Weekly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisVHNSQnLw671Weekly/request", "", "public", "nLw671, NOAA VIIRS, Science Quality, Global, Level 3, 2012-present, Weekly", "Level-3 Standard Mapped Image (SMI), Global, 4km, nLw671, Weekly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). These are science quality data with a 15-day latency. The data, processed by the NOAA/STAR Ocean Color Team, are produced from MSL12 v1.2 using OC-SDR v04 and were release by CoastWatch as of 2017-08-07. VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite and is the successor to MODIS. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nnLw_671 (Normalized water-leaving radiance at 671 nm, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisVHNSQnLw671Weekly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisVHNSQnLw671Weekly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisVHNSQnLw671Weekly/index.json", "https://coastwatch.noaa.gov/cw_html/OceanColor_Science_Quality_VIIRS_SNPP.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisVHNSQnLw671Weekly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisVHNSQnLw671Weekly&showErrors=false&email=", "NOAA NESDIS STAR", "nesdisVHNSQnLw671Weekly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisSSH1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nesdisSSH1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nesdisSSH1day/request", "", "public", "NOAA CoastWatch, Sea Surface Height Anomalies from Altimetry, Global, 2017-present, EXPERIMENTAL", "The altimetry data are from RADS (http://rads.tudelft.nl/rads/rads.shtml), the Radar Altimetry Database System, first developed at Delft University of Technology, now also at the NOAA and the European Organisation for the Exploitation of Meteorological Satellites (EUMETSAT). The RADS data for each mission is updated with state of the art corrections for tides, atmospheric path delay, etc. Because they are all computed consistently between the various missions, this avoids the possibility of introducing biases and drifts because of the different implementation of the various corrections by different agencies. The goals of RADS are to provide a homogenous dataset of sea level anomalies, wave heights, and wind speeds, along with database selection and analysis tools.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsla (Sea Level Anomalies, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nesdisSSH1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nesdisSSH1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nesdisSSH1day/index.json", "https://coastwatch.noaa.gov/cw_html/SSH_SeaLevelAnomaly.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nesdisSSH1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nesdisSSH1day&showErrors=false&email=", "NOAA/NESDIS Center for Satellite Applications and Research", "nesdisSSH1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/NOAA_DHW_5km", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/NOAA_DHW_5km.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/NOAA_DHW_5km/request", "", "public", "NOAA Global Coral Bleaching Monitoring Products: Daily 5-km", "Contains a suite of NOAA Coral Reef Watch (CRW) version 3.1 operational global satellite coral bleaching thermal stress monitoring products at 5-km resolution produced daily in near real-time, including sea surface temperature (SST), SST anomaly, HotSpot, Degree Heating Week (DHW), and a 7-day maximum Bleaching Alert Area (BAA). These data are based on CoralTemp Version 1.0, a daily global 5-km sea surface temperature dataset combined from: (1.) NOAA/NESDIS operational near-real-time daily global 5-km geostationary-polar-orbiting (geo-polar) blended night-only SST analysis, (2.) NOAA/NESDIS 2002-2016 reprocessed daily global 5-km geo-polar blended night-only SST analysis, and (3.) United Kingdom Met Office 1985-2002 daily global 5-km night-only SST reanalysis of Operational SST and Sea Ice Analysis (OSTIA). The SST anomaly is the difference of SST compared to daily SST climatology. The coral bleaching HotSpot is a special type of sea surface temperature (SST) anomaly and shows the difference of SST compared to a coral bleaching SST threshold climatology. DHW is the accumulation of Coral Bleaching HotSpots over a period of 12 consecutive weeks. The DHW value at any particular location at any particular time is the summation of the product of HotSpot values which are at least 1 deg C above the bleaching threshold SST and their durations in weeks over the most recent 12-week period. One DHW is equivalent to 1 week of SST at 1 deg C above the threshold or 0.5 week of SST at 2 deg C above the threshold, etc. The units for DHW are deg C-weeks, combining the intensity and duration of thermal stress into one single number. Based on research at Coral Reef Watch, when the thermal stress reaches 4 deg C-weeks, you can expect to see significant coral bleaching, especially in more sensitive species. When thermal stress is 8 deg C-weeks or higher, you would likely see widespread bleaching and mortality from the thermal stress.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nCRW_DHW (degree heating week, Celsius weeks)\nCRW_HOTSPOT (coral bleaching hotspot, Celsius)\nCRW_BAA (bleaching alert area (7-day max), 1)\nCRW_SST (sea surface temperature, Celsius)\nCRW_SSTANOMALY (sea surface temperature anomaly, Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/NOAA_DHW_5km_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/NOAA_DHW_5km_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/NOAA_DHW_5km/index.json", "http://coralreefwatch.noaa.gov/satellite/", "http://upwell.pfeg.noaa.gov/erddap/rss/NOAA_DHW_5km.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=NOAA_DHW_5km&showErrors=false&email=", "NOAA Coral Reef Watch", "NOAA_DHW_5km"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOw6hrStrs_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOw6hrStrs_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOw6hrStrs_LonPM180/request", "", "public", "NOAA/NCDC Blended 6-Hourly Global 0.25\u00b0 Sea Surface Wind Stress, 1987-2011, Lon+/-180", "Gridded and blended sea surface windstresses from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present, 6-hourly resolution in this dataset; daily and monthly are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Sea Surface Wind Stress: x-component, N m-2)\ntauy (Sea Surface Wind Stress: y-component, N m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOw6hrStrs_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOw6hrStrs_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOw6hrStrs_LonPM180/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOw6hrStrs_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOw6hrStrs_LonPM180&showErrors=false&email=", "NOAA NCEI", "ncdcOw6hrStrs_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOw6hr_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOw6hr_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOw6hr_LonPM180/request", "", "public", "NOAA/NCDC Blended 6-Hourly Global 0.25\u00b0 Sea Surface Winds, 1987-2011, Lon+/-180", "Gridded and blended sea surface vector winds from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present, 6-hourly resolution in this dataset; daily and monthly are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (u,v) means and scalar mean speed w for comparison\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOw6hr_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOw6hr_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOw6hr_LonPM180/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOw6hr_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOw6hr_LonPM180&showErrors=false&email=", "NOAA NCEI", "ncdcOw6hr_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOw6hrP_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOw6hrP_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOw6hrP_LonPM180/request", "", "public", "NOAA/NCDC Blended 6-Hourly Global 0.25\u00b0 Sea Surface Winds, Preliminary, 2011-Present, Lon+/-180", "Gridded and blended sea surface vector winds from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present, 6-hourly resolution in this dataset; daily and monthly are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (u,v) means and scalar mean speed w for comparison\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOw6hrP_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOw6hrP_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOw6hrP_LonPM180/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOw6hrP_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOw6hrP_LonPM180&showErrors=false&email=", "NOAA NCEI", "ncdcOw6hrP_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwDlyStrs_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwDlyStrs_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOwDlyStrs_LonPM180/request", "", "public", "NOAA/NCDC Blended Daily Global 0.25\u00b0 Sea Surface Wind Stress, 1987-2011, Lon+/-180", "Gridded and blended sea surface windstresses from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present, daily resolution in this dataset; 6-hourly and monthly are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (taux,tauy) means & mean tau as scalar means\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Sea Surface Wind Stress: x-component, N m-2)\ntauy (Sea Surface Wind Stress: y-component, N m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOwDlyStrs_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOwDlyStrs_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOwDlyStrs_LonPM180/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOwDlyStrs_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOwDlyStrs_LonPM180&showErrors=false&email=", "NOAA NCEI", "ncdcOwDlyStrs_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwDly_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwDly_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOwDly_LonPM180/request", "", "public", "NOAA/NCDC Blended Daily Global 0.25\u00b0 Sea Surface Winds, 1987-2011, Lon+/-180", "Gridded and blended sea surface vector winds from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present, daily resolution in this dataset; 6-hourly and monthly are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (u,v) means and scalar mean speed w for comparison\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\nw (Sea Surface Wind: speed as scalar means, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOwDly_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOwDly_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOwDly_LonPM180/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOwDly_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOwDly_LonPM180&showErrors=false&email=", "NOAA NCEI", "ncdcOwDly_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwDlyP_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwDlyP_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOwDlyP_LonPM180/request", "", "public", "NOAA/NCDC Blended Daily Global 0.25\u00b0 Sea Surface Winds, Preliminary, 2011-Present, Lon+/-180", "Gridded and blended sea surface vector winds from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present, daily resolution in this dataset; 6-hourly and monthly are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (u,v) means and scalar mean speed w for comparison\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\nw (Sea Surface Wind: speed as scalar means, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOwDlyP_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOwDlyP_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOwDlyP_LonPM180/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOwDlyP_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOwDlyP_LonPM180&showErrors=false&email=", "NOAA NCEI", "ncdcOwDlyP_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwClm9505_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwClm9505_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOwClm9505_LonPM180/request", "", "public", "NOAA/NCDC Blended Global 0.25\u00b0 Sea Winds, Climatological Monthly Means, 1995-2005, Lon+/-180", "Gridded and blended sea surface vector winds from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present. Climatological (1995-2005) monthlies in this dataset; 6-hourly, daily & monthly resolutions are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (u,v) means and scalar mean speed w for comparison\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\nw (Sea Surface Wind: speed as scalar means, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOwClm9505_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOwClm9505_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOwClm9505_LonPM180/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOwClm9505_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOwClm9505_LonPM180&showErrors=false&email=", "NOAA NCEI", "ncdcOwClm9505_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwMonStrs_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwMonStrs_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOwMonStrs_LonPM180/request", "", "public", "NOAA/NCDC Blended Monthly Global 0.25\u00b0 Sea Surface Wind Stress, 1987-2011, Lon+/-180", "Gridded and blended sea surface windstresses from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present, monthly resolution in this dataset; 6-hourly and daily are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (taux,tauy) means & mean tau as scalar means\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Sea Surface Wind Stress: x-component, N m-2)\ntauy (Sea Surface Wind Stress: y-component, N m-2)\ntau (Sea Surface Wind Stress: amplitude as scalar mean, N m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOwMonStrs_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOwMonStrs_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOwMonStrs_LonPM180/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOwMonStrs_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOwMonStrs_LonPM180&showErrors=false&email=", "NOAA NCEI", "ncdcOwMonStrs_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwMon_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOwMon_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOwMon_LonPM180/request", "", "public", "NOAA/NCDC Blended Monthly Global 0.25\u00b0 Sea Surface Winds, 1987-2011, Lon+/-180", "Gridded and blended sea surface vector winds from multiple satellites with direction from NCEP Reanalysis-2; Global ocean coverage with a 0.25-degree resolution; The whole datasets covers from July 1987 to present, monthly resolution in this dataset; 6-hourly and daily are also available in other directories; See https://www.ncdc.noaa.gov/oa/rsad/blendedseawinds.html and links within for details. Include (u,v) means and scalar mean speed w for comparison\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu (Sea Surface Wind: x-component, m s-1)\nv (Sea Surface Wind: y-component, m s-1)\nw (Sea Surface Wind: speed as scalar means, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOwMon_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOwMon_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOwMon_LonPM180/index.json", "https://www.ncdc.noaa.gov/data-access/marineocean-data/blended-global/blended-sea-winds", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOwMon_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOwMon_LonPM180&showErrors=false&email=", "NOAA NCEI", "ncdcOwMon_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6ce0_24e6_6a90", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6ce0_24e6_6a90.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6ce0_24e6_6a90/request", "", "public", "Northeast Pacific Regional Climatology : salinity Annual 0.10 degree (salinity annual tenth), 0.100000024\u00b0, 0000", "Climatological mean salinity for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6ce0_24e6_6a90_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6ce0_24e6_6a90_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6ce0_24e6_6a90/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6ce0_24e6_6a90.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6ce0_24e6_6a90&showErrors=false&email=", "NOAA", "noaa_nodc_6ce0_24e6_6a90"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a2c0_af26_3943", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a2c0_af26_3943.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_a2c0_af26_3943/request", "", "public", "Northeast Pacific Regional Climatology : salinity Annual 0.25 degree (salinity annual quarter), 0000", "Climatological mean salinity for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_a2c0_af26_3943_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_a2c0_af26_3943_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_a2c0_af26_3943/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_a2c0_af26_3943.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_a2c0_af26_3943&showErrors=false&email=", "NOAA", "noaa_nodc_a2c0_af26_3943"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6f00_9648_53de", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6f00_9648_53de.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6f00_9648_53de/request", "", "public", "Northeast Pacific Regional Climatology : salinity Annual 1.00 degree (salinity annual one), 0000", "Climatological mean salinity for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6f00_9648_53de_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6f00_9648_53de_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6f00_9648_53de/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6f00_9648_53de.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6f00_9648_53de&showErrors=false&email=", "NOAA", "noaa_nodc_6f00_9648_53de"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5e9d_7b31_f15d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5e9d_7b31_f15d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_5e9d_7b31_f15d/request", "", "public", "Northeast Pacific Regional Climatology : salinity November 0.10 degree (salinity monthly tenth), 0.100000024\u00b0, 0000", "Climatological mean salinity for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_5e9d_7b31_f15d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_5e9d_7b31_f15d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_5e9d_7b31_f15d/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_5e9d_7b31_f15d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_5e9d_7b31_f15d&showErrors=false&email=", "NOAA", "noaa_nodc_5e9d_7b31_f15d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e6e0_e98e_47a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e6e0_e98e_47a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e6e0_e98e_47a6/request", "", "public", "Northeast Pacific Regional Climatology : salinity November 0.25 degree, 0000", "Climatological mean salinity for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e6e0_e98e_47a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e6e0_e98e_47a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e6e0_e98e_47a6/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e6e0_e98e_47a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e6e0_e98e_47a6&showErrors=false&email=", "NOAA", "noaa_nodc_e6e0_e98e_47a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ee9f_3ed7_86ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ee9f_3ed7_86ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_ee9f_3ed7_86ee/request", "", "public", "Northeast Pacific Regional Climatology : salinity November 1.00 degree (salinity monthly one), 0000", "Climatological mean salinity for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_ee9f_3ed7_86ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_ee9f_3ed7_86ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_ee9f_3ed7_86ee/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_ee9f_3ed7_86ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_ee9f_3ed7_86ee&showErrors=false&email=", "NOAA", "noaa_nodc_ee9f_3ed7_86ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7a60_6a8c_e2ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7a60_6a8c_e2ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7a60_6a8c_e2ea/request", "", "public", "Northeast Pacific Regional Climatology : salinity Summer (Jul-Sep) 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean salinity for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7a60_6a8c_e2ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7a60_6a8c_e2ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7a60_6a8c_e2ea/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7a60_6a8c_e2ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7a60_6a8c_e2ea&showErrors=false&email=", "NOAA", "noaa_nodc_7a60_6a8c_e2ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4bcf_d2e2_d62c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4bcf_d2e2_d62c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_4bcf_d2e2_d62c/request", "", "public", "Northeast Pacific Regional Climatology : salinity Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean salinity for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_4bcf_d2e2_d62c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_4bcf_d2e2_d62c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_4bcf_d2e2_d62c/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_4bcf_d2e2_d62c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_4bcf_d2e2_d62c&showErrors=false&email=", "NOAA", "noaa_nodc_4bcf_d2e2_d62c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e542_7291_e227", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e542_7291_e227.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e542_7291_e227/request", "", "public", "Northeast Pacific Regional Climatology : salinity Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean salinity for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for salinity., 1)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for salinity., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e542_7291_e227_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e542_7291_e227_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e542_7291_e227/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e542_7291_e227.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e542_7291_e227&showErrors=false&email=", "NOAA", "noaa_nodc_e542_7291_e227"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e2e7_50cb_cbd1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e2e7_50cb_cbd1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e2e7_50cb_cbd1/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Annual 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e2e7_50cb_cbd1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e2e7_50cb_cbd1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e2e7_50cb_cbd1/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e2e7_50cb_cbd1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e2e7_50cb_cbd1&showErrors=false&email=", "NOAA", "noaa_nodc_e2e7_50cb_cbd1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_d038_1191_14f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_d038_1191_14f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_d038_1191_14f1/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_d038_1191_14f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_d038_1191_14f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_d038_1191_14f1/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_d038_1191_14f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_d038_1191_14f1&showErrors=false&email=", "NOAA", "noaa_nodc_d038_1191_14f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6341_06e2_a6ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6341_06e2_a6ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6341_06e2_a6ee/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6341_06e2_a6ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6341_06e2_a6ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6341_06e2_a6ee/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6341_06e2_a6ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6341_06e2_a6ee&showErrors=false&email=", "NOAA", "noaa_nodc_6341_06e2_a6ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0265_d582_2eb1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0265_d582_2eb1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_0265_d582_2eb1/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature November 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_0265_d582_2eb1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_0265_d582_2eb1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_0265_d582_2eb1/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_0265_d582_2eb1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_0265_d582_2eb1&showErrors=false&email=", "NOAA", "noaa_nodc_0265_d582_2eb1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1a13_9f47_37a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1a13_9f47_37a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_1a13_9f47_37a0/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_1a13_9f47_37a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_1a13_9f47_37a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_1a13_9f47_37a0/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_1a13_9f47_37a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_1a13_9f47_37a0&showErrors=false&email=", "NOAA", "noaa_nodc_1a13_9f47_37a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3595_6fdf_7375", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3595_6fdf_7375.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_3595_6fdf_7375/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_3595_6fdf_7375_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_3595_6fdf_7375_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_3595_6fdf_7375/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_3595_6fdf_7375.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_3595_6fdf_7375&showErrors=false&email=", "NOAA", "noaa_nodc_3595_6fdf_7375"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_24b8_8410_a9b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_24b8_8410_a9b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_24b8_8410_a9b0/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.10 degree, 0.100000024\u00b0, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_24b8_8410_a9b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_24b8_8410_a9b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_24b8_8410_a9b0/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_24b8_8410_a9b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_24b8_8410_a9b0&showErrors=false&email=", "NOAA", "noaa_nodc_24b8_8410_a9b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2f98_8b54_19cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2f98_8b54_19cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_2f98_8b54_19cd/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_2f98_8b54_19cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_2f98_8b54_19cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_2f98_8b54_19cd/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_2f98_8b54_19cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_2f98_8b54_19cd&showErrors=false&email=", "NOAA", "noaa_nodc_2f98_8b54_19cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e86b_8826_9294", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e86b_8826_9294.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e86b_8826_9294/request", "", "public", "Northeast Pacific Regional Climatology : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the Northeast Pacific from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e86b_8826_9294_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e86b_8826_9294_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e86b_8826_9294/index.json", "https://www.nodc.noaa.gov/OC5/regional_climate/nep-climate", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e86b_8826_9294.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e86b_8826_9294&showErrors=false&email=", "NOAA", "noaa_nodc_e86b_8826_9294"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e909D_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e909D_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nrlHycomGLBu008e909D_LonPM180/request", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 90.9, Global, 1/12 deg, 2012-2013, at Depths, Lon+/-180", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 90.9, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degC)\nsalinity (Sea Water Practical Salinity, PSU)\nwater_u (Eastward Water Velocity, m/s)\nwater_v (Northward Water Velocity, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nrlHycomGLBu008e909D_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nrlHycomGLBu008e909D_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e909D_LonPM180/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_90.9.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e909D_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e909D_LonPM180&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e909D_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e909S_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e909S_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nrlHycomGLBu008e909S_LonPM180/request", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 90.9, Global, 1/12 deg, 2012-2013, at Surface, Lon+/-180", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 90.9, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nrlHycomGLBu008e909S_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nrlHycomGLBu008e909S_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e909S_LonPM180/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_90.9.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e909S_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e909S_LonPM180&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e909S_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e910D_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e910D_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nrlHycomGLBu008e910D_LonPM180/request", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 91.0, Global, 1/12 deg, 2013-2014, at Depths, Lon+/-180", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 91.0, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degC)\nsalinity (Sea Water Practical Salinity, PSU)\nwater_u (Eastward Water Velocity, m/s)\nwater_v (Northward Water Velocity, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nrlHycomGLBu008e910D_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nrlHycomGLBu008e910D_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e910D_LonPM180/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_91.0.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e910D_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e910D_LonPM180&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e910D_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e910S_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e910S_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nrlHycomGLBu008e910S_LonPM180/request", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 91.0, Global, 1/12 deg, 2013-2014, at Surface, Lon+/-180", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 91.0, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nrlHycomGLBu008e910S_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nrlHycomGLBu008e910S_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e910S_LonPM180/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_91.0.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e910S_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e910S_LonPM180&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e910S_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e911D_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e911D_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nrlHycomGLBu008e911D_LonPM180/request", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 91.1, Global, 1/12 deg, 2014-2016, at Depths, Lon+/-180", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 91.1, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degC)\nsalinity (Sea Water Practical Salinity, PSU)\nwater_u (Eastward Water Velocity, m/s)\nwater_v (Northward Water Velocity, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nrlHycomGLBu008e911D_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nrlHycomGLBu008e911D_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e911D_LonPM180/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_91.1.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e911D_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e911D_LonPM180&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e911D_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e911S_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e911S_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nrlHycomGLBu008e911S_LonPM180/request", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 91.1, Global, 1/12 deg, 2014-2016, at Surface, Lon+/-180", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 91.1, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nrlHycomGLBu008e911S_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nrlHycomGLBu008e911S_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e911S_LonPM180/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_91.1.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e911S_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e911S_LonPM180&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e911S_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e912D_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e912D_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nrlHycomGLBu008e912D_LonPM180/request", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 91.2, Global, 1/12 deg, 2016 to Now + Forecasts, at Depths, Lon+/-180", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 91.2, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nwater_temp (Water Temperature, degC)\nsalinity (Sea Water Practical Salinity, PSU)\nwater_u (Eastward Water Velocity, m/s)\nwater_v (Northward Water Velocity, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nrlHycomGLBu008e912D_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nrlHycomGLBu008e912D_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e912D_LonPM180/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_91.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e912D_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e912D_LonPM180&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e912D_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e912S_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlHycomGLBu008e912S_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nrlHycomGLBu008e912S_LonPM180/request", "", "public", "NRL HYCOM+NCODA, GLBu0.08/expt 91.2, Global, 1/12 deg, 2016 to Now + Forecasts, at Surface, Lon+/-180", "HYbrid Coordinate Ocean Model (HYCOM) + NCODA, GLBu0.08/expt 91.2, Global, 1/12 deg, from the U.S. Navy's Naval Research Laboratory (NRL). The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsurf_el (Water Surface Elevation, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nrlHycomGLBu008e912S_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nrlHycomGLBu008e912S_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nrlHycomGLBu008e912S_LonPM180/index.json", "https://tds.hycom.org/thredds/dodsC/GLBu0.08/expt_91.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlHycomGLBu008e912S_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlHycomGLBu008e912S_LonPM180&showErrors=false&email=", "Naval Oceanographic Office", "nrlHycomGLBu008e912S_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplOscar_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplOscar_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplOscar_LonPM180/request", "", "public", "OSCAR Sea Surface Velocity, 1/3\u00b0, L4, Global, 1992-present, 5 Day Composite, Lon+/-180", "Ocean Surface Current Analyses Real-time (OSCAR) is a NASA funded research project and global surface current database. OSCAR global ocean surface mixed layer velocities are calculated from satellite-sensed sea surface height gradients, ocean vector winds, and sea surface temperature fields using geostrophy, Ekman, and thermal wind dynamics. OSCAR's continuing improvement depends on better modeling of the momentum transfer both within and across the boundaries of the turbulent mixed layer. A main research objective of the OSCAR project is to improve the generation of surface currents by ocean vector winds, and in doing so further our understanding of the mechanisms behind the transfer of momentum between the atmosphere and the ocean through the planetary boundary layer. Surface currents are provided on global grid every ~5 days, dating from 1992 to present day, with daily updates and near-real-time availability. \n* Principal Investigator: Kathleen Dohan (kdohan@esr.org). Co-Investigator: Gary Lagerloef (lager@esr.org). \n* Maximum Mask velocity is the geostrophic component at all points + any concurrent Ekman and buoyancy components.\n* Longitude extends from 20 E to 420 E to avoid a break in major ocean basins. Data repeats in overlap region.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nu (Ocean Surface Zonal Currents, meter/sec)\nv (Ocean Surface Meridional Currents, meter/sec)\num (Ocean Surface Zonal Currents Maximum Mask, meter/sec)\nvm (Ocean Surface Meridional Currents Maximum Mask, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplOscar_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplOscar_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplOscar_LonPM180/index.json", "https://www.esr.org/research/oscar/oscar-surface-currents/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplOscar_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplOscar_LonPM180&showErrors=false&email=", "ESR", "jplOscar_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_304a_c448_8cd7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_304a_c448_8cd7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_304a_c448_8cd7/request", "", "public", "OSCAR Third Degree Resolution Ocean Surface Currents, FOR LAS 1992-current YEARS OSCAR Third Degree Resolution Ocean Surface Currents Time, 0.33333334\u00b0", "OSCAR Third Degree Sea Surface Velocity\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nu (Ocean Surface Zonal Currents, meter/sec)\nv (Ocean Surface Meridional Currents, meter/sec)\num (Ocean Surface Zonal Currents Maximum Mask, meter/sec)\nvm (Ocean Surface Meridional Currents Maximum Mask, meter/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_304a_c448_8cd7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_304a_c448_8cd7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_304a_c448_8cd7/index.json", "https://podaac.jpl.nasa.gov/dataset/OSCAR_L4_OC_third-deg", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_304a_c448_8cd7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_304a_c448_8cd7&showErrors=false&email=", "ESR", "nasa_jpl_304a_c448_8cd7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/osuChlaAnom", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/osuChlaAnom.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/osuChlaAnom/request", "", "public", "OSU Chlorophyll Anomaly, MODIS Aqua, West US, 2002-2016, DEPRECATED", "This suite of CHLA and SST climatology and anomaly data products are derived from daily, 0.0125 degree x 0.0125 degree, MODIS Aqua CHLA and SST fields that cover the California Current System (22N - 51N, 155W - 105W) for the 11-year period July 2002 through June 2013. These daily fields, obtained from the NOAA CoastWatch West Coast Regional Node website, were processed using a successive 3x3, 5x5 and 7x7 grid cell hybrid median filtering technique. This technique was found to effectively reduce noise in the daily fields while maintaining features and detail in important regions such as capes and headlands. The resulting median filtered daily fields were then linearly interpolated to a 0.025 x 0.025 degree grid and averaged to create 132 monthly mean fields. The seasonal cycles at each 0.025 degree x 0.025 degree grid cell were obtained by fitting each multiyear time series of monthly means to a nine-parameter regression model consisting of a constant plus four harmonics (frequencies of N/(1-year), N-1,4; Risien and Chelton 2008, JPO). Even with the median filtering and the temporal averaging of the daily fields, the highly inhomogeneous nature of the MODIS fields still resulted in regression coefficients that were excessively noisy. We therefore applied the same successive 3x3, 5x5 and 7x7 hybrid median filtering technique, described above, to the regression coefficients before finally spatially smoothing the coefficients using a loess smoother (Schlax et al. 2001, JTECH) with filter cutoff wavelengths of 0.25 degree latitude by 0.25 degree longitude. The seasonal cycles were then calculated from the filtered regression coefficients for each 0.025 degree x 0.025 degree grid cell using the mean and all four harmonics. It is important to note that THIS SUITE OF DATA PRODUCTS IS HIGHLY EXPERIMENTAL and is strictly intended for scientific evaluation by experienced marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchla_anomaly (Chlorophyll Anomaly, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/osuChlaAnom_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/osuChlaAnom_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/osuChlaAnom/index.json", "http://cioss.coas.oregonstate.edu/CIOSS/Documents/Published_Reports/Risien_USWC-Sat-Climatology_5-8-14.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/osuChlaAnom.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=osuChlaAnom&showErrors=false&email=", "Oregon State University", "osuChlaAnom"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/osu2ChlaClimate", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/osu2ChlaClimate.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/osu2ChlaClimate/request", "", "public", "OSU Chlorophyll Climatology V2, MODIS Aqua, West US, 2002-2003", "This suite of CHLA and SST climatology and anomaly data products are derived from daily, 0.0125 degree x 0.0125 degree, MODIS Aqua CHLA and SST fields that cover the California Current System (22N - 51N, 155W - 105W) for the 11-year period July 2002 through June 2013. These daily fields, obtained from the NOAA CoastWatch West Coast Regional Node website, were processed using a successive 3x3, 5x5 and 7x7 grid cell hybrid median filtering technique. This technique was found to effectively reduce noise in the daily fields while maintaining features and detail in important regions such as capes and headlands. The resulting median filtered daily fields were then linearly interpolated to a 0.025 degree x 0.025 degree grid and averaged to create 132 monthly mean fields. The seasonal cycles at each 0.025 degree x 0.025 degree grid cell were obtained by fitting each multiyear time series of monthly means to a nine-parameter regression model consisting of a constant plus four harmonics (frequencies of N/(1-year), N-1,4; Risien and Chelton 2008, JPO). Even with the median filtering and the temporal averaging of the daily fields, the highly inhomogeneous nature of the MODIS fields still resulted in regression coefficients that were excessively noisy. We therefore applied the same successive 3x3, 5x5 and 7x7 hybrid median filtering technique, described above, to the regression coefficients before finally spatially smoothing the coefficients using a loess smoother (Schlax et al. 2001, JTECH) with filter cutoff wavelengths of 0.25 degree latitude by 0.25 degree longitude. The seasonal cycles were then calculated from the filtered regression coefficients for each 0.025 degree x 0.025 degree grid cell using the mean and all four harmonics. It is important to note that THIS SUITE OF DATA PRODUCTS IS HIGHLY EXPERIMENTAL and is strictly intended for scientific evaluation by experienced marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchla (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/osu2ChlaClimate_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/osu2ChlaClimate_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/osu2ChlaClimate/index.json", "http://cioss.coas.oregonstate.edu/CIOSS/Documents/Published_Reports/Risien_USWC-Sat-Climatology_5-8-14.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/osu2ChlaClimate.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=osu2ChlaClimate&showErrors=false&email=", "Oregon State University", "osu2ChlaClimate"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/osuChlaClimate", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/osuChlaClimate.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/osuChlaClimate/request", "", "public", "OSU Chlorophyll Climatology, MODIS Aqua, West US, 2002-2003, DEPRECATED", "This suite of CHLA and SST climatology and anomaly data products are derived from daily, 0.0125 degree x 0.0125 degree, MODIS Aqua CHLA and SST fields that cover the California Current System (22N - 51N, 155W - 105W) for the 11-year period July 2002 through June 2013. These daily fields, obtained from the NOAA CoastWatch West Coast Regional Node website, were processed using a successive 3x3, 5x5 and 7x7 grid cell hybrid median filtering technique. This technique was found to effectively reduce noise in the daily fields while maintaining features and detail in important regions such as capes and headlands. The resulting median filtered daily fields were then linearly interpolated to a 0.025 degree x 0.025 degree grid and averaged to create 132 monthly mean fields. The seasonal cycles at each 0.025 degree x 0.025 degree grid cell were obtained by fitting each multiyear time series of monthly means to a nine-parameter regression model consisting of a constant plus four harmonics (frequencies of N/(1-year), N-1,4; Risien and Chelton 2008, JPO). Even with the median filtering and the temporal averaging of the daily fields, the highly inhomogeneous nature of the MODIS fields still resulted in regression coefficients that were excessively noisy. We therefore applied the same successive 3x3, 5x5 and 7x7 hybrid median filtering technique, described above, to the regression coefficients before finally spatially smoothing the coefficients using a loess smoother (Schlax et al. 2001, JTECH) with filter cutoff wavelengths of 0.25 degree latitude by 0.25 degree longitude. The seasonal cycles were then calculated from the filtered regression coefficients for each 0.025 degree x 0.025 degree grid cell using the mean and all four harmonics. It is important to note that THIS SUITE OF DATA PRODUCTS IS HIGHLY EXPERIMENTAL and is strictly intended for scientific evaluation by experienced marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchla (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/osuChlaClimate_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/osuChlaClimate_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/osuChlaClimate/index.json", "http://cioss.coas.oregonstate.edu/CIOSS/Documents/Published_Reports/Risien_USWC-Sat-Climatology_5-8-14.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/osuChlaClimate.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=osuChlaClimate&showErrors=false&email=", "Oregon State University", "osuChlaClimate"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/osuSstAnom", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/osuSstAnom.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/osuSstAnom/request", "", "public", "OSU SST Anomaly, MODIS Aqua, West US, July 2002-2018, DEPRECATED", "This suite of CHLA and SST climatology and anomaly data products are derived from daily, 0.0125 degree x 0.0125 degree, MODIS Aqua CHLA and SST fields that cover the California Current System (22N - 51N, 155W - 105W) for the 11-year period July 2002 through June 2013. These daily fields, obtained from the NOAA CoastWatch West Coast Regional Node website, were processed using a successive 3x3, 5x5 and 7x7 grid cell hybrid median filtering technique. This technique was found to effectively reduce noise in the daily fields while maintaining features and detail in important regions such as capes and headlands. The resulting median filtered daily fields were then linearly interpolated to a 0.025 x 0.025 degree grid and averaged to create 132 monthly mean fields. The seasonal cycles at each 0.025 degree x 0.025 degree grid cell were obtained by fitting each multiyear time series of monthly means to a nine-parameter regression model consisting of a constant plus four harmonics (frequencies of N/(1-year), N-1,4; Risien and Chelton 2008, JPO). Even with the median filtering and the temporal averaging of the daily fields, the highly inhomogeneous nature of the MODIS fields still resulted in regression coefficients that were excessively noisy. We therefore applied the same successive 3x3, 5x5 and 7x7 hybrid median filtering technique, described above, to the regression coefficients before finally spatially smoothing the coefficients using a loess smoother (Schlax et al. 2001, JTECH) with filter cutoff wavelengths of 0.25 degree latitude by 0.25 degree longitude. The seasonal cycles were then calculated from the filtered regression coefficients for each 0.025 degree x 0.025 degree grid cell using the mean and all four harmonics. It is important to note that THIS SUITE OF DATA PRODUCTS IS HIGHLY EXPERIMENTAL and is strictly intended for scientific evaluation by experienced marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst_anomaly (Sea Surface Temperature Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/osuSstAnom_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/osuSstAnom_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/osuSstAnom/index.json", "http://cioss.coas.oregonstate.edu/CIOSS/Documents/Published_Reports/Risien_USWC-Sat-Climatology_5-8-14.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/osuSstAnom.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=osuSstAnom&showErrors=false&email=", "Oregon State University - College of Earth, Ocean, and Atmospheric Sciences", "osuSstAnom"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/osu2SstClimate", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/osu2SstClimate.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/osu2SstClimate/request", "", "public", "OSU SST Climatology V2, MODIS Aqua, West US, 2002-2003", "This suite of CHLA and SST climatology and anomaly data products are derived from daily, 0.0125 degree x 0.0125 degree, MODIS Aqua CHLA and SST fields that cover the California Current System (22N - 51N, 155W - 105W) for the 11-year period July 2002 through June 2013. These daily fields, obtained from the NOAA CoastWatch West Coast Regional Node website, were processed using a successive 3x3, 5x5 and 7x7 grid cell hybrid median filtering technique. This technique was found to effectively reduce noise in the daily fields while maintaining features and detail in important regions such as capes and headlands. The resulting median filtered daily fields were then linearly interpolated to a 0.025 degree x 0.025 degree grid and averaged to create 132 monthly mean fields. The seasonal cycles at each 0.025 degree x 0.025 degree grid cell were obtained by fitting each multiyear time series of monthly means to a nine-parameter regression model consisting of a constant plus four harmonics (frequencies of N/(1-year), N-1,4; Risien and Chelton 2008, JPO). Even with the median filtering and the temporal averaging of the daily fields, the highly inhomogeneous nature of the MODIS fields still resulted in regression coefficients that were excessively noisy. We therefore applied the same successive 3x3, 5x5 and 7x7 hybrid median filtering technique, described above, to the regression coefficients before finally spatially smoothing the coefficients using a loess smoother (Schlax et al. 2001, JTECH) with filter cutoff wavelengths of 0.25 degree latitude by 0.25 degree longitude. The seasonal cycles were then calculated from the filtered regression coefficients for each 0.025 degree x 0.025 degree grid cell using the mean and all four harmonics. It is important to note that THIS SUITE OF DATA PRODUCTS IS HIGHLY EXPERIMENTAL and is strictly intended for scientific evaluation by experienced marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/osu2SstClimate_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/osu2SstClimate_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/osu2SstClimate/index.json", "http://cioss.coas.oregonstate.edu/CIOSS/Documents/Published_Reports/Risien_USWC-Sat-Climatology_5-8-14.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/osu2SstClimate.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=osu2SstClimate&showErrors=false&email=", "Oregon State University - College of Earth, Ocean, and Atmospheric Sciences", "osu2SstClimate"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/osuSstClimate", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/osuSstClimate.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/osuSstClimate/request", "", "public", "OSU SST Climatology, MODIS Aqua, West US, 2002-2003, DEPRECATED", "This suite of CHLA and SST climatology and anomaly data products are derived from daily, 0.0125 degree x 0.0125 degree, MODIS Aqua CHLA and SST fields that cover the California Current System (22N - 51N, 155W - 105W) for the 11-year period July 2002 through June 2013. These daily fields, obtained from the NOAA CoastWatch West Coast Regional Node website, were processed using a successive 3x3, 5x5 and 7x7 grid cell hybrid median filtering technique. This technique was found to effectively reduce noise in the daily fields while maintaining features and detail in important regions such as capes and headlands. The resulting median filtered daily fields were then linearly interpolated to a 0.025 degree x 0.025 degree grid and averaged to create 132 monthly mean fields. The seasonal cycles at each 0.025 degree x 0.025 degree grid cell were obtained by fitting each multiyear time series of monthly means to a nine-parameter regression model consisting of a constant plus four harmonics (frequencies of N/(1-year), N-1,4; Risien and Chelton 2008, JPO). Even with the median filtering and the temporal averaging of the daily fields, the highly inhomogeneous nature of the MODIS fields still resulted in regression coefficients that were excessively noisy. We therefore applied the same successive 3x3, 5x5 and 7x7 hybrid median filtering technique, described above, to the regression coefficients before finally spatially smoothing the coefficients using a loess smoother (Schlax et al. 2001, JTECH) with filter cutoff wavelengths of 0.25 degree latitude by 0.25 degree longitude. The seasonal cycles were then calculated from the filtered regression coefficients for each 0.025 degree x 0.025 degree grid cell using the mean and all four harmonics. It is important to note that THIS SUITE OF DATA PRODUCTS IS HIGHLY EXPERIMENTAL and is strictly intended for scientific evaluation by experienced marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/osuSstClimate_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/osuSstClimate_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/osuSstClimate/index.json", "http://cioss.coas.oregonstate.edu/CIOSS/Documents/Published_Reports/Risien_USWC-Sat-Climatology_5-8-14.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/osuSstClimate.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=osuSstClimate&showErrors=false&email=", "Oregon State University - College of Earth, Ocean, and Atmospheric Sciences", "osuSstClimate"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar01day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar01day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWpar01day_LonPM180/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (1 Day Composite), Lon+/-180", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWpar01day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWpar01day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWpar01day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWpar01day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWpar01day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWpar01day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar014day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar014day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWpar014day_LonPM180/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (14 Day Composite), Lon+/-180", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWpar014day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWpar014day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWpar014day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWpar014day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWpar014day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWpar014day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar03day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar03day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWpar03day_LonPM180/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (3 Day Composite), Lon+/-180", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWpar03day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWpar03day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWpar03day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWpar03day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWpar03day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWpar03day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar08day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar08day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWpar08day_LonPM180/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (8 Day Composite), Lon+/-180", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWpar08day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWpar08day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWpar08day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWpar08day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWpar08day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWpar08day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar0mday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpar0mday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWpar0mday_LonPM180/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (Monthly Composite), Lon+/-180", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWpar0mday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWpar0mday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWpar0mday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWpar0mday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWpar0mday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWpar0mday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEpar01day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEpar01day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEpar01day/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, East US, 2002-2012 (1 Day Composite)", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEpar01day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEpar01day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEpar01day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEpar01day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEpar01day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEpar01day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEpar014day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEpar014day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEpar014day/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, East US, 2002-2012 (14 Day Composite)", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEpar014day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEpar014day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEpar014day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEpar014day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEpar014day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEpar014day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEpar03day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEpar03day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEpar03day/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, East US, 2002-2012 (3 Day Composite)", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEpar03day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEpar03day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEpar03day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEpar03day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEpar03day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEpar03day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEpar08day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEpar08day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEpar08day/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, East US, 2002-2012 (8 Day Composite)", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEpar08day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEpar08day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEpar08day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEpar08day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEpar08day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEpar08day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEpar0mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEpar0mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEpar0mday/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, East US, 2002-2012 (Monthly Composite)", "MODIS measures photosynthetically available radiation that may be used to mode primary productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m-2 d-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEpar0mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEpar0mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEpar0mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_par0_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEpar0mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEpar0mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEpar0mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1par01day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1par01day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1par01day/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (1 Day Composite)", "This dataset has Level 3, Standard Mapped Image, 4km, photosynthetically available radiation (PAR) data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, R. Frouin, einstein m^-2 day^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1par01day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1par01day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1par01day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_par_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1par01day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1par01day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1par01day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1par08day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1par08day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1par08day/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (8 Day Composite)", "This dataset has Level 3, Standard Mapped Image, 4km, photosynthetically available radiation (PAR) data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, R. Frouin, einstein m^-2 day^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1par08day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1par08day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1par08day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_par_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1par08day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1par08day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1par08day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1par0mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1par0mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1par0mday/request", "", "public", "Photosynthetically Available Radiation, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (Monthly Composite)", "This dataset has Level 3, Standard Mapped Image, 4km, photosynthetically available radiation (PAR) data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, R. Frouin, einstein m^-2 day^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1par0mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1par0mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1par0mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_par_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1par0mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1par0mday&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1par0mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPNbfp28day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPNbfp28day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPNbfp28day_LonPM180/request", "", "public", "Primary Productivity, Aqua MODIS and GOES Imager, Global, 2006-2007, EXPERIMENTAL (8 Day Composite), Lon+/-180", "Primary Productivity is calculated from NASA Aqua MODIS Chl a and NOAA GOES Imager SST data. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPNbfp28day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPNbfp28day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPNbfp28day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PN_bfp2_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPNbfp28day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPNbfp28day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdPNbfp28day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPPbfp28day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPPbfp28day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPPbfp28day_LonPM180/request", "", "public", "Primary Productivity, Aqua MODIS and Pathfinder, Global, 2002-2013, EXPERIMENTAL, DEPRECATED OLDER VERSION (8 Day Composite), Lon+/-180", "Primary Productivity is calculated from NASA Aqua MODIS Chl a SST data. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPPbfp28day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPPbfp28day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPPbfp28day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PP_bfp2_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPPbfp28day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPPbfp28day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdPPbfp28day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPPbfp2mday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPPbfp2mday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPPbfp2mday_LonPM180/request", "", "public", "Primary Productivity, Aqua MODIS and Pathfinder, Global, 2002-2013, EXPERIMENTAL, DEPRECATED OLDER VERSION (Monthly Composite), Lon+/-180", "Primary Productivity is calculated from NASA Aqua MODIS Chl a SST data. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPPbfp2mday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPPbfp2mday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPPbfp2mday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PP_bfp2_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPPbfp2mday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPPbfp2mday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdPPbfp2mday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1pp1day/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, Global, 2003-present, EXPERIMENTAL (1 Day Composite)", "calculates vertically integrated primary productivity using the Behrenfield - Falkowski method and satellite-based measurements of Chlorophyll a, incident visible surface irradiance, and sea surface temperature. see (Behrenfield and Falkowski, L&O 1997).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1pp1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1pp1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1pp1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PPMH_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1pp1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1pp1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMH1pp1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1pp3day/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, Global, 2003-present, EXPERIMENTAL (3 Day Composite)", "calculates the composite of vertically integrated primary productivity one day files that use the Behrenfield - Falkowski method and satellite-based measurements of Chlorophyll a, incident visible surface irradiance, and sea surface temperature. see (Behrenfield and Falkowski, L&O 1997).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\nnobs (Number of observations in composite, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1pp3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1pp3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1pp3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PPMH_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1pp3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1pp3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMH1pp3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1pp8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1pp8day/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, Global, 2003-present, EXPERIMENTAL (8 Day Composite)", "calculates the composite of vertically integrated primary productivity one day files that use the Behrenfield - Falkowski method and satellite-based measurements of Chlorophyll a, incident visible surface irradiance, and sea surface temperature. see (Behrenfield and Falkowski, L&O 1997).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\nnobs (Number of observations in composite, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1pp8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1pp8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1pp8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PPMH_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1pp8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1pp8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMH1pp8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1ppmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1ppmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1ppmday/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, Global, 2003-present, EXPERIMENTAL (Monthly Composite)", "calculates the composite of vertically integrated primary productivity one day files that use the Behrenfield - Falkowski method and satellite-based measurements of Chlorophyll a, incident visible surface irradiance, and sea surface temperature. see (Behrenfield and Falkowski, L&O 1997).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1ppmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1ppmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1ppmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PPMH_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1ppmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1ppmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMH1ppmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpp1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpp1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWpp1day_LonPM180/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, West Coast, 1-Day, 2003-present, EXPERIMENTAL, Lon+/-180", "Primary Productivity is calculated from NASA Aqua MODIS Chl_a, SST and Par data using the Behrenfield-Falkowski method (Behrenfield and Falkowski, Limnology and Oceanography 1997). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWpp1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWpp1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWpp1day_LonPM180/index.json", "https://oceanwatch.pfeg.noaa.gov/thredds/dodsC/satellite/PPMW/1day.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWpp1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWpp1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWpp1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpp3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWpp3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWpp3day_LonPM180/request", "", "public", "Primary Productivity, Aqua MODIS, NPP, West Coast, 3-Day, 2003-present, EXPERIMENTAL, Lon+/-180", "Primary Productivity is calculated from NASA Aqua MODIS Chl_a, SST and Par data using the Behrenfield-Falkowski method (Behrenfield and Falkowski, Limnology and Oceanography 1997). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\nnobs (Number of Observations in Composite)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWpp3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWpp3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWpp3day_LonPM180/index.json", "https://oceanwatch.pfeg.noaa.gov/thredds/dodsC/satellite/PPMW/3day.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWpp3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWpp3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWpp3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPPbfp18day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPPbfp18day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPPbfp18day_LonPM180/request", "", "public", "Primary Productivity, SeaWiFS and Pathfinder, Global, 1997-2010, EXPERIMENTAL (8 Day Composite), Lon+/-180", "Primary Productivity is calculated from SeaWiFS Chl a, Pathfinder SST, and SeaWiFS PAR data. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPPbfp18day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPPbfp18day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPPbfp18day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PP_bfp1_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPPbfp18day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPPbfp18day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdPPbfp18day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPPbfp1mday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPPbfp1mday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPPbfp1mday_LonPM180/request", "", "public", "Primary Productivity, SeaWiFS and Pathfinder, Global, 1997-2010, EXPERIMENTAL (Monthly Composite), Lon+/-180", "Primary Productivity is calculated from SeaWiFS Chl a, Pathfinder SST, and SeaWiFS PAR data. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nproductivity (Net Primary Productivity Of Carbon, mg C m-2 day-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPPbfp1mday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPPbfp1mday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPPbfp1mday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/PP_bfp1_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPPbfp1mday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPPbfp1mday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdPPbfp1mday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplQSWindMon_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplQSWindMon_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplQSWindMon_LonPM180/request", "", "public", "QuikSCAT Model Output, obs4MIPs NASA-JPL, Global, 1 Degree, 1999-2009, Monthly, Lon+/-180", "This dataset contains ocean surface Eastward wind from SeaWinds on QuikSCAT binned and averaged monthly on 1 degree grids. The coverage is from August 1999 through October 2009. The QuikSCAT Project produced this dataset in support of the CMIP5 (Coupled Model Intercomparison Project Phase 5) under the World Climate Research Program (WCRP) and was first made available via the Earth System Grid. This dataset was derived directly from the QuikSCAT Level 2B dataset, which can be accessed here: https://podaac.jpl.nasa.gov/dataset/QSCAT_LEVEL_2B. The SeaWinds instrument is a conical scanning pencil-beam radar, with dual-beam and dual-polarization capability, operating at Ku-band to provide all-weather ocean surface wind vector retrievals. For more information on the QuikSCAT platform and mission, please visit\nhttps://podaac.jpl.nasa.gov/OceanWind/QuikSCAT .\nFor more information about this dataset, please see the documents in\nftp://podaac.jpl.nasa.gov/allData/climate_intercomparison/wind/docs/ and\nftp://podaac.jpl.nasa.gov/OceanWinds/quikscat/L3/wind_1deg_1mo/docs/ .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsfcWind (Near-Surface Wind Speed, m s-1)\nsfcWindNobs (Near-Surface Wind Speed Number of Observations, 1)\nsfcWindStderr (Near-Surface Wind Speed Standard Error, m s-1)\nuas (Eastward Near-Surface Wind, m s-1)\nuasNobs (Eastward Near-Surface Wind Number of Observations, 1)\nuasStderr (Eastward Near-Surface Wind Standard Error, m s-1)\nvas (Northward Near-Surface Wind, m s-1)\nvasNobs (Northward Near-Surface Wind Number of Observations, 1)\nvasStderr (Northward Near-Surface Wind Standard Error, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplQSWindMon_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplQSWindMon_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplQSWindMon_LonPM180/index.json", "https://podaac.jpl.nasa.gov/dataset/QSCAT_L3_SFC_EASTWARD_WIND_1DEG_1MO", "http://upwell.pfeg.noaa.gov/erddap/rss/jplQSWindMon_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplQSWindMon_LonPM180&showErrors=false&email=", "NASA JPL", "jplQSWindMon_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEr6671day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEr6671day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEr6671day/request", "", "public", "Remote Sensing Reflectance at 667 nm, Aqua MODIS, NPP, East US, 2002-2012 (1 Day Composite)", "MODIS measures the remote sensing reflectance (Rrs) at 667nm. This can be used to view very high concentrations of phytoplankton in the very surface of the water.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nr667 (Remote Sensing Reflectance at 667 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEr6671day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEr6671day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEr6671day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_r667_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEr6671day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEr6671day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEr6671day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEr66714day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEr66714day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEr66714day/request", "", "public", "Remote Sensing Reflectance at 667 nm, Aqua MODIS, NPP, East US, 2002-2012 (14 Day Composite)", "MODIS measures the remote sensing reflectance (Rrs) at 667nm. This can be used to view very high concentrations of phytoplankton in the very surface of the water.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nr667 (Remote Sensing Reflectance at 667 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEr66714day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEr66714day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEr66714day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_r667_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEr66714day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEr66714day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEr66714day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEr6673day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEr6673day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEr6673day/request", "", "public", "Remote Sensing Reflectance at 667 nm, Aqua MODIS, NPP, East US, 2002-2012 (3 Day Composite)", "MODIS measures the remote sensing reflectance (Rrs) at 667nm. This can be used to view very high concentrations of phytoplankton in the very surface of the water.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nr667 (Remote Sensing Reflectance at 667 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEr6673day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEr6673day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEr6673day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_r667_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEr6673day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEr6673day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEr6673day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEr6678day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEr6678day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEr6678day/request", "", "public", "Remote Sensing Reflectance at 667 nm, Aqua MODIS, NPP, East US, 2002-2012 (8 Day Composite)", "MODIS measures the remote sensing reflectance (Rrs) at 667nm. This can be used to view very high concentrations of phytoplankton in the very surface of the water.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nr667 (Remote Sensing Reflectance at 667 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEr6678day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEr6678day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEr6678day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_r667_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEr6678day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEr6678day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEr6678day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEr667mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEr667mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEr667mday/request", "", "public", "Remote Sensing Reflectance at 667 nm, Aqua MODIS, NPP, East US, 2002-2012 (Monthly Composite)", "MODIS measures the remote sensing reflectance (Rrs) at 667nm. This can be used to view very high concentrations of phytoplankton in the very surface of the water.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nr667 (Remote Sensing Reflectance at 667 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEr667mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEr667mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEr667mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_r667_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEr667mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEr667mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEr667mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTr6678day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTr6678day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTr6678day_LonPM180/request", "", "public", "Remote Sensing Reflectance at 667 nm, Terra MODIS, NPP, Global, 2000-2013, Science Quality (8 Day Composite), Lon+/-180", "MODIS measures the remote sensing reflectance (Rrs) at 667nm. This can be used to view very high concentrations of phytoplankton in the very surface of the water.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nr667 (Remote Sensing Reflectance at 667 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTr6678day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTr6678day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTr6678day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_r667_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTr6678day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTr6678day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTr6678day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTr667mday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTr667mday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTr667mday_LonPM180/request", "", "public", "Remote Sensing Reflectance at 667 nm, Terra MODIS, NPP, Global, 2000-2013, Science Quality (Monthly Composite), Lon+/-180", "MODIS measures the remote sensing reflectance (Rrs) at 667nm. This can be used to view very high concentrations of phytoplankton in the very surface of the water.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nr667 (Remote Sensing Reflectance at 667 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTr667mday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTr667mday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTr667mday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_r667_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTr667mday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTr667mday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTr667mday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DFore3hrlyDiag_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DFore3hrlyDiag_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG2DFore3hrlyDiag_LonPM180/request", "", "public", "RTOFS Forecast, 2D, 3-Hourly Diagnostic, Global, Latest Model Run, today - today+8days, Lon+/-180", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nssh (Sea Surface Elevation, m)\nice_coverage (Sea Ice Area Fraction, 1)\nice_thickness (Sea Ice Thickness, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG2DFore3hrlyDiag_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG2DFore3hrlyDiag_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG2DFore3hrlyDiag_LonPM180/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG2DFore3hrlyDiag_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG2DFore3hrlyDiag_LonPM180&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG2DFore3hrlyDiag_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DFore3hrlyProg_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DFore3hrlyProg_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG2DFore3hrlyProg_LonPM180/request", "", "public", "RTOFS Forecast, 2D, 3-Hourly Prognostic, Global, Latest Model Run, today - today+8days, Lon+/-180", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nsss (Sea Water Practical Salinity, PSU)\nu_velocity (Eastward Sea Water Velocity, m s-1)\nv_velocity (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG2DFore3hrlyProg_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG2DFore3hrlyProg_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG2DFore3hrlyProg_LonPM180/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG2DFore3hrlyProg_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG2DFore3hrlyProg_LonPM180&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG2DFore3hrlyProg_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DForeDailyDiag_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DForeDailyDiag_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG2DForeDailyDiag_LonPM180/request", "", "public", "RTOFS Forecast, 2D, Daily Diagnostic, Global, Latest Model Run, today - today+8days, Lon+/-180", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nssh (Sea Surface Elevation, m)\nice_coverage (Sea Ice Area Fraction, 1)\nice_thickness (Sea Ice Thickness, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG2DForeDailyDiag_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG2DForeDailyDiag_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG2DForeDailyDiag_LonPM180/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG2DForeDailyDiag_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG2DForeDailyDiag_LonPM180&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG2DForeDailyDiag_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DForeDailyProg_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DForeDailyProg_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG2DForeDailyProg_LonPM180/request", "", "public", "RTOFS Forecast, 2D, Daily Prognostic, Global, Latest Model Run, today - today+8days, Lon+/-180", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nsss (Sea Water Practical Salinity, PSU)\nu_velocity (Eastward Sea Water Velocity, m s-1)\nv_velocity (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG2DForeDailyProg_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG2DForeDailyProg_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG2DForeDailyProg_LonPM180/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG2DForeDailyProg_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG2DForeDailyProg_LonPM180&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG2DForeDailyProg_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DFore6hrlyR1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DFore6hrlyR1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG3DFore6hrlyR1/request", "", "public", "RTOFS Forecast, 3D, 6-Hourly, Region 1 (US East), Latest Model Run, today - today+8days", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntemperature (Sea Water Potential Temperature, degree_C)\nsalinity (Sea Water Practical Salinity, PSU)\nu (Eastward Sea Water Velocity, m s-1)\nv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG3DFore6hrlyR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG3DFore6hrlyR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG3DFore6hrlyR1/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG3DFore6hrlyR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG3DFore6hrlyR1&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG3DFore6hrlyR1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DFore6hrlyR2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DFore6hrlyR2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG3DFore6hrlyR2/request", "", "public", "RTOFS Forecast, 3D, 6-Hourly, Region 2 (US West), Latest Model Run, today - today+8days", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntemperature (Sea Water Potential Temperature, degree_C)\nsalinity (Sea Water Practical Salinity, PSU)\nu (Eastward Sea Water Velocity, m s-1)\nv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG3DFore6hrlyR2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG3DFore6hrlyR2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG3DFore6hrlyR2/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG3DFore6hrlyR2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG3DFore6hrlyR2&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG3DFore6hrlyR2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DForeDaily_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DForeDaily_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG3DForeDaily_LonPM180/request", "", "public", "RTOFS Forecast, 3D, Daily, Global, Latest Model Run, today - today+8days, Lon+/-180", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntemperature (Sea Water Potential Temperature, degree_C)\nsalinity (Sea Water Practical Salinity, PSU)\nu (Eastward Sea Water Velocity, m s-1)\nv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG3DForeDaily_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG3DForeDaily_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG3DForeDaily_LonPM180/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG3DForeDaily_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG3DForeDaily_LonPM180&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG3DForeDaily_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DNow3hrlyDiag_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DNow3hrlyDiag_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG2DNow3hrlyDiag_LonPM180/request", "", "public", "RTOFS Nowcast, 2D, 3-Hourly Diagnostic, Global, Latest Model Run, today-2days - today, Lon+/-180", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nssh (Sea Surface Elevation, m)\nice_coverage (Sea Ice Area Fraction, 1)\nice_thickness (Sea Ice Thickness, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG2DNow3hrlyDiag_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG2DNow3hrlyDiag_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG2DNow3hrlyDiag_LonPM180/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG2DNow3hrlyDiag_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG2DNow3hrlyDiag_LonPM180&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG2DNow3hrlyDiag_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DNow3hrlyProg_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DNow3hrlyProg_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG2DNow3hrlyProg_LonPM180/request", "", "public", "RTOFS Nowcast, 2D, 3-Hourly Prognostic, Global, Latest Model Run, today-2days - today, Lon+/-180", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nsss (Sea Water Practical Salinity, PSU)\nu_velocity (Eastward Sea Water Velocity, m s-1)\nv_velocity (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG2DNow3hrlyProg_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG2DNow3hrlyProg_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG2DNow3hrlyProg_LonPM180/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG2DNow3hrlyProg_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG2DNow3hrlyProg_LonPM180&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG2DNow3hrlyProg_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DNowDailyDiag_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DNowDailyDiag_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG2DNowDailyDiag_LonPM180/request", "", "public", "RTOFS Nowcast, 2D, Daily Diagnostic, Global, Latest Model Run, today-2days - today, Lon+/-180", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nssh (Sea Surface Elevation, m)\nice_coverage (Sea Ice Area Fraction, 1)\nice_thickness (Sea Ice Thickness, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG2DNowDailyDiag_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG2DNowDailyDiag_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG2DNowDailyDiag_LonPM180/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG2DNowDailyDiag_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG2DNowDailyDiag_LonPM180&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG2DNowDailyDiag_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DNowDailyProg_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG2DNowDailyProg_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG2DNowDailyProg_LonPM180/request", "", "public", "RTOFS Nowcast, 2D, Daily Prognostic, Global, Latest Model Run, today-2days - today, Lon+/-180", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nsss (Sea Water Practical Salinity, PSU)\nu_velocity (Eastward Sea Water Velocity, m s-1)\nv_velocity (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG2DNowDailyProg_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG2DNowDailyProg_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG2DNowDailyProg_LonPM180/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG2DNowDailyProg_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG2DNowDailyProg_LonPM180&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG2DNowDailyProg_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DNow6hrlyR1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DNow6hrlyR1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG3DNow6hrlyR1/request", "", "public", "RTOFS Nowcast, 3D, 6-Hourly, Region 1 (US East), Latest Model Run, today-2days - today", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntemperature (Sea Water Potential Temperature, degree_C)\nsalinity (Sea Water Practical Salinity, PSU)\nu (Eastward Sea Water Velocity, m s-1)\nv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG3DNow6hrlyR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG3DNow6hrlyR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG3DNow6hrlyR1/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG3DNow6hrlyR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG3DNow6hrlyR1&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG3DNow6hrlyR1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DNow6hrlyR2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DNow6hrlyR2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG3DNow6hrlyR2/request", "", "public", "RTOFS Nowcast, 3D, 6-Hourly, Region 2 (US West), Latest Model Run, today-2days - today", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntemperature (Sea Water Potential Temperature, degree_C)\nsalinity (Sea Water Practical Salinity, PSU)\nu (Eastward Sea Water Velocity, m s-1)\nv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG3DNow6hrlyR2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG3DNow6hrlyR2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG3DNow6hrlyR2/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG3DNow6hrlyR2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG3DNow6hrlyR2&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG3DNow6hrlyR2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DNowDaily_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncepRtofsG3DNowDaily_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncepRtofsG3DNowDaily_LonPM180/request", "", "public", "RTOFS Nowcast, 3D, Daily, Global, Latest Model Run, today-2days - today, Lon+/-180", "The global operational Real-Time Ocean Forecast System (Global RTOFS) at the NOAA National Centers for Environmental Prediction is based on an eddy resolving 1/12\u00b0 global HYCOM (HYbrid Coordinates Ocean Model) and is part of a larger national backbone capability of ocean modeling at the National Weather Service in a strong partnership with the US Navy.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\ntemperature (Sea Water Potential Temperature, degree_C)\nsalinity (Sea Water Practical Salinity, PSU)\nu (Eastward Sea Water Velocity, m s-1)\nv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncepRtofsG3DNowDaily_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncepRtofsG3DNowDaily_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncepRtofsG3DNowDaily_LonPM180/index.json", "https://polar.ncep.noaa.gov/global/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepRtofsG3DNowDaily_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepRtofsG3DNowDaily_LonPM180&showErrors=false&email=", "NOAA NCEP", "ncepRtofsG3DNowDaily_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAsshmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAsshmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTAsshmday_LonPM180/request", "", "public", "Sea Surface Height, Absolute, Aviso, 0.25 degrees, Global, 1992-2010, Science Quality (Monthly Composite), Lon+/-180", "Aviso Absolute Sea Surface Height is the Sea Surface Height Deviation plus the long term mean dynamic height. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nssh (Absolute Sea Surface Height, m)\nsshd (Sea Surface Height Deviation, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTAsshmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTAsshmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTAsshmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TA_sshl_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTAsshmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTAsshmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTAsshmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAssh1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAssh1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTAssh1day_LonPM180/request", "", "public", "Sea Surface Height, Absolute, Aviso, 0.25 degrees, Global, 1992-2012, Science Quality (1 Day Composite), Lon+/-180", "Aviso Absolute Sea Surface Height is the Sea Surface Height Deviation plus the long term mean dynamic height. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nssh (Absolute Sea Surface Height, m)\nsshd (Sea Surface Height Deviation, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTAssh1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTAssh1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTAssh1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TA_sshl_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTAssh1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTAssh1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTAssh1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nceiSMOS30sss3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nceiSMOS30sss3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nceiSMOS30sss3day/request", "", "public", "Sea Surface Salinity from SMOS level-2, Gridded 3-Day Mean, v3.0, Global, 1\u00b0, 2010-2017", "This dataset is created by National Centers for Environmental Information (NCEI) Satellite Oceanography Group from SMOS level-2 Sea Surface Salinity User Data Product (Version 6.22), calculated from using 1.0x1.0 (lon/lat) degree box average\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss1 (3-days average of Sea Surface Salinity using roughness model 1, psu)\nsss1_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 1, count)\nsss1_qi (3-days average of quality index for sss1: lower=better., count)\nsss2 (3-days average of Sea Surface Salinity using roughness model 2, psu)\nsss2_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 2, count)\nsss2_qi (3-days average of quality index for sss2: lower=better., count)\nsss3 (3-days average of Sea Surface Salinity using roughness model 3, psu)\nsss3_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 3, count)\nsss3_qi (3-days average of quality index for sss3: lower=better., count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nceiSMOS30sss3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nceiSMOS30sss3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nceiSMOS30sss3day/index.json", "https://www.nodc.noaa.gov/SatelliteData/sss/", "http://upwell.pfeg.noaa.gov/erddap/rss/nceiSMOS30sss3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nceiSMOS30sss3day&showErrors=false&email=", "NOAA NCEI", "nceiSMOS30sss3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nceiSMOS30sssMonthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nceiSMOS30sssMonthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nceiSMOS30sssMonthly/request", "", "public", "Sea Surface Salinity from SMOS level-2, Gridded Monthly Mean, v3.0, Global, 1\u00b0, 2010-2017", "This dataset is created by National Centers for Environmental Information (NCEI) Satellite Oceanography Group from SMOS level-2 Sea Surface Salinity User Data Product (Version 6.22), calculated from using 1.0x1.0 (lon/lat) degree box average\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss1 (Monthly mean of Sea Surface Salinity using roughness model 1, psu)\nsss1_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 1, count)\nsss1_qi (Monthly mean of quality index for sss1: lower=better., count)\nsss2 (Monthly mean of Sea Surface Salinity using roughness model 2, psu)\nsss2_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 2, count)\nsss2_qi (Monthly mean of quality index for sss2: lower=better., count)\nsss3 (Monthly mean of Sea Surface Salinity using roughness model 3, psu)\nsss3_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 3, count)\nsss3_qi (Monthly mean of quality index for sss3: lower=better., count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nceiSMOS30sssMonthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nceiSMOS30sssMonthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nceiSMOS30sssMonthly/index.json", "https://www.nodc.noaa.gov/SatelliteData/sss/", "http://upwell.pfeg.noaa.gov/erddap/rss/nceiSMOS30sssMonthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nceiSMOS30sssMonthly&showErrors=false&email=", "NOAA NCEI", "nceiSMOS30sssMonthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_38d1_a491_2b01", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_38d1_a491_2b01.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_38d1_a491_2b01/request", "", "public", "SEAWIFS L3 CHLA DAILY 9KM R", "Sea-Wide Field-of-View Sensor (SeaWiFS) Level-3 Standard Mapped Image (SEAWIFS L3 Chlorophyll-a (CHLA) DAILY 9KM R)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll a concentration, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_38d1_a491_2b01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_38d1_a491_2b01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_38d1_a491_2b01/index.json", "https://podaac.jpl.nasa.gov/dataset/SeaWiFS_L3_CHLA_Daily_9km_R", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_38d1_a491_2b01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_38d1_a491_2b01&showErrors=false&email=", "NASA JPL", "nasa_jpl_38d1_a491_2b01"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3d54_7687_3543", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3d54_7687_3543.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_3d54_7687_3543/request", "", "public", "SEAWIFS L3 CHLA MONTHLY 9KM R", "Sea-Wide Field-of-View Sensor (SeaWiFS) Level-3 Standard Mapped Image (SEAWIFS L3 Chlorophyll-a (CHLA) MONTHLY 9KM R)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll a concentration, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_3d54_7687_3543_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_3d54_7687_3543_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_3d54_7687_3543/index.json", "https://podaac.jpl.nasa.gov/dataset/SeaWiFS_L3_CHLA_Monthly_9km_R", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_3d54_7687_3543.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_3d54_7687_3543&showErrors=false&email=", "NASA JPL", "nasa_jpl_3d54_7687_3543"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_9d34_0512_2367_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_9d34_0512_2367_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hawaii_9d34_0512_2367_LonPM180/request", "", "public", "SODA - POP 2.1.6 Monthly Means, 1958-2008 (At Depths), Lon+/-180", "Simple Ocean Data Assimilation (SODA) version 2.1.6 - A reanalysis of ocean \nclimate. SODA uses the GFDL modular ocean model version 2.2. The model is \nforced by observed surface wind stresses from the COADS data set (from 1958 \nto 1992) and from NCEP (after 1992). Note that the wind stresses were \ndetrended before use due to inconsistencies with observed sea level pressure \ntrends. The model is also constrained by constant assimilation of observed \ntemperatures, salinities, and altimetry using an optimal data assimilation \ntechnique. The observed data comes from: 1) The World Ocean Atlas 1994 which \ncontains ocean temperatures and salinities from mechanical \nbathythermographs, expendable bathythermographs and conductivity-temperature-\ndepth probes. 2) The expendable bathythermograph archive 3) The TOGA-TAO \nthermistor array 4) The Soviet SECTIONS tropical program 5) Satellite \naltimetry from Geosat, ERS/1 and TOPEX/Poseidon. \nWe are now exploring an eddy-permitting reanalysis based on the Parallel \nOcean Program POP-1.4 model with 40 levels in the vertical and a 0.4x0.25 \ndegree displaced pole grid (25 km resolution in the western North \nAtlantic). The first version of this we will release is SODA1.2, a \nreanalysis driven by ERA-40 winds covering the period 1958-2001 (extended to \nthe current year using available altimetry).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (Sea Water Temperature, degree_C)\nsalt (Sea Water Practical Salinity, PSU)\nu (Eastward Sea Water Velocity, m s-1)\nv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_9d34_0512_2367_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_9d34_0512_2367_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_9d34_0512_2367_LonPM180/index.json", "https://www.atmos.umd.edu/~ocean/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_9d34_0512_2367_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_9d34_0512_2367_LonPM180&showErrors=false&email=", "TAMU/UMD", "hawaii_9d34_0512_2367_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_6350_6f20_00bf_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_6350_6f20_00bf_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hawaii_6350_6f20_00bf_LonPM180/request", "", "public", "SODA - POP 2.1.6 Monthly Means, 1958-2008 (At Surface), Lon+/-180", "Simple Ocean Data Assimilation (SODA) version 2.1.6 - A reanalysis of ocean \nclimate. SODA uses the GFDL modular ocean model version 2.2. The model is \nforced by observed surface wind stresses from the COADS data set (from 1958 \nto 1992) and from NCEP (after 1992). Note that the wind stresses were \ndetrended before use due to inconsistencies with observed sea level pressure \ntrends. The model is also constrained by constant assimilation of observed \ntemperatures, salinities, and altimetry using an optimal data assimilation \ntechnique. The observed data comes from: 1) The World Ocean Atlas 1994 which \ncontains ocean temperatures and salinities from mechanical \nbathythermographs, expendable bathythermographs and conductivity-temperature-\ndepth probes. 2) The expendable bathythermograph archive 3) The TOGA-TAO \nthermistor array 4) The Soviet SECTIONS tropical program 5) Satellite \naltimetry from Geosat, ERS/1 and TOPEX/Poseidon. \nWe are now exploring an eddy-permitting reanalysis based on the Parallel \nOcean Program POP-1.4 model with 40 levels in the vertical and a 0.4x0.25 \ndegree displaced pole grid (25 km resolution in the western North \nAtlantic). The first version of this we will release is SODA1.2, a \nreanalysis driven by ERA-40 winds covering the period 1958-2001 (extended to \nthe current year using available altimetry).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\nssh (Sea Level, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_6350_6f20_00bf_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_6350_6f20_00bf_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_6350_6f20_00bf_LonPM180/index.json", "https://www.atmos.umd.edu/~ocean/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_6350_6f20_00bf_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_6350_6f20_00bf_LonPM180&showErrors=false&email=", "TAMU/UMD", "hawaii_6350_6f20_00bf_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_d90f_20ee_c4cb_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_d90f_20ee_c4cb_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hawaii_d90f_20ee_c4cb_LonPM180/request", "", "public", "SODA - POP 2.2.4 Monthly Means, 1871-2010 (At Depths), Lon+/-180", "Simple Ocean Data Assimilation (SODA) version 2.2.4 - A reanalysis of ocean \nclimate. SODA uses the GFDL modular ocean model version 2.2. The model is \nforced by observed surface wind stresses from the COADS data set (from 1958 \nto 1992) and from NCEP (after 1992). Note that the wind stresses were \ndetrended before use due to inconsistencies with observed sea level pressure \ntrends. The model is also constrained by constant assimilation of observed \ntemperatures, salinities, and altimetry using an optimal data assimilation \ntechnique. The observed data comes from: 1) The World Ocean Atlas 1994 which \ncontains ocean temperatures and salinities from mechanical \nbathythermographs, expendable bathythermographs and conductivity-temperature-\ndepth probes. 2) The expendable bathythermograph archive 3) The TOGA-TAO \nthermistor array 4) The Soviet SECTIONS tropical program 5) Satellite \naltimetry from Geosat, ERS/1 and TOPEX/Poseidon. \nWe are now exploring an eddy-permitting reanalysis based on the Parallel \nOcean Program POP-1.4 model with 40 levels in the vertical and a 0.4x0.25 \ndegree displaced pole grid (25 km resolution in the western North \nAtlantic). The first version of this we will release is SODA1.2, a \nreanalysis driven by ERA-40 winds covering the period 1958-2001 (extended to \nthe current year using available altimetry).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (Sea Water Temperature, degree_C)\nsalt (Sea Water Practical Salinity, PSU)\nu (Eastward Sea Water Velocity, m s-1)\nv (Northward Sea Water Velocity, m s-1)\nw (Upward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_d90f_20ee_c4cb_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_d90f_20ee_c4cb_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_d90f_20ee_c4cb_LonPM180/index.json", "https://www.atmos.umd.edu/~ocean/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_d90f_20ee_c4cb_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_d90f_20ee_c4cb_LonPM180&showErrors=false&email=", "TAMU/UMD", "hawaii_d90f_20ee_c4cb_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_3e19_7ccd_16ff_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_3e19_7ccd_16ff_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hawaii_3e19_7ccd_16ff_LonPM180/request", "", "public", "SODA - POP 2.2.4 Monthly Means, 1871-2010 (At Surface), Lon+/-180", "Simple Ocean Data Assimilation (SODA) version 2.2.4 - A reanalysis of ocean \nclimate. SODA uses the GFDL modular ocean model version 2.2. The model is \nforced by observed surface wind stresses from the COADS data set (from 1958 \nto 1992) and from NCEP (after 1992). Note that the wind stresses were \ndetrended before use due to inconsistencies with observed sea level pressure \ntrends. The model is also constrained by constant assimilation of observed \ntemperatures, salinities, and altimetry using an optimal data assimilation \ntechnique. The observed data comes from: 1) The World Ocean Atlas 1994 which \ncontains ocean temperatures and salinities from mechanical \nbathythermographs, expendable bathythermographs and conductivity-temperature-\ndepth probes. 2) The expendable bathythermograph archive 3) The TOGA-TAO \nthermistor array 4) The Soviet SECTIONS tropical program 5) Satellite \naltimetry from Geosat, ERS/1 and TOPEX/Poseidon. \nWe are now exploring an eddy-permitting reanalysis based on the Parallel \nOcean Program POP-1.4 model with 40 levels in the vertical and a 0.4x0.25 \ndegree displaced pole grid (25 km resolution in the western North \nAtlantic). The first version of this we will release is SODA1.2, a \nreanalysis driven by ERA-40 winds covering the period 1958-2001 (extended to \nthe current year using available altimetry).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\nssh (Sea Level, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_3e19_7ccd_16ff_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_3e19_7ccd_16ff_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_3e19_7ccd_16ff_LonPM180/index.json", "https://www.atmos.umd.edu/~ocean/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_3e19_7ccd_16ff_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_3e19_7ccd_16ff_LonPM180&showErrors=false&email=", "TAMU/UMD", "hawaii_3e19_7ccd_16ff_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSoda331oceanmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSoda331oceanmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSoda331oceanmday_LonPM180/request", "", "public", "SODA 3.3.1 Ocean State, 1/2\u00b0, Global, 1980-2015, Monthly Composite, Lon+/-180", "SODA3.3.1 ocean state, forced by MERRA2. The goal of SODA is to reconstruct the historical physical (and eventually biogeochemical) history of the ocean. As its name implies, the Simple Ocean Data Assimilation ocean/sea ice reanalysis (SODA) uses a simple architecture based on community standard codes with resolution chosen to match available data and the scales of motion that are resolvable. Agreement with direct measurements (to within observational error estimates) as well as unbiased statistics are expected. Please cite: Carton, Chepurin, and Chen (2017).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemp (Potential temperature, degrees C)\nsalt (Practical Salinity, PSU)\nwt (dia-surface velocity T-points, m/sec)\nprho (potential density referenced to 0 dbar, kg/m^3)\nu (i-current, m/sec)\nv (j-current, m/sec)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSoda331oceanmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSoda331oceanmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSoda331oceanmday_LonPM180/index.json", "http://www.soda.umd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSoda331oceanmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSoda331oceanmday_LonPM180&showErrors=false&email=", "University of Maryland", "erdSoda331oceanmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSoda331icemday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSoda331icemday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSoda331icemday_LonPM180/request", "", "public", "SODA 3.3.1 Sea Ice Concentration, 1/2\u00b0, Global, 1980-2015, Monthly Composite, Lon+/-180", "SODA3.3.1 ice state, forced by MERRA2. The goal of SODA is to reconstruct the historical physical (and eventually biogeochemical) history of the ocean. As its name implies, the Simple Ocean Data Assimilation ocean/sea ice reanalysis (SODA) uses a simple architecture based on community standard codes with resolution chosen to match available data and the scales of motion that are resolvable. Agreement with direct measurements (to within observational error estimates) as well as unbiased statistics are expected. Please cite: Carton, Chepurin, and Chen (2017).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ncn (Sea Ice Concentration, 0-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSoda331icemday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSoda331icemday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSoda331icemday_LonPM180/index.json", "http://www.soda.umd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSoda331icemday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSoda331icemday_LonPM180&showErrors=false&email=", "University of Maryland", "erdSoda331icemday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/srtm30plus_v11_bathy", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/srtm30plus_v11_bathy.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/srtm30plus_v11_bathy/request", "", "public", "SRTM30+ Global 1-km Digital Elevation Model (DEM): Version 11: Bathymetry", "Global 1-km resolution bathymetry from the 30 arc-second SRTM30+ gridded digital elevation model (DEM). Based on the Smith and Sandwell global 1 arc-minute grid between latitudes +/- 81 degrees. Higher resolution grids have been added from the LDEO Ridge Multibeam Synthesis Project, the JAMSTEC Data Site for Research Cruises, and the NGDC Coastal Relief Model. Arctic bathymetry is from the International Bathymetric Chart of the Oceans (IBCAO).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/srtm30plus_v11_bathy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/srtm30plus_v11_bathy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/srtm30plus_v11_bathy/index.json", "http://topex.ucsd.edu/WWW_html/srtm30_plus.html", "http://upwell.pfeg.noaa.gov/erddap/rss/srtm30plus_v11_bathy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=srtm30plus_v11_bathy&showErrors=false&email=", "Scripps", "srtm30plus_v11_bathy"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/srtm30plus_v11_land", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/srtm30plus_v11_land.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/srtm30plus_v11_land/request", "", "public", "SRTM30+ Global 1-km Digital Elevation Model (DEM): Version 11: Land Surface", "A global 1-km resolution land surface digital elevation model (DEM) derived from United States Geological Survey (USGS) 30 arc-second SRTM30 gridded DEM data created from the NASA Shuttle Radar Topography Mission (SRTM). GTOPO30 data are used for high latitudes where SRTM data are not available.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nelev (elevation, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/srtm30plus_v11_land_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/srtm30plus_v11_land_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/srtm30plus_v11_land/index.json", "http://topex.ucsd.edu/WWW_html/srtm30_plus.html", "http://upwell.pfeg.noaa.gov/erddap/rss/srtm30plus_v11_land.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=srtm30plus_v11_land&showErrors=false&email=", "Scripps", "srtm30plus_v11_land"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/srtm30plus_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/srtm30plus_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/srtm30plus_LonPM180/request", "", "public", "SRTM30_PLUS Estimated Topography, 30 seconds, Global, v11, Lon+/-180", "One GMT file, topo30.grd, with the entire global topography. The grid resolution is 30 seconds which is roughly 0.55km at the equator. The data are pixel registered.\n\nLand data are based on the 1-km averages of topography derived from the USGS SRTM30 grided DEM data product created with data from the NASA Shuttle Radar Topography Mission (https://www2.jpl.nasa.gov/srtm/). GTOPO30 data (http://www1.gsi.go.jp/geowww/globalmap-gsi/gtopo30/gtopo30.html) are used for high latitudes where SRTM data are not available.\n\nOcean data are based on the Smith and Sandwell global 1-minute grid (https://topex.ucsd.edu/WWW_html/mar_topo.html) between latitudes +/-81 degrees. Higher resolution grids have been added from the LDEO Ridge Multibeam Synthesis Project ( https://www.gmrt.org/ ), the JAMSTEC Data Site for Research Cruises (https://www.godac.jamstec.go.jp/darwin/e), and the NGDC Coastal Relief Model (https://www.ngdc.noaa.gov/mgg/coastal/coastal.html). Arctic bathymetry is from the International Bathymetric Chart of the Oceans (IBCAO) (https://www.ngdc.noaa.gov/mgg/bathymetry/arctic/arctic.html) [Jakobsson et al., 2003].\n\nMatching files of source identification number are available for determining the data source for every pixel.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (Altitude, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/srtm30plus_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/srtm30plus_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/srtm30plus_LonPM180/index.json", "https://topex.ucsd.edu/WWW_html/srtm30_plus.html", "http://upwell.pfeg.noaa.gov/erddap/rss/srtm30plus_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=srtm30plus_LonPM180&showErrors=false&email=", "SIO, NOAA, U.S. Navy, NGA, GEBCO", "srtm30plus_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanmmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanmmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGtanmmday_LonPM180/request", "", "public", "SST Anomaly, POES AVHRR, Casey and Cornillon Climatology, Global, 2003-2016 (Monthly Composite), Lon+/-180", "NOAA CoastWatch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database by Casey and Cornillon. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGtanmmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGtanmmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGtanmmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_tanm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGtanmmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGtanmmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGtanmmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGtanm1day_LonPM180/request", "", "public", "SST Anomaly, POES AVHRR, Casey and Cornillon Climatology, Global, 2006-2016 (1 Day Composite), Lon+/-180", "NOAA CoastWatch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database by Casey and Cornillon. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGtanm1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGtanm1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGtanm1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_tanm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGtanm1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGtanm1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGtanm1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGtanm14day_LonPM180/request", "", "public", "SST Anomaly, POES AVHRR, Casey and Cornillon Climatology, Global, 2006-2016 (14 Day Composite), Lon+/-180", "NOAA CoastWatch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database by Casey and Cornillon. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGtanm14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGtanm14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGtanm14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_tanm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGtanm14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGtanm14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGtanm14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGtanm3day_LonPM180/request", "", "public", "SST Anomaly, POES AVHRR, Casey and Cornillon Climatology, Global, 2006-2016 (3 Day Composite), Lon+/-180", "NOAA CoastWatch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database by Casey and Cornillon. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGtanm3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGtanm3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGtanm3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_tanm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGtanm3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGtanm3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGtanm3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGtanm8day_LonPM180/request", "", "public", "SST Anomaly, POES AVHRR, Casey and Cornillon Climatology, Global, 2006-2016 (8 Day Composite), Lon+/-180", "NOAA CoastWatch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database by Casey and Cornillon. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGtanm8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGtanm8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGtanm8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_tanm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGtanm8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGtanm8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGtanm8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm5day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGtanm5day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGtanm5day_LonPM180/request", "", "public", "SST Anomaly, POES AVHRR, Casey and Cornillon Climatology, Global, 2007-2016 (5 Day Composite), Lon+/-180", "NOAA CoastWatch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database by Casey and Cornillon. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGtanm5day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGtanm5day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGtanm5day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_tanm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGtanm5day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGtanm5day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGtanm5day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAAssta1day_LonPM180/request", "", "public", "SST, Aqua AMSR-E, Near Real Time, Global, 2002-2011 (1 Day Composite), Lon+/-180", "NOAA OceanWatch provides sea surface temperature (SST) products derived from microwave sensors, which can measure ocean temperatures even in the presence of clouds. This data is provided at moderate spatial resolution (0.025 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAAssta1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAAssta1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAAssta1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAAssta1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAAssta1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAAssta1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAsstamday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAsstamday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAAsstamday_LonPM180/request", "", "public", "SST, Aqua AMSR-E, Near Real Time, Global, 2005-2011 (Monthly Composite), Lon+/-180", "NOAA OceanWatch provides sea surface temperature (SST) products derived from microwave sensors, which can measure ocean temperatures even in the presence of clouds. This data is provided at moderate spatial resolution (0.025 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAAsstamday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAAsstamday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAAsstamday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAAsstamday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAAsstamday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAAsstamday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAAssta14day_LonPM180/request", "", "public", "SST, Aqua AMSR-E, Near Real Time, Global, 2007-2011 (14 Day Composite), Lon+/-180", "NOAA OceanWatch provides sea surface temperature (SST) products derived from microwave sensors, which can measure ocean temperatures even in the presence of clouds. This data is provided at moderate spatial resolution (0.025 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAAssta14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAAssta14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAAssta14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAAssta14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAAssta14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAAssta14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAAssta3day_LonPM180/request", "", "public", "SST, Aqua AMSR-E, Near Real Time, Global, 2007-2011 (3 Day Composite), Lon+/-180", "NOAA OceanWatch provides sea surface temperature (SST) products derived from microwave sensors, which can measure ocean temperatures even in the presence of clouds. This data is provided at moderate spatial resolution (0.025 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAAssta3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAAssta3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAAssta3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAAssta3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAAssta3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAAssta3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta5day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta5day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAAssta5day_LonPM180/request", "", "public", "SST, Aqua AMSR-E, Near Real Time, Global, 2007-2011 (5 Day Composite), Lon+/-180", "NOAA OceanWatch provides sea surface temperature (SST) products derived from microwave sensors, which can measure ocean temperatures even in the presence of clouds. This data is provided at moderate spatial resolution (0.025 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAAssta5day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAAssta5day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAAssta5day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAAssta5day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAAssta5day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAAssta5day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAAssta8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAAssta8day_LonPM180/request", "", "public", "SST, Aqua AMSR-E, Near Real Time, Global, 2007-2011 (8 Day Composite), Lon+/-180", "NOAA OceanWatch provides sea surface temperature (SST) products derived from microwave sensors, which can measure ocean temperatures even in the presence of clouds. This data is provided at moderate spatial resolution (0.025 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAAssta8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAAssta8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAAssta8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAAssta8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAAssta8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAAssta8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstd1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstd1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWsstd1day_LonPM180/request", "", "public", "SST, Aqua MODIS, NPP, 0.0125\u00b0, West US, Day time (11 microns), 2002-present (1 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWsstd1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWsstd1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWsstd1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWsstd1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWsstd1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWsstd1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstd14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstd14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWsstd14day_LonPM180/request", "", "public", "SST, Aqua MODIS, NPP, 0.0125\u00b0, West US, Day time (11 microns), 2002-present (14 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWsstd14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWsstd14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWsstd14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWsstd14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWsstd14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWsstd14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstd3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstd3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWsstd3day_LonPM180/request", "", "public", "SST, Aqua MODIS, NPP, 0.0125\u00b0, West US, Day time (11 microns), 2002-present (3 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWsstd3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWsstd3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWsstd3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWsstd3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWsstd3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWsstd3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstd8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstd8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWsstd8day_LonPM180/request", "", "public", "SST, Aqua MODIS, NPP, 0.0125\u00b0, West US, Day time (11 microns), 2002-present (8 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWsstd8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWsstd8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWsstd8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWsstd8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWsstd8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWsstd8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstdmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWsstdmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWsstdmday_LonPM180/request", "", "public", "SST, Aqua MODIS, NPP, 0.0125\u00b0, West US, Day time (11 microns), 2002-present (Monthly Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWsstdmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWsstdmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWsstdmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWsstdmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWsstdmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWsstdmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBsstd1day_LonPM180/request", "", "public", "SST, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, Daytime, 2006-present (1 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBsstd1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBsstd1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBsstd1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBsstd1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBsstd1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBsstd1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBsstd14day_LonPM180/request", "", "public", "SST, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, Daytime, 2006-present (14 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBsstd14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBsstd14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBsstd14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBsstd14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBsstd14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBsstd14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBsstd3day_LonPM180/request", "", "public", "SST, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, Daytime, 2006-present (3 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBsstd3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBsstd3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBsstd3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBsstd3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBsstd3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBsstd3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd5day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd5day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBsstd5day_LonPM180/request", "", "public", "SST, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, Daytime, 2006-present (5 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBsstd5day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBsstd5day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBsstd5day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBsstd5day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBsstd5day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBsstd5day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstd8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBsstd8day_LonPM180/request", "", "public", "SST, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, Daytime, 2006-present (8 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBsstd8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBsstd8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBsstd8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBsstd8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBsstd8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBsstd8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstdmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBsstdmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBsstdmday_LonPM180/request", "", "public", "SST, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, Daytime, 2006-present (Monthly Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBsstdmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBsstdmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBsstdmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBsstdmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBsstdmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBsstdmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstd1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstd1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1sstd1day/request", "", "public", "SST, Aqua MODIS, NPP, 4km, Daytime (11 microns), 2003-present (1 Day Composite)", "NOAA CoastWatch provides (mask-applied) global, 11km, Level 3, Standard Mapped Image (SMI), 4km, daytime SST data from NASA's Aqua Spacecraft. This is 1-day composite data. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Masked Daytime Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1sstd1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1sstd1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1sstd1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_sstMask_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1sstd1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1sstd1day&showErrors=false&email=", "NOAA SWFSC ERD", "erdMH1sstd1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstd8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstd8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1sstd8day/request", "", "public", "SST, Aqua MODIS, NPP, 4km, Daytime (11 microns), 2003-present (8 Day Composite)", "NOAA CoastWatch provides (mask-applied) global, 11km, Level 3, Standard Mapped Image (SMI), 4km, daytime SST data from NASA's Aqua Spacecraft. This is 8-day composite data. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Masked Daytime Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1sstd8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1sstd8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1sstd8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_sstMask_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1sstd8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1sstd8day&showErrors=false&email=", "NOAA SWFSC ERD", "erdMH1sstd8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstdmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1sstdmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1sstdmday/request", "", "public", "SST, Aqua MODIS, NPP, 4km, Daytime (11 microns), 2003-present (Monthly Composite)", "NOAA CoastWatch provides (mask-applied) global, 11km, Level 3, Standard Mapped Image (SMI), 4km, daytime SST data from NASA's Aqua Spacecraft. This is monthly composite data. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Masked Daytime Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1sstdmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1sstdmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1sstdmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_sstMask_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1sstdmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1sstdmday&showErrors=false&email=", "NOAA SWFSC ERD", "erdMH1sstdmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEssta14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEssta14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEssta14day/request", "", "public", "SST, Aqua MODIS, NPP, East US, Daytime and Nighttime (11 microns), 2002-2010 (14 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEssta14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEssta14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEssta14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEssta14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEssta14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEssta14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEssta8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEssta8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEssta8day/request", "", "public", "SST, Aqua MODIS, NPP, East US, Daytime and Nighttime (11 microns), 2002-2010 (8 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEssta8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEssta8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEssta8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEssta8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEssta8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEssta8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEssta1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEssta1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEssta1day/request", "", "public", "SST, Aqua MODIS, NPP, East US, Daytime and Nighttime (11 microns), 2002-2011 (1 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEssta1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEssta1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEssta1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEssta1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEssta1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEssta1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEssta3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEssta3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEssta3day/request", "", "public", "SST, Aqua MODIS, NPP, East US, Daytime and Nighttime (11 microns), 2002-2011 (3 Day Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEssta3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEssta3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEssta3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEssta3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEssta3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEssta3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEsstamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEsstamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEsstamday/request", "", "public", "SST, Aqua MODIS, NPP, East US, Daytime and Nighttime (11 microns), 2002-2011 (Monthly Composite)", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEsstamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEsstamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEsstamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEsstamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEsstamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEsstamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdBAsstamday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdBAsstamday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdBAsstamday_LonPM180/request", "", "public", "SST, Blended, Global, 2002-2013, EXPERIMENTAL (Monthly Composite), Lon+/-180", "NOAA OceanWatch provides a blended sea surface temperature (SST) products derived from both microwave and infrared sensors carried on multiple platforms. The microwave instruments can measure ocean temperatures even in the presence of clouds, though the resolution is a bit coarse when considering features typical of the coastal environment. These are complemented by the relatively fine measurements of infrared sensors. The blended data are provided at moderate spatial resolution (0.1 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft, NOAA's Advanced Very High Resolution Radiometer, NOAA GOES Imager, and NASA's Moderate Resolution Imaging Spectrometer (MODIS). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdBAsstamday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdBAsstamday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdBAsstamday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/BA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdBAsstamday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdBAsstamday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdBAsstamday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdBAssta5day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdBAssta5day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdBAssta5day_LonPM180/request", "", "public", "SST, Blended, Global, 2002-2014, EXPERIMENTAL (5 Day Composite), Lon+/-180", "NOAA OceanWatch provides a blended sea surface temperature (SST) products derived from both microwave and infrared sensors carried on multiple platforms. The microwave instruments can measure ocean temperatures even in the presence of clouds, though the resolution is a bit coarse when considering features typical of the coastal environment. These are complemented by the relatively fine measurements of infrared sensors. The blended data are provided at moderate spatial resolution (0.1 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft, NOAA's Advanced Very High Resolution Radiometer, NOAA GOES Imager, and NASA's Moderate Resolution Imaging Spectrometer (MODIS). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdBAssta5day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdBAssta5day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdBAssta5day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/BA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdBAssta5day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdBAssta5day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdBAssta5day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdBAssta8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdBAssta8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdBAssta8day_LonPM180/request", "", "public", "SST, Blended, Global, 2006-2014, EXPERIMENTAL (8 Day Composite), Lon+/-180", "NOAA OceanWatch provides a blended sea surface temperature (SST) products derived from both microwave and infrared sensors carried on multiple platforms. The microwave instruments can measure ocean temperatures even in the presence of clouds, though the resolution is a bit coarse when considering features typical of the coastal environment. These are complemented by the relatively fine measurements of infrared sensors. The blended data are provided at moderate spatial resolution (0.1 degrees) for the Global Ocean. Measurements are gathered by Japan's Advanced Microwave Scanning Radiometer (AMSR-E) instrument, a passive radiance sensor carried aboard NASA's Aqua spacecraft, NOAA's Advanced Very High Resolution Radiometer, NOAA GOES Imager, and NASA's Moderate Resolution Imaging Spectrometer (MODIS). THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdBAssta8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdBAssta8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdBAssta8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/BA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdBAssta8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdBAssta8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdBAssta8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOisst2AmsrAgg_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOisst2AmsrAgg_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOisst2AmsrAgg_LonPM180/request", "", "public", "SST, Daily Optimum Interpolation (OI), AMSR+AVHRR, Version 2, 2002-2011, Lon+/-180", "Reynolds, et al.(2007) Daily High-resolution Blended Analyses. Background information available at https://www.ncdc.noaa.gov/oisst. Climatology is based on 1971-2000 OI.v2 SST, Satellite data: AMSR Navy NOAA17 NOAA18 AVHRR, Ice data: NCEP ice.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Daily Sea Surface Temperature, degree_C)\nanom (Daily Sea Surface Temperature Anomalies, degree_C)\nerr (Estimated Error Standard Deviation of Analyzed_SST, degree_C)\nice (Sea Ice Concentration, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOisst2AmsrAgg_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOisst2AmsrAgg_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOisst2AmsrAgg_LonPM180/index.json", "https://www.ncdc.noaa.gov/oisst", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOisst2AmsrAgg_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOisst2AmsrAgg_LonPM180&showErrors=false&email=", "NOAA NCEI", "ncdcOisst2AmsrAgg_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOisst2Agg_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ncdcOisst2Agg_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ncdcOisst2Agg_LonPM180/request", "", "public", "SST, Daily Optimum Interpolation (OI), AVHRR Only, Version 2, Final+Preliminary, 1981-present, Lon+/-180", "Reynolds, et al.(2007) Daily High-resolution Blended Analyses. This version of the dataset contains the final version of the data and the near-real-time preliminary data (from the last ~2 weeks). Background information is available at https://www.ncdc.noaa.gov/oisst. Climatology is based on 1971-2000 OI.v2 SST, Satellite data: Navy NOAA17 NOAA18 AVHRR, Ice data: GSFC ice.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Daily Sea Surface Temperature, degree_C)\nanom (Daily Sea Surface Temperature Anomalies, degree_C)\nerr (Estimated Error Standard Deviation of Analyzed_SST, degree_C)\nice (Sea Ice Concentration, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ncdcOisst2Agg_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ncdcOisst2Agg_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ncdcOisst2Agg_LonPM180/index.json", "https://www.ncdc.noaa.gov/oisst", "http://upwell.pfeg.noaa.gov/erddap/rss/ncdcOisst2Agg_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncdcOisst2Agg_LonPM180&showErrors=false&email=", "NOAA NCEI", "ncdcOisst2Agg_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdG1ssta1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdG1ssta1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdG1ssta1day/request", "", "public", "SST, GHRSST Blended, MW-IR-OI, Science Quality, Global, 2006-2011 (1 Day Composite)", "THIS DATASET WILL NOT BE UPDATED AFTER 2011-05-23. This dataset was terminated with the demise of the AMSR-E sensor on Aqua. \nAnalyzed Foundation, Microwave + InfraRed Optimally Interpolated, Science Quality, Global, Sea Surface Temperature data. The through-cloud capabilities of microwave radiometers provide a valuable picture of global sea surface temperature (SST). To utilize this, scientists at Remote Sensing Systems have calculated a daily, Optimally Interpolated (OI) SST product at quarter degree (~25 kilometer) resolution. This product is ideal for research activities in which a complete, daily SST map is more desirable than one with missing data due to orbital gaps or environmental conditions precluding SST retrieval. Improved global daily NRT SSTs should be useful for a wide range of scientific and operational activities. The addition of SST derived from Infrared (IR) measurements allows higher spatial resolution, and SST near land. However, IR input is less accurate than MW due to cloud contamination. Blending MW and IR enables greater coverage and higher accuracy than IR only SSTs, but current OI does not completely eliminate cloud contamination inherent to IR SSTs.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalyzed_sst (Analyzed Sea Surface Temperature, degree_C)\nanalysis_error (Estimated Error Standard Deviation of analyzed_sst, degree_C)\nmask (Sea/Land/Lake/Ice Field Composite Mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdG1ssta1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdG1ssta1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdG1ssta1day/index.json", "http://www.remss.com/measurements/sea-surface-temperature/oisst-description/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdG1ssta1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdG1ssta1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdG1ssta1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGRssta1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGRssta1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGRssta1day/request", "", "public", "SST, GHRSST Blended, MW-IR-OI-RT, Near Real Time, Global, 2006-2012 (1 Day Composite)", "Analyzed Foundation, Microwave + InfraRed Optimally Interpolated, Near Real Time, Global, Sea Surface Temperature data. The through-cloud capabilities of microwave radiometers provide a valuable picture of global sea surface temperature (SST). To utilize this, scientists at Remote Sensing Systems have calculated a daily, Optimally Interpolated (OI) SST product at quarter degree (~25 kilometer) resolution. This product is ideal for research activities in which a complete, daily SST map is more desirable than one with missing data due to orbital gaps or environmental conditions precluding SST retrieval. Improved global daily NRT SSTs should be useful for a wide range of scientific and operational activities. The addition of SST derived from Infrared (IR) measurements allows higher spatial resolution, and SST near land. However, IR input is less accurate than MW due to cloud contamination. Blending MW and IR enables greater coverage and higher accuracy than IR only SSTs, but current OI does not completely eliminate cloud contamination inherent to IR SSTs. This is a near real time data set and is intended for use in operations applications. A higher-quality \"Science Quality\" data set is generally available about 10 days after the production of the real time version. It is recommended that the \"Science Quality\" data be used for scientific applications.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalyzed_sst (Analyzed Sea Surface Temperature, degree_C)\nanalysis_error (Estimated Error Standard Deviation of analyzed_sst, degree_C)\nmask (Sea/Land/Lake/Ice Field Composite Mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGRssta1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGRssta1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGRssta1day/index.json", "http://www.remss.com/measurements/sea-surface-temperature/oisst-description/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGRssta1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGRssta1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGRssta1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAssta1day_LonPM180/request", "", "public", "SST, GOES Imager, Day and Night, Western Hemisphere, 2000-present (1 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from the NOAA Geostationary Operational Environmental Satellites (GOES). Measurements are gathered by the GOES Imager, a multi-channel radiometer carried aboard the satellite. SST is available for hourly Imager measurements, or in composite images of various durations.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAssta1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAssta1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAssta1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAssta1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAssta1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAssta1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAssta3day_LonPM180/request", "", "public", "SST, GOES Imager, Day and Night, Western Hemisphere, 2000-present (3 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from the NOAA Geostationary Operational Environmental Satellites (GOES). Measurements are gathered by the GOES Imager, a multi-channel radiometer carried aboard the satellite. SST is available for hourly Imager measurements, or in composite images of various durations.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAssta3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAssta3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAssta3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAssta3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAssta3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAssta3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAssta14day_LonPM180/request", "", "public", "SST, GOES Imager, Day and Night, Western Hemisphere, 2001-present (14 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from the NOAA Geostationary Operational Environmental Satellites (GOES). Measurements are gathered by the GOES Imager, a multi-channel radiometer carried aboard the satellite. SST is available for hourly Imager measurements, or in composite images of various durations.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAssta14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAssta14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAssta14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAssta14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAssta14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAssta14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAssta8day_LonPM180/request", "", "public", "SST, GOES Imager, Day and Night, Western Hemisphere, 2001-present (8 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from the NOAA Geostationary Operational Environmental Satellites (GOES). Measurements are gathered by the GOES Imager, a multi-channel radiometer carried aboard the satellite. SST is available for hourly Imager measurements, or in composite images of various durations.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAssta8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAssta8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAssta8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAssta8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAssta8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAssta8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAsstamday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAsstamday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAsstamday_LonPM180/request", "", "public", "SST, GOES Imager, Day and Night, Western Hemisphere, 2001-present (Monthly Composite), Lon+/-180", "NOAA CoastWatch provides SST data from the NOAA Geostationary Operational Environmental Satellites (GOES). Measurements are gathered by the GOES Imager, a multi-channel radiometer carried aboard the satellite. SST is available for hourly Imager measurements, or in composite images of various durations.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAsstamday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAsstamday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAsstamday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAsstamday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAsstamday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAsstamday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta5day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAssta5day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAssta5day_LonPM180/request", "", "public", "SST, GOES Imager, Day and Night, Western Hemisphere, 2006-present (5 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from the NOAA Geostationary Operational Environmental Satellites (GOES). Measurements are gathered by the GOES Imager, a multi-channel radiometer carried aboard the satellite. SST is available for hourly Imager measurements, or in composite images of various durations.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAssta5day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAssta5day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAssta5day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAssta5day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAssta5day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAssta5day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAsstahday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAsstahday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAsstahday_LonPM180/request", "", "public", "SST, GOES Imager, Day and Night, Western Hemisphere, 2006-present (Hourly), Lon+/-180", "NOAA CoastWatch provides SST data from the NOAA Geostationary Operational Environmental Satellites (GOES). Measurements are gathered by the GOES Imager, a multi-channel radiometer carried aboard the satellite. SST is available for hourly Imager measurements, or in composite images of various durations.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAsstahday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAsstahday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAsstahday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAsstahday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAsstahday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAsstahday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATssta1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATssta1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATssta1day_LonPM180/request", "", "public", "SST, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Day and Night, 2004-present (1 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATssta1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATssta1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATssta1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATssta1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATssta1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATssta1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATssta3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATssta3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATssta3day_LonPM180/request", "", "public", "SST, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Day and Night, 2004-present (3 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATssta3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATssta3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATssta3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATssta3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATssta3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATssta3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATssta8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATssta8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATssta8day_LonPM180/request", "", "public", "SST, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Day and Night, 2004-present (8 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATssta8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATssta8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATssta8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATssta8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATssta8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATssta8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATssta14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATssta14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATssta14day_LonPM180/request", "", "public", "SST, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Day and Night, 2005-present (14 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATssta14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATssta14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATssta14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATssta14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATssta14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATssta14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATsstamday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATsstamday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATsstamday_LonPM180/request", "", "public", "SST, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Day and Night, 2007-present (Monthly Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATsstamday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATsstamday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATsstamday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATsstamday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATsstamday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATsstamday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATsstdhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATsstdhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATsstdhday_LonPM180/request", "", "public", "SST, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Daytime, 2004-present (Single Scan), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATsstdhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATsstdhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATsstdhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATsstdhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATsstdhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATsstdhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATsstnhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATsstnhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATsstnhday_LonPM180/request", "", "public", "SST, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Nighttime, 2004-present (Single Scan), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATsstnhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATsstnhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATsstnhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_sstn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATsstnhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATsstnhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATsstnhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAOsstdhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAOsstdhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAOsstdhday_LonPM180/request", "", "public", "SST, NOAA/OSU POES AVHRR, LAC, West US, Daytime, 1992-2012 (Hourly), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.01 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAOsstdhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAOsstdhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAOsstdhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AO_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAOsstdhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAOsstdhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAOsstdhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAOsstnhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAOsstnhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAOsstnhday_LonPM180/request", "", "public", "SST, NOAA/OSU POES AVHRR, LAC, West US, Nighttime, 1992-2012 (Hourly), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAOsstnhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAOsstnhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAOsstnhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AO_sstn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAOsstnhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAOsstnhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAOsstnhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2ssta8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2ssta8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPH2ssta8day/request", "", "public", "SST, Pathfinder Ver 5.2 (L3C), Day and Night, Global, 0.0417\u00b0, 1981-2006, Science Quality (8 Day Composite)", "This dataset contains sea surface temperature (SST) data produced as part of the Advanced Very High Resolution Radiometer (AVHRR) Pathfinder SST Project, created using Version 5.2 of the Pathfinder algorithm and the dataset. Multi-day composites and composites of day and night datasets were generated by the Environmental Research Division (NOAA/NMFS/SWFSC/ERD).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (Sea Surface Skin Temperature, degree_C)\nsea_ice_fraction (1)\nwind_speed (10m Wind Speed, m s-1)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPH2ssta8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPH2ssta8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPH2ssta8day/index.json", "https://pathfinder.nodc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPH2ssta8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPH2ssta8day&showErrors=false&email=", "NOAA NCEI", "erdPH2ssta8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2ssta1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2ssta1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPH2ssta1day/request", "", "public", "SST, Pathfinder Ver 5.2 (L3C), Day and Night, Global, 0.0417\u00b0, 1981-2012, Science Quality (1 Day Composite)", "This dataset contains sea surface temperature (SST) data produced as part of the Advanced Very High Resolution Radiometer (AVHRR) Pathfinder SST Project, created using Version 5.2 of the Pathfinder algorithm and the dataset. Multi-day composites and composites of day and night datasets were generated by the Environmental Research Division (NOAA/NMFS/SWFSC/ERD).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (Sea Surface Skin Temperature, degree_C)\nsea_ice_fraction (1)\nwind_speed (10m Wind Speed, m s-1)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPH2ssta1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPH2ssta1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPH2ssta1day/index.json", "https://pathfinder.nodc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPH2ssta1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPH2ssta1day&showErrors=false&email=", "NOAA NCEI", "erdPH2ssta1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2sstamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2sstamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPH2sstamday/request", "", "public", "SST, Pathfinder Ver 5.2 (L3C), Day and Night, Global, 0.0417\u00b0, 1981-2012, Science Quality (Monthly Composite)", "This dataset contains sea surface temperature (SST) data produced as part of the Advanced Very High Resolution Radiometer (AVHRR) Pathfinder SST Project, created using Version 5.2 of the Pathfinder algorithm and the dataset. Multi-day composites and composites of day and night datasets were generated by the Environmental Research Division (NOAA/NMFS/SWFSC/ERD).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (Sea Surface Skin Temperature, degree_C)\nsea_ice_fraction (1)\nwind_speed (10m Wind Speed, m s-1)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPH2sstamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPH2sstamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPH2sstamday/index.json", "https://pathfinder.nodc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPH2sstamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPH2sstamday&showErrors=false&email=", "NOAA NCEI", "erdPH2sstamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcPH2sstd1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcPH2sstd1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcPH2sstd1day/request", "", "public", "SST, Pathfinder Ver 5.2 (L3C), Day, Global, 0.0417\u00b0, 1981-2012, Science Quality (1 Day Composite)", "Daytime measurements from the Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n \n2014-02-11 Files downloaded from https://data.nodc.noaa.gov/pathfinder/Version5.2 to NOAA NMFS SWFSC ERD by bob.simons@noaa.gov . Aggregated with reference times from the dates in the file names. Removed other, misleading time values from the file names and the data files. Removed empty sses_bias and sses_standard_deviation variables. Removed aerosol_dynamic_indicator because of incorrect add_offset and scale_factor in files from 1981 through 2000.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of Sea Surface Skin Temperature, degree_C)\ndt_analysis (Deviation from Last SST Analysis (NCDC Daily OI), degree_C)\nwind_speed (10m Wind Speed, m s-1)\nsea_ice_fraction (1)\nquality_level (SST Measurement Quality)\npathfinder_quality_level (Pathfinder SST Quality Flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPH2sstd1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPH2sstd1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPH2sstd1day/index.json", "https://www.nodc.noaa.gov/SatelliteData/pathfinder4km/", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPH2sstd1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPH2sstd1day&showErrors=false&email=", "NOAA NCEI", "nodcPH2sstd1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2sstd8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2sstd8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPH2sstd8day/request", "", "public", "SST, Pathfinder Ver 5.2 (L3C), Day, Global, 0.0417\u00b0, 1981-2012, Science Quality (8 Day Composite)", "This dataset contains sea surface temperature (SST) data produced as part of the Advanced Very High Resolution Radiometer (AVHRR) Pathfinder SST Project, created using Version 5.2 of the Pathfinder algorithm and the dataset. Multi-day composites and composites of day and night datasets were generated by the Environmental Research Division (NOAA/NMFS/SWFSC/ERD).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (Sea Surface Skin Temperature, degree_C)\nsea_ice_fraction (1)\nwind_speed (10m Wind Speed, m s-1)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPH2sstd8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPH2sstd8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPH2sstd8day/index.json", "https://pathfinder.nodc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPH2sstd8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPH2sstd8day&showErrors=false&email=", "NOAA NCEI", "erdPH2sstd8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2sstdmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2sstdmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPH2sstdmday/request", "", "public", "SST, Pathfinder Ver 5.2 (L3C), Day, Global, 0.0417\u00b0, 1981-2012, Science Quality (Monthly Composite)", "This dataset contains sea surface temperature (SST) data produced as part of the Advanced Very High Resolution Radiometer (AVHRR) Pathfinder SST Project, created using Version 5.2 of the Pathfinder algorithm and the dataset. Multi-day composites and composites of day and night datasets were generated by the Environmental Research Division (NOAA/NMFS/SWFSC/ERD).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (Sea Surface Skin Temperature, degree_C)\nsea_ice_fraction (1)\nwind_speed (10m Wind Speed, m s-1)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPH2sstdmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPH2sstdmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPH2sstdmday/index.json", "https://pathfinder.nodc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPH2sstdmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPH2sstdmday&showErrors=false&email=", "NOAA NCEI", "erdPH2sstdmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcPH2sstn1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcPH2sstn1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcPH2sstn1day/request", "", "public", "SST, Pathfinder Ver 5.2 (L3C), Night, Global, 0.0417\u00b0, 1981-2012, Science Quality (1 Day Composite)", "Nighttime measurements from the Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n \n2014-02-11 Files downloaded from https://data.nodc.noaa.gov/pathfinder/Version5.2 to NOAA NMFS SWFSC ERD by bob.simons@noaa.gov . Aggregated with reference times from the dates in the file names. Removed other, misleading time values from the file names and the data files. Removed empty sses_bias and sses_standard_deviation variables. Fixed the incorrect add_offset and scale_factor for aerosol_dynamic_indicator in file from 1981 through 2000.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of Sea Surface Skin Temperature, degree_C)\ndt_analysis (Deviation from Last SST Analysis (NCDC Daily OI), degree_C)\nwind_speed (10m Wind Speed, m s-1)\nsea_ice_fraction (1)\nquality_level (SST Measurement Quality)\npathfinder_quality_level (Pathfinder SST Quality Flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPH2sstn1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPH2sstn1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPH2sstn1day/index.json", "https://www.nodc.noaa.gov/SatelliteData/pathfinder4km/", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPH2sstn1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPH2sstn1day&showErrors=false&email=", "NOAA NCEI", "nodcPH2sstn1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2sstn8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2sstn8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPH2sstn8day/request", "", "public", "SST, Pathfinder Ver 5.2 (L3C), Night, Global, 0.0417\u00b0, 1981-2012, Science Quality (8 Day Composite)", "This dataset contains sea surface temperature (SST) data produced as part of the Advanced Very High Resolution Radiometer (AVHRR) Pathfinder SST Project, created using Version 5.2 of the Pathfinder algorithm and the dataset. Multi-day composites and composites of day and night datasets were generated by the Environmental Research Division (NOAA/NMFS/SWFSC/ERD).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (Sea Surface Skin Temperature, degree_C)\nsea_ice_fraction (1)\nwind_speed (10m Wind Speed, m s-1)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPH2sstn8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPH2sstn8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPH2sstn8day/index.json", "https://pathfinder.nodc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPH2sstn8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPH2sstn8day&showErrors=false&email=", "NOAA NCEI", "erdPH2sstn8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2sstnmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdPH2sstnmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdPH2sstnmday/request", "", "public", "SST, Pathfinder Ver 5.2 (L3C), Night, Global, 0.0417\u00b0, 1981-2012, Science Quality (Monthly Composite)", "This dataset contains sea surface temperature (SST) data produced as part of the Advanced Very High Resolution Radiometer (AVHRR) Pathfinder SST Project, created using Version 5.2 of the Pathfinder algorithm and the dataset. Multi-day composites and composites of day and night datasets were generated by the Environmental Research Division (NOAA/NMFS/SWFSC/ERD).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (Sea Surface Skin Temperature, degree_C)\nsea_ice_fraction (1)\nwind_speed (10m Wind Speed, m s-1)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPH2sstnmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPH2sstnmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPH2sstnmday/index.json", "https://pathfinder.nodc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPH2sstnmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPH2sstnmday&showErrors=false&email=", "NOAA NCEI", "erdPH2sstnmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGsstamday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGsstamday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGsstamday_LonPM180/request", "", "public", "SST, POES AVHRR, GAC, Global, Day and Night, 2003-2016 (Monthly Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGsstamday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGsstamday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGsstamday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGsstamday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGsstamday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGsstamday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGssta1day_LonPM180/request", "", "public", "SST, POES AVHRR, GAC, Global, Day and Night, 2006-2016 (1 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGssta1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGssta1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGssta1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGssta1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGssta1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGssta1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGssta14day_LonPM180/request", "", "public", "SST, POES AVHRR, GAC, Global, Day and Night, 2006-2016 (14 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGssta14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGssta14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGssta14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGssta14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGssta14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGssta14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGssta3day_LonPM180/request", "", "public", "SST, POES AVHRR, GAC, Global, Day and Night, 2006-2016 (3 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGssta3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGssta3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGssta3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGssta3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGssta3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGssta3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta5day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta5day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGssta5day_LonPM180/request", "", "public", "SST, POES AVHRR, GAC, Global, Day and Night, 2006-2016 (5 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGssta5day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGssta5day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGssta5day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGssta5day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGssta5day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGssta5day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAGssta8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAGssta8day_LonPM180/request", "", "public", "SST, POES AVHRR, GAC, Global, Day and Night, 2006-2016 (8 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAGssta8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAGssta8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAGssta8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AG_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAGssta8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAGssta8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAGssta8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKsstahday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKsstahday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKsstahday_LonPM180/request", "", "public", "SST, POES AVHRR, LAC, Alaska, Day and Night, 2005-2008 (Hourly), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKsstahday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKsstahday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKsstahday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKsstahday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKsstahday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKsstahday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKsstamday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKsstamday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKsstamday_LonPM180/request", "", "public", "SST, POES AVHRR, LAC, Alaska, Day and Night, 2006-2007 (Monthly Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKsstamday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKsstamday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKsstamday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKsstamday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKsstamday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKsstamday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKssta1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKssta1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKssta1day_LonPM180/request", "", "public", "SST, POES AVHRR, LAC, Alaska, Day and Night, 2006-2008 (1 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKssta1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKssta1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKssta1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKssta1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKssta1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKssta1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKssta14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKssta14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKssta14day_LonPM180/request", "", "public", "SST, POES AVHRR, LAC, Alaska, Day and Night, 2006-2008 (14 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKssta14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKssta14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKssta14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKssta14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKssta14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKssta14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKssta3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKssta3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKssta3day_LonPM180/request", "", "public", "SST, POES AVHRR, LAC, Alaska, Day and Night, 2006-2008 (3 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKssta3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKssta3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKssta3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKssta3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKssta3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKssta3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKssta8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKssta8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKssta8day_LonPM180/request", "", "public", "SST, POES AVHRR, LAC, Alaska, Day and Night, 2006-2008 (8 Day Composite), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKssta8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKssta8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKssta8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_ssta_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKssta8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKssta8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKssta8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKsstdhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKsstdhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKsstdhday_LonPM180/request", "", "public", "SST, POES AVHRR, LAC, Alaska, Daytime, 2005-2008 (Hourly), Lon+/-180", "NOAA CoastWatch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKsstdhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKsstdhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKsstdhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKsstdhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKsstdhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKsstdhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsstd8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsstd8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTsstd8day_LonPM180/request", "", "public", "SST, Terra MODIS, NPP, Global, Daytime (11 microns), 2000-2013, Science Quality (8 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTsstd8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTsstd8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTsstd8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTsstd8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTsstd8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTsstd8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsstdmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsstdmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTsstdmday_LonPM180/request", "", "public", "SST, Terra MODIS, NPP, Global, Daytime (11 microns), 2000-2013, Science Quality (Monthly Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTsstdmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTsstdmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTsstdmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_sstd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTsstdmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTsstdmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTsstdmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsstn8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsstn8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTsstn8day_LonPM180/request", "", "public", "SST, Terra MODIS, NPP, Global, Nighttime (11 microns), 2000-2013, Science Quality (8 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTsstn8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTsstn8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTsstn8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_sstn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTsstn8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTsstn8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTsstn8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsstnmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsstnmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTsstnmday_LonPM180/request", "", "public", "SST, Terra MODIS, NPP, Global, Nighttime (11 microns), 2000-2013, Science Quality (Monthly Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTsstnmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTsstnmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTsstnmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_sstn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTsstnmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTsstnmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTsstnmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsst41day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsst41day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTsst41day_LonPM180/request", "", "public", "SST, Terra MODIS, NPP, Global, Nighttime (4 microns), 2000-2011, Science Quality (1 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTsst41day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTsst41day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTsst41day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_sst4_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTsst41day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTsst41day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTsst41day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsst48day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsst48day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTsst48day_LonPM180/request", "", "public", "SST, Terra MODIS, NPP, Global, Nighttime (4 microns), 2000-2013, Science Quality (8 Day Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTsst48day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTsst48day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTsst48day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_sst4_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTsst48day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTsst48day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTsst48day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsst4mday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMTsst4mday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMTsst4mday_LonPM180/request", "", "public", "SST, Terra MODIS, NPP, Global, Nighttime (4 microns), 2000-2013, Science Quality (Monthly Composite), Lon+/-180", "NOAA CoastWatch provides SST data from NASA's Terra Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Currently, only daytime imagery is supported. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMTsst4mday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMTsst4mday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMTsst4mday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MT_sst4_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMTsst4mday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMTsst4mday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMTsst4mday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastdhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastdhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATastdhday_LonPM180/request", "", "public", "Temperature, All Surface, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Daytime, 2006-present (Single Scan), Lon+/-180", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATastdhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATastdhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATastdhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_astd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATastdhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATastdhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATastdhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastnhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATastnhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATastnhday_LonPM180/request", "", "public", "Temperature, All Surface, NOAA POES AVHRR, LAC, 0.0125 degrees, West US, Nighttime, 2006-present (Single Scan), Lon+/-180", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATastnhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATastnhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATastnhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_astn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATastnhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATastnhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATastnhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKastdhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAKastdhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAKastdhday_LonPM180/request", "", "public", "Temperature, All Surface, POES AVHRR, LAC, Alaska, Daytime, 2005-2008 (Hourly), Lon+/-180", "NOAA CoastWatch provides surface temperature products derived from NOAA's Polar Operational Environmental Satellites (POES). This data is provided at high resolution (0.0125 degrees) for the North Pacific Ocean. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites. This product is provided before cloudmasking, and will contain sea surface temperature, land surface temperature, and cloud temperature data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAKastdhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAKastdhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAKastdhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AK_astd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAKastdhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAKastdhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAKastdhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_2a85_03ac_f194", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_2a85_03ac_f194.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_2a85_03ac_f194/request", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST MID IR 8DAY 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) MID InfraRed (IR) 8DAY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst4 (4um Sea Surface Temperature, degree_C)\nqual_sst4 (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_2a85_03ac_f194_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_2a85_03ac_f194_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_2a85_03ac_f194/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_2a85_03ac_f194.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_2a85_03ac_f194&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_2a85_03ac_f194"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_2e88_26ef_5c9b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_2e88_26ef_5c9b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_2e88_26ef_5c9b/request", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST MID IR ANNUAL 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-2016", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) MID InfraRed (IR) ANNUAL 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst4 (4um Sea Surface Temperature, degree_C)\nqual_sst4 (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_2e88_26ef_5c9b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_2e88_26ef_5c9b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_2e88_26ef_5c9b/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_2e88_26ef_5c9b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_2e88_26ef_5c9b&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_2e88_26ef_5c9b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_53f9_5343_1931", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_53f9_5343_1931.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_53f9_5343_1931/request", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST MID IR DAILY 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) MID InfraRed (IR) DAILY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst4 (4um Sea Surface Temperature, degree_C)\nqual_sst4 (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_53f9_5343_1931_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_53f9_5343_1931_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_53f9_5343_1931/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_53f9_5343_1931.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_53f9_5343_1931&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_53f9_5343_1931"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_051d_ad32_c916", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_051d_ad32_c916.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_051d_ad32_c916/request", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST MID IR MONTHLY 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) MID InfraRed (IR) MONTHLY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst4 (4um Sea Surface Temperature, degree_C)\nqual_sst4 (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_051d_ad32_c916_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_051d_ad32_c916_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_051d_ad32_c916/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_051d_ad32_c916.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_051d_ad32_c916&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_051d_ad32_c916"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_b4ab_c73f_33e8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_b4ab_c73f_33e8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_b4ab_c73f_33e8/request", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST THERMAL 8DAY 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "Moderate Resolution Imaging Spectroradiometer on Aqua (MODISA) Level-3 Standard Mapped Image (Top Dataset, 4km, MODIS AQUA L3 Sea Surface Temperature (SST) THERMAL 8DAY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_b4ab_c73f_33e8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_b4ab_c73f_33e8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_b4ab_c73f_33e8/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_b4ab_c73f_33e8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_b4ab_c73f_33e8&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_b4ab_c73f_33e8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e08f_448c_4e5d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e08f_448c_4e5d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_e08f_448c_4e5d/request", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST THERMAL 8DAY 4KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL 8DAY 4KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_e08f_448c_4e5d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_e08f_448c_4e5d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_e08f_448c_4e5d/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_e08f_448c_4e5d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_e08f_448c_4e5d&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_e08f_448c_4e5d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_d8aa_7ebc_8922", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_d8aa_7ebc_8922.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_d8aa_7ebc_8922/request", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST THERMAL ANNUAL 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-2017", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL ANNUAL 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_d8aa_7ebc_8922_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_d8aa_7ebc_8922_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_d8aa_7ebc_8922/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_d8aa_7ebc_8922.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_d8aa_7ebc_8922&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_d8aa_7ebc_8922"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_310d_e5b4_3156", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_310d_e5b4_3156.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_310d_e5b4_3156/request", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST THERMAL ANNUAL 4KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-2016", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL ANNUAL 4KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_310d_e5b4_3156_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_310d_e5b4_3156_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_310d_e5b4_3156/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_310d_e5b4_3156.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_310d_e5b4_3156&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_310d_e5b4_3156"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_f2cd_5deb_e97b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_f2cd_5deb_e97b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_f2cd_5deb_e97b/request", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST THERMAL DAILY 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL DAILY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_f2cd_5deb_e97b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_f2cd_5deb_e97b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_f2cd_5deb_e97b/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_f2cd_5deb_e97b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_f2cd_5deb_e97b&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_f2cd_5deb_e97b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_4c48_b3e2_178e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_4c48_b3e2_178e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_4c48_b3e2_178e/request", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST THERMAL DAILY 4KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL DAILY 4KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_4c48_b3e2_178e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_4c48_b3e2_178e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_4c48_b3e2_178e/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_4c48_b3e2_178e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_4c48_b3e2_178e&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_4c48_b3e2_178e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_dc28_e756_4821", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_dc28_e756_4821.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_dc28_e756_4821/request", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST THERMAL MONTHLY 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL MONTHLY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_dc28_e756_4821_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_dc28_e756_4821_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_dc28_e756_4821/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_dc28_e756_4821.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_dc28_e756_4821&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_dc28_e756_4821"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_4e8f_e3da_ffb3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_4e8f_e3da_ffb3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_4e8f_e3da_ffb3/request", "", "public", "Top Dataset, 4km, MODIS AQUA L3 SST THERMAL MONTHLY 4KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL MONTHLY 4KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_4e8f_e3da_ffb3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_4e8f_e3da_ffb3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_4e8f_e3da_ffb3/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_4e8f_e3da_ffb3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_4e8f_e3da_ffb3&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_4e8f_e3da_ffb3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_0df0_6947_4308", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_0df0_6947_4308.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_0df0_6947_4308/request", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST MID IR 8DAY 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "Moderate Resolution Imaging Spectroradiometer (MODIS) Level-3 Standard Mapped Image (Top Dataset, 4km, MODIS TERRA L3 Sea Surface Temperature (SST) MID InfraRed (IR) 8DAY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst4 (4um Sea Surface Temperature, degree_C)\nqual_sst4 (Flag Values, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_0df0_6947_4308_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_0df0_6947_4308_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_0df0_6947_4308/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_0df0_6947_4308.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_0df0_6947_4308&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_0df0_6947_4308"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_4c0b_aa13_4964", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_4c0b_aa13_4964.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_4c0b_aa13_4964/request", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST MID IR ANNUAL 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-2016", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) MID InfraRed (IR) ANNUAL 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst4 (4um Sea Surface Temperature, degree_C)\nqual_sst4 (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_4c0b_aa13_4964_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_4c0b_aa13_4964_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_4c0b_aa13_4964/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_4c0b_aa13_4964.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_4c0b_aa13_4964&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_4c0b_aa13_4964"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_c854_c14a_cdc3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_c854_c14a_cdc3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_c854_c14a_cdc3/request", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST MID IR DAILY 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "Moderate Resolution Imaging Spectroradiometer (MODIS) Level-3 Standard Mapped Image (Top Dataset, 4km, MODIS TERRA L3 Sea Surface Temperature (SST) MID InfraRed (IR) DAILY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst4 (4um Sea Surface Temperature, degree_C)\nqual_sst4 (Flag Values, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_c854_c14a_cdc3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_c854_c14a_cdc3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_c854_c14a_cdc3/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_c854_c14a_cdc3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_c854_c14a_cdc3&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_c854_c14a_cdc3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_c752_6b53_9712", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_c752_6b53_9712.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_c752_6b53_9712/request", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST MID IR MONTHLY 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "Moderate Resolution Imaging Spectroradiometer (MODIS) Level-3 Standard Mapped Image (Top Dataset, 4km, MODIS TERRA L3 Sea Surface Temperature (SST) MID InfraRed (IR) MONTHLY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst4 (4um Sea Surface Temperature, degree_C)\nqual_sst4 (Flag Values, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_c752_6b53_9712_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_c752_6b53_9712_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_c752_6b53_9712/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_c752_6b53_9712.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_c752_6b53_9712&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_c752_6b53_9712"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_94f4_9384_aae7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_94f4_9384_aae7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_94f4_9384_aae7/request", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST THERMAL 8DAY 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL 8DAY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_94f4_9384_aae7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_94f4_9384_aae7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_94f4_9384_aae7/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_94f4_9384_aae7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_94f4_9384_aae7&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_94f4_9384_aae7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_6f2f_2511_8a27", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_6f2f_2511_8a27.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_6f2f_2511_8a27/request", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST THERMAL 8DAY 4KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL 8DAY 4KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_6f2f_2511_8a27_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_6f2f_2511_8a27_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_6f2f_2511_8a27/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_6f2f_2511_8a27.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_6f2f_2511_8a27&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_6f2f_2511_8a27"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_59ff_6a43_fcc4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_59ff_6a43_fcc4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_59ff_6a43_fcc4/request", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST THERMAL ANNUAL 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-2017", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL ANNUAL 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_59ff_6a43_fcc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_59ff_6a43_fcc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_59ff_6a43_fcc4/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_59ff_6a43_fcc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_59ff_6a43_fcc4&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_59ff_6a43_fcc4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_5199_cd28_811c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_5199_cd28_811c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_5199_cd28_811c/request", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST THERMAL ANNUAL 4KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-2016", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL ANNUAL 4KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_5199_cd28_811c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_5199_cd28_811c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_5199_cd28_811c/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_5199_cd28_811c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_5199_cd28_811c&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_5199_cd28_811c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_bab1_4417_2cf7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_bab1_4417_2cf7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_bab1_4417_2cf7/request", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST THERMAL DAILY 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL DAILY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_bab1_4417_2cf7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_bab1_4417_2cf7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_bab1_4417_2cf7/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_bab1_4417_2cf7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_bab1_4417_2cf7&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_bab1_4417_2cf7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3e2a_2b9d_3c49", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_3e2a_2b9d_3c49.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_3e2a_2b9d_3c49/request", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST THERMAL DAILY 4KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL DAILY 4KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_3e2a_2b9d_3c49_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_3e2a_2b9d_3c49_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_3e2a_2b9d_3c49/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_3e2a_2b9d_3c49.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_3e2a_2b9d_3c49&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_3e2a_2b9d_3c49"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_110c_b697_c325", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_110c_b697_c325.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_110c_b697_c325/request", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST THERMAL MONTHLY 4KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL MONTHLY 4KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_110c_b697_c325_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_110c_b697_c325_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_110c_b697_c325/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_110c_b697_c325.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_110c_b697_c325&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_110c_b697_c325"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_a625_2d34_f247", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_a625_2d34_f247.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_a625_2d34_f247/request", "", "public", "Top Dataset, 4km, MODIS TERRA L3 SST THERMAL MONTHLY 4KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 4km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL MONTHLY 4KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_a625_2d34_f247_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_a625_2d34_f247_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_a625_2d34_f247/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_a625_2d34_f247.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_a625_2d34_f247&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_a625_2d34_f247"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_cdf9_b3a0_ca70", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_cdf9_b3a0_ca70.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_cdf9_b3a0_ca70/request", "", "public", "Top Dataset, 9km, MODIS AQUA L3 SST THERMAL 8DAY 9KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL 8DAY 9KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_cdf9_b3a0_ca70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_cdf9_b3a0_ca70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_cdf9_b3a0_ca70/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_cdf9_b3a0_ca70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_cdf9_b3a0_ca70&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_cdf9_b3a0_ca70"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_ec3f_5369_190c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_ec3f_5369_190c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_ec3f_5369_190c/request", "", "public", "Top Dataset, 9km, MODIS AQUA L3 SST THERMAL 8DAY 9KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL 8DAY 9KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_ec3f_5369_190c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_ec3f_5369_190c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_ec3f_5369_190c/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_ec3f_5369_190c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_ec3f_5369_190c&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_ec3f_5369_190c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_8fa2_3481_dc67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_8fa2_3481_dc67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_8fa2_3481_dc67/request", "", "public", "Top Dataset, 9km, MODIS AQUA L3 SST THERMAL ANNUAL 9KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-2017", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL ANNUAL 9KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_8fa2_3481_dc67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_8fa2_3481_dc67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_8fa2_3481_dc67/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_8fa2_3481_dc67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_8fa2_3481_dc67&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_8fa2_3481_dc67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_49d0_2147_eb38", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_49d0_2147_eb38.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_49d0_2147_eb38/request", "", "public", "Top Dataset, 9km, MODIS AQUA L3 SST THERMAL ANNUAL 9KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-2016", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL ANNUAL 9KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_49d0_2147_eb38_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_49d0_2147_eb38_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_49d0_2147_eb38/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_49d0_2147_eb38.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_49d0_2147_eb38&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_49d0_2147_eb38"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_4397_0b43_e947", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_4397_0b43_e947.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_4397_0b43_e947/request", "", "public", "Top Dataset, 9km, MODIS AQUA L3 SST THERMAL DAILY 9KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL DAILY 9KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_4397_0b43_e947_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_4397_0b43_e947_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_4397_0b43_e947/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_4397_0b43_e947.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_4397_0b43_e947&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_4397_0b43_e947"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_c4b3_dfac_8045", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_c4b3_dfac_8045.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_c4b3_dfac_8045/request", "", "public", "Top Dataset, 9km, MODIS AQUA L3 SST THERMAL DAILY 9KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL DAILY 9KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_c4b3_dfac_8045_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_c4b3_dfac_8045_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_c4b3_dfac_8045/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_c4b3_dfac_8045.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_c4b3_dfac_8045&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_c4b3_dfac_8045"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_711b_7269_78cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_711b_7269_78cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_711b_7269_78cd/request", "", "public", "Top Dataset, 9km, MODIS AQUA L3 SST THERMAL MONTHLY 9KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL MONTHLY 9KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_711b_7269_78cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_711b_7269_78cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_711b_7269_78cd/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_711b_7269_78cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_711b_7269_78cd&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_711b_7269_78cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_f129_385a_cf3e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_f129_385a_cf3e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_f129_385a_cf3e/request", "", "public", "Top Dataset, 9km, MODIS AQUA L3 SST THERMAL MONTHLY 9KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Sea Surface Temperature (SST) THERMAL MONTHLY 9KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_f129_385a_cf3e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_f129_385a_cf3e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_f129_385a_cf3e/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_f129_385a_cf3e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_f129_385a_cf3e&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_f129_385a_cf3e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_cc76_118e_bd9c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_cc76_118e_bd9c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_cc76_118e_bd9c/request", "", "public", "Top Dataset, 9km, MODIS TERRA L3 SST THERMAL 8DAY 9KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL 8DAY 9KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_cc76_118e_bd9c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_cc76_118e_bd9c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_cc76_118e_bd9c/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_cc76_118e_bd9c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_cc76_118e_bd9c&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_cc76_118e_bd9c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_9bf2_c66a_8d66", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_9bf2_c66a_8d66.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_9bf2_c66a_8d66/request", "", "public", "Top Dataset, 9km, MODIS TERRA L3 SST THERMAL 8DAY 9KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL 8DAY 9KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_9bf2_c66a_8d66_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_9bf2_c66a_8d66_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_9bf2_c66a_8d66/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_9bf2_c66a_8d66.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_9bf2_c66a_8d66&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_9bf2_c66a_8d66"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_02fd_33f7_611b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_02fd_33f7_611b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_02fd_33f7_611b/request", "", "public", "Top Dataset, 9km, MODIS TERRA L3 SST THERMAL ANNUAL 9KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-2017", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL ANNUAL 9KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_02fd_33f7_611b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_02fd_33f7_611b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_02fd_33f7_611b/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_02fd_33f7_611b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_02fd_33f7_611b&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_02fd_33f7_611b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e597_845d_2fdc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e597_845d_2fdc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_e597_845d_2fdc/request", "", "public", "Top Dataset, 9km, MODIS TERRA L3 SST THERMAL ANNUAL 9KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-2016", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL ANNUAL 9KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_e597_845d_2fdc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_e597_845d_2fdc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_e597_845d_2fdc/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_e597_845d_2fdc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_e597_845d_2fdc&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_e597_845d_2fdc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_89e4_66b6_6ca8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_89e4_66b6_6ca8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_89e4_66b6_6ca8/request", "", "public", "Top Dataset, 9km, MODIS TERRA L3 SST THERMAL DAILY 9KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL DAILY 9KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_89e4_66b6_6ca8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_89e4_66b6_6ca8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_89e4_66b6_6ca8/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_89e4_66b6_6ca8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_89e4_66b6_6ca8&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_89e4_66b6_6ca8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_ef38_7e91_5f2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_ef38_7e91_5f2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_ef38_7e91_5f2a/request", "", "public", "Top Dataset, 9km, MODIS TERRA L3 SST THERMAL DAILY 9KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL DAILY 9KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_ef38_7e91_5f2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_ef38_7e91_5f2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_ef38_7e91_5f2a/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_ef38_7e91_5f2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_ef38_7e91_5f2a&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_ef38_7e91_5f2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_7910_f56a_ff44", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_7910_f56a_ff44.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_7910_f56a_ff44/request", "", "public", "Top Dataset, 9km, MODIS TERRA L3 SST THERMAL MONTHLY 9KM DAYTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL MONTHLY 9KM DAYTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_7910_f56a_ff44_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_7910_f56a_ff44_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_7910_f56a_ff44/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_7910_f56a_ff44.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_7910_f56a_ff44&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_7910_f56a_ff44"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_da9d_d183_85af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_da9d_d183_85af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_da9d_d183_85af/request", "", "public", "Top Dataset, 9km, MODIS TERRA L3 SST THERMAL MONTHLY 9KM NIGHTTIME V2014.0 [time][lat][lon], 0.041666668\u00b0, 2000-present", "HMODIST Level-3 Standard Mapped Image (Top Dataset, 9km, Moderate Resolution Imaging Spectroradiometer (MODIS) TERRA L3 Sea Surface Temperature (SST) THERMAL MONTHLY 9KM NIGHTTIME V2014.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\nqual_sst (Quality Levels, Sea Surface Temperature, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_da9d_d183_85af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_da9d_d183_85af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_da9d_d183_85af/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_da9d_d183_85af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_da9d_d183_85af&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_da9d_d183_85af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_874e_5dff_3b53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_874e_5dff_3b53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_874e_5dff_3b53/request", "", "public", "Top Dataset, CarbonTracker, CT2007B.molefrac, 2000-2004", "Top Dataset, CarbonTracker, CT2007B.molefrac\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nco2 (Mole Fraction Of Carbon Dioxide In Air, micromol mol-1)\npressure (Air Pressure, pascal)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_874e_5dff_3b53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_874e_5dff_3b53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_874e_5dff_3b53/index.json", "https://www.esrl.noaa.gov/gmd/ccgg/carbontracker/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_874e_5dff_3b53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_874e_5dff_3b53&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_874e_5dff_3b53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1e6_f995_6841", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f1e6_f995_6841.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f1e6_f995_6841/request", "", "public", "Top Dataset, CarbonTracker, w12.molefrac, 2000-2004", "Top Dataset, CarbonTracker, w12.molefrac\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nco2 (Mole Fraction Of Carbon Dioxide In Air, micromol mol-1)\npressure (Air Pressure, pascal)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f1e6_f995_6841_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f1e6_f995_6841_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f1e6_f995_6841/index.json", "https://www.esrl.noaa.gov/gmd/ccgg/carbontracker/", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f1e6_f995_6841.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f1e6_f995_6841&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f1e6_f995_6841"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5c7_1493_8698", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5c7_1493_8698.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5c7_1493_8698/request", "", "public", "Top Dataset, dai pdsi, pdsi.mon.mean.selfcalibrated, 2.5\u00b0, 1850-2014", "Global Monthly Dai Palmer Drought Severity Index. Monthly Self-calibrated Palmer Drought Severity Index (scPDSI) \ncalculated using observed surface air temperature (HadCRUT4 from \nhttps://www.cru.uea.ac.uk/cru/data/temperature/ ) and \nprecipitation (from Dai et al. (1997, J.Clim: for 1870-1947) + \nChen et al. (2002, J. Hydromet.: for 1948-1978 + Global Precipitation Climatology Project (GPCP) v2.2 for \n1979-present. The Dai and Chen P data were adjusted to have the \nsame mean as the GPCP data over the 1979-1996 period). \nCalibration (or reference) period is 1950-1979. \nWind speed and air pressure data were from 20CR v2. Other data \nwere based on Climatic Research Unit (CRU) TS3.22. Documention: \t \nDai, A., 2011a: Characteristics and trends in various forms of the \nPalmer Drought Severity Index (PDSI) during 1900-2008. J. Geophys. \nRes., 116, D12115, doi:10.1029/2010JD015541.\t\t\t \nDai, A., K. E. Trenberth, and T. Qian, 2004: A global data set of \nPalmer Drought Severity Index for 1870-2002: Relationship with soil\nmoisture and effects of surface warming. J. Hydrometeorology, 5, \n1117-1130. Data source: Dr. A. Dai/National Center for Atmospheric Research (NCAR) (adai@ucar.edu). See \nhttps://www.cgd.ucar.edu/cas/catalog/climind/pdsi.html for updates. \nWARNING: PDSI and scPDSI over the higher latitudes (e.g., >50deg.) \nmay not be a good proxy of soil moisutre content. Also, PDSI and \nscPDSI are highly autocorrelated indices not good at resolving \nsub-seasonal variations. Please use with caution! \nThis is a normalized version so that every grid box has the same \ns.d. as that in the central U.S. during the calibr. period (1950-79)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npdsi (Monthly Self-calibrated Palmer Drought Severity Index using Penman-Monteith PE, Standardized Units of Relative Dry and Wet)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5c7_1493_8698_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5c7_1493_8698_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5c7_1493_8698/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.pdsi.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5c7_1493_8698.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5c7_1493_8698&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c5c7_1493_8698"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4bde_e998_6a62", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4bde_e998_6a62.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4bde_e998_6a62/request", "", "public", "Top Dataset, gistemp, landmask 2deg, 2.0\u00b0", "Top Dataset, gistemp, landmask 2deg\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nlfrac (Land fraction, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4bde_e998_6a62_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4bde_e998_6a62_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4bde_e998_6a62/index.json", "https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/gistemp/landmask_2deg.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4bde_e998_6a62.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4bde_e998_6a62&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4bde_e998_6a62"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d374_30ba_3613", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_d374_30ba_3613.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_d374_30ba_3613/request", "", "public", "Top Dataset, Global, ETOPO1 Bed g gmt4 (ETOPO1_Bed_g.int), 0.016666668\u00b0", "ETOPO1_Bed_g.int. ETOPO1 is a 1 arc-minute global relief model of Earth's surface that integrates land topography and ocean bathymetry. It was built from numerous global and regional data sets, and is available in \"Ice Surface\" (top of Antarctic and Greenland ice sheets) and \"Bedrock\" (base of the ice sheets) versions.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_d374_30ba_3613_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_d374_30ba_3613_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_d374_30ba_3613/index.json", "https://www.ngdc.noaa.gov/mgg/global/global.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_d374_30ba_3613.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_d374_30ba_3613&showErrors=false&email=", "NOAA NCEI", "noaa_ngdc_d374_30ba_3613"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8ee6_e652_1983", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ngdc_8ee6_e652_1983.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ngdc_8ee6_e652_1983/request", "", "public", "Top Dataset, Global, ETOPO1 Ice g gmt4 (ETOPO1_Ice_g.int), 0.016666668\u00b0", "ETOPO1_Ice_g.int. ETOPO1 is a 1 arc-minute global relief model of Earth's surface that integrates land topography and ocean bathymetry. It was built from numerous global and regional data sets, and is available in \"Ice Surface\" (top of Antarctic and Greenland ice sheets) and \"Bedrock\" (base of the ice sheets) versions.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\nz (meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ngdc_8ee6_e652_1983_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ngdc_8ee6_e652_1983_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ngdc_8ee6_e652_1983/index.json", "https://www.ngdc.noaa.gov/mgg/global/global.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ngdc_8ee6_e652_1983.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ngdc_8ee6_e652_1983&showErrors=false&email=", "NOAA NCEI", "noaa_ngdc_8ee6_e652_1983"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a774_0eb4_6f88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a774_0eb4_6f88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_a774_0eb4_6f88/request", "", "public", "Top Dataset, hydromet data, daily, 0.0625\u00b0, 1950-2013", "Top Dataset, hydromet data, daily\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPrec (Precipitation, mm)\nTmax (Daily maximum temperature, degree_C)\nTmin (Daily minimum temperature, degree_C)\nwind (mean daily wind speed, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_a774_0eb4_6f88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_a774_0eb4_6f88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_a774_0eb4_6f88/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/hydromet_data/daily.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_a774_0eb4_6f88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_a774_0eb4_6f88&showErrors=false&email=", "NOAA NODC", "noaa_nodc_a774_0eb4_6f88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7435_dbd3_8f9a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7435_dbd3_8f9a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7435_dbd3_8f9a/request", "", "public", "Top Dataset, hydromet data, livneh model [time][lat][lon], 0.0625\u00b0, 1950-2013", "Top Dataset, hydromet data, livneh model\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nBaseflow (mm)\nGroundHeat (Ground Heat Flux, W/m^2)\nLatentHeat (Latent Heat Flux, W/m^2)\nNetRad (Net Radiation, W/m^2)\nPETLong (PET for long reference crop (alfalfa), mm)\nPETNatVeg (PET for current vegetation, mm)\nPETShort (PET for short reference crop (grass), mm)\nRunoff (Surface Runoff, mm)\nSWE (Snow Water Equivalent, mm)\nSensibleHeat (Sensible Heat Flux, W/m^2)\nTotalET (Total Evapotranspiration, mm)\nWDEW (Canopy Moisture, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7435_dbd3_8f9a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7435_dbd3_8f9a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7435_dbd3_8f9a/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/hydromet_data/livneh_model.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7435_dbd3_8f9a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7435_dbd3_8f9a&showErrors=false&email=", "CIRES", "noaa_nodc_7435_dbd3_8f9a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8b0b_6258_891d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8b0b_6258_891d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_8b0b_6258_891d/request", "", "public", "Top Dataset, hydromet data, livneh model [time][lev][lat][lon], 0.0625\u00b0, 1950-2013", "Top Dataset, hydromet data, livneh model\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][lev][latitude][longitude]):\nSoilMoist (Soil Moisture, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_8b0b_6258_891d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_8b0b_6258_891d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_8b0b_6258_891d/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/hydromet_data/livneh_model.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_8b0b_6258_891d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_8b0b_6258_891d&showErrors=false&email=", "CIRES", "noaa_nodc_8b0b_6258_891d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_16be_ebb0_f17b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_16be_ebb0_f17b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_16be_ebb0_f17b/request", "", "public", "Top Dataset, hydromet data, monthly, 0.0625\u00b0, 1950-2013", "Top Dataset, hydromet data, monthly\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nPrec (Precipitation, mm)\nTmax (Daily maximum temperature, degree_C)\nTmin (Daily minimum temperature, degree_C)\nwind (mean daily wind speed, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_16be_ebb0_f17b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_16be_ebb0_f17b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_16be_ebb0_f17b/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/hydromet_data/monthly.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_16be_ebb0_f17b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_16be_ebb0_f17b&showErrors=false&email=", "NOAA NODC", "noaa_nodc_16be_ebb0_f17b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_fec9_91c4_5fa4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_fec9_91c4_5fa4.graph", "", "", "public", "Top Dataset, modis, MODIS AQUA L3 CHLA DAILY 4KM R, 0.041666668\u00b0, 2002-2015", "HMODISA Level-3 Standard Mapped Image (Top Dataset, modis, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Chlorophyll-a (CHLA) DAILY 4KM R)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nl3m_data (mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_fec9_91c4_5fa4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_fec9_91c4_5fa4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_fec9_91c4_5fa4/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_fec9_91c4_5fa4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_fec9_91c4_5fa4&showErrors=false&email=", "NASA JPL", "nasa_jpl_fec9_91c4_5fa4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_68b7_3904_acf3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_68b7_3904_acf3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_68b7_3904_acf3/request", "", "public", "Top Dataset, modis, MODIS Aqua L3 CHLA Daily 4km V2014.0 R [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, modis, Moderate Resolution Imaging Spectroradiometer (MODIS) Aqua L3 Chlorophyll-a (CHLA) Daily 4km V2014.0 R)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlor_a (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_68b7_3904_acf3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_68b7_3904_acf3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_68b7_3904_acf3/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_68b7_3904_acf3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_68b7_3904_acf3&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_68b7_3904_acf3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e4ab_0fb5_24fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_e4ab_0fb5_24fa.graph", "", "", "public", "Top Dataset, modis, MODIS AQUA L3 CHLA MONTHLY 4KM R, 0.041666668\u00b0, 2002-2015", "HMODISA Level-3 Standard Mapped Image (Top Dataset, modis, Moderate Resolution Imaging Spectroradiometer (MODIS) AQUA L3 Chlorophyll-a (CHLA) MONTHLY 4KM R)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nl3m_data (mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_e4ab_0fb5_24fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_e4ab_0fb5_24fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_e4ab_0fb5_24fa/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_e4ab_0fb5_24fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_e4ab_0fb5_24fa&showErrors=false&email=", "NASA JPL", "nasa_jpl_e4ab_0fb5_24fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_55b8_bdb3_83c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_55b8_bdb3_83c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_55b8_bdb3_83c0/request", "", "public", "Top Dataset, modis, MODIS Aqua L3 CHLA Monthly 4km V2014.0 R [time][lat][lon], 0.041666668\u00b0, 2002-present", "HMODISA Level-3 Standard Mapped Image (Top Dataset, modis, Moderate Resolution Imaging Spectroradiometer (MODIS) Aqua L3 Chlorophyll-a (CHLA) Monthly 4km V2014.0 R)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlor_a (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_55b8_bdb3_83c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_55b8_bdb3_83c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_55b8_bdb3_83c0/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_55b8_bdb3_83c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_55b8_bdb3_83c0&showErrors=false&email=", "NASA/GSFC OBPG", "nasa_jpl_55b8_bdb3_83c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_3392_87d7_dedc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_3392_87d7_dedc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_3392_87d7_dedc/request", "", "public", "Top Dataset, monthly, NOAAGlobalTemp monthly, 5.0\u00b0, 1880-present", "The NOAA Global Surface Temperature Dataset (NOAAGlobalTemp) (Top Dataset, monthly, NOAAGlobalTemp monthly)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nanom (Global Temperature Anomalies, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_3392_87d7_dedc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_3392_87d7_dedc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_3392_87d7_dedc/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/gcag/monthly/NOAAGlobalTemp_monthly.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_3392_87d7_dedc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_3392_87d7_dedc&showErrors=false&email=", "NOAAs National Centers for Environmental Information", "noaa_ncei_3392_87d7_dedc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_58e6_0040_f4f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_58e6_0040_f4f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_58e6_0040_f4f0/request", "", "public", "Top Dataset, node, avhrrSST res1deg, 1.0\u00b0, 1981-2009", "This data field contains Daytime Sea Surface Temperature (SST) data from Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5. The data have been averaged to a one-degree grid in space and monthly in time, after masking out any data with a quality flag of less than 4. All data has the V5.0 land mask applied. Data in this file at this quality level include, for daytime: monthly SST values, number of pixels, and standard deviation.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST4_daynitavg (This data field contains Day-Night Average Sea Surface Temperature (SST) data from AVHRR Pathfinder Version 5. The data have been averaged to a one-degree grid in space and monthly in time, after masking out any data with a quality flag of less than 4. All data has the V5.0 land mask applied. Data in this file at this quality level include, for day/night average: monthly SST values, number of pixels, and standard deviation., degree_C)\nSST7_daynitavg (This data field contains Day-Night Average Sea Surface Temperature (SST) data from AVHRR Pathfinder Version 5. The data have been averaged to a one-degree grid in space and monthly in time, after masking out any data with a quality flag of less than 7. All data has the V5.0 land mask applied. Data in this file at this quality level include, for day/night average: monthly SST values, number of pixels, and standard deviation., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_58e6_0040_f4f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_58e6_0040_f4f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_58e6_0040_f4f0/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/node/avhrrSST_res1deg.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_58e6_0040_f4f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_58e6_0040_f4f0&showErrors=false&email=", "USDOC/NOAA/NESDIS/NODC", "noaa_nodc_58e6_0040_f4f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5e47_99aa_f1e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5e47_99aa_f1e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_5e47_99aa_f1e6/request", "", "public", "Top Dataset, node, avhrrSST resFull, 0.043945312\u00b0, 1981-2009", "This data field contains Daytime Sea Surface Temperature (SST) data from Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5. The data are at 4 km-per-pixel resolution and have been averaged monthly after masking out any data with a quality flag of less than 4. Data in this file at this quality level include, for daytime: weekly SST values, number of pixels, and standard deviation. Data are stored as unsigned integers: to convert SST fields to degrees C, apply a scale factor of 0.075 and an offset of -3.0. To convert standard deviation and count fields to degrees C and number of pixels, respectively, apply a scale factor of 0.01.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nSST4_daynitavg (This data field contains Day-Night Average Sea Surface Temperature (SST) data from AVHRR Pathfinder Version 5. The data are at 4 km-per-pixel resolution and have been averaged monthly after masking out any data with a quality flag of less than 4. Data in this file at this quality level include, for day/night average: weekly SST values, number of pixels, and standard deviation. Data are stored as unsigned integers: to convert SST fields to degrees C, apply a scale factor of 0.075 and an offset of -3.0. To convert standard deviation and count fields to degrees C and number of pixels, respectively, apply a scale factor of 0.01., degree_C)\nSST7_daynitavg (This data field contains Day-Night Average Sea Surface Temperature (SST) data from AVHRR Pathfinder Version 5. The data are at 4 km-per-pixel resolution and have been averaged monthly after masking out any data with a quality flag of less than 7. Data in this file at this quality level include, for day/night average: weekly SST values, number of pixels, and standard deviation. Data are stored as unsigned integers: to convert SST fields to degrees C, apply a scale factor of 0.075 and an offset of -3.0. To convert standard deviation and count fields to degrees C and number of pixels, respectively, apply a scale factor of 0.01., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_5e47_99aa_f1e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_5e47_99aa_f1e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_5e47_99aa_f1e6/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/node/avhrrSST_resFull.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_5e47_99aa_f1e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_5e47_99aa_f1e6&showErrors=false&email=", "USDOC/NOAA/NESDIS/NODC", "noaa_nodc_5e47_99aa_f1e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_soest_e972_0ca3_0bdc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_soest_e972_0ca3_0bdc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hawaii_soest_e972_0ca3_0bdc/request", "", "public", "Top Dataset, oisss, oisss global monthly, 0.5\u00b0, 2011-2015", "Aquarius Optimum Interpolation (OI) SSS monthly mean. International Pacific Research Center (IPRC) data from http://apdrc.soest.hawaii.edu/thredds/dodsC/ncml_aggregation/oisss/oisss_global_monthly.ncml.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss (sea surface salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e972_0ca3_0bdc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e972_0ca3_0bdc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e972_0ca3_0bdc/index.json", "http://apdrc.soest.hawaii.edu/thredds/dodsC/ncml_aggregation/oisss/oisss_global_monthly.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e972_0ca3_0bdc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e972_0ca3_0bdc&showErrors=false&email=", "IPRC", "hawaii_soest_e972_0ca3_0bdc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_soest_6102_cbd4_850f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hawaii_soest_6102_cbd4_850f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/hawaii_soest_6102_cbd4_850f/request", "", "public", "Top Dataset, oisss, oisss global weekly, 0.5\u00b0, 2011-2015", "Aquarius SSS objectively interpolated onto a regular 0.5x0.5 grid\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss (sea surface salinity, pss)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_6102_cbd4_850f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_6102_cbd4_850f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_6102_cbd4_850f/index.json", "http://apdrc.soest.hawaii.edu/thredds/dodsC/ncml_aggregation/oisss/oisss_global_weekly.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_6102_cbd4_850f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_6102_cbd4_850f&showErrors=false&email=", "IPRC", "hawaii_soest_6102_cbd4_850f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_c054_e93b_ca08", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_c054_e93b_ca08.graph", "", "", "public", "Top Dataset, seawifs, SEAWIFS L3 CHLA DAILY 9KM R, 0.08333333\u00b0, 1997-2010", "Sea-Wide Field-of-View Sensor (SeaWiFS) Level-3 Standard Mapped Image (Top Dataset, seawifs, SEAWIFS L3 Chlorophyll-a (CHLA) DAILY 9KM R)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nl3m_data (mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_c054_e93b_ca08_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_c054_e93b_ca08_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_c054_e93b_ca08/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_c054_e93b_ca08.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_c054_e93b_ca08&showErrors=false&email=", "NASA JPL", "nasa_jpl_c054_e93b_ca08"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_0e44_1d64_ec54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_0e44_1d64_ec54.graph", "", "", "public", "Top Dataset, seawifs, SEAWIFS L3 CHLA MONTHLY 9KM R, 0.08333333\u00b0, 1997-2010", "Sea-Wide Field-of-View Sensor (SeaWiFS) Level-3 Standard Mapped Image (Top Dataset, seawifs, SEAWIFS L3 Chlorophyll-a (CHLA) MONTHLY 9KM R)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nl3m_data (mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_0e44_1d64_ec54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_0e44_1d64_ec54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_0e44_1d64_ec54/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_0e44_1d64_ec54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_0e44_1d64_ec54&showErrors=false&email=", "NASA JPL", "nasa_jpl_0e44_1d64_ec54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb9a_8f65_4783", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb9a_8f65_4783.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb9a_8f65_4783/request", "", "public", "Top Dataset, std, air.mon.anom.biased2.5 (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.biased2.5.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly 2.5 Bias Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb9a_8f65_4783_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb9a_8f65_4783_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb9a_8f65_4783/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb9a_8f65_4783.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb9a_8f65_4783&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fb9a_8f65_4783"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08b8_4b79_072d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_08b8_4b79_072d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_08b8_4b79_072d/request", "", "public", "Top Dataset, std, air.mon.anom.biased97.5 (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.biased97.5.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly 97.5 Bias Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_08b8_4b79_072d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_08b8_4b79_072d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_08b8_4b79_072d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_08b8_4b79_072d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_08b8_4b79_072d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_08b8_4b79_072d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fc4_7974_6ee1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fc4_7974_6ee1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8fc4_7974_6ee1/request", "", "public", "Top Dataset, std, air.mon.anom.nobs (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.nobs.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Number of Observations, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8fc4_7974_6ee1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8fc4_7974_6ee1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8fc4_7974_6ee1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8fc4_7974_6ee1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8fc4_7974_6ee1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8fc4_7974_6ee1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1123_8add_cc23", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1123_8add_cc23.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1123_8add_cc23/request", "", "public", "Top Dataset, std, air.mon.anom.samplingerror (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.samplingerror.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Sampling Error, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1123_8add_cc23_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1123_8add_cc23_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1123_8add_cc23/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1123_8add_cc23.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1123_8add_cc23&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1123_8add_cc23"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7168_64d1_22b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7168_64d1_22b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7168_64d1_22b7/request", "", "public", "Top Dataset, std, air.mon.anom.stationerror (CRUTEM4 Air Temperature Dataset), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.stationerror.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Station Errors, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7168_64d1_22b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7168_64d1_22b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7168_64d1_22b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7168_64d1_22b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7168_64d1_22b7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7168_64d1_22b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_a29f_599c_0df2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_ncei_a29f_599c_0df2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_ncei_a29f_599c_0df2/request", "", "public", "Top Dataset, yearly, NOAAGlobalTemp annual, 5.0\u00b0, 1880-2016", "The NOAA Global Surface Temperature Dataset (NOAAGlobalTemp) (Top Dataset, yearly, NOAAGlobalTemp annual)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nanom (Global Temperature Anomalies, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_ncei_a29f_599c_0df2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_ncei_a29f_599c_0df2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_ncei_a29f_599c_0df2/index.json", "https://www.ncei.noaa.gov/thredds/dodsC/gcag/yearly/NOAAGlobalTemp_annual.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_ncei_a29f_599c_0df2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_ncei_a29f_599c_0df2&showErrors=false&email=", "NOAAs National Centers for Environmental Information", "noaa_ncei_a29f_599c_0df2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/etopo180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/etopo180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/etopo180/request", "", "public", "Topography, ETOPO1, 0.0166667 degrees, Global (longitude -180 to 180), (Ice Sheet Surface)", "ETOPO1 is a 1 arc-minute global relief model of Earth's surface that integrates land topography and ocean bathymetry. It was built from numerous global and regional data sets. This is the 'Ice Surface' version, with the top of the Antarctic and Greenland ice sheets. The horizontal datum is WGS-84, the vertical datum is Mean Sea Level. Keywords: Bathymetry, Digital Elevation. This is the grid/node-registered version: the dataset's latitude and longitude values mark the centers of the cells.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\naltitude (m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/etopo180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/etopo180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/etopo180/index.json", "https://www.ngdc.noaa.gov/mgg/global/global.html", "http://upwell.pfeg.noaa.gov/erddap/rss/etopo180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=etopo180&showErrors=false&email=", "NOAA NGDC", "etopo180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeSS111", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeSS111.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgsCeSS111/request", "", "public", "Topography, Smith & Sandwell v11.1, 1/60-degree", "Global seafloor topography from satellite altimetry and ship depth soundings.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ntopo (Topography, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgsCeSS111_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgsCeSS111_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgsCeSS111/index.json", "ftp://topex.ucsd.edu/pub/global_topo_1min", "http://upwell.pfeg.noaa.gov/erddap/rss/usgsCeSS111.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgsCeSS111&showErrors=false&email=", "UCSD", "usgsCeSS111"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeSS91", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeSS91.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgsCeSS91/request", "", "public", "Topography, Smith & Sandwell v9.1, 1/60-degree", "Global seafloor topography from satellite altimetry and ship depth soundings.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ntopo (Topography, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgsCeSS91_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgsCeSS91_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgsCeSS91/index.json", "ftp://topex.ucsd.edu/pub/global_topo_1min", "http://upwell.pfeg.noaa.gov/erddap/rss/usgsCeSS91.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgsCeSS91&showErrors=false&email=", "UCSD", "usgsCeSS91"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeSrtm30v1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeSrtm30v1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgsCeSrtm30v1/request", "", "public", "Topography, SRTM30+ Version 1.0, 30 arc second, Global", "This is global topography data. The grid resolution is 30 seconds which is roughly one kilometer.\n\nLand data are based on the 1-km averages of topography derived from the USGS SRTM30 grided DEM data product created with data from the NASA Shuttle Radar Topography Mission. GTOPO30 data are used for high latitudes where SRTM data are not available.\n\nOcean data are based on the Smith and Sandwell global 1-minute grid between latitudes +/- 81 degrees. Higher resolution grids have been added from the LDEO Ridge Multibeam Synthesis Project, the JAMSTEC Data Site for Research Cruises, and the NGDC Coastal Relief Model. Arctic bathymetry is from the International Bathymetric Chart of the Oceans (IBCAO) [Jakobsson et al., 2003].\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ntopo (Topography, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgsCeSrtm30v1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgsCeSrtm30v1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgsCeSrtm30v1/index.json", "https://topex.ucsd.edu/WWW_html/srtm30_plus.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgsCeSrtm30v1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgsCeSrtm30v1&showErrors=false&email=", "Scripps", "usgsCeSrtm30v1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeSrtm30v6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/usgsCeSrtm30v6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/usgsCeSrtm30v6/request", "", "public", "Topography, SRTM30+ Version 6.0, 30 arc second, Global", "This is global topography data. The grid resolution is 30 seconds which is roughly one kilometer.\n\nLand data are based on the 1-km averages of topography derived from the USGS SRTM30 grided DEM data product created with data from the NASA Shuttle Radar Topography Mission. GTOPO30 data are used for high latitudes where SRTM data are not available.\n\nOcean data are based on the Smith and Sandwell global 1-minute grid between latitudes +/- 81 degrees. Higher resolution grids have been added from the LDEO Ridge Multibeam Synthesis Project, the JAMSTEC Data Site for Research Cruises, and the NGDC Coastal Relief Model. Arctic bathymetry is from the International Bathymetric Chart of the Oceans (IBCAO) [Jakobsson et al., 2003].\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [latitude][longitude]):\ntopo (Topography, meters)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/usgsCeSrtm30v6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/usgsCeSrtm30v6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/usgsCeSrtm30v6/index.json", "https://topex.ucsd.edu/WWW_html/srtm30_plus.html", "http://upwell.pfeg.noaa.gov/erddap/rss/usgsCeSrtm30v6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=usgsCeSrtm30v6&showErrors=false&email=", "Scripps", "usgsCeSrtm30v6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHchla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHchla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHchla8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Chlorophyll a, OC3 Algorithm, 2012-2014, DEPRECATED OLDER VERSION, 8-Day", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll a, OC3 Algorithm, 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchla (Mean Chlorophyll a Concentration, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHchla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHchla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHchla8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHchla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHchla8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHchla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHchla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHchla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHchla1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Chlorophyll a, OC3 Algorithm, 2012-2014, DEPRECATED OLDER VERSION, Daily", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll a, OC3 Algorithm, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchla (Mean Chlorophyll a Concentration, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHchla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHchla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHchla1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHchla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHchla1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHchla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHchlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHchlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHchlamday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Chlorophyll a, OC3 Algorithm, 2012-2014, DEPRECATED OLDER VERSION, Monthly", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll a, OC3 Algorithm, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchla (Mean Chlorophyll a Concentration, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHchlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHchlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHchlamday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHchlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHchlamday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHchlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2chla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2chla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2chla8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Chlorophyll a, OCI Algorithm, 2012-2016, 8-Day, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll a, OCI Algorithm, 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchla (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2chla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2chla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2chla8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2chla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2chla8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2chla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2chla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2chla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2chla1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Chlorophyll a, OCI Algorithm, 2012-2016, Daily, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll a, OCI Algorithm, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchla (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2chla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2chla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2chla1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2chla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2chla1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2chla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2chlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2chlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2chlamday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Chlorophyll a, OCI Algorithm, 2012-2016, Monthly, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll a, OCI Algorithm, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchla (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2chlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2chlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2chlamday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2chlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2chlamday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2chlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHk4908day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHk4908day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHk4908day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, K490, 2012-2014, DEPRECATED OLDER VERSION, 8-Day", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Diffuse Attenuation Coefficient K490, 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHk4908day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHk4908day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHk4908day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHk4908day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHk4908day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHk4908day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHk4901day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHk4901day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHk4901day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, K490, 2012-2014, DEPRECATED OLDER VERSION, Daily", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image, Global, 4km, Diffuse Attenuation Coefficient K490, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHk4901day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHk4901day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHk4901day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHk4901day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHk4901day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHk4901day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHk490mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHk490mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHk490mday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, K490, 2012-2014, DEPRECATED OLDER VERSION, Monthly", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Diffuse Attenuation Coefficient K490, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHk490mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHk490mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHk490mday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHk490mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHk490mday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHk490mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2k4908day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2k4908day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2k4908day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, K490, 2012-2016, 8-Day, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Diffuse Attenuation Coefficient K490, 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2k4908day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2k4908day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2k4908day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2k4908day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2k4908day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2k4908day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2k4901day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2k4901day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2k4901day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, K490, 2012-2016, Daily, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Diffuse Attenuation Coefficient K490, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2k4901day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2k4901day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2k4901day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2k4901day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2k4901day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2k4901day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2k490mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2k490mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2k490mday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, K490, 2012-2016, Monthly, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Diffuse Attenuation Coefficient K490, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2k490mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2k490mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2k490mday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2k490mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2k490mday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2k490mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpar8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpar8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHpar8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PAR, 2012-2014, DEPRECATED OLDER VERSION, 8-Day", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Photosynthetically Available Radiation (PAR), 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m^-2 d^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHpar8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHpar8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHpar8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHpar8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHpar8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHpar8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpar1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpar1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHpar1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PAR, 2012-2014, DEPRECATED OLDER VERSION, Daily", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Photosynthetically Available Radiation (PAR), Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m^-2 d^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHpar1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHpar1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHpar1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHpar1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHpar1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHpar1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHparmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHparmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHparmday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PAR, 2012-2014, DEPRECATED OLDER VERSION, Monthly", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Photosynthetically Available Radiation (PAR), Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, Einsteins m^-2 d^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHparmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHparmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHparmday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHparmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHparmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHparmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2par8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2par8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2par8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PAR, 2012-2016, 8-Day, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Photosynthetically Available Radiation (PAR), 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, einstein m^-2 day^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2par8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2par8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2par8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2par8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2par8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2par8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2par1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2par1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2par1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PAR, 2012-2016, Daily, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Photosynthetically Available Radiation (PAR), Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, einstein m^-2 day^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2par1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2par1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2par1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2par1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2par1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2par1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2parmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2parmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2parmday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PAR, 2012-2016, Monthly, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Photosynthetically Available Radiation (PAR), Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, einstein m^-2 day^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2parmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2parmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2parmday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2parmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2parmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2parmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpic8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpic8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHpic8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PIC, 2012-2014, DEPRECATED OLDER VERSION, 8-Day", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC), 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Particulate Inorganic Carbon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHpic8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHpic8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHpic8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHpic8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHpic8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHpic8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpic1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpic1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHpic1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PIC, 2012-2014, DEPRECATED OLDER VERSION, Daily", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC), Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Particulate Inorganic Carbon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHpic1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHpic1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHpic1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHpic1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHpic1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHpic1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpicmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpicmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHpicmday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PIC, 2012-2014, DEPRECATED OLDER VERSION, Monthly", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC), Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Particulate Inorganic Carbon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHpicmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHpicmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHpicmday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHpicmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHpicmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHpicmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2pic8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2pic8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2pic8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PIC, 2012-2016, 8-Day, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC), 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Particulate Inorganic Carbon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2pic8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2pic8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2pic8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2pic8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2pic8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2pic8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2pic1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2pic1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2pic1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PIC, 2012-2016, Daily, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC), Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Particulate Inorganic Carbon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2pic1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2pic1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2pic1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2pic1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2pic1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2pic1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2picmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2picmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2picmday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, PIC, 2012-2016, Monthly, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC), Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Particulate Inorganic Carbon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2picmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2picmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2picmday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2picmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2picmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2picmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpoc8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpoc8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHpoc8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, POC, 2012-2014, DEPRECATED OLDER VERSION, 8-Day", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC), 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHpoc8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHpoc8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHpoc8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHpoc8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHpoc8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHpoc8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpoc1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpoc1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHpoc1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, POC, 2012-2014, DEPRECATED OLDER VERSION, Daily", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC), Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHpoc1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHpoc1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHpoc1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHpoc1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHpoc1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHpoc1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpocmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHpocmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHpocmday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, POC, 2012-2014, DEPRECATED OLDER VERSION, Monthly", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC), Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHpocmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHpocmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHpocmday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHpocmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHpocmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHpocmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2poc8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2poc8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2poc8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, POC, 2012-2016, 8-Day, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC), 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2poc8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2poc8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2poc8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2poc8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2poc8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2poc8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2poc1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2poc1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2poc1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, POC, 2012-2016, Daily, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC), Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2poc1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2poc1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2poc1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2poc1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2poc1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2poc1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2pocmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2pocmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2pocmday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, POC, 2012-2016, Monthly, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC), Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2pocmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2pocmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2pocmday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2pocmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2pocmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2pocmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHr6718day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHr6718day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHr6718day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Reflectance at 671 nm, 2012-2014, DEPRECATED OLDER VERSION, 8-Day", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Remote Sensing Reflectance at 671 nm, 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nr671 (Remote Sensing Reflectance at 671 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHr6718day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHr6718day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHr6718day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHr6718day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHr6718day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHr6718day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHr6711day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHr6711day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHr6711day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Reflectance at 671 nm, 2012-2014, DEPRECATED OLDER VERSION, Daily", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Remote Sensing Reflectance at 671 nm, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nr671 (Remote Sensing Reflectance at 671 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHr6711day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHr6711day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHr6711day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHr6711day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHr6711day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHr6711day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHr671mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHr671mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVHr671mday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Reflectance at 671 nm, 2012-2014, DEPRECATED OLDER VERSION, Monthly", "THIS VERSION IS DEPRECATED. (Dec 2014) SEE THE NEW erdVH2018 VERSION.\nVIIRSN Level-3 Standard Mapped Image (SMI), Global, 4km, Remote Sensing Reflectance at 671 nm, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nr671 (Remote Sensing Reflectance at 671 nm, microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVHr671mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVHr671mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVHr671mday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVHr671mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVHr671mday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVHr671mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2r6718day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2r6718day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2r6718day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Reflectance at 671 nm, 2012-2016, 8-Day, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Remote Sensing Reflectance at 671 nm, 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nr671 (Remote sensing reflectance at 671 nm, sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2r6718day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2r6718day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2r6718day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2r6718day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2r6718day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2r6718day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2r6711day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2r6711day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2r6711day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Reflectance at 671 nm, 2012-2016, Daily, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Remote Sensing Reflectance at 671 nm, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nr671 (Remote sensing reflectance at 671 nm, sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2r6711day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2r6711day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2r6711day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2r6711day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2r6711day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2r6711day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2r671mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2r671mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2r671mday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, Global, 4km, Reflectance at 671 nm, 2012-2016, Monthly, DEPRECATED", "DEPRECATED 2016-04-01 - SEE THE NEW erdVH2018 VERSION. \nLevel-3 Standard Mapped Image (SMI), Global, 4km, Remote Sensing Reflectance at 671 nm, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released in December 2014.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nr671 (Remote sensing reflectance at 671 nm, sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2r671mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2r671mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2r671mday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2r671mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2r671mday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2r671mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018chla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018chla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018chla8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, Chlorophyll a, OCI Algorithm, R2018, 2012-present, 8-Day", "R2018 version of Level-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll a, OCI Algorithm, 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchla (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018chla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018chla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018chla8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018chla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018chla8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018chla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018chla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018chla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018chla1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, Chlorophyll a, OCI Algorithm, R2018, 2012-present, Daily", "R2018 version of Level-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll a, OCI Algorithm, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchla (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018chla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018chla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018chla1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018chla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018chla1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018chla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018chlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018chlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018chlamday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, Chlorophyll a, OCI Algorithm, R2018, 2012-present, Monthly", "R2018 version of Level-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll a, OCI Algorithm, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchla (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018chlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018chlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018chlamday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018chlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018chlamday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018chlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3chla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3chla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3chla8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, Chlorophyll a, OCI Algorithm, v2016, 2012-2017, 8-Day, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll a, OCI Algorithm, 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchla (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3chla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3chla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3chla8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3chla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3chla8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3chla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3chla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3chla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3chla1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, Chlorophyll a, OCI Algorithm, v2016, 2012-2017, Daily, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll a, OCI Algorithm, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchla (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3chla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3chla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3chla1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3chla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3chla1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3chla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3chlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3chlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3chlamday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, Chlorophyll a, OCI Algorithm, v2016, 2012-2017, Monthly, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Chlorophyll a, OCI Algorithm, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchla (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3chlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3chlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3chlamday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3chlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3chlamday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3chlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018k4908day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018k4908day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018k4908day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, K490, R2018, 2012-present, 8-Day", "R2018 version of Level-3 Standard Mapped Image (SMI), Global, 4km, Diffuse Attenuation Coefficient K490, 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse attenuation coefficient at 490 nm, KD2 algorithm, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018k4908day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018k4908day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018k4908day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018k4908day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018k4908day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018k4908day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018k4901day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018k4901day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018k4901day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, K490, R2018, 2012-present, Daily", "R2018 version of Level-3 Standard Mapped Image (SMI), Global, 4km, Diffuse Attenuation Coefficient K490, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse attenuation coefficient at 490 nm, KD2 algorithm, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018k4901day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018k4901day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018k4901day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018k4901day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018k4901day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018k4901day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018k490mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018k490mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018k490mday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, K490, R2018, 2012-present, Monthly", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Diffuse Attenuation Coefficient K490, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse attenuation coefficient at 490 nm, KD2 algorithm, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018k490mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018k490mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018k490mday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018k490mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018k490mday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018k490mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3k4908day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3k4908day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3k4908day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, K490, v2016, 2012-2017, 8-Day, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Diffuse Attenuation Coefficient K490, 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse attenuation coefficient at 490 nm, KD2 algorithm, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3k4908day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3k4908day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3k4908day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3k4908day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3k4908day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3k4908day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3k4901day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3k4901day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3k4901day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, K490, v2016, 2012-2017, Daily, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Diffuse Attenuation Coefficient K490, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse attenuation coefficient at 490 nm, KD2 algorithm, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3k4901day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3k4901day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3k4901day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3k4901day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3k4901day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3k4901day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3k490mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3k490mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3k490mday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, K490, v2016, 2012-2017, Monthly, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Diffuse Attenuation Coefficient K490, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse attenuation coefficient at 490 nm, KD2 algorithm, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3k490mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3k490mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3k490mday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3k490mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3k490mday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3k490mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018par8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018par8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018par8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, PAR, R2018, 2012-present, 8-Day", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Photosynthetically Available Radiation (PAR), 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, R. Frouin, einstein m^-2 day^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018par8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018par8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018par8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018par8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018par8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018par8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018par1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018par1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018par1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, PAR, R2018, 2012-present, Daily", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Photosynthetically Available Radiation (PAR), Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, R. Frouin, einstein m^-2 day^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018par1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018par1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018par1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018par1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018par1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018par1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018parmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018parmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018parmday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, PAR, R2018, 2012-present, Monthly", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Photosynthetically Available Radiation (PAR), Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, R. Frouin, einstein m^-2 day^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018parmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018parmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018parmday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018parmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018parmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018parmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3par8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3par8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3par8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, PAR, v2016, 2012-2017, 8-Day, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Photosynthetically Available Radiation (PAR), 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, R. Frouin, einstein m^-2 day^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3par8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3par8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3par8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3par8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3par8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3par8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3par1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3par1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3par1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, PAR, v2016, 2012-2017, Daily, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Photosynthetically Available Radiation (PAR), Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, R. Frouin, einstein m^-2 day^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3par1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3par1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3par1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3par1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3par1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3par1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3parmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3parmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3parmday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, PAR, v2016, 2012-2017, Monthly, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Photosynthetically Available Radiation (PAR), Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npar (Photosynthetically Available Radiation, R. Frouin, einstein m^-2 day^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3parmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3parmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3parmday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3parmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3parmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3parmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018pic8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018pic8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018pic8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, PIC, R2018, 2012-present, 8-Day", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC), 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Calcite Concentration, Balch and Gordon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018pic8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018pic8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018pic8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018pic8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018pic8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018pic8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018pic1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018pic1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018pic1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, PIC, R2018, 2012-present, Daily", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC), Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Calcite Concentration, Balch and Gordon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018pic1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018pic1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018pic1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018pic1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018pic1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018pic1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018picmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018picmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018picmday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, PIC, R2018, 2012-present, Monthly", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC), Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Calcite Concentration, Balch and Gordon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018picmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018picmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018picmday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018picmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018picmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018picmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3pic8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3pic8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3pic8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, PIC, v2016, 2012-2017, 8-Day, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC), 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Calcite Concentration, Balch and Gordon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3pic8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3pic8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3pic8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3pic8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3pic8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3pic8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3pic1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3pic1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3pic1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, PIC, v2016, 2012-2017, Daily, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC), Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Calcite Concentration, Balch and Gordon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3pic1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3pic1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3pic1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3pic1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3pic1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3pic1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3picmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3picmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3picmday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, PIC, v2016, 2012-2017, Monthly, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Inorganic Carbon (PIC), Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npic (Calcite Concentration, Balch and Gordon, mol m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3picmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3picmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3picmday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3picmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3picmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3picmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018poc8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018poc8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018poc8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, POC, R2018, 2012-present, 8-Day", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC), 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, D. Stramski, 2007 (443/555 version), mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018poc8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018poc8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018poc8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018poc8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018poc8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018poc8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018poc1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018poc1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018poc1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, POC, R2018, 2012-present, Daily", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC), Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, D. Stramski, 2007 (443/555 version), mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018poc1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018poc1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018poc1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018poc1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018poc1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018poc1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018pocmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018pocmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018pocmday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, POC, R2018, 2012-present, Monthly", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC), Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, D. Stramski, 2007 (443/555 version), mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018pocmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018pocmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018pocmday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018pocmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018pocmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018pocmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3poc8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3poc8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3poc8day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, POC, v2016, 2012-2017, 8-Day, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC), 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, D. Stramski, 2007 (443/555 version), mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3poc8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3poc8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3poc8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3poc8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3poc8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3poc8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3poc1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3poc1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3poc1day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, POC, v2016, 2012-2017, Daily, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC), Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, D. Stramski, 2007 (443/555 version), mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3poc1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3poc1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3poc1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3poc1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3poc1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3poc1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3pocmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3pocmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3pocmday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, POC, v2016, 2012-2017, Monthly, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Particulate Organic Carbon (POC), Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npoc (Particulate Organic Carbon, D. Stramski, 2007 (443/555 version), mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3pocmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3pocmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3pocmday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3pocmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3pocmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3pocmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018r6718day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018r6718day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018r6718day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, Reflectance at 671 nm, R2018, 2012-present, 8-Day", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Remote Sensing Reflectance at 671 nm, 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nr671 (Remote sensing reflectance at 671 nm, sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018r6718day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018r6718day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018r6718day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018r6718day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018r6718day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018r6718day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018r6711day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018r6711day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018r6711day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, Reflectance at 671 nm, R2018, 2012-present, Daily", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Remote Sensing Reflectance at 671 nm, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nr671 (Remote sensing reflectance at 671 nm, sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018r6711day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018r6711day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018r6711day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018r6711day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018r6711day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018r6711day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018r671mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH2018r671mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH2018r671mday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, Reflectance at 671 nm, R2018, 2012-present, Monthly", "R2018 of Level-3 Standard Mapped Image (SMI), Global, 4km, Remote Sensing Reflectance at 671 nm, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2017-12-12.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nr671 (Remote sensing reflectance at 671 nm, sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH2018r671mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH2018r671mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH2018r671mday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH2018r671mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH2018r671mday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH2018r671mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3r6718day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3r6718day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3r6718day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, Reflectance at 671 nm, v2016, 2012-2017, 8-Day, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Remote Sensing Reflectance at 671 nm, 8-Day composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nr671 (Remote sensing reflectance at 671 nm, sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3r6718day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3r6718day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3r6718day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3r6718day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3r6718day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3r6718day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3r6711day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3r6711day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3r6711day/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, Reflectance at 671 nm, v2016, 2012-2017, Daily, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Remote Sensing Reflectance at 671 nm, Daily composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nr671 (Remote sensing reflectance at 671 nm, sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3r6711day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3r6711day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3r6711day/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3r6711day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3r6711day&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3r6711day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3r671mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdVH3r671mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdVH3r671mday/request", "", "public", "VIIRSN, Suomi-NPP, Level-3 SMI, NASA, Global, 4km, Reflectance at 671 nm, v2016, 2012-2017, Monthly, DEPRECATED", "THIS VERSION WAS DISCONTINUED on 2017-12-01. SEE THE NEW erdVH2018 DATASETS. Level-3 Standard Mapped Image (SMI), Global, 4km, Remote Sensing Reflectance at 671 nm, Monthly composite data from the Visible and Infrared Imager/Radiometer Suite (VIIRS), as processed by NASA GSFC Ocean Biology Processing Group (OBPG). VIIRS is a multi-disciplinary instrument that flies on the Suomi-NPP (National Polar-orbiting Partnership) satellite. Suomi-NPP is the initial spacecraft in the JPSS (Joint Polar Satellite Systems) series of spacecraft. JPSS is our Nation's next generation polar-orbiting operational environmental satellite system. JPSS is a collaborative program between NOAA and its acquisition agent NASA. VIIRS is the successor to MODIS for Earth science data product generation. (This version of the VH data was first released on 2016-04-01.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nr671 (Remote sensing reflectance at 671 nm, sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdVH3r671mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdVH3r671mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdVH3r671mday/index.json", "https://oceancolor.gsfc.nasa.gov/data/viirs-snpp/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdVH3r671mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdVH3r671mday&showErrors=false&email=", "NASA/GSFC OBPG", "erdVH3r671mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMekm1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMekm1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQMekm1day_LonPM180/request", "", "public", "Wind Diffusivity Current, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (1 Day), Lon+/-180", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is a 1 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Zonal Wind Diffusivity Current, m s-1)\nv_current (Meridional Wind Diffusivity Current, m s-1)\nmod_current (Modulus of Wind Diffusivity Current, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQMekm1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQMekm1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQMekm1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QM_uekm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQMekm1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQMekm1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQMekm1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMekm14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMekm14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQMekm14day_LonPM180/request", "", "public", "Wind Diffusivity Current, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (14 Day), Lon+/-180", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is a 14 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Zonal Wind Diffusivity Current, m s-1)\nv_current (Meridional Wind Diffusivity Current, m s-1)\nmod_current (Modulus of Wind Diffusivity Current, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQMekm14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQMekm14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQMekm14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QM_uekm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQMekm14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQMekm14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQMekm14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMekm3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMekm3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQMekm3day_LonPM180/request", "", "public", "Wind Diffusivity Current, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (3 Day), Lon+/-180", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is a 3 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Zonal Wind Diffusivity Current, m s-1)\nv_current (Meridional Wind Diffusivity Current, m s-1)\nmod_current (Modulus of Wind Diffusivity Current, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQMekm3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQMekm3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQMekm3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QM_uekm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQMekm3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQMekm3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQMekm3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMekm8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMekm8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQMekm8day_LonPM180/request", "", "public", "Wind Diffusivity Current, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (8 Day), Lon+/-180", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is an 8 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Zonal Wind Diffusivity Current, m s-1)\nv_current (Meridional Wind Diffusivity Current, m s-1)\nmod_current (Modulus of Wind Diffusivity Current, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQMekm8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQMekm8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQMekm8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QM_uekm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQMekm8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQMekm8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQMekm8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMekmmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMekmmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQMekmmday_LonPM180/request", "", "public", "Wind Diffusivity Current, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (Monthly), Lon+/-180", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is a monthly composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Zonal Wind Diffusivity Current, m s-1)\nv_current (Meridional Wind Diffusivity Current, m s-1)\nmod_current (Modulus of Wind Diffusivity Current, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQMekmmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQMekmmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQMekmmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QM_uekm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQMekmmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQMekmmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQMekmmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAekm1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAekm1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQAekm1day_LonPM180/request", "", "public", "Wind Diffusivity Current, Metop-A ASCAT, 0.25\u00b0, Global, Near Real Time, 2009-present (1 Day), Lon+/-180", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-A satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is a 1 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Zonal Wind Diffusivity Current, m s-1)\nv_current (Meridional Wind Diffusivity Current, m s-1)\nmod_current (Modulus of Wind Diffusivity Current, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQAekm1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQAekm1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQAekm1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QA_uekm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQAekm1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQAekm1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQAekm1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAekm14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAekm14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQAekm14day_LonPM180/request", "", "public", "Wind Diffusivity Current, Metop-A ASCAT, 0.25\u00b0, Global, Near Real Time, 2009-present (14 Day), Lon+/-180", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-A satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is a 14 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Zonal Wind Diffusivity Current, m s-1)\nv_current (Meridional Wind Diffusivity Current, m s-1)\nmod_current (Modulus of Wind Diffusivity Current, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQAekm14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQAekm14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQAekm14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QA_uekm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQAekm14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQAekm14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQAekm14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAekm3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAekm3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQAekm3day_LonPM180/request", "", "public", "Wind Diffusivity Current, Metop-A ASCAT, 0.25\u00b0, Global, Near Real Time, 2009-present (3 Day), Lon+/-180", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-A satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is a 3 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Zonal Wind Diffusivity Current, m s-1)\nv_current (Meridional Wind Diffusivity Current, m s-1)\nmod_current (Modulus of Wind Diffusivity Current, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQAekm3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQAekm3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQAekm3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QA_uekm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQAekm3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQAekm3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQAekm3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAekm8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAekm8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQAekm8day_LonPM180/request", "", "public", "Wind Diffusivity Current, Metop-A ASCAT, 0.25\u00b0, Global, Near Real Time, 2009-present (8 Day), Lon+/-180", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-A satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is an 8 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Zonal Wind Diffusivity Current, m s-1)\nv_current (Meridional Wind Diffusivity Current, m s-1)\nmod_current (Modulus of Wind Diffusivity Current, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQAekm8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQAekm8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQAekm8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QA_uekm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQAekm8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQAekm8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQAekm8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAekmmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAekmmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQAekmmday_LonPM180/request", "", "public", "Wind Diffusivity Current, Metop-A ASCAT, 0.25\u00b0, Global, Near Real Time, 2009-present (Monthly), Lon+/-180", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-A satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is a monthly composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Zonal Wind Diffusivity Current, m s-1)\nv_current (Meridional Wind Diffusivity Current, m s-1)\nmod_current (Modulus of Wind Diffusivity Current, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQAekmmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQAekmmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQAekmmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QA_uekm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQAekmmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQAekmmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQAekmmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBekm1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBekm1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQBekm1day_LonPM180/request", "", "public", "Wind Diffusivity Current, Metop-B ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (1 Day), Lon+/-180", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-B satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is a 1 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Zonal Wind Diffusivity Current, m s-1)\nv_current (Meridional Wind Diffusivity Current, m s-1)\nmod_current (Modulus of Wind Diffusivity Current, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQBekm1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQBekm1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQBekm1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QB_uekm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQBekm1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQBekm1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQBekm1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBekm14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBekm14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQBekm14day_LonPM180/request", "", "public", "Wind Diffusivity Current, Metop-B ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (14 Day), Lon+/-180", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-B satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is a 14 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Zonal Wind Diffusivity Current, m s-1)\nv_current (Meridional Wind Diffusivity Current, m s-1)\nmod_current (Modulus of Wind Diffusivity Current, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQBekm14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQBekm14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQBekm14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QB_uekm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQBekm14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQBekm14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQBekm14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBekm3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBekm3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQBekm3day_LonPM180/request", "", "public", "Wind Diffusivity Current, Metop-B ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (3 Day), Lon+/-180", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-B satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is a 3 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Zonal Wind Diffusivity Current, m s-1)\nv_current (Meridional Wind Diffusivity Current, m s-1)\nmod_current (Modulus of Wind Diffusivity Current, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQBekm3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQBekm3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQBekm3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QB_uekm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQBekm3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQBekm3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQBekm3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBekm8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBekm8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQBekm8day_LonPM180/request", "", "public", "Wind Diffusivity Current, Metop-B ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (8 Day), Lon+/-180", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-B satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is an 8 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Zonal Wind Diffusivity Current, m s-1)\nv_current (Meridional Wind Diffusivity Current, m s-1)\nmod_current (Modulus of Wind Diffusivity Current, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQBekm8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQBekm8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQBekm8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QB_uekm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQBekm8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQBekm8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQBekm8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBekmmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBekmmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQBekmmday_LonPM180/request", "", "public", "Wind Diffusivity Current, Metop-B ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (Monthly), Lon+/-180", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-B satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is a monthly composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Zonal Wind Diffusivity Current, m s-1)\nv_current (Meridional Wind Diffusivity Current, m s-1)\nmod_current (Modulus of Wind Diffusivity Current, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQBekmmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQBekmmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQBekmmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QB_uekm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQBekmmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQBekmmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQBekmmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSekm1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSekm1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQSekm1day_LonPM180/request", "", "public", "Wind Diffusivity Current, QuikSCAT SeaWinds, 0.25\u00b0, Global, Science Quality, 1999-2009 (1 Day), Lon+/-180", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the SeaWinds instrument onboard NASA's QuikSCAT satellite. SeaWinds is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is a 1 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Zonal Wind Diffusivity Current, m s-1)\nv_current (Meridional Wind Diffusivity Current, m s-1)\nmod_current (Modulus of Wind Diffusivity Current, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQSekm1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQSekm1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQSekm1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QS_uekm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQSekm1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQSekm1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQSekm1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSekm14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSekm14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQSekm14day_LonPM180/request", "", "public", "Wind Diffusivity Current, QuikSCAT SeaWinds, 0.25\u00b0, Global, Science Quality, 1999-2009 (14 Day), Lon+/-180", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the SeaWinds instrument onboard NASA's QuikSCAT satellite. SeaWinds is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is a 14 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Zonal Wind Diffusivity Current, m s-1)\nv_current (Meridional Wind Diffusivity Current, m s-1)\nmod_current (Modulus of Wind Diffusivity Current, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQSekm14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQSekm14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQSekm14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QS_uekm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQSekm14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQSekm14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQSekm14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSekm3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSekm3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQSekm3day_LonPM180/request", "", "public", "Wind Diffusivity Current, QuikSCAT SeaWinds, 0.25\u00b0, Global, Science Quality, 1999-2009 (3 Day), Lon+/-180", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the SeaWinds instrument onboard NASA's QuikSCAT satellite. SeaWinds is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is a 3 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Zonal Wind Diffusivity Current, m s-1)\nv_current (Meridional Wind Diffusivity Current, m s-1)\nmod_current (Modulus of Wind Diffusivity Current, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQSekm3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQSekm3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQSekm3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QS_uekm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQSekm3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQSekm3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQSekm3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSekm8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSekm8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQSekm8day_LonPM180/request", "", "public", "Wind Diffusivity Current, QuikSCAT SeaWinds, 0.25\u00b0, Global, Science Quality, 1999-2009 (8 Day), Lon+/-180", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the SeaWinds instrument onboard NASA's QuikSCAT satellite. SeaWinds is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is an 8 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Zonal Wind Diffusivity Current, m s-1)\nv_current (Meridional Wind Diffusivity Current, m s-1)\nmod_current (Modulus of Wind Diffusivity Current, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQSekm8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQSekm8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQSekm8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QS_uekm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQSekm8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQSekm8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQSekm8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSekmmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSekmmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQSekmmday_LonPM180/request", "", "public", "Wind Diffusivity Current, QuikSCAT SeaWinds, 0.25\u00b0, Global, Science Quality, 1999-2009 (Monthly), Lon+/-180", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the SeaWinds instrument onboard NASA's QuikSCAT satellite. SeaWinds is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is a monthly composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Zonal Wind Diffusivity Current, m s-1)\nv_current (Wind Diffusivity Current Meridional, m s-1)\nmod_current (Modulus of Wind Diffusivity Current, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQSekmmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQSekmmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQSekmmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QS_uekm_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQSekmmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQSekmmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQSekmmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMstress1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMstress1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQMstress1day_LonPM180/request", "", "public", "Wind Stress, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (1 Day), Lon+/-180", "NOAA CoastWatch distributes science quality wind stress data in zonal, meridional, modulus, and wind stress curl sets. This data begins with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl. (This is a 1 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\ncurl (Curl of Wind Stress, Pa m-1)\nmodStress (Modulus of Wind Stress, Pa)\nupwelling (Ekman Upwelling, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQMstress1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQMstress1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQMstress1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QM_taux_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQMstress1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQMstress1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQMstress1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMstress14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMstress14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQMstress14day_LonPM180/request", "", "public", "Wind Stress, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (14 Day), Lon+/-180", "NOAA CoastWatch distributes science quality wind stress data in zonal, meridional, modulus, and wind stress curl sets. This data begins with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl. (This is a 14 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\ncurl (Curl of Wind Stress, Pa m-1)\nmodStress (Modulus of Wind Stress, Pa)\nupwelling (Ekman Upwelling, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQMstress14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQMstress14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQMstress14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QM_taux_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQMstress14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQMstress14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQMstress14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMstress3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMstress3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQMstress3day_LonPM180/request", "", "public", "Wind Stress, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (3 Day), Lon+/-180", "NOAA CoastWatch distributes science quality wind stress data in zonal, meridional, modulus, and wind stress curl sets. This data begins with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl. (This is a 3 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\ncurl (Curl of Wind Stress, Pa m-1)\nmodStress (Modulus of Wind Stress, Pa)\nupwelling (Ekman Upwelling, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQMstress3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQMstress3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQMstress3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QM_taux_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQMstress3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQMstress3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQMstress3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMstress8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMstress8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQMstress8day_LonPM180/request", "", "public", "Wind Stress, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (8 Day), Lon+/-180", "NOAA CoastWatch distributes science quality wind stress data in zonal, meridional, modulus, and wind stress curl sets. This data begins with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl. (This is an 8 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\ncurl (Curl of Wind Stress, Pa m-1)\nmodStress (Modulus of Wind Stress, Pa)\nupwelling (Ekman Upwelling, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQMstress8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQMstress8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQMstress8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QM_taux_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQMstress8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQMstress8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQMstress8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMstressmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMstressmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQMstressmday_LonPM180/request", "", "public", "Wind Stress, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (Monthly), Lon+/-180", "NOAA CoastWatch distributes science quality wind stress data in zonal, meridional, modulus, and wind stress curl sets. This data begins with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl. (This is a monthly composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\ncurl (Curl of Wind Stress, Pa m-1)\nmodStress (Modulus of Wind Stress, Pa)\nupwelling (Ekman Upwelling, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQMstressmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQMstressmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQMstressmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QM_taux_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQMstressmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQMstressmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQMstressmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAstress1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAstress1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQAstress1day_LonPM180/request", "", "public", "Wind Stress, Metop-A ASCAT, 0.25\u00b0, Global, Near Real Time, 2009-present (1 Day), Lon+/-180", "NOAA CoastWatch distributes science quality wind stress data in zonal, meridional, modulus, and wind stress curl sets. This data begins with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-A satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl. (This is a 1 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\ncurl (Curl of Wind Stress, Pa m-1)\nmodStress (Modulus of Wind Stress, Pa)\nupwelling (Ekman Upwelling, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQAstress1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQAstress1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQAstress1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QA_taux_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQAstress1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQAstress1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQAstress1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAstress14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAstress14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQAstress14day_LonPM180/request", "", "public", "Wind Stress, Metop-A ASCAT, 0.25\u00b0, Global, Near Real Time, 2009-present (14 Day), Lon+/-180", "NOAA CoastWatch distributes science quality wind stress data in zonal, meridional, modulus, and wind stress curl sets. This data begins with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-A satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl. (This is a 14 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\ncurl (Curl of Wind Stress, Pa m-1)\nmodStress (Modulus of Wind Stress, Pa)\nupwelling (Ekman Upwelling, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQAstress14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQAstress14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQAstress14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QA_taux_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQAstress14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQAstress14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQAstress14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAstress3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAstress3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQAstress3day_LonPM180/request", "", "public", "Wind Stress, Metop-A ASCAT, 0.25\u00b0, Global, Near Real Time, 2009-present (3 Day), Lon+/-180", "NOAA CoastWatch distributes science quality wind stress data in zonal, meridional, modulus, and wind stress curl sets. This data begins with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-A satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl. (This is a 3 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\ncurl (Curl of Wind Stress, Pa m-1)\nmodStress (Modulus of Wind Stress, Pa)\nupwelling (Ekman Upwelling, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQAstress3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQAstress3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQAstress3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QA_taux_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQAstress3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQAstress3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQAstress3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAstress8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAstress8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQAstress8day_LonPM180/request", "", "public", "Wind Stress, Metop-A ASCAT, 0.25\u00b0, Global, Near Real Time, 2009-present (8 Day), Lon+/-180", "NOAA CoastWatch distributes science quality wind stress data in zonal, meridional, modulus, and wind stress curl sets. This data begins with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-A satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl. (This is an 8 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\ncurl (Curl of Wind Stress, Pa m-1)\nmodStress (Modulus of Wind Stress, Pa)\nupwelling (Ekman Upwelling, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQAstress8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQAstress8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQAstress8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QA_taux_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQAstress8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQAstress8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQAstress8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAstressmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAstressmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQAstressmday_LonPM180/request", "", "public", "Wind Stress, Metop-A ASCAT, 0.25\u00b0, Global, Near Real Time, 2009-present (Monthly), Lon+/-180", "NOAA CoastWatch distributes science quality wind stress data in zonal, meridional, modulus, and wind stress curl sets. This data begins with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-A satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl. (This is a monthly composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\ncurl (Curl of Wind Stress, Pa m-1)\nmodStress (Modulus of Wind Stress, Pa)\nupwelling (Ekman Upwelling, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQAstressmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQAstressmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQAstressmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QA_taux_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQAstressmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQAstressmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQAstressmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBstress1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBstress1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQBstress1day_LonPM180/request", "", "public", "Wind Stress, Metop-B ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (1 Day), Lon+/-180", "NOAA CoastWatch distributes science quality wind stress data in zonal, meridional, modulus, and wind stress curl sets. This data begins with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-B satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl. (This is a 1 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\ncurl (Curl of Wind Stress, Pa m-1)\nmodStress (Modulus of Wind Stress, Pa)\nupwelling (Ekman Upwelling, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQBstress1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQBstress1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQBstress1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QB_taux_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQBstress1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQBstress1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQBstress1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBstress14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBstress14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQBstress14day_LonPM180/request", "", "public", "Wind Stress, Metop-B ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (14 Day), Lon+/-180", "NOAA CoastWatch distributes science quality wind stress data in zonal, meridional, modulus, and wind stress curl sets. This data begins with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-B satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl. (This is a 14 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\ncurl (Curl of Wind Stress, Pa m-1)\nmodStress (Modulus of Wind Stress, Pa)\nupwelling (Ekman Upwelling, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQBstress14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQBstress14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQBstress14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QB_taux_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQBstress14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQBstress14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQBstress14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBstress3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBstress3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQBstress3day_LonPM180/request", "", "public", "Wind Stress, Metop-B ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (3 Day), Lon+/-180", "NOAA CoastWatch distributes science quality wind stress data in zonal, meridional, modulus, and wind stress curl sets. This data begins with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-B satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl. (This is a 3 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\ncurl (Curl of Wind Stress, Pa m-1)\nmodStress (Modulus of Wind Stress, Pa)\nupwelling (Ekman Upwelling, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQBstress3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQBstress3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQBstress3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QB_taux_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQBstress3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQBstress3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQBstress3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBstress8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBstress8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQBstress8day_LonPM180/request", "", "public", "Wind Stress, Metop-B ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (8 Day), Lon+/-180", "NOAA CoastWatch distributes science quality wind stress data in zonal, meridional, modulus, and wind stress curl sets. This data begins with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-B satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl. (This is an 8 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\ncurl (Curl of Wind Stress, Pa m-1)\nmodStress (Modulus of Wind Stress, Pa)\nupwelling (Ekman Upwelling, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQBstress8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQBstress8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQBstress8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QB_taux_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQBstress8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQBstress8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQBstress8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBstressmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBstressmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQBstressmday_LonPM180/request", "", "public", "Wind Stress, Metop-B ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (Monthly), Lon+/-180", "NOAA CoastWatch distributes science quality wind stress data in zonal, meridional, modulus, and wind stress curl sets. This data begins with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-B satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl. (This is a monthly composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\ncurl (Curl of Wind Stress, Pa m-1)\nmodStress (Modulus of Wind Stress, Pa)\nupwelling (Ekman Upwelling, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQBstressmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQBstressmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQBstressmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QB_taux_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQBstressmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQBstressmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQBstressmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSstress1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSstress1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQSstress1day_LonPM180/request", "", "public", "Wind Stress, QuikSCAT SeaWinds, 0.25\u00b0, Global, Science Quality, 1999-2009 (1 Day), Lon+/-180", "NOAA CoastWatch distributes science quality wind stress data in zonal, meridional, modulus, and wind stress curl sets. This data begins with wind velocity measurements from the SeaWinds instrument onboard NASA's QuikSCAT satellite. SeaWinds is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl. (This is a 1 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\ncurl (Curl of Wind Stress, Pa m-1)\nmodStress (Modulus of Wind Stress, Pa)\nupwelling (Ekman Upwelling, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQSstress1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQSstress1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQSstress1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QS_taux_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQSstress1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQSstress1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQSstress1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSstress14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSstress14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQSstress14day_LonPM180/request", "", "public", "Wind Stress, QuikSCAT SeaWinds, 0.25\u00b0, Global, Science Quality, 1999-2009 (14 Day), Lon+/-180", "NOAA CoastWatch distributes science quality wind stress data in zonal, meridional, modulus, and wind stress curl sets. This data begins with wind velocity measurements from the SeaWinds instrument onboard NASA's QuikSCAT satellite. SeaWinds is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl. (This is a 14 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\ncurl (Curl of Wind Stress, Pa m-1)\nmodStress (Modulus of Wind Stress, Pa)\nupwelling (Ekman Upwelling, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQSstress14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQSstress14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQSstress14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QS_taux_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQSstress14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQSstress14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQSstress14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSstress3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSstress3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQSstress3day_LonPM180/request", "", "public", "Wind Stress, QuikSCAT SeaWinds, 0.25\u00b0, Global, Science Quality, 1999-2009 (3 Day), Lon+/-180", "NOAA CoastWatch distributes science quality wind stress data in zonal, meridional, modulus, and wind stress curl sets. This data begins with wind velocity measurements from the SeaWinds instrument onboard NASA's QuikSCAT satellite. SeaWinds is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl. (This is a 3 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\ncurl (Curl of Wind Stress, Pa m-1)\nmodStress (Modulus of Wind Stress, Pa)\nupwelling (Ekman Upwelling, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQSstress3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQSstress3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQSstress3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QS_taux_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQSstress3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQSstress3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQSstress3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSstress8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSstress8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQSstress8day_LonPM180/request", "", "public", "Wind Stress, QuikSCAT SeaWinds, 0.25\u00b0, Global, Science Quality, 1999-2009 (8 Day), Lon+/-180", "NOAA CoastWatch distributes science quality wind stress data in zonal, meridional, modulus, and wind stress curl sets. This data begins with wind velocity measurements from the SeaWinds instrument onboard NASA's QuikSCAT satellite. SeaWinds is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl. (This is an 8 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\ncurl (Curl of Wind Stress, Pa m-1)\nmodStress (Modulus of Wind Stress, Pa)\nupwelling (Ekman Upwelling, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQSstress8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQSstress8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQSstress8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QS_taux_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQSstress8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQSstress8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQSstress8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSstressmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSstressmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQSstressmday_LonPM180/request", "", "public", "Wind Stress, QuikSCAT SeaWinds, 0.25\u00b0, Global, Science Quality, 1999-2009 (Monthly), Lon+/-180", "NOAA CoastWatch distributes science quality wind stress data in zonal, meridional, modulus, and wind stress curl sets. This data begins with wind velocity measurements from the SeaWinds instrument onboard NASA's QuikSCAT satellite. SeaWinds is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl. (This is a monthly composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ntaux (Zonal Wind Stress, Pa)\ntauy (Meridional Wind Stress, Pa)\ncurl (Curl of Wind Stress, Pa m-1)\nmodStress (Modulus of Wind Stress, Pa)\nupwelling (Ekman Upwelling, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQSstressmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQSstressmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQSstressmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QS_taux_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQSstressmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQSstressmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQSstressmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMwind1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMwind1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQMwind1day_LonPM180/request", "", "public", "Wind, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (1 Day), Lon+/-180", "NOAA CoastWatch distributes near real time wind data originating with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is a 1 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nx_wind (Zonal Wind, m s-1)\ny_wind (Meridional Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQMwind1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQMwind1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQMwind1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QM_ux10_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQMwind1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQMwind1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQMwind1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMwind14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMwind14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQMwind14day_LonPM180/request", "", "public", "Wind, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (14 Day), Lon+/-180", "NOAA CoastWatch distributes near real time wind data originating with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is a 14 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nx_wind (Zonal Wind, m s-1)\ny_wind (Meridional Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQMwind14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQMwind14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQMwind14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QM_ux10_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQMwind14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQMwind14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQMwind14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMwind3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMwind3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQMwind3day_LonPM180/request", "", "public", "Wind, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (3 Day), Lon+/-180", "NOAA CoastWatch distributes near real time wind data originating with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is a 3 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nx_wind (Zonal Wind, m s-1)\ny_wind (Meridional Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQMwind3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQMwind3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQMwind3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QM_ux10_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQMwind3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQMwind3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQMwind3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMwind8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMwind8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQMwind8day_LonPM180/request", "", "public", "Wind, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (8 Day), Lon+/-180", "NOAA CoastWatch distributes near real time wind data originating with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is an 8 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nx_wind (Zonal Wind, m s-1)\ny_wind (Meridional Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQMwind8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQMwind8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQMwind8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QM_ux10_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQMwind8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQMwind8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQMwind8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMwindmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMwindmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQMwindmday_LonPM180/request", "", "public", "Wind, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (Monthly), Lon+/-180", "NOAA CoastWatch distributes near real time wind data originating with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is a monthly composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nx_wind (Zonal Wind, m s-1)\ny_wind (Meridional Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQMwindmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQMwindmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQMwindmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QM_ux10_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQMwindmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQMwindmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQMwindmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMdivmod1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMdivmod1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQMdivmod1day_LonPM180/request", "", "public", "Wind, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present, Divergence and Modulus (1 Day), Lon+/-180", "NOAA CoastWatch distributes near real time divergence and modulus wind data originating with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is a 1 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndivw (Wind Divergence, s-1)\nmod (Modulus of Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQMdivmod1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQMdivmod1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQMdivmod1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QM_divw_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQMdivmod1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQMdivmod1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQMdivmod1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMdivmod14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMdivmod14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQMdivmod14day_LonPM180/request", "", "public", "Wind, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present, Divergence and Modulus (14 Day), Lon+/-180", "NOAA CoastWatch distributes near real time divergence and modulus wind data originating with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is a 14 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndivw (Wind Divergence, s-1)\nmod (Modulus of Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQMdivmod14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQMdivmod14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQMdivmod14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QM_divw_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQMdivmod14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQMdivmod14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQMdivmod14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMdivmod3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMdivmod3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQMdivmod3day_LonPM180/request", "", "public", "Wind, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present, Divergence and Modulus (3 Day), Lon+/-180", "NOAA CoastWatch distributes near real time divergence and modulus wind data originating with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is a 3 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndivw (Wind Divergence, s-1)\nmod (Modulus of Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQMdivmod3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQMdivmod3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQMdivmod3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QM_divw_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQMdivmod3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQMdivmod3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQMdivmod3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMdivmod8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMdivmod8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQMdivmod8day_LonPM180/request", "", "public", "Wind, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present, Divergence and Modulus (8 Day), Lon+/-180", "NOAA CoastWatch distributes near real time divergence and modulus wind data originating with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is an 8 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndivw (Wind Divergence, s-1)\nmod (Modulus of Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQMdivmod8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQMdivmod8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQMdivmod8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QM_divw_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQMdivmod8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQMdivmod8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQMdivmod8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMdivmodmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMdivmodmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQMdivmodmday_LonPM180/request", "", "public", "Wind, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present, Divergence and Modulus (Monthly), Lon+/-180", "NOAA CoastWatch distributes near real time divergence and modulus wind data originating with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is a monthly composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndivw (Wind Divergence, s-1)\nmod (Modulus of Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQMdivmodmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQMdivmodmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQMdivmodmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QM_divw_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQMdivmodmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQMdivmodmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQMdivmodmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAwind1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAwind1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQAwind1day_LonPM180/request", "", "public", "Wind, Metop-A ASCAT, 0.25\u00b0, Global, Near Real Time, 2009-present (1 Day), Lon+/-180", "NOAA CoastWatch distributes near real time wind data originating with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-A satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is a 1 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nx_wind (Zonal Wind, m s-1)\ny_wind (Meridional Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQAwind1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQAwind1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQAwind1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QA_ux10_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQAwind1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQAwind1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQAwind1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAwind14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAwind14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQAwind14day_LonPM180/request", "", "public", "Wind, Metop-A ASCAT, 0.25\u00b0, Global, Near Real Time, 2009-present (14 Day), Lon+/-180", "NOAA CoastWatch distributes near real time wind data originating with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-A satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is a 14 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nx_wind (Zonal Wind, m s-1)\ny_wind (Meridional Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQAwind14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQAwind14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQAwind14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QA_ux10_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQAwind14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQAwind14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQAwind14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAwind3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAwind3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQAwind3day_LonPM180/request", "", "public", "Wind, Metop-A ASCAT, 0.25\u00b0, Global, Near Real Time, 2009-present (3 Day), Lon+/-180", "NOAA CoastWatch distributes near real time wind data originating with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-A satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is a 3 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nx_wind (Zonal Wind, m s-1)\ny_wind (Meridional Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQAwind3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQAwind3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQAwind3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QA_ux10_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQAwind3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQAwind3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQAwind3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAwind8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAwind8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQAwind8day_LonPM180/request", "", "public", "Wind, Metop-A ASCAT, 0.25\u00b0, Global, Near Real Time, 2009-present (8 Day), Lon+/-180", "NOAA CoastWatch distributes near real time wind data originating with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-A satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is an 8 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nx_wind (Zonal Wind, m s-1)\ny_wind (Meridional Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQAwind8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQAwind8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQAwind8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QA_ux10_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQAwind8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQAwind8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQAwind8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAwindmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAwindmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQAwindmday_LonPM180/request", "", "public", "Wind, Metop-A ASCAT, 0.25\u00b0, Global, Near Real Time, 2009-present (Monthly), Lon+/-180", "NOAA CoastWatch distributes near real time wind data originating with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-A satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is a monthly composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nx_wind (Zonal Wind, m s-1)\ny_wind (Meridional Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQAwindmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQAwindmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQAwindmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QA_ux10_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQAwindmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQAwindmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQAwindmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAdivmod1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAdivmod1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQAdivmod1day_LonPM180/request", "", "public", "Wind, Metop-A ASCAT, 0.25\u00b0, Global, Near Real Time, 2009-present, Divergence and Modulus (1 Day), Lon+/-180", "NOAA CoastWatch distributes near real time divergence and modulus wind data originating with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-A satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is a 1 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndivw (Wind Divergence, s-1)\nmod (Modulus of Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQAdivmod1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQAdivmod1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQAdivmod1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QA_divw_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQAdivmod1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQAdivmod1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQAdivmod1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAdivmod14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAdivmod14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQAdivmod14day_LonPM180/request", "", "public", "Wind, Metop-A ASCAT, 0.25\u00b0, Global, Near Real Time, 2009-present, Divergence and Modulus (14 Day), Lon+/-180", "NOAA CoastWatch distributes near real time divergence and modulus wind data originating with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-A satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is a 14 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndivw (Wind Divergence, s-1)\nmod (Modulus of Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQAdivmod14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQAdivmod14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQAdivmod14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QA_divw_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQAdivmod14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQAdivmod14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQAdivmod14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAdivmod3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAdivmod3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQAdivmod3day_LonPM180/request", "", "public", "Wind, Metop-A ASCAT, 0.25\u00b0, Global, Near Real Time, 2009-present, Divergence and Modulus (3 Day), Lon+/-180", "NOAA CoastWatch distributes near real time divergence and modulus wind data originating with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-A satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is a 3 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndivw (Wind Divergence, s-1)\nmod (Modulus of Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQAdivmod3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQAdivmod3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQAdivmod3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QA_divw_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQAdivmod3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQAdivmod3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQAdivmod3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAdivmod8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAdivmod8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQAdivmod8day_LonPM180/request", "", "public", "Wind, Metop-A ASCAT, 0.25\u00b0, Global, Near Real Time, 2009-present, Divergence and Modulus (8 Day), Lon+/-180", "NOAA CoastWatch distributes near real time divergence and modulus wind data originating with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-A satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is an 8 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndivw (Wind Divergence, s-1)\nmod (Modulus of Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQAdivmod8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQAdivmod8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQAdivmod8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QA_divw_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQAdivmod8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQAdivmod8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQAdivmod8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAdivmodmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQAdivmodmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQAdivmodmday_LonPM180/request", "", "public", "Wind, Metop-A ASCAT, 0.25\u00b0, Global, Near Real Time, 2009-present, Divergence and Modulus (Monthly), Lon+/-180", "NOAA CoastWatch distributes near real time divergence and modulus wind data originating with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-A satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is a monthly composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndivw (Wind Divergence, s-1)\nmod (Modulus of Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQAdivmodmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQAdivmodmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQAdivmodmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QA_divw_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQAdivmodmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQAdivmodmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQAdivmodmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBwind1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBwind1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQBwind1day_LonPM180/request", "", "public", "Wind, Metop-B ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (1 Day), Lon+/-180", "NOAA CoastWatch distributes near real time wind data originating with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-B satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is a 1 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nx_wind (Zonal Wind, m s-1)\ny_wind (Meridional Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQBwind1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQBwind1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQBwind1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QB_ux10_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQBwind1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQBwind1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQBwind1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBwind14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBwind14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQBwind14day_LonPM180/request", "", "public", "Wind, Metop-B ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (14 Day), Lon+/-180", "NOAA CoastWatch distributes near real time wind data originating with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-B satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is a 14 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nx_wind (Zonal Wind, m s-1)\ny_wind (Meridional Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQBwind14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQBwind14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQBwind14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QB_ux10_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQBwind14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQBwind14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQBwind14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBwind3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBwind3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQBwind3day_LonPM180/request", "", "public", "Wind, Metop-B ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (3 Day), Lon+/-180", "NOAA CoastWatch distributes near real time wind data originating with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-B satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is a 3 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nx_wind (Zonal Wind, m s-1)\ny_wind (Meridional Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQBwind3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQBwind3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQBwind3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QB_ux10_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQBwind3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQBwind3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQBwind3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBwind8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBwind8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQBwind8day_LonPM180/request", "", "public", "Wind, Metop-B ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (8 Day), Lon+/-180", "NOAA CoastWatch distributes near real time wind data originating with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-B satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is an 8 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nx_wind (Zonal Wind, m s-1)\ny_wind (Meridional Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQBwind8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQBwind8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQBwind8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QB_ux10_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQBwind8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQBwind8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQBwind8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBwindmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBwindmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQBwindmday_LonPM180/request", "", "public", "Wind, Metop-B ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (Monthly), Lon+/-180", "NOAA CoastWatch distributes near real time wind data originating with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-B satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is a monthly composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nx_wind (Zonal Wind, m s-1)\ny_wind (Meridional Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQBwindmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQBwindmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQBwindmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QB_ux10_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQBwindmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQBwindmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQBwindmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBdivmod1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBdivmod1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQBdivmod1day_LonPM180/request", "", "public", "Wind, Metop-B ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present, Divergence and Modulus (1 Day), Lon+/-180", "NOAA CoastWatch distributes near real time divergence and modulus wind data originating with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-B satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is a 1 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndivw (Wind Divergence, s-1)\nmod (Modulus of Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQBdivmod1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQBdivmod1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQBdivmod1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QB_divw_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQBdivmod1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQBdivmod1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQBdivmod1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBdivmod14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBdivmod14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQBdivmod14day_LonPM180/request", "", "public", "Wind, Metop-B ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present, Divergence and Modulus (14 Day), Lon+/-180", "NOAA CoastWatch distributes near real time divergence and modulus wind data originating with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-B satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is a 14 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndivw (Wind Divergence, s-1)\nmod (Modulus of Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQBdivmod14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQBdivmod14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQBdivmod14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QB_divw_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQBdivmod14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQBdivmod14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQBdivmod14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBdivmod3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBdivmod3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQBdivmod3day_LonPM180/request", "", "public", "Wind, Metop-B ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present, Divergence and Modulus (3 Day), Lon+/-180", "NOAA CoastWatch distributes near real time divergence and modulus wind data originating with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-B satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is a 3 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndivw (Wind Divergence, s-1)\nmod (Modulus of Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQBdivmod3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQBdivmod3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQBdivmod3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QB_divw_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQBdivmod3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQBdivmod3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQBdivmod3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBdivmod8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBdivmod8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQBdivmod8day_LonPM180/request", "", "public", "Wind, Metop-B ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present, Divergence and Modulus (8 Day), Lon+/-180", "NOAA CoastWatch distributes near real time divergence and modulus wind data originating with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-B satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is an 8 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndivw (Wind Divergence, s-1)\nmod (Modulus of Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQBdivmod8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQBdivmod8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQBdivmod8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QB_divw_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQBdivmod8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQBdivmod8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQBdivmod8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBdivmodmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQBdivmodmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQBdivmodmday_LonPM180/request", "", "public", "Wind, Metop-B ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present, Divergence and Modulus (Monthly), Lon+/-180", "NOAA CoastWatch distributes near real time divergence and modulus wind data originating with wind velocity measurements from the ASCAT instrument onboard EUMETSAT's Metop-B satellite. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity is processed to wind divergence by NOAA CoastWatch. (This is a monthly composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndivw (Wind Divergence, s-1)\nmod (Modulus of Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQBdivmodmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQBdivmodmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQBdivmodmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QB_divw_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQBdivmodmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQBdivmodmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQBdivmodmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSwind1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSwind1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQSwind1day_LonPM180/request", "", "public", "Wind, QuikSCAT SeaWinds, 0.25\u00b0, Global, Science Quality, 1999-2009 (1 Day), Lon+/-180", "Remote Sensing Inc. distributes science quality wind velocity data from the SeaWinds instrument onboard NASA's QuikSCAT satellite. SeaWinds is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity fields are provided in zonal, meridional, and modulus sets. The reference height for all wind velocities is 10 meters. (This is a 1 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nx_wind (Zonal Wind, m s-1)\ny_wind (Meridional Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQSwind1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQSwind1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQSwind1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QS_ux10_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQSwind1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQSwind1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQSwind1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSwind3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSwind3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQSwind3day_LonPM180/request", "", "public", "Wind, QuikSCAT SeaWinds, 0.25\u00b0, Global, Science Quality, 1999-2009 (3 Day), Lon+/-180", "Remote Sensing Inc. distributes science quality wind velocity data from the SeaWinds instrument onboard NASA's QuikSCAT satellite. SeaWinds is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity fields are provided in zonal, meridional, and modulus sets. The reference height for all wind velocities is 10 meters. (This is a 3 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nx_wind (Zonal Wind, m s-1)\ny_wind (Meridional Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQSwind3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQSwind3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQSwind3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QS_ux10_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQSwind3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQSwind3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQSwind3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSwind8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSwind8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQSwind8day_LonPM180/request", "", "public", "Wind, QuikSCAT SeaWinds, 0.25\u00b0, Global, Science Quality, 1999-2009 (8 Day), Lon+/-180", "Remote Sensing Inc. distributes science quality wind velocity data from the SeaWinds instrument onboard NASA's QuikSCAT satellite. SeaWinds is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity fields are provided in zonal, meridional, and modulus sets. The reference height for all wind velocities is 10 meters. (This is an 8 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nx_wind (Zonal Wind, m s-1)\ny_wind (Meridional Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQSwind8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQSwind8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQSwind8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QS_ux10_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQSwind8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQSwind8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQSwind8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSwindmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSwindmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQSwindmday_LonPM180/request", "", "public", "Wind, QuikSCAT SeaWinds, 0.25\u00b0, Global, Science Quality, 1999-2009 (Monthly), Lon+/-180", "Remote Sensing Inc. distributes science quality wind velocity data from the SeaWinds instrument onboard NASA's QuikSCAT satellite. SeaWinds is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity fields are provided in zonal, meridional, and modulus sets. The reference height for all wind velocities is 10 meters. (This is a monthly composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nx_wind (Zonal Wind, m s-1)\ny_wind (Meridional Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQSwindmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQSwindmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQSwindmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QS_ux10_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQSwindmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQSwindmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQSwindmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSdivmod1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSdivmod1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQSdivmod1day_LonPM180/request", "", "public", "Wind, QuikSCAT SeaWinds, 0.25\u00b0, Global, Science Quality, 1999-2009, Divergence and Modulus (1 Day), Lon+/-180", "Remote Sensing Inc. distributes science quality wind divergence and modulus data from the SeaWinds instrument onboard NASA's QuikSCAT satellite. SeaWinds is a microwave scatterometer designed to measure surface winds over the global ocean. The reference height is 10 meters. (This is a 1 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndivw (Wind Divergence, s-1)\nmod (Modulus of Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQSdivmod1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQSdivmod1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQSdivmod1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QS_divw_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQSdivmod1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQSdivmod1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQSdivmod1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSdivmod14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSdivmod14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQSdivmod14day_LonPM180/request", "", "public", "Wind, QuikSCAT SeaWinds, 0.25\u00b0, Global, Science Quality, 1999-2009, Divergence and Modulus (14 Day), Lon+/-180", "Remote Sensing Inc. distributes science quality wind divergence and modulus data from the SeaWinds instrument onboard NASA's QuikSCAT satellite. SeaWinds is a microwave scatterometer designed to measure surface winds over the global ocean. The reference height is 10 meters. (This is a 14 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndivw (Wind Divergence, s-1)\nmod (Modulus of Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQSdivmod14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQSdivmod14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQSdivmod14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QS_divw_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQSdivmod14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQSdivmod14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQSdivmod14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSdivmod3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSdivmod3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQSdivmod3day_LonPM180/request", "", "public", "Wind, QuikSCAT SeaWinds, 0.25\u00b0, Global, Science Quality, 1999-2009, Divergence and Modulus (3 Day), Lon+/-180", "Remote Sensing Inc. distributes science quality wind divergence and modulus data from the SeaWinds instrument onboard NASA's QuikSCAT satellite. SeaWinds is a microwave scatterometer designed to measure surface winds over the global ocean. The reference height is 10 meters. (This is a 3 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndivw (Wind Divergence, s-1)\nmod (Modulus of Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQSdivmod3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQSdivmod3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQSdivmod3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QS_divw_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQSdivmod3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQSdivmod3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQSdivmod3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSdivmod8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSdivmod8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQSdivmod8day_LonPM180/request", "", "public", "Wind, QuikSCAT SeaWinds, 0.25\u00b0, Global, Science Quality, 1999-2009, Divergence and Modulus (8 Day), Lon+/-180", "Remote Sensing Inc. distributes science quality wind divergence and modulus data from the SeaWinds instrument onboard NASA's QuikSCAT satellite. SeaWinds is a microwave scatterometer designed to measure surface winds over the global ocean. The reference height is 10 meters. (This is an 8 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndivw (Wind Divergence, s-1)\nmod (Modulus of Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQSdivmod8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQSdivmod8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQSdivmod8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QS_divw_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQSdivmod8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQSdivmod8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQSdivmod8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSdivmodmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSdivmodmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQSdivmodmday_LonPM180/request", "", "public", "Wind, QuikSCAT SeaWinds, 0.25\u00b0, Global, Science Quality, 1999-2009, Divergence and Modulus (Monthly), Lon+/-180", "Remote Sensing Inc. distributes science quality wind divergence and modulus data from the SeaWinds instrument onboard NASA's QuikSCAT satellite. SeaWinds is a microwave scatterometer designed to measure surface winds over the global ocean. The reference height is 10 meters. (This is a monthly composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndivw (Wind Divergence, s-1)\nmod (Modulus of Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQSdivmodmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQSdivmodmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQSdivmodmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QS_divw_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQSdivmodmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQSdivmodmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQSdivmodmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSwind4day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdQSwind4day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdQSwind4day_LonPM180/request", "", "public", "Wind, QuikSCAT SeaWinds, 0.25\u00b0, Global, Science Quality, 2007-2007 (4 Day), Lon+/-180", "Remote Sensing Inc. distributes science quality wind velocity data from the SeaWinds instrument onboard NASA's QuikSCAT satellite. SeaWinds is a microwave scatterometer designed to measure surface winds over the global ocean. Wind velocity fields are provided in zonal, meridional, and modulus sets. The reference height for all wind velocities is 10 meters. (This is a 4 day composite.)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nx_wind (Zonal Wind, m s-1)\ny_wind (Meridional Wind, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdQSwind4day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdQSwind4day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdQSwind4day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/QS_ux10_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdQSwind4day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdQSwind4day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdQSwind4day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann1n_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann1n_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09ann1n_LonPM180/request", "", "public", "World Ocean Atlas 2009, Annual Climatology, 1 degree, Nitrate, Phosphate, Silicate, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (1 degree grid) climatological fields of in situ nitrate, phosphate, and silicate at standard depth levels for an annual compositing period for the World Ocean based on data from 1950-05-23 through 2008-02-16. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 1 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nnitrate_an (Objectively Analyzed Nitrate Climatology, micromoles/l)\nnitrate_mn (Mean of Nitrate Observations, micromoles/l)\nnitrate_dd (Number of Nitrate Observations, count)\nnitrate_ma (Seasonal or Monthly Climatology minus Annual Climatology, micromoles/l)\nnitrate_sd (Standard Deviation of Nitrate Observations, micromoles/l)\nnitrate_se (Standard Error of Nitrate Observations, micromoles/l)\nnitrate_gp (Number of Nitrate Mean Values within Radius of Influence, count)\nphosphate_an (Objectively Analyzed Phosphate Climatology, micromoles/l)\nphosphate_mn (Mean of Phosphate Observations, micromoles/l)\nphosphate_dd (Number of Phosphate Observations, count)\nphosphate_ma (Seasonal or Monthly Climatology minus Annual Climatology, micromoles/l)\nphosphate_sd (Standard Deviation of Phosphate Observations, micromoles/l)\nphosphate_se (Standard Error of Phosphate Observations, micromoles/l)\nphosphate_gp (Number of Phosphate Mean Values within Radius of Influence, count)\nsilicate_an (Objectively Analyzed Silicate Climatology, micromoles/l)\nsilicate_mn (Mean of Silicate Observations, micromoles/l)\nsilicate_dd (Number of Silicate Observations, count)\nsilicate_ma (Seasonal or Monthly Climatology minus Annual Climatology, micromoles/l)\nsilicate_sd (Standard Deviation of Silicate Observations, micromoles/l)\nsilicate_se (Standard Error of Silicate Observations, micromoles/l)\nsilicate_gp (Number of Silicate Mean Values within Radius of Influence, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09ann1n_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09ann1n_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09ann1n_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09ann1n_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09ann1n_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09ann1n_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann1t_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann1t_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09ann1t_LonPM180/request", "", "public", "World Ocean Atlas 2009, Annual Climatology, 1 degree, Temperature, Salinity, Oxygen, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (1 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for an annual compositing period for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 1 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_an (Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_ma (Seasonal or Monthly Climatology minus Annual Climatology, degree_C)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\ntemperature_gp (Number of Temperature Mean Values within Radius of Influence, count)\nsalinity_an (Objectively Analyzed Practical Salinity Climatology, PSS-78)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_ma (Seasonal or Monthly Climatology minus Annual Climatology, PSU)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\nsalinity_gp (Number of Salinity Mean Values within Radius of Influence, count)\noxygenSat_an (Objectively Analyzed Oxygen Saturation Climatology, 1)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_ma (Seasonal or Monthly Climatology minus Annual Climatology, 1)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\noxygenSat_gp (Number of Oxygen Saturation Mean Values within Radius of Influence, count)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09ann1t_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09ann1t_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09ann1t_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09ann1t_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09ann1t_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09ann1t_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann5n_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann5n_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09ann5n_LonPM180/request", "", "public", "World Ocean Atlas 2009, Annual Climatology, 5 degree, Nitrate, Phosphate, Silicate, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ nitrate, phosphate, and silicate at standard depth levels for an annual compositing period for the World Ocean based on data from 1933-07-24 through 2008-02-16. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nnitrate_mn (Mean of Nitrate Observations, micromoles/l)\nnitrate_dd (Number of Nitrate Observations, count)\nnitrate_sd (Standard Deviation of Nitrate Observations, micromoles/l)\nnitrate_se (Standard Error of Nitrate Observations, micromoles/l)\nphosphate_mn (Mean of Phosphate Observations, micromoles/l)\nphosphate_dd (Number of Phosphate Observations, count)\nphosphate_sd (Standard Deviation of Phosphate Observations, micromoles/l)\nphosphate_se (Standard Error of Phosphate Observations, micromoles/l)\nsilicate_mn (Mean of Silicate Observations, micromoles/l)\nsilicate_dd (Number of Silicate Observations, count)\nsilicate_sd (Standard Deviation of Silicate Observations, micromoles/l)\nsilicate_se (Standard Error of Silicate Observations, micromoles/l)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09ann5n_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09ann5n_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09ann5n_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09ann5n_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09ann5n_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09ann5n_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann5t_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09ann5t_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09ann5t_LonPM180/request", "", "public", "World Ocean Atlas 2009, Annual Climatology, 5 degree, Temperature, Salinity, Oxygen, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for an annual compositing period for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\ndisOxygen_mn (Mean of Dissolved Oxygen Observations, ml/l)\ndisOxygen_dd (Number of Dissolved Oxygen Observations, count)\ndisOxygen_sd (Standard Deviation of Dissolved Oxygen Observations, ml/l)\ndisOxygen_se (Standard Error of Dissolved Oxygen Observations, ml/l)\nAOU_mn (Mean of Apparent Oxygen Utilization Observations, ml/l)\nAOU_dd (Number of Apparent Oxygen Utilization Observations, count)\nAOU_sd (Standard Deviation of Apparent Oxygen Utilization Observations, ml/l)\nAOU_se (Standard Error of Apparent Oxygen Utilization Observations, ml/l)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09ann5t_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09ann5t_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09ann5t_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09ann5t_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09ann5t_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09ann5t_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon1n_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon1n_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09mon1n_LonPM180/request", "", "public", "World Ocean Atlas 2009, Monthly Climatology, 1 degree, Nitrate, Phosphate, Silicate, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (1 degree grid) climatological fields of in situ nitrate, phosphate, and silicate at standard depth levels for monthly compositing periods for the World Ocean based on data from 1950-05-23 through 2008-02-16. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 1 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nnitrate_an (Objectively Analyzed Nitrate Climatology, micromoles/l)\nnitrate_mn (Mean of Nitrate Observations, micromoles/l)\nnitrate_dd (Number of Nitrate Observations, count)\nnitrate_ma (Monthly Nitrate Climatology minus Annual Climatology, micromoles/l)\nnitrate_sd (Standard Deviation of Nitrate Observations, micromoles/l)\nnitrate_se (Standard Error of Nitrate Observations, micromoles/l)\nnitrate_oa (Nitrate Mean minus Objectively Analyzed Climatology, micromoles/l)\nnitrate_gp (Number of Nitrate Mean Values within Radius of Influence, count)\nphosphate_an (Objectively Analyzed Phosphate Climatology, micromoles/l)\nphosphate_mn (Mean of Phosphate Observations, micromoles/l)\nphosphate_dd (Number of Phosphate Observations, count)\nphosphate_ma (Monthly Phosphate Climatology minus Annual Climatology, micromoles/l)\nphosphate_sd (Standard Deviation of Phosphate Observations, micromoles/l)\nphosphate_se (Standard Error of Phosphate Observations, micromoles/l)\nphosphate_oa (Phosphate Mean minus Objectively Analyzed Climatology, micromoles/l)\nphosphate_gp (Number of Phosphate Mean Values within Radius of Influence, count)\nsilicate_an (Objectively Analyzed Silicate Climatology, micromoles/l)\nsilicate_mn (Mean of Silicate Observations, micromoles/l)\nsilicate_dd (Number of Silicate Observations, count)\nsilicate_ma (Monthly Silicate Climatology minus Annual Climatology, micromoles/l)\nsilicate_sd (Standard Deviation of Silicate Observations, micromoles/l)\nsilicate_se (Standard Error of Silicate Observations, micromoles/l)\nsilicate_oa (Silicate Mean minus Objectively Analyzed Climatology, micromoles/l)\nsilicate_gp (Number of Silicate Mean Values within Radius of Influence, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09mon1n_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09mon1n_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09mon1n_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09mon1n_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09mon1n_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09mon1n_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon1t_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon1t_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09mon1t_LonPM180/request", "", "public", "World Ocean Atlas 2009, Monthly Climatology, 1 degree, Temperature, Salinity, Oxygen, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (1 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for monthly compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 1 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_an (Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_ma (Monthly Temperature Climatology minus Annual Climatology, degree_C)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\ntemperature_oa (Temperature Mean minus Objectively Analyzed Climatology, degree_C)\ntemperature_gp (Number of Temperature Mean Values within Radius of Influence, count)\nsalinity_an (Objectively Analyzed Practical Salinity Climatology, PSS-78)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_ma (Monthly Salinity Climatology minus Annual Climatology, PSU)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\nsalinity_oa (Salinity Mean minus Objectively Analyzed Climatology, PSU)\nsalinity_gp (Number of Salinity Mean Values within Radius of Influence, count)\noxygenSat_an (Objectively Analyzed Oxygen Saturation Climatology, 1)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_ma (Monthly Oxygen Saturation Climatology minus Annual Climatology, 1)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09mon1t_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09mon1t_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09mon1t_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09mon1t_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09mon1t_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09mon1t_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon5n_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon5n_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09mon5n_LonPM180/request", "", "public", "World Ocean Atlas 2009, Monthly Climatology, 5 degree, Nitrate, Phosphate, Silicate, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ nitrate, phosphate, and silicate at standard depth levels for monthly compositing periods for the World Ocean based on data from 1950-05-23 through 2008-02-16. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nnitrate_mn (Mean of Nitrate Observations, micromoles/l)\nnitrate_dd (Number of Nitrate Observations, count)\nnitrate_sd (Standard Deviation of Nitrate Observations, micromoles/l)\nnitrate_se (Standard Error of Nitrate Observations, micromoles/l)\nphosphate_mn (Mean of Phosphate Observations, micromoles/l)\nphosphate_dd (Number of Phosphate Observations, count)\nphosphate_sd (Standard Deviation of Phosphate Observations, micromoles/l)\nphosphate_se (Standard Error of Phosphate Observations, micromoles/l)\nsilicate_mn (Mean of Silicate Observations, micromoles/l)\nsilicate_dd (Number of Silicate Observations, count)\nsilicate_sd (Standard Deviation of Silicate Observations, micromoles/l)\nsilicate_se (Standard Error of Silicate Observations, micromoles/l)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09mon5n_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09mon5n_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09mon5n_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09mon5n_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09mon5n_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09mon5n_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon5t_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09mon5t_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09mon5t_LonPM180/request", "", "public", "World Ocean Atlas 2009, Monthly Climatology, 5 degree, Temperature, Salinity, Oxygen, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for monthly compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsslinity_dd (Number of Salinity Observations, count)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\ndisOxygen_mn (Mean of Dissolved Oxygen Observations, ml/l)\ndisOxygen_dd (Number of Dissolved Oxygen Observations, count)\ndisOxygen_sd (Standard Deviation of Dissolved Oxygen Observations, ml/l)\ndisOxygen_se (Standard Error of Dissolved Oxygen Observations, ml/l)\nAOU_mn (Mean of Apparent Oxygen Utilization Observations, ml/l)\nAOU_dd (Number of Apparent Oxygen Utilization Observations, count)\nAOU_sd (Standard Deviation of Apparent Oxygen Utilization Observations, ml/l)\nAOU_se (Standard Error of Apparent Oxygen Utilization Observations, ml/l)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09mon5t_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09mon5t_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09mon5t_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09mon5t_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09mon5t_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09mon5t_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea1n_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea1n_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09sea1n_LonPM180/request", "", "public", "World Ocean Atlas 2009, Seasonal Climatology, 1 degree, Nitrate, Phosphate, Silicate, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (1 degree grid) climatological fields of in situ nitrate, phosphate, and silicate at standard depth levels for seasonal compositing periods for the World Ocean based on data from 1950-05-23 through 2008-02-16. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 1 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nnitrate_an (Objectively Analyzed Nitrate Climatology, micromoles/l)\nnitrate_mn (Mean of Nitrate Observations, micromoles/l)\nnitrate_dd (Number of Nitrate Observations, count)\nnitrate_ma (Seasonal Nitrate Climatology minus Annual Climatology, micromoles/l)\nnitrate_sd (Standard Deviation of Nitrate Observations, micromoles/l)\nnitrate_se (Standard Error of Nitrate Observations, micromoles/l)\nnitrate_oa (Nitrate Mean minus Objectively Analyzed Climatology, micromoles/l)\nnitrate_gp (Number of Nitrate Mean Values within Radius of Influence, count)\nphosphate_an (Objectively Analyzed Phosphate Climatology, micromoles/l)\nphosphate_mn (Mean of Phosphate Observations, micromoles/l)\nphosphate_dd (Number of Phosphate Observations, count)\nphosphate_ma (Seasonal Phosphate Climatology minus Annual Climatology, micromoles/l)\nphosphate_sd (Standard Deviation of Phosphate Observations, micromoles/l)\nphosphate_se (Standard Error of Phosphate Observations, micromoles/l)\nphosphate_oa (Phosphate Mean minus Objectively Analyzed Climatology, micromoles/l)\nphosphate_gp (Number of Phosphate Mean Values within Radius of Influence, count)\nsilicate_an (Objectively Analyzed Silicate Climatology, micromoles/l)\nsilicate_mn (Mean of Silicate Observations, micromoles/l)\nsilicate_dd (Number of Silicate Observations, count)\nsilicate_ma (Seasonal Silicate Climatology minus Annual Climatology, micromoles/l)\nsilicate_sd (Standard Deviation of Silicate Observations, micromoles/l)\nsilicate_se (Standard Error of Silicate Observations, micromoles/l)\nsilicate_oa (Silicate Mean minus Objectively Analyzed Climatology, micromoles/l)\nsilicate_gp (Number of Silicate Mean Values within Radius of Influence, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09sea1n_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09sea1n_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09sea1n_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09sea1n_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09sea1n_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09sea1n_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea1t_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea1t_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09sea1t_LonPM180/request", "", "public", "World Ocean Atlas 2009, Seasonal Climatology, 1 degree, Temperature, Salinity, Oxygen, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (1 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for seasonal compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 1 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_an (Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_ma (Temperature Monthly Minus Annual Climatology, degree_C)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\ntemperature_oa (Statistical Mean minus Objectively Analyzed Temperature Climatology, degree_C)\ntemperature_gp (Number of Mean Temperature Values within Radius of Influence, count)\nsalinity_an (Objectively Analyzed Practical Salinity Climatology, PSS-78)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_ma (Seasonal Salinity Climatology minus Annual Climatology, PSU)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of the Statistical Mean, PSU)\nsalinity_oa (Salinity Mean minus Objectively Analyzed Climatology, PSU)\nsalinity_gp (Number of Salinity Mean Values within Radius of Influence, count)\noxygenSat_an (Objectively Analyzed Oxygen Saturation Climatology, 1)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_ma (Seasonal Oxygen Saturation Climatology minus Annual Climatology, 1)\noxygenSat_sd (Standard Deviation of Oxygen Saturation, 1)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09sea1t_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09sea1t_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09sea1t_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09sea1t_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09sea1t_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09sea1t_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea5n_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea5n_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09sea5n_LonPM180/request", "", "public", "World Ocean Atlas 2009, Seasonal Climatology, 5 degree, Nitrate, Phosphate, Silicate, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ nitrate, phosphate, and silicate at standard depth levels for seasonal compositing periods for the World Ocean based on data from 1950-05-23 through 2008-02-16. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nnitrate_mn (Mean of Nitrate Observations, micromoles/l)\nnitrate_dd (Number of Nitrate Observations, count)\nnitrate_sd (Standard Deviation of Nitrate Observations, micromoles/l)\nnitrate_se (Standard Error of Nitrate Observations, micromoles/l)\nphosphate_mn (Mean of Phosphate Observations, micromoles/l)\nphosphate_dd (Number of Phosphate Observations, count)\nphosphate_sd (Standard Deviation of Phosphate Observations, micromoles/l)\nphosphate_se (Standard Error of Phosphate Observations, micromoles/l)\nsilicate_mn (Mean of Silicate Observations, micromoles/l)\nsilicate_dd (Number of Silicate Observations, count)\nsilicate_sd (Standard Deviation of Silicate Observations, micromoles/l)\nsilicate_se (Standard Error of Silicate Observations, micromoles/l)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09sea5n_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09sea5n_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09sea5n_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09sea5n_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09sea5n_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09sea5n_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea5t_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nodcWoa09sea5t_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nodcWoa09sea5t_LonPM180/request", "", "public", "World Ocean Atlas 2009, Seasonal Climatology, 5 degree, Temperature, Salinity, Oxygen, Lon+/-180", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for seasonal compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ntemperature_mn (Mean of Temperature Observations, degree_C)\ntemperature_dd (Number of Temperature Observations, count)\ntemperature_sd (Standard Deviation of Temperature Observations, degree_C)\ntemperature_se (Standard Error of Temperature Observations, degree_C)\nsalinity_mn (Mean of Practical Salinity Observations, PSS-78)\nsalinity_dd (Number of Salinity Observations, count)\nsalinity_sd (Standard Deviation of Salinity Observations, PSU)\nsalinity_se (Standard Error of Salinity Observations, PSU)\noxygenSat_mn (Mean of Oxygen Saturation Observations, 1)\noxygenSat_dd (Number of Oxygen Saturation Observations, count)\noxygenSat_sd (Standard Deviation of Oxygen Saturation Observations, 1)\noxygenSat_se (Standard Error of Oxygen Saturation Observations, 1)\ndisOxygen_mn (Mean of Dissolved Oxygen Observations, ml/l)\ndisOxygen_dd (Number of Dissolved Oxygen Observations, count)\ndisOxygen_sd (Standard Deviation of Dissolved Oxygen Observations, ml/l)\ndisOxygen_se (Standard Error of Dissolved Oxygen Observations, ml/l)\nAOU_mn (Mean of Apparent Oxygen Utilization Observations, ml/l)\nAOU_dd (Number of Apparent Oxygen Utilization Observations, count)\nAOU_sd (Standard Deviation of Apparent Oxygen Utilization Observations, ml/l)\nAOU_se (Standard Error of Apparent Oxygen Utilization Observations, ml/l)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcWoa09sea5t_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcWoa09sea5t_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09sea5t_LonPM180/index.json", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcWoa09sea5t_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcWoa09sea5t_LonPM180&showErrors=false&email=", "NOAA NODC", "nodcWoa09sea5t_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_32af_5e91_cea7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_32af_5e91_cea7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_32af_5e91_cea7/request", "", "public", "World Ocean Atlas 2013 version 2 : apparent_oxygen_utilization Annual 1.00 degree, 0000", "Climatological mean Apparent Oxygen Utilization for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nA_an (Objectively analyzed mean fields for apparent_oxygen_utilization at standard depth levels., milliliters_per_liter)\nA_mn (Average of all unflagged interpolated values at each standard depth level for apparent_oxygen_utilization in each grid-square which contain at least one measurement., milliliters_per_liter)\nA_dd (The number of observations of apparent_oxygen_utilization in each grid-square at each standard depth level., 1)\nA_sd (The standard deviation about the statistical mean of apparent_oxygen_utilization in each grid-square at each standard depth level., milliliters_per_liter)\nA_se (The standard error about the statistical mean of apparent_oxygen_utilization in each grid-square at each standard depth level., milliliters_per_liter)\nA_oa (statistical mean value minus the objectively analyzed mean value for apparent_oxygen_utilization., milliliters_per_liter)\nA_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for apparent_oxygen_utilization., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_32af_5e91_cea7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_32af_5e91_cea7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_32af_5e91_cea7/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_32af_5e91_cea7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_32af_5e91_cea7&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_32af_5e91_cea7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8f5c_4ef9_4d59", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8f5c_4ef9_4d59.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_8f5c_4ef9_4d59/request", "", "public", "World Ocean Atlas 2013 version 2 : apparent_oxygen_utilization Annual 1.00 degree, 0000", "Climatological mean Apparent Oxygen Utilization for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nA_an (Objectively analyzed mean fields for apparent_oxygen_utilization at standard depth levels., milliliters_per_liter)\nA_mn (Average of all unflagged interpolated values at each standard depth level for apparent_oxygen_utilization in each grid-square which contain at least one measurement., milliliters_per_liter)\nA_dd (The number of observations of apparent_oxygen_utilization in each grid-square at each standard depth level., 1)\nA_sd (The standard deviation about the statistical mean of apparent_oxygen_utilization in each grid-square at each standard depth level., milliliters_per_liter)\nA_se (The standard error about the statistical mean of apparent_oxygen_utilization in each grid-square at each standard depth level., milliliters_per_liter)\nA_oa (statistical mean value minus the objectively analyzed mean value for apparent_oxygen_utilization., milliliters_per_liter)\nA_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for apparent_oxygen_utilization., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_8f5c_4ef9_4d59_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_8f5c_4ef9_4d59_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_8f5c_4ef9_4d59/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_8f5c_4ef9_4d59.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_8f5c_4ef9_4d59&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_8f5c_4ef9_4d59"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_d551_2ef0_f716", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_d551_2ef0_f716.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_d551_2ef0_f716/request", "", "public", "World Ocean Atlas 2013 version 2 : apparent_oxygen_utilization Annual 5.00 degree, 0000", "Climatological mean Apparent Oxygen Utilization for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nA_mn (Average of all unflagged interpolated values at each standard depth level for apparent_oxygen_utilization in each grid-square which contain at least one measurement., milliliters_per_liter)\nA_dd (The number of observations of apparent_oxygen_utilization in each grid-square at each standard depth level., 1)\nA_sd (The standard deviation about the statistical mean of apparent_oxygen_utilization in each grid-square at each standard depth level., milliliters_per_liter)\nA_se (The standard error about the statistical mean of apparent_oxygen_utilization in each grid-square at each standard depth level., milliliters_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_d551_2ef0_f716_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_d551_2ef0_f716_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_d551_2ef0_f716/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_d551_2ef0_f716.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_d551_2ef0_f716&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_d551_2ef0_f716"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_eb4b_44a1_8728", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_eb4b_44a1_8728.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_eb4b_44a1_8728/request", "", "public", "World Ocean Atlas 2013 version 2 : apparent_oxygen_utilization Annual 5.00 degree, 0000", "Climatological mean Apparent Oxygen Utilization for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nA_mn (Average of all unflagged interpolated values at each standard depth level for apparent_oxygen_utilization in each grid-square which contain at least one measurement., milliliters_per_liter)\nA_dd (The number of observations of apparent_oxygen_utilization in each grid-square at each standard depth level., 1)\nA_sd (The standard deviation about the statistical mean of apparent_oxygen_utilization in each grid-square at each standard depth level., milliliters_per_liter)\nA_se (The standard error about the statistical mean of apparent_oxygen_utilization in each grid-square at each standard depth level., milliliters_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_eb4b_44a1_8728_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_eb4b_44a1_8728_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_eb4b_44a1_8728/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_eb4b_44a1_8728.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_eb4b_44a1_8728&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_eb4b_44a1_8728"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1e36_876c_2c75", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1e36_876c_2c75.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_1e36_876c_2c75/request", "", "public", "World Ocean Atlas 2013 version 2 : apparent_oxygen_utilization November 1.00 degree, 0000", "Climatological mean Apparent Oxygen Utilization for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nA_an (Objectively analyzed mean fields for apparent_oxygen_utilization at standard depth levels., milliliters_per_liter)\nA_mn (Average of all unflagged interpolated values at each standard depth level for apparent_oxygen_utilization in each grid-square which contain at least one measurement., milliliters_per_liter)\nA_dd (The number of observations of apparent_oxygen_utilization in each grid-square at each standard depth level., 1)\nA_sd (The standard deviation about the statistical mean of apparent_oxygen_utilization in each grid-square at each standard depth level., milliliters_per_liter)\nA_se (The standard error about the statistical mean of apparent_oxygen_utilization in each grid-square at each standard depth level., milliliters_per_liter)\nA_oa (statistical mean value minus the objectively analyzed mean value for apparent_oxygen_utilization., milliliters_per_liter)\nA_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for apparent_oxygen_utilization., milliliters_per_liter)\nA_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for apparent_oxygen_utilization., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_1e36_876c_2c75_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_1e36_876c_2c75_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_1e36_876c_2c75/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_1e36_876c_2c75.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_1e36_876c_2c75&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_1e36_876c_2c75"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6268_4975_c474", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6268_4975_c474.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6268_4975_c474/request", "", "public", "World Ocean Atlas 2013 version 2 : apparent_oxygen_utilization November 1.00 degree, 0000", "Climatological mean Apparent Oxygen Utilization for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nA_an (Objectively analyzed mean fields for apparent_oxygen_utilization at standard depth levels., milliliters_per_liter)\nA_mn (Average of all unflagged interpolated values at each standard depth level for apparent_oxygen_utilization in each grid-square which contain at least one measurement., milliliters_per_liter)\nA_dd (The number of observations of apparent_oxygen_utilization in each grid-square at each standard depth level., 1)\nA_sd (The standard deviation about the statistical mean of apparent_oxygen_utilization in each grid-square at each standard depth level., milliliters_per_liter)\nA_se (The standard error about the statistical mean of apparent_oxygen_utilization in each grid-square at each standard depth level., milliliters_per_liter)\nA_oa (statistical mean value minus the objectively analyzed mean value for apparent_oxygen_utilization., milliliters_per_liter)\nA_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for apparent_oxygen_utilization., milliliters_per_liter)\nA_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for apparent_oxygen_utilization., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6268_4975_c474_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6268_4975_c474_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6268_4975_c474/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6268_4975_c474.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6268_4975_c474&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_6268_4975_c474"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ac34_ac13_f209", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ac34_ac13_f209.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_ac34_ac13_f209/request", "", "public", "World Ocean Atlas 2013 version 2 : apparent_oxygen_utilization November 5.00 degree, 0000", "Climatological mean Apparent Oxygen Utilization for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nA_mn (Average of all unflagged interpolated values at each standard depth level for apparent_oxygen_utilization in each grid-square which contain at least one measurement., milliliters_per_liter)\nA_dd (The number of observations of apparent_oxygen_utilization in each grid-square at each standard depth level., 1)\nA_sd (The standard deviation about the statistical mean of apparent_oxygen_utilization in each grid-square at each standard depth level., milliliters_per_liter)\nA_se (The standard error about the statistical mean of apparent_oxygen_utilization in each grid-square at each standard depth level., milliliters_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_ac34_ac13_f209_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_ac34_ac13_f209_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_ac34_ac13_f209/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_ac34_ac13_f209.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_ac34_ac13_f209&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_ac34_ac13_f209"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_d2dc_2ea1_2af4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_d2dc_2ea1_2af4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_d2dc_2ea1_2af4/request", "", "public", "World Ocean Atlas 2013 version 2 : apparent_oxygen_utilization November 5.00 degree, 0000", "Climatological mean Apparent Oxygen Utilization for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nA_mn (Average of all unflagged interpolated values at each standard depth level for apparent_oxygen_utilization in each grid-square which contain at least one measurement., milliliters_per_liter)\nA_dd (The number of observations of apparent_oxygen_utilization in each grid-square at each standard depth level., 1)\nA_sd (The standard deviation about the statistical mean of apparent_oxygen_utilization in each grid-square at each standard depth level., milliliters_per_liter)\nA_se (The standard error about the statistical mean of apparent_oxygen_utilization in each grid-square at each standard depth level., milliliters_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_d2dc_2ea1_2af4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_d2dc_2ea1_2af4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_d2dc_2ea1_2af4/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_d2dc_2ea1_2af4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_d2dc_2ea1_2af4&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_d2dc_2ea1_2af4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2918_3a86_bd02", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2918_3a86_bd02.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_2918_3a86_bd02/request", "", "public", "World Ocean Atlas 2013 version 2 : apparent_oxygen_utilization Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean Apparent Oxygen Utilization for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nA_an (Objectively analyzed mean fields for apparent_oxygen_utilization at standard depth levels., milliliters_per_liter)\nA_mn (Average of all unflagged interpolated values at each standard depth level for apparent_oxygen_utilization in each grid-square which contain at least one measurement., milliliters_per_liter)\nA_dd (The number of observations of apparent_oxygen_utilization in each grid-square at each standard depth level., 1)\nA_sd (The standard deviation about the statistical mean of apparent_oxygen_utilization in each grid-square at each standard depth level., milliliters_per_liter)\nA_se (The standard error about the statistical mean of apparent_oxygen_utilization in each grid-square at each standard depth level., milliliters_per_liter)\nA_oa (statistical mean value minus the objectively analyzed mean value for apparent_oxygen_utilization., milliliters_per_liter)\nA_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for apparent_oxygen_utilization., milliliters_per_liter)\nA_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for apparent_oxygen_utilization., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_2918_3a86_bd02_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_2918_3a86_bd02_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_2918_3a86_bd02/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_2918_3a86_bd02.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_2918_3a86_bd02&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_2918_3a86_bd02"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8329_6af9_ccae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8329_6af9_ccae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_8329_6af9_ccae/request", "", "public", "World Ocean Atlas 2013 version 2 : apparent_oxygen_utilization Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean Apparent Oxygen Utilization for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nA_an (Objectively analyzed mean fields for apparent_oxygen_utilization at standard depth levels., milliliters_per_liter)\nA_mn (Average of all unflagged interpolated values at each standard depth level for apparent_oxygen_utilization in each grid-square which contain at least one measurement., milliliters_per_liter)\nA_dd (The number of observations of apparent_oxygen_utilization in each grid-square at each standard depth level., 1)\nA_sd (The standard deviation about the statistical mean of apparent_oxygen_utilization in each grid-square at each standard depth level., milliliters_per_liter)\nA_se (The standard error about the statistical mean of apparent_oxygen_utilization in each grid-square at each standard depth level., milliliters_per_liter)\nA_oa (statistical mean value minus the objectively analyzed mean value for apparent_oxygen_utilization., milliliters_per_liter)\nA_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for apparent_oxygen_utilization., milliliters_per_liter)\nA_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for apparent_oxygen_utilization., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_8329_6af9_ccae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_8329_6af9_ccae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_8329_6af9_ccae/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_8329_6af9_ccae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_8329_6af9_ccae&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_8329_6af9_ccae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6055_cd9c_6420", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6055_cd9c_6420.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6055_cd9c_6420/request", "", "public", "World Ocean Atlas 2013 version 2 : apparent_oxygen_utilization Summer (Jul-Sep) 5.00 degree, 0000", "Climatological mean Apparent Oxygen Utilization for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nA_mn (Average of all unflagged interpolated values at each standard depth level for apparent_oxygen_utilization in each grid-square which contain at least one measurement., milliliters_per_liter)\nA_dd (The number of observations of apparent_oxygen_utilization in each grid-square at each standard depth level., 1)\nA_sd (The standard deviation about the statistical mean of apparent_oxygen_utilization in each grid-square at each standard depth level., milliliters_per_liter)\nA_se (The standard error about the statistical mean of apparent_oxygen_utilization in each grid-square at each standard depth level., milliliters_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6055_cd9c_6420_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6055_cd9c_6420_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6055_cd9c_6420/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6055_cd9c_6420.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6055_cd9c_6420&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_6055_cd9c_6420"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e144_60a1_af90", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e144_60a1_af90.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e144_60a1_af90/request", "", "public", "World Ocean Atlas 2013 version 2 : apparent_oxygen_utilization Summer (Jul-Sep) 5.00 degree, 0000", "Climatological mean Apparent Oxygen Utilization for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nA_mn (Average of all unflagged interpolated values at each standard depth level for apparent_oxygen_utilization in each grid-square which contain at least one measurement., milliliters_per_liter)\nA_dd (The number of observations of apparent_oxygen_utilization in each grid-square at each standard depth level., 1)\nA_sd (The standard deviation about the statistical mean of apparent_oxygen_utilization in each grid-square at each standard depth level., milliliters_per_liter)\nA_se (The standard error about the statistical mean of apparent_oxygen_utilization in each grid-square at each standard depth level., milliliters_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e144_60a1_af90_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e144_60a1_af90_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e144_60a1_af90/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e144_60a1_af90.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e144_60a1_af90&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_e144_60a1_af90"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4f9e_f223_579c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4f9e_f223_579c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_4f9e_f223_579c/request", "", "public", "World Ocean Atlas 2013 version 2 : fractional_saturation_of_oxygen_in_seawater Annual 1.00 degree, 0000", "Climatological mean Percent Oxygen Saturation for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nO_an (Objectively analyzed mean fields for fractional_saturation_of_oxygen_in_seawater at standard depth levels., percent)\nO_mn (Average of all unflagged interpolated values at each standard depth level for fractional_saturation_of_oxygen_in_seawater in each grid-square which contain at least one measurement., percent)\nO_dd (The number of observations of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., 1)\nO_sd (The standard deviation about the statistical mean of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., percent)\nO_se (The standard error about the statistical mean of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., percent)\nO_oa (statistical mean value minus the objectively analyzed mean value for fractional_saturation_of_oxygen_in_seawater., percent)\nO_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for fractional_saturation_of_oxygen_in_seawater., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_4f9e_f223_579c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_4f9e_f223_579c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_4f9e_f223_579c/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_4f9e_f223_579c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_4f9e_f223_579c&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_4f9e_f223_579c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cf83_43c5_a071", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cf83_43c5_a071.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_cf83_43c5_a071/request", "", "public", "World Ocean Atlas 2013 version 2 : fractional_saturation_of_oxygen_in_seawater Annual 1.00 degree, 0000", "Climatological mean Percent Oxygen Saturation for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nO_an (Objectively analyzed mean fields for fractional_saturation_of_oxygen_in_seawater at standard depth levels., percent)\nO_mn (Average of all unflagged interpolated values at each standard depth level for fractional_saturation_of_oxygen_in_seawater in each grid-square which contain at least one measurement., percent)\nO_dd (The number of observations of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., 1)\nO_sd (The standard deviation about the statistical mean of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., percent)\nO_se (The standard error about the statistical mean of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., percent)\nO_oa (statistical mean value minus the objectively analyzed mean value for fractional_saturation_of_oxygen_in_seawater., percent)\nO_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for fractional_saturation_of_oxygen_in_seawater., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_cf83_43c5_a071_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_cf83_43c5_a071_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_cf83_43c5_a071/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_cf83_43c5_a071.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_cf83_43c5_a071&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_cf83_43c5_a071"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1d9e_d871_9a30", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1d9e_d871_9a30.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_1d9e_d871_9a30/request", "", "public", "World Ocean Atlas 2013 version 2 : fractional_saturation_of_oxygen_in_seawater Annual 5.00 degree, 0000", "Climatological mean Percent Oxygen Saturation for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nO_mn (Average of all unflagged interpolated values at each standard depth level for fractional_saturation_of_oxygen_in_seawater in each grid-square which contain at least one measurement., percent)\nO_dd (The number of observations of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., 1)\nO_sd (The standard deviation about the statistical mean of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., percent)\nO_se (The standard error about the statistical mean of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_1d9e_d871_9a30_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_1d9e_d871_9a30_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_1d9e_d871_9a30/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_1d9e_d871_9a30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_1d9e_d871_9a30&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_1d9e_d871_9a30"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_fb56_7626_d95b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_fb56_7626_d95b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_fb56_7626_d95b/request", "", "public", "World Ocean Atlas 2013 version 2 : fractional_saturation_of_oxygen_in_seawater Annual 5.00 degree, 0000", "Climatological mean Percent Oxygen Saturation for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nO_mn (Average of all unflagged interpolated values at each standard depth level for fractional_saturation_of_oxygen_in_seawater in each grid-square which contain at least one measurement., percent)\nO_dd (The number of observations of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., 1)\nO_sd (The standard deviation about the statistical mean of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., percent)\nO_se (The standard error about the statistical mean of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_fb56_7626_d95b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_fb56_7626_d95b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_fb56_7626_d95b/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_fb56_7626_d95b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_fb56_7626_d95b&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_fb56_7626_d95b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_04da_ae65_4530", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_04da_ae65_4530.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_04da_ae65_4530/request", "", "public", "World Ocean Atlas 2013 version 2 : fractional_saturation_of_oxygen_in_seawater November 1.00 degree, 0000", "Climatological mean Percent Oxygen Saturation for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nO_an (Objectively analyzed mean fields for fractional_saturation_of_oxygen_in_seawater at standard depth levels., percent)\nO_mn (Average of all unflagged interpolated values at each standard depth level for fractional_saturation_of_oxygen_in_seawater in each grid-square which contain at least one measurement., percent)\nO_dd (The number of observations of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., 1)\nO_sd (The standard deviation about the statistical mean of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., percent)\nO_se (The standard error about the statistical mean of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., percent)\nO_oa (statistical mean value minus the objectively analyzed mean value for fractional_saturation_of_oxygen_in_seawater., percent)\nO_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for fractional_saturation_of_oxygen_in_seawater., percent)\nO_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for fractional_saturation_of_oxygen_in_seawater., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_04da_ae65_4530_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_04da_ae65_4530_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_04da_ae65_4530/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_04da_ae65_4530.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_04da_ae65_4530&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_04da_ae65_4530"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_dbb7_f678_bd20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_dbb7_f678_bd20.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_dbb7_f678_bd20/request", "", "public", "World Ocean Atlas 2013 version 2 : fractional_saturation_of_oxygen_in_seawater November 1.00 degree, 0000", "Climatological mean Percent Oxygen Saturation for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nO_an (Objectively analyzed mean fields for fractional_saturation_of_oxygen_in_seawater at standard depth levels., percent)\nO_mn (Average of all unflagged interpolated values at each standard depth level for fractional_saturation_of_oxygen_in_seawater in each grid-square which contain at least one measurement., percent)\nO_dd (The number of observations of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., 1)\nO_sd (The standard deviation about the statistical mean of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., percent)\nO_se (The standard error about the statistical mean of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., percent)\nO_oa (statistical mean value minus the objectively analyzed mean value for fractional_saturation_of_oxygen_in_seawater., percent)\nO_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for fractional_saturation_of_oxygen_in_seawater., percent)\nO_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for fractional_saturation_of_oxygen_in_seawater., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_dbb7_f678_bd20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_dbb7_f678_bd20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_dbb7_f678_bd20/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_dbb7_f678_bd20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_dbb7_f678_bd20&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_dbb7_f678_bd20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_bff7_d568_c1eb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_bff7_d568_c1eb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_bff7_d568_c1eb/request", "", "public", "World Ocean Atlas 2013 version 2 : fractional_saturation_of_oxygen_in_seawater November 5.00 degree, 0000", "Climatological mean Percent Oxygen Saturation for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nO_mn (Average of all unflagged interpolated values at each standard depth level for fractional_saturation_of_oxygen_in_seawater in each grid-square which contain at least one measurement., percent)\nO_dd (The number of observations of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., 1)\nO_sd (The standard deviation about the statistical mean of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., percent)\nO_se (The standard error about the statistical mean of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_bff7_d568_c1eb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_bff7_d568_c1eb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_bff7_d568_c1eb/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_bff7_d568_c1eb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_bff7_d568_c1eb&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_bff7_d568_c1eb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_de39_53b4_11a4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_de39_53b4_11a4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_de39_53b4_11a4/request", "", "public", "World Ocean Atlas 2013 version 2 : fractional_saturation_of_oxygen_in_seawater November 5.00 degree, 0000", "Climatological mean Percent Oxygen Saturation for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nO_mn (Average of all unflagged interpolated values at each standard depth level for fractional_saturation_of_oxygen_in_seawater in each grid-square which contain at least one measurement., percent)\nO_dd (The number of observations of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., 1)\nO_sd (The standard deviation about the statistical mean of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., percent)\nO_se (The standard error about the statistical mean of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_de39_53b4_11a4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_de39_53b4_11a4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_de39_53b4_11a4/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_de39_53b4_11a4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_de39_53b4_11a4&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_de39_53b4_11a4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_64c5_8601_fbbf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_64c5_8601_fbbf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_64c5_8601_fbbf/request", "", "public", "World Ocean Atlas 2013 version 2 : fractional_saturation_of_oxygen_in_seawater Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean Percent Oxygen Saturation for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nO_an (Objectively analyzed mean fields for fractional_saturation_of_oxygen_in_seawater at standard depth levels., percent)\nO_mn (Average of all unflagged interpolated values at each standard depth level for fractional_saturation_of_oxygen_in_seawater in each grid-square which contain at least one measurement., percent)\nO_dd (The number of observations of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., 1)\nO_sd (The standard deviation about the statistical mean of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., percent)\nO_se (The standard error about the statistical mean of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., percent)\nO_oa (statistical mean value minus the objectively analyzed mean value for fractional_saturation_of_oxygen_in_seawater., percent)\nO_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for fractional_saturation_of_oxygen_in_seawater., percent)\nO_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for fractional_saturation_of_oxygen_in_seawater., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_64c5_8601_fbbf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_64c5_8601_fbbf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_64c5_8601_fbbf/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_64c5_8601_fbbf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_64c5_8601_fbbf&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_64c5_8601_fbbf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b18d_e4ea_7650", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b18d_e4ea_7650.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b18d_e4ea_7650/request", "", "public", "World Ocean Atlas 2013 version 2 : fractional_saturation_of_oxygen_in_seawater Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean Percent Oxygen Saturation for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nO_an (Objectively analyzed mean fields for fractional_saturation_of_oxygen_in_seawater at standard depth levels., percent)\nO_mn (Average of all unflagged interpolated values at each standard depth level for fractional_saturation_of_oxygen_in_seawater in each grid-square which contain at least one measurement., percent)\nO_dd (The number of observations of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., 1)\nO_sd (The standard deviation about the statistical mean of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., percent)\nO_se (The standard error about the statistical mean of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., percent)\nO_oa (statistical mean value minus the objectively analyzed mean value for fractional_saturation_of_oxygen_in_seawater., percent)\nO_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for fractional_saturation_of_oxygen_in_seawater., percent)\nO_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for fractional_saturation_of_oxygen_in_seawater., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b18d_e4ea_7650_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b18d_e4ea_7650_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b18d_e4ea_7650/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b18d_e4ea_7650.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b18d_e4ea_7650&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_b18d_e4ea_7650"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3012_38fe_9945", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3012_38fe_9945.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_3012_38fe_9945/request", "", "public", "World Ocean Atlas 2013 version 2 : fractional_saturation_of_oxygen_in_seawater Summer (Jul-Sep) 5.00 degree, 0000", "Climatological mean Percent Oxygen Saturation for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nO_mn (Average of all unflagged interpolated values at each standard depth level for fractional_saturation_of_oxygen_in_seawater in each grid-square which contain at least one measurement., percent)\nO_dd (The number of observations of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., 1)\nO_sd (The standard deviation about the statistical mean of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., percent)\nO_se (The standard error about the statistical mean of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_3012_38fe_9945_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_3012_38fe_9945_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_3012_38fe_9945/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_3012_38fe_9945.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_3012_38fe_9945&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_3012_38fe_9945"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e40c_c2e6_fdfa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e40c_c2e6_fdfa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e40c_c2e6_fdfa/request", "", "public", "World Ocean Atlas 2013 version 2 : fractional_saturation_of_oxygen_in_seawater Summer (Jul-Sep) 5.00 degree, 0000", "Climatological mean Percent Oxygen Saturation for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nO_mn (Average of all unflagged interpolated values at each standard depth level for fractional_saturation_of_oxygen_in_seawater in each grid-square which contain at least one measurement., percent)\nO_dd (The number of observations of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., 1)\nO_sd (The standard deviation about the statistical mean of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., percent)\nO_se (The standard error about the statistical mean of fractional_saturation_of_oxygen_in_seawater in each grid-square at each standard depth level., percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e40c_c2e6_fdfa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e40c_c2e6_fdfa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e40c_c2e6_fdfa/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e40c_c2e6_fdfa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e40c_c2e6_fdfa&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_e40c_c2e6_fdfa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_45c7_bd8b_d27e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_45c7_bd8b_d27e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_45c7_bd8b_d27e/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_nitrate_in_sea_water Annual 1.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_nitrate_in_sea_water Annual 1.00 degree. Climatological mean dissolved inorganic nutrients: nitrate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nn_an (Objectively analyzed mean fields for mole_concentration_of_nitrate_in_sea_water at standard depth levels., micromoles_per_liter)\nn_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_nitrate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\nn_dd (The number of observations of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., 1)\nn_sd (The standard deviation about the statistical mean of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\nn_se (The standard error about the statistical mean of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\nn_oa (statistical mean value minus the objectively analyzed mean value for mole_concentration_of_nitrate_in_sea_water., micromoles_per_liter)\nn_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for mole_concentration_of_nitrate_in_sea_water., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_45c7_bd8b_d27e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_45c7_bd8b_d27e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_45c7_bd8b_d27e/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_45c7_bd8b_d27e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_45c7_bd8b_d27e&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_45c7_bd8b_d27e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6a1b_aad4_900e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6a1b_aad4_900e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6a1b_aad4_900e/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_nitrate_in_sea_water Annual 1.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_nitrate_in_sea_water Annual 1.00 degree. Climatological mean dissolved inorganic nutrients: nitrate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nn_an (Objectively analyzed mean fields for mole_concentration_of_nitrate_in_sea_water at standard depth levels., micromoles_per_liter)\nn_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_nitrate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\nn_dd (The number of observations of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., 1)\nn_sd (The standard deviation about the statistical mean of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\nn_se (The standard error about the statistical mean of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\nn_oa (statistical mean value minus the objectively analyzed mean value for mole_concentration_of_nitrate_in_sea_water., micromoles_per_liter)\nn_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for mole_concentration_of_nitrate_in_sea_water., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6a1b_aad4_900e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6a1b_aad4_900e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6a1b_aad4_900e/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6a1b_aad4_900e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6a1b_aad4_900e&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_6a1b_aad4_900e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_639f_728e_0bfb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_639f_728e_0bfb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_639f_728e_0bfb/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_nitrate_in_sea_water Annual 5.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_nitrate_in_sea_water Annual 5.00 degree. Climatological mean dissolved inorganic nutrients: nitrate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nn_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_nitrate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\nn_dd (The number of observations of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., 1)\nn_sd (The standard deviation about the statistical mean of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\nn_se (The standard error about the statistical mean of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_639f_728e_0bfb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_639f_728e_0bfb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_639f_728e_0bfb/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_639f_728e_0bfb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_639f_728e_0bfb&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_639f_728e_0bfb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_d996_ade4_fb0f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_d996_ade4_fb0f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_d996_ade4_fb0f/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_nitrate_in_sea_water Annual 5.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_nitrate_in_sea_water Annual 5.00 degree. Climatological mean dissolved inorganic nutrients: nitrate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nn_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_nitrate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\nn_dd (The number of observations of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., 1)\nn_sd (The standard deviation about the statistical mean of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\nn_se (The standard error about the statistical mean of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_d996_ade4_fb0f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_d996_ade4_fb0f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_d996_ade4_fb0f/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_d996_ade4_fb0f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_d996_ade4_fb0f&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_d996_ade4_fb0f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1cf4_3566_828a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1cf4_3566_828a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_1cf4_3566_828a/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_nitrate_in_sea_water November 1.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_nitrate_in_sea_water November 1.00 degree. Climatological mean dissolved inorganic nutrients: nitrate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nn_an (Objectively analyzed mean fields for mole_concentration_of_nitrate_in_sea_water at standard depth levels., micromoles_per_liter)\nn_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_nitrate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\nn_dd (The number of observations of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., 1)\nn_sd (The standard deviation about the statistical mean of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\nn_se (The standard error about the statistical mean of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\nn_oa (statistical mean value minus the objectively analyzed mean value for mole_concentration_of_nitrate_in_sea_water., micromoles_per_liter)\nn_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for mole_concentration_of_nitrate_in_sea_water., micromoles_per_liter)\nn_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for mole_concentration_of_nitrate_in_sea_water., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_1cf4_3566_828a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_1cf4_3566_828a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_1cf4_3566_828a/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_1cf4_3566_828a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_1cf4_3566_828a&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_1cf4_3566_828a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3edf_3ac8_fde1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3edf_3ac8_fde1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_3edf_3ac8_fde1/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_nitrate_in_sea_water November 1.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_nitrate_in_sea_water November 1.00 degree. Climatological mean dissolved inorganic nutrients: nitrate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nn_an (Objectively analyzed mean fields for mole_concentration_of_nitrate_in_sea_water at standard depth levels., micromoles_per_liter)\nn_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_nitrate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\nn_dd (The number of observations of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., 1)\nn_sd (The standard deviation about the statistical mean of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\nn_se (The standard error about the statistical mean of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\nn_oa (statistical mean value minus the objectively analyzed mean value for mole_concentration_of_nitrate_in_sea_water., micromoles_per_liter)\nn_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for mole_concentration_of_nitrate_in_sea_water., micromoles_per_liter)\nn_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for mole_concentration_of_nitrate_in_sea_water., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_3edf_3ac8_fde1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_3edf_3ac8_fde1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_3edf_3ac8_fde1/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_3edf_3ac8_fde1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_3edf_3ac8_fde1&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_3edf_3ac8_fde1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8f38_281d_7848", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8f38_281d_7848.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_8f38_281d_7848/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_nitrate_in_sea_water November 5.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_nitrate_in_sea_water November 5.00 degree. Climatological mean dissolved inorganic nutrients: nitrate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nn_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_nitrate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\nn_dd (The number of observations of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., 1)\nn_sd (The standard deviation about the statistical mean of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\nn_se (The standard error about the statistical mean of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_8f38_281d_7848_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_8f38_281d_7848_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_8f38_281d_7848/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_8f38_281d_7848.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_8f38_281d_7848&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_8f38_281d_7848"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_fe67_8e49_2fd5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_fe67_8e49_2fd5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_fe67_8e49_2fd5/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_nitrate_in_sea_water November 5.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_nitrate_in_sea_water November 5.00 degree. Climatological mean dissolved inorganic nutrients: nitrate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nn_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_nitrate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\nn_dd (The number of observations of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., 1)\nn_sd (The standard deviation about the statistical mean of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\nn_se (The standard error about the statistical mean of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_fe67_8e49_2fd5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_fe67_8e49_2fd5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_fe67_8e49_2fd5/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_fe67_8e49_2fd5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_fe67_8e49_2fd5&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_fe67_8e49_2fd5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b985_3a8c_d543", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b985_3a8c_d543.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b985_3a8c_d543/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_nitrate_in_sea_water Summer (Jul-Sep) 1.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_nitrate_in_sea_water Summer (Jul-Sep) 1.00 degree. Climatological mean dissolved inorganic nutrients: nitrate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nn_an (Objectively analyzed mean fields for mole_concentration_of_nitrate_in_sea_water at standard depth levels., micromoles_per_liter)\nn_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_nitrate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\nn_dd (The number of observations of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., 1)\nn_sd (The standard deviation about the statistical mean of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\nn_se (The standard error about the statistical mean of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\nn_oa (statistical mean value minus the objectively analyzed mean value for mole_concentration_of_nitrate_in_sea_water., micromoles_per_liter)\nn_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for mole_concentration_of_nitrate_in_sea_water., micromoles_per_liter)\nn_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for mole_concentration_of_nitrate_in_sea_water., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b985_3a8c_d543_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b985_3a8c_d543_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b985_3a8c_d543/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b985_3a8c_d543.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b985_3a8c_d543&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_b985_3a8c_d543"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f1ca_7649_d185", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f1ca_7649_d185.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_f1ca_7649_d185/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_nitrate_in_sea_water Summer (Jul-Sep) 1.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_nitrate_in_sea_water Summer (Jul-Sep) 1.00 degree. Climatological mean dissolved inorganic nutrients: nitrate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nn_an (Objectively analyzed mean fields for mole_concentration_of_nitrate_in_sea_water at standard depth levels., micromoles_per_liter)\nn_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_nitrate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\nn_dd (The number of observations of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., 1)\nn_sd (The standard deviation about the statistical mean of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\nn_se (The standard error about the statistical mean of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\nn_oa (statistical mean value minus the objectively analyzed mean value for mole_concentration_of_nitrate_in_sea_water., micromoles_per_liter)\nn_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for mole_concentration_of_nitrate_in_sea_water., micromoles_per_liter)\nn_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for mole_concentration_of_nitrate_in_sea_water., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_f1ca_7649_d185_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_f1ca_7649_d185_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_f1ca_7649_d185/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_f1ca_7649_d185.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_f1ca_7649_d185&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_f1ca_7649_d185"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3b02_9629_a87f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3b02_9629_a87f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_3b02_9629_a87f/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_nitrate_in_sea_water Summer (Jul-Sep) 5.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_nitrate_in_sea_water Summer (Jul-Sep) 5.00 degree. Climatological mean dissolved inorganic nutrients: nitrate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nn_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_nitrate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\nn_dd (The number of observations of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., 1)\nn_sd (The standard deviation about the statistical mean of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\nn_se (The standard error about the statistical mean of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_3b02_9629_a87f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_3b02_9629_a87f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_3b02_9629_a87f/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_3b02_9629_a87f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_3b02_9629_a87f&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_3b02_9629_a87f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f5f0_4476_db54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f5f0_4476_db54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_f5f0_4476_db54/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_nitrate_in_sea_water Summer (Jul-Sep) 5.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_nitrate_in_sea_water Summer (Jul-Sep) 5.00 degree. Climatological mean dissolved inorganic nutrients: nitrate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nn_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_nitrate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\nn_dd (The number of observations of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., 1)\nn_sd (The standard deviation about the statistical mean of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\nn_se (The standard error about the statistical mean of mole_concentration_of_nitrate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_f5f0_4476_db54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_f5f0_4476_db54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_f5f0_4476_db54/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_f5f0_4476_db54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_f5f0_4476_db54&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_f5f0_4476_db54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_9869_5ed7_d118", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_9869_5ed7_d118.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_9869_5ed7_d118/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_phosphate_in_sea_water Annual 1.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_phosphate_in_sea_water Annual 1.00 degree. Climatological mean dissolved inorganic nutrients: phosphate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\np_an (Objectively analyzed mean fields for mole_concentration_of_phosphate_in_sea_water at standard depth levels., micromoles_per_liter)\np_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_phosphate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\np_dd (The number of observations of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., 1)\np_sd (The standard deviation about the statistical mean of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\np_se (The standard error about the statistical mean of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\np_oa (statistical mean value minus the objectively analyzed mean value for mole_concentration_of_phosphate_in_sea_water., micromoles_per_liter)\np_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for mole_concentration_of_phosphate_in_sea_water., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_9869_5ed7_d118_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_9869_5ed7_d118_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_9869_5ed7_d118/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_9869_5ed7_d118.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_9869_5ed7_d118&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_9869_5ed7_d118"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ca85_060d_8b4e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ca85_060d_8b4e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_ca85_060d_8b4e/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_phosphate_in_sea_water Annual 1.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_phosphate_in_sea_water Annual 1.00 degree. Climatological mean dissolved inorganic nutrients: phosphate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\np_an (Objectively analyzed mean fields for mole_concentration_of_phosphate_in_sea_water at standard depth levels., micromoles_per_liter)\np_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_phosphate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\np_dd (The number of observations of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., 1)\np_sd (The standard deviation about the statistical mean of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\np_se (The standard error about the statistical mean of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\np_oa (statistical mean value minus the objectively analyzed mean value for mole_concentration_of_phosphate_in_sea_water., micromoles_per_liter)\np_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for mole_concentration_of_phosphate_in_sea_water., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_ca85_060d_8b4e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_ca85_060d_8b4e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_ca85_060d_8b4e/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_ca85_060d_8b4e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_ca85_060d_8b4e&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_ca85_060d_8b4e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_247b_d1db_6ed4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_247b_d1db_6ed4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_247b_d1db_6ed4/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_phosphate_in_sea_water Annual 5.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_phosphate_in_sea_water Annual 5.00 degree. Climatological mean dissolved inorganic nutrients: phosphate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\np_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_phosphate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\np_dd (The number of observations of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., 1)\np_sd (The standard deviation about the statistical mean of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\np_se (The standard error about the statistical mean of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_247b_d1db_6ed4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_247b_d1db_6ed4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_247b_d1db_6ed4/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_247b_d1db_6ed4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_247b_d1db_6ed4&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_247b_d1db_6ed4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_98d0_da4d_d765", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_98d0_da4d_d765.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_98d0_da4d_d765/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_phosphate_in_sea_water Annual 5.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_phosphate_in_sea_water Annual 5.00 degree. Climatological mean dissolved inorganic nutrients: phosphate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\np_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_phosphate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\np_dd (The number of observations of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., 1)\np_sd (The standard deviation about the statistical mean of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\np_se (The standard error about the statistical mean of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_98d0_da4d_d765_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_98d0_da4d_d765_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_98d0_da4d_d765/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_98d0_da4d_d765.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_98d0_da4d_d765&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_98d0_da4d_d765"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7226_a793_7f0d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7226_a793_7f0d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7226_a793_7f0d/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_phosphate_in_sea_water November 1.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_phosphate_in_sea_water November 1.00 degree. Climatological mean dissolved inorganic nutrients: phosphate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\np_an (Objectively analyzed mean fields for mole_concentration_of_phosphate_in_sea_water at standard depth levels., micromoles_per_liter)\np_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_phosphate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\np_dd (The number of observations of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., 1)\np_sd (The standard deviation about the statistical mean of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\np_se (The standard error about the statistical mean of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\np_oa (statistical mean value minus the objectively analyzed mean value for mole_concentration_of_phosphate_in_sea_water., micromoles_per_liter)\np_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for mole_concentration_of_phosphate_in_sea_water., micromoles_per_liter)\np_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for mole_concentration_of_phosphate_in_sea_water., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7226_a793_7f0d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7226_a793_7f0d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7226_a793_7f0d/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7226_a793_7f0d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7226_a793_7f0d&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_7226_a793_7f0d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cba0_0942_4577", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cba0_0942_4577.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_cba0_0942_4577/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_phosphate_in_sea_water November 1.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_phosphate_in_sea_water November 1.00 degree. Climatological mean dissolved inorganic nutrients: phosphate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\np_an (Objectively analyzed mean fields for mole_concentration_of_phosphate_in_sea_water at standard depth levels., micromoles_per_liter)\np_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_phosphate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\np_dd (The number of observations of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., 1)\np_sd (The standard deviation about the statistical mean of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\np_se (The standard error about the statistical mean of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\np_oa (statistical mean value minus the objectively analyzed mean value for mole_concentration_of_phosphate_in_sea_water., micromoles_per_liter)\np_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for mole_concentration_of_phosphate_in_sea_water., micromoles_per_liter)\np_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for mole_concentration_of_phosphate_in_sea_water., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_cba0_0942_4577_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_cba0_0942_4577_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_cba0_0942_4577/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_cba0_0942_4577.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_cba0_0942_4577&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_cba0_0942_4577"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2675_1881_ef35", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2675_1881_ef35.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_2675_1881_ef35/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_phosphate_in_sea_water November 5.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_phosphate_in_sea_water November 5.00 degree. Climatological mean dissolved inorganic nutrients: phosphate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\np_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_phosphate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\np_dd (The number of observations of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., 1)\np_sd (The standard deviation about the statistical mean of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\np_se (The standard error about the statistical mean of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_2675_1881_ef35_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_2675_1881_ef35_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_2675_1881_ef35/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_2675_1881_ef35.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_2675_1881_ef35&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_2675_1881_ef35"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f540_77ac_c62b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f540_77ac_c62b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_f540_77ac_c62b/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_phosphate_in_sea_water November 5.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_phosphate_in_sea_water November 5.00 degree. Climatological mean dissolved inorganic nutrients: phosphate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\np_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_phosphate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\np_dd (The number of observations of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., 1)\np_sd (The standard deviation about the statistical mean of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\np_se (The standard error about the statistical mean of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_f540_77ac_c62b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_f540_77ac_c62b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_f540_77ac_c62b/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_f540_77ac_c62b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_f540_77ac_c62b&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_f540_77ac_c62b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5ff0_b7f5_cbdb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5ff0_b7f5_cbdb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_5ff0_b7f5_cbdb/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_phosphate_in_sea_water Summer (Jul-Sep) 1.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_phosphate_in_sea_water Summer (Jul-Sep) 1.00 degree. Climatological mean dissolved inorganic nutrients: phosphate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\np_an (Objectively analyzed mean fields for mole_concentration_of_phosphate_in_sea_water at standard depth levels., micromoles_per_liter)\np_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_phosphate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\np_dd (The number of observations of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., 1)\np_sd (The standard deviation about the statistical mean of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\np_se (The standard error about the statistical mean of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\np_oa (statistical mean value minus the objectively analyzed mean value for mole_concentration_of_phosphate_in_sea_water., micromoles_per_liter)\np_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for mole_concentration_of_phosphate_in_sea_water., micromoles_per_liter)\np_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for mole_concentration_of_phosphate_in_sea_water., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_5ff0_b7f5_cbdb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_5ff0_b7f5_cbdb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_5ff0_b7f5_cbdb/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_5ff0_b7f5_cbdb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_5ff0_b7f5_cbdb&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_5ff0_b7f5_cbdb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cf5e_8c20_476f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cf5e_8c20_476f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_cf5e_8c20_476f/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_phosphate_in_sea_water Summer (Jul-Sep) 1.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_phosphate_in_sea_water Summer (Jul-Sep) 1.00 degree. Climatological mean dissolved inorganic nutrients: phosphate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\np_an (Objectively analyzed mean fields for mole_concentration_of_phosphate_in_sea_water at standard depth levels., micromoles_per_liter)\np_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_phosphate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\np_dd (The number of observations of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., 1)\np_sd (The standard deviation about the statistical mean of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\np_se (The standard error about the statistical mean of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\np_oa (statistical mean value minus the objectively analyzed mean value for mole_concentration_of_phosphate_in_sea_water., micromoles_per_liter)\np_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for mole_concentration_of_phosphate_in_sea_water., micromoles_per_liter)\np_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for mole_concentration_of_phosphate_in_sea_water., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_cf5e_8c20_476f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_cf5e_8c20_476f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_cf5e_8c20_476f/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_cf5e_8c20_476f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_cf5e_8c20_476f&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_cf5e_8c20_476f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_18d3_3265_770d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_18d3_3265_770d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_18d3_3265_770d/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_phosphate_in_sea_water Summer (Jul-Sep) 5.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_phosphate_in_sea_water Summer (Jul-Sep) 5.00 degree. Climatological mean dissolved inorganic nutrients: phosphate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\np_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_phosphate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\np_dd (The number of observations of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., 1)\np_sd (The standard deviation about the statistical mean of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\np_se (The standard error about the statistical mean of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_18d3_3265_770d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_18d3_3265_770d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_18d3_3265_770d/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_18d3_3265_770d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_18d3_3265_770d&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_18d3_3265_770d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7f8c_4a5b_a27b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7f8c_4a5b_a27b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7f8c_4a5b_a27b/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_phosphate_in_sea_water Summer (Jul-Sep) 5.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_phosphate_in_sea_water Summer (Jul-Sep) 5.00 degree. Climatological mean dissolved inorganic nutrients: phosphate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\np_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_phosphate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\np_dd (The number of observations of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., 1)\np_sd (The standard deviation about the statistical mean of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\np_se (The standard error about the statistical mean of mole_concentration_of_phosphate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7f8c_4a5b_a27b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7f8c_4a5b_a27b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7f8c_4a5b_a27b/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7f8c_4a5b_a27b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7f8c_4a5b_a27b&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_7f8c_4a5b_a27b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_37b0_d5b3_9c86", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_37b0_d5b3_9c86.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_37b0_d5b3_9c86/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_silicate_in_sea_water Annual 1.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_silicate_in_sea_water Annual 1.00 degree. Climatological mean dissolved inorganic nutrients: silicate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ni_an (Objectively analyzed mean fields for mole_concentration_of_silicate_in_sea_water at standard depth levels., micromoles_per_liter)\ni_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_silicate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\ni_dd (The number of observations of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., 1)\ni_sd (The standard deviation about the statistical mean of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\ni_se (The standard error about the statistical mean of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\ni_oa (statistical mean value minus the objectively analyzed mean value for mole_concentration_of_silicate_in_sea_water., micromoles_per_liter)\ni_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for mole_concentration_of_silicate_in_sea_water., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_37b0_d5b3_9c86_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_37b0_d5b3_9c86_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_37b0_d5b3_9c86/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_37b0_d5b3_9c86.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_37b0_d5b3_9c86&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_37b0_d5b3_9c86"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_502b_3d40_2515", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_502b_3d40_2515.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_502b_3d40_2515/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_silicate_in_sea_water Annual 1.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_silicate_in_sea_water Annual 1.00 degree. Climatological mean dissolved inorganic nutrients: silicate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ni_an (Objectively analyzed mean fields for mole_concentration_of_silicate_in_sea_water at standard depth levels., micromoles_per_liter)\ni_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_silicate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\ni_dd (The number of observations of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., 1)\ni_sd (The standard deviation about the statistical mean of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\ni_se (The standard error about the statistical mean of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\ni_oa (statistical mean value minus the objectively analyzed mean value for mole_concentration_of_silicate_in_sea_water., micromoles_per_liter)\ni_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for mole_concentration_of_silicate_in_sea_water., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_502b_3d40_2515_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_502b_3d40_2515_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_502b_3d40_2515/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_502b_3d40_2515.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_502b_3d40_2515&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_502b_3d40_2515"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a17b_8a00_a487", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a17b_8a00_a487.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_a17b_8a00_a487/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_silicate_in_sea_water Annual 5.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_silicate_in_sea_water Annual 5.00 degree. Climatological mean dissolved inorganic nutrients: silicate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ni_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_silicate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\ni_dd (The number of observations of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., 1)\ni_sd (The standard deviation about the statistical mean of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\ni_se (The standard error about the statistical mean of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_a17b_8a00_a487_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_a17b_8a00_a487_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_a17b_8a00_a487/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_a17b_8a00_a487.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_a17b_8a00_a487&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_a17b_8a00_a487"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_dc61_3363_e064", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_dc61_3363_e064.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_dc61_3363_e064/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_silicate_in_sea_water Annual 5.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_silicate_in_sea_water Annual 5.00 degree. Climatological mean dissolved inorganic nutrients: silicate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ni_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_silicate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\ni_dd (The number of observations of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., 1)\ni_sd (The standard deviation about the statistical mean of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\ni_se (The standard error about the statistical mean of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_dc61_3363_e064_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_dc61_3363_e064_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_dc61_3363_e064/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_dc61_3363_e064.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_dc61_3363_e064&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_dc61_3363_e064"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ab7a_08b8_3039", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ab7a_08b8_3039.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_ab7a_08b8_3039/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_silicate_in_sea_water November 1.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_silicate_in_sea_water November 1.00 degree. Climatological mean dissolved inorganic nutrients: silicate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ni_an (Objectively analyzed mean fields for mole_concentration_of_silicate_in_sea_water at standard depth levels., micromoles_per_liter)\ni_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_silicate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\ni_dd (The number of observations of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., 1)\ni_sd (The standard deviation about the statistical mean of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\ni_se (The standard error about the statistical mean of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\ni_oa (statistical mean value minus the objectively analyzed mean value for mole_concentration_of_silicate_in_sea_water., micromoles_per_liter)\ni_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for mole_concentration_of_silicate_in_sea_water., micromoles_per_liter)\ni_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for mole_concentration_of_silicate_in_sea_water., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_ab7a_08b8_3039_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_ab7a_08b8_3039_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_ab7a_08b8_3039/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_ab7a_08b8_3039.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_ab7a_08b8_3039&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_ab7a_08b8_3039"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7e24_da58_84fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7e24_da58_84fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7e24_da58_84fd/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_silicate_in_sea_water November 5.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_silicate_in_sea_water November 5.00 degree. Climatological mean dissolved inorganic nutrients: silicate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ni_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_silicate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\ni_dd (The number of observations of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., 1)\ni_sd (The standard deviation about the statistical mean of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\ni_se (The standard error about the statistical mean of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7e24_da58_84fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7e24_da58_84fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7e24_da58_84fd/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7e24_da58_84fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7e24_da58_84fd&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_7e24_da58_84fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ed9b_ff00_6fc0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ed9b_ff00_6fc0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_ed9b_ff00_6fc0/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_silicate_in_sea_water November 5.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_silicate_in_sea_water November 5.00 degree. Climatological mean dissolved inorganic nutrients: silicate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ni_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_silicate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\ni_dd (The number of observations of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., 1)\ni_sd (The standard deviation about the statistical mean of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\ni_se (The standard error about the statistical mean of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_ed9b_ff00_6fc0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_ed9b_ff00_6fc0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_ed9b_ff00_6fc0/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_ed9b_ff00_6fc0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_ed9b_ff00_6fc0&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_ed9b_ff00_6fc0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_eecb_eca9_e2c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_eecb_eca9_e2c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_eecb_eca9_e2c3/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_silicate_in_sea_water Summer (Jul-Sep) 1.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_silicate_in_sea_water Summer (Jul-Sep) 1.00 degree. Climatological mean dissolved inorganic nutrients: silicate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ni_an (Objectively analyzed mean fields for mole_concentration_of_silicate_in_sea_water at standard depth levels., micromoles_per_liter)\ni_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_silicate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\ni_dd (The number of observations of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., 1)\ni_sd (The standard deviation about the statistical mean of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\ni_se (The standard error about the statistical mean of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\ni_oa (statistical mean value minus the objectively analyzed mean value for mole_concentration_of_silicate_in_sea_water., micromoles_per_liter)\ni_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for mole_concentration_of_silicate_in_sea_water., micromoles_per_liter)\ni_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for mole_concentration_of_silicate_in_sea_water., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_eecb_eca9_e2c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_eecb_eca9_e2c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_eecb_eca9_e2c3/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_eecb_eca9_e2c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_eecb_eca9_e2c3&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_eecb_eca9_e2c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_d387_28f6_b909", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_d387_28f6_b909.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_d387_28f6_b909/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_silicate_in_sea_water Summer (Jul-Sep) 5.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_silicate_in_sea_water Summer (Jul-Sep) 5.00 degree. Climatological mean dissolved inorganic nutrients: silicate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ni_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_silicate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\ni_dd (The number of observations of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., 1)\ni_sd (The standard deviation about the statistical mean of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\ni_se (The standard error about the statistical mean of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_d387_28f6_b909_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_d387_28f6_b909_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_d387_28f6_b909/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_d387_28f6_b909.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_d387_28f6_b909&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_d387_28f6_b909"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ffd2_8a06_381d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ffd2_8a06_381d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_ffd2_8a06_381d/request", "", "public", "World Ocean Atlas 2013 version 2 : mole_concentration_of_silicate_in_sea_water Summer (Jul-Sep) 5.00 degree, 0000", "World Ocean Atlas 2013 version 2 : moles_concentration_of_silicate_in_sea_water Summer (Jul-Sep) 5.00 degree. Climatological mean dissolved inorganic nutrients: silicate for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ni_mn (Average of all unflagged interpolated values at each standard depth level for mole_concentration_of_silicate_in_sea_water in each grid-square which contain at least one measurement., micromoles_per_liter)\ni_dd (The number of observations of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., 1)\ni_sd (The standard deviation about the statistical mean of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\ni_se (The standard error about the statistical mean of mole_concentration_of_silicate_in_sea_water in each grid-square at each standard depth level., micromoles_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_ffd2_8a06_381d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_ffd2_8a06_381d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_ffd2_8a06_381d/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_ffd2_8a06_381d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_ffd2_8a06_381d&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_ffd2_8a06_381d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1791_b92a_9006", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1791_b92a_9006.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_1791_b92a_9006/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_salinity Annual 0.25 degree, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for sea_water_salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for sea_water_salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_salinity., PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_1791_b92a_9006_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_1791_b92a_9006_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_1791_b92a_9006/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_1791_b92a_9006.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_1791_b92a_9006&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_1791_b92a_9006"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_de95_39b5_944b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_de95_39b5_944b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_de95_39b5_944b/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_salinity Annual 0.25 degree, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for sea_water_salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for sea_water_salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_salinity., PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_de95_39b5_944b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_de95_39b5_944b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_de95_39b5_944b/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_de95_39b5_944b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_de95_39b5_944b&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_de95_39b5_944b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6205_62d2_3383", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6205_62d2_3383.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6205_62d2_3383/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_salinity Annual 1.00 degree, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for sea_water_salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for sea_water_salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_salinity., PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6205_62d2_3383_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6205_62d2_3383_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6205_62d2_3383/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6205_62d2_3383.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6205_62d2_3383&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_6205_62d2_3383"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_dd71_f184_8c2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_dd71_f184_8c2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_dd71_f184_8c2d/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_salinity Annual 1.00 degree, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for sea_water_salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for sea_water_salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_salinity., PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_dd71_f184_8c2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_dd71_f184_8c2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_dd71_f184_8c2d/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_dd71_f184_8c2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_dd71_f184_8c2d&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_dd71_f184_8c2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7eab_3b61_aa7f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7eab_3b61_aa7f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7eab_3b61_aa7f/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_salinity Annual 5.00 degree, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7eab_3b61_aa7f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7eab_3b61_aa7f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7eab_3b61_aa7f/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7eab_3b61_aa7f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7eab_3b61_aa7f&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_7eab_3b61_aa7f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f3a5_6b21_b82c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f3a5_6b21_b82c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_f3a5_6b21_b82c/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_salinity Annual 5.00 degree, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_f3a5_6b21_b82c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_f3a5_6b21_b82c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_f3a5_6b21_b82c/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_f3a5_6b21_b82c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_f3a5_6b21_b82c&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_f3a5_6b21_b82c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3314_00f3_3aa4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3314_00f3_3aa4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_3314_00f3_3aa4/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_salinity November 0.25 degree, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for sea_water_salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for sea_water_salinity., PSU)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_salinity., PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_3314_00f3_3aa4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_3314_00f3_3aa4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_3314_00f3_3aa4/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_3314_00f3_3aa4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_3314_00f3_3aa4&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_3314_00f3_3aa4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_afce_d3db_cca9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_afce_d3db_cca9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_afce_d3db_cca9/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_salinity November 0.25 degree, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for sea_water_salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for sea_water_salinity., PSU)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_salinity., PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_afce_d3db_cca9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_afce_d3db_cca9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_afce_d3db_cca9/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_afce_d3db_cca9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_afce_d3db_cca9&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_afce_d3db_cca9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_baaa_831f_b609", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_baaa_831f_b609.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_baaa_831f_b609/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_salinity November 1.00 degree, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for sea_water_salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for sea_water_salinity., PSU)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_salinity., PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_baaa_831f_b609_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_baaa_831f_b609_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_baaa_831f_b609/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_baaa_831f_b609.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_baaa_831f_b609&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_baaa_831f_b609"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_c52e_dd02_2972", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_c52e_dd02_2972.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_c52e_dd02_2972/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_salinity November 1.00 degree, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for sea_water_salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for sea_water_salinity., PSU)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_salinity., PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_c52e_dd02_2972_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_c52e_dd02_2972_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_c52e_dd02_2972/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_c52e_dd02_2972.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_c52e_dd02_2972&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_c52e_dd02_2972"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0a74_1595_ffff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0a74_1595_ffff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_0a74_1595_ffff/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_salinity November 5.00 degree, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_0a74_1595_ffff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_0a74_1595_ffff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_0a74_1595_ffff/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_0a74_1595_ffff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_0a74_1595_ffff&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_0a74_1595_ffff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ede5_2723_e35e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ede5_2723_e35e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_ede5_2723_e35e/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_salinity November 5.00 degree, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_ede5_2723_e35e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_ede5_2723_e35e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_ede5_2723_e35e/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_ede5_2723_e35e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_ede5_2723_e35e&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_ede5_2723_e35e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_9b2e_fc2f_d421", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_9b2e_fc2f_d421.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_9b2e_fc2f_d421/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_salinity Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for sea_water_salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for sea_water_salinity., PSU)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_salinity., PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_9b2e_fc2f_d421_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_9b2e_fc2f_d421_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_9b2e_fc2f_d421/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_9b2e_fc2f_d421.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_9b2e_fc2f_d421&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_9b2e_fc2f_d421"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_d718_a5ad_9a2c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_d718_a5ad_9a2c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_d718_a5ad_9a2c/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_salinity Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for sea_water_salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for sea_water_salinity., PSU)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_salinity., PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_d718_a5ad_9a2c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_d718_a5ad_9a2c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_d718_a5ad_9a2c/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_d718_a5ad_9a2c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_d718_a5ad_9a2c&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_d718_a5ad_9a2c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_90d8_8580_2e1f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_90d8_8580_2e1f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_90d8_8580_2e1f/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_salinity Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for sea_water_salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for sea_water_salinity., PSU)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_salinity., PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_90d8_8580_2e1f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_90d8_8580_2e1f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_90d8_8580_2e1f/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_90d8_8580_2e1f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_90d8_8580_2e1f&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_90d8_8580_2e1f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f4ed_affc_ddf6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f4ed_affc_ddf6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_f4ed_affc_ddf6/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_salinity Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_an (Objectively analyzed mean fields for sea_water_salinity at standard depth levels., PSU)\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_oa (statistical mean value minus the objectively analyzed mean value for sea_water_salinity., PSU)\ns_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_salinity., PSU)\ns_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_salinity., PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_f4ed_affc_ddf6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_f4ed_affc_ddf6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_f4ed_affc_ddf6/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_f4ed_affc_ddf6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_f4ed_affc_ddf6&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_f4ed_affc_ddf6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5433_18f9_a141", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_5433_18f9_a141.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_5433_18f9_a141/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_salinity Summer (Jul-Sep) 5.00 degree, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_5433_18f9_a141_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_5433_18f9_a141_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_5433_18f9_a141/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_5433_18f9_a141.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_5433_18f9_a141&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_5433_18f9_a141"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f8d1_8005_b1ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_f8d1_8005_b1ba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_f8d1_8005_b1ba/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_salinity Summer (Jul-Sep) 5.00 degree, 0000", "Climatological mean salinity for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\ns_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_salinity in each grid-square which contain at least one measurement., PSU)\ns_dd (The number of observations of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_sd (The standard deviation about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\ns_se (The standard error about the statistical mean of sea_water_salinity in each grid-square at each standard depth level., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_f8d1_8005_b1ba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_f8d1_8005_b1ba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_f8d1_8005_b1ba/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_f8d1_8005_b1ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_f8d1_8005_b1ba&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_f8d1_8005_b1ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b320_a934_3ac2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b320_a934_3ac2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b320_a934_3ac2/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b320_a934_3ac2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b320_a934_3ac2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b320_a934_3ac2/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b320_a934_3ac2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b320_a934_3ac2&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_b320_a934_3ac2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b354_9598_1222", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b354_9598_1222.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b354_9598_1222/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Annual 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b354_9598_1222_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b354_9598_1222_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b354_9598_1222/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b354_9598_1222.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b354_9598_1222&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_b354_9598_1222"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_aac9_c0d1_377c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_aac9_c0d1_377c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_aac9_c0d1_377c/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_aac9_c0d1_377c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_aac9_c0d1_377c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_aac9_c0d1_377c/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_aac9_c0d1_377c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_aac9_c0d1_377c&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_aac9_c0d1_377c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e98e_e92a_9cfb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e98e_e92a_9cfb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e98e_e92a_9cfb/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Annual 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e98e_e92a_9cfb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e98e_e92a_9cfb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e98e_e92a_9cfb/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e98e_e92a_9cfb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e98e_e92a_9cfb&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_e98e_e92a_9cfb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_695f_f9ac_ce44", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_695f_f9ac_ce44.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_695f_f9ac_ce44/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Annual 5.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_695f_f9ac_ce44_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_695f_f9ac_ce44_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_695f_f9ac_ce44/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_695f_f9ac_ce44.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_695f_f9ac_ce44&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_695f_f9ac_ce44"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7d63_a8bc_2608", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7d63_a8bc_2608.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7d63_a8bc_2608/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Annual 5.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7d63_a8bc_2608_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7d63_a8bc_2608_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7d63_a8bc_2608/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7d63_a8bc_2608.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7d63_a8bc_2608&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_7d63_a8bc_2608"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_278d_ee5d_0336", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_278d_ee5d_0336.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_278d_ee5d_0336/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_278d_ee5d_0336_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_278d_ee5d_0336_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_278d_ee5d_0336/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_278d_ee5d_0336.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_278d_ee5d_0336&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_278d_ee5d_0336"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8696_391d_42f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8696_391d_42f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_8696_391d_42f0/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature November 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_8696_391d_42f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_8696_391d_42f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_8696_391d_42f0/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_8696_391d_42f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_8696_391d_42f0&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_8696_391d_42f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_21e3_c4af_877c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_21e3_c4af_877c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_21e3_c4af_877c/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_21e3_c4af_877c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_21e3_c4af_877c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_21e3_c4af_877c/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_21e3_c4af_877c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_21e3_c4af_877c&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_21e3_c4af_877c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6eb3_1324_fe10", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6eb3_1324_fe10.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6eb3_1324_fe10/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature November 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6eb3_1324_fe10_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6eb3_1324_fe10_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6eb3_1324_fe10/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6eb3_1324_fe10.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6eb3_1324_fe10&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_6eb3_1324_fe10"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_baee_515e_5f93", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_baee_515e_5f93.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_baee_515e_5f93/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature November 5.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_baee_515e_5f93_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_baee_515e_5f93_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_baee_515e_5f93/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_baee_515e_5f93.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_baee_515e_5f93&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_baee_515e_5f93"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_dd75_631c_40ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_dd75_631c_40ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_dd75_631c_40ca/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature November 5.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_dd75_631c_40ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_dd75_631c_40ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_dd75_631c_40ca/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_dd75_631c_40ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_dd75_631c_40ca&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_dd75_631c_40ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_06bf_c74a_24c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_06bf_c74a_24c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_06bf_c74a_24c6/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_06bf_c74a_24c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_06bf_c74a_24c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_06bf_c74a_24c6/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_06bf_c74a_24c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_06bf_c74a_24c6&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_06bf_c74a_24c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b05e_8ba1_e064", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_b05e_8ba1_e064.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_b05e_8ba1_e064/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Summer (Jul-Sep) 0.25 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_b05e_8ba1_e064_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_b05e_8ba1_e064_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_b05e_8ba1_e064/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_b05e_8ba1_e064.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_b05e_8ba1_e064&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_b05e_8ba1_e064"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4938_8b84_b07d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_4938_8b84_b07d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_4938_8b84_b07d/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_4938_8b84_b07d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_4938_8b84_b07d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_4938_8b84_b07d/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_4938_8b84_b07d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_4938_8b84_b07d&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_4938_8b84_b07d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ba38_d298_7fb6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ba38_d298_7fb6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_ba38_d298_7fb6/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_an (Objectively analyzed mean fields for sea_water_temperature at standard depth levels., degree_C)\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_oa (statistical mean value minus the objectively analyzed mean value for sea_water_temperature., degree_C)\nt_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for sea_water_temperature., degree_C)\nt_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for sea_water_temperature., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_ba38_d298_7fb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_ba38_d298_7fb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_ba38_d298_7fb6/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_ba38_d298_7fb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_ba38_d298_7fb6&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_ba38_d298_7fb6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2e80_3e92_0d96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_2e80_3e92_0d96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_2e80_3e92_0d96/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Summer (Jul-Sep) 5.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_2e80_3e92_0d96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_2e80_3e92_0d96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_2e80_3e92_0d96/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_2e80_3e92_0d96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_2e80_3e92_0d96&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_2e80_3e92_0d96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_c3c3_3090_b391", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_c3c3_3090_b391.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_c3c3_3090_b391/request", "", "public", "World Ocean Atlas 2013 version 2 : sea_water_temperature Summer (Jul-Sep) 5.00 degree, 0000", "Climatological mean temperature for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nt_mn (Average of all unflagged interpolated values at each standard depth level for sea_water_temperature in each grid-square which contain at least one measurement., degree_C)\nt_dd (The number of observations of sea_water_temperature in each grid-square at each standard depth level., 1)\nt_sd (The standard deviation about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\nt_se (The standard error about the statistical mean of sea_water_temperature in each grid-square at each standard depth level., degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_c3c3_3090_b391_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_c3c3_3090_b391_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_c3c3_3090_b391/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_c3c3_3090_b391.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_c3c3_3090_b391&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_c3c3_3090_b391"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a7ac_1589_b711", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a7ac_1589_b711.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_a7ac_1589_b711/request", "", "public", "World Ocean Atlas 2013 version 2 : volume_fraction_of_oxygen_in_sea_water Annual 1.00 degree, 0000", "Climatological mean dissolved oxygen for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\no_an (Objectively analyzed mean fields for volume_fraction_of_oxygen_in_sea_water at standard depth levels., milliliters_per_liter)\no_mn (Average of all unflagged interpolated values at each standard depth level for volume_fraction_of_oxygen_in_sea_water in each grid-square which contain at least one measurement., milliliters_per_liter)\no_dd (The number of observations of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., 1)\no_sd (The standard deviation about the statistical mean of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., milliliters_per_liter)\no_se (The standard error about the statistical mean of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., milliliters_per_liter)\no_oa (statistical mean value minus the objectively analyzed mean value for volume_fraction_of_oxygen_in_sea_water., milliliters_per_liter)\no_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for volume_fraction_of_oxygen_in_sea_water., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_a7ac_1589_b711_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_a7ac_1589_b711_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_a7ac_1589_b711/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_a7ac_1589_b711.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_a7ac_1589_b711&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_a7ac_1589_b711"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_eab7_f5e7_8a52", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_eab7_f5e7_8a52.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_eab7_f5e7_8a52/request", "", "public", "World Ocean Atlas 2013 version 2 : volume_fraction_of_oxygen_in_sea_water Annual 1.00 degree, 0000", "Climatological mean dissolved oxygen for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\no_an (Objectively analyzed mean fields for volume_fraction_of_oxygen_in_sea_water at standard depth levels., milliliters_per_liter)\no_mn (Average of all unflagged interpolated values at each standard depth level for volume_fraction_of_oxygen_in_sea_water in each grid-square which contain at least one measurement., milliliters_per_liter)\no_dd (The number of observations of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., 1)\no_sd (The standard deviation about the statistical mean of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., milliliters_per_liter)\no_se (The standard error about the statistical mean of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., milliliters_per_liter)\no_oa (statistical mean value minus the objectively analyzed mean value for volume_fraction_of_oxygen_in_sea_water., milliliters_per_liter)\no_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for volume_fraction_of_oxygen_in_sea_water., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_eab7_f5e7_8a52_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_eab7_f5e7_8a52_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_eab7_f5e7_8a52/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_eab7_f5e7_8a52.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_eab7_f5e7_8a52&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_eab7_f5e7_8a52"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8809_c848_d271", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_8809_c848_d271.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_8809_c848_d271/request", "", "public", "World Ocean Atlas 2013 version 2 : volume_fraction_of_oxygen_in_sea_water Annual 5.00 degree, 0000", "Climatological mean dissolved oxygen for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\no_mn (Average of all unflagged interpolated values at each standard depth level for volume_fraction_of_oxygen_in_sea_water in each grid-square which contain at least one measurement., milliliters_per_liter)\no_dd (The number of observations of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., 1)\no_sd (The standard deviation about the statistical mean of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., milliliters_per_liter)\no_se (The standard error about the statistical mean of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., milliliters_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_8809_c848_d271_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_8809_c848_d271_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_8809_c848_d271/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_8809_c848_d271.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_8809_c848_d271&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_8809_c848_d271"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_be05_8afb_78e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_be05_8afb_78e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_be05_8afb_78e5/request", "", "public", "World Ocean Atlas 2013 version 2 : volume_fraction_of_oxygen_in_sea_water Annual 5.00 degree, 0000", "Climatological mean dissolved oxygen for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\no_mn (Average of all unflagged interpolated values at each standard depth level for volume_fraction_of_oxygen_in_sea_water in each grid-square which contain at least one measurement., milliliters_per_liter)\no_dd (The number of observations of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., 1)\no_sd (The standard deviation about the statistical mean of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., milliliters_per_liter)\no_se (The standard error about the statistical mean of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., milliliters_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_be05_8afb_78e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_be05_8afb_78e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_be05_8afb_78e5/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_be05_8afb_78e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_be05_8afb_78e5&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_be05_8afb_78e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3e23_0955_70a3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_3e23_0955_70a3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_3e23_0955_70a3/request", "", "public", "World Ocean Atlas 2013 version 2 : volume_fraction_of_oxygen_in_sea_water November 1.00 degree, 0000", "Climatological mean dissolved oxygen for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\no_an (Objectively analyzed mean fields for volume_fraction_of_oxygen_in_sea_water at standard depth levels., milliliters_per_liter)\no_mn (Average of all unflagged interpolated values at each standard depth level for volume_fraction_of_oxygen_in_sea_water in each grid-square which contain at least one measurement., milliliters_per_liter)\no_dd (The number of observations of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., 1)\no_sd (The standard deviation about the statistical mean of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., milliliters_per_liter)\no_se (The standard error about the statistical mean of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., milliliters_per_liter)\no_oa (statistical mean value minus the objectively analyzed mean value for volume_fraction_of_oxygen_in_sea_water., milliliters_per_liter)\no_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for volume_fraction_of_oxygen_in_sea_water., milliliters_per_liter)\no_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for volume_fraction_of_oxygen_in_sea_water., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_3e23_0955_70a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_3e23_0955_70a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_3e23_0955_70a3/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_3e23_0955_70a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_3e23_0955_70a3&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_3e23_0955_70a3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cb0a_035b_7ba4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_cb0a_035b_7ba4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_cb0a_035b_7ba4/request", "", "public", "World Ocean Atlas 2013 version 2 : volume_fraction_of_oxygen_in_sea_water November 1.00 degree, 0000", "Climatological mean dissolved oxygen for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\no_an (Objectively analyzed mean fields for volume_fraction_of_oxygen_in_sea_water at standard depth levels., milliliters_per_liter)\no_mn (Average of all unflagged interpolated values at each standard depth level for volume_fraction_of_oxygen_in_sea_water in each grid-square which contain at least one measurement., milliliters_per_liter)\no_dd (The number of observations of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., 1)\no_sd (The standard deviation about the statistical mean of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., milliliters_per_liter)\no_se (The standard error about the statistical mean of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., milliliters_per_liter)\no_oa (statistical mean value minus the objectively analyzed mean value for volume_fraction_of_oxygen_in_sea_water., milliliters_per_liter)\no_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for volume_fraction_of_oxygen_in_sea_water., milliliters_per_liter)\no_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for volume_fraction_of_oxygen_in_sea_water., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_cb0a_035b_7ba4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_cb0a_035b_7ba4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_cb0a_035b_7ba4/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_cb0a_035b_7ba4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_cb0a_035b_7ba4&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_cb0a_035b_7ba4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e728_ac2b_7e86", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e728_ac2b_7e86.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e728_ac2b_7e86/request", "", "public", "World Ocean Atlas 2013 version 2 : volume_fraction_of_oxygen_in_sea_water November 5.00 degree, 0000", "Climatological mean dissolved oxygen for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\no_mn (Average of all unflagged interpolated values at each standard depth level for volume_fraction_of_oxygen_in_sea_water in each grid-square which contain at least one measurement., milliliters_per_liter)\no_dd (The number of observations of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., 1)\no_sd (The standard deviation about the statistical mean of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., milliliters_per_liter)\no_se (The standard error about the statistical mean of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., milliliters_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e728_ac2b_7e86_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e728_ac2b_7e86_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e728_ac2b_7e86/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e728_ac2b_7e86.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e728_ac2b_7e86&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_e728_ac2b_7e86"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_fc0b_a2fa_2ab7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_fc0b_a2fa_2ab7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_fc0b_a2fa_2ab7/request", "", "public", "World Ocean Atlas 2013 version 2 : volume_fraction_of_oxygen_in_sea_water November 5.00 degree, 0000", "Climatological mean dissolved oxygen for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\no_mn (Average of all unflagged interpolated values at each standard depth level for volume_fraction_of_oxygen_in_sea_water in each grid-square which contain at least one measurement., milliliters_per_liter)\no_dd (The number of observations of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., 1)\no_sd (The standard deviation about the statistical mean of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., milliliters_per_liter)\no_se (The standard error about the statistical mean of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., milliliters_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_fc0b_a2fa_2ab7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_fc0b_a2fa_2ab7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_fc0b_a2fa_2ab7/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_fc0b_a2fa_2ab7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_fc0b_a2fa_2ab7&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_fc0b_a2fa_2ab7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0a89_d4cf_61cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_0a89_d4cf_61cc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_0a89_d4cf_61cc/request", "", "public", "World Ocean Atlas 2013 version 2 : volume_fraction_of_oxygen_in_sea_water Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean dissolved oxygen for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\no_an (Objectively analyzed mean fields for volume_fraction_of_oxygen_in_sea_water at standard depth levels., milliliters_per_liter)\no_mn (Average of all unflagged interpolated values at each standard depth level for volume_fraction_of_oxygen_in_sea_water in each grid-square which contain at least one measurement., milliliters_per_liter)\no_dd (The number of observations of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., 1)\no_sd (The standard deviation about the statistical mean of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., milliliters_per_liter)\no_se (The standard error about the statistical mean of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., milliliters_per_liter)\no_oa (statistical mean value minus the objectively analyzed mean value for volume_fraction_of_oxygen_in_sea_water., milliliters_per_liter)\no_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for volume_fraction_of_oxygen_in_sea_water., milliliters_per_liter)\no_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for volume_fraction_of_oxygen_in_sea_water., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_0a89_d4cf_61cc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_0a89_d4cf_61cc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_0a89_d4cf_61cc/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_0a89_d4cf_61cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_0a89_d4cf_61cc&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_0a89_d4cf_61cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_42a2_6728_13b4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_42a2_6728_13b4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_42a2_6728_13b4/request", "", "public", "World Ocean Atlas 2013 version 2 : volume_fraction_of_oxygen_in_sea_water Summer (Jul-Sep) 1.00 degree, 0000", "Climatological mean dissolved oxygen for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\no_an (Objectively analyzed mean fields for volume_fraction_of_oxygen_in_sea_water at standard depth levels., milliliters_per_liter)\no_mn (Average of all unflagged interpolated values at each standard depth level for volume_fraction_of_oxygen_in_sea_water in each grid-square which contain at least one measurement., milliliters_per_liter)\no_dd (The number of observations of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., 1)\no_sd (The standard deviation about the statistical mean of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., milliliters_per_liter)\no_se (The standard error about the statistical mean of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., milliliters_per_liter)\no_oa (statistical mean value minus the objectively analyzed mean value for volume_fraction_of_oxygen_in_sea_water., milliliters_per_liter)\no_ma (The objectively analyzed value for the given time period minus the objectively analyzed annual mean value for volume_fraction_of_oxygen_in_sea_water., milliliters_per_liter)\no_gp (The number of grid-squares within the smallest radius of influence around each grid-square which contain a statistical mean for volume_fraction_of_oxygen_in_sea_water., 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_42a2_6728_13b4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_42a2_6728_13b4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_42a2_6728_13b4/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_42a2_6728_13b4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_42a2_6728_13b4&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_42a2_6728_13b4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6a74_5b8e_75f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6a74_5b8e_75f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6a74_5b8e_75f5/request", "", "public", "World Ocean Atlas 2013 version 2 : volume_fraction_of_oxygen_in_sea_water Summer (Jul-Sep) 5.00 degree, 0000", "Climatological mean dissolved oxygen for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\no_mn (Average of all unflagged interpolated values at each standard depth level for volume_fraction_of_oxygen_in_sea_water in each grid-square which contain at least one measurement., milliliters_per_liter)\no_dd (The number of observations of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., 1)\no_sd (The standard deviation about the statistical mean of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., milliliters_per_liter)\no_se (The standard error about the statistical mean of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., milliliters_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6a74_5b8e_75f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6a74_5b8e_75f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6a74_5b8e_75f5/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6a74_5b8e_75f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6a74_5b8e_75f5&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_6a74_5b8e_75f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a781_a88b_6724", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_a781_a88b_6724.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_a781_a88b_6724/request", "", "public", "World Ocean Atlas 2013 version 2 : volume_fraction_of_oxygen_in_sea_water Summer (Jul-Sep) 5.00 degree, 0000", "Climatological mean dissolved oxygen for the global ocean from in situ profile data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\no_mn (Average of all unflagged interpolated values at each standard depth level for volume_fraction_of_oxygen_in_sea_water in each grid-square which contain at least one measurement., milliliters_per_liter)\no_dd (The number of observations of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., 1)\no_sd (The standard deviation about the statistical mean of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., milliliters_per_liter)\no_se (The standard error about the statistical mean of volume_fraction_of_oxygen_in_sea_water in each grid-square at each standard depth level., milliliters_per_liter)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_a781_a88b_6724_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_a781_a88b_6724_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_a781_a88b_6724/index.json", "https://www.nodc.noaa.gov/OC5/WOA13/pr_woa13.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_a781_a88b_6724.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_a781_a88b_6724&showErrors=false&email=", "NGDC(NODC)", "noaa_nodc_a781_a88b_6724"] + ] + } + } + recorded_at: 2019-01-31 19:30:23 GMT + recorded_with: vcr/0.2.2, webmockr/0.3.0 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/search/advanced.json?page=1&itemsPerPage=1000&minTime=2010-01-01T00%3A00%3A00Z&maxTime=2010-02-01T00%3A00%3A00Z + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.7.0.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Thu, 31 Jan 2019 19:31:18 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=AdvancedSearch.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_62ec_436e_705e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_62ec_436e_705e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_62ec_436e_705e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (air.tropo.mon.mean), 2.0\u00b0, 1851-2014", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at Tropopause, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_62ec_436e_705e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_62ec_436e_705e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_62ec_436e_705e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_62ec_436e_705e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_62ec_436e_705e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_62ec_436e_705e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1195_25c6_2c87", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1195_25c6_2c87.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1195_25c6_2c87/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (hgt.tropo.mon.mean), 2.0\u00b0, 1851-2014", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhgt (Monthly Geopotential Heights Spread at Tropopause, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1195_25c6_2c87_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1195_25c6_2c87_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1195_25c6_2c87/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1195_25c6_2c87.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1195_25c6_2c87&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_1195_25c6_2c87"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfef_ba66_fb56", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfef_ba66_fb56.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bfef_ba66_fb56/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (pres.sfc.mon.mean), 2.0\u00b0, 1851-2014", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npres (Monthly Pressure Spread at Surface, Pa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bfef_ba66_fb56_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bfef_ba66_fb56_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bfef_ba66_fb56/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bfef_ba66_fb56.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bfef_ba66_fb56&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_bfef_ba66_fb56"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d48_1932_1802", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0d48_1932_1802.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0d48_1932_1802/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (tcdc.bndrylyr.mon.mean), 1851-2014", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Boundary Layer Cloud Cover Spread, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0d48_1932_1802_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0d48_1932_1802_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0d48_1932_1802/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0d48_1932_1802.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0d48_1932_1802&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0d48_1932_1802"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_106f_e077_9cdc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_106f_e077_9cdc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_106f_e077_9cdc/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (tcdc.bndrylyr.mon.mean), 1851-2014", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Boundary Layer Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_106f_e077_9cdc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_106f_e077_9cdc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_106f_e077_9cdc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_106f_e077_9cdc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_106f_e077_9cdc&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_106f_e077_9cdc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cca_d24d_54b4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cca_d24d_54b4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9cca_d24d_54b4/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (tco3.eatm.mon.mean), 2.0\u00b0, 1851-2014", "Data is from \nNOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntco3 (Monthly Total Columnar Ozone Spread, Dobsons)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9cca_d24d_54b4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9cca_d24d_54b4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9cca_d24d_54b4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9cca_d24d_54b4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9cca_d24d_54b4&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9cca_d24d_54b4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7913_7d7b_5e04", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7913_7d7b_5e04.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7913_7d7b_5e04/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel sprd, cape.mon.mean), 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncape (Monthly CAPE Spread, J/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7913_7d7b_5e04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7913_7d7b_5e04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7913_7d7b_5e04/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7913_7d7b_5e04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7913_7d7b_5e04&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7913_7d7b_5e04"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d17d_bfa2_dbd8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d17d_bfa2_dbd8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d17d_bfa2_dbd8/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel sprd, cin.mon.mean), 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncin (Monthly CIN Spread, J/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d17d_bfa2_dbd8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d17d_bfa2_dbd8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d17d_bfa2_dbd8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d17d_bfa2_dbd8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d17d_bfa2_dbd8&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d17d_bfa2_dbd8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2051_37af_279b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2051_37af_279b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2051_37af_279b/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel sprd, prmsl.mon.mean), 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprmsl (Monthly Pressure Spread at Mean Sea Level, Pa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2051_37af_279b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2051_37af_279b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2051_37af_279b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2051_37af_279b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2051_37af_279b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2051_37af_279b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38e2_4623_3d85", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38e2_4623_3d85.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_38e2_4623_3d85/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_38e2_4623_3d85_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_38e2_4623_3d85_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_38e2_4623_3d85/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_38e2_4623_3d85.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_38e2_4623_3d85&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_38e2_4623_3d85"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73b7_feea_c0e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73b7_feea_c0e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_73b7_feea_c0e3/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_73b7_feea_c0e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_73b7_feea_c0e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_73b7_feea_c0e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_73b7_feea_c0e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_73b7_feea_c0e3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_73b7_feea_c0e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7655_8c18_3a9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7655_8c18_3a9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7655_8c18_3a9d/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature Spread at surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7655_8c18_3a9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7655_8c18_3a9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7655_8c18_3a9d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7655_8c18_3a9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7655_8c18_3a9d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7655_8c18_3a9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5e1_2e73_fabb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5e1_2e73_fabb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5e1_2e73_fabb/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, air.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Monthly Air Temperature at Surface, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5e1_2e73_fabb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5e1_2e73_fabb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5e1_2e73_fabb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5e1_2e73_fabb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5e1_2e73_fabb&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b5e1_2e73_fabb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_68ff_fe3f_2ee1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_68ff_fe3f_2ee1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_68ff_fe3f_2ee1/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, albedo.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nalbedo (Monthly Albedo Spread at surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_68ff_fe3f_2ee1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_68ff_fe3f_2ee1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_68ff_fe3f_2ee1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_68ff_fe3f_2ee1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_68ff_fe3f_2ee1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_68ff_fe3f_2ee1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7f1_27bc_6384", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f7f1_27bc_6384.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f7f1_27bc_6384/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, albedo.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nalbedo (Monthly Albedo at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f7f1_27bc_6384_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f7f1_27bc_6384_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f7f1_27bc_6384/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f7f1_27bc_6384.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f7f1_27bc_6384&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f7f1_27bc_6384"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6bf1_6fc1_b4ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6bf1_6fc1_b4ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6bf1_6fc1_b4ca/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cduvb.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncduvb (Monthly Clear Sky UV-B Downward Solar Flux Spread, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6bf1_6fc1_b4ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6bf1_6fc1_b4ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6bf1_6fc1_b4ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6bf1_6fc1_b4ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6bf1_6fc1_b4ca&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6bf1_6fc1_b4ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d477_89fa_75b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d477_89fa_75b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d477_89fa_75b3/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cnwat.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncnwat (Monthly Plant Canopy Surface Water, kg m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d477_89fa_75b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d477_89fa_75b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d477_89fa_75b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d477_89fa_75b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d477_89fa_75b3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d477_89fa_75b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec58_2a0f_4148", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ec58_2a0f_4148.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ec58_2a0f_4148/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cnwat.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncnwat (Monthly Plant Canopy Surface Water Spread, kg m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ec58_2a0f_4148_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ec58_2a0f_4148_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ec58_2a0f_4148/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ec58_2a0f_4148.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ec58_2a0f_4148&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_ec58_2a0f_4148"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fc1_2644_30ee", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fc1_2644_30ee.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2fc1_2644_30ee/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cprat.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (Monthly Convective Precipitation Rate, kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2fc1_2644_30ee_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2fc1_2644_30ee_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2fc1_2644_30ee/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2fc1_2644_30ee.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2fc1_2644_30ee&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2fc1_2644_30ee"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b2a0_2b68_fb0e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b2a0_2b68_fb0e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b2a0_2b68_fb0e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cprat.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncprat (Monthly Convective Precipitation Rate Spread, kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b2a0_2b68_fb0e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b2a0_2b68_fb0e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b2a0_2b68_fb0e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b2a0_2b68_fb0e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b2a0_2b68_fb0e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b2a0_2b68_fb0e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_40c6_894b_1b81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_40c6_894b_1b81.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_40c6_894b_1b81/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cwork.eatm.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncwork (Monthly Cloud Work Function, J/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_40c6_894b_1b81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_40c6_894b_1b81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_40c6_894b_1b81/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_40c6_894b_1b81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_40c6_894b_1b81&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_40c6_894b_1b81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c496_a0f5_fb81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c496_a0f5_fb81.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c496_a0f5_fb81/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, cwork.eatm.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncwork (Monthly Cloud Work Function Spread, J/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c496_a0f5_fb81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c496_a0f5_fb81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c496_a0f5_fb81/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c496_a0f5_fb81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c496_a0f5_fb81&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c496_a0f5_fb81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5698_ec45_3e11", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5698_ec45_3e11.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5698_ec45_3e11/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, dlwrf.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (Monthly Downward Longwave Radiation Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5698_ec45_3e11_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5698_ec45_3e11_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5698_ec45_3e11/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5698_ec45_3e11.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5698_ec45_3e11&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5698_ec45_3e11"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc6c_3741_5648", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc6c_3741_5648.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc6c_3741_5648/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, dlwrf.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndlwrf (Monthly Downward Longwave Radiation Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc6c_3741_5648_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc6c_3741_5648_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc6c_3741_5648/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc6c_3741_5648.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc6c_3741_5648&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_cc6c_3741_5648"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44b5_cf03_f71d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_44b5_cf03_f71d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_44b5_cf03_f71d/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, dswrf.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Monthly Downward Solar Radiation Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_44b5_cf03_f71d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_44b5_cf03_f71d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_44b5_cf03_f71d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_44b5_cf03_f71d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_44b5_cf03_f71d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_44b5_cf03_f71d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b87c_e5ff_113e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b87c_e5ff_113e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b87c_e5ff_113e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, dswrf.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ndswrf (Monthly Downward Solar Radiation Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b87c_e5ff_113e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b87c_e5ff_113e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b87c_e5ff_113e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b87c_e5ff_113e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b87c_e5ff_113e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b87c_e5ff_113e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a122_51f3_c4e9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a122_51f3_c4e9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a122_51f3_c4e9/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, duvb.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nduvb (Monthly UV-B Downward Solar Flux Spread, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a122_51f3_c4e9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a122_51f3_c4e9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a122_51f3_c4e9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a122_51f3_c4e9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a122_51f3_c4e9&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a122_51f3_c4e9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6cf6_9631_1297", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6cf6_9631_1297.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6cf6_9631_1297/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, evbs.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nevbs (Monthly Direct Evaporation From Bare Soil, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6cf6_9631_1297_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6cf6_9631_1297_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6cf6_9631_1297/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6cf6_9631_1297.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6cf6_9631_1297&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6cf6_9631_1297"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d23_80f9_72ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d23_80f9_72ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d23_80f9_72ae/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, evbs.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nevbs (Monthly Direct Evaporation From Bare Soil Spread, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d23_80f9_72ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d23_80f9_72ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d23_80f9_72ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d23_80f9_72ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d23_80f9_72ae&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8d23_80f9_72ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ec5_c81a_86d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ec5_c81a_86d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ec5_c81a_86d9/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, evcw.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nevcw (Monthly Canopy Water Evaporation, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ec5_c81a_86d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ec5_c81a_86d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ec5_c81a_86d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ec5_c81a_86d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ec5_c81a_86d9&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5ec5_c81a_86d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ea1_0ee3_d93c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ea1_0ee3_d93c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9ea1_0ee3_d93c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, evcw.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nevcw (Monthly Canopy Water Evaporation Spread, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9ea1_0ee3_d93c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9ea1_0ee3_d93c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9ea1_0ee3_d93c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9ea1_0ee3_d93c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9ea1_0ee3_d93c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9ea1_0ee3_d93c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6471_926c_1a56", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6471_926c_1a56.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6471_926c_1a56/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, gflux.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Monthly Ground Heat Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6471_926c_1a56_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6471_926c_1a56_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6471_926c_1a56/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6471_926c_1a56.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6471_926c_1a56&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6471_926c_1a56"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae20_b176_9c1c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae20_b176_9c1c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae20_b176_9c1c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, gflux.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ngflux (Monthly Ground Heat Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae20_b176_9c1c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae20_b176_9c1c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae20_b176_9c1c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae20_b176_9c1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae20_b176_9c1c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_ae20_b176_9c1c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2935_b150_71d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2935_b150_71d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2935_b150_71d7/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, hpbl.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhpbl (Monthly Height Spread of Pressure Boundary Layer, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2935_b150_71d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2935_b150_71d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2935_b150_71d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2935_b150_71d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2935_b150_71d7&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2935_b150_71d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8416_5d3a_e31a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8416_5d3a_e31a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8416_5d3a_e31a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, hpbl.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nhpbl (Monthly Height of Pressure Boundary Layer, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8416_5d3a_e31a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8416_5d3a_e31a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8416_5d3a_e31a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8416_5d3a_e31a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8416_5d3a_e31a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8416_5d3a_e31a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f04_cc87_eb1d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f04_cc87_eb1d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6f04_cc87_eb1d/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, icec.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Monthly Ice Concentration at surface, frac.)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6f04_cc87_eb1d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6f04_cc87_eb1d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6f04_cc87_eb1d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6f04_cc87_eb1d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6f04_cc87_eb1d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6f04_cc87_eb1d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_430e_d3e3_149b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_430e_d3e3_149b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_430e_d3e3_149b/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, icet.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicet (Monthly Ice Thickness Spread at Surface, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_430e_d3e3_149b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_430e_d3e3_149b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_430e_d3e3_149b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_430e_d3e3_149b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_430e_d3e3_149b&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_430e_d3e3_149b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fec1_6bf8_98d6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fec1_6bf8_98d6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fec1_6bf8_98d6/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, icet.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicet (Monthly Ice Thickness at Surface, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fec1_6bf8_98d6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fec1_6bf8_98d6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fec1_6bf8_98d6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fec1_6bf8_98d6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fec1_6bf8_98d6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_fec1_6bf8_98d6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5195_84d8_f2cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5195_84d8_f2cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5195_84d8_f2cb/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, lhtfl.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Monthly Latent Heat Net Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5195_84d8_f2cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5195_84d8_f2cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5195_84d8_f2cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5195_84d8_f2cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5195_84d8_f2cb&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5195_84d8_f2cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6983_a165_264a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6983_a165_264a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6983_a165_264a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, lhtfl.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlhtfl (Monthly Latent Heat Net Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6983_a165_264a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6983_a165_264a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6983_a165_264a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6983_a165_264a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6983_a165_264a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6983_a165_264a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38b8_b3cd_c727", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38b8_b3cd_c727.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_38b8_b3cd_c727/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pevpr.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Monthly Potential Evaporation Rate at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_38b8_b3cd_c727_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_38b8_b3cd_c727_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_38b8_b3cd_c727/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_38b8_b3cd_c727.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_38b8_b3cd_c727&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_38b8_b3cd_c727"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e591_aa46_e0b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e591_aa46_e0b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e591_aa46_e0b3/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pevpr.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npevpr (Monthly Potential Evaporation Rate Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e591_aa46_e0b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e591_aa46_e0b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e591_aa46_e0b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e591_aa46_e0b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e591_aa46_e0b3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e591_aa46_e0b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00ae_9bb5_ac3f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_00ae_9bb5_ac3f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_00ae_9bb5_ac3f/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pr wtr.eatm.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Precipitable Water Spread for entire atmosphere, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_00ae_9bb5_ac3f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_00ae_9bb5_ac3f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_00ae_9bb5_ac3f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_00ae_9bb5_ac3f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_00ae_9bb5_ac3f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_00ae_9bb5_ac3f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6bce_fe34_5a96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6bce_fe34_5a96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6bce_fe34_5a96/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, pr wtr.eatm.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npr_wtr (Monthly Precipitable Water for entire atmosphere, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6bce_fe34_5a96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6bce_fe34_5a96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6bce_fe34_5a96/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6bce_fe34_5a96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6bce_fe34_5a96&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6bce_fe34_5a96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3fea_e827_5463", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3fea_e827_5463.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3fea_e827_5463/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, prate.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Monthly Precipitation Rate at surface, kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3fea_e827_5463_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3fea_e827_5463_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3fea_e827_5463/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3fea_e827_5463.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3fea_e827_5463&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3fea_e827_5463"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c62b_e56e_e3d6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c62b_e56e_e3d6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c62b_e56e_e3d6/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, prate.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprate (Monthly Precipitation Rate Spread at surface, kg/m^2/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c62b_e56e_e3d6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c62b_e56e_e3d6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c62b_e56e_e3d6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c62b_e56e_e3d6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c62b_e56e_e3d6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c62b_e56e_e3d6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_397e_a3fb_3e38", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_397e_a3fb_3e38.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_397e_a3fb_3e38/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, press.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npress (Monthly Pressure Spread at surface, Pascal)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_397e_a3fb_3e38_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_397e_a3fb_3e38_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_397e_a3fb_3e38/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_397e_a3fb_3e38.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_397e_a3fb_3e38&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_397e_a3fb_3e38"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e082_dd78_72f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e082_dd78_72f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e082_dd78_72f3/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, press.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npress (Monthly Pressure at surface, Pascal)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e082_dd78_72f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e082_dd78_72f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e082_dd78_72f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e082_dd78_72f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e082_dd78_72f3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e082_dd78_72f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60e1_362f_4bc6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60e1_362f_4bc6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_60e1_362f_4bc6/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, runoff.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunoff (Monthly Water Runoff at surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_60e1_362f_4bc6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_60e1_362f_4bc6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_60e1_362f_4bc6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_60e1_362f_4bc6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_60e1_362f_4bc6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_60e1_362f_4bc6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe21_33ff_d2d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fe21_33ff_d2d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fe21_33ff_d2d3/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, runoff.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrunoff (Monthly Water Runoff Spread at surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fe21_33ff_d2d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fe21_33ff_d2d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fe21_33ff_d2d3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fe21_33ff_d2d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fe21_33ff_d2d3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_fe21_33ff_d2d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cbee_af69_031c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cbee_af69_031c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cbee_af69_031c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, sbsno.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsbsno (Monthly Sublimation (Evaporation From Snow) Spread, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cbee_af69_031c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cbee_af69_031c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cbee_af69_031c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cbee_af69_031c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cbee_af69_031c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_cbee_af69_031c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fdbb_258c_a06a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fdbb_258c_a06a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fdbb_258c_a06a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, sbsno.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsbsno (Monthly Sublimation (Evaporation From Snow), W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fdbb_258c_a06a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fdbb_258c_a06a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fdbb_258c_a06a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fdbb_258c_a06a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fdbb_258c_a06a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_fdbb_258c_a06a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a12_39a7_ed5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a12_39a7_ed5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1a12_39a7_ed5f/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, sfexc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsfexc (Monthly Exchange Coefficient, (kg m-3) (m s-1))\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1a12_39a7_ed5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1a12_39a7_ed5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1a12_39a7_ed5f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1a12_39a7_ed5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1a12_39a7_ed5f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_1a12_39a7_ed5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb56_9111_dede", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb56_9111_dede.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eb56_9111_dede/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, sfexc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsfexc (Monthly Exchange Coefficient Spread, (kg m-3) (m s-1))\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eb56_9111_dede_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eb56_9111_dede_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb56_9111_dede/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb56_9111_dede.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb56_9111_dede&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_eb56_9111_dede"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2961_6123_1027", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2961_6123_1027.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2961_6123_1027/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, shtfl.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Monthly Sensible Heat Net Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2961_6123_1027_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2961_6123_1027_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2961_6123_1027/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2961_6123_1027.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2961_6123_1027&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_2961_6123_1027"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc9f_c039_d153", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc9f_c039_d153.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc9f_c039_d153/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, shtfl.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshtfl (Monthly Sensible Heat Net Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc9f_c039_d153_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc9f_c039_d153_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc9f_c039_d153/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc9f_c039_d153.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc9f_c039_d153&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_dc9f_c039_d153"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94bc_f332_3a9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94bc_f332_3a9f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_94bc_f332_3a9f/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, shum.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Monthly Specific Humidity Spread at 2 m, kg/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_94bc_f332_3a9f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_94bc_f332_3a9f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_94bc_f332_3a9f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_94bc_f332_3a9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_94bc_f332_3a9f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_94bc_f332_3a9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a748_7d70_d423", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a748_7d70_d423.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a748_7d70_d423/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, shum.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Monthly Specific Humidity at 2 m, kg/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a748_7d70_d423_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a748_7d70_d423_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a748_7d70_d423/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a748_7d70_d423.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a748_7d70_d423&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a748_7d70_d423"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cffd_e1f2_fc77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cffd_e1f2_fc77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cffd_e1f2_fc77/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, snod.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnod (Monthly Snow Depth at Surface, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cffd_e1f2_fc77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cffd_e1f2_fc77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cffd_e1f2_fc77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cffd_e1f2_fc77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cffd_e1f2_fc77&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_cffd_e1f2_fc77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e636_3179_0b1f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e636_3179_0b1f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e636_3179_0b1f/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, snod.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnod (Monthly Snow Depth Spread at Surface, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e636_3179_0b1f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e636_3179_0b1f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e636_3179_0b1f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e636_3179_0b1f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e636_3179_0b1f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e636_3179_0b1f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ade_3a8f_4e89", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ade_3a8f_4e89.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ade_3a8f_4e89/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, snowc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowc (Monthly Snow Cover Spread at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ade_3a8f_4e89_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ade_3a8f_4e89_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ade_3a8f_4e89/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ade_3a8f_4e89.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ade_3a8f_4e89&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4ade_3a8f_4e89"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9312_2ff0_bf53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9312_2ff0_bf53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9312_2ff0_bf53/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, snowc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsnowc (Monthly Snow Cover at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9312_2ff0_bf53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9312_2ff0_bf53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9312_2ff0_bf53/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9312_2ff0_bf53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9312_2ff0_bf53&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9312_2ff0_bf53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87d4_2bc6_1842", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87d4_2bc6_1842.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_87d4_2bc6_1842/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, soilm.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (Monthly Soil Moisture Content Spread at Surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_87d4_2bc6_1842_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_87d4_2bc6_1842_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_87d4_2bc6_1842/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_87d4_2bc6_1842.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_87d4_2bc6_1842&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_87d4_2bc6_1842"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_907c_6383_464c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_907c_6383_464c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_907c_6383_464c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, soilm.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsoilm (Monthly Soil Moisture Content at Surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_907c_6383_464c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_907c_6383_464c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_907c_6383_464c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_907c_6383_464c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_907c_6383_464c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_907c_6383_464c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e27_1ef1_dbf6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e27_1ef1_dbf6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e27_1ef1_dbf6/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ssrunoff.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssrunoff (Monthly Storm Surface Runoff at Surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e27_1ef1_dbf6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e27_1ef1_dbf6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e27_1ef1_dbf6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e27_1ef1_dbf6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e27_1ef1_dbf6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0e27_1ef1_dbf6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c24c_3c4a_df05", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c24c_3c4a_df05.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c24c_3c4a_df05/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ssrunoff.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nssrunoff (Monthly Storm Surface Runoff Spread at Surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c24c_3c4a_df05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c24c_3c4a_df05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c24c_3c4a_df05/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c24c_3c4a_df05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c24c_3c4a_df05&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c24c_3c4a_df05"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5a4_3d82_f35c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5a4_3d82_f35c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5a4_3d82_f35c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.convcld.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Convective Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5a4_3d82_f35c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5a4_3d82_f35c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5a4_3d82_f35c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5a4_3d82_f35c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5a4_3d82_f35c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b5a4_3d82_f35c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2a5_a6bf_6ff0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d2a5_a6bf_6ff0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d2a5_a6bf_6ff0/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.convcld.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Convective Cloud Cover Spread, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d2a5_a6bf_6ff0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d2a5_a6bf_6ff0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d2a5_a6bf_6ff0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d2a5_a6bf_6ff0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d2a5_a6bf_6ff0&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d2a5_a6bf_6ff0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9f7_4a72_3413", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e9f7_4a72_3413.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e9f7_4a72_3413/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.eatm.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Total Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e9f7_4a72_3413_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e9f7_4a72_3413_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e9f7_4a72_3413/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e9f7_4a72_3413.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e9f7_4a72_3413&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e9f7_4a72_3413"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fca0_0538_c3fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fca0_0538_c3fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fca0_0538_c3fd/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.eatm.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Total Cloud Cover Spread, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fca0_0538_c3fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fca0_0538_c3fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fca0_0538_c3fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fca0_0538_c3fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fca0_0538_c3fd&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_fca0_0538_c3fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_631d_2baa_a7b7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_631d_2baa_a7b7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_631d_2baa_a7b7/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.lowcld.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Low Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_631d_2baa_a7b7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_631d_2baa_a7b7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_631d_2baa_a7b7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_631d_2baa_a7b7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_631d_2baa_a7b7&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_631d_2baa_a7b7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c24b_3508_d38e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c24b_3508_d38e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c24b_3508_d38e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.lowcld.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Low Cloud Cover Spread, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c24b_3508_d38e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c24b_3508_d38e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c24b_3508_d38e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c24b_3508_d38e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c24b_3508_d38e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c24b_3508_d38e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_931b_9519_4aa6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_931b_9519_4aa6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_931b_9519_4aa6/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.midcld.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Middle Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_931b_9519_4aa6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_931b_9519_4aa6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_931b_9519_4aa6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_931b_9519_4aa6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_931b_9519_4aa6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_931b_9519_4aa6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9485_5214_f724", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9485_5214_f724.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9485_5214_f724/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.midcld.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Middle Cloud Cover Spread, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9485_5214_f724_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9485_5214_f724_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9485_5214_f724/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9485_5214_f724.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9485_5214_f724&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9485_5214_f724"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4625_8234_b296", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4625_8234_b296.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4625_8234_b296/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.topcld.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Top Cloud Cover, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4625_8234_b296_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4625_8234_b296_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4625_8234_b296/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4625_8234_b296.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4625_8234_b296&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4625_8234_b296"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5101_fc68_6e2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5101_fc68_6e2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5101_fc68_6e2a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tcdc.topcld.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntcdc (Monthly Top Cloud Cover Spread, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5101_fc68_6e2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5101_fc68_6e2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5101_fc68_6e2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5101_fc68_6e2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5101_fc68_6e2a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5101_fc68_6e2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_059c_6820_a42c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_059c_6820_a42c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_059c_6820_a42c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Maximum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_059c_6820_a42c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_059c_6820_a42c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_059c_6820_a42c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_059c_6820_a42c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_059c_6820_a42c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_059c_6820_a42c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c02_7fe8_9f50", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c02_7fe8_9f50.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c02_7fe8_9f50/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmax.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmax (Monthly Maximum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c02_7fe8_9f50_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c02_7fe8_9f50_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c02_7fe8_9f50/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c02_7fe8_9f50.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c02_7fe8_9f50&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_9c02_7fe8_9f50"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0dd8_7adb_c629", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0dd8_7adb_c629.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0dd8_7adb_c629/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Minimum Temperature Spread at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0dd8_7adb_c629_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0dd8_7adb_c629_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0dd8_7adb_c629/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0dd8_7adb_c629.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0dd8_7adb_c629&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0dd8_7adb_c629"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5613_d6e9_14f4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5613_d6e9_14f4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5613_d6e9_14f4/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, tmin.2m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntmin (Monthly Minimum Temperature at 2 m, degree_K)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5613_d6e9_14f4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5613_d6e9_14f4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5613_d6e9_14f4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5613_d6e9_14f4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5613_d6e9_14f4&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5613_d6e9_14f4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c67_fb14_ed63", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c67_fb14_ed63.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c67_fb14_ed63/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, trans.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntrans (Monthly Transpiration Spread at Surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c67_fb14_ed63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c67_fb14_ed63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c67_fb14_ed63/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c67_fb14_ed63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c67_fb14_ed63&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5c67_fb14_ed63"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8da_431b_f855", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f8da_431b_f855.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f8da_431b_f855/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, trans.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntrans (Monthly Transpiration at Surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f8da_431b_f855_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f8da_431b_f855_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f8da_431b_f855/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f8da_431b_f855.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f8da_431b_f855&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f8da_431b_f855"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80eb_c83d_930f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80eb_c83d_930f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_80eb_c83d_930f/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uflx.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Monthly Momentum Flux, u-component at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_80eb_c83d_930f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_80eb_c83d_930f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_80eb_c83d_930f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_80eb_c83d_930f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_80eb_c83d_930f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_80eb_c83d_930f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5a0_b913_c1ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5a0_b913_c1ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5a0_b913_c1ce/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uflx.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuflx (Monthly Momentum Flux Spread, u-component at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5a0_b913_c1ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5a0_b913_c1ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5a0_b913_c1ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5a0_b913_c1ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5a0_b913_c1ce&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c5a0_b913_c1ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7809_4b34_efdd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7809_4b34_efdd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7809_4b34_efdd/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ugwd.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Monthly Zonal Gravity Wave Stress at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7809_4b34_efdd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7809_4b34_efdd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7809_4b34_efdd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7809_4b34_efdd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7809_4b34_efdd&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7809_4b34_efdd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98b1_a3d4_4a3a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_98b1_a3d4_4a3a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_98b1_a3d4_4a3a/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ugwd.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nugwd (Monthly Zonal Gravity Wave Stress Spread at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_98b1_a3d4_4a3a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_98b1_a3d4_4a3a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_98b1_a3d4_4a3a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_98b1_a3d4_4a3a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_98b1_a3d4_4a3a&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_98b1_a3d4_4a3a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ec5_f961_a7a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ec5_f961_a7a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0ec5_f961_a7a6/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ulwrf.ntat.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Upward Longwave Radiation Flux at nominal top of atmosphere, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0ec5_f961_a7a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0ec5_f961_a7a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0ec5_f961_a7a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0ec5_f961_a7a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0ec5_f961_a7a6&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_0ec5_f961_a7a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5456_2ec0_ac77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5456_2ec0_ac77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5456_2ec0_ac77/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ulwrf.ntat.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Upward Longwave Radiation Flux Spread at nominal top of atmosphere, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5456_2ec0_ac77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5456_2ec0_ac77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5456_2ec0_ac77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5456_2ec0_ac77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5456_2ec0_ac77&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_5456_2ec0_ac77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3446_5d3e_54a5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3446_5d3e_54a5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3446_5d3e_54a5/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ulwrf.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Upward Longwave Radiation Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3446_5d3e_54a5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3446_5d3e_54a5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3446_5d3e_54a5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3446_5d3e_54a5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3446_5d3e_54a5&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3446_5d3e_54a5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c326_93fa_9436", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c326_93fa_9436.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c326_93fa_9436/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, ulwrf.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulwrf (Monthly Upward Longwave Radiation Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c326_93fa_9436_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c326_93fa_9436_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c326_93fa_9436/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c326_93fa_9436.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c326_93fa_9436&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_c326_93fa_9436"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_938f_fd89_f54e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_938f_fd89_f54e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_938f_fd89_f54e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uswrf.ntat.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Upward Solar Radiation Flux Spread at nominal top of atmosphere, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_938f_fd89_f54e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_938f_fd89_f54e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_938f_fd89_f54e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_938f_fd89_f54e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_938f_fd89_f54e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_938f_fd89_f54e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0b8_72f0_eec1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0b8_72f0_eec1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a0b8_72f0_eec1/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uswrf.ntat.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Upward Solar Radiation Flux at nominal top of atmosphere, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a0b8_72f0_eec1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a0b8_72f0_eec1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a0b8_72f0_eec1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a0b8_72f0_eec1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a0b8_72f0_eec1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a0b8_72f0_eec1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43d5_9de2_347f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43d5_9de2_347f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_43d5_9de2_347f/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uswrf.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Upward Solar Radiation Flux Spread at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_43d5_9de2_347f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_43d5_9de2_347f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_43d5_9de2_347f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_43d5_9de2_347f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_43d5_9de2_347f&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_43d5_9de2_347f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4695_fec7_5ac3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4695_fec7_5ac3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4695_fec7_5ac3/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uswrf.sfc.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuswrf (Monthly Upward Solar Radiation Flux at surface, W/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4695_fec7_5ac3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4695_fec7_5ac3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4695_fec7_5ac3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4695_fec7_5ac3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4695_fec7_5ac3&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4695_fec7_5ac3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7318_941f_1296", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7318_941f_1296.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7318_941f_1296/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uwnd.10m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly U-wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7318_941f_1296_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7318_941f_1296_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7318_941f_1296/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7318_941f_1296.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7318_941f_1296&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_7318_941f_1296"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fd1_5baf_6b08", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fd1_5baf_6b08.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8fd1_5baf_6b08/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, uwnd.10m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (Monthly U-wind Spread, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8fd1_5baf_6b08_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8fd1_5baf_6b08_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8fd1_5baf_6b08/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8fd1_5baf_6b08.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8fd1_5baf_6b08&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_8fd1_5baf_6b08"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e27_2c8b_84b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e27_2c8b_84b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e27_2c8b_84b5/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vflx.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Monthly Momentum Flux, v-component at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e27_2c8b_84b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e27_2c8b_84b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e27_2c8b_84b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e27_2c8b_84b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e27_2c8b_84b5&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_3e27_2c8b_84b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b93f_4037_6626", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b93f_4037_6626.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b93f_4037_6626/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vflx.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvflx (Monthly Momentum Flux Spread, v-component at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b93f_4037_6626_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b93f_4037_6626_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b93f_4037_6626/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b93f_4037_6626.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b93f_4037_6626&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b93f_4037_6626"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6997_bbbb_eb5e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6997_bbbb_eb5e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6997_bbbb_eb5e/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vgwd.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Monthly Meridional Gravity Wave Stress at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6997_bbbb_eb5e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6997_bbbb_eb5e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6997_bbbb_eb5e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6997_bbbb_eb5e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6997_bbbb_eb5e&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6997_bbbb_eb5e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd88_f447_2b52", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fd88_f447_2b52.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fd88_f447_2b52/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vgwd.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvgwd (Monthly Meridional Gravity Wave Stress Spread at surface, N/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fd88_f447_2b52_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fd88_f447_2b52_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fd88_f447_2b52/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fd88_f447_2b52.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fd88_f447_2b52&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_fd88_f447_2b52"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf40_1227_6fa5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf40_1227_6fa5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf40_1227_6fa5/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vwnd.10m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly V wind, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf40_1227_6fa5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf40_1227_6fa5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf40_1227_6fa5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf40_1227_6fa5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf40_1227_6fa5&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_cf40_1227_6fa5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4cd_1dcf_44ac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4cd_1dcf_44ac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e4cd_1dcf_44ac/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, vwnd.10m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (Monthly V wind Spread, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e4cd_1dcf_44ac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e4cd_1dcf_44ac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e4cd_1dcf_44ac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e4cd_1dcf_44ac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e4cd_1dcf_44ac&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_e4cd_1dcf_44ac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_603e_e728_5901", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_603e_e728_5901.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_603e_e728_5901/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, weasd.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (Monthly Water Equiv. of Accum. Snow Depth at surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_603e_e728_5901_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_603e_e728_5901_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_603e_e728_5901/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_603e_e728_5901.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_603e_e728_5901&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_603e_e728_5901"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6114_10a7_115c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6114_10a7_115c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6114_10a7_115c/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, weasd.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nweasd (Monthly Water Equiv. of Accum. Snow Depth Spread at surface, kg/m^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6114_10a7_115c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6114_10a7_115c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6114_10a7_115c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6114_10a7_115c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6114_10a7_115c&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_6114_10a7_115c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a521_1522_d353", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a521_1522_d353.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a521_1522_d353/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, wspd.10m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 12Z and 15Z for 14 Sep 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Monthly mean 10-meter wind speed, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a521_1522_d353_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a521_1522_d353_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a521_1522_d353/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a521_1522_d353.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a521_1522_d353&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a521_1522_d353"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b058_3f00_760d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b058_3f00_760d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b058_3f00_760d/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, monolevel, wspd.10m.mon.mean), 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces. \nOn 2015/11/16, replaced time steps 3Z on 18 Aug 1855, 6Z on 8 May 1910, 3Z on 22 May 1950, and 9Z on 2 Jun 1990.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwspd (Monthly 10-meter wind speed Spread, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b058_3f00_760d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b058_3f00_760d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b058_3f00_760d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b058_3f00_760d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b058_3f00_760d&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_b058_3f00_760d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72b6_a6fc_cce9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72b6_a6fc_cce9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_72b6_a6fc_cce9/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, air.mon.mean), 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nair (Monthly Air Temperature Spread on Pressure Levels, degK)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_72b6_a6fc_cce9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_72b6_a6fc_cce9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_72b6_a6fc_cce9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_72b6_a6fc_cce9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_72b6_a6fc_cce9&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_72b6_a6fc_cce9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_653e_48d5_b2be", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_653e_48d5_b2be.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_653e_48d5_b2be/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, hgt.mon.mean), 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nhgt (Monthly Geopotential Heights Spread on Pressure Levels, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_653e_48d5_b2be_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_653e_48d5_b2be_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_653e_48d5_b2be/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_653e_48d5_b2be.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_653e_48d5_b2be&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_653e_48d5_b2be"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d53b_bab8_6ea1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d53b_bab8_6ea1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d53b_bab8_6ea1/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, omega.mon.mean), 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nomega (Monthly Omega Spread on Pressure Levels, Pascal/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d53b_bab8_6ea1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d53b_bab8_6ea1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d53b_bab8_6ea1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d53b_bab8_6ea1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d53b_bab8_6ea1&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_d53b_bab8_6ea1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6b8_40e1_43fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f6b8_40e1_43fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f6b8_40e1_43fa/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, rhum.mon.mean), 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nrhum (Monthly Relative Humidity Spread on Pressure Levels, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f6b8_40e1_43fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f6b8_40e1_43fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f6b8_40e1_43fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f6b8_40e1_43fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f6b8_40e1_43fa&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_f6b8_40e1_43fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_32fb_c8f2_3292", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_32fb_c8f2_3292.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_32fb_c8f2_3292/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, shum.mon.mean), 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nshum (Monthly Specific Humidity Spread on Pressure Levels, kg/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_32fb_c8f2_3292_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_32fb_c8f2_3292_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_32fb_c8f2_3292/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_32fb_c8f2_3292.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_32fb_c8f2_3292&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_32fb_c8f2_3292"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4276_aa5d_d5ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4276_aa5d_d5ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4276_aa5d_d5ff/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, uwnd.mon.mean), 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nuwnd (Monthly U-wind Spread on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4276_aa5d_d5ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4276_aa5d_d5ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4276_aa5d_d5ff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4276_aa5d_d5ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4276_aa5d_d5ff&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_4276_aa5d_d5ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0df_18ab_c7cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0df_18ab_c7cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a0df_18ab_c7cb/request", "", "public", "4x Daily NOAA-CIRES 20th Century Reanalysis V2c (Top Dataset, pressure sprd, vwnd.mon.mean), 2.0\u00b0, 1851-2014", "4x Daily NOAA-Cooperative Institute for Research in Environmental Sciences (CIRES) 20th Century Reanalysis V2c. Data is from \nNOAA-CIRES 20th Century Reanalysis version 2c\n(4x/day). It consists of most variables interpolated to\npressure surfaces from model (sigma) surfaces.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][level][latitude][longitude]):\nvwnd (Monthly V-wind Spread on Pressure Levels, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a0df_18ab_c7cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a0df_18ab_c7cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a0df_18ab_c7cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.20thC_ReanV2c.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a0df_18ab_c7cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a0df_18ab_c7cb&showErrors=false&email=", "325 Broadway R/PSD1, Boulder, CO 80305", "noaa_esrl_a0df_18ab_c7cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAmsreSstMon", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAmsreSstMon.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAmsreSstMon/request", "", "public", "AMSRE Model Output, obs4MIPs NASA-JPL, Global, 1 Degree, 2002-2010, Monthly", "This data set contains sea surface temperature (SST) data on a monthly 1 degree grid from the Advanced Microwave Scanning Radiometer (AMSR-E) aboard NASA's Aqua spacecraft. The data were produced by Remote Sensing Systems in support of the CMIP5 (Coupled Model Intercomparison Project Phase 5) under the World Climate Research Program (WCRP). Along with this dataset, two additional ancillary data files are included in the same directory which contain the number of observations and standard error co-located on the same 1 degree grids. AMSR-E, a passive-microwave radiometer launched on the Aqua platform on 4 May 2002, was provided by the National Space Development Agency (NASDA) of Japan to NASA as an indispensable part of Aqua's global hydrology mission. Over the oceans, AMSR-E is measuring a number of important geophysical parameters, including SST, wind speed, atmospheric water vapor, cloud water, and rain rate. A key feature of AMSR-E is its capability to see through clouds, thereby providing an uninterrupted view of global SST and surface wind fields. For more information, see\nftp://podaac.jpl.nasa.gov/OceanTemperature/amsre/L3/sst_1deg_1mo/docs/tosTechNote_AMSRE_L3_v7_200206-201012.pdf\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntos (Sea Surface Temperature, degree_C)\ntosNobs (Number of Observations, 1)\ntosStderr (Standard Error, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAmsreSstMon_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAmsreSstMon_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAmsreSstMon/index.json", "https://podaac.jpl.nasa.gov/dataset/AMSRE_L3_SST_1DEG_1MO", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAmsreSstMon.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAmsreSstMon&showErrors=false&email=", "Remote Sensing Systems", "jplAmsreSstMon"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAmsreSstMon_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAmsreSstMon_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAmsreSstMon_LonPM180/request", "", "public", "AMSRE Model Output, obs4MIPs NASA-JPL, Global, 1 Degree, 2002-2010, Monthly, Lon+/-180", "This data set contains sea surface temperature (SST) data on a monthly 1 degree grid from the Advanced Microwave Scanning Radiometer (AMSR-E) aboard NASA's Aqua spacecraft. The data were produced by Remote Sensing Systems in support of the CMIP5 (Coupled Model Intercomparison Project Phase 5) under the World Climate Research Program (WCRP). Along with this dataset, two additional ancillary data files are included in the same directory which contain the number of observations and standard error co-located on the same 1 degree grids. AMSR-E, a passive-microwave radiometer launched on the Aqua platform on 4 May 2002, was provided by the National Space Development Agency (NASDA) of Japan to NASA as an indispensable part of Aqua's global hydrology mission. Over the oceans, AMSR-E is measuring a number of important geophysical parameters, including SST, wind speed, atmospheric water vapor, cloud water, and rain rate. A key feature of AMSR-E is its capability to see through clouds, thereby providing an uninterrupted view of global SST and surface wind fields. For more information, see\nftp://podaac.jpl.nasa.gov/OceanTemperature/amsre/L3/sst_1deg_1mo/docs/tosTechNote_AMSRE_L3_v7_200206-201012.pdf\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ntos (Sea Surface Temperature, degree_C)\ntosNobs (Number of Observations, 1)\ntosStderr (Standard Error, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAmsreSstMon_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAmsreSstMon_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAmsreSstMon_LonPM180/index.json", "https://podaac.jpl.nasa.gov/dataset/AMSRE_L3_SST_1DEG_1MO", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAmsreSstMon_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAmsreSstMon_LonPM180&showErrors=false&email=", "Remote Sensing Systems", "jplAmsreSstMon_LonPM180"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "http://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_844f_dc54_9c41", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_844f_dc54_9c41.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_844f_dc54_9c41/request", "", "public", "Analysed foundation SST over the global ocean (MW OI-REMSS-L4-GLOB-v5.0), 0.25\u00b0, 1998-present", "Analysed foundation sea surface temperature over the global ocean. A merged, multi-sensor L4 foundation SST product from Remote Sensing Systems\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (land sea ice lake bit mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_844f_dc54_9c41_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_844f_dc54_9c41_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_844f_dc54_9c41/index.json", "https://podaac.jpl.nasa.gov/dataset/MW_OI-REMSS-L4-GLOB-v5.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_844f_dc54_9c41.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_844f_dc54_9c41&showErrors=false&email=", "REMSS", "nasa_jpl_844f_dc54_9c41"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "http://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_da4e_3fc9_f107", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_da4e_3fc9_f107.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_da4e_3fc9_f107/request", "", "public", "Archived Suite of NOAA Coral Reef Watch Operational Twice-Weekly Near-Real-Time Global 50km Satellite Coral Bleaching Monitoring Products [time][latitude][longitude], 0.5\u00b0, 2000-2018", "These are Coral Reef Watch near-real-time satellite coral bleaching monitoring products produced twice a week. CoastWatch Utilities v3.2.1 or higher (https://coastwatch.noaa.gov/cw_software.html) can be used for viewing, analyzing, and plotting the data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nCRW_SST (Twice-weekly global 50km satellite nighttime sea surface temperature, degree_C)\nCRW_SSTANOMALY (Twice-weekly global 50km satellite nighttime sea surface temperature anomaly, degree_C)\nCRW_HOTSPOT (Twice-weekly global 50km satellite coral bleaching HotSpot, degree_C)\nCRW_DHW (Twice-weekly global 50km satellite coral bleaching Degree Heating Weeks, degree Celsius-weeks)\nsurface_flag (Pixel characteristics flag array)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_da4e_3fc9_f107_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_da4e_3fc9_f107_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_da4e_3fc9_f107/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/crw50km_test/crw_allinone_20180109.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_da4e_3fc9_f107.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_da4e_3fc9_f107&showErrors=false&email=", "U.S. DOC/NOAA Coral Reef Watch", "noaa_nodc_da4e_3fc9_f107"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_b2ea_b697_669b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_b2ea_b697_669b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_b2ea_b697_669b/request", "", "public", "Atlas FLK v1.1 derived surface winds (level 3.0)", "VAM 6-hour analyses starting from the European Centre for Medium-Range Weather Forecasts (ECMWF) Operational analyses. (CCMP MEASURES ATLAS L4 OW L3 0 WIND VECTORS FLK)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind at 10 meters, m/s)\nvwnd (v-wind at 10 meters, m/s)\nnobs (number of observations, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_b2ea_b697_669b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_b2ea_b697_669b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_b2ea_b697_669b/index.json", "https://podaac.jpl.nasa.gov/dataset/CCMP_MEASURES_ATLAS_L4_OW_L3_0_WIND_VECTORS_FLK", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_b2ea_b697_669b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_b2ea_b697_669b&showErrors=false&email=", "NASA JPL", "nasa_jpl_b2ea_b697_669b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1847_812f_2105", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_1847_812f_2105.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_1847_812f_2105/request", "", "public", "AVHRR Pathfinder Version 5.2 L3-Collated (L3C) SST (pathFinderV5.2 day 2012 020614)", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\nsst_dtime (time difference from reference time, second)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (Deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nquality_level (SST measurement quality)\npathfinder_quality_level (Pathfinder SST quality flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_1847_812f_2105_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_1847_812f_2105_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_1847_812f_2105/index.json", "https://pathfinder.nodc.noaa.gov/ISO-AVHRR_Pathfinder-NODC-L3C-v5.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_1847_812f_2105.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_1847_812f_2105&showErrors=false&email=", "NOAA NODC", "noaa_nodc_1847_812f_2105"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7071_edc2_c76a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7071_edc2_c76a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7071_edc2_c76a/request", "", "public", "AVHRR Pathfinder Version 5.2 L3-Collated (L3C) SST (pathFinderV5.2 day), 1981-2011", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\nsst_dtime (time difference from reference time, second)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (Deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nquality_level (SST measurement quality)\npathfinder_quality_level (Pathfinder SST quality flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7071_edc2_c76a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7071_edc2_c76a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7071_edc2_c76a/index.json", "https://pathfinder.nodc.noaa.gov/ISO-AVHRR_Pathfinder-NODC-L3C-v5.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7071_edc2_c76a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7071_edc2_c76a&showErrors=false&email=", "NOAA NODC", "noaa_nodc_7071_edc2_c76a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6a44_2cb9_686f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_6a44_2cb9_686f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_6a44_2cb9_686f/request", "", "public", "AVHRR Pathfinder Version 5.2 L3-Collated (L3C) SST (pathFinderV5.2 night 2012 020614)", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\nsst_dtime (time difference from reference time, second)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (Deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nquality_level (SST measurement quality)\npathfinder_quality_level (Pathfinder SST quality flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_6a44_2cb9_686f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_6a44_2cb9_686f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_6a44_2cb9_686f/index.json", "https://pathfinder.nodc.noaa.gov/ISO-AVHRR_Pathfinder-NODC-L3C-v5.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_6a44_2cb9_686f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_6a44_2cb9_686f&showErrors=false&email=", "NOAA NODC", "noaa_nodc_6a44_2cb9_686f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_78e2_de17_8305", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_78e2_de17_8305.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_78e2_de17_8305/request", "", "public", "AVHRR Pathfinder Version 5.2 L3-Collated (L3C) SST (pathFinderV5.2 night), 1981-2011", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.2 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.2 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The file does not encode time according to the GDS2 specifications, and the sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created as a partnership between the University of Miami and the US NOAA/National Oceanographic Data Center (NODC).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\nsst_dtime (time difference from reference time, second)\nsses_bias (SSES bias estimate, degree_C)\nsses_standard_deviation (degree_C)\ndt_analysis (Deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction\naerosol_dynamic_indicator\nquality_level (SST measurement quality)\npathfinder_quality_level (Pathfinder SST quality flag)\nl2p_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_78e2_de17_8305_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_78e2_de17_8305_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_78e2_de17_8305/index.json", "https://pathfinder.nodc.noaa.gov/ISO-AVHRR_Pathfinder-NODC-L3C-v5.2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_78e2_de17_8305.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_78e2_de17_8305&showErrors=false&email=", "NOAA NODC", "noaa_nodc_78e2_de17_8305"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nceiPH53sstd1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nceiPH53sstd1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nceiPH53sstd1day/request", "", "public", "AVHRR Pathfinder Version 5.3 L3-Collated (L3C) SST, Global, 0.0417\u00b0, 1981-present, Daytime (1 Day Composite)", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.3 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.3 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created by the NOAA National Centers for Environmental Information (NCEI).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\ndt_analysis (deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction (percent)\nquality_level (quality level of SST pixel, 1)\npathfinder_quality_level (Pathfinder SST quality flag, 1)\nl2p_flags (1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nceiPH53sstd1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nceiPH53sstd1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nceiPH53sstd1day/index.json", "https://data.nodc.noaa.gov/cgi-bin/iso?id=gov.noaa.nodc:AVHRR_Pathfinder-NCEI-L3C-v5.3", "http://upwell.pfeg.noaa.gov/erddap/rss/nceiPH53sstd1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nceiPH53sstd1day&showErrors=false&email=", "NCEI", "nceiPH53sstd1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nceiPH53sstn1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nceiPH53sstn1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nceiPH53sstn1day/request", "", "public", "AVHRR Pathfinder Version 5.3 L3-Collated (L3C) SST, Global, 0.0417\u00b0, 1981-present, Nighttime (1 Day Composite)", "Advanced Very High Resolution Radiometer (AVHRR) Pathfinder Version 5.3 L3-Collated (L3C) sea surface temperature. This netCDF-4 file contains sea surface temperature (SST) data produced as part of the AVHRR Pathfinder SST Project. These data were created using Version 5.3 of the Pathfinder algorithm and the file is nearly but not completely compliant with the Global High-Resolution Sea Surface Temperature (GHRSST) Data Specifications V2.0 (GDS2). The sses_bias and sses_standard_deviation variables are empty. Full compliance with GDS2 specifications will be achieved in the future Pathfinder Version 6. These data were created by the NOAA National Centers for Environmental Information (NCEI).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (NOAA Climate Data Record of sea surface skin temperature, degree_C)\ndt_analysis (deviation from last SST analysis, degree_C)\nwind_speed (10m wind speed, m s-1)\nsea_ice_fraction (percent)\nquality_level (quality level of SST pixel, 1)\npathfinder_quality_level (Pathfinder SST quality flag, 1)\nl2p_flags (1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nceiPH53sstn1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nceiPH53sstn1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nceiPH53sstn1day/index.json", "https://data.nodc.noaa.gov/cgi-bin/iso?id=gov.noaa.nodc:AVHRR_Pathfinder-NCEI-L3C-v5.3", "http://upwell.pfeg.noaa.gov/erddap/rss/nceiPH53sstn1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nceiPH53sstn1day&showErrors=false&email=", "NCEI", "nceiPH53sstn1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAvisoSshMon", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAvisoSshMon.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAvisoSshMon/request", "", "public", "AVISO Model Output, obs4MIPs NASA-JPL, Global, 1 Degree, 1992-2010, Monthly", "This dataset contains absolute dynamic topography (similar to sea level but with respect to the geoid) binned and averaged monthly on 1 degree grids. The coverage is from October 1992 to December 2010. These data were provided by AVISO (French space agency data provider) to support the CMIP5 (Coupled Model Intercomparison Project Phase 5) under the World Climate Research Program (WCRP) and was first made available via the JPL Earth System Grid. The dynamic topography are derived from sea surface height measured by several satellites including Envisat, TOPEX/Poseidon, Jason-1 and OSTM/Jason-2, and referenced to the geoid. Along with this dataset, two additional ancillary data files are included in the same directory which contain the number of observations and standard error co-located on the same 1 degree grids. For more information, see\nhttps://podaac.jpl.nasa.gov/dataset/AVISO_L4_DYN_TOPO_1DEG_1MO\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsshag (Sea Surface Height Above Geoid, m)\nnObs (Number of Observations, 1)\nstdErr (Standard Error, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAvisoSshMon_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAvisoSshMon_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAvisoSshMon/index.json", "https://podaac.jpl.nasa.gov/dataset/AVISO_L4_DYN_TOPO_1DEG_1MO", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAvisoSshMon.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAvisoSshMon&showErrors=false&email=", "Centre National d'Etudes Spatiales", "jplAvisoSshMon"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAvisoSshMon_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAvisoSshMon_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAvisoSshMon_LonPM180/request", "", "public", "AVISO Model Output, obs4MIPs NASA-JPL, Global, 1 Degree, 1992-2010, Monthly, Lon+/-180", "This dataset contains absolute dynamic topography (similar to sea level but with respect to the geoid) binned and averaged monthly on 1 degree grids. The coverage is from October 1992 to December 2010. These data were provided by AVISO (French space agency data provider) to support the CMIP5 (Coupled Model Intercomparison Project Phase 5) under the World Climate Research Program (WCRP) and was first made available via the JPL Earth System Grid. The dynamic topography are derived from sea surface height measured by several satellites including Envisat, TOPEX/Poseidon, Jason-1 and OSTM/Jason-2, and referenced to the geoid. Along with this dataset, two additional ancillary data files are included in the same directory which contain the number of observations and standard error co-located on the same 1 degree grids. For more information, see\nhttps://podaac.jpl.nasa.gov/dataset/AVISO_L4_DYN_TOPO_1DEG_1MO\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsshag (Sea Surface Height Above Geoid, m)\nnObs (Number of Observations, 1)\nstdErr (Standard Error, m)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAvisoSshMon_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAvisoSshMon_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAvisoSshMon_LonPM180/index.json", "https://podaac.jpl.nasa.gov/dataset/AVISO_L4_DYN_TOPO_1DEG_1MO", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAvisoSshMon_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAvisoSshMon_LonPM180&showErrors=false&email=", "Centre National d'Etudes Spatiales", "jplAvisoSshMon_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplAbomGhrsstL4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplAbomGhrsstL4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplAbomGhrsstL4/request", "", "public", "BLUElink Global Australian Multi-Sensor SST Analysis (GAMSSA), daily, 1/4 degree resolution, 0.25\u00b0, 2008-present", "This is a BLUElink> Ocean Forecasting Australia Project research product run operationally at the Bureau of Meteorology. WARNING: some applications are unable to properly handle signed byte values. If byte values >127 are encountered, subtract 256 from this reported value.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, none (fraction))\nmask (sea/land/lake/ice field composite mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplAbomGhrsstL4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplAbomGhrsstL4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplAbomGhrsstL4/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplAbomGhrsstL4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplAbomGhrsstL4&showErrors=false&email=", "Australian Bureau of Meteorology", "jplAbomGhrsstL4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_addc_c4d7_ef67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_addc_c4d7_ef67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_addc_c4d7_ef67/request", "", "public", "BLUElink Global Australian Multi-Sensor SST Analysis (GAMSSA), daily, 1/4 degree resolution, 0.25\u00b0, 2008-present", "This is a BLUElink> Ocean Forecasting Australia Project research product run operationally at the Bureau of Meteorology. WARNING: some applications are unable to properly handle signed byte values. If byte values >127 are encountered, subtract 256 from this reported value.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, none (fraction))\nmask (sea/land/lake/ice field composite mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_addc_c4d7_ef67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_addc_c4d7_ef67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_addc_c4d7_ef67/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_addc_c4d7_ef67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_addc_c4d7_ef67&showErrors=false&email=", "Australian Bureau of Meteorology", "nasa_jpl_addc_c4d7_ef67"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/database-tables-description", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/database-tables-description", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/cast-table-column-descriptions", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_4356_201f_c48c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_4356_201f_c48c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_aoml_4356_201f_c48c/request", "", "public", "Caribbean and Gulf of Mexico Regional Node, GLOBAL MONTHLY CARBON FLUXES, 1982-2016", "Caribbean and Gulf of Mexico Regional Node, GLOBAL MONTHLY CARBON FLUXES\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nflux (Sea-Air Carbon Flux, molm-2Yr-1)\nflux_anom (Sea-Air Carbon Flux Anomaly, molm-2Yr-1)\ndifco2 (Surface Water-Atmospheric Partial Pressure Difference, uatm)\ndifco2_anom (Surface Water-Atmospheric Part. Press Diff Anom, uatm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_aoml_4356_201f_c48c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_aoml_4356_201f_c48c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_aoml_4356_201f_c48c/index.json", "https://cwcgom.aoml.noaa.gov/thredds/dodsC/GLOBAL_MONTHLY_CARBON_FLUXES/FLUXES.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_aoml_4356_201f_c48c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_aoml_4356_201f_c48c&showErrors=false&email=", "NOAA NESDIS CWCGOM, NOAA AOML", "noaa_aoml_4356_201f_c48c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_a82b_2ec0_f8b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_aoml_a82b_2ec0_f8b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_aoml_a82b_2ec0_f8b5/request", "", "public", "Caribbean and Gulf of Mexico Regional Node, GLOBAL SEASON CARBON FLUXES, 1982-2016", "Caribbean and Gulf of Mexico Regional Node, GLOBAL SEASON CARBON FLUXES\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nflux (Seasonal Sea-Air Carbon Flux, molm-2Season-1)\nflux_anom (Seasonal Sea-Air Carbon Flux Anom, molm-2Season-1)\ndifco2 (Surface Water-Atmospheric Part Press Diff, uatm)\ndifco2_anom (Surface Water-Atmospheric Part Press Diff Anom, uatm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_aoml_a82b_2ec0_f8b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_aoml_a82b_2ec0_f8b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_aoml_a82b_2ec0_f8b5/index.json", "https://cwcgom.aoml.noaa.gov/thredds/dodsC/GLOBAL_SEASON_CARBON_FLUXES/FLUXES.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_aoml_a82b_2ec0_f8b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_aoml_a82b_2ec0_f8b5&showErrors=false&email=", "NOAA NESDIS CWCGOM, NOAA AOML", "noaa_aoml_a82b_2ec0_f8b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_2afd_3ff5_fe81", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_2afd_3ff5_fe81.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_2afd_3ff5_fe81/request", "", "public", "CCMP MEASURES ATLAS L4 OW L3 5A 5DAY WIND VECTORS FLK", "Atlas FLK v1.1 derived surface winds (level 3.5). Time average of level3.0 products for the period: 1995-06-30 to 1995-07-04 (CCMP MEASURES ATLAS L4 OW L3 5A 5DAY WIND VECTORS FLK)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind at 10 meters, m/s)\nvwnd (v-wind at 10 meters, m/s)\nwspd (wind speed at 10 meters, m/s)\nupstr (u-component of pseudostress at 10 meters, m2/s2)\nvpstr (v-component of pseudostress at 10 meters, m2/s2)\nnobs (number of observations, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_2afd_3ff5_fe81_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_2afd_3ff5_fe81_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_2afd_3ff5_fe81/index.json", "https://podaac.jpl.nasa.gov/dataset/CCMP_MEASURES_ATLAS_L4_OW_L3_5A_5DAY_WIND_VECTORS_FLK", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_2afd_3ff5_fe81.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_2afd_3ff5_fe81&showErrors=false&email=", "NASA JPL", "nasa_jpl_2afd_3ff5_fe81"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmpL3Wind6Hourly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmpL3Wind6Hourly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplCcmpL3Wind6Hourly/request", "", "public", "CCMP Winds, Atlas FLK v1.1 Derived Surface Winds (Level 3.0), Global, 0.25 Degree, 1987-2011, 6-Hourly", "This dataset is derived under the Cross-Calibrated Multi-Platform (CCMP)\nproject and contains a value-added monthly mean ocean surface wind and\npseudostress to approximate a satellite-only climatological data record. The\nCCMP datasets combine cross-calibrated satellite winds obtained from Remote\nSensing Systems (REMSS) using a Variational Analysis Method (VAM) to produce\na high-resolution (0.25 degree) gridded analysis. The CCMP data set includes\ncross-calibrated satellite winds derived from SSM/I, SSMIS, AMSR-E, TRMM TMI,\nQuikSCAT, SeaWinds, WindSat and other satellite instruments as they become\navailable from REMSS. Created by NASA Goddard Space Flight Center under the\nNASA REASoN CAN.\n\nAtlas, R., R. N. Hoffman, J. Ardizzone, S. M. Leidner, J. C. Jusem, D. K.\nSmith, D. Gombos, 2011: A cross-calibrated, multiplatform ocean surface wind\nvelocity product for meteorological and oceanographic applications. Bull.\nAmer. Meteor. Soc., 92, 157-174. doi: 10.1175/2010BAMS2946.1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind at 10 meters, m s-1)\nvwnd (v-wind at 10 meters, m s-1)\nnobs (Number of Observations, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplCcmpL3Wind6Hourly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplCcmpL3Wind6Hourly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplCcmpL3Wind6Hourly/index.json", "https://podaac.jpl.nasa.gov/dataset/CCMP_MEASURES_ATLAS_L4_OW_L3_0_WIND_VECTORS_FLK", "http://upwell.pfeg.noaa.gov/erddap/rss/jplCcmpL3Wind6Hourly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplCcmpL3Wind6Hourly&showErrors=false&email=", "NASA/GSFC, NOAA", "jplCcmpL3Wind6Hourly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmpL3Wind6Hourly_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmpL3Wind6Hourly_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplCcmpL3Wind6Hourly_LonPM180/request", "", "public", "CCMP Winds, Atlas FLK v1.1 Derived Surface Winds (Level 3.0), Global, 0.25 Degree, 1987-2011, 6-Hourly, Lon+/-180", "This dataset is derived under the Cross-Calibrated Multi-Platform (CCMP)\nproject and contains a value-added monthly mean ocean surface wind and\npseudostress to approximate a satellite-only climatological data record. The\nCCMP datasets combine cross-calibrated satellite winds obtained from Remote\nSensing Systems (REMSS) using a Variational Analysis Method (VAM) to produce\na high-resolution (0.25 degree) gridded analysis. The CCMP data set includes\ncross-calibrated satellite winds derived from SSM/I, SSMIS, AMSR-E, TRMM TMI,\nQuikSCAT, SeaWinds, WindSat and other satellite instruments as they become\navailable from REMSS. Created by NASA Goddard Space Flight Center under the\nNASA REASoN CAN.\n\nAtlas, R., R. N. Hoffman, J. Ardizzone, S. M. Leidner, J. C. Jusem, D. K.\nSmith, D. Gombos, 2011: A cross-calibrated, multiplatform ocean surface wind\nvelocity product for meteorological and oceanographic applications. Bull.\nAmer. Meteor. Soc., 92, 157-174. doi: 10.1175/2010BAMS2946.1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind at 10 meters, m s-1)\nvwnd (v-wind at 10 meters, m s-1)\nnobs (Number of Observations, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplCcmpL3Wind6Hourly_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplCcmpL3Wind6Hourly_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplCcmpL3Wind6Hourly_LonPM180/index.json", "https://podaac.jpl.nasa.gov/dataset/CCMP_MEASURES_ATLAS_L4_OW_L3_0_WIND_VECTORS_FLK", "http://upwell.pfeg.noaa.gov/erddap/rss/jplCcmpL3Wind6Hourly_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplCcmpL3Wind6Hourly_LonPM180&showErrors=false&email=", "NASA/GSFC, NOAA", "jplCcmpL3Wind6Hourly_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmp35aWindMonthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmp35aWindMonthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplCcmp35aWindMonthly/request", "", "public", "CCMP Winds, Atlas FLK v1.1 Derived Surface Winds (Level 3.5a), Global, 0.25 Degree, 1987-1987, Monthly", "This dataset is derived under the Cross-Calibrated Multi-Platform (CCMP) project and contains a value-added monthly mean ocean surface wind and pseudostress to approximate a satellite-only climatological data record. The CCMP datasets combine cross-calibrated satellite winds obtained from Remote Sensing Systems (REMSS) using a Variational Analysis Method (VAM) to produce a high-resolution (0.25 degree) gridded analysis. The CCMP data set includes cross-calibrated satellite winds derived from SSM/I, SSMIS, AMSR-E, TRMM TMI, QuikSCAT, SeaWinds, WindSat and other satellite instruments as they become available from REMSS. \n\nftp://podaac-ftp.jpl.nasa.gov/allData/ccmp/L3.5a/docs/ccmp_users_guide.pdf\n\nAtlas, R., R. N. Hoffman, J. Ardizzone, S. M. Leidner, J. C. Jusem, D. K. Smith, D. Gombos, 2011: A cross-calibrated, multiplatform ocean surface wind velocity product for meteorological and oceanographic applications. Bull. Amer. Meteor. Soc., 92, 157-174. doi: 10.1175/2010BAMS2946.1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind at 10 meters, m/s)\nvwnd (v-wind at 10 meters, m/s)\nwspd (wind speed at 10 meters, m/s)\nupstr (u-component of pseudostress at 10 meters, m2/s2)\nvpstr (v-component of pseudostress at 10 meters, m2/s2)\nnobs (number of observations, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplCcmp35aWindMonthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplCcmp35aWindMonthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplCcmp35aWindMonthly/index.json", "https://podaac.jpl.nasa.gov/dataset/CCMP_MEASURES_ATLAS_L4_OW_L3_5A_MONTHLY_WIND_VECTORS_FLK?ids=Collections&values=Cross-Calibrated%20Multi-Platform%20Ocean%20Surface%20Wind%20Vector%20Analysis%20Fields", "http://upwell.pfeg.noaa.gov/erddap/rss/jplCcmp35aWindMonthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplCcmp35aWindMonthly&showErrors=false&email=", "NASA JPL", "jplCcmp35aWindMonthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmp35aWindMonthly_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmp35aWindMonthly_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplCcmp35aWindMonthly_LonPM180/request", "", "public", "CCMP Winds, Atlas FLK v1.1 Derived Surface Winds (Level 3.5a), Global, 0.25 Degree, 1987-1987, Monthly, Lon+/-180", "This dataset is derived under the Cross-Calibrated Multi-Platform (CCMP) project and contains a value-added monthly mean ocean surface wind and pseudostress to approximate a satellite-only climatological data record. The CCMP datasets combine cross-calibrated satellite winds obtained from Remote Sensing Systems (REMSS) using a Variational Analysis Method (VAM) to produce a high-resolution (0.25 degree) gridded analysis. The CCMP data set includes cross-calibrated satellite winds derived from SSM/I, SSMIS, AMSR-E, TRMM TMI, QuikSCAT, SeaWinds, WindSat and other satellite instruments as they become available from REMSS. \n\nftp://podaac-ftp.jpl.nasa.gov/allData/ccmp/L3.5a/docs/ccmp_users_guide.pdf\n\nAtlas, R., R. N. Hoffman, J. Ardizzone, S. M. Leidner, J. C. Jusem, D. K. Smith, D. Gombos, 2011: A cross-calibrated, multiplatform ocean surface wind velocity product for meteorological and oceanographic applications. Bull. Amer. Meteor. Soc., 92, 157-174. doi: 10.1175/2010BAMS2946.1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind at 10 meters, m/s)\nvwnd (v-wind at 10 meters, m/s)\nwspd (wind speed at 10 meters, m/s)\nupstr (u-component of pseudostress at 10 meters, m2/s2)\nvpstr (v-component of pseudostress at 10 meters, m2/s2)\nnobs (number of observations, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplCcmp35aWindMonthly_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplCcmp35aWindMonthly_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplCcmp35aWindMonthly_LonPM180/index.json", "https://podaac.jpl.nasa.gov/dataset/CCMP_MEASURES_ATLAS_L4_OW_L3_5A_MONTHLY_WIND_VECTORS_FLK?ids=Collections&values=Cross-Calibrated%20Multi-Platform%20Ocean%20Surface%20Wind%20Vector%20Analysis%20Fields", "http://upwell.pfeg.noaa.gov/erddap/rss/jplCcmp35aWindMonthly_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplCcmp35aWindMonthly_LonPM180&showErrors=false&email=", "NASA JPL", "jplCcmp35aWindMonthly_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmp35aWindPentad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmp35aWindPentad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplCcmp35aWindPentad/request", "", "public", "CCMP Winds, Atlas FLK v1.1 Derived Surface Winds (Level 3.5a), Global, 0.25 Degree, 1987-2011, 5-Day Averages", "This dataset is derived under the Cross-Calibrated Multi-Platform (CCMP) project and contains a value-added 5-day mean ocean surface wind and pseudostress to approximate a satellite-only climatological data record. The CCMP datasets combine cross-calibrated satellite winds obtained from Remote Sensing Systems (REMSS) using a Variational Analysis Method (VAM) to produce a high-resolution (0.25 degree) gridded analysis. The CCMP data set includes cross-calibrated satellite winds derived from SSM/I, SSMIS, AMSR-E, TRMM TMI, QuikSCAT, SeaWinds, WindSat and other satellite instruments as they become available from REMSS. \n\nftp://podaac-ftp.jpl.nasa.gov/allData/ccmp/L3.5a/docs/ccmp_users_guide.pdf\n\nAtlas, R., R. N. Hoffman, J. Ardizzone, S. M. Leidner, J. C. Jusem, D. K. Smith, D. Gombos, 2011: A cross-calibrated, multiplatform ocean surface wind velocity product for meteorological and oceanographic applications. Bull. Amer. Meteor. Soc., 92, 157-174. doi: 10.1175/2010BAMS2946.1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind at 10 meters, m/s)\nvwnd (v-wind at 10 meters, m/s)\nwspd (wind speed at 10 meters, m/s)\nupstr (u-component of pseudostress at 10 meters, m2/s2)\nvpstr (v-component of pseudostress at 10 meters, m2/s2)\nnobs (number of observations, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplCcmp35aWindPentad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplCcmp35aWindPentad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplCcmp35aWindPentad/index.json", "https://podaac.jpl.nasa.gov/dataset/CCMP_MEASURES_ATLAS_L4_OW_L3_5A_MONTHLY_WIND_VECTORS_FLK?ids=Collections&values=Cross-Calibrated%20Multi-Platform%20Ocean%20Surface%20Wind%20Vector%20Analysis%20Fields", "http://upwell.pfeg.noaa.gov/erddap/rss/jplCcmp35aWindPentad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplCcmp35aWindPentad&showErrors=false&email=", "NASA JPL", "jplCcmp35aWindPentad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmp35aWindPentad_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplCcmp35aWindPentad_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplCcmp35aWindPentad_LonPM180/request", "", "public", "CCMP Winds, Atlas FLK v1.1 Derived Surface Winds (Level 3.5a), Global, 0.25 Degree, 1987-2011, 5-Day Averages, Lon+/-180", "This dataset is derived under the Cross-Calibrated Multi-Platform (CCMP) project and contains a value-added 5-day mean ocean surface wind and pseudostress to approximate a satellite-only climatological data record. The CCMP datasets combine cross-calibrated satellite winds obtained from Remote Sensing Systems (REMSS) using a Variational Analysis Method (VAM) to produce a high-resolution (0.25 degree) gridded analysis. The CCMP data set includes cross-calibrated satellite winds derived from SSM/I, SSMIS, AMSR-E, TRMM TMI, QuikSCAT, SeaWinds, WindSat and other satellite instruments as they become available from REMSS. \n\nftp://podaac-ftp.jpl.nasa.gov/allData/ccmp/L3.5a/docs/ccmp_users_guide.pdf\n\nAtlas, R., R. N. Hoffman, J. Ardizzone, S. M. Leidner, J. C. Jusem, D. K. Smith, D. Gombos, 2011: A cross-calibrated, multiplatform ocean surface wind velocity product for meteorological and oceanographic applications. Bull. Amer. Meteor. Soc., 92, 157-174. doi: 10.1175/2010BAMS2946.1\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind at 10 meters, m/s)\nvwnd (v-wind at 10 meters, m/s)\nwspd (wind speed at 10 meters, m/s)\nupstr (u-component of pseudostress at 10 meters, m2/s2)\nvpstr (v-component of pseudostress at 10 meters, m2/s2)\nnobs (number of observations, count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplCcmp35aWindPentad_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplCcmp35aWindPentad_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplCcmp35aWindPentad_LonPM180/index.json", "https://podaac.jpl.nasa.gov/dataset/CCMP_MEASURES_ATLAS_L4_OW_L3_5A_MONTHLY_WIND_VECTORS_FLK?ids=Collections&values=Cross-Calibrated%20Multi-Platform%20Ocean%20Surface%20Wind%20Vector%20Analysis%20Fields", "http://upwell.pfeg.noaa.gov/erddap/rss/jplCcmp35aWindPentad_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplCcmp35aWindPentad_LonPM180&showErrors=false&email=", "NASA JPL", "jplCcmp35aWindPentad_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchla1day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (1 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchla1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchla1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchla1day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (1 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchla1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchla1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchla1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchla1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchla1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchla1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchla14day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (14 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchla14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchla14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchla14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchla14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchla14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchla14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchla14day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (14 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchla14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchla14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchla14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchla14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchla14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchla14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchla3day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (3 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchla3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchla3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchla3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchla3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchla3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchla3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchla3day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (3 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchla3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchla3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchla3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchla3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchla3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchla3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchla8day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (8 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchla8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchla8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchla8day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (8 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchla8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchla8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchla8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchla8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchla8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchla8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchlamday/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (Monthly Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchlamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchlamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchlamday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWchlamday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWchlamday_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.0125\u00b0, West US, EXPERIMENTAL, 2002-present (Monthly Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWchlamday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWchlamday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWchlamday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWchlamday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWchlamday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWchlamday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchla1day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (1 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchla1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchla1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchla1day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (1 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchla1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchla1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchla1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchla1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchla1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchla1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchla14day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (14 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchla14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchla14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchla14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchla14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchla14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchla14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchla14day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (14 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchla14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchla14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchla14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchla14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchla14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchla14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchla3day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (3 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchla3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchla3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchla3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchla3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchla3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchla3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchla3day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (3 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchla3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchla3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchla3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchla3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchla3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchla3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchla8day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (8 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchla8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchla8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchla8day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (8 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchla8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchla8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchla8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchla8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchla8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchla8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchlamday/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (Monthly Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchlamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchlamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchlamday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMBchlamday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMBchlamday_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (Monthly Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration in Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMBchlamday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMBchlamday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMBchlamday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMBchlamday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMBchlamday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMBchlamday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHchla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHchla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHchla8day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 2002-2013, DEPRECATED OLDER VERSION (8 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHchla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHchla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHchla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHchla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHchla8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHchla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHchlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHchlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHchlamday/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 2002-2013, DEPRECATED OLDER VERSION (Monthly Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHchlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHchlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHchlamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHchlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHchlamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHchlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHchla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHchla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHchla1day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, 2003-2013, DEPRECATED OLDER VERSION (1 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHchla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHchla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHchla1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHchla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHchla1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHchla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEchla1day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, East US, 2002-2012 (1 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEchla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEchla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEchla1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEchla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEchla1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEchla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchla14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchla14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEchla14day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, East US, 2002-2012 (14 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEchla14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEchla14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEchla14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEchla14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEchla14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEchla14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchla3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchla3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEchla3day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, East US, 2002-2012 (3 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEchla3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEchla3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEchla3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEchla3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEchla3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEchla3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEchla8day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, East US, 2002-2012 (8 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEchla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEchla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEchla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEchla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEchla8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEchla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEchlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEchlamday/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, East US, 2002-2012 (Monthly Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEchlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEchlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEchlamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEchlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEchlamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEchlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGchla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGchla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGchla1day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (1 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGchla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGchla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGchla1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGchla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGchla1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGchla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGchla14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGchla14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGchla14day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (14 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGchla14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGchla14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGchla14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGchla14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGchla14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGchla14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGchla3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGchla3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGchla3day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (3 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGchla3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGchla3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGchla3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGchla3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGchla3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGchla3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGchla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGchla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGchla8day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (8 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGchla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGchla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGchla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGchla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGchla8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGchla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGchlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGchlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGchlamday/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (Monthly Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGchlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGchlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGchlamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGchlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGchlamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGchlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPchla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPchla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPchla1day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, Indonesia, 2002-2013 (1 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPchla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPchla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPchla1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPchla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPchla1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPchla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPchla14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPchla14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPchla14day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, Indonesia, 2002-2013 (14 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPchla14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPchla14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPchla14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPchla14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPchla14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPchla14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPchla3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPchla3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPchla3day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, Indonesia, 2002-2013 (3 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPchla3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPchla3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPchla3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPchla3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPchla3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPchla3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPchla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPchla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPchla8day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, Indonesia, 2002-2013 (8 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPchla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPchla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPchla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPchla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPchla8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPchla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPchlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPchlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPchlamday/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, Indonesia, 2002-2013 (Monthly Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPchlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPchlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPchlamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPchlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPchlamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPchlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1chla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1chla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1chla1day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (1 Day Composite)", "This dataset has Level 3, Standard Mapped Image, 4km, chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Mean Chlorophyll a Concentration, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1chla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1chla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1chla1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1chla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1chla1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMH1chla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1chla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1chla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1chla8day/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (8 Day Composite)", "This dataset has Level 3, Standard Mapped Image, 4km, chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Mean Chlorophyll a Concentration, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1chla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1chla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1chla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1chla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1chla8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1chla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1chlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1chlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1chlamday/request", "", "public", "Chlorophyll-a, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (Monthly Composite)", "This dataset has Level 3, Standard Mapped Image, 4km, chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Mean Chlorophyll a Concentration, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1chlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1chlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1chlamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1chlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1chlamday&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1chlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchla1day/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (1 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchla1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchla1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchla1day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (1 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchla1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchla1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchla1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchla1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchla1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchla1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchla14day/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (14 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchla14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchla14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchla14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchla14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchla14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchla14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchla14day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (14 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchla14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchla14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchla14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchla14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchla14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchla14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchla3day/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (3 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchla3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchla3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchla3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchla3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchla3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchla3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchla3day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (3 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchla3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchla3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchla3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchla3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchla3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchla3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchla8day/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (8 Day Composite)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchla8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchla8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchla8day_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (8 Day Composite), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchla8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchla8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchla8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchla8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchla8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchla8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchlahday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchlahday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchlahday/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (Hourly)", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchlahday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchlahday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchlahday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchlahday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchlahday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchlahday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchlahday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMYchlahday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMYchlahday_LonPM180/request", "", "public", "Chlorophyll-a, Aqua MODIS, OSU DB, West US, 2006-2013 (Hourly), Lon+/-180", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the Oregon State University (OSU) College of Oceanic and Atmospheric Sciences (COAS).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMYchlahday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMYchlahday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMYchlahday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MY_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMYchlahday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMYchlahday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMYchlahday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7c4b_b0f0_f720", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_7c4b_b0f0_f720.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_7c4b_b0f0_f720/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, 0.1 degrees, Global (Top Dataset, node, seaWifs chlorophyll), 1997-2010", "Chlorophyll-a, Orbview-2 Sea-Wide Field-of-View Sensor (SeaWiFS), 0.1 degrees, Global. NASA Goddard Space Flight Center (GSFC) Ocean Color Web distributes science-quality chlorophyll-a concentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS) on the Orbview-2 satellite.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nSWchla (Chlorophyll-a, Orbview-2 SeaWiFS, 0.1 degrees, Global, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_7c4b_b0f0_f720_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_7c4b_b0f0_f720_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_7c4b_b0f0_f720/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/node/seaWifs_chlorophyll.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_7c4b_b0f0_f720.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_7c4b_b0f0_f720&showErrors=false&email=", "NOAA CoastWatch WCN", "noaa_nodc_7c4b_b0f0_f720"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSWchla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSWchla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSWchla8day/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, 0.1\u00b0, Global, 1997-2010 (8 Day Composite) DEPRECATED", "THIS VERSION IS DEPRECATED. SEE THE NEW R2018.0 VERSION IN erdSW2018chla8day. (Feb 2018) \nNASA GSFC Ocean Color Web distributes science-quality chlorophyll-a concentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS) on the Orbview-2 satellite.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSWchla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSWchla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSWchla8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/SW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSWchla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSWchla8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdSWchla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSWchlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSWchlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSWchlamday/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, 0.1\u00b0, Global, 1997-2010 (Monthly Composite) DEPRECATED", "THIS VERSION IS DEPRECATED. SEE THE NEW R2018.0 VERSION IN erdSW2018chla1day. (Feb 2018) \nNASA GSFC Ocean Color Web distributes science-quality chlorophyll-a concentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS) on the Orbview-2 satellite.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nchlorophyll (Concentration Of Chlorophyll In Sea Water, mg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSWchlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSWchlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSWchlamday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/SW_chla_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSWchlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSWchlamday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdSWchlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW1chla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW1chla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSW1chla1day/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, R2014.0, 0.1\u00b0, Global, 1997-2010 (1 Day Composite) DEPRECATED", "THIS VERSION IS DEPRECATED. SEE THE NEW R2018.0 VERSION IN erdSW2018chla1day. (Feb 2018)\n\nNASA GSFC Ocean Color Web distributes science-quality chlorophyll-a\nconcentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS)\non the Orbview-2 satellite. This version is the 2014.0 Reprocessing (R2014.0).\n\nThe SeaWiFS instrument was launched by Orbital Sciences Corporation on the\nOrbView-2 (a.k.a. SeaStar) satellite in August 1997, and collected data from\nSeptember 1997 until the end of mission in December 2010. SeaWiFS had 8\nspectral bands from 412 to 865 nm. It collected global data at 4 km\nresolution, and local data (limited onboard storage and direct broadcast)\nat 1 km. The mission and sensor were optimized for ocean color measurements,\nwith a local noon (descending) equator crossing time orbit, fore-and-aft\ntilt capability, full dynamic range, and low polarization sensitivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSW1chla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSW1chla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSW1chla1day/index.json", "https://oceancolor.gsfc.nasa.gov/data/seawifs/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSW1chla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSW1chla1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdSW1chla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW1chla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW1chla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSW1chla8day/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, R2014.0, 0.1\u00b0, Global, 1997-2010 (8 Day Composite) DEPRECATED", "THIS VERSION IS DEPRECATED. SEE THE NEW R2018.0 VERSION IN erdSW2018chla8day. (Feb 2018)\n\nNASA GSFC Ocean Color Web distributes science-quality chlorophyll-a\nconcentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS)\non the Orbview-2 satellite. This version is the 2014.0 Reprocessing (R2014.0).\n\nThe SeaWiFS instrument was launched by Orbital Sciences Corporation on the\nOrbView-2 (a.k.a. SeaStar) satellite in August 1997, and collected data from\nSeptember 1997 until the end of mission in December 2010. SeaWiFS had 8\nspectral bands from 412 to 865 nm. It collected global data at 4 km\nresolution, and local data (limited onboard storage and direct broadcast)\nat 1 km. The mission and sensor were optimized for ocean color measurements,\nwith a local noon (descending) equator crossing time orbit, fore-and-aft\ntilt capability, full dynamic range, and low polarization sensitivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSW1chla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSW1chla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSW1chla8day/index.json", "https://oceancolor.gsfc.nasa.gov/data/seawifs/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSW1chla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSW1chla8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdSW1chla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW1chlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW1chlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSW1chlamday/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, R2014.0, 0.1\u00b0, Global, 1997-2010 (Monthly Composite) DEPRECATED", "THIS VERSION IS DEPRECATED. SEE THE NEW R2018.0 VERSION IN erdSW2018chlamday. (Feb 2018)\n\nNASA GSFC Ocean Color Web distributes science-quality chlorophyll-a\nconcentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS)\non the Orbview-2 satellite. This version is the 2014.0 Reprocessing (R2014.0).\n\nThe SeaWiFS instrument was launched by Orbital Sciences Corporation on the\nOrbView-2 (a.k.a. SeaStar) satellite in August 1997, and collected data from\nSeptember 1997 until the end of mission in December 2010. SeaWiFS had 8\nspectral bands from 412 to 865 nm. It collected global data at 4 km\nresolution, and local data (limited onboard storage and direct broadcast)\nat 1 km. The mission and sensor were optimized for ocean color measurements,\nwith a local noon (descending) equator crossing time orbit, fore-and-aft\ntilt capability, full dynamic range, and low polarization sensitivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSW1chlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSW1chlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSW1chlamday/index.json", "https://oceancolor.gsfc.nasa.gov/data/seawifs/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSW1chlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSW1chlamday&showErrors=false&email=", "NASA/GSFC OBPG", "erdSW1chlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW2018chla1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW2018chla1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSW2018chla1day/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, R2018.0, 0.1\u00b0, Global, 1997-2010 (1 Day Composite)", "NASA GSFC Ocean Color Web distributes science-quality chlorophyll-a\nconcentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS)\non the Orbview-2 satellite. This version is the 2018.0 Reprocessing (R2018.0). https://oceancolor.gsfc.nasa.gov/reprocessing/r2018/seawifs/\n\nThe SeaWiFS instrument was launched by Orbital Sciences Corporation on the\nOrbView-2 (a.k.a. SeaStar) satellite in August 1997, and collected data from\nSeptember 1997 until the end of mission in December 2010. SeaWiFS had 8\nspectral bands from 412 to 865 nm. It collected global data at 4 km\nresolution, and local data (limited onboard storage and direct broadcast)\nat 1 km. The mission and sensor were optimized for ocean color measurements,\nwith a local noon (descending) equator crossing time orbit, fore-and-aft\ntilt capability, full dynamic range, and low polarization sensitivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSW2018chla1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSW2018chla1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSW2018chla1day/index.json", "https://oceandata.sci.gsfc.nasa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSW2018chla1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSW2018chla1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdSW2018chla1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW2018chla8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW2018chla8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSW2018chla8day/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, R2018.0, 0.1\u00b0, Global, 1997-2010 (8 Day Composite)", "NASA GSFC Ocean Color Web distributes science-quality chlorophyll-a\nconcentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS)\non the Orbview-2 satellite. This version is the 2018.0 Reprocessing (R2018.0).\nhttps://oceancolor.gsfc.nasa.gov/reprocessing/r2018/seawifs/\n\nThe SeaWiFS instrument was launched by Orbital Sciences Corporation on the\nOrbView-2 (a.k.a. SeaStar) satellite in August 1997, and collected data from\nSeptember 1997 until the end of mission in December 2010. SeaWiFS had 8\nspectral bands from 412 to 865 nm. It collected global data at 4 km\nresolution, and local data (limited onboard storage and direct broadcast)\nat 1 km. The mission and sensor were optimized for ocean color measurements,\nwith a local noon (descending) equator crossing time orbit, fore-and-aft\ntilt capability, full dynamic range, and low polarization sensitivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSW2018chla8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSW2018chla8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSW2018chla8day/index.json", "https://oceandata.sci.gsfc.nasa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSW2018chla8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSW2018chla8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdSW2018chla8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW2018chlamday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdSW2018chlamday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdSW2018chlamday/request", "", "public", "Chlorophyll-a, Orbview-2 SeaWiFS, R2018.0, 0.1\u00b0, Global, 1997-2010 (Monthly Composite)", "NASA GSFC Ocean Color Web distributes science-quality chlorophyll-a\nconcentration data from the Sea-viewing Wide Field-of-view Sensor (SeaWiFS)\non the Orbview-2 satellite. This version is the 2018.0 Reprocessing (R2018.0). https://oceancolor.gsfc.nasa.gov/reprocessing/r2018/seawifs/\n\nThe SeaWiFS instrument was launched by Orbital Sciences Corporation on the\nOrbView-2 (a.k.a. SeaStar) satellite in August 1997, and collected data from\nSeptember 1997 until the end of mission in December 2010. SeaWiFS had 8\nspectral bands from 412 to 865 nm. It collected global data at 4 km\nresolution, and local data (limited onboard storage and direct broadcast)\nat 1 km. The mission and sensor were optimized for ocean color measurements,\nwith a local noon (descending) equator crossing time orbit, fore-and-aft\ntilt capability, full dynamic range, and low polarization sensitivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nchlorophyll (Chlorophyll Concentration, OCI Algorithm, mg m^-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdSW2018chlamday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdSW2018chlamday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdSW2018chlamday/index.json", "https://oceandata.sci.gsfc.nasa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/erdSW2018chlamday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdSW2018chlamday&showErrors=false&email=", "NASA/GSFC OBPG", "erdSW2018chlamday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHcdom8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHcdom8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHcdom8day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, 2002-2013, DEPRECATED OLDER VERSION (8 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHcdom8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHcdom8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHcdom8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHcdom8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHcdom8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHcdom8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHcdommday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHcdommday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHcdommday/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, 2002-2013, DEPRECATED OLDER VERSION (Monthly Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHcdommday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHcdommday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHcdommday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHcdommday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHcdommday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHcdommday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdom1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdom1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcdom1day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, East US, 2002-2012 (1 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcdom1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcdom1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcdom1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcdom1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcdom1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcdom1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdom14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdom14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcdom14day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, East US, 2002-2012 (14 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcdom14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcdom14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcdom14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcdom14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcdom14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcdom14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdom3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdom3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcdom3day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, East US, 2002-2012 (3 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcdom3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcdom3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcdom3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcdom3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcdom3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcdom3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdom8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdom8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcdom8day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, East US, 2002-2012 (8 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcdom8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcdom8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcdom8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcdom8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcdom8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcdom8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdommday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcdommday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcdommday/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, East US, 2002-2012 (Monthly Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcdommday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcdommday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcdommday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcdommday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcdommday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcdommday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcdom1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcdom1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGcdom1day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (1 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters.THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGcdom1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGcdom1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGcdom1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGcdom1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGcdom1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGcdom1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcdom14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcdom14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGcdom14day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (14 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters.THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGcdom14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGcdom14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGcdom14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGcdom14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGcdom14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGcdom14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcdom3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcdom3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGcdom3day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (3 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters.THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGcdom3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGcdom3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGcdom3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGcdom3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGcdom3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGcdom3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcdom8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcdom8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGcdom8day/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (8 Day Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters.THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGcdom8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGcdom8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGcdom8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGcdom8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGcdom8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGcdom8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcdommday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcdommday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGcdommday/request", "", "public", "Chromophoric Dissolved Organic Material, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (Monthly Composite)", "MODIS data is used to develop an index of the amount of chromophoric dissolved organic material (CDOM) in the surface waters. CDOM absorbs heavily in the blue wavelengths and thus can skew many derived products, especially in coastal waters.THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncdom (Chromophoric Dissolved Organic Material)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGcdommday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGcdommday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGcdommday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_cdom_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGcdommday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGcdommday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGcdommday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATclddhday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATclddhday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATclddhday/request", "", "public", "Cloudmask, CLAVR-1, NOAA POES AVHRR, 0.0125 degrees, West US, 2007-present, Daytime (Single Scan)", "The CLAVR-1 cloudmask (Stowe, 1999) is used to cloudmask AVHRR high resolution sea surface temperature products. The cloudmask runs a series of tests on each surface temperature pixel to determine whether the pixel is contaminated by cloud cover. Users may evaluate which specific tests in the cloudmask returned positive cloud presence results by examining the value of the cloudmask. This value corresponds to an 8 bit binary number which details which tests flagged the pixel as a cloudy pixel. See https://coastwatch.pfeg.noaa.gov/info/CLAVR.html for more information regarding the specific tests used in the cloudmask.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncloudmask (Daytime Cloud Mask, 8 bits, encoded)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATclddhday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATclddhday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATclddhday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_cldd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATclddhday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATclddhday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATclddhday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATclddhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATclddhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATclddhday_LonPM180/request", "", "public", "Cloudmask, CLAVR-1, NOAA POES AVHRR, 0.0125 degrees, West US, 2007-present, Daytime (Single Scan), Lon+/-180", "The CLAVR-1 cloudmask (Stowe, 1999) is used to cloudmask AVHRR high resolution sea surface temperature products. The cloudmask runs a series of tests on each surface temperature pixel to determine whether the pixel is contaminated by cloud cover. Users may evaluate which specific tests in the cloudmask returned positive cloud presence results by examining the value of the cloudmask. This value corresponds to an 8 bit binary number which details which tests flagged the pixel as a cloudy pixel. See https://coastwatch.pfeg.noaa.gov/info/CLAVR.html for more information regarding the specific tests used in the cloudmask.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncloudmask (Daytime Cloud Mask, 8 bits, encoded)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATclddhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATclddhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATclddhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_cldd_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATclddhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATclddhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATclddhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATcldnhday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATcldnhday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATcldnhday/request", "", "public", "Cloudmask, CLAVR-1, NOAA POES AVHRR, 0.0125 degrees, West US, 2007-present, Nighttime (Single Scan)", "The CLAVR-1 cloudmask (Stowe, 1999) is used to cloudmask AVHRR high resolution sea surface temperature products. The cloudmask runs a series of tests on each surface temperature pixel to determine whether the pixel is contaminated by cloud cover. Users may evaluate which specific tests in the cloudmask returned positive cloud presence results by examining the value of the cloudmask. This value corresponds to an 8 bit binary number which details which tests flagged the pixel as a cloudy pixel. See https://coastwatch.pfeg.noaa.gov/info/CLAVR.html for more information regarding the specific tests used in the cloudmask.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncloudmask (Nighttime Cloud Mask, 8 bits, encoded)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATcldnhday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATcldnhday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATcldnhday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_cldn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATcldnhday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATcldnhday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATcldnhday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdATcldnhday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdATcldnhday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdATcldnhday_LonPM180/request", "", "public", "Cloudmask, CLAVR-1, NOAA POES AVHRR, 0.0125 degrees, West US, 2007-present, Nighttime (Single Scan), Lon+/-180", "The CLAVR-1 cloudmask (Stowe, 1999) is used to cloudmask AVHRR high resolution sea surface temperature products. The cloudmask runs a series of tests on each surface temperature pixel to determine whether the pixel is contaminated by cloud cover. Users may evaluate which specific tests in the cloudmask returned positive cloud presence results by examining the value of the cloudmask. This value corresponds to an 8 bit binary number which details which tests flagged the pixel as a cloudy pixel. See https://coastwatch.pfeg.noaa.gov/info/CLAVR.html for more information regarding the specific tests used in the cloudmask.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ncloudmask (Nighttime Cloud Mask, 8 bits, encoded)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdATcldnhday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdATcldnhday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdATcldnhday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AT_cldn_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdATcldnhday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdATcldnhday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdATcldnhday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_8a77_333a_af12", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_8a77_333a_af12.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_8a77_333a_af12/request", "", "public", "CMC 0.2 deg global SST analysis (CMC0.2deg-CMC-L4-GLOB-v2.0)", "Canadian Meteorological Centre (CMC) 0.2 deg global sea surface temperature analysis. Applies the method of statistical interpolation to assimilate observations from in situ and satellite sources using, as the background, the analysis valid 24 hours prior assuming persistence of the anomalies. (CMC0.2deg-CMC-L4-GLOB-v2.0)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (sea/land/lake/ice field composite mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_8a77_333a_af12_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_8a77_333a_af12_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_8a77_333a_af12/index.json", "https://podaac.jpl.nasa.gov/dataset/CMC0.2deg-CMC-L4-GLOB-v2.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_8a77_333a_af12.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_8a77_333a_af12&showErrors=false&email=", "CMC", "nasa_jpl_8a77_333a_af12"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplCnrOisstUhrL4BlkV20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplCnrOisstUhrL4BlkV20.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplCnrOisstUhrL4BlkV20/request", "", "public", "CNR, GHRSST, Group for High Resolution SST, OISST UHR NRT-GOS-L4-BLK-v2.0, Black Sea, 0.00833333\u00b0, 2008-present", "Consiglio Nazionale delle Ricerche (CNR) Black Sea SST Analysis, L4, 1km daily. Daily gap-free maps (L4) at 0.01deg. x 0.01deg. horizontal resolution over the Black Sea. The data (for day=dd) are obtained from infra-red measurements collected [since 7pm of day=dd-1 to 7am of day=dd] by satellite radiometers and statistical interpolation. It is the Copernicus sea surface temperature nominal operational product for the Black Sea in DT mode.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (sea/land/lake/ice field composite mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplCnrOisstUhrL4BlkV20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplCnrOisstUhrL4BlkV20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplCnrOisstUhrL4BlkV20/index.json", "https://podaac.jpl.nasa.gov/dataset/OISST_UHR_NRT-GOS-L4-BLK-v2.0", "http://upwell.pfeg.noaa.gov/erddap/rss/jplCnrOisstUhrL4BlkV20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplCnrOisstUhrL4BlkV20&showErrors=false&email=", "GOS", "jplCnrOisstUhrL4BlkV20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplCnrOisstUhrL4MedV20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplCnrOisstUhrL4MedV20.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplCnrOisstUhrL4MedV20/request", "", "public", "CNR, GHRSST, Group for High Resolution SST, OISST UHR NRT-GOS-L4-MED-v2.0, Mediterranean, 0.01\u00b0, 2008-present", "Consiglio Nazionale delle Ricerche (CNR) Mediterranean SST Analysis, L4, 1km daily. Daily gap-free maps (L4) at 1/100deg. x 1/100deg. horizontal resolution over the Mediterranean Sea. The data (for day=dd) are obtained from infra-red measurements collected [since 7pm of day=dd-1 to 7am of day=dd] by satellite radiometers and statistical interpolation. It is the Copernicus sea surface temperature nominal operational product for the Mediterranean Sea in DT mode.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (sea/land/lake/ice field composite mask, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplCnrOisstUhrL4MedV20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplCnrOisstUhrL4MedV20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplCnrOisstUhrL4MedV20/index.json", "https://podaac.jpl.nasa.gov/dataset/OISST_UHR_NRT-GOS-L4-MED-v2.0", "http://upwell.pfeg.noaa.gov/erddap/rss/jplCnrOisstUhrL4MedV20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplCnrOisstUhrL4MedV20&showErrors=false&email=", "GOS", "jplCnrOisstUhrL4MedV20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nrlCOAMPS3km", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nrlCOAMPS3km.graph", "", "", "public", "COAMPS 3km Surface Fields", "COAMPS_Surface_Fields\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][lat][lon]):\nair_temperature (deg C)\nsurface_temperature (Ground temperature over land, Sea surface temperature over the ocean, deg C)\nlonflx (Net surface longwave radiative heat flux, W/m**2)\nrelative_humidity (percent)\nair_pressure_at_sea_level (Sea Level Pressure, millibars)\nsolflx (Net surface shortwave radiative heat flux, W/m**2)\nhourly_precip (Hourly Precipitation, mm)\nx_wind (Zonal Wind, m/s)\ny_wind (Meridional Wind, m/s)\nwind_speed (m/s)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nrlCOAMPS3km/index.json", "https://www.nrlmry.navy.mil/coamps-web/web/home", "http://upwell.pfeg.noaa.gov/erddap/rss/nrlCOAMPS3km.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nrlCOAMPS3km&showErrors=false&email=", "Naval Research Laboratory, Monterey Marine Meteorology Division", "nrlCOAMPS3km"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_acda_96fa_86e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_acda_96fa_86e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_acda_96fa_86e5/request", "", "public", "COBE SST Analysis (Top Dataset, COBE, sst.mon.mean), 1.0\u00b0, 1891-present", "COBE Sea Surface Temperature Analysis. recent values (w/i last year) may change as dataset is updated. It is a monitoring dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Means of Global Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_acda_96fa_86e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_acda_96fa_86e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_acda_96fa_86e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cobe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_acda_96fa_86e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_acda_96fa_86e5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_acda_96fa_86e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWdhws1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWdhws1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWdhws1day/request", "", "public", "Coral Reef Watch, Degree Heating Weeks, 50 km, 2000-2011", "NOAA Coral Reef Watch distributes Degree Heating Week products using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndhw (Degree Heating Weeks, weeks)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWdhws1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWdhws1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWdhws1day/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWdhws1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWdhws1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWdhws1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWdhws1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWdhws1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWdhws1day_LonPM180/request", "", "public", "Coral Reef Watch, Degree Heating Weeks, 50 km, 2000-2011, Lon+/-180", "NOAA Coral Reef Watch distributes Degree Heating Week products using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndhw (Degree Heating Weeks, weeks)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWdhws1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWdhws1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWdhws1day_LonPM180/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWdhws1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWdhws1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWdhws1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWhots1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWhots1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWhots1day/request", "", "public", "Coral Reef Watch, Hotspots, 50 km, 2000-2011 (1 Day Composite)", "NOAA Coral Reef Watch provides Coral Bleaching hotspot maps derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nhots (Hot Spots, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWhots1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWhots1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWhots1day/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWhots1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWhots1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWhots1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWhots1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWhots1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWhots1day_LonPM180/request", "", "public", "Coral Reef Watch, Hotspots, 50 km, 2000-2011 (1 Day Composite), Lon+/-180", "NOAA Coral Reef Watch provides Coral Bleaching hotspot maps derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nhots (Hot Spots, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWhots1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWhots1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWhots1day_LonPM180/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWhots1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWhots1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWhots1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWsstn1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWsstn1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWsstn1day/request", "", "public", "Coral Reef Watch, Nighttime Temperature, 50 km, 2000-2011 (1 Day Composite)", "NOAA Coral Reef Watch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWsstn1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWsstn1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWsstn1day/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWsstn1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWsstn1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWsstn1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWsstn1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWsstn1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWsstn1day_LonPM180/request", "", "public", "Coral Reef Watch, Nighttime Temperature, 50 km, 2000-2011 (1 Day Composite), Lon+/-180", "NOAA Coral Reef Watch provides sea surface temperature (SST) products derived from NOAA's Polar Operational Environmental Satellites (POES). This data provides global area coverage at 0.1 degrees resolution. Measurements are gathered by the Advanced Very High Resolution Radiometer (AVHRR) instrument, a multiband radiance sensor carried aboard the NOAA POES satellites.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWsstn1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWsstn1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWsstn1day_LonPM180/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWsstn1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWsstn1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWsstn1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWtanm1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWtanm1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWtanm1day/request", "", "public", "Coral Reef Watch, Temperature Anomaly, 50 km, 2000-2011 (1 Day Composite)", "NOAA Coral Reef Watch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWtanm1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWtanm1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWtanm1day/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWtanm1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWtanm1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWtanm1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWtanm1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdRWtanm1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdRWtanm1day_LonPM180/request", "", "public", "Coral Reef Watch, Temperature Anomaly, 50 km, 2000-2011 (1 Day Composite), Lon+/-180", "NOAA Coral Reef Watch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database. AVHRR SST is compared with the climatological SST for the region and time period specified.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nsstAnomaly (SST Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdRWtanm1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdRWtanm1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdRWtanm1day_LonPM180/index.json", "http://coralreefwatch.noaa.gov/satellite/index.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdRWtanm1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdRWtanm1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdRWtanm1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_823f_ea65_f27e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_823f_ea65_f27e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_823f_ea65_f27e/request", "", "public", "CPC Merged Analysis of Precipitation (excludes NCEP Reanalysis) (precip.mon.mean), 2.5\u00b0, 1979-present", "Climate Prediction Center (CPC) Merged Analysis of Precipitation (excludes National Centers for Environmental Prediction (NCEP) Reanalysis) (Top Dataset, std, precip.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Average Monthly Rate of Precipitation, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_823f_ea65_f27e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_823f_ea65_f27e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_823f_ea65_f27e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cmap.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_823f_ea65_f27e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_823f_ea65_f27e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_823f_ea65_f27e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99bb_b8be_d99d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_99bb_b8be_d99d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_99bb_b8be_d99d/request", "", "public", "CPC Merged Analysis of Precipitation (includes NCEP Reanalysis) (precip.mon.mean), 2.5\u00b0, 1979-present", "Climate Prediction Center (CPC) Merged Analysis of Precipitation (includes National Centers for Environmental Prediction (NCEP) Reanalysis) (Top Dataset, enh, precip.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Average Monthly Rate of Precipitation, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_99bb_b8be_d99d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_99bb_b8be_d99d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_99bb_b8be_d99d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cmap.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_99bb_b8be_d99d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_99bb_b8be_d99d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_99bb_b8be_d99d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e30b_052e_8bdd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e30b_052e_8bdd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e30b_052e_8bdd/request", "", "public", "CPC Merged Analysis of Precipitation Pentad data (excludes NCEP Reanalysis I), 2.5\u00b0, 1979-2016", "Climate Prediction Center (CPC) Merged Analysis of Precipitation Pentad data (excludes National Centers for Environmental Prediction (NCEP) Reanalysis I) (Top Dataset, std, precip.pentad.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Average Pentad Rate of Precipitation, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e30b_052e_8bdd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e30b_052e_8bdd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e30b_052e_8bdd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cmap.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e30b_052e_8bdd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e30b_052e_8bdd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e30b_052e_8bdd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_52b3_1abc_6039", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_52b3_1abc_6039.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_52b3_1abc_6039/request", "", "public", "CPC Merged Analysis of Precipitation Pentad data (includes NCEP Reanalysis I), 2.5\u00b0, 1979-2016", "Climate Prediction Center (CPC) Merged Analysis of Precipitation Pentad data (includes National Centers for Environmental Prediction (NCEP) Reanalysis I) (Top Dataset, enh, precip.pentad.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Average Pentad Rate of Precipitation, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_52b3_1abc_6039_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_52b3_1abc_6039_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_52b3_1abc_6039/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cmap.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_52b3_1abc_6039.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_52b3_1abc_6039&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_52b3_1abc_6039"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afb4_ef5a_fa37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_afb4_ef5a_fa37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_afb4_ef5a_fa37/request", "", "public", "CPC Merged Analysis of Precipitation Pentad RT data (excludes NCEP Reanalysis I), 2.5\u00b0, 2000-present", "Climate Prediction Center (CPC) Merged Analysis of Precipitation Pentad RT data (excludes National Centers for Environmental Prediction (NCEP) Reanalysis I) (Top Dataset, rt, precip.pentad.mean.rt)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Average Pentad Rate of Precipitation, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_afb4_ef5a_fa37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_afb4_ef5a_fa37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_afb4_ef5a_fa37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cmap.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_afb4_ef5a_fa37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_afb4_ef5a_fa37&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_afb4_ef5a_fa37"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e871_0ea9_74d9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e871_0ea9_74d9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e871_0ea9_74d9/request", "", "public", "created 05/2014 from data provided by JRA (Top Dataset, COBE2, icec.mon.mean), 1.0\u00b0, 1850-2017", "created 05/2014 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, icec.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Monthly Means of Global Ice Concentration, fr)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e871_0ea9_74d9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e871_0ea9_74d9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e871_0ea9_74d9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e871_0ea9_74d9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e871_0ea9_74d9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_e871_0ea9_74d9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9e7_3b10_49c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9e7_3b10_49c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a9e7_3b10_49c0/request", "", "public", "created 05/2014 from data provided by JRA (Top Dataset, COBE2, icec.mon.mean.2016), 1.0\u00b0", "created 05/2014 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, icec.mon.mean.2016)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nicec (Monthly Means of Global Ice Concentration, fr)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9e7_3b10_49c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9e7_3b10_49c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9e7_3b10_49c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9e7_3b10_49c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9e7_3b10_49c0&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_a9e7_3b10_49c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35ec_0735_a3f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35ec_0735_a3f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_35ec_0735_a3f5/request", "", "public", "created 12/2013 from data provided by JRA (Top Dataset, COBE2, sst.mon.mean), 1.0\u00b0, 1850-2017", "created 12/2013 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, sst.mon.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Means of Global Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_35ec_0735_a3f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_35ec_0735_a3f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_35ec_0735_a3f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_35ec_0735_a3f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_35ec_0735_a3f5&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_35ec_0735_a3f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc06_d1e5_9bf9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dc06_d1e5_9bf9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dc06_d1e5_9bf9/request", "", "public", "created 12/2013 from data provided by JRA (Top Dataset, COBE2, sst.mon.mean.2016), 1.0\u00b0", "created 12/2013 from data provided by Japanese Reanalysis (JRA) (Top Dataset, COBE2, sst.mon.mean.2016)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Monthly Means of Global Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dc06_d1e5_9bf9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dc06_d1e5_9bf9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dc06_d1e5_9bf9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cobe2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dc06_d1e5_9bf9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dc06_d1e5_9bf9&showErrors=false&email=", "NOAA ESRL/PSD", "noaa_esrl_dc06_d1e5_9bf9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca10_45fa_9108", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca10_45fa_9108.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca10_45fa_9108/request", "", "public", "CRUTEM4 Air Temperature Dataset (Top Dataset, std, air.mon.anom), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.anom.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca10_45fa_9108_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca10_45fa_9108_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca10_45fa_9108/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca10_45fa_9108.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca10_45fa_9108&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ca10_45fa_9108"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5523_8517_2d0a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5523_8517_2d0a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5523_8517_2d0a/request", "", "public", "CRUTEM4 Air Temperature Dataset (Top Dataset, std, air.mon.mean), 5.0\u00b0, 1851-2018", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/std/air.mon.mean.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4: Surface Air Temperature Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5523_8517_2d0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5523_8517_2d0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5523_8517_2d0a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5523_8517_2d0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5523_8517_2d0a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5523_8517_2d0a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7944_c525_7af1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7944_c525_7af1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7944_c525_7af1/request", "", "public", "CRUTEM4 Air Temperature Dataset (Top Dataset, var, air.mon.anom), 5.0\u00b0, 1850-present", "Climatic Research Unit CRUTEM4 Air Temperature Dataset. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/crutem4/var/air.mon.anom.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (CRUTEM4V: Surface Air Temperature Monthly Anomaly Variance Adjusted, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7944_c525_7af1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7944_c525_7af1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7944_c525_7af1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.crutem4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7944_c525_7af1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7944_c525_7af1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7944_c525_7af1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAgeo1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAgeo1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTAgeo1day/request", "", "public", "Currents, Geostrophic, Aviso, 0.25 degrees, Global, 1992-2012 (1 Day Composite)", "Aviso Zonal Geostrophic Current is inferred from Sea Surface Height Deviation, climatological dynamic height, and basic fluid mechanics.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Eastward Sea Water Velocity, m s-1)\nv_current (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTAgeo1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTAgeo1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTAgeo1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TA_ugeo_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTAgeo1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTAgeo1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTAgeo1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAgeo1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdTAgeo1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdTAgeo1day_LonPM180/request", "", "public", "Currents, Geostrophic, Aviso, 0.25 degrees, Global, 1992-2012 (1 Day Composite), Lon+/-180", "Aviso Zonal Geostrophic Current is inferred from Sea Surface Height Deviation, climatological dynamic height, and basic fluid mechanics.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nu_current (Eastward Sea Water Velocity, m s-1)\nv_current (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdTAgeo1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdTAgeo1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdTAgeo1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/TA_ugeo_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdTAgeo1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdTAgeo1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdTAgeo1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrP2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrP2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ucsdHfrP2/request", "", "public", "Currents, HF Radar, Puerto Rico and the US Virgin Islands, RTV, Near-Real Time, 2010-present, Hourly, 2km", "Surface ocean velocities estimated from HF-Radar are\nrepresentative of the upper 0.3 - 2.5 meters of the\nocean. The main objective of near-real time\nprocessing is to produce the best product from\navailable data at the time of processing. Radial\nvelocity measurements are obtained from individual\nradar sites through the U.S. HF-Radar Network.\nHourly radial data are processed by unweighted\nleast-squares on a 2 km resolution grid of Puerto Rico\nand the Virgin Islands to produce near real-time surface\ncurrent maps.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwater_u (Surface Eastward Sea Water Velocity, m s-1)\nwater_v (Surface Northward Sea Water Velocity, m s-1)\nDOPx (Longitudinal Dilution of Precision)\nDOPy (Latitudinal Dilution of Precision)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ucsdHfrP2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ucsdHfrP2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ucsdHfrP2/index.json", "http://cordc.ucsd.edu/projects/mapping/", "http://upwell.pfeg.noaa.gov/erddap/rss/ucsdHfrP2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ucsdHfrP2&showErrors=false&email=", "Scripps Institution of Oceanography", "ucsdHfrP2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrP6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/ucsdHfrP6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/ucsdHfrP6/request", "", "public", "Currents, HF Radar, Puerto Rico and the US Virgin Islands, RTV, Near-Real Time, 2010-present, Hourly, 6km", "Surface ocean velocities estimated from HF-Radar are\nrepresentative of the upper 0.3 - 2.5 meters of the\nocean. The main objective of near-real time\nprocessing is to produce the best product from\navailable data at the time of processing. Radial\nvelocity measurements are obtained from individual\nradar sites through the U.S. HF-Radar Network.\nHourly radial data are processed by unweighted\nleast-squares on a 6 km resolution grid of Puerto Rico\nand the Virgin Islands to produce near real-time surface\ncurrent maps.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nwater_u (Surface Eastward Sea Water Velocity, m s-1)\nwater_v (Surface Northward Sea Water Velocity, m s-1)\nDOPx (Longitudinal Dilution of Precision)\nDOPy (Latitudinal Dilution of Precision)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ucsdHfrP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ucsdHfrP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ucsdHfrP6/index.json", "http://cordc.ucsd.edu/projects/mapping/", "http://upwell.pfeg.noaa.gov/erddap/rss/ucsdHfrP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ucsdHfrP6&showErrors=false&email=", "Scripps Institution of Oceanography", "ucsdHfrP6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_28d8_bd66_24b1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_28d8_bd66_24b1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_28d8_bd66_24b1/request", "", "public", "Daily MUR SST, Final product (MUR-JPL-L4-GLOB-v4.1)", "Daily Multi-scale Ultra-high Resolution (MUR) Sea Surface Temperature (SST), Final product. A merged, multi-sensor L4 Foundation SST analysis product from Jet Propulsion Laboratory (JPL). (MUR-JPL-L4-GLOB-v4.1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nmask (sea/land field composite mask)\nsea_ice_fraction (sea ice area fraction, fraction (between 0 and 1))\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_28d8_bd66_24b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_28d8_bd66_24b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_28d8_bd66_24b1/index.json", "https://podaac.jpl.nasa.gov/dataset/MUR-JPL-L4-GLOB-v04.1", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_28d8_bd66_24b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_28d8_bd66_24b1&showErrors=false&email=", "Jet Propulsion Laboratory", "nasa_jpl_28d8_bd66_24b1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMIdeli14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMIdeli14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMIdeli14day/request", "", "public", "Debris Likelihood, GhostNet, Aqua MODIS, and GOES Imager, 2006-2013, EXPERIMENTAL (14 Day Composite)", "Debris Likelihood Index (Estimated) is calculated from GhostNet, NASA Aqua MODIS Chl a and NOAA GOES Imager SST data. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndebris (Debris Likelihood, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMIdeli14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMIdeli14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMIdeli14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MI_deli_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMIdeli14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMIdeli14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMIdeli14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMIdeli14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMIdeli14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMIdeli14day_LonPM180/request", "", "public", "Debris Likelihood, GhostNet, Aqua MODIS, and GOES Imager, 2006-2013, EXPERIMENTAL (14 Day Composite), Lon+/-180", "Debris Likelihood Index (Estimated) is calculated from GhostNet, NASA Aqua MODIS Chl a and NOAA GOES Imager SST data. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\ndebris (Debris Likelihood, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMIdeli14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMIdeli14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMIdeli14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MI_deli_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMIdeli14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMIdeli14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMIdeli14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4901day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4901day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk4901day/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (1 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk4901day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk4901day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk4901day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk4901day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk4901day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk4901day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4901day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4901day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk4901day_LonPM180/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (1 Day Composite), Lon+/-180", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk4901day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk4901day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk4901day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk4901day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk4901day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk4901day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk49014day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk49014day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk49014day/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (14 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk49014day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk49014day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk49014day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk49014day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk49014day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk49014day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk49014day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk49014day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk49014day_LonPM180/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (14 Day Composite), Lon+/-180", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk49014day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk49014day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk49014day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk49014day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk49014day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk49014day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4903day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4903day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk4903day/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (3 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk4903day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk4903day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk4903day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk4903day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk4903day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk4903day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4903day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4903day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk4903day_LonPM180/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (3 Day Composite), Lon+/-180", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk4903day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk4903day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk4903day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk4903day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk4903day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk4903day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4908day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4908day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk4908day/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (8 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk4908day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk4908day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk4908day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk4908day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk4908day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk4908day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4908day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk4908day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk4908day_LonPM180/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (8 Day Composite), Lon+/-180", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk4908day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk4908day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk4908day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk4908day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk4908day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk4908day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk490mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk490mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk490mday/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (Monthly Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk490mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk490mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk490mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk490mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk490mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk490mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk490mday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWk490mday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWk490mday_LonPM180/request", "", "public", "Diffuse Attenuation Coef. K490, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (Monthly Composite), Lon+/-180", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWk490mday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWk490mday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWk490mday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWk490mday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWk490mday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWk490mday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHk4908day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHk4908day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHk4908day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, 2003-2013, DEPRECATED OLDER VERSION (8 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHk4908day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHk4908day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHk4908day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHk4908day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHk4908day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHk4908day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHk490mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHk490mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHk490mday/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, 2003-2013, DEPRECATED OLDER VERSION (Monthly Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHk490mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHk490mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHk490mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHk490mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHk490mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHk490mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk4901day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk4901day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEk4901day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, East US, 2002-2012 (1 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEk4901day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEk4901day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEk4901day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEk4901day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEk4901day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEk4901day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk49014day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk49014day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEk49014day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, East US, 2002-2012 (14 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEk49014day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEk49014day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEk49014day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEk49014day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEk49014day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEk49014day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk4903day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk4903day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEk4903day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, East US, 2002-2012 (3 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEk4903day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEk4903day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEk4903day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEk4903day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEk4903day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEk4903day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk4908day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk4908day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEk4908day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, East US, 2002-2012 (8 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEk4908day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEk4908day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEk4908day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEk4908day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEk4908day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEk4908day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk490mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEk490mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEk490mday/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, East US, 2002-2012 (Monthly Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEk490mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEk490mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEk490mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEk490mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEk490mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEk490mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGk4901day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGk4901day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGk4901day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (1 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGk4901day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGk4901day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGk4901day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGk4901day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGk4901day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGk4901day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGk49014day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGk49014day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGk49014day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (14 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGk49014day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGk49014day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGk49014day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGk49014day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGk49014day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGk49014day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGk4903day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGk4903day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGk4903day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (3 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGk4903day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGk4903day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGk4903day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGk4903day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGk4903day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGk4903day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGk4908day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGk4908day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGk4908day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (8 Day Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGk4908day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGk4908day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGk4908day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGk4908day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGk4908day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGk4908day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGk490mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGk490mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGk490mday/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (Monthly Composite)", "NASA distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGk490mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGk490mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGk490mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGk490mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGk490mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGk490mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPk4901day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPk4901day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPk4901day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, Indonesia, 2002-2013 (1 Day Composite)", "OSU distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the NASA GSFC Ocean Biology Products Group.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPk4901day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPk4901day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPk4901day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPk4901day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPk4901day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPk4901day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPk49014day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPk49014day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPk49014day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, Indonesia, 2002-2013 (14 Day Composite)", "OSU distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the NASA GSFC Ocean Biology Products Group.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPk49014day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPk49014day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPk49014day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPk49014day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPk49014day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPk49014day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPk4903day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPk4903day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPk4903day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, Indonesia, 2002-2013 (3 Day Composite)", "OSU distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the NASA GSFC Ocean Biology Products Group.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPk4903day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPk4903day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPk4903day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPk4903day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPk4903day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPk4903day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPk4908day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPk4908day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPk4908day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, Indonesia, 2002-2013 (8 Day Composite)", "OSU distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the NASA GSFC Ocean Biology Products Group.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPk4908day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPk4908day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPk4908day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPk4908day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPk4908day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPk4908day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPk490mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMPk490mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMPk490mday/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, Indonesia, 2002-2013 (Monthly Composite)", "OSU distributes Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua satellite. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. Data is received from the satellite and processed to level 2 by the NASA GSFC Ocean Biology Products Group.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMPk490mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMPk490mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMPk490mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MP_k490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMPk490mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMPk490mday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMPk490mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1kd4901day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1kd4901day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1kd4901day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (1 Day Composite)", "This dataset has monthly composites of Level 3, Standard Mapped Image, 4km, Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1kd4901day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1kd4901day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1kd4901day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_kd490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1kd4901day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1kd4901day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1kd4901day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1kd4908day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1kd4908day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1kd4908day/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (8 Day Composite)", "This dataset has monthly composites of Level 3, Standard Mapped Image, 4km, Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1kd4908day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1kd4908day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1kd4908day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_kd490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1kd4908day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1kd4908day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1kd4908day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1kd490mday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1kd490mday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1kd490mday/request", "", "public", "Diffuse Attenuation K490, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (Monthly Composite)", "This dataset has monthly composites of Level 3, Standard Mapped Image, 4km, Diffuse Attenuation Coefficient at 490 nm Wavelength data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nk490 (Diffuse Attenuation Coefficient K490, m^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1kd490mday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1kd490mday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1kd490mday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_kd490_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1kd490mday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1kd490mday&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1kd490mday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pmlEsaCCI31OceanColor8Day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pmlEsaCCI31OceanColor8Day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pmlEsaCCI31OceanColor8Day/request", "", "public", "ESA CCI Ocean Colour Product (CCI ALL-v3.1-8DAY), 0.04166666\u00b0, 1997-present", "Data products generated by the Ocean Colour component of the European Space Agency Climate Change Initiative project. These files are 8 day composites of merged sensor (MERIS, Moderate Resolution Imaging Spectroradiometer (MODIS) Aqua, Sea-Wide Field-of-View Sensor (SeaWiFS) Local Area Coverage (LAC) & Global Area Coverage (GAC), Visible and Infrared Imager/Radiometer Suite (VIIRS)) products. MODIS Aqua and MERIS were band-shifted and bias-corrected to SeaWiFS bands and values using a temporally and spatially varying scheme based on the overlap years of 2003-2007. VIIRS was band-shifted and bias-corrected in a second stage against the MODIS Rrs that had already been corrected to SeaWiFS levels, for the overlap period 2012-2013. VIIRS and SeaWiFS Rrs were derived from standard NASA L2 products; MERIS and MODIS from a combination of NASA's l2gen (for basic sensor geometry corrections, etc) and HYGEOS Polymer v3.5 (for atmospheric correction). The Rrs were binned to a sinusoidal 4km level-3 grid, and later to 4km geographic projection, by Brockmann Consult's BEAM. Derived products were generally computed with the standard SeaDAS algorithms. QAA IOPs were derived using the standard SeaDAS algorithm but with a modified backscattering table to match that used in the bandshifting. The final chlorophyll is a combination of OC4, Hu's CI and OC5, depending on the water class memberships. Uncertainty estimates were added using the fuzzy water classifier and uncertainty estimation algorithm of Tim Moore as documented in Jackson et al (2017).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nRrs_412 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 412 nm., sr-1)\nRrs_443 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 443 nm., sr-1)\nRrs_490 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 490 nm., sr-1)\nRrs_510 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 510 nm., sr-1)\nRrs_555 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 555 nm., sr-1)\nRrs_670 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 670 nm., sr-1)\nwater_class1 (Mean of normalised water class 1 membership over the compositing period)\nwater_class2 (Mean of normalised water class 2 membership over the compositing period)\nwater_class3 (Mean of normalised water class 3 membership over the compositing period)\nwater_class4 (Mean of normalised water class 4 membership over the compositing period)\nwater_class5 (Mean of normalised water class 5 membership over the compositing period)\n... (80 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmlEsaCCI31OceanColor8Day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmlEsaCCI31OceanColor8Day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmlEsaCCI31OceanColor8Day/index.json", "http://www.esa-oceancolour-cci.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/pmlEsaCCI31OceanColor8Day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmlEsaCCI31OceanColor8Day&showErrors=false&email=", "Plymouth Marine Laboratory", "pmlEsaCCI31OceanColor8Day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pmlEsaCCI31OceanColorDaily", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pmlEsaCCI31OceanColorDaily.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pmlEsaCCI31OceanColorDaily/request", "", "public", "ESA CCI Ocean Colour Product (CCI ALL-v3.1-DAILY), 0.04166666\u00b0, 1997-present", "Data products generated by the Ocean Colour component of the European Space Agency Climate Change Initiative project. These files are daily composites of merged sensor (MERIS, Moderate Resolution Imaging Spectroradiometer (MODIS) Aqua, Sea-Wide Field-of-View Sensor (SeaWiFS) Local Area Coverage (LAC) & Global Area Coverage (GAC), Visible and Infrared Imager/Radiometer Suite (VIIRS)) products. MODIS Aqua and MERIS were band-shifted and bias-corrected to SeaWiFS bands and values using a temporally and spatially varying scheme based on the overlap years of 2003-2007. VIIRS was band-shifted and bias-corrected in a second stage against the MODIS Rrs that had already been corrected to SeaWiFS levels, for the overlap period 2012-2013. VIIRS and SeaWiFS Rrs were derived from standard NASA L2 products; MERIS and MODIS from a combination of NASA's l2gen (for basic sensor geometry corrections, etc) and HYGEOS Polymer v3.5 (for atmospheric correction). The Rrs were binned to a sinusoidal 4km level-3 grid, and later to 4km geographic projection, by Brockmann Consult's BEAM. Derived products were generally computed with the standard SeaDAS algorithms. QAA IOPs were derived using the standard SeaDAS algorithm but with a modified backscattering table to match that used in the bandshifting. The final chlorophyll is a combination of OC4, Hu's CI and OC5, depending on the water class memberships. Uncertainty estimates were added using the fuzzy water classifier and uncertainty estimation algorithm of Tim Moore as documented in Jackson et al (2017).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nMODISA_nobs (Count of the number of observations from the MODIS (Aqua) sensor contributing to this bin cell)\nVIIRS_nobs (Count of the number of observations from the VIIRS sensor contributing to this bin cell)\nMERIS_nobs (Count of the number of observations from the MERIS sensor contributing to this bin cell)\nSeaWiFS_nobs (Count of the number of observations from the SeaWiFS (GAC and LAC) sensor contributing to this bin cell)\ntotal_nobs (Count of the total number of observations contributing to this bin cell)\nRrs_412 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 412 nm., sr-1)\nRrs_443 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 443 nm., sr-1)\nRrs_490 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 490 nm., sr-1)\nRrs_510 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 510 nm., sr-1)\nRrs_555 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 555 nm., sr-1)\nRrs_670 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 670 nm., sr-1)\n... (80 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmlEsaCCI31OceanColorDaily_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmlEsaCCI31OceanColorDaily_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmlEsaCCI31OceanColorDaily/index.json", "http://www.esa-oceancolour-cci.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/pmlEsaCCI31OceanColorDaily.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmlEsaCCI31OceanColorDaily&showErrors=false&email=", "Plymouth Marine Laboratory", "pmlEsaCCI31OceanColorDaily"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/pmlEsaCCI31OceanColorMonthly", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/pmlEsaCCI31OceanColorMonthly.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/pmlEsaCCI31OceanColorMonthly/request", "", "public", "ESA CCI Ocean Colour Product (CCI ALL-v3.1-MONTHLY), 0.04166666\u00b0, 1997-present", "Data products generated by the Ocean Colour component of the European Space Agency Climate Change Initiative project. These files are monthly composites of merged sensor (MERIS, Moderate Resolution Imaging Spectroradiometer (MODIS) Aqua, Sea-Wide Field-of-View Sensor (SeaWiFS) Local Area Coverage (LAC) & Global Area Coverage (GAC), Visible and Infrared Imager/Radiometer Suite (VIIRS)) products. MODIS Aqua and MERIS were band-shifted and bias-corrected to SeaWiFS bands and values using a temporally and spatially varying scheme based on the overlap years of 2003-2007. VIIRS was band-shifted and bias-corrected in a second stage against the MODIS Rrs that had already been corrected to SeaWiFS levels, for the overlap period 2012-2013. VIIRS and SeaWiFS Rrs were derived from standard NASA L2 products; MERIS and MODIS from a combination of NASA's l2gen (for basic sensor geometry corrections, etc) and HYGEOS Polymer v3.5 (for atmospheric correction). The Rrs were binned to a sinusoidal 4km level-3 grid, and later to 4km geographic projection, by Brockmann Consult's BEAM. Derived products were generally computed with the standard SeaDAS algorithms. QAA IOPs were derived using the standard SeaDAS algorithm but with a modified backscattering table to match that used in the bandshifting. The final chlorophyll is a combination of OC4, Hu's CI and OC5, depending on the water class memberships. Uncertainty estimates were added using the fuzzy water classifier and uncertainty estimation algorithm of Tim Moore as documented in Jackson et al (2017).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nRrs_412 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 412 nm., sr-1)\nRrs_443 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 443 nm., sr-1)\nRrs_490 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 490 nm., sr-1)\nRrs_510 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 510 nm., sr-1)\nRrs_555 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 555 nm., sr-1)\nRrs_670 (Sea surface reflectance defined as the ratio of water-leaving radiance to surface irradiance at 670 nm., sr-1)\nwater_class1 (Mean of normalised water class 1 membership over the compositing period)\nwater_class2 (Mean of normalised water class 2 membership over the compositing period)\nwater_class3 (Mean of normalised water class 3 membership over the compositing period)\nwater_class4 (Mean of normalised water class 4 membership over the compositing period)\nwater_class5 (Mean of normalised water class 5 membership over the compositing period)\n... (80 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmlEsaCCI31OceanColorMonthly_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmlEsaCCI31OceanColorMonthly_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmlEsaCCI31OceanColorMonthly/index.json", "http://www.esa-oceancolour-cci.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/pmlEsaCCI31OceanColorMonthly.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmlEsaCCI31OceanColorMonthly&showErrors=false&email=", "Plymouth Marine Laboratory", "pmlEsaCCI31OceanColorMonthly"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHcflh8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHcflh8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHcflh8day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, 2002-2013, DEPRECATED OLDER VERSION (8 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which they fluoresce can be decoupled from the rate of photosynthetic productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHcflh8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHcflh8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHcflh8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHcflh8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHcflh8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHcflh8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHcflhmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMHcflhmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMHcflhmday/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, 2002-2013, DEPRECATED OLDER VERSION (Monthly Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which they fluoresce can be decoupled from the rate of photosynthetic productivity. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMHcflhmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMHcflhmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMHcflhmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMHcflhmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMHcflhmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMHcflhmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflh1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflh1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcflh1day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, East US, 2002-2012 (1 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcflh1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcflh1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcflh1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcflh1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcflh1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcflh1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflh14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflh14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcflh14day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, East US, 2002-2012 (14 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcflh14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcflh14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcflh14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcflh14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcflh14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcflh14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflh3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflh3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcflh3day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, East US, 2002-2012 (3 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcflh3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcflh3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcflh3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcflh3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcflh3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcflh3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflh8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflh8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcflh8day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, East US, 2002-2012 (8 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcflh8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcflh8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcflh8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcflh8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcflh8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcflh8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflhmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMEcflhmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMEcflhmday/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, East US, 2002-2012 (Monthly Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMEcflhmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMEcflhmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMEcflhmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/ME_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMEcflhmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMEcflhmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMEcflhmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcflh1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcflh1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGcflh1day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (1 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGcflh1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGcflh1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGcflh1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGcflh1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGcflh1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGcflh1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcflh14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcflh14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGcflh14day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (14 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGcflh14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGcflh14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGcflh14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGcflh14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGcflh14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGcflh14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcflh3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcflh3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGcflh3day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (3 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGcflh3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGcflh3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGcflh3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGcflh3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGcflh3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGcflh3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcflh8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcflh8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGcflh8day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (8 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGcflh8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGcflh8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGcflh8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGcflh8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGcflh8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGcflh8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcflhmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMGcflhmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMGcflhmday/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, Gulf of Mexico, 2002-2012 (Monthly Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMGcflhmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMGcflhmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMGcflhmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MG_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMGcflhmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMGcflhmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMGcflhmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1cflh1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1cflh1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1cflh1day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (1 Day Composite)", "This dataset has monthly composites of Level 3, Standard Mapped Image, 4km, chlorophyll fluorescence data from NASA's Aqua Spacecraft, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which they fluoresce can be decoupled from the rate of photosynthetic productivity. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncflh (Normalized Fluorescence Line Height, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1cflh1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1cflh1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1cflh1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_nflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1cflh1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1cflh1day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1cflh1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1cflh8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1cflh8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1cflh8day/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (8 Day Composite)", "This dataset has monthly composites of Level 3, Standard Mapped Image, 4km, chlorophyll fluorescence data from NASA's Aqua Spacecraft, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which they fluoresce can be decoupled from the rate of photosynthetic productivity. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncflh (Normalized Fluorescence Line Height, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1cflh8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1cflh8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1cflh8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_nflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1cflh8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1cflh8day&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1cflh8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1cflhmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMH1cflhmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMH1cflhmday/request", "", "public", "Fluorescence Line Height, Aqua MODIS, NPP, L3SMI, Global, 4km, Science Quality, 2003-present (Monthly Composite)", "This dataset has monthly composites of Level 3, Standard Mapped Image, 4km, chlorophyll fluorescence data from NASA's Aqua Spacecraft, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which they fluoresce can be decoupled from the rate of photosynthetic productivity. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. This is Science Quality data. This is the August 2015 version of this dataset.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncflh (Normalized Fluorescence Line Height, W m^-2 um^-1 sr^-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMH1cflhmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMH1cflhmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMH1cflhmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MH1_nflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMH1cflhmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMH1cflhmday&showErrors=false&email=", "NASA/GSFC OBPG", "erdMH1cflhmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflh1day/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (1 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflh1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflh1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflh1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflh1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflh1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflh1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflh1day_LonPM180/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (1 Day Composite), Lon+/-180", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflh1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflh1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflh1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflh1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflh1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflh1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflh14day/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (14 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflh14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflh14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflh14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflh14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflh14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflh14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflh14day_LonPM180/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (14 Day Composite), Lon+/-180", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflh14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflh14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflh14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflh14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflh14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflh14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh3day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh3day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflh3day/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (3 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflh3day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflh3day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflh3day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflh3day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflh3day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflh3day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh3day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh3day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflh3day_LonPM180/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (3 Day Composite), Lon+/-180", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflh3day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflh3day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflh3day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflh3day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflh3day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflh3day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh8day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh8day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflh8day/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (8 Day Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflh8day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflh8day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflh8day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflh8day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflh8day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflh8day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh8day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflh8day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflh8day_LonPM180/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (8 Day Composite), Lon+/-180", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflh8day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflh8day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflh8day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflh8day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflh8day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflh8day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflhmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflhmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflhmday/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (Monthly Composite)", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflhmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflhmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflhmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflhmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflhmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflhmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflhmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdMWcflhmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdMWcflhmday_LonPM180/request", "", "public", "Fluorescence, Aqua MODIS, NPP, 0.0125\u00b0, West US, 2002-present (Monthly Composite), Lon+/-180", "MODIS measures chlorophyll fluorescence, which gives insight into the physiology of phytoplankton in the ocean. When phytoplankton are under stress, the rate at which the fluoresce can be decoupled from the rate of photosynthetic productivity.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfluorescence (microwatt cm-2 s-2 nm-1 sr-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdMWcflhmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdMWcflhmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdMWcflhmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/MW_cflh_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdMWcflhmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdMWcflhmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdMWcflhmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWind10", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWind10.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnWind10/request", "", "public", "FNMOC 10m Surface Winds, 360x181, Monthly", "Global monthly derived winds can be obtained for any point on the ocean\n(Northern Hemisphere: 1967 - present, Southern Hemisphere: 1981 - present).\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nu_mean (East-West Component of 10m Surface Wind, m s-1)\nv_mean (North-South Component of 10m Surface Wind, m s-1)\nuv_mag_mean (Magnitude of 10m Surface Wind, m s-1)\ntaux_mean (East-West Component of 10m Wind Stress, N m-2)\ntauy_mean (North-South Component of 10m Wind Stress, N m-2)\ncurl (Curl of Surface 10m Wind Stress, MPa m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnWind10_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnWind10_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnWind10/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/sfc_wind/sfc_wind.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnWind10.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnWind10&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnWind10"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWind10_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWind10_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnWind10_LonPM180/request", "", "public", "FNMOC 10m Surface Winds, 360x181, Monthly, Lon+/-180", "Global monthly derived winds can be obtained for any point on the ocean\n(Northern Hemisphere: 1967 - present, Southern Hemisphere: 1981 - present).\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nu_mean (East-West Component of 10m Surface Wind, m s-1)\nv_mean (North-South Component of 10m Surface Wind, m s-1)\nuv_mag_mean (Magnitude of 10m Surface Wind, m s-1)\ntaux_mean (East-West Component of 10m Wind Stress, N m-2)\ntauy_mean (North-South Component of 10m Wind Stress, N m-2)\ncurl (Curl of Surface 10m Wind Stress, MPa m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnWind10_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnWind10_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnWind10_LonPM180/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/sfc_wind/sfc_wind.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnWind10_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnWind10_LonPM180&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnWind10_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWind20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWind20.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnWind20/request", "", "public", "FNMOC 20m Surface Winds, 360x181, Monthly", "Global monthly derived winds can be obtained for any point on the ocean\n(Northern Hemisphere: 1967 - present, Southern Hemisphere: 1981 - present).\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nu_mean (East-West Component of 20m Surface Wind, m s-1)\nv_mean (North-South Component of 20m Surface Wind, m s-1)\nuv_mag_mean (Magnitude of 20m Surface Wind, m s-1)\ntaux_mean (East-West Component of 20m Wind Stress, N m-2)\ntauy_mean (North-South Component of 20m Wind Stress, N m-2)\ncurl (Curl of Surface 20m Wind Stress, MPa m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnWind20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnWind20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnWind20/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/sfc_wind/sfc_wind.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnWind20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnWind20&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnWind20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWind20_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWind20_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnWind20_LonPM180/request", "", "public", "FNMOC 20m Surface Winds, 360x181, Monthly, Lon+/-180", "Global monthly derived winds can be obtained for any point on the ocean\n(Northern Hemisphere: 1967 - present, Southern Hemisphere: 1981 - present).\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nu_mean (East-West Component of 20m Surface Wind, m s-1)\nv_mean (North-South Component of 20m Surface Wind, m s-1)\nuv_mag_mean (Magnitude of 20m Surface Wind, m s-1)\ntaux_mean (East-West Component of 20m Wind Stress, N m-2)\ntauy_mean (North-South Component of 20m Wind Stress, N m-2)\ncurl (Curl of Surface 20m Wind Stress, MPa m-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnWind20_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnWind20_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnWind20_LonPM180/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/sfc_wind/sfc_wind.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnWind20_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnWind20_LonPM180&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnWind20_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFn500mb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFn500mb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFn500mb/request", "", "public", "FNMOC 500 mb Geopotential Height, 360x181, Monthly", "Monthly means of the FNMOC (Fleet Numerical Meteorology and Oceanography Center) 6-hourly analyzed geopotential height field on a 360 by 181 global spherical grid (1 degree). For more information on the models used to compute these data please see:\n\nRosmond, T. E., 1992: A prototype fully coupled Ocean-Atmosphere Prediction System, Oceanography Vol. 5, No. 1, 25-30.\n\nClancy, R. M., 1992: Operational Modeling: Ocean Modeling at the Fleet Numerical Oceanography Center, Oceanography Vol. 5, No. 1, 31-35.\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) to take advantage of the Navy's global oceanographic and meteorological databases. FNMOC produces operational forecasts of the state of the atmosphere and the ocean several times daily and maintains archives of several important parameters, such as sea level pressure and temperature. ERD derives a number of well-known environmental data and index products which are routinely distributed to researchers at many state and federal laboratories, as well as to academic and international researchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nz_mean (Geopotential height at 500mb, gp)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFn500mb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFn500mb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFn500mb/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/500mb_height/500mb_height.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFn500mb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFn500mb&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFn500mb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFn500mb_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFn500mb_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFn500mb_LonPM180/request", "", "public", "FNMOC 500 mb Geopotential Height, 360x181, Monthly, Lon+/-180", "Monthly means of the FNMOC (Fleet Numerical Meteorology and Oceanography Center) 6-hourly analyzed geopotential height field on a 360 by 181 global spherical grid (1 degree). For more information on the models used to compute these data please see:\n\nRosmond, T. E., 1992: A prototype fully coupled Ocean-Atmosphere Prediction System, Oceanography Vol. 5, No. 1, 25-30.\n\nClancy, R. M., 1992: Operational Modeling: Ocean Modeling at the Fleet Numerical Oceanography Center, Oceanography Vol. 5, No. 1, 31-35.\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and Oceanography Center (FNMOC) to take advantage of the Navy's global oceanographic and meteorological databases. FNMOC produces operational forecasts of the state of the atmosphere and the ocean several times daily and maintains archives of several important parameters, such as sea level pressure and temperature. ERD derives a number of well-known environmental data and index products which are routinely distributed to researchers at many state and federal laboratories, as well as to academic and international researchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nz_mean (Geopotential height at 500mb, gp)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFn500mb_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFn500mb_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFn500mb_LonPM180/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/500mb_height/500mb_height.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFn500mb_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFn500mb_LonPM180&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFn500mb_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnTran6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnTran6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnTran6/request", "", "public", "FNMOC Ekman Transports, 360x180, 6-hourly", "Ekman transports and wind stress curl calculated from geostrophic winds based\non FNMOC 360x180 (1-degree) analyzed fields of sea level pressure. This\ndataset has data prior to the current month.\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncurl (Curl of Surface Wind Stress, MPa m-1)\nektrx (East-West Component of Ekman Transport, kg m-1 s-1)\nektry (North-South Component of Ekman Transport, kg m-1 s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnTran6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnTran6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnTran6/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/holdings.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnTran6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnTran6&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnTran6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnTran6_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnTran6_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnTran6_LonPM180/request", "", "public", "FNMOC Ekman Transports, 360x180, 6-hourly, Lon+/-180", "Ekman transports and wind stress curl calculated from geostrophic winds based\non FNMOC 360x180 (1-degree) analyzed fields of sea level pressure. This\ndataset has data prior to the current month.\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncurl (Curl of Surface Wind Stress, MPa m-1)\nektrx (East-West Component of Ekman Transport, kg m-1 s-1)\nektry (North-South Component of Ekman Transport, kg m-1 s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnTran6_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnTran6_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnTran6_LonPM180/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/holdings.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnTran6_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnTran6_LonPM180&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnTran6_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnPres6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnPres6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnPres6/request", "", "public", "FNMOC Sea Level Pressure, 360x180, 6-hourly", "Sea level pressure based on the FNMOC 360x180 (1-degree) analyzed fields.\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\np_msl (Pressure Reduced To Mean Sea Level, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnPres6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnPres6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnPres6/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/holdings.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnPres6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnPres6&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnPres6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnPres6_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnPres6_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnPres6_LonPM180/request", "", "public", "FNMOC Sea Level Pressure, 360x180, 6-hourly, Lon+/-180", "Sea level pressure based on the FNMOC 360x180 (1-degree) analyzed fields.\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\np_msl (Pressure Reduced To Mean Sea Level, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnPres6_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnPres6_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnPres6_LonPM180/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/holdings.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnPres6_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnPres6_LonPM180&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnPres6_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWPr", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWPr.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnWPr/request", "", "public", "FNMOC Wind and Ekman Transport Data, 360x180, Monthly, from 6-hr Pressure", "Global monthly derived winds and Ekman transports can be obtained for any\npoint on the ocean (Northern Hemisphere: 1967 - present, Southern Hemisphere:\n1981 - present).\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npmsl (Pressure Reduced To MSL, Mb)\nu_mean (East-West Component of Surface Wind, m s-1)\nv_mean (North-South Component of Surface Wind, m s-1)\nuv_mag_mean (Magnitude of Surface Wind, m s-1)\ntaux_mean (East-West Component of Wind Stress, N m-2)\ntauy_mean (North-South Component of Wind Stress, N m-2)\ncurl (Curl of Surface Wind Stress, MPa m-1)\nektrx (East-West Component of Ekman Transport, kg m-1 s-1)\nektry (North-South Component of Ekman Transport, kg m-1 s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnWPr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnWPr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnWPr/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/holdings.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnWPr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnWPr&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnWPr"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWPr_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdlasFnWPr_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdlasFnWPr_LonPM180/request", "", "public", "FNMOC Wind and Ekman Transport Data, 360x180, Monthly, from 6-hr Pressure, Lon+/-180", "Global monthly derived winds and Ekman transports can be obtained for any\npoint on the ocean (Northern Hemisphere: 1967 - present, Southern Hemisphere:\n1981 - present).\n\nERD was established at the U.S. Navy Fleet Numerical Meteorology and\nOceanography Center (FNMOC) to take advantage of the Navy's global\noceanographic and meteorological databases. FNMOC produces operational\nforecasts of the state of the atmosphere and the ocean several times daily\nand maintains archives of several important parameters, such as sea level\npressure and temperature. ERD derives a number of well-known environmental\ndata and index products which are routinely distributed to researchers at\nmany state and federal laboratories, as well as to academic and international\nresearchers.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\npmsl (Pressure Reduced To MSL, Mb)\nu_mean (East-West Component of Surface Wind, m s-1)\nv_mean (North-South Component of Surface Wind, m s-1)\nuv_mag_mean (Magnitude of Surface Wind, m s-1)\ntaux_mean (East-West Component of Wind Stress, N m-2)\ntauy_mean (North-South Component of Wind Stress, N m-2)\ncurl (Curl of Surface Wind Stress, MPa m-1)\nektrx (East-West Component of Ekman Transport, kg m-1 s-1)\nektry (North-South Component of Ekman Transport, kg m-1 s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdlasFnWPr_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdlasFnWPr_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdlasFnWPr_LonPM180/index.json", "https://www.pfeg.noaa.gov/products/PFEL/modeled/holdings.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdlasFnWPr_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdlasFnWPr_LonPM180&showErrors=false&email=", "FNMOC, NOAA ERD", "erdlasFnWPr_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfnt1day/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2000-present, EXPERIMENTAL (1 Day Composite)", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfnt1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfnt1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfnt1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfnt1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfnt1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfnt1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfnt1day_LonPM180/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2000-present, EXPERIMENTAL (1 Day Composite), Lon+/-180", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfnt1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfnt1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfnt1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfnt1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfnt1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfnt1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt10day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt10day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfnt10day/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2001-present, EXPERIMENTAL (10 Day Composite)", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfnt10day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfnt10day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfnt10day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfnt10day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfnt10day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfnt10day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt10day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt10day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfnt10day_LonPM180/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2001-present, EXPERIMENTAL (10 Day Composite), Lon+/-180", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfnt10day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfnt10day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfnt10day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfnt10day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfnt10day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfnt10day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfntmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfntmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfntmday/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2001-present, EXPERIMENTAL (Monthly Composite)", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfntmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfntmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfntmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfntmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfntmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfntmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfntmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfntmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfntmday_LonPM180/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2001-present, EXPERIMENTAL (Monthly Composite), Lon+/-180", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfntmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfntmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfntmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfntmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfntmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfntmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt14day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt14day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfnt14day/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2005-present, EXPERIMENTAL (14 Day Composite)", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfnt14day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfnt14day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfnt14day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfnt14day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfnt14day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfnt14day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt14day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt14day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfnt14day_LonPM180/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2005-present, EXPERIMENTAL (14 Day Composite), Lon+/-180", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfnt14day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfnt14day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfnt14day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfnt14day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfnt14day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfnt14day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt5day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt5day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfnt5day/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2007-present, EXPERIMENTAL (5 Day Composite)", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfnt5day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfnt5day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfnt5day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfnt5day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfnt5day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfnt5day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt5day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdGAtfnt5day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdGAtfnt5day_LonPM180/request", "", "public", "Front Probability, GOES Imager, Western Hemisphere, 2007-present, EXPERIMENTAL (5 Day Composite), Lon+/-180", "The data indicates the probability of oceanic sea surface temperature fronts off the California coast. They were created using remote sensing sea surface temperature data from the GOES geostationary satellite. THIS IS AN EXPERIMENTAL PRODUCT: intended strictly for scientific evaluation by professional marine scientists. The data is unitless.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nfront (Front Probability, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGAtfnt5day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGAtfnt5day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGAtfnt5day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/GA_tfnt_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGAtfnt5day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGAtfnt5day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdGAtfnt5day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_856c_d040_ccf7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_856c_d040_ccf7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_856c_d040_ccf7/request", "", "public", "GHCN version 2 Land Precipitation Anomalies (Top Dataset, ghcngridded, precip.mon.anom), 5.0\u00b0, 1900-2015", "Global Historical Climatology Network (GHCN) version 2 Land Precipitation Anomalies (Top Dataset, ghcngridded, precip.mon.anom)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GHCN V2 Gridded Precipitation, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_856c_d040_ccf7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_856c_d040_ccf7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_856c_d040_ccf7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ghcnv2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_856c_d040_ccf7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_856c_d040_ccf7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_856c_d040_ccf7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a52_974c_51c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a52_974c_51c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a52_974c_51c3/request", "", "public", "GHCN version 3 Land Temperature Anomalies from GHCN-M V3.2.1 (air.mon.anom), 5.0\u00b0, 1880-present", "Global Historical Climatology Network (GHCN) version 3 Land Temperature Anomalies from GHCN-M V3.2.1 (Top Dataset, ghcngridded, air.mon.anom)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (GHCN V3.2.1 Gridded Air Temperature Anomalies, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a52_974c_51c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a52_974c_51c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a52_974c_51c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.ghcnv2.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a52_974c_51c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a52_974c_51c3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6a52_974c_51c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_72a3_eae2_0c14", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_72a3_eae2_0c14.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_72a3_eae2_0c14/request", "", "public", "GHRSST, Group for High Resolution SST, CMC0.2deg-CMC-L4-GLOB-v2.0, 1991-2017", "Canadian Meteorological Centre (CMC) 0.2 deg global sea surface temperature analysis. Applies the method of statistical interpolation to assimilate observations from in situ and satellite sources using, as the background, the analysis valid 24 hours prior assuming persistence of the anomalies.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (sea/land/lake/ice field composite mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_72a3_eae2_0c14_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_72a3_eae2_0c14_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_72a3_eae2_0c14/index.json", "https://podaac.jpl.nasa.gov/dataset/CMC0.2deg-CMC-L4-GLOB-v2.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_72a3_eae2_0c14.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_72a3_eae2_0c14&showErrors=false&email=", "CMC", "nasa_jpl_72a3_eae2_0c14"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_dde5_3be1_897b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_dde5_3be1_897b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_dde5_3be1_897b/request", "", "public", "GHRSST, Group for High Resolution SST, MUR-JPL-L4-GLOB-v4.1 (Daily MUR SST, Final product), 0.01\u00b0, 2002-present", "Daily Multi-scale Ultra-high Resolution (MUR) Sea Surface Temperature (SST), Final product. A merged, multi-sensor L4 Foundation SST analysis product from Jet Propulsion Laboratory (JPL).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nmask (sea/land field composite mask)\nsea_ice_fraction (sea ice area fraction, fraction (between 0 and 1))\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_dde5_3be1_897b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_dde5_3be1_897b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_dde5_3be1_897b/index.json", "https://podaac.jpl.nasa.gov/dataset/MUR-JPL-L4-GLOB-v4.1", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_dde5_3be1_897b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_dde5_3be1_897b&showErrors=false&email=", "Jet Propulsion Laboratory", "nasa_jpl_dde5_3be1_897b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_61b9_f6bc_3913", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_61b9_f6bc_3913.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_61b9_f6bc_3913/request", "", "public", "GHRSST, Group for High Resolution SST, MW IR OI-REMSS-L4-GLOB-v5.0, 0.08789057\u00b0, 2002-present", "Analysed foundation sea surface temperature over the global ocean. A merged, multi-sensor L4 foundation SST product from Remote Sensing Systems\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (land sea ice lake bit mask)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_61b9_f6bc_3913_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_61b9_f6bc_3913_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_61b9_f6bc_3913/index.json", "https://podaac.jpl.nasa.gov/dataset/MW_IR_OI-REMSS-L4-GLOB-v5.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_61b9_f6bc_3913.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_61b9_f6bc_3913&showErrors=false&email=", "REMSS", "nasa_jpl_61b9_f6bc_3913"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_08dd_483f_d0c7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_08dd_483f_d0c7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_08dd_483f_d0c7/request", "", "public", "GHRSST, Group for High Resolution SST, OISST HR NRT-GOS-L4-BLK-v2.0, 0.0625\u00b0, 2008-present", "Black Sea SST Analysis, L4, 1/16deg daily. Daily gap-free maps (L4) at 0.0625deg. x 0.0625deg. horizontal resolution over the Black Sea. The data (for day=dd) are obtained from infra-red measurements collected [since 7pm of day=dd-1 to 7am of day=dd] by satellite radiometers and statistical interpolation. It is the Copernicus sea surface temperature nominal operational product for the Black Sea in DT mode.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (sea/land/lake/ice field composite mask, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_08dd_483f_d0c7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_08dd_483f_d0c7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_08dd_483f_d0c7/index.json", "https://podaac.jpl.nasa.gov/dataset/OISST_HR_NRT-GOS-L4-BLK-v2.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_08dd_483f_d0c7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_08dd_483f_d0c7&showErrors=false&email=", "GOS", "nasa_jpl_08dd_483f_d0c7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_429b_ae8d_8e97", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_429b_ae8d_8e97.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_429b_ae8d_8e97/request", "", "public", "GHRSST, Group for High Resolution SST, OISST HR NRT-GOS-L4-MED-v2.0, 0.0625\u00b0, 2008-present", "Mediterranean SST Analysis, L4, 1/16deg daily. Daily gap-free maps (L4) at 0.0625deg. x 0.0625deg. horizontal resolution over the Mediterranean Sea. The data (for day=dd) are obtained from infra-red measurements collected [since 7pm of day=dd-1 to 7am of day=dd] by satellite radiometers and statistical interpolation.It is the Copernicus sea surface temperature nominal operational product for the Mediterranean Sea in DT mode.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nanalysed_sst (analysed sea surface temperature, degree_C)\nanalysis_error (estimated error standard deviation of analysed_sst, degree_C)\nsea_ice_fraction (sea ice area fraction, 1)\nmask (sea/land/lake/ice field composite mask, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_429b_ae8d_8e97_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_429b_ae8d_8e97_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_429b_ae8d_8e97/index.json", "https://podaac.jpl.nasa.gov/dataset/OISST_HR_NRT-GOS-L4-MED-v2.0", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_429b_ae8d_8e97.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_429b_ae8d_8e97&showErrors=false&email=", "GOS", "nasa_jpl_429b_ae8d_8e97"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_1140_fb15_f634", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_1140_fb15_f634.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_1140_fb15_f634/request", "", "public", "GHRSST, Group for High Resolution SST, REYNOLDS NCDC L4 MONTHLY V4, 2.0\u00b0, 1854-present", "NOAA ERSSTv4 (in situ only). ERSST.v4 is developped based on v3b after revisions of 11 parameters using updated data sets and advanced knowledge of ERSST analysis\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsst (Extended reconstructed sea surface temperature, degree_C)\nssta (Extended reconstructed SST anomalies, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_1140_fb15_f634_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_1140_fb15_f634_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_1140_fb15_f634/index.json", "https://podaac.jpl.nasa.gov/dataset/REYNOLDS_NCDC_L4_MONTHLY_V4", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_1140_fb15_f634.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_1140_fb15_f634&showErrors=false&email=", "NOAA/NESDIS/NCEI/CCOG", "nasa_jpl_1140_fb15_f634"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_0ddb_e7e0_fe9e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/nasa_jpl_0ddb_e7e0_fe9e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/nasa_jpl_0ddb_e7e0_fe9e/request", "", "public", "GHRSST, Group for High Resolution SST, REYNOLDS NCDC L4 MONTHLY V5, 2.0\u00b0, 1854-present", "NOAA ERSSTv5 (in situ only). ERSST.v5 is developped based on v4 after revisions of 8 parameters using updated data sets and advanced knowledge of ERSST analysis\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nsst (Extended reconstructed sea surface temperature, degree_C)\nssta (Extended reconstructed SST anomalies, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nasa_jpl_0ddb_e7e0_fe9e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nasa_jpl_0ddb_e7e0_fe9e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nasa_jpl_0ddb_e7e0_fe9e/index.json", "https://podaac.jpl.nasa.gov/dataset/REYNOLDS_NCDC_L4_MONTHLY_V5", "http://upwell.pfeg.noaa.gov/erddap/rss/nasa_jpl_0ddb_e7e0_fe9e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nasa_jpl_0ddb_e7e0_fe9e&showErrors=false&email=", "NOAA/NESDIS/NCEI/CCOG", "nasa_jpl_0ddb_e7e0_fe9e"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the November 2018 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://www.usgodae.org/cgi-bin/datalist.pl?summary=Go&dset=fnmoc_obs_sfcobs", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09e6_cf00_cd40", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09e6_cf00_cd40.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_09e6_cf00_cd40/request", "", "public", "GPCC Full Data Reanalysis Version 6 0.5x0.5 Monthly Means (precip.mon.total.v6), 1901-2010", "Global Precipitation Climatology Centre (GPCC) Full Data Reanalysis Version 6 0.5x0.5 Monthly Means (Top Dataset, full v6, precip.mon.total.v6)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly total of precipitation, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_09e6_cf00_cd40_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_09e6_cf00_cd40_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_09e6_cf00_cd40/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_09e6_cf00_cd40.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_09e6_cf00_cd40&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_09e6_cf00_cd40"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eeeb_d6c9_37ef", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eeeb_d6c9_37ef.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eeeb_d6c9_37ef/request", "", "public", "GPCC Full Data Reanalysis Version 6 1.0x1.0 (precip.comb.v6to2010-v4monitorafter.total), 1901-present", "Global Precipitation Climatology Centre (GPCC) Full Data Reanalysis Version 6 1.0x1.0 Monthly Means appended with GPCC monitoring dataset from 2011 onwards (Top Dataset, combined, precip.comb.v6to2010-v4monitorafter.total)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly total of precipitation, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eeeb_d6c9_37ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eeeb_d6c9_37ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eeeb_d6c9_37ef/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eeeb_d6c9_37ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eeeb_d6c9_37ef&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_eeeb_d6c9_37ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfb9_7a30_0880", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bfb9_7a30_0880.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bfb9_7a30_0880/request", "", "public", "GPCC Full Data Reanalysis Version 6 1.0x1.0 (precip.mon.combined.total.v6), 1901-present", "Global Precipitation Climatology Centre (GPCC) Full Data Reanalysis Version 6 1.0x1.0 Monthly Means appended with GPCC monitoring dataset from 2011 onwards (Top Dataset, combined, precip.mon.combined.total.v6)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly total of precipitation, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bfb9_7a30_0880_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bfb9_7a30_0880_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bfb9_7a30_0880/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bfb9_7a30_0880.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bfb9_7a30_0880&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bfb9_7a30_0880"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5797_cb12_a059", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5797_cb12_a059.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5797_cb12_a059/request", "", "public", "GPCC Full Data Reanalysis Version 6 1.0x1.0 Monthly Totals (precip.mon.total.1x1.v6), 1901-2010", "Global Precipitation Climatology Centre (GPCC) Full Data Reanalysis Version 6 1.0x1.0 Monthly Totals (Top Dataset, full v6, precip.mon.total.1x1.v6)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly total of precipitation, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5797_cb12_a059_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5797_cb12_a059_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5797_cb12_a059/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5797_cb12_a059.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5797_cb12_a059&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5797_cb12_a059"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce84_06be_6863", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce84_06be_6863.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ce84_06be_6863/request", "", "public", "GPCC Full Data Reanalysis Version 7 0.5x0.5 Monthly Nobs (precip.mon.nobs.v7), 1901-2013", "Global Precipitation Climatology Centre (GPCC) Full Data Reanalysis Version 7 0.5x0.5 Monthly Nobs (Top Dataset, full v7, precip.mon.nobs.v7)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly total of precipitation: nobs, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ce84_06be_6863_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ce84_06be_6863_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ce84_06be_6863/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ce84_06be_6863.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ce84_06be_6863&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ce84_06be_6863"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8427_e183_67b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8427_e183_67b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8427_e183_67b8/request", "", "public", "GPCC Full Data Reanalysis Version 7 0.5x0.5 Monthly Total (precip.mon.total.v7), 1901-2013", "Global Precipitation Climatology Centre (GPCC) Full Data Reanalysis Version 7 0.5x0.5 Monthly Total (Top Dataset, full v7, precip.mon.total.v7)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly total of precipitation, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8427_e183_67b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8427_e183_67b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8427_e183_67b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8427_e183_67b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8427_e183_67b8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8427_e183_67b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_155e_589f_e7d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_155e_589f_e7d1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_155e_589f_e7d1/request", "", "public", "GPCC Full Data Reanalysis Version 7 1.0x1.0 Monthly Totals (precip.mon.total.1x1.v7), 1901-2013", "Global Precipitation Climatology Centre (GPCC) Full Data Reanalysis Version 7 1.0x1.0 Monthly Totals (Top Dataset, full v7, precip.mon.total.1x1.v7)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly total of precipitation, mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_155e_589f_e7d1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_155e_589f_e7d1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_155e_589f_e7d1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_155e_589f_e7d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_155e_589f_e7d1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_155e_589f_e7d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c634_3a0a_ab2d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c634_3a0a_ab2d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c634_3a0a_ab2d/request", "", "public", "GPCC Full Data Reanalysis Version 7 1.0x1.0 Monthly Totals appended with GPCC monitoring dataset from 2014 onwards, 1901-present", "Global Precipitation Climatology Centre (GPCC) Full Data Reanalysis Version 7 1.0x1.0 Monthly Totals appended with GPCC monitoring dataset from 2014 onwards (Top Dataset, combined, precip.comb.v7to2013-v4monitorafter.total)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly total of precipitation, mm/mn)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c634_3a0a_ab2d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c634_3a0a_ab2d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c634_3a0a_ab2d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c634_3a0a_ab2d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c634_3a0a_ab2d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c634_3a0a_ab2d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_faba_5589_7809", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_faba_5589_7809.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_faba_5589_7809/request", "", "public", "GPCC Full Data Reanalysis Version 7 1.0x1.0 Monthly Totals appended with GPCC monitoring dataset from 2014 onwards, 1901-present", "Global Precipitation Climatology Centre (GPCC) Full Data Reanalysis Version 7 1.0x1.0 Monthly Totals appended with GPCC monitoring dataset from 2014 onwards (Top Dataset, combined, precip.mon.combined.total.v7)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly total of precipitation, mm/mn)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_faba_5589_7809_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_faba_5589_7809_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_faba_5589_7809/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_faba_5589_7809.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_faba_5589_7809&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_faba_5589_7809"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_52c8_5883_f732", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_52c8_5883_f732.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_52c8_5883_f732/request", "", "public", "GPCC Precipitation Full V6 0.5x0.5 Monthly NOBS (Top Dataset, full v6, precip.mon.nobs.v6), 1901-2010", "Global Precipitation Climatology Centre (GPCC) Precipitation Full V6 0.5x0.5 Monthly NOBS (Top Dataset, full v6, precip.mon.nobs.v6)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly total of precipitation: nobs, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_52c8_5883_f732_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_52c8_5883_f732_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_52c8_5883_f732/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_52c8_5883_f732.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_52c8_5883_f732&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_52c8_5883_f732"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_52a1_51fe_b57f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_52a1_51fe_b57f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_52a1_51fe_b57f/request", "", "public", "GPCC Precipitation Full V6 1.0x1.0 Monthly NOBS (Top Dataset, full v6, precip.mon.nobs.1x1.v6), 1901-2010", "Global Precipitation Climatology Centre (GPCC) Precipitation Full V6 1.0x1.0 Monthly NOBS (Top Dataset, full v6, precip.mon.nobs.1x1.v6)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly Total Precipitation: nobs, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_52a1_51fe_b57f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_52a1_51fe_b57f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_52a1_51fe_b57f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_52a1_51fe_b57f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_52a1_51fe_b57f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_52a1_51fe_b57f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_745c_e1ef_5f1a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_745c_e1ef_5f1a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_745c_e1ef_5f1a/request", "", "public", "GPCC Precipitation Full V7 1.0x1.0 Monthly NOBS (Top Dataset, full v7, precip.mon.nobs.1x1.v7), 1901-2013", "Global Precipitation Climatology Centre (GPCC) Precipitation Full V7 1.0x1.0 Monthly NOBS (Top Dataset, full v7, precip.mon.nobs.1x1.v7)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (GPCC Monthly Total Precipitation: nobs, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_745c_e1ef_5f1a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_745c_e1ef_5f1a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_745c_e1ef_5f1a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_745c_e1ef_5f1a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_745c_e1ef_5f1a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_745c_e1ef_5f1a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b82e_1da0_40f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b82e_1da0_40f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b82e_1da0_40f5/request", "", "public", "GPCP Version 2.3 Combined Precipitation Dataset (Final) (precip.mon.mean.error), 2.5\u00b0, 1979-present", "https://data.nodc.noaa.gov/cgi-bin/iso?id=gov.noaa.ncdc:C00970\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Absolute Error: Monthly Rate of Precipitation, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b82e_1da0_40f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b82e_1da0_40f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b82e_1da0_40f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b82e_1da0_40f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b82e_1da0_40f5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b82e_1da0_40f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f19_1c39_1309", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f19_1c39_1309.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f19_1c39_1309/request", "", "public", "GPCP Version 2.3 Combined Precipitation Dataset (Final) (Top Dataset, gpcp, precip.mon.mean), 2.5\u00b0, 1979-present", "Global Precipitation Climatology Project (GPCP) Version 2.3 Combined Precipitation Dataset (Final). https://data.nodc.noaa.gov/cgi-bin/iso?id=gov.noaa.ncdc:C00970\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nprecip (Average Monthly Rate of Precipitation, mm/day)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f19_1c39_1309_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f19_1c39_1309_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f19_1c39_1309/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.gpcp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f19_1c39_1309.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f19_1c39_1309&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8f19_1c39_1309"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusLandMassRL05CSR", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusLandMassRL05CSR.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplGraceTellusLandMassRL05CSR/request", "", "public", "GRACE TELLUS Land Mass Grids, Center for Space Research (CSR), Univ. Texas Austin, RL05, GRCTellus.CSR.200204 201701.LND.RL05.DSTvSCS1409, 1.0\u00b0", "Gravity Recovery and Climate Experiment (GRACE) Tellus, Land Mass Grids, Center for Space Research (CSR), Univ. Texas Austin, RL05, (GRCTellus).CSR.200204 201701.LND.RL05.DSTvSCS1409\n\nThe GRACE twin satellites, launched 17 March 2002, are making detailed measurements of Earth's gravity field changes and revolutionizing investigations about Earth's water reservoirs over land, ice and oceans, as well as earthquakes and crustal deformations. The two GRACE satellites have completed more than 13 years of continuous measurements!\n\nGRACE is a collaboration of the US and German space agencies (NASA and DLR). GRACE ground segment operations are currently co-funded by the GFZ German Research Centre for Geosciences and the European Space Agency (ESA). NASA, ESA, GFZ and DLR are supporting the continuation of the measurements of mass redistribution in the Earth system. The key partners in the design, construction and launch of the mission have been the Jet Propulsion Laboratory, the University of Texas Center for Space Research, GFZ German Research Centre for Geosciences, as well as Astrium GmBH, Space Systems Loral (SS/L), Onera and Eurockot GmBH.\n\nJPL, CSR or GFZ - which solution should I use? \nhttps://grace.jpl.nasa.gov/data/choosing-a-solution/\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlwe_thickness (Liquid_Water_Equivalent_Thickness, cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplGraceTellusLandMassRL05CSR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplGraceTellusLandMassRL05CSR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplGraceTellusLandMassRL05CSR/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplGraceTellusLandMassRL05CSR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplGraceTellusLandMassRL05CSR&showErrors=false&email=", "JPL / GRACE-TELLUS", "jplGraceTellusLandMassRL05CSR"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusLandMassRL05GFZ", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusLandMassRL05GFZ.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplGraceTellusLandMassRL05GFZ/request", "", "public", "GRACE TELLUS Land Mass Grids, GeoforshungsZentrum Postsdam (GFZ), RL05, GRCTellus.GFZ.200204 201701.LND.RL05.DSTvSCS1409, 1.0\u00b0", "Gravity Recovery and Climate Experiment (GRACE) Tellus, Land Mass Grids, GeoforshungsZentrum Postsdam (GFZ), RL05, (GRCTellus).GFZ.200204 201701.LND.RL05.DSTvSCS1409\n\nThe GRACE twin satellites, launched 17 March 2002, are making detailed measurements of Earth's gravity field changes and revolutionizing investigations about Earth's water reservoirs over land, ice and oceans, as well as earthquakes and crustal deformations. The two GRACE satellites have completed more than 13 years of continuous measurements!\n\nGRACE is a collaboration of the US and German space agencies (NASA and DLR). GRACE ground segment operations are currently co-funded by the GFZ German Research Centre for Geosciences and the European Space Agency (ESA). NASA, ESA, GFZ and DLR are supporting the continuation of the measurements of mass redistribution in the Earth system. The key partners in the design, construction and launch of the mission have been the Jet Propulsion Laboratory, the University of Texas Center for Space Research, GFZ German Research Centre for Geosciences, as well as Astrium GmBH, Space Systems Loral (SS/L), Onera and Eurockot GmBH.\n\nJPL, CSR or GFZ - which solution should I use? \nhttps://grace.jpl.nasa.gov/data/choosing-a-solution/\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlwe_thickness (Liquid_Water_Equivalent_Thickness, cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplGraceTellusLandMassRL05GFZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplGraceTellusLandMassRL05GFZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplGraceTellusLandMassRL05GFZ/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplGraceTellusLandMassRL05GFZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplGraceTellusLandMassRL05GFZ&showErrors=false&email=", "JPL / GRACE-TELLUS", "jplGraceTellusLandMassRL05GFZ"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusLandMassRL051JPL", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusLandMassRL051JPL.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplGraceTellusLandMassRL051JPL/request", "", "public", "GRACE TELLUS Land Mass Grids, Jet Propulsion Laboratory (JPL), RL05, GRCTellus.JPL.200204 201701.LND.RL05 1.DSTvSCS1411, 1.0\u00b0", "Gravity Recovery and Climate Experiment (GRACE) Tellus, Land Mass Grids, Jet Propulsion Laboratory (JPL), RL05, (GRCTellus).Jet Propulsion Laboratory (JPL).200204 201701.LND.RL05 1.DSTvSCS1411\n\nThe GRACE twin satellites, launched 17 March 2002, are making detailed measurements of Earth's gravity field changes and revolutionizing investigations about Earth's water reservoirs over land, ice and oceans, as well as earthquakes and crustal deformations. The two GRACE satellites have completed more than 13 years of continuous measurements!\n\nGRACE is a collaboration of the US and German space agencies (NASA and DLR). GRACE ground segment operations are currently co-funded by the GFZ German Research Centre for Geosciences and the European Space Agency (ESA). NASA, ESA, GFZ and DLR are supporting the continuation of the measurements of mass redistribution in the Earth system. The key partners in the design, construction and launch of the mission have been the Jet Propulsion Laboratory, the University of Texas Center for Space Research, GFZ German Research Centre for Geosciences, as well as Astrium GmBH, Space Systems Loral (SS/L), Onera and Eurockot GmBH.\n\nJPL, CSR or GFZ - which solution should I use? \nhttps://grace.jpl.nasa.gov/data/choosing-a-solution/\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlwe_thickness (Liquid_Water_Equivalent_Thickness, cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplGraceTellusLandMassRL051JPL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplGraceTellusLandMassRL051JPL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplGraceTellusLandMassRL051JPL/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplGraceTellusLandMassRL051JPL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplGraceTellusLandMassRL051JPL&showErrors=false&email=", "JPL / GRACE-TELLUS", "jplGraceTellusLandMassRL051JPL"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusMasConRL06CriGrid", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusMasConRL06CriGrid.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplGraceTellusMasConRL06CriGrid/request", "", "public", "GRACE TELLUS MasCon with CRI Filter, Jet Propulsion Laboratory (JPL), RL06M, GRCTellus.JPL.200204 201706.GLO.RL06M.MSCNv01CRIv01, 0.5\u00b0", "Gravity Recovery and Climate Experiment (GRACE) Tellus, Monthly gravity solution grids with CRI Filter, Jet Propulsion Laboratory (JPL), RL06M, MASCON RL06M CRI. Monthly gravity solutions from GRACE as determined from the JPL RL06M mascon solution - with CRI filter applied.\n\nThe GRACE twin satellites, launched 17 March 2002, are making detailed measurements of Earth's gravity field changes and revolutionizing investigations about Earth's water reservoirs over land, ice and oceans, as well as earthquakes and crustal deformations. The two GRACE satellites have completed more than 13 years of continuous measurements!\n\nGRACE is a collaboration of the US and German space agencies (NASA and DLR). GRACE ground segment operations are currently co-funded by the GFZ German Research Centre for Geosciences and the European Space Agency (ESA). NASA, ESA, GFZ and DLR are supporting the continuation of the measurements of mass redistribution in the Earth system. The key partners in the design, construction and launch of the mission have been the Jet Propulsion Laboratory, the University of Texas Center for Space Research, GFZ German Research Centre for Geosciences, as well as Astrium GmBH, Space Systems Loral (SS/L), Onera and Eurockot GmBH.\n\nJPL, CSR or GFZ - which solution should I use? \nhttps://grace.jpl.nasa.gov/data/choosing-a-solution/\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlwe_thickness (Liquid_Water_Equivalent_Thickness, cm)\nuncertainty (cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplGraceTellusMasConRL06CriGrid_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplGraceTellusMasConRL06CriGrid_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplGraceTellusMasConRL06CriGrid/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplGraceTellusMasConRL06CriGrid.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplGraceTellusMasConRL06CriGrid&showErrors=false&email=", "NASA/JPL", "jplGraceTellusMasConRL06CriGrid"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusMasConRL06JPL", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusMasConRL06JPL.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplGraceTellusMasConRL06JPL/request", "", "public", "GRACE TELLUS MasCon without CRI Filter, Jet Propulsion Laboratory (JPL), RL06 GRID, GRCTellus.JPL.200204 201706.GLO.RL06M.MSCNv01 (JPL GRACE MASCON RL06M), 0.5\u00b0", "Gravity Recovery and Climate Experiment (GRACE) Tellus, Monthly gravity solution grids without CRI Filter, Jet Propulsion Laboratory (JPL), MASCON RL06M. Monthly gravity solutions from GRACE as determined from the JPL RL06M mascon solution - CRI filter is NOT applied.\n\nThe GRACE twin satellites, launched 17 March 2002, are making detailed measurements of Earth's gravity field changes and revolutionizing investigations about Earth's water reservoirs over land, ice and oceans, as well as earthquakes and crustal deformations. The two GRACE satellites have completed more than 13 years of continuous measurements!\n\nGRACE is a collaboration of the US and German space agencies (NASA and DLR). GRACE ground segment operations are currently co-funded by the GFZ German Research Centre for Geosciences and the European Space Agency (ESA). NASA, ESA, GFZ and DLR are supporting the continuation of the measurements of mass redistribution in the Earth system. The key partners in the design, construction and launch of the mission have been the Jet Propulsion Laboratory, the University of Texas Center for Space Research, GFZ German Research Centre for Geosciences, as well as Astrium GmBH, Space Systems Loral (SS/L), Onera and Eurockot GmBH.\n\nJPL, CSR or GFZ - which solution should I use? \nhttps://grace.jpl.nasa.gov/data/choosing-a-solution/\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlwe_thickness (Liquid_Water_Equivalent_Thickness, cm)\nuncertainty (cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplGraceTellusMasConRL06JPL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplGraceTellusMasConRL06JPL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplGraceTellusMasConRL06JPL/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplGraceTellusMasConRL06JPL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplGraceTellusMasConRL06JPL&showErrors=false&email=", "NASA/JPL", "jplGraceTellusMasConRL06JPL"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusOceanMassEOFRRL05CSR", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusOceanMassEOFRRL05CSR.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplGraceTellusOceanMassEOFRRL05CSR/request", "", "public", "GRACE TELLUS Ocean EOFR, Center for Space Research (CSR), Univ. Texas Austin, RL05, GRCTellus.CSR.200301 201612.OCN.RL05.EOFRvDPC1409, 1.0\u00b0", "Gravity Recovery and Climate Experiment (GRACE) Tellus, Ocean EOFR, Center for Space Research (CSR), Univ. Texas Austin, RL05, (GRCTellus).CSR.200301 201612.OCN.RL05.EOFRvDPC1409\n\nThe 'EOFR' bottom pressure grids are obtained by projecting the data from the regular GRC Ocean grids described above onto the Empirical Orthogonal Functions (EOFs) of the Ocean Model for Circulation and Tides (OMCT), and then reconstructing the OBP variations using the first 15 modes (Chambers and Willis, 2010). This effectively filters out signals in the GRACE data that are inconsistent with the physics and OBP variations in the OMCT ocean model. The EOFR filtered reconstructed bottom pressure fields agree better with radar altimetric sea surface height corrected for steric effects determined from Argo floats. In addition, leakage artifacts and errors around ice sheets and glaciers are reduced significantly, as well as noise in the midlatitudes where OBP variability is lower. Please cite Chambers and Bonin (2012) when using these data.\n\nThe GRACE twin satellites, launched 17 March 2002, are making detailed measurements of Earth's gravity field changes and revolutionizing investigations about Earth's water reservoirs over land, ice and oceans, as well as earthquakes and crustal deformations. The two GRACE satellites have completed more than 13 years of continuous measurements!\n\nGRACE is a collaboration of the US and German space agencies (NASA and DLR). GRACE ground segment operations are currently co-funded by the GFZ German Research Centre for Geosciences and the European Space Agency (ESA). NASA, ESA, GFZ and DLR are supporting the continuation of the measurements of mass redistribution in the Earth system. The key partners in the design, construction and launch of the mission have been the Jet Propulsion Laboratory, the University of Texas Center for Space Research, GFZ German Research Centre for Geosciences, as well as Astrium GmBH, Space Systems Loral (SS/L), Onera and Eurockot GmBH.\n\nJPL, CSR or GFZ - which solution should I use? \nhttps://grace.jpl.nasa.gov/data/choosing-a-solution/\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlwe_thickness (Liquid_Water_Water_Thickness, cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplGraceTellusOceanMassEOFRRL05CSR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplGraceTellusOceanMassEOFRRL05CSR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplGraceTellusOceanMassEOFRRL05CSR/index.json", "https://grace.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplGraceTellusOceanMassEOFRRL05CSR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplGraceTellusOceanMassEOFRRL05CSR&showErrors=false&email=", "JPL / GRACE-TELLUS", "jplGraceTellusOceanMassEOFRRL05CSR"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusOceanMassEOFRRL05GFZ", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusOceanMassEOFRRL05GFZ.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplGraceTellusOceanMassEOFRRL05GFZ/request", "", "public", "GRACE TELLUS Ocean EOFR, GeoforshungsZentrum Postsdam (GFZ), RL05, GRCTellus.GFZ.200301 201612.OCN.RL05.EOFRvDPC1409, 1.0\u00b0", "Gravity Recovery and Climate Experiment (GRACE) Tellus, Ocean EOFR, GeoforshungsZentrum Postsdam (GFZ), RL05, (GRCTellus).GFZ.200301 201612.OCN.RL05.EOFRvDPC1409\n\nThe 'EOFR' bottom pressure grids are obtained by projecting the data from the regular GRC Ocean grids described above onto the Empirical Orthogonal Functions (EOFs) of the Ocean Model for Circulation and Tides (OMCT), and then reconstructing the OBP variations using the first 15 modes (Chambers and Willis, 2010). This effectively filters out signals in the GRACE data that are inconsistent with the physics and OBP variations in the OMCT ocean model. The EOFR filtered reconstructed bottom pressure fields agree better with radar altimetric sea surface height corrected for steric effects determined from Argo floats. In addition, leakage artifacts and errors around ice sheets and glaciers are reduced significantly, as well as noise in the midlatitudes where OBP variability is lower. Please cite Chambers and Bonin (2012) when using these data.\n\nThe GRACE twin satellites, launched 17 March 2002, are making detailed measurements of Earth's gravity field changes and revolutionizing investigations about Earth's water reservoirs over land, ice and oceans, as well as earthquakes and crustal deformations. The two GRACE satellites have completed more than 13 years of continuous measurements!\n\nGRACE is a collaboration of the US and German space agencies (NASA and DLR). GRACE ground segment operations are currently co-funded by the GFZ German Research Centre for Geosciences and the European Space Agency (ESA). NASA, ESA, GFZ and DLR are supporting the continuation of the measurements of mass redistribution in the Earth system. The key partners in the design, construction and launch of the mission have been the Jet Propulsion Laboratory, the University of Texas Center for Space Research, GFZ German Research Centre for Geosciences, as well as Astrium GmBH, Space Systems Loral (SS/L), Onera and Eurockot GmBH.\n\nJPL, CSR or GFZ - which solution should I use? \nhttps://grace.jpl.nasa.gov/data/choosing-a-solution/\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlwe_thickness (Liquid_Water_Water_Thickness, cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplGraceTellusOceanMassEOFRRL05GFZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplGraceTellusOceanMassEOFRRL05GFZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplGraceTellusOceanMassEOFRRL05GFZ/index.json", "https://grace.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplGraceTellusOceanMassEOFRRL05GFZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplGraceTellusOceanMassEOFRRL05GFZ&showErrors=false&email=", "JPL / GRACE-TELLUS", "jplGraceTellusOceanMassEOFRRL05GFZ"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusOceanMassEOFRRL05JPL", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusOceanMassEOFRRL05JPL.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplGraceTellusOceanMassEOFRRL05JPL/request", "", "public", "GRACE TELLUS Ocean EOFR, Jet Propulsion Laboratory (JPL), RL05, GRCTellus.JPL.200301 201612.OCN.RL05 1.EOFRvDPC1412, 1.0\u00b0", "Gravity Recovery and Climate Experiment (GRACE) Tellus, Ocean EOFR, Jet Propulsion Laboratory (JPL), RL05, (GRCTellus).Jet Propulsion Laboratory (JPL).200301 201612.OCN.RL05 1.EOFRvDPC1412\n\nThe 'EOFR' bottom pressure grids are obtained by projecting the data from the regular GRC Ocean grids described above onto the Empirical Orthogonal Functions (EOFs) of the Ocean Model for Circulation and Tides (OMCT), and then reconstructing the OBP variations using the first 15 modes (Chambers and Willis, 2010). This effectively filters out signals in the GRACE data that are inconsistent with the physics and OBP variations in the OMCT ocean model. The EOFR filtered reconstructed bottom pressure fields agree better with radar altimetric sea surface height corrected for steric effects determined from Argo floats. In addition, leakage artifacts and errors around ice sheets and glaciers are reduced significantly, as well as noise in the midlatitudes where OBP variability is lower. Please cite Chambers and Bonin (2012) when using these data.\n\nThe GRACE twin satellites, launched 17 March 2002, are making detailed measurements of Earth's gravity field changes and revolutionizing investigations about Earth's water reservoirs over land, ice and oceans, as well as earthquakes and crustal deformations. The two GRACE satellites have completed more than 13 years of continuous measurements!\n\nGRACE is a collaboration of the US and German space agencies (NASA and DLR). GRACE ground segment operations are currently co-funded by the GFZ German Research Centre for Geosciences and the European Space Agency (ESA). NASA, ESA, GFZ and DLR are supporting the continuation of the measurements of mass redistribution in the Earth system. The key partners in the design, construction and launch of the mission have been the Jet Propulsion Laboratory, the University of Texas Center for Space Research, GFZ German Research Centre for Geosciences, as well as Astrium GmBH, Space Systems Loral (SS/L), Onera and Eurockot GmBH.\n\nJPL, CSR or GFZ - which solution should I use? \nhttps://grace.jpl.nasa.gov/data/choosing-a-solution/\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlwe_thickness (Liquid_Water_Water_Thickness, cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplGraceTellusOceanMassEOFRRL05JPL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplGraceTellusOceanMassEOFRRL05JPL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplGraceTellusOceanMassEOFRRL05JPL/index.json", "https://grace.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplGraceTellusOceanMassEOFRRL05JPL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplGraceTellusOceanMassEOFRRL05JPL&showErrors=false&email=", "JPL / GRACE-TELLUS", "jplGraceTellusOceanMassEOFRRL05JPL"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusOceanMassRL05CSR", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusOceanMassRL05CSR.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplGraceTellusOceanMassRL05CSR/request", "", "public", "GRACE TELLUS Ocean Mass Grids, Center for Space Research (CSR), Univ. Texas Austin, RL05, GRCTellus.CSR.200208 201612.OCN.RL05.DSTvDPC1409, 1.0\u00b0", "Gravity Recovery and Climate Experiment (GRACE) Tellus, Ocean Mass Grids, Center for Space Research (CSR), Univ. Texas Austin, RL05, (GRCTellus).CSR.200208 201612.OCN.RL05.DSTvDPC1409\n\nThe GRACE twin satellites, launched 17 March 2002, are making detailed measurements of Earth's gravity field changes and revolutionizing investigations about Earth's water reservoirs over land, ice and oceans, as well as earthquakes and crustal deformations. The two GRACE satellites have completed more than 13 years of continuous measurements!\n\nGRACE is a collaboration of the US and German space agencies (NASA and DLR). GRACE ground segment operations are currently co-funded by the GFZ German Research Centre for Geosciences and the European Space Agency (ESA). NASA, ESA, GFZ and DLR are supporting the continuation of the measurements of mass redistribution in the Earth system. The key partners in the design, construction and launch of the mission have been the Jet Propulsion Laboratory, the University of Texas Center for Space Research, GFZ German Research Centre for Geosciences, as well as Astrium GmBH, Space Systems Loral (SS/L), Onera and Eurockot GmBH.\n\nJPL, CSR or GFZ - which solution should I use? \nhttps://grace.jpl.nasa.gov/data/choosing-a-solution/\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlwe_thickness (Liquid_Water_Water_Thickness, cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplGraceTellusOceanMassRL05CSR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplGraceTellusOceanMassRL05CSR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplGraceTellusOceanMassRL05CSR/index.json", "https://podaac.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplGraceTellusOceanMassRL05CSR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplGraceTellusOceanMassRL05CSR&showErrors=false&email=", "JPL / GRACE-TELLUS", "jplGraceTellusOceanMassRL05CSR"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusOceanMassRL05GFZ", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusOceanMassRL05GFZ.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplGraceTellusOceanMassRL05GFZ/request", "", "public", "GRACE TELLUS Ocean Mass Grids, GeoforshungsZentrum Postsdam (GFZ), RL05, GRCTellus.GFZ.200208 201612.OCN.RL05.DSTvDPC1409, 1.0\u00b0", "Gravity Recovery and Climate Experiment (GRACE) Tellus, Ocean Mass Grids, GeoforshungsZentrum Postsdam (GFZ), RL05, (GRCTellus).GFZ.200208 201612.OCN.RL05.DSTvDPC1409\n\nThe GRACE twin satellites, launched 17 March 2002, are making detailed measurements of Earth's gravity field changes and revolutionizing investigations about Earth's water reservoirs over land, ice and oceans, as well as earthquakes and crustal deformations. The two GRACE satellites have completed more than 13 years of continuous measurements!\n\nGRACE is a collaboration of the US and German space agencies (NASA and DLR). GRACE ground segment operations are currently co-funded by the GFZ German Research Centre for Geosciences and the European Space Agency (ESA). NASA, ESA, GFZ and DLR are supporting the continuation of the measurements of mass redistribution in the Earth system. The key partners in the design, construction and launch of the mission have been the Jet Propulsion Laboratory, the University of Texas Center for Space Research, GFZ German Research Centre for Geosciences, as well as Astrium GmBH, Space Systems Loral (SS/L), Onera and Eurockot GmBH.\n\nJPL, CSR or GFZ - which solution should I use? \nhttps://grace.jpl.nasa.gov/data/choosing-a-solution/\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlwe_thickness (Liquid_Water_Water_Thickness, cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplGraceTellusOceanMassRL05GFZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplGraceTellusOceanMassRL05GFZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplGraceTellusOceanMassRL05GFZ/index.json", "https://grace.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplGraceTellusOceanMassRL05GFZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplGraceTellusOceanMassRL05GFZ&showErrors=false&email=", "JPL / GRACE-TELLUS", "jplGraceTellusOceanMassRL05GFZ"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusOceanMassRL05JPL", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/jplGraceTellusOceanMassRL05JPL.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/jplGraceTellusOceanMassRL05JPL/request", "", "public", "GRACE TELLUS Ocean Mass Grids, Jet Propulsion Laboratory (JPL), RL05, GRCTellus.JPL.200208 201612.OCN.RL05 1.DSTvDPC1412, 1.0\u00b0", "Gravity Recovery and Climate Experiment (GRACE) Tellus, Ocean Mass Grids, Jet Propulsion Laboratory (JPL), RL05, (GRCTellus).Jet Propulsion Laboratory (JPL).200208 201612.OCN.RL05 1.DSTvDPC1412\n\nThe GRACE twin satellites, launched 17 March 2002, are making detailed measurements of Earth's gravity field changes and revolutionizing investigations about Earth's water reservoirs over land, ice and oceans, as well as earthquakes and crustal deformations. The two GRACE satellites have completed more than 13 years of continuous measurements!\n\nGRACE is a collaboration of the US and German space agencies (NASA and DLR). GRACE ground segment operations are currently co-funded by the GFZ German Research Centre for Geosciences and the European Space Agency (ESA). NASA, ESA, GFZ and DLR are supporting the continuation of the measurements of mass redistribution in the Earth system. The key partners in the design, construction and launch of the mission have been the Jet Propulsion Laboratory, the University of Texas Center for Space Research, GFZ German Research Centre for Geosciences, as well as Astrium GmBH, Space Systems Loral (SS/L), Onera and Eurockot GmBH.\n\nJPL, CSR or GFZ - which solution should I use? \nhttps://grace.jpl.nasa.gov/data/choosing-a-solution/\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlwe_thickness (Liquid_Water_Water_Thickness, cm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/jplGraceTellusOceanMassRL05JPL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/jplGraceTellusOceanMassRL05JPL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/jplGraceTellusOceanMassRL05JPL/index.json", "https://grace.jpl.nasa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/jplGraceTellusOceanMassRL05JPL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=jplGraceTellusOceanMassRL05JPL&showErrors=false&email=", "JPL / GRACE-TELLUS", "jplGraceTellusOceanMassRL05JPL"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e923_4360_6db0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_e923_4360_6db0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_e923_4360_6db0/request", "", "public", "Gridded 3-day average of Sea Surface Salinity calculated from SMOS level-2 User Data Product, 1.0\u00b0, 2010-2015", "This dataset is created by National Oceanographic Data Center (NODC) Satellite Oceanography Group from SMOS level-2 Sea Surface Salinity User Data Product (SM_xxxx_MIR_OSUDP2), calculted from using 1.0x1.0 (lon/lat) degree box average\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss1 (3-days average of Sea Surface Salinity using roughness model 1, PSU)\nsss1_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 1, count)\nsss1_qi (3-days average of quality index for sss1: lower=better., count)\nsss2 (3-days average of Sea Surface Salinity using roughness model 2, PSU)\nsss2_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 2, count)\nsss2_qi (3-days average of quality index for sss2: lower=better., count)\nsss3 (3-days average of Sea Surface Salinity using roughness model 3, PSU)\nsss3_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 3, count)\nsss3_qi (3-days average of quality index for sss3: lower=better., count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_e923_4360_6db0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_e923_4360_6db0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_e923_4360_6db0/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/smos/nodc_binned_v2.0/SMOS_sss_3day_aggregate_20150813.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_e923_4360_6db0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_e923_4360_6db0&showErrors=false&email=", "US NGDC", "noaa_nodc_e923_4360_6db0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ca4b_b7a4_55cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_nodc_ca4b_b7a4_55cc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_nodc_ca4b_b7a4_55cc/request", "", "public", "Gridded monthly mean of Sea Surface Salinity calculated from SMOS level-2 User Data Product, 1.0\u00b0, 2010-2015", "This dataset is created by National Oceanographic Data Center (NODC) Satellite Oceanography Group from SMOS level-2 Sea Surface Salinity User Data Product (SM_xxxx_MIR_OSUDP2), calculted from using 1.0x1.0 (lon/lat) degree box average\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsss1 (Monthly mean of Sea Surface Salinity using roughness model 1, PSU)\nsss1_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 1, count)\nsss1_qi (Monthly mean of quality index for sss1: lower=better., count)\nsss2 (Monthly mean of Sea Surface Salinity using roughness model 2, PSU)\nsss2_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 2, count)\nsss2_qi (Monthly mean of quality index for sss2: lower=better., count)\nsss3 (Monthly mean of Sea Surface Salinity using roughness model 3, PSU)\nsss3_obs (Valid observation number used to calculate sss1 from level-2 swath data from roughness model 3, count)\nsss3_qi (Monthly mean of quality index for sss3: lower=better., count)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_nodc_ca4b_b7a4_55cc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_nodc_ca4b_b7a4_55cc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_nodc_ca4b_b7a4_55cc/index.json", "https://data.nodc.noaa.gov/thredds/dodsC/ncml/smos/nodc_binned_v2.0/SMOS_sss_monthly_aggregate_20150813.ncml.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_nodc_ca4b_b7a4_55cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_nodc_ca4b_b7a4_55cc&showErrors=false&email=", "US NGDC", "noaa_nodc_ca4b_b7a4_55cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e0c_7b02_93a0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e0c_7b02_93a0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e0c_7b02_93a0/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e0c_7b02_93a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e0c_7b02_93a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e0c_7b02_93a0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e0c_7b02_93a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e0c_7b02_93a0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3e0c_7b02_93a0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db71_e764_2972", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db71_e764_2972.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db71_e764_2972/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom.biased2.5), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.biased2.5.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly 2.5 Bias Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db71_e764_2972_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db71_e764_2972_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db71_e764_2972/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db71_e764_2972.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db71_e764_2972&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_db71_e764_2972"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b69_a9bd_e36a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b69_a9bd_e36a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b69_a9bd_e36a/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom.biased97.5), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.biased97.5.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly 97.5 Bias Anomaly, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b69_a9bd_e36a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b69_a9bd_e36a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b69_a9bd_e36a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b69_a9bd_e36a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b69_a9bd_e36a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6b69_a9bd_e36a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e9a_1f1a_237c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6e9a_1f1a_237c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6e9a_1f1a_237c/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom.mserror), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.mserror.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly M+S Errors, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6e9a_1f1a_237c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6e9a_1f1a_237c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6e9a_1f1a_237c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6e9a_1f1a_237c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6e9a_1f1a_237c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6e9a_1f1a_237c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_069d_ff4e_902c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_069d_ff4e_902c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_069d_ff4e_902c/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly (Top Dataset, std, air.mon.anom.stationerror), 5.0\u00b0, 1850-2014", "HADCRUT3 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/std/air.mon.anom.stationerror.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3: Surface Air Temperature Monthly Station Errors, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_069d_ff4e_902c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_069d_ff4e_902c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_069d_ff4e_902c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_069d_ff4e_902c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_069d_ff4e_902c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_069d_ff4e_902c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f29a_8f1c_b66a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f29a_8f1c_b66a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f29a_8f1c_b66a/request", "", "public", "HADCRUT3 Combined Air Temperature/SST Anomaly Variance Adjusted (air.mon.anom), 5.0\u00b0, 1850-2014", "This dataset supersedes V2. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut3/var/air.mon.anom.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT3V: Surface Air Temperature Monthly Anomaly Variance Adjusted, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f29a_8f1c_b66a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f29a_8f1c_b66a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f29a_8f1c_b66a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.cru.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f29a_8f1c_b66a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f29a_8f1c_b66a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f29a_8f1c_b66a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87e4_c3bd_8e9f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_87e4_c3bd_8e9f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_87e4_c3bd_8e9f/request", "", "public", "HADCRUT4 Combined Air Temperature/SST Anomaly (Top Dataset, hadcrut4, air.mon.anom.median), 5.0\u00b0, 1850-present", "HADCRUT4 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut4/air.mon.anom.median.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT4: Median Surface Air Temperature Monthly Median Anomaly from 100 ensemble members, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_87e4_c3bd_8e9f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_87e4_c3bd_8e9f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_87e4_c3bd_8e9f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.hadcrut4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_87e4_c3bd_8e9f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_87e4_c3bd_8e9f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_87e4_c3bd_8e9f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2454_f596_6532", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2454_f596_6532.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2454_f596_6532/request", "", "public", "HADCRUT4 Combined Air Temperature/SST Anomaly Error (Top Dataset, hadcrut4, air.mon.anom.error), 5.0\u00b0, 1850-present", "HADCRUT4 Combined Air Temperature/Sea Surface Temperature (SST) Anomaly Error. This dataset supersedes V3. NOAA Earth System Research Laboratory (ESRL) data from https://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/cru/hadcrut4/air.mon.anom.error.nc.das .\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (HADCRUT4: Median Surface Air Temperature Monthly Median Anomaly Error from 100 ensemble members, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2454_f596_6532_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2454_f596_6532_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2454_f596_6532/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.hadcrut4.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2454_f596_6532.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2454_f596_6532&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2454_f596_6532"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdHadISST", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdHadISST.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdHadISST/request", "", "public", "HadISST Average Sea Surface Temperature, 1\u00b0, Global, Monthly, 1870-present", "The Met Office Hadley Centre's sea ice and sea surface temperature (SST) data set, HadISST1, replaces the Global sea Ice and Sea Surface Temperature (GISST) data sets, and is a unique combination of monthly globally-complete fields of SST and sea ice concentration on a 1 degree latitude-longitude grid from 1870 to date. \n \nWARNING: 10 March 2016: A detailed analysis of HadISST (https://ir.library.oregonstate.edu/xmlui/handle/1957/58385) has identified a number of problems, some of which might limit the utility of the dataset for certain scientific applications, particularly where high resolution SST data or spatial gradients of SST are required. Thanks to Dudley Chelton and Craig Risien for bringing this to our attention and their detailed analysis. \n\nThe SST data are taken from the Met Office Marine Data Bank (MDB), which from 1982 onwards also includes data received through the Global Telecommunications System (GTS). In order to enhance data coverage, monthly median SSTs for 1871-1995 from the Comprehensive Ocean-Atmosphere Data Set (COADS) (now ICOADS) were also used where there were no MDB data.\n\nHadISST1 temperatures are reconstructed using a two stage reduced-space optimal interpolation procedure, followed by superposition of quality-improved gridded observations onto the reconstructions to restore local detail. SSTs near sea ice are estimated using statistical relationships between SST and sea ice concentration.\n\nData restrictions: for academic research use only.\n\nUpdates and supplementary information will be available from http://www.hadobs.org\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdHadISST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdHadISST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdHadISST/index.json", "http://hadobs.metoffice.com/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdHadISST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdHadISST&showErrors=false&email=", "Met Office Hadley Centre", "erdHadISST"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdHadISSTIce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdHadISSTIce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdHadISSTIce/request", "", "public", "HadISST Sea Ice Component, 1\u00b0, Global, Monthly, 1870-present", "The Met Office Hadley Centre's sea ice and sea surface temperature (SST) data set, HadISST1, replaces the Global sea Ice and Sea Surface Temperature (GISST) data sets, and is a unique combination of monthly globally-complete fields of SST and sea ice concentration on a 1 degree latitude-longitude grid from 1870 to date. \n \nWARNING: 10 March 2016: A detailed analysis of HadISST (https://ir.library.oregonstate.edu/xmlui/handle/1957/58385) has identified a number of problems, some of which might limit the utility of the dataset for certain scientific applications, particularly where high resolution SST data or spatial gradients of SST are required. Thanks to Dudley Chelton and Craig Risien for bringing this to our attention and their detailed analysis.\n\nData restrictions: for academic research use only.\n\nUpdates and supplementary information will be available from http://www.hadobs.org\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsic (Monthly 1 degree resolution sea ice concentration, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdHadISSTIce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdHadISSTIce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdHadISSTIce/index.json", "http://hadobs.metoffice.com/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdHadISSTIce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdHadISSTIce&showErrors=false&email=", "Met Office Hadley Centre", "erdHadISSTIce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdHadISSTDecomp", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdHadISSTDecomp.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdHadISSTDecomp/request", "", "public", "HadISST SST State-Space Components, 1870-present (Monthly)", "State-space components from analysis of HadISST data by Roy Mendelssohn.\n\nThe SST data are taken from the Met Office Marine Data Bank (MDB), which from 1982 onwards also includes data received through the Global Telecommunications System (GTS). In order to enhance data coverage, monthly median SSTs for 1871-1995 from the Comprehensive Ocean-Atmosphere Data Set (COADS) (now ICOADS) were also used where there were no MDB data.\n\nHadISST1 temperatures are reconstructed using a two stage reduced-space optimal interpolation procedure, followed by superposition of quality-improved gridded observations onto the reconstructions to restore local detail. SSTs near sea ice are estimated using statistical relationships between SST and sea ice concentration.\n\nData restrictions: for academic research use only.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst_trend (Monthly 1 degree resolution SST Trend, degC)\nsst_cycle (Monthly 1 degree resolution SST Cycle, degC)\nsst_seasonal (Monthly 1 degree resolution SST Seasonal, degC)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdHadISSTDecomp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdHadISSTDecomp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdHadISSTDecomp/index.json", "https://oceanwatch.pfeg.noaa.gov/thredds/dodsC/HadleyCenter/HadISSTDecomp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdHadISSTDecomp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdHadISSTDecomp&showErrors=false&email=", "NOAA SWFSC ERD", "erdHadISSTDecomp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e5b4_d905_99ef", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e5b4_d905_99ef.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e5b4_d905_99ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e5b4_d905_99ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e5b4_d905_99ef/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e5b4_d905_99ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e5b4_d905_99ef&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "hawaii_soest_e5b4_d905_99ef"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f788_c263_83ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f788_c263_83ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f788_c263_83ca/request", "", "public", "HIRS outgoing longwave radiation, regridded to 90S to 90N (Top Dataset, olrcdr, olr.day.mean), 1.0\u00b0, 1979-2012", "HIRS outgoing longwave radiation, regridded to 90S to 90N. The product contains the 1-degree by 1-degree daily mean outgoing longwave radiation flux at the top of the atmosphere derived from HIRS radiance observations onboard NOAA Television Infrared Observation Satellite (TIROS)-N series and MetOp satellites. The OLR retrieval uses multispectral regression models (Ellingson et al., 1989, Lee, 2014). The CDR processing includes HIRS radiance calibration, inter-satellite HIRS OLR calibration, normalization of geostationary-based OLR retrieval to HIRS, and grid-based 7-day boxcar temporal integration assisted with Imager-based OLR derived from Gridsat CDR data (Lee, 2014).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nolr (outgoing longwave radiation, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f788_c263_83ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f788_c263_83ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f788_c263_83ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.olrdcdr.interp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f788_c263_83ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f788_c263_83ca&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f788_c263_83ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2902_a8c9_fa8a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2902_a8c9_fa8a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2902_a8c9_fa8a/request", "", "public", "HIRS outgoing longwave radiation, regridded to 90S to 90N (Top Dataset, olrcdr, olr.mon.mean), 1.0\u00b0, 1979-2012", "HIRS outgoing longwave radiation, regridded to 90S to 90N. The product contains the 1-degree by 1-degree daily mean outgoing longwave radiation flux at the top of the atmosphere derived from HIRS radiance observations onboard NOAA Television Infrared Observation Satellite (TIROS)-N series and MetOp satellites. The OLR retrieval uses multispectral regression models (Ellingson et al., 1989, Lee, 2014). The CDR processing includes HIRS radiance calibration, inter-satellite HIRS OLR calibration, normalization of geostationary-based OLR retrieval to HIRS, and grid-based 7-day boxcar temporal integration assisted with Imager-based OLR derived from Gridsat CDR data (Lee, 2014).\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nolr (Monthly mean of outgoing longwave radiation, W m-2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2902_a8c9_fa8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2902_a8c9_fa8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2902_a8c9_fa8a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.olrdcdr.interp.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2902_a8c9_fa8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2902_a8c9_fa8a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2902_a8c9_fa8a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hycom_GLBa008_tdyx", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hycom_GLBa008_tdyx.graph", "", "", "public", "HYCOM GLBa0.08 1/12 deg HYCOM + NCODA Global Hindcast Analysis (Combined), 2008-present [time][Depth][Y][X]", "HYbrid Coordinate Ocean Model (HYCOM) GLBa0.08 from Hycom. The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][Depth][Y][X]):\nu (u-veloc. [91.1H], m/s)\nv (v-veloc. [91.1H], m/s)\ntemperature (temp [91.1H], degC)\nsalinity (Practical Salinity [90.8H], PSU)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/hycom_GLBa008_tdyx/index.json", "https://hycom.org/dataserver/glb-analysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/hycom_GLBa008_tdyx.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hycom_GLBa008_tdyx&showErrors=false&email=", "Naval Research Laboratory", "hycom_GLBa008_tdyx"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/hycom_GLBa008_tyx", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/hycom_GLBa008_tyx.graph", "", "", "public", "HYCOM GLBa0.08 1/12 deg HYCOM + NCODA Global Hindcast Analysis (Combined), 2008-present [time][Y][X]", "HYbrid Coordinate Ocean Model (HYCOM) GLBa0.08 from Hycom. The hybrid coordinate is one that is isopycnal in the open, stratified ocean, but smoothly reverts to a terrain-following coordinate in shallow coastal regions, and to z-level coordinates in the mixed layer and/or unstratified seas. The hybrid coordinate extends the geographic range of applicability of traditional isopycnic coordinate circulation models (the basis of the present hybrid code), such as the Miami Isopycnic Coordinate Ocean Model (MICOM) and the Navy Layered Ocean Model (NLOM), toward shallow coastal seas and unstratified parts of the world ocean.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][Y][X]):\nqtot (surf. heat flux [91.1H], w/m2)\nemp (surf. water flux [91.1H], kg/m2/s)\nsurface_temperature_trend (degC/day)\nsurface_salinity_trend (Surface Salinity Trend [30.1H], PSU/day)\nssh (sea surf. height [91.1H], m)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/hycom_GLBa008_tyx/index.json", "https://hycom.org/dataserver/glb-analysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/hycom_GLBa008_tyx.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hycom_GLBa008_tyx&showErrors=false&email=", "Naval Research Laboratory", "hycom_GLBa008_tyx"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAIicov1day", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAIicov1day.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAIicov1day/request", "", "public", "Ice Coverage, Aqua AMSR-E, Near Real Time, Global, 2004-2011 (1 Day Composite)", "Ice Coverage is measured by the Advanced Microwave Scanning Radiometer for the Earth Observing System (AMSR-E) onboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nice (Sea Ice Area Fraction, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAIicov1day_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAIicov1day_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAIicov1day/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AI_icov_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAIicov1day.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAIicov1day&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAIicov1day"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAIicov1day_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAIicov1day_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAIicov1day_LonPM180/request", "", "public", "Ice Coverage, Aqua AMSR-E, Near Real Time, Global, 2004-2011 (1 Day Composite), Lon+/-180", "Ice Coverage is measured by the Advanced Microwave Scanning Radiometer for the Earth Observing System (AMSR-E) onboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nice (Sea Ice Area Fraction, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAIicov1day_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAIicov1day_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAIicov1day_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AI_icov_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAIicov1day_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAIicov1day_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAIicov1day_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAIicovmday", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAIicovmday.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAIicovmday/request", "", "public", "Ice Coverage, Aqua AMSR-E, Near Real Time, Global, 2004-2011 (Monthly Composite)", "Ice Coverage is measured by the Advanced Microwave Scanning Radiometer for the Earth Observing System (AMSR-E) onboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nice (Sea Ice Area Fraction, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAIicovmday_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAIicovmday_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAIicovmday/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AI_icov_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAIicovmday.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAIicovmday&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAIicovmday"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/erdAIicovmday_LonPM180", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/erdAIicovmday_LonPM180.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/erdAIicovmday_LonPM180/request", "", "public", "Ice Coverage, Aqua AMSR-E, Near Real Time, Global, 2004-2011 (Monthly Composite), Lon+/-180", "Ice Coverage is measured by the Advanced Microwave Scanning Radiometer for the Earth Observing System (AMSR-E) onboard NASA's Aqua spacecraft.\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nice (Sea Ice Area Fraction, unitless)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdAIicovmday_LonPM180_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdAIicovmday_LonPM180_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdAIicovmday_LonPM180/index.json", "https://coastwatch.pfeg.noaa.gov/infog/AI_icov_las.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdAIicovmday_LonPM180.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdAIicovmday_LonPM180&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "erdAIicovmday_LonPM180"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b32_f4ae_e5c7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5b32_f4ae_e5c7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5b32_f4ae_e5c7/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5b32_f4ae_e5c7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5b32_f4ae_e5c7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5b32_f4ae_e5c7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5b32_f4ae_e5c7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5b32_f4ae_e5c7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5b32_f4ae_e5c7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17f3_bb43_0bab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17f3_bb43_0bab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_17f3_bb43_0bab/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_17f3_bb43_0bab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_17f3_bb43_0bab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_17f3_bb43_0bab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_17f3_bb43_0bab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_17f3_bb43_0bab&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_17f3_bb43_0bab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e791_ed5e_389c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e791_ed5e_389c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e791_ed5e_389c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e791_ed5e_389c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e791_ed5e_389c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e791_ed5e_389c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e791_ed5e_389c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e791_ed5e_389c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e791_ed5e_389c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1e2_98bd_d268", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a1e2_98bd_d268.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a1e2_98bd_d268/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a1e2_98bd_d268_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a1e2_98bd_d268_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a1e2_98bd_d268/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a1e2_98bd_d268.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a1e2_98bd_d268&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a1e2_98bd_d268"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20c0_f9d3_c5bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_20c0_f9d3_c5bc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_20c0_f9d3_c5bc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_20c0_f9d3_c5bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_20c0_f9d3_c5bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_20c0_f9d3_c5bc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_20c0_f9d3_c5bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_20c0_f9d3_c5bc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_20c0_f9d3_c5bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5c6_c0ec_632d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c5c6_c0ec_632d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c5c6_c0ec_632d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c5c6_c0ec_632d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c5c6_c0ec_632d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c5c6_c0ec_632d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c5c6_c0ec_632d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c5c6_c0ec_632d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c5c6_c0ec_632d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c06d_2051_391f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c06d_2051_391f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c06d_2051_391f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c06d_2051_391f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c06d_2051_391f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c06d_2051_391f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c06d_2051_391f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c06d_2051_391f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c06d_2051_391f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f7f_2565_956b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f7f_2565_956b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f7f_2565_956b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f7f_2565_956b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f7f_2565_956b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f7f_2565_956b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f7f_2565_956b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f7f_2565_956b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2f7f_2565_956b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_804f_8a2e_d99c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_804f_8a2e_d99c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_804f_8a2e_d99c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_804f_8a2e_d99c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_804f_8a2e_d99c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_804f_8a2e_d99c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_804f_8a2e_d99c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_804f_8a2e_d99c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_804f_8a2e_d99c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c26e_8475_c8f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c26e_8475_c8f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c26e_8475_c8f1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c26e_8475_c8f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c26e_8475_c8f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c26e_8475_c8f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c26e_8475_c8f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c26e_8475_c8f1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c26e_8475_c8f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c153_e09d_b35f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c153_e09d_b35f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c153_e09d_b35f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c153_e09d_b35f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c153_e09d_b35f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c153_e09d_b35f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c153_e09d_b35f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c153_e09d_b35f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c153_e09d_b35f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3bc_96e8_f581", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3bc_96e8_f581.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f3bc_96e8_f581/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f3bc_96e8_f581_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f3bc_96e8_f581_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f3bc_96e8_f581/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f3bc_96e8_f581.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f3bc_96e8_f581&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f3bc_96e8_f581"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a575_5cb2_f982", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a575_5cb2_f982.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a575_5cb2_f982/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a575_5cb2_f982_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a575_5cb2_f982_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a575_5cb2_f982/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a575_5cb2_f982.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a575_5cb2_f982&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a575_5cb2_f982"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e2c_4ff1_850d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e2c_4ff1_850d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e2c_4ff1_850d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e2c_4ff1_850d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e2c_4ff1_850d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e2c_4ff1_850d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e2c_4ff1_850d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e2c_4ff1_850d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8e2c_4ff1_850d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2d6_ac32_3210", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a2d6_ac32_3210.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a2d6_ac32_3210/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a2d6_ac32_3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a2d6_ac32_3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a2d6_ac32_3210/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a2d6_ac32_3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a2d6_ac32_3210&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a2d6_ac32_3210"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c820_0667_6de8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c820_0667_6de8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c820_0667_6de8/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c820_0667_6de8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c820_0667_6de8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c820_0667_6de8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c820_0667_6de8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c820_0667_6de8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c820_0667_6de8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb1e_53c6_585d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bb1e_53c6_585d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bb1e_53c6_585d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bb1e_53c6_585d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bb1e_53c6_585d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bb1e_53c6_585d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bb1e_53c6_585d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bb1e_53c6_585d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bb1e_53c6_585d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f01c_8572_efc4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f01c_8572_efc4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f01c_8572_efc4/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f01c_8572_efc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f01c_8572_efc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f01c_8572_efc4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f01c_8572_efc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f01c_8572_efc4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f01c_8572_efc4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4390_2f41_09d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4390_2f41_09d2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4390_2f41_09d2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4390_2f41_09d2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4390_2f41_09d2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4390_2f41_09d2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4390_2f41_09d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4390_2f41_09d2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4390_2f41_09d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7082_f00a_48ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7082_f00a_48ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7082_f00a_48ce/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7082_f00a_48ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7082_f00a_48ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7082_f00a_48ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7082_f00a_48ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7082_f00a_48ce&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7082_f00a_48ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba58_0935_d7fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ba58_0935_d7fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ba58_0935_d7fd/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ba58_0935_d7fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ba58_0935_d7fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ba58_0935_d7fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ba58_0935_d7fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ba58_0935_d7fd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ba58_0935_d7fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9611_24db_0d99", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9611_24db_0d99.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9611_24db_0d99/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9611_24db_0d99_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9611_24db_0d99_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9611_24db_0d99/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9611_24db_0d99.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9611_24db_0d99&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9611_24db_0d99"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4d5_eb94_8188", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a4d5_eb94_8188.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a4d5_eb94_8188/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a4d5_eb94_8188_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a4d5_eb94_8188_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a4d5_eb94_8188/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a4d5_eb94_8188.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a4d5_eb94_8188&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a4d5_eb94_8188"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fede_5d4d_15cd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fede_5d4d_15cd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fede_5d4d_15cd/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fede_5d4d_15cd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fede_5d4d_15cd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fede_5d4d_15cd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fede_5d4d_15cd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fede_5d4d_15cd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fede_5d4d_15cd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbed_3cfa_1b60", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_dbed_3cfa_1b60.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_dbed_3cfa_1b60/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_dbed_3cfa_1b60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_dbed_3cfa_1b60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_dbed_3cfa_1b60/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_dbed_3cfa_1b60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_dbed_3cfa_1b60&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_dbed_3cfa_1b60"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e1a_723a_0626", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e1a_723a_0626.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1e1a_723a_0626/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1e1a_723a_0626_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1e1a_723a_0626_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1e1a_723a_0626/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1e1a_723a_0626.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1e1a_723a_0626&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1e1a_723a_0626"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9290_308f_ffd2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9290_308f_ffd2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9290_308f_ffd2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9290_308f_ffd2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9290_308f_ffd2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9290_308f_ffd2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9290_308f_ffd2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9290_308f_ffd2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9290_308f_ffd2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_25ad_809e_478e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_25ad_809e_478e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_25ad_809e_478e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_25ad_809e_478e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_25ad_809e_478e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_25ad_809e_478e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_25ad_809e_478e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_25ad_809e_478e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_25ad_809e_478e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_200d_3ec5_b321", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_200d_3ec5_b321.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_200d_3ec5_b321/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_200d_3ec5_b321_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_200d_3ec5_b321_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_200d_3ec5_b321/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_200d_3ec5_b321.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_200d_3ec5_b321&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_200d_3ec5_b321"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c32_37d4_26e3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c32_37d4_26e3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c32_37d4_26e3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, air.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, air.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nair (Air Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c32_37d4_26e3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c32_37d4_26e3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c32_37d4_26e3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c32_37d4_26e3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c32_37d4_26e3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9c32_37d4_26e3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eeda_479c_e51d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eeda_479c_e51d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eeda_479c_e51d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eeda_479c_e51d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eeda_479c_e51d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eeda_479c_e51d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eeda_479c_e51d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eeda_479c_e51d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_eeda_479c_e51d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca6f_e416_959d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca6f_e416_959d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca6f_e416_959d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca6f_e416_959d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca6f_e416_959d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca6f_e416_959d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca6f_e416_959d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca6f_e416_959d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ca6f_e416_959d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edda_4125_06ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edda_4125_06ba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_edda_4125_06ba/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_edda_4125_06ba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_edda_4125_06ba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_edda_4125_06ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_edda_4125_06ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_edda_4125_06ba&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_edda_4125_06ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1fb_8884_c620", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d1fb_8884_c620.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d1fb_8884_c620/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d1fb_8884_c620_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d1fb_8884_c620_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d1fb_8884_c620/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d1fb_8884_c620.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d1fb_8884_c620&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d1fb_8884_c620"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_774a_7ee3_3cd2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_774a_7ee3_3cd2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_774a_7ee3_3cd2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_774a_7ee3_3cd2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_774a_7ee3_3cd2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_774a_7ee3_3cd2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_774a_7ee3_3cd2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_774a_7ee3_3cd2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_774a_7ee3_3cd2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a49d_f59a_d8a2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a49d_f59a_d8a2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a49d_f59a_d8a2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a49d_f59a_d8a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a49d_f59a_d8a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a49d_f59a_d8a2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a49d_f59a_d8a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a49d_f59a_d8a2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a49d_f59a_d8a2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b77d_4240_c4d4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b77d_4240_c4d4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b77d_4240_c4d4/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b77d_4240_c4d4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b77d_4240_c4d4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b77d_4240_c4d4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b77d_4240_c4d4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b77d_4240_c4d4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b77d_4240_c4d4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3997_a07f_f709", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3997_a07f_f709.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3997_a07f_f709/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3997_a07f_f709_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3997_a07f_f709_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3997_a07f_f709/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3997_a07f_f709.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3997_a07f_f709&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3997_a07f_f709"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d16_5098_d2b0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d16_5098_d2b0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d16_5098_d2b0/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d16_5098_d2b0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d16_5098_d2b0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d16_5098_d2b0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d16_5098_d2b0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d16_5098_d2b0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3d16_5098_d2b0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed10_b627_1fe9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed10_b627_1fe9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ed10_b627_1fe9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ed10_b627_1fe9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ed10_b627_1fe9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ed10_b627_1fe9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ed10_b627_1fe9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ed10_b627_1fe9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ed10_b627_1fe9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2443_5b6a_ca57", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2443_5b6a_ca57.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2443_5b6a_ca57/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2443_5b6a_ca57_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2443_5b6a_ca57_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2443_5b6a_ca57/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2443_5b6a_ca57.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2443_5b6a_ca57&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2443_5b6a_ca57"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6374_fe27_8590", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6374_fe27_8590.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6374_fe27_8590/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6374_fe27_8590_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6374_fe27_8590_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6374_fe27_8590/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6374_fe27_8590.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6374_fe27_8590&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6374_fe27_8590"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_733d_168c_612c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_733d_168c_612c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_733d_168c_612c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_733d_168c_612c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_733d_168c_612c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_733d_168c_612c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_733d_168c_612c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_733d_168c_612c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_733d_168c_612c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e59_6a84_bf65", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3e59_6a84_bf65.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3e59_6a84_bf65/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3e59_6a84_bf65_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3e59_6a84_bf65_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3e59_6a84_bf65/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3e59_6a84_bf65.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3e59_6a84_bf65&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3e59_6a84_bf65"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b94_1cec_1e78", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4b94_1cec_1e78.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4b94_1cec_1e78/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Mean at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4b94_1cec_1e78_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4b94_1cec_1e78_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4b94_1cec_1e78/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4b94_1cec_1e78.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4b94_1cec_1e78&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4b94_1cec_1e78"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c979_704f_fb58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c979_704f_fb58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c979_704f_fb58/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c979_704f_fb58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c979_704f_fb58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c979_704f_fb58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c979_704f_fb58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c979_704f_fb58&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c979_704f_fb58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_152f_245c_7eaa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_152f_245c_7eaa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_152f_245c_7eaa/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_152f_245c_7eaa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_152f_245c_7eaa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_152f_245c_7eaa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_152f_245c_7eaa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_152f_245c_7eaa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_152f_245c_7eaa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_673c_bb9a_1cae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_673c_bb9a_1cae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_673c_bb9a_1cae/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_673c_bb9a_1cae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_673c_bb9a_1cae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_673c_bb9a_1cae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_673c_bb9a_1cae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_673c_bb9a_1cae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_673c_bb9a_1cae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d510_4f4b_e2c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d510_4f4b_e2c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d510_4f4b_e2c1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d510_4f4b_e2c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d510_4f4b_e2c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d510_4f4b_e2c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d510_4f4b_e2c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d510_4f4b_e2c1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d510_4f4b_e2c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_74ed_b03d_6055", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_74ed_b03d_6055.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_74ed_b03d_6055/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_74ed_b03d_6055_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_74ed_b03d_6055_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_74ed_b03d_6055/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_74ed_b03d_6055.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_74ed_b03d_6055&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_74ed_b03d_6055"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7789_16bb_669e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7789_16bb_669e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7789_16bb_669e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 1st Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7789_16bb_669e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7789_16bb_669e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7789_16bb_669e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7789_16bb_669e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7789_16bb_669e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7789_16bb_669e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca08_e33b_2209", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca08_e33b_2209.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca08_e33b_2209/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca08_e33b_2209_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca08_e33b_2209_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca08_e33b_2209/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca08_e33b_2209.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca08_e33b_2209&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ca08_e33b_2209"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37d4_0188_8a7a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_37d4_0188_8a7a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_37d4_0188_8a7a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_37d4_0188_8a7a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_37d4_0188_8a7a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_37d4_0188_8a7a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_37d4_0188_8a7a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_37d4_0188_8a7a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_37d4_0188_8a7a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8834_2542_56ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8834_2542_56ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8834_2542_56ea/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 3rd Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8834_2542_56ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8834_2542_56ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8834_2542_56ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8834_2542_56ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8834_2542_56ea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8834_2542_56ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb1a_b258_65af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fb1a_b258_65af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fb1a_b258_65af/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fb1a_b258_65af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fb1a_b258_65af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fb1a_b258_65af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fb1a_b258_65af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fb1a_b258_65af&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fb1a_b258_65af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d44_4d10_9e28", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d44_4d10_9e28.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d44_4d10_9e28/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d44_4d10_9e28_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d44_4d10_9e28_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d44_4d10_9e28/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d44_4d10_9e28.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d44_4d10_9e28&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1d44_4d10_9e28"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_483c_0201_5c94", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_483c_0201_5c94.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_483c_0201_5c94/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly 5th Sextile at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_483c_0201_5c94_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_483c_0201_5c94_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_483c_0201_5c94/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_483c_0201_5c94.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_483c_0201_5c94&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_483c_0201_5c94"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2093_91aa_ddfc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2093_91aa_ddfc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2093_91aa_ddfc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2093_91aa_ddfc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2093_91aa_ddfc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2093_91aa_ddfc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2093_91aa_ddfc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2093_91aa_ddfc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2093_91aa_ddfc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3828_3587_f95a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3828_3587_f95a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3828_3587_f95a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3828_3587_f95a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3828_3587_f95a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3828_3587_f95a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3828_3587_f95a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3828_3587_f95a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3828_3587_f95a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0d2_4f99_ed82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0d2_4f99_ed82.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c0d2_4f99_ed82/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, cldc.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\ncldc (Cloudiness Monthly Standard Deviation at Surface, okta)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c0d2_4f99_ed82_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c0d2_4f99_ed82_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c0d2_4f99_ed82/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c0d2_4f99_ed82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c0d2_4f99_ed82&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c0d2_4f99_ed82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6078_cd65_b34b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6078_cd65_b34b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6078_cd65_b34b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6078_cd65_b34b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6078_cd65_b34b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6078_cd65_b34b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6078_cd65_b34b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6078_cd65_b34b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6078_cd65_b34b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f31_dcb4_c980", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f31_dcb4_c980.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f31_dcb4_c980/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f31_dcb4_c980_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f31_dcb4_c980_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f31_dcb4_c980/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f31_dcb4_c980.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f31_dcb4_c980&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2f31_dcb4_c980"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cd5_8150_b54a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3cd5_8150_b54a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3cd5_8150_b54a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3cd5_8150_b54a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3cd5_8150_b54a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3cd5_8150_b54a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3cd5_8150_b54a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3cd5_8150_b54a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3cd5_8150_b54a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8996_1cc9_5cf6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8996_1cc9_5cf6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8996_1cc9_5cf6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8996_1cc9_5cf6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8996_1cc9_5cf6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8996_1cc9_5cf6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8996_1cc9_5cf6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8996_1cc9_5cf6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8996_1cc9_5cf6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ca4_7482_1c2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2ca4_7482_1c2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2ca4_7482_1c2f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2ca4_7482_1c2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2ca4_7482_1c2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2ca4_7482_1c2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2ca4_7482_1c2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2ca4_7482_1c2f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2ca4_7482_1c2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a29_f230_8309", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a29_f230_8309.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a29_f230_8309/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a29_f230_8309_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a29_f230_8309_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a29_f230_8309/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a29_f230_8309.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a29_f230_8309&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7a29_f230_8309"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eeb4_d09f_586b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eeb4_d09f_586b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eeb4_d09f_586b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eeb4_d09f_586b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eeb4_d09f_586b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eeb4_d09f_586b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eeb4_d09f_586b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eeb4_d09f_586b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_eeb4_d09f_586b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0004_bd3d_7d78", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0004_bd3d_7d78.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0004_bd3d_7d78/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0004_bd3d_7d78_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0004_bd3d_7d78_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0004_bd3d_7d78/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0004_bd3d_7d78.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0004_bd3d_7d78&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0004_bd3d_7d78"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_456d_5949_bca6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_456d_5949_bca6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_456d_5949_bca6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_456d_5949_bca6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_456d_5949_bca6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_456d_5949_bca6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_456d_5949_bca6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_456d_5949_bca6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_456d_5949_bca6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a3f_0467_503e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a3f_0467_503e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4a3f_0467_503e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4a3f_0467_503e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4a3f_0467_503e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4a3f_0467_503e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4a3f_0467_503e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4a3f_0467_503e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4a3f_0467_503e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51e8_7f78_8e61", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51e8_7f78_8e61.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_51e8_7f78_8e61/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_51e8_7f78_8e61_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_51e8_7f78_8e61_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_51e8_7f78_8e61/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_51e8_7f78_8e61.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_51e8_7f78_8e61&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_51e8_7f78_8e61"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f3f_0920_7ba5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9f3f_0920_7ba5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9f3f_0920_7ba5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9f3f_0920_7ba5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9f3f_0920_7ba5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9f3f_0920_7ba5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9f3f_0920_7ba5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9f3f_0920_7ba5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9f3f_0920_7ba5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb06_0fc9_6579", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eb06_0fc9_6579.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eb06_0fc9_6579/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eb06_0fc9_6579_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eb06_0fc9_6579_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eb06_0fc9_6579/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eb06_0fc9_6579.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eb06_0fc9_6579&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_eb06_0fc9_6579"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae43_1e67_02d0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ae43_1e67_02d0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ae43_1e67_02d0/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ae43_1e67_02d0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ae43_1e67_02d0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ae43_1e67_02d0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ae43_1e67_02d0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ae43_1e67_02d0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ae43_1e67_02d0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3cf_68aa_f889", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f3cf_68aa_f889.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f3cf_68aa_f889/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f3cf_68aa_f889_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f3cf_68aa_f889_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f3cf_68aa_f889/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f3cf_68aa_f889.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f3cf_68aa_f889&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f3cf_68aa_f889"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ecf_a476_b412", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ecf_a476_b412.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ecf_a476_b412/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ecf_a476_b412_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ecf_a476_b412_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ecf_a476_b412/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ecf_a476_b412.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ecf_a476_b412&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3ecf_a476_b412"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2eb9_7230_9bf0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2eb9_7230_9bf0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2eb9_7230_9bf0/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2eb9_7230_9bf0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2eb9_7230_9bf0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2eb9_7230_9bf0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2eb9_7230_9bf0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2eb9_7230_9bf0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2eb9_7230_9bf0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af8e_b70e_2886", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af8e_b70e_2886.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_af8e_b70e_2886/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_af8e_b70e_2886_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_af8e_b70e_2886_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_af8e_b70e_2886/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_af8e_b70e_2886.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_af8e_b70e_2886&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_af8e_b70e_2886"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d471_e70c_765b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d471_e70c_765b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d471_e70c_765b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d471_e70c_765b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d471_e70c_765b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d471_e70c_765b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d471_e70c_765b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d471_e70c_765b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d471_e70c_765b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12c3_aa2c_5eb7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12c3_aa2c_5eb7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_12c3_aa2c_5eb7/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_12c3_aa2c_5eb7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_12c3_aa2c_5eb7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_12c3_aa2c_5eb7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_12c3_aa2c_5eb7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_12c3_aa2c_5eb7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_12c3_aa2c_5eb7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2191_e402_d1e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2191_e402_d1e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2191_e402_d1e6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2191_e402_d1e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2191_e402_d1e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2191_e402_d1e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2191_e402_d1e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2191_e402_d1e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2191_e402_d1e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7a5_6e7c_0d10", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7a5_6e7c_0d10.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d7a5_6e7c_0d10/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d7a5_6e7c_0d10_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d7a5_6e7c_0d10_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d7a5_6e7c_0d10/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d7a5_6e7c_0d10.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d7a5_6e7c_0d10&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d7a5_6e7c_0d10"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ff7_a5d9_3424", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ff7_a5d9_3424.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ff7_a5d9_3424/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ff7_a5d9_3424_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ff7_a5d9_3424_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ff7_a5d9_3424/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ff7_a5d9_3424.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ff7_a5d9_3424&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1ff7_a5d9_3424"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5145_3887_7621", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5145_3887_7621.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5145_3887_7621/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5145_3887_7621_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5145_3887_7621_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5145_3887_7621/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5145_3887_7621.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5145_3887_7621&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5145_3887_7621"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a058_3307_a789", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a058_3307_a789.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a058_3307_a789/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a058_3307_a789_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a058_3307_a789_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a058_3307_a789/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a058_3307_a789.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a058_3307_a789&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a058_3307_a789"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02c8_8c9d_b653", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02c8_8c9d_b653.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_02c8_8c9d_b653/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_02c8_8c9d_b653_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_02c8_8c9d_b653_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_02c8_8c9d_b653/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_02c8_8c9d_b653.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_02c8_8c9d_b653&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_02c8_8c9d_b653"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_583f_e234_ba33", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_583f_e234_ba33.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_583f_e234_ba33/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_583f_e234_ba33_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_583f_e234_ba33_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_583f_e234_ba33/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_583f_e234_ba33.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_583f_e234_ba33&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_583f_e234_ba33"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2986_7059_fbb7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2986_7059_fbb7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2986_7059_fbb7/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2986_7059_fbb7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2986_7059_fbb7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2986_7059_fbb7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2986_7059_fbb7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2986_7059_fbb7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2986_7059_fbb7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e13b_d1b9_75f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e13b_d1b9_75f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e13b_d1b9_75f9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e13b_d1b9_75f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e13b_d1b9_75f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e13b_d1b9_75f9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e13b_d1b9_75f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e13b_d1b9_75f9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e13b_d1b9_75f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fba5_4990_79c7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fba5_4990_79c7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fba5_4990_79c7/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, lflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nlflx (Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fba5_4990_79c7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fba5_4990_79c7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fba5_4990_79c7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fba5_4990_79c7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fba5_4990_79c7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fba5_4990_79c7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cfb_b176_0682", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1cfb_b176_0682.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1cfb_b176_0682/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1cfb_b176_0682_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1cfb_b176_0682_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1cfb_b176_0682/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1cfb_b176_0682.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1cfb_b176_0682&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1cfb_b176_0682"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a54_715b_5374", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a54_715b_5374.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a54_715b_5374/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a54_715b_5374_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a54_715b_5374_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a54_715b_5374/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a54_715b_5374.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a54_715b_5374&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6a54_715b_5374"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d59_ff11_b119", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d59_ff11_b119.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d59_ff11_b119/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d59_ff11_b119_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d59_ff11_b119_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d59_ff11_b119/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d59_ff11_b119.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d59_ff11_b119&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6d59_ff11_b119"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bd3_41fe_6820", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bd3_41fe_6820.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9bd3_41fe_6820/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9bd3_41fe_6820_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9bd3_41fe_6820_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9bd3_41fe_6820/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9bd3_41fe_6820.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9bd3_41fe_6820&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9bd3_41fe_6820"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2747_4e77_1565", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2747_4e77_1565.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2747_4e77_1565/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2747_4e77_1565_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2747_4e77_1565_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2747_4e77_1565/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2747_4e77_1565.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2747_4e77_1565&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2747_4e77_1565"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5cad_834f_32ad", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5cad_834f_32ad.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5cad_834f_32ad/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5cad_834f_32ad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5cad_834f_32ad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5cad_834f_32ad/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5cad_834f_32ad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5cad_834f_32ad&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5cad_834f_32ad"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8228_8875_1345", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8228_8875_1345.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8228_8875_1345/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8228_8875_1345_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8228_8875_1345_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8228_8875_1345/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8228_8875_1345.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8228_8875_1345&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8228_8875_1345"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b43_e75d_1c1b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3b43_e75d_1c1b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3b43_e75d_1c1b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3b43_e75d_1c1b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3b43_e75d_1c1b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3b43_e75d_1c1b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3b43_e75d_1c1b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3b43_e75d_1c1b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3b43_e75d_1c1b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e16_8794_cf07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7e16_8794_cf07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7e16_8794_cf07/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7e16_8794_cf07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7e16_8794_cf07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7e16_8794_cf07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7e16_8794_cf07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7e16_8794_cf07&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7e16_8794_cf07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41df_c52a_7507", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_41df_c52a_7507.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_41df_c52a_7507/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_41df_c52a_7507_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_41df_c52a_7507_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_41df_c52a_7507/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_41df_c52a_7507.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_41df_c52a_7507&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_41df_c52a_7507"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d4b_dcf8_1559", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d4b_dcf8_1559.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9d4b_dcf8_1559/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9d4b_dcf8_1559_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9d4b_dcf8_1559_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9d4b_dcf8_1559/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9d4b_dcf8_1559.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9d4b_dcf8_1559&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9d4b_dcf8_1559"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c521_2719_4163", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c521_2719_4163.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c521_2719_4163/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c521_2719_4163_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c521_2719_4163_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c521_2719_4163/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c521_2719_4163.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c521_2719_4163&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c521_2719_4163"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5882_0f01_d8d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5882_0f01_d8d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5882_0f01_d8d5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5882_0f01_d8d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5882_0f01_d8d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5882_0f01_d8d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5882_0f01_d8d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5882_0f01_d8d5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5882_0f01_d8d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2950_8397_077e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2950_8397_077e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2950_8397_077e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2950_8397_077e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2950_8397_077e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2950_8397_077e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2950_8397_077e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2950_8397_077e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2950_8397_077e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c575_5d7d_8b76", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c575_5d7d_8b76.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c575_5d7d_8b76/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c575_5d7d_8b76_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c575_5d7d_8b76_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c575_5d7d_8b76/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c575_5d7d_8b76.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c575_5d7d_8b76&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c575_5d7d_8b76"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02e7_e564_a543", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_02e7_e564_a543.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_02e7_e564_a543/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_02e7_e564_a543_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_02e7_e564_a543_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_02e7_e564_a543/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_02e7_e564_a543.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_02e7_e564_a543&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_02e7_e564_a543"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bedf_2705_0cb1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bedf_2705_0cb1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bedf_2705_0cb1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bedf_2705_0cb1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bedf_2705_0cb1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bedf_2705_0cb1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bedf_2705_0cb1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bedf_2705_0cb1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bedf_2705_0cb1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf79_6116_bb4b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf79_6116_bb4b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf79_6116_bb4b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf79_6116_bb4b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf79_6116_bb4b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf79_6116_bb4b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf79_6116_bb4b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf79_6116_bb4b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cf79_6116_bb4b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3dff_aed7_03c7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3dff_aed7_03c7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3dff_aed7_03c7/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3dff_aed7_03c7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3dff_aed7_03c7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3dff_aed7_03c7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3dff_aed7_03c7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3dff_aed7_03c7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3dff_aed7_03c7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21d8_0be0_e174", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_21d8_0be0_e174.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_21d8_0be0_e174/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_21d8_0be0_e174_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_21d8_0be0_e174_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_21d8_0be0_e174/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_21d8_0be0_e174.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_21d8_0be0_e174&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_21d8_0be0_e174"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5e1_f236_7286", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5e1_f236_7286.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5e1_f236_7286/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5e1_f236_7286_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5e1_f236_7286_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5e1_f236_7286/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5e1_f236_7286.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5e1_f236_7286&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b5e1_f236_7286"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1857_10c6_b23d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1857_10c6_b23d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1857_10c6_b23d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1857_10c6_b23d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1857_10c6_b23d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1857_10c6_b23d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1857_10c6_b23d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1857_10c6_b23d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1857_10c6_b23d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3279_2f18_cba4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3279_2f18_cba4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3279_2f18_cba4/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3279_2f18_cba4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3279_2f18_cba4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3279_2f18_cba4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3279_2f18_cba4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3279_2f18_cba4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3279_2f18_cba4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_caea_0a7d_579c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_caea_0a7d_579c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_caea_0a7d_579c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_caea_0a7d_579c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_caea_0a7d_579c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_caea_0a7d_579c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_caea_0a7d_579c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_caea_0a7d_579c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_caea_0a7d_579c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cceb_69d1_024a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cceb_69d1_024a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cceb_69d1_024a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cceb_69d1_024a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cceb_69d1_024a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cceb_69d1_024a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cceb_69d1_024a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cceb_69d1_024a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cceb_69d1_024a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_087c_59c3_75bd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_087c_59c3_75bd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_087c_59c3_75bd/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_087c_59c3_75bd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_087c_59c3_75bd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_087c_59c3_75bd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_087c_59c3_75bd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_087c_59c3_75bd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_087c_59c3_75bd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_adc5_dd71_e291", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_adc5_dd71_e291.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_adc5_dd71_e291/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, qsminq.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nqsminq (Sat Sp Hum at Sst Minus Sp Hum Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_adc5_dd71_e291_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_adc5_dd71_e291_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_adc5_dd71_e291/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_adc5_dd71_e291.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_adc5_dd71_e291&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_adc5_dd71_e291"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94b1_188d_c8ce", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94b1_188d_c8ce.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_94b1_188d_c8ce/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_94b1_188d_c8ce_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_94b1_188d_c8ce_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_94b1_188d_c8ce/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_94b1_188d_c8ce.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_94b1_188d_c8ce&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_94b1_188d_c8ce"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfb1_8ebd_4dc6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cfb1_8ebd_4dc6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cfb1_8ebd_4dc6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cfb1_8ebd_4dc6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cfb1_8ebd_4dc6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cfb1_8ebd_4dc6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cfb1_8ebd_4dc6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cfb1_8ebd_4dc6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cfb1_8ebd_4dc6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d38d_bdea_624e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d38d_bdea_624e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d38d_bdea_624e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d38d_bdea_624e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d38d_bdea_624e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d38d_bdea_624e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d38d_bdea_624e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d38d_bdea_624e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d38d_bdea_624e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6047_60c9_be82", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6047_60c9_be82.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6047_60c9_be82/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6047_60c9_be82_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6047_60c9_be82_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6047_60c9_be82/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6047_60c9_be82.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6047_60c9_be82&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6047_60c9_be82"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3663_51c8_9ead", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3663_51c8_9ead.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3663_51c8_9ead/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3663_51c8_9ead_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3663_51c8_9ead_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3663_51c8_9ead/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3663_51c8_9ead.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3663_51c8_9ead&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3663_51c8_9ead"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d947_8a0f_16aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d947_8a0f_16aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d947_8a0f_16aa/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d947_8a0f_16aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d947_8a0f_16aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d947_8a0f_16aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d947_8a0f_16aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d947_8a0f_16aa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d947_8a0f_16aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e776_95a1_1af0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e776_95a1_1af0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e776_95a1_1af0/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e776_95a1_1af0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e776_95a1_1af0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e776_95a1_1af0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e776_95a1_1af0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e776_95a1_1af0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e776_95a1_1af0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a07_e7b3_440a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a07_e7b3_440a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a07_e7b3_440a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a07_e7b3_440a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a07_e7b3_440a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a07_e7b3_440a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a07_e7b3_440a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a07_e7b3_440a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3a07_e7b3_440a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a72d_c745_e619", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a72d_c745_e619.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a72d_c745_e619/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a72d_c745_e619_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a72d_c745_e619_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a72d_c745_e619/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a72d_c745_e619.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a72d_c745_e619&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a72d_c745_e619"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_609c_a962_5b19", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_609c_a962_5b19.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_609c_a962_5b19/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_609c_a962_5b19_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_609c_a962_5b19_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_609c_a962_5b19/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_609c_a962_5b19.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_609c_a962_5b19&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_609c_a962_5b19"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60d5_a10d_53b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60d5_a10d_53b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_60d5_a10d_53b9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_60d5_a10d_53b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_60d5_a10d_53b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_60d5_a10d_53b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_60d5_a10d_53b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_60d5_a10d_53b9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_60d5_a10d_53b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf6d_ef3c_d9ea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf6d_ef3c_d9ea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf6d_ef3c_d9ea/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf6d_ef3c_d9ea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf6d_ef3c_d9ea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf6d_ef3c_d9ea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf6d_ef3c_d9ea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf6d_ef3c_d9ea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bf6d_ef3c_d9ea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc37_5b38_08c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bc37_5b38_08c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bc37_5b38_08c4/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bc37_5b38_08c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bc37_5b38_08c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bc37_5b38_08c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bc37_5b38_08c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bc37_5b38_08c4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bc37_5b38_08c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a4e_2ea5_0d51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a4e_2ea5_0d51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a4e_2ea5_0d51/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a4e_2ea5_0d51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a4e_2ea5_0d51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a4e_2ea5_0d51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a4e_2ea5_0d51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a4e_2ea5_0d51&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7a4e_2ea5_0d51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e167_26f4_1a45", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e167_26f4_1a45.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e167_26f4_1a45/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Mean at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e167_26f4_1a45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e167_26f4_1a45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e167_26f4_1a45/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e167_26f4_1a45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e167_26f4_1a45&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e167_26f4_1a45"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0826_1761_3729", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0826_1761_3729.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0826_1761_3729/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0826_1761_3729_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0826_1761_3729_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0826_1761_3729/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0826_1761_3729.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0826_1761_3729&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0826_1761_3729"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_206c_f7b0_10fc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_206c_f7b0_10fc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_206c_f7b0_10fc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_206c_f7b0_10fc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_206c_f7b0_10fc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_206c_f7b0_10fc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_206c_f7b0_10fc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_206c_f7b0_10fc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_206c_f7b0_10fc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eed8_b6eb_f654", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eed8_b6eb_f654.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eed8_b6eb_f654/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eed8_b6eb_f654_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eed8_b6eb_f654_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eed8_b6eb_f654/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eed8_b6eb_f654.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eed8_b6eb_f654&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_eed8_b6eb_f654"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_493c_31f3_c6ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_493c_31f3_c6ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_493c_31f3_c6ca/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_493c_31f3_c6ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_493c_31f3_c6ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_493c_31f3_c6ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_493c_31f3_c6ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_493c_31f3_c6ca&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_493c_31f3_c6ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e9d_b546_ee07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0e9d_b546_ee07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0e9d_b546_ee07/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0e9d_b546_ee07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0e9d_b546_ee07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0e9d_b546_ee07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0e9d_b546_ee07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0e9d_b546_ee07&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0e9d_b546_ee07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d72_ad0e_e479", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d72_ad0e_e479.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d72_ad0e_e479/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 1st Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d72_ad0e_e479_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d72_ad0e_e479_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d72_ad0e_e479/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d72_ad0e_e479.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d72_ad0e_e479&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1d72_ad0e_e479"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7176_98e7_b0ec", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7176_98e7_b0ec.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7176_98e7_b0ec/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7176_98e7_b0ec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7176_98e7_b0ec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7176_98e7_b0ec/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7176_98e7_b0ec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7176_98e7_b0ec&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7176_98e7_b0ec"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df88_507b_e784", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df88_507b_e784.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_df88_507b_e784/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_df88_507b_e784_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_df88_507b_e784_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_df88_507b_e784/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_df88_507b_e784.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_df88_507b_e784&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_df88_507b_e784"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f642_e56a_9acb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f642_e56a_9acb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f642_e56a_9acb/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 3rd Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f642_e56a_9acb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f642_e56a_9acb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f642_e56a_9acb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f642_e56a_9acb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f642_e56a_9acb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f642_e56a_9acb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3067_1a50_f1c6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3067_1a50_f1c6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3067_1a50_f1c6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3067_1a50_f1c6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3067_1a50_f1c6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3067_1a50_f1c6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3067_1a50_f1c6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3067_1a50_f1c6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3067_1a50_f1c6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64a2_6967_992c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_64a2_6967_992c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_64a2_6967_992c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_64a2_6967_992c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_64a2_6967_992c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_64a2_6967_992c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_64a2_6967_992c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_64a2_6967_992c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_64a2_6967_992c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c17_2294_8517", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7c17_2294_8517.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7c17_2294_8517/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly 5th Sextile at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7c17_2294_8517_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7c17_2294_8517_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7c17_2294_8517/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7c17_2294_8517.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7c17_2294_8517&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7c17_2294_8517"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51c6_644c_bc3e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_51c6_644c_bc3e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_51c6_644c_bc3e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_51c6_644c_bc3e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_51c6_644c_bc3e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_51c6_644c_bc3e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_51c6_644c_bc3e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_51c6_644c_bc3e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_51c6_644c_bc3e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bac_1f24_062e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9bac_1f24_062e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9bac_1f24_062e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9bac_1f24_062e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9bac_1f24_062e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9bac_1f24_062e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9bac_1f24_062e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9bac_1f24_062e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9bac_1f24_062e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c319_fa9b_9b18", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c319_fa9b_9b18.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c319_fa9b_9b18/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, rhum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nrhum (Relative Humidity Monthly Standard Deviation at Surface, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c319_fa9b_9b18_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c319_fa9b_9b18_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c319_fa9b_9b18/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c319_fa9b_9b18.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c319_fa9b_9b18&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c319_fa9b_9b18"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7768_9f2b_ae4c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7768_9f2b_ae4c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7768_9f2b_ae4c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7768_9f2b_ae4c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7768_9f2b_ae4c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7768_9f2b_ae4c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7768_9f2b_ae4c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7768_9f2b_ae4c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7768_9f2b_ae4c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c05_4a21_319e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c05_4a21_319e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2c05_4a21_319e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2c05_4a21_319e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2c05_4a21_319e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2c05_4a21_319e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2c05_4a21_319e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2c05_4a21_319e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2c05_4a21_319e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb37_c13f_6277", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cb37_c13f_6277.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cb37_c13f_6277/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cb37_c13f_6277_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cb37_c13f_6277_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cb37_c13f_6277/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cb37_c13f_6277.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cb37_c13f_6277&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cb37_c13f_6277"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d113_a7a5_7c72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d113_a7a5_7c72.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d113_a7a5_7c72/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d113_a7a5_7c72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d113_a7a5_7c72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d113_a7a5_7c72/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d113_a7a5_7c72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d113_a7a5_7c72&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d113_a7a5_7c72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a708_b514_ba69", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a708_b514_ba69.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a708_b514_ba69/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a708_b514_ba69_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a708_b514_ba69_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a708_b514_ba69/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a708_b514_ba69.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a708_b514_ba69&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a708_b514_ba69"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed2d_03c3_63c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed2d_03c3_63c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ed2d_03c3_63c3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ed2d_03c3_63c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ed2d_03c3_63c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ed2d_03c3_63c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ed2d_03c3_63c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ed2d_03c3_63c3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ed2d_03c3_63c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1518_57a4_9fac", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1518_57a4_9fac.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1518_57a4_9fac/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1518_57a4_9fac_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1518_57a4_9fac_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1518_57a4_9fac/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1518_57a4_9fac.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1518_57a4_9fac&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1518_57a4_9fac"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad86_388b_073d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad86_388b_073d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ad86_388b_073d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ad86_388b_073d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ad86_388b_073d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ad86_388b_073d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ad86_388b_073d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ad86_388b_073d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ad86_388b_073d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3be_1860_5357", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d3be_1860_5357.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d3be_1860_5357/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d3be_1860_5357_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d3be_1860_5357_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d3be_1860_5357/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d3be_1860_5357.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d3be_1860_5357&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d3be_1860_5357"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e922_faab_ea37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e922_faab_ea37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e922_faab_ea37/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e922_faab_ea37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e922_faab_ea37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e922_faab_ea37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e922_faab_ea37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e922_faab_ea37&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e922_faab_ea37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_293d_d4aa_eabc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_293d_d4aa_eabc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_293d_d4aa_eabc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_293d_d4aa_eabc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_293d_d4aa_eabc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_293d_d4aa_eabc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_293d_d4aa_eabc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_293d_d4aa_eabc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_293d_d4aa_eabc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70f6_fe7f_f6c0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70f6_fe7f_f6c0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_70f6_fe7f_f6c0/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_70f6_fe7f_f6c0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_70f6_fe7f_f6c0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_70f6_fe7f_f6c0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_70f6_fe7f_f6c0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_70f6_fe7f_f6c0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_70f6_fe7f_f6c0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db37_3d8f_5400", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_db37_3d8f_5400.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_db37_3d8f_5400/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_db37_3d8f_5400_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_db37_3d8f_5400_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_db37_3d8f_5400/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_db37_3d8f_5400.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_db37_3d8f_5400&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_db37_3d8f_5400"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17d5_f59d_234b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17d5_f59d_234b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_17d5_f59d_234b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_17d5_f59d_234b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_17d5_f59d_234b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_17d5_f59d_234b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_17d5_f59d_234b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_17d5_f59d_234b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_17d5_f59d_234b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5832_da2e_19ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5832_da2e_19ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5832_da2e_19ca/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5832_da2e_19ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5832_da2e_19ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5832_da2e_19ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5832_da2e_19ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5832_da2e_19ca&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5832_da2e_19ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19ca_f03e_43ca", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_19ca_f03e_43ca.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_19ca_f03e_43ca/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_19ca_f03e_43ca_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_19ca_f03e_43ca_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_19ca_f03e_43ca/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_19ca_f03e_43ca.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_19ca_f03e_43ca&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_19ca_f03e_43ca"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5172_79e6_91e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5172_79e6_91e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5172_79e6_91e1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5172_79e6_91e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5172_79e6_91e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5172_79e6_91e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5172_79e6_91e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5172_79e6_91e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5172_79e6_91e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c262_6f38_6093", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c262_6f38_6093.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c262_6f38_6093/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c262_6f38_6093_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c262_6f38_6093_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c262_6f38_6093/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c262_6f38_6093.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c262_6f38_6093&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c262_6f38_6093"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c112_01c7_ccf3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c112_01c7_ccf3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c112_01c7_ccf3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c112_01c7_ccf3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c112_01c7_ccf3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c112_01c7_ccf3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c112_01c7_ccf3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c112_01c7_ccf3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c112_01c7_ccf3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7180_238a_6949", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7180_238a_6949.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7180_238a_6949/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7180_238a_6949_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7180_238a_6949_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7180_238a_6949/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7180_238a_6949.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7180_238a_6949&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7180_238a_6949"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9155_3e59_0f34", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9155_3e59_0f34.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9155_3e59_0f34/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9155_3e59_0f34_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9155_3e59_0f34_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9155_3e59_0f34/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9155_3e59_0f34.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9155_3e59_0f34&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9155_3e59_0f34"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13ed_176a_91b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_13ed_176a_91b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_13ed_176a_91b6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_13ed_176a_91b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_13ed_176a_91b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_13ed_176a_91b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_13ed_176a_91b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_13ed_176a_91b6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_13ed_176a_91b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2741_f511_6704", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2741_f511_6704.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2741_f511_6704/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2741_f511_6704_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2741_f511_6704_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2741_f511_6704/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2741_f511_6704.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2741_f511_6704&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2741_f511_6704"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f364_b5ad_a99d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f364_b5ad_a99d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f364_b5ad_a99d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f364_b5ad_a99d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f364_b5ad_a99d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f364_b5ad_a99d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f364_b5ad_a99d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f364_b5ad_a99d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f364_b5ad_a99d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5876_d4cc_d0d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5876_d4cc_d0d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5876_d4cc_d0d7/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5876_d4cc_d0d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5876_d4cc_d0d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5876_d4cc_d0d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5876_d4cc_d0d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5876_d4cc_d0d7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5876_d4cc_d0d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a27_fa31_261c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a27_fa31_261c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a27_fa31_261c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a27_fa31_261c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a27_fa31_261c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a27_fa31_261c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a27_fa31_261c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a27_fa31_261c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0a27_fa31_261c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ef7_74cd_71bb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1ef7_74cd_71bb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1ef7_74cd_71bb/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1ef7_74cd_71bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1ef7_74cd_71bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1ef7_74cd_71bb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1ef7_74cd_71bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1ef7_74cd_71bb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1ef7_74cd_71bb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d449_0c01_a5b9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d449_0c01_a5b9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d449_0c01_a5b9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d449_0c01_a5b9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d449_0c01_a5b9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d449_0c01_a5b9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d449_0c01_a5b9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d449_0c01_a5b9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d449_0c01_a5b9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b5c_82dd_c1c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b5c_82dd_c1c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b5c_82dd_c1c3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b5c_82dd_c1c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b5c_82dd_c1c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b5c_82dd_c1c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b5c_82dd_c1c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b5c_82dd_c1c3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6b5c_82dd_c1c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d088_47fd_9310", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d088_47fd_9310.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d088_47fd_9310/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsflx (Sensible Heat Parameter Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d088_47fd_9310_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d088_47fd_9310_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d088_47fd_9310/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d088_47fd_9310.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d088_47fd_9310&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d088_47fd_9310"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7599_e46f_88e5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7599_e46f_88e5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7599_e46f_88e5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7599_e46f_88e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7599_e46f_88e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7599_e46f_88e5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7599_e46f_88e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7599_e46f_88e5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7599_e46f_88e5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5d8_25c2_1ccf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5d8_25c2_1ccf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5d8_25c2_1ccf/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5d8_25c2_1ccf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5d8_25c2_1ccf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5d8_25c2_1ccf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5d8_25c2_1ccf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5d8_25c2_1ccf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e5d8_25c2_1ccf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e951_57f0_e6db", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e951_57f0_e6db.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e951_57f0_e6db/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e951_57f0_e6db_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e951_57f0_e6db_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e951_57f0_e6db/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e951_57f0_e6db.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e951_57f0_e6db&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e951_57f0_e6db"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_770e_a878_d52d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_770e_a878_d52d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_770e_a878_d52d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_770e_a878_d52d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_770e_a878_d52d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_770e_a878_d52d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_770e_a878_d52d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_770e_a878_d52d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_770e_a878_d52d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_52c9_f9f0_325f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_52c9_f9f0_325f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_52c9_f9f0_325f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_52c9_f9f0_325f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_52c9_f9f0_325f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_52c9_f9f0_325f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_52c9_f9f0_325f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_52c9_f9f0_325f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_52c9_f9f0_325f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf56_3f97_7404", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf56_3f97_7404.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf56_3f97_7404/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf56_3f97_7404_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf56_3f97_7404_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf56_3f97_7404/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf56_3f97_7404.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf56_3f97_7404&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cf56_3f97_7404"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f8d_aa54_f52b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f8d_aa54_f52b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f8d_aa54_f52b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f8d_aa54_f52b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f8d_aa54_f52b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f8d_aa54_f52b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f8d_aa54_f52b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f8d_aa54_f52b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1f8d_aa54_f52b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c611_290f_5210", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c611_290f_5210.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c611_290f_5210/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c611_290f_5210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c611_290f_5210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c611_290f_5210/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c611_290f_5210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c611_290f_5210&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c611_290f_5210"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce61_30c3_3209", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ce61_30c3_3209.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ce61_30c3_3209/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ce61_30c3_3209_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ce61_30c3_3209_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ce61_30c3_3209/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ce61_30c3_3209.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ce61_30c3_3209&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ce61_30c3_3209"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c865_3165_5ed5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c865_3165_5ed5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c865_3165_5ed5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c865_3165_5ed5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c865_3165_5ed5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c865_3165_5ed5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c865_3165_5ed5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c865_3165_5ed5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c865_3165_5ed5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3396_e8fb_656b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3396_e8fb_656b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3396_e8fb_656b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3396_e8fb_656b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3396_e8fb_656b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3396_e8fb_656b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3396_e8fb_656b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3396_e8fb_656b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3396_e8fb_656b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd4d_278c_2bde", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cd4d_278c_2bde.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cd4d_278c_2bde/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cd4d_278c_2bde_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cd4d_278c_2bde_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cd4d_278c_2bde/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cd4d_278c_2bde.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cd4d_278c_2bde&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cd4d_278c_2bde"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e26_1748_643d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e26_1748_643d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4e26_1748_643d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4e26_1748_643d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4e26_1748_643d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4e26_1748_643d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4e26_1748_643d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4e26_1748_643d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4e26_1748_643d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ab6_5a23_1eea", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ab6_5a23_1eea.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ab6_5a23_1eea/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ab6_5a23_1eea_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ab6_5a23_1eea_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ab6_5a23_1eea/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ab6_5a23_1eea.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ab6_5a23_1eea&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5ab6_5a23_1eea"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de07_d93a_37ab", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_de07_d93a_37ab.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_de07_d93a_37ab/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Mean at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_de07_d93a_37ab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_de07_d93a_37ab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_de07_d93a_37ab/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_de07_d93a_37ab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_de07_d93a_37ab&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_de07_d93a_37ab"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d9ad_5dcb_a793", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d9ad_5dcb_a793.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d9ad_5dcb_a793/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d9ad_5dcb_a793_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d9ad_5dcb_a793_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d9ad_5dcb_a793/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d9ad_5dcb_a793.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d9ad_5dcb_a793&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d9ad_5dcb_a793"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8342_19eb_b8ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8342_19eb_b8ba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8342_19eb_b8ba/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8342_19eb_b8ba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8342_19eb_b8ba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8342_19eb_b8ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8342_19eb_b8ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8342_19eb_b8ba&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8342_19eb_b8ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5ad_a46e_0c45", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5ad_a46e_0c45.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f5ad_a46e_0c45/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f5ad_a46e_0c45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f5ad_a46e_0c45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f5ad_a46e_0c45/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f5ad_a46e_0c45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f5ad_a46e_0c45&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f5ad_a46e_0c45"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63ad_b3da_7420", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_63ad_b3da_7420.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_63ad_b3da_7420/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_63ad_b3da_7420_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_63ad_b3da_7420_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_63ad_b3da_7420/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_63ad_b3da_7420.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_63ad_b3da_7420&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_63ad_b3da_7420"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9213_6f4e_dfc2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9213_6f4e_dfc2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9213_6f4e_dfc2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9213_6f4e_dfc2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9213_6f4e_dfc2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9213_6f4e_dfc2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9213_6f4e_dfc2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9213_6f4e_dfc2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9213_6f4e_dfc2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e650_9ced_d424", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e650_9ced_d424.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e650_9ced_d424/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 1st Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e650_9ced_d424_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e650_9ced_d424_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e650_9ced_d424/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e650_9ced_d424.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e650_9ced_d424&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e650_9ced_d424"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89ab_6c06_bdb2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_89ab_6c06_bdb2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_89ab_6c06_bdb2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_89ab_6c06_bdb2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_89ab_6c06_bdb2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_89ab_6c06_bdb2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_89ab_6c06_bdb2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_89ab_6c06_bdb2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_89ab_6c06_bdb2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ae5_36c1_eace", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ae5_36c1_eace.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ae5_36c1_eace/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ae5_36c1_eace_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ae5_36c1_eace_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ae5_36c1_eace/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ae5_36c1_eace.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ae5_36c1_eace&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4ae5_36c1_eace"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e10c_c3ea_0ecd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e10c_c3ea_0ecd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e10c_c3ea_0ecd/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 3rd Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e10c_c3ea_0ecd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e10c_c3ea_0ecd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e10c_c3ea_0ecd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e10c_c3ea_0ecd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e10c_c3ea_0ecd&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e10c_c3ea_0ecd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_702a_cddd_a257", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_702a_cddd_a257.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_702a_cddd_a257/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_702a_cddd_a257_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_702a_cddd_a257_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_702a_cddd_a257/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_702a_cddd_a257.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_702a_cddd_a257&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_702a_cddd_a257"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5167_d66d_5a87", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5167_d66d_5a87.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5167_d66d_5a87/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5167_d66d_5a87_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5167_d66d_5a87_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5167_d66d_5a87/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5167_d66d_5a87.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5167_d66d_5a87&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5167_d66d_5a87"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_682c_42fc_3ad9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_682c_42fc_3ad9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_682c_42fc_3ad9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly 5th Sextile at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_682c_42fc_3ad9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_682c_42fc_3ad9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_682c_42fc_3ad9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_682c_42fc_3ad9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_682c_42fc_3ad9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_682c_42fc_3ad9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5147_2bf7_872d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5147_2bf7_872d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5147_2bf7_872d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5147_2bf7_872d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5147_2bf7_872d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5147_2bf7_872d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5147_2bf7_872d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5147_2bf7_872d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5147_2bf7_872d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_348e_d21e_4732", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_348e_d21e_4732.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_348e_d21e_4732/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_348e_d21e_4732_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_348e_d21e_4732_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_348e_d21e_4732/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_348e_d21e_4732.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_348e_d21e_4732&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_348e_d21e_4732"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_69ea_243f_d52e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_69ea_243f_d52e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_69ea_243f_d52e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, shum.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, shum.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nshum (Specific Humidity Monthly Standard Deviation at Surface, grams/kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_69ea_243f_d52e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_69ea_243f_d52e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_69ea_243f_d52e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_69ea_243f_d52e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_69ea_243f_d52e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_69ea_243f_d52e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8201_fe1a_8882", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8201_fe1a_8882.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8201_fe1a_8882/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8201_fe1a_8882_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8201_fe1a_8882_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8201_fe1a_8882/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8201_fe1a_8882.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8201_fe1a_8882&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8201_fe1a_8882"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9211_bb89_a72f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9211_bb89_a72f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9211_bb89_a72f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9211_bb89_a72f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9211_bb89_a72f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9211_bb89_a72f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9211_bb89_a72f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9211_bb89_a72f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9211_bb89_a72f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a26d_025b_f079", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a26d_025b_f079.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a26d_025b_f079/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a26d_025b_f079_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a26d_025b_f079_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a26d_025b_f079/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a26d_025b_f079.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a26d_025b_f079&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a26d_025b_f079"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fde5_7839_f324", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fde5_7839_f324.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fde5_7839_f324/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fde5_7839_f324_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fde5_7839_f324_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fde5_7839_f324/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fde5_7839_f324.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fde5_7839_f324&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_fde5_7839_f324"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fc4_1fc6_33f8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4fc4_1fc6_33f8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4fc4_1fc6_33f8/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4fc4_1fc6_33f8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4fc4_1fc6_33f8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4fc4_1fc6_33f8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4fc4_1fc6_33f8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4fc4_1fc6_33f8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4fc4_1fc6_33f8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_783a_eda6_0352", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_783a_eda6_0352.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_783a_eda6_0352/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_783a_eda6_0352_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_783a_eda6_0352_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_783a_eda6_0352/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_783a_eda6_0352.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_783a_eda6_0352&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_783a_eda6_0352"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_387b_9d23_2a1f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_387b_9d23_2a1f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_387b_9d23_2a1f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_387b_9d23_2a1f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_387b_9d23_2a1f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_387b_9d23_2a1f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_387b_9d23_2a1f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_387b_9d23_2a1f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_387b_9d23_2a1f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a27_5cd5_5a03", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a27_5cd5_5a03.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a27_5cd5_5a03/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a27_5cd5_5a03_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a27_5cd5_5a03_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a27_5cd5_5a03/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a27_5cd5_5a03.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a27_5cd5_5a03&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6a27_5cd5_5a03"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93a0_6b62_ce11", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_93a0_6b62_ce11.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_93a0_6b62_ce11/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_93a0_6b62_ce11_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_93a0_6b62_ce11_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_93a0_6b62_ce11/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_93a0_6b62_ce11.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_93a0_6b62_ce11&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_93a0_6b62_ce11"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d3a_aa8b_e15b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d3a_aa8b_e15b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d3a_aa8b_e15b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d3a_aa8b_e15b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d3a_aa8b_e15b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d3a_aa8b_e15b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d3a_aa8b_e15b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d3a_aa8b_e15b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6d3a_aa8b_e15b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58e5_eb6b_e179", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_58e5_eb6b_e179.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_58e5_eb6b_e179/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_58e5_eb6b_e179_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_58e5_eb6b_e179_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_58e5_eb6b_e179/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_58e5_eb6b_e179.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_58e5_eb6b_e179&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_58e5_eb6b_e179"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5bce_8eae_de54", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5bce_8eae_de54.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5bce_8eae_de54/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5bce_8eae_de54_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5bce_8eae_de54_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5bce_8eae_de54/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5bce_8eae_de54.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5bce_8eae_de54&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5bce_8eae_de54"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4aa_fc5c_75cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4aa_fc5c_75cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d4aa_fc5c_75cf/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d4aa_fc5c_75cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d4aa_fc5c_75cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d4aa_fc5c_75cf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d4aa_fc5c_75cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d4aa_fc5c_75cf&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d4aa_fc5c_75cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_649b_e208_0198", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_649b_e208_0198.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_649b_e208_0198/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_649b_e208_0198_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_649b_e208_0198_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_649b_e208_0198/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_649b_e208_0198.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_649b_e208_0198&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_649b_e208_0198"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c76b_9522_c1b2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c76b_9522_c1b2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c76b_9522_c1b2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Mean at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c76b_9522_c1b2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c76b_9522_c1b2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c76b_9522_c1b2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c76b_9522_c1b2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c76b_9522_c1b2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c76b_9522_c1b2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4f9_2fd8_ccdc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f4f9_2fd8_ccdc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f4f9_2fd8_ccdc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f4f9_2fd8_ccdc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f4f9_2fd8_ccdc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f4f9_2fd8_ccdc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f4f9_2fd8_ccdc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f4f9_2fd8_ccdc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f4f9_2fd8_ccdc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ee0_ff7a_9233", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0ee0_ff7a_9233.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0ee0_ff7a_9233/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0ee0_ff7a_9233_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0ee0_ff7a_9233_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0ee0_ff7a_9233/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0ee0_ff7a_9233.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0ee0_ff7a_9233&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0ee0_ff7a_9233"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c447_2d71_5b9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c447_2d71_5b9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c447_2d71_5b9d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c447_2d71_5b9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c447_2d71_5b9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c447_2d71_5b9d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c447_2d71_5b9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c447_2d71_5b9d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c447_2d71_5b9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c62f_2d69_073c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c62f_2d69_073c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c62f_2d69_073c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c62f_2d69_073c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c62f_2d69_073c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c62f_2d69_073c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c62f_2d69_073c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c62f_2d69_073c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c62f_2d69_073c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd10_3e8c_a7c5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bd10_3e8c_a7c5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bd10_3e8c_a7c5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bd10_3e8c_a7c5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bd10_3e8c_a7c5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bd10_3e8c_a7c5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bd10_3e8c_a7c5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bd10_3e8c_a7c5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bd10_3e8c_a7c5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f511_a3bf_1478", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f511_a3bf_1478.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f511_a3bf_1478/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 1st Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f511_a3bf_1478_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f511_a3bf_1478_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f511_a3bf_1478/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f511_a3bf_1478.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f511_a3bf_1478&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f511_a3bf_1478"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2870_6daa_4567", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2870_6daa_4567.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2870_6daa_4567/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2870_6daa_4567_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2870_6daa_4567_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2870_6daa_4567/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2870_6daa_4567.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2870_6daa_4567&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2870_6daa_4567"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6065_86fc_4ca5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6065_86fc_4ca5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6065_86fc_4ca5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6065_86fc_4ca5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6065_86fc_4ca5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6065_86fc_4ca5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6065_86fc_4ca5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6065_86fc_4ca5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6065_86fc_4ca5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f523_57a3_c3f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f523_57a3_c3f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f523_57a3_c3f1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 3rd Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f523_57a3_c3f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f523_57a3_c3f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f523_57a3_c3f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f523_57a3_c3f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f523_57a3_c3f1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f523_57a3_c3f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8d3_ac9d_8334", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b8d3_ac9d_8334.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b8d3_ac9d_8334/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b8d3_ac9d_8334_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b8d3_ac9d_8334_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b8d3_ac9d_8334/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b8d3_ac9d_8334.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b8d3_ac9d_8334&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b8d3_ac9d_8334"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_000a_be48_06c3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_000a_be48_06c3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_000a_be48_06c3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_000a_be48_06c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_000a_be48_06c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_000a_be48_06c3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_000a_be48_06c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_000a_be48_06c3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_000a_be48_06c3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a979_82dc_6f73", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a979_82dc_6f73.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a979_82dc_6f73/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly 5th Sextile at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a979_82dc_6f73_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a979_82dc_6f73_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a979_82dc_6f73/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a979_82dc_6f73.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a979_82dc_6f73&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a979_82dc_6f73"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_753c_4da5_4355", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_753c_4da5_4355.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_753c_4da5_4355/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_753c_4da5_4355_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_753c_4da5_4355_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_753c_4da5_4355/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_753c_4da5_4355.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_753c_4da5_4355&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_753c_4da5_4355"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_226e_4367_a216", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_226e_4367_a216.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_226e_4367_a216/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_226e_4367_a216_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_226e_4367_a216_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_226e_4367_a216/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_226e_4367_a216.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_226e_4367_a216&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_226e_4367_a216"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f40_bc7e_d221", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f40_bc7e_d221.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4f40_bc7e_d221/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, slp.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, slp.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nslp (Sea Level Pressure Monthly Standard Deviation at Surface, millibars)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4f40_bc7e_d221_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4f40_bc7e_d221_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4f40_bc7e_d221/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4f40_bc7e_d221.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4f40_bc7e_d221&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4f40_bc7e_d221"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7095_c544_6685", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7095_c544_6685.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7095_c544_6685/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7095_c544_6685_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7095_c544_6685_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7095_c544_6685/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7095_c544_6685.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7095_c544_6685&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7095_c544_6685"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dd2_e1ff_9b56", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8dd2_e1ff_9b56.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8dd2_e1ff_9b56/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8dd2_e1ff_9b56_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8dd2_e1ff_9b56_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8dd2_e1ff_9b56/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8dd2_e1ff_9b56.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8dd2_e1ff_9b56&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8dd2_e1ff_9b56"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91a7_b6d7_c94b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_91a7_b6d7_c94b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_91a7_b6d7_c94b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_91a7_b6d7_c94b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_91a7_b6d7_c94b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_91a7_b6d7_c94b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_91a7_b6d7_c94b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_91a7_b6d7_c94b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_91a7_b6d7_c94b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_184f_4291_3574", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_184f_4291_3574.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_184f_4291_3574/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_184f_4291_3574_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_184f_4291_3574_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_184f_4291_3574/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_184f_4291_3574.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_184f_4291_3574&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_184f_4291_3574"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d99_3f50_ee1c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d99_3f50_ee1c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d99_3f50_ee1c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d99_3f50_ee1c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d99_3f50_ee1c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d99_3f50_ee1c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d99_3f50_ee1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d99_3f50_ee1c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4d99_3f50_ee1c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9b5_ee95_c510", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9b5_ee95_c510.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b9b5_ee95_c510/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b9b5_ee95_c510_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b9b5_ee95_c510_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b9b5_ee95_c510/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b9b5_ee95_c510.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b9b5_ee95_c510&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b9b5_ee95_c510"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c429_d958_ca1a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c429_d958_ca1a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c429_d958_ca1a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c429_d958_ca1a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c429_d958_ca1a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c429_d958_ca1a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c429_d958_ca1a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c429_d958_ca1a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c429_d958_ca1a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b26_3ce5_5378", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b26_3ce5_5378.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b26_3ce5_5378/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b26_3ce5_5378_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b26_3ce5_5378_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b26_3ce5_5378/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b26_3ce5_5378.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b26_3ce5_5378&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6b26_3ce5_5378"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8068_c896_2168", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8068_c896_2168.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8068_c896_2168/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8068_c896_2168_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8068_c896_2168_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8068_c896_2168/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8068_c896_2168.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8068_c896_2168&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8068_c896_2168"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b348_cf0d_2ae9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b348_cf0d_2ae9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b348_cf0d_2ae9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b348_cf0d_2ae9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b348_cf0d_2ae9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b348_cf0d_2ae9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b348_cf0d_2ae9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b348_cf0d_2ae9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b348_cf0d_2ae9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a05_4e7d_ca6a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a05_4e7d_ca6a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a05_4e7d_ca6a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a05_4e7d_ca6a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a05_4e7d_ca6a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a05_4e7d_ca6a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a05_4e7d_ca6a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a05_4e7d_ca6a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3a05_4e7d_ca6a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5db_439c_06cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5db_439c_06cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f5db_439c_06cf/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f5db_439c_06cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f5db_439c_06cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f5db_439c_06cf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f5db_439c_06cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f5db_439c_06cf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f5db_439c_06cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7329_876f_0d05", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7329_876f_0d05.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7329_876f_0d05/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7329_876f_0d05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7329_876f_0d05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7329_876f_0d05/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7329_876f_0d05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7329_876f_0d05&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7329_876f_0d05"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b6c_84a6_de60", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9b6c_84a6_de60.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9b6c_84a6_de60/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9b6c_84a6_de60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9b6c_84a6_de60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9b6c_84a6_de60/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9b6c_84a6_de60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9b6c_84a6_de60&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9b6c_84a6_de60"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4fb_80f5_0c3c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d4fb_80f5_0c3c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d4fb_80f5_0c3c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d4fb_80f5_0c3c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d4fb_80f5_0c3c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d4fb_80f5_0c3c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d4fb_80f5_0c3c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d4fb_80f5_0c3c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d4fb_80f5_0c3c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_164e_75c5_e67c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_164e_75c5_e67c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_164e_75c5_e67c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_164e_75c5_e67c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_164e_75c5_e67c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_164e_75c5_e67c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_164e_75c5_e67c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_164e_75c5_e67c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_164e_75c5_e67c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f96_f9f9_9055", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0f96_f9f9_9055.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0f96_f9f9_9055/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0f96_f9f9_9055_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0f96_f9f9_9055_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0f96_f9f9_9055/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0f96_f9f9_9055.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0f96_f9f9_9055&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0f96_f9f9_9055"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f47c_2d3f_b286", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f47c_2d3f_b286.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f47c_2d3f_b286/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f47c_2d3f_b286_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f47c_2d3f_b286_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f47c_2d3f_b286/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f47c_2d3f_b286.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f47c_2d3f_b286&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f47c_2d3f_b286"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6fc0_1b8e_c052", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6fc0_1b8e_c052.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6fc0_1b8e_c052/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6fc0_1b8e_c052_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6fc0_1b8e_c052_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6fc0_1b8e_c052/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6fc0_1b8e_c052.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6fc0_1b8e_c052&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6fc0_1b8e_c052"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8079_b74f_aabe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8079_b74f_aabe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8079_b74f_aabe/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8079_b74f_aabe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8079_b74f_aabe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8079_b74f_aabe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8079_b74f_aabe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8079_b74f_aabe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8079_b74f_aabe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f7e_0703_4ebb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f7e_0703_4ebb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f7e_0703_4ebb/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f7e_0703_4ebb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f7e_0703_4ebb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f7e_0703_4ebb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f7e_0703_4ebb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f7e_0703_4ebb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8f7e_0703_4ebb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_973e_9e7d_1ca2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_973e_9e7d_1ca2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_973e_9e7d_1ca2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_973e_9e7d_1ca2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_973e_9e7d_1ca2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_973e_9e7d_1ca2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_973e_9e7d_1ca2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_973e_9e7d_1ca2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_973e_9e7d_1ca2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48b9_e9df_98eb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_48b9_e9df_98eb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_48b9_e9df_98eb/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_48b9_e9df_98eb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_48b9_e9df_98eb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_48b9_e9df_98eb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_48b9_e9df_98eb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_48b9_e9df_98eb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_48b9_e9df_98eb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_500d_0b21_eec9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_500d_0b21_eec9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_500d_0b21_eec9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_500d_0b21_eec9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_500d_0b21_eec9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_500d_0b21_eec9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_500d_0b21_eec9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_500d_0b21_eec9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_500d_0b21_eec9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e49_1946_d024", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1e49_1946_d024.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1e49_1946_d024/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1e49_1946_d024_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1e49_1946_d024_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1e49_1946_d024/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1e49_1946_d024.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1e49_1946_d024&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1e49_1946_d024"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1aa1_48e1_af58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1aa1_48e1_af58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1aa1_48e1_af58/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1aa1_48e1_af58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1aa1_48e1_af58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1aa1_48e1_af58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1aa1_48e1_af58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1aa1_48e1_af58&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1aa1_48e1_af58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a673_b54b_1938", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a673_b54b_1938.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a673_b54b_1938/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, smina.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, smina.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsmina (Sea-air Temperature Difference Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a673_b54b_1938_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a673_b54b_1938_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a673_b54b_1938/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a673_b54b_1938.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a673_b54b_1938&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a673_b54b_1938"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43dd_119b_a299", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_43dd_119b_a299.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_43dd_119b_a299/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_43dd_119b_a299_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_43dd_119b_a299_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_43dd_119b_a299/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_43dd_119b_a299.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_43dd_119b_a299&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_43dd_119b_a299"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54df_a689_224a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_54df_a689_224a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_54df_a689_224a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_54df_a689_224a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_54df_a689_224a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_54df_a689_224a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_54df_a689_224a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_54df_a689_224a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_54df_a689_224a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed0c_513c_dc53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ed0c_513c_dc53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ed0c_513c_dc53/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ed0c_513c_dc53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ed0c_513c_dc53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ed0c_513c_dc53/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ed0c_513c_dc53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ed0c_513c_dc53&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ed0c_513c_dc53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d6f_c292_0bd0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3d6f_c292_0bd0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3d6f_c292_0bd0/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3d6f_c292_0bd0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3d6f_c292_0bd0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3d6f_c292_0bd0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3d6f_c292_0bd0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3d6f_c292_0bd0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3d6f_c292_0bd0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3401_177c_65b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3401_177c_65b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3401_177c_65b8/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3401_177c_65b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3401_177c_65b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3401_177c_65b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3401_177c_65b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3401_177c_65b8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3401_177c_65b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c6ad_ac6e_d593", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c6ad_ac6e_d593.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c6ad_ac6e_d593/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c6ad_ac6e_d593_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c6ad_ac6e_d593_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c6ad_ac6e_d593/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c6ad_ac6e_d593.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c6ad_ac6e_d593&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c6ad_ac6e_d593"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b179_8d47_3cbc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b179_8d47_3cbc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b179_8d47_3cbc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b179_8d47_3cbc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b179_8d47_3cbc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b179_8d47_3cbc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b179_8d47_3cbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b179_8d47_3cbc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b179_8d47_3cbc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35b9_d715_11ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_35b9_d715_11ba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_35b9_d715_11ba/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_35b9_d715_11ba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_35b9_d715_11ba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_35b9_d715_11ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_35b9_d715_11ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_35b9_d715_11ba&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_35b9_d715_11ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e178_dce8_9000", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e178_dce8_9000.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e178_dce8_9000/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e178_dce8_9000_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e178_dce8_9000_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e178_dce8_9000/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e178_dce8_9000.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e178_dce8_9000&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e178_dce8_9000"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cc5_be90_df9c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cc5_be90_df9c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9cc5_be90_df9c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9cc5_be90_df9c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9cc5_be90_df9c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9cc5_be90_df9c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9cc5_be90_df9c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9cc5_be90_df9c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9cc5_be90_df9c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_864c_da3a_2c53", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_864c_da3a_2c53.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_864c_da3a_2c53/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_864c_da3a_2c53_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_864c_da3a_2c53_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_864c_da3a_2c53/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_864c_da3a_2c53.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_864c_da3a_2c53&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_864c_da3a_2c53"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ed8_a1f2_394b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8ed8_a1f2_394b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8ed8_a1f2_394b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8ed8_a1f2_394b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8ed8_a1f2_394b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8ed8_a1f2_394b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8ed8_a1f2_394b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8ed8_a1f2_394b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8ed8_a1f2_394b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f580_9756_2bb2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f580_9756_2bb2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f580_9756_2bb2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f580_9756_2bb2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f580_9756_2bb2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f580_9756_2bb2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f580_9756_2bb2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f580_9756_2bb2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f580_9756_2bb2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_588b_c283_d8cb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_588b_c283_d8cb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_588b_c283_d8cb/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_588b_c283_d8cb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_588b_c283_d8cb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_588b_c283_d8cb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_588b_c283_d8cb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_588b_c283_d8cb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_588b_c283_d8cb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0df_b294_12f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0df_b294_12f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f0df_b294_12f1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Mean at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f0df_b294_12f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f0df_b294_12f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f0df_b294_12f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f0df_b294_12f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f0df_b294_12f1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f0df_b294_12f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0b5_6294_75f5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f0b5_6294_75f5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f0b5_6294_75f5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f0b5_6294_75f5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f0b5_6294_75f5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f0b5_6294_75f5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f0b5_6294_75f5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f0b5_6294_75f5&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f0b5_6294_75f5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8bc9_6a86_4cda", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8bc9_6a86_4cda.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8bc9_6a86_4cda/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8bc9_6a86_4cda_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8bc9_6a86_4cda_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8bc9_6a86_4cda/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8bc9_6a86_4cda.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8bc9_6a86_4cda&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8bc9_6a86_4cda"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aac4_18a1_3e22", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aac4_18a1_3e22.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aac4_18a1_3e22/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aac4_18a1_3e22_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aac4_18a1_3e22_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aac4_18a1_3e22/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aac4_18a1_3e22.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aac4_18a1_3e22&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aac4_18a1_3e22"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18f1_8d98_5009", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_18f1_8d98_5009.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_18f1_8d98_5009/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_18f1_8d98_5009_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_18f1_8d98_5009_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_18f1_8d98_5009/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_18f1_8d98_5009.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_18f1_8d98_5009&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_18f1_8d98_5009"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4919_1800_5629", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4919_1800_5629.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4919_1800_5629/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4919_1800_5629_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4919_1800_5629_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4919_1800_5629/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4919_1800_5629.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4919_1800_5629&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4919_1800_5629"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5445_3d29_11f3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5445_3d29_11f3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5445_3d29_11f3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 1st Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5445_3d29_11f3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5445_3d29_11f3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5445_3d29_11f3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5445_3d29_11f3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5445_3d29_11f3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5445_3d29_11f3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_daf9_da23_57d2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_daf9_da23_57d2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_daf9_da23_57d2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_daf9_da23_57d2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_daf9_da23_57d2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_daf9_da23_57d2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_daf9_da23_57d2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_daf9_da23_57d2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_daf9_da23_57d2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1247_cb4d_696e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1247_cb4d_696e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1247_cb4d_696e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1247_cb4d_696e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1247_cb4d_696e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1247_cb4d_696e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1247_cb4d_696e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1247_cb4d_696e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1247_cb4d_696e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3174_3b59_db07", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3174_3b59_db07.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3174_3b59_db07/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 3rd Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3174_3b59_db07_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3174_3b59_db07_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3174_3b59_db07/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3174_3b59_db07.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3174_3b59_db07&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3174_3b59_db07"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d39_8b10_819c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d39_8b10_819c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9d39_8b10_819c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9d39_8b10_819c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9d39_8b10_819c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9d39_8b10_819c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9d39_8b10_819c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9d39_8b10_819c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9d39_8b10_819c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6977_71a2_7e83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6977_71a2_7e83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6977_71a2_7e83/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6977_71a2_7e83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6977_71a2_7e83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6977_71a2_7e83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6977_71a2_7e83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6977_71a2_7e83&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6977_71a2_7e83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8de4_0a87_f89e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8de4_0a87_f89e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8de4_0a87_f89e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly 5th Sextile at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8de4_0a87_f89e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8de4_0a87_f89e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8de4_0a87_f89e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8de4_0a87_f89e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8de4_0a87_f89e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8de4_0a87_f89e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8270_63c4_9f7d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8270_63c4_9f7d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8270_63c4_9f7d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8270_63c4_9f7d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8270_63c4_9f7d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8270_63c4_9f7d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8270_63c4_9f7d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8270_63c4_9f7d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8270_63c4_9f7d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03b5_5794_37e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_03b5_5794_37e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_03b5_5794_37e6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_03b5_5794_37e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_03b5_5794_37e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_03b5_5794_37e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_03b5_5794_37e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_03b5_5794_37e6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_03b5_5794_37e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c7d_1ae8_fb9b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6c7d_1ae8_fb9b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6c7d_1ae8_fb9b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, sst.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, sst.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsst (Sea Surface Temperature Monthly Standard Deviation at Surface, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6c7d_1ae8_fb9b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6c7d_1ae8_fb9b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6c7d_1ae8_fb9b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6c7d_1ae8_fb9b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6c7d_1ae8_fb9b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6c7d_1ae8_fb9b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e7d_03a4_ad1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e7d_03a4_ad1e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4e7d_03a4_ad1e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4e7d_03a4_ad1e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4e7d_03a4_ad1e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4e7d_03a4_ad1e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4e7d_03a4_ad1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4e7d_03a4_ad1e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4e7d_03a4_ad1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a67a_0416_2042", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a67a_0416_2042.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a67a_0416_2042/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a67a_0416_2042_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a67a_0416_2042_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a67a_0416_2042/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a67a_0416_2042.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a67a_0416_2042&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a67a_0416_2042"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fae1_0f17_792d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_fae1_0f17_792d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_fae1_0f17_792d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_fae1_0f17_792d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_fae1_0f17_792d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_fae1_0f17_792d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_fae1_0f17_792d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_fae1_0f17_792d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_fae1_0f17_792d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9027_8fa6_fc1c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9027_8fa6_fc1c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9027_8fa6_fc1c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9027_8fa6_fc1c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9027_8fa6_fc1c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9027_8fa6_fc1c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9027_8fa6_fc1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9027_8fa6_fc1c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9027_8fa6_fc1c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24da_3cbf_e967", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_24da_3cbf_e967.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_24da_3cbf_e967/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_24da_3cbf_e967_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_24da_3cbf_e967_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_24da_3cbf_e967/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_24da_3cbf_e967.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_24da_3cbf_e967&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_24da_3cbf_e967"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_934c_4900_5e03", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_934c_4900_5e03.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_934c_4900_5e03/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_934c_4900_5e03_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_934c_4900_5e03_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_934c_4900_5e03/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_934c_4900_5e03.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_934c_4900_5e03&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_934c_4900_5e03"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edc3_69d4_f8a3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edc3_69d4_f8a3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_edc3_69d4_f8a3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_edc3_69d4_f8a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_edc3_69d4_f8a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_edc3_69d4_f8a3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_edc3_69d4_f8a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_edc3_69d4_f8a3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_edc3_69d4_f8a3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e79_a380_b387", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8e79_a380_b387.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8e79_a380_b387/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8e79_a380_b387_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8e79_a380_b387_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8e79_a380_b387/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8e79_a380_b387.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8e79_a380_b387&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8e79_a380_b387"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0d8_56ab_9221", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c0d8_56ab_9221.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c0d8_56ab_9221/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c0d8_56ab_9221_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c0d8_56ab_9221_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c0d8_56ab_9221/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c0d8_56ab_9221.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c0d8_56ab_9221&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c0d8_56ab_9221"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_696d_25c9_79dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_696d_25c9_79dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_696d_25c9_79dc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_696d_25c9_79dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_696d_25c9_79dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_696d_25c9_79dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_696d_25c9_79dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_696d_25c9_79dc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_696d_25c9_79dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fd6_746d_1506", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2fd6_746d_1506.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2fd6_746d_1506/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2fd6_746d_1506_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2fd6_746d_1506_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2fd6_746d_1506/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2fd6_746d_1506.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2fd6_746d_1506&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2fd6_746d_1506"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cd8_d7c5_75ed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9cd8_d7c5_75ed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9cd8_d7c5_75ed/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9cd8_d7c5_75ed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9cd8_d7c5_75ed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9cd8_d7c5_75ed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9cd8_d7c5_75ed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9cd8_d7c5_75ed&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9cd8_d7c5_75ed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_36aa_1dc0_3cf7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_36aa_1dc0_3cf7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_36aa_1dc0_3cf7/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_36aa_1dc0_3cf7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_36aa_1dc0_3cf7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_36aa_1dc0_3cf7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_36aa_1dc0_3cf7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_36aa_1dc0_3cf7&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_36aa_1dc0_3cf7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_738f_d38f_2a79", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_738f_d38f_2a79.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_738f_d38f_2a79/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_738f_d38f_2a79_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_738f_d38f_2a79_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_738f_d38f_2a79/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_738f_d38f_2a79.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_738f_d38f_2a79&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_738f_d38f_2a79"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ca5_9f02_13ed", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ca5_9f02_13ed.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9ca5_9f02_13ed/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9ca5_9f02_13ed_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9ca5_9f02_13ed_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9ca5_9f02_13ed/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9ca5_9f02_13ed.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9ca5_9f02_13ed&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9ca5_9f02_13ed"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0eef_875c_a0d3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0eef_875c_a0d3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0eef_875c_a0d3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0eef_875c_a0d3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0eef_875c_a0d3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0eef_875c_a0d3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0eef_875c_a0d3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0eef_875c_a0d3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_0eef_875c_a0d3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a20_8cb2_4293", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a20_8cb2_4293.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a20_8cb2_4293/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a20_8cb2_4293_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a20_8cb2_4293_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a20_8cb2_4293/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a20_8cb2_4293.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a20_8cb2_4293&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0a20_8cb2_4293"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_680b_cc89_0631", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_680b_cc89_0631.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_680b_cc89_0631/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_680b_cc89_0631_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_680b_cc89_0631_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_680b_cc89_0631/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_680b_cc89_0631.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_680b_cc89_0631&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_680b_cc89_0631"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_84eb_4f94_cf67", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_84eb_4f94_cf67.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_84eb_4f94_cf67/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_84eb_4f94_cf67_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_84eb_4f94_cf67_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_84eb_4f94_cf67/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_84eb_4f94_cf67.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_84eb_4f94_cf67&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_84eb_4f94_cf67"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3729_101e_8e2f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3729_101e_8e2f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3729_101e_8e2f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3729_101e_8e2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3729_101e_8e2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3729_101e_8e2f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3729_101e_8e2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3729_101e_8e2f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3729_101e_8e2f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ada8_4906_3b43", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ada8_4906_3b43.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ada8_4906_3b43/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ada8_4906_3b43_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ada8_4906_3b43_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ada8_4906_3b43/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ada8_4906_3b43.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ada8_4906_3b43&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ada8_4906_3b43"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b193_63b4_c0fa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b193_63b4_c0fa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b193_63b4_c0fa/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b193_63b4_c0fa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b193_63b4_c0fa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b193_63b4_c0fa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b193_63b4_c0fa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b193_63b4_c0fa&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_b193_63b4_c0fa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d0c_205d_e90e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d0c_205d_e90e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d0c_205d_e90e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d0c_205d_e90e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d0c_205d_e90e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d0c_205d_e90e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d0c_205d_e90e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d0c_205d_e90e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4d0c_205d_e90e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b46d_3b22_5014", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b46d_3b22_5014.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b46d_3b22_5014/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b46d_3b22_5014_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b46d_3b22_5014_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b46d_3b22_5014/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b46d_3b22_5014.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b46d_3b22_5014&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b46d_3b22_5014"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_128b_8c32_32e0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_128b_8c32_32e0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_128b_8c32_32e0/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_128b_8c32_32e0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_128b_8c32_32e0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_128b_8c32_32e0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_128b_8c32_32e0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_128b_8c32_32e0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_128b_8c32_32e0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7527_b109_b3b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7527_b109_b3b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7527_b109_b3b8/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7527_b109_b3b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7527_b109_b3b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7527_b109_b3b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7527_b109_b3b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7527_b109_b3b8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7527_b109_b3b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e817_a275_8f5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e817_a275_8f5b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e817_a275_8f5b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuairt (Sensible Heat Trans Eastward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e817_a275_8f5b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e817_a275_8f5b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e817_a275_8f5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e817_a275_8f5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e817_a275_8f5b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e817_a275_8f5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4a5_f909_25af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4a5_f909_25af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e4a5_f909_25af/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e4a5_f909_25af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e4a5_f909_25af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e4a5_f909_25af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e4a5_f909_25af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e4a5_f909_25af&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e4a5_f909_25af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10b7_e694_bc1d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10b7_e694_bc1d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_10b7_e694_bc1d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_10b7_e694_bc1d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_10b7_e694_bc1d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_10b7_e694_bc1d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_10b7_e694_bc1d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_10b7_e694_bc1d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_10b7_e694_bc1d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5586_9422_ed5b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5586_9422_ed5b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5586_9422_ed5b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5586_9422_ed5b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5586_9422_ed5b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5586_9422_ed5b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5586_9422_ed5b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5586_9422_ed5b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5586_9422_ed5b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5023_75e6_396b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5023_75e6_396b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5023_75e6_396b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5023_75e6_396b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5023_75e6_396b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5023_75e6_396b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5023_75e6_396b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5023_75e6_396b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5023_75e6_396b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3796_57eb_68b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3796_57eb_68b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3796_57eb_68b5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3796_57eb_68b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3796_57eb_68b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3796_57eb_68b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3796_57eb_68b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3796_57eb_68b5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3796_57eb_68b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_655a_a9a7_3a0e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_655a_a9a7_3a0e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_655a_a9a7_3a0e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_655a_a9a7_3a0e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_655a_a9a7_3a0e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_655a_a9a7_3a0e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_655a_a9a7_3a0e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_655a_a9a7_3a0e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_655a_a9a7_3a0e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ae1_370f_50df", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5ae1_370f_50df.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5ae1_370f_50df/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5ae1_370f_50df_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5ae1_370f_50df_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5ae1_370f_50df/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5ae1_370f_50df.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5ae1_370f_50df&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5ae1_370f_50df"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_122c_1820_5020", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_122c_1820_5020.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_122c_1820_5020/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_122c_1820_5020_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_122c_1820_5020_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_122c_1820_5020/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_122c_1820_5020.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_122c_1820_5020&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_122c_1820_5020"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d000_2650_9424", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d000_2650_9424.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d000_2650_9424/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d000_2650_9424_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d000_2650_9424_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d000_2650_9424/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d000_2650_9424.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d000_2650_9424&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d000_2650_9424"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14c6_1a44_1578", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_14c6_1a44_1578.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_14c6_1a44_1578/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_14c6_1a44_1578_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_14c6_1a44_1578_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_14c6_1a44_1578/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_14c6_1a44_1578.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_14c6_1a44_1578&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_14c6_1a44_1578"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f63_c111_87aa", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2f63_c111_87aa.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2f63_c111_87aa/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2f63_c111_87aa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2f63_c111_87aa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2f63_c111_87aa/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2f63_c111_87aa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2f63_c111_87aa&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2f63_c111_87aa"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_374a_4299_b214", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_374a_4299_b214.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_374a_4299_b214/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_374a_4299_b214_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_374a_4299_b214_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_374a_4299_b214/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_374a_4299_b214.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_374a_4299_b214&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_374a_4299_b214"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8233_f885_62c1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8233_f885_62c1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8233_f885_62c1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8233_f885_62c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8233_f885_62c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8233_f885_62c1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8233_f885_62c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8233_f885_62c1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8233_f885_62c1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cab_fd77_01c2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cab_fd77_01c2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2cab_fd77_01c2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2cab_fd77_01c2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2cab_fd77_01c2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2cab_fd77_01c2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2cab_fd77_01c2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2cab_fd77_01c2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2cab_fd77_01c2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7129_7b57_2547", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7129_7b57_2547.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7129_7b57_2547/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7129_7b57_2547_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7129_7b57_2547_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7129_7b57_2547/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7129_7b57_2547.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7129_7b57_2547&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7129_7b57_2547"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10bf_feed_0c38", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_10bf_feed_0c38.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_10bf_feed_0c38/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_10bf_feed_0c38_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_10bf_feed_0c38_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_10bf_feed_0c38/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_10bf_feed_0c38.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_10bf_feed_0c38&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_10bf_feed_0c38"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5640_153b_c6a6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5640_153b_c6a6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5640_153b_c6a6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5640_153b_c6a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5640_153b_c6a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5640_153b_c6a6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5640_153b_c6a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5640_153b_c6a6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5640_153b_c6a6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7528_6ce1_143c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7528_6ce1_143c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7528_6ce1_143c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7528_6ce1_143c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7528_6ce1_143c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7528_6ce1_143c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7528_6ce1_143c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7528_6ce1_143c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7528_6ce1_143c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70fe_b178_a665", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_70fe_b178_a665.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_70fe_b178_a665/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_70fe_b178_a665_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_70fe_b178_a665_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_70fe_b178_a665/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_70fe_b178_a665.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_70fe_b178_a665&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_70fe_b178_a665"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17bd_824b_6c37", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17bd_824b_6c37.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_17bd_824b_6c37/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_17bd_824b_6c37_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_17bd_824b_6c37_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_17bd_824b_6c37/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_17bd_824b_6c37.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_17bd_824b_6c37&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_17bd_824b_6c37"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e32d_6191_06e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e32d_6191_06e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e32d_6191_06e2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e32d_6191_06e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e32d_6191_06e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e32d_6191_06e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e32d_6191_06e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e32d_6191_06e2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e32d_6191_06e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3835_ef1f_f27e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3835_ef1f_f27e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3835_ef1f_f27e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3835_ef1f_f27e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3835_ef1f_f27e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3835_ef1f_f27e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3835_ef1f_f27e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3835_ef1f_f27e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3835_ef1f_f27e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6940_6b84_ee8c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6940_6b84_ee8c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6940_6b84_ee8c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6940_6b84_ee8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6940_6b84_ee8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6940_6b84_ee8c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6940_6b84_ee8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6940_6b84_ee8c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6940_6b84_ee8c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bcdf_f8e4_1f51", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bcdf_f8e4_1f51.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bcdf_f8e4_1f51/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bcdf_f8e4_1f51_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bcdf_f8e4_1f51_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bcdf_f8e4_1f51/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bcdf_f8e4_1f51.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bcdf_f8e4_1f51&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bcdf_f8e4_1f51"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6b4_ca86_0c96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6b4_ca86_0c96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d6b4_ca86_0c96/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d6b4_ca86_0c96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d6b4_ca86_0c96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d6b4_ca86_0c96/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d6b4_ca86_0c96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d6b4_ca86_0c96&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d6b4_ca86_0c96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a10_59de_2572", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1a10_59de_2572.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1a10_59de_2572/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1a10_59de_2572_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1a10_59de_2572_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1a10_59de_2572/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1a10_59de_2572.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1a10_59de_2572&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1a10_59de_2572"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65f3_453d_8a6c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_65f3_453d_8a6c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_65f3_453d_8a6c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, ulflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nulflx (Zonal Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_65f3_453d_8a6c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_65f3_453d_8a6c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_65f3_453d_8a6c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_65f3_453d_8a6c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_65f3_453d_8a6c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_65f3_453d_8a6c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad37_1144_b501", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ad37_1144_b501.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ad37_1144_b501/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ad37_1144_b501_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ad37_1144_b501_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ad37_1144_b501/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ad37_1144_b501.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ad37_1144_b501&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ad37_1144_b501"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c1b_efd8_f457", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c1b_efd8_f457.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3c1b_efd8_f457/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3c1b_efd8_f457_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3c1b_efd8_f457_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c1b_efd8_f457/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c1b_efd8_f457.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c1b_efd8_f457&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3c1b_efd8_f457"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f0c_b4b5_4ab5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6f0c_b4b5_4ab5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6f0c_b4b5_4ab5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6f0c_b4b5_4ab5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6f0c_b4b5_4ab5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6f0c_b4b5_4ab5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6f0c_b4b5_4ab5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6f0c_b4b5_4ab5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6f0c_b4b5_4ab5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ecd_eb78_9e33", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ecd_eb78_9e33.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ecd_eb78_9e33/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ecd_eb78_9e33_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ecd_eb78_9e33_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ecd_eb78_9e33/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ecd_eb78_9e33.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ecd_eb78_9e33&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7ecd_eb78_9e33"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_77f8_cb7c_8ca1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_77f8_cb7c_8ca1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_77f8_cb7c_8ca1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_77f8_cb7c_8ca1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_77f8_cb7c_8ca1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_77f8_cb7c_8ca1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_77f8_cb7c_8ca1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_77f8_cb7c_8ca1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_77f8_cb7c_8ca1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebcd_205d_12cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ebcd_205d_12cc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ebcd_205d_12cc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ebcd_205d_12cc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ebcd_205d_12cc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ebcd_205d_12cc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ebcd_205d_12cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ebcd_205d_12cc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ebcd_205d_12cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09a3_6fc1_968e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09a3_6fc1_968e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_09a3_6fc1_968e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_09a3_6fc1_968e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_09a3_6fc1_968e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_09a3_6fc1_968e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_09a3_6fc1_968e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_09a3_6fc1_968e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_09a3_6fc1_968e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8296_c034_8f0b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8296_c034_8f0b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8296_c034_8f0b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8296_c034_8f0b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8296_c034_8f0b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8296_c034_8f0b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8296_c034_8f0b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8296_c034_8f0b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8296_c034_8f0b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4ed_ae8a_eb04", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4ed_ae8a_eb04.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e4ed_ae8a_eb04/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e4ed_ae8a_eb04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e4ed_ae8a_eb04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e4ed_ae8a_eb04/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e4ed_ae8a_eb04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e4ed_ae8a_eb04&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e4ed_ae8a_eb04"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6fa_31d6_c7f6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d6fa_31d6_c7f6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d6fa_31d6_c7f6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d6fa_31d6_c7f6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d6fa_31d6_c7f6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d6fa_31d6_c7f6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d6fa_31d6_c7f6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d6fa_31d6_c7f6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d6fa_31d6_c7f6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b3f_9510_8e98", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6b3f_9510_8e98.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6b3f_9510_8e98/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6b3f_9510_8e98_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6b3f_9510_8e98_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6b3f_9510_8e98/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6b3f_9510_8e98.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6b3f_9510_8e98&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6b3f_9510_8e98"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7097_a0a6_ada6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7097_a0a6_ada6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7097_a0a6_ada6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7097_a0a6_ada6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7097_a0a6_ada6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7097_a0a6_ada6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7097_a0a6_ada6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7097_a0a6_ada6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7097_a0a6_ada6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a642_9348_4723", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a642_9348_4723.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a642_9348_4723/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a642_9348_4723_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a642_9348_4723_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a642_9348_4723/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a642_9348_4723.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a642_9348_4723&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a642_9348_4723"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_038b_19ab_ea91", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_038b_19ab_ea91.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_038b_19ab_ea91/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_038b_19ab_ea91_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_038b_19ab_ea91_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_038b_19ab_ea91/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_038b_19ab_ea91.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_038b_19ab_ea91&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_038b_19ab_ea91"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05e9_0155_327a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05e9_0155_327a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_05e9_0155_327a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_05e9_0155_327a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_05e9_0155_327a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_05e9_0155_327a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_05e9_0155_327a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_05e9_0155_327a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_05e9_0155_327a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b53_d3b6_2d96", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b53_d3b6_2d96.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2b53_d3b6_2d96/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2b53_d3b6_2d96_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2b53_d3b6_2d96_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2b53_d3b6_2d96/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2b53_d3b6_2d96.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2b53_d3b6_2d96&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2b53_d3b6_2d96"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2306_39e7_c5cf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2306_39e7_c5cf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2306_39e7_c5cf/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2306_39e7_c5cf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2306_39e7_c5cf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2306_39e7_c5cf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2306_39e7_c5cf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2306_39e7_c5cf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2306_39e7_c5cf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e7d_da5f_4c70", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4e7d_da5f_4c70.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4e7d_da5f_4c70/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4e7d_da5f_4c70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4e7d_da5f_4c70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4e7d_da5f_4c70/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4e7d_da5f_4c70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4e7d_da5f_4c70&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4e7d_da5f_4c70"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e920_3f8f_bc06", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e920_3f8f_bc06.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e920_3f8f_bc06/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e920_3f8f_bc06_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e920_3f8f_bc06_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e920_3f8f_bc06/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e920_3f8f_bc06.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e920_3f8f_bc06&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e920_3f8f_bc06"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f4f_e21e_4b47", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1f4f_e21e_4b47.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1f4f_e21e_4b47/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1f4f_e21e_4b47_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1f4f_e21e_4b47_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1f4f_e21e_4b47/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1f4f_e21e_4b47.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1f4f_e21e_4b47&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1f4f_e21e_4b47"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6033_98dd_6d0e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6033_98dd_6d0e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6033_98dd_6d0e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6033_98dd_6d0e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6033_98dd_6d0e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6033_98dd_6d0e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6033_98dd_6d0e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6033_98dd_6d0e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6033_98dd_6d0e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6385_f049_c832", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6385_f049_c832.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6385_f049_c832/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6385_f049_c832_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6385_f049_c832_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6385_f049_c832/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6385_f049_c832.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6385_f049_c832&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6385_f049_c832"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c67_0f7d_0183", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0c67_0f7d_0183.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0c67_0f7d_0183/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0c67_0f7d_0183_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0c67_0f7d_0183_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0c67_0f7d_0183/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0c67_0f7d_0183.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0c67_0f7d_0183&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0c67_0f7d_0183"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_565e_e74e_7093", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_565e_e74e_7093.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_565e_e74e_7093/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_565e_e74e_7093_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_565e_e74e_7093_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_565e_e74e_7093/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_565e_e74e_7093.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_565e_e74e_7093&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_565e_e74e_7093"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e19c_c698_4f52", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e19c_c698_4f52.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e19c_c698_4f52/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e19c_c698_4f52_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e19c_c698_4f52_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e19c_c698_4f52/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e19c_c698_4f52.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e19c_c698_4f52&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e19c_c698_4f52"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_127a_a805_229f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_127a_a805_229f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_127a_a805_229f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_127a_a805_229f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_127a_a805_229f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_127a_a805_229f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_127a_a805_229f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_127a_a805_229f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_127a_a805_229f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88d3_9c02_d049", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_88d3_9c02_d049.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_88d3_9c02_d049/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, upstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nupstr (u-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_88d3_9c02_d049_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_88d3_9c02_d049_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_88d3_9c02_d049/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_88d3_9c02_d049.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_88d3_9c02_d049&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_88d3_9c02_d049"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8bc2_bcfe_d0bc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8bc2_bcfe_d0bc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8bc2_bcfe_d0bc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8bc2_bcfe_d0bc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8bc2_bcfe_d0bc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8bc2_bcfe_d0bc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8bc2_bcfe_d0bc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8bc2_bcfe_d0bc&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8bc2_bcfe_d0bc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a998_1db9_facc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a998_1db9_facc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a998_1db9_facc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a998_1db9_facc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a998_1db9_facc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a998_1db9_facc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a998_1db9_facc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a998_1db9_facc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a998_1db9_facc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aced_975c_b088", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aced_975c_b088.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aced_975c_b088/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aced_975c_b088_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aced_975c_b088_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aced_975c_b088/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aced_975c_b088.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aced_975c_b088&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aced_975c_b088"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_23b4_3870_1b9a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_23b4_3870_1b9a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_23b4_3870_1b9a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_23b4_3870_1b9a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_23b4_3870_1b9a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_23b4_3870_1b9a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_23b4_3870_1b9a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_23b4_3870_1b9a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_23b4_3870_1b9a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e356_153d_6ea3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e356_153d_6ea3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e356_153d_6ea3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e356_153d_6ea3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e356_153d_6ea3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e356_153d_6ea3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e356_153d_6ea3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e356_153d_6ea3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e356_153d_6ea3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5f1_771c_6a58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f5f1_771c_6a58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f5f1_771c_6a58/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f5f1_771c_6a58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f5f1_771c_6a58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f5f1_771c_6a58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f5f1_771c_6a58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f5f1_771c_6a58&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f5f1_771c_6a58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73d5_1103_7cf4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_73d5_1103_7cf4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_73d5_1103_7cf4/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_73d5_1103_7cf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_73d5_1103_7cf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_73d5_1103_7cf4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_73d5_1103_7cf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_73d5_1103_7cf4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_73d5_1103_7cf4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50dd_ba58_ab03", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_50dd_ba58_ab03.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_50dd_ba58_ab03/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_50dd_ba58_ab03_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_50dd_ba58_ab03_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_50dd_ba58_ab03/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_50dd_ba58_ab03.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_50dd_ba58_ab03&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_50dd_ba58_ab03"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aacf_34a4_931e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aacf_34a4_931e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aacf_34a4_931e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aacf_34a4_931e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aacf_34a4_931e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aacf_34a4_931e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aacf_34a4_931e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aacf_34a4_931e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aacf_34a4_931e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_016b_cc1f_4267", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_016b_cc1f_4267.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_016b_cc1f_4267/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_016b_cc1f_4267_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_016b_cc1f_4267_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_016b_cc1f_4267/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_016b_cc1f_4267.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_016b_cc1f_4267&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_016b_cc1f_4267"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05a5_fbd7_cf9b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_05a5_fbd7_cf9b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_05a5_fbd7_cf9b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_05a5_fbd7_cf9b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_05a5_fbd7_cf9b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_05a5_fbd7_cf9b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_05a5_fbd7_cf9b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_05a5_fbd7_cf9b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_05a5_fbd7_cf9b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b7c4_969e_4b88", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b7c4_969e_4b88.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b7c4_969e_4b88/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b7c4_969e_4b88_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b7c4_969e_4b88_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b7c4_969e_4b88/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b7c4_969e_4b88.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b7c4_969e_4b88&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b7c4_969e_4b88"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6124_240f_356b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6124_240f_356b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6124_240f_356b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6124_240f_356b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6124_240f_356b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6124_240f_356b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6124_240f_356b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6124_240f_356b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6124_240f_356b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bec5_ee65_f43b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bec5_ee65_f43b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bec5_ee65_f43b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bec5_ee65_f43b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bec5_ee65_f43b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bec5_ee65_f43b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bec5_ee65_f43b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bec5_ee65_f43b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bec5_ee65_f43b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df6e_bce7_cb6b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_df6e_bce7_cb6b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_df6e_bce7_cb6b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_df6e_bce7_cb6b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_df6e_bce7_cb6b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_df6e_bce7_cb6b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_df6e_bce7_cb6b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_df6e_bce7_cb6b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_df6e_bce7_cb6b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abc8_85be_ae0c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abc8_85be_ae0c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_abc8_85be_ae0c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_abc8_85be_ae0c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_abc8_85be_ae0c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_abc8_85be_ae0c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_abc8_85be_ae0c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_abc8_85be_ae0c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_abc8_85be_ae0c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f7d_4e53_187e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7f7d_4e53_187e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7f7d_4e53_187e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7f7d_4e53_187e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7f7d_4e53_187e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7f7d_4e53_187e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7f7d_4e53_187e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7f7d_4e53_187e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7f7d_4e53_187e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9cb_0bc2_1b5c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f9cb_0bc2_1b5c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f9cb_0bc2_1b5c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f9cb_0bc2_1b5c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f9cb_0bc2_1b5c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f9cb_0bc2_1b5c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f9cb_0bc2_1b5c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f9cb_0bc2_1b5c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f9cb_0bc2_1b5c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5814_174a_1767", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5814_174a_1767.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5814_174a_1767/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5814_174a_1767_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5814_174a_1767_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5814_174a_1767/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5814_174a_1767.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5814_174a_1767&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_5814_174a_1767"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1561_afc3_5760", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1561_afc3_5760.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1561_afc3_5760/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1561_afc3_5760_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1561_afc3_5760_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1561_afc3_5760/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1561_afc3_5760.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1561_afc3_5760&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1561_afc3_5760"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a95_8758_6ed0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a95_8758_6ed0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4a95_8758_6ed0/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4a95_8758_6ed0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4a95_8758_6ed0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4a95_8758_6ed0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4a95_8758_6ed0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4a95_8758_6ed0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4a95_8758_6ed0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80b7_c30a_bb98", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_80b7_c30a_bb98.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_80b7_c30a_bb98/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_80b7_c30a_bb98_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_80b7_c30a_bb98_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_80b7_c30a_bb98/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_80b7_c30a_bb98.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_80b7_c30a_bb98&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_80b7_c30a_bb98"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_918c_3ec6_ee9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_918c_3ec6_ee9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_918c_3ec6_ee9d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_918c_3ec6_ee9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_918c_3ec6_ee9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_918c_3ec6_ee9d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_918c_3ec6_ee9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_918c_3ec6_ee9d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_918c_3ec6_ee9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9a2_d3c2_e25a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a9a2_d3c2_e25a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a9a2_d3c2_e25a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a9a2_d3c2_e25a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a9a2_d3c2_e25a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a9a2_d3c2_e25a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a9a2_d3c2_e25a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a9a2_d3c2_e25a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a9a2_d3c2_e25a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d3a_96a7_3ec4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d3a_96a7_3ec4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d3a_96a7_3ec4/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d3a_96a7_3ec4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d3a_96a7_3ec4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d3a_96a7_3ec4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d3a_96a7_3ec4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d3a_96a7_3ec4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4d3a_96a7_3ec4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d09_9f2a_e64e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d09_9f2a_e64e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d09_9f2a_e64e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d09_9f2a_e64e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d09_9f2a_e64e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d09_9f2a_e64e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d09_9f2a_e64e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d09_9f2a_e64e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8d09_9f2a_e64e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_def4_c88f_ef5a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_def4_c88f_ef5a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_def4_c88f_ef5a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuspeh (Latent Heat Trans Eastward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_def4_c88f_ef5a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_def4_c88f_ef5a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_def4_c88f_ef5a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_def4_c88f_ef5a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_def4_c88f_ef5a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_def4_c88f_ef5a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e676_7ade_117e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e676_7ade_117e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e676_7ade_117e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e676_7ade_117e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e676_7ade_117e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e676_7ade_117e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e676_7ade_117e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e676_7ade_117e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e676_7ade_117e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e26_9bf7_184a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2e26_9bf7_184a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2e26_9bf7_184a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2e26_9bf7_184a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2e26_9bf7_184a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2e26_9bf7_184a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2e26_9bf7_184a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2e26_9bf7_184a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2e26_9bf7_184a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc0e_46bc_9299", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cc0e_46bc_9299.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cc0e_46bc_9299/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cc0e_46bc_9299_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cc0e_46bc_9299_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cc0e_46bc_9299/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cc0e_46bc_9299.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cc0e_46bc_9299&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_cc0e_46bc_9299"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38eb_9a0a_7a1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_38eb_9a0a_7a1e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_38eb_9a0a_7a1e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_38eb_9a0a_7a1e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_38eb_9a0a_7a1e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_38eb_9a0a_7a1e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_38eb_9a0a_7a1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_38eb_9a0a_7a1e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_38eb_9a0a_7a1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3518_5158_76e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3518_5158_76e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3518_5158_76e2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3518_5158_76e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3518_5158_76e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3518_5158_76e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3518_5158_76e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3518_5158_76e2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3518_5158_76e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e8c4_86c9_0ebf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e8c4_86c9_0ebf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e8c4_86c9_0ebf/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e8c4_86c9_0ebf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e8c4_86c9_0ebf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e8c4_86c9_0ebf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e8c4_86c9_0ebf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e8c4_86c9_0ebf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e8c4_86c9_0ebf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9771_69fc_8a7f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9771_69fc_8a7f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9771_69fc_8a7f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9771_69fc_8a7f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9771_69fc_8a7f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9771_69fc_8a7f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9771_69fc_8a7f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9771_69fc_8a7f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9771_69fc_8a7f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5a1_b47d_6427", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a5a1_b47d_6427.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a5a1_b47d_6427/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a5a1_b47d_6427_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a5a1_b47d_6427_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a5a1_b47d_6427/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a5a1_b47d_6427.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a5a1_b47d_6427&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a5a1_b47d_6427"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a917_af2e_52bf", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a917_af2e_52bf.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a917_af2e_52bf/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a917_af2e_52bf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a917_af2e_52bf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a917_af2e_52bf/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a917_af2e_52bf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a917_af2e_52bf&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a917_af2e_52bf"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f964_804e_6bda", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f964_804e_6bda.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f964_804e_6bda/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f964_804e_6bda_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f964_804e_6bda_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f964_804e_6bda/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f964_804e_6bda.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f964_804e_6bda&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_f964_804e_6bda"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7f0_1abd_ee60", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d7f0_1abd_ee60.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d7f0_1abd_ee60/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d7f0_1abd_ee60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d7f0_1abd_ee60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d7f0_1abd_ee60/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d7f0_1abd_ee60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d7f0_1abd_ee60&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d7f0_1abd_ee60"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e778_3643_5e9d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e778_3643_5e9d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e778_3643_5e9d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e778_3643_5e9d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e778_3643_5e9d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e778_3643_5e9d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e778_3643_5e9d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e778_3643_5e9d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e778_3643_5e9d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7702_5efe_5567", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7702_5efe_5567.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7702_5efe_5567/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7702_5efe_5567_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7702_5efe_5567_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7702_5efe_5567/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7702_5efe_5567.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7702_5efe_5567&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7702_5efe_5567"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa42_b6ba_61f7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_aa42_b6ba_61f7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_aa42_b6ba_61f7/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_aa42_b6ba_61f7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_aa42_b6ba_61f7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_aa42_b6ba_61f7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_aa42_b6ba_61f7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_aa42_b6ba_61f7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_aa42_b6ba_61f7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b47e_d514_f223", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b47e_d514_f223.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b47e_d514_f223/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b47e_d514_f223_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b47e_d514_f223_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b47e_d514_f223/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b47e_d514_f223.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b47e_d514_f223&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b47e_d514_f223"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_beff_a27a_4e87", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_beff_a27a_4e87.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_beff_a27a_4e87/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_beff_a27a_4e87_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_beff_a27a_4e87_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_beff_a27a_4e87/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_beff_a27a_4e87.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_beff_a27a_4e87&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_beff_a27a_4e87"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5eee_938e_f4e9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5eee_938e_f4e9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5eee_938e_f4e9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5eee_938e_f4e9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5eee_938e_f4e9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5eee_938e_f4e9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5eee_938e_f4e9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5eee_938e_f4e9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5eee_938e_f4e9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72bf_cfde_f40e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72bf_cfde_f40e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_72bf_cfde_f40e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_72bf_cfde_f40e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_72bf_cfde_f40e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_72bf_cfde_f40e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_72bf_cfde_f40e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_72bf_cfde_f40e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_72bf_cfde_f40e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17d4_c76e_c8fd", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_17d4_c76e_c8fd.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_17d4_c76e_c8fd/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_17d4_c76e_c8fd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_17d4_c76e_c8fd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_17d4_c76e_c8fd/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_17d4_c76e_c8fd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_17d4_c76e_c8fd&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_17d4_c76e_c8fd"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2566_cc7e_9215", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2566_cc7e_9215.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2566_cc7e_9215/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2566_cc7e_9215_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2566_cc7e_9215_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2566_cc7e_9215/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2566_cc7e_9215.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2566_cc7e_9215&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2566_cc7e_9215"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5568_c5cc_140b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5568_c5cc_140b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5568_c5cc_140b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5568_c5cc_140b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5568_c5cc_140b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5568_c5cc_140b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5568_c5cc_140b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5568_c5cc_140b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5568_c5cc_140b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdf5_7bae_e8b2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdf5_7bae_e8b2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bdf5_7bae_e8b2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bdf5_7bae_e8b2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bdf5_7bae_e8b2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bdf5_7bae_e8b2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bdf5_7bae_e8b2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bdf5_7bae_e8b2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_bdf5_7bae_e8b2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b2cf_9057_097c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b2cf_9057_097c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b2cf_9057_097c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b2cf_9057_097c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b2cf_9057_097c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b2cf_9057_097c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b2cf_9057_097c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b2cf_9057_097c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b2cf_9057_097c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7a9_a2e7_7a33", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e7a9_a2e7_7a33.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e7a9_a2e7_7a33/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e7a9_a2e7_7a33_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e7a9_a2e7_7a33_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e7a9_a2e7_7a33/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e7a9_a2e7_7a33.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e7a9_a2e7_7a33&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e7a9_a2e7_7a33"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d59f_bfaf_7c5a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d59f_bfaf_7c5a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d59f_bfaf_7c5a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d59f_bfaf_7c5a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d59f_bfaf_7c5a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d59f_bfaf_7c5a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d59f_bfaf_7c5a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d59f_bfaf_7c5a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d59f_bfaf_7c5a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_585f_c5d3_6a08", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_585f_c5d3_6a08.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_585f_c5d3_6a08/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_585f_c5d3_6a08_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_585f_c5d3_6a08_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_585f_c5d3_6a08/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_585f_c5d3_6a08.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_585f_c5d3_6a08&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_585f_c5d3_6a08"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cfd_190b_90fe", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cfd_190b_90fe.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8cfd_190b_90fe/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8cfd_190b_90fe_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8cfd_190b_90fe_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8cfd_190b_90fe/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8cfd_190b_90fe.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8cfd_190b_90fe&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8cfd_190b_90fe"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_276e_62b5_cb4c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_276e_62b5_cb4c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_276e_62b5_cb4c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_276e_62b5_cb4c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_276e_62b5_cb4c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_276e_62b5_cb4c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_276e_62b5_cb4c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_276e_62b5_cb4c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_276e_62b5_cb4c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06da_24fc_c1c4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_06da_24fc_c1c4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_06da_24fc_c1c4/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_06da_24fc_c1c4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_06da_24fc_c1c4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_06da_24fc_c1c4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_06da_24fc_c1c4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_06da_24fc_c1c4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_06da_24fc_c1c4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3080_ebd8_9f01", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3080_ebd8_9f01.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3080_ebd8_9f01/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, uwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nuwnd (u-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3080_ebd8_9f01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3080_ebd8_9f01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3080_ebd8_9f01/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3080_ebd8_9f01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3080_ebd8_9f01&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3080_ebd8_9f01"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_47ae_bfa2_ab5f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_47ae_bfa2_ab5f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_47ae_bfa2_ab5f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_47ae_bfa2_ab5f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_47ae_bfa2_ab5f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_47ae_bfa2_ab5f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_47ae_bfa2_ab5f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_47ae_bfa2_ab5f&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_47ae_bfa2_ab5f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a3c_5eb0_a198", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a3c_5eb0_a198.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a3c_5eb0_a198/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a3c_5eb0_a198_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a3c_5eb0_a198_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a3c_5eb0_a198/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a3c_5eb0_a198.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a3c_5eb0_a198&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3a3c_5eb0_a198"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af89_4184_afc9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_af89_4184_afc9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_af89_4184_afc9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_af89_4184_afc9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_af89_4184_afc9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_af89_4184_afc9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_af89_4184_afc9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_af89_4184_afc9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_af89_4184_afc9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3534_54e5_ce6c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3534_54e5_ce6c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3534_54e5_ce6c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3534_54e5_ce6c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3534_54e5_ce6c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3534_54e5_ce6c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3534_54e5_ce6c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3534_54e5_ce6c&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3534_54e5_ce6c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_313b_cce6_dbb2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_313b_cce6_dbb2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_313b_cce6_dbb2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_313b_cce6_dbb2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_313b_cce6_dbb2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_313b_cce6_dbb2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_313b_cce6_dbb2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_313b_cce6_dbb2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_313b_cce6_dbb2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a76_1bec_1e78", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a76_1bec_1e78.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9a76_1bec_1e78/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9a76_1bec_1e78_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9a76_1bec_1e78_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9a76_1bec_1e78/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9a76_1bec_1e78.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9a76_1bec_1e78&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9a76_1bec_1e78"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97bf_80ab_dd01", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_97bf_80ab_dd01.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_97bf_80ab_dd01/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_97bf_80ab_dd01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_97bf_80ab_dd01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_97bf_80ab_dd01/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_97bf_80ab_dd01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_97bf_80ab_dd01&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_97bf_80ab_dd01"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c28_0459_7a39", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5c28_0459_7a39.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5c28_0459_7a39/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5c28_0459_7a39_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5c28_0459_7a39_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5c28_0459_7a39/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5c28_0459_7a39.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5c28_0459_7a39&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5c28_0459_7a39"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a574_12fa_fd79", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a574_12fa_fd79.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a574_12fa_fd79/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a574_12fa_fd79_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a574_12fa_fd79_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a574_12fa_fd79/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a574_12fa_fd79.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a574_12fa_fd79&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a574_12fa_fd79"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e01b_b443_cd33", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e01b_b443_cd33.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e01b_b443_cd33/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e01b_b443_cd33_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e01b_b443_cd33_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e01b_b443_cd33/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e01b_b443_cd33.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e01b_b443_cd33&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e01b_b443_cd33"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09b0_ffd2_a0da", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_09b0_ffd2_a0da.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_09b0_ffd2_a0da/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_09b0_ffd2_a0da_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_09b0_ffd2_a0da_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_09b0_ffd2_a0da/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_09b0_ffd2_a0da.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_09b0_ffd2_a0da&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_09b0_ffd2_a0da"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab65_5dea_77ae", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab65_5dea_77ae.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab65_5dea_77ae/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Mean at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab65_5dea_77ae_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab65_5dea_77ae_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab65_5dea_77ae/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab65_5dea_77ae.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab65_5dea_77ae&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ab65_5dea_77ae"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a43_9a16_3d78", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6a43_9a16_3d78.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6a43_9a16_3d78/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6a43_9a16_3d78_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6a43_9a16_3d78_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6a43_9a16_3d78/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6a43_9a16_3d78.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6a43_9a16_3d78&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6a43_9a16_3d78"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdde_1305_4e29", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bdde_1305_4e29.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bdde_1305_4e29/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bdde_1305_4e29_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bdde_1305_4e29_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bdde_1305_4e29/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bdde_1305_4e29.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bdde_1305_4e29&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bdde_1305_4e29"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f660_bfb6_e4b8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f660_bfb6_e4b8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f660_bfb6_e4b8/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f660_bfb6_e4b8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f660_bfb6_e4b8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f660_bfb6_e4b8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f660_bfb6_e4b8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f660_bfb6_e4b8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f660_bfb6_e4b8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eda8_3570_9f77", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_eda8_3570_9f77.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_eda8_3570_9f77/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_eda8_3570_9f77_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_eda8_3570_9f77_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_eda8_3570_9f77/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_eda8_3570_9f77.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_eda8_3570_9f77&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_eda8_3570_9f77"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c22_2776_0494", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c22_2776_0494.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1c22_2776_0494/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1c22_2776_0494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1c22_2776_0494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1c22_2776_0494/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1c22_2776_0494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1c22_2776_0494&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1c22_2776_0494"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9c6_76c0_1434", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b9c6_76c0_1434.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b9c6_76c0_1434/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 1st Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b9c6_76c0_1434_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b9c6_76c0_1434_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b9c6_76c0_1434/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b9c6_76c0_1434.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b9c6_76c0_1434&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b9c6_76c0_1434"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e2b9_78c5_03a1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e2b9_78c5_03a1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e2b9_78c5_03a1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e2b9_78c5_03a1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e2b9_78c5_03a1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e2b9_78c5_03a1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e2b9_78c5_03a1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e2b9_78c5_03a1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e2b9_78c5_03a1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_494f_2662_30f0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_494f_2662_30f0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_494f_2662_30f0/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_494f_2662_30f0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_494f_2662_30f0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_494f_2662_30f0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_494f_2662_30f0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_494f_2662_30f0&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_494f_2662_30f0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a3d_480b_cc72", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4a3d_480b_cc72.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4a3d_480b_cc72/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 3rd Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4a3d_480b_cc72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4a3d_480b_cc72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4a3d_480b_cc72/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4a3d_480b_cc72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4a3d_480b_cc72&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4a3d_480b_cc72"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_324a_46b4_c250", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_324a_46b4_c250.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_324a_46b4_c250/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_324a_46b4_c250_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_324a_46b4_c250_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_324a_46b4_c250/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_324a_46b4_c250.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_324a_46b4_c250&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_324a_46b4_c250"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d81_7fad_baa5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8d81_7fad_baa5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8d81_7fad_baa5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8d81_7fad_baa5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8d81_7fad_baa5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8d81_7fad_baa5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8d81_7fad_baa5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8d81_7fad_baa5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8d81_7fad_baa5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f16d_9cd0_08fb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f16d_9cd0_08fb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f16d_9cd0_08fb/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly 5th Sextile at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f16d_9cd0_08fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f16d_9cd0_08fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f16d_9cd0_08fb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f16d_9cd0_08fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f16d_9cd0_08fb&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f16d_9cd0_08fb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_292c_4d42_8684", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_292c_4d42_8684.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_292c_4d42_8684/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_292c_4d42_8684_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_292c_4d42_8684_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_292c_4d42_8684/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_292c_4d42_8684.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_292c_4d42_8684&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_292c_4d42_8684"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01f9_89e9_de52", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_01f9_89e9_de52.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_01f9_89e9_de52/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_01f9_89e9_de52_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_01f9_89e9_de52_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_01f9_89e9_de52/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_01f9_89e9_de52.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_01f9_89e9_de52&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_01f9_89e9_de52"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5290_8170_9eb2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5290_8170_9eb2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5290_8170_9eb2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vairt.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvairt (Sensible Heat Trans Northward Param Monthly Standard Deviation at Surface, degC m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5290_8170_9eb2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5290_8170_9eb2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5290_8170_9eb2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5290_8170_9eb2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5290_8170_9eb2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5290_8170_9eb2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d81_3d8f_38b6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9d81_3d8f_38b6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9d81_3d8f_38b6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9d81_3d8f_38b6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9d81_3d8f_38b6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9d81_3d8f_38b6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9d81_3d8f_38b6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9d81_3d8f_38b6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9d81_3d8f_38b6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_149f_06e9_e7f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_149f_06e9_e7f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_149f_06e9_e7f9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_149f_06e9_e7f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_149f_06e9_e7f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_149f_06e9_e7f9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_149f_06e9_e7f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_149f_06e9_e7f9&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_149f_06e9_e7f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f90_2218_c8c8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4f90_2218_c8c8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4f90_2218_c8c8/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4f90_2218_c8c8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4f90_2218_c8c8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4f90_2218_c8c8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4f90_2218_c8c8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4f90_2218_c8c8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4f90_2218_c8c8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d831_caca_39ff", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d831_caca_39ff.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d831_caca_39ff/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d831_caca_39ff_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d831_caca_39ff_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d831_caca_39ff/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d831_caca_39ff.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d831_caca_39ff&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d831_caca_39ff"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0981_cb70_ea27", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0981_cb70_ea27.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0981_cb70_ea27/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0981_cb70_ea27_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0981_cb70_ea27_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0981_cb70_ea27/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0981_cb70_ea27.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0981_cb70_ea27&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0981_cb70_ea27"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a609_a281_7221", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a609_a281_7221.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a609_a281_7221/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a609_a281_7221_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a609_a281_7221_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a609_a281_7221/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a609_a281_7221.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a609_a281_7221&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a609_a281_7221"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_078f_7030_eee2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_078f_7030_eee2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_078f_7030_eee2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_078f_7030_eee2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_078f_7030_eee2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_078f_7030_eee2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_078f_7030_eee2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_078f_7030_eee2&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_078f_7030_eee2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf01_e30b_5a1e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bf01_e30b_5a1e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bf01_e30b_5a1e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bf01_e30b_5a1e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bf01_e30b_5a1e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bf01_e30b_5a1e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bf01_e30b_5a1e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bf01_e30b_5a1e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bf01_e30b_5a1e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3ce_adb3_41e2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c3ce_adb3_41e2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c3ce_adb3_41e2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c3ce_adb3_41e2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c3ce_adb3_41e2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c3ce_adb3_41e2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c3ce_adb3_41e2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c3ce_adb3_41e2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c3ce_adb3_41e2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c7b_72f7_6b3b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c7b_72f7_6b3b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2c7b_72f7_6b3b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2c7b_72f7_6b3b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2c7b_72f7_6b3b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2c7b_72f7_6b3b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2c7b_72f7_6b3b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2c7b_72f7_6b3b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2c7b_72f7_6b3b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_521d_33f9_7e5a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_521d_33f9_7e5a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_521d_33f9_7e5a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_521d_33f9_7e5a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_521d_33f9_7e5a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_521d_33f9_7e5a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_521d_33f9_7e5a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_521d_33f9_7e5a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_521d_33f9_7e5a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_68b0_810c_dc0d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_68b0_810c_dc0d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_68b0_810c_dc0d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_68b0_810c_dc0d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_68b0_810c_dc0d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_68b0_810c_dc0d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_68b0_810c_dc0d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_68b0_810c_dc0d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_68b0_810c_dc0d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abbf_ae13_f4d1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_abbf_ae13_f4d1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_abbf_ae13_f4d1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_abbf_ae13_f4d1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_abbf_ae13_f4d1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_abbf_ae13_f4d1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_abbf_ae13_f4d1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_abbf_ae13_f4d1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_abbf_ae13_f4d1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1001_fb53_bfe6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1001_fb53_bfe6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1001_fb53_bfe6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1001_fb53_bfe6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1001_fb53_bfe6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1001_fb53_bfe6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1001_fb53_bfe6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1001_fb53_bfe6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1001_fb53_bfe6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9fc5_841b_439c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9fc5_841b_439c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9fc5_841b_439c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9fc5_841b_439c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9fc5_841b_439c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9fc5_841b_439c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9fc5_841b_439c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9fc5_841b_439c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9fc5_841b_439c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fee_364a_0f6a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8fee_364a_0f6a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8fee_364a_0f6a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8fee_364a_0f6a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8fee_364a_0f6a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8fee_364a_0f6a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8fee_364a_0f6a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8fee_364a_0f6a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8fee_364a_0f6a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c58_6177_dd0e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4c58_6177_dd0e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4c58_6177_dd0e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4c58_6177_dd0e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4c58_6177_dd0e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4c58_6177_dd0e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4c58_6177_dd0e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4c58_6177_dd0e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4c58_6177_dd0e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edeb_deb8_d898", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edeb_deb8_d898.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_edeb_deb8_d898/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_edeb_deb8_d898_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_edeb_deb8_d898_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_edeb_deb8_d898/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_edeb_deb8_d898.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_edeb_deb8_d898&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_edeb_deb8_d898"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60e3_9912_590d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_60e3_9912_590d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_60e3_9912_590d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_60e3_9912_590d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_60e3_9912_590d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_60e3_9912_590d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_60e3_9912_590d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_60e3_9912_590d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_60e3_9912_590d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6cc1_e26a_630d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6cc1_e26a_630d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6cc1_e26a_630d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6cc1_e26a_630d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6cc1_e26a_630d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6cc1_e26a_630d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6cc1_e26a_630d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6cc1_e26a_630d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_6cc1_e26a_630d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e447_4b5a_27d7", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e447_4b5a_27d7.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e447_4b5a_27d7/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e447_4b5a_27d7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e447_4b5a_27d7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e447_4b5a_27d7/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e447_4b5a_27d7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e447_4b5a_27d7&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e447_4b5a_27d7"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a98_4b08_b450", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a98_4b08_b450.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a98_4b08_b450/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a98_4b08_b450_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a98_4b08_b450_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a98_4b08_b450/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a98_4b08_b450.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a98_4b08_b450&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3a98_4b08_b450"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26a8_ce06_8b20", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_26a8_ce06_8b20.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_26a8_ce06_8b20/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_26a8_ce06_8b20_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_26a8_ce06_8b20_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_26a8_ce06_8b20/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_26a8_ce06_8b20.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_26a8_ce06_8b20&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_26a8_ce06_8b20"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4131_d927_00a3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4131_d927_00a3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4131_d927_00a3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4131_d927_00a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4131_d927_00a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4131_d927_00a3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4131_d927_00a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4131_d927_00a3&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4131_d927_00a3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_218f_aec8_f092", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_218f_aec8_f092.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_218f_aec8_f092/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_218f_aec8_f092_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_218f_aec8_f092_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_218f_aec8_f092/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_218f_aec8_f092.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_218f_aec8_f092&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_218f_aec8_f092"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_487b_4df7_9527", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_487b_4df7_9527.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_487b_4df7_9527/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_487b_4df7_9527_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_487b_4df7_9527_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_487b_4df7_9527/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_487b_4df7_9527.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_487b_4df7_9527&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_487b_4df7_9527"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b76d_5272_bf3b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b76d_5272_bf3b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b76d_5272_bf3b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vlflx.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvlflx (Meridional Latent Heat Parameter Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b76d_5272_bf3b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b76d_5272_bf3b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b76d_5272_bf3b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b76d_5272_bf3b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b76d_5272_bf3b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b76d_5272_bf3b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0b2_391b_eb15", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a0b2_391b_eb15.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a0b2_391b_eb15/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a0b2_391b_eb15_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a0b2_391b_eb15_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a0b2_391b_eb15/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a0b2_391b_eb15.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a0b2_391b_eb15&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_a0b2_391b_eb15"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9de3_502c_1b47", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9de3_502c_1b47.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9de3_502c_1b47/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9de3_502c_1b47_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9de3_502c_1b47_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9de3_502c_1b47/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9de3_502c_1b47.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9de3_502c_1b47&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9de3_502c_1b47"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a7e3_7d9e_ef0e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a7e3_7d9e_ef0e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a7e3_7d9e_ef0e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a7e3_7d9e_ef0e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a7e3_7d9e_ef0e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a7e3_7d9e_ef0e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a7e3_7d9e_ef0e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a7e3_7d9e_ef0e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a7e3_7d9e_ef0e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e29_2467_28f9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9e29_2467_28f9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9e29_2467_28f9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9e29_2467_28f9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9e29_2467_28f9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9e29_2467_28f9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9e29_2467_28f9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9e29_2467_28f9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_9e29_2467_28f9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ace_f822_7828", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7ace_f822_7828.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7ace_f822_7828/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7ace_f822_7828_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7ace_f822_7828_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7ace_f822_7828/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7ace_f822_7828.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7ace_f822_7828&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7ace_f822_7828"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8706_9407_8b3a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8706_9407_8b3a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8706_9407_8b3a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8706_9407_8b3a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8706_9407_8b3a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8706_9407_8b3a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8706_9407_8b3a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8706_9407_8b3a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8706_9407_8b3a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b87_c8dc_569a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2b87_c8dc_569a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2b87_c8dc_569a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2b87_c8dc_569a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2b87_c8dc_569a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2b87_c8dc_569a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2b87_c8dc_569a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2b87_c8dc_569a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_2b87_c8dc_569a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e21_5324_808e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_5e21_5324_808e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_5e21_5324_808e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_5e21_5324_808e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_5e21_5324_808e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_5e21_5324_808e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_5e21_5324_808e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_5e21_5324_808e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_5e21_5324_808e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a33d_5125_ea7e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a33d_5125_ea7e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a33d_5125_ea7e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a33d_5125_ea7e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a33d_5125_ea7e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a33d_5125_ea7e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a33d_5125_ea7e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a33d_5125_ea7e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a33d_5125_ea7e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf43_741c_8fe9", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_cf43_741c_8fe9.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_cf43_741c_8fe9/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_cf43_741c_8fe9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_cf43_741c_8fe9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_cf43_741c_8fe9/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_cf43_741c_8fe9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_cf43_741c_8fe9&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_cf43_741c_8fe9"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c14_c389_71ba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2c14_c389_71ba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2c14_c389_71ba/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2c14_c389_71ba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2c14_c389_71ba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2c14_c389_71ba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2c14_c389_71ba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2c14_c389_71ba&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2c14_c389_71ba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a3d7_fe21_ef17", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a3d7_fe21_ef17.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a3d7_fe21_ef17/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Mean at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a3d7_fe21_ef17_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a3d7_fe21_ef17_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a3d7_fe21_ef17/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a3d7_fe21_ef17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a3d7_fe21_ef17&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a3d7_fe21_ef17"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cdf_42a9_36b3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8cdf_42a9_36b3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8cdf_42a9_36b3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8cdf_42a9_36b3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8cdf_42a9_36b3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8cdf_42a9_36b3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8cdf_42a9_36b3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8cdf_42a9_36b3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8cdf_42a9_36b3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_40a5_c601_67d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_40a5_c601_67d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_40a5_c601_67d5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_40a5_c601_67d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_40a5_c601_67d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_40a5_c601_67d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_40a5_c601_67d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_40a5_c601_67d5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_40a5_c601_67d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edd8_2ca2_9e2a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_edd8_2ca2_9e2a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_edd8_2ca2_9e2a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_edd8_2ca2_9e2a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_edd8_2ca2_9e2a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_edd8_2ca2_9e2a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_edd8_2ca2_9e2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_edd8_2ca2_9e2a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_edd8_2ca2_9e2a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_521b_bb27_0e94", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_521b_bb27_0e94.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_521b_bb27_0e94/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_521b_bb27_0e94_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_521b_bb27_0e94_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_521b_bb27_0e94/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_521b_bb27_0e94.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_521b_bb27_0e94&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_521b_bb27_0e94"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ea3_7936_2f95", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ea3_7936_2f95.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ea3_7936_2f95/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ea3_7936_2f95_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ea3_7936_2f95_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ea3_7936_2f95/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ea3_7936_2f95.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ea3_7936_2f95&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3ea3_7936_2f95"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4920_8dac_6642", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4920_8dac_6642.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4920_8dac_6642/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 1st Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4920_8dac_6642_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4920_8dac_6642_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4920_8dac_6642/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4920_8dac_6642.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4920_8dac_6642&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4920_8dac_6642"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ca8_5d6b_8295", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ca8_5d6b_8295.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ca8_5d6b_8295/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ca8_5d6b_8295_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ca8_5d6b_8295_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ca8_5d6b_8295/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ca8_5d6b_8295.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ca8_5d6b_8295&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4ca8_5d6b_8295"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dcd_c283_ee84", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1dcd_c283_ee84.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1dcd_c283_ee84/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1dcd_c283_ee84_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1dcd_c283_ee84_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1dcd_c283_ee84/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1dcd_c283_ee84.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1dcd_c283_ee84&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1dcd_c283_ee84"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c9a_3b5d_9640", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9c9a_3b5d_9640.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9c9a_3b5d_9640/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 3rd Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9c9a_3b5d_9640_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9c9a_3b5d_9640_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9c9a_3b5d_9640/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9c9a_3b5d_9640.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9c9a_3b5d_9640&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9c9a_3b5d_9640"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_929d_b9b9_f812", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_929d_b9b9_f812.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_929d_b9b9_f812/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_929d_b9b9_f812_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_929d_b9b9_f812_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_929d_b9b9_f812/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_929d_b9b9_f812.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_929d_b9b9_f812&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_929d_b9b9_f812"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a20_d54e_88cc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9a20_d54e_88cc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9a20_d54e_88cc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9a20_d54e_88cc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9a20_d54e_88cc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9a20_d54e_88cc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9a20_d54e_88cc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9a20_d54e_88cc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9a20_d54e_88cc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5e3_8dc2_9963", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e5e3_8dc2_9963.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e5e3_8dc2_9963/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly 5th Sextile at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e5e3_8dc2_9963_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e5e3_8dc2_9963_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e5e3_8dc2_9963/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e5e3_8dc2_9963.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e5e3_8dc2_9963&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e5e3_8dc2_9963"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72f3_ba00_24af", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_72f3_ba00_24af.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_72f3_ba00_24af/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_72f3_ba00_24af_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_72f3_ba00_24af_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_72f3_ba00_24af/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_72f3_ba00_24af.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_72f3_ba00_24af&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_72f3_ba00_24af"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a0c_94bc_8371", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7a0c_94bc_8371.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7a0c_94bc_8371/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7a0c_94bc_8371_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7a0c_94bc_8371_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7a0c_94bc_8371/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7a0c_94bc_8371.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7a0c_94bc_8371&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7a0c_94bc_8371"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d997_dbd1_9112", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d997_dbd1_9112.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d997_dbd1_9112/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vpstr.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvpstr (v-wind Stress Monthly Standard Deviation at Surface, m^2/s^2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d997_dbd1_9112_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d997_dbd1_9112_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d997_dbd1_9112/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d997_dbd1_9112.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d997_dbd1_9112&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d997_dbd1_9112"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b5b_e484_bd8a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b5b_e484_bd8a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8b5b_e484_bd8a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8b5b_e484_bd8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8b5b_e484_bd8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8b5b_e484_bd8a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8b5b_e484_bd8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8b5b_e484_bd8a&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8b5b_e484_bd8a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b7f_aa69_95f1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8b7f_aa69_95f1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8b7f_aa69_95f1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8b7f_aa69_95f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8b7f_aa69_95f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8b7f_aa69_95f1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8b7f_aa69_95f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8b7f_aa69_95f1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_8b7f_aa69_95f1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5b1_4164_e610", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b5b1_4164_e610.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b5b1_4164_e610/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b5b1_4164_e610_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b5b1_4164_e610_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b5b1_4164_e610/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b5b1_4164_e610.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b5b1_4164_e610&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b5b1_4164_e610"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1abe_24fb_367b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1abe_24fb_367b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1abe_24fb_367b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1abe_24fb_367b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1abe_24fb_367b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1abe_24fb_367b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1abe_24fb_367b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1abe_24fb_367b&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_1abe_24fb_367b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7df1_0103_e56b", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7df1_0103_e56b.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7df1_0103_e56b/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7df1_0103_e56b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7df1_0103_e56b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7df1_0103_e56b/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7df1_0103_e56b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7df1_0103_e56b&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7df1_0103_e56b"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f95b_3df8_d637", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_f95b_3df8_d637.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_f95b_3df8_d637/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_f95b_3df8_d637_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_f95b_3df8_d637_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_f95b_3df8_d637/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_f95b_3df8_d637.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_f95b_3df8_d637&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_f95b_3df8_d637"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4334_8312_c0e6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4334_8312_c0e6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4334_8312_c0e6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4334_8312_c0e6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4334_8312_c0e6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4334_8312_c0e6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4334_8312_c0e6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4334_8312_c0e6&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4334_8312_c0e6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3670_969c_ca33", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3670_969c_ca33.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3670_969c_ca33/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3670_969c_ca33_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3670_969c_ca33_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3670_969c_ca33/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3670_969c_ca33.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3670_969c_ca33&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3670_969c_ca33"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0f4_4c24_8b30", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d0f4_4c24_8b30.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d0f4_4c24_8b30/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d0f4_4c24_8b30_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d0f4_4c24_8b30_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d0f4_4c24_8b30/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d0f4_4c24_8b30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d0f4_4c24_8b30&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d0f4_4c24_8b30"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e2a7_4c02_6990", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e2a7_4c02_6990.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e2a7_4c02_6990/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e2a7_4c02_6990_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e2a7_4c02_6990_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e2a7_4c02_6990/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e2a7_4c02_6990.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e2a7_4c02_6990&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_e2a7_4c02_6990"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d1f_1f2d_2ce5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1d1f_1f2d_2ce5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1d1f_1f2d_2ce5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1d1f_1f2d_2ce5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1d1f_1f2d_2ce5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1d1f_1f2d_2ce5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1d1f_1f2d_2ce5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1d1f_1f2d_2ce5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1d1f_1f2d_2ce5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3674_e576_1d97", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3674_e576_1d97.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3674_e576_1d97/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Mean at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3674_e576_1d97_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3674_e576_1d97_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3674_e576_1d97/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3674_e576_1d97.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3674_e576_1d97&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3674_e576_1d97"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca3e_68ab_b0a3", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ca3e_68ab_b0a3.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ca3e_68ab_b0a3/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ca3e_68ab_b0a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ca3e_68ab_b0a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ca3e_68ab_b0a3/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ca3e_68ab_b0a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ca3e_68ab_b0a3&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ca3e_68ab_b0a3"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cc1_9b9f_7d6e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2cc1_9b9f_7d6e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2cc1_9b9f_7d6e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2cc1_9b9f_7d6e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2cc1_9b9f_7d6e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2cc1_9b9f_7d6e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2cc1_9b9f_7d6e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2cc1_9b9f_7d6e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2cc1_9b9f_7d6e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d66c_5604_dab2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d66c_5604_dab2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d66c_5604_dab2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d66c_5604_dab2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d66c_5604_dab2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d66c_5604_dab2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d66c_5604_dab2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d66c_5604_dab2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d66c_5604_dab2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7173_c265_3b74", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7173_c265_3b74.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7173_c265_3b74/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7173_c265_3b74_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7173_c265_3b74_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7173_c265_3b74/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7173_c265_3b74.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7173_c265_3b74&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_7173_c265_3b74"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d11_7eab_a03f", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2d11_7eab_a03f.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2d11_7eab_a03f/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2d11_7eab_a03f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2d11_7eab_a03f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2d11_7eab_a03f/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2d11_7eab_a03f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2d11_7eab_a03f&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2d11_7eab_a03f"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ec2_58c0_effc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_9ec2_58c0_effc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_9ec2_58c0_effc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 1st Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_9ec2_58c0_effc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_9ec2_58c0_effc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_9ec2_58c0_effc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_9ec2_58c0_effc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_9ec2_58c0_effc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_9ec2_58c0_effc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c59b_fa00_6cb8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c59b_fa00_6cb8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c59b_fa00_6cb8/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c59b_fa00_6cb8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c59b_fa00_6cb8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c59b_fa00_6cb8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c59b_fa00_6cb8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c59b_fa00_6cb8&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c59b_fa00_6cb8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a0f_d0a2_73e4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_0a0f_d0a2_73e4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_0a0f_d0a2_73e4/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_0a0f_d0a2_73e4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_0a0f_d0a2_73e4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_0a0f_d0a2_73e4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_0a0f_d0a2_73e4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_0a0f_d0a2_73e4&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_0a0f_d0a2_73e4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea58_38c4_3bc2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ea58_38c4_3bc2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ea58_38c4_3bc2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 3rd Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ea58_38c4_3bc2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ea58_38c4_3bc2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ea58_38c4_3bc2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ea58_38c4_3bc2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ea58_38c4_3bc2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_ea58_38c4_3bc2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_653c_5719_2469", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_653c_5719_2469.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_653c_5719_2469/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_653c_5719_2469_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_653c_5719_2469_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_653c_5719_2469/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_653c_5719_2469.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_653c_5719_2469&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_653c_5719_2469"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57d9_665b_9751", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_57d9_665b_9751.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_57d9_665b_9751/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_57d9_665b_9751_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_57d9_665b_9751_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_57d9_665b_9751/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_57d9_665b_9751.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_57d9_665b_9751&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_57d9_665b_9751"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81f2_91fe_79e1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_81f2_91fe_79e1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_81f2_91fe_79e1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly 5th Sextile at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_81f2_91fe_79e1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_81f2_91fe_79e1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_81f2_91fe_79e1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_81f2_91fe_79e1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_81f2_91fe_79e1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_81f2_91fe_79e1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef78_0c96_b288", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ef78_0c96_b288.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ef78_0c96_b288/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ef78_0c96_b288_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ef78_0c96_b288_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ef78_0c96_b288/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ef78_0c96_b288.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ef78_0c96_b288&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ef78_0c96_b288"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94d9_c46a_96d5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_94d9_c46a_96d5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_94d9_c46a_96d5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_94d9_c46a_96d5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_94d9_c46a_96d5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_94d9_c46a_96d5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_94d9_c46a_96d5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_94d9_c46a_96d5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_94d9_c46a_96d5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_973b_61ee_eda2", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_973b_61ee_eda2.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_973b_61ee_eda2/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.stddev), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vspeh.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvspeh (Latent Heat Trans Northward Param Monthly Standard Deviation at Surface, grams/kg m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_973b_61ee_eda2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_973b_61ee_eda2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_973b_61ee_eda2/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_973b_61ee_eda2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_973b_61ee_eda2&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_973b_61ee_eda2"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c21_d688_c707", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3c21_d688_c707.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3c21_d688_c707/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.day fraction), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3c21_d688_c707_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3c21_d688_c707_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3c21_d688_c707/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3c21_d688_c707.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3c21_d688_c707&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3c21_d688_c707"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12a7_4be5_4a83", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_12a7_4be5_4a83.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_12a7_4be5_4a83/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_12a7_4be5_4a83_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_12a7_4be5_4a83_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_12a7_4be5_4a83/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_12a7_4be5_4a83.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_12a7_4be5_4a83&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_12a7_4be5_4a83"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_859d_2c1b_d1b5", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_859d_2c1b_d1b5.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_859d_2c1b_d1b5/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.day fraction), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.day fraction)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Day_fraction at Surface)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_859d_2c1b_d1b5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_859d_2c1b_d1b5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_859d_2c1b_d1b5/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_859d_2c1b_d1b5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_859d_2c1b_d1b5&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_859d_2c1b_d1b5"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3221_f85d_4ac1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3221_f85d_4ac1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3221_f85d_4ac1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean day), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3221_f85d_4ac1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3221_f85d_4ac1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3221_f85d_4ac1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3221_f85d_4ac1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3221_f85d_4ac1&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_3221_f85d_4ac1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c00_9d6e_f852", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_1c00_9d6e_f852.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_1c00_9d6e_f852/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_1c00_9d6e_f852_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_1c00_9d6e_f852_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_1c00_9d6e_f852/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_1c00_9d6e_f852.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_1c00_9d6e_f852&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_1c00_9d6e_f852"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a4b_1235_7c40", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3a4b_1235_7c40.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3a4b_1235_7c40/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean day), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean day)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_day at Surface, days)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3a4b_1235_7c40_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3a4b_1235_7c40_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3a4b_1235_7c40/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3a4b_1235_7c40.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3a4b_1235_7c40&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3a4b_1235_7c40"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30ec_0b8e_1b05", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_30ec_0b8e_1b05.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_30ec_0b8e_1b05/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean lat), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_30ec_0b8e_1b05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_30ec_0b8e_1b05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_30ec_0b8e_1b05/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_30ec_0b8e_1b05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_30ec_0b8e_1b05&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_30ec_0b8e_1b05"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cb9_76a8_654d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_7cb9_76a8_654d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_7cb9_76a8_654d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_7cb9_76a8_654d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_7cb9_76a8_654d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_7cb9_76a8_654d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_7cb9_76a8_654d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_7cb9_76a8_654d&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_7cb9_76a8_654d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b42e_92d0_bcd1", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b42e_92d0_bcd1.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b42e_92d0_bcd1/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean lat), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean lat)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lat (Off SW Corner) at Surface, degrees_north)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b42e_92d0_bcd1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b42e_92d0_bcd1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b42e_92d0_bcd1/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b42e_92d0_bcd1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b42e_92d0_bcd1&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b42e_92d0_bcd1"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c44c_9237_b14d", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c44c_9237_b14d.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c44c_9237_b14d/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean lon), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c44c_9237_b14d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c44c_9237_b14d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c44c_9237_b14d/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c44c_9237_b14d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c44c_9237_b14d&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_c44c_9237_b14d"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ee3_0337_dff8", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4ee3_0337_dff8.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4ee3_0337_dff8/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4ee3_0337_dff8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4ee3_0337_dff8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4ee3_0337_dff8/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4ee3_0337_dff8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4ee3_0337_dff8&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_4ee3_0337_dff8"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4dc_8140_85dc", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_e4dc_8140_85dc.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_e4dc_8140_85dc/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean lon), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean lon)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean_lon (Off SW Corner) at Surface, degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_e4dc_8140_85dc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_e4dc_8140_85dc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_e4dc_8140_85dc/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_e4dc_8140_85dc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_e4dc_8140_85dc&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_e4dc_8140_85dc"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d5b_afe7_a537", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_6d5b_afe7_a537.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_6d5b_afe7_a537/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_6d5b_afe7_a537_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_6d5b_afe7_a537_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_6d5b_afe7_a537/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_6d5b_afe7_a537.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_6d5b_afe7_a537&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_6d5b_afe7_a537"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ba9_0493_5a47", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_3ba9_0493_5a47.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_3ba9_0493_5a47/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_3ba9_0493_5a47_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_3ba9_0493_5a47_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_3ba9_0493_5a47/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_3ba9_0493_5a47.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_3ba9_0493_5a47&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_3ba9_0493_5a47"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bef1_d2a7_641c", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_bef1_d2a7_641c.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_bef1_d2a7_641c/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.mean)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Mean at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_bef1_d2a7_641c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_bef1_d2a7_641c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_bef1_d2a7_641c/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_bef1_d2a7_641c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_bef1_d2a7_641c&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_bef1_d2a7_641c"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab27_d30e_7ef0", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_ab27_d30e_7ef0.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_ab27_d30e_7ef0/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.nobs), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_ab27_d30e_7ef0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_ab27_d30e_7ef0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_ab27_d30e_7ef0/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_ab27_d30e_7ef0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_ab27_d30e_7ef0&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_ab27_d30e_7ef0"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_166f_8eda_1ee6", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_166f_8eda_1ee6.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_166f_8eda_1ee6/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_166f_8eda_1ee6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_166f_8eda_1ee6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_166f_8eda_1ee6/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_166f_8eda_1ee6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_166f_8eda_1ee6&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_166f_8eda_1ee6"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bd0_8c1b_4a3e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_2bd0_8c1b_4a3e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_2bd0_8c1b_4a3e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.nobs), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.nobs)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Number of Observations at Surface, observations)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_2bd0_8c1b_4a3e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_2bd0_8c1b_4a3e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_2bd0_8c1b_4a3e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_2bd0_8c1b_4a3e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_2bd0_8c1b_4a3e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_2bd0_8c1b_4a3e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f09_52e6_71eb", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_8f09_52e6_71eb.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_8f09_52e6_71eb/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile1), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_8f09_52e6_71eb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_8f09_52e6_71eb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_8f09_52e6_71eb/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_8f09_52e6_71eb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_8f09_52e6_71eb&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_8f09_52e6_71eb"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a110_d914_0400", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a110_d914_0400.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a110_d914_0400/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a110_d914_0400_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a110_d914_0400_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a110_d914_0400/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a110_d914_0400.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a110_d914_0400&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a110_d914_0400"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b020_385c_d63e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_b020_385c_d63e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_b020_385c_d63e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile1), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile1)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 1st Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_b020_385c_d63e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_b020_385c_d63e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_b020_385c_d63e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_b020_385c_d63e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_b020_385c_d63e&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_b020_385c_d63e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71c0_8f49_27a4", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_71c0_8f49_27a4.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_71c0_8f49_27a4/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile3), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_71c0_8f49_27a4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_71c0_8f49_27a4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_71c0_8f49_27a4/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_71c0_8f49_27a4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_71c0_8f49_27a4&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_71c0_8f49_27a4"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a664_e860_aeba", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_a664_e860_aeba.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_a664_e860_aeba/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_a664_e860_aeba_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_a664_e860_aeba_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_a664_e860_aeba/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_a664_e860_aeba.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_a664_e860_aeba&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_a664_e860_aeba"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d132_66ed_5933", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d132_66ed_5933.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d132_66ed_5933/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile3), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile3)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 3rd Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d132_66ed_5933_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d132_66ed_5933_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d132_66ed_5933/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d132_66ed_5933.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d132_66ed_5933&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_d132_66ed_5933"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d16_b494_682e", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_4d16_b494_682e.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_4d16_b494_682e/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile5), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_4d16_b494_682e_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_4d16_b494_682e_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_4d16_b494_682e/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_4d16_b494_682e.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_4d16_b494_682e&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_4d16_b494_682e"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_75af_055d_f79a", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_75af_055d_f79a.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_75af_055d_f79a/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_75af_055d_f79a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_75af_055d_f79a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_75af_055d_f79a/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_75af_055d_f79a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_75af_055d_f79a&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_75af_055d_f79a"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9f9_a9e3_ae58", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_c9f9_a9e3_ae58.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_c9f9_a9e3_ae58/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile5), 1.0\u00b0, 1960-present", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.sextile5)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly 5th Sextile at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_c9f9_a9e3_ae58_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_c9f9_a9e3_ae58_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_c9f9_a9e3_ae58/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_c9f9_a9e3_ae58.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_c9f9_a9e3_ae58&showErrors=false&email=", "NOAA ICOADS", "noaa_esrl_c9f9_a9e3_ae58"], + ["https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d133_b453_e562", "", "", "https://upwell.pfeg.noaa.gov/erddap/griddap/noaa_esrl_d133_b453_e562.graph", "https://upwell.pfeg.noaa.gov/erddap/wms/noaa_esrl_d133_b453_e562/request", "", "public", "ICOADS 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.stddev), 1.0\u00b0, 1960-2016", "International Comprehensive Ocean Atmosphere Data Set (ICOADS) 1-degree Equatorial Enhanced (Top Dataset, enh, vwnd.stddev)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nvwnd (v-wind Monthly Standard Deviation at Surface, m/s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/noaa_esrl_d133_b453_e562_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/noaa_esrl_d133_b453_e562_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/noaa_esrl_d133_b453_e562/index.json", "https://www.esrl.noaa.gov/psd/data/gridded/data.coads.1deg.html", "http://upwell.pfeg.noaa.gov/erddap/rss/noaa_esrl_d133_b453_e562.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaa_esrl_d133_b453_e562&showErrors=false&email=", "NOAA ESRL", "noaa_esrl_d133_b453_e562"] + ] + } + } + recorded_at: 2019-01-31 19:30:23 GMT + recorded_with: vcr/0.2.2, webmockr/0.3.0 diff --git a/tests/vcr_cassettes/ed_search_adv_diff_servers.yml b/tests/vcr_cassettes/ed_search_adv_diff_servers.yml new file mode 100644 index 0000000..10be031 --- /dev/null +++ b/tests/vcr_cassettes/ed_search_adv_diff_servers.yml @@ -0,0 +1,163 @@ +http_interactions: +- request: + method: get + uri: https://irishmarineinstitute.github.io/awesome-erddap/erddaps.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/4.0 crul/0.8.4.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/2 200 ' + server: GitHub.com + content-type: application/json; charset=utf-8 + last-modified: Thu, 29 Aug 2019 15:53:53 GMT + etag: W/"5d67f511-12d6" + access-control-allow-origin: '*' + expires: Thu, 29 Aug 2019 20:37:50 GMT + cache-control: max-age=600 + content-encoding: gzip + x-proxy-cache: MISS + x-github-request-id: 365A:3DE3:75194D:7BC839:5D683546 + accept-ranges: bytes + date: Thu, 29 Aug 2019 20:44:39 GMT + via: 1.1 varnish + age: '0' + x-served-by: cache-sea1027-SEA + x-cache: HIT + x-cache-hits: '2' + x-timer: S1567111479.422902,VS0,VE0 + vary: Accept-Encoding + x-fastly-request-id: f510507a77ce5d632c4e03e835aef1d3b4c22905 + content-length: '1362' + body: + encoding: UTF-8 + string: "[\n\t{\n\t\t\"name\": \"CoastWatch West Coast Node\",\n\t\t\"url\": + \"https://coastwatch.pfeg.noaa.gov/erddap/\",\n\t\t\"public\": true\n\t},\n + \ {\n\t\t\"name\": \"ERDDAP at the Asia-Pacific Data-Research Center\",\n\t\t\"url\": + \"https://apdrc.soest.hawaii.edu/erddap/\",\n\t\t\"public\": true\n\t},\n + \ {\n\t\t\"name\": \"NOAA's National Centers for Environmental Information + (NCEI)\",\n\t\t\"url\": \"https://www.ncei.noaa.gov/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"Biological and Chemical Oceanography Data + Management Office (BCO-DMO) ERDDAP\",\n\t\t\"url\": \"https://erddap.bco-dmo.org/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"European Marine Observation and Data Network + (EMODnet) Physics ERDDAP\",\n\t\t\"url\": \"https://erddap.emodnet-physics.eu/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"Marine Institute - Ireland\",\n\t\t\"url\": + \"https://erddap.marine.ie/erddap/\",\n\t\t\"public\": true\n\t},\n {\n\t\t\"name\": + \"CoastWatch Caribbean/Gulf of Mexico Node\",\n\t\t\"url\": \"https://cwcgom.aoml.noaa.gov/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"NOAA IOOS Sensors ERDDAP\",\n\t\t\"url\": + \"http://erddap.sensors.ioos.us/erddap/\",\n\t\t\"public\": true\n\t},\n {\n\t\t\"name\": + \"NOAA IOOS CeNCOOS (Central and Northern California Ocean Observing System)\",\n\t\t\"url\": + \"http://erddap.axiomdatascience.com/erddap/\",\n\t\t\"public\": true\n\t},\n + \ {\n\t\t\"name\": \"NOAA IOOS NERACOOS (Northeastern Regional Association + of Coastal and Ocean Observing Systems)\",\n\t\t\"url\": \"http://www.neracoos.org/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"NOAA IOOS NGDAC (National Glider Data Assembly + Center)\",\n\t\t\"url\": \"https://data.ioos.us/gliders/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"NOAA IOOS PacIOOS (Pacific Islands Ocean + Observing System) at the University of Hawaii (UH)\",\n\t\t\"url\": \"http://oos.soest.hawaii.edu/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"Southern California Coastal Ocean Observing + System (SCCOOS)\",\n\t\t\"url\": \"http://sccoos.org/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"NOAA IOOS SECOORA (Southeast Coastal Ocean + Observing Regional Association)\",\n\t\t\"url\": \"http://erddap.secoora.org/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"NOAA NCEI (National Centers for Environmental + Information) / NCDDC\",\n\t\t\"url\": \"https://ecowatch.ncddc.noaa.gov/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"NOAA OSMC (Observing System Monitoring + Center)\",\n\t\t\"url\": \"http://osmc.noaa.gov/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"ONC (Ocean Networks Canada)\",\n\t\t\"url\": + \"http://dap.onc.uvic.ca/erddap/\",\n\t\t\"public\": true\n\t},\n {\n\t\t\"name\": + \"\",\n\t\t\"url\": \"https://oceanwatch.pifsc.noaa.gov/erddap/\",\n\t\t\"public\": + false\n\t},\n {\n\t\t\"name\": \"Ocean Observatories Initiative (OOI)\",\n\t\t\"url\": + \"https://erddap-uncabled.oceanobservatories.org/uncabled/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"Ocean Tracking Network\",\n\t\t\"url\": + \"https://members.oceantrack.org/erddap/\",\n\t\t\"public\": true\n\t},\n + \ {\n\t\t\"name\": \"\",\n\t\t\"url\": \"http://www.myroms.org:8080/erddap/\",\n\t\t\"public\": + false\n\t},\n {\n\t\t\"name\": \"Department of Marine and Coastal Sciences, + School of Environmental and Biological Sciences, Rutgers, The State University + of New Jersey\",\n\t\t\"url\": \"http://tds.marine.rutgers.edu/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"\",\n\t\t\"url\": \"https://comet.nefsc.noaa.gov/erddap/\",\n\t\t\"public\": + false\n\t},\n {\n\t\t\"name\": \"NOAA's Center for Operational Oceanographic + Products and Services\",\n\t\t\"url\": \"https://opendap.co-ops.nos.noaa.gov/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"\",\n\t\t\"url\": \"http://gcoos5.geos.tamu.edu:6060/erddap/\",\n\t\t\"public\": + false\n\t},\n {\n\t\t\"name\": \"\",\n\t\t\"url\": \"http://gcoos4.tamu.edu:8080/erddap/\",\n\t\t\"public\": + false\n\t},\n {\n\t\t\"name\": \"NOAA CoastWatch Great Lakes Node\",\n\t\t\"url\": + \"https://coastwatch.glerl.noaa.gov/erddap/\",\n\t\t\"public\": true\n\t},\n + \ {\n\t\t\"name\": \"\",\n\t\t\"url\": \"http://sfbaynutrients.sfei.org/erddap/\",\n\t\t\"public\": + false\n\t},\n {\n\t\t\"name\": \"Spray Underwater Glider data from Instrument + Development Group, Scripps Institute of Oceanography, University of California, + San Diego\",\n\t\t\"url\": \"https://spraydata.ucsd.edu/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"UBC Earth, Ocean & Atmospheric Sciences + SalishSeaCast Project\",\n\t\t\"url\": \"https://salishsea.eos.ubc.ca/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"UC Davis BML (University of California + at Davis, Bodega Marine Laboratory)\",\n\t\t\"url\": \"http://bmlsc.ucdavis.edu:8080/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"NOAA UAF (Unified Access Framework)\",\n\t\t\"url\": + \"https://upwell.pfeg.noaa.gov/erddap/\",\n\t\t\"public\": true\n\t},\n\t{\n\t\t\"name\": + \"Marine Domain Awareness (MDA) - Italy\",\n\t\t\"url\": \"https://bluehub.jrc.ec.europa.eu/erddap/\",\n\t\t\"public\": + true\n\t},\n\t{\n\t\t\"name\": \"R.Tech Engineering\",\n\t\t\"url\": \"https://meteo.rtech.fr/erddap/\",\n\t\t\"public\": + true\n\t},\n\t{\n\t\t\"name\": \"French Research Institute for the Exploitation + of the Sea\",\n\t\t\"url\": \"http://www.ifremer.fr/erddap/\",\n\t\t\"public\": + true\n\t}\n]" + recorded_at: 2019-08-29 20:44:40 GMT + recorded_with: vcr/0.3.0, webmockr/0.4.0 +- request: + method: get + uri: https://erddap.marine.ie/erddap/search/advanced.json?searchFor=temperature&page=1&itemsPerPage=1000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/4.0 crul/0.8.4.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/2 200 ' + server: nginx/1.10.2 + date: Thu, 29 Aug 2019 20:44:40 GMT + content-type: application/json;charset=UTF-8 + content-disposition: attachment;filename=AdvancedSearch.json + content-encoding: gzip + access-control-allow-origin: '*' + access-control-allow-methods: GET, POST, OPTIONS + access-control-allow-headers: DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range + access-control-expose-headers: Content-Length,Content-Range + body: + encoding: UTF-8 + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://erddap.marine.ie/erddap/tabledap/ICTempNetwork.subset", "https://erddap.marine.ie/erddap/tabledap/ICTempNetwork", "https://erddap.marine.ie/erddap/tabledap/ICTempNetwork.graph", "", "", "Coastal Temperature Network", "Irish Coastal Temperature Network\n\ncdm_data_type = TimeSeries\nVARIABLES:\nSiteName (Station ID)\nlongitude (degrees_east)\nlatitude (degrees_north)\nBay\nyear\nmonth\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nDepth (m)\nSeaTemperature (Sea Surface Temperature, degree_C)\nQFlag (Quality Control Flags)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/ICTempNetwork_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/ICTempNetwork_iso19115.xml", "https://erddap.marine.ie/erddap/info/ICTempNetwork/index.json", "http://www.isde.ie/#/c455d22d-79c2-4dbb-95fb-917a33ea885c", "https://erddap.marine.ie/erddap/rss/ICTempNetwork.rss", "Marine Institute", "ICTempNetwork"], + ["", "https://erddap.marine.ie/erddap/tabledap/ICTempNetworkFreshwater.subset", "https://erddap.marine.ie/erddap/tabledap/ICTempNetworkFreshwater", "https://erddap.marine.ie/erddap/tabledap/ICTempNetworkFreshwater.graph", "", "", "Coastal Temperature Network - Freshwater sites", "Irish Coastal Temperature Network Freshwater sites\n\ncdm_data_type = TimeSeries\nVARIABLES:\nSiteName (Station ID)\nlongitude (degrees_east)\nlatitude (degrees_north)\nBay\nyear\nmonth\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nDepth (m)\ntemperature (Surface Temperature, degree_C)\nQFlag (Quality Control Flags)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/ICTempNetworkFreshwater_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/ICTempNetworkFreshwater_iso19115.xml", "https://erddap.marine.ie/erddap/info/ICTempNetworkFreshwater/index.json", "http://www.isde.ie/#/c455d22d-79c2-4dbb-95fb-917a33ea885c", "https://erddap.marine.ie/erddap/rss/ICTempNetworkFreshwater.rss", "Marine Institute", "ICTempNetworkFreshwater"], + ["https://erddap.marine.ie/erddap/griddap/IMI_Model_Stats", "", "", "https://erddap.marine.ie/erddap/griddap/IMI_Model_Stats.graph", "https://erddap.marine.ie/erddap/wms/IMI_Model_Stats/request", "", "Model Monthly Means", "Irish Marine Institute modelled monthly means for Irish waters\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (Monthly mean sea surface temperature, C)\nsea_bottom_temperature (Monthly mean sea bottom temperature, C)\nsea_surface_salinity (Monthly mean sea surface salinity, PSU)\nsea_bottom_salinity (Monthly mean sea bottom salinity, PSU)\nsea_surface_x_velocity (Monthly mean surface U velocity component, m/s)\nsea_surface_y_velocity (Monthly mean surface V velocity component, m/s)\nmixed_layer_depth (Monthly mean mixed layer depth, m)\nsignificant_wave_height (Monthly mean significant wave height, m)\nmean_wave_direction (Monthly mean mean wave direction, degrees)\nmean_wave_period (Monthly mean absolute zero-crossing period, s)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IMI_Model_Stats_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IMI_Model_Stats_iso19115.xml", "https://erddap.marine.ie/erddap/info/IMI_Model_Stats/index.json", "http://milas.marine.ie/thredds/", "https://erddap.marine.ie/erddap/rss/IMI_Model_Stats.rss", "Irish Marine Institute", "IMI_Model_Stats"], + ["https://erddap.marine.ie/erddap/griddap/IMI_CONN_3D", "", "", "https://erddap.marine.ie/erddap/griddap/IMI_CONN_3D.graph", "https://erddap.marine.ie/erddap/wms/IMI_CONN_3D/request", "", "Irish Marine Institute Connemara Model CONN3D", "CONN3D\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nSea_water_temperature (Water Temperature, degree_C)\nSea_water_salinity (Salinity, PSU)\nsea_water_x_velocity (m/s)\nsea_water_y_velocity (m/s)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IMI_CONN_3D_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IMI_CONN_3D_iso19115.xml", "https://erddap.marine.ie/erddap/info/IMI_CONN_3D/index.json", "http://milas.marine.ie/thredds/", "https://erddap.marine.ie/erddap/rss/IMI_CONN_3D.rss", "Irish Marine Institute", "IMI_CONN_3D"], + ["https://erddap.marine.ie/erddap/griddap/IMI_NEATL", "", "", "https://erddap.marine.ie/erddap/griddap/IMI_NEATL.graph", "https://erddap.marine.ie/erddap/wms/IMI_NEATL/request", "", "Irish Marine Institute Northeast Atlantic Model", "NEATL\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_height (Sealevel Height, m)\nsea_surface_temperature (Water Temperature, degree_C)\nsea_bottom_temperature (Water Temperature, degree_C)\nsea_surface_salinity (Salinity, PSU)\nsea_bottom_salinity (Salinity, PSU)\nsea_surface_x_velocity (U surface water velocity component, m/s)\nsea_surface_y_velocity (V surface water velocity component, m/s)\nsea_bottom_x_velocity (U bottom water velocity component, m/s)\nsea_bottom_y_velocity (V bottom water velocity component, m/s)\nmixed_layer_depth (mixed layer depth (delta T of 0.5 degrees from surface), m)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IMI_NEATL_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IMI_NEATL_iso19115.xml", "https://erddap.marine.ie/erddap/info/IMI_NEATL/index.json", "http://milas.marine.ie/thredds/", "https://erddap.marine.ie/erddap/rss/IMI_NEATL.rss", "Irish Marine Institute", "IMI_NEATL"], + ["", "https://erddap.marine.ie/erddap/tabledap/IMINewportBuoys.subset", "https://erddap.marine.ie/erddap/tabledap/IMINewportBuoys", "https://erddap.marine.ie/erddap/tabledap/IMINewportBuoys.graph", "", "", "Newport Buoys hiRes", "Marine Institute Newport Freshwater Lake Buoys -hiRes data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlnstationid\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nstation_name\nwater_temp_2pt5m (Fresh Water Temperature, degree_C)\nwater_temp_5m (Fresh Water Temperature, degree_C)\nwater_temp_8m (Fresh Water Temperature, degree_C)\nwater_temp_11m (Fresh Water Temperature, degree_C)\nwater_temp_14m (Fresh Water Temperature, degree_C)\nwater_temp_16m (Fresh Water Temperature, degree_C)\nwater_temp_18m (Fresh Water Temperature, degree_C)\nwater_temp_20m (Fresh Water Temperature, degree_C)\nwater_temp_22m (Fresh Water Temperature, degree_C)\nwater_temp_27m (Fresh Water Temperature, degree_C)\nwater_temp_32m (Fresh Water Temperature, degree_C)\nwater_temp_42m (Fresh Water Temperature, degree_C)\nairtemperature (Air Temperature, degree_C)\nbarometric_pressure_1 (Air Pressure, mb)\nnephelometer (water_turbidity, NTU)\nchlorophyll_a (mass_concentration_of_chlorophyll_in_freshater, ug/l)\ncdom\npyranometer\nsurface_pfd\nuderwater_pfd (Underwater_PFD)\nanemometer\nanemometer_squared\n... (12 more variables)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IMINewportBuoys_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IMINewportBuoys_iso19115.xml", "https://erddap.marine.ie/erddap/info/IMINewportBuoys/index.json", "http://www.isde.ie/#/f26b4c60-664b-4383-b66e-a729df4fa888", "https://erddap.marine.ie/erddap/rss/IMINewportBuoys.rss", "Marine Institute", "IMINewportBuoys"], + ["", "https://erddap.marine.ie/erddap/tabledap/IrishNationalTideGaugeNetworkRiverGauges.subset", "https://erddap.marine.ie/erddap/tabledap/IrishNationalTideGaugeNetworkRiverGauges", "https://erddap.marine.ie/erddap/tabledap/IrishNationalTideGaugeNetworkRiverGauges.graph", "", "", "Irish National Tide Gauge Network River Gauges", "The Irish National Tide Gauge Network is an on-going development involving the Marine Institute and a number of organisations in the public and private sectors to develop a permanent tidal monitoring infrastructure, ultimately consisting of between 35 and 40 stations.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\naltitude (m)\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nstation_id\nWater_Level (m)\nWater_Temperature (degree_C)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IrishNationalTideGaugeNetworkRiverGauges_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IrishNationalTideGaugeNetworkRiverGauges_iso19115.xml", "https://erddap.marine.ie/erddap/info/IrishNationalTideGaugeNetworkRiverGauges/index.json", "http://catalog.marine.ie/geonetwork/srv/en/main.home?uuid=0da11e42-2d03-4c64-8b0d-0e78c04efc34", "https://erddap.marine.ie/erddap/rss/IrishNationalTideGaugeNetworkRiverGauges.rss", "Marine Institute", "IrishNationalTideGaugeNetworkRiverGauges"], + ["", "https://erddap.marine.ie/erddap/tabledap/spiddal_obs_ctd.subset", "https://erddap.marine.ie/erddap/tabledap/spiddal_obs_ctd", "https://erddap.marine.ie/erddap/tabledap/spiddal_obs_ctd.graph", "", "", "Galway Bay Observatory CTD data", "Spiddal, Galway Bay Observatory Conductivity, Temperature, Depth (CTD) data. Marine Institute data from a local source.\n\ncdm_data_type = Point\nVARIABLES:\ninstrument_id\ntime (seconds since 1970-01-01T00:00:00Z)\ncond\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\npress\nsal\nsoundv\ntemp (Temperature)\nttime\ndissolved_oxygen_ppm\ndissolved_oxygen_sat\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/spiddal_obs_ctd_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/spiddal_obs_ctd_iso19115.xml", "https://erddap.marine.ie/erddap/info/spiddal_obs_ctd/index.json", "http://spiddal.marine.ie/gallery/", "https://erddap.marine.ie/erddap/rss/spiddal_obs_ctd.rss", "Marine Institute", "spiddal_obs_ctd"], + ["", "https://erddap.marine.ie/erddap/tabledap/imiFurnaceWSHourly.subset", "https://erddap.marine.ie/erddap/tabledap/imiFurnaceWSHourly", "https://erddap.marine.ie/erddap/tabledap/imiFurnaceWSHourly.graph", "", "", "Furnace Weather Station Hourly data", "Furnace Automatic Synoptic Weather Station Hourly Averages No Quality Control - data supplied by Met Eireann, visit http://www.met.ie/climate-request/ for Quality Controlled Historical data\n\ncdm_data_type = TimeSeries\nVARIABLES:\ndatasourceid (Datasource ID)\nstation_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nAtmosphericPressure (Air Pressure, mb)\nTotalRain (Total Rainfall, mm)\nWindSpeed (kn)\nMaxGust (Wind Gust Speed, kn)\nsolarRad (Solar Radiance, J cm-2)\nMeanAirTemperature (Air Temperature, degree_C)\nGrassMin (Grass Min Air Temperature, degree_C)\nMinAirTemperature (Min Air Temperature, degree_C)\nMaxAirTemperature (Max Air Temperature, degree_C)\nSoilTemp5cm (Soil Temperature, degree_C)\nSoilTemp10cm (Soil Temperature, degree_C)\nSoilTemp20cm (Soil Temperature, degree_C)\nEarthTemp30cm (Soil Temperature, degree_C)\nEarthTemp50cm (Soil Temperature, degree_C)\nEarthTemp100cm (Soil Temperature, degree_C)\nHumidity (Relative Humidity, percent)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/imiFurnaceWSHourly_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/imiFurnaceWSHourly_iso19115.xml", "https://erddap.marine.ie/erddap/info/imiFurnaceWSHourly/index.json", "http://www.isde.ie/#/a1eb8b30-c49f-41d4-9809-9676c90d65cd", "https://erddap.marine.ie/erddap/rss/imiFurnaceWSHourly.rss", "Met Eireann", "imiFurnaceWSHourly"], + ["", "https://erddap.marine.ie/erddap/tabledap/imiFurnaceWSdaily.subset", "https://erddap.marine.ie/erddap/tabledap/imiFurnaceWSdaily", "https://erddap.marine.ie/erddap/tabledap/imiFurnaceWSdaily.graph", "", "", "Furnace Weather Station Daily averages", "Furnace Automatic Synoptic Weather Station Daily Averages with No Quality control - data supplied by Met Eireann, visit http://www.met.ie/climate-request/ for Quality Controlled Historical data\n\ncdm_data_type = TimeSeries\nVARIABLES:\ndatasourceid (Datasource ID)\nstation_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nAtmosphericPressure (Air Pressure, mb)\nTotalRain (Total Rainfall, mm)\nWindSpeed (kn)\nMaxGust (Wind Gust Speed, kn)\nsolarRad (Solar Radiance, J cm-2)\nMeanAirTemperature (Air Temperature, degree_C)\nGrassMin (Grass Min Air Temperature, degree_C)\nMinAirTemperature (Min Air Temperature, degree_C)\nMaxAirTemperature (Max Air Temperature, degree_C)\nSoilTemp5cm (Soil Temperature, degree_C)\nSoilTemp10cm (Soil Temperature, degree_C)\nSoilTemp20cm (Soil Temperature, degree_C)\nEarthTemp30cm (Soil Temperature, degree_C)\nEarthTemp50cm (Soil Temperature, degree_C)\nEarthTemp100cm (Soil Temperature, degree_C)\nHumidity (Relative Humidity, percent)\nqcflag (Quality Control Flags)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/imiFurnaceWSdaily_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/imiFurnaceWSdaily_iso19115.xml", "https://erddap.marine.ie/erddap/info/imiFurnaceWSdaily/index.json", "http://www.isde.ie/#/a1eb8b30-c49f-41d4-9809-9676c90d65cd", "https://erddap.marine.ie/erddap/rss/imiFurnaceWSdaily.rss", "Met Eireann", "imiFurnaceWSdaily"], + ["", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork.subset", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork.graph", "", "", "Irish Wave Buoys", "Irish Wave Buoys\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nstation_id\ninstrument\nPeakPeriod (sea_surface_wave_period_at_variance_spectral_density_maximum, s)\nPeakDirection (sea_surface_wave_to_direction, degrees_true)\nUpcrossPeriod (Sea Surface Swell Wave Zero upcrossing Period, s)\nSignificantWaveHeight (Sea Surface Wave Significant Height, cm)\nSeaTemperature (Sea Surface Temperature, degree_C)\nHmax (Sea Surface Height of the highest wave, cm)\nTHmax (Period of the highest wave, s)\nMeanCurDirTo (mean direction of sea water velocity, degrees_true)\nMeanCurSpeed (mean sea water speed, m/s)\nSignificantWaveHeight_qc (SigWaveHeight Quality Control Flag)\nPeakPeriod_qc (PeakPeriod Control Flag)\nPeakDirection_qc (PeakDirection Quality Control Flag)\nUpcrossPeriod_qc (UpcrossPeriod Quality Control Flag)\nSeaTemperature_qc (SeaTemperature Quality Control Flag)\nHmax_qc (Hmax Quality Control Flag)\nTHmax_qc (THmax Quality Control Flag)\nMeanCurDirTo_qc (MeanCurDirTo Quality Control Flag)\nMeanCurSpeed_qc (MeanCurSpeed Quality Control Flag)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IWaveBNetwork_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IWaveBNetwork_iso19115.xml", "https://erddap.marine.ie/erddap/info/IWaveBNetwork/index.json", "http://www.isde.ie/#/55eb27e0-2fc3-4dab-9963-a99d12402a9e", "https://erddap.marine.ie/erddap/rss/IWaveBNetwork.rss", "Marine Institute", "IWaveBNetwork"], + ["", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork30Min.subset", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork30Min", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork30Min.graph", "", "", "Irish Wave Buoys 30 Min", "Irish Wave Buoys 30 minute\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nstation_id\ninstrument\nPeakPeriod (sea_surface_wave_period_at_variance_spectral_density_maximum, s)\nPeakDirection (sea_surface_wave_to_direction, degrees_true)\nUpcrossPeriod (Sea Surface Swell Wave Zero upcrossing Period, s)\nSignificantWaveHeight (Sea Surface Wave Significant Height, cm)\nSeaTemperature (Sea Surface Temperature, degree_C)\nHmax (Sea Surface Height of the highest wave, cm)\nTHmax (Period of the highest wave, s)\nMeanCurDirTo (mean direction of sea water velocity, degrees_true)\nMeanCurSpeed (mean sea water speed, m/s)\nSignificantWaveHeight_qc (SigWaveHeight Quality Control Flag)\nPeakPeriod_qc (PeakPeriod Control Flag)\nPeakDirection_qc (PeakDirection Quality Control Flag)\nUpcrossPeriod_qc (UpcrossPeriod Quality Control Flag)\nSeaTemperature_qc (SeaTemperature Quality Control Flag)\nHmax_qc (Hmax Quality Control Flag)\nTHmax_qc (THmax Quality Control Flag)\nMeanCurDirTo_qc (MeanCurDirTo Quality Control Flag)\nMeanCurSpeed_qc (MeanCurSpeed Quality Control Flag)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IWaveBNetwork30Min_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IWaveBNetwork30Min_iso19115.xml", "https://erddap.marine.ie/erddap/info/IWaveBNetwork30Min/index.json", "http://www.isde.ie/#/55eb27e0-2fc3-4dab-9963-a99d12402a9e", "https://erddap.marine.ie/erddap/rss/IWaveBNetwork30Min.rss", "Marine Institute", "IWaveBNetwork30Min"], + ["", "https://erddap.marine.ie/erddap/tabledap/IWBNetwork.subset", "https://erddap.marine.ie/erddap/tabledap/IWBNetwork", "https://erddap.marine.ie/erddap/tabledap/IWBNetwork.graph", "", "", "Irish Weather Buoy Network", "Irish Weather Buoy Network\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nAtmosphericPressure (Air Pressure, mb)\nWindDirection (degrees_true)\nWindSpeed (kn)\nGust (Wind Gust Speed, kn)\nWaveHeight (Wave Height, m)\nWavePeriod (Wave Period, s)\nMeanWaveDirection (Mean Wave Direction, degrees_true)\nHmax (Maximum Wave Height, m)\nAirTemperature (Air Temperature, degree_C)\nDewPoint (DewPoint Temperature, degree_C)\nSeaTemperature (Sea Surface Temperature, degree_C)\nsalinity (Sea Water Salinity, PSU)\nRelativeHumidity (Relative Humidity, percent)\nQC_Flag (Quality Control Flags)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IWBNetwork_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IWBNetwork_iso19115.xml", "https://erddap.marine.ie/erddap/info/IWBNetwork/index.json", "http://www.isde.ie/#/464864ce-319b-4645-b4c9-f408d656fd76", "https://erddap.marine.ie/erddap/rss/IWBNetwork.rss", "Marine Institute", "IWBNetwork"], + ["", "https://erddap.marine.ie/erddap/tabledap/mestech.subset", "https://erddap.marine.ie/erddap/tabledap/mestech", "https://erddap.marine.ie/erddap/tabledap/mestech.graph", "", "", "MESTECH Multiparameter Sonde data", "Environmental Sensors. Dublin City University data from a local source.\n\ncdm_data_type = Point\nVARIABLES:\ninstrument_id\ntime (seconds since 1970-01-01T00:00:00Z)\nbattery (Battery Voltage, V)\nclock_date\nclock_time\nconductivity (microSiemens/cm)\ndepth (m)\ndissolved_oxygen (mg/l)\nlatitude (degrees_north)\nlongitude (degrees_east)\nph (Sea Water Ph Reported On Total Scale, pH)\nph_mv (Sea Water pH mV, mV)\nsalinity (Sea Water Practical Salinity, ppt)\nsite_id\nSeaTemperature (Sea Surface Temperature, degree_C)\nturbidity (NTU)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/mestech_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/mestech_iso19115.xml", "https://erddap.marine.ie/erddap/info/mestech/index.json", "http://www.mestech.ie", "https://erddap.marine.ie/erddap/rss/mestech.rss", "Dublin City University", "mestech"], + ["", "https://erddap.marine.ie/erddap/tabledap/spiddal_obs_adcp.subset", "https://erddap.marine.ie/erddap/tabledap/spiddal_obs_adcp", "https://erddap.marine.ie/erddap/tabledap/spiddal_obs_adcp.graph", "", "", "Galway Bay Observatory ADCP data", "Acoustic Doppler Current Profiler (ADCP) data from undersea observatory off Spiddal\n\ncdm_data_type = Point\nVARIABLES:\nserial_number\ntime (seconds since 1970-01-01T00:00:00Z)\nbin_number\nbeam_angle\ncorrelation_0\ncorrelation_1\ncorrelation_2\ncorrelation_3\ndepth (m)\ndirection\necho_intensity_0\necho_intensity_1\necho_intensity_2\necho_intensity_3\nheading\ninstrument_id\nlatitude (degrees_north)\nlongitude (degrees_east)\npercent_good_0\npercent_good_1\npercent_good_2\npercent_good_3\nroll\nsalinity (Sea Water Practical Salinity, PSU)\nspeed_of_sound\ntemperature\nvelocity\n... (4 more variables)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/spiddal_obs_adcp_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/spiddal_obs_adcp_iso19115.xml", "https://erddap.marine.ie/erddap/info/spiddal_obs_adcp/index.json", "https://smartbay.ie", "https://erddap.marine.ie/erddap/rss/spiddal_obs_adcp.rss", "Irish Marine Institute", "spiddal_obs_adcp"], + ["", "https://erddap.marine.ie/erddap/tabledap/argoFloats.subset", "https://erddap.marine.ie/erddap/tabledap/argoFloats", "https://erddap.marine.ie/erddap/tabledap/argoFloats.graph", "", "", "Argo Float Vertical Profiles", "Argo float vertical profiles from Coriolis Global Data Assembly Centres\n(GDAC). Argo is an international collaboration that collects high-quality\ntemperature and salinity profiles from the upper 2000m of the ice-free\nglobal ocean and currents from intermediate depths. The data come from\nbattery-powered autonomous floats that spend most of their life drifting\nat depth where they are stabilised by being neutrally buoyant at the\n\"parking depth\" pressure by having a density equal to the ambient pressure\nand a compressibility that is less than that of sea water. At present there\nare several models of profiling float used in Argo. All work in a similar\nfashion but differ somewhat in their design characteristics. At typically\n10-day intervals, the floats pump fluid into an external bladder and rise\nto the surface over about 6 hours while measuring temperature and salinity.\nSatellites or GPS determine the position of the floats when they surface,\nand the floats transmit their data to the satellites. The bladder then\ndeflates and the float returns to its original density and sinks to drift\nuntil the cycle is repeated. Floats are designed to make about 150 such\ncycles.\nData Management URL: http://www.argodatamgt.org/Documentation\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\nfileNumber (File Number)\ndata_type\nformat_version (File format version)\nhandbook_version (Data handbook version)\nreference_date_time (Date of reference for Julian days, seconds since 1970-01-01T00:00:00Z)\ndate_creation (Date of file creation, seconds since 1970-01-01T00:00:00Z)\ndate_update (Date of update of this file, seconds since 1970-01-01T00:00:00Z)\nplatform_number (Float unique identifier)\nproject_name (Name of the project)\npi_name (Name of the principal investigator)\n... (37 more variables)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/argoFloats_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/argoFloats_iso19115.xml", "https://erddap.marine.ie/erddap/info/argoFloats/index.json", "http://www.argo.net/", "https://erddap.marine.ie/erddap/rss/argoFloats.rss", "Argo", "argoFloats"], + ["", "https://erddap.marine.ie/erddap/tabledap/ais_met_hydro.subset", "https://erddap.marine.ie/erddap/tabledap/ais_met_hydro", "https://erddap.marine.ie/erddap/tabledap/ais_met_hydro.graph", "", "", "AIS Met Hydro", "Met Hydro data collected from Marine Institute AIS antenna\n\ncdm_data_type = Point\nVARIABLES:\nmmsi\nstation_id\ntime (Recordedtime, seconds since 1970-01-01T00:00:00Z)\naccuracy\nairtemp\ncdepth2\ncdepth3\ncdir\ncdir2\ncdir3\nclass\ncspeed\ncspeed2\ncspeed3\ndac\ndevice\ndewpoint\nfid\nflowtimestamp (seconds since 1970-01-01T00:00:00Z)\nhumidity\nlatitude (degrees_north)\nleveltrend\nlongitude (degrees_east)\npreciptype\npressure\npressuretend\nrepeat\n... (19 more variables)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/ais_met_hydro_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/ais_met_hydro_iso19115.xml", "https://erddap.marine.ie/erddap/info/ais_met_hydro/index.json", "http://www.digitalocean.ie", "https://erddap.marine.ie/erddap/rss/ais_met_hydro.rss", "Marine Institute", "ais_met_hydro"] + ] + } + } + recorded_at: 2019-08-29 20:44:40 GMT + recorded_with: vcr/0.3.0, webmockr/0.4.0 diff --git a/tests/vcr_cassettes/ed_search_adv_errors.yml b/tests/vcr_cassettes/ed_search_adv_errors.yml new file mode 100644 index 0000000..db044a4 --- /dev/null +++ b/tests/vcr_cassettes/ed_search_adv_errors.yml @@ -0,0 +1,57 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/search/advanced.json?page=1&itemsPerPage=1000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.7.4 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '404' + message: Not Found + explanation: Nothing matches the given URI + headers: + status: 'HTTP/1.1 404 ' + date: Tue, 07 May 2019 22:53:59 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-type: text/html;charset=utf-8 + content-language: en + content-length: '1285' + connection: close + body: + encoding: ASCII-8BIT + string: PCFkb2N0eXBlIGh0bWw+PGh0bWwgbGFuZz0iZW4iPjxoZWFkPjx0aXRsZT5IVFRQIFN0YXR1cyA0MDQg4oCTIE5vdCBGb3VuZDwvdGl0bGU+PHN0eWxlIHR5cGU9InRleHQvY3NzIj5oMSB7Zm9udC1mYW1pbHk6VGFob21hLEFyaWFsLHNhbnMtc2VyaWY7Y29sb3I6d2hpdGU7YmFja2dyb3VuZC1jb2xvcjojNTI1RDc2O2ZvbnQtc2l6ZToyMnB4O30gaDIge2ZvbnQtZmFtaWx5OlRhaG9tYSxBcmlhbCxzYW5zLXNlcmlmO2NvbG9yOndoaXRlO2JhY2tncm91bmQtY29sb3I6IzUyNUQ3Njtmb250LXNpemU6MTZweDt9IGgzIHtmb250LWZhbWlseTpUYWhvbWEsQXJpYWwsc2Fucy1zZXJpZjtjb2xvcjp3aGl0ZTtiYWNrZ3JvdW5kLWNvbG9yOiM1MjVENzY7Zm9udC1zaXplOjE0cHg7fSBib2R5IHtmb250LWZhbWlseTpUYWhvbWEsQXJpYWwsc2Fucy1zZXJpZjtjb2xvcjpibGFjaztiYWNrZ3JvdW5kLWNvbG9yOndoaXRlO30gYiB7Zm9udC1mYW1pbHk6VGFob21hLEFyaWFsLHNhbnMtc2VyaWY7Y29sb3I6d2hpdGU7YmFja2dyb3VuZC1jb2xvcjojNTI1RDc2O30gcCB7Zm9udC1mYW1pbHk6VGFob21hLEFyaWFsLHNhbnMtc2VyaWY7YmFja2dyb3VuZDp3aGl0ZTtjb2xvcjpibGFjaztmb250LXNpemU6MTJweDt9IGEge2NvbG9yOmJsYWNrO30gYS5uYW1lIHtjb2xvcjpibGFjazt9IC5saW5lIHtoZWlnaHQ6MXB4O2JhY2tncm91bmQtY29sb3I6IzUyNUQ3Njtib3JkZXI6bm9uZTt9PC9zdHlsZT48L2hlYWQ+PGJvZHk+PGgxPkhUVFAgU3RhdHVzIDQwNCDigJMgTm90IEZvdW5kPC9oMT48aHIgY2xhc3M9ImxpbmUiIC8+PHA+PGI+VHlwZTwvYj4gU3RhdHVzIFJlcG9ydDwvcD48cD48Yj5NZXNzYWdlPC9iPiBSZXNvdXJjZSBub3QgZm91bmQ6ICYjNDc7ZXJkZGFwJiM0NztzZWFyY2gmIzQ3O2FkdmFuY2VkLmpzb24gKEEgLmpzb24gQWR2YW5jZWQgU2VhcmNoIHJlcXVlc3QgbXVzdCBpbmNsdWRlIG9uZSBvciBtb3JlIGNyaXRlcmlhLCBmb3IgZXhhbXBsZSwgJnF1b3Q7P3BhZ2U9MSZhbXA7aXRlbXNQZXJQYWdlPTEwMDAmYW1wO3NlYXJjaEZvcj13aW5kK3RlbXBlcmF0dXJlJnF1b3Q7Lik8L3A+PHA+PGI+RGVzY3JpcHRpb248L2I+IFRoZSBvcmlnaW4gc2VydmVyIGRpZCBub3QgZmluZCBhIGN1cnJlbnQgcmVwcmVzZW50YXRpb24gZm9yIHRoZSB0YXJnZXQgcmVzb3VyY2Ugb3IgaXMgbm90IHdpbGxpbmcgdG8gZGlzY2xvc2UgdGhhdCBvbmUgZXhpc3RzLjwvcD48aHIgY2xhc3M9ImxpbmUiIC8+PGgzPkFwYWNoZSBUb21jYXQvOC41LjQwPC9oMz48L2JvZHk+PC9odG1sPg== + recorded_at: 2019-05-07 22:58:36 GMT + recorded_with: vcr/0.2.6, webmockr/0.3.4.9100 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/search/advanced.json?searchFor=adfafadfsd&page=1&itemsPerPage=1000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.7.4 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '500' + message: Internal Server Error + explanation: Server got itself in trouble + headers: + status: 'HTTP/1.1 500 ' + date: Tue, 07 May 2019 22:54:01 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-type: text/html;charset=utf-8 + content-language: en + content-length: '1112' + connection: close + body: + encoding: ASCII-8BIT + string: PCFkb2N0eXBlIGh0bWw+PGh0bWwgbGFuZz0iZW4iPjxoZWFkPjx0aXRsZT5IVFRQIFN0YXR1cyA1MDAg4oCTIEludGVybmFsIFNlcnZlciBFcnJvcjwvdGl0bGU+PHN0eWxlIHR5cGU9InRleHQvY3NzIj5oMSB7Zm9udC1mYW1pbHk6VGFob21hLEFyaWFsLHNhbnMtc2VyaWY7Y29sb3I6d2hpdGU7YmFja2dyb3VuZC1jb2xvcjojNTI1RDc2O2ZvbnQtc2l6ZToyMnB4O30gaDIge2ZvbnQtZmFtaWx5OlRhaG9tYSxBcmlhbCxzYW5zLXNlcmlmO2NvbG9yOndoaXRlO2JhY2tncm91bmQtY29sb3I6IzUyNUQ3Njtmb250LXNpemU6MTZweDt9IGgzIHtmb250LWZhbWlseTpUYWhvbWEsQXJpYWwsc2Fucy1zZXJpZjtjb2xvcjp3aGl0ZTtiYWNrZ3JvdW5kLWNvbG9yOiM1MjVENzY7Zm9udC1zaXplOjE0cHg7fSBib2R5IHtmb250LWZhbWlseTpUYWhvbWEsQXJpYWwsc2Fucy1zZXJpZjtjb2xvcjpibGFjaztiYWNrZ3JvdW5kLWNvbG9yOndoaXRlO30gYiB7Zm9udC1mYW1pbHk6VGFob21hLEFyaWFsLHNhbnMtc2VyaWY7Y29sb3I6d2hpdGU7YmFja2dyb3VuZC1jb2xvcjojNTI1RDc2O30gcCB7Zm9udC1mYW1pbHk6VGFob21hLEFyaWFsLHNhbnMtc2VyaWY7YmFja2dyb3VuZDp3aGl0ZTtjb2xvcjpibGFjaztmb250LXNpemU6MTJweDt9IGEge2NvbG9yOmJsYWNrO30gYS5uYW1lIHtjb2xvcjpibGFjazt9IC5saW5lIHtoZWlnaHQ6MXB4O2JhY2tncm91bmQtY29sb3I6IzUyNUQ3Njtib3JkZXI6bm9uZTt9PC9zdHlsZT48L2hlYWQ+PGJvZHk+PGgxPkhUVFAgU3RhdHVzIDUwMCDigJMgSW50ZXJuYWwgU2VydmVyIEVycm9yPC9oMT48aHIgY2xhc3M9ImxpbmUiIC8+PHA+PGI+VHlwZTwvYj4gU3RhdHVzIFJlcG9ydDwvcD48cD48Yj5NZXNzYWdlPC9iPiBZb3VyIHF1ZXJ5IHByb2R1Y2VkIG5vIG1hdGNoaW5nIHJlc3VsdHMuIChuUm93cyA9IDApPC9wPjxwPjxiPkRlc2NyaXB0aW9uPC9iPiBUaGUgc2VydmVyIGVuY291bnRlcmVkIGFuIHVuZXhwZWN0ZWQgY29uZGl0aW9uIHRoYXQgcHJldmVudGVkIGl0IGZyb20gZnVsZmlsbGluZyB0aGUgcmVxdWVzdC48L3A+PGhyIGNsYXNzPSJsaW5lIiAvPjxoMz5BcGFjaGUgVG9tY2F0LzguNS40MDwvaDM+PC9ib2R5PjwvaHRtbD4= + recorded_at: 2019-05-07 22:58:36 GMT + recorded_with: vcr/0.2.6, webmockr/0.3.4.9100 diff --git a/tests/vcr_cassettes/ed_search_diff_servers.yml b/tests/vcr_cassettes/ed_search_diff_servers.yml new file mode 100644 index 0000000..50ae74b --- /dev/null +++ b/tests/vcr_cassettes/ed_search_diff_servers.yml @@ -0,0 +1,105 @@ +http_interactions: +- request: + method: get + uri: https://erddap.marine.ie/erddap/search/index.json?searchFor=wave + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.7.0.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + server: nginx/1.10.2 + date: Thu, 31 Jan 2019 19:44:24 GMT + content-type: application/json;charset=UTF-8 + transfer-encoding: chunked + connection: keep-alive + content-disposition: attachment;filename=search.json + content-encoding: gzip + access-control-allow-origin: '*' + access-control-allow-methods: GET, POST, OPTIONS + access-control-allow-headers: DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range + access-control-expose-headers: Content-Length,Content-Range + body: + encoding: UTF-8 + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork.subset", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork.graph", "", "", "Irish Wave Buoys", "Irish Wave Buoys\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nstation_id\nPeakPeriod (sea_surface_wave_period_at_variance_spectral_density_maximum, s)\nPeakDirection (sea_surface_wave_to_direction, degrees_true)\nUpcrossPeriod (Sea Surface Swell Wave Zero upcrossing Period, s)\nSignificantWaveHeight (Sea Surface Wave Significant Height, cm)\nSeaTemperature (Sea Surface Temperature, degree_C)\nHmax (Sea Surface Height of the highest wave, cm)\nTHmax (Period of the highest wave, s)\nMeanCurDirTo (mean direction of sea water velocity, degrees_true)\nMeanCurSpeed (mean sea water speed, m/s)\nSignificantWaveHeight_qc (SigWaveHeight Quality Control Flag)\nPeakPeriod_qc (PeakPeriod Control Flag)\nPeakDirection_qc (PeakDirection Quality Control Flag)\nUpcrossPeriod_qc (UpcrossPeriod Quality Control Flag)\nSeaTemperature_qc (SeaTemperature Quality Control Flag)\nHmax_qc (Hmax Quality Control Flag)\nTHmax_qc (THmax Quality Control Flag)\nMeanCurDirTo_qc (MeanCurDirTo Quality Control Flag)\nMeanCurSpeed_qc (MeanCurSpeed Quality Control Flag)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IWaveBNetwork_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IWaveBNetwork_iso19115.xml", "https://erddap.marine.ie/erddap/info/IWaveBNetwork/index.json", "http://www.isde.ie/#/55eb27e0-2fc3-4dab-9963-a99d12402a9e", "https://erddap.marine.ie/erddap/rss/IWaveBNetwork.rss", "Marine Institute", "IWaveBNetwork"], + ["", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork30Min.subset", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork30Min", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork30Min.graph", "", "", "Irish Wave Buoys 30 Min", "Irish Wave Buoys 30 minute\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nstation_id\nPeakPeriod (sea_surface_wave_period_at_variance_spectral_density_maximum, s)\nPeakDirection (sea_surface_wave_to_direction, degrees_true)\nUpcrossPeriod (Sea Surface Swell Wave Zero upcrossing Period, s)\nSignificantWaveHeight (Sea Surface Wave Significant Height, cm)\nSeaTemperature (Sea Surface Temperature, degree_C)\nHmax (Sea Surface Height of the highest wave, cm)\nTHmax (Period of the highest wave, s)\nMeanCurDirTo (mean direction of sea water velocity, degrees_true)\nMeanCurSpeed (mean sea water speed, m/s)\nSignificantWaveHeight_qc (SigWaveHeight Quality Control Flag)\nPeakPeriod_qc (PeakPeriod Control Flag)\nPeakDirection_qc (PeakDirection Quality Control Flag)\nUpcrossPeriod_qc (UpcrossPeriod Quality Control Flag)\nSeaTemperature_qc (SeaTemperature Quality Control Flag)\nHmax_qc (Hmax Quality Control Flag)\nTHmax_qc (THmax Quality Control Flag)\nMeanCurDirTo_qc (MeanCurDirTo Quality Control Flag)\nMeanCurSpeed_qc (MeanCurSpeed Quality Control Flag)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IWaveBNetwork30Min_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IWaveBNetwork30Min_iso19115.xml", "https://erddap.marine.ie/erddap/info/IWaveBNetwork30Min/index.json", "http://www.isde.ie/#/55eb27e0-2fc3-4dab-9963-a99d12402a9e", "https://erddap.marine.ie/erddap/rss/IWaveBNetwork30Min.rss", "Marine Institute", "IWaveBNetwork30Min"], + ["", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork_spectral.subset", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork_spectral", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork_spectral.graph", "", "", "Irish Wave Buoys Spectral Data", "Irish Wave Buoys Spectral Data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nbuoy_id\ntime (Recordedtime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_id\nPeakDirection (degrees_true)\nPeakSpread (degrees_true)\nSignificantWaveHeight (m)\nEnergyPeriod (s)\nMeanWavePeriod_Tm01 (s)\nMeanWavePeriod_Tm02 (s)\nPeakPeriod (s)\nqcflag\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IWaveBNetwork_spectral_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IWaveBNetwork_spectral_iso19115.xml", "https://erddap.marine.ie/erddap/info/IWaveBNetwork_spectral/index.json", "http://www.isde.ie/#/55eb27e0-2fc3-4dab-9963-a99d12402a9e", "https://erddap.marine.ie/erddap/rss/IWaveBNetwork_spectral.rss", "Marine Institute", "IWaveBNetwork_spectral"], + ["", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork_zerocrossing.subset", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork_zerocrossing", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork_zerocrossing.graph", "", "", "Irish Wave Buoys Zero crossing Data", "Irish Wave Buoys Zero crossing Data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nbuoy_id\ntime (Recordedtime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_id\nHmax (m)\nHmaxPeriod (THmax, s)\nHavg (m)\nTavg (s)\nqcflag\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IWaveBNetwork_zerocrossing_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IWaveBNetwork_zerocrossing_iso19115.xml", "https://erddap.marine.ie/erddap/info/IWaveBNetwork_zerocrossing/index.json", "http://www.isde.ie/#/55eb27e0-2fc3-4dab-9963-a99d12402a9e", "https://erddap.marine.ie/erddap/rss/IWaveBNetwork_zerocrossing.rss", "Marine Institute", "IWaveBNetwork_zerocrossing"], + ["", "https://erddap.marine.ie/erddap/tabledap/IMI-WaveBuoyForecast.subset", "https://erddap.marine.ie/erddap/tabledap/IMI-WaveBuoyForecast", "https://erddap.marine.ie/erddap/tabledap/IMI-WaveBuoyForecast.graph", "", "", "MI Wave Forecast at buoy locations", "MI Wave Forecast at buoy locations\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (longitude in decimal degree east, degrees_east)\nlatitude (latitude in decimal degree north, degrees_north)\nstationID (Station ID)\nsignificant_wave_height (m)\nmean_wave_period (mean absolute zero-crossing period (TM02), s)\nmean_wave_direction (mean wave to direction, degrees)\nwave_power_per_unit_crest_length (kW/m)\npeak_period (sea_surface_wave_period_at_variance_spectral_density_maximum, s)\nenergy_period (Wave energy period, s)\nproject_code\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IMI-WaveBuoyForecast_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IMI-WaveBuoyForecast_iso19115.xml", "https://erddap.marine.ie/erddap/info/IMI-WaveBuoyForecast/index.json", "http://milas.marine.ie/thredds/", "https://erddap.marine.ie/erddap/rss/IMI-WaveBuoyForecast.rss", "Marine Institute", "IMI-WaveBuoyForecast"], + ["", "https://erddap.marine.ie/erddap/tabledap/waveatlantos00.subset", "https://erddap.marine.ie/erddap/tabledap/waveatlantos00", "https://erddap.marine.ie/erddap/tabledap/waveatlantos00.graph", "", "", "MI Wave Forecast at undefined Atlantos project locations", "MI Wave Forecast at undefined Atlantos project locations (latitude, longitude set to zero)\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (longitude in decimal degree east, degrees_east)\nlatitude (latitude in decimal degree north, degrees_north)\nstationID (Station ID)\nsignificant_wave_height (m)\nmean_wave_period (mean absolute zero-crossing period (TM02), s)\nmean_wave_direction (mean wave to direction, degrees)\nwave_power_per_unit_crest_length (kW/m)\npeak_period (sea_surface_wave_period_at_variance_spectral_density_maximum, s)\nenergy_period (Wave energy period, s)\nproject_code\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/waveatlantos00_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/waveatlantos00_iso19115.xml", "https://erddap.marine.ie/erddap/info/waveatlantos00/index.json", "http://milas.marine.ie/thredds/", "https://erddap.marine.ie/erddap/rss/waveatlantos00.rss", "Marine Institute", "waveatlantos00"], + ["https://erddap.marine.ie/erddap/griddap/IMI_EATL_WAVE", "", "", "https://erddap.marine.ie/erddap/griddap/IMI_EATL_WAVE.graph", "https://erddap.marine.ie/erddap/wms/IMI_EATL_WAVE/request", "", "East Atlantic SWAN Wave Model", "Wave model data\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsignificant_wave_height (m)\nswell_wave_height (swell significant wave height, m)\nmean_wave_direction (degrees)\nmean_wave_period (absolute zero-crossing period, s)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IMI_EATL_WAVE_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IMI_EATL_WAVE_iso19115.xml", "https://erddap.marine.ie/erddap/info/IMI_EATL_WAVE/index.json", "http://milas.marine.ie/thredds/", "https://erddap.marine.ie/erddap/rss/IMI_EATL_WAVE.rss", "Irish Marine Institute", "IMI_EATL_WAVE"], + ["", "https://erddap.marine.ie/erddap/tabledap/galway_obs_fluorometer.subset", "https://erddap.marine.ie/erddap/tabledap/galway_obs_fluorometer", "https://erddap.marine.ie/erddap/tabledap/galway_obs_fluorometer.graph", "", "", "Galway Bay Observatory Fluorometer Data", "Galway Bay Observatory Fluorometer Data\n\ncdm_data_type = Point\nVARIABLES:\ninstrument_id\ntime (seconds since 1970-01-01T00:00:00Z)\nchl_count\nclock_date\nclock_time\ndepth (m)\nfluorescence_wavelength (nm)\nlatitude (degrees_north)\nlongitude (degrees_east)\nntu_count\nthermistor\nturbidity_wavelength (nm)\nturbidity (sea_water_turbidity, NTU)\nchlorophyll (mass_concentration_of_chlorophyll_in_sea_water, ug/l)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/galway_obs_fluorometer_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/galway_obs_fluorometer_iso19115.xml", "https://erddap.marine.ie/erddap/info/galway_obs_fluorometer/index.json", "http://spiddal.marine.ie/gallery/", "https://erddap.marine.ie/erddap/rss/galway_obs_fluorometer.rss", "Marine Institute", "galway_obs_fluorometer"], + ["", "https://erddap.marine.ie/erddap/tabledap/IWBNetwork.subset", "https://erddap.marine.ie/erddap/tabledap/IWBNetwork", "https://erddap.marine.ie/erddap/tabledap/IWBNetwork.graph", "", "", "Irish Weather Buoy Network", "Irish Weather Buoy Network\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nAtmosphericPressure (Air Pressure, mb)\nWindDirection (degrees_true)\nWindSpeed (kn)\nGust (Wind Gust Speed, kn)\nWaveHeight (Wave Height, m)\nWavePeriod (Wave Period, s)\nMeanWaveDirection (Mean Wave Direction, degrees_true)\nHmax (Maximum Wave Height, m)\nAirTemperature (Air Temperature, degree_C)\nDewPoint (DewPoint Temperature, degree_C)\nSeaTemperature (Sea Surface Temperature, degree_C)\nsalinity (Sea Water Salinity, PSU)\nRelativeHumidity (Relative Humidity, percent)\nQC_Flag (Quality Control Flags)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IWBNetwork_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IWBNetwork_iso19115.xml", "https://erddap.marine.ie/erddap/info/IWBNetwork/index.json", "http://www.isde.ie/#/464864ce-319b-4645-b4c9-f408d656fd76", "https://erddap.marine.ie/erddap/rss/IWBNetwork.rss", "Marine Institute", "IWBNetwork"], + ["https://erddap.marine.ie/erddap/griddap/IMI_Model_Stats", "", "", "https://erddap.marine.ie/erddap/griddap/IMI_Model_Stats.graph", "https://erddap.marine.ie/erddap/wms/IMI_Model_Stats/request", "", "Model Monthly Means", "Irish Marine Institute modelled monthly means for Irish waters\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][latitude][longitude]):\nsea_surface_temperature (Monthly mean sea surface temperature, C)\nsea_bottom_temperature (Monthly mean sea bottom temperature, C)\nsea_surface_salinity (Monthly mean sea surface salinity, PSU)\nsea_bottom_salinity (Monthly mean sea bottom salinity, PSU)\nsea_surface_x_velocity (Monthly mean surface U velocity component, m/s)\nsea_surface_y_velocity (Monthly mean surface V velocity component, m/s)\nmixed_layer_depth (Monthly mean mixed layer depth, m)\nsignificant_wave_height (Monthly mean significant wave height, m)\nmean_wave_direction (Monthly mean mean wave direction, degrees)\nmean_wave_period (Monthly mean absolute zero-crossing period, s)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IMI_Model_Stats_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IMI_Model_Stats_iso19115.xml", "https://erddap.marine.ie/erddap/info/IMI_Model_Stats/index.json", "http://milas.marine.ie/thredds/", "https://erddap.marine.ie/erddap/rss/IMI_Model_Stats.rss", "Irish Marine Institute", "IMI_Model_Stats"], + ["", "https://erddap.marine.ie/erddap/tabledap/ais_met_hydro.subset", "https://erddap.marine.ie/erddap/tabledap/ais_met_hydro", "https://erddap.marine.ie/erddap/tabledap/ais_met_hydro.graph", "", "", "AIS Met Hydro", "Met Hydro data collected from Marine Institute AIS antenna\n\ncdm_data_type = Point\nVARIABLES:\nmmsi\nstation_id\ntime (Recordedtime, seconds since 1970-01-01T00:00:00Z)\naccuracy\nairtemp\ncdepth2\ncdepth3\ncdir\ncdir2\ncdir3\nclass\ncspeed\ncspeed2\ncspeed3\ndac\ndevice\ndewpoint\nfid\nflowtimestamp (seconds since 1970-01-01T00:00:00Z)\nhumidity\nlatitude (degrees_north)\nleveltrend\nlongitude (degrees_east)\npreciptype\npressure\npressuretend\nrepeat\n... (19 more variables)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/ais_met_hydro_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/ais_met_hydro_iso19115.xml", "https://erddap.marine.ie/erddap/info/ais_met_hydro/index.json", "http://www.digitalocean.ie", "https://erddap.marine.ie/erddap/rss/ais_met_hydro.rss", "Marine Institute", "ais_met_hydro"] + ] + } + } + recorded_at: 2019-01-31 19:44:28 GMT + recorded_with: vcr/0.2.2, webmockr/0.3.0 +- request: + method: get + uri: http://www.ifremer.fr/erddap/search/index.json?searchFor=temperature + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.7.0.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: HTTP/1.1 200 200 + date: Thu, 31 Jan 2019 19:44:28 GMT + content-disposition: attachment;filename=search.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + referrer-policy: strict-origin-when-cross-origin + transfer-encoding: chunked + x-pad: avoid browser bug + body: + encoding: UTF-8 + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "", "http://www.ifremer.fr/erddap/tabledap/PCM-Argo", "http://www.ifremer.fr/erddap/tabledap/PCM-Argo.graph", "", "", "Argo, Profile Classification Model, North-Atlantic, Temperature", "PCM results. Ifremer/LOPS data from a local source.\n\ncdm_data_type = Point\nVARIABLES:\nlatitude (Latitude of the station, best estimate, degrees_north)\nlongitude (Longitude of the station, best estimate, degrees_east)\ntime (Time of the station, best estimate, seconds since 1970-01-01T00:00:00Z)\nPOST (Probability of a profile to be in a class)\nACTI (Gaussian value of profiles for a class)\nMODELPDF (Model PDF for the dataset)\nLABEL (ID of the most probable class)\nROBUST (Labeling metric for the attributed class)\n", "http://www.ifremer.fr/erddap/metadata/fgdc/xml/PCM-Argo_fgdc.xml", "http://www.ifremer.fr/erddap/metadata/iso19115/xml/PCM-Argo_iso19115.xml", "http://www.ifremer.fr/erddap/info/PCM-Argo/index.json", "https://wwz.ifremer.fr/", "http://www.ifremer.fr/erddap/rss/PCM-Argo.rss", "http://www.ifremer.fr/erddap/subscriptions/add.html?datasetID=PCM-Argo&showErrors=false&email=", "Ifremer/LOPS", "PCM-Argo"], + ["http://www.ifremer.fr/erddap/griddap/NRTOA", "", "", "http://www.ifremer.fr/erddap/griddap/NRTOA.graph", "http://www.ifremer.fr/erddap/wms/NRTOA/request", "", "NRTOA, Near Real Time Objective Analysis", "NRTOA, Near Real Time Objective Analysis\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTEMP (Temperature , degree_Celsius)\nTEMP_PCTVAR (Error on variable (% variance), percent)\nPSAL (Practical salinity, PSS-78)\nPSAL_PCTVAR (Error on variable (% variance), percent)\n", "http://www.ifremer.fr/erddap/metadata/fgdc/xml/NRTOA_fgdc.xml", "http://www.ifremer.fr/erddap/metadata/iso19115/xml/NRTOA_iso19115.xml", "http://www.ifremer.fr/erddap/info/NRTOA/index.json", "http://www.ifremer.fr", "http://www.ifremer.fr/erddap/rss/NRTOA.rss", "http://www.ifremer.fr/erddap/subscriptions/add.html?datasetID=NRTOA&showErrors=false&email=", "Ifremer", "NRTOA"], + ["http://www.ifremer.fr/erddap/griddap/CORA", "", "", "http://www.ifremer.fr/erddap/griddap/CORA.graph", "http://www.ifremer.fr/erddap/wms/CORA/request", "", "CORA, Coriolis Ocean Dataset for Reanalysis", "CORA, Coriolis Ocean Dataset for Reanalysis\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nTEMP (Temperature, degree_Celsius)\nTEMP_PCTVAR (Error on variable (% variance), percent)\nPSAL (Practical salinity, PSS-78)\nPSAL_PCTVAR (Error on variable (% variance), percent)\n", "http://www.ifremer.fr/erddap/metadata/fgdc/xml/CORA_fgdc.xml", "http://www.ifremer.fr/erddap/metadata/iso19115/xml/CORA_iso19115.xml", "http://www.ifremer.fr/erddap/info/CORA/index.json", "http://doi.org/10.17882/46219", "http://www.ifremer.fr/erddap/rss/CORA.rss", "http://www.ifremer.fr/erddap/subscriptions/add.html?datasetID=CORA&showErrors=false&email=", "Ifremer", "CORA"], + ["http://www.ifremer.fr/erddap/griddap/ifremer_tds0_6080_109e_ed80", "", "", "http://www.ifremer.fr/erddap/griddap/ifremer_tds0_6080_109e_ed80.graph", "http://www.ifremer.fr/erddap/wms/ifremer_tds0_6080_109e_ed80/request", "", "Global Ocean, Coriolis Observation Re-Analysis CORA4.1", "Global Ocean - Coriolis Observation Re-Analysis CORA4.1 (CORIOLIS-GLOBAL-CORA04.1-OBS FULL TIME SERIE)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nPSAL (sea_water_salinity, PSS-78)\nPSAL_PCTVAR (Error on sea_water_salinity (%variance), percent)\nTEMP (sea_water_temperature, degree_Celsius)\nTEMP_PCTVAR (Error on sea_water_temperature (%variance), percent)\n", "http://www.ifremer.fr/erddap/metadata/fgdc/xml/ifremer_tds0_6080_109e_ed80_fgdc.xml", "http://www.ifremer.fr/erddap/metadata/iso19115/xml/ifremer_tds0_6080_109e_ed80_iso19115.xml", "http://www.ifremer.fr/erddap/info/ifremer_tds0_6080_109e_ed80/index.json", "http://tds0.ifremer.fr/thredds/dodsC/CORIOLIS-GLOBAL-CORA04.1-OBS_FULL_TIME_SERIE.html", "http://www.ifremer.fr/erddap/rss/ifremer_tds0_6080_109e_ed80.rss", "http://www.ifremer.fr/erddap/subscriptions/add.html?datasetID=ifremer_tds0_6080_109e_ed80&showErrors=false&email=", "SISMER/IFREMER", "ifremer_tds0_6080_109e_ed80"], + ["http://www.ifremer.fr/erddap/griddap/ISAS13", "", "", "http://www.ifremer.fr/erddap/griddap/ISAS13.graph", "http://www.ifremer.fr/erddap/wms/ISAS13/request", "", "ISAS 2013, Monthly Climatology, Global, 0.5 degree", "deduced from SABS, TCNS and P, ISAS13 files, (gsw_alpha TEOS-10-GSW v3.04)\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][depth][latitude][longitude]):\nALPH (Thermal expansion coefficient (TEOS-10), 1/K)\nBETA (Saline contraction coefficient (TEOS-10), kg/g)\nBV2N (N2 (TEOS-10) (salinity + temperature 1st order term), PSU)\nBV2S (N2S (TEOS-10) (salinity 1st order term), PSU)\nBV2T (N2T (TEOS-10) (temperature 1st order term), S^-2')\nBVF2 (Brunt-Vaisala frequency squared, S^-2')\nHCAP (Isobaric heat capacity (TEOS-10), J Kg^-1 K^-1)\nHSTR (Steric height, dyn. M)\nHSTS (Halosteric height, dyn. M)\nHSTT (Thermosteric height, dyn. M)\nPRES (Pressure, dbars)\nPSAL (Practical salinity, PSS-78)\nRSTA (Atan Stability Ratio (TEOS-10), degree)\nSABS (Absolute salinity (TEOS-10), g/kg)\nSIG0 (Potential density anomaly, kg*m^-3)\nSIGI (In-Situ density anomaly, kg*m^-3)\nSSPD (Sound-Speed-DelGrosso, m S^-1)\nTCNS (Conservative temperature (TEOS-10), degree_Celsius)\nTEMP (Temperature , degree_Celsius)\nTPOT (Potential temperature, degree_Celsius)\nTUAG (Turner angle (TEOS-10), degree)\n", "http://www.ifremer.fr/erddap/metadata/fgdc/xml/ISAS13_fgdc.xml", "http://www.ifremer.fr/erddap/metadata/iso19115/xml/ISAS13_iso19115.xml", "http://www.ifremer.fr/erddap/info/ISAS13/index.json", "https://wwz.ifremer.fr/", "http://www.ifremer.fr/erddap/rss/ISAS13.rss", "http://www.ifremer.fr/erddap/subscriptions/add.html?datasetID=ISAS13&showErrors=false&email=", "LPO/IFREMER", "ISAS13"], + ["", "", "http://www.ifremer.fr/erddap/tabledap/OceanGlidersGDACTrajectories", "http://www.ifremer.fr/erddap/tabledap/OceanGlidersGDACTrajectories.graph", "", "", "OceanGliders GDAC trajectories", "OceanGliders GDAC trajectories\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_deployment\ntime (Epoch time, seconds since 1970-01-01T00:00:00Z)\nJULD (Julian 1950 time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Measurement latitude, degrees_north)\nlongitude (Measurement longitude, degrees_east)\nTIME_QC (Quality flag)\nJULD_QC (Quality flag)\nPOSITION_QC (Quality flag)\nPSAL (Practical salinity, PSU)\nTEMP (Sea temperature in-situ ITS-90 scale, degree_Celsius)\nCNDC (Electrical conductivity, mhos/m)\nPRES (Sea water pressure, equals 0 at sea-level, decibar)\nPSAL_QC (Quality flag)\nTEMP_QC (Quality flag)\nCNDC_QC (Quality flag)\nPRES_QC (Quality flag)\nPSAL_UNCERTAINTY (Uncertainty, PSU)\nTEMP_UNCERTAINTY (Uncertainty, degree_Celsius)\nCNDC_UNCERTAINTY (Uncertainty, mhos/m)\nPRES_UNCERTAINTY (Uncertainty, decibar)\nMOLAR_DOXY (Uncompensated (pressure and salinity) oxygen concentration reported by the oxygen sensor, micromole/l)\nTEMP_DOXY (Sea temperature from oxygen sensor ITS-90 scale, degree_Celsius)\nBPHASE_DOXY\nDPHASE_DOXY\nRPHASE_DOXY\nMOLAR_DOXY_QC (Quality flag)\nTEMP_DOXY_QC\n... (20 more variables)\n", "http://www.ifremer.fr/erddap/metadata/fgdc/xml/OceanGlidersGDACTrajectories_fgdc.xml", "http://www.ifremer.fr/erddap/metadata/iso19115/xml/OceanGlidersGDACTrajectories_iso19115.xml", "http://www.ifremer.fr/erddap/info/OceanGlidersGDACTrajectories/index.json", "http://www.ego-network.org/", "http://www.ifremer.fr/erddap/rss/OceanGlidersGDACTrajectories.rss", "http://www.ifremer.fr/erddap/subscriptions/add.html?datasetID=OceanGlidersGDACTrajectories&showErrors=false&email=", "IFREMER", "OceanGlidersGDACTrajectories"], + ["http://www.ifremer.fr/erddap/griddap/SDN_BalticSea_Clim", "", "", "http://www.ifremer.fr/erddap/griddap/SDN_BalticSea_Clim.graph", "http://www.ifremer.fr/erddap/wms/SDN_BalticSea_Clim/request", "", "SDN_TS_BalticSea_Climatology", "SDN_TS_BalticSea_Climatology\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nSalinity (PSU)\nSalinity_err (Error standard deviation of Salinity, psu)\nSalinity_L1 (Salinity masked using relative error threshold 0.3, psu)\nSalinity_L2 (Salinity masked using relative error threshold 0.5, psu)\nSalinity_relerr (Relative error of Salinity)\nSalinity_databins (Logarithm10 of number of data in bins)\nSalinity_outlbins (Logarithm10 of number of outliers data in bins)\nSalinity_CLfield (Correlation length field, PSU)\nTemperature (degree_Celsius)\nTemperature_err (Error standard deviation of Temperature, degree_Celsius)\nTemperature_L1 (Temperature masked using relative error threshold 0.3, degree_Celsius)\nTemperature_L2 (Temperature masked using relative error threshold 0.5, degree_Celsius)\nTemperature_relerr (Relative error of Temperature)\nTemperature_databins (Logarithm10 of number of data in bins)\nTemperature_outlbins (Logarithm10 of number of outliers data in bins)\nTemperature_CLfield (Correlation length field)\n", "http://www.ifremer.fr/erddap/metadata/fgdc/xml/SDN_BalticSea_Clim_fgdc.xml", "http://www.ifremer.fr/erddap/metadata/iso19115/xml/SDN_BalticSea_Clim_iso19115.xml", "http://www.ifremer.fr/erddap/info/SDN_BalticSea_Clim/index.json", "https://www.seadatanet.org/", "http://www.ifremer.fr/erddap/rss/SDN_BalticSea_Clim.rss", "http://www.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDN_BalticSea_Clim&showErrors=false&email=", "SeaDataNet", "SDN_BalticSea_Clim"], + ["http://www.ifremer.fr/erddap/griddap/SDN_BlackSea_Clim", "", "", "http://www.ifremer.fr/erddap/griddap/SDN_BlackSea_Clim.graph", "http://www.ifremer.fr/erddap/wms/SDN_BlackSea_Clim/request", "", "SDN_TS_BlackSea_Climatology", "SDN_TS_BlackSea_Climatology\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nSalinity (PSU)\nSalinity_err (Error standard deviation of Salinity, psu)\nSalinity_L1 (Salinity masked using relative error threshold 0.3, psu)\nSalinity_L2 (Salinity masked using relative error threshold 0.5, psu)\nSalinity_relerr (Relative error of Salinity)\nSalinity_databins (Logarithm10 of number of data in bins)\nSalinity_outlbins (Logarithm10 of number of outliers data in bins)\nSalinity_CLfield (Correlation length field, PSU)\nTemperature (degree_Celsius)\nTemperature_err (Error standard deviation of Temperature, degree_Celsius)\nTemperature_L1 (Temperature masked using relative error threshold 0.3, degree_Celsius)\nTemperature_L2 (Temperature masked using relative error threshold 0.5, degree_Celsius)\nTemperature_relerr (Relative error of Temperature)\nTemperature_databins (Logarithm10 of number of data in bins)\nTemperature_outlbins (Logarithm10 of number of outliers data in bins)\nTemperature_CLfield (Correlation length field)\n", "http://www.ifremer.fr/erddap/metadata/fgdc/xml/SDN_BlackSea_Clim_fgdc.xml", "http://www.ifremer.fr/erddap/metadata/iso19115/xml/SDN_BlackSea_Clim_iso19115.xml", "http://www.ifremer.fr/erddap/info/SDN_BlackSea_Clim/index.json", "https://www.seadatanet.org/", "http://www.ifremer.fr/erddap/rss/SDN_BlackSea_Clim.rss", "http://www.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDN_BlackSea_Clim&showErrors=false&email=", "SeaDataNet", "SDN_BlackSea_Clim"], + ["http://www.ifremer.fr/erddap/griddap/SDN_MedSea_Clim", "", "", "http://www.ifremer.fr/erddap/griddap/SDN_MedSea_Clim.graph", "http://www.ifremer.fr/erddap/wms/SDN_MedSea_Clim/request", "", "SDN_TS_MedSea_Climatology", "SDN_TS_MedSea_Climatology\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nSalinity (PSU)\nSalinity_err (Error standard deviation of Salinity, psu)\nSalinity_L1 (Salinity masked using relative error threshold 0.3, psu)\nSalinity_L2 (Salinity masked using relative error threshold 0.5, psu)\nSalinity_relerr (Relative error of Salinity)\nSalinity_databins (Logarithm10 of number of data in bins)\nSalinity_outlbins (Logarithm10 of number of outliers data in bins)\nSalinity_CLfield (Correlation length field, PSU)\nTemperature (degree_Celsius)\nTemperature_err (Error standard deviation of Temperature, degree_Celsius)\nTemperature_L1 (Temperature masked using relative error threshold 0.3, degree_Celsius)\nTemperature_L2 (Temperature masked using relative error threshold 0.5, degree_Celsius)\nTemperature_relerr (Relative error of Temperature)\nTemperature_databins (Logarithm10 of number of data in bins)\nTemperature_outlbins (Logarithm10 of number of outliers data in bins)\nTemperature_CLfield (Correlation length field)\n", "http://www.ifremer.fr/erddap/metadata/fgdc/xml/SDN_MedSea_Clim_fgdc.xml", "http://www.ifremer.fr/erddap/metadata/iso19115/xml/SDN_MedSea_Clim_iso19115.xml", "http://www.ifremer.fr/erddap/info/SDN_MedSea_Clim/index.json", "https://www.seadatanet.org/", "http://www.ifremer.fr/erddap/rss/SDN_MedSea_Clim.rss", "http://www.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDN_MedSea_Clim&showErrors=false&email=", "SeaDataNet", "SDN_MedSea_Clim"], + ["http://www.ifremer.fr/erddap/griddap/SDN_ArcticOcean_Clim", "", "", "http://www.ifremer.fr/erddap/griddap/SDN_ArcticOcean_Clim.graph", "http://www.ifremer.fr/erddap/wms/SDN_ArcticOcean_Clim/request", "", "SDN_TS_ArcticOcean_Climatology", "SDN_TS_ArcticOcean_Climatology\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nSalinity (PSU)\nSalinity_err (Error standard deviation of Salinity, psu)\nSalinity_L1 (Salinity masked using relative error threshold 0.3, psu)\nSalinity_L2 (Salinity masked using relative error threshold 0.5, psu)\nSalinity_relerr (Relative error of Salinity)\nSalinity_databins (Logarithm10 of number of data in bins)\nSalinity_outlbins (Logarithm10 of number of outliers data in bins)\nSalinity_CLfield (Correlation length field, PSU)\nTemperature (degree_Celsius)\nTemperature_err (Error standard deviation of Temperature, degree_Celsius)\nTemperature_L1 (Temperature masked using relative error threshold 0.3, degree_Celsius)\nTemperature_L2 (Temperature masked using relative error threshold 0.5, degree_Celsius)\nTemperature_relerr (Relative error of Temperature)\nTemperature_databins (Logarithm10 of number of data in bins)\nTemperature_outlbins (Logarithm10 of number of outliers data in bins)\nTemperature_CLfield (Correlation length field)\n", "http://www.ifremer.fr/erddap/metadata/fgdc/xml/SDN_ArcticOcean_Clim_fgdc.xml", "http://www.ifremer.fr/erddap/metadata/iso19115/xml/SDN_ArcticOcean_Clim_iso19115.xml", "http://www.ifremer.fr/erddap/info/SDN_ArcticOcean_Clim/index.json", "https://www.seadatanet.org/", "http://www.ifremer.fr/erddap/rss/SDN_ArcticOcean_Clim.rss", "http://www.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDN_ArcticOcean_Clim&showErrors=false&email=", "SeaDataNet", "SDN_ArcticOcean_Clim"], + ["http://www.ifremer.fr/erddap/griddap/SDN_NorthAtlanticOcean_Clim", "", "", "http://www.ifremer.fr/erddap/griddap/SDN_NorthAtlanticOcean_Clim.graph", "http://www.ifremer.fr/erddap/wms/SDN_NorthAtlanticOcean_Clim/request", "", "SDN_TS_NorthAtlanticOcean_Climatology", "SDN_TS_NorthAtlanticOcean_Climatology\n\ncdm_data_type = Grid\nVARIABLES (all of which use the dimensions [time][altitude][latitude][longitude]):\nSalinity (PSU)\nSalinity_err (Error standard deviation of Salinity, psu)\nSalinity_L1 (Salinity masked using relative error threshold 0.3, psu)\nSalinity_L2 (Salinity masked using relative error threshold 0.5, psu)\nSalinity_relerr (Relative error of Salinity)\nSalinity_databins (Logarithm10 of number of data in bins)\nSalinity_outlbins (Logarithm10 of number of outliers data in bins)\nSalinity_CLfield (Correlation length field, PSU)\nTemperature (degree_Celsius)\nTemperature_err (Error standard deviation of Temperature, degree_Celsius)\nTemperature_L1 (Temperature masked using relative error threshold 0.3, degree_Celsius)\nTemperature_L2 (Temperature masked using relative error threshold 0.5, degree_Celsius)\nTemperature_relerr (Relative error of Temperature)\nTemperature_databins (Logarithm10 of number of data in bins)\nTemperature_outlbins (Logarithm10 of number of outliers data in bins)\nTemperature_CLfield (Correlation length field)\n", "http://www.ifremer.fr/erddap/metadata/fgdc/xml/SDN_NorthAtlanticOcean_Clim_fgdc.xml", "http://www.ifremer.fr/erddap/metadata/iso19115/xml/SDN_NorthAtlanticOcean_Clim_iso19115.xml", "http://www.ifremer.fr/erddap/info/SDN_NorthAtlanticOcean_Clim/index.json", "https://www.seadatanet.org/", "http://www.ifremer.fr/erddap/rss/SDN_NorthAtlanticOcean_Clim.rss", "http://www.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDN_NorthAtlanticOcean_Clim&showErrors=false&email=", "SeaDataNet", "SDN_NorthAtlanticOcean_Clim"], + ["", "", "http://www.ifremer.fr/erddap/tabledap/OACP-Argo", "http://www.ifremer.fr/erddap/tabledap/OACP-Argo.graph", "", "", "Argo, Mean structure of the North Atlantic subtropical permanent pycnocline", "Maps of properties from OAC-P estimates.\n\ncdm_data_type = Other\nVARIABLES:\nlongitude (Station longitude, degrees_east)\nlatitude (Station latitude, degrees_north)\nPPD (Permanent pycnocline depth, m)\nPPD_er (Error of the permanent pycnocline depth estimate, m)\nPPH (Permanent pycnocline total thickness, m)\nPPH_er (Error of the permanent pycnocline total thickness estimate, m)\nPPHTOP (Permanent pycnocline top thickness, m)\nPPHTOP_er (Error of the permanent pycnocline top thickness estimate, m)\nPPHBTO (Permanent pycnocline bottom thickness, m)\nPPHBTO_er (Error of the permanent pycnocline bottom thickness estimate, m)\nPPTEMP (Temperature at the depth of the permanent pycnocline, deg C)\nPPPSAL (Salinity at the depth of the permanent pycnocline, PSU)\nPPSIG0 (Potential density referenced to the surface at the depth of the permanent pycnocline, kg/m^3)\nPPPLPV (Planetary potential vorticity at the depth of the permanent pycnocline, m^-1 s^-1)\nPPBFRQ (Brunt-Vaisala frequency squared at the depth of the permanent pycnocline, s^-2)\nMWD (Mode water depth, m)\nMWTEMP (Temperature at the depth of the mode water, deg C)\nMWPSAL (Salinity at the depth of the mode water, PSU)\nMWSIG0 (Potential density referenced to the surface at the depth of the mode water, kg/m^3)\nMWPLPV (Planetary potential vorticity at the depth of the mode water, m^-1 s^-1)\nMWBFRQ (Brunt-Vaisala frequency squared at the depth of the mode water, s^-2)\n", "http://www.ifremer.fr/erddap/metadata/fgdc/xml/OACP-Argo_fgdc.xml", "http://www.ifremer.fr/erddap/metadata/iso19115/xml/OACP-Argo_iso19115.xml", "http://www.ifremer.fr/erddap/info/OACP-Argo/index.json", "https://wwz.ifremer.fr/", "http://www.ifremer.fr/erddap/rss/OACP-Argo.rss", "http://www.ifremer.fr/erddap/subscriptions/add.html?datasetID=OACP-Argo&showErrors=false&email=", "LOPS/Ifremer", "OACP-Argo"], + ["", "http://www.ifremer.fr/erddap/tabledap/SDN_datafile.subset", "http://www.ifremer.fr/erddap/tabledap/SDN_datafile", "http://www.ifremer.fr/erddap/tabledap/SDN_datafile.graph", "", "", "SeaDataNet CFPoint PROFILE, Generated by Octopus 1.4.0, 2018-04-17 11:44:44 (SDN_dataFile)", "SeaDataNet CFPoint PROFILE - Generated by Octopus 1.4.0 - 2018-04-17 11:44:44. SDN_dataFile. SeaDataNet data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nfileNumber (File Number)\nSDN_EDMO_CODE (European Directory of Marine Organisations code for the CDI partner)\nSDN_CRUISE (DEWEX-MERMEX 2013 LEG2)\nSDN_STATION (List of station numbers)\nSDN_LOCAL_CDI_ID (SeaDataNet CDI identifier)\nSDN_XLINK (External resource linkages)\ndepth (Bathymetric depth at profile measurement site, m)\nlongitude (degrees_east)\nlatitude (degrees_north)\nPOSITION_SEADATANET_QC (SeaDataNet quality flag)\ncrs\ntime (Chronological Julian Date, seconds since 1970-01-01T00:00:00Z)\nTIME_SEADATANET_QC (SeaDataNet quality flag)\nPRES (Pressure (spatial co-ordinate) exerted by the water body by profiling pressure sensor and corrected to read zero at sea level, decibars)\nPRES_SEADATANET_QC (SeaDataNet quality flag)\nTEMP (Temperature of the water body, degrees celsius)\nTEMP_SEADATANET_QC (SeaDataNet quality flag)\nPSAL (Practical salinity of the water body, dimensionless)\nPSAL_SEADATANET_QC (SeaDataNet quality flag)\nDOX2 (Concentration of oxygen {O2 CAS 7782-44-7} per unit mass of the water body [dissolved plus reactive particulate phase], micromoles per kilogram)\nDOX2_SEADATANET_QC (SeaDataNet quality flag)\nTUR3 (Transmittance (unspecified wavelength) per unspecified length of the water body by transmissometer, percent)\nTUR3_SEADATANET_QC (SeaDataNet quality flag)\nFLU2 (Concentration of chlorophyll-a {chl-a CAS 479-61-8} per unit volume of the water body [particulate >unknown phase] by in-situ chlorophyll fluorometer and manufacturer's calibration applied, milligrams per cubic meter)\nFLU2_SEADATANET_QC (SeaDataNet quality flag)\n", "http://www.ifremer.fr/erddap/metadata/fgdc/xml/SDN_datafile_fgdc.xml", "http://www.ifremer.fr/erddap/metadata/iso19115/xml/SDN_datafile_iso19115.xml", "http://www.ifremer.fr/erddap/info/SDN_datafile/index.json", "http://www.ifremer.fr", "http://www.ifremer.fr/erddap/rss/SDN_datafile.rss", "http://www.ifremer.fr/erddap/subscriptions/add.html?datasetID=SDN_datafile&showErrors=false&email=", "SeaDataNet", "SDN_datafile"], + ["", "", "http://www.ifremer.fr/erddap/tabledap/ArgoFloats", "http://www.ifremer.fr/erddap/tabledap/ArgoFloats.graph", "", "", "Argo Float Vertical Profiles", "Argo float vertical profiles from Coriolis Global Data Assembly Centres\n(GDAC). Argo is an international collaboration that collects high-quality\ntemperature and salinity profiles from the upper 2000m of the ice-free\nglobal ocean and currents from intermediate depths. The data come from\nbattery-powered autonomous floats that spend most of their life drifting\nat depth where they are stabilised by being neutrally buoyant at the\n\"parking depth\" pressure by having a density equal to the ambient pressure\nand a compressibility that is less than that of sea water. At present there\nare several models of profiling float used in Argo. All work in a similar\nfashion but differ somewhat in their design characteristics. At typically\n10-day intervals, the floats pump fluid into an external bladder and rise\nto the surface over about 6 hours while measuring temperature and salinity.\nSatellites or GPS determine the position of the floats when they surface,\nand the floats transmit their data to the satellites. The bladder then\ndeflates and the float returns to its original density and sinks to drift\nuntil the cycle is repeated. Floats are designed to make about 150 such\ncycles.\nData Management URL: http://www.argodatamgt.org/Documentation\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\nfileNumber (File Number)\ndata_type\nformat_version (File format version)\nhandbook_version (Data handbook version)\nreference_date_time (Date of reference for Julian days, seconds since 1970-01-01T00:00:00Z)\ndate_creation (Date of file creation, seconds since 1970-01-01T00:00:00Z)\ndate_update (Date of update of this file, seconds since 1970-01-01T00:00:00Z)\nplatform_number (Float unique identifier)\nproject_name (Name of the project)\npi_name (Name of the principal investigator)\n... (37 more variables)\n", "http://www.ifremer.fr/erddap/metadata/fgdc/xml/ArgoFloats_fgdc.xml", "http://www.ifremer.fr/erddap/metadata/iso19115/xml/ArgoFloats_iso19115.xml", "http://www.ifremer.fr/erddap/info/ArgoFloats/index.json", "http://www.argo.net/", "http://www.ifremer.fr/erddap/rss/ArgoFloats.rss", "http://www.ifremer.fr/erddap/subscriptions/add.html?datasetID=ArgoFloats&showErrors=false&email=", "Argo", "ArgoFloats"], + ["", "", "http://www.ifremer.fr/erddap/tabledap/ArgoFloats-bio", "http://www.ifremer.fr/erddap/tabledap/ArgoFloats-bio.graph", "", "", "Argo Float Bio Vertical Profiles", "Argo float vertical profiles from Coriolis Global Data Assembly Centres\n(GDAC). Argo is an international collaboration that collects high-quality\ntemperature and salinity profiles from the upper 2000m of the ice-free\nglobal ocean and currents from intermediate depths. The data come from\nbattery-powered autonomous floats that spend most of their life drifting\nat depth where they are stabilised by being neutrally buoyant at the\n\"parking depth\" pressure by having a density equal to the ambient pressure\nand a compressibility that is less than that of sea water. At present there\nare several models of profiling float used in Argo. All work in a similar\nfashion but differ somewhat in their design characteristics. At typically\n10-day intervals, the floats pump fluid into an external bladder and rise\nto the surface over about 6 hours while measuring temperature and salinity.\nSatellites or GPS determine the position of the floats when they surface,\nand the floats transmit their data to the satellites. The bladder then\ndeflates and the float returns to its original density and sinks to drift\nuntil the cycle is repeated. Floats are designed to make about 150 such\ncycles.\nData Management URL: http://www.argodatamgt.org/Documentation\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\nfileNumber (File Number)\ndata_type\nformat_version (File format version)\nhandbook_version (Data handbook version)\nreference_date_time (Date of reference for Julian days, seconds since 1970-01-01T00:00:00Z)\ndate_creation (Date of file creation, seconds since 1970-01-01T00:00:00Z)\ndate_update (Date of update of this file, seconds since 1970-01-01T00:00:00Z)\nplatform_number (Float unique identifier)\nproject_name (Name of the project)\npi_name (Name of the principal investigator)\n... (43 more variables)\n", "http://www.ifremer.fr/erddap/metadata/fgdc/xml/ArgoFloats-bio_fgdc.xml", "http://www.ifremer.fr/erddap/metadata/iso19115/xml/ArgoFloats-bio_iso19115.xml", "http://www.ifremer.fr/erddap/info/ArgoFloats-bio/index.json", "http://doi.org/10.17882/42182", "http://www.ifremer.fr/erddap/rss/ArgoFloats-bio.rss", "http://www.ifremer.fr/erddap/subscriptions/add.html?datasetID=ArgoFloats-bio&showErrors=false&email=", "Argo", "ArgoFloats-bio"] + ] + } + } + recorded_at: 2019-01-31 19:44:28 GMT + recorded_with: vcr/0.2.2, webmockr/0.3.0 diff --git a/tests/vcr_cassettes/griddap.yml b/tests/vcr_cassettes/griddap.yml new file mode 100644 index 0000000..7de285b --- /dev/null +++ b/tests/vcr_cassettes/griddap.yml @@ -0,0 +1,679 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/info/erdQMekm14day/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 21:24:17 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=erdQMekm14day_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "Grid"], + ["attribute", "NC_GLOBAL", "contact", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "Conventions", "String", "CF-1.6, COARDS, ACDD-1.3"], + ["attribute", "NC_GLOBAL", "creation_date", "String", "Tue Jul 14 23:13:27 2020"], + ["attribute", "NC_GLOBAL", "creator_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "creator_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "defaultGraphQuery", "String", "&.draw=vectors"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "360.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "75.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "-75.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_resolution", "double", "0.25"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "360.0"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_lon_resolution", "double", "0.25"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_max", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_min", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_positive", "String", "up"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_units", "String", "m"], + ["attribute", "NC_GLOBAL", "history", "String", "1-day geographic projection composites, created by erd.data@noaa.gov from L2 swath data obtained from NOAA|NESDIS, are used to create multi-day composites via the composite script in the dalesLibAscatB.py library by erd.data@noaa.gov at NOAA NMFS SWFSC ERD."], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "https://coastwatch.pfeg.noaa.gov/infog/QM_uekm_las.html"], + ["attribute", "NC_GLOBAL", "institution", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "keywords", "String", "advanced, altitude, ascat, circulation, coast, coastwatch, current, data, degrees, diffusivity, driven, Earth Science > Oceans > Ocean Circulation > Wind-Driven Circulation, eumetsat, european, exploitation, global, meteorological, metop, near, near real time, noaa, node, ocean, oceans, organisation, QMuekm, real, satellites, scatterometer, time, wcn, west, wind, wind-driven, zonal"], + ["attribute", "NC_GLOBAL", "license", "String", "The data may be used and redistributed for free but is not intended\nfor legal use, since it may contain inaccuracies. Neither the data\nContributor, ERD, NOAA, nor the United States Government, nor any\nof their employees or contractors, makes any warranty, express or\nimplied, including warranties of merchantability and fitness for a\nparticular purpose, or assumes any legal liability for the accuracy,\ncompleteness, or usefulness, of this information."], + ["attribute", "NC_GLOBAL", "naming_authority", "String", "gov.noaa.pfeg.coastwatch"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "75.0"], + ["attribute", "NC_GLOBAL", "project", "String", "CoastWatch (https://coastwatch.noaa.gov/)"], + ["attribute", "NC_GLOBAL", "publisher_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "publisher_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "publisher_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "publisher_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "references", "String", "NOAA/NESDIS https://manati.star.nesdis.noaa.gov/products/ASCAT.php ."], + ["attribute", "NC_GLOBAL", "source_data", "String", "14-day composite mean of files: QM2020196_2020196_uekm.grd.gz, QM2020195_2020195_uekm.grd.gz, QM2020194_2020194_uekm.grd.gz, QM2020193_2020193_uekm.grd.gz, QM2020192_2020192_uekm.grd.gz, QM2020191_2020191_uekm.grd.gz, QM2020190_2020190_uekm.grd.gz, QM2020189_2020189_uekm.grd.gz, QM2020188_2020188_uekm.grd.gz, QM2020187_2020187_uekm.grd.gz, QM2020186_2020186_uekm.grd.gz, QM2020185_2020185_uekm.grd.gz, QM2020184_2020184_uekm.grd.gz, QM2020183_2020183_uekm.grd.gz"], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "(local files)"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "-75.0"], + ["attribute", "NC_GLOBAL", "spatial_resolution", "String", "0.25 degree"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v70"], + ["attribute", "NC_GLOBAL", "summary", "String", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is a 14 day composite.)"], + ["attribute", "NC_GLOBAL", "testOutOfDate", "String", "now-10days"], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2020-07-08T00:00:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "2013-08-27T00:00:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "Wind Diffusivity Current, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (14 Day)"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "0.0"], + ["dimension", "time", "", "double", "nValues=2496, evenlySpaced=false, averageSpacing=1 day 0h 6m 56s"], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "1.3775616E9, 1.5941664E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Centered Time"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["dimension", "altitude", "", "double", "nValues=1, onlyValue=0.0"], + ["attribute", "altitude", "_CoordinateAxisType", "String", "Height"], + ["attribute", "altitude", "_CoordinateZisPositive", "String", "up"], + ["attribute", "altitude", "actual_range", "double", "0.0, 0.0"], + ["attribute", "altitude", "axis", "String", "Z"], + ["attribute", "altitude", "ioos_category", "String", "Location"], + ["attribute", "altitude", "long_name", "String", "Altitude"], + ["attribute", "altitude", "positive", "String", "up"], + ["attribute", "altitude", "standard_name", "String", "altitude"], + ["attribute", "altitude", "units", "String", "m"], + ["dimension", "latitude", "", "double", "nValues=601, evenlySpaced=true, averageSpacing=0.25"], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "double", "-75.0, 75.0"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "coordsys", "String", "geographic"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "point_spacing", "String", "even"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["dimension", "longitude", "", "double", "nValues=1441, evenlySpaced=true, averageSpacing=0.25"], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "double", "0.0, 360.0"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "coordsys", "String", "geographic"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "point_spacing", "String", "even"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "u_current", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "u_current", "_FillValue", "float", "-99999.0"], + ["attribute", "u_current", "colorBarMaximum", "double", "4.0"], + ["attribute", "u_current", "colorBarMinimum", "double", "-4.0"], + ["attribute", "u_current", "coordsys", "String", "geographic"], + ["attribute", "u_current", "ioos_category", "String", "Currents"], + ["attribute", "u_current", "long_name", "String", "Zonal Wind Diffusivity Current"], + ["attribute", "u_current", "missing_value", "float", "-99999.0"], + ["attribute", "u_current", "units", "String", "m s-1"], + ["variable", "v_current", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "v_current", "_FillValue", "float", "-99999.0"], + ["attribute", "v_current", "colorBarMaximum", "double", "4.0"], + ["attribute", "v_current", "colorBarMinimum", "double", "-4.0"], + ["attribute", "v_current", "coordsys", "String", "geographic"], + ["attribute", "v_current", "ioos_category", "String", "Currents"], + ["attribute", "v_current", "long_name", "String", "Meridional Wind Diffusivity Current"], + ["attribute", "v_current", "missing_value", "float", "-99999.0"], + ["attribute", "v_current", "units", "String", "m s-1"], + ["variable", "mod_current", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "mod_current", "_FillValue", "float", "-99999.0"], + ["attribute", "mod_current", "colorBarMaximum", "double", "0.05"], + ["attribute", "mod_current", "colorBarMinimum", "double", "0.0"], + ["attribute", "mod_current", "colorBarPalette", "String", "WhiteRedBlack"], + ["attribute", "mod_current", "coordsys", "String", "geographic"], + ["attribute", "mod_current", "ioos_category", "String", "Currents"], + ["attribute", "mod_current", "long_name", "String", "Modulus of Wind Diffusivity Current"], + ["attribute", "mod_current", "missing_value", "float", "-99999.0"], + ["attribute", "mod_current", "units", "String", "m s-1"] + ] + } + } + recorded_at: 2020-07-15 21:24:05 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 21:24:18 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 21:24:18 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://upwell.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012.graph", "", "", "public", "AIS Ship Traffic: Hawaii: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_hi_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_hi_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_hi_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_hi_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_hi_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_hi_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012.graph", "", "", "public", "AIS Ship Traffic: Johnston Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Johnston Atoll. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_john_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_john_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_john_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_john_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_john_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_john_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012.graph", "", "", "public", "AIS Ship Traffic: Mariana and Wake: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Mariana Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_mari_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_mari_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_mari_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_mari_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_mari_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_mari_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012.graph", "", "", "public", "AIS Ship Traffic: Rose Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Rose Atoll in American Samoa. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_rose_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_rose_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_rose_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_rose_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_rose_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_rose_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom for the most recent 7 days.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_temp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_temp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_temp/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_temp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_temp&showErrors=false&email=", "University of Hawaii", "aco_adcp_temp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Velocity", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean current velocity at the ACO from a 250 kHz SonTek acoustic doppler current profiler (ADCP) at 1.83 m above the ocean bottom for the most recent 7 days. Velocities are flagged bad if the amplitude is excessively low or high. An amplitude is high if it exceeds the average of the ping before and the ping after by 20 counts. An amplitude is low if less than 6 counts. After this the velocities are flagged bad if the absolute deviation of the vertical velocity from its ensemble median exceeds 0.15 m/s or if its value is less than -0.25 m/s.\n\ncdm_data_type = Profile\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each location, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\neastward_sea_water_velocity (current east component, meters/second)\nnorthward_sea_water_velocity (current north component, meters/second)\nupward_sea_water_velocity (current upward component, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_vel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_vel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_vel/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_vel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_vel&showErrors=false&email=", "University of Hawaii", "aco_adcp_vel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://upwell.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF.graph", "", "", "public", "CRRF Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-CRRF: CRRF Weather Station: Palau: Koror: Ngeanges Island)\nair_temperature (Celsius)\nair_temperature_max (maximum air temperature, Celsius)\nair_temperature_max_time (maximum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (minimum air temperature, Celsius)\nair_temperature_min_time (minimum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_std (air temperature standard deviation, Celsius)\nwind_speed (m/s)\nwind_speed_max (gust speed, m/s)\nwind_speed_max_time (gust speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (minimum wind speed, m/s)\nwind_speed_min_time (minimum wind speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_std (wind speed standard deviation, m/s)\nwind_from_direction (wind direction, degrees)\nwind_from_direction_std (wind direction standard deviation, degrees)\nrainfall_amount (total rainfall, mm)\n... (23 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-CRRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-CRRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-CRRF/index.json", "https://www.pacioos.hawaii.edu/weather/obs-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-CRRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-CRRF&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "AWS-CRRF"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_1000genomes/", "public", "File Names from the AWS S3 1000genomes Bucket: 1000 Genomes", "This dataset has file information from the AWS S3 1000genomes bucket at https://1000genomes.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 1000 Genomes\nName2: http://www.internationalgenome.org/formats\nDescription: The 1000 Genomes Project is an international collaboration which has established the most detailed catalogue of human genetic variation, including SNPs, structural variants, and their haplotype context. The final phase of the project sequenced more than 2500 individuals from 26 different populations around the world and produced an integrated set of phased haplotypes with more than 80 million variants for these individuals.\n\nDocumentation: https://docs.opendata.aws/1000genomes/readme.html\nContact: http://www.internationalgenome.org/contact\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_1000genomes/index.json", "https://registry.opendata.aws/1000-genomes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_1000genomes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_1000genomes&showErrors=false&email=", "Amazon Web Services", "awsS3Files_1000genomes"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_3kricegenome/", "public", "File Names from the AWS S3 3kricegenome Bucket: 3000 Rice Genomes Project", "This dataset has file information from the AWS S3 3kricegenome bucket at https://3kricegenome.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 3000 Rice Genomes Project\nName2: http://s3.amazonaws.com/3kricegenome/README-snp_pipeline.txt\nDescription: The 3000 Rice Genome Project is an international effort to sequence the genomes of 3,024 rice varieties from 89 countries.\n\nDocumentation: https://docs.opendata.aws/3kricegenome/readme.html\nContact: http://iric.irri.org/contact-us\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_3kricegenome/index.json", "https://registry.opendata.aws/3kricegenome/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_3kricegenome.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_3kricegenome&showErrors=false&email=", "Amazon Web Services", "awsS3Files_3kricegenome"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aft_vbi_pds/", "public", "File Names from the AWS S3 aft-vbi-pds Bucket: Amazon Bin Image Dataset: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.", "This dataset has file information from the AWS S3 aft-vbi-pds bucket at https://aft-vbi-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Bin Image Dataset\nName2: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.\nDescription: The Amazon Bin Image Dataset contains over 500,000 images and metadata from bins of a pod in an operating Amazon Fulfillment Center. The bin images in this dataset are captured as robot units carry pods as part of normal Amazon Fulfillment Center operations.\n\nDocumentation: https://docs.opendata.aws/aft-vbi-pds/readme.html\nContact: amazon-bin-images@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aft_vbi_pds/index.json", "https://registry.opendata.aws/amazon-bin-imagery/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aft_vbi_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aft_vbi_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aft_vbi_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory/", "public", "File Names from the AWS S3 allen-brain-observatory Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: Project data files in a public bucket", "This dataset has file information from the AWS S3 allen-brain-observatory bucket at https://allen-brain-observatory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: Project data files in a public bucket\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory_templates/", "public", "File Names from the AWS S3 allen-brain-observatory-templates Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: SageMaker launch template with s3fs bucket mounts", "This dataset has file information from the AWS S3 allen-brain-observatory-templates bucket at https://allen-brain-observatory-templates.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: SageMaker launch template with s3fs bucket mounts\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory_templates/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory_templates.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory_templates&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory_templates"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_amazon_reviews_pds/", "public", "File Names from the AWS S3 amazon-reviews-pds Bucket: Amazon Customer Reviews Dataset: TSV files of reviews", "This dataset has file information from the AWS S3 amazon-reviews-pds bucket at https://amazon-reviews-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Customer Reviews Dataset\nName2: TSV files of reviews\nDescription: Amazon Customer Reviews (a.k.a. Product Reviews) is one of Amazon\u2019s iconic products. In a period of over two decades since the first review in 1995, millions of Amazon customers have contributed over a hundred million reviews to express opinions and describe their experiences regarding products on the Amazon.com website. Over 130+ million customer reviews are available to researchers as part of this dataset.\n\nDocumentation: https://s3.amazonaws.com/amazon-reviews-pds/readme.html\nContact: customer-review-dataset@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not defined\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_amazon_reviews_pds/index.json", "https://registry.opendata.aws/amazon-reviews/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_amazon_reviews_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_amazon_reviews_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_amazon_reviews_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_avg_kitti/", "public", "File Names from the AWS S3 avg-kitti Bucket: KITTI Vision Benchmark Suite", "This dataset has file information from the AWS S3 avg-kitti bucket at https://avg-kitti.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: KITTI Vision Benchmark Suite\nName2: http://www.cvlibs.net/datasets/kitti/raw_data.php\nDescription: Dataset and benchmarks for computer vision research in the context of autonomous driving. The dataset has been recorded in and around the city of Karlsruhe, Germany using the mobile platform AnnieWay (VW station wagon) which has been equipped with several RGB and monochrome cameras, a Velodyne HDL 64 laser scanner as well as an accurate RTK corrected GPS/IMU localization unit. The dataset has been created for computer vision and machine learning research on stereo, optical flow, visual odometry, semantic segmentation, semantic instance segmentation, road segmentation, single image depth prediction, depth map completion, 2D and 3D object detection and object tracking. In addition, several raw data recordings are provided. The datasets are captured by driving around the mid-size city of Karlsruhe, in rural areas and on highways. Up to 15 cars and 30 pedestrians are visible per image.\n\nDocumentation: http://www.cvlibs.net/datasets/kitti/\nContact: http://www.cvlibs.net/people.php\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_avg_kitti/index.json", "https://registry.opendata.aws/kitti/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_avg_kitti.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_avg_kitti&showErrors=false&email=", "Amazon Web Services", "awsS3Files_avg_kitti"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/", "public", "File Names from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd Bucket: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)", "This dataset has file information from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd bucket at https://aws-earth-mo-atmospheric-mogreps-g-prd.s3.eu-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts\nName2: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)\nDescription: Meteorological data reusers now have an exciting opportunity to sample, experiment and evaluate Met Office atmospheric model data, whilst also experiencing a transformative method of requesting data via Restful APIs on AWS. All ahead of Met Office\u2019s own operationally supported API platform that will be launched in late 2019.\n\nDocumentation: https://github.com/MetOffice/aws-earth-examples\nContact: https://www.metoffice.gov.uk/about-us/contact\nUpdateFrequency: Daily (with 24 hour delay)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/index.json", "https://registry.opendata.aws/uk-met-office/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_gsod/", "public", "File Names from the AWS S3 aws-gsod Bucket: Global Surface Summary of Day: Measurements and metadata", "This dataset has file information from the AWS S3 aws-gsod bucket at https://aws-gsod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Surface Summary of Day\nName2: Measurements and metadata\nDescription: GSOD is a collection of daily weather measurements (temperature, wind speed, humidity, pressure, and more) from 9000+ weather stations around the world.\n\nDocumentation: https://www.ncdc.noaa.gov/\nContact: https://www.ncdc.noaa.gov/\nUpdateFrequency: Currently updated infrequently. Last updated on September 13, 2016.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_gsod/index.json", "https://registry.opendata.aws/noaa-gsod/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_gsod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_gsod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_gsod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_broad_references/", "public", "File Names from the AWS S3 broad-references Bucket: Broad Genome References: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.", "This dataset has file information from the AWS S3 broad-references bucket at https://broad-references.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Broad Genome References\nName2: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.\nDescription: Broad maintained human genome reference builds hg19/hg38 and decoy references.\n\nDocumentation: https://s3.amazonaws.com/broad-references/broad-references-readme.html\nContact: hensonc@broadinstitute.org\nManagedBy: Broad Institute\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_broad_references/index.json", "https://registry.opendata.aws/broad-references/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_broad_references.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_broad_references&showErrors=false&email=", "Amazon Web Services", "awsS3Files_broad_references"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cbers_meta_pds/", "public", "File Names from the AWS S3 cbers-meta-pds Bucket: CBERS on AWS: CBERS metadata (Quicklooks, metadata)", "This dataset has file information from the AWS S3 cbers-meta-pds bucket at https://cbers-meta-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CBERS on AWS\nName2: CBERS metadata (Quicklooks, metadata)\nDescription: This project creates a S3 repository with imagery acquired by the China-Brazil Earth Resources Satellite (CBERS). The image files are recorded and processed by Instituto Nacional de Pesquisa Espaciais (INPE) and are converted to Cloud Optimized Geotiff format in order to optimize its use for cloud based applications. The repository contains all CBERS-4 MUX, AWFI, PAN5M and PAN10M scenes acquired since the start of the satellite mission and is daily updated with new scenes.\n\nDocumentation: https://github.com/fredliporace/cbers-on-aws\nContact: https://lists.osgeo.org/mailman/listinfo/cbers-pds\nManagedBy: [AMS Kepler](https://amskepler.com/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cbers_meta_pds/index.json", "https://registry.opendata.aws/cbers/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cbers_meta_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cbers_meta_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cbers_meta_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cgiardata/", "public", "File Names from the AWS S3 cgiardata Bucket: CCAFS-Climate Data: ARC GRID, and ARC ASCII format compressed", "This dataset has file information from the AWS S3 cgiardata bucket at https://cgiardata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CCAFS-Climate Data\nName2: ARC GRID, and ARC ASCII format compressed\nDescription: High resolution climate data to help assess the impacts of climate change primarily on agriculture. These open access datasets of climate projections will help researchers make climate change impact assessments.\n\nDocumentation: http://www.ccafs-climate.org\nContact: http://www.ccafs-climate.org/contact/\nUpdateFrequency: Every three months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cgiardata/index.json", "https://registry.opendata.aws/cgiardata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cgiardata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cgiardata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cgiardata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_commoncrawl/", "public", "File Names from the AWS S3 commoncrawl Bucket: Common Crawl: Crawl data (WARC and ARC format)", "This dataset has file information from the AWS S3 commoncrawl bucket at https://commoncrawl.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Common Crawl\nName2: Crawl data (WARC and ARC format)\nDescription: A corpus of web crawl data composed of over 25 billion web pages.\n\nDocumentation: http://commoncrawl.org/the-data/get-started/\nContact: http://commoncrawl.org/connect/contact-us/\nManagedBy: [Common Crawl](http://commoncrawl.org/)\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_commoncrawl/index.json", "https://registry.opendata.aws/commoncrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_commoncrawl.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_commoncrawl&showErrors=false&email=", "Amazon Web Services", "awsS3Files_commoncrawl"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cornell_eas_data_lake/", "public", "File Names from the AWS S3 cornell-eas-data-lake Bucket: Cornell EAS Data Lake: Cornell EAS Data Lake", "This dataset has file information from the AWS S3 cornell-eas-data-lake bucket at https://cornell-eas-data-lake.s3.us-east-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cornell EAS Data Lake\nName2: Cornell EAS Data Lake\nDescription: Earth & Atmospheric Sciences at Cornell University has created a public data lake of climate data. The data is stored in columnar storage formats (ORC) to make it straightforward to query using standard tools like Amazon Athena or Apache Spark. The data itself is originally intended to be used for building decision support tools for farmers and digital agriculture. The first dataset is the historical NDFD / NDGD data distributed by NCEP / NOAA / NWS. The NDFD (National Digital Forecast Database) and NDGD (National Digital Guidance Database) contain gridded forecasts and observations at 2.5km resolution for the Contiguous United States (CONUS). There are also 5km grids for several smaller US regions and non-continguous territories, such as Hawaii, Guam, Puerto Rico and Alaska. NOAA distributes archives of the NDFD/NDGD via its NOAA Operational Model Archive and Distribution System (NOMADS) in Grib2 format. The data has been converted to ORC to optimize storage space and to, more importantly, simplify data access via standard data analytics tools.\n\nDocumentation: https://datalake.eas.cornell.edu/\nContact: digitalag@cornell.edu\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cornell_eas_data_lake/index.json", "https://registry.opendata.aws/cornell-eas-data-lake/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cornell_eas_data_lake.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cornell_eas_data_lake&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cornell_eas_data_lake"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cse_cic_ids2018/", "public", "File Names from the AWS S3 cse-cic-ids2018 Bucket: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018): Network traffic and log files", "This dataset has file information from the AWS S3 cse-cic-ids2018 bucket at https://cse-cic-ids2018.s3.ca-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018)\nName2: Network traffic and log files\nDescription: This dataset is the result of a collaborative project between the Communications Security Establishment (CSE) and The Canadian Institute for Cybersecurity (CIC) that use the notion of profiles to generate cybersecurity dataset in a systematic manner. It incluides a detailed description of intrusions along with abstract distribution models for applications, protocols, or lower level network entities. The dataset includes seven different attack scenarios, namely Brute-force, Heartbleed, Botnet, DoS, DDoS, Web attacks, and infiltration of the network from inside. The attacking infrastructure includes 50 machines and the victim organization has 5 departments includes 420 PCs and 30 servers. This dataset includes the network traffic and log files of each machine from the victim side, along with 80 network traffic features extracted from captured traffic using CICFlowMeter-V3. For more information on the creation of this dataset, see this paper by researchers at the Canadian Institute for Cybersecurity (CIC) and the University of New Brunswick (UNB): [Toward Generating a New Intrusion Detection Dataset and Intrusion Traffic Characterization](http://www.scitepress.org/Papers/2018/66398/66398.pdf).\n\nDocumentation: http://www.unb.ca/cic/datasets/ids-2018.html\nContact: CIC@unb.ca\nUpdateFrequency: Annualy\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cse_cic_ids2018/index.json", "https://registry.opendata.aws/cse-cic-ids2018/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cse_cic_ids2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cse_cic_ids2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cse_cic_ids2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cytodata/", "public", "File Names from the AWS S3 cytodata Bucket: Cell Painting Image Collection: Images, extracted features and aggregated profiles are available as a S3 bucket", "This dataset has file information from the AWS S3 cytodata bucket at https://cytodata.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cell Painting Image Collection\nName2: Images, extracted features and aggregated profiles are available as a S3 bucket\nDescription: The Cell Painting Image Collection is a collection of freely downloadable microscopy image sets. Cell Painting is an unbiased high throughput imaging assay used to analyze perturbations in cell models. In addition to the images themselves, each set includes a description of the biological application and some type of \"ground truth\" (expected results). Researchers are encouraged to use these image sets as reference points when developing, testing, and publishing new image analysis algorithms for the life sciences. We hope that the this data set will lead to a better understanding of which methods are best for various biological image analysis applications.\n\nDocumentation: https://github.com/cytodata/cytodata-hackathon-2018\nContact: Post on https://forum.image.sc/ and tag with \"cellpainting\"\nUpdateFrequency: irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cytodata/index.json", "https://registry.opendata.aws/cell-painting-image-collection/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cytodata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cytodata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cytodata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_czb_tabula_muris/", "public", "File Names from the AWS S3 czb-tabula-muris Bucket: Tabula Muris", "This dataset has file information from the AWS S3 czb-tabula-muris bucket at https://czb-tabula-muris.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Tabula Muris\nName2: https://github.com/czbiohub/tabula-muris\nDescription: Tabula Muris is a compendium of single cell transcriptomic data from the model organism *Mus musculus* comprising more than 100,000 cells from 20 organs and tissues. These data represent a new resource for cell biology, reveal gene expression in poorly characterized cell populations, and allow for direct and controlled comparison of gene expression in cell types shared between tissues, such as T-lymphocytes and endothelial cells from different anatomical locations. Two distinct technical approaches were used for most organs: one approach, microfluidic droplet-based 3\u2019-end counting, enabled the survey of thousands of cells at relatively low coverage, while the other, FACS-based full length transcript analysis, enabled characterization of cell types with high sensitivity and coverage. The cumulative data provide the foundation for an atlas of transcriptomic cell biology. See: https://www.nature.com/articles/s41586-018-0590-4\n\nDocumentation: https://github.com/czbiohub/tabula-muris/blob/master/tabula-muris-on-aws.md\nContact: If you have questions about the data, you can create an Issue at https://github.com/czbiohub/tabula-muris.\nManagedBy: [Chan Zuckerberg Biohub](https://www.czbiohub.org/)\nUpdateFrequency: This is the final version of the dataset, it will not be updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_czb_tabula_muris/index.json", "https://registry.opendata.aws/tabula-muris/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_czb_tabula_muris.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_czb_tabula_muris&showErrors=false&email=", "Amazon Web Services", "awsS3Files_czb_tabula_muris"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataforgood_fb_data/", "public", "File Names from the AWS S3 dataforgood-fb-data Bucket: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook: CSV and Cloud-optimized GeoTIFF files", "This dataset has file information from the AWS S3 dataforgood-fb-data bucket at https://dataforgood-fb-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook\nName2: CSV and Cloud-optimized GeoTIFF files\nDescription: Population data for a selection of countries, allocated to 1 arcsecond blocks and provided in a combination of CSV and Cloud-optimized GeoTIFF files. This refines [CIESIN\u2019s Gridded Population of the World](https://sedac.ciesin.columbia.edu/data/collection/gpw-v4) using machine learning models on high-resolution worldwide Digital Globe satellite imagery. CIESIN population counts aggregated from worldwide census data are allocated to blocks where imagery appears to contain buildings.\n\nDocumentation: [Project overview](https://dataforgood.fb.com/population-density-maps-documentation/) and [dataset description](https://docs.opendata.aws/dataforgood-fb-data/readme.html)\nContact: disastermaps@fb.com\nManagedBy: |\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataforgood_fb_data/index.json", "https://registry.opendata.aws/dataforgood-fb-hrsl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataforgood_fb_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataforgood_fb_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataforgood_fb_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_datasets_elasticmapreduce_ngrams_books/", "public", "File Names from the AWS S3 datasets.elasticmapreduce Bucket with prefix=ngrams/books/: Google Books Ngrams: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.", "This dataset has file information from the AWS S3 datasets.elasticmapreduce bucket at https://datasets.elasticmapreduce.s3.us-east-1.amazonaws.com/ with prefix=ngrams/books/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Google Books Ngrams\nName2: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.\nDescription: N-grams are fixed size tuples of items. In this case the items are words extracted from the Google Books corpus. The n specifies the number of elements in the tuple, so a 5-gram contains five words or characters. The n-grams in this dataset were produced by passing a sliding window of the text of books and outputting a record for each new token.\n\nDocumentation: http://books.google.com/ngrams/\nContact: https://books.google.com/ngrams\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_datasets_elasticmapreduce_ngrams_books/index.json", "https://registry.opendata.aws/google-ngrams/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_datasets_elasticmapreduce_ngrams_books.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_datasets_elasticmapreduce_ngrams_books&showErrors=false&email=", "Amazon Web Services", "awsS3Files_datasets_elasticmapreduce_ngrams_books"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataworld_linked_acs/", "public", "File Names from the AWS S3 dataworld-linked-acs Bucket: U.S. Census ACS PUMS: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.", "This dataset has file information from the AWS S3 dataworld-linked-acs bucket at https://dataworld-linked-acs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: U.S. Census ACS PUMS\nName2: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.\nDescription: U.S. Census Bureau American Community Survey (ACS) Public Use Microdata Sample (PUMS) available in a linked data format using the Resource Description Framework (RDF) data model.\n\nDocumentation: https://docs.data.world/uscensus/#american-community-survey-linked-open-data\nContact: https://docs.data.world/uscensus/#60---contact\nUpdateFrequency: Yearly, after ACS 1-year PUMS raw data are released\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataworld_linked_acs/index.json", "https://registry.opendata.aws/census-dataworld-pums/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataworld_linked_acs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataworld_linked_acs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataworld_linked_acs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2015/", "public", "File Names from the AWS S3 dc-lidar-2015 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML, SHP", "This dataset has file information from the AWS S3 dc-lidar-2015 bucket at https://dc-lidar-2015.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML, SHP\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2015/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2015.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2015&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2015"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2018/", "public", "File Names from the AWS S3 dc-lidar-2018 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML", "This dataset has file information from the AWS S3 dc-lidar-2018 bucket at https://dc-lidar-2018.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2018/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_eurex_pds/", "public", "File Names from the AWS S3 deutsche-boerse-eurex-pds Bucket: Deutsche B\u00f6rse Public Dataset: Eurex PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-eurex-pds bucket at https://deutsche-boerse-eurex-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Eurex PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_eurex_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_eurex_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_eurex_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_eurex_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_xetra_pds/", "public", "File Names from the AWS S3 deutsche-boerse-xetra-pds Bucket: Deutsche B\u00f6rse Public Dataset: Xetra PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-xetra-pds bucket at https://deutsche-boerse-xetra-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Xetra PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_xetra_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_xetra_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_xetra_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_xetra_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ebirdst_data/", "public", "File Names from the AWS S3 ebirdst-data Bucket: eBird Status and Trends Model Results: Species results files", "This dataset has file information from the AWS S3 ebirdst-data bucket at https://ebirdst-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: eBird Status and Trends Model Results\nName2: Species results files\nDescription: The eBird Status and Trends project generates estimates of bird occurrence and abundance at a high spatiotemporal resolution. This dataset represents the primary modeled results from the analysis workflow and are designed for further analysis, synthesis, visualization, and exploration.\n\nDocumentation: https://cornelllabofornithology.github.io/ebirdst/articles/ebirdst-introduction.html\nContact: https://help.ebird.org/customer/en/portal/emails/new\nManagedBy: [Cornell Lab of Ornithology](https://www.birds.cornell.edu/home/)\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ebirdst_data/index.json", "https://registry.opendata.aws/ebirdst/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ebirdst_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ebirdst_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ebirdst_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_elevation_tiles_prod/", "public", "File Names from the AWS S3 elevation-tiles-prod Bucket: Terrain Tiles: Gridded elevation tiles", "This dataset has file information from the AWS S3 elevation-tiles-prod bucket at https://elevation-tiles-prod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Terrain Tiles\nName2: Gridded elevation tiles\nDescription: A global dataset providing bare-earth terrain heights, tiled for easy usage and provided on S3.\n\nDocumentation: https://mapzen.com/documentation/terrain-tiles/\nContact: https://github.com/tilezen/joerd/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_elevation_tiles_prod/index.json", "https://registry.opendata.aws/terrain-tiles/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_elevation_tiles_prod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_elevation_tiles_prod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_elevation_tiles_prod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_encode_public/", "public", "File Names from the AWS S3 encode-public Bucket: Encyclopedia of DNA Elements (ENCODE): Released and archived ENCODE data", "This dataset has file information from the AWS S3 encode-public bucket at https://encode-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Encyclopedia of DNA Elements (ENCODE)\nName2: Released and archived ENCODE data\nDescription: The Encyclopedia of DNA Elements (ENCODE) Consortium is an international collaboration of research groups funded by the National Human Genome Research Institute (NHGRI). The goal of ENCODE is to build a comprehensive parts list of functional elements in the human genome, including elements that act at the protein and RNA levels, and regulatory elements that control cells and circumstances in which a gene is active. ENCODE investigators employ a variety of assays and methods to identify functional elements. The discovery and annotation of gene elements is accomplished primarily by sequencing a diverse range of RNA sources, comparative genomics, integrative bioinformatic methods, and human curation. Regulatory elements are typically investigated through DNA hypersensitivity assays, assays of DNA methylation, and immunoprecipitation (IP) of proteins that interact with DNA and RNA, i.e., modified histones, transcription factors, chromatin regulators, and RNA-binding proteins, followed by sequencing.\n\nDocumentation: https://www.encodeproject.org\nContact: encode-help@lists.stanford.edu\nManagedBy: ENCODE Data Coordinating Center\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_encode_public/index.json", "https://registry.opendata.aws/encode-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_encode_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_encode_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_encode_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_epa_rsei_pds/", "public", "File Names from the AWS S3 epa-rsei-pds Bucket: EPA Risk-Screening Environmental Indicators: RSEI Microdata", "This dataset has file information from the AWS S3 epa-rsei-pds bucket at https://epa-rsei-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: EPA Risk-Screening Environmental Indicators\nName2: RSEI Microdata\nDescription: Detailed air model results from EPA\u2019s Risk-Screening Environmental Indicators (RSEI) model.\n\nDocumentation: https://docs.opendata.aws/epa-rsei-pds/readme.html\nContact: https://www.epa.gov/rsei/forms/contact-us-about-rsei-model\nUpdateFrequency: Updated infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_epa_rsei_pds/index.json", "https://registry.opendata.aws/epa-rsei-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_epa_rsei_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_epa_rsei_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_epa_rsei_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_era5_pds/", "public", "File Names from the AWS S3 era5-pds Bucket: ECMWF ERA5 Reanalysis: ERA5 Reanalysis NetCDF 4 files", "This dataset has file information from the AWS S3 era5-pds bucket at https://era5-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ECMWF ERA5 Reanalysis\nName2: ERA5 Reanalysis NetCDF 4 files\nDescription: ERA5 is the fifth generation of ECMWF atmospheric reanalyses of the global climate, and the first reanalysis produced as an operational service. It utilizes the best available observation data from satellites and in-situ stations, which are assimilated and processed using ECMWF's Integrated Forecast System (IFS) Cycle 41r2. The dataset provides all essential atmospheric meteorological parameters like, but not limited to, air temperature, pressure and wind at different altitudes, along with surface parameters like rainfall, soil moisture content and sea parameters like sea-surface temperature and wave height. ERA5 provides data at a considerably higher spatial and temporal resolution than its legacy counterpart ERA-Interim. ERA5 consists of high resolution version with 31 km horizontal resolution, and a reduced resolution ensemble version with 10 members. It is currently available since 2008, but will be continuously extended backwards, first until 1979 and then to 1950. Learn more about ERA5 in Jon Olauson's paper [ERA5: The new champion of wind power modelling?](https://www.researchgate.net/publication/320084119_ERA5_The_new_champion_of_wind_power_modelling).\n\nDocumentation: https://github.com/planet-os/notebooks/blob/master/aws/era5-pds.md\nContact: datahub@intertrust.com\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_era5_pds/index.json", "https://registry.opendata.aws/ecmwf-era5/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_era5_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_era5_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_era5_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_coco/", "public", "File Names from the AWS S3 fast-ai-coco Bucket: COCO - Common Objects in Context - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-coco bucket at https://fast-ai-coco.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: COCO - Common Objects in Context - fast.ai datasets\nName2: Datasets\nDescription: COCO is a large-scale object detection, segmentation, and captioning dataset. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. If you use this dataset in your research please cite arXiv:1405.0312 [cs.CV].\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_coco/index.json", "https://registry.opendata.aws/fast-ai-coco/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_coco.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_coco&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_coco"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imageclas/", "public", "File Names from the AWS S3 fast-ai-imageclas Bucket: Image classification - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imageclas bucket at https://fast-ai-imageclas.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image classification - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image classification research, including CIFAR 10 and 100, Caltech 101, MNIST, Food-101, Oxford-102-Flowers, Oxford-IIIT-Pets, and Stanford-Cars. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imageclas/index.json", "https://registry.opendata.aws/fast-ai-imageclas/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imageclas.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imageclas&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imageclas"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imagelocal/", "public", "File Names from the AWS S3 fast-ai-imagelocal Bucket: Image localization - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imagelocal bucket at https://fast-ai-imagelocal.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image localization - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image localization research, including Camvid and PASCAL VOC (2007 and 2012). This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imagelocal/index.json", "https://registry.opendata.aws/fast-ai-imagelocal/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imagelocal.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imagelocal&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imagelocal"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_nlp/", "public", "File Names from the AWS S3 fast-ai-nlp Bucket: NLP - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-nlp bucket at https://fast-ai-nlp.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NLP - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for NLP, with a focus on classification, including IMDb, AG-News, Amazon Reviews (polarity and full), Yelp Reviews (polarity and full), Dbpedia, Sogou News (Pinyin), Yahoo Answers, Wikitext 2 and Wikitext 103, and ACL-2010 French-English 10^9 corpus. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_nlp/index.json", "https://registry.opendata.aws/fast-ai-nlp/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_nlp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_nlp&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_nlp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib Bucket: HIRLAM Weather Model: Pressure GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib bucket at https://fmi-opendata-rcrhirlam-pressure-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Pressure GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_pressure_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_pressure_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-surface-grib Bucket: HIRLAM Weather Model: Surface GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-surface-grib bucket at https://fmi-opendata-rcrhirlam-surface-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Surface GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_surface_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_surface_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gatk_test_data/", "public", "File Names from the AWS S3 gatk-test-data Bucket: GATK Test Data: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.", "This dataset has file information from the AWS S3 gatk-test-data bucket at https://gatk-test-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GATK Test Data\nName2: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.\nDescription: The GATK test data resource bundle is a collection of files for resequencing human genomic data with the Broad Institute's [Genome Analysis Toolkit (GATK)](https://software.broadinstitute.org/gatk/).\n\nDocumentation: https://s3.amazonaws.com/gatk-test-data/gatk-test-data-readme.html\nContact: https://gatkforums.broadinstitute.org/gatk\nManagedBy: Broad Institute\nUpdateFrequency: Every 3 months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gatk_test_data/index.json", "https://registry.opendata.aws/gatk-test-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gatk_test_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gatk_test_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gatk_test_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gdelt_open_data/", "public", "File Names from the AWS S3 gdelt-open-data Bucket: Global Database of Events, Language and Tone (GDELT): Project data files", "This dataset has file information from the AWS S3 gdelt-open-data bucket at https://gdelt-open-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Database of Events, Language and Tone (GDELT)\nName2: Project data files\nDescription: This project monitors the world's broadcast, print, and web news from nearly every corner of every country in over 100 languages and identifies the people, locations, organizations, counts, themes, sources, emotions, quotes, images and events driving our global society every second of every day.\n\nDocumentation: http://www.gdeltproject.org/\nContact: http://www.gdeltproject.org/about.html#contact\nUpdateFrequency: Not currently being updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gdelt_open_data/index.json", "https://registry.opendata.aws/gdelt/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gdelt_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gdelt_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gdelt_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_genomeark/", "public", "File Names from the AWS S3 genomeark Bucket: Genome Ark", "This dataset has file information from the AWS S3 genomeark bucket at https://genomeark.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome Ark\nName2: https://vgp.github.io\nDescription: The Genome Ark hosts genomic information for the Vertebrate Genomes Project (VGP) and other related projects. The VGP is an international collaboration that aims to generate complete and near error-free reference genomes for all extant vertebrate species. These genomes will be used to address fundamental questions in biology and disease, to identify species most genetically at risk for extinction, and to preserve genetic information of life.\n\nDocumentation: https://vertebrategenomesproject.org\nContact: Erich Jarvis \nManagedBy: The Genome10K community of scientists\nUpdateFrequency: Data will be continually updated as it is generated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_genomeark/index.json", "https://registry.opendata.aws/genomeark/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_genomeark.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_genomeark&showErrors=false&email=", "Amazon Web Services", "awsS3Files_genomeark"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_giab/", "public", "File Names from the AWS S3 giab Bucket: Genome in a Bottle on AWS: Latest data", "This dataset has file information from the AWS S3 giab bucket at https://giab.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome in a Bottle on AWS\nName2: Latest data\nDescription: Several reference genomes to enable translation of whole human genome sequencing to clinical practice.\n\nDocumentation: https://docs.opendata.aws/giab/readme.html\nContact: http://genomeinabottle.org/\nUpdateFrequency: New data are added as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_giab/index.json", "https://registry.opendata.aws/giab/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_giab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_giab&showErrors=false&email=", "Amazon Web Services", "awsS3Files_giab"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gmsdata/", "public", "File Names from the AWS S3 gmsdata Bucket: The Genome Modeling System", "This dataset has file information from the AWS S3 gmsdata bucket at https://gmsdata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Genome Modeling System\nName2: https://gmsdata.s3.amazonaws.com/INDEX.html\nDescription: The Genome Institute at Washington University has developed a high-throughput, fault-tolerant analysis information management system called the Genome Modeling System (GMS), capable of executing complex, interdependent, and automated genome analysis pipelines at a massive scale. The GMS framework provides detailed tracking of samples and data coupled with reliable and repeatable analysis pipelines. GMS includes a full system image with software and services, expandable from one workstation to a large compute cluster.\n\nDocumentation: https://github.com/genome/gms/wiki\nContact: https://github.com/genome/gms/issues\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gmsdata/index.json", "https://registry.opendata.aws/gmsdata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gmsdata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gmsdata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gmsdata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_grillo_openeew/", "public", "File Names from the AWS S3 grillo-openeew Bucket: OpenEEW: OpenEEW", "This dataset has file information from the AWS S3 grillo-openeew bucket at https://grillo-openeew.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenEEW\nName2: OpenEEW\nDescription: Grillo has developed an IoT-based earthquake early-warning system in Mexico and Chile and is now opening its entire archive of unprocessed accelerometer data to the world to encourage the development of new algorithms capable of rapidly detecting and characterizing earthquakes in real time.\n\nDocumentation: https://github.com/grillo/openeew\nContact: openeew@grillo.io\nManagedBy: [Grillo](https://grillo.io/)\nUpdateFrequency: Approximately every 10 minutes\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_grillo_openeew/index.json", "https://registry.opendata.aws/grillo-openeew/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_grillo_openeew.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_grillo_openeew&showErrors=false&email=", "Amazon Web Services", "awsS3Files_grillo_openeew"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_microbiome_project/", "public", "File Names from the AWS S3 human-microbiome-project Bucket: The Human Microbiome Project", "This dataset has file information from the AWS S3 human-microbiome-project bucket at https://human-microbiome-project.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Human Microbiome Project\nName2: https://aws.amazon.com/datasets/human-microbiome-project/\nDescription: The NIH-funded Human Microbiome Project (HMP) is a collaborative effort of over 300 scientists from more than 80 organizations to comprehensively characterize the microbial communities inhabiting the human body and elucidate their role in human health and disease. To accomplish this task, microbial community samples were isolated from a cohort of 300 healthy adult human subjects at 18 specific sites within five regions of the body (oral cavity, airways, urogenital track, skin, and gut). Targeted sequencing of the 16S bacterial marker gene and/or whole metagenome shotgun sequencing was performed for thousands of these samples. In addition, whole genome sequences were generated for isolate strains collected from human body sites to act as reference organisms for analysis. Finally, 16S marker and whole metagenome sequencing was also done on additional samples from people suffering from several disease conditions.\n\nDocumentation: https://commonfund.nih.gov/hmp\nContact: https://commonfund.nih.gov/hmp/related_activities\nUpdateFrequency: Uncertain\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_microbiome_project/index.json", "https://registry.opendata.aws/human-microbiome-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_microbiome_project.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_microbiome_project&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_microbiome_project"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_pangenomics/", "public", "File Names from the AWS S3 human-pangenomics Bucket: Human PanGenomics Project: Human PanGenomics Project", "This dataset has file information from the AWS S3 human-pangenomics bucket at https://human-pangenomics.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Human PanGenomics Project\nName2: Human PanGenomics Project\nDescription: This dataset includes sequencing data, assemblies, and analyses for the offspring of ten parent-offspring trios.\n\nDocumentation: https://github.com/human-pangenomics/hpgp-data\nContact: https://github.com/human-pangenomics/hpgp-data/issues\nUpdateFrequency: Data will be added and updated as technologies improve or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_pangenomics/index.json", "https://registry.opendata.aws/hpgp-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_pangenomics.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_pangenomics&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_pangenomics"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/", "public", "File Names from the AWS S3 ichangemycity-janaagraha-complaints-data-aws Bucket: IChangeMyCity Complaints Data from Janaagraha: IChangeMyCity Complaints", "This dataset has file information from the AWS S3 ichangemycity-janaagraha-complaints-data-aws bucket at https://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IChangeMyCity Complaints Data from Janaagraha\nName2: IChangeMyCity Complaints\nDescription: The [IChangeMyCity](https://www.ichangemycity.com) project provides insight into the complaints raised by citizens from diffent cities of India related to the issues in their neighbourhoods and the resolution of the same by the civic bodies.\n\nDocumentation: http://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/readme.html\nContact: data@janaagraha.org\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/index.json", "https://registry.opendata.aws/ichangemycity/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ichangemycity_janaagraha_complaints_data_aws&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ichangemycity_janaagraha_complaints_data_aws"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_irs_990_spreadsheets/", "public", "File Names from the AWS S3 irs-990-spreadsheets Bucket: IRS 990 Filings (Spreadsheets): Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form", "This dataset has file information from the AWS S3 irs-990-spreadsheets bucket at https://irs-990-spreadsheets.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IRS 990 Filings (Spreadsheets)\nName2: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form\nDescription: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form. Additional fields being added regularly.\n\nDocumentation: https://appliednonprofitresearch.com/documentation/irs-990-spreadsheets\nContact: [info@appliednonprofitresearch.com](info@appliednonprofitresearch.com)\nManagedBy: [Applied Nonprofit Research, LLC](https://www.appliednonprofitresearch.com/)\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_irs_990_spreadsheets/index.json", "https://registry.opendata.aws/990-spreadsheets/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_irs_990_spreadsheets.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_irs_990_spreadsheets&showErrors=false&email=", "Amazon Web Services", "awsS3Files_irs_990_spreadsheets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lab41openaudiocorpus/", "public", "File Names from the AWS S3 lab41openaudiocorpus Bucket: Voices Obscured in Complex Environmental Settings (VOiCES): wav audio files, orthographic transcriptions, and speaker ID", "This dataset has file information from the AWS S3 lab41openaudiocorpus bucket at https://lab41openaudiocorpus.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Voices Obscured in Complex Environmental Settings (VOiCES)\nName2: wav audio files, orthographic transcriptions, and speaker ID\nDescription: VOiCES is a speech corpus recorded in acoustically challenging settings, using distant microphone recording. Speech was recorded in real rooms with various acoustic features (reverb, echo, HVAC systems, outside noise, etc.). Adversarial noise, either television, music, or babble, was concurrently played with clean speech. Data was recorded using multiple microphones strategically placed throughout the room. The corpus includes audio recordings, orthographic transcriptions, and speaker labels.\n\nDocumentation: https://voices18.github.io/\nContact: https://github.com/voices18/utilities/issues\nUpdateFrequency: Data from two additional rooms will be added to the corpus Fall 2018.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lab41openaudiocorpus/index.json", "https://registry.opendata.aws/lab41-sri-voices/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lab41openaudiocorpus.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lab41openaudiocorpus&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lab41openaudiocorpus"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds/", "public", "File Names from the AWS S3 landsat-pds Bucket: Landsat 8: Scenes and metadata", "This dataset has file information from the AWS S3 landsat-pds bucket at https://landsat-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: Scenes and metadata\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds_inventory/", "public", "File Names from the AWS S3 landsat-pds-inventory Bucket: Landsat 8: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)", "This dataset has file information from the AWS S3 landsat-pds-inventory bucket at https://landsat-pds-inventory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds_inventory/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds_inventory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds_inventory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds_inventory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lofar_elais_n1/", "public", "File Names from the AWS S3 lofar-elais-n1 Bucket: LOFAR ELAIS-N1 cycle 2 observations on AWS: LOFAR ELAIS-N1 cycle 2 observations", "This dataset has file information from the AWS S3 lofar-elais-n1 bucket at https://lofar-elais-n1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: LOFAR ELAIS-N1 cycle 2 observations on AWS\nName2: LOFAR ELAIS-N1 cycle 2 observations\nDescription: These data correspond to the [International LOFAR Telescope](http://www.lofar.org/) observations of the sky field ELAIS-N1 (16:10:01 +54:30:36) during the cycle 2 of observations. There are 11 runs of about 8 hours each plus the corresponding observation of the calibration targets before and after the target field. The data are measurement sets ([MS](https://casa.nrao.edu/Memos/229.html)) containing the cross-correlated data and metadata divided in 371 frequency sub-bands per target centred at ~150 MHz.\n\nDocumentation: https://www.lofarcloud.uk/data.html\nContact: https://www.lofarcloud.uk/\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lofar_elais_n1/index.json", "https://registry.opendata.aws/lofar-elais-n1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lofar_elais_n1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lofar_elais_n1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lofar_elais_n1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mf_nwp_models/", "public", "File Names from the AWS S3 mf-nwp-models Bucket: Atmospheric Models from M\u00e9t\u00e9o-France: Atmospheric Models from M\u00e9t\u00e9o-France", "This dataset has file information from the AWS S3 mf-nwp-models bucket at https://mf-nwp-models.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Atmospheric Models from M\u00e9t\u00e9o-France\nName2: Atmospheric Models from M\u00e9t\u00e9o-France\nDescription: Global and high-resolution regional atmospheric models from M\u00e9t\u00e9o-France.\n\nDocumentation: https://mf-models-on-aws.org\nContact: contact@openmeteodata.com\nManagedBy: [OpenMeteoData](https://openmeteodata.com)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mf_nwp_models/index.json", "https://registry.opendata.aws/meteo-france-models/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mf_nwp_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mf_nwp_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mf_nwp_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_modis_pds/", "public", "File Names from the AWS S3 modis-pds Bucket: MODIS on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 modis-pds bucket at https://modis-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: MODIS on AWS\nName2: Imagery and metadata\nDescription: Select products from the Moderate Resolution Imaging Spectroradiometer (MODIS) managed by the U.S. Geological Survey and NASA.\n\nDocumentation: https://docs.opendata.aws/modis-pds/readme.html\nContact: https://github.com/AstroDigital/modis-ingestor/issues\nUpdateFrequency: New MODIS data is added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_modis_pds/index.json", "https://registry.opendata.aws/modis/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_modis_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_modis_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_modis_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_multimedia_commons/", "public", "File Names from the AWS S3 multimedia-commons Bucket: Multimedia Commons: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.", "This dataset has file information from the AWS S3 multimedia-commons bucket at https://multimedia-commons.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Multimedia Commons\nName2: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.\nDescription: The Multimedia Commons is a collection of audio and visual features computed for the nearly 100 million Creative Commons-licensed Flickr images and videos in the YFCC100M dataset from Yahoo! Labs, along with ground-truth annotations for selected subsets. The International Computer Science Institute (ICSI) and Lawrence Livermore National Laboratory are producing and distributing a core set of derived feature sets and annotations as part of an effort to enable large-scale video search capabilities. They have released this feature corpus into the public domain, under Creative Commons License 0, so it is free for anyone to use for any purpose.\n\nDocumentation: https://multimediacommons.wordpress.com/yfcc100m-core-dataset/\nContact: multimedia-commons@icsi.berkeley.edu\nUpdateFrequency: Not updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_multimedia_commons/index.json", "https://registry.opendata.aws/multimedia-commons/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_multimedia_commons.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_multimedia_commons&showErrors=false&email=", "Amazon Web Services", "awsS3Files_multimedia_commons"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mwapublic/", "public", "File Names from the AWS S3 mwapublic Bucket: Epoch of Reionization Dataset: Selected MWA EoR data (uvfits format) from 2013-2015", "This dataset has file information from the AWS S3 mwapublic bucket at https://mwapublic.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Epoch of Reionization Dataset\nName2: Selected MWA EoR data (uvfits format) from 2013-2015\nDescription: The data are from observations with the Murchison Widefield Array (MWA) which is a Square Kilometer Array (SKA) precursor in Western Australia. This particular dataset is from the Epoch of Reionization project which is a key science driver of the SKA. Nearly 2PB of such observations have been recorded to date, this is a small subset of that which has been exported from the MWA data archive in Perth and made available to the public on AWS. The data were taken to detect signatures of the first stars and galaxies forming and the effect of these early stars and galaxies on the evolution of the universe.\n\nDocumentation: http://danielcjacobs.com/research/epoch-of-reionization-aws-public-dataset/\nContact: brynah (at) phys.washington.edu\nManagedBy: University of washington Radio Cosmology Group\nUpdateFrequency: Irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mwapublic/index.json", "https://registry.opendata.aws/epoch-of-reionization/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mwapublic.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mwapublic&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mwapublic"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nanopore_human_wgs/", "public", "File Names from the AWS S3 nanopore-human-wgs Bucket: Nanopore Reference Human Genome: Nanopore Reference Human Genome", "This dataset has file information from the AWS S3 nanopore-human-wgs bucket at https://nanopore-human-wgs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Nanopore Reference Human Genome\nName2: Nanopore Reference Human Genome\nDescription: This dataset includes the sequencing and assembly of a reference standard human genome (GM12878) using the MinION nanopore sequencing instrument with the R9.4 1D chemistry.\n\nDocumentation: https://github.com/nanopore-wgs-consortium/NA12878\nContact: https://github.com/nanopore-wgs-consortium/NA12878/issues\nUpdateFrequency: Data will be added as methodology improves or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nanopore_human_wgs/index.json", "https://registry.opendata.aws/nanopore/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nanopore_human_wgs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nanopore_human_wgs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nanopore_human_wgs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_Landsat/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=Landsat/: NASA NEX: Landsat GLS (Global Land Survey)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=Landsat/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Landsat GLS (Global Land Survey)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_Landsat/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_Landsat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_Landsat&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_Landsat"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_LOCA/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=LOCA/: NASA NEX: Localized Constructed Analogs (LOCA)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=LOCA/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Localized Constructed Analogs (LOCA)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_LOCA/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_LOCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_LOCA&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_LOCA"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_MODIS/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=MODIS/: NASA NEX: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=MODIS/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_MODIS/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_MODIS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_MODIS&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_MODIS"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_DCP30/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-DCP30/: NASA NEX: Downscaled Climate Projections (NEX-DCP30)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-DCP30/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Downscaled Climate Projections (NEX-DCP30)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_DCP30/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_DCP30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_DCP30&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_DCP30"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_GDDP/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-GDDP/: NASA NEX: Global Daily Downscaled Projections (NEX-GDDP)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-GDDP/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Global Daily Downscaled Projections (NEX-GDDP)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_GDDP/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_GDDP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_GDDP&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_GDDP"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gefs_pds/", "public", "File Names from the AWS S3 noaa-gefs-pds Bucket: NOAA Global Ensemble Forecast System (GEFS): Project data files", "This dataset has file information from the AWS S3 noaa-gefs-pds bucket at https://noaa-gefs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Ensemble Forecast System (GEFS)\nName2: Project data files\nDescription: The Global Ensemble Forecast System (GEFS), previously known as the GFS Global ENSemble (GENS), is a weather forecast model made up of 21 separate forecasts, or ensemble members. The National Centers for Environmental Prediction (NCEP) started the GEFS to address the nature of uncertainty in weather observations, which is used to initialize weather forecast models. The GEFS attempts to quantify the amount of uncertainty in a forecast by generating an ensemble of multiple forecasts, each minutely different, or perturbed, from the original observations. With global coverage, GEFS is produced four times a day with weather forecasts going out to 16 days.\n\nDocumentation: https://docs.opendata.aws/noaa-gefs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GEFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GEFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gefs_pds/index.json", "https://registry.opendata.aws/noaa-gefs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gefs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gefs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gefs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_bdp_pds/", "public", "File Names from the AWS S3 noaa-gfs-bdp-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 GFS data", "This dataset has file information from the AWS S3 noaa-gfs-bdp-pds bucket at https://noaa-gfs-bdp-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_bdp_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_bdp_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_bdp_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_bdp_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_pds/", "public", "File Names from the AWS S3 noaa-gfs-pds Bucket: Unidata NOAA Global Forecast System (GFS) Model: A rolling four-week archive of 0.25 degree GFS data", "This dataset has file information from the AWS S3 noaa-gfs-pds bucket at https://noaa-gfs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Unidata NOAA Global Forecast System (GFS) Model\nName2: A rolling four-week archive of 0.25 degree GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks.\n\nDocumentation: https://docs.opendata.aws/noaa-gfs-pds/readme.html\nContact: https://www.ncdc.noaa.gov/contact\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_pds/index.json", "https://registry.opendata.aws/noaa-gfs-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfspara_pds/", "public", "File Names from the AWS S3 noaa-gfspara-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 FV3-based parallel version of the GFS", "This dataset has file information from the AWS S3 noaa-gfspara-pds bucket at https://noaa-gfspara-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 FV3-based parallel version of the GFS\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfspara_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfspara_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfspara_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfspara_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghcn_pds/", "public", "File Names from the AWS S3 noaa-ghcn-pds Bucket: NOAA Global Historical Climatology Network Daily (GHCN-D): Project data files", "This dataset has file information from the AWS S3 noaa-ghcn-pds bucket at https://noaa-ghcn-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Daily (GHCN-D)\nName2: Project data files\nDescription: Global Historical Climatology Network - Daily is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://docs.opendata.aws/noaa-ghcn-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncdc.noaa.gov/ghcn-daily-description). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghcn_pds/index.json", "https://registry.opendata.aws/noaa-ghcn/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghcn_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghcn_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghcn_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghe_pds/", "public", "File Names from the AWS S3 noaa-ghe-pds Bucket: NOAA Global Hydro Estimator (GHE): Project data files", "This dataset has file information from the AWS S3 noaa-ghe-pds bucket at https://noaa-ghe-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Hydro Estimator (GHE)\nName2: Project data files\nDescription: Global Hydro-Estimator provides a global mosaic imagery of rainfall estimates from multi-geostationary satellites, which currently includes GOES-16, GOES-15, Meteosat-8, Meteosat-11 and Himawari-8. The GHE products include: Instantaneous rain rate, 1 hour, 3 hour, 6 hour, 24 hour and also multi-day rainfall accumulation.\n\nDocumentation: https://www.ospo.noaa.gov/Products/atmosphere/ghe/index.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 15 minute-instantaneous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghe_pds/index.json", "https://registry.opendata.aws/noaa-ghe/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghe_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghe_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghe_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_global_hourly_pds/", "public", "File Names from the AWS S3 noaa-global-hourly-pds Bucket: NOAA Global Historical Climatology Network Hourly (GHCN-H): Project data files", "This dataset has file information from the AWS S3 noaa-global-hourly-pds bucket at https://noaa-global-hourly-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Hourly (GHCN-H)\nName2: Project data files\nDescription: Global Historical Climatology Network - Hourly is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: daily (Manually)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_global_hourly_pds/index.json", "https://registry.opendata.aws/noaa-ghcnh/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_global_hourly_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_global_hourly_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_global_hourly_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3NoaaGoes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nUse ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browser the files in buckets. This dataset is a solution to that problem for this bucket.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3NoaaGoes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3NoaaGoes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3NoaaGoes16&showErrors=false&email=", "NOAA", "awsS3NoaaGoes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket: GOES on AWS: GOES-16 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-16 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes16&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes17/", "public", "File Names from the AWS S3 noaa-goes17 Bucket: GOES on AWS: GOES-17 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes17 bucket at https://noaa-goes17.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-17 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes17/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes17&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes17"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_hrrr_pds/", "public", "File Names from the AWS S3 noaa-hrrr-pds Bucket: NOAA High-Resolution Rapid Refresh (HRRR) Model: A rolling one-week archive of HRRR data.", "This dataset has file information from the AWS S3 noaa-hrrr-pds bucket at https://noaa-hrrr-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA High-Resolution Rapid Refresh (HRRR) Model\nName2: A rolling one-week archive of HRRR data.\nDescription: The HRRR is a NOAA real-time 3-km resolution, hourly updated, cloud-resolving, convection-allowing atmospheric model, initialized by 3km grids with 3km radar assimilation. Radar data is assimilated in the HRRR every 15 min over a 1-h period adding further detail to that provided by the hourly data assimilation from the 13km radar-enhanced Rapid Refresh.\n\nDocumentation: https://docs.opendata.aws/noaa-hrrr-pds/readme.html\nContact: https://rapidrefresh.noaa.gov/hrrr/\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_hrrr_pds/index.json", "https://registry.opendata.aws/noaa-hrrr-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_hrrr_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_hrrr_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_hrrr_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_isd_pds/", "public", "File Names from the AWS S3 noaa-isd-pds Bucket: NOAA Integrated Surface Database (ISD): Project data files", "This dataset has file information from the AWS S3 noaa-isd-pds bucket at https://noaa-isd-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Integrated Surface Database (ISD)\nName2: Project data files\nDescription: The Integrated Surface Database (ISD) consists of global hourly and synoptic observations compiled from numerous sources into a gzipped fixed width format. ISD was developed as a joint activity within Asheville's Federal Climate Complex. The database includes over 35,000 stations worldwide, with some having data as far back as 1901, though the data show a substantial increase in volume in the 1940s and again in the early 1970s. Currently, there are over 14,000 \"active\" stations updated daily in the database. The total uncompressed data volume is around 600 gigabytes; however, it continues to grow as more data are added. ISD includes numerous parameters such as wind speed and direction, wind gust, temperature, dew point, cloud data, sea level pressure, altimeter setting, station pressure, present weather, visibility, precipitation amounts for various time periods, snow depth, and various other elements as observed by each station.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_isd_pds/index.json", "https://registry.opendata.aws/noaa-isd/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_isd_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_isd_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_isd_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nexrad_level2/", "public", "File Names from the AWS S3 noaa-nexrad-level2 Bucket: NEXRAD on AWS: NEXRAD Level II archive data", "This dataset has file information from the AWS S3 noaa-nexrad-level2 bucket at https://noaa-nexrad-level2.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II archive data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nexrad_level2/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nexrad_level2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nexrad_level2&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nexrad_level2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_pds/", "public", "File Names from the AWS S3 noaa-nwm-pds Bucket: NOAA National Water Model Short-Range Forecast: A rolling four week archive of NWM data.", "This dataset has file information from the AWS S3 noaa-nwm-pds bucket at https://noaa-nwm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Short-Range Forecast\nName2: A rolling four week archive of NWM data.\nDescription: The National Water Model (NWM) is a water resources model that simulates and forecasts water budget variables, including snowpack, evapotranspiration, soil moisture and streamflow, over the entire continental United States (CONUS). The model, launched in August 2016, is designed to improve the ability of NOAA to meet the needs of its stakeholders (forecasters, emergency managers, reservoir operators, first responders, recreationists, farmers, barge operators, and ecosystem and floodplain managers) by providing expanded accuracy, detail, and frequency of water information. It is operated by NOAA\u2019s Office of Water Prediction. This bucket contains a four-week rollover of the Short Range Forecast model output and the corresponding forcing data for the model. The model is forced with meteorological data from the High Resolution Rapid Refresh (HRRR) and the Rapid Refresh (RAP) models. The Short Range Forecast configuration cycles hourly and produces hourly deterministic forecasts of streamflow and hydrologic states out to 18 hours.\n\nDocumentation: https://docs.opendata.aws/noaa-nwm-pds/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_pds/index.json", "https://registry.opendata.aws/noaa-nwm-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_retro_v2_0_pds/", "public", "File Names from the AWS S3 noaa-nwm-retro-v2.0-pds Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 2.0.", "This dataset has file information from the AWS S3 noaa-nwm-retro-v2.0-pds bucket at https://noaa-nwm-retro-v2.0-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 2.0.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\n... (4 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_retro_v2_0_pds/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_retro_v2_0_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_retro_v2_0_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_retro_v2_0_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ofs_pds/", "public", "File Names from the AWS S3 noaa-ofs-pds Bucket: NOAA Operational Forecast System (OFS): Project data files", "This dataset has file information from the AWS S3 noaa-ofs-pds bucket at https://noaa-ofs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Operational Forecast System (OFS)\nName2: Project data files\nDescription: The Operational Forecast System (OFS) has been developed to serve the maritime user community. OFS was developed in a joint project of the NOAA/National Ocean Service (NOS)/Office of Coast Survey, the NOAA/NOS/Center for Operational Oceanographic Products and Services (CO-OPS), and the NOAA/National Weather Service (NWS)/National Centers for Environmental Prediction (NCEP) Central Operations (NCO). OFS generates water level, water current, water temperature, water salinity (except for the Great Lakes) and wind conditions nowcast and forecast guidance four times per day.\n\nDocumentation: https://docs.opendata.aws/noaa-ofs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA OFS site](https://tidesandcurrents.noaa.gov/models.html). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight and generates 6-hour nowcasts and 48-hour forecast guidance\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ofs_pds/index.json", "https://registry.opendata.aws/noaa-ofs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ofs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ofs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ofs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/", "public", "File Names from the AWS S3 nrel-pds-wtk Bucket with prefix=wtk-techno-economic/pywtk-data/: NREL Wind Integration National Dataset on AWS: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format", "This dataset has file information from the AWS S3 nrel-pds-wtk bucket at https://nrel-pds-wtk.s3.us-west-2.amazonaws.com/ with prefix=wtk-techno-economic/pywtk-data/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NREL Wind Integration National Dataset on AWS\nName2: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format\nDescription: The [Wind Integration National Dataset (WIND)](https://www.nrel.gov/grid/wind-toolkit.html) is an update and expansion of the Eastern Wind Integration Data Set and Western Wind Integration Data Set. It supports the next generation of wind integration studies.\n\nDocumentation: https://www.nrel.gov/grid/wind-toolkit.html\nContact: wind-toolkit@nrel.gov\nManagedBy: [National Renewable Energy Laboratory](https://www.nrel.gov/)\nUpdateFrequency: As Needed\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/index.json", "https://registry.opendata.aws/nrel-pds-wtk/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nwm_archive/", "public", "File Names from the AWS S3 nwm-archive Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 1.2.", "This dataset has file information from the AWS S3 nwm-archive bucket at https://nwm-archive.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 1.2.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nwm_archive/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nwm_archive.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nwm_archive&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nwm_archive"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nyc_tlc/", "public", "File Names from the AWS S3 nyc-tlc Bucket: New York City Taxi and Limousine Commission (TLC) Trip Record Data: CSV files containing NYC TLC trip data.", "This dataset has file information from the AWS S3 nyc-tlc bucket at https://nyc-tlc.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: New York City Taxi and Limousine Commission (TLC) Trip Record Data\nName2: CSV files containing NYC TLC trip data.\nDescription: Data of trips taken by taxis and for-hire vehicles in New York City.\n\nDocumentation: http://www.nyc.gov/html/tlc/html/about/trip_record_data.shtml\nContact: research@tlc.nyc.gov\nUpdateFrequency: As soon as new data is available to be shared publicly.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nyc_tlc/index.json", "https://registry.opendata.aws/nyc-tlc-trip-records-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nyc_tlc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nyc_tlc&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nyc_tlc"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_oicr_icgc_meta_metadata/", "public", "File Names from the AWS S3 oicr.icgc.meta Bucket with prefix=metadata/: ICGC on AWS: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README", "This dataset has file information from the AWS S3 oicr.icgc.meta bucket at https://oicr.icgc.meta.s3.us-east-1.amazonaws.com/ with prefix=metadata/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ICGC on AWS\nName2: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README\nDescription: The International Cancer Genome Consortium (ICGC) coordinates projects with the common aim of accelerating research into the causes and control of cancer. The PanCancer Analysis of Whole Genomes (PCAWG) study is an international collaboration to identify common patterns of mutation in whole genomes from ICGC. More than 2,400 consistently analyzed genomes corresponding to over 1,100 unique ICGC donors are now freely available on Amazon S3 to credentialed researchers subject to ICGC data sharing policies.\n\nDocumentation: https://dcc.icgc.org/icgc-in-the-cloud/aws\nContact: dcc-support@icgc.org\nUpdateFrequency: New data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_oicr_icgc_meta_metadata/index.json", "https://registry.opendata.aws/icgc/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_oicr_icgc_meta_metadata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_oicr_icgc_meta_metadata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_oicr_icgc_meta_metadata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ooni_data/", "public", "File Names from the AWS S3 ooni-data Bucket: Open Observatory of Network Interference: S3 bucket with data", "This dataset has file information from the AWS S3 ooni-data bucket at https://ooni-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open Observatory of Network Interference\nName2: S3 bucket with data\nDescription: A free software, global observation network for detecting censorship, surveillance and traffic manipulation on the internet.\n\nDocumentation: https://ooni.torproject.org/about/\nContact: https://ooni.torproject.org/get-involved/\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ooni_data/index.json", "https://registry.opendata.aws/ooni/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ooni_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ooni_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ooni_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openaq_fetches/", "public", "File Names from the AWS S3 openaq-fetches Bucket: OpenAQ: Minutely CSVs of global air quality fetched from sources all over the world", "This dataset has file information from the AWS S3 openaq-fetches bucket at https://openaq-fetches.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenAQ\nName2: Minutely CSVs of global air quality fetched from sources all over the world\nDescription: Global, aggregated physical air quality data from public data sources provided by government, research-grade and other sources. These awesome groups do the hard work of measuring these data and publicly sharing them, and our community makes them more universally-accessible to both humans and machines.\n\nDocumentation: https://openaq.org\nContact: info@openaq.org\nManagedBy: [OpenAQ](https://openaq.org)\nUpdateFrequency: Minutely\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openaq_fetches/index.json", "https://registry.opendata.aws/openaq/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openaq_fetches.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openaq_fetches&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openaq_fetches"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_opencitymodel/", "public", "File Names from the AWS S3 opencitymodel Bucket: Open City Model (OCM): Project data files", "This dataset has file information from the AWS S3 opencitymodel bucket at https://opencitymodel.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open City Model (OCM)\nName2: Project data files\nDescription: Open City Model is an initiative to provide cityGML data for all the buildings in the United States. By using other open datasets in conjunction with our own code and algorithms it is our goal to provide 3D geometries for every US building.\n\nDocumentation: https://github.com/opencitymodel/opencitymodel\nContact: https://github.com/opencitymodel/opencitymodel#contact\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_opencitymodel/index.json", "https://registry.opendata.aws/opencitymodel/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_opencitymodel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_opencitymodel&showErrors=false&email=", "Amazon Web Services", "awsS3Files_opencitymodel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openneuro_org/", "public", "File Names from the AWS S3 openneuro.org Bucket: OpenNeuro: All datasets", "This dataset has file information from the AWS S3 openneuro.org bucket at https://openneuro.org.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenNeuro\nName2: All datasets\nDescription: OpenNeuro is a database of openly-available brain imaging data. The data are shared according to a Creative Commons CC0 license, providing a broad range of brain imaging data to researchers and citizen scientists alike. The database primarily focuses on functional magnetic resonance imaging (fMRI) data, but also includes other imaging modalities including structural and diffusion MRI, electroencephalography (EEG), and magnetoencephalograpy (MEG). OpenfMRI is a project of the [Center for Reproducible Neuroscience at Stanford University](http://reproducibility.stanford.edu). Development of the OpenNeuro resource has been funded by the National Science Foundation, National Institute of Mental Health, National Institute on Drug Abuse, and the Laura and John Arnold Foundation.\n\nDocumentation: http://openneuro.org\nContact: Support form at https://openneuro.org\nUpdateFrequency: New datasets deposited every 4-6 days\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openneuro_org/index.json", "https://registry.opendata.aws/openneuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openneuro_org.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openneuro_org&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openneuro_org"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osm_pds/", "public", "File Names from the AWS S3 osm-pds Bucket: OpenStreetMap on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 osm-pds bucket at https://osm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap on AWS\nName2: Imagery and metadata\nDescription: OSM is a free, editable map of the world, created and maintained by volunteers. Regular OSM data archives are made available in Amazon S3.\n\nDocumentation: https://docs.opendata.aws/osm-pds/readme.html\nContact: https://github.com/mojodna/osm-pds-pipelines/issues\nUpdateFrequency: Data is updated weekly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osm_pds/index.json", "https://registry.opendata.aws/osm/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osmlr/", "public", "File Names from the AWS S3 osmlr Bucket: OpenStreetMap Linear Referencing: Manifest and data files", "This dataset has file information from the AWS S3 osmlr bucket at https://osmlr.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap Linear Referencing\nName2: Manifest and data files\nDescription: OSMLR a linear referencing system built on top of OpenStreetMap. OSM has great information about roads around the world and their interconnections, but it lacks the means to give a stable identifier to a stretch of roadway. OSMLR provides a stable set of numerical IDs for every 1 kilometer stretch of roadway around the world. In urban areas, OSMLR IDs are attached to each block of roadways between significant intersections.\n\nDocumentation: https://github.com/opentraffic/osmlr/blob/master/docs/intro.md\nContact: https://github.com/opentraffic/osmlr/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osmlr/index.json", "https://registry.opendata.aws/osmlr/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osmlr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osmlr&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osmlr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_qiime2_data/", "public", "File Names from the AWS S3 qiime2-data Bucket: QIIME 2 User Tutorial Datasets: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs", "This dataset has file information from the AWS S3 qiime2-data bucket at https://qiime2-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: QIIME 2 User Tutorial Datasets\nName2: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs\nDescription: QIIME 2 is a powerful, extensible, and decentralized microbiome analysis package with a focus on data and analysis transparency. QIIME 2 enables researchers to start an analysis with raw DNA sequence data and finish with publication-quality figures and statistical results. This dataset contains the user docs (and related datasets) for QIIME 2.\n\nDocumentation: https://docs.qiime2.org\nContact: https://forum.qiime2.org\nManagedBy: The QIIME 2 Development Team\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_qiime2_data/index.json", "https://registry.opendata.aws/qiime2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_qiime2_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_qiime2_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_qiime2_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_safecast_opendata_public_us_east_1/", "public", "File Names from the AWS S3 safecast-opendata-public-us-east-1 Bucket: Safecast: Bulk exports of air and radiation measurements", "This dataset has file information from the AWS S3 safecast-opendata-public-us-east-1 bucket at https://safecast-opendata-public-us-east-1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Safecast\nName2: Bulk exports of air and radiation measurements\nDescription: An ongoing collection of radiation and air quality measurements taken by devices involved in the Safecast project.\n\nDocumentation: https://github.com/Safecast/safecastapi/wiki/Data-Sets\nContact: https://groups.google.com/forum/#!forum/safecast-devices\nManagedBy: [Safecast](https://safecast.org/)\nUpdateFrequency: Continuous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_safecast_opendata_public_us_east_1/index.json", "https://registry.opendata.aws/safecast/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_safecast_opendata_public_us_east_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_safecast_opendata_public_us_east_1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_safecast_opendata_public_us_east_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s1_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s1-l1c/: Sentinel-1: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s1-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C\nDescription: [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1) is a pair of European radar imaging (SAR) satellites launched in 2014 and 2016. Its 6 days revisit cycle and ability to observe through clouds makes it perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. GRD data is available globally since January 2017.\n\nDocumentation: https://roda.sentinel-hub.com/sentinel-s1-l1c/GRD/readme.html\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s1_l1c/index.json", "https://registry.opendata.aws/sentinel-1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s1_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s1_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s1_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l1c/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l1c/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l2a/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l2a/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l2a/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l2a/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l2a&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l2a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel1_slc_seasia_pds/", "public", "File Names from the AWS S3 sentinel1-slc-seasia-pds Bucket: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan", "This dataset has file information from the AWS S3 sentinel1-slc-seasia-pds bucket at https://sentinel1-slc-seasia-pds.s3.ap-southeast-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan\nName2: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan\nDescription: The S1 Single Look Complex (SLC) dataset contains Synthetic Aperture Radar (SAR) data in the C-Band wavelength. The SAR sensors are installed on a two-satellite (Sentinel-1A and Sentinel-1B) constellation orbiting the Earth with a combined revisit time of six days, operated by the European Space Agency. The S1 SLC data are a Level-1 product that collects radar amplitude and phase information in all-weather, day or night conditions, which is ideal for studying natural hazards and emergency response, land applications, oil spill monitoring, sea-ice conditions, and associated climate change effects.\n\nDocumentation: https://github.com/earthobservatory/sentinel1-opds/\nContact: https://github.com/earthobservatory/sentinel1-opds/\nManagedBy: [Earth Observatory of Singapore, Nanyang Technological University](https://earthobservatory.sg)\nUpdateFrequency: S1 SLC data for the region of interest will be updated regularly, as it becomes available on the Alaska Satellite Facility endpoint.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel1_slc_seasia_pds/index.json", "https://registry.opendata.aws/sentinel1-slc-seasia-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel1_slc_seasia_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel1_slc_seasia_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel1_slc_seasia_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_silo_open_data/", "public", "File Names from the AWS S3 silo-open-data Bucket: SILO climate data on AWS: SILO open data", "This dataset has file information from the AWS S3 silo-open-data bucket at https://silo-open-data.s3.ap-southeast-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SILO climate data on AWS\nName2: SILO open data\nDescription: [SILO](https://www.longpaddock.qld.gov.au/silo) is a database of Australian [climate data](https://www.longpaddock.qld.gov.au/silo/about/climate-variables) from 1889 to the present. It provides continuous, daily time-step [data products](https://www.longpaddock.qld.gov.au/silo/about/data-products) in ready-to-use [formats](https://www.longpaddock.qld.gov.au/silo/about/file-formats-and-samples) for research and operational applications. Gridded SILO data in annual NetCDF format are on AWS. Point data are available from the [SILO website](https://www.longpaddock.qld.gov.au/silo/).\n\nDocumentation: https://www.longpaddock.qld.gov.au/silo/gridded-data\nContact: https://www.longpaddock.qld.gov.au/silo/contact-us\nManagedBy: Queensland Government\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_silo_open_data/index.json", "https://registry.opendata.aws/silo/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_silo_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_silo_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_silo_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_softwareheritage/", "public", "File Names from the AWS S3 softwareheritage Bucket: Software Heritage Graph Dataset: Software Heritage Graph Dataset", "This dataset has file information from the AWS S3 softwareheritage bucket at https://softwareheritage.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Software Heritage Graph Dataset\nName2: Software Heritage Graph Dataset\nDescription: [Software Heritage](https://www.softwareheritage.org/) is the largest existing public archive of software source code and accompanying development history. The Software Heritage Graph Dataset is a fully deduplicated Merkle DAG representation of the Software Heritage archive.\n\nDocumentation: https://wiki.softwareheritage.org/wiki/Graph_Dataset_on_Amazon_Athena\nContact: swh-devel@inria.fr\nUpdateFrequency: Data is updated yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_softwareheritage/index.json", "https://registry.opendata.aws/software-heritage/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_softwareheritage.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_softwareheritage&showErrors=false&email=", "Amazon Web Services", "awsS3Files_softwareheritage"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_spacenet_dataset/", "public", "File Names from the AWS S3 spacenet-dataset Bucket: SpaceNet: Imagery and metadata in a S3 bucket", "This dataset has file information from the AWS S3 spacenet-dataset bucket at https://spacenet-dataset.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SpaceNet\nName2: Imagery and metadata in a S3 bucket\nDescription: SpaceNet, launched in August 2016 as an open innovation project offering a repository of freely available imagery with co-registered map features. Before SpaceNet, computer vision researchers had minimal options to obtain free, precision-labeled, and high-resolution satellite imagery. Today, SpaceNet hosts datasets developed by its own team, along with data sets from projects like IARPA\u2019s Functional Map of the World (fMoW).\n\nDocumentation: https://spacenetchallenge.github.io\nContact: https://github.com/SpaceNetChallenge/utilities/issues\nManagedBy: [SpaceNet](https://spacenet.ai/)\nUpdateFrequency: New imagery and features are added quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_spacenet_dataset/index.json", "https://registry.opendata.aws/spacenet/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_spacenet_dataset.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_spacenet_dataset&showErrors=false&email=", "Amazon Web Services", "awsS3Files_spacenet_dataset"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_unidata_nexrad_level2_chunks/", "public", "File Names from the AWS S3 unidata-nexrad-level2-chunks Bucket: NEXRAD on AWS: NEXRAD Level II real-time data", "This dataset has file information from the AWS S3 unidata-nexrad-level2-chunks bucket at https://unidata-nexrad-level2-chunks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II real-time data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_unidata_nexrad_level2_chunks/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_unidata_nexrad_level2_chunks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_unidata_nexrad_level2_chunks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_unidata_nexrad_level2_chunks"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_usgs_lidar_public/", "public", "File Names from the AWS S3 usgs-lidar-public Bucket: USGS 3DEP LiDAR Point Clouds: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.", "This dataset has file information from the AWS S3 usgs-lidar-public bucket at https://usgs-lidar-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: USGS 3DEP LiDAR Point Clouds\nName2: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.\nDescription: The goal of the [USGS 3D Elevation Program ](https://www.usgs.gov/core-science-systems/ngp/3dep) (3DEP) is to collect elevation data in the form of light detection and ranging (LiDAR) data over the conterminous United States, Hawaii, and the U.S. territories, with data acquired over an 8-year period. This dataset provides two realizations of the 3DEP point cloud data. The first resource is a public access organization provided in [Entwine Point Tiles](https://entwine.io/entwine-point-tile.html) format, which a lossless, full-density, streamable octree based on [LASzip](https://laszip.org) (LAZ) encoding. The second resource is a [Requester Pays](https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html) of the same data in LAZ (Compressed LAS) format. Resource names in both buckets correspond to the USGS project names.\n\nDocumentation: https://github.com/hobu/usgs-lidar/\nContact: https://github.com/hobu/usgs-lidar\nManagedBy: [Hobu, Inc.](https://hobu.co)\nUpdateFrequency: Periodically\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_usgs_lidar_public/index.json", "https://registry.opendata.aws/usgs-lidar/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_usgs_lidar_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_usgs_lidar_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_usgs_lidar_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_web_language_models/", "public", "File Names from the AWS S3 web-language-models Bucket: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl): Parallel Corpora to/from English for all official EU languages", "This dataset has file information from the AWS S3 web-language-models bucket at https://web-language-models.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl)\nName2: Parallel Corpora to/from English for all official EU languages\nDescription: ParaCrawl is a set of large parallel corpora to/from English for all official EU languages by a broad web crawling effort. State-of-the-art methods are applied for the entire processing chain from identifying web sites with translated text all the way to collecting, cleaning and delivering parallel corpora that are ready as training data for CEF.AT and translation memories for DG Translation.\n\nDocumentation: https://paracrawl.eu/releases.html\nContact: For questions regarding the datasets contact Kenneth Heafield, email kheafiel@inf.ed.ac.uk. For reporting any issues about bitextor pipeline visit https://github.com/bitextor/bitextor/issues.\nManagedBy: [ParaCrawl](https://paracrawl.eu)\nUpdateFrequency: New data is added according to ParaCrawl release schedule.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_web_language_models/index.json", "https://registry.opendata.aws/paracrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_web_language_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_web_language_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_web_language_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_xiph_media/", "public", "File Names from the AWS S3 xiph-media Bucket: Xiph.Org Test Media: Video and imagery data", "This dataset has file information from the AWS S3 xiph-media bucket at https://xiph-media.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Xiph.Org Test Media\nName2: Video and imagery data\nDescription: Uncompressed video used for video compression and video processing research.\n\nDocumentation: https://media.xiph.org/aws.html\nContact: Thomas Daede tdaede@xiph.org\nUpdateFrequency: New videos are added when contributors submit them.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_xiph_media/index.json", "https://registry.opendata.aws/xiph-media/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_xiph_media.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_xiph_media&showErrors=false&email=", "Amazon Web Services", "awsS3Files_xiph_media"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ycb_benchmarks/", "public", "File Names from the AWS S3 ycb-benchmarks Bucket: Yale-CMU-Berkeley (YCB) Object and Model Set: Project data files", "This dataset has file information from the AWS S3 ycb-benchmarks bucket at https://ycb-benchmarks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Yale-CMU-Berkeley (YCB) Object and Model Set\nName2: Project data files\nDescription: This project primarily aims to facilitate performance benchmarking in robotics research. The dataset provides mesh models, RGB, RGB-D and point cloud images of over 80 objects. The physical objects are also available via the [YCB benchmarking project](http://www.ycbbenchmarks.com/). The data are collected by two state of the art systems: UC Berkley's scanning rig and the Google scanner. The UC Berkley's scanning rig data provide meshes generated with Poisson reconstruction, meshes generated with volumetric range image integration, textured versions of both meshes, Kinbody files for using the meshes with OpenRAVE, 600 High-resolution RGB images, 600 RGB-D images, and 600 point cloud images for each object. The Google scanner data provides 3 meshes with different resolutions (16k, 64k, and 512k polygons), textured versions of each mesh, Kinbody files for using the meshes with OpenRAVE.\n\nDocumentation: http://www.ycbbenchmarks.com/\nContact: bcalli@wpi.edu\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ycb_benchmarks/index.json", "https://registry.opendata.aws/ycb-benchmarks/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ycb_benchmarks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ycb_benchmarks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ycb_benchmarks"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the June 2020 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.graph", "", "", "public", "GLOBEC NEP Vertical Plankton Tow (VPT) Data, 1997-2001", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nCalifornia Current Program\nVertical Plankton Tow (VPT) Data\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10181&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/vpt%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/vpt.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ncast_no (Cast Number Within the Cruise)\nstation_id\nabund_m3 (Abundance, count m-3)\ncomments\ncounter_id\nd_n_flag (Day/Night Flag)\ngear_area (Mouth Area of Net, m2)\ngear_mesh (Net's Mesh Size, mm)\ngear_type\ngenus_species\nlife_stage\nlocal_code\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecVpt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecVpt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecVpt/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecVpt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecVpt&showErrors=false&email=", "GLOBEC", "erdGlobecVpt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://usgodae.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, the EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\nBeach Monitoring Quality Assurance Project Plan (CWBMONQAPP002):\nhttps://www.pacioos.hawaii.edu/wp-content/uploads/2016/08/Beach_Monitoring_QAPP_CWBMONQAPP002_120507.pdf\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwb_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwb_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwb_water_quality/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/cwb_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwb_water_quality&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "cwb_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.graph", "", "", "public", "HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii", "The Hawaii Institute of Marine Biology (HIMB) automatic weather station (AWS) records hourly measurements of precipitation, air temperature, wind speed and direction, and irradiance. Sensors include an Eppley 295-385 nm ultraviolet (UV) radiometer, a LiCor 200SZ Pyranometer, and a LiCor Quantameter (400-700 nm). The sensors are located on the roof of HIMB's Coral Reef Ecology Laboratory (Point Lab) on Moku o Loe (Coconut Island) in Kaneohe Bay on the windward (eastern) coast of Oahu in Hawaii. An accompanying sea water temperature sensor is located less than 10 m offshore of the weather station at a shallow depth of approximately 1 m.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HIMB: HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nsea_water_temperature (water temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nwind_from_direction_std (standard deviation of wind direction (processed), degrees)\nrainfall_amount (total rainfall (processed), mm)\nshortwave_radiation (downwelling shortwave radiation (processed), W/m2)\nultraviolet_radiation (ultraviolet radiation (processed), W/m2)\nphotosynthetic_radiation (photosynthetically active radiation (processed), umol m-2 s-1)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_atn (QARTOD Attenuated Signal Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (139 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HIMB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HIMB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HIMB/index.json", "https://www.pacioos.hawaii.edu/weather/obs-mokuoloe/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HIMB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HIMB&showErrors=false&email=", "Hawaii Institute of Marine Biology (HIMB)", "AWS-HIMB"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.graph", "", "", "public", "Hui O Ka Wai Ola Water Quality Data", "The goal of the Hui O Ka Wai Ola (Association Of The Living Waters) citizen-science based water quality program is to increase the capacity for monitoring water quality in Maui coastal waters by generating reliable data to assess long-term water-quality conditions and detect temporal trends. These data augment the data produced by the Hawaii Department of Health (DOH) Clean Water Branch (CWB) beach monitoring program on Maui.\n \nData are collected and analyzed every two or three weeks for physical and chemical parameters, including ocean salinity, pH, temperature, organic nutrients (nitrogen and phosphorous compounds), dissolved oxygen (DO), and total suspended sediment (TSS). Some water samples are immediately tested at mobile labs while others are processed for testing at University of Hawaii and/or other labs.\n \nUsers of these data should cite the following publication:\n \nFalinski, Kim, Dana Reed, Tova Callender, Emily Fielding, Robin Newbold, and Alana Yurkanin. (2018). Hui O Ka Wai Ola Water Quality Data [Data set]. Zenodo. \"http://doi.org/10.5281/zenodo.1173717\"\n \nFor further information, please visit:\nhttps://www.huiokawaiola.com\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nlocation_id (sampling site identifier)\nlocation_name\nsample_id (sample identifier)\nsession_id (sampling session identifier)\nwater_temperature (Celsius)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hui_water_quality/index.json", "https://www.huiokawaiola.com", "http://upwell.pfeg.noaa.gov/erddap/rss/hui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hui_water_quality&showErrors=false&email=", "Hui O Ka Wai Ola", "hui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitored water quality at several beaches across the island of Maui in the State of Hawaii during the years 2010-2016. This community-based monitoring effort provided valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites were also monitored for harmful bacteria levels of Enterococcus through 2014-06-26. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours.\n\nData were managed through an online repository, the Coral Reef Monitoring Data Portal (now defunct), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection was coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/maui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/maui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/maui_water_quality/index.json", "https://coral.org/maui/", "http://upwell.pfeg.noaa.gov/erddap/rss/maui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=maui_water_quality&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "maui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys. See\nhttps://www.ndbc.noaa.gov/measdes.shtml for a description of the measurements.\n\nThe source data from NOAA NDBC has different column names, different units,\nand different missing values in different files, and other problems\n(notably, lots of rows with duplicate or different values for the same time\npoint). This dataset is a standardized, reformatted, and lightly edited\nversion of that source data, created by NOAA NMFS SWFSC ERD (email:\nerd.data at noaa.gov). Before 2020-01-29, this dataset only had the data\nthat was closest to a given hour, rounded to the nearest hour. Now, this\ndataset has all of the data available from NDBC with the original time\nvalues. If there are multiple source rows for a given buoy for a given\ntime, only the row with the most non-NaN data values is kept. If there is\na gap in the data, a row of missing values is inserted (which causes a nice\ngap when the data is graphed). Also, some impossible data values are\nremoved, but this data is not perfectly clean. This dataset is now updated\nevery 5 minutes.\n\nThis dataset has both historical data (quality controlled, before\n2020-06-01T00:00:00Z) and near real time data (less quality controlled,\nwhich may change at any time, from 2020-06-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Identifier)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.graph", "", "", "public", "NEFSC Continuous Plankton Recorder", "A summary for the data\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ncruise\nsample\nlatitude (degrees_north)\nlongitude (degrees_east)\nphyto_color_indx (Phytoplankton Color Index)\nmarmap_tax_code (Marmap Taxonomic Code)\nmarmap_stage_code\nabundance (per 100 cubic meters)\nlife_stage\ntaxonomic_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/wocecpr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/wocecpr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/wocecpr/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "http://upwell.pfeg.noaa.gov/erddap/rss/wocecpr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=wocecpr&showErrors=false&email=", "NEFSC", "wocecpr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "", "public", "North Pacific High, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.graph", "", "", "public", "OSMC Argo Profile data", "OSMC Argo Profile data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\norganization_name\ncountry_name\nplatform_type_name\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nparameter_name\ndaily_obs_count\nobservation_depth\nobservation_value\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_PROFILERS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_PROFILERS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_PROFILERS/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_PROFILERS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_PROFILERS&showErrors=false&email=", "OSMC", "OSMC_PROFILERS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.graph", "", "", "public", "OSMC normalized observations from GTS", "OSMC normalized In-situ Real time GTS data\n\ncdm_data_type = Point\nVARIABLES:\nPLATFORM_CODE (Station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform\nparameter\nOBSERVATION_VALUE\nOBSERVATION_DEPTH\nCOUNTRY_NAME\norganization_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_Points_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_Points_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_Points/index.json", "https://www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_Points.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_Points&showErrors=false&email=", "OSMC", "OSMC_Points"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001.graph", "", "", "public", "PacIOOS Beach Camera 001: Waikiki, Oahu, Hawaii", "A digital camera on top of the Sheraton Waikiki hotel was used to photograph the shoreline of Waikiki beach along the South Shore of the island of Oahu in the State of Hawaii. The oblique camera view presented here captures the shoreline leading southeast towards Diamond Head crater. It operated for over 4.5 years between February 5, 2009 and October 13, 2013. Capturing hourly snapshots at a set vantage point during the local daytime hours of 6:00 AM or 7:00 AM to 5:00 PM, these images are useful for tracking beach dynamics such as wave run-up, sand movement, and turbidity plumes over time. The camera was mounted on top of a 3 meter wall extending above the roof surface for a total height of 93 meters above ground level or 96 meters above mean sea level. See also BEACHCAM-002 for an alternate camera view from the same location pointing directly downwards.\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (m)\naboveGround (Height, m)\nurl\nname (File Name)\nsize (bytes)\nfileType (File Type)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/BEACHCAM-001_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/BEACHCAM-001_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/BEACHCAM-001/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/BEACHCAM-001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=BEACHCAM-001&showErrors=false&email=", "University of Hawaii", "BEACHCAM-001"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_4"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_2/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_2&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_6/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_6&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_7/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_7&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_7"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_8/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_8&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_9/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_9&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.graph", "", "", "public", "PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-04 is located in Hilo Bay on the east side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-04: PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-04/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-hilo/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-04&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-04"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.graph", "", "", "public", "PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-05 is located in Pelekane Bay near Kawaihae Harbor on the west side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-05: PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-05/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-pelekane/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-05&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-05"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.graph", "", "", "public", "PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii", "The Pacific Islands Ocean Observing System (PacIOOS) operates a Davis Instruments automatic weather station (AWS) near the entrance to Honolulu Harbor on the leeward (western) coast of Oahu in Hawaii to aid with navigation. The station records measurements every 5 minutes of air temperature, wind speed and direction, precipitation, relative humidity, and air pressure. Sensors are located at Pier 1, installed on a tower at an elevation of 64 feet (19.5 meters) above sea level. The station is owned by the Hawaii Pilots Association (HPA). PacIOOS maintains the station and provides data access.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HNLPier1: PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nrainfall_rate (rain rate (processed), mm/h)\nrelative_humidity (relative humidity (processed), %)\nair_pressure (air pressure (processed), millibars)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_gap (QARTOD Gap Test (processed), 0)\nair_temperature_qc_syn (QARTOD Syntax Test (processed), 0)\nair_temperature_qc_loc (QARTOD Location Test (processed), 0)\nair_temperature_qc_rng (QARTOD Gross Range Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_spk (QARTOD Spike Test (processed), 0)\n... (92 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HNLPier1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HNLPier1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HNLPier1/index.json", "https://www.pacioos.hawaii.edu/weather/obs-honolulu/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HNLPier1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HNLPier1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "AWS-HNLPier1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "https://tidesandcurrents.noaa.gov/gomoos.html", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/main.aspx?Division=PRD&ParentMenuId=147&id=1221", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2017, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2017, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2017, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"] + ] + } + } + recorded_at: 2020-07-15 21:24:05 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMekm14day.nc?mod_current[(2015-12-28):1:(2016-01-01)][(0.0):1:(0.0)][(23):1:(24)][(88):1:(90)],u_current[(2015-12-28):1:(2016-01-01)][(0.0):1:(0.0)][(23):1:(24)][(88):1:(90)],v_current[(2015-12-28):1:(2016-01-01)][(0.0):1:(0.0)][(23):1:(24)][(88):1:(90)] + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 21:24:05 GMT + x-frame-options: SAMEORIGIN + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 21:24:05 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=erdQMekm14day_3a6f_f1d0_a65b.nc + content-encoding: gzip + content-type: application/x-netcdf + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: yes + string: ../fixtures/188571c95282bcb224bb987dd83d22b7.nc + recorded_at: 2020-07-15 21:24:05 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 diff --git a/tests/vcr_cassettes/griddap_fields_parameter.yml b/tests/vcr_cassettes/griddap_fields_parameter.yml new file mode 100644 index 0000000..e5b989d --- /dev/null +++ b/tests/vcr_cassettes/griddap_fields_parameter.yml @@ -0,0 +1,1320 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/info/erdQMekm14day/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:20:01 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=erdQMekm14day_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "Grid"], + ["attribute", "NC_GLOBAL", "contact", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "Conventions", "String", "CF-1.6, COARDS, ACDD-1.3"], + ["attribute", "NC_GLOBAL", "creation_date", "String", "Tue Jul 14 23:13:27 2020"], + ["attribute", "NC_GLOBAL", "creator_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "creator_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "defaultGraphQuery", "String", "&.draw=vectors"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "360.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "75.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "-75.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_resolution", "double", "0.25"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "360.0"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_lon_resolution", "double", "0.25"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_max", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_min", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_positive", "String", "up"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_units", "String", "m"], + ["attribute", "NC_GLOBAL", "history", "String", "1-day geographic projection composites, created by erd.data@noaa.gov from L2 swath data obtained from NOAA|NESDIS, are used to create multi-day composites via the composite script in the dalesLibAscatB.py library by erd.data@noaa.gov at NOAA NMFS SWFSC ERD."], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "https://coastwatch.pfeg.noaa.gov/infog/QM_uekm_las.html"], + ["attribute", "NC_GLOBAL", "institution", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "keywords", "String", "advanced, altitude, ascat, circulation, coast, coastwatch, current, data, degrees, diffusivity, driven, Earth Science > Oceans > Ocean Circulation > Wind-Driven Circulation, eumetsat, european, exploitation, global, meteorological, metop, near, near real time, noaa, node, ocean, oceans, organisation, QMuekm, real, satellites, scatterometer, time, wcn, west, wind, wind-driven, zonal"], + ["attribute", "NC_GLOBAL", "license", "String", "The data may be used and redistributed for free but is not intended\nfor legal use, since it may contain inaccuracies. Neither the data\nContributor, ERD, NOAA, nor the United States Government, nor any\nof their employees or contractors, makes any warranty, express or\nimplied, including warranties of merchantability and fitness for a\nparticular purpose, or assumes any legal liability for the accuracy,\ncompleteness, or usefulness, of this information."], + ["attribute", "NC_GLOBAL", "naming_authority", "String", "gov.noaa.pfeg.coastwatch"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "75.0"], + ["attribute", "NC_GLOBAL", "project", "String", "CoastWatch (https://coastwatch.noaa.gov/)"], + ["attribute", "NC_GLOBAL", "publisher_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "publisher_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "publisher_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "publisher_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "references", "String", "NOAA/NESDIS https://manati.star.nesdis.noaa.gov/products/ASCAT.php ."], + ["attribute", "NC_GLOBAL", "source_data", "String", "14-day composite mean of files: QM2020196_2020196_uekm.grd.gz, QM2020195_2020195_uekm.grd.gz, QM2020194_2020194_uekm.grd.gz, QM2020193_2020193_uekm.grd.gz, QM2020192_2020192_uekm.grd.gz, QM2020191_2020191_uekm.grd.gz, QM2020190_2020190_uekm.grd.gz, QM2020189_2020189_uekm.grd.gz, QM2020188_2020188_uekm.grd.gz, QM2020187_2020187_uekm.grd.gz, QM2020186_2020186_uekm.grd.gz, QM2020185_2020185_uekm.grd.gz, QM2020184_2020184_uekm.grd.gz, QM2020183_2020183_uekm.grd.gz"], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "(local files)"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "-75.0"], + ["attribute", "NC_GLOBAL", "spatial_resolution", "String", "0.25 degree"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v70"], + ["attribute", "NC_GLOBAL", "summary", "String", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is a 14 day composite.)"], + ["attribute", "NC_GLOBAL", "testOutOfDate", "String", "now-10days"], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2020-07-08T00:00:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "2013-08-27T00:00:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "Wind Diffusivity Current, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (14 Day)"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "0.0"], + ["dimension", "time", "", "double", "nValues=2496, evenlySpaced=false, averageSpacing=1 day 0h 6m 56s"], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "1.3775616E9, 1.5941664E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Centered Time"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["dimension", "altitude", "", "double", "nValues=1, onlyValue=0.0"], + ["attribute", "altitude", "_CoordinateAxisType", "String", "Height"], + ["attribute", "altitude", "_CoordinateZisPositive", "String", "up"], + ["attribute", "altitude", "actual_range", "double", "0.0, 0.0"], + ["attribute", "altitude", "axis", "String", "Z"], + ["attribute", "altitude", "ioos_category", "String", "Location"], + ["attribute", "altitude", "long_name", "String", "Altitude"], + ["attribute", "altitude", "positive", "String", "up"], + ["attribute", "altitude", "standard_name", "String", "altitude"], + ["attribute", "altitude", "units", "String", "m"], + ["dimension", "latitude", "", "double", "nValues=601, evenlySpaced=true, averageSpacing=0.25"], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "double", "-75.0, 75.0"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "coordsys", "String", "geographic"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "point_spacing", "String", "even"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["dimension", "longitude", "", "double", "nValues=1441, evenlySpaced=true, averageSpacing=0.25"], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "double", "0.0, 360.0"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "coordsys", "String", "geographic"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "point_spacing", "String", "even"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "u_current", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "u_current", "_FillValue", "float", "-99999.0"], + ["attribute", "u_current", "colorBarMaximum", "double", "4.0"], + ["attribute", "u_current", "colorBarMinimum", "double", "-4.0"], + ["attribute", "u_current", "coordsys", "String", "geographic"], + ["attribute", "u_current", "ioos_category", "String", "Currents"], + ["attribute", "u_current", "long_name", "String", "Zonal Wind Diffusivity Current"], + ["attribute", "u_current", "missing_value", "float", "-99999.0"], + ["attribute", "u_current", "units", "String", "m s-1"], + ["variable", "v_current", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "v_current", "_FillValue", "float", "-99999.0"], + ["attribute", "v_current", "colorBarMaximum", "double", "4.0"], + ["attribute", "v_current", "colorBarMinimum", "double", "-4.0"], + ["attribute", "v_current", "coordsys", "String", "geographic"], + ["attribute", "v_current", "ioos_category", "String", "Currents"], + ["attribute", "v_current", "long_name", "String", "Meridional Wind Diffusivity Current"], + ["attribute", "v_current", "missing_value", "float", "-99999.0"], + ["attribute", "v_current", "units", "String", "m s-1"], + ["variable", "mod_current", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "mod_current", "_FillValue", "float", "-99999.0"], + ["attribute", "mod_current", "colorBarMaximum", "double", "0.05"], + ["attribute", "mod_current", "colorBarMinimum", "double", "0.0"], + ["attribute", "mod_current", "colorBarPalette", "String", "WhiteRedBlack"], + ["attribute", "mod_current", "coordsys", "String", "geographic"], + ["attribute", "mod_current", "ioos_category", "String", "Currents"], + ["attribute", "mod_current", "long_name", "String", "Modulus of Wind Diffusivity Current"], + ["attribute", "mod_current", "missing_value", "float", "-99999.0"], + ["attribute", "mod_current", "units", "String", "m s-1"] + ] + } + } + recorded_at: 2020-07-15 22:19:49 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:20:01 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:20:01 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://upwell.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012.graph", "", "", "public", "AIS Ship Traffic: Hawaii: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_hi_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_hi_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_hi_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_hi_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_hi_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_hi_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012.graph", "", "", "public", "AIS Ship Traffic: Johnston Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Johnston Atoll. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_john_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_john_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_john_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_john_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_john_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_john_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012.graph", "", "", "public", "AIS Ship Traffic: Mariana and Wake: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Mariana Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_mari_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_mari_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_mari_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_mari_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_mari_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_mari_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012.graph", "", "", "public", "AIS Ship Traffic: Rose Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Rose Atoll in American Samoa. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_rose_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_rose_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_rose_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_rose_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_rose_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_rose_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom for the most recent 7 days.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_temp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_temp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_temp/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_temp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_temp&showErrors=false&email=", "University of Hawaii", "aco_adcp_temp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Velocity", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean current velocity at the ACO from a 250 kHz SonTek acoustic doppler current profiler (ADCP) at 1.83 m above the ocean bottom for the most recent 7 days. Velocities are flagged bad if the amplitude is excessively low or high. An amplitude is high if it exceeds the average of the ping before and the ping after by 20 counts. An amplitude is low if less than 6 counts. After this the velocities are flagged bad if the absolute deviation of the vertical velocity from its ensemble median exceeds 0.15 m/s or if its value is less than -0.25 m/s.\n\ncdm_data_type = Profile\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each location, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\neastward_sea_water_velocity (current east component, meters/second)\nnorthward_sea_water_velocity (current north component, meters/second)\nupward_sea_water_velocity (current upward component, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_vel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_vel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_vel/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_vel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_vel&showErrors=false&email=", "University of Hawaii", "aco_adcp_vel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://upwell.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF.graph", "", "", "public", "CRRF Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-CRRF: CRRF Weather Station: Palau: Koror: Ngeanges Island)\nair_temperature (Celsius)\nair_temperature_max (maximum air temperature, Celsius)\nair_temperature_max_time (maximum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (minimum air temperature, Celsius)\nair_temperature_min_time (minimum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_std (air temperature standard deviation, Celsius)\nwind_speed (m/s)\nwind_speed_max (gust speed, m/s)\nwind_speed_max_time (gust speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (minimum wind speed, m/s)\nwind_speed_min_time (minimum wind speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_std (wind speed standard deviation, m/s)\nwind_from_direction (wind direction, degrees)\nwind_from_direction_std (wind direction standard deviation, degrees)\nrainfall_amount (total rainfall, mm)\n... (23 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-CRRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-CRRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-CRRF/index.json", "https://www.pacioos.hawaii.edu/weather/obs-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-CRRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-CRRF&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "AWS-CRRF"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_1000genomes/", "public", "File Names from the AWS S3 1000genomes Bucket: 1000 Genomes", "This dataset has file information from the AWS S3 1000genomes bucket at https://1000genomes.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 1000 Genomes\nName2: http://www.internationalgenome.org/formats\nDescription: The 1000 Genomes Project is an international collaboration which has established the most detailed catalogue of human genetic variation, including SNPs, structural variants, and their haplotype context. The final phase of the project sequenced more than 2500 individuals from 26 different populations around the world and produced an integrated set of phased haplotypes with more than 80 million variants for these individuals.\n\nDocumentation: https://docs.opendata.aws/1000genomes/readme.html\nContact: http://www.internationalgenome.org/contact\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_1000genomes/index.json", "https://registry.opendata.aws/1000-genomes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_1000genomes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_1000genomes&showErrors=false&email=", "Amazon Web Services", "awsS3Files_1000genomes"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_3kricegenome/", "public", "File Names from the AWS S3 3kricegenome Bucket: 3000 Rice Genomes Project", "This dataset has file information from the AWS S3 3kricegenome bucket at https://3kricegenome.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 3000 Rice Genomes Project\nName2: http://s3.amazonaws.com/3kricegenome/README-snp_pipeline.txt\nDescription: The 3000 Rice Genome Project is an international effort to sequence the genomes of 3,024 rice varieties from 89 countries.\n\nDocumentation: https://docs.opendata.aws/3kricegenome/readme.html\nContact: http://iric.irri.org/contact-us\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_3kricegenome/index.json", "https://registry.opendata.aws/3kricegenome/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_3kricegenome.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_3kricegenome&showErrors=false&email=", "Amazon Web Services", "awsS3Files_3kricegenome"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aft_vbi_pds/", "public", "File Names from the AWS S3 aft-vbi-pds Bucket: Amazon Bin Image Dataset: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.", "This dataset has file information from the AWS S3 aft-vbi-pds bucket at https://aft-vbi-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Bin Image Dataset\nName2: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.\nDescription: The Amazon Bin Image Dataset contains over 500,000 images and metadata from bins of a pod in an operating Amazon Fulfillment Center. The bin images in this dataset are captured as robot units carry pods as part of normal Amazon Fulfillment Center operations.\n\nDocumentation: https://docs.opendata.aws/aft-vbi-pds/readme.html\nContact: amazon-bin-images@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aft_vbi_pds/index.json", "https://registry.opendata.aws/amazon-bin-imagery/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aft_vbi_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aft_vbi_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aft_vbi_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory/", "public", "File Names from the AWS S3 allen-brain-observatory Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: Project data files in a public bucket", "This dataset has file information from the AWS S3 allen-brain-observatory bucket at https://allen-brain-observatory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: Project data files in a public bucket\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory_templates/", "public", "File Names from the AWS S3 allen-brain-observatory-templates Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: SageMaker launch template with s3fs bucket mounts", "This dataset has file information from the AWS S3 allen-brain-observatory-templates bucket at https://allen-brain-observatory-templates.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: SageMaker launch template with s3fs bucket mounts\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory_templates/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory_templates.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory_templates&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory_templates"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_amazon_reviews_pds/", "public", "File Names from the AWS S3 amazon-reviews-pds Bucket: Amazon Customer Reviews Dataset: TSV files of reviews", "This dataset has file information from the AWS S3 amazon-reviews-pds bucket at https://amazon-reviews-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Customer Reviews Dataset\nName2: TSV files of reviews\nDescription: Amazon Customer Reviews (a.k.a. Product Reviews) is one of Amazon\u2019s iconic products. In a period of over two decades since the first review in 1995, millions of Amazon customers have contributed over a hundred million reviews to express opinions and describe their experiences regarding products on the Amazon.com website. Over 130+ million customer reviews are available to researchers as part of this dataset.\n\nDocumentation: https://s3.amazonaws.com/amazon-reviews-pds/readme.html\nContact: customer-review-dataset@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not defined\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_amazon_reviews_pds/index.json", "https://registry.opendata.aws/amazon-reviews/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_amazon_reviews_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_amazon_reviews_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_amazon_reviews_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_avg_kitti/", "public", "File Names from the AWS S3 avg-kitti Bucket: KITTI Vision Benchmark Suite", "This dataset has file information from the AWS S3 avg-kitti bucket at https://avg-kitti.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: KITTI Vision Benchmark Suite\nName2: http://www.cvlibs.net/datasets/kitti/raw_data.php\nDescription: Dataset and benchmarks for computer vision research in the context of autonomous driving. The dataset has been recorded in and around the city of Karlsruhe, Germany using the mobile platform AnnieWay (VW station wagon) which has been equipped with several RGB and monochrome cameras, a Velodyne HDL 64 laser scanner as well as an accurate RTK corrected GPS/IMU localization unit. The dataset has been created for computer vision and machine learning research on stereo, optical flow, visual odometry, semantic segmentation, semantic instance segmentation, road segmentation, single image depth prediction, depth map completion, 2D and 3D object detection and object tracking. In addition, several raw data recordings are provided. The datasets are captured by driving around the mid-size city of Karlsruhe, in rural areas and on highways. Up to 15 cars and 30 pedestrians are visible per image.\n\nDocumentation: http://www.cvlibs.net/datasets/kitti/\nContact: http://www.cvlibs.net/people.php\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_avg_kitti/index.json", "https://registry.opendata.aws/kitti/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_avg_kitti.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_avg_kitti&showErrors=false&email=", "Amazon Web Services", "awsS3Files_avg_kitti"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/", "public", "File Names from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd Bucket: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)", "This dataset has file information from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd bucket at https://aws-earth-mo-atmospheric-mogreps-g-prd.s3.eu-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts\nName2: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)\nDescription: Meteorological data reusers now have an exciting opportunity to sample, experiment and evaluate Met Office atmospheric model data, whilst also experiencing a transformative method of requesting data via Restful APIs on AWS. All ahead of Met Office\u2019s own operationally supported API platform that will be launched in late 2019.\n\nDocumentation: https://github.com/MetOffice/aws-earth-examples\nContact: https://www.metoffice.gov.uk/about-us/contact\nUpdateFrequency: Daily (with 24 hour delay)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/index.json", "https://registry.opendata.aws/uk-met-office/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_gsod/", "public", "File Names from the AWS S3 aws-gsod Bucket: Global Surface Summary of Day: Measurements and metadata", "This dataset has file information from the AWS S3 aws-gsod bucket at https://aws-gsod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Surface Summary of Day\nName2: Measurements and metadata\nDescription: GSOD is a collection of daily weather measurements (temperature, wind speed, humidity, pressure, and more) from 9000+ weather stations around the world.\n\nDocumentation: https://www.ncdc.noaa.gov/\nContact: https://www.ncdc.noaa.gov/\nUpdateFrequency: Currently updated infrequently. Last updated on September 13, 2016.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_gsod/index.json", "https://registry.opendata.aws/noaa-gsod/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_gsod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_gsod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_gsod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_broad_references/", "public", "File Names from the AWS S3 broad-references Bucket: Broad Genome References: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.", "This dataset has file information from the AWS S3 broad-references bucket at https://broad-references.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Broad Genome References\nName2: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.\nDescription: Broad maintained human genome reference builds hg19/hg38 and decoy references.\n\nDocumentation: https://s3.amazonaws.com/broad-references/broad-references-readme.html\nContact: hensonc@broadinstitute.org\nManagedBy: Broad Institute\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_broad_references/index.json", "https://registry.opendata.aws/broad-references/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_broad_references.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_broad_references&showErrors=false&email=", "Amazon Web Services", "awsS3Files_broad_references"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cbers_meta_pds/", "public", "File Names from the AWS S3 cbers-meta-pds Bucket: CBERS on AWS: CBERS metadata (Quicklooks, metadata)", "This dataset has file information from the AWS S3 cbers-meta-pds bucket at https://cbers-meta-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CBERS on AWS\nName2: CBERS metadata (Quicklooks, metadata)\nDescription: This project creates a S3 repository with imagery acquired by the China-Brazil Earth Resources Satellite (CBERS). The image files are recorded and processed by Instituto Nacional de Pesquisa Espaciais (INPE) and are converted to Cloud Optimized Geotiff format in order to optimize its use for cloud based applications. The repository contains all CBERS-4 MUX, AWFI, PAN5M and PAN10M scenes acquired since the start of the satellite mission and is daily updated with new scenes.\n\nDocumentation: https://github.com/fredliporace/cbers-on-aws\nContact: https://lists.osgeo.org/mailman/listinfo/cbers-pds\nManagedBy: [AMS Kepler](https://amskepler.com/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cbers_meta_pds/index.json", "https://registry.opendata.aws/cbers/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cbers_meta_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cbers_meta_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cbers_meta_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cgiardata/", "public", "File Names from the AWS S3 cgiardata Bucket: CCAFS-Climate Data: ARC GRID, and ARC ASCII format compressed", "This dataset has file information from the AWS S3 cgiardata bucket at https://cgiardata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CCAFS-Climate Data\nName2: ARC GRID, and ARC ASCII format compressed\nDescription: High resolution climate data to help assess the impacts of climate change primarily on agriculture. These open access datasets of climate projections will help researchers make climate change impact assessments.\n\nDocumentation: http://www.ccafs-climate.org\nContact: http://www.ccafs-climate.org/contact/\nUpdateFrequency: Every three months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cgiardata/index.json", "https://registry.opendata.aws/cgiardata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cgiardata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cgiardata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cgiardata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_commoncrawl/", "public", "File Names from the AWS S3 commoncrawl Bucket: Common Crawl: Crawl data (WARC and ARC format)", "This dataset has file information from the AWS S3 commoncrawl bucket at https://commoncrawl.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Common Crawl\nName2: Crawl data (WARC and ARC format)\nDescription: A corpus of web crawl data composed of over 25 billion web pages.\n\nDocumentation: http://commoncrawl.org/the-data/get-started/\nContact: http://commoncrawl.org/connect/contact-us/\nManagedBy: [Common Crawl](http://commoncrawl.org/)\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_commoncrawl/index.json", "https://registry.opendata.aws/commoncrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_commoncrawl.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_commoncrawl&showErrors=false&email=", "Amazon Web Services", "awsS3Files_commoncrawl"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cornell_eas_data_lake/", "public", "File Names from the AWS S3 cornell-eas-data-lake Bucket: Cornell EAS Data Lake: Cornell EAS Data Lake", "This dataset has file information from the AWS S3 cornell-eas-data-lake bucket at https://cornell-eas-data-lake.s3.us-east-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cornell EAS Data Lake\nName2: Cornell EAS Data Lake\nDescription: Earth & Atmospheric Sciences at Cornell University has created a public data lake of climate data. The data is stored in columnar storage formats (ORC) to make it straightforward to query using standard tools like Amazon Athena or Apache Spark. The data itself is originally intended to be used for building decision support tools for farmers and digital agriculture. The first dataset is the historical NDFD / NDGD data distributed by NCEP / NOAA / NWS. The NDFD (National Digital Forecast Database) and NDGD (National Digital Guidance Database) contain gridded forecasts and observations at 2.5km resolution for the Contiguous United States (CONUS). There are also 5km grids for several smaller US regions and non-continguous territories, such as Hawaii, Guam, Puerto Rico and Alaska. NOAA distributes archives of the NDFD/NDGD via its NOAA Operational Model Archive and Distribution System (NOMADS) in Grib2 format. The data has been converted to ORC to optimize storage space and to, more importantly, simplify data access via standard data analytics tools.\n\nDocumentation: https://datalake.eas.cornell.edu/\nContact: digitalag@cornell.edu\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cornell_eas_data_lake/index.json", "https://registry.opendata.aws/cornell-eas-data-lake/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cornell_eas_data_lake.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cornell_eas_data_lake&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cornell_eas_data_lake"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cse_cic_ids2018/", "public", "File Names from the AWS S3 cse-cic-ids2018 Bucket: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018): Network traffic and log files", "This dataset has file information from the AWS S3 cse-cic-ids2018 bucket at https://cse-cic-ids2018.s3.ca-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018)\nName2: Network traffic and log files\nDescription: This dataset is the result of a collaborative project between the Communications Security Establishment (CSE) and The Canadian Institute for Cybersecurity (CIC) that use the notion of profiles to generate cybersecurity dataset in a systematic manner. It incluides a detailed description of intrusions along with abstract distribution models for applications, protocols, or lower level network entities. The dataset includes seven different attack scenarios, namely Brute-force, Heartbleed, Botnet, DoS, DDoS, Web attacks, and infiltration of the network from inside. The attacking infrastructure includes 50 machines and the victim organization has 5 departments includes 420 PCs and 30 servers. This dataset includes the network traffic and log files of each machine from the victim side, along with 80 network traffic features extracted from captured traffic using CICFlowMeter-V3. For more information on the creation of this dataset, see this paper by researchers at the Canadian Institute for Cybersecurity (CIC) and the University of New Brunswick (UNB): [Toward Generating a New Intrusion Detection Dataset and Intrusion Traffic Characterization](http://www.scitepress.org/Papers/2018/66398/66398.pdf).\n\nDocumentation: http://www.unb.ca/cic/datasets/ids-2018.html\nContact: CIC@unb.ca\nUpdateFrequency: Annualy\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cse_cic_ids2018/index.json", "https://registry.opendata.aws/cse-cic-ids2018/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cse_cic_ids2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cse_cic_ids2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cse_cic_ids2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cytodata/", "public", "File Names from the AWS S3 cytodata Bucket: Cell Painting Image Collection: Images, extracted features and aggregated profiles are available as a S3 bucket", "This dataset has file information from the AWS S3 cytodata bucket at https://cytodata.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cell Painting Image Collection\nName2: Images, extracted features and aggregated profiles are available as a S3 bucket\nDescription: The Cell Painting Image Collection is a collection of freely downloadable microscopy image sets. Cell Painting is an unbiased high throughput imaging assay used to analyze perturbations in cell models. In addition to the images themselves, each set includes a description of the biological application and some type of \"ground truth\" (expected results). Researchers are encouraged to use these image sets as reference points when developing, testing, and publishing new image analysis algorithms for the life sciences. We hope that the this data set will lead to a better understanding of which methods are best for various biological image analysis applications.\n\nDocumentation: https://github.com/cytodata/cytodata-hackathon-2018\nContact: Post on https://forum.image.sc/ and tag with \"cellpainting\"\nUpdateFrequency: irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cytodata/index.json", "https://registry.opendata.aws/cell-painting-image-collection/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cytodata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cytodata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cytodata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_czb_tabula_muris/", "public", "File Names from the AWS S3 czb-tabula-muris Bucket: Tabula Muris", "This dataset has file information from the AWS S3 czb-tabula-muris bucket at https://czb-tabula-muris.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Tabula Muris\nName2: https://github.com/czbiohub/tabula-muris\nDescription: Tabula Muris is a compendium of single cell transcriptomic data from the model organism *Mus musculus* comprising more than 100,000 cells from 20 organs and tissues. These data represent a new resource for cell biology, reveal gene expression in poorly characterized cell populations, and allow for direct and controlled comparison of gene expression in cell types shared between tissues, such as T-lymphocytes and endothelial cells from different anatomical locations. Two distinct technical approaches were used for most organs: one approach, microfluidic droplet-based 3\u2019-end counting, enabled the survey of thousands of cells at relatively low coverage, while the other, FACS-based full length transcript analysis, enabled characterization of cell types with high sensitivity and coverage. The cumulative data provide the foundation for an atlas of transcriptomic cell biology. See: https://www.nature.com/articles/s41586-018-0590-4\n\nDocumentation: https://github.com/czbiohub/tabula-muris/blob/master/tabula-muris-on-aws.md\nContact: If you have questions about the data, you can create an Issue at https://github.com/czbiohub/tabula-muris.\nManagedBy: [Chan Zuckerberg Biohub](https://www.czbiohub.org/)\nUpdateFrequency: This is the final version of the dataset, it will not be updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_czb_tabula_muris/index.json", "https://registry.opendata.aws/tabula-muris/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_czb_tabula_muris.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_czb_tabula_muris&showErrors=false&email=", "Amazon Web Services", "awsS3Files_czb_tabula_muris"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataforgood_fb_data/", "public", "File Names from the AWS S3 dataforgood-fb-data Bucket: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook: CSV and Cloud-optimized GeoTIFF files", "This dataset has file information from the AWS S3 dataforgood-fb-data bucket at https://dataforgood-fb-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook\nName2: CSV and Cloud-optimized GeoTIFF files\nDescription: Population data for a selection of countries, allocated to 1 arcsecond blocks and provided in a combination of CSV and Cloud-optimized GeoTIFF files. This refines [CIESIN\u2019s Gridded Population of the World](https://sedac.ciesin.columbia.edu/data/collection/gpw-v4) using machine learning models on high-resolution worldwide Digital Globe satellite imagery. CIESIN population counts aggregated from worldwide census data are allocated to blocks where imagery appears to contain buildings.\n\nDocumentation: [Project overview](https://dataforgood.fb.com/population-density-maps-documentation/) and [dataset description](https://docs.opendata.aws/dataforgood-fb-data/readme.html)\nContact: disastermaps@fb.com\nManagedBy: |\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataforgood_fb_data/index.json", "https://registry.opendata.aws/dataforgood-fb-hrsl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataforgood_fb_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataforgood_fb_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataforgood_fb_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_datasets_elasticmapreduce_ngrams_books/", "public", "File Names from the AWS S3 datasets.elasticmapreduce Bucket with prefix=ngrams/books/: Google Books Ngrams: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.", "This dataset has file information from the AWS S3 datasets.elasticmapreduce bucket at https://datasets.elasticmapreduce.s3.us-east-1.amazonaws.com/ with prefix=ngrams/books/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Google Books Ngrams\nName2: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.\nDescription: N-grams are fixed size tuples of items. In this case the items are words extracted from the Google Books corpus. The n specifies the number of elements in the tuple, so a 5-gram contains five words or characters. The n-grams in this dataset were produced by passing a sliding window of the text of books and outputting a record for each new token.\n\nDocumentation: http://books.google.com/ngrams/\nContact: https://books.google.com/ngrams\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_datasets_elasticmapreduce_ngrams_books/index.json", "https://registry.opendata.aws/google-ngrams/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_datasets_elasticmapreduce_ngrams_books.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_datasets_elasticmapreduce_ngrams_books&showErrors=false&email=", "Amazon Web Services", "awsS3Files_datasets_elasticmapreduce_ngrams_books"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataworld_linked_acs/", "public", "File Names from the AWS S3 dataworld-linked-acs Bucket: U.S. Census ACS PUMS: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.", "This dataset has file information from the AWS S3 dataworld-linked-acs bucket at https://dataworld-linked-acs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: U.S. Census ACS PUMS\nName2: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.\nDescription: U.S. Census Bureau American Community Survey (ACS) Public Use Microdata Sample (PUMS) available in a linked data format using the Resource Description Framework (RDF) data model.\n\nDocumentation: https://docs.data.world/uscensus/#american-community-survey-linked-open-data\nContact: https://docs.data.world/uscensus/#60---contact\nUpdateFrequency: Yearly, after ACS 1-year PUMS raw data are released\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataworld_linked_acs/index.json", "https://registry.opendata.aws/census-dataworld-pums/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataworld_linked_acs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataworld_linked_acs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataworld_linked_acs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2015/", "public", "File Names from the AWS S3 dc-lidar-2015 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML, SHP", "This dataset has file information from the AWS S3 dc-lidar-2015 bucket at https://dc-lidar-2015.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML, SHP\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2015/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2015.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2015&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2015"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2018/", "public", "File Names from the AWS S3 dc-lidar-2018 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML", "This dataset has file information from the AWS S3 dc-lidar-2018 bucket at https://dc-lidar-2018.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2018/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_eurex_pds/", "public", "File Names from the AWS S3 deutsche-boerse-eurex-pds Bucket: Deutsche B\u00f6rse Public Dataset: Eurex PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-eurex-pds bucket at https://deutsche-boerse-eurex-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Eurex PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_eurex_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_eurex_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_eurex_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_eurex_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_xetra_pds/", "public", "File Names from the AWS S3 deutsche-boerse-xetra-pds Bucket: Deutsche B\u00f6rse Public Dataset: Xetra PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-xetra-pds bucket at https://deutsche-boerse-xetra-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Xetra PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_xetra_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_xetra_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_xetra_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_xetra_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ebirdst_data/", "public", "File Names from the AWS S3 ebirdst-data Bucket: eBird Status and Trends Model Results: Species results files", "This dataset has file information from the AWS S3 ebirdst-data bucket at https://ebirdst-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: eBird Status and Trends Model Results\nName2: Species results files\nDescription: The eBird Status and Trends project generates estimates of bird occurrence and abundance at a high spatiotemporal resolution. This dataset represents the primary modeled results from the analysis workflow and are designed for further analysis, synthesis, visualization, and exploration.\n\nDocumentation: https://cornelllabofornithology.github.io/ebirdst/articles/ebirdst-introduction.html\nContact: https://help.ebird.org/customer/en/portal/emails/new\nManagedBy: [Cornell Lab of Ornithology](https://www.birds.cornell.edu/home/)\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ebirdst_data/index.json", "https://registry.opendata.aws/ebirdst/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ebirdst_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ebirdst_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ebirdst_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_elevation_tiles_prod/", "public", "File Names from the AWS S3 elevation-tiles-prod Bucket: Terrain Tiles: Gridded elevation tiles", "This dataset has file information from the AWS S3 elevation-tiles-prod bucket at https://elevation-tiles-prod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Terrain Tiles\nName2: Gridded elevation tiles\nDescription: A global dataset providing bare-earth terrain heights, tiled for easy usage and provided on S3.\n\nDocumentation: https://mapzen.com/documentation/terrain-tiles/\nContact: https://github.com/tilezen/joerd/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_elevation_tiles_prod/index.json", "https://registry.opendata.aws/terrain-tiles/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_elevation_tiles_prod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_elevation_tiles_prod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_elevation_tiles_prod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_encode_public/", "public", "File Names from the AWS S3 encode-public Bucket: Encyclopedia of DNA Elements (ENCODE): Released and archived ENCODE data", "This dataset has file information from the AWS S3 encode-public bucket at https://encode-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Encyclopedia of DNA Elements (ENCODE)\nName2: Released and archived ENCODE data\nDescription: The Encyclopedia of DNA Elements (ENCODE) Consortium is an international collaboration of research groups funded by the National Human Genome Research Institute (NHGRI). The goal of ENCODE is to build a comprehensive parts list of functional elements in the human genome, including elements that act at the protein and RNA levels, and regulatory elements that control cells and circumstances in which a gene is active. ENCODE investigators employ a variety of assays and methods to identify functional elements. The discovery and annotation of gene elements is accomplished primarily by sequencing a diverse range of RNA sources, comparative genomics, integrative bioinformatic methods, and human curation. Regulatory elements are typically investigated through DNA hypersensitivity assays, assays of DNA methylation, and immunoprecipitation (IP) of proteins that interact with DNA and RNA, i.e., modified histones, transcription factors, chromatin regulators, and RNA-binding proteins, followed by sequencing.\n\nDocumentation: https://www.encodeproject.org\nContact: encode-help@lists.stanford.edu\nManagedBy: ENCODE Data Coordinating Center\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_encode_public/index.json", "https://registry.opendata.aws/encode-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_encode_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_encode_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_encode_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_epa_rsei_pds/", "public", "File Names from the AWS S3 epa-rsei-pds Bucket: EPA Risk-Screening Environmental Indicators: RSEI Microdata", "This dataset has file information from the AWS S3 epa-rsei-pds bucket at https://epa-rsei-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: EPA Risk-Screening Environmental Indicators\nName2: RSEI Microdata\nDescription: Detailed air model results from EPA\u2019s Risk-Screening Environmental Indicators (RSEI) model.\n\nDocumentation: https://docs.opendata.aws/epa-rsei-pds/readme.html\nContact: https://www.epa.gov/rsei/forms/contact-us-about-rsei-model\nUpdateFrequency: Updated infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_epa_rsei_pds/index.json", "https://registry.opendata.aws/epa-rsei-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_epa_rsei_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_epa_rsei_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_epa_rsei_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_era5_pds/", "public", "File Names from the AWS S3 era5-pds Bucket: ECMWF ERA5 Reanalysis: ERA5 Reanalysis NetCDF 4 files", "This dataset has file information from the AWS S3 era5-pds bucket at https://era5-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ECMWF ERA5 Reanalysis\nName2: ERA5 Reanalysis NetCDF 4 files\nDescription: ERA5 is the fifth generation of ECMWF atmospheric reanalyses of the global climate, and the first reanalysis produced as an operational service. It utilizes the best available observation data from satellites and in-situ stations, which are assimilated and processed using ECMWF's Integrated Forecast System (IFS) Cycle 41r2. The dataset provides all essential atmospheric meteorological parameters like, but not limited to, air temperature, pressure and wind at different altitudes, along with surface parameters like rainfall, soil moisture content and sea parameters like sea-surface temperature and wave height. ERA5 provides data at a considerably higher spatial and temporal resolution than its legacy counterpart ERA-Interim. ERA5 consists of high resolution version with 31 km horizontal resolution, and a reduced resolution ensemble version with 10 members. It is currently available since 2008, but will be continuously extended backwards, first until 1979 and then to 1950. Learn more about ERA5 in Jon Olauson's paper [ERA5: The new champion of wind power modelling?](https://www.researchgate.net/publication/320084119_ERA5_The_new_champion_of_wind_power_modelling).\n\nDocumentation: https://github.com/planet-os/notebooks/blob/master/aws/era5-pds.md\nContact: datahub@intertrust.com\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_era5_pds/index.json", "https://registry.opendata.aws/ecmwf-era5/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_era5_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_era5_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_era5_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_coco/", "public", "File Names from the AWS S3 fast-ai-coco Bucket: COCO - Common Objects in Context - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-coco bucket at https://fast-ai-coco.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: COCO - Common Objects in Context - fast.ai datasets\nName2: Datasets\nDescription: COCO is a large-scale object detection, segmentation, and captioning dataset. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. If you use this dataset in your research please cite arXiv:1405.0312 [cs.CV].\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_coco/index.json", "https://registry.opendata.aws/fast-ai-coco/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_coco.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_coco&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_coco"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imageclas/", "public", "File Names from the AWS S3 fast-ai-imageclas Bucket: Image classification - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imageclas bucket at https://fast-ai-imageclas.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image classification - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image classification research, including CIFAR 10 and 100, Caltech 101, MNIST, Food-101, Oxford-102-Flowers, Oxford-IIIT-Pets, and Stanford-Cars. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imageclas/index.json", "https://registry.opendata.aws/fast-ai-imageclas/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imageclas.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imageclas&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imageclas"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imagelocal/", "public", "File Names from the AWS S3 fast-ai-imagelocal Bucket: Image localization - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imagelocal bucket at https://fast-ai-imagelocal.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image localization - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image localization research, including Camvid and PASCAL VOC (2007 and 2012). This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imagelocal/index.json", "https://registry.opendata.aws/fast-ai-imagelocal/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imagelocal.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imagelocal&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imagelocal"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_nlp/", "public", "File Names from the AWS S3 fast-ai-nlp Bucket: NLP - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-nlp bucket at https://fast-ai-nlp.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NLP - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for NLP, with a focus on classification, including IMDb, AG-News, Amazon Reviews (polarity and full), Yelp Reviews (polarity and full), Dbpedia, Sogou News (Pinyin), Yahoo Answers, Wikitext 2 and Wikitext 103, and ACL-2010 French-English 10^9 corpus. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_nlp/index.json", "https://registry.opendata.aws/fast-ai-nlp/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_nlp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_nlp&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_nlp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib Bucket: HIRLAM Weather Model: Pressure GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib bucket at https://fmi-opendata-rcrhirlam-pressure-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Pressure GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_pressure_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_pressure_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-surface-grib Bucket: HIRLAM Weather Model: Surface GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-surface-grib bucket at https://fmi-opendata-rcrhirlam-surface-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Surface GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_surface_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_surface_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gatk_test_data/", "public", "File Names from the AWS S3 gatk-test-data Bucket: GATK Test Data: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.", "This dataset has file information from the AWS S3 gatk-test-data bucket at https://gatk-test-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GATK Test Data\nName2: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.\nDescription: The GATK test data resource bundle is a collection of files for resequencing human genomic data with the Broad Institute's [Genome Analysis Toolkit (GATK)](https://software.broadinstitute.org/gatk/).\n\nDocumentation: https://s3.amazonaws.com/gatk-test-data/gatk-test-data-readme.html\nContact: https://gatkforums.broadinstitute.org/gatk\nManagedBy: Broad Institute\nUpdateFrequency: Every 3 months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gatk_test_data/index.json", "https://registry.opendata.aws/gatk-test-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gatk_test_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gatk_test_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gatk_test_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gdelt_open_data/", "public", "File Names from the AWS S3 gdelt-open-data Bucket: Global Database of Events, Language and Tone (GDELT): Project data files", "This dataset has file information from the AWS S3 gdelt-open-data bucket at https://gdelt-open-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Database of Events, Language and Tone (GDELT)\nName2: Project data files\nDescription: This project monitors the world's broadcast, print, and web news from nearly every corner of every country in over 100 languages and identifies the people, locations, organizations, counts, themes, sources, emotions, quotes, images and events driving our global society every second of every day.\n\nDocumentation: http://www.gdeltproject.org/\nContact: http://www.gdeltproject.org/about.html#contact\nUpdateFrequency: Not currently being updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gdelt_open_data/index.json", "https://registry.opendata.aws/gdelt/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gdelt_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gdelt_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gdelt_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_genomeark/", "public", "File Names from the AWS S3 genomeark Bucket: Genome Ark", "This dataset has file information from the AWS S3 genomeark bucket at https://genomeark.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome Ark\nName2: https://vgp.github.io\nDescription: The Genome Ark hosts genomic information for the Vertebrate Genomes Project (VGP) and other related projects. The VGP is an international collaboration that aims to generate complete and near error-free reference genomes for all extant vertebrate species. These genomes will be used to address fundamental questions in biology and disease, to identify species most genetically at risk for extinction, and to preserve genetic information of life.\n\nDocumentation: https://vertebrategenomesproject.org\nContact: Erich Jarvis \nManagedBy: The Genome10K community of scientists\nUpdateFrequency: Data will be continually updated as it is generated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_genomeark/index.json", "https://registry.opendata.aws/genomeark/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_genomeark.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_genomeark&showErrors=false&email=", "Amazon Web Services", "awsS3Files_genomeark"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_giab/", "public", "File Names from the AWS S3 giab Bucket: Genome in a Bottle on AWS: Latest data", "This dataset has file information from the AWS S3 giab bucket at https://giab.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome in a Bottle on AWS\nName2: Latest data\nDescription: Several reference genomes to enable translation of whole human genome sequencing to clinical practice.\n\nDocumentation: https://docs.opendata.aws/giab/readme.html\nContact: http://genomeinabottle.org/\nUpdateFrequency: New data are added as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_giab/index.json", "https://registry.opendata.aws/giab/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_giab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_giab&showErrors=false&email=", "Amazon Web Services", "awsS3Files_giab"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gmsdata/", "public", "File Names from the AWS S3 gmsdata Bucket: The Genome Modeling System", "This dataset has file information from the AWS S3 gmsdata bucket at https://gmsdata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Genome Modeling System\nName2: https://gmsdata.s3.amazonaws.com/INDEX.html\nDescription: The Genome Institute at Washington University has developed a high-throughput, fault-tolerant analysis information management system called the Genome Modeling System (GMS), capable of executing complex, interdependent, and automated genome analysis pipelines at a massive scale. The GMS framework provides detailed tracking of samples and data coupled with reliable and repeatable analysis pipelines. GMS includes a full system image with software and services, expandable from one workstation to a large compute cluster.\n\nDocumentation: https://github.com/genome/gms/wiki\nContact: https://github.com/genome/gms/issues\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gmsdata/index.json", "https://registry.opendata.aws/gmsdata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gmsdata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gmsdata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gmsdata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_grillo_openeew/", "public", "File Names from the AWS S3 grillo-openeew Bucket: OpenEEW: OpenEEW", "This dataset has file information from the AWS S3 grillo-openeew bucket at https://grillo-openeew.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenEEW\nName2: OpenEEW\nDescription: Grillo has developed an IoT-based earthquake early-warning system in Mexico and Chile and is now opening its entire archive of unprocessed accelerometer data to the world to encourage the development of new algorithms capable of rapidly detecting and characterizing earthquakes in real time.\n\nDocumentation: https://github.com/grillo/openeew\nContact: openeew@grillo.io\nManagedBy: [Grillo](https://grillo.io/)\nUpdateFrequency: Approximately every 10 minutes\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_grillo_openeew/index.json", "https://registry.opendata.aws/grillo-openeew/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_grillo_openeew.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_grillo_openeew&showErrors=false&email=", "Amazon Web Services", "awsS3Files_grillo_openeew"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_microbiome_project/", "public", "File Names from the AWS S3 human-microbiome-project Bucket: The Human Microbiome Project", "This dataset has file information from the AWS S3 human-microbiome-project bucket at https://human-microbiome-project.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Human Microbiome Project\nName2: https://aws.amazon.com/datasets/human-microbiome-project/\nDescription: The NIH-funded Human Microbiome Project (HMP) is a collaborative effort of over 300 scientists from more than 80 organizations to comprehensively characterize the microbial communities inhabiting the human body and elucidate their role in human health and disease. To accomplish this task, microbial community samples were isolated from a cohort of 300 healthy adult human subjects at 18 specific sites within five regions of the body (oral cavity, airways, urogenital track, skin, and gut). Targeted sequencing of the 16S bacterial marker gene and/or whole metagenome shotgun sequencing was performed for thousands of these samples. In addition, whole genome sequences were generated for isolate strains collected from human body sites to act as reference organisms for analysis. Finally, 16S marker and whole metagenome sequencing was also done on additional samples from people suffering from several disease conditions.\n\nDocumentation: https://commonfund.nih.gov/hmp\nContact: https://commonfund.nih.gov/hmp/related_activities\nUpdateFrequency: Uncertain\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_microbiome_project/index.json", "https://registry.opendata.aws/human-microbiome-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_microbiome_project.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_microbiome_project&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_microbiome_project"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_pangenomics/", "public", "File Names from the AWS S3 human-pangenomics Bucket: Human PanGenomics Project: Human PanGenomics Project", "This dataset has file information from the AWS S3 human-pangenomics bucket at https://human-pangenomics.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Human PanGenomics Project\nName2: Human PanGenomics Project\nDescription: This dataset includes sequencing data, assemblies, and analyses for the offspring of ten parent-offspring trios.\n\nDocumentation: https://github.com/human-pangenomics/hpgp-data\nContact: https://github.com/human-pangenomics/hpgp-data/issues\nUpdateFrequency: Data will be added and updated as technologies improve or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_pangenomics/index.json", "https://registry.opendata.aws/hpgp-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_pangenomics.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_pangenomics&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_pangenomics"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/", "public", "File Names from the AWS S3 ichangemycity-janaagraha-complaints-data-aws Bucket: IChangeMyCity Complaints Data from Janaagraha: IChangeMyCity Complaints", "This dataset has file information from the AWS S3 ichangemycity-janaagraha-complaints-data-aws bucket at https://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IChangeMyCity Complaints Data from Janaagraha\nName2: IChangeMyCity Complaints\nDescription: The [IChangeMyCity](https://www.ichangemycity.com) project provides insight into the complaints raised by citizens from diffent cities of India related to the issues in their neighbourhoods and the resolution of the same by the civic bodies.\n\nDocumentation: http://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/readme.html\nContact: data@janaagraha.org\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/index.json", "https://registry.opendata.aws/ichangemycity/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ichangemycity_janaagraha_complaints_data_aws&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ichangemycity_janaagraha_complaints_data_aws"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_irs_990_spreadsheets/", "public", "File Names from the AWS S3 irs-990-spreadsheets Bucket: IRS 990 Filings (Spreadsheets): Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form", "This dataset has file information from the AWS S3 irs-990-spreadsheets bucket at https://irs-990-spreadsheets.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IRS 990 Filings (Spreadsheets)\nName2: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form\nDescription: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form. Additional fields being added regularly.\n\nDocumentation: https://appliednonprofitresearch.com/documentation/irs-990-spreadsheets\nContact: [info@appliednonprofitresearch.com](info@appliednonprofitresearch.com)\nManagedBy: [Applied Nonprofit Research, LLC](https://www.appliednonprofitresearch.com/)\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_irs_990_spreadsheets/index.json", "https://registry.opendata.aws/990-spreadsheets/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_irs_990_spreadsheets.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_irs_990_spreadsheets&showErrors=false&email=", "Amazon Web Services", "awsS3Files_irs_990_spreadsheets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lab41openaudiocorpus/", "public", "File Names from the AWS S3 lab41openaudiocorpus Bucket: Voices Obscured in Complex Environmental Settings (VOiCES): wav audio files, orthographic transcriptions, and speaker ID", "This dataset has file information from the AWS S3 lab41openaudiocorpus bucket at https://lab41openaudiocorpus.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Voices Obscured in Complex Environmental Settings (VOiCES)\nName2: wav audio files, orthographic transcriptions, and speaker ID\nDescription: VOiCES is a speech corpus recorded in acoustically challenging settings, using distant microphone recording. Speech was recorded in real rooms with various acoustic features (reverb, echo, HVAC systems, outside noise, etc.). Adversarial noise, either television, music, or babble, was concurrently played with clean speech. Data was recorded using multiple microphones strategically placed throughout the room. The corpus includes audio recordings, orthographic transcriptions, and speaker labels.\n\nDocumentation: https://voices18.github.io/\nContact: https://github.com/voices18/utilities/issues\nUpdateFrequency: Data from two additional rooms will be added to the corpus Fall 2018.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lab41openaudiocorpus/index.json", "https://registry.opendata.aws/lab41-sri-voices/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lab41openaudiocorpus.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lab41openaudiocorpus&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lab41openaudiocorpus"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds/", "public", "File Names from the AWS S3 landsat-pds Bucket: Landsat 8: Scenes and metadata", "This dataset has file information from the AWS S3 landsat-pds bucket at https://landsat-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: Scenes and metadata\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds_inventory/", "public", "File Names from the AWS S3 landsat-pds-inventory Bucket: Landsat 8: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)", "This dataset has file information from the AWS S3 landsat-pds-inventory bucket at https://landsat-pds-inventory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds_inventory/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds_inventory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds_inventory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds_inventory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lofar_elais_n1/", "public", "File Names from the AWS S3 lofar-elais-n1 Bucket: LOFAR ELAIS-N1 cycle 2 observations on AWS: LOFAR ELAIS-N1 cycle 2 observations", "This dataset has file information from the AWS S3 lofar-elais-n1 bucket at https://lofar-elais-n1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: LOFAR ELAIS-N1 cycle 2 observations on AWS\nName2: LOFAR ELAIS-N1 cycle 2 observations\nDescription: These data correspond to the [International LOFAR Telescope](http://www.lofar.org/) observations of the sky field ELAIS-N1 (16:10:01 +54:30:36) during the cycle 2 of observations. There are 11 runs of about 8 hours each plus the corresponding observation of the calibration targets before and after the target field. The data are measurement sets ([MS](https://casa.nrao.edu/Memos/229.html)) containing the cross-correlated data and metadata divided in 371 frequency sub-bands per target centred at ~150 MHz.\n\nDocumentation: https://www.lofarcloud.uk/data.html\nContact: https://www.lofarcloud.uk/\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lofar_elais_n1/index.json", "https://registry.opendata.aws/lofar-elais-n1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lofar_elais_n1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lofar_elais_n1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lofar_elais_n1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mf_nwp_models/", "public", "File Names from the AWS S3 mf-nwp-models Bucket: Atmospheric Models from M\u00e9t\u00e9o-France: Atmospheric Models from M\u00e9t\u00e9o-France", "This dataset has file information from the AWS S3 mf-nwp-models bucket at https://mf-nwp-models.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Atmospheric Models from M\u00e9t\u00e9o-France\nName2: Atmospheric Models from M\u00e9t\u00e9o-France\nDescription: Global and high-resolution regional atmospheric models from M\u00e9t\u00e9o-France.\n\nDocumentation: https://mf-models-on-aws.org\nContact: contact@openmeteodata.com\nManagedBy: [OpenMeteoData](https://openmeteodata.com)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mf_nwp_models/index.json", "https://registry.opendata.aws/meteo-france-models/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mf_nwp_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mf_nwp_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mf_nwp_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_modis_pds/", "public", "File Names from the AWS S3 modis-pds Bucket: MODIS on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 modis-pds bucket at https://modis-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: MODIS on AWS\nName2: Imagery and metadata\nDescription: Select products from the Moderate Resolution Imaging Spectroradiometer (MODIS) managed by the U.S. Geological Survey and NASA.\n\nDocumentation: https://docs.opendata.aws/modis-pds/readme.html\nContact: https://github.com/AstroDigital/modis-ingestor/issues\nUpdateFrequency: New MODIS data is added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_modis_pds/index.json", "https://registry.opendata.aws/modis/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_modis_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_modis_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_modis_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_multimedia_commons/", "public", "File Names from the AWS S3 multimedia-commons Bucket: Multimedia Commons: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.", "This dataset has file information from the AWS S3 multimedia-commons bucket at https://multimedia-commons.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Multimedia Commons\nName2: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.\nDescription: The Multimedia Commons is a collection of audio and visual features computed for the nearly 100 million Creative Commons-licensed Flickr images and videos in the YFCC100M dataset from Yahoo! Labs, along with ground-truth annotations for selected subsets. The International Computer Science Institute (ICSI) and Lawrence Livermore National Laboratory are producing and distributing a core set of derived feature sets and annotations as part of an effort to enable large-scale video search capabilities. They have released this feature corpus into the public domain, under Creative Commons License 0, so it is free for anyone to use for any purpose.\n\nDocumentation: https://multimediacommons.wordpress.com/yfcc100m-core-dataset/\nContact: multimedia-commons@icsi.berkeley.edu\nUpdateFrequency: Not updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_multimedia_commons/index.json", "https://registry.opendata.aws/multimedia-commons/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_multimedia_commons.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_multimedia_commons&showErrors=false&email=", "Amazon Web Services", "awsS3Files_multimedia_commons"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mwapublic/", "public", "File Names from the AWS S3 mwapublic Bucket: Epoch of Reionization Dataset: Selected MWA EoR data (uvfits format) from 2013-2015", "This dataset has file information from the AWS S3 mwapublic bucket at https://mwapublic.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Epoch of Reionization Dataset\nName2: Selected MWA EoR data (uvfits format) from 2013-2015\nDescription: The data are from observations with the Murchison Widefield Array (MWA) which is a Square Kilometer Array (SKA) precursor in Western Australia. This particular dataset is from the Epoch of Reionization project which is a key science driver of the SKA. Nearly 2PB of such observations have been recorded to date, this is a small subset of that which has been exported from the MWA data archive in Perth and made available to the public on AWS. The data were taken to detect signatures of the first stars and galaxies forming and the effect of these early stars and galaxies on the evolution of the universe.\n\nDocumentation: http://danielcjacobs.com/research/epoch-of-reionization-aws-public-dataset/\nContact: brynah (at) phys.washington.edu\nManagedBy: University of washington Radio Cosmology Group\nUpdateFrequency: Irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mwapublic/index.json", "https://registry.opendata.aws/epoch-of-reionization/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mwapublic.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mwapublic&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mwapublic"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nanopore_human_wgs/", "public", "File Names from the AWS S3 nanopore-human-wgs Bucket: Nanopore Reference Human Genome: Nanopore Reference Human Genome", "This dataset has file information from the AWS S3 nanopore-human-wgs bucket at https://nanopore-human-wgs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Nanopore Reference Human Genome\nName2: Nanopore Reference Human Genome\nDescription: This dataset includes the sequencing and assembly of a reference standard human genome (GM12878) using the MinION nanopore sequencing instrument with the R9.4 1D chemistry.\n\nDocumentation: https://github.com/nanopore-wgs-consortium/NA12878\nContact: https://github.com/nanopore-wgs-consortium/NA12878/issues\nUpdateFrequency: Data will be added as methodology improves or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nanopore_human_wgs/index.json", "https://registry.opendata.aws/nanopore/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nanopore_human_wgs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nanopore_human_wgs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nanopore_human_wgs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_Landsat/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=Landsat/: NASA NEX: Landsat GLS (Global Land Survey)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=Landsat/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Landsat GLS (Global Land Survey)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_Landsat/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_Landsat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_Landsat&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_Landsat"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_LOCA/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=LOCA/: NASA NEX: Localized Constructed Analogs (LOCA)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=LOCA/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Localized Constructed Analogs (LOCA)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_LOCA/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_LOCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_LOCA&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_LOCA"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_MODIS/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=MODIS/: NASA NEX: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=MODIS/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_MODIS/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_MODIS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_MODIS&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_MODIS"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_DCP30/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-DCP30/: NASA NEX: Downscaled Climate Projections (NEX-DCP30)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-DCP30/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Downscaled Climate Projections (NEX-DCP30)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_DCP30/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_DCP30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_DCP30&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_DCP30"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_GDDP/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-GDDP/: NASA NEX: Global Daily Downscaled Projections (NEX-GDDP)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-GDDP/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Global Daily Downscaled Projections (NEX-GDDP)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_GDDP/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_GDDP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_GDDP&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_GDDP"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gefs_pds/", "public", "File Names from the AWS S3 noaa-gefs-pds Bucket: NOAA Global Ensemble Forecast System (GEFS): Project data files", "This dataset has file information from the AWS S3 noaa-gefs-pds bucket at https://noaa-gefs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Ensemble Forecast System (GEFS)\nName2: Project data files\nDescription: The Global Ensemble Forecast System (GEFS), previously known as the GFS Global ENSemble (GENS), is a weather forecast model made up of 21 separate forecasts, or ensemble members. The National Centers for Environmental Prediction (NCEP) started the GEFS to address the nature of uncertainty in weather observations, which is used to initialize weather forecast models. The GEFS attempts to quantify the amount of uncertainty in a forecast by generating an ensemble of multiple forecasts, each minutely different, or perturbed, from the original observations. With global coverage, GEFS is produced four times a day with weather forecasts going out to 16 days.\n\nDocumentation: https://docs.opendata.aws/noaa-gefs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GEFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GEFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gefs_pds/index.json", "https://registry.opendata.aws/noaa-gefs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gefs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gefs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gefs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_bdp_pds/", "public", "File Names from the AWS S3 noaa-gfs-bdp-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 GFS data", "This dataset has file information from the AWS S3 noaa-gfs-bdp-pds bucket at https://noaa-gfs-bdp-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_bdp_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_bdp_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_bdp_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_bdp_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_pds/", "public", "File Names from the AWS S3 noaa-gfs-pds Bucket: Unidata NOAA Global Forecast System (GFS) Model: A rolling four-week archive of 0.25 degree GFS data", "This dataset has file information from the AWS S3 noaa-gfs-pds bucket at https://noaa-gfs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Unidata NOAA Global Forecast System (GFS) Model\nName2: A rolling four-week archive of 0.25 degree GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks.\n\nDocumentation: https://docs.opendata.aws/noaa-gfs-pds/readme.html\nContact: https://www.ncdc.noaa.gov/contact\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_pds/index.json", "https://registry.opendata.aws/noaa-gfs-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfspara_pds/", "public", "File Names from the AWS S3 noaa-gfspara-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 FV3-based parallel version of the GFS", "This dataset has file information from the AWS S3 noaa-gfspara-pds bucket at https://noaa-gfspara-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 FV3-based parallel version of the GFS\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfspara_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfspara_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfspara_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfspara_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghcn_pds/", "public", "File Names from the AWS S3 noaa-ghcn-pds Bucket: NOAA Global Historical Climatology Network Daily (GHCN-D): Project data files", "This dataset has file information from the AWS S3 noaa-ghcn-pds bucket at https://noaa-ghcn-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Daily (GHCN-D)\nName2: Project data files\nDescription: Global Historical Climatology Network - Daily is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://docs.opendata.aws/noaa-ghcn-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncdc.noaa.gov/ghcn-daily-description). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghcn_pds/index.json", "https://registry.opendata.aws/noaa-ghcn/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghcn_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghcn_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghcn_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghe_pds/", "public", "File Names from the AWS S3 noaa-ghe-pds Bucket: NOAA Global Hydro Estimator (GHE): Project data files", "This dataset has file information from the AWS S3 noaa-ghe-pds bucket at https://noaa-ghe-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Hydro Estimator (GHE)\nName2: Project data files\nDescription: Global Hydro-Estimator provides a global mosaic imagery of rainfall estimates from multi-geostationary satellites, which currently includes GOES-16, GOES-15, Meteosat-8, Meteosat-11 and Himawari-8. The GHE products include: Instantaneous rain rate, 1 hour, 3 hour, 6 hour, 24 hour and also multi-day rainfall accumulation.\n\nDocumentation: https://www.ospo.noaa.gov/Products/atmosphere/ghe/index.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 15 minute-instantaneous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghe_pds/index.json", "https://registry.opendata.aws/noaa-ghe/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghe_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghe_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghe_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_global_hourly_pds/", "public", "File Names from the AWS S3 noaa-global-hourly-pds Bucket: NOAA Global Historical Climatology Network Hourly (GHCN-H): Project data files", "This dataset has file information from the AWS S3 noaa-global-hourly-pds bucket at https://noaa-global-hourly-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Hourly (GHCN-H)\nName2: Project data files\nDescription: Global Historical Climatology Network - Hourly is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: daily (Manually)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_global_hourly_pds/index.json", "https://registry.opendata.aws/noaa-ghcnh/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_global_hourly_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_global_hourly_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_global_hourly_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3NoaaGoes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nUse ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browser the files in buckets. This dataset is a solution to that problem for this bucket.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3NoaaGoes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3NoaaGoes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3NoaaGoes16&showErrors=false&email=", "NOAA", "awsS3NoaaGoes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket: GOES on AWS: GOES-16 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-16 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes16&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes17/", "public", "File Names from the AWS S3 noaa-goes17 Bucket: GOES on AWS: GOES-17 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes17 bucket at https://noaa-goes17.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-17 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes17/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes17&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes17"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_hrrr_pds/", "public", "File Names from the AWS S3 noaa-hrrr-pds Bucket: NOAA High-Resolution Rapid Refresh (HRRR) Model: A rolling one-week archive of HRRR data.", "This dataset has file information from the AWS S3 noaa-hrrr-pds bucket at https://noaa-hrrr-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA High-Resolution Rapid Refresh (HRRR) Model\nName2: A rolling one-week archive of HRRR data.\nDescription: The HRRR is a NOAA real-time 3-km resolution, hourly updated, cloud-resolving, convection-allowing atmospheric model, initialized by 3km grids with 3km radar assimilation. Radar data is assimilated in the HRRR every 15 min over a 1-h period adding further detail to that provided by the hourly data assimilation from the 13km radar-enhanced Rapid Refresh.\n\nDocumentation: https://docs.opendata.aws/noaa-hrrr-pds/readme.html\nContact: https://rapidrefresh.noaa.gov/hrrr/\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_hrrr_pds/index.json", "https://registry.opendata.aws/noaa-hrrr-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_hrrr_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_hrrr_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_hrrr_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_isd_pds/", "public", "File Names from the AWS S3 noaa-isd-pds Bucket: NOAA Integrated Surface Database (ISD): Project data files", "This dataset has file information from the AWS S3 noaa-isd-pds bucket at https://noaa-isd-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Integrated Surface Database (ISD)\nName2: Project data files\nDescription: The Integrated Surface Database (ISD) consists of global hourly and synoptic observations compiled from numerous sources into a gzipped fixed width format. ISD was developed as a joint activity within Asheville's Federal Climate Complex. The database includes over 35,000 stations worldwide, with some having data as far back as 1901, though the data show a substantial increase in volume in the 1940s and again in the early 1970s. Currently, there are over 14,000 \"active\" stations updated daily in the database. The total uncompressed data volume is around 600 gigabytes; however, it continues to grow as more data are added. ISD includes numerous parameters such as wind speed and direction, wind gust, temperature, dew point, cloud data, sea level pressure, altimeter setting, station pressure, present weather, visibility, precipitation amounts for various time periods, snow depth, and various other elements as observed by each station.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_isd_pds/index.json", "https://registry.opendata.aws/noaa-isd/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_isd_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_isd_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_isd_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nexrad_level2/", "public", "File Names from the AWS S3 noaa-nexrad-level2 Bucket: NEXRAD on AWS: NEXRAD Level II archive data", "This dataset has file information from the AWS S3 noaa-nexrad-level2 bucket at https://noaa-nexrad-level2.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II archive data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nexrad_level2/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nexrad_level2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nexrad_level2&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nexrad_level2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_pds/", "public", "File Names from the AWS S3 noaa-nwm-pds Bucket: NOAA National Water Model Short-Range Forecast: A rolling four week archive of NWM data.", "This dataset has file information from the AWS S3 noaa-nwm-pds bucket at https://noaa-nwm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Short-Range Forecast\nName2: A rolling four week archive of NWM data.\nDescription: The National Water Model (NWM) is a water resources model that simulates and forecasts water budget variables, including snowpack, evapotranspiration, soil moisture and streamflow, over the entire continental United States (CONUS). The model, launched in August 2016, is designed to improve the ability of NOAA to meet the needs of its stakeholders (forecasters, emergency managers, reservoir operators, first responders, recreationists, farmers, barge operators, and ecosystem and floodplain managers) by providing expanded accuracy, detail, and frequency of water information. It is operated by NOAA\u2019s Office of Water Prediction. This bucket contains a four-week rollover of the Short Range Forecast model output and the corresponding forcing data for the model. The model is forced with meteorological data from the High Resolution Rapid Refresh (HRRR) and the Rapid Refresh (RAP) models. The Short Range Forecast configuration cycles hourly and produces hourly deterministic forecasts of streamflow and hydrologic states out to 18 hours.\n\nDocumentation: https://docs.opendata.aws/noaa-nwm-pds/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_pds/index.json", "https://registry.opendata.aws/noaa-nwm-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_retro_v2_0_pds/", "public", "File Names from the AWS S3 noaa-nwm-retro-v2.0-pds Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 2.0.", "This dataset has file information from the AWS S3 noaa-nwm-retro-v2.0-pds bucket at https://noaa-nwm-retro-v2.0-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 2.0.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\n... (4 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_retro_v2_0_pds/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_retro_v2_0_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_retro_v2_0_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_retro_v2_0_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ofs_pds/", "public", "File Names from the AWS S3 noaa-ofs-pds Bucket: NOAA Operational Forecast System (OFS): Project data files", "This dataset has file information from the AWS S3 noaa-ofs-pds bucket at https://noaa-ofs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Operational Forecast System (OFS)\nName2: Project data files\nDescription: The Operational Forecast System (OFS) has been developed to serve the maritime user community. OFS was developed in a joint project of the NOAA/National Ocean Service (NOS)/Office of Coast Survey, the NOAA/NOS/Center for Operational Oceanographic Products and Services (CO-OPS), and the NOAA/National Weather Service (NWS)/National Centers for Environmental Prediction (NCEP) Central Operations (NCO). OFS generates water level, water current, water temperature, water salinity (except for the Great Lakes) and wind conditions nowcast and forecast guidance four times per day.\n\nDocumentation: https://docs.opendata.aws/noaa-ofs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA OFS site](https://tidesandcurrents.noaa.gov/models.html). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight and generates 6-hour nowcasts and 48-hour forecast guidance\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ofs_pds/index.json", "https://registry.opendata.aws/noaa-ofs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ofs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ofs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ofs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/", "public", "File Names from the AWS S3 nrel-pds-wtk Bucket with prefix=wtk-techno-economic/pywtk-data/: NREL Wind Integration National Dataset on AWS: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format", "This dataset has file information from the AWS S3 nrel-pds-wtk bucket at https://nrel-pds-wtk.s3.us-west-2.amazonaws.com/ with prefix=wtk-techno-economic/pywtk-data/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NREL Wind Integration National Dataset on AWS\nName2: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format\nDescription: The [Wind Integration National Dataset (WIND)](https://www.nrel.gov/grid/wind-toolkit.html) is an update and expansion of the Eastern Wind Integration Data Set and Western Wind Integration Data Set. It supports the next generation of wind integration studies.\n\nDocumentation: https://www.nrel.gov/grid/wind-toolkit.html\nContact: wind-toolkit@nrel.gov\nManagedBy: [National Renewable Energy Laboratory](https://www.nrel.gov/)\nUpdateFrequency: As Needed\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/index.json", "https://registry.opendata.aws/nrel-pds-wtk/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nwm_archive/", "public", "File Names from the AWS S3 nwm-archive Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 1.2.", "This dataset has file information from the AWS S3 nwm-archive bucket at https://nwm-archive.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 1.2.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nwm_archive/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nwm_archive.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nwm_archive&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nwm_archive"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nyc_tlc/", "public", "File Names from the AWS S3 nyc-tlc Bucket: New York City Taxi and Limousine Commission (TLC) Trip Record Data: CSV files containing NYC TLC trip data.", "This dataset has file information from the AWS S3 nyc-tlc bucket at https://nyc-tlc.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: New York City Taxi and Limousine Commission (TLC) Trip Record Data\nName2: CSV files containing NYC TLC trip data.\nDescription: Data of trips taken by taxis and for-hire vehicles in New York City.\n\nDocumentation: http://www.nyc.gov/html/tlc/html/about/trip_record_data.shtml\nContact: research@tlc.nyc.gov\nUpdateFrequency: As soon as new data is available to be shared publicly.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nyc_tlc/index.json", "https://registry.opendata.aws/nyc-tlc-trip-records-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nyc_tlc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nyc_tlc&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nyc_tlc"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_oicr_icgc_meta_metadata/", "public", "File Names from the AWS S3 oicr.icgc.meta Bucket with prefix=metadata/: ICGC on AWS: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README", "This dataset has file information from the AWS S3 oicr.icgc.meta bucket at https://oicr.icgc.meta.s3.us-east-1.amazonaws.com/ with prefix=metadata/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ICGC on AWS\nName2: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README\nDescription: The International Cancer Genome Consortium (ICGC) coordinates projects with the common aim of accelerating research into the causes and control of cancer. The PanCancer Analysis of Whole Genomes (PCAWG) study is an international collaboration to identify common patterns of mutation in whole genomes from ICGC. More than 2,400 consistently analyzed genomes corresponding to over 1,100 unique ICGC donors are now freely available on Amazon S3 to credentialed researchers subject to ICGC data sharing policies.\n\nDocumentation: https://dcc.icgc.org/icgc-in-the-cloud/aws\nContact: dcc-support@icgc.org\nUpdateFrequency: New data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_oicr_icgc_meta_metadata/index.json", "https://registry.opendata.aws/icgc/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_oicr_icgc_meta_metadata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_oicr_icgc_meta_metadata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_oicr_icgc_meta_metadata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ooni_data/", "public", "File Names from the AWS S3 ooni-data Bucket: Open Observatory of Network Interference: S3 bucket with data", "This dataset has file information from the AWS S3 ooni-data bucket at https://ooni-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open Observatory of Network Interference\nName2: S3 bucket with data\nDescription: A free software, global observation network for detecting censorship, surveillance and traffic manipulation on the internet.\n\nDocumentation: https://ooni.torproject.org/about/\nContact: https://ooni.torproject.org/get-involved/\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ooni_data/index.json", "https://registry.opendata.aws/ooni/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ooni_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ooni_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ooni_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openaq_fetches/", "public", "File Names from the AWS S3 openaq-fetches Bucket: OpenAQ: Minutely CSVs of global air quality fetched from sources all over the world", "This dataset has file information from the AWS S3 openaq-fetches bucket at https://openaq-fetches.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenAQ\nName2: Minutely CSVs of global air quality fetched from sources all over the world\nDescription: Global, aggregated physical air quality data from public data sources provided by government, research-grade and other sources. These awesome groups do the hard work of measuring these data and publicly sharing them, and our community makes them more universally-accessible to both humans and machines.\n\nDocumentation: https://openaq.org\nContact: info@openaq.org\nManagedBy: [OpenAQ](https://openaq.org)\nUpdateFrequency: Minutely\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openaq_fetches/index.json", "https://registry.opendata.aws/openaq/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openaq_fetches.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openaq_fetches&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openaq_fetches"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_opencitymodel/", "public", "File Names from the AWS S3 opencitymodel Bucket: Open City Model (OCM): Project data files", "This dataset has file information from the AWS S3 opencitymodel bucket at https://opencitymodel.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open City Model (OCM)\nName2: Project data files\nDescription: Open City Model is an initiative to provide cityGML data for all the buildings in the United States. By using other open datasets in conjunction with our own code and algorithms it is our goal to provide 3D geometries for every US building.\n\nDocumentation: https://github.com/opencitymodel/opencitymodel\nContact: https://github.com/opencitymodel/opencitymodel#contact\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_opencitymodel/index.json", "https://registry.opendata.aws/opencitymodel/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_opencitymodel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_opencitymodel&showErrors=false&email=", "Amazon Web Services", "awsS3Files_opencitymodel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openneuro_org/", "public", "File Names from the AWS S3 openneuro.org Bucket: OpenNeuro: All datasets", "This dataset has file information from the AWS S3 openneuro.org bucket at https://openneuro.org.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenNeuro\nName2: All datasets\nDescription: OpenNeuro is a database of openly-available brain imaging data. The data are shared according to a Creative Commons CC0 license, providing a broad range of brain imaging data to researchers and citizen scientists alike. The database primarily focuses on functional magnetic resonance imaging (fMRI) data, but also includes other imaging modalities including structural and diffusion MRI, electroencephalography (EEG), and magnetoencephalograpy (MEG). OpenfMRI is a project of the [Center for Reproducible Neuroscience at Stanford University](http://reproducibility.stanford.edu). Development of the OpenNeuro resource has been funded by the National Science Foundation, National Institute of Mental Health, National Institute on Drug Abuse, and the Laura and John Arnold Foundation.\n\nDocumentation: http://openneuro.org\nContact: Support form at https://openneuro.org\nUpdateFrequency: New datasets deposited every 4-6 days\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openneuro_org/index.json", "https://registry.opendata.aws/openneuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openneuro_org.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openneuro_org&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openneuro_org"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osm_pds/", "public", "File Names from the AWS S3 osm-pds Bucket: OpenStreetMap on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 osm-pds bucket at https://osm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap on AWS\nName2: Imagery and metadata\nDescription: OSM is a free, editable map of the world, created and maintained by volunteers. Regular OSM data archives are made available in Amazon S3.\n\nDocumentation: https://docs.opendata.aws/osm-pds/readme.html\nContact: https://github.com/mojodna/osm-pds-pipelines/issues\nUpdateFrequency: Data is updated weekly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osm_pds/index.json", "https://registry.opendata.aws/osm/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osmlr/", "public", "File Names from the AWS S3 osmlr Bucket: OpenStreetMap Linear Referencing: Manifest and data files", "This dataset has file information from the AWS S3 osmlr bucket at https://osmlr.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap Linear Referencing\nName2: Manifest and data files\nDescription: OSMLR a linear referencing system built on top of OpenStreetMap. OSM has great information about roads around the world and their interconnections, but it lacks the means to give a stable identifier to a stretch of roadway. OSMLR provides a stable set of numerical IDs for every 1 kilometer stretch of roadway around the world. In urban areas, OSMLR IDs are attached to each block of roadways between significant intersections.\n\nDocumentation: https://github.com/opentraffic/osmlr/blob/master/docs/intro.md\nContact: https://github.com/opentraffic/osmlr/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osmlr/index.json", "https://registry.opendata.aws/osmlr/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osmlr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osmlr&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osmlr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_qiime2_data/", "public", "File Names from the AWS S3 qiime2-data Bucket: QIIME 2 User Tutorial Datasets: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs", "This dataset has file information from the AWS S3 qiime2-data bucket at https://qiime2-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: QIIME 2 User Tutorial Datasets\nName2: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs\nDescription: QIIME 2 is a powerful, extensible, and decentralized microbiome analysis package with a focus on data and analysis transparency. QIIME 2 enables researchers to start an analysis with raw DNA sequence data and finish with publication-quality figures and statistical results. This dataset contains the user docs (and related datasets) for QIIME 2.\n\nDocumentation: https://docs.qiime2.org\nContact: https://forum.qiime2.org\nManagedBy: The QIIME 2 Development Team\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_qiime2_data/index.json", "https://registry.opendata.aws/qiime2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_qiime2_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_qiime2_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_qiime2_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_safecast_opendata_public_us_east_1/", "public", "File Names from the AWS S3 safecast-opendata-public-us-east-1 Bucket: Safecast: Bulk exports of air and radiation measurements", "This dataset has file information from the AWS S3 safecast-opendata-public-us-east-1 bucket at https://safecast-opendata-public-us-east-1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Safecast\nName2: Bulk exports of air and radiation measurements\nDescription: An ongoing collection of radiation and air quality measurements taken by devices involved in the Safecast project.\n\nDocumentation: https://github.com/Safecast/safecastapi/wiki/Data-Sets\nContact: https://groups.google.com/forum/#!forum/safecast-devices\nManagedBy: [Safecast](https://safecast.org/)\nUpdateFrequency: Continuous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_safecast_opendata_public_us_east_1/index.json", "https://registry.opendata.aws/safecast/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_safecast_opendata_public_us_east_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_safecast_opendata_public_us_east_1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_safecast_opendata_public_us_east_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s1_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s1-l1c/: Sentinel-1: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s1-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C\nDescription: [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1) is a pair of European radar imaging (SAR) satellites launched in 2014 and 2016. Its 6 days revisit cycle and ability to observe through clouds makes it perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. GRD data is available globally since January 2017.\n\nDocumentation: https://roda.sentinel-hub.com/sentinel-s1-l1c/GRD/readme.html\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s1_l1c/index.json", "https://registry.opendata.aws/sentinel-1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s1_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s1_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s1_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l1c/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l1c/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l2a/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l2a/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l2a/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l2a/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l2a&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l2a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel1_slc_seasia_pds/", "public", "File Names from the AWS S3 sentinel1-slc-seasia-pds Bucket: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan", "This dataset has file information from the AWS S3 sentinel1-slc-seasia-pds bucket at https://sentinel1-slc-seasia-pds.s3.ap-southeast-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan\nName2: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan\nDescription: The S1 Single Look Complex (SLC) dataset contains Synthetic Aperture Radar (SAR) data in the C-Band wavelength. The SAR sensors are installed on a two-satellite (Sentinel-1A and Sentinel-1B) constellation orbiting the Earth with a combined revisit time of six days, operated by the European Space Agency. The S1 SLC data are a Level-1 product that collects radar amplitude and phase information in all-weather, day or night conditions, which is ideal for studying natural hazards and emergency response, land applications, oil spill monitoring, sea-ice conditions, and associated climate change effects.\n\nDocumentation: https://github.com/earthobservatory/sentinel1-opds/\nContact: https://github.com/earthobservatory/sentinel1-opds/\nManagedBy: [Earth Observatory of Singapore, Nanyang Technological University](https://earthobservatory.sg)\nUpdateFrequency: S1 SLC data for the region of interest will be updated regularly, as it becomes available on the Alaska Satellite Facility endpoint.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel1_slc_seasia_pds/index.json", "https://registry.opendata.aws/sentinel1-slc-seasia-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel1_slc_seasia_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel1_slc_seasia_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel1_slc_seasia_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_silo_open_data/", "public", "File Names from the AWS S3 silo-open-data Bucket: SILO climate data on AWS: SILO open data", "This dataset has file information from the AWS S3 silo-open-data bucket at https://silo-open-data.s3.ap-southeast-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SILO climate data on AWS\nName2: SILO open data\nDescription: [SILO](https://www.longpaddock.qld.gov.au/silo) is a database of Australian [climate data](https://www.longpaddock.qld.gov.au/silo/about/climate-variables) from 1889 to the present. It provides continuous, daily time-step [data products](https://www.longpaddock.qld.gov.au/silo/about/data-products) in ready-to-use [formats](https://www.longpaddock.qld.gov.au/silo/about/file-formats-and-samples) for research and operational applications. Gridded SILO data in annual NetCDF format are on AWS. Point data are available from the [SILO website](https://www.longpaddock.qld.gov.au/silo/).\n\nDocumentation: https://www.longpaddock.qld.gov.au/silo/gridded-data\nContact: https://www.longpaddock.qld.gov.au/silo/contact-us\nManagedBy: Queensland Government\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_silo_open_data/index.json", "https://registry.opendata.aws/silo/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_silo_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_silo_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_silo_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_softwareheritage/", "public", "File Names from the AWS S3 softwareheritage Bucket: Software Heritage Graph Dataset: Software Heritage Graph Dataset", "This dataset has file information from the AWS S3 softwareheritage bucket at https://softwareheritage.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Software Heritage Graph Dataset\nName2: Software Heritage Graph Dataset\nDescription: [Software Heritage](https://www.softwareheritage.org/) is the largest existing public archive of software source code and accompanying development history. The Software Heritage Graph Dataset is a fully deduplicated Merkle DAG representation of the Software Heritage archive.\n\nDocumentation: https://wiki.softwareheritage.org/wiki/Graph_Dataset_on_Amazon_Athena\nContact: swh-devel@inria.fr\nUpdateFrequency: Data is updated yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_softwareheritage/index.json", "https://registry.opendata.aws/software-heritage/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_softwareheritage.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_softwareheritage&showErrors=false&email=", "Amazon Web Services", "awsS3Files_softwareheritage"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_spacenet_dataset/", "public", "File Names from the AWS S3 spacenet-dataset Bucket: SpaceNet: Imagery and metadata in a S3 bucket", "This dataset has file information from the AWS S3 spacenet-dataset bucket at https://spacenet-dataset.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SpaceNet\nName2: Imagery and metadata in a S3 bucket\nDescription: SpaceNet, launched in August 2016 as an open innovation project offering a repository of freely available imagery with co-registered map features. Before SpaceNet, computer vision researchers had minimal options to obtain free, precision-labeled, and high-resolution satellite imagery. Today, SpaceNet hosts datasets developed by its own team, along with data sets from projects like IARPA\u2019s Functional Map of the World (fMoW).\n\nDocumentation: https://spacenetchallenge.github.io\nContact: https://github.com/SpaceNetChallenge/utilities/issues\nManagedBy: [SpaceNet](https://spacenet.ai/)\nUpdateFrequency: New imagery and features are added quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_spacenet_dataset/index.json", "https://registry.opendata.aws/spacenet/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_spacenet_dataset.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_spacenet_dataset&showErrors=false&email=", "Amazon Web Services", "awsS3Files_spacenet_dataset"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_unidata_nexrad_level2_chunks/", "public", "File Names from the AWS S3 unidata-nexrad-level2-chunks Bucket: NEXRAD on AWS: NEXRAD Level II real-time data", "This dataset has file information from the AWS S3 unidata-nexrad-level2-chunks bucket at https://unidata-nexrad-level2-chunks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II real-time data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_unidata_nexrad_level2_chunks/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_unidata_nexrad_level2_chunks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_unidata_nexrad_level2_chunks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_unidata_nexrad_level2_chunks"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_usgs_lidar_public/", "public", "File Names from the AWS S3 usgs-lidar-public Bucket: USGS 3DEP LiDAR Point Clouds: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.", "This dataset has file information from the AWS S3 usgs-lidar-public bucket at https://usgs-lidar-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: USGS 3DEP LiDAR Point Clouds\nName2: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.\nDescription: The goal of the [USGS 3D Elevation Program ](https://www.usgs.gov/core-science-systems/ngp/3dep) (3DEP) is to collect elevation data in the form of light detection and ranging (LiDAR) data over the conterminous United States, Hawaii, and the U.S. territories, with data acquired over an 8-year period. This dataset provides two realizations of the 3DEP point cloud data. The first resource is a public access organization provided in [Entwine Point Tiles](https://entwine.io/entwine-point-tile.html) format, which a lossless, full-density, streamable octree based on [LASzip](https://laszip.org) (LAZ) encoding. The second resource is a [Requester Pays](https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html) of the same data in LAZ (Compressed LAS) format. Resource names in both buckets correspond to the USGS project names.\n\nDocumentation: https://github.com/hobu/usgs-lidar/\nContact: https://github.com/hobu/usgs-lidar\nManagedBy: [Hobu, Inc.](https://hobu.co)\nUpdateFrequency: Periodically\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_usgs_lidar_public/index.json", "https://registry.opendata.aws/usgs-lidar/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_usgs_lidar_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_usgs_lidar_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_usgs_lidar_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_web_language_models/", "public", "File Names from the AWS S3 web-language-models Bucket: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl): Parallel Corpora to/from English for all official EU languages", "This dataset has file information from the AWS S3 web-language-models bucket at https://web-language-models.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl)\nName2: Parallel Corpora to/from English for all official EU languages\nDescription: ParaCrawl is a set of large parallel corpora to/from English for all official EU languages by a broad web crawling effort. State-of-the-art methods are applied for the entire processing chain from identifying web sites with translated text all the way to collecting, cleaning and delivering parallel corpora that are ready as training data for CEF.AT and translation memories for DG Translation.\n\nDocumentation: https://paracrawl.eu/releases.html\nContact: For questions regarding the datasets contact Kenneth Heafield, email kheafiel@inf.ed.ac.uk. For reporting any issues about bitextor pipeline visit https://github.com/bitextor/bitextor/issues.\nManagedBy: [ParaCrawl](https://paracrawl.eu)\nUpdateFrequency: New data is added according to ParaCrawl release schedule.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_web_language_models/index.json", "https://registry.opendata.aws/paracrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_web_language_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_web_language_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_web_language_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_xiph_media/", "public", "File Names from the AWS S3 xiph-media Bucket: Xiph.Org Test Media: Video and imagery data", "This dataset has file information from the AWS S3 xiph-media bucket at https://xiph-media.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Xiph.Org Test Media\nName2: Video and imagery data\nDescription: Uncompressed video used for video compression and video processing research.\n\nDocumentation: https://media.xiph.org/aws.html\nContact: Thomas Daede tdaede@xiph.org\nUpdateFrequency: New videos are added when contributors submit them.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_xiph_media/index.json", "https://registry.opendata.aws/xiph-media/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_xiph_media.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_xiph_media&showErrors=false&email=", "Amazon Web Services", "awsS3Files_xiph_media"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ycb_benchmarks/", "public", "File Names from the AWS S3 ycb-benchmarks Bucket: Yale-CMU-Berkeley (YCB) Object and Model Set: Project data files", "This dataset has file information from the AWS S3 ycb-benchmarks bucket at https://ycb-benchmarks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Yale-CMU-Berkeley (YCB) Object and Model Set\nName2: Project data files\nDescription: This project primarily aims to facilitate performance benchmarking in robotics research. The dataset provides mesh models, RGB, RGB-D and point cloud images of over 80 objects. The physical objects are also available via the [YCB benchmarking project](http://www.ycbbenchmarks.com/). The data are collected by two state of the art systems: UC Berkley's scanning rig and the Google scanner. The UC Berkley's scanning rig data provide meshes generated with Poisson reconstruction, meshes generated with volumetric range image integration, textured versions of both meshes, Kinbody files for using the meshes with OpenRAVE, 600 High-resolution RGB images, 600 RGB-D images, and 600 point cloud images for each object. The Google scanner data provides 3 meshes with different resolutions (16k, 64k, and 512k polygons), textured versions of each mesh, Kinbody files for using the meshes with OpenRAVE.\n\nDocumentation: http://www.ycbbenchmarks.com/\nContact: bcalli@wpi.edu\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ycb_benchmarks/index.json", "https://registry.opendata.aws/ycb-benchmarks/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ycb_benchmarks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ycb_benchmarks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ycb_benchmarks"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the June 2020 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.graph", "", "", "public", "GLOBEC NEP Vertical Plankton Tow (VPT) Data, 1997-2001", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nCalifornia Current Program\nVertical Plankton Tow (VPT) Data\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10181&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/vpt%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/vpt.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ncast_no (Cast Number Within the Cruise)\nstation_id\nabund_m3 (Abundance, count m-3)\ncomments\ncounter_id\nd_n_flag (Day/Night Flag)\ngear_area (Mouth Area of Net, m2)\ngear_mesh (Net's Mesh Size, mm)\ngear_type\ngenus_species\nlife_stage\nlocal_code\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecVpt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecVpt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecVpt/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecVpt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecVpt&showErrors=false&email=", "GLOBEC", "erdGlobecVpt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://usgodae.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, the EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\nBeach Monitoring Quality Assurance Project Plan (CWBMONQAPP002):\nhttps://www.pacioos.hawaii.edu/wp-content/uploads/2016/08/Beach_Monitoring_QAPP_CWBMONQAPP002_120507.pdf\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwb_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwb_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwb_water_quality/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/cwb_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwb_water_quality&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "cwb_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.graph", "", "", "public", "HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii", "The Hawaii Institute of Marine Biology (HIMB) automatic weather station (AWS) records hourly measurements of precipitation, air temperature, wind speed and direction, and irradiance. Sensors include an Eppley 295-385 nm ultraviolet (UV) radiometer, a LiCor 200SZ Pyranometer, and a LiCor Quantameter (400-700 nm). The sensors are located on the roof of HIMB's Coral Reef Ecology Laboratory (Point Lab) on Moku o Loe (Coconut Island) in Kaneohe Bay on the windward (eastern) coast of Oahu in Hawaii. An accompanying sea water temperature sensor is located less than 10 m offshore of the weather station at a shallow depth of approximately 1 m.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HIMB: HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nsea_water_temperature (water temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nwind_from_direction_std (standard deviation of wind direction (processed), degrees)\nrainfall_amount (total rainfall (processed), mm)\nshortwave_radiation (downwelling shortwave radiation (processed), W/m2)\nultraviolet_radiation (ultraviolet radiation (processed), W/m2)\nphotosynthetic_radiation (photosynthetically active radiation (processed), umol m-2 s-1)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_atn (QARTOD Attenuated Signal Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (139 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HIMB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HIMB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HIMB/index.json", "https://www.pacioos.hawaii.edu/weather/obs-mokuoloe/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HIMB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HIMB&showErrors=false&email=", "Hawaii Institute of Marine Biology (HIMB)", "AWS-HIMB"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.graph", "", "", "public", "Hui O Ka Wai Ola Water Quality Data", "The goal of the Hui O Ka Wai Ola (Association Of The Living Waters) citizen-science based water quality program is to increase the capacity for monitoring water quality in Maui coastal waters by generating reliable data to assess long-term water-quality conditions and detect temporal trends. These data augment the data produced by the Hawaii Department of Health (DOH) Clean Water Branch (CWB) beach monitoring program on Maui.\n \nData are collected and analyzed every two or three weeks for physical and chemical parameters, including ocean salinity, pH, temperature, organic nutrients (nitrogen and phosphorous compounds), dissolved oxygen (DO), and total suspended sediment (TSS). Some water samples are immediately tested at mobile labs while others are processed for testing at University of Hawaii and/or other labs.\n \nUsers of these data should cite the following publication:\n \nFalinski, Kim, Dana Reed, Tova Callender, Emily Fielding, Robin Newbold, and Alana Yurkanin. (2018). Hui O Ka Wai Ola Water Quality Data [Data set]. Zenodo. \"http://doi.org/10.5281/zenodo.1173717\"\n \nFor further information, please visit:\nhttps://www.huiokawaiola.com\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nlocation_id (sampling site identifier)\nlocation_name\nsample_id (sample identifier)\nsession_id (sampling session identifier)\nwater_temperature (Celsius)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hui_water_quality/index.json", "https://www.huiokawaiola.com", "http://upwell.pfeg.noaa.gov/erddap/rss/hui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hui_water_quality&showErrors=false&email=", "Hui O Ka Wai Ola", "hui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitored water quality at several beaches across the island of Maui in the State of Hawaii during the years 2010-2016. This community-based monitoring effort provided valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites were also monitored for harmful bacteria levels of Enterococcus through 2014-06-26. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours.\n\nData were managed through an online repository, the Coral Reef Monitoring Data Portal (now defunct), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection was coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/maui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/maui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/maui_water_quality/index.json", "https://coral.org/maui/", "http://upwell.pfeg.noaa.gov/erddap/rss/maui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=maui_water_quality&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "maui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys. See\nhttps://www.ndbc.noaa.gov/measdes.shtml for a description of the measurements.\n\nThe source data from NOAA NDBC has different column names, different units,\nand different missing values in different files, and other problems\n(notably, lots of rows with duplicate or different values for the same time\npoint). This dataset is a standardized, reformatted, and lightly edited\nversion of that source data, created by NOAA NMFS SWFSC ERD (email:\nerd.data at noaa.gov). Before 2020-01-29, this dataset only had the data\nthat was closest to a given hour, rounded to the nearest hour. Now, this\ndataset has all of the data available from NDBC with the original time\nvalues. If there are multiple source rows for a given buoy for a given\ntime, only the row with the most non-NaN data values is kept. If there is\na gap in the data, a row of missing values is inserted (which causes a nice\ngap when the data is graphed). Also, some impossible data values are\nremoved, but this data is not perfectly clean. This dataset is now updated\nevery 5 minutes.\n\nThis dataset has both historical data (quality controlled, before\n2020-06-01T00:00:00Z) and near real time data (less quality controlled,\nwhich may change at any time, from 2020-06-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Identifier)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.graph", "", "", "public", "NEFSC Continuous Plankton Recorder", "A summary for the data\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ncruise\nsample\nlatitude (degrees_north)\nlongitude (degrees_east)\nphyto_color_indx (Phytoplankton Color Index)\nmarmap_tax_code (Marmap Taxonomic Code)\nmarmap_stage_code\nabundance (per 100 cubic meters)\nlife_stage\ntaxonomic_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/wocecpr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/wocecpr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/wocecpr/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "http://upwell.pfeg.noaa.gov/erddap/rss/wocecpr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=wocecpr&showErrors=false&email=", "NEFSC", "wocecpr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "", "public", "North Pacific High, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.graph", "", "", "public", "OSMC Argo Profile data", "OSMC Argo Profile data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\norganization_name\ncountry_name\nplatform_type_name\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nparameter_name\ndaily_obs_count\nobservation_depth\nobservation_value\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_PROFILERS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_PROFILERS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_PROFILERS/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_PROFILERS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_PROFILERS&showErrors=false&email=", "OSMC", "OSMC_PROFILERS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.graph", "", "", "public", "OSMC normalized observations from GTS", "OSMC normalized In-situ Real time GTS data\n\ncdm_data_type = Point\nVARIABLES:\nPLATFORM_CODE (Station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform\nparameter\nOBSERVATION_VALUE\nOBSERVATION_DEPTH\nCOUNTRY_NAME\norganization_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_Points_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_Points_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_Points/index.json", "https://www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_Points.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_Points&showErrors=false&email=", "OSMC", "OSMC_Points"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001.graph", "", "", "public", "PacIOOS Beach Camera 001: Waikiki, Oahu, Hawaii", "A digital camera on top of the Sheraton Waikiki hotel was used to photograph the shoreline of Waikiki beach along the South Shore of the island of Oahu in the State of Hawaii. The oblique camera view presented here captures the shoreline leading southeast towards Diamond Head crater. It operated for over 4.5 years between February 5, 2009 and October 13, 2013. Capturing hourly snapshots at a set vantage point during the local daytime hours of 6:00 AM or 7:00 AM to 5:00 PM, these images are useful for tracking beach dynamics such as wave run-up, sand movement, and turbidity plumes over time. The camera was mounted on top of a 3 meter wall extending above the roof surface for a total height of 93 meters above ground level or 96 meters above mean sea level. See also BEACHCAM-002 for an alternate camera view from the same location pointing directly downwards.\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (m)\naboveGround (Height, m)\nurl\nname (File Name)\nsize (bytes)\nfileType (File Type)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/BEACHCAM-001_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/BEACHCAM-001_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/BEACHCAM-001/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/BEACHCAM-001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=BEACHCAM-001&showErrors=false&email=", "University of Hawaii", "BEACHCAM-001"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_4"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_2/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_2&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_6/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_6&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_7/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_7&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_7"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_8/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_8&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_9/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_9&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.graph", "", "", "public", "PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-04 is located in Hilo Bay on the east side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-04: PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-04/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-hilo/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-04&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-04"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.graph", "", "", "public", "PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-05 is located in Pelekane Bay near Kawaihae Harbor on the west side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-05: PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-05/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-pelekane/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-05&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-05"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.graph", "", "", "public", "PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii", "The Pacific Islands Ocean Observing System (PacIOOS) operates a Davis Instruments automatic weather station (AWS) near the entrance to Honolulu Harbor on the leeward (western) coast of Oahu in Hawaii to aid with navigation. The station records measurements every 5 minutes of air temperature, wind speed and direction, precipitation, relative humidity, and air pressure. Sensors are located at Pier 1, installed on a tower at an elevation of 64 feet (19.5 meters) above sea level. The station is owned by the Hawaii Pilots Association (HPA). PacIOOS maintains the station and provides data access.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HNLPier1: PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nrainfall_rate (rain rate (processed), mm/h)\nrelative_humidity (relative humidity (processed), %)\nair_pressure (air pressure (processed), millibars)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_gap (QARTOD Gap Test (processed), 0)\nair_temperature_qc_syn (QARTOD Syntax Test (processed), 0)\nair_temperature_qc_loc (QARTOD Location Test (processed), 0)\nair_temperature_qc_rng (QARTOD Gross Range Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_spk (QARTOD Spike Test (processed), 0)\n... (92 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HNLPier1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HNLPier1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HNLPier1/index.json", "https://www.pacioos.hawaii.edu/weather/obs-honolulu/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HNLPier1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HNLPier1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "AWS-HNLPier1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "https://tidesandcurrents.noaa.gov/gomoos.html", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/main.aspx?Division=PRD&ParentMenuId=147&id=1221", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2017, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2017, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2017, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"] + ] + } + } + recorded_at: 2020-07-15 22:19:49 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMekm14day.nc?mod_current[(2015-12-28):1:(2016-01-01)][(0.0):1:(0.0)][(23):1:(24)][(88):1:(90)] + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:19:48 GMT + x-frame-options: SAMEORIGIN + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:19:48 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=erdQMekm14day_833a_3737_0166.nc + content-encoding: gzip + content-type: application/x-netcdf + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: yes + string: ../fixtures/a0e0d744f765b9867fd5b016de134e34.nc + recorded_at: 2020-07-15 22:19:49 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/info/erdMBchlamday_LonPM180/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:20:02 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=erdMBchlamday_LonPM180_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "acknowledgement", "String", "NOAA NESDIS COASTWATCH, NOAA SWFSC ERD"], + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "Grid"], + ["attribute", "NC_GLOBAL", "composite", "String", "true"], + ["attribute", "NC_GLOBAL", "contributor_name", "String", "NASA GSFC (OBPG)"], + ["attribute", "NC_GLOBAL", "contributor_role", "String", "Source of level 2 data."], + ["attribute", "NC_GLOBAL", "Conventions", "String", "COARDS, CF-1.6, ACDD-1.3"], + ["attribute", "NC_GLOBAL", "creator_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "creator_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "date_created", "String", "2020-07-03"], + ["attribute", "NC_GLOBAL", "date_issued", "String", "2020-07-03"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "179.975"], + ["attribute", "NC_GLOBAL", "files", "String", "MB2020153_2020153_chla.nc, MB2020154_2020154_chla.nc, MB2020155_2020155_chla.nc, MB2020156_2020156_chla.nc, MB2020157_2020157_chla.nc, MB2020158_2020158_chla.nc, MB2020159_2020159_chla.nc, MB2020160_2020160_chla.nc, MB2020161_2020161_chla.nc, MB2020162_2020162_chla.nc, MB2020163_2020163_chla.nc, MB2020164_2020164_chla.nc, MB2020165_2020165_chla.nc, MB2020166_2020166_chla.nc, MB2020167_2020167_chla.nc, MB2020168_2020168_chla.nc, MB2020169_2020169_chla.nc, MB2020170_2020170_chla.nc, MB2020171_2020171_chla.nc, MB2020172_2020172_chla.nc, MB2020173_2020173_chla.nc, MB2020174_2020174_chla.nc, MB2020175_2020175_chla.nc, MB2020176_2020176_chla.nc, MB2020177_2020177_chla.nc, MB2020178_2020178_chla.nc, MB2020179_2020179_chla.nc, MB2020180_2020180_chla.nc, MB2020181_2020181_chla.nc, MB2020182_2020182_chla.nc"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "65.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "-45.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_resolution", "double", "0.025"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "179.975"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "-180.0"], + ["attribute", "NC_GLOBAL", "geospatial_lon_resolution", "double", "0.025"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_max", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_min", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_positive", "String", "up"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_units", "String", "m"], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html"], + ["attribute", "NC_GLOBAL", "institution", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "keywords", "String", "altitude, aqua, chemistry, chla, chlorophyll, chlorophyll-a, coast, coastwatch, color, concentration, concentration_of_chlorophyll_in_sea_water, data, degrees, Earth Science > Oceans > Ocean Chemistry > Chlorophyll, experimental, imaging, MBchla, moderate, modis, national, noaa, node, npp, ocean, ocean color, oceans, orbiting, pacific, partnership, polar, polar-orbiting, resolution, sea, seawater, spectroradiometer, time, water, wcn, west"], + ["attribute", "NC_GLOBAL", "keywords_vocabulary", "String", "GCMD Science Keywords"], + ["attribute", "NC_GLOBAL", "license", "String", "The data may be used and redistributed for free but is not intended\nfor legal use, since it may contain inaccuracies. Neither the data\nContributor, ERD, NOAA, nor the United States Government, nor any\nof their employees or contractors, makes any warranty, express or\nimplied, including warranties of merchantability and fitness for a\nparticular purpose, or assumes any legal liability for the accuracy,\ncompleteness, or usefulness, of this information."], + ["attribute", "NC_GLOBAL", "naming_authority", "String", "gov.noaa.pfeg.coastwatch"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "65.0"], + ["attribute", "NC_GLOBAL", "origin", "String", "NASA GSFC (OBPG)"], + ["attribute", "NC_GLOBAL", "processing_level", "String", "3"], + ["attribute", "NC_GLOBAL", "project", "String", "CoastWatch (https://coastwatch.noaa.gov/)"], + ["attribute", "NC_GLOBAL", "projection", "String", "geographic"], + ["attribute", "NC_GLOBAL", "projection_type", "String", "mapped"], + ["attribute", "NC_GLOBAL", "publisher_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "publisher_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "publisher_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "publisher_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "references", "String", "Aqua/MODIS information: https://oceancolor.gsfc.nasa.gov/ . MODIS information: https://coastwatch.noaa.gov/cw_html/OceanColor_NRT_MODIS_Aqua.html ."], + ["attribute", "NC_GLOBAL", "satellite", "String", "Aqua"], + ["attribute", "NC_GLOBAL", "sensor", "String", "MODIS"], + ["attribute", "NC_GLOBAL", "source", "String", "satellite observation: Aqua, MODIS"], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "(local files)"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "-45.0"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v70"], + ["attribute", "NC_GLOBAL", "summary", "String", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner."], + ["attribute", "NC_GLOBAL", "testOutOfDate", "String", "now-60days"], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2020-06-15T12:00:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "2006-01-16T12:00:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (Monthly Composite), Lon+/-180"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "-180.0"], + ["dimension", "time", "", "double", "nValues=171, evenlySpaced=false, averageSpacing=30 days 23h 9m 11s"], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "1.1374128E9, 1.5922224E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "fraction_digits", "int", "0"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Centered Time"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["dimension", "altitude", "", "double", "nValues=1, onlyValue=0.0"], + ["attribute", "altitude", "_CoordinateAxisType", "String", "Height"], + ["attribute", "altitude", "_CoordinateZisPositive", "String", "up"], + ["attribute", "altitude", "actual_range", "double", "0.0, 0.0"], + ["attribute", "altitude", "axis", "String", "Z"], + ["attribute", "altitude", "fraction_digits", "int", "0"], + ["attribute", "altitude", "ioos_category", "String", "Location"], + ["attribute", "altitude", "long_name", "String", "Altitude"], + ["attribute", "altitude", "positive", "String", "up"], + ["attribute", "altitude", "standard_name", "String", "altitude"], + ["attribute", "altitude", "units", "String", "m"], + ["dimension", "latitude", "", "double", "nValues=4401, evenlySpaced=true, averageSpacing=0.025"], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "double", "-45.0, 65.0"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "coordsys", "String", "geographic"], + ["attribute", "latitude", "fraction_digits", "int", "4"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "point_spacing", "String", "even"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["dimension", "longitude", "", "double", "nValues=14400, evenlySpaced=true, averageSpacing=0.025"], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "double", "-180.0, 179.975"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "coordsys", "String", "geographic"], + ["attribute", "longitude", "fraction_digits", "int", "4"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "point_spacing", "String", "even"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "chlorophyll", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "chlorophyll", "_FillValue", "float", "-9999999.0"], + ["attribute", "chlorophyll", "colorBarMaximum", "double", "30.0"], + ["attribute", "chlorophyll", "colorBarMinimum", "double", "0.03"], + ["attribute", "chlorophyll", "colorBarScale", "String", "Log"], + ["attribute", "chlorophyll", "coordsys", "String", "geographic"], + ["attribute", "chlorophyll", "fraction_digits", "int", "2"], + ["attribute", "chlorophyll", "ioos_category", "String", "Ocean Color"], + ["attribute", "chlorophyll", "long_name", "String", "Chlorophyll Concentration in Sea Water"], + ["attribute", "chlorophyll", "missing_value", "float", "-9999999.0"], + ["attribute", "chlorophyll", "standard_name", "String", "concentration_of_chlorophyll_in_sea_water"], + ["attribute", "chlorophyll", "units", "String", "mg m-3"] + ] + } + } + recorded_at: 2020-07-15 22:19:49 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:20:02 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:20:02 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://upwell.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012.graph", "", "", "public", "AIS Ship Traffic: Hawaii: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_hi_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_hi_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_hi_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_hi_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_hi_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_hi_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012.graph", "", "", "public", "AIS Ship Traffic: Johnston Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Johnston Atoll. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_john_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_john_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_john_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_john_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_john_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_john_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012.graph", "", "", "public", "AIS Ship Traffic: Mariana and Wake: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Mariana Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_mari_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_mari_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_mari_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_mari_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_mari_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_mari_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012.graph", "", "", "public", "AIS Ship Traffic: Rose Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Rose Atoll in American Samoa. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_rose_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_rose_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_rose_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_rose_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_rose_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_rose_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom for the most recent 7 days.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_temp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_temp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_temp/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_temp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_temp&showErrors=false&email=", "University of Hawaii", "aco_adcp_temp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Velocity", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean current velocity at the ACO from a 250 kHz SonTek acoustic doppler current profiler (ADCP) at 1.83 m above the ocean bottom for the most recent 7 days. Velocities are flagged bad if the amplitude is excessively low or high. An amplitude is high if it exceeds the average of the ping before and the ping after by 20 counts. An amplitude is low if less than 6 counts. After this the velocities are flagged bad if the absolute deviation of the vertical velocity from its ensemble median exceeds 0.15 m/s or if its value is less than -0.25 m/s.\n\ncdm_data_type = Profile\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each location, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\neastward_sea_water_velocity (current east component, meters/second)\nnorthward_sea_water_velocity (current north component, meters/second)\nupward_sea_water_velocity (current upward component, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_vel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_vel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_vel/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_vel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_vel&showErrors=false&email=", "University of Hawaii", "aco_adcp_vel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://upwell.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF.graph", "", "", "public", "CRRF Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-CRRF: CRRF Weather Station: Palau: Koror: Ngeanges Island)\nair_temperature (Celsius)\nair_temperature_max (maximum air temperature, Celsius)\nair_temperature_max_time (maximum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (minimum air temperature, Celsius)\nair_temperature_min_time (minimum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_std (air temperature standard deviation, Celsius)\nwind_speed (m/s)\nwind_speed_max (gust speed, m/s)\nwind_speed_max_time (gust speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (minimum wind speed, m/s)\nwind_speed_min_time (minimum wind speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_std (wind speed standard deviation, m/s)\nwind_from_direction (wind direction, degrees)\nwind_from_direction_std (wind direction standard deviation, degrees)\nrainfall_amount (total rainfall, mm)\n... (23 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-CRRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-CRRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-CRRF/index.json", "https://www.pacioos.hawaii.edu/weather/obs-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-CRRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-CRRF&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "AWS-CRRF"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_1000genomes/", "public", "File Names from the AWS S3 1000genomes Bucket: 1000 Genomes", "This dataset has file information from the AWS S3 1000genomes bucket at https://1000genomes.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 1000 Genomes\nName2: http://www.internationalgenome.org/formats\nDescription: The 1000 Genomes Project is an international collaboration which has established the most detailed catalogue of human genetic variation, including SNPs, structural variants, and their haplotype context. The final phase of the project sequenced more than 2500 individuals from 26 different populations around the world and produced an integrated set of phased haplotypes with more than 80 million variants for these individuals.\n\nDocumentation: https://docs.opendata.aws/1000genomes/readme.html\nContact: http://www.internationalgenome.org/contact\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_1000genomes/index.json", "https://registry.opendata.aws/1000-genomes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_1000genomes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_1000genomes&showErrors=false&email=", "Amazon Web Services", "awsS3Files_1000genomes"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_3kricegenome/", "public", "File Names from the AWS S3 3kricegenome Bucket: 3000 Rice Genomes Project", "This dataset has file information from the AWS S3 3kricegenome bucket at https://3kricegenome.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 3000 Rice Genomes Project\nName2: http://s3.amazonaws.com/3kricegenome/README-snp_pipeline.txt\nDescription: The 3000 Rice Genome Project is an international effort to sequence the genomes of 3,024 rice varieties from 89 countries.\n\nDocumentation: https://docs.opendata.aws/3kricegenome/readme.html\nContact: http://iric.irri.org/contact-us\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_3kricegenome/index.json", "https://registry.opendata.aws/3kricegenome/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_3kricegenome.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_3kricegenome&showErrors=false&email=", "Amazon Web Services", "awsS3Files_3kricegenome"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aft_vbi_pds/", "public", "File Names from the AWS S3 aft-vbi-pds Bucket: Amazon Bin Image Dataset: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.", "This dataset has file information from the AWS S3 aft-vbi-pds bucket at https://aft-vbi-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Bin Image Dataset\nName2: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.\nDescription: The Amazon Bin Image Dataset contains over 500,000 images and metadata from bins of a pod in an operating Amazon Fulfillment Center. The bin images in this dataset are captured as robot units carry pods as part of normal Amazon Fulfillment Center operations.\n\nDocumentation: https://docs.opendata.aws/aft-vbi-pds/readme.html\nContact: amazon-bin-images@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aft_vbi_pds/index.json", "https://registry.opendata.aws/amazon-bin-imagery/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aft_vbi_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aft_vbi_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aft_vbi_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory/", "public", "File Names from the AWS S3 allen-brain-observatory Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: Project data files in a public bucket", "This dataset has file information from the AWS S3 allen-brain-observatory bucket at https://allen-brain-observatory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: Project data files in a public bucket\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory_templates/", "public", "File Names from the AWS S3 allen-brain-observatory-templates Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: SageMaker launch template with s3fs bucket mounts", "This dataset has file information from the AWS S3 allen-brain-observatory-templates bucket at https://allen-brain-observatory-templates.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: SageMaker launch template with s3fs bucket mounts\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory_templates/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory_templates.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory_templates&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory_templates"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_amazon_reviews_pds/", "public", "File Names from the AWS S3 amazon-reviews-pds Bucket: Amazon Customer Reviews Dataset: TSV files of reviews", "This dataset has file information from the AWS S3 amazon-reviews-pds bucket at https://amazon-reviews-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Customer Reviews Dataset\nName2: TSV files of reviews\nDescription: Amazon Customer Reviews (a.k.a. Product Reviews) is one of Amazon\u2019s iconic products. In a period of over two decades since the first review in 1995, millions of Amazon customers have contributed over a hundred million reviews to express opinions and describe their experiences regarding products on the Amazon.com website. Over 130+ million customer reviews are available to researchers as part of this dataset.\n\nDocumentation: https://s3.amazonaws.com/amazon-reviews-pds/readme.html\nContact: customer-review-dataset@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not defined\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_amazon_reviews_pds/index.json", "https://registry.opendata.aws/amazon-reviews/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_amazon_reviews_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_amazon_reviews_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_amazon_reviews_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_avg_kitti/", "public", "File Names from the AWS S3 avg-kitti Bucket: KITTI Vision Benchmark Suite", "This dataset has file information from the AWS S3 avg-kitti bucket at https://avg-kitti.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: KITTI Vision Benchmark Suite\nName2: http://www.cvlibs.net/datasets/kitti/raw_data.php\nDescription: Dataset and benchmarks for computer vision research in the context of autonomous driving. The dataset has been recorded in and around the city of Karlsruhe, Germany using the mobile platform AnnieWay (VW station wagon) which has been equipped with several RGB and monochrome cameras, a Velodyne HDL 64 laser scanner as well as an accurate RTK corrected GPS/IMU localization unit. The dataset has been created for computer vision and machine learning research on stereo, optical flow, visual odometry, semantic segmentation, semantic instance segmentation, road segmentation, single image depth prediction, depth map completion, 2D and 3D object detection and object tracking. In addition, several raw data recordings are provided. The datasets are captured by driving around the mid-size city of Karlsruhe, in rural areas and on highways. Up to 15 cars and 30 pedestrians are visible per image.\n\nDocumentation: http://www.cvlibs.net/datasets/kitti/\nContact: http://www.cvlibs.net/people.php\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_avg_kitti/index.json", "https://registry.opendata.aws/kitti/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_avg_kitti.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_avg_kitti&showErrors=false&email=", "Amazon Web Services", "awsS3Files_avg_kitti"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/", "public", "File Names from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd Bucket: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)", "This dataset has file information from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd bucket at https://aws-earth-mo-atmospheric-mogreps-g-prd.s3.eu-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts\nName2: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)\nDescription: Meteorological data reusers now have an exciting opportunity to sample, experiment and evaluate Met Office atmospheric model data, whilst also experiencing a transformative method of requesting data via Restful APIs on AWS. All ahead of Met Office\u2019s own operationally supported API platform that will be launched in late 2019.\n\nDocumentation: https://github.com/MetOffice/aws-earth-examples\nContact: https://www.metoffice.gov.uk/about-us/contact\nUpdateFrequency: Daily (with 24 hour delay)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/index.json", "https://registry.opendata.aws/uk-met-office/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_gsod/", "public", "File Names from the AWS S3 aws-gsod Bucket: Global Surface Summary of Day: Measurements and metadata", "This dataset has file information from the AWS S3 aws-gsod bucket at https://aws-gsod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Surface Summary of Day\nName2: Measurements and metadata\nDescription: GSOD is a collection of daily weather measurements (temperature, wind speed, humidity, pressure, and more) from 9000+ weather stations around the world.\n\nDocumentation: https://www.ncdc.noaa.gov/\nContact: https://www.ncdc.noaa.gov/\nUpdateFrequency: Currently updated infrequently. Last updated on September 13, 2016.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_gsod/index.json", "https://registry.opendata.aws/noaa-gsod/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_gsod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_gsod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_gsod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_broad_references/", "public", "File Names from the AWS S3 broad-references Bucket: Broad Genome References: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.", "This dataset has file information from the AWS S3 broad-references bucket at https://broad-references.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Broad Genome References\nName2: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.\nDescription: Broad maintained human genome reference builds hg19/hg38 and decoy references.\n\nDocumentation: https://s3.amazonaws.com/broad-references/broad-references-readme.html\nContact: hensonc@broadinstitute.org\nManagedBy: Broad Institute\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_broad_references/index.json", "https://registry.opendata.aws/broad-references/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_broad_references.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_broad_references&showErrors=false&email=", "Amazon Web Services", "awsS3Files_broad_references"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cbers_meta_pds/", "public", "File Names from the AWS S3 cbers-meta-pds Bucket: CBERS on AWS: CBERS metadata (Quicklooks, metadata)", "This dataset has file information from the AWS S3 cbers-meta-pds bucket at https://cbers-meta-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CBERS on AWS\nName2: CBERS metadata (Quicklooks, metadata)\nDescription: This project creates a S3 repository with imagery acquired by the China-Brazil Earth Resources Satellite (CBERS). The image files are recorded and processed by Instituto Nacional de Pesquisa Espaciais (INPE) and are converted to Cloud Optimized Geotiff format in order to optimize its use for cloud based applications. The repository contains all CBERS-4 MUX, AWFI, PAN5M and PAN10M scenes acquired since the start of the satellite mission and is daily updated with new scenes.\n\nDocumentation: https://github.com/fredliporace/cbers-on-aws\nContact: https://lists.osgeo.org/mailman/listinfo/cbers-pds\nManagedBy: [AMS Kepler](https://amskepler.com/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cbers_meta_pds/index.json", "https://registry.opendata.aws/cbers/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cbers_meta_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cbers_meta_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cbers_meta_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cgiardata/", "public", "File Names from the AWS S3 cgiardata Bucket: CCAFS-Climate Data: ARC GRID, and ARC ASCII format compressed", "This dataset has file information from the AWS S3 cgiardata bucket at https://cgiardata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CCAFS-Climate Data\nName2: ARC GRID, and ARC ASCII format compressed\nDescription: High resolution climate data to help assess the impacts of climate change primarily on agriculture. These open access datasets of climate projections will help researchers make climate change impact assessments.\n\nDocumentation: http://www.ccafs-climate.org\nContact: http://www.ccafs-climate.org/contact/\nUpdateFrequency: Every three months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cgiardata/index.json", "https://registry.opendata.aws/cgiardata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cgiardata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cgiardata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cgiardata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_commoncrawl/", "public", "File Names from the AWS S3 commoncrawl Bucket: Common Crawl: Crawl data (WARC and ARC format)", "This dataset has file information from the AWS S3 commoncrawl bucket at https://commoncrawl.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Common Crawl\nName2: Crawl data (WARC and ARC format)\nDescription: A corpus of web crawl data composed of over 25 billion web pages.\n\nDocumentation: http://commoncrawl.org/the-data/get-started/\nContact: http://commoncrawl.org/connect/contact-us/\nManagedBy: [Common Crawl](http://commoncrawl.org/)\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_commoncrawl/index.json", "https://registry.opendata.aws/commoncrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_commoncrawl.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_commoncrawl&showErrors=false&email=", "Amazon Web Services", "awsS3Files_commoncrawl"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cornell_eas_data_lake/", "public", "File Names from the AWS S3 cornell-eas-data-lake Bucket: Cornell EAS Data Lake: Cornell EAS Data Lake", "This dataset has file information from the AWS S3 cornell-eas-data-lake bucket at https://cornell-eas-data-lake.s3.us-east-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cornell EAS Data Lake\nName2: Cornell EAS Data Lake\nDescription: Earth & Atmospheric Sciences at Cornell University has created a public data lake of climate data. The data is stored in columnar storage formats (ORC) to make it straightforward to query using standard tools like Amazon Athena or Apache Spark. The data itself is originally intended to be used for building decision support tools for farmers and digital agriculture. The first dataset is the historical NDFD / NDGD data distributed by NCEP / NOAA / NWS. The NDFD (National Digital Forecast Database) and NDGD (National Digital Guidance Database) contain gridded forecasts and observations at 2.5km resolution for the Contiguous United States (CONUS). There are also 5km grids for several smaller US regions and non-continguous territories, such as Hawaii, Guam, Puerto Rico and Alaska. NOAA distributes archives of the NDFD/NDGD via its NOAA Operational Model Archive and Distribution System (NOMADS) in Grib2 format. The data has been converted to ORC to optimize storage space and to, more importantly, simplify data access via standard data analytics tools.\n\nDocumentation: https://datalake.eas.cornell.edu/\nContact: digitalag@cornell.edu\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cornell_eas_data_lake/index.json", "https://registry.opendata.aws/cornell-eas-data-lake/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cornell_eas_data_lake.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cornell_eas_data_lake&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cornell_eas_data_lake"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cse_cic_ids2018/", "public", "File Names from the AWS S3 cse-cic-ids2018 Bucket: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018): Network traffic and log files", "This dataset has file information from the AWS S3 cse-cic-ids2018 bucket at https://cse-cic-ids2018.s3.ca-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018)\nName2: Network traffic and log files\nDescription: This dataset is the result of a collaborative project between the Communications Security Establishment (CSE) and The Canadian Institute for Cybersecurity (CIC) that use the notion of profiles to generate cybersecurity dataset in a systematic manner. It incluides a detailed description of intrusions along with abstract distribution models for applications, protocols, or lower level network entities. The dataset includes seven different attack scenarios, namely Brute-force, Heartbleed, Botnet, DoS, DDoS, Web attacks, and infiltration of the network from inside. The attacking infrastructure includes 50 machines and the victim organization has 5 departments includes 420 PCs and 30 servers. This dataset includes the network traffic and log files of each machine from the victim side, along with 80 network traffic features extracted from captured traffic using CICFlowMeter-V3. For more information on the creation of this dataset, see this paper by researchers at the Canadian Institute for Cybersecurity (CIC) and the University of New Brunswick (UNB): [Toward Generating a New Intrusion Detection Dataset and Intrusion Traffic Characterization](http://www.scitepress.org/Papers/2018/66398/66398.pdf).\n\nDocumentation: http://www.unb.ca/cic/datasets/ids-2018.html\nContact: CIC@unb.ca\nUpdateFrequency: Annualy\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cse_cic_ids2018/index.json", "https://registry.opendata.aws/cse-cic-ids2018/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cse_cic_ids2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cse_cic_ids2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cse_cic_ids2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cytodata/", "public", "File Names from the AWS S3 cytodata Bucket: Cell Painting Image Collection: Images, extracted features and aggregated profiles are available as a S3 bucket", "This dataset has file information from the AWS S3 cytodata bucket at https://cytodata.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cell Painting Image Collection\nName2: Images, extracted features and aggregated profiles are available as a S3 bucket\nDescription: The Cell Painting Image Collection is a collection of freely downloadable microscopy image sets. Cell Painting is an unbiased high throughput imaging assay used to analyze perturbations in cell models. In addition to the images themselves, each set includes a description of the biological application and some type of \"ground truth\" (expected results). Researchers are encouraged to use these image sets as reference points when developing, testing, and publishing new image analysis algorithms for the life sciences. We hope that the this data set will lead to a better understanding of which methods are best for various biological image analysis applications.\n\nDocumentation: https://github.com/cytodata/cytodata-hackathon-2018\nContact: Post on https://forum.image.sc/ and tag with \"cellpainting\"\nUpdateFrequency: irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cytodata/index.json", "https://registry.opendata.aws/cell-painting-image-collection/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cytodata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cytodata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cytodata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_czb_tabula_muris/", "public", "File Names from the AWS S3 czb-tabula-muris Bucket: Tabula Muris", "This dataset has file information from the AWS S3 czb-tabula-muris bucket at https://czb-tabula-muris.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Tabula Muris\nName2: https://github.com/czbiohub/tabula-muris\nDescription: Tabula Muris is a compendium of single cell transcriptomic data from the model organism *Mus musculus* comprising more than 100,000 cells from 20 organs and tissues. These data represent a new resource for cell biology, reveal gene expression in poorly characterized cell populations, and allow for direct and controlled comparison of gene expression in cell types shared between tissues, such as T-lymphocytes and endothelial cells from different anatomical locations. Two distinct technical approaches were used for most organs: one approach, microfluidic droplet-based 3\u2019-end counting, enabled the survey of thousands of cells at relatively low coverage, while the other, FACS-based full length transcript analysis, enabled characterization of cell types with high sensitivity and coverage. The cumulative data provide the foundation for an atlas of transcriptomic cell biology. See: https://www.nature.com/articles/s41586-018-0590-4\n\nDocumentation: https://github.com/czbiohub/tabula-muris/blob/master/tabula-muris-on-aws.md\nContact: If you have questions about the data, you can create an Issue at https://github.com/czbiohub/tabula-muris.\nManagedBy: [Chan Zuckerberg Biohub](https://www.czbiohub.org/)\nUpdateFrequency: This is the final version of the dataset, it will not be updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_czb_tabula_muris/index.json", "https://registry.opendata.aws/tabula-muris/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_czb_tabula_muris.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_czb_tabula_muris&showErrors=false&email=", "Amazon Web Services", "awsS3Files_czb_tabula_muris"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataforgood_fb_data/", "public", "File Names from the AWS S3 dataforgood-fb-data Bucket: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook: CSV and Cloud-optimized GeoTIFF files", "This dataset has file information from the AWS S3 dataforgood-fb-data bucket at https://dataforgood-fb-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook\nName2: CSV and Cloud-optimized GeoTIFF files\nDescription: Population data for a selection of countries, allocated to 1 arcsecond blocks and provided in a combination of CSV and Cloud-optimized GeoTIFF files. This refines [CIESIN\u2019s Gridded Population of the World](https://sedac.ciesin.columbia.edu/data/collection/gpw-v4) using machine learning models on high-resolution worldwide Digital Globe satellite imagery. CIESIN population counts aggregated from worldwide census data are allocated to blocks where imagery appears to contain buildings.\n\nDocumentation: [Project overview](https://dataforgood.fb.com/population-density-maps-documentation/) and [dataset description](https://docs.opendata.aws/dataforgood-fb-data/readme.html)\nContact: disastermaps@fb.com\nManagedBy: |\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataforgood_fb_data/index.json", "https://registry.opendata.aws/dataforgood-fb-hrsl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataforgood_fb_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataforgood_fb_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataforgood_fb_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_datasets_elasticmapreduce_ngrams_books/", "public", "File Names from the AWS S3 datasets.elasticmapreduce Bucket with prefix=ngrams/books/: Google Books Ngrams: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.", "This dataset has file information from the AWS S3 datasets.elasticmapreduce bucket at https://datasets.elasticmapreduce.s3.us-east-1.amazonaws.com/ with prefix=ngrams/books/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Google Books Ngrams\nName2: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.\nDescription: N-grams are fixed size tuples of items. In this case the items are words extracted from the Google Books corpus. The n specifies the number of elements in the tuple, so a 5-gram contains five words or characters. The n-grams in this dataset were produced by passing a sliding window of the text of books and outputting a record for each new token.\n\nDocumentation: http://books.google.com/ngrams/\nContact: https://books.google.com/ngrams\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_datasets_elasticmapreduce_ngrams_books/index.json", "https://registry.opendata.aws/google-ngrams/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_datasets_elasticmapreduce_ngrams_books.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_datasets_elasticmapreduce_ngrams_books&showErrors=false&email=", "Amazon Web Services", "awsS3Files_datasets_elasticmapreduce_ngrams_books"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataworld_linked_acs/", "public", "File Names from the AWS S3 dataworld-linked-acs Bucket: U.S. Census ACS PUMS: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.", "This dataset has file information from the AWS S3 dataworld-linked-acs bucket at https://dataworld-linked-acs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: U.S. Census ACS PUMS\nName2: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.\nDescription: U.S. Census Bureau American Community Survey (ACS) Public Use Microdata Sample (PUMS) available in a linked data format using the Resource Description Framework (RDF) data model.\n\nDocumentation: https://docs.data.world/uscensus/#american-community-survey-linked-open-data\nContact: https://docs.data.world/uscensus/#60---contact\nUpdateFrequency: Yearly, after ACS 1-year PUMS raw data are released\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataworld_linked_acs/index.json", "https://registry.opendata.aws/census-dataworld-pums/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataworld_linked_acs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataworld_linked_acs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataworld_linked_acs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2015/", "public", "File Names from the AWS S3 dc-lidar-2015 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML, SHP", "This dataset has file information from the AWS S3 dc-lidar-2015 bucket at https://dc-lidar-2015.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML, SHP\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2015/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2015.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2015&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2015"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2018/", "public", "File Names from the AWS S3 dc-lidar-2018 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML", "This dataset has file information from the AWS S3 dc-lidar-2018 bucket at https://dc-lidar-2018.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2018/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_eurex_pds/", "public", "File Names from the AWS S3 deutsche-boerse-eurex-pds Bucket: Deutsche B\u00f6rse Public Dataset: Eurex PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-eurex-pds bucket at https://deutsche-boerse-eurex-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Eurex PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_eurex_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_eurex_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_eurex_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_eurex_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_xetra_pds/", "public", "File Names from the AWS S3 deutsche-boerse-xetra-pds Bucket: Deutsche B\u00f6rse Public Dataset: Xetra PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-xetra-pds bucket at https://deutsche-boerse-xetra-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Xetra PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_xetra_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_xetra_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_xetra_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_xetra_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ebirdst_data/", "public", "File Names from the AWS S3 ebirdst-data Bucket: eBird Status and Trends Model Results: Species results files", "This dataset has file information from the AWS S3 ebirdst-data bucket at https://ebirdst-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: eBird Status and Trends Model Results\nName2: Species results files\nDescription: The eBird Status and Trends project generates estimates of bird occurrence and abundance at a high spatiotemporal resolution. This dataset represents the primary modeled results from the analysis workflow and are designed for further analysis, synthesis, visualization, and exploration.\n\nDocumentation: https://cornelllabofornithology.github.io/ebirdst/articles/ebirdst-introduction.html\nContact: https://help.ebird.org/customer/en/portal/emails/new\nManagedBy: [Cornell Lab of Ornithology](https://www.birds.cornell.edu/home/)\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ebirdst_data/index.json", "https://registry.opendata.aws/ebirdst/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ebirdst_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ebirdst_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ebirdst_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_elevation_tiles_prod/", "public", "File Names from the AWS S3 elevation-tiles-prod Bucket: Terrain Tiles: Gridded elevation tiles", "This dataset has file information from the AWS S3 elevation-tiles-prod bucket at https://elevation-tiles-prod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Terrain Tiles\nName2: Gridded elevation tiles\nDescription: A global dataset providing bare-earth terrain heights, tiled for easy usage and provided on S3.\n\nDocumentation: https://mapzen.com/documentation/terrain-tiles/\nContact: https://github.com/tilezen/joerd/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_elevation_tiles_prod/index.json", "https://registry.opendata.aws/terrain-tiles/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_elevation_tiles_prod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_elevation_tiles_prod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_elevation_tiles_prod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_encode_public/", "public", "File Names from the AWS S3 encode-public Bucket: Encyclopedia of DNA Elements (ENCODE): Released and archived ENCODE data", "This dataset has file information from the AWS S3 encode-public bucket at https://encode-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Encyclopedia of DNA Elements (ENCODE)\nName2: Released and archived ENCODE data\nDescription: The Encyclopedia of DNA Elements (ENCODE) Consortium is an international collaboration of research groups funded by the National Human Genome Research Institute (NHGRI). The goal of ENCODE is to build a comprehensive parts list of functional elements in the human genome, including elements that act at the protein and RNA levels, and regulatory elements that control cells and circumstances in which a gene is active. ENCODE investigators employ a variety of assays and methods to identify functional elements. The discovery and annotation of gene elements is accomplished primarily by sequencing a diverse range of RNA sources, comparative genomics, integrative bioinformatic methods, and human curation. Regulatory elements are typically investigated through DNA hypersensitivity assays, assays of DNA methylation, and immunoprecipitation (IP) of proteins that interact with DNA and RNA, i.e., modified histones, transcription factors, chromatin regulators, and RNA-binding proteins, followed by sequencing.\n\nDocumentation: https://www.encodeproject.org\nContact: encode-help@lists.stanford.edu\nManagedBy: ENCODE Data Coordinating Center\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_encode_public/index.json", "https://registry.opendata.aws/encode-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_encode_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_encode_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_encode_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_epa_rsei_pds/", "public", "File Names from the AWS S3 epa-rsei-pds Bucket: EPA Risk-Screening Environmental Indicators: RSEI Microdata", "This dataset has file information from the AWS S3 epa-rsei-pds bucket at https://epa-rsei-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: EPA Risk-Screening Environmental Indicators\nName2: RSEI Microdata\nDescription: Detailed air model results from EPA\u2019s Risk-Screening Environmental Indicators (RSEI) model.\n\nDocumentation: https://docs.opendata.aws/epa-rsei-pds/readme.html\nContact: https://www.epa.gov/rsei/forms/contact-us-about-rsei-model\nUpdateFrequency: Updated infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_epa_rsei_pds/index.json", "https://registry.opendata.aws/epa-rsei-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_epa_rsei_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_epa_rsei_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_epa_rsei_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_era5_pds/", "public", "File Names from the AWS S3 era5-pds Bucket: ECMWF ERA5 Reanalysis: ERA5 Reanalysis NetCDF 4 files", "This dataset has file information from the AWS S3 era5-pds bucket at https://era5-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ECMWF ERA5 Reanalysis\nName2: ERA5 Reanalysis NetCDF 4 files\nDescription: ERA5 is the fifth generation of ECMWF atmospheric reanalyses of the global climate, and the first reanalysis produced as an operational service. It utilizes the best available observation data from satellites and in-situ stations, which are assimilated and processed using ECMWF's Integrated Forecast System (IFS) Cycle 41r2. The dataset provides all essential atmospheric meteorological parameters like, but not limited to, air temperature, pressure and wind at different altitudes, along with surface parameters like rainfall, soil moisture content and sea parameters like sea-surface temperature and wave height. ERA5 provides data at a considerably higher spatial and temporal resolution than its legacy counterpart ERA-Interim. ERA5 consists of high resolution version with 31 km horizontal resolution, and a reduced resolution ensemble version with 10 members. It is currently available since 2008, but will be continuously extended backwards, first until 1979 and then to 1950. Learn more about ERA5 in Jon Olauson's paper [ERA5: The new champion of wind power modelling?](https://www.researchgate.net/publication/320084119_ERA5_The_new_champion_of_wind_power_modelling).\n\nDocumentation: https://github.com/planet-os/notebooks/blob/master/aws/era5-pds.md\nContact: datahub@intertrust.com\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_era5_pds/index.json", "https://registry.opendata.aws/ecmwf-era5/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_era5_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_era5_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_era5_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_coco/", "public", "File Names from the AWS S3 fast-ai-coco Bucket: COCO - Common Objects in Context - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-coco bucket at https://fast-ai-coco.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: COCO - Common Objects in Context - fast.ai datasets\nName2: Datasets\nDescription: COCO is a large-scale object detection, segmentation, and captioning dataset. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. If you use this dataset in your research please cite arXiv:1405.0312 [cs.CV].\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_coco/index.json", "https://registry.opendata.aws/fast-ai-coco/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_coco.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_coco&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_coco"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imageclas/", "public", "File Names from the AWS S3 fast-ai-imageclas Bucket: Image classification - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imageclas bucket at https://fast-ai-imageclas.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image classification - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image classification research, including CIFAR 10 and 100, Caltech 101, MNIST, Food-101, Oxford-102-Flowers, Oxford-IIIT-Pets, and Stanford-Cars. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imageclas/index.json", "https://registry.opendata.aws/fast-ai-imageclas/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imageclas.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imageclas&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imageclas"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imagelocal/", "public", "File Names from the AWS S3 fast-ai-imagelocal Bucket: Image localization - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imagelocal bucket at https://fast-ai-imagelocal.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image localization - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image localization research, including Camvid and PASCAL VOC (2007 and 2012). This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imagelocal/index.json", "https://registry.opendata.aws/fast-ai-imagelocal/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imagelocal.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imagelocal&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imagelocal"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_nlp/", "public", "File Names from the AWS S3 fast-ai-nlp Bucket: NLP - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-nlp bucket at https://fast-ai-nlp.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NLP - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for NLP, with a focus on classification, including IMDb, AG-News, Amazon Reviews (polarity and full), Yelp Reviews (polarity and full), Dbpedia, Sogou News (Pinyin), Yahoo Answers, Wikitext 2 and Wikitext 103, and ACL-2010 French-English 10^9 corpus. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_nlp/index.json", "https://registry.opendata.aws/fast-ai-nlp/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_nlp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_nlp&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_nlp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib Bucket: HIRLAM Weather Model: Pressure GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib bucket at https://fmi-opendata-rcrhirlam-pressure-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Pressure GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_pressure_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_pressure_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-surface-grib Bucket: HIRLAM Weather Model: Surface GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-surface-grib bucket at https://fmi-opendata-rcrhirlam-surface-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Surface GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_surface_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_surface_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gatk_test_data/", "public", "File Names from the AWS S3 gatk-test-data Bucket: GATK Test Data: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.", "This dataset has file information from the AWS S3 gatk-test-data bucket at https://gatk-test-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GATK Test Data\nName2: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.\nDescription: The GATK test data resource bundle is a collection of files for resequencing human genomic data with the Broad Institute's [Genome Analysis Toolkit (GATK)](https://software.broadinstitute.org/gatk/).\n\nDocumentation: https://s3.amazonaws.com/gatk-test-data/gatk-test-data-readme.html\nContact: https://gatkforums.broadinstitute.org/gatk\nManagedBy: Broad Institute\nUpdateFrequency: Every 3 months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gatk_test_data/index.json", "https://registry.opendata.aws/gatk-test-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gatk_test_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gatk_test_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gatk_test_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gdelt_open_data/", "public", "File Names from the AWS S3 gdelt-open-data Bucket: Global Database of Events, Language and Tone (GDELT): Project data files", "This dataset has file information from the AWS S3 gdelt-open-data bucket at https://gdelt-open-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Database of Events, Language and Tone (GDELT)\nName2: Project data files\nDescription: This project monitors the world's broadcast, print, and web news from nearly every corner of every country in over 100 languages and identifies the people, locations, organizations, counts, themes, sources, emotions, quotes, images and events driving our global society every second of every day.\n\nDocumentation: http://www.gdeltproject.org/\nContact: http://www.gdeltproject.org/about.html#contact\nUpdateFrequency: Not currently being updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gdelt_open_data/index.json", "https://registry.opendata.aws/gdelt/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gdelt_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gdelt_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gdelt_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_genomeark/", "public", "File Names from the AWS S3 genomeark Bucket: Genome Ark", "This dataset has file information from the AWS S3 genomeark bucket at https://genomeark.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome Ark\nName2: https://vgp.github.io\nDescription: The Genome Ark hosts genomic information for the Vertebrate Genomes Project (VGP) and other related projects. The VGP is an international collaboration that aims to generate complete and near error-free reference genomes for all extant vertebrate species. These genomes will be used to address fundamental questions in biology and disease, to identify species most genetically at risk for extinction, and to preserve genetic information of life.\n\nDocumentation: https://vertebrategenomesproject.org\nContact: Erich Jarvis \nManagedBy: The Genome10K community of scientists\nUpdateFrequency: Data will be continually updated as it is generated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_genomeark/index.json", "https://registry.opendata.aws/genomeark/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_genomeark.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_genomeark&showErrors=false&email=", "Amazon Web Services", "awsS3Files_genomeark"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_giab/", "public", "File Names from the AWS S3 giab Bucket: Genome in a Bottle on AWS: Latest data", "This dataset has file information from the AWS S3 giab bucket at https://giab.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome in a Bottle on AWS\nName2: Latest data\nDescription: Several reference genomes to enable translation of whole human genome sequencing to clinical practice.\n\nDocumentation: https://docs.opendata.aws/giab/readme.html\nContact: http://genomeinabottle.org/\nUpdateFrequency: New data are added as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_giab/index.json", "https://registry.opendata.aws/giab/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_giab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_giab&showErrors=false&email=", "Amazon Web Services", "awsS3Files_giab"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gmsdata/", "public", "File Names from the AWS S3 gmsdata Bucket: The Genome Modeling System", "This dataset has file information from the AWS S3 gmsdata bucket at https://gmsdata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Genome Modeling System\nName2: https://gmsdata.s3.amazonaws.com/INDEX.html\nDescription: The Genome Institute at Washington University has developed a high-throughput, fault-tolerant analysis information management system called the Genome Modeling System (GMS), capable of executing complex, interdependent, and automated genome analysis pipelines at a massive scale. The GMS framework provides detailed tracking of samples and data coupled with reliable and repeatable analysis pipelines. GMS includes a full system image with software and services, expandable from one workstation to a large compute cluster.\n\nDocumentation: https://github.com/genome/gms/wiki\nContact: https://github.com/genome/gms/issues\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gmsdata/index.json", "https://registry.opendata.aws/gmsdata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gmsdata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gmsdata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gmsdata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_grillo_openeew/", "public", "File Names from the AWS S3 grillo-openeew Bucket: OpenEEW: OpenEEW", "This dataset has file information from the AWS S3 grillo-openeew bucket at https://grillo-openeew.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenEEW\nName2: OpenEEW\nDescription: Grillo has developed an IoT-based earthquake early-warning system in Mexico and Chile and is now opening its entire archive of unprocessed accelerometer data to the world to encourage the development of new algorithms capable of rapidly detecting and characterizing earthquakes in real time.\n\nDocumentation: https://github.com/grillo/openeew\nContact: openeew@grillo.io\nManagedBy: [Grillo](https://grillo.io/)\nUpdateFrequency: Approximately every 10 minutes\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_grillo_openeew/index.json", "https://registry.opendata.aws/grillo-openeew/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_grillo_openeew.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_grillo_openeew&showErrors=false&email=", "Amazon Web Services", "awsS3Files_grillo_openeew"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_microbiome_project/", "public", "File Names from the AWS S3 human-microbiome-project Bucket: The Human Microbiome Project", "This dataset has file information from the AWS S3 human-microbiome-project bucket at https://human-microbiome-project.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Human Microbiome Project\nName2: https://aws.amazon.com/datasets/human-microbiome-project/\nDescription: The NIH-funded Human Microbiome Project (HMP) is a collaborative effort of over 300 scientists from more than 80 organizations to comprehensively characterize the microbial communities inhabiting the human body and elucidate their role in human health and disease. To accomplish this task, microbial community samples were isolated from a cohort of 300 healthy adult human subjects at 18 specific sites within five regions of the body (oral cavity, airways, urogenital track, skin, and gut). Targeted sequencing of the 16S bacterial marker gene and/or whole metagenome shotgun sequencing was performed for thousands of these samples. In addition, whole genome sequences were generated for isolate strains collected from human body sites to act as reference organisms for analysis. Finally, 16S marker and whole metagenome sequencing was also done on additional samples from people suffering from several disease conditions.\n\nDocumentation: https://commonfund.nih.gov/hmp\nContact: https://commonfund.nih.gov/hmp/related_activities\nUpdateFrequency: Uncertain\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_microbiome_project/index.json", "https://registry.opendata.aws/human-microbiome-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_microbiome_project.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_microbiome_project&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_microbiome_project"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_pangenomics/", "public", "File Names from the AWS S3 human-pangenomics Bucket: Human PanGenomics Project: Human PanGenomics Project", "This dataset has file information from the AWS S3 human-pangenomics bucket at https://human-pangenomics.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Human PanGenomics Project\nName2: Human PanGenomics Project\nDescription: This dataset includes sequencing data, assemblies, and analyses for the offspring of ten parent-offspring trios.\n\nDocumentation: https://github.com/human-pangenomics/hpgp-data\nContact: https://github.com/human-pangenomics/hpgp-data/issues\nUpdateFrequency: Data will be added and updated as technologies improve or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_pangenomics/index.json", "https://registry.opendata.aws/hpgp-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_pangenomics.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_pangenomics&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_pangenomics"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/", "public", "File Names from the AWS S3 ichangemycity-janaagraha-complaints-data-aws Bucket: IChangeMyCity Complaints Data from Janaagraha: IChangeMyCity Complaints", "This dataset has file information from the AWS S3 ichangemycity-janaagraha-complaints-data-aws bucket at https://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IChangeMyCity Complaints Data from Janaagraha\nName2: IChangeMyCity Complaints\nDescription: The [IChangeMyCity](https://www.ichangemycity.com) project provides insight into the complaints raised by citizens from diffent cities of India related to the issues in their neighbourhoods and the resolution of the same by the civic bodies.\n\nDocumentation: http://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/readme.html\nContact: data@janaagraha.org\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/index.json", "https://registry.opendata.aws/ichangemycity/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ichangemycity_janaagraha_complaints_data_aws&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ichangemycity_janaagraha_complaints_data_aws"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_irs_990_spreadsheets/", "public", "File Names from the AWS S3 irs-990-spreadsheets Bucket: IRS 990 Filings (Spreadsheets): Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form", "This dataset has file information from the AWS S3 irs-990-spreadsheets bucket at https://irs-990-spreadsheets.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IRS 990 Filings (Spreadsheets)\nName2: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form\nDescription: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form. Additional fields being added regularly.\n\nDocumentation: https://appliednonprofitresearch.com/documentation/irs-990-spreadsheets\nContact: [info@appliednonprofitresearch.com](info@appliednonprofitresearch.com)\nManagedBy: [Applied Nonprofit Research, LLC](https://www.appliednonprofitresearch.com/)\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_irs_990_spreadsheets/index.json", "https://registry.opendata.aws/990-spreadsheets/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_irs_990_spreadsheets.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_irs_990_spreadsheets&showErrors=false&email=", "Amazon Web Services", "awsS3Files_irs_990_spreadsheets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lab41openaudiocorpus/", "public", "File Names from the AWS S3 lab41openaudiocorpus Bucket: Voices Obscured in Complex Environmental Settings (VOiCES): wav audio files, orthographic transcriptions, and speaker ID", "This dataset has file information from the AWS S3 lab41openaudiocorpus bucket at https://lab41openaudiocorpus.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Voices Obscured in Complex Environmental Settings (VOiCES)\nName2: wav audio files, orthographic transcriptions, and speaker ID\nDescription: VOiCES is a speech corpus recorded in acoustically challenging settings, using distant microphone recording. Speech was recorded in real rooms with various acoustic features (reverb, echo, HVAC systems, outside noise, etc.). Adversarial noise, either television, music, or babble, was concurrently played with clean speech. Data was recorded using multiple microphones strategically placed throughout the room. The corpus includes audio recordings, orthographic transcriptions, and speaker labels.\n\nDocumentation: https://voices18.github.io/\nContact: https://github.com/voices18/utilities/issues\nUpdateFrequency: Data from two additional rooms will be added to the corpus Fall 2018.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lab41openaudiocorpus/index.json", "https://registry.opendata.aws/lab41-sri-voices/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lab41openaudiocorpus.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lab41openaudiocorpus&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lab41openaudiocorpus"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds/", "public", "File Names from the AWS S3 landsat-pds Bucket: Landsat 8: Scenes and metadata", "This dataset has file information from the AWS S3 landsat-pds bucket at https://landsat-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: Scenes and metadata\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds_inventory/", "public", "File Names from the AWS S3 landsat-pds-inventory Bucket: Landsat 8: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)", "This dataset has file information from the AWS S3 landsat-pds-inventory bucket at https://landsat-pds-inventory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds_inventory/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds_inventory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds_inventory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds_inventory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lofar_elais_n1/", "public", "File Names from the AWS S3 lofar-elais-n1 Bucket: LOFAR ELAIS-N1 cycle 2 observations on AWS: LOFAR ELAIS-N1 cycle 2 observations", "This dataset has file information from the AWS S3 lofar-elais-n1 bucket at https://lofar-elais-n1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: LOFAR ELAIS-N1 cycle 2 observations on AWS\nName2: LOFAR ELAIS-N1 cycle 2 observations\nDescription: These data correspond to the [International LOFAR Telescope](http://www.lofar.org/) observations of the sky field ELAIS-N1 (16:10:01 +54:30:36) during the cycle 2 of observations. There are 11 runs of about 8 hours each plus the corresponding observation of the calibration targets before and after the target field. The data are measurement sets ([MS](https://casa.nrao.edu/Memos/229.html)) containing the cross-correlated data and metadata divided in 371 frequency sub-bands per target centred at ~150 MHz.\n\nDocumentation: https://www.lofarcloud.uk/data.html\nContact: https://www.lofarcloud.uk/\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lofar_elais_n1/index.json", "https://registry.opendata.aws/lofar-elais-n1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lofar_elais_n1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lofar_elais_n1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lofar_elais_n1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mf_nwp_models/", "public", "File Names from the AWS S3 mf-nwp-models Bucket: Atmospheric Models from M\u00e9t\u00e9o-France: Atmospheric Models from M\u00e9t\u00e9o-France", "This dataset has file information from the AWS S3 mf-nwp-models bucket at https://mf-nwp-models.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Atmospheric Models from M\u00e9t\u00e9o-France\nName2: Atmospheric Models from M\u00e9t\u00e9o-France\nDescription: Global and high-resolution regional atmospheric models from M\u00e9t\u00e9o-France.\n\nDocumentation: https://mf-models-on-aws.org\nContact: contact@openmeteodata.com\nManagedBy: [OpenMeteoData](https://openmeteodata.com)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mf_nwp_models/index.json", "https://registry.opendata.aws/meteo-france-models/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mf_nwp_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mf_nwp_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mf_nwp_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_modis_pds/", "public", "File Names from the AWS S3 modis-pds Bucket: MODIS on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 modis-pds bucket at https://modis-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: MODIS on AWS\nName2: Imagery and metadata\nDescription: Select products from the Moderate Resolution Imaging Spectroradiometer (MODIS) managed by the U.S. Geological Survey and NASA.\n\nDocumentation: https://docs.opendata.aws/modis-pds/readme.html\nContact: https://github.com/AstroDigital/modis-ingestor/issues\nUpdateFrequency: New MODIS data is added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_modis_pds/index.json", "https://registry.opendata.aws/modis/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_modis_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_modis_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_modis_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_multimedia_commons/", "public", "File Names from the AWS S3 multimedia-commons Bucket: Multimedia Commons: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.", "This dataset has file information from the AWS S3 multimedia-commons bucket at https://multimedia-commons.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Multimedia Commons\nName2: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.\nDescription: The Multimedia Commons is a collection of audio and visual features computed for the nearly 100 million Creative Commons-licensed Flickr images and videos in the YFCC100M dataset from Yahoo! Labs, along with ground-truth annotations for selected subsets. The International Computer Science Institute (ICSI) and Lawrence Livermore National Laboratory are producing and distributing a core set of derived feature sets and annotations as part of an effort to enable large-scale video search capabilities. They have released this feature corpus into the public domain, under Creative Commons License 0, so it is free for anyone to use for any purpose.\n\nDocumentation: https://multimediacommons.wordpress.com/yfcc100m-core-dataset/\nContact: multimedia-commons@icsi.berkeley.edu\nUpdateFrequency: Not updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_multimedia_commons/index.json", "https://registry.opendata.aws/multimedia-commons/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_multimedia_commons.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_multimedia_commons&showErrors=false&email=", "Amazon Web Services", "awsS3Files_multimedia_commons"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mwapublic/", "public", "File Names from the AWS S3 mwapublic Bucket: Epoch of Reionization Dataset: Selected MWA EoR data (uvfits format) from 2013-2015", "This dataset has file information from the AWS S3 mwapublic bucket at https://mwapublic.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Epoch of Reionization Dataset\nName2: Selected MWA EoR data (uvfits format) from 2013-2015\nDescription: The data are from observations with the Murchison Widefield Array (MWA) which is a Square Kilometer Array (SKA) precursor in Western Australia. This particular dataset is from the Epoch of Reionization project which is a key science driver of the SKA. Nearly 2PB of such observations have been recorded to date, this is a small subset of that which has been exported from the MWA data archive in Perth and made available to the public on AWS. The data were taken to detect signatures of the first stars and galaxies forming and the effect of these early stars and galaxies on the evolution of the universe.\n\nDocumentation: http://danielcjacobs.com/research/epoch-of-reionization-aws-public-dataset/\nContact: brynah (at) phys.washington.edu\nManagedBy: University of washington Radio Cosmology Group\nUpdateFrequency: Irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mwapublic/index.json", "https://registry.opendata.aws/epoch-of-reionization/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mwapublic.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mwapublic&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mwapublic"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nanopore_human_wgs/", "public", "File Names from the AWS S3 nanopore-human-wgs Bucket: Nanopore Reference Human Genome: Nanopore Reference Human Genome", "This dataset has file information from the AWS S3 nanopore-human-wgs bucket at https://nanopore-human-wgs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Nanopore Reference Human Genome\nName2: Nanopore Reference Human Genome\nDescription: This dataset includes the sequencing and assembly of a reference standard human genome (GM12878) using the MinION nanopore sequencing instrument with the R9.4 1D chemistry.\n\nDocumentation: https://github.com/nanopore-wgs-consortium/NA12878\nContact: https://github.com/nanopore-wgs-consortium/NA12878/issues\nUpdateFrequency: Data will be added as methodology improves or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nanopore_human_wgs/index.json", "https://registry.opendata.aws/nanopore/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nanopore_human_wgs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nanopore_human_wgs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nanopore_human_wgs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_Landsat/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=Landsat/: NASA NEX: Landsat GLS (Global Land Survey)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=Landsat/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Landsat GLS (Global Land Survey)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_Landsat/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_Landsat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_Landsat&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_Landsat"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_LOCA/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=LOCA/: NASA NEX: Localized Constructed Analogs (LOCA)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=LOCA/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Localized Constructed Analogs (LOCA)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_LOCA/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_LOCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_LOCA&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_LOCA"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_MODIS/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=MODIS/: NASA NEX: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=MODIS/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_MODIS/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_MODIS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_MODIS&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_MODIS"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_DCP30/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-DCP30/: NASA NEX: Downscaled Climate Projections (NEX-DCP30)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-DCP30/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Downscaled Climate Projections (NEX-DCP30)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_DCP30/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_DCP30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_DCP30&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_DCP30"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_GDDP/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-GDDP/: NASA NEX: Global Daily Downscaled Projections (NEX-GDDP)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-GDDP/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Global Daily Downscaled Projections (NEX-GDDP)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_GDDP/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_GDDP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_GDDP&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_GDDP"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gefs_pds/", "public", "File Names from the AWS S3 noaa-gefs-pds Bucket: NOAA Global Ensemble Forecast System (GEFS): Project data files", "This dataset has file information from the AWS S3 noaa-gefs-pds bucket at https://noaa-gefs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Ensemble Forecast System (GEFS)\nName2: Project data files\nDescription: The Global Ensemble Forecast System (GEFS), previously known as the GFS Global ENSemble (GENS), is a weather forecast model made up of 21 separate forecasts, or ensemble members. The National Centers for Environmental Prediction (NCEP) started the GEFS to address the nature of uncertainty in weather observations, which is used to initialize weather forecast models. The GEFS attempts to quantify the amount of uncertainty in a forecast by generating an ensemble of multiple forecasts, each minutely different, or perturbed, from the original observations. With global coverage, GEFS is produced four times a day with weather forecasts going out to 16 days.\n\nDocumentation: https://docs.opendata.aws/noaa-gefs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GEFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GEFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gefs_pds/index.json", "https://registry.opendata.aws/noaa-gefs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gefs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gefs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gefs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_bdp_pds/", "public", "File Names from the AWS S3 noaa-gfs-bdp-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 GFS data", "This dataset has file information from the AWS S3 noaa-gfs-bdp-pds bucket at https://noaa-gfs-bdp-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_bdp_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_bdp_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_bdp_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_bdp_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_pds/", "public", "File Names from the AWS S3 noaa-gfs-pds Bucket: Unidata NOAA Global Forecast System (GFS) Model: A rolling four-week archive of 0.25 degree GFS data", "This dataset has file information from the AWS S3 noaa-gfs-pds bucket at https://noaa-gfs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Unidata NOAA Global Forecast System (GFS) Model\nName2: A rolling four-week archive of 0.25 degree GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks.\n\nDocumentation: https://docs.opendata.aws/noaa-gfs-pds/readme.html\nContact: https://www.ncdc.noaa.gov/contact\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_pds/index.json", "https://registry.opendata.aws/noaa-gfs-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfspara_pds/", "public", "File Names from the AWS S3 noaa-gfspara-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 FV3-based parallel version of the GFS", "This dataset has file information from the AWS S3 noaa-gfspara-pds bucket at https://noaa-gfspara-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 FV3-based parallel version of the GFS\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfspara_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfspara_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfspara_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfspara_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghcn_pds/", "public", "File Names from the AWS S3 noaa-ghcn-pds Bucket: NOAA Global Historical Climatology Network Daily (GHCN-D): Project data files", "This dataset has file information from the AWS S3 noaa-ghcn-pds bucket at https://noaa-ghcn-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Daily (GHCN-D)\nName2: Project data files\nDescription: Global Historical Climatology Network - Daily is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://docs.opendata.aws/noaa-ghcn-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncdc.noaa.gov/ghcn-daily-description). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghcn_pds/index.json", "https://registry.opendata.aws/noaa-ghcn/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghcn_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghcn_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghcn_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghe_pds/", "public", "File Names from the AWS S3 noaa-ghe-pds Bucket: NOAA Global Hydro Estimator (GHE): Project data files", "This dataset has file information from the AWS S3 noaa-ghe-pds bucket at https://noaa-ghe-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Hydro Estimator (GHE)\nName2: Project data files\nDescription: Global Hydro-Estimator provides a global mosaic imagery of rainfall estimates from multi-geostationary satellites, which currently includes GOES-16, GOES-15, Meteosat-8, Meteosat-11 and Himawari-8. The GHE products include: Instantaneous rain rate, 1 hour, 3 hour, 6 hour, 24 hour and also multi-day rainfall accumulation.\n\nDocumentation: https://www.ospo.noaa.gov/Products/atmosphere/ghe/index.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 15 minute-instantaneous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghe_pds/index.json", "https://registry.opendata.aws/noaa-ghe/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghe_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghe_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghe_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_global_hourly_pds/", "public", "File Names from the AWS S3 noaa-global-hourly-pds Bucket: NOAA Global Historical Climatology Network Hourly (GHCN-H): Project data files", "This dataset has file information from the AWS S3 noaa-global-hourly-pds bucket at https://noaa-global-hourly-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Hourly (GHCN-H)\nName2: Project data files\nDescription: Global Historical Climatology Network - Hourly is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: daily (Manually)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_global_hourly_pds/index.json", "https://registry.opendata.aws/noaa-ghcnh/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_global_hourly_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_global_hourly_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_global_hourly_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3NoaaGoes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nUse ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browser the files in buckets. This dataset is a solution to that problem for this bucket.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3NoaaGoes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3NoaaGoes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3NoaaGoes16&showErrors=false&email=", "NOAA", "awsS3NoaaGoes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket: GOES on AWS: GOES-16 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-16 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes16&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes17/", "public", "File Names from the AWS S3 noaa-goes17 Bucket: GOES on AWS: GOES-17 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes17 bucket at https://noaa-goes17.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-17 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes17/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes17&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes17"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_hrrr_pds/", "public", "File Names from the AWS S3 noaa-hrrr-pds Bucket: NOAA High-Resolution Rapid Refresh (HRRR) Model: A rolling one-week archive of HRRR data.", "This dataset has file information from the AWS S3 noaa-hrrr-pds bucket at https://noaa-hrrr-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA High-Resolution Rapid Refresh (HRRR) Model\nName2: A rolling one-week archive of HRRR data.\nDescription: The HRRR is a NOAA real-time 3-km resolution, hourly updated, cloud-resolving, convection-allowing atmospheric model, initialized by 3km grids with 3km radar assimilation. Radar data is assimilated in the HRRR every 15 min over a 1-h period adding further detail to that provided by the hourly data assimilation from the 13km radar-enhanced Rapid Refresh.\n\nDocumentation: https://docs.opendata.aws/noaa-hrrr-pds/readme.html\nContact: https://rapidrefresh.noaa.gov/hrrr/\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_hrrr_pds/index.json", "https://registry.opendata.aws/noaa-hrrr-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_hrrr_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_hrrr_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_hrrr_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_isd_pds/", "public", "File Names from the AWS S3 noaa-isd-pds Bucket: NOAA Integrated Surface Database (ISD): Project data files", "This dataset has file information from the AWS S3 noaa-isd-pds bucket at https://noaa-isd-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Integrated Surface Database (ISD)\nName2: Project data files\nDescription: The Integrated Surface Database (ISD) consists of global hourly and synoptic observations compiled from numerous sources into a gzipped fixed width format. ISD was developed as a joint activity within Asheville's Federal Climate Complex. The database includes over 35,000 stations worldwide, with some having data as far back as 1901, though the data show a substantial increase in volume in the 1940s and again in the early 1970s. Currently, there are over 14,000 \"active\" stations updated daily in the database. The total uncompressed data volume is around 600 gigabytes; however, it continues to grow as more data are added. ISD includes numerous parameters such as wind speed and direction, wind gust, temperature, dew point, cloud data, sea level pressure, altimeter setting, station pressure, present weather, visibility, precipitation amounts for various time periods, snow depth, and various other elements as observed by each station.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_isd_pds/index.json", "https://registry.opendata.aws/noaa-isd/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_isd_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_isd_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_isd_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nexrad_level2/", "public", "File Names from the AWS S3 noaa-nexrad-level2 Bucket: NEXRAD on AWS: NEXRAD Level II archive data", "This dataset has file information from the AWS S3 noaa-nexrad-level2 bucket at https://noaa-nexrad-level2.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II archive data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nexrad_level2/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nexrad_level2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nexrad_level2&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nexrad_level2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_pds/", "public", "File Names from the AWS S3 noaa-nwm-pds Bucket: NOAA National Water Model Short-Range Forecast: A rolling four week archive of NWM data.", "This dataset has file information from the AWS S3 noaa-nwm-pds bucket at https://noaa-nwm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Short-Range Forecast\nName2: A rolling four week archive of NWM data.\nDescription: The National Water Model (NWM) is a water resources model that simulates and forecasts water budget variables, including snowpack, evapotranspiration, soil moisture and streamflow, over the entire continental United States (CONUS). The model, launched in August 2016, is designed to improve the ability of NOAA to meet the needs of its stakeholders (forecasters, emergency managers, reservoir operators, first responders, recreationists, farmers, barge operators, and ecosystem and floodplain managers) by providing expanded accuracy, detail, and frequency of water information. It is operated by NOAA\u2019s Office of Water Prediction. This bucket contains a four-week rollover of the Short Range Forecast model output and the corresponding forcing data for the model. The model is forced with meteorological data from the High Resolution Rapid Refresh (HRRR) and the Rapid Refresh (RAP) models. The Short Range Forecast configuration cycles hourly and produces hourly deterministic forecasts of streamflow and hydrologic states out to 18 hours.\n\nDocumentation: https://docs.opendata.aws/noaa-nwm-pds/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_pds/index.json", "https://registry.opendata.aws/noaa-nwm-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_retro_v2_0_pds/", "public", "File Names from the AWS S3 noaa-nwm-retro-v2.0-pds Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 2.0.", "This dataset has file information from the AWS S3 noaa-nwm-retro-v2.0-pds bucket at https://noaa-nwm-retro-v2.0-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 2.0.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\n... (4 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_retro_v2_0_pds/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_retro_v2_0_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_retro_v2_0_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_retro_v2_0_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ofs_pds/", "public", "File Names from the AWS S3 noaa-ofs-pds Bucket: NOAA Operational Forecast System (OFS): Project data files", "This dataset has file information from the AWS S3 noaa-ofs-pds bucket at https://noaa-ofs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Operational Forecast System (OFS)\nName2: Project data files\nDescription: The Operational Forecast System (OFS) has been developed to serve the maritime user community. OFS was developed in a joint project of the NOAA/National Ocean Service (NOS)/Office of Coast Survey, the NOAA/NOS/Center for Operational Oceanographic Products and Services (CO-OPS), and the NOAA/National Weather Service (NWS)/National Centers for Environmental Prediction (NCEP) Central Operations (NCO). OFS generates water level, water current, water temperature, water salinity (except for the Great Lakes) and wind conditions nowcast and forecast guidance four times per day.\n\nDocumentation: https://docs.opendata.aws/noaa-ofs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA OFS site](https://tidesandcurrents.noaa.gov/models.html). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight and generates 6-hour nowcasts and 48-hour forecast guidance\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ofs_pds/index.json", "https://registry.opendata.aws/noaa-ofs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ofs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ofs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ofs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/", "public", "File Names from the AWS S3 nrel-pds-wtk Bucket with prefix=wtk-techno-economic/pywtk-data/: NREL Wind Integration National Dataset on AWS: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format", "This dataset has file information from the AWS S3 nrel-pds-wtk bucket at https://nrel-pds-wtk.s3.us-west-2.amazonaws.com/ with prefix=wtk-techno-economic/pywtk-data/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NREL Wind Integration National Dataset on AWS\nName2: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format\nDescription: The [Wind Integration National Dataset (WIND)](https://www.nrel.gov/grid/wind-toolkit.html) is an update and expansion of the Eastern Wind Integration Data Set and Western Wind Integration Data Set. It supports the next generation of wind integration studies.\n\nDocumentation: https://www.nrel.gov/grid/wind-toolkit.html\nContact: wind-toolkit@nrel.gov\nManagedBy: [National Renewable Energy Laboratory](https://www.nrel.gov/)\nUpdateFrequency: As Needed\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/index.json", "https://registry.opendata.aws/nrel-pds-wtk/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nwm_archive/", "public", "File Names from the AWS S3 nwm-archive Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 1.2.", "This dataset has file information from the AWS S3 nwm-archive bucket at https://nwm-archive.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 1.2.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nwm_archive/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nwm_archive.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nwm_archive&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nwm_archive"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nyc_tlc/", "public", "File Names from the AWS S3 nyc-tlc Bucket: New York City Taxi and Limousine Commission (TLC) Trip Record Data: CSV files containing NYC TLC trip data.", "This dataset has file information from the AWS S3 nyc-tlc bucket at https://nyc-tlc.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: New York City Taxi and Limousine Commission (TLC) Trip Record Data\nName2: CSV files containing NYC TLC trip data.\nDescription: Data of trips taken by taxis and for-hire vehicles in New York City.\n\nDocumentation: http://www.nyc.gov/html/tlc/html/about/trip_record_data.shtml\nContact: research@tlc.nyc.gov\nUpdateFrequency: As soon as new data is available to be shared publicly.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nyc_tlc/index.json", "https://registry.opendata.aws/nyc-tlc-trip-records-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nyc_tlc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nyc_tlc&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nyc_tlc"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_oicr_icgc_meta_metadata/", "public", "File Names from the AWS S3 oicr.icgc.meta Bucket with prefix=metadata/: ICGC on AWS: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README", "This dataset has file information from the AWS S3 oicr.icgc.meta bucket at https://oicr.icgc.meta.s3.us-east-1.amazonaws.com/ with prefix=metadata/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ICGC on AWS\nName2: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README\nDescription: The International Cancer Genome Consortium (ICGC) coordinates projects with the common aim of accelerating research into the causes and control of cancer. The PanCancer Analysis of Whole Genomes (PCAWG) study is an international collaboration to identify common patterns of mutation in whole genomes from ICGC. More than 2,400 consistently analyzed genomes corresponding to over 1,100 unique ICGC donors are now freely available on Amazon S3 to credentialed researchers subject to ICGC data sharing policies.\n\nDocumentation: https://dcc.icgc.org/icgc-in-the-cloud/aws\nContact: dcc-support@icgc.org\nUpdateFrequency: New data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_oicr_icgc_meta_metadata/index.json", "https://registry.opendata.aws/icgc/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_oicr_icgc_meta_metadata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_oicr_icgc_meta_metadata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_oicr_icgc_meta_metadata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ooni_data/", "public", "File Names from the AWS S3 ooni-data Bucket: Open Observatory of Network Interference: S3 bucket with data", "This dataset has file information from the AWS S3 ooni-data bucket at https://ooni-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open Observatory of Network Interference\nName2: S3 bucket with data\nDescription: A free software, global observation network for detecting censorship, surveillance and traffic manipulation on the internet.\n\nDocumentation: https://ooni.torproject.org/about/\nContact: https://ooni.torproject.org/get-involved/\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ooni_data/index.json", "https://registry.opendata.aws/ooni/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ooni_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ooni_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ooni_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openaq_fetches/", "public", "File Names from the AWS S3 openaq-fetches Bucket: OpenAQ: Minutely CSVs of global air quality fetched from sources all over the world", "This dataset has file information from the AWS S3 openaq-fetches bucket at https://openaq-fetches.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenAQ\nName2: Minutely CSVs of global air quality fetched from sources all over the world\nDescription: Global, aggregated physical air quality data from public data sources provided by government, research-grade and other sources. These awesome groups do the hard work of measuring these data and publicly sharing them, and our community makes them more universally-accessible to both humans and machines.\n\nDocumentation: https://openaq.org\nContact: info@openaq.org\nManagedBy: [OpenAQ](https://openaq.org)\nUpdateFrequency: Minutely\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openaq_fetches/index.json", "https://registry.opendata.aws/openaq/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openaq_fetches.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openaq_fetches&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openaq_fetches"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_opencitymodel/", "public", "File Names from the AWS S3 opencitymodel Bucket: Open City Model (OCM): Project data files", "This dataset has file information from the AWS S3 opencitymodel bucket at https://opencitymodel.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open City Model (OCM)\nName2: Project data files\nDescription: Open City Model is an initiative to provide cityGML data for all the buildings in the United States. By using other open datasets in conjunction with our own code and algorithms it is our goal to provide 3D geometries for every US building.\n\nDocumentation: https://github.com/opencitymodel/opencitymodel\nContact: https://github.com/opencitymodel/opencitymodel#contact\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_opencitymodel/index.json", "https://registry.opendata.aws/opencitymodel/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_opencitymodel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_opencitymodel&showErrors=false&email=", "Amazon Web Services", "awsS3Files_opencitymodel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openneuro_org/", "public", "File Names from the AWS S3 openneuro.org Bucket: OpenNeuro: All datasets", "This dataset has file information from the AWS S3 openneuro.org bucket at https://openneuro.org.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenNeuro\nName2: All datasets\nDescription: OpenNeuro is a database of openly-available brain imaging data. The data are shared according to a Creative Commons CC0 license, providing a broad range of brain imaging data to researchers and citizen scientists alike. The database primarily focuses on functional magnetic resonance imaging (fMRI) data, but also includes other imaging modalities including structural and diffusion MRI, electroencephalography (EEG), and magnetoencephalograpy (MEG). OpenfMRI is a project of the [Center for Reproducible Neuroscience at Stanford University](http://reproducibility.stanford.edu). Development of the OpenNeuro resource has been funded by the National Science Foundation, National Institute of Mental Health, National Institute on Drug Abuse, and the Laura and John Arnold Foundation.\n\nDocumentation: http://openneuro.org\nContact: Support form at https://openneuro.org\nUpdateFrequency: New datasets deposited every 4-6 days\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openneuro_org/index.json", "https://registry.opendata.aws/openneuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openneuro_org.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openneuro_org&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openneuro_org"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osm_pds/", "public", "File Names from the AWS S3 osm-pds Bucket: OpenStreetMap on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 osm-pds bucket at https://osm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap on AWS\nName2: Imagery and metadata\nDescription: OSM is a free, editable map of the world, created and maintained by volunteers. Regular OSM data archives are made available in Amazon S3.\n\nDocumentation: https://docs.opendata.aws/osm-pds/readme.html\nContact: https://github.com/mojodna/osm-pds-pipelines/issues\nUpdateFrequency: Data is updated weekly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osm_pds/index.json", "https://registry.opendata.aws/osm/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osmlr/", "public", "File Names from the AWS S3 osmlr Bucket: OpenStreetMap Linear Referencing: Manifest and data files", "This dataset has file information from the AWS S3 osmlr bucket at https://osmlr.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap Linear Referencing\nName2: Manifest and data files\nDescription: OSMLR a linear referencing system built on top of OpenStreetMap. OSM has great information about roads around the world and their interconnections, but it lacks the means to give a stable identifier to a stretch of roadway. OSMLR provides a stable set of numerical IDs for every 1 kilometer stretch of roadway around the world. In urban areas, OSMLR IDs are attached to each block of roadways between significant intersections.\n\nDocumentation: https://github.com/opentraffic/osmlr/blob/master/docs/intro.md\nContact: https://github.com/opentraffic/osmlr/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osmlr/index.json", "https://registry.opendata.aws/osmlr/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osmlr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osmlr&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osmlr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_qiime2_data/", "public", "File Names from the AWS S3 qiime2-data Bucket: QIIME 2 User Tutorial Datasets: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs", "This dataset has file information from the AWS S3 qiime2-data bucket at https://qiime2-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: QIIME 2 User Tutorial Datasets\nName2: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs\nDescription: QIIME 2 is a powerful, extensible, and decentralized microbiome analysis package with a focus on data and analysis transparency. QIIME 2 enables researchers to start an analysis with raw DNA sequence data and finish with publication-quality figures and statistical results. This dataset contains the user docs (and related datasets) for QIIME 2.\n\nDocumentation: https://docs.qiime2.org\nContact: https://forum.qiime2.org\nManagedBy: The QIIME 2 Development Team\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_qiime2_data/index.json", "https://registry.opendata.aws/qiime2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_qiime2_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_qiime2_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_qiime2_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_safecast_opendata_public_us_east_1/", "public", "File Names from the AWS S3 safecast-opendata-public-us-east-1 Bucket: Safecast: Bulk exports of air and radiation measurements", "This dataset has file information from the AWS S3 safecast-opendata-public-us-east-1 bucket at https://safecast-opendata-public-us-east-1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Safecast\nName2: Bulk exports of air and radiation measurements\nDescription: An ongoing collection of radiation and air quality measurements taken by devices involved in the Safecast project.\n\nDocumentation: https://github.com/Safecast/safecastapi/wiki/Data-Sets\nContact: https://groups.google.com/forum/#!forum/safecast-devices\nManagedBy: [Safecast](https://safecast.org/)\nUpdateFrequency: Continuous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_safecast_opendata_public_us_east_1/index.json", "https://registry.opendata.aws/safecast/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_safecast_opendata_public_us_east_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_safecast_opendata_public_us_east_1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_safecast_opendata_public_us_east_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s1_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s1-l1c/: Sentinel-1: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s1-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C\nDescription: [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1) is a pair of European radar imaging (SAR) satellites launched in 2014 and 2016. Its 6 days revisit cycle and ability to observe through clouds makes it perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. GRD data is available globally since January 2017.\n\nDocumentation: https://roda.sentinel-hub.com/sentinel-s1-l1c/GRD/readme.html\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s1_l1c/index.json", "https://registry.opendata.aws/sentinel-1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s1_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s1_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s1_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l1c/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l1c/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l2a/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l2a/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l2a/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l2a/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l2a&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l2a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel1_slc_seasia_pds/", "public", "File Names from the AWS S3 sentinel1-slc-seasia-pds Bucket: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan", "This dataset has file information from the AWS S3 sentinel1-slc-seasia-pds bucket at https://sentinel1-slc-seasia-pds.s3.ap-southeast-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan\nName2: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan\nDescription: The S1 Single Look Complex (SLC) dataset contains Synthetic Aperture Radar (SAR) data in the C-Band wavelength. The SAR sensors are installed on a two-satellite (Sentinel-1A and Sentinel-1B) constellation orbiting the Earth with a combined revisit time of six days, operated by the European Space Agency. The S1 SLC data are a Level-1 product that collects radar amplitude and phase information in all-weather, day or night conditions, which is ideal for studying natural hazards and emergency response, land applications, oil spill monitoring, sea-ice conditions, and associated climate change effects.\n\nDocumentation: https://github.com/earthobservatory/sentinel1-opds/\nContact: https://github.com/earthobservatory/sentinel1-opds/\nManagedBy: [Earth Observatory of Singapore, Nanyang Technological University](https://earthobservatory.sg)\nUpdateFrequency: S1 SLC data for the region of interest will be updated regularly, as it becomes available on the Alaska Satellite Facility endpoint.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel1_slc_seasia_pds/index.json", "https://registry.opendata.aws/sentinel1-slc-seasia-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel1_slc_seasia_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel1_slc_seasia_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel1_slc_seasia_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_silo_open_data/", "public", "File Names from the AWS S3 silo-open-data Bucket: SILO climate data on AWS: SILO open data", "This dataset has file information from the AWS S3 silo-open-data bucket at https://silo-open-data.s3.ap-southeast-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SILO climate data on AWS\nName2: SILO open data\nDescription: [SILO](https://www.longpaddock.qld.gov.au/silo) is a database of Australian [climate data](https://www.longpaddock.qld.gov.au/silo/about/climate-variables) from 1889 to the present. It provides continuous, daily time-step [data products](https://www.longpaddock.qld.gov.au/silo/about/data-products) in ready-to-use [formats](https://www.longpaddock.qld.gov.au/silo/about/file-formats-and-samples) for research and operational applications. Gridded SILO data in annual NetCDF format are on AWS. Point data are available from the [SILO website](https://www.longpaddock.qld.gov.au/silo/).\n\nDocumentation: https://www.longpaddock.qld.gov.au/silo/gridded-data\nContact: https://www.longpaddock.qld.gov.au/silo/contact-us\nManagedBy: Queensland Government\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_silo_open_data/index.json", "https://registry.opendata.aws/silo/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_silo_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_silo_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_silo_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_softwareheritage/", "public", "File Names from the AWS S3 softwareheritage Bucket: Software Heritage Graph Dataset: Software Heritage Graph Dataset", "This dataset has file information from the AWS S3 softwareheritage bucket at https://softwareheritage.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Software Heritage Graph Dataset\nName2: Software Heritage Graph Dataset\nDescription: [Software Heritage](https://www.softwareheritage.org/) is the largest existing public archive of software source code and accompanying development history. The Software Heritage Graph Dataset is a fully deduplicated Merkle DAG representation of the Software Heritage archive.\n\nDocumentation: https://wiki.softwareheritage.org/wiki/Graph_Dataset_on_Amazon_Athena\nContact: swh-devel@inria.fr\nUpdateFrequency: Data is updated yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_softwareheritage/index.json", "https://registry.opendata.aws/software-heritage/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_softwareheritage.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_softwareheritage&showErrors=false&email=", "Amazon Web Services", "awsS3Files_softwareheritage"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_spacenet_dataset/", "public", "File Names from the AWS S3 spacenet-dataset Bucket: SpaceNet: Imagery and metadata in a S3 bucket", "This dataset has file information from the AWS S3 spacenet-dataset bucket at https://spacenet-dataset.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SpaceNet\nName2: Imagery and metadata in a S3 bucket\nDescription: SpaceNet, launched in August 2016 as an open innovation project offering a repository of freely available imagery with co-registered map features. Before SpaceNet, computer vision researchers had minimal options to obtain free, precision-labeled, and high-resolution satellite imagery. Today, SpaceNet hosts datasets developed by its own team, along with data sets from projects like IARPA\u2019s Functional Map of the World (fMoW).\n\nDocumentation: https://spacenetchallenge.github.io\nContact: https://github.com/SpaceNetChallenge/utilities/issues\nManagedBy: [SpaceNet](https://spacenet.ai/)\nUpdateFrequency: New imagery and features are added quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_spacenet_dataset/index.json", "https://registry.opendata.aws/spacenet/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_spacenet_dataset.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_spacenet_dataset&showErrors=false&email=", "Amazon Web Services", "awsS3Files_spacenet_dataset"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_unidata_nexrad_level2_chunks/", "public", "File Names from the AWS S3 unidata-nexrad-level2-chunks Bucket: NEXRAD on AWS: NEXRAD Level II real-time data", "This dataset has file information from the AWS S3 unidata-nexrad-level2-chunks bucket at https://unidata-nexrad-level2-chunks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II real-time data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_unidata_nexrad_level2_chunks/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_unidata_nexrad_level2_chunks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_unidata_nexrad_level2_chunks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_unidata_nexrad_level2_chunks"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_usgs_lidar_public/", "public", "File Names from the AWS S3 usgs-lidar-public Bucket: USGS 3DEP LiDAR Point Clouds: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.", "This dataset has file information from the AWS S3 usgs-lidar-public bucket at https://usgs-lidar-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: USGS 3DEP LiDAR Point Clouds\nName2: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.\nDescription: The goal of the [USGS 3D Elevation Program ](https://www.usgs.gov/core-science-systems/ngp/3dep) (3DEP) is to collect elevation data in the form of light detection and ranging (LiDAR) data over the conterminous United States, Hawaii, and the U.S. territories, with data acquired over an 8-year period. This dataset provides two realizations of the 3DEP point cloud data. The first resource is a public access organization provided in [Entwine Point Tiles](https://entwine.io/entwine-point-tile.html) format, which a lossless, full-density, streamable octree based on [LASzip](https://laszip.org) (LAZ) encoding. The second resource is a [Requester Pays](https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html) of the same data in LAZ (Compressed LAS) format. Resource names in both buckets correspond to the USGS project names.\n\nDocumentation: https://github.com/hobu/usgs-lidar/\nContact: https://github.com/hobu/usgs-lidar\nManagedBy: [Hobu, Inc.](https://hobu.co)\nUpdateFrequency: Periodically\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_usgs_lidar_public/index.json", "https://registry.opendata.aws/usgs-lidar/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_usgs_lidar_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_usgs_lidar_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_usgs_lidar_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_web_language_models/", "public", "File Names from the AWS S3 web-language-models Bucket: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl): Parallel Corpora to/from English for all official EU languages", "This dataset has file information from the AWS S3 web-language-models bucket at https://web-language-models.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl)\nName2: Parallel Corpora to/from English for all official EU languages\nDescription: ParaCrawl is a set of large parallel corpora to/from English for all official EU languages by a broad web crawling effort. State-of-the-art methods are applied for the entire processing chain from identifying web sites with translated text all the way to collecting, cleaning and delivering parallel corpora that are ready as training data for CEF.AT and translation memories for DG Translation.\n\nDocumentation: https://paracrawl.eu/releases.html\nContact: For questions regarding the datasets contact Kenneth Heafield, email kheafiel@inf.ed.ac.uk. For reporting any issues about bitextor pipeline visit https://github.com/bitextor/bitextor/issues.\nManagedBy: [ParaCrawl](https://paracrawl.eu)\nUpdateFrequency: New data is added according to ParaCrawl release schedule.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_web_language_models/index.json", "https://registry.opendata.aws/paracrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_web_language_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_web_language_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_web_language_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_xiph_media/", "public", "File Names from the AWS S3 xiph-media Bucket: Xiph.Org Test Media: Video and imagery data", "This dataset has file information from the AWS S3 xiph-media bucket at https://xiph-media.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Xiph.Org Test Media\nName2: Video and imagery data\nDescription: Uncompressed video used for video compression and video processing research.\n\nDocumentation: https://media.xiph.org/aws.html\nContact: Thomas Daede tdaede@xiph.org\nUpdateFrequency: New videos are added when contributors submit them.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_xiph_media/index.json", "https://registry.opendata.aws/xiph-media/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_xiph_media.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_xiph_media&showErrors=false&email=", "Amazon Web Services", "awsS3Files_xiph_media"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ycb_benchmarks/", "public", "File Names from the AWS S3 ycb-benchmarks Bucket: Yale-CMU-Berkeley (YCB) Object and Model Set: Project data files", "This dataset has file information from the AWS S3 ycb-benchmarks bucket at https://ycb-benchmarks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Yale-CMU-Berkeley (YCB) Object and Model Set\nName2: Project data files\nDescription: This project primarily aims to facilitate performance benchmarking in robotics research. The dataset provides mesh models, RGB, RGB-D and point cloud images of over 80 objects. The physical objects are also available via the [YCB benchmarking project](http://www.ycbbenchmarks.com/). The data are collected by two state of the art systems: UC Berkley's scanning rig and the Google scanner. The UC Berkley's scanning rig data provide meshes generated with Poisson reconstruction, meshes generated with volumetric range image integration, textured versions of both meshes, Kinbody files for using the meshes with OpenRAVE, 600 High-resolution RGB images, 600 RGB-D images, and 600 point cloud images for each object. The Google scanner data provides 3 meshes with different resolutions (16k, 64k, and 512k polygons), textured versions of each mesh, Kinbody files for using the meshes with OpenRAVE.\n\nDocumentation: http://www.ycbbenchmarks.com/\nContact: bcalli@wpi.edu\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ycb_benchmarks/index.json", "https://registry.opendata.aws/ycb-benchmarks/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ycb_benchmarks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ycb_benchmarks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ycb_benchmarks"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the June 2020 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.graph", "", "", "public", "GLOBEC NEP Vertical Plankton Tow (VPT) Data, 1997-2001", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nCalifornia Current Program\nVertical Plankton Tow (VPT) Data\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10181&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/vpt%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/vpt.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ncast_no (Cast Number Within the Cruise)\nstation_id\nabund_m3 (Abundance, count m-3)\ncomments\ncounter_id\nd_n_flag (Day/Night Flag)\ngear_area (Mouth Area of Net, m2)\ngear_mesh (Net's Mesh Size, mm)\ngear_type\ngenus_species\nlife_stage\nlocal_code\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecVpt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecVpt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecVpt/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecVpt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecVpt&showErrors=false&email=", "GLOBEC", "erdGlobecVpt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://usgodae.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, the EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\nBeach Monitoring Quality Assurance Project Plan (CWBMONQAPP002):\nhttps://www.pacioos.hawaii.edu/wp-content/uploads/2016/08/Beach_Monitoring_QAPP_CWBMONQAPP002_120507.pdf\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwb_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwb_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwb_water_quality/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/cwb_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwb_water_quality&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "cwb_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.graph", "", "", "public", "HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii", "The Hawaii Institute of Marine Biology (HIMB) automatic weather station (AWS) records hourly measurements of precipitation, air temperature, wind speed and direction, and irradiance. Sensors include an Eppley 295-385 nm ultraviolet (UV) radiometer, a LiCor 200SZ Pyranometer, and a LiCor Quantameter (400-700 nm). The sensors are located on the roof of HIMB's Coral Reef Ecology Laboratory (Point Lab) on Moku o Loe (Coconut Island) in Kaneohe Bay on the windward (eastern) coast of Oahu in Hawaii. An accompanying sea water temperature sensor is located less than 10 m offshore of the weather station at a shallow depth of approximately 1 m.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HIMB: HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nsea_water_temperature (water temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nwind_from_direction_std (standard deviation of wind direction (processed), degrees)\nrainfall_amount (total rainfall (processed), mm)\nshortwave_radiation (downwelling shortwave radiation (processed), W/m2)\nultraviolet_radiation (ultraviolet radiation (processed), W/m2)\nphotosynthetic_radiation (photosynthetically active radiation (processed), umol m-2 s-1)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_atn (QARTOD Attenuated Signal Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (139 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HIMB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HIMB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HIMB/index.json", "https://www.pacioos.hawaii.edu/weather/obs-mokuoloe/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HIMB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HIMB&showErrors=false&email=", "Hawaii Institute of Marine Biology (HIMB)", "AWS-HIMB"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.graph", "", "", "public", "Hui O Ka Wai Ola Water Quality Data", "The goal of the Hui O Ka Wai Ola (Association Of The Living Waters) citizen-science based water quality program is to increase the capacity for monitoring water quality in Maui coastal waters by generating reliable data to assess long-term water-quality conditions and detect temporal trends. These data augment the data produced by the Hawaii Department of Health (DOH) Clean Water Branch (CWB) beach monitoring program on Maui.\n \nData are collected and analyzed every two or three weeks for physical and chemical parameters, including ocean salinity, pH, temperature, organic nutrients (nitrogen and phosphorous compounds), dissolved oxygen (DO), and total suspended sediment (TSS). Some water samples are immediately tested at mobile labs while others are processed for testing at University of Hawaii and/or other labs.\n \nUsers of these data should cite the following publication:\n \nFalinski, Kim, Dana Reed, Tova Callender, Emily Fielding, Robin Newbold, and Alana Yurkanin. (2018). Hui O Ka Wai Ola Water Quality Data [Data set]. Zenodo. \"http://doi.org/10.5281/zenodo.1173717\"\n \nFor further information, please visit:\nhttps://www.huiokawaiola.com\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nlocation_id (sampling site identifier)\nlocation_name\nsample_id (sample identifier)\nsession_id (sampling session identifier)\nwater_temperature (Celsius)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hui_water_quality/index.json", "https://www.huiokawaiola.com", "http://upwell.pfeg.noaa.gov/erddap/rss/hui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hui_water_quality&showErrors=false&email=", "Hui O Ka Wai Ola", "hui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitored water quality at several beaches across the island of Maui in the State of Hawaii during the years 2010-2016. This community-based monitoring effort provided valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites were also monitored for harmful bacteria levels of Enterococcus through 2014-06-26. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours.\n\nData were managed through an online repository, the Coral Reef Monitoring Data Portal (now defunct), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection was coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/maui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/maui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/maui_water_quality/index.json", "https://coral.org/maui/", "http://upwell.pfeg.noaa.gov/erddap/rss/maui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=maui_water_quality&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "maui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys. See\nhttps://www.ndbc.noaa.gov/measdes.shtml for a description of the measurements.\n\nThe source data from NOAA NDBC has different column names, different units,\nand different missing values in different files, and other problems\n(notably, lots of rows with duplicate or different values for the same time\npoint). This dataset is a standardized, reformatted, and lightly edited\nversion of that source data, created by NOAA NMFS SWFSC ERD (email:\nerd.data at noaa.gov). Before 2020-01-29, this dataset only had the data\nthat was closest to a given hour, rounded to the nearest hour. Now, this\ndataset has all of the data available from NDBC with the original time\nvalues. If there are multiple source rows for a given buoy for a given\ntime, only the row with the most non-NaN data values is kept. If there is\na gap in the data, a row of missing values is inserted (which causes a nice\ngap when the data is graphed). Also, some impossible data values are\nremoved, but this data is not perfectly clean. This dataset is now updated\nevery 5 minutes.\n\nThis dataset has both historical data (quality controlled, before\n2020-06-01T00:00:00Z) and near real time data (less quality controlled,\nwhich may change at any time, from 2020-06-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Identifier)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.graph", "", "", "public", "NEFSC Continuous Plankton Recorder", "A summary for the data\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ncruise\nsample\nlatitude (degrees_north)\nlongitude (degrees_east)\nphyto_color_indx (Phytoplankton Color Index)\nmarmap_tax_code (Marmap Taxonomic Code)\nmarmap_stage_code\nabundance (per 100 cubic meters)\nlife_stage\ntaxonomic_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/wocecpr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/wocecpr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/wocecpr/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "http://upwell.pfeg.noaa.gov/erddap/rss/wocecpr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=wocecpr&showErrors=false&email=", "NEFSC", "wocecpr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "", "public", "North Pacific High, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.graph", "", "", "public", "OSMC Argo Profile data", "OSMC Argo Profile data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\norganization_name\ncountry_name\nplatform_type_name\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nparameter_name\ndaily_obs_count\nobservation_depth\nobservation_value\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_PROFILERS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_PROFILERS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_PROFILERS/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_PROFILERS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_PROFILERS&showErrors=false&email=", "OSMC", "OSMC_PROFILERS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.graph", "", "", "public", "OSMC normalized observations from GTS", "OSMC normalized In-situ Real time GTS data\n\ncdm_data_type = Point\nVARIABLES:\nPLATFORM_CODE (Station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform\nparameter\nOBSERVATION_VALUE\nOBSERVATION_DEPTH\nCOUNTRY_NAME\norganization_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_Points_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_Points_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_Points/index.json", "https://www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_Points.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_Points&showErrors=false&email=", "OSMC", "OSMC_Points"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001.graph", "", "", "public", "PacIOOS Beach Camera 001: Waikiki, Oahu, Hawaii", "A digital camera on top of the Sheraton Waikiki hotel was used to photograph the shoreline of Waikiki beach along the South Shore of the island of Oahu in the State of Hawaii. The oblique camera view presented here captures the shoreline leading southeast towards Diamond Head crater. It operated for over 4.5 years between February 5, 2009 and October 13, 2013. Capturing hourly snapshots at a set vantage point during the local daytime hours of 6:00 AM or 7:00 AM to 5:00 PM, these images are useful for tracking beach dynamics such as wave run-up, sand movement, and turbidity plumes over time. The camera was mounted on top of a 3 meter wall extending above the roof surface for a total height of 93 meters above ground level or 96 meters above mean sea level. See also BEACHCAM-002 for an alternate camera view from the same location pointing directly downwards.\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (m)\naboveGround (Height, m)\nurl\nname (File Name)\nsize (bytes)\nfileType (File Type)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/BEACHCAM-001_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/BEACHCAM-001_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/BEACHCAM-001/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/BEACHCAM-001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=BEACHCAM-001&showErrors=false&email=", "University of Hawaii", "BEACHCAM-001"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_4"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_2/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_2&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_6/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_6&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_7/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_7&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_7"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_8/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_8&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_9/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_9&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.graph", "", "", "public", "PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-04 is located in Hilo Bay on the east side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-04: PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-04/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-hilo/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-04&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-04"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.graph", "", "", "public", "PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-05 is located in Pelekane Bay near Kawaihae Harbor on the west side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-05: PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-05/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-pelekane/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-05&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-05"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.graph", "", "", "public", "PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii", "The Pacific Islands Ocean Observing System (PacIOOS) operates a Davis Instruments automatic weather station (AWS) near the entrance to Honolulu Harbor on the leeward (western) coast of Oahu in Hawaii to aid with navigation. The station records measurements every 5 minutes of air temperature, wind speed and direction, precipitation, relative humidity, and air pressure. Sensors are located at Pier 1, installed on a tower at an elevation of 64 feet (19.5 meters) above sea level. The station is owned by the Hawaii Pilots Association (HPA). PacIOOS maintains the station and provides data access.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HNLPier1: PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nrainfall_rate (rain rate (processed), mm/h)\nrelative_humidity (relative humidity (processed), %)\nair_pressure (air pressure (processed), millibars)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_gap (QARTOD Gap Test (processed), 0)\nair_temperature_qc_syn (QARTOD Syntax Test (processed), 0)\nair_temperature_qc_loc (QARTOD Location Test (processed), 0)\nair_temperature_qc_rng (QARTOD Gross Range Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_spk (QARTOD Spike Test (processed), 0)\n... (92 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HNLPier1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HNLPier1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HNLPier1/index.json", "https://www.pacioos.hawaii.edu/weather/obs-honolulu/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HNLPier1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HNLPier1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "AWS-HNLPier1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "https://tidesandcurrents.noaa.gov/gomoos.html", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/main.aspx?Division=PRD&ParentMenuId=147&id=1221", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2017, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2017, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2017, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"] + ] + } + } + recorded_at: 2020-07-15 22:19:49 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 diff --git a/tests/vcr_cassettes/griddap_fixes_user_inputs_1.yml b/tests/vcr_cassettes/griddap_fixes_user_inputs_1.yml new file mode 100644 index 0000000..03612e6 --- /dev/null +++ b/tests/vcr_cassettes/griddap_fixes_user_inputs_1.yml @@ -0,0 +1,679 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/info/erdQMekm14day/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:14:35 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=erdQMekm14day_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "Grid"], + ["attribute", "NC_GLOBAL", "contact", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "Conventions", "String", "CF-1.6, COARDS, ACDD-1.3"], + ["attribute", "NC_GLOBAL", "creation_date", "String", "Tue Jul 14 23:13:27 2020"], + ["attribute", "NC_GLOBAL", "creator_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "creator_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "defaultGraphQuery", "String", "&.draw=vectors"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "360.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "75.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "-75.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_resolution", "double", "0.25"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "360.0"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_lon_resolution", "double", "0.25"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_max", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_min", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_positive", "String", "up"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_units", "String", "m"], + ["attribute", "NC_GLOBAL", "history", "String", "1-day geographic projection composites, created by erd.data@noaa.gov from L2 swath data obtained from NOAA|NESDIS, are used to create multi-day composites via the composite script in the dalesLibAscatB.py library by erd.data@noaa.gov at NOAA NMFS SWFSC ERD."], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "https://coastwatch.pfeg.noaa.gov/infog/QM_uekm_las.html"], + ["attribute", "NC_GLOBAL", "institution", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "keywords", "String", "advanced, altitude, ascat, circulation, coast, coastwatch, current, data, degrees, diffusivity, driven, Earth Science > Oceans > Ocean Circulation > Wind-Driven Circulation, eumetsat, european, exploitation, global, meteorological, metop, near, near real time, noaa, node, ocean, oceans, organisation, QMuekm, real, satellites, scatterometer, time, wcn, west, wind, wind-driven, zonal"], + ["attribute", "NC_GLOBAL", "license", "String", "The data may be used and redistributed for free but is not intended\nfor legal use, since it may contain inaccuracies. Neither the data\nContributor, ERD, NOAA, nor the United States Government, nor any\nof their employees or contractors, makes any warranty, express or\nimplied, including warranties of merchantability and fitness for a\nparticular purpose, or assumes any legal liability for the accuracy,\ncompleteness, or usefulness, of this information."], + ["attribute", "NC_GLOBAL", "naming_authority", "String", "gov.noaa.pfeg.coastwatch"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "75.0"], + ["attribute", "NC_GLOBAL", "project", "String", "CoastWatch (https://coastwatch.noaa.gov/)"], + ["attribute", "NC_GLOBAL", "publisher_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "publisher_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "publisher_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "publisher_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "references", "String", "NOAA/NESDIS https://manati.star.nesdis.noaa.gov/products/ASCAT.php ."], + ["attribute", "NC_GLOBAL", "source_data", "String", "14-day composite mean of files: QM2020196_2020196_uekm.grd.gz, QM2020195_2020195_uekm.grd.gz, QM2020194_2020194_uekm.grd.gz, QM2020193_2020193_uekm.grd.gz, QM2020192_2020192_uekm.grd.gz, QM2020191_2020191_uekm.grd.gz, QM2020190_2020190_uekm.grd.gz, QM2020189_2020189_uekm.grd.gz, QM2020188_2020188_uekm.grd.gz, QM2020187_2020187_uekm.grd.gz, QM2020186_2020186_uekm.grd.gz, QM2020185_2020185_uekm.grd.gz, QM2020184_2020184_uekm.grd.gz, QM2020183_2020183_uekm.grd.gz"], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "(local files)"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "-75.0"], + ["attribute", "NC_GLOBAL", "spatial_resolution", "String", "0.25 degree"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v70"], + ["attribute", "NC_GLOBAL", "summary", "String", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is a 14 day composite.)"], + ["attribute", "NC_GLOBAL", "testOutOfDate", "String", "now-10days"], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2020-07-08T00:00:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "2013-08-27T00:00:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "Wind Diffusivity Current, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (14 Day)"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "0.0"], + ["dimension", "time", "", "double", "nValues=2496, evenlySpaced=false, averageSpacing=1 day 0h 6m 56s"], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "1.3775616E9, 1.5941664E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Centered Time"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["dimension", "altitude", "", "double", "nValues=1, onlyValue=0.0"], + ["attribute", "altitude", "_CoordinateAxisType", "String", "Height"], + ["attribute", "altitude", "_CoordinateZisPositive", "String", "up"], + ["attribute", "altitude", "actual_range", "double", "0.0, 0.0"], + ["attribute", "altitude", "axis", "String", "Z"], + ["attribute", "altitude", "ioos_category", "String", "Location"], + ["attribute", "altitude", "long_name", "String", "Altitude"], + ["attribute", "altitude", "positive", "String", "up"], + ["attribute", "altitude", "standard_name", "String", "altitude"], + ["attribute", "altitude", "units", "String", "m"], + ["dimension", "latitude", "", "double", "nValues=601, evenlySpaced=true, averageSpacing=0.25"], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "double", "-75.0, 75.0"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "coordsys", "String", "geographic"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "point_spacing", "String", "even"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["dimension", "longitude", "", "double", "nValues=1441, evenlySpaced=true, averageSpacing=0.25"], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "double", "0.0, 360.0"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "coordsys", "String", "geographic"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "point_spacing", "String", "even"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "u_current", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "u_current", "_FillValue", "float", "-99999.0"], + ["attribute", "u_current", "colorBarMaximum", "double", "4.0"], + ["attribute", "u_current", "colorBarMinimum", "double", "-4.0"], + ["attribute", "u_current", "coordsys", "String", "geographic"], + ["attribute", "u_current", "ioos_category", "String", "Currents"], + ["attribute", "u_current", "long_name", "String", "Zonal Wind Diffusivity Current"], + ["attribute", "u_current", "missing_value", "float", "-99999.0"], + ["attribute", "u_current", "units", "String", "m s-1"], + ["variable", "v_current", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "v_current", "_FillValue", "float", "-99999.0"], + ["attribute", "v_current", "colorBarMaximum", "double", "4.0"], + ["attribute", "v_current", "colorBarMinimum", "double", "-4.0"], + ["attribute", "v_current", "coordsys", "String", "geographic"], + ["attribute", "v_current", "ioos_category", "String", "Currents"], + ["attribute", "v_current", "long_name", "String", "Meridional Wind Diffusivity Current"], + ["attribute", "v_current", "missing_value", "float", "-99999.0"], + ["attribute", "v_current", "units", "String", "m s-1"], + ["variable", "mod_current", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "mod_current", "_FillValue", "float", "-99999.0"], + ["attribute", "mod_current", "colorBarMaximum", "double", "0.05"], + ["attribute", "mod_current", "colorBarMinimum", "double", "0.0"], + ["attribute", "mod_current", "colorBarPalette", "String", "WhiteRedBlack"], + ["attribute", "mod_current", "coordsys", "String", "geographic"], + ["attribute", "mod_current", "ioos_category", "String", "Currents"], + ["attribute", "mod_current", "long_name", "String", "Modulus of Wind Diffusivity Current"], + ["attribute", "mod_current", "missing_value", "float", "-99999.0"], + ["attribute", "mod_current", "units", "String", "m s-1"] + ] + } + } + recorded_at: 2020-07-15 22:14:23 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:14:35 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:14:35 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://upwell.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012.graph", "", "", "public", "AIS Ship Traffic: Hawaii: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_hi_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_hi_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_hi_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_hi_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_hi_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_hi_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012.graph", "", "", "public", "AIS Ship Traffic: Johnston Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Johnston Atoll. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_john_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_john_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_john_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_john_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_john_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_john_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012.graph", "", "", "public", "AIS Ship Traffic: Mariana and Wake: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Mariana Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_mari_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_mari_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_mari_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_mari_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_mari_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_mari_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012.graph", "", "", "public", "AIS Ship Traffic: Rose Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Rose Atoll in American Samoa. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_rose_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_rose_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_rose_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_rose_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_rose_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_rose_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom for the most recent 7 days.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_temp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_temp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_temp/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_temp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_temp&showErrors=false&email=", "University of Hawaii", "aco_adcp_temp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Velocity", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean current velocity at the ACO from a 250 kHz SonTek acoustic doppler current profiler (ADCP) at 1.83 m above the ocean bottom for the most recent 7 days. Velocities are flagged bad if the amplitude is excessively low or high. An amplitude is high if it exceeds the average of the ping before and the ping after by 20 counts. An amplitude is low if less than 6 counts. After this the velocities are flagged bad if the absolute deviation of the vertical velocity from its ensemble median exceeds 0.15 m/s or if its value is less than -0.25 m/s.\n\ncdm_data_type = Profile\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each location, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\neastward_sea_water_velocity (current east component, meters/second)\nnorthward_sea_water_velocity (current north component, meters/second)\nupward_sea_water_velocity (current upward component, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_vel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_vel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_vel/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_vel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_vel&showErrors=false&email=", "University of Hawaii", "aco_adcp_vel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://upwell.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF.graph", "", "", "public", "CRRF Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-CRRF: CRRF Weather Station: Palau: Koror: Ngeanges Island)\nair_temperature (Celsius)\nair_temperature_max (maximum air temperature, Celsius)\nair_temperature_max_time (maximum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (minimum air temperature, Celsius)\nair_temperature_min_time (minimum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_std (air temperature standard deviation, Celsius)\nwind_speed (m/s)\nwind_speed_max (gust speed, m/s)\nwind_speed_max_time (gust speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (minimum wind speed, m/s)\nwind_speed_min_time (minimum wind speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_std (wind speed standard deviation, m/s)\nwind_from_direction (wind direction, degrees)\nwind_from_direction_std (wind direction standard deviation, degrees)\nrainfall_amount (total rainfall, mm)\n... (23 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-CRRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-CRRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-CRRF/index.json", "https://www.pacioos.hawaii.edu/weather/obs-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-CRRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-CRRF&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "AWS-CRRF"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_1000genomes/", "public", "File Names from the AWS S3 1000genomes Bucket: 1000 Genomes", "This dataset has file information from the AWS S3 1000genomes bucket at https://1000genomes.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 1000 Genomes\nName2: http://www.internationalgenome.org/formats\nDescription: The 1000 Genomes Project is an international collaboration which has established the most detailed catalogue of human genetic variation, including SNPs, structural variants, and their haplotype context. The final phase of the project sequenced more than 2500 individuals from 26 different populations around the world and produced an integrated set of phased haplotypes with more than 80 million variants for these individuals.\n\nDocumentation: https://docs.opendata.aws/1000genomes/readme.html\nContact: http://www.internationalgenome.org/contact\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_1000genomes/index.json", "https://registry.opendata.aws/1000-genomes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_1000genomes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_1000genomes&showErrors=false&email=", "Amazon Web Services", "awsS3Files_1000genomes"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_3kricegenome/", "public", "File Names from the AWS S3 3kricegenome Bucket: 3000 Rice Genomes Project", "This dataset has file information from the AWS S3 3kricegenome bucket at https://3kricegenome.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 3000 Rice Genomes Project\nName2: http://s3.amazonaws.com/3kricegenome/README-snp_pipeline.txt\nDescription: The 3000 Rice Genome Project is an international effort to sequence the genomes of 3,024 rice varieties from 89 countries.\n\nDocumentation: https://docs.opendata.aws/3kricegenome/readme.html\nContact: http://iric.irri.org/contact-us\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_3kricegenome/index.json", "https://registry.opendata.aws/3kricegenome/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_3kricegenome.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_3kricegenome&showErrors=false&email=", "Amazon Web Services", "awsS3Files_3kricegenome"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aft_vbi_pds/", "public", "File Names from the AWS S3 aft-vbi-pds Bucket: Amazon Bin Image Dataset: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.", "This dataset has file information from the AWS S3 aft-vbi-pds bucket at https://aft-vbi-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Bin Image Dataset\nName2: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.\nDescription: The Amazon Bin Image Dataset contains over 500,000 images and metadata from bins of a pod in an operating Amazon Fulfillment Center. The bin images in this dataset are captured as robot units carry pods as part of normal Amazon Fulfillment Center operations.\n\nDocumentation: https://docs.opendata.aws/aft-vbi-pds/readme.html\nContact: amazon-bin-images@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aft_vbi_pds/index.json", "https://registry.opendata.aws/amazon-bin-imagery/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aft_vbi_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aft_vbi_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aft_vbi_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory/", "public", "File Names from the AWS S3 allen-brain-observatory Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: Project data files in a public bucket", "This dataset has file information from the AWS S3 allen-brain-observatory bucket at https://allen-brain-observatory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: Project data files in a public bucket\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory_templates/", "public", "File Names from the AWS S3 allen-brain-observatory-templates Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: SageMaker launch template with s3fs bucket mounts", "This dataset has file information from the AWS S3 allen-brain-observatory-templates bucket at https://allen-brain-observatory-templates.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: SageMaker launch template with s3fs bucket mounts\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory_templates/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory_templates.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory_templates&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory_templates"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_amazon_reviews_pds/", "public", "File Names from the AWS S3 amazon-reviews-pds Bucket: Amazon Customer Reviews Dataset: TSV files of reviews", "This dataset has file information from the AWS S3 amazon-reviews-pds bucket at https://amazon-reviews-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Customer Reviews Dataset\nName2: TSV files of reviews\nDescription: Amazon Customer Reviews (a.k.a. Product Reviews) is one of Amazon\u2019s iconic products. In a period of over two decades since the first review in 1995, millions of Amazon customers have contributed over a hundred million reviews to express opinions and describe their experiences regarding products on the Amazon.com website. Over 130+ million customer reviews are available to researchers as part of this dataset.\n\nDocumentation: https://s3.amazonaws.com/amazon-reviews-pds/readme.html\nContact: customer-review-dataset@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not defined\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_amazon_reviews_pds/index.json", "https://registry.opendata.aws/amazon-reviews/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_amazon_reviews_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_amazon_reviews_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_amazon_reviews_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_avg_kitti/", "public", "File Names from the AWS S3 avg-kitti Bucket: KITTI Vision Benchmark Suite", "This dataset has file information from the AWS S3 avg-kitti bucket at https://avg-kitti.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: KITTI Vision Benchmark Suite\nName2: http://www.cvlibs.net/datasets/kitti/raw_data.php\nDescription: Dataset and benchmarks for computer vision research in the context of autonomous driving. The dataset has been recorded in and around the city of Karlsruhe, Germany using the mobile platform AnnieWay (VW station wagon) which has been equipped with several RGB and monochrome cameras, a Velodyne HDL 64 laser scanner as well as an accurate RTK corrected GPS/IMU localization unit. The dataset has been created for computer vision and machine learning research on stereo, optical flow, visual odometry, semantic segmentation, semantic instance segmentation, road segmentation, single image depth prediction, depth map completion, 2D and 3D object detection and object tracking. In addition, several raw data recordings are provided. The datasets are captured by driving around the mid-size city of Karlsruhe, in rural areas and on highways. Up to 15 cars and 30 pedestrians are visible per image.\n\nDocumentation: http://www.cvlibs.net/datasets/kitti/\nContact: http://www.cvlibs.net/people.php\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_avg_kitti/index.json", "https://registry.opendata.aws/kitti/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_avg_kitti.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_avg_kitti&showErrors=false&email=", "Amazon Web Services", "awsS3Files_avg_kitti"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/", "public", "File Names from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd Bucket: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)", "This dataset has file information from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd bucket at https://aws-earth-mo-atmospheric-mogreps-g-prd.s3.eu-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts\nName2: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)\nDescription: Meteorological data reusers now have an exciting opportunity to sample, experiment and evaluate Met Office atmospheric model data, whilst also experiencing a transformative method of requesting data via Restful APIs on AWS. All ahead of Met Office\u2019s own operationally supported API platform that will be launched in late 2019.\n\nDocumentation: https://github.com/MetOffice/aws-earth-examples\nContact: https://www.metoffice.gov.uk/about-us/contact\nUpdateFrequency: Daily (with 24 hour delay)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/index.json", "https://registry.opendata.aws/uk-met-office/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_gsod/", "public", "File Names from the AWS S3 aws-gsod Bucket: Global Surface Summary of Day: Measurements and metadata", "This dataset has file information from the AWS S3 aws-gsod bucket at https://aws-gsod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Surface Summary of Day\nName2: Measurements and metadata\nDescription: GSOD is a collection of daily weather measurements (temperature, wind speed, humidity, pressure, and more) from 9000+ weather stations around the world.\n\nDocumentation: https://www.ncdc.noaa.gov/\nContact: https://www.ncdc.noaa.gov/\nUpdateFrequency: Currently updated infrequently. Last updated on September 13, 2016.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_gsod/index.json", "https://registry.opendata.aws/noaa-gsod/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_gsod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_gsod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_gsod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_broad_references/", "public", "File Names from the AWS S3 broad-references Bucket: Broad Genome References: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.", "This dataset has file information from the AWS S3 broad-references bucket at https://broad-references.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Broad Genome References\nName2: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.\nDescription: Broad maintained human genome reference builds hg19/hg38 and decoy references.\n\nDocumentation: https://s3.amazonaws.com/broad-references/broad-references-readme.html\nContact: hensonc@broadinstitute.org\nManagedBy: Broad Institute\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_broad_references/index.json", "https://registry.opendata.aws/broad-references/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_broad_references.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_broad_references&showErrors=false&email=", "Amazon Web Services", "awsS3Files_broad_references"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cbers_meta_pds/", "public", "File Names from the AWS S3 cbers-meta-pds Bucket: CBERS on AWS: CBERS metadata (Quicklooks, metadata)", "This dataset has file information from the AWS S3 cbers-meta-pds bucket at https://cbers-meta-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CBERS on AWS\nName2: CBERS metadata (Quicklooks, metadata)\nDescription: This project creates a S3 repository with imagery acquired by the China-Brazil Earth Resources Satellite (CBERS). The image files are recorded and processed by Instituto Nacional de Pesquisa Espaciais (INPE) and are converted to Cloud Optimized Geotiff format in order to optimize its use for cloud based applications. The repository contains all CBERS-4 MUX, AWFI, PAN5M and PAN10M scenes acquired since the start of the satellite mission and is daily updated with new scenes.\n\nDocumentation: https://github.com/fredliporace/cbers-on-aws\nContact: https://lists.osgeo.org/mailman/listinfo/cbers-pds\nManagedBy: [AMS Kepler](https://amskepler.com/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cbers_meta_pds/index.json", "https://registry.opendata.aws/cbers/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cbers_meta_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cbers_meta_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cbers_meta_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cgiardata/", "public", "File Names from the AWS S3 cgiardata Bucket: CCAFS-Climate Data: ARC GRID, and ARC ASCII format compressed", "This dataset has file information from the AWS S3 cgiardata bucket at https://cgiardata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CCAFS-Climate Data\nName2: ARC GRID, and ARC ASCII format compressed\nDescription: High resolution climate data to help assess the impacts of climate change primarily on agriculture. These open access datasets of climate projections will help researchers make climate change impact assessments.\n\nDocumentation: http://www.ccafs-climate.org\nContact: http://www.ccafs-climate.org/contact/\nUpdateFrequency: Every three months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cgiardata/index.json", "https://registry.opendata.aws/cgiardata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cgiardata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cgiardata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cgiardata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_commoncrawl/", "public", "File Names from the AWS S3 commoncrawl Bucket: Common Crawl: Crawl data (WARC and ARC format)", "This dataset has file information from the AWS S3 commoncrawl bucket at https://commoncrawl.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Common Crawl\nName2: Crawl data (WARC and ARC format)\nDescription: A corpus of web crawl data composed of over 25 billion web pages.\n\nDocumentation: http://commoncrawl.org/the-data/get-started/\nContact: http://commoncrawl.org/connect/contact-us/\nManagedBy: [Common Crawl](http://commoncrawl.org/)\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_commoncrawl/index.json", "https://registry.opendata.aws/commoncrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_commoncrawl.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_commoncrawl&showErrors=false&email=", "Amazon Web Services", "awsS3Files_commoncrawl"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cornell_eas_data_lake/", "public", "File Names from the AWS S3 cornell-eas-data-lake Bucket: Cornell EAS Data Lake: Cornell EAS Data Lake", "This dataset has file information from the AWS S3 cornell-eas-data-lake bucket at https://cornell-eas-data-lake.s3.us-east-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cornell EAS Data Lake\nName2: Cornell EAS Data Lake\nDescription: Earth & Atmospheric Sciences at Cornell University has created a public data lake of climate data. The data is stored in columnar storage formats (ORC) to make it straightforward to query using standard tools like Amazon Athena or Apache Spark. The data itself is originally intended to be used for building decision support tools for farmers and digital agriculture. The first dataset is the historical NDFD / NDGD data distributed by NCEP / NOAA / NWS. The NDFD (National Digital Forecast Database) and NDGD (National Digital Guidance Database) contain gridded forecasts and observations at 2.5km resolution for the Contiguous United States (CONUS). There are also 5km grids for several smaller US regions and non-continguous territories, such as Hawaii, Guam, Puerto Rico and Alaska. NOAA distributes archives of the NDFD/NDGD via its NOAA Operational Model Archive and Distribution System (NOMADS) in Grib2 format. The data has been converted to ORC to optimize storage space and to, more importantly, simplify data access via standard data analytics tools.\n\nDocumentation: https://datalake.eas.cornell.edu/\nContact: digitalag@cornell.edu\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cornell_eas_data_lake/index.json", "https://registry.opendata.aws/cornell-eas-data-lake/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cornell_eas_data_lake.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cornell_eas_data_lake&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cornell_eas_data_lake"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cse_cic_ids2018/", "public", "File Names from the AWS S3 cse-cic-ids2018 Bucket: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018): Network traffic and log files", "This dataset has file information from the AWS S3 cse-cic-ids2018 bucket at https://cse-cic-ids2018.s3.ca-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018)\nName2: Network traffic and log files\nDescription: This dataset is the result of a collaborative project between the Communications Security Establishment (CSE) and The Canadian Institute for Cybersecurity (CIC) that use the notion of profiles to generate cybersecurity dataset in a systematic manner. It incluides a detailed description of intrusions along with abstract distribution models for applications, protocols, or lower level network entities. The dataset includes seven different attack scenarios, namely Brute-force, Heartbleed, Botnet, DoS, DDoS, Web attacks, and infiltration of the network from inside. The attacking infrastructure includes 50 machines and the victim organization has 5 departments includes 420 PCs and 30 servers. This dataset includes the network traffic and log files of each machine from the victim side, along with 80 network traffic features extracted from captured traffic using CICFlowMeter-V3. For more information on the creation of this dataset, see this paper by researchers at the Canadian Institute for Cybersecurity (CIC) and the University of New Brunswick (UNB): [Toward Generating a New Intrusion Detection Dataset and Intrusion Traffic Characterization](http://www.scitepress.org/Papers/2018/66398/66398.pdf).\n\nDocumentation: http://www.unb.ca/cic/datasets/ids-2018.html\nContact: CIC@unb.ca\nUpdateFrequency: Annualy\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cse_cic_ids2018/index.json", "https://registry.opendata.aws/cse-cic-ids2018/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cse_cic_ids2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cse_cic_ids2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cse_cic_ids2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cytodata/", "public", "File Names from the AWS S3 cytodata Bucket: Cell Painting Image Collection: Images, extracted features and aggregated profiles are available as a S3 bucket", "This dataset has file information from the AWS S3 cytodata bucket at https://cytodata.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cell Painting Image Collection\nName2: Images, extracted features and aggregated profiles are available as a S3 bucket\nDescription: The Cell Painting Image Collection is a collection of freely downloadable microscopy image sets. Cell Painting is an unbiased high throughput imaging assay used to analyze perturbations in cell models. In addition to the images themselves, each set includes a description of the biological application and some type of \"ground truth\" (expected results). Researchers are encouraged to use these image sets as reference points when developing, testing, and publishing new image analysis algorithms for the life sciences. We hope that the this data set will lead to a better understanding of which methods are best for various biological image analysis applications.\n\nDocumentation: https://github.com/cytodata/cytodata-hackathon-2018\nContact: Post on https://forum.image.sc/ and tag with \"cellpainting\"\nUpdateFrequency: irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cytodata/index.json", "https://registry.opendata.aws/cell-painting-image-collection/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cytodata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cytodata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cytodata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_czb_tabula_muris/", "public", "File Names from the AWS S3 czb-tabula-muris Bucket: Tabula Muris", "This dataset has file information from the AWS S3 czb-tabula-muris bucket at https://czb-tabula-muris.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Tabula Muris\nName2: https://github.com/czbiohub/tabula-muris\nDescription: Tabula Muris is a compendium of single cell transcriptomic data from the model organism *Mus musculus* comprising more than 100,000 cells from 20 organs and tissues. These data represent a new resource for cell biology, reveal gene expression in poorly characterized cell populations, and allow for direct and controlled comparison of gene expression in cell types shared between tissues, such as T-lymphocytes and endothelial cells from different anatomical locations. Two distinct technical approaches were used for most organs: one approach, microfluidic droplet-based 3\u2019-end counting, enabled the survey of thousands of cells at relatively low coverage, while the other, FACS-based full length transcript analysis, enabled characterization of cell types with high sensitivity and coverage. The cumulative data provide the foundation for an atlas of transcriptomic cell biology. See: https://www.nature.com/articles/s41586-018-0590-4\n\nDocumentation: https://github.com/czbiohub/tabula-muris/blob/master/tabula-muris-on-aws.md\nContact: If you have questions about the data, you can create an Issue at https://github.com/czbiohub/tabula-muris.\nManagedBy: [Chan Zuckerberg Biohub](https://www.czbiohub.org/)\nUpdateFrequency: This is the final version of the dataset, it will not be updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_czb_tabula_muris/index.json", "https://registry.opendata.aws/tabula-muris/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_czb_tabula_muris.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_czb_tabula_muris&showErrors=false&email=", "Amazon Web Services", "awsS3Files_czb_tabula_muris"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataforgood_fb_data/", "public", "File Names from the AWS S3 dataforgood-fb-data Bucket: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook: CSV and Cloud-optimized GeoTIFF files", "This dataset has file information from the AWS S3 dataforgood-fb-data bucket at https://dataforgood-fb-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook\nName2: CSV and Cloud-optimized GeoTIFF files\nDescription: Population data for a selection of countries, allocated to 1 arcsecond blocks and provided in a combination of CSV and Cloud-optimized GeoTIFF files. This refines [CIESIN\u2019s Gridded Population of the World](https://sedac.ciesin.columbia.edu/data/collection/gpw-v4) using machine learning models on high-resolution worldwide Digital Globe satellite imagery. CIESIN population counts aggregated from worldwide census data are allocated to blocks where imagery appears to contain buildings.\n\nDocumentation: [Project overview](https://dataforgood.fb.com/population-density-maps-documentation/) and [dataset description](https://docs.opendata.aws/dataforgood-fb-data/readme.html)\nContact: disastermaps@fb.com\nManagedBy: |\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataforgood_fb_data/index.json", "https://registry.opendata.aws/dataforgood-fb-hrsl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataforgood_fb_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataforgood_fb_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataforgood_fb_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_datasets_elasticmapreduce_ngrams_books/", "public", "File Names from the AWS S3 datasets.elasticmapreduce Bucket with prefix=ngrams/books/: Google Books Ngrams: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.", "This dataset has file information from the AWS S3 datasets.elasticmapreduce bucket at https://datasets.elasticmapreduce.s3.us-east-1.amazonaws.com/ with prefix=ngrams/books/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Google Books Ngrams\nName2: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.\nDescription: N-grams are fixed size tuples of items. In this case the items are words extracted from the Google Books corpus. The n specifies the number of elements in the tuple, so a 5-gram contains five words or characters. The n-grams in this dataset were produced by passing a sliding window of the text of books and outputting a record for each new token.\n\nDocumentation: http://books.google.com/ngrams/\nContact: https://books.google.com/ngrams\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_datasets_elasticmapreduce_ngrams_books/index.json", "https://registry.opendata.aws/google-ngrams/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_datasets_elasticmapreduce_ngrams_books.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_datasets_elasticmapreduce_ngrams_books&showErrors=false&email=", "Amazon Web Services", "awsS3Files_datasets_elasticmapreduce_ngrams_books"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataworld_linked_acs/", "public", "File Names from the AWS S3 dataworld-linked-acs Bucket: U.S. Census ACS PUMS: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.", "This dataset has file information from the AWS S3 dataworld-linked-acs bucket at https://dataworld-linked-acs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: U.S. Census ACS PUMS\nName2: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.\nDescription: U.S. Census Bureau American Community Survey (ACS) Public Use Microdata Sample (PUMS) available in a linked data format using the Resource Description Framework (RDF) data model.\n\nDocumentation: https://docs.data.world/uscensus/#american-community-survey-linked-open-data\nContact: https://docs.data.world/uscensus/#60---contact\nUpdateFrequency: Yearly, after ACS 1-year PUMS raw data are released\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataworld_linked_acs/index.json", "https://registry.opendata.aws/census-dataworld-pums/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataworld_linked_acs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataworld_linked_acs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataworld_linked_acs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2015/", "public", "File Names from the AWS S3 dc-lidar-2015 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML, SHP", "This dataset has file information from the AWS S3 dc-lidar-2015 bucket at https://dc-lidar-2015.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML, SHP\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2015/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2015.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2015&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2015"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2018/", "public", "File Names from the AWS S3 dc-lidar-2018 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML", "This dataset has file information from the AWS S3 dc-lidar-2018 bucket at https://dc-lidar-2018.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2018/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_eurex_pds/", "public", "File Names from the AWS S3 deutsche-boerse-eurex-pds Bucket: Deutsche B\u00f6rse Public Dataset: Eurex PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-eurex-pds bucket at https://deutsche-boerse-eurex-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Eurex PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_eurex_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_eurex_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_eurex_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_eurex_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_xetra_pds/", "public", "File Names from the AWS S3 deutsche-boerse-xetra-pds Bucket: Deutsche B\u00f6rse Public Dataset: Xetra PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-xetra-pds bucket at https://deutsche-boerse-xetra-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Xetra PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_xetra_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_xetra_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_xetra_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_xetra_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ebirdst_data/", "public", "File Names from the AWS S3 ebirdst-data Bucket: eBird Status and Trends Model Results: Species results files", "This dataset has file information from the AWS S3 ebirdst-data bucket at https://ebirdst-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: eBird Status and Trends Model Results\nName2: Species results files\nDescription: The eBird Status and Trends project generates estimates of bird occurrence and abundance at a high spatiotemporal resolution. This dataset represents the primary modeled results from the analysis workflow and are designed for further analysis, synthesis, visualization, and exploration.\n\nDocumentation: https://cornelllabofornithology.github.io/ebirdst/articles/ebirdst-introduction.html\nContact: https://help.ebird.org/customer/en/portal/emails/new\nManagedBy: [Cornell Lab of Ornithology](https://www.birds.cornell.edu/home/)\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ebirdst_data/index.json", "https://registry.opendata.aws/ebirdst/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ebirdst_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ebirdst_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ebirdst_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_elevation_tiles_prod/", "public", "File Names from the AWS S3 elevation-tiles-prod Bucket: Terrain Tiles: Gridded elevation tiles", "This dataset has file information from the AWS S3 elevation-tiles-prod bucket at https://elevation-tiles-prod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Terrain Tiles\nName2: Gridded elevation tiles\nDescription: A global dataset providing bare-earth terrain heights, tiled for easy usage and provided on S3.\n\nDocumentation: https://mapzen.com/documentation/terrain-tiles/\nContact: https://github.com/tilezen/joerd/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_elevation_tiles_prod/index.json", "https://registry.opendata.aws/terrain-tiles/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_elevation_tiles_prod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_elevation_tiles_prod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_elevation_tiles_prod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_encode_public/", "public", "File Names from the AWS S3 encode-public Bucket: Encyclopedia of DNA Elements (ENCODE): Released and archived ENCODE data", "This dataset has file information from the AWS S3 encode-public bucket at https://encode-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Encyclopedia of DNA Elements (ENCODE)\nName2: Released and archived ENCODE data\nDescription: The Encyclopedia of DNA Elements (ENCODE) Consortium is an international collaboration of research groups funded by the National Human Genome Research Institute (NHGRI). The goal of ENCODE is to build a comprehensive parts list of functional elements in the human genome, including elements that act at the protein and RNA levels, and regulatory elements that control cells and circumstances in which a gene is active. ENCODE investigators employ a variety of assays and methods to identify functional elements. The discovery and annotation of gene elements is accomplished primarily by sequencing a diverse range of RNA sources, comparative genomics, integrative bioinformatic methods, and human curation. Regulatory elements are typically investigated through DNA hypersensitivity assays, assays of DNA methylation, and immunoprecipitation (IP) of proteins that interact with DNA and RNA, i.e., modified histones, transcription factors, chromatin regulators, and RNA-binding proteins, followed by sequencing.\n\nDocumentation: https://www.encodeproject.org\nContact: encode-help@lists.stanford.edu\nManagedBy: ENCODE Data Coordinating Center\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_encode_public/index.json", "https://registry.opendata.aws/encode-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_encode_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_encode_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_encode_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_epa_rsei_pds/", "public", "File Names from the AWS S3 epa-rsei-pds Bucket: EPA Risk-Screening Environmental Indicators: RSEI Microdata", "This dataset has file information from the AWS S3 epa-rsei-pds bucket at https://epa-rsei-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: EPA Risk-Screening Environmental Indicators\nName2: RSEI Microdata\nDescription: Detailed air model results from EPA\u2019s Risk-Screening Environmental Indicators (RSEI) model.\n\nDocumentation: https://docs.opendata.aws/epa-rsei-pds/readme.html\nContact: https://www.epa.gov/rsei/forms/contact-us-about-rsei-model\nUpdateFrequency: Updated infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_epa_rsei_pds/index.json", "https://registry.opendata.aws/epa-rsei-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_epa_rsei_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_epa_rsei_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_epa_rsei_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_era5_pds/", "public", "File Names from the AWS S3 era5-pds Bucket: ECMWF ERA5 Reanalysis: ERA5 Reanalysis NetCDF 4 files", "This dataset has file information from the AWS S3 era5-pds bucket at https://era5-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ECMWF ERA5 Reanalysis\nName2: ERA5 Reanalysis NetCDF 4 files\nDescription: ERA5 is the fifth generation of ECMWF atmospheric reanalyses of the global climate, and the first reanalysis produced as an operational service. It utilizes the best available observation data from satellites and in-situ stations, which are assimilated and processed using ECMWF's Integrated Forecast System (IFS) Cycle 41r2. The dataset provides all essential atmospheric meteorological parameters like, but not limited to, air temperature, pressure and wind at different altitudes, along with surface parameters like rainfall, soil moisture content and sea parameters like sea-surface temperature and wave height. ERA5 provides data at a considerably higher spatial and temporal resolution than its legacy counterpart ERA-Interim. ERA5 consists of high resolution version with 31 km horizontal resolution, and a reduced resolution ensemble version with 10 members. It is currently available since 2008, but will be continuously extended backwards, first until 1979 and then to 1950. Learn more about ERA5 in Jon Olauson's paper [ERA5: The new champion of wind power modelling?](https://www.researchgate.net/publication/320084119_ERA5_The_new_champion_of_wind_power_modelling).\n\nDocumentation: https://github.com/planet-os/notebooks/blob/master/aws/era5-pds.md\nContact: datahub@intertrust.com\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_era5_pds/index.json", "https://registry.opendata.aws/ecmwf-era5/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_era5_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_era5_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_era5_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_coco/", "public", "File Names from the AWS S3 fast-ai-coco Bucket: COCO - Common Objects in Context - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-coco bucket at https://fast-ai-coco.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: COCO - Common Objects in Context - fast.ai datasets\nName2: Datasets\nDescription: COCO is a large-scale object detection, segmentation, and captioning dataset. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. If you use this dataset in your research please cite arXiv:1405.0312 [cs.CV].\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_coco/index.json", "https://registry.opendata.aws/fast-ai-coco/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_coco.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_coco&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_coco"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imageclas/", "public", "File Names from the AWS S3 fast-ai-imageclas Bucket: Image classification - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imageclas bucket at https://fast-ai-imageclas.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image classification - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image classification research, including CIFAR 10 and 100, Caltech 101, MNIST, Food-101, Oxford-102-Flowers, Oxford-IIIT-Pets, and Stanford-Cars. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imageclas/index.json", "https://registry.opendata.aws/fast-ai-imageclas/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imageclas.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imageclas&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imageclas"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imagelocal/", "public", "File Names from the AWS S3 fast-ai-imagelocal Bucket: Image localization - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imagelocal bucket at https://fast-ai-imagelocal.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image localization - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image localization research, including Camvid and PASCAL VOC (2007 and 2012). This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imagelocal/index.json", "https://registry.opendata.aws/fast-ai-imagelocal/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imagelocal.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imagelocal&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imagelocal"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_nlp/", "public", "File Names from the AWS S3 fast-ai-nlp Bucket: NLP - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-nlp bucket at https://fast-ai-nlp.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NLP - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for NLP, with a focus on classification, including IMDb, AG-News, Amazon Reviews (polarity and full), Yelp Reviews (polarity and full), Dbpedia, Sogou News (Pinyin), Yahoo Answers, Wikitext 2 and Wikitext 103, and ACL-2010 French-English 10^9 corpus. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_nlp/index.json", "https://registry.opendata.aws/fast-ai-nlp/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_nlp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_nlp&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_nlp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib Bucket: HIRLAM Weather Model: Pressure GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib bucket at https://fmi-opendata-rcrhirlam-pressure-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Pressure GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_pressure_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_pressure_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-surface-grib Bucket: HIRLAM Weather Model: Surface GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-surface-grib bucket at https://fmi-opendata-rcrhirlam-surface-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Surface GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_surface_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_surface_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gatk_test_data/", "public", "File Names from the AWS S3 gatk-test-data Bucket: GATK Test Data: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.", "This dataset has file information from the AWS S3 gatk-test-data bucket at https://gatk-test-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GATK Test Data\nName2: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.\nDescription: The GATK test data resource bundle is a collection of files for resequencing human genomic data with the Broad Institute's [Genome Analysis Toolkit (GATK)](https://software.broadinstitute.org/gatk/).\n\nDocumentation: https://s3.amazonaws.com/gatk-test-data/gatk-test-data-readme.html\nContact: https://gatkforums.broadinstitute.org/gatk\nManagedBy: Broad Institute\nUpdateFrequency: Every 3 months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gatk_test_data/index.json", "https://registry.opendata.aws/gatk-test-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gatk_test_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gatk_test_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gatk_test_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gdelt_open_data/", "public", "File Names from the AWS S3 gdelt-open-data Bucket: Global Database of Events, Language and Tone (GDELT): Project data files", "This dataset has file information from the AWS S3 gdelt-open-data bucket at https://gdelt-open-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Database of Events, Language and Tone (GDELT)\nName2: Project data files\nDescription: This project monitors the world's broadcast, print, and web news from nearly every corner of every country in over 100 languages and identifies the people, locations, organizations, counts, themes, sources, emotions, quotes, images and events driving our global society every second of every day.\n\nDocumentation: http://www.gdeltproject.org/\nContact: http://www.gdeltproject.org/about.html#contact\nUpdateFrequency: Not currently being updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gdelt_open_data/index.json", "https://registry.opendata.aws/gdelt/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gdelt_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gdelt_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gdelt_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_genomeark/", "public", "File Names from the AWS S3 genomeark Bucket: Genome Ark", "This dataset has file information from the AWS S3 genomeark bucket at https://genomeark.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome Ark\nName2: https://vgp.github.io\nDescription: The Genome Ark hosts genomic information for the Vertebrate Genomes Project (VGP) and other related projects. The VGP is an international collaboration that aims to generate complete and near error-free reference genomes for all extant vertebrate species. These genomes will be used to address fundamental questions in biology and disease, to identify species most genetically at risk for extinction, and to preserve genetic information of life.\n\nDocumentation: https://vertebrategenomesproject.org\nContact: Erich Jarvis \nManagedBy: The Genome10K community of scientists\nUpdateFrequency: Data will be continually updated as it is generated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_genomeark/index.json", "https://registry.opendata.aws/genomeark/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_genomeark.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_genomeark&showErrors=false&email=", "Amazon Web Services", "awsS3Files_genomeark"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_giab/", "public", "File Names from the AWS S3 giab Bucket: Genome in a Bottle on AWS: Latest data", "This dataset has file information from the AWS S3 giab bucket at https://giab.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome in a Bottle on AWS\nName2: Latest data\nDescription: Several reference genomes to enable translation of whole human genome sequencing to clinical practice.\n\nDocumentation: https://docs.opendata.aws/giab/readme.html\nContact: http://genomeinabottle.org/\nUpdateFrequency: New data are added as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_giab/index.json", "https://registry.opendata.aws/giab/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_giab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_giab&showErrors=false&email=", "Amazon Web Services", "awsS3Files_giab"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gmsdata/", "public", "File Names from the AWS S3 gmsdata Bucket: The Genome Modeling System", "This dataset has file information from the AWS S3 gmsdata bucket at https://gmsdata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Genome Modeling System\nName2: https://gmsdata.s3.amazonaws.com/INDEX.html\nDescription: The Genome Institute at Washington University has developed a high-throughput, fault-tolerant analysis information management system called the Genome Modeling System (GMS), capable of executing complex, interdependent, and automated genome analysis pipelines at a massive scale. The GMS framework provides detailed tracking of samples and data coupled with reliable and repeatable analysis pipelines. GMS includes a full system image with software and services, expandable from one workstation to a large compute cluster.\n\nDocumentation: https://github.com/genome/gms/wiki\nContact: https://github.com/genome/gms/issues\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gmsdata/index.json", "https://registry.opendata.aws/gmsdata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gmsdata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gmsdata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gmsdata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_grillo_openeew/", "public", "File Names from the AWS S3 grillo-openeew Bucket: OpenEEW: OpenEEW", "This dataset has file information from the AWS S3 grillo-openeew bucket at https://grillo-openeew.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenEEW\nName2: OpenEEW\nDescription: Grillo has developed an IoT-based earthquake early-warning system in Mexico and Chile and is now opening its entire archive of unprocessed accelerometer data to the world to encourage the development of new algorithms capable of rapidly detecting and characterizing earthquakes in real time.\n\nDocumentation: https://github.com/grillo/openeew\nContact: openeew@grillo.io\nManagedBy: [Grillo](https://grillo.io/)\nUpdateFrequency: Approximately every 10 minutes\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_grillo_openeew/index.json", "https://registry.opendata.aws/grillo-openeew/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_grillo_openeew.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_grillo_openeew&showErrors=false&email=", "Amazon Web Services", "awsS3Files_grillo_openeew"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_microbiome_project/", "public", "File Names from the AWS S3 human-microbiome-project Bucket: The Human Microbiome Project", "This dataset has file information from the AWS S3 human-microbiome-project bucket at https://human-microbiome-project.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Human Microbiome Project\nName2: https://aws.amazon.com/datasets/human-microbiome-project/\nDescription: The NIH-funded Human Microbiome Project (HMP) is a collaborative effort of over 300 scientists from more than 80 organizations to comprehensively characterize the microbial communities inhabiting the human body and elucidate their role in human health and disease. To accomplish this task, microbial community samples were isolated from a cohort of 300 healthy adult human subjects at 18 specific sites within five regions of the body (oral cavity, airways, urogenital track, skin, and gut). Targeted sequencing of the 16S bacterial marker gene and/or whole metagenome shotgun sequencing was performed for thousands of these samples. In addition, whole genome sequences were generated for isolate strains collected from human body sites to act as reference organisms for analysis. Finally, 16S marker and whole metagenome sequencing was also done on additional samples from people suffering from several disease conditions.\n\nDocumentation: https://commonfund.nih.gov/hmp\nContact: https://commonfund.nih.gov/hmp/related_activities\nUpdateFrequency: Uncertain\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_microbiome_project/index.json", "https://registry.opendata.aws/human-microbiome-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_microbiome_project.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_microbiome_project&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_microbiome_project"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_pangenomics/", "public", "File Names from the AWS S3 human-pangenomics Bucket: Human PanGenomics Project: Human PanGenomics Project", "This dataset has file information from the AWS S3 human-pangenomics bucket at https://human-pangenomics.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Human PanGenomics Project\nName2: Human PanGenomics Project\nDescription: This dataset includes sequencing data, assemblies, and analyses for the offspring of ten parent-offspring trios.\n\nDocumentation: https://github.com/human-pangenomics/hpgp-data\nContact: https://github.com/human-pangenomics/hpgp-data/issues\nUpdateFrequency: Data will be added and updated as technologies improve or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_pangenomics/index.json", "https://registry.opendata.aws/hpgp-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_pangenomics.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_pangenomics&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_pangenomics"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/", "public", "File Names from the AWS S3 ichangemycity-janaagraha-complaints-data-aws Bucket: IChangeMyCity Complaints Data from Janaagraha: IChangeMyCity Complaints", "This dataset has file information from the AWS S3 ichangemycity-janaagraha-complaints-data-aws bucket at https://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IChangeMyCity Complaints Data from Janaagraha\nName2: IChangeMyCity Complaints\nDescription: The [IChangeMyCity](https://www.ichangemycity.com) project provides insight into the complaints raised by citizens from diffent cities of India related to the issues in their neighbourhoods and the resolution of the same by the civic bodies.\n\nDocumentation: http://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/readme.html\nContact: data@janaagraha.org\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/index.json", "https://registry.opendata.aws/ichangemycity/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ichangemycity_janaagraha_complaints_data_aws&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ichangemycity_janaagraha_complaints_data_aws"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_irs_990_spreadsheets/", "public", "File Names from the AWS S3 irs-990-spreadsheets Bucket: IRS 990 Filings (Spreadsheets): Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form", "This dataset has file information from the AWS S3 irs-990-spreadsheets bucket at https://irs-990-spreadsheets.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IRS 990 Filings (Spreadsheets)\nName2: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form\nDescription: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form. Additional fields being added regularly.\n\nDocumentation: https://appliednonprofitresearch.com/documentation/irs-990-spreadsheets\nContact: [info@appliednonprofitresearch.com](info@appliednonprofitresearch.com)\nManagedBy: [Applied Nonprofit Research, LLC](https://www.appliednonprofitresearch.com/)\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_irs_990_spreadsheets/index.json", "https://registry.opendata.aws/990-spreadsheets/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_irs_990_spreadsheets.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_irs_990_spreadsheets&showErrors=false&email=", "Amazon Web Services", "awsS3Files_irs_990_spreadsheets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lab41openaudiocorpus/", "public", "File Names from the AWS S3 lab41openaudiocorpus Bucket: Voices Obscured in Complex Environmental Settings (VOiCES): wav audio files, orthographic transcriptions, and speaker ID", "This dataset has file information from the AWS S3 lab41openaudiocorpus bucket at https://lab41openaudiocorpus.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Voices Obscured in Complex Environmental Settings (VOiCES)\nName2: wav audio files, orthographic transcriptions, and speaker ID\nDescription: VOiCES is a speech corpus recorded in acoustically challenging settings, using distant microphone recording. Speech was recorded in real rooms with various acoustic features (reverb, echo, HVAC systems, outside noise, etc.). Adversarial noise, either television, music, or babble, was concurrently played with clean speech. Data was recorded using multiple microphones strategically placed throughout the room. The corpus includes audio recordings, orthographic transcriptions, and speaker labels.\n\nDocumentation: https://voices18.github.io/\nContact: https://github.com/voices18/utilities/issues\nUpdateFrequency: Data from two additional rooms will be added to the corpus Fall 2018.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lab41openaudiocorpus/index.json", "https://registry.opendata.aws/lab41-sri-voices/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lab41openaudiocorpus.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lab41openaudiocorpus&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lab41openaudiocorpus"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds/", "public", "File Names from the AWS S3 landsat-pds Bucket: Landsat 8: Scenes and metadata", "This dataset has file information from the AWS S3 landsat-pds bucket at https://landsat-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: Scenes and metadata\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds_inventory/", "public", "File Names from the AWS S3 landsat-pds-inventory Bucket: Landsat 8: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)", "This dataset has file information from the AWS S3 landsat-pds-inventory bucket at https://landsat-pds-inventory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds_inventory/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds_inventory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds_inventory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds_inventory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lofar_elais_n1/", "public", "File Names from the AWS S3 lofar-elais-n1 Bucket: LOFAR ELAIS-N1 cycle 2 observations on AWS: LOFAR ELAIS-N1 cycle 2 observations", "This dataset has file information from the AWS S3 lofar-elais-n1 bucket at https://lofar-elais-n1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: LOFAR ELAIS-N1 cycle 2 observations on AWS\nName2: LOFAR ELAIS-N1 cycle 2 observations\nDescription: These data correspond to the [International LOFAR Telescope](http://www.lofar.org/) observations of the sky field ELAIS-N1 (16:10:01 +54:30:36) during the cycle 2 of observations. There are 11 runs of about 8 hours each plus the corresponding observation of the calibration targets before and after the target field. The data are measurement sets ([MS](https://casa.nrao.edu/Memos/229.html)) containing the cross-correlated data and metadata divided in 371 frequency sub-bands per target centred at ~150 MHz.\n\nDocumentation: https://www.lofarcloud.uk/data.html\nContact: https://www.lofarcloud.uk/\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lofar_elais_n1/index.json", "https://registry.opendata.aws/lofar-elais-n1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lofar_elais_n1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lofar_elais_n1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lofar_elais_n1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mf_nwp_models/", "public", "File Names from the AWS S3 mf-nwp-models Bucket: Atmospheric Models from M\u00e9t\u00e9o-France: Atmospheric Models from M\u00e9t\u00e9o-France", "This dataset has file information from the AWS S3 mf-nwp-models bucket at https://mf-nwp-models.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Atmospheric Models from M\u00e9t\u00e9o-France\nName2: Atmospheric Models from M\u00e9t\u00e9o-France\nDescription: Global and high-resolution regional atmospheric models from M\u00e9t\u00e9o-France.\n\nDocumentation: https://mf-models-on-aws.org\nContact: contact@openmeteodata.com\nManagedBy: [OpenMeteoData](https://openmeteodata.com)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mf_nwp_models/index.json", "https://registry.opendata.aws/meteo-france-models/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mf_nwp_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mf_nwp_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mf_nwp_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_modis_pds/", "public", "File Names from the AWS S3 modis-pds Bucket: MODIS on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 modis-pds bucket at https://modis-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: MODIS on AWS\nName2: Imagery and metadata\nDescription: Select products from the Moderate Resolution Imaging Spectroradiometer (MODIS) managed by the U.S. Geological Survey and NASA.\n\nDocumentation: https://docs.opendata.aws/modis-pds/readme.html\nContact: https://github.com/AstroDigital/modis-ingestor/issues\nUpdateFrequency: New MODIS data is added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_modis_pds/index.json", "https://registry.opendata.aws/modis/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_modis_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_modis_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_modis_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_multimedia_commons/", "public", "File Names from the AWS S3 multimedia-commons Bucket: Multimedia Commons: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.", "This dataset has file information from the AWS S3 multimedia-commons bucket at https://multimedia-commons.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Multimedia Commons\nName2: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.\nDescription: The Multimedia Commons is a collection of audio and visual features computed for the nearly 100 million Creative Commons-licensed Flickr images and videos in the YFCC100M dataset from Yahoo! Labs, along with ground-truth annotations for selected subsets. The International Computer Science Institute (ICSI) and Lawrence Livermore National Laboratory are producing and distributing a core set of derived feature sets and annotations as part of an effort to enable large-scale video search capabilities. They have released this feature corpus into the public domain, under Creative Commons License 0, so it is free for anyone to use for any purpose.\n\nDocumentation: https://multimediacommons.wordpress.com/yfcc100m-core-dataset/\nContact: multimedia-commons@icsi.berkeley.edu\nUpdateFrequency: Not updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_multimedia_commons/index.json", "https://registry.opendata.aws/multimedia-commons/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_multimedia_commons.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_multimedia_commons&showErrors=false&email=", "Amazon Web Services", "awsS3Files_multimedia_commons"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mwapublic/", "public", "File Names from the AWS S3 mwapublic Bucket: Epoch of Reionization Dataset: Selected MWA EoR data (uvfits format) from 2013-2015", "This dataset has file information from the AWS S3 mwapublic bucket at https://mwapublic.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Epoch of Reionization Dataset\nName2: Selected MWA EoR data (uvfits format) from 2013-2015\nDescription: The data are from observations with the Murchison Widefield Array (MWA) which is a Square Kilometer Array (SKA) precursor in Western Australia. This particular dataset is from the Epoch of Reionization project which is a key science driver of the SKA. Nearly 2PB of such observations have been recorded to date, this is a small subset of that which has been exported from the MWA data archive in Perth and made available to the public on AWS. The data were taken to detect signatures of the first stars and galaxies forming and the effect of these early stars and galaxies on the evolution of the universe.\n\nDocumentation: http://danielcjacobs.com/research/epoch-of-reionization-aws-public-dataset/\nContact: brynah (at) phys.washington.edu\nManagedBy: University of washington Radio Cosmology Group\nUpdateFrequency: Irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mwapublic/index.json", "https://registry.opendata.aws/epoch-of-reionization/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mwapublic.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mwapublic&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mwapublic"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nanopore_human_wgs/", "public", "File Names from the AWS S3 nanopore-human-wgs Bucket: Nanopore Reference Human Genome: Nanopore Reference Human Genome", "This dataset has file information from the AWS S3 nanopore-human-wgs bucket at https://nanopore-human-wgs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Nanopore Reference Human Genome\nName2: Nanopore Reference Human Genome\nDescription: This dataset includes the sequencing and assembly of a reference standard human genome (GM12878) using the MinION nanopore sequencing instrument with the R9.4 1D chemistry.\n\nDocumentation: https://github.com/nanopore-wgs-consortium/NA12878\nContact: https://github.com/nanopore-wgs-consortium/NA12878/issues\nUpdateFrequency: Data will be added as methodology improves or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nanopore_human_wgs/index.json", "https://registry.opendata.aws/nanopore/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nanopore_human_wgs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nanopore_human_wgs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nanopore_human_wgs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_Landsat/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=Landsat/: NASA NEX: Landsat GLS (Global Land Survey)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=Landsat/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Landsat GLS (Global Land Survey)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_Landsat/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_Landsat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_Landsat&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_Landsat"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_LOCA/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=LOCA/: NASA NEX: Localized Constructed Analogs (LOCA)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=LOCA/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Localized Constructed Analogs (LOCA)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_LOCA/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_LOCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_LOCA&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_LOCA"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_MODIS/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=MODIS/: NASA NEX: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=MODIS/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_MODIS/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_MODIS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_MODIS&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_MODIS"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_DCP30/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-DCP30/: NASA NEX: Downscaled Climate Projections (NEX-DCP30)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-DCP30/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Downscaled Climate Projections (NEX-DCP30)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_DCP30/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_DCP30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_DCP30&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_DCP30"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_GDDP/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-GDDP/: NASA NEX: Global Daily Downscaled Projections (NEX-GDDP)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-GDDP/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Global Daily Downscaled Projections (NEX-GDDP)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_GDDP/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_GDDP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_GDDP&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_GDDP"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gefs_pds/", "public", "File Names from the AWS S3 noaa-gefs-pds Bucket: NOAA Global Ensemble Forecast System (GEFS): Project data files", "This dataset has file information from the AWS S3 noaa-gefs-pds bucket at https://noaa-gefs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Ensemble Forecast System (GEFS)\nName2: Project data files\nDescription: The Global Ensemble Forecast System (GEFS), previously known as the GFS Global ENSemble (GENS), is a weather forecast model made up of 21 separate forecasts, or ensemble members. The National Centers for Environmental Prediction (NCEP) started the GEFS to address the nature of uncertainty in weather observations, which is used to initialize weather forecast models. The GEFS attempts to quantify the amount of uncertainty in a forecast by generating an ensemble of multiple forecasts, each minutely different, or perturbed, from the original observations. With global coverage, GEFS is produced four times a day with weather forecasts going out to 16 days.\n\nDocumentation: https://docs.opendata.aws/noaa-gefs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GEFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GEFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gefs_pds/index.json", "https://registry.opendata.aws/noaa-gefs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gefs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gefs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gefs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_bdp_pds/", "public", "File Names from the AWS S3 noaa-gfs-bdp-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 GFS data", "This dataset has file information from the AWS S3 noaa-gfs-bdp-pds bucket at https://noaa-gfs-bdp-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_bdp_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_bdp_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_bdp_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_bdp_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_pds/", "public", "File Names from the AWS S3 noaa-gfs-pds Bucket: Unidata NOAA Global Forecast System (GFS) Model: A rolling four-week archive of 0.25 degree GFS data", "This dataset has file information from the AWS S3 noaa-gfs-pds bucket at https://noaa-gfs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Unidata NOAA Global Forecast System (GFS) Model\nName2: A rolling four-week archive of 0.25 degree GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks.\n\nDocumentation: https://docs.opendata.aws/noaa-gfs-pds/readme.html\nContact: https://www.ncdc.noaa.gov/contact\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_pds/index.json", "https://registry.opendata.aws/noaa-gfs-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfspara_pds/", "public", "File Names from the AWS S3 noaa-gfspara-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 FV3-based parallel version of the GFS", "This dataset has file information from the AWS S3 noaa-gfspara-pds bucket at https://noaa-gfspara-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 FV3-based parallel version of the GFS\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfspara_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfspara_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfspara_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfspara_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghcn_pds/", "public", "File Names from the AWS S3 noaa-ghcn-pds Bucket: NOAA Global Historical Climatology Network Daily (GHCN-D): Project data files", "This dataset has file information from the AWS S3 noaa-ghcn-pds bucket at https://noaa-ghcn-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Daily (GHCN-D)\nName2: Project data files\nDescription: Global Historical Climatology Network - Daily is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://docs.opendata.aws/noaa-ghcn-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncdc.noaa.gov/ghcn-daily-description). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghcn_pds/index.json", "https://registry.opendata.aws/noaa-ghcn/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghcn_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghcn_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghcn_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghe_pds/", "public", "File Names from the AWS S3 noaa-ghe-pds Bucket: NOAA Global Hydro Estimator (GHE): Project data files", "This dataset has file information from the AWS S3 noaa-ghe-pds bucket at https://noaa-ghe-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Hydro Estimator (GHE)\nName2: Project data files\nDescription: Global Hydro-Estimator provides a global mosaic imagery of rainfall estimates from multi-geostationary satellites, which currently includes GOES-16, GOES-15, Meteosat-8, Meteosat-11 and Himawari-8. The GHE products include: Instantaneous rain rate, 1 hour, 3 hour, 6 hour, 24 hour and also multi-day rainfall accumulation.\n\nDocumentation: https://www.ospo.noaa.gov/Products/atmosphere/ghe/index.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 15 minute-instantaneous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghe_pds/index.json", "https://registry.opendata.aws/noaa-ghe/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghe_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghe_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghe_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_global_hourly_pds/", "public", "File Names from the AWS S3 noaa-global-hourly-pds Bucket: NOAA Global Historical Climatology Network Hourly (GHCN-H): Project data files", "This dataset has file information from the AWS S3 noaa-global-hourly-pds bucket at https://noaa-global-hourly-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Hourly (GHCN-H)\nName2: Project data files\nDescription: Global Historical Climatology Network - Hourly is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: daily (Manually)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_global_hourly_pds/index.json", "https://registry.opendata.aws/noaa-ghcnh/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_global_hourly_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_global_hourly_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_global_hourly_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3NoaaGoes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nUse ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browser the files in buckets. This dataset is a solution to that problem for this bucket.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3NoaaGoes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3NoaaGoes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3NoaaGoes16&showErrors=false&email=", "NOAA", "awsS3NoaaGoes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket: GOES on AWS: GOES-16 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-16 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes16&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes17/", "public", "File Names from the AWS S3 noaa-goes17 Bucket: GOES on AWS: GOES-17 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes17 bucket at https://noaa-goes17.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-17 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes17/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes17&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes17"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_hrrr_pds/", "public", "File Names from the AWS S3 noaa-hrrr-pds Bucket: NOAA High-Resolution Rapid Refresh (HRRR) Model: A rolling one-week archive of HRRR data.", "This dataset has file information from the AWS S3 noaa-hrrr-pds bucket at https://noaa-hrrr-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA High-Resolution Rapid Refresh (HRRR) Model\nName2: A rolling one-week archive of HRRR data.\nDescription: The HRRR is a NOAA real-time 3-km resolution, hourly updated, cloud-resolving, convection-allowing atmospheric model, initialized by 3km grids with 3km radar assimilation. Radar data is assimilated in the HRRR every 15 min over a 1-h period adding further detail to that provided by the hourly data assimilation from the 13km radar-enhanced Rapid Refresh.\n\nDocumentation: https://docs.opendata.aws/noaa-hrrr-pds/readme.html\nContact: https://rapidrefresh.noaa.gov/hrrr/\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_hrrr_pds/index.json", "https://registry.opendata.aws/noaa-hrrr-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_hrrr_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_hrrr_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_hrrr_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_isd_pds/", "public", "File Names from the AWS S3 noaa-isd-pds Bucket: NOAA Integrated Surface Database (ISD): Project data files", "This dataset has file information from the AWS S3 noaa-isd-pds bucket at https://noaa-isd-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Integrated Surface Database (ISD)\nName2: Project data files\nDescription: The Integrated Surface Database (ISD) consists of global hourly and synoptic observations compiled from numerous sources into a gzipped fixed width format. ISD was developed as a joint activity within Asheville's Federal Climate Complex. The database includes over 35,000 stations worldwide, with some having data as far back as 1901, though the data show a substantial increase in volume in the 1940s and again in the early 1970s. Currently, there are over 14,000 \"active\" stations updated daily in the database. The total uncompressed data volume is around 600 gigabytes; however, it continues to grow as more data are added. ISD includes numerous parameters such as wind speed and direction, wind gust, temperature, dew point, cloud data, sea level pressure, altimeter setting, station pressure, present weather, visibility, precipitation amounts for various time periods, snow depth, and various other elements as observed by each station.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_isd_pds/index.json", "https://registry.opendata.aws/noaa-isd/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_isd_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_isd_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_isd_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nexrad_level2/", "public", "File Names from the AWS S3 noaa-nexrad-level2 Bucket: NEXRAD on AWS: NEXRAD Level II archive data", "This dataset has file information from the AWS S3 noaa-nexrad-level2 bucket at https://noaa-nexrad-level2.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II archive data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nexrad_level2/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nexrad_level2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nexrad_level2&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nexrad_level2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_pds/", "public", "File Names from the AWS S3 noaa-nwm-pds Bucket: NOAA National Water Model Short-Range Forecast: A rolling four week archive of NWM data.", "This dataset has file information from the AWS S3 noaa-nwm-pds bucket at https://noaa-nwm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Short-Range Forecast\nName2: A rolling four week archive of NWM data.\nDescription: The National Water Model (NWM) is a water resources model that simulates and forecasts water budget variables, including snowpack, evapotranspiration, soil moisture and streamflow, over the entire continental United States (CONUS). The model, launched in August 2016, is designed to improve the ability of NOAA to meet the needs of its stakeholders (forecasters, emergency managers, reservoir operators, first responders, recreationists, farmers, barge operators, and ecosystem and floodplain managers) by providing expanded accuracy, detail, and frequency of water information. It is operated by NOAA\u2019s Office of Water Prediction. This bucket contains a four-week rollover of the Short Range Forecast model output and the corresponding forcing data for the model. The model is forced with meteorological data from the High Resolution Rapid Refresh (HRRR) and the Rapid Refresh (RAP) models. The Short Range Forecast configuration cycles hourly and produces hourly deterministic forecasts of streamflow and hydrologic states out to 18 hours.\n\nDocumentation: https://docs.opendata.aws/noaa-nwm-pds/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_pds/index.json", "https://registry.opendata.aws/noaa-nwm-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_retro_v2_0_pds/", "public", "File Names from the AWS S3 noaa-nwm-retro-v2.0-pds Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 2.0.", "This dataset has file information from the AWS S3 noaa-nwm-retro-v2.0-pds bucket at https://noaa-nwm-retro-v2.0-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 2.0.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\n... (4 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_retro_v2_0_pds/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_retro_v2_0_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_retro_v2_0_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_retro_v2_0_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ofs_pds/", "public", "File Names from the AWS S3 noaa-ofs-pds Bucket: NOAA Operational Forecast System (OFS): Project data files", "This dataset has file information from the AWS S3 noaa-ofs-pds bucket at https://noaa-ofs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Operational Forecast System (OFS)\nName2: Project data files\nDescription: The Operational Forecast System (OFS) has been developed to serve the maritime user community. OFS was developed in a joint project of the NOAA/National Ocean Service (NOS)/Office of Coast Survey, the NOAA/NOS/Center for Operational Oceanographic Products and Services (CO-OPS), and the NOAA/National Weather Service (NWS)/National Centers for Environmental Prediction (NCEP) Central Operations (NCO). OFS generates water level, water current, water temperature, water salinity (except for the Great Lakes) and wind conditions nowcast and forecast guidance four times per day.\n\nDocumentation: https://docs.opendata.aws/noaa-ofs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA OFS site](https://tidesandcurrents.noaa.gov/models.html). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight and generates 6-hour nowcasts and 48-hour forecast guidance\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ofs_pds/index.json", "https://registry.opendata.aws/noaa-ofs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ofs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ofs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ofs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/", "public", "File Names from the AWS S3 nrel-pds-wtk Bucket with prefix=wtk-techno-economic/pywtk-data/: NREL Wind Integration National Dataset on AWS: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format", "This dataset has file information from the AWS S3 nrel-pds-wtk bucket at https://nrel-pds-wtk.s3.us-west-2.amazonaws.com/ with prefix=wtk-techno-economic/pywtk-data/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NREL Wind Integration National Dataset on AWS\nName2: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format\nDescription: The [Wind Integration National Dataset (WIND)](https://www.nrel.gov/grid/wind-toolkit.html) is an update and expansion of the Eastern Wind Integration Data Set and Western Wind Integration Data Set. It supports the next generation of wind integration studies.\n\nDocumentation: https://www.nrel.gov/grid/wind-toolkit.html\nContact: wind-toolkit@nrel.gov\nManagedBy: [National Renewable Energy Laboratory](https://www.nrel.gov/)\nUpdateFrequency: As Needed\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/index.json", "https://registry.opendata.aws/nrel-pds-wtk/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nwm_archive/", "public", "File Names from the AWS S3 nwm-archive Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 1.2.", "This dataset has file information from the AWS S3 nwm-archive bucket at https://nwm-archive.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 1.2.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nwm_archive/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nwm_archive.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nwm_archive&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nwm_archive"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nyc_tlc/", "public", "File Names from the AWS S3 nyc-tlc Bucket: New York City Taxi and Limousine Commission (TLC) Trip Record Data: CSV files containing NYC TLC trip data.", "This dataset has file information from the AWS S3 nyc-tlc bucket at https://nyc-tlc.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: New York City Taxi and Limousine Commission (TLC) Trip Record Data\nName2: CSV files containing NYC TLC trip data.\nDescription: Data of trips taken by taxis and for-hire vehicles in New York City.\n\nDocumentation: http://www.nyc.gov/html/tlc/html/about/trip_record_data.shtml\nContact: research@tlc.nyc.gov\nUpdateFrequency: As soon as new data is available to be shared publicly.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nyc_tlc/index.json", "https://registry.opendata.aws/nyc-tlc-trip-records-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nyc_tlc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nyc_tlc&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nyc_tlc"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_oicr_icgc_meta_metadata/", "public", "File Names from the AWS S3 oicr.icgc.meta Bucket with prefix=metadata/: ICGC on AWS: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README", "This dataset has file information from the AWS S3 oicr.icgc.meta bucket at https://oicr.icgc.meta.s3.us-east-1.amazonaws.com/ with prefix=metadata/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ICGC on AWS\nName2: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README\nDescription: The International Cancer Genome Consortium (ICGC) coordinates projects with the common aim of accelerating research into the causes and control of cancer. The PanCancer Analysis of Whole Genomes (PCAWG) study is an international collaboration to identify common patterns of mutation in whole genomes from ICGC. More than 2,400 consistently analyzed genomes corresponding to over 1,100 unique ICGC donors are now freely available on Amazon S3 to credentialed researchers subject to ICGC data sharing policies.\n\nDocumentation: https://dcc.icgc.org/icgc-in-the-cloud/aws\nContact: dcc-support@icgc.org\nUpdateFrequency: New data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_oicr_icgc_meta_metadata/index.json", "https://registry.opendata.aws/icgc/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_oicr_icgc_meta_metadata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_oicr_icgc_meta_metadata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_oicr_icgc_meta_metadata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ooni_data/", "public", "File Names from the AWS S3 ooni-data Bucket: Open Observatory of Network Interference: S3 bucket with data", "This dataset has file information from the AWS S3 ooni-data bucket at https://ooni-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open Observatory of Network Interference\nName2: S3 bucket with data\nDescription: A free software, global observation network for detecting censorship, surveillance and traffic manipulation on the internet.\n\nDocumentation: https://ooni.torproject.org/about/\nContact: https://ooni.torproject.org/get-involved/\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ooni_data/index.json", "https://registry.opendata.aws/ooni/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ooni_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ooni_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ooni_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openaq_fetches/", "public", "File Names from the AWS S3 openaq-fetches Bucket: OpenAQ: Minutely CSVs of global air quality fetched from sources all over the world", "This dataset has file information from the AWS S3 openaq-fetches bucket at https://openaq-fetches.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenAQ\nName2: Minutely CSVs of global air quality fetched from sources all over the world\nDescription: Global, aggregated physical air quality data from public data sources provided by government, research-grade and other sources. These awesome groups do the hard work of measuring these data and publicly sharing them, and our community makes them more universally-accessible to both humans and machines.\n\nDocumentation: https://openaq.org\nContact: info@openaq.org\nManagedBy: [OpenAQ](https://openaq.org)\nUpdateFrequency: Minutely\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openaq_fetches/index.json", "https://registry.opendata.aws/openaq/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openaq_fetches.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openaq_fetches&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openaq_fetches"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_opencitymodel/", "public", "File Names from the AWS S3 opencitymodel Bucket: Open City Model (OCM): Project data files", "This dataset has file information from the AWS S3 opencitymodel bucket at https://opencitymodel.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open City Model (OCM)\nName2: Project data files\nDescription: Open City Model is an initiative to provide cityGML data for all the buildings in the United States. By using other open datasets in conjunction with our own code and algorithms it is our goal to provide 3D geometries for every US building.\n\nDocumentation: https://github.com/opencitymodel/opencitymodel\nContact: https://github.com/opencitymodel/opencitymodel#contact\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_opencitymodel/index.json", "https://registry.opendata.aws/opencitymodel/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_opencitymodel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_opencitymodel&showErrors=false&email=", "Amazon Web Services", "awsS3Files_opencitymodel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openneuro_org/", "public", "File Names from the AWS S3 openneuro.org Bucket: OpenNeuro: All datasets", "This dataset has file information from the AWS S3 openneuro.org bucket at https://openneuro.org.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenNeuro\nName2: All datasets\nDescription: OpenNeuro is a database of openly-available brain imaging data. The data are shared according to a Creative Commons CC0 license, providing a broad range of brain imaging data to researchers and citizen scientists alike. The database primarily focuses on functional magnetic resonance imaging (fMRI) data, but also includes other imaging modalities including structural and diffusion MRI, electroencephalography (EEG), and magnetoencephalograpy (MEG). OpenfMRI is a project of the [Center for Reproducible Neuroscience at Stanford University](http://reproducibility.stanford.edu). Development of the OpenNeuro resource has been funded by the National Science Foundation, National Institute of Mental Health, National Institute on Drug Abuse, and the Laura and John Arnold Foundation.\n\nDocumentation: http://openneuro.org\nContact: Support form at https://openneuro.org\nUpdateFrequency: New datasets deposited every 4-6 days\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openneuro_org/index.json", "https://registry.opendata.aws/openneuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openneuro_org.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openneuro_org&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openneuro_org"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osm_pds/", "public", "File Names from the AWS S3 osm-pds Bucket: OpenStreetMap on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 osm-pds bucket at https://osm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap on AWS\nName2: Imagery and metadata\nDescription: OSM is a free, editable map of the world, created and maintained by volunteers. Regular OSM data archives are made available in Amazon S3.\n\nDocumentation: https://docs.opendata.aws/osm-pds/readme.html\nContact: https://github.com/mojodna/osm-pds-pipelines/issues\nUpdateFrequency: Data is updated weekly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osm_pds/index.json", "https://registry.opendata.aws/osm/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osmlr/", "public", "File Names from the AWS S3 osmlr Bucket: OpenStreetMap Linear Referencing: Manifest and data files", "This dataset has file information from the AWS S3 osmlr bucket at https://osmlr.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap Linear Referencing\nName2: Manifest and data files\nDescription: OSMLR a linear referencing system built on top of OpenStreetMap. OSM has great information about roads around the world and their interconnections, but it lacks the means to give a stable identifier to a stretch of roadway. OSMLR provides a stable set of numerical IDs for every 1 kilometer stretch of roadway around the world. In urban areas, OSMLR IDs are attached to each block of roadways between significant intersections.\n\nDocumentation: https://github.com/opentraffic/osmlr/blob/master/docs/intro.md\nContact: https://github.com/opentraffic/osmlr/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osmlr/index.json", "https://registry.opendata.aws/osmlr/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osmlr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osmlr&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osmlr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_qiime2_data/", "public", "File Names from the AWS S3 qiime2-data Bucket: QIIME 2 User Tutorial Datasets: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs", "This dataset has file information from the AWS S3 qiime2-data bucket at https://qiime2-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: QIIME 2 User Tutorial Datasets\nName2: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs\nDescription: QIIME 2 is a powerful, extensible, and decentralized microbiome analysis package with a focus on data and analysis transparency. QIIME 2 enables researchers to start an analysis with raw DNA sequence data and finish with publication-quality figures and statistical results. This dataset contains the user docs (and related datasets) for QIIME 2.\n\nDocumentation: https://docs.qiime2.org\nContact: https://forum.qiime2.org\nManagedBy: The QIIME 2 Development Team\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_qiime2_data/index.json", "https://registry.opendata.aws/qiime2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_qiime2_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_qiime2_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_qiime2_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_safecast_opendata_public_us_east_1/", "public", "File Names from the AWS S3 safecast-opendata-public-us-east-1 Bucket: Safecast: Bulk exports of air and radiation measurements", "This dataset has file information from the AWS S3 safecast-opendata-public-us-east-1 bucket at https://safecast-opendata-public-us-east-1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Safecast\nName2: Bulk exports of air and radiation measurements\nDescription: An ongoing collection of radiation and air quality measurements taken by devices involved in the Safecast project.\n\nDocumentation: https://github.com/Safecast/safecastapi/wiki/Data-Sets\nContact: https://groups.google.com/forum/#!forum/safecast-devices\nManagedBy: [Safecast](https://safecast.org/)\nUpdateFrequency: Continuous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_safecast_opendata_public_us_east_1/index.json", "https://registry.opendata.aws/safecast/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_safecast_opendata_public_us_east_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_safecast_opendata_public_us_east_1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_safecast_opendata_public_us_east_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s1_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s1-l1c/: Sentinel-1: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s1-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C\nDescription: [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1) is a pair of European radar imaging (SAR) satellites launched in 2014 and 2016. Its 6 days revisit cycle and ability to observe through clouds makes it perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. GRD data is available globally since January 2017.\n\nDocumentation: https://roda.sentinel-hub.com/sentinel-s1-l1c/GRD/readme.html\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s1_l1c/index.json", "https://registry.opendata.aws/sentinel-1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s1_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s1_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s1_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l1c/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l1c/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l2a/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l2a/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l2a/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l2a/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l2a&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l2a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel1_slc_seasia_pds/", "public", "File Names from the AWS S3 sentinel1-slc-seasia-pds Bucket: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan", "This dataset has file information from the AWS S3 sentinel1-slc-seasia-pds bucket at https://sentinel1-slc-seasia-pds.s3.ap-southeast-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan\nName2: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan\nDescription: The S1 Single Look Complex (SLC) dataset contains Synthetic Aperture Radar (SAR) data in the C-Band wavelength. The SAR sensors are installed on a two-satellite (Sentinel-1A and Sentinel-1B) constellation orbiting the Earth with a combined revisit time of six days, operated by the European Space Agency. The S1 SLC data are a Level-1 product that collects radar amplitude and phase information in all-weather, day or night conditions, which is ideal for studying natural hazards and emergency response, land applications, oil spill monitoring, sea-ice conditions, and associated climate change effects.\n\nDocumentation: https://github.com/earthobservatory/sentinel1-opds/\nContact: https://github.com/earthobservatory/sentinel1-opds/\nManagedBy: [Earth Observatory of Singapore, Nanyang Technological University](https://earthobservatory.sg)\nUpdateFrequency: S1 SLC data for the region of interest will be updated regularly, as it becomes available on the Alaska Satellite Facility endpoint.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel1_slc_seasia_pds/index.json", "https://registry.opendata.aws/sentinel1-slc-seasia-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel1_slc_seasia_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel1_slc_seasia_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel1_slc_seasia_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_silo_open_data/", "public", "File Names from the AWS S3 silo-open-data Bucket: SILO climate data on AWS: SILO open data", "This dataset has file information from the AWS S3 silo-open-data bucket at https://silo-open-data.s3.ap-southeast-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SILO climate data on AWS\nName2: SILO open data\nDescription: [SILO](https://www.longpaddock.qld.gov.au/silo) is a database of Australian [climate data](https://www.longpaddock.qld.gov.au/silo/about/climate-variables) from 1889 to the present. It provides continuous, daily time-step [data products](https://www.longpaddock.qld.gov.au/silo/about/data-products) in ready-to-use [formats](https://www.longpaddock.qld.gov.au/silo/about/file-formats-and-samples) for research and operational applications. Gridded SILO data in annual NetCDF format are on AWS. Point data are available from the [SILO website](https://www.longpaddock.qld.gov.au/silo/).\n\nDocumentation: https://www.longpaddock.qld.gov.au/silo/gridded-data\nContact: https://www.longpaddock.qld.gov.au/silo/contact-us\nManagedBy: Queensland Government\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_silo_open_data/index.json", "https://registry.opendata.aws/silo/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_silo_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_silo_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_silo_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_softwareheritage/", "public", "File Names from the AWS S3 softwareheritage Bucket: Software Heritage Graph Dataset: Software Heritage Graph Dataset", "This dataset has file information from the AWS S3 softwareheritage bucket at https://softwareheritage.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Software Heritage Graph Dataset\nName2: Software Heritage Graph Dataset\nDescription: [Software Heritage](https://www.softwareheritage.org/) is the largest existing public archive of software source code and accompanying development history. The Software Heritage Graph Dataset is a fully deduplicated Merkle DAG representation of the Software Heritage archive.\n\nDocumentation: https://wiki.softwareheritage.org/wiki/Graph_Dataset_on_Amazon_Athena\nContact: swh-devel@inria.fr\nUpdateFrequency: Data is updated yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_softwareheritage/index.json", "https://registry.opendata.aws/software-heritage/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_softwareheritage.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_softwareheritage&showErrors=false&email=", "Amazon Web Services", "awsS3Files_softwareheritage"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_spacenet_dataset/", "public", "File Names from the AWS S3 spacenet-dataset Bucket: SpaceNet: Imagery and metadata in a S3 bucket", "This dataset has file information from the AWS S3 spacenet-dataset bucket at https://spacenet-dataset.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SpaceNet\nName2: Imagery and metadata in a S3 bucket\nDescription: SpaceNet, launched in August 2016 as an open innovation project offering a repository of freely available imagery with co-registered map features. Before SpaceNet, computer vision researchers had minimal options to obtain free, precision-labeled, and high-resolution satellite imagery. Today, SpaceNet hosts datasets developed by its own team, along with data sets from projects like IARPA\u2019s Functional Map of the World (fMoW).\n\nDocumentation: https://spacenetchallenge.github.io\nContact: https://github.com/SpaceNetChallenge/utilities/issues\nManagedBy: [SpaceNet](https://spacenet.ai/)\nUpdateFrequency: New imagery and features are added quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_spacenet_dataset/index.json", "https://registry.opendata.aws/spacenet/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_spacenet_dataset.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_spacenet_dataset&showErrors=false&email=", "Amazon Web Services", "awsS3Files_spacenet_dataset"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_unidata_nexrad_level2_chunks/", "public", "File Names from the AWS S3 unidata-nexrad-level2-chunks Bucket: NEXRAD on AWS: NEXRAD Level II real-time data", "This dataset has file information from the AWS S3 unidata-nexrad-level2-chunks bucket at https://unidata-nexrad-level2-chunks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II real-time data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_unidata_nexrad_level2_chunks/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_unidata_nexrad_level2_chunks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_unidata_nexrad_level2_chunks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_unidata_nexrad_level2_chunks"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_usgs_lidar_public/", "public", "File Names from the AWS S3 usgs-lidar-public Bucket: USGS 3DEP LiDAR Point Clouds: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.", "This dataset has file information from the AWS S3 usgs-lidar-public bucket at https://usgs-lidar-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: USGS 3DEP LiDAR Point Clouds\nName2: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.\nDescription: The goal of the [USGS 3D Elevation Program ](https://www.usgs.gov/core-science-systems/ngp/3dep) (3DEP) is to collect elevation data in the form of light detection and ranging (LiDAR) data over the conterminous United States, Hawaii, and the U.S. territories, with data acquired over an 8-year period. This dataset provides two realizations of the 3DEP point cloud data. The first resource is a public access organization provided in [Entwine Point Tiles](https://entwine.io/entwine-point-tile.html) format, which a lossless, full-density, streamable octree based on [LASzip](https://laszip.org) (LAZ) encoding. The second resource is a [Requester Pays](https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html) of the same data in LAZ (Compressed LAS) format. Resource names in both buckets correspond to the USGS project names.\n\nDocumentation: https://github.com/hobu/usgs-lidar/\nContact: https://github.com/hobu/usgs-lidar\nManagedBy: [Hobu, Inc.](https://hobu.co)\nUpdateFrequency: Periodically\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_usgs_lidar_public/index.json", "https://registry.opendata.aws/usgs-lidar/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_usgs_lidar_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_usgs_lidar_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_usgs_lidar_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_web_language_models/", "public", "File Names from the AWS S3 web-language-models Bucket: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl): Parallel Corpora to/from English for all official EU languages", "This dataset has file information from the AWS S3 web-language-models bucket at https://web-language-models.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl)\nName2: Parallel Corpora to/from English for all official EU languages\nDescription: ParaCrawl is a set of large parallel corpora to/from English for all official EU languages by a broad web crawling effort. State-of-the-art methods are applied for the entire processing chain from identifying web sites with translated text all the way to collecting, cleaning and delivering parallel corpora that are ready as training data for CEF.AT and translation memories for DG Translation.\n\nDocumentation: https://paracrawl.eu/releases.html\nContact: For questions regarding the datasets contact Kenneth Heafield, email kheafiel@inf.ed.ac.uk. For reporting any issues about bitextor pipeline visit https://github.com/bitextor/bitextor/issues.\nManagedBy: [ParaCrawl](https://paracrawl.eu)\nUpdateFrequency: New data is added according to ParaCrawl release schedule.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_web_language_models/index.json", "https://registry.opendata.aws/paracrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_web_language_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_web_language_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_web_language_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_xiph_media/", "public", "File Names from the AWS S3 xiph-media Bucket: Xiph.Org Test Media: Video and imagery data", "This dataset has file information from the AWS S3 xiph-media bucket at https://xiph-media.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Xiph.Org Test Media\nName2: Video and imagery data\nDescription: Uncompressed video used for video compression and video processing research.\n\nDocumentation: https://media.xiph.org/aws.html\nContact: Thomas Daede tdaede@xiph.org\nUpdateFrequency: New videos are added when contributors submit them.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_xiph_media/index.json", "https://registry.opendata.aws/xiph-media/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_xiph_media.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_xiph_media&showErrors=false&email=", "Amazon Web Services", "awsS3Files_xiph_media"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ycb_benchmarks/", "public", "File Names from the AWS S3 ycb-benchmarks Bucket: Yale-CMU-Berkeley (YCB) Object and Model Set: Project data files", "This dataset has file information from the AWS S3 ycb-benchmarks bucket at https://ycb-benchmarks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Yale-CMU-Berkeley (YCB) Object and Model Set\nName2: Project data files\nDescription: This project primarily aims to facilitate performance benchmarking in robotics research. The dataset provides mesh models, RGB, RGB-D and point cloud images of over 80 objects. The physical objects are also available via the [YCB benchmarking project](http://www.ycbbenchmarks.com/). The data are collected by two state of the art systems: UC Berkley's scanning rig and the Google scanner. The UC Berkley's scanning rig data provide meshes generated with Poisson reconstruction, meshes generated with volumetric range image integration, textured versions of both meshes, Kinbody files for using the meshes with OpenRAVE, 600 High-resolution RGB images, 600 RGB-D images, and 600 point cloud images for each object. The Google scanner data provides 3 meshes with different resolutions (16k, 64k, and 512k polygons), textured versions of each mesh, Kinbody files for using the meshes with OpenRAVE.\n\nDocumentation: http://www.ycbbenchmarks.com/\nContact: bcalli@wpi.edu\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ycb_benchmarks/index.json", "https://registry.opendata.aws/ycb-benchmarks/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ycb_benchmarks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ycb_benchmarks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ycb_benchmarks"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the June 2020 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.graph", "", "", "public", "GLOBEC NEP Vertical Plankton Tow (VPT) Data, 1997-2001", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nCalifornia Current Program\nVertical Plankton Tow (VPT) Data\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10181&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/vpt%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/vpt.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ncast_no (Cast Number Within the Cruise)\nstation_id\nabund_m3 (Abundance, count m-3)\ncomments\ncounter_id\nd_n_flag (Day/Night Flag)\ngear_area (Mouth Area of Net, m2)\ngear_mesh (Net's Mesh Size, mm)\ngear_type\ngenus_species\nlife_stage\nlocal_code\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecVpt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecVpt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecVpt/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecVpt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecVpt&showErrors=false&email=", "GLOBEC", "erdGlobecVpt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://usgodae.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, the EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\nBeach Monitoring Quality Assurance Project Plan (CWBMONQAPP002):\nhttps://www.pacioos.hawaii.edu/wp-content/uploads/2016/08/Beach_Monitoring_QAPP_CWBMONQAPP002_120507.pdf\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwb_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwb_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwb_water_quality/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/cwb_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwb_water_quality&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "cwb_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.graph", "", "", "public", "HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii", "The Hawaii Institute of Marine Biology (HIMB) automatic weather station (AWS) records hourly measurements of precipitation, air temperature, wind speed and direction, and irradiance. Sensors include an Eppley 295-385 nm ultraviolet (UV) radiometer, a LiCor 200SZ Pyranometer, and a LiCor Quantameter (400-700 nm). The sensors are located on the roof of HIMB's Coral Reef Ecology Laboratory (Point Lab) on Moku o Loe (Coconut Island) in Kaneohe Bay on the windward (eastern) coast of Oahu in Hawaii. An accompanying sea water temperature sensor is located less than 10 m offshore of the weather station at a shallow depth of approximately 1 m.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HIMB: HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nsea_water_temperature (water temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nwind_from_direction_std (standard deviation of wind direction (processed), degrees)\nrainfall_amount (total rainfall (processed), mm)\nshortwave_radiation (downwelling shortwave radiation (processed), W/m2)\nultraviolet_radiation (ultraviolet radiation (processed), W/m2)\nphotosynthetic_radiation (photosynthetically active radiation (processed), umol m-2 s-1)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_atn (QARTOD Attenuated Signal Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (139 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HIMB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HIMB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HIMB/index.json", "https://www.pacioos.hawaii.edu/weather/obs-mokuoloe/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HIMB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HIMB&showErrors=false&email=", "Hawaii Institute of Marine Biology (HIMB)", "AWS-HIMB"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.graph", "", "", "public", "Hui O Ka Wai Ola Water Quality Data", "The goal of the Hui O Ka Wai Ola (Association Of The Living Waters) citizen-science based water quality program is to increase the capacity for monitoring water quality in Maui coastal waters by generating reliable data to assess long-term water-quality conditions and detect temporal trends. These data augment the data produced by the Hawaii Department of Health (DOH) Clean Water Branch (CWB) beach monitoring program on Maui.\n \nData are collected and analyzed every two or three weeks for physical and chemical parameters, including ocean salinity, pH, temperature, organic nutrients (nitrogen and phosphorous compounds), dissolved oxygen (DO), and total suspended sediment (TSS). Some water samples are immediately tested at mobile labs while others are processed for testing at University of Hawaii and/or other labs.\n \nUsers of these data should cite the following publication:\n \nFalinski, Kim, Dana Reed, Tova Callender, Emily Fielding, Robin Newbold, and Alana Yurkanin. (2018). Hui O Ka Wai Ola Water Quality Data [Data set]. Zenodo. \"http://doi.org/10.5281/zenodo.1173717\"\n \nFor further information, please visit:\nhttps://www.huiokawaiola.com\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nlocation_id (sampling site identifier)\nlocation_name\nsample_id (sample identifier)\nsession_id (sampling session identifier)\nwater_temperature (Celsius)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hui_water_quality/index.json", "https://www.huiokawaiola.com", "http://upwell.pfeg.noaa.gov/erddap/rss/hui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hui_water_quality&showErrors=false&email=", "Hui O Ka Wai Ola", "hui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitored water quality at several beaches across the island of Maui in the State of Hawaii during the years 2010-2016. This community-based monitoring effort provided valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites were also monitored for harmful bacteria levels of Enterococcus through 2014-06-26. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours.\n\nData were managed through an online repository, the Coral Reef Monitoring Data Portal (now defunct), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection was coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/maui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/maui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/maui_water_quality/index.json", "https://coral.org/maui/", "http://upwell.pfeg.noaa.gov/erddap/rss/maui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=maui_water_quality&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "maui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys. See\nhttps://www.ndbc.noaa.gov/measdes.shtml for a description of the measurements.\n\nThe source data from NOAA NDBC has different column names, different units,\nand different missing values in different files, and other problems\n(notably, lots of rows with duplicate or different values for the same time\npoint). This dataset is a standardized, reformatted, and lightly edited\nversion of that source data, created by NOAA NMFS SWFSC ERD (email:\nerd.data at noaa.gov). Before 2020-01-29, this dataset only had the data\nthat was closest to a given hour, rounded to the nearest hour. Now, this\ndataset has all of the data available from NDBC with the original time\nvalues. If there are multiple source rows for a given buoy for a given\ntime, only the row with the most non-NaN data values is kept. If there is\na gap in the data, a row of missing values is inserted (which causes a nice\ngap when the data is graphed). Also, some impossible data values are\nremoved, but this data is not perfectly clean. This dataset is now updated\nevery 5 minutes.\n\nThis dataset has both historical data (quality controlled, before\n2020-06-01T00:00:00Z) and near real time data (less quality controlled,\nwhich may change at any time, from 2020-06-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Identifier)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.graph", "", "", "public", "NEFSC Continuous Plankton Recorder", "A summary for the data\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ncruise\nsample\nlatitude (degrees_north)\nlongitude (degrees_east)\nphyto_color_indx (Phytoplankton Color Index)\nmarmap_tax_code (Marmap Taxonomic Code)\nmarmap_stage_code\nabundance (per 100 cubic meters)\nlife_stage\ntaxonomic_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/wocecpr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/wocecpr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/wocecpr/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "http://upwell.pfeg.noaa.gov/erddap/rss/wocecpr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=wocecpr&showErrors=false&email=", "NEFSC", "wocecpr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "", "public", "North Pacific High, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.graph", "", "", "public", "OSMC Argo Profile data", "OSMC Argo Profile data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\norganization_name\ncountry_name\nplatform_type_name\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nparameter_name\ndaily_obs_count\nobservation_depth\nobservation_value\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_PROFILERS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_PROFILERS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_PROFILERS/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_PROFILERS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_PROFILERS&showErrors=false&email=", "OSMC", "OSMC_PROFILERS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.graph", "", "", "public", "OSMC normalized observations from GTS", "OSMC normalized In-situ Real time GTS data\n\ncdm_data_type = Point\nVARIABLES:\nPLATFORM_CODE (Station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform\nparameter\nOBSERVATION_VALUE\nOBSERVATION_DEPTH\nCOUNTRY_NAME\norganization_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_Points_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_Points_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_Points/index.json", "https://www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_Points.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_Points&showErrors=false&email=", "OSMC", "OSMC_Points"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001.graph", "", "", "public", "PacIOOS Beach Camera 001: Waikiki, Oahu, Hawaii", "A digital camera on top of the Sheraton Waikiki hotel was used to photograph the shoreline of Waikiki beach along the South Shore of the island of Oahu in the State of Hawaii. The oblique camera view presented here captures the shoreline leading southeast towards Diamond Head crater. It operated for over 4.5 years between February 5, 2009 and October 13, 2013. Capturing hourly snapshots at a set vantage point during the local daytime hours of 6:00 AM or 7:00 AM to 5:00 PM, these images are useful for tracking beach dynamics such as wave run-up, sand movement, and turbidity plumes over time. The camera was mounted on top of a 3 meter wall extending above the roof surface for a total height of 93 meters above ground level or 96 meters above mean sea level. See also BEACHCAM-002 for an alternate camera view from the same location pointing directly downwards.\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (m)\naboveGround (Height, m)\nurl\nname (File Name)\nsize (bytes)\nfileType (File Type)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/BEACHCAM-001_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/BEACHCAM-001_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/BEACHCAM-001/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/BEACHCAM-001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=BEACHCAM-001&showErrors=false&email=", "University of Hawaii", "BEACHCAM-001"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_4"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_2/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_2&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_6/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_6&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_7/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_7&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_7"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_8/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_8&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_9/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_9&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.graph", "", "", "public", "PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-04 is located in Hilo Bay on the east side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-04: PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-04/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-hilo/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-04&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-04"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.graph", "", "", "public", "PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-05 is located in Pelekane Bay near Kawaihae Harbor on the west side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-05: PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-05/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-pelekane/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-05&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-05"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.graph", "", "", "public", "PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii", "The Pacific Islands Ocean Observing System (PacIOOS) operates a Davis Instruments automatic weather station (AWS) near the entrance to Honolulu Harbor on the leeward (western) coast of Oahu in Hawaii to aid with navigation. The station records measurements every 5 minutes of air temperature, wind speed and direction, precipitation, relative humidity, and air pressure. Sensors are located at Pier 1, installed on a tower at an elevation of 64 feet (19.5 meters) above sea level. The station is owned by the Hawaii Pilots Association (HPA). PacIOOS maintains the station and provides data access.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HNLPier1: PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nrainfall_rate (rain rate (processed), mm/h)\nrelative_humidity (relative humidity (processed), %)\nair_pressure (air pressure (processed), millibars)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_gap (QARTOD Gap Test (processed), 0)\nair_temperature_qc_syn (QARTOD Syntax Test (processed), 0)\nair_temperature_qc_loc (QARTOD Location Test (processed), 0)\nair_temperature_qc_rng (QARTOD Gross Range Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_spk (QARTOD Spike Test (processed), 0)\n... (92 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HNLPier1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HNLPier1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HNLPier1/index.json", "https://www.pacioos.hawaii.edu/weather/obs-honolulu/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HNLPier1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HNLPier1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "AWS-HNLPier1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "https://tidesandcurrents.noaa.gov/gomoos.html", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/main.aspx?Division=PRD&ParentMenuId=147&id=1221", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2017, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2017, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2017, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"] + ] + } + } + recorded_at: 2020-07-15 22:14:23 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMekm14day.nc?mod_current[(2015-12-28):1:(2016-01-01)][(0.0):1:(0.0)][(23):1:(24)][(88):1:(90)],u_current[(2015-12-28):1:(2016-01-01)][(0.0):1:(0.0)][(23):1:(24)][(88):1:(90)],v_current[(2015-12-28):1:(2016-01-01)][(0.0):1:(0.0)][(23):1:(24)][(88):1:(90)] + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:14:22 GMT + x-frame-options: SAMEORIGIN + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:14:22 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=erdQMekm14day_3a6f_f1d0_a65b.nc + content-encoding: gzip + content-type: application/x-netcdf + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: yes + string: ../fixtures/188571c95282bcb224bb987dd83d22b7.nc + recorded_at: 2020-07-15 22:14:23 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 diff --git a/tests/vcr_cassettes/griddap_fixes_user_inputs_2.yml b/tests/vcr_cassettes/griddap_fixes_user_inputs_2.yml new file mode 100644 index 0000000..487fbee --- /dev/null +++ b/tests/vcr_cassettes/griddap_fixes_user_inputs_2.yml @@ -0,0 +1,679 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/info/erdQMekm14day/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:18:46 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=erdQMekm14day_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "Grid"], + ["attribute", "NC_GLOBAL", "contact", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "Conventions", "String", "CF-1.6, COARDS, ACDD-1.3"], + ["attribute", "NC_GLOBAL", "creation_date", "String", "Tue Jul 14 23:13:27 2020"], + ["attribute", "NC_GLOBAL", "creator_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "creator_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "defaultGraphQuery", "String", "&.draw=vectors"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "360.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "75.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "-75.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_resolution", "double", "0.25"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "360.0"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_lon_resolution", "double", "0.25"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_max", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_min", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_positive", "String", "up"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_units", "String", "m"], + ["attribute", "NC_GLOBAL", "history", "String", "1-day geographic projection composites, created by erd.data@noaa.gov from L2 swath data obtained from NOAA|NESDIS, are used to create multi-day composites via the composite script in the dalesLibAscatB.py library by erd.data@noaa.gov at NOAA NMFS SWFSC ERD."], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "https://coastwatch.pfeg.noaa.gov/infog/QM_uekm_las.html"], + ["attribute", "NC_GLOBAL", "institution", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "keywords", "String", "advanced, altitude, ascat, circulation, coast, coastwatch, current, data, degrees, diffusivity, driven, Earth Science > Oceans > Ocean Circulation > Wind-Driven Circulation, eumetsat, european, exploitation, global, meteorological, metop, near, near real time, noaa, node, ocean, oceans, organisation, QMuekm, real, satellites, scatterometer, time, wcn, west, wind, wind-driven, zonal"], + ["attribute", "NC_GLOBAL", "license", "String", "The data may be used and redistributed for free but is not intended\nfor legal use, since it may contain inaccuracies. Neither the data\nContributor, ERD, NOAA, nor the United States Government, nor any\nof their employees or contractors, makes any warranty, express or\nimplied, including warranties of merchantability and fitness for a\nparticular purpose, or assumes any legal liability for the accuracy,\ncompleteness, or usefulness, of this information."], + ["attribute", "NC_GLOBAL", "naming_authority", "String", "gov.noaa.pfeg.coastwatch"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "75.0"], + ["attribute", "NC_GLOBAL", "project", "String", "CoastWatch (https://coastwatch.noaa.gov/)"], + ["attribute", "NC_GLOBAL", "publisher_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "publisher_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "publisher_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "publisher_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "references", "String", "NOAA/NESDIS https://manati.star.nesdis.noaa.gov/products/ASCAT.php ."], + ["attribute", "NC_GLOBAL", "source_data", "String", "14-day composite mean of files: QM2020196_2020196_uekm.grd.gz, QM2020195_2020195_uekm.grd.gz, QM2020194_2020194_uekm.grd.gz, QM2020193_2020193_uekm.grd.gz, QM2020192_2020192_uekm.grd.gz, QM2020191_2020191_uekm.grd.gz, QM2020190_2020190_uekm.grd.gz, QM2020189_2020189_uekm.grd.gz, QM2020188_2020188_uekm.grd.gz, QM2020187_2020187_uekm.grd.gz, QM2020186_2020186_uekm.grd.gz, QM2020185_2020185_uekm.grd.gz, QM2020184_2020184_uekm.grd.gz, QM2020183_2020183_uekm.grd.gz"], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "(local files)"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "-75.0"], + ["attribute", "NC_GLOBAL", "spatial_resolution", "String", "0.25 degree"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v70"], + ["attribute", "NC_GLOBAL", "summary", "String", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is a 14 day composite.)"], + ["attribute", "NC_GLOBAL", "testOutOfDate", "String", "now-10days"], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2020-07-08T00:00:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "2013-08-27T00:00:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "Wind Diffusivity Current, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (14 Day)"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "0.0"], + ["dimension", "time", "", "double", "nValues=2496, evenlySpaced=false, averageSpacing=1 day 0h 6m 56s"], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "1.3775616E9, 1.5941664E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Centered Time"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["dimension", "altitude", "", "double", "nValues=1, onlyValue=0.0"], + ["attribute", "altitude", "_CoordinateAxisType", "String", "Height"], + ["attribute", "altitude", "_CoordinateZisPositive", "String", "up"], + ["attribute", "altitude", "actual_range", "double", "0.0, 0.0"], + ["attribute", "altitude", "axis", "String", "Z"], + ["attribute", "altitude", "ioos_category", "String", "Location"], + ["attribute", "altitude", "long_name", "String", "Altitude"], + ["attribute", "altitude", "positive", "String", "up"], + ["attribute", "altitude", "standard_name", "String", "altitude"], + ["attribute", "altitude", "units", "String", "m"], + ["dimension", "latitude", "", "double", "nValues=601, evenlySpaced=true, averageSpacing=0.25"], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "double", "-75.0, 75.0"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "coordsys", "String", "geographic"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "point_spacing", "String", "even"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["dimension", "longitude", "", "double", "nValues=1441, evenlySpaced=true, averageSpacing=0.25"], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "double", "0.0, 360.0"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "coordsys", "String", "geographic"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "point_spacing", "String", "even"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "u_current", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "u_current", "_FillValue", "float", "-99999.0"], + ["attribute", "u_current", "colorBarMaximum", "double", "4.0"], + ["attribute", "u_current", "colorBarMinimum", "double", "-4.0"], + ["attribute", "u_current", "coordsys", "String", "geographic"], + ["attribute", "u_current", "ioos_category", "String", "Currents"], + ["attribute", "u_current", "long_name", "String", "Zonal Wind Diffusivity Current"], + ["attribute", "u_current", "missing_value", "float", "-99999.0"], + ["attribute", "u_current", "units", "String", "m s-1"], + ["variable", "v_current", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "v_current", "_FillValue", "float", "-99999.0"], + ["attribute", "v_current", "colorBarMaximum", "double", "4.0"], + ["attribute", "v_current", "colorBarMinimum", "double", "-4.0"], + ["attribute", "v_current", "coordsys", "String", "geographic"], + ["attribute", "v_current", "ioos_category", "String", "Currents"], + ["attribute", "v_current", "long_name", "String", "Meridional Wind Diffusivity Current"], + ["attribute", "v_current", "missing_value", "float", "-99999.0"], + ["attribute", "v_current", "units", "String", "m s-1"], + ["variable", "mod_current", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "mod_current", "_FillValue", "float", "-99999.0"], + ["attribute", "mod_current", "colorBarMaximum", "double", "0.05"], + ["attribute", "mod_current", "colorBarMinimum", "double", "0.0"], + ["attribute", "mod_current", "colorBarPalette", "String", "WhiteRedBlack"], + ["attribute", "mod_current", "coordsys", "String", "geographic"], + ["attribute", "mod_current", "ioos_category", "String", "Currents"], + ["attribute", "mod_current", "long_name", "String", "Modulus of Wind Diffusivity Current"], + ["attribute", "mod_current", "missing_value", "float", "-99999.0"], + ["attribute", "mod_current", "units", "String", "m s-1"] + ] + } + } + recorded_at: 2020-07-15 22:18:34 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:18:46 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:18:46 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://upwell.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012.graph", "", "", "public", "AIS Ship Traffic: Hawaii: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_hi_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_hi_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_hi_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_hi_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_hi_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_hi_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012.graph", "", "", "public", "AIS Ship Traffic: Johnston Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Johnston Atoll. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_john_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_john_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_john_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_john_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_john_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_john_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012.graph", "", "", "public", "AIS Ship Traffic: Mariana and Wake: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Mariana Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_mari_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_mari_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_mari_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_mari_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_mari_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_mari_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012.graph", "", "", "public", "AIS Ship Traffic: Rose Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Rose Atoll in American Samoa. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_rose_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_rose_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_rose_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_rose_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_rose_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_rose_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom for the most recent 7 days.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_temp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_temp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_temp/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_temp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_temp&showErrors=false&email=", "University of Hawaii", "aco_adcp_temp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Velocity", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean current velocity at the ACO from a 250 kHz SonTek acoustic doppler current profiler (ADCP) at 1.83 m above the ocean bottom for the most recent 7 days. Velocities are flagged bad if the amplitude is excessively low or high. An amplitude is high if it exceeds the average of the ping before and the ping after by 20 counts. An amplitude is low if less than 6 counts. After this the velocities are flagged bad if the absolute deviation of the vertical velocity from its ensemble median exceeds 0.15 m/s or if its value is less than -0.25 m/s.\n\ncdm_data_type = Profile\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each location, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\neastward_sea_water_velocity (current east component, meters/second)\nnorthward_sea_water_velocity (current north component, meters/second)\nupward_sea_water_velocity (current upward component, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_vel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_vel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_vel/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_vel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_vel&showErrors=false&email=", "University of Hawaii", "aco_adcp_vel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://upwell.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF.graph", "", "", "public", "CRRF Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-CRRF: CRRF Weather Station: Palau: Koror: Ngeanges Island)\nair_temperature (Celsius)\nair_temperature_max (maximum air temperature, Celsius)\nair_temperature_max_time (maximum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (minimum air temperature, Celsius)\nair_temperature_min_time (minimum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_std (air temperature standard deviation, Celsius)\nwind_speed (m/s)\nwind_speed_max (gust speed, m/s)\nwind_speed_max_time (gust speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (minimum wind speed, m/s)\nwind_speed_min_time (minimum wind speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_std (wind speed standard deviation, m/s)\nwind_from_direction (wind direction, degrees)\nwind_from_direction_std (wind direction standard deviation, degrees)\nrainfall_amount (total rainfall, mm)\n... (23 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-CRRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-CRRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-CRRF/index.json", "https://www.pacioos.hawaii.edu/weather/obs-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-CRRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-CRRF&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "AWS-CRRF"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_1000genomes/", "public", "File Names from the AWS S3 1000genomes Bucket: 1000 Genomes", "This dataset has file information from the AWS S3 1000genomes bucket at https://1000genomes.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 1000 Genomes\nName2: http://www.internationalgenome.org/formats\nDescription: The 1000 Genomes Project is an international collaboration which has established the most detailed catalogue of human genetic variation, including SNPs, structural variants, and their haplotype context. The final phase of the project sequenced more than 2500 individuals from 26 different populations around the world and produced an integrated set of phased haplotypes with more than 80 million variants for these individuals.\n\nDocumentation: https://docs.opendata.aws/1000genomes/readme.html\nContact: http://www.internationalgenome.org/contact\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_1000genomes/index.json", "https://registry.opendata.aws/1000-genomes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_1000genomes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_1000genomes&showErrors=false&email=", "Amazon Web Services", "awsS3Files_1000genomes"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_3kricegenome/", "public", "File Names from the AWS S3 3kricegenome Bucket: 3000 Rice Genomes Project", "This dataset has file information from the AWS S3 3kricegenome bucket at https://3kricegenome.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 3000 Rice Genomes Project\nName2: http://s3.amazonaws.com/3kricegenome/README-snp_pipeline.txt\nDescription: The 3000 Rice Genome Project is an international effort to sequence the genomes of 3,024 rice varieties from 89 countries.\n\nDocumentation: https://docs.opendata.aws/3kricegenome/readme.html\nContact: http://iric.irri.org/contact-us\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_3kricegenome/index.json", "https://registry.opendata.aws/3kricegenome/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_3kricegenome.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_3kricegenome&showErrors=false&email=", "Amazon Web Services", "awsS3Files_3kricegenome"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aft_vbi_pds/", "public", "File Names from the AWS S3 aft-vbi-pds Bucket: Amazon Bin Image Dataset: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.", "This dataset has file information from the AWS S3 aft-vbi-pds bucket at https://aft-vbi-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Bin Image Dataset\nName2: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.\nDescription: The Amazon Bin Image Dataset contains over 500,000 images and metadata from bins of a pod in an operating Amazon Fulfillment Center. The bin images in this dataset are captured as robot units carry pods as part of normal Amazon Fulfillment Center operations.\n\nDocumentation: https://docs.opendata.aws/aft-vbi-pds/readme.html\nContact: amazon-bin-images@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aft_vbi_pds/index.json", "https://registry.opendata.aws/amazon-bin-imagery/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aft_vbi_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aft_vbi_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aft_vbi_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory/", "public", "File Names from the AWS S3 allen-brain-observatory Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: Project data files in a public bucket", "This dataset has file information from the AWS S3 allen-brain-observatory bucket at https://allen-brain-observatory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: Project data files in a public bucket\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory_templates/", "public", "File Names from the AWS S3 allen-brain-observatory-templates Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: SageMaker launch template with s3fs bucket mounts", "This dataset has file information from the AWS S3 allen-brain-observatory-templates bucket at https://allen-brain-observatory-templates.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: SageMaker launch template with s3fs bucket mounts\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory_templates/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory_templates.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory_templates&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory_templates"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_amazon_reviews_pds/", "public", "File Names from the AWS S3 amazon-reviews-pds Bucket: Amazon Customer Reviews Dataset: TSV files of reviews", "This dataset has file information from the AWS S3 amazon-reviews-pds bucket at https://amazon-reviews-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Customer Reviews Dataset\nName2: TSV files of reviews\nDescription: Amazon Customer Reviews (a.k.a. Product Reviews) is one of Amazon\u2019s iconic products. In a period of over two decades since the first review in 1995, millions of Amazon customers have contributed over a hundred million reviews to express opinions and describe their experiences regarding products on the Amazon.com website. Over 130+ million customer reviews are available to researchers as part of this dataset.\n\nDocumentation: https://s3.amazonaws.com/amazon-reviews-pds/readme.html\nContact: customer-review-dataset@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not defined\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_amazon_reviews_pds/index.json", "https://registry.opendata.aws/amazon-reviews/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_amazon_reviews_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_amazon_reviews_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_amazon_reviews_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_avg_kitti/", "public", "File Names from the AWS S3 avg-kitti Bucket: KITTI Vision Benchmark Suite", "This dataset has file information from the AWS S3 avg-kitti bucket at https://avg-kitti.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: KITTI Vision Benchmark Suite\nName2: http://www.cvlibs.net/datasets/kitti/raw_data.php\nDescription: Dataset and benchmarks for computer vision research in the context of autonomous driving. The dataset has been recorded in and around the city of Karlsruhe, Germany using the mobile platform AnnieWay (VW station wagon) which has been equipped with several RGB and monochrome cameras, a Velodyne HDL 64 laser scanner as well as an accurate RTK corrected GPS/IMU localization unit. The dataset has been created for computer vision and machine learning research on stereo, optical flow, visual odometry, semantic segmentation, semantic instance segmentation, road segmentation, single image depth prediction, depth map completion, 2D and 3D object detection and object tracking. In addition, several raw data recordings are provided. The datasets are captured by driving around the mid-size city of Karlsruhe, in rural areas and on highways. Up to 15 cars and 30 pedestrians are visible per image.\n\nDocumentation: http://www.cvlibs.net/datasets/kitti/\nContact: http://www.cvlibs.net/people.php\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_avg_kitti/index.json", "https://registry.opendata.aws/kitti/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_avg_kitti.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_avg_kitti&showErrors=false&email=", "Amazon Web Services", "awsS3Files_avg_kitti"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/", "public", "File Names from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd Bucket: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)", "This dataset has file information from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd bucket at https://aws-earth-mo-atmospheric-mogreps-g-prd.s3.eu-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts\nName2: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)\nDescription: Meteorological data reusers now have an exciting opportunity to sample, experiment and evaluate Met Office atmospheric model data, whilst also experiencing a transformative method of requesting data via Restful APIs on AWS. All ahead of Met Office\u2019s own operationally supported API platform that will be launched in late 2019.\n\nDocumentation: https://github.com/MetOffice/aws-earth-examples\nContact: https://www.metoffice.gov.uk/about-us/contact\nUpdateFrequency: Daily (with 24 hour delay)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/index.json", "https://registry.opendata.aws/uk-met-office/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_gsod/", "public", "File Names from the AWS S3 aws-gsod Bucket: Global Surface Summary of Day: Measurements and metadata", "This dataset has file information from the AWS S3 aws-gsod bucket at https://aws-gsod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Surface Summary of Day\nName2: Measurements and metadata\nDescription: GSOD is a collection of daily weather measurements (temperature, wind speed, humidity, pressure, and more) from 9000+ weather stations around the world.\n\nDocumentation: https://www.ncdc.noaa.gov/\nContact: https://www.ncdc.noaa.gov/\nUpdateFrequency: Currently updated infrequently. Last updated on September 13, 2016.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_gsod/index.json", "https://registry.opendata.aws/noaa-gsod/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_gsod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_gsod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_gsod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_broad_references/", "public", "File Names from the AWS S3 broad-references Bucket: Broad Genome References: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.", "This dataset has file information from the AWS S3 broad-references bucket at https://broad-references.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Broad Genome References\nName2: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.\nDescription: Broad maintained human genome reference builds hg19/hg38 and decoy references.\n\nDocumentation: https://s3.amazonaws.com/broad-references/broad-references-readme.html\nContact: hensonc@broadinstitute.org\nManagedBy: Broad Institute\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_broad_references/index.json", "https://registry.opendata.aws/broad-references/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_broad_references.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_broad_references&showErrors=false&email=", "Amazon Web Services", "awsS3Files_broad_references"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cbers_meta_pds/", "public", "File Names from the AWS S3 cbers-meta-pds Bucket: CBERS on AWS: CBERS metadata (Quicklooks, metadata)", "This dataset has file information from the AWS S3 cbers-meta-pds bucket at https://cbers-meta-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CBERS on AWS\nName2: CBERS metadata (Quicklooks, metadata)\nDescription: This project creates a S3 repository with imagery acquired by the China-Brazil Earth Resources Satellite (CBERS). The image files are recorded and processed by Instituto Nacional de Pesquisa Espaciais (INPE) and are converted to Cloud Optimized Geotiff format in order to optimize its use for cloud based applications. The repository contains all CBERS-4 MUX, AWFI, PAN5M and PAN10M scenes acquired since the start of the satellite mission and is daily updated with new scenes.\n\nDocumentation: https://github.com/fredliporace/cbers-on-aws\nContact: https://lists.osgeo.org/mailman/listinfo/cbers-pds\nManagedBy: [AMS Kepler](https://amskepler.com/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cbers_meta_pds/index.json", "https://registry.opendata.aws/cbers/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cbers_meta_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cbers_meta_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cbers_meta_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cgiardata/", "public", "File Names from the AWS S3 cgiardata Bucket: CCAFS-Climate Data: ARC GRID, and ARC ASCII format compressed", "This dataset has file information from the AWS S3 cgiardata bucket at https://cgiardata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CCAFS-Climate Data\nName2: ARC GRID, and ARC ASCII format compressed\nDescription: High resolution climate data to help assess the impacts of climate change primarily on agriculture. These open access datasets of climate projections will help researchers make climate change impact assessments.\n\nDocumentation: http://www.ccafs-climate.org\nContact: http://www.ccafs-climate.org/contact/\nUpdateFrequency: Every three months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cgiardata/index.json", "https://registry.opendata.aws/cgiardata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cgiardata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cgiardata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cgiardata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_commoncrawl/", "public", "File Names from the AWS S3 commoncrawl Bucket: Common Crawl: Crawl data (WARC and ARC format)", "This dataset has file information from the AWS S3 commoncrawl bucket at https://commoncrawl.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Common Crawl\nName2: Crawl data (WARC and ARC format)\nDescription: A corpus of web crawl data composed of over 25 billion web pages.\n\nDocumentation: http://commoncrawl.org/the-data/get-started/\nContact: http://commoncrawl.org/connect/contact-us/\nManagedBy: [Common Crawl](http://commoncrawl.org/)\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_commoncrawl/index.json", "https://registry.opendata.aws/commoncrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_commoncrawl.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_commoncrawl&showErrors=false&email=", "Amazon Web Services", "awsS3Files_commoncrawl"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cornell_eas_data_lake/", "public", "File Names from the AWS S3 cornell-eas-data-lake Bucket: Cornell EAS Data Lake: Cornell EAS Data Lake", "This dataset has file information from the AWS S3 cornell-eas-data-lake bucket at https://cornell-eas-data-lake.s3.us-east-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cornell EAS Data Lake\nName2: Cornell EAS Data Lake\nDescription: Earth & Atmospheric Sciences at Cornell University has created a public data lake of climate data. The data is stored in columnar storage formats (ORC) to make it straightforward to query using standard tools like Amazon Athena or Apache Spark. The data itself is originally intended to be used for building decision support tools for farmers and digital agriculture. The first dataset is the historical NDFD / NDGD data distributed by NCEP / NOAA / NWS. The NDFD (National Digital Forecast Database) and NDGD (National Digital Guidance Database) contain gridded forecasts and observations at 2.5km resolution for the Contiguous United States (CONUS). There are also 5km grids for several smaller US regions and non-continguous territories, such as Hawaii, Guam, Puerto Rico and Alaska. NOAA distributes archives of the NDFD/NDGD via its NOAA Operational Model Archive and Distribution System (NOMADS) in Grib2 format. The data has been converted to ORC to optimize storage space and to, more importantly, simplify data access via standard data analytics tools.\n\nDocumentation: https://datalake.eas.cornell.edu/\nContact: digitalag@cornell.edu\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cornell_eas_data_lake/index.json", "https://registry.opendata.aws/cornell-eas-data-lake/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cornell_eas_data_lake.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cornell_eas_data_lake&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cornell_eas_data_lake"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cse_cic_ids2018/", "public", "File Names from the AWS S3 cse-cic-ids2018 Bucket: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018): Network traffic and log files", "This dataset has file information from the AWS S3 cse-cic-ids2018 bucket at https://cse-cic-ids2018.s3.ca-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018)\nName2: Network traffic and log files\nDescription: This dataset is the result of a collaborative project between the Communications Security Establishment (CSE) and The Canadian Institute for Cybersecurity (CIC) that use the notion of profiles to generate cybersecurity dataset in a systematic manner. It incluides a detailed description of intrusions along with abstract distribution models for applications, protocols, or lower level network entities. The dataset includes seven different attack scenarios, namely Brute-force, Heartbleed, Botnet, DoS, DDoS, Web attacks, and infiltration of the network from inside. The attacking infrastructure includes 50 machines and the victim organization has 5 departments includes 420 PCs and 30 servers. This dataset includes the network traffic and log files of each machine from the victim side, along with 80 network traffic features extracted from captured traffic using CICFlowMeter-V3. For more information on the creation of this dataset, see this paper by researchers at the Canadian Institute for Cybersecurity (CIC) and the University of New Brunswick (UNB): [Toward Generating a New Intrusion Detection Dataset and Intrusion Traffic Characterization](http://www.scitepress.org/Papers/2018/66398/66398.pdf).\n\nDocumentation: http://www.unb.ca/cic/datasets/ids-2018.html\nContact: CIC@unb.ca\nUpdateFrequency: Annualy\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cse_cic_ids2018/index.json", "https://registry.opendata.aws/cse-cic-ids2018/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cse_cic_ids2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cse_cic_ids2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cse_cic_ids2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cytodata/", "public", "File Names from the AWS S3 cytodata Bucket: Cell Painting Image Collection: Images, extracted features and aggregated profiles are available as a S3 bucket", "This dataset has file information from the AWS S3 cytodata bucket at https://cytodata.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cell Painting Image Collection\nName2: Images, extracted features and aggregated profiles are available as a S3 bucket\nDescription: The Cell Painting Image Collection is a collection of freely downloadable microscopy image sets. Cell Painting is an unbiased high throughput imaging assay used to analyze perturbations in cell models. In addition to the images themselves, each set includes a description of the biological application and some type of \"ground truth\" (expected results). Researchers are encouraged to use these image sets as reference points when developing, testing, and publishing new image analysis algorithms for the life sciences. We hope that the this data set will lead to a better understanding of which methods are best for various biological image analysis applications.\n\nDocumentation: https://github.com/cytodata/cytodata-hackathon-2018\nContact: Post on https://forum.image.sc/ and tag with \"cellpainting\"\nUpdateFrequency: irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cytodata/index.json", "https://registry.opendata.aws/cell-painting-image-collection/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cytodata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cytodata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cytodata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_czb_tabula_muris/", "public", "File Names from the AWS S3 czb-tabula-muris Bucket: Tabula Muris", "This dataset has file information from the AWS S3 czb-tabula-muris bucket at https://czb-tabula-muris.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Tabula Muris\nName2: https://github.com/czbiohub/tabula-muris\nDescription: Tabula Muris is a compendium of single cell transcriptomic data from the model organism *Mus musculus* comprising more than 100,000 cells from 20 organs and tissues. These data represent a new resource for cell biology, reveal gene expression in poorly characterized cell populations, and allow for direct and controlled comparison of gene expression in cell types shared between tissues, such as T-lymphocytes and endothelial cells from different anatomical locations. Two distinct technical approaches were used for most organs: one approach, microfluidic droplet-based 3\u2019-end counting, enabled the survey of thousands of cells at relatively low coverage, while the other, FACS-based full length transcript analysis, enabled characterization of cell types with high sensitivity and coverage. The cumulative data provide the foundation for an atlas of transcriptomic cell biology. See: https://www.nature.com/articles/s41586-018-0590-4\n\nDocumentation: https://github.com/czbiohub/tabula-muris/blob/master/tabula-muris-on-aws.md\nContact: If you have questions about the data, you can create an Issue at https://github.com/czbiohub/tabula-muris.\nManagedBy: [Chan Zuckerberg Biohub](https://www.czbiohub.org/)\nUpdateFrequency: This is the final version of the dataset, it will not be updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_czb_tabula_muris/index.json", "https://registry.opendata.aws/tabula-muris/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_czb_tabula_muris.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_czb_tabula_muris&showErrors=false&email=", "Amazon Web Services", "awsS3Files_czb_tabula_muris"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataforgood_fb_data/", "public", "File Names from the AWS S3 dataforgood-fb-data Bucket: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook: CSV and Cloud-optimized GeoTIFF files", "This dataset has file information from the AWS S3 dataforgood-fb-data bucket at https://dataforgood-fb-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook\nName2: CSV and Cloud-optimized GeoTIFF files\nDescription: Population data for a selection of countries, allocated to 1 arcsecond blocks and provided in a combination of CSV and Cloud-optimized GeoTIFF files. This refines [CIESIN\u2019s Gridded Population of the World](https://sedac.ciesin.columbia.edu/data/collection/gpw-v4) using machine learning models on high-resolution worldwide Digital Globe satellite imagery. CIESIN population counts aggregated from worldwide census data are allocated to blocks where imagery appears to contain buildings.\n\nDocumentation: [Project overview](https://dataforgood.fb.com/population-density-maps-documentation/) and [dataset description](https://docs.opendata.aws/dataforgood-fb-data/readme.html)\nContact: disastermaps@fb.com\nManagedBy: |\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataforgood_fb_data/index.json", "https://registry.opendata.aws/dataforgood-fb-hrsl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataforgood_fb_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataforgood_fb_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataforgood_fb_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_datasets_elasticmapreduce_ngrams_books/", "public", "File Names from the AWS S3 datasets.elasticmapreduce Bucket with prefix=ngrams/books/: Google Books Ngrams: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.", "This dataset has file information from the AWS S3 datasets.elasticmapreduce bucket at https://datasets.elasticmapreduce.s3.us-east-1.amazonaws.com/ with prefix=ngrams/books/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Google Books Ngrams\nName2: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.\nDescription: N-grams are fixed size tuples of items. In this case the items are words extracted from the Google Books corpus. The n specifies the number of elements in the tuple, so a 5-gram contains five words or characters. The n-grams in this dataset were produced by passing a sliding window of the text of books and outputting a record for each new token.\n\nDocumentation: http://books.google.com/ngrams/\nContact: https://books.google.com/ngrams\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_datasets_elasticmapreduce_ngrams_books/index.json", "https://registry.opendata.aws/google-ngrams/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_datasets_elasticmapreduce_ngrams_books.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_datasets_elasticmapreduce_ngrams_books&showErrors=false&email=", "Amazon Web Services", "awsS3Files_datasets_elasticmapreduce_ngrams_books"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataworld_linked_acs/", "public", "File Names from the AWS S3 dataworld-linked-acs Bucket: U.S. Census ACS PUMS: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.", "This dataset has file information from the AWS S3 dataworld-linked-acs bucket at https://dataworld-linked-acs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: U.S. Census ACS PUMS\nName2: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.\nDescription: U.S. Census Bureau American Community Survey (ACS) Public Use Microdata Sample (PUMS) available in a linked data format using the Resource Description Framework (RDF) data model.\n\nDocumentation: https://docs.data.world/uscensus/#american-community-survey-linked-open-data\nContact: https://docs.data.world/uscensus/#60---contact\nUpdateFrequency: Yearly, after ACS 1-year PUMS raw data are released\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataworld_linked_acs/index.json", "https://registry.opendata.aws/census-dataworld-pums/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataworld_linked_acs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataworld_linked_acs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataworld_linked_acs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2015/", "public", "File Names from the AWS S3 dc-lidar-2015 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML, SHP", "This dataset has file information from the AWS S3 dc-lidar-2015 bucket at https://dc-lidar-2015.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML, SHP\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2015/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2015.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2015&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2015"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2018/", "public", "File Names from the AWS S3 dc-lidar-2018 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML", "This dataset has file information from the AWS S3 dc-lidar-2018 bucket at https://dc-lidar-2018.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2018/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_eurex_pds/", "public", "File Names from the AWS S3 deutsche-boerse-eurex-pds Bucket: Deutsche B\u00f6rse Public Dataset: Eurex PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-eurex-pds bucket at https://deutsche-boerse-eurex-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Eurex PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_eurex_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_eurex_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_eurex_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_eurex_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_xetra_pds/", "public", "File Names from the AWS S3 deutsche-boerse-xetra-pds Bucket: Deutsche B\u00f6rse Public Dataset: Xetra PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-xetra-pds bucket at https://deutsche-boerse-xetra-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Xetra PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_xetra_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_xetra_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_xetra_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_xetra_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ebirdst_data/", "public", "File Names from the AWS S3 ebirdst-data Bucket: eBird Status and Trends Model Results: Species results files", "This dataset has file information from the AWS S3 ebirdst-data bucket at https://ebirdst-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: eBird Status and Trends Model Results\nName2: Species results files\nDescription: The eBird Status and Trends project generates estimates of bird occurrence and abundance at a high spatiotemporal resolution. This dataset represents the primary modeled results from the analysis workflow and are designed for further analysis, synthesis, visualization, and exploration.\n\nDocumentation: https://cornelllabofornithology.github.io/ebirdst/articles/ebirdst-introduction.html\nContact: https://help.ebird.org/customer/en/portal/emails/new\nManagedBy: [Cornell Lab of Ornithology](https://www.birds.cornell.edu/home/)\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ebirdst_data/index.json", "https://registry.opendata.aws/ebirdst/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ebirdst_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ebirdst_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ebirdst_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_elevation_tiles_prod/", "public", "File Names from the AWS S3 elevation-tiles-prod Bucket: Terrain Tiles: Gridded elevation tiles", "This dataset has file information from the AWS S3 elevation-tiles-prod bucket at https://elevation-tiles-prod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Terrain Tiles\nName2: Gridded elevation tiles\nDescription: A global dataset providing bare-earth terrain heights, tiled for easy usage and provided on S3.\n\nDocumentation: https://mapzen.com/documentation/terrain-tiles/\nContact: https://github.com/tilezen/joerd/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_elevation_tiles_prod/index.json", "https://registry.opendata.aws/terrain-tiles/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_elevation_tiles_prod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_elevation_tiles_prod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_elevation_tiles_prod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_encode_public/", "public", "File Names from the AWS S3 encode-public Bucket: Encyclopedia of DNA Elements (ENCODE): Released and archived ENCODE data", "This dataset has file information from the AWS S3 encode-public bucket at https://encode-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Encyclopedia of DNA Elements (ENCODE)\nName2: Released and archived ENCODE data\nDescription: The Encyclopedia of DNA Elements (ENCODE) Consortium is an international collaboration of research groups funded by the National Human Genome Research Institute (NHGRI). The goal of ENCODE is to build a comprehensive parts list of functional elements in the human genome, including elements that act at the protein and RNA levels, and regulatory elements that control cells and circumstances in which a gene is active. ENCODE investigators employ a variety of assays and methods to identify functional elements. The discovery and annotation of gene elements is accomplished primarily by sequencing a diverse range of RNA sources, comparative genomics, integrative bioinformatic methods, and human curation. Regulatory elements are typically investigated through DNA hypersensitivity assays, assays of DNA methylation, and immunoprecipitation (IP) of proteins that interact with DNA and RNA, i.e., modified histones, transcription factors, chromatin regulators, and RNA-binding proteins, followed by sequencing.\n\nDocumentation: https://www.encodeproject.org\nContact: encode-help@lists.stanford.edu\nManagedBy: ENCODE Data Coordinating Center\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_encode_public/index.json", "https://registry.opendata.aws/encode-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_encode_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_encode_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_encode_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_epa_rsei_pds/", "public", "File Names from the AWS S3 epa-rsei-pds Bucket: EPA Risk-Screening Environmental Indicators: RSEI Microdata", "This dataset has file information from the AWS S3 epa-rsei-pds bucket at https://epa-rsei-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: EPA Risk-Screening Environmental Indicators\nName2: RSEI Microdata\nDescription: Detailed air model results from EPA\u2019s Risk-Screening Environmental Indicators (RSEI) model.\n\nDocumentation: https://docs.opendata.aws/epa-rsei-pds/readme.html\nContact: https://www.epa.gov/rsei/forms/contact-us-about-rsei-model\nUpdateFrequency: Updated infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_epa_rsei_pds/index.json", "https://registry.opendata.aws/epa-rsei-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_epa_rsei_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_epa_rsei_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_epa_rsei_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_era5_pds/", "public", "File Names from the AWS S3 era5-pds Bucket: ECMWF ERA5 Reanalysis: ERA5 Reanalysis NetCDF 4 files", "This dataset has file information from the AWS S3 era5-pds bucket at https://era5-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ECMWF ERA5 Reanalysis\nName2: ERA5 Reanalysis NetCDF 4 files\nDescription: ERA5 is the fifth generation of ECMWF atmospheric reanalyses of the global climate, and the first reanalysis produced as an operational service. It utilizes the best available observation data from satellites and in-situ stations, which are assimilated and processed using ECMWF's Integrated Forecast System (IFS) Cycle 41r2. The dataset provides all essential atmospheric meteorological parameters like, but not limited to, air temperature, pressure and wind at different altitudes, along with surface parameters like rainfall, soil moisture content and sea parameters like sea-surface temperature and wave height. ERA5 provides data at a considerably higher spatial and temporal resolution than its legacy counterpart ERA-Interim. ERA5 consists of high resolution version with 31 km horizontal resolution, and a reduced resolution ensemble version with 10 members. It is currently available since 2008, but will be continuously extended backwards, first until 1979 and then to 1950. Learn more about ERA5 in Jon Olauson's paper [ERA5: The new champion of wind power modelling?](https://www.researchgate.net/publication/320084119_ERA5_The_new_champion_of_wind_power_modelling).\n\nDocumentation: https://github.com/planet-os/notebooks/blob/master/aws/era5-pds.md\nContact: datahub@intertrust.com\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_era5_pds/index.json", "https://registry.opendata.aws/ecmwf-era5/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_era5_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_era5_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_era5_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_coco/", "public", "File Names from the AWS S3 fast-ai-coco Bucket: COCO - Common Objects in Context - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-coco bucket at https://fast-ai-coco.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: COCO - Common Objects in Context - fast.ai datasets\nName2: Datasets\nDescription: COCO is a large-scale object detection, segmentation, and captioning dataset. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. If you use this dataset in your research please cite arXiv:1405.0312 [cs.CV].\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_coco/index.json", "https://registry.opendata.aws/fast-ai-coco/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_coco.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_coco&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_coco"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imageclas/", "public", "File Names from the AWS S3 fast-ai-imageclas Bucket: Image classification - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imageclas bucket at https://fast-ai-imageclas.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image classification - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image classification research, including CIFAR 10 and 100, Caltech 101, MNIST, Food-101, Oxford-102-Flowers, Oxford-IIIT-Pets, and Stanford-Cars. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imageclas/index.json", "https://registry.opendata.aws/fast-ai-imageclas/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imageclas.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imageclas&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imageclas"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imagelocal/", "public", "File Names from the AWS S3 fast-ai-imagelocal Bucket: Image localization - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imagelocal bucket at https://fast-ai-imagelocal.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image localization - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image localization research, including Camvid and PASCAL VOC (2007 and 2012). This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imagelocal/index.json", "https://registry.opendata.aws/fast-ai-imagelocal/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imagelocal.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imagelocal&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imagelocal"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_nlp/", "public", "File Names from the AWS S3 fast-ai-nlp Bucket: NLP - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-nlp bucket at https://fast-ai-nlp.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NLP - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for NLP, with a focus on classification, including IMDb, AG-News, Amazon Reviews (polarity and full), Yelp Reviews (polarity and full), Dbpedia, Sogou News (Pinyin), Yahoo Answers, Wikitext 2 and Wikitext 103, and ACL-2010 French-English 10^9 corpus. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_nlp/index.json", "https://registry.opendata.aws/fast-ai-nlp/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_nlp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_nlp&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_nlp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib Bucket: HIRLAM Weather Model: Pressure GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib bucket at https://fmi-opendata-rcrhirlam-pressure-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Pressure GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_pressure_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_pressure_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-surface-grib Bucket: HIRLAM Weather Model: Surface GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-surface-grib bucket at https://fmi-opendata-rcrhirlam-surface-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Surface GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_surface_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_surface_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gatk_test_data/", "public", "File Names from the AWS S3 gatk-test-data Bucket: GATK Test Data: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.", "This dataset has file information from the AWS S3 gatk-test-data bucket at https://gatk-test-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GATK Test Data\nName2: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.\nDescription: The GATK test data resource bundle is a collection of files for resequencing human genomic data with the Broad Institute's [Genome Analysis Toolkit (GATK)](https://software.broadinstitute.org/gatk/).\n\nDocumentation: https://s3.amazonaws.com/gatk-test-data/gatk-test-data-readme.html\nContact: https://gatkforums.broadinstitute.org/gatk\nManagedBy: Broad Institute\nUpdateFrequency: Every 3 months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gatk_test_data/index.json", "https://registry.opendata.aws/gatk-test-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gatk_test_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gatk_test_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gatk_test_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gdelt_open_data/", "public", "File Names from the AWS S3 gdelt-open-data Bucket: Global Database of Events, Language and Tone (GDELT): Project data files", "This dataset has file information from the AWS S3 gdelt-open-data bucket at https://gdelt-open-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Database of Events, Language and Tone (GDELT)\nName2: Project data files\nDescription: This project monitors the world's broadcast, print, and web news from nearly every corner of every country in over 100 languages and identifies the people, locations, organizations, counts, themes, sources, emotions, quotes, images and events driving our global society every second of every day.\n\nDocumentation: http://www.gdeltproject.org/\nContact: http://www.gdeltproject.org/about.html#contact\nUpdateFrequency: Not currently being updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gdelt_open_data/index.json", "https://registry.opendata.aws/gdelt/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gdelt_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gdelt_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gdelt_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_genomeark/", "public", "File Names from the AWS S3 genomeark Bucket: Genome Ark", "This dataset has file information from the AWS S3 genomeark bucket at https://genomeark.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome Ark\nName2: https://vgp.github.io\nDescription: The Genome Ark hosts genomic information for the Vertebrate Genomes Project (VGP) and other related projects. The VGP is an international collaboration that aims to generate complete and near error-free reference genomes for all extant vertebrate species. These genomes will be used to address fundamental questions in biology and disease, to identify species most genetically at risk for extinction, and to preserve genetic information of life.\n\nDocumentation: https://vertebrategenomesproject.org\nContact: Erich Jarvis \nManagedBy: The Genome10K community of scientists\nUpdateFrequency: Data will be continually updated as it is generated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_genomeark/index.json", "https://registry.opendata.aws/genomeark/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_genomeark.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_genomeark&showErrors=false&email=", "Amazon Web Services", "awsS3Files_genomeark"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_giab/", "public", "File Names from the AWS S3 giab Bucket: Genome in a Bottle on AWS: Latest data", "This dataset has file information from the AWS S3 giab bucket at https://giab.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome in a Bottle on AWS\nName2: Latest data\nDescription: Several reference genomes to enable translation of whole human genome sequencing to clinical practice.\n\nDocumentation: https://docs.opendata.aws/giab/readme.html\nContact: http://genomeinabottle.org/\nUpdateFrequency: New data are added as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_giab/index.json", "https://registry.opendata.aws/giab/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_giab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_giab&showErrors=false&email=", "Amazon Web Services", "awsS3Files_giab"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gmsdata/", "public", "File Names from the AWS S3 gmsdata Bucket: The Genome Modeling System", "This dataset has file information from the AWS S3 gmsdata bucket at https://gmsdata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Genome Modeling System\nName2: https://gmsdata.s3.amazonaws.com/INDEX.html\nDescription: The Genome Institute at Washington University has developed a high-throughput, fault-tolerant analysis information management system called the Genome Modeling System (GMS), capable of executing complex, interdependent, and automated genome analysis pipelines at a massive scale. The GMS framework provides detailed tracking of samples and data coupled with reliable and repeatable analysis pipelines. GMS includes a full system image with software and services, expandable from one workstation to a large compute cluster.\n\nDocumentation: https://github.com/genome/gms/wiki\nContact: https://github.com/genome/gms/issues\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gmsdata/index.json", "https://registry.opendata.aws/gmsdata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gmsdata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gmsdata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gmsdata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_grillo_openeew/", "public", "File Names from the AWS S3 grillo-openeew Bucket: OpenEEW: OpenEEW", "This dataset has file information from the AWS S3 grillo-openeew bucket at https://grillo-openeew.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenEEW\nName2: OpenEEW\nDescription: Grillo has developed an IoT-based earthquake early-warning system in Mexico and Chile and is now opening its entire archive of unprocessed accelerometer data to the world to encourage the development of new algorithms capable of rapidly detecting and characterizing earthquakes in real time.\n\nDocumentation: https://github.com/grillo/openeew\nContact: openeew@grillo.io\nManagedBy: [Grillo](https://grillo.io/)\nUpdateFrequency: Approximately every 10 minutes\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_grillo_openeew/index.json", "https://registry.opendata.aws/grillo-openeew/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_grillo_openeew.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_grillo_openeew&showErrors=false&email=", "Amazon Web Services", "awsS3Files_grillo_openeew"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_microbiome_project/", "public", "File Names from the AWS S3 human-microbiome-project Bucket: The Human Microbiome Project", "This dataset has file information from the AWS S3 human-microbiome-project bucket at https://human-microbiome-project.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Human Microbiome Project\nName2: https://aws.amazon.com/datasets/human-microbiome-project/\nDescription: The NIH-funded Human Microbiome Project (HMP) is a collaborative effort of over 300 scientists from more than 80 organizations to comprehensively characterize the microbial communities inhabiting the human body and elucidate their role in human health and disease. To accomplish this task, microbial community samples were isolated from a cohort of 300 healthy adult human subjects at 18 specific sites within five regions of the body (oral cavity, airways, urogenital track, skin, and gut). Targeted sequencing of the 16S bacterial marker gene and/or whole metagenome shotgun sequencing was performed for thousands of these samples. In addition, whole genome sequences were generated for isolate strains collected from human body sites to act as reference organisms for analysis. Finally, 16S marker and whole metagenome sequencing was also done on additional samples from people suffering from several disease conditions.\n\nDocumentation: https://commonfund.nih.gov/hmp\nContact: https://commonfund.nih.gov/hmp/related_activities\nUpdateFrequency: Uncertain\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_microbiome_project/index.json", "https://registry.opendata.aws/human-microbiome-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_microbiome_project.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_microbiome_project&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_microbiome_project"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_pangenomics/", "public", "File Names from the AWS S3 human-pangenomics Bucket: Human PanGenomics Project: Human PanGenomics Project", "This dataset has file information from the AWS S3 human-pangenomics bucket at https://human-pangenomics.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Human PanGenomics Project\nName2: Human PanGenomics Project\nDescription: This dataset includes sequencing data, assemblies, and analyses for the offspring of ten parent-offspring trios.\n\nDocumentation: https://github.com/human-pangenomics/hpgp-data\nContact: https://github.com/human-pangenomics/hpgp-data/issues\nUpdateFrequency: Data will be added and updated as technologies improve or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_pangenomics/index.json", "https://registry.opendata.aws/hpgp-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_pangenomics.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_pangenomics&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_pangenomics"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/", "public", "File Names from the AWS S3 ichangemycity-janaagraha-complaints-data-aws Bucket: IChangeMyCity Complaints Data from Janaagraha: IChangeMyCity Complaints", "This dataset has file information from the AWS S3 ichangemycity-janaagraha-complaints-data-aws bucket at https://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IChangeMyCity Complaints Data from Janaagraha\nName2: IChangeMyCity Complaints\nDescription: The [IChangeMyCity](https://www.ichangemycity.com) project provides insight into the complaints raised by citizens from diffent cities of India related to the issues in their neighbourhoods and the resolution of the same by the civic bodies.\n\nDocumentation: http://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/readme.html\nContact: data@janaagraha.org\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/index.json", "https://registry.opendata.aws/ichangemycity/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ichangemycity_janaagraha_complaints_data_aws&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ichangemycity_janaagraha_complaints_data_aws"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_irs_990_spreadsheets/", "public", "File Names from the AWS S3 irs-990-spreadsheets Bucket: IRS 990 Filings (Spreadsheets): Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form", "This dataset has file information from the AWS S3 irs-990-spreadsheets bucket at https://irs-990-spreadsheets.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IRS 990 Filings (Spreadsheets)\nName2: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form\nDescription: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form. Additional fields being added regularly.\n\nDocumentation: https://appliednonprofitresearch.com/documentation/irs-990-spreadsheets\nContact: [info@appliednonprofitresearch.com](info@appliednonprofitresearch.com)\nManagedBy: [Applied Nonprofit Research, LLC](https://www.appliednonprofitresearch.com/)\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_irs_990_spreadsheets/index.json", "https://registry.opendata.aws/990-spreadsheets/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_irs_990_spreadsheets.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_irs_990_spreadsheets&showErrors=false&email=", "Amazon Web Services", "awsS3Files_irs_990_spreadsheets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lab41openaudiocorpus/", "public", "File Names from the AWS S3 lab41openaudiocorpus Bucket: Voices Obscured in Complex Environmental Settings (VOiCES): wav audio files, orthographic transcriptions, and speaker ID", "This dataset has file information from the AWS S3 lab41openaudiocorpus bucket at https://lab41openaudiocorpus.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Voices Obscured in Complex Environmental Settings (VOiCES)\nName2: wav audio files, orthographic transcriptions, and speaker ID\nDescription: VOiCES is a speech corpus recorded in acoustically challenging settings, using distant microphone recording. Speech was recorded in real rooms with various acoustic features (reverb, echo, HVAC systems, outside noise, etc.). Adversarial noise, either television, music, or babble, was concurrently played with clean speech. Data was recorded using multiple microphones strategically placed throughout the room. The corpus includes audio recordings, orthographic transcriptions, and speaker labels.\n\nDocumentation: https://voices18.github.io/\nContact: https://github.com/voices18/utilities/issues\nUpdateFrequency: Data from two additional rooms will be added to the corpus Fall 2018.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lab41openaudiocorpus/index.json", "https://registry.opendata.aws/lab41-sri-voices/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lab41openaudiocorpus.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lab41openaudiocorpus&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lab41openaudiocorpus"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds/", "public", "File Names from the AWS S3 landsat-pds Bucket: Landsat 8: Scenes and metadata", "This dataset has file information from the AWS S3 landsat-pds bucket at https://landsat-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: Scenes and metadata\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds_inventory/", "public", "File Names from the AWS S3 landsat-pds-inventory Bucket: Landsat 8: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)", "This dataset has file information from the AWS S3 landsat-pds-inventory bucket at https://landsat-pds-inventory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds_inventory/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds_inventory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds_inventory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds_inventory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lofar_elais_n1/", "public", "File Names from the AWS S3 lofar-elais-n1 Bucket: LOFAR ELAIS-N1 cycle 2 observations on AWS: LOFAR ELAIS-N1 cycle 2 observations", "This dataset has file information from the AWS S3 lofar-elais-n1 bucket at https://lofar-elais-n1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: LOFAR ELAIS-N1 cycle 2 observations on AWS\nName2: LOFAR ELAIS-N1 cycle 2 observations\nDescription: These data correspond to the [International LOFAR Telescope](http://www.lofar.org/) observations of the sky field ELAIS-N1 (16:10:01 +54:30:36) during the cycle 2 of observations. There are 11 runs of about 8 hours each plus the corresponding observation of the calibration targets before and after the target field. The data are measurement sets ([MS](https://casa.nrao.edu/Memos/229.html)) containing the cross-correlated data and metadata divided in 371 frequency sub-bands per target centred at ~150 MHz.\n\nDocumentation: https://www.lofarcloud.uk/data.html\nContact: https://www.lofarcloud.uk/\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lofar_elais_n1/index.json", "https://registry.opendata.aws/lofar-elais-n1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lofar_elais_n1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lofar_elais_n1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lofar_elais_n1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mf_nwp_models/", "public", "File Names from the AWS S3 mf-nwp-models Bucket: Atmospheric Models from M\u00e9t\u00e9o-France: Atmospheric Models from M\u00e9t\u00e9o-France", "This dataset has file information from the AWS S3 mf-nwp-models bucket at https://mf-nwp-models.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Atmospheric Models from M\u00e9t\u00e9o-France\nName2: Atmospheric Models from M\u00e9t\u00e9o-France\nDescription: Global and high-resolution regional atmospheric models from M\u00e9t\u00e9o-France.\n\nDocumentation: https://mf-models-on-aws.org\nContact: contact@openmeteodata.com\nManagedBy: [OpenMeteoData](https://openmeteodata.com)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mf_nwp_models/index.json", "https://registry.opendata.aws/meteo-france-models/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mf_nwp_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mf_nwp_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mf_nwp_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_modis_pds/", "public", "File Names from the AWS S3 modis-pds Bucket: MODIS on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 modis-pds bucket at https://modis-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: MODIS on AWS\nName2: Imagery and metadata\nDescription: Select products from the Moderate Resolution Imaging Spectroradiometer (MODIS) managed by the U.S. Geological Survey and NASA.\n\nDocumentation: https://docs.opendata.aws/modis-pds/readme.html\nContact: https://github.com/AstroDigital/modis-ingestor/issues\nUpdateFrequency: New MODIS data is added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_modis_pds/index.json", "https://registry.opendata.aws/modis/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_modis_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_modis_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_modis_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_multimedia_commons/", "public", "File Names from the AWS S3 multimedia-commons Bucket: Multimedia Commons: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.", "This dataset has file information from the AWS S3 multimedia-commons bucket at https://multimedia-commons.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Multimedia Commons\nName2: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.\nDescription: The Multimedia Commons is a collection of audio and visual features computed for the nearly 100 million Creative Commons-licensed Flickr images and videos in the YFCC100M dataset from Yahoo! Labs, along with ground-truth annotations for selected subsets. The International Computer Science Institute (ICSI) and Lawrence Livermore National Laboratory are producing and distributing a core set of derived feature sets and annotations as part of an effort to enable large-scale video search capabilities. They have released this feature corpus into the public domain, under Creative Commons License 0, so it is free for anyone to use for any purpose.\n\nDocumentation: https://multimediacommons.wordpress.com/yfcc100m-core-dataset/\nContact: multimedia-commons@icsi.berkeley.edu\nUpdateFrequency: Not updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_multimedia_commons/index.json", "https://registry.opendata.aws/multimedia-commons/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_multimedia_commons.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_multimedia_commons&showErrors=false&email=", "Amazon Web Services", "awsS3Files_multimedia_commons"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mwapublic/", "public", "File Names from the AWS S3 mwapublic Bucket: Epoch of Reionization Dataset: Selected MWA EoR data (uvfits format) from 2013-2015", "This dataset has file information from the AWS S3 mwapublic bucket at https://mwapublic.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Epoch of Reionization Dataset\nName2: Selected MWA EoR data (uvfits format) from 2013-2015\nDescription: The data are from observations with the Murchison Widefield Array (MWA) which is a Square Kilometer Array (SKA) precursor in Western Australia. This particular dataset is from the Epoch of Reionization project which is a key science driver of the SKA. Nearly 2PB of such observations have been recorded to date, this is a small subset of that which has been exported from the MWA data archive in Perth and made available to the public on AWS. The data were taken to detect signatures of the first stars and galaxies forming and the effect of these early stars and galaxies on the evolution of the universe.\n\nDocumentation: http://danielcjacobs.com/research/epoch-of-reionization-aws-public-dataset/\nContact: brynah (at) phys.washington.edu\nManagedBy: University of washington Radio Cosmology Group\nUpdateFrequency: Irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mwapublic/index.json", "https://registry.opendata.aws/epoch-of-reionization/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mwapublic.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mwapublic&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mwapublic"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nanopore_human_wgs/", "public", "File Names from the AWS S3 nanopore-human-wgs Bucket: Nanopore Reference Human Genome: Nanopore Reference Human Genome", "This dataset has file information from the AWS S3 nanopore-human-wgs bucket at https://nanopore-human-wgs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Nanopore Reference Human Genome\nName2: Nanopore Reference Human Genome\nDescription: This dataset includes the sequencing and assembly of a reference standard human genome (GM12878) using the MinION nanopore sequencing instrument with the R9.4 1D chemistry.\n\nDocumentation: https://github.com/nanopore-wgs-consortium/NA12878\nContact: https://github.com/nanopore-wgs-consortium/NA12878/issues\nUpdateFrequency: Data will be added as methodology improves or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nanopore_human_wgs/index.json", "https://registry.opendata.aws/nanopore/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nanopore_human_wgs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nanopore_human_wgs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nanopore_human_wgs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_Landsat/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=Landsat/: NASA NEX: Landsat GLS (Global Land Survey)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=Landsat/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Landsat GLS (Global Land Survey)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_Landsat/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_Landsat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_Landsat&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_Landsat"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_LOCA/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=LOCA/: NASA NEX: Localized Constructed Analogs (LOCA)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=LOCA/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Localized Constructed Analogs (LOCA)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_LOCA/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_LOCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_LOCA&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_LOCA"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_MODIS/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=MODIS/: NASA NEX: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=MODIS/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_MODIS/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_MODIS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_MODIS&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_MODIS"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_DCP30/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-DCP30/: NASA NEX: Downscaled Climate Projections (NEX-DCP30)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-DCP30/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Downscaled Climate Projections (NEX-DCP30)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_DCP30/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_DCP30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_DCP30&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_DCP30"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_GDDP/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-GDDP/: NASA NEX: Global Daily Downscaled Projections (NEX-GDDP)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-GDDP/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Global Daily Downscaled Projections (NEX-GDDP)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_GDDP/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_GDDP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_GDDP&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_GDDP"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gefs_pds/", "public", "File Names from the AWS S3 noaa-gefs-pds Bucket: NOAA Global Ensemble Forecast System (GEFS): Project data files", "This dataset has file information from the AWS S3 noaa-gefs-pds bucket at https://noaa-gefs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Ensemble Forecast System (GEFS)\nName2: Project data files\nDescription: The Global Ensemble Forecast System (GEFS), previously known as the GFS Global ENSemble (GENS), is a weather forecast model made up of 21 separate forecasts, or ensemble members. The National Centers for Environmental Prediction (NCEP) started the GEFS to address the nature of uncertainty in weather observations, which is used to initialize weather forecast models. The GEFS attempts to quantify the amount of uncertainty in a forecast by generating an ensemble of multiple forecasts, each minutely different, or perturbed, from the original observations. With global coverage, GEFS is produced four times a day with weather forecasts going out to 16 days.\n\nDocumentation: https://docs.opendata.aws/noaa-gefs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GEFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GEFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gefs_pds/index.json", "https://registry.opendata.aws/noaa-gefs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gefs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gefs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gefs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_bdp_pds/", "public", "File Names from the AWS S3 noaa-gfs-bdp-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 GFS data", "This dataset has file information from the AWS S3 noaa-gfs-bdp-pds bucket at https://noaa-gfs-bdp-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_bdp_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_bdp_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_bdp_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_bdp_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_pds/", "public", "File Names from the AWS S3 noaa-gfs-pds Bucket: Unidata NOAA Global Forecast System (GFS) Model: A rolling four-week archive of 0.25 degree GFS data", "This dataset has file information from the AWS S3 noaa-gfs-pds bucket at https://noaa-gfs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Unidata NOAA Global Forecast System (GFS) Model\nName2: A rolling four-week archive of 0.25 degree GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks.\n\nDocumentation: https://docs.opendata.aws/noaa-gfs-pds/readme.html\nContact: https://www.ncdc.noaa.gov/contact\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_pds/index.json", "https://registry.opendata.aws/noaa-gfs-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfspara_pds/", "public", "File Names from the AWS S3 noaa-gfspara-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 FV3-based parallel version of the GFS", "This dataset has file information from the AWS S3 noaa-gfspara-pds bucket at https://noaa-gfspara-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 FV3-based parallel version of the GFS\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfspara_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfspara_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfspara_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfspara_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghcn_pds/", "public", "File Names from the AWS S3 noaa-ghcn-pds Bucket: NOAA Global Historical Climatology Network Daily (GHCN-D): Project data files", "This dataset has file information from the AWS S3 noaa-ghcn-pds bucket at https://noaa-ghcn-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Daily (GHCN-D)\nName2: Project data files\nDescription: Global Historical Climatology Network - Daily is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://docs.opendata.aws/noaa-ghcn-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncdc.noaa.gov/ghcn-daily-description). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghcn_pds/index.json", "https://registry.opendata.aws/noaa-ghcn/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghcn_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghcn_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghcn_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghe_pds/", "public", "File Names from the AWS S3 noaa-ghe-pds Bucket: NOAA Global Hydro Estimator (GHE): Project data files", "This dataset has file information from the AWS S3 noaa-ghe-pds bucket at https://noaa-ghe-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Hydro Estimator (GHE)\nName2: Project data files\nDescription: Global Hydro-Estimator provides a global mosaic imagery of rainfall estimates from multi-geostationary satellites, which currently includes GOES-16, GOES-15, Meteosat-8, Meteosat-11 and Himawari-8. The GHE products include: Instantaneous rain rate, 1 hour, 3 hour, 6 hour, 24 hour and also multi-day rainfall accumulation.\n\nDocumentation: https://www.ospo.noaa.gov/Products/atmosphere/ghe/index.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 15 minute-instantaneous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghe_pds/index.json", "https://registry.opendata.aws/noaa-ghe/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghe_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghe_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghe_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_global_hourly_pds/", "public", "File Names from the AWS S3 noaa-global-hourly-pds Bucket: NOAA Global Historical Climatology Network Hourly (GHCN-H): Project data files", "This dataset has file information from the AWS S3 noaa-global-hourly-pds bucket at https://noaa-global-hourly-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Hourly (GHCN-H)\nName2: Project data files\nDescription: Global Historical Climatology Network - Hourly is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: daily (Manually)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_global_hourly_pds/index.json", "https://registry.opendata.aws/noaa-ghcnh/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_global_hourly_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_global_hourly_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_global_hourly_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3NoaaGoes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nUse ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browser the files in buckets. This dataset is a solution to that problem for this bucket.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3NoaaGoes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3NoaaGoes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3NoaaGoes16&showErrors=false&email=", "NOAA", "awsS3NoaaGoes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket: GOES on AWS: GOES-16 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-16 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes16&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes17/", "public", "File Names from the AWS S3 noaa-goes17 Bucket: GOES on AWS: GOES-17 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes17 bucket at https://noaa-goes17.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-17 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes17/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes17&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes17"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_hrrr_pds/", "public", "File Names from the AWS S3 noaa-hrrr-pds Bucket: NOAA High-Resolution Rapid Refresh (HRRR) Model: A rolling one-week archive of HRRR data.", "This dataset has file information from the AWS S3 noaa-hrrr-pds bucket at https://noaa-hrrr-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA High-Resolution Rapid Refresh (HRRR) Model\nName2: A rolling one-week archive of HRRR data.\nDescription: The HRRR is a NOAA real-time 3-km resolution, hourly updated, cloud-resolving, convection-allowing atmospheric model, initialized by 3km grids with 3km radar assimilation. Radar data is assimilated in the HRRR every 15 min over a 1-h period adding further detail to that provided by the hourly data assimilation from the 13km radar-enhanced Rapid Refresh.\n\nDocumentation: https://docs.opendata.aws/noaa-hrrr-pds/readme.html\nContact: https://rapidrefresh.noaa.gov/hrrr/\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_hrrr_pds/index.json", "https://registry.opendata.aws/noaa-hrrr-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_hrrr_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_hrrr_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_hrrr_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_isd_pds/", "public", "File Names from the AWS S3 noaa-isd-pds Bucket: NOAA Integrated Surface Database (ISD): Project data files", "This dataset has file information from the AWS S3 noaa-isd-pds bucket at https://noaa-isd-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Integrated Surface Database (ISD)\nName2: Project data files\nDescription: The Integrated Surface Database (ISD) consists of global hourly and synoptic observations compiled from numerous sources into a gzipped fixed width format. ISD was developed as a joint activity within Asheville's Federal Climate Complex. The database includes over 35,000 stations worldwide, with some having data as far back as 1901, though the data show a substantial increase in volume in the 1940s and again in the early 1970s. Currently, there are over 14,000 \"active\" stations updated daily in the database. The total uncompressed data volume is around 600 gigabytes; however, it continues to grow as more data are added. ISD includes numerous parameters such as wind speed and direction, wind gust, temperature, dew point, cloud data, sea level pressure, altimeter setting, station pressure, present weather, visibility, precipitation amounts for various time periods, snow depth, and various other elements as observed by each station.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_isd_pds/index.json", "https://registry.opendata.aws/noaa-isd/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_isd_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_isd_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_isd_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nexrad_level2/", "public", "File Names from the AWS S3 noaa-nexrad-level2 Bucket: NEXRAD on AWS: NEXRAD Level II archive data", "This dataset has file information from the AWS S3 noaa-nexrad-level2 bucket at https://noaa-nexrad-level2.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II archive data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nexrad_level2/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nexrad_level2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nexrad_level2&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nexrad_level2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_pds/", "public", "File Names from the AWS S3 noaa-nwm-pds Bucket: NOAA National Water Model Short-Range Forecast: A rolling four week archive of NWM data.", "This dataset has file information from the AWS S3 noaa-nwm-pds bucket at https://noaa-nwm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Short-Range Forecast\nName2: A rolling four week archive of NWM data.\nDescription: The National Water Model (NWM) is a water resources model that simulates and forecasts water budget variables, including snowpack, evapotranspiration, soil moisture and streamflow, over the entire continental United States (CONUS). The model, launched in August 2016, is designed to improve the ability of NOAA to meet the needs of its stakeholders (forecasters, emergency managers, reservoir operators, first responders, recreationists, farmers, barge operators, and ecosystem and floodplain managers) by providing expanded accuracy, detail, and frequency of water information. It is operated by NOAA\u2019s Office of Water Prediction. This bucket contains a four-week rollover of the Short Range Forecast model output and the corresponding forcing data for the model. The model is forced with meteorological data from the High Resolution Rapid Refresh (HRRR) and the Rapid Refresh (RAP) models. The Short Range Forecast configuration cycles hourly and produces hourly deterministic forecasts of streamflow and hydrologic states out to 18 hours.\n\nDocumentation: https://docs.opendata.aws/noaa-nwm-pds/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_pds/index.json", "https://registry.opendata.aws/noaa-nwm-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_retro_v2_0_pds/", "public", "File Names from the AWS S3 noaa-nwm-retro-v2.0-pds Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 2.0.", "This dataset has file information from the AWS S3 noaa-nwm-retro-v2.0-pds bucket at https://noaa-nwm-retro-v2.0-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 2.0.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\n... (4 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_retro_v2_0_pds/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_retro_v2_0_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_retro_v2_0_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_retro_v2_0_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ofs_pds/", "public", "File Names from the AWS S3 noaa-ofs-pds Bucket: NOAA Operational Forecast System (OFS): Project data files", "This dataset has file information from the AWS S3 noaa-ofs-pds bucket at https://noaa-ofs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Operational Forecast System (OFS)\nName2: Project data files\nDescription: The Operational Forecast System (OFS) has been developed to serve the maritime user community. OFS was developed in a joint project of the NOAA/National Ocean Service (NOS)/Office of Coast Survey, the NOAA/NOS/Center for Operational Oceanographic Products and Services (CO-OPS), and the NOAA/National Weather Service (NWS)/National Centers for Environmental Prediction (NCEP) Central Operations (NCO). OFS generates water level, water current, water temperature, water salinity (except for the Great Lakes) and wind conditions nowcast and forecast guidance four times per day.\n\nDocumentation: https://docs.opendata.aws/noaa-ofs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA OFS site](https://tidesandcurrents.noaa.gov/models.html). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight and generates 6-hour nowcasts and 48-hour forecast guidance\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ofs_pds/index.json", "https://registry.opendata.aws/noaa-ofs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ofs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ofs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ofs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/", "public", "File Names from the AWS S3 nrel-pds-wtk Bucket with prefix=wtk-techno-economic/pywtk-data/: NREL Wind Integration National Dataset on AWS: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format", "This dataset has file information from the AWS S3 nrel-pds-wtk bucket at https://nrel-pds-wtk.s3.us-west-2.amazonaws.com/ with prefix=wtk-techno-economic/pywtk-data/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NREL Wind Integration National Dataset on AWS\nName2: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format\nDescription: The [Wind Integration National Dataset (WIND)](https://www.nrel.gov/grid/wind-toolkit.html) is an update and expansion of the Eastern Wind Integration Data Set and Western Wind Integration Data Set. It supports the next generation of wind integration studies.\n\nDocumentation: https://www.nrel.gov/grid/wind-toolkit.html\nContact: wind-toolkit@nrel.gov\nManagedBy: [National Renewable Energy Laboratory](https://www.nrel.gov/)\nUpdateFrequency: As Needed\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/index.json", "https://registry.opendata.aws/nrel-pds-wtk/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nwm_archive/", "public", "File Names from the AWS S3 nwm-archive Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 1.2.", "This dataset has file information from the AWS S3 nwm-archive bucket at https://nwm-archive.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 1.2.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nwm_archive/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nwm_archive.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nwm_archive&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nwm_archive"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nyc_tlc/", "public", "File Names from the AWS S3 nyc-tlc Bucket: New York City Taxi and Limousine Commission (TLC) Trip Record Data: CSV files containing NYC TLC trip data.", "This dataset has file information from the AWS S3 nyc-tlc bucket at https://nyc-tlc.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: New York City Taxi and Limousine Commission (TLC) Trip Record Data\nName2: CSV files containing NYC TLC trip data.\nDescription: Data of trips taken by taxis and for-hire vehicles in New York City.\n\nDocumentation: http://www.nyc.gov/html/tlc/html/about/trip_record_data.shtml\nContact: research@tlc.nyc.gov\nUpdateFrequency: As soon as new data is available to be shared publicly.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nyc_tlc/index.json", "https://registry.opendata.aws/nyc-tlc-trip-records-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nyc_tlc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nyc_tlc&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nyc_tlc"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_oicr_icgc_meta_metadata/", "public", "File Names from the AWS S3 oicr.icgc.meta Bucket with prefix=metadata/: ICGC on AWS: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README", "This dataset has file information from the AWS S3 oicr.icgc.meta bucket at https://oicr.icgc.meta.s3.us-east-1.amazonaws.com/ with prefix=metadata/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ICGC on AWS\nName2: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README\nDescription: The International Cancer Genome Consortium (ICGC) coordinates projects with the common aim of accelerating research into the causes and control of cancer. The PanCancer Analysis of Whole Genomes (PCAWG) study is an international collaboration to identify common patterns of mutation in whole genomes from ICGC. More than 2,400 consistently analyzed genomes corresponding to over 1,100 unique ICGC donors are now freely available on Amazon S3 to credentialed researchers subject to ICGC data sharing policies.\n\nDocumentation: https://dcc.icgc.org/icgc-in-the-cloud/aws\nContact: dcc-support@icgc.org\nUpdateFrequency: New data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_oicr_icgc_meta_metadata/index.json", "https://registry.opendata.aws/icgc/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_oicr_icgc_meta_metadata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_oicr_icgc_meta_metadata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_oicr_icgc_meta_metadata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ooni_data/", "public", "File Names from the AWS S3 ooni-data Bucket: Open Observatory of Network Interference: S3 bucket with data", "This dataset has file information from the AWS S3 ooni-data bucket at https://ooni-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open Observatory of Network Interference\nName2: S3 bucket with data\nDescription: A free software, global observation network for detecting censorship, surveillance and traffic manipulation on the internet.\n\nDocumentation: https://ooni.torproject.org/about/\nContact: https://ooni.torproject.org/get-involved/\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ooni_data/index.json", "https://registry.opendata.aws/ooni/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ooni_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ooni_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ooni_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openaq_fetches/", "public", "File Names from the AWS S3 openaq-fetches Bucket: OpenAQ: Minutely CSVs of global air quality fetched from sources all over the world", "This dataset has file information from the AWS S3 openaq-fetches bucket at https://openaq-fetches.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenAQ\nName2: Minutely CSVs of global air quality fetched from sources all over the world\nDescription: Global, aggregated physical air quality data from public data sources provided by government, research-grade and other sources. These awesome groups do the hard work of measuring these data and publicly sharing them, and our community makes them more universally-accessible to both humans and machines.\n\nDocumentation: https://openaq.org\nContact: info@openaq.org\nManagedBy: [OpenAQ](https://openaq.org)\nUpdateFrequency: Minutely\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openaq_fetches/index.json", "https://registry.opendata.aws/openaq/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openaq_fetches.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openaq_fetches&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openaq_fetches"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_opencitymodel/", "public", "File Names from the AWS S3 opencitymodel Bucket: Open City Model (OCM): Project data files", "This dataset has file information from the AWS S3 opencitymodel bucket at https://opencitymodel.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open City Model (OCM)\nName2: Project data files\nDescription: Open City Model is an initiative to provide cityGML data for all the buildings in the United States. By using other open datasets in conjunction with our own code and algorithms it is our goal to provide 3D geometries for every US building.\n\nDocumentation: https://github.com/opencitymodel/opencitymodel\nContact: https://github.com/opencitymodel/opencitymodel#contact\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_opencitymodel/index.json", "https://registry.opendata.aws/opencitymodel/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_opencitymodel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_opencitymodel&showErrors=false&email=", "Amazon Web Services", "awsS3Files_opencitymodel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openneuro_org/", "public", "File Names from the AWS S3 openneuro.org Bucket: OpenNeuro: All datasets", "This dataset has file information from the AWS S3 openneuro.org bucket at https://openneuro.org.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenNeuro\nName2: All datasets\nDescription: OpenNeuro is a database of openly-available brain imaging data. The data are shared according to a Creative Commons CC0 license, providing a broad range of brain imaging data to researchers and citizen scientists alike. The database primarily focuses on functional magnetic resonance imaging (fMRI) data, but also includes other imaging modalities including structural and diffusion MRI, electroencephalography (EEG), and magnetoencephalograpy (MEG). OpenfMRI is a project of the [Center for Reproducible Neuroscience at Stanford University](http://reproducibility.stanford.edu). Development of the OpenNeuro resource has been funded by the National Science Foundation, National Institute of Mental Health, National Institute on Drug Abuse, and the Laura and John Arnold Foundation.\n\nDocumentation: http://openneuro.org\nContact: Support form at https://openneuro.org\nUpdateFrequency: New datasets deposited every 4-6 days\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openneuro_org/index.json", "https://registry.opendata.aws/openneuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openneuro_org.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openneuro_org&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openneuro_org"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osm_pds/", "public", "File Names from the AWS S3 osm-pds Bucket: OpenStreetMap on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 osm-pds bucket at https://osm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap on AWS\nName2: Imagery and metadata\nDescription: OSM is a free, editable map of the world, created and maintained by volunteers. Regular OSM data archives are made available in Amazon S3.\n\nDocumentation: https://docs.opendata.aws/osm-pds/readme.html\nContact: https://github.com/mojodna/osm-pds-pipelines/issues\nUpdateFrequency: Data is updated weekly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osm_pds/index.json", "https://registry.opendata.aws/osm/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osmlr/", "public", "File Names from the AWS S3 osmlr Bucket: OpenStreetMap Linear Referencing: Manifest and data files", "This dataset has file information from the AWS S3 osmlr bucket at https://osmlr.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap Linear Referencing\nName2: Manifest and data files\nDescription: OSMLR a linear referencing system built on top of OpenStreetMap. OSM has great information about roads around the world and their interconnections, but it lacks the means to give a stable identifier to a stretch of roadway. OSMLR provides a stable set of numerical IDs for every 1 kilometer stretch of roadway around the world. In urban areas, OSMLR IDs are attached to each block of roadways between significant intersections.\n\nDocumentation: https://github.com/opentraffic/osmlr/blob/master/docs/intro.md\nContact: https://github.com/opentraffic/osmlr/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osmlr/index.json", "https://registry.opendata.aws/osmlr/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osmlr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osmlr&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osmlr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_qiime2_data/", "public", "File Names from the AWS S3 qiime2-data Bucket: QIIME 2 User Tutorial Datasets: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs", "This dataset has file information from the AWS S3 qiime2-data bucket at https://qiime2-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: QIIME 2 User Tutorial Datasets\nName2: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs\nDescription: QIIME 2 is a powerful, extensible, and decentralized microbiome analysis package with a focus on data and analysis transparency. QIIME 2 enables researchers to start an analysis with raw DNA sequence data and finish with publication-quality figures and statistical results. This dataset contains the user docs (and related datasets) for QIIME 2.\n\nDocumentation: https://docs.qiime2.org\nContact: https://forum.qiime2.org\nManagedBy: The QIIME 2 Development Team\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_qiime2_data/index.json", "https://registry.opendata.aws/qiime2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_qiime2_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_qiime2_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_qiime2_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_safecast_opendata_public_us_east_1/", "public", "File Names from the AWS S3 safecast-opendata-public-us-east-1 Bucket: Safecast: Bulk exports of air and radiation measurements", "This dataset has file information from the AWS S3 safecast-opendata-public-us-east-1 bucket at https://safecast-opendata-public-us-east-1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Safecast\nName2: Bulk exports of air and radiation measurements\nDescription: An ongoing collection of radiation and air quality measurements taken by devices involved in the Safecast project.\n\nDocumentation: https://github.com/Safecast/safecastapi/wiki/Data-Sets\nContact: https://groups.google.com/forum/#!forum/safecast-devices\nManagedBy: [Safecast](https://safecast.org/)\nUpdateFrequency: Continuous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_safecast_opendata_public_us_east_1/index.json", "https://registry.opendata.aws/safecast/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_safecast_opendata_public_us_east_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_safecast_opendata_public_us_east_1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_safecast_opendata_public_us_east_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s1_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s1-l1c/: Sentinel-1: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s1-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C\nDescription: [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1) is a pair of European radar imaging (SAR) satellites launched in 2014 and 2016. Its 6 days revisit cycle and ability to observe through clouds makes it perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. GRD data is available globally since January 2017.\n\nDocumentation: https://roda.sentinel-hub.com/sentinel-s1-l1c/GRD/readme.html\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s1_l1c/index.json", "https://registry.opendata.aws/sentinel-1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s1_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s1_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s1_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l1c/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l1c/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l2a/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l2a/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l2a/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l2a/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l2a&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l2a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel1_slc_seasia_pds/", "public", "File Names from the AWS S3 sentinel1-slc-seasia-pds Bucket: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan", "This dataset has file information from the AWS S3 sentinel1-slc-seasia-pds bucket at https://sentinel1-slc-seasia-pds.s3.ap-southeast-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan\nName2: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan\nDescription: The S1 Single Look Complex (SLC) dataset contains Synthetic Aperture Radar (SAR) data in the C-Band wavelength. The SAR sensors are installed on a two-satellite (Sentinel-1A and Sentinel-1B) constellation orbiting the Earth with a combined revisit time of six days, operated by the European Space Agency. The S1 SLC data are a Level-1 product that collects radar amplitude and phase information in all-weather, day or night conditions, which is ideal for studying natural hazards and emergency response, land applications, oil spill monitoring, sea-ice conditions, and associated climate change effects.\n\nDocumentation: https://github.com/earthobservatory/sentinel1-opds/\nContact: https://github.com/earthobservatory/sentinel1-opds/\nManagedBy: [Earth Observatory of Singapore, Nanyang Technological University](https://earthobservatory.sg)\nUpdateFrequency: S1 SLC data for the region of interest will be updated regularly, as it becomes available on the Alaska Satellite Facility endpoint.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel1_slc_seasia_pds/index.json", "https://registry.opendata.aws/sentinel1-slc-seasia-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel1_slc_seasia_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel1_slc_seasia_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel1_slc_seasia_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_silo_open_data/", "public", "File Names from the AWS S3 silo-open-data Bucket: SILO climate data on AWS: SILO open data", "This dataset has file information from the AWS S3 silo-open-data bucket at https://silo-open-data.s3.ap-southeast-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SILO climate data on AWS\nName2: SILO open data\nDescription: [SILO](https://www.longpaddock.qld.gov.au/silo) is a database of Australian [climate data](https://www.longpaddock.qld.gov.au/silo/about/climate-variables) from 1889 to the present. It provides continuous, daily time-step [data products](https://www.longpaddock.qld.gov.au/silo/about/data-products) in ready-to-use [formats](https://www.longpaddock.qld.gov.au/silo/about/file-formats-and-samples) for research and operational applications. Gridded SILO data in annual NetCDF format are on AWS. Point data are available from the [SILO website](https://www.longpaddock.qld.gov.au/silo/).\n\nDocumentation: https://www.longpaddock.qld.gov.au/silo/gridded-data\nContact: https://www.longpaddock.qld.gov.au/silo/contact-us\nManagedBy: Queensland Government\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_silo_open_data/index.json", "https://registry.opendata.aws/silo/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_silo_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_silo_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_silo_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_softwareheritage/", "public", "File Names from the AWS S3 softwareheritage Bucket: Software Heritage Graph Dataset: Software Heritage Graph Dataset", "This dataset has file information from the AWS S3 softwareheritage bucket at https://softwareheritage.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Software Heritage Graph Dataset\nName2: Software Heritage Graph Dataset\nDescription: [Software Heritage](https://www.softwareheritage.org/) is the largest existing public archive of software source code and accompanying development history. The Software Heritage Graph Dataset is a fully deduplicated Merkle DAG representation of the Software Heritage archive.\n\nDocumentation: https://wiki.softwareheritage.org/wiki/Graph_Dataset_on_Amazon_Athena\nContact: swh-devel@inria.fr\nUpdateFrequency: Data is updated yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_softwareheritage/index.json", "https://registry.opendata.aws/software-heritage/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_softwareheritage.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_softwareheritage&showErrors=false&email=", "Amazon Web Services", "awsS3Files_softwareheritage"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_spacenet_dataset/", "public", "File Names from the AWS S3 spacenet-dataset Bucket: SpaceNet: Imagery and metadata in a S3 bucket", "This dataset has file information from the AWS S3 spacenet-dataset bucket at https://spacenet-dataset.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SpaceNet\nName2: Imagery and metadata in a S3 bucket\nDescription: SpaceNet, launched in August 2016 as an open innovation project offering a repository of freely available imagery with co-registered map features. Before SpaceNet, computer vision researchers had minimal options to obtain free, precision-labeled, and high-resolution satellite imagery. Today, SpaceNet hosts datasets developed by its own team, along with data sets from projects like IARPA\u2019s Functional Map of the World (fMoW).\n\nDocumentation: https://spacenetchallenge.github.io\nContact: https://github.com/SpaceNetChallenge/utilities/issues\nManagedBy: [SpaceNet](https://spacenet.ai/)\nUpdateFrequency: New imagery and features are added quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_spacenet_dataset/index.json", "https://registry.opendata.aws/spacenet/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_spacenet_dataset.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_spacenet_dataset&showErrors=false&email=", "Amazon Web Services", "awsS3Files_spacenet_dataset"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_unidata_nexrad_level2_chunks/", "public", "File Names from the AWS S3 unidata-nexrad-level2-chunks Bucket: NEXRAD on AWS: NEXRAD Level II real-time data", "This dataset has file information from the AWS S3 unidata-nexrad-level2-chunks bucket at https://unidata-nexrad-level2-chunks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II real-time data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_unidata_nexrad_level2_chunks/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_unidata_nexrad_level2_chunks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_unidata_nexrad_level2_chunks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_unidata_nexrad_level2_chunks"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_usgs_lidar_public/", "public", "File Names from the AWS S3 usgs-lidar-public Bucket: USGS 3DEP LiDAR Point Clouds: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.", "This dataset has file information from the AWS S3 usgs-lidar-public bucket at https://usgs-lidar-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: USGS 3DEP LiDAR Point Clouds\nName2: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.\nDescription: The goal of the [USGS 3D Elevation Program ](https://www.usgs.gov/core-science-systems/ngp/3dep) (3DEP) is to collect elevation data in the form of light detection and ranging (LiDAR) data over the conterminous United States, Hawaii, and the U.S. territories, with data acquired over an 8-year period. This dataset provides two realizations of the 3DEP point cloud data. The first resource is a public access organization provided in [Entwine Point Tiles](https://entwine.io/entwine-point-tile.html) format, which a lossless, full-density, streamable octree based on [LASzip](https://laszip.org) (LAZ) encoding. The second resource is a [Requester Pays](https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html) of the same data in LAZ (Compressed LAS) format. Resource names in both buckets correspond to the USGS project names.\n\nDocumentation: https://github.com/hobu/usgs-lidar/\nContact: https://github.com/hobu/usgs-lidar\nManagedBy: [Hobu, Inc.](https://hobu.co)\nUpdateFrequency: Periodically\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_usgs_lidar_public/index.json", "https://registry.opendata.aws/usgs-lidar/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_usgs_lidar_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_usgs_lidar_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_usgs_lidar_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_web_language_models/", "public", "File Names from the AWS S3 web-language-models Bucket: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl): Parallel Corpora to/from English for all official EU languages", "This dataset has file information from the AWS S3 web-language-models bucket at https://web-language-models.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl)\nName2: Parallel Corpora to/from English for all official EU languages\nDescription: ParaCrawl is a set of large parallel corpora to/from English for all official EU languages by a broad web crawling effort. State-of-the-art methods are applied for the entire processing chain from identifying web sites with translated text all the way to collecting, cleaning and delivering parallel corpora that are ready as training data for CEF.AT and translation memories for DG Translation.\n\nDocumentation: https://paracrawl.eu/releases.html\nContact: For questions regarding the datasets contact Kenneth Heafield, email kheafiel@inf.ed.ac.uk. For reporting any issues about bitextor pipeline visit https://github.com/bitextor/bitextor/issues.\nManagedBy: [ParaCrawl](https://paracrawl.eu)\nUpdateFrequency: New data is added according to ParaCrawl release schedule.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_web_language_models/index.json", "https://registry.opendata.aws/paracrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_web_language_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_web_language_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_web_language_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_xiph_media/", "public", "File Names from the AWS S3 xiph-media Bucket: Xiph.Org Test Media: Video and imagery data", "This dataset has file information from the AWS S3 xiph-media bucket at https://xiph-media.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Xiph.Org Test Media\nName2: Video and imagery data\nDescription: Uncompressed video used for video compression and video processing research.\n\nDocumentation: https://media.xiph.org/aws.html\nContact: Thomas Daede tdaede@xiph.org\nUpdateFrequency: New videos are added when contributors submit them.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_xiph_media/index.json", "https://registry.opendata.aws/xiph-media/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_xiph_media.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_xiph_media&showErrors=false&email=", "Amazon Web Services", "awsS3Files_xiph_media"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ycb_benchmarks/", "public", "File Names from the AWS S3 ycb-benchmarks Bucket: Yale-CMU-Berkeley (YCB) Object and Model Set: Project data files", "This dataset has file information from the AWS S3 ycb-benchmarks bucket at https://ycb-benchmarks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Yale-CMU-Berkeley (YCB) Object and Model Set\nName2: Project data files\nDescription: This project primarily aims to facilitate performance benchmarking in robotics research. The dataset provides mesh models, RGB, RGB-D and point cloud images of over 80 objects. The physical objects are also available via the [YCB benchmarking project](http://www.ycbbenchmarks.com/). The data are collected by two state of the art systems: UC Berkley's scanning rig and the Google scanner. The UC Berkley's scanning rig data provide meshes generated with Poisson reconstruction, meshes generated with volumetric range image integration, textured versions of both meshes, Kinbody files for using the meshes with OpenRAVE, 600 High-resolution RGB images, 600 RGB-D images, and 600 point cloud images for each object. The Google scanner data provides 3 meshes with different resolutions (16k, 64k, and 512k polygons), textured versions of each mesh, Kinbody files for using the meshes with OpenRAVE.\n\nDocumentation: http://www.ycbbenchmarks.com/\nContact: bcalli@wpi.edu\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ycb_benchmarks/index.json", "https://registry.opendata.aws/ycb-benchmarks/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ycb_benchmarks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ycb_benchmarks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ycb_benchmarks"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the June 2020 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.graph", "", "", "public", "GLOBEC NEP Vertical Plankton Tow (VPT) Data, 1997-2001", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nCalifornia Current Program\nVertical Plankton Tow (VPT) Data\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10181&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/vpt%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/vpt.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ncast_no (Cast Number Within the Cruise)\nstation_id\nabund_m3 (Abundance, count m-3)\ncomments\ncounter_id\nd_n_flag (Day/Night Flag)\ngear_area (Mouth Area of Net, m2)\ngear_mesh (Net's Mesh Size, mm)\ngear_type\ngenus_species\nlife_stage\nlocal_code\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecVpt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecVpt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecVpt/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecVpt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecVpt&showErrors=false&email=", "GLOBEC", "erdGlobecVpt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://usgodae.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, the EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\nBeach Monitoring Quality Assurance Project Plan (CWBMONQAPP002):\nhttps://www.pacioos.hawaii.edu/wp-content/uploads/2016/08/Beach_Monitoring_QAPP_CWBMONQAPP002_120507.pdf\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwb_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwb_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwb_water_quality/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/cwb_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwb_water_quality&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "cwb_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.graph", "", "", "public", "HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii", "The Hawaii Institute of Marine Biology (HIMB) automatic weather station (AWS) records hourly measurements of precipitation, air temperature, wind speed and direction, and irradiance. Sensors include an Eppley 295-385 nm ultraviolet (UV) radiometer, a LiCor 200SZ Pyranometer, and a LiCor Quantameter (400-700 nm). The sensors are located on the roof of HIMB's Coral Reef Ecology Laboratory (Point Lab) on Moku o Loe (Coconut Island) in Kaneohe Bay on the windward (eastern) coast of Oahu in Hawaii. An accompanying sea water temperature sensor is located less than 10 m offshore of the weather station at a shallow depth of approximately 1 m.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HIMB: HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nsea_water_temperature (water temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nwind_from_direction_std (standard deviation of wind direction (processed), degrees)\nrainfall_amount (total rainfall (processed), mm)\nshortwave_radiation (downwelling shortwave radiation (processed), W/m2)\nultraviolet_radiation (ultraviolet radiation (processed), W/m2)\nphotosynthetic_radiation (photosynthetically active radiation (processed), umol m-2 s-1)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_atn (QARTOD Attenuated Signal Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (139 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HIMB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HIMB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HIMB/index.json", "https://www.pacioos.hawaii.edu/weather/obs-mokuoloe/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HIMB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HIMB&showErrors=false&email=", "Hawaii Institute of Marine Biology (HIMB)", "AWS-HIMB"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.graph", "", "", "public", "Hui O Ka Wai Ola Water Quality Data", "The goal of the Hui O Ka Wai Ola (Association Of The Living Waters) citizen-science based water quality program is to increase the capacity for monitoring water quality in Maui coastal waters by generating reliable data to assess long-term water-quality conditions and detect temporal trends. These data augment the data produced by the Hawaii Department of Health (DOH) Clean Water Branch (CWB) beach monitoring program on Maui.\n \nData are collected and analyzed every two or three weeks for physical and chemical parameters, including ocean salinity, pH, temperature, organic nutrients (nitrogen and phosphorous compounds), dissolved oxygen (DO), and total suspended sediment (TSS). Some water samples are immediately tested at mobile labs while others are processed for testing at University of Hawaii and/or other labs.\n \nUsers of these data should cite the following publication:\n \nFalinski, Kim, Dana Reed, Tova Callender, Emily Fielding, Robin Newbold, and Alana Yurkanin. (2018). Hui O Ka Wai Ola Water Quality Data [Data set]. Zenodo. \"http://doi.org/10.5281/zenodo.1173717\"\n \nFor further information, please visit:\nhttps://www.huiokawaiola.com\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nlocation_id (sampling site identifier)\nlocation_name\nsample_id (sample identifier)\nsession_id (sampling session identifier)\nwater_temperature (Celsius)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hui_water_quality/index.json", "https://www.huiokawaiola.com", "http://upwell.pfeg.noaa.gov/erddap/rss/hui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hui_water_quality&showErrors=false&email=", "Hui O Ka Wai Ola", "hui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitored water quality at several beaches across the island of Maui in the State of Hawaii during the years 2010-2016. This community-based monitoring effort provided valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites were also monitored for harmful bacteria levels of Enterococcus through 2014-06-26. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours.\n\nData were managed through an online repository, the Coral Reef Monitoring Data Portal (now defunct), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection was coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/maui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/maui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/maui_water_quality/index.json", "https://coral.org/maui/", "http://upwell.pfeg.noaa.gov/erddap/rss/maui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=maui_water_quality&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "maui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys. See\nhttps://www.ndbc.noaa.gov/measdes.shtml for a description of the measurements.\n\nThe source data from NOAA NDBC has different column names, different units,\nand different missing values in different files, and other problems\n(notably, lots of rows with duplicate or different values for the same time\npoint). This dataset is a standardized, reformatted, and lightly edited\nversion of that source data, created by NOAA NMFS SWFSC ERD (email:\nerd.data at noaa.gov). Before 2020-01-29, this dataset only had the data\nthat was closest to a given hour, rounded to the nearest hour. Now, this\ndataset has all of the data available from NDBC with the original time\nvalues. If there are multiple source rows for a given buoy for a given\ntime, only the row with the most non-NaN data values is kept. If there is\na gap in the data, a row of missing values is inserted (which causes a nice\ngap when the data is graphed). Also, some impossible data values are\nremoved, but this data is not perfectly clean. This dataset is now updated\nevery 5 minutes.\n\nThis dataset has both historical data (quality controlled, before\n2020-06-01T00:00:00Z) and near real time data (less quality controlled,\nwhich may change at any time, from 2020-06-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Identifier)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.graph", "", "", "public", "NEFSC Continuous Plankton Recorder", "A summary for the data\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ncruise\nsample\nlatitude (degrees_north)\nlongitude (degrees_east)\nphyto_color_indx (Phytoplankton Color Index)\nmarmap_tax_code (Marmap Taxonomic Code)\nmarmap_stage_code\nabundance (per 100 cubic meters)\nlife_stage\ntaxonomic_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/wocecpr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/wocecpr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/wocecpr/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "http://upwell.pfeg.noaa.gov/erddap/rss/wocecpr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=wocecpr&showErrors=false&email=", "NEFSC", "wocecpr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "", "public", "North Pacific High, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.graph", "", "", "public", "OSMC Argo Profile data", "OSMC Argo Profile data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\norganization_name\ncountry_name\nplatform_type_name\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nparameter_name\ndaily_obs_count\nobservation_depth\nobservation_value\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_PROFILERS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_PROFILERS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_PROFILERS/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_PROFILERS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_PROFILERS&showErrors=false&email=", "OSMC", "OSMC_PROFILERS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.graph", "", "", "public", "OSMC normalized observations from GTS", "OSMC normalized In-situ Real time GTS data\n\ncdm_data_type = Point\nVARIABLES:\nPLATFORM_CODE (Station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform\nparameter\nOBSERVATION_VALUE\nOBSERVATION_DEPTH\nCOUNTRY_NAME\norganization_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_Points_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_Points_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_Points/index.json", "https://www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_Points.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_Points&showErrors=false&email=", "OSMC", "OSMC_Points"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001.graph", "", "", "public", "PacIOOS Beach Camera 001: Waikiki, Oahu, Hawaii", "A digital camera on top of the Sheraton Waikiki hotel was used to photograph the shoreline of Waikiki beach along the South Shore of the island of Oahu in the State of Hawaii. The oblique camera view presented here captures the shoreline leading southeast towards Diamond Head crater. It operated for over 4.5 years between February 5, 2009 and October 13, 2013. Capturing hourly snapshots at a set vantage point during the local daytime hours of 6:00 AM or 7:00 AM to 5:00 PM, these images are useful for tracking beach dynamics such as wave run-up, sand movement, and turbidity plumes over time. The camera was mounted on top of a 3 meter wall extending above the roof surface for a total height of 93 meters above ground level or 96 meters above mean sea level. See also BEACHCAM-002 for an alternate camera view from the same location pointing directly downwards.\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (m)\naboveGround (Height, m)\nurl\nname (File Name)\nsize (bytes)\nfileType (File Type)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/BEACHCAM-001_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/BEACHCAM-001_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/BEACHCAM-001/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/BEACHCAM-001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=BEACHCAM-001&showErrors=false&email=", "University of Hawaii", "BEACHCAM-001"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_4"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_2/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_2&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_6/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_6&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_7/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_7&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_7"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_8/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_8&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_9/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_9&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.graph", "", "", "public", "PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-04 is located in Hilo Bay on the east side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-04: PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-04/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-hilo/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-04&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-04"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.graph", "", "", "public", "PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-05 is located in Pelekane Bay near Kawaihae Harbor on the west side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-05: PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-05/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-pelekane/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-05&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-05"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.graph", "", "", "public", "PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii", "The Pacific Islands Ocean Observing System (PacIOOS) operates a Davis Instruments automatic weather station (AWS) near the entrance to Honolulu Harbor on the leeward (western) coast of Oahu in Hawaii to aid with navigation. The station records measurements every 5 minutes of air temperature, wind speed and direction, precipitation, relative humidity, and air pressure. Sensors are located at Pier 1, installed on a tower at an elevation of 64 feet (19.5 meters) above sea level. The station is owned by the Hawaii Pilots Association (HPA). PacIOOS maintains the station and provides data access.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HNLPier1: PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nrainfall_rate (rain rate (processed), mm/h)\nrelative_humidity (relative humidity (processed), %)\nair_pressure (air pressure (processed), millibars)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_gap (QARTOD Gap Test (processed), 0)\nair_temperature_qc_syn (QARTOD Syntax Test (processed), 0)\nair_temperature_qc_loc (QARTOD Location Test (processed), 0)\nair_temperature_qc_rng (QARTOD Gross Range Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_spk (QARTOD Spike Test (processed), 0)\n... (92 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HNLPier1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HNLPier1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HNLPier1/index.json", "https://www.pacioos.hawaii.edu/weather/obs-honolulu/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HNLPier1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HNLPier1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "AWS-HNLPier1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "https://tidesandcurrents.noaa.gov/gomoos.html", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/main.aspx?Division=PRD&ParentMenuId=147&id=1221", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2017, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2017, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2017, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"] + ] + } + } + recorded_at: 2020-07-15 22:18:34 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMekm14day.nc?mod_current[(2015-12-28):1:(2016-01-01)][(0.0):1:(0.0)][(23):1:(24)][(88):1:(90)],u_current[(2015-12-28):1:(2016-01-01)][(0.0):1:(0.0)][(23):1:(24)][(88):1:(90)],v_current[(2015-12-28):1:(2016-01-01)][(0.0):1:(0.0)][(23):1:(24)][(88):1:(90)] + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:18:34 GMT + x-frame-options: SAMEORIGIN + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:18:34 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=erdQMekm14day_3a6f_f1d0_a65b.nc + content-encoding: gzip + content-type: application/x-netcdf + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: yes + string: ../fixtures/188571c95282bcb224bb987dd83d22b7.nc + recorded_at: 2020-07-15 22:18:34 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 diff --git a/tests/vcr_cassettes/griddap_fixes_user_inputs_3.yml b/tests/vcr_cassettes/griddap_fixes_user_inputs_3.yml new file mode 100644 index 0000000..aa1d695 --- /dev/null +++ b/tests/vcr_cassettes/griddap_fixes_user_inputs_3.yml @@ -0,0 +1,679 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/info/erdQMekm14day/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:17:43 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=erdQMekm14day_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "Grid"], + ["attribute", "NC_GLOBAL", "contact", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "Conventions", "String", "CF-1.6, COARDS, ACDD-1.3"], + ["attribute", "NC_GLOBAL", "creation_date", "String", "Tue Jul 14 23:13:27 2020"], + ["attribute", "NC_GLOBAL", "creator_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "creator_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "defaultGraphQuery", "String", "&.draw=vectors"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "360.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "75.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "-75.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_resolution", "double", "0.25"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "360.0"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_lon_resolution", "double", "0.25"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_max", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_min", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_positive", "String", "up"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_units", "String", "m"], + ["attribute", "NC_GLOBAL", "history", "String", "1-day geographic projection composites, created by erd.data@noaa.gov from L2 swath data obtained from NOAA|NESDIS, are used to create multi-day composites via the composite script in the dalesLibAscatB.py library by erd.data@noaa.gov at NOAA NMFS SWFSC ERD."], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "https://coastwatch.pfeg.noaa.gov/infog/QM_uekm_las.html"], + ["attribute", "NC_GLOBAL", "institution", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "keywords", "String", "advanced, altitude, ascat, circulation, coast, coastwatch, current, data, degrees, diffusivity, driven, Earth Science > Oceans > Ocean Circulation > Wind-Driven Circulation, eumetsat, european, exploitation, global, meteorological, metop, near, near real time, noaa, node, ocean, oceans, organisation, QMuekm, real, satellites, scatterometer, time, wcn, west, wind, wind-driven, zonal"], + ["attribute", "NC_GLOBAL", "license", "String", "The data may be used and redistributed for free but is not intended\nfor legal use, since it may contain inaccuracies. Neither the data\nContributor, ERD, NOAA, nor the United States Government, nor any\nof their employees or contractors, makes any warranty, express or\nimplied, including warranties of merchantability and fitness for a\nparticular purpose, or assumes any legal liability for the accuracy,\ncompleteness, or usefulness, of this information."], + ["attribute", "NC_GLOBAL", "naming_authority", "String", "gov.noaa.pfeg.coastwatch"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "75.0"], + ["attribute", "NC_GLOBAL", "project", "String", "CoastWatch (https://coastwatch.noaa.gov/)"], + ["attribute", "NC_GLOBAL", "publisher_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "publisher_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "publisher_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "publisher_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "references", "String", "NOAA/NESDIS https://manati.star.nesdis.noaa.gov/products/ASCAT.php ."], + ["attribute", "NC_GLOBAL", "source_data", "String", "14-day composite mean of files: QM2020196_2020196_uekm.grd.gz, QM2020195_2020195_uekm.grd.gz, QM2020194_2020194_uekm.grd.gz, QM2020193_2020193_uekm.grd.gz, QM2020192_2020192_uekm.grd.gz, QM2020191_2020191_uekm.grd.gz, QM2020190_2020190_uekm.grd.gz, QM2020189_2020189_uekm.grd.gz, QM2020188_2020188_uekm.grd.gz, QM2020187_2020187_uekm.grd.gz, QM2020186_2020186_uekm.grd.gz, QM2020185_2020185_uekm.grd.gz, QM2020184_2020184_uekm.grd.gz, QM2020183_2020183_uekm.grd.gz"], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "(local files)"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "-75.0"], + ["attribute", "NC_GLOBAL", "spatial_resolution", "String", "0.25 degree"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v70"], + ["attribute", "NC_GLOBAL", "summary", "String", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is a 14 day composite.)"], + ["attribute", "NC_GLOBAL", "testOutOfDate", "String", "now-10days"], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2020-07-08T00:00:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "2013-08-27T00:00:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "Wind Diffusivity Current, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (14 Day)"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "0.0"], + ["dimension", "time", "", "double", "nValues=2496, evenlySpaced=false, averageSpacing=1 day 0h 6m 56s"], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "1.3775616E9, 1.5941664E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Centered Time"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["dimension", "altitude", "", "double", "nValues=1, onlyValue=0.0"], + ["attribute", "altitude", "_CoordinateAxisType", "String", "Height"], + ["attribute", "altitude", "_CoordinateZisPositive", "String", "up"], + ["attribute", "altitude", "actual_range", "double", "0.0, 0.0"], + ["attribute", "altitude", "axis", "String", "Z"], + ["attribute", "altitude", "ioos_category", "String", "Location"], + ["attribute", "altitude", "long_name", "String", "Altitude"], + ["attribute", "altitude", "positive", "String", "up"], + ["attribute", "altitude", "standard_name", "String", "altitude"], + ["attribute", "altitude", "units", "String", "m"], + ["dimension", "latitude", "", "double", "nValues=601, evenlySpaced=true, averageSpacing=0.25"], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "double", "-75.0, 75.0"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "coordsys", "String", "geographic"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "point_spacing", "String", "even"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["dimension", "longitude", "", "double", "nValues=1441, evenlySpaced=true, averageSpacing=0.25"], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "double", "0.0, 360.0"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "coordsys", "String", "geographic"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "point_spacing", "String", "even"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "u_current", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "u_current", "_FillValue", "float", "-99999.0"], + ["attribute", "u_current", "colorBarMaximum", "double", "4.0"], + ["attribute", "u_current", "colorBarMinimum", "double", "-4.0"], + ["attribute", "u_current", "coordsys", "String", "geographic"], + ["attribute", "u_current", "ioos_category", "String", "Currents"], + ["attribute", "u_current", "long_name", "String", "Zonal Wind Diffusivity Current"], + ["attribute", "u_current", "missing_value", "float", "-99999.0"], + ["attribute", "u_current", "units", "String", "m s-1"], + ["variable", "v_current", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "v_current", "_FillValue", "float", "-99999.0"], + ["attribute", "v_current", "colorBarMaximum", "double", "4.0"], + ["attribute", "v_current", "colorBarMinimum", "double", "-4.0"], + ["attribute", "v_current", "coordsys", "String", "geographic"], + ["attribute", "v_current", "ioos_category", "String", "Currents"], + ["attribute", "v_current", "long_name", "String", "Meridional Wind Diffusivity Current"], + ["attribute", "v_current", "missing_value", "float", "-99999.0"], + ["attribute", "v_current", "units", "String", "m s-1"], + ["variable", "mod_current", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "mod_current", "_FillValue", "float", "-99999.0"], + ["attribute", "mod_current", "colorBarMaximum", "double", "0.05"], + ["attribute", "mod_current", "colorBarMinimum", "double", "0.0"], + ["attribute", "mod_current", "colorBarPalette", "String", "WhiteRedBlack"], + ["attribute", "mod_current", "coordsys", "String", "geographic"], + ["attribute", "mod_current", "ioos_category", "String", "Currents"], + ["attribute", "mod_current", "long_name", "String", "Modulus of Wind Diffusivity Current"], + ["attribute", "mod_current", "missing_value", "float", "-99999.0"], + ["attribute", "mod_current", "units", "String", "m s-1"] + ] + } + } + recorded_at: 2020-07-15 22:17:31 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:17:44 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:17:44 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://upwell.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012.graph", "", "", "public", "AIS Ship Traffic: Hawaii: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_hi_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_hi_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_hi_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_hi_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_hi_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_hi_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012.graph", "", "", "public", "AIS Ship Traffic: Johnston Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Johnston Atoll. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_john_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_john_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_john_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_john_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_john_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_john_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012.graph", "", "", "public", "AIS Ship Traffic: Mariana and Wake: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Mariana Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_mari_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_mari_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_mari_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_mari_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_mari_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_mari_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012.graph", "", "", "public", "AIS Ship Traffic: Rose Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Rose Atoll in American Samoa. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_rose_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_rose_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_rose_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_rose_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_rose_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_rose_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom for the most recent 7 days.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_temp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_temp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_temp/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_temp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_temp&showErrors=false&email=", "University of Hawaii", "aco_adcp_temp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Velocity", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean current velocity at the ACO from a 250 kHz SonTek acoustic doppler current profiler (ADCP) at 1.83 m above the ocean bottom for the most recent 7 days. Velocities are flagged bad if the amplitude is excessively low or high. An amplitude is high if it exceeds the average of the ping before and the ping after by 20 counts. An amplitude is low if less than 6 counts. After this the velocities are flagged bad if the absolute deviation of the vertical velocity from its ensemble median exceeds 0.15 m/s or if its value is less than -0.25 m/s.\n\ncdm_data_type = Profile\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each location, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\neastward_sea_water_velocity (current east component, meters/second)\nnorthward_sea_water_velocity (current north component, meters/second)\nupward_sea_water_velocity (current upward component, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_vel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_vel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_vel/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_vel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_vel&showErrors=false&email=", "University of Hawaii", "aco_adcp_vel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://upwell.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF.graph", "", "", "public", "CRRF Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-CRRF: CRRF Weather Station: Palau: Koror: Ngeanges Island)\nair_temperature (Celsius)\nair_temperature_max (maximum air temperature, Celsius)\nair_temperature_max_time (maximum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (minimum air temperature, Celsius)\nair_temperature_min_time (minimum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_std (air temperature standard deviation, Celsius)\nwind_speed (m/s)\nwind_speed_max (gust speed, m/s)\nwind_speed_max_time (gust speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (minimum wind speed, m/s)\nwind_speed_min_time (minimum wind speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_std (wind speed standard deviation, m/s)\nwind_from_direction (wind direction, degrees)\nwind_from_direction_std (wind direction standard deviation, degrees)\nrainfall_amount (total rainfall, mm)\n... (23 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-CRRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-CRRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-CRRF/index.json", "https://www.pacioos.hawaii.edu/weather/obs-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-CRRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-CRRF&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "AWS-CRRF"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_1000genomes/", "public", "File Names from the AWS S3 1000genomes Bucket: 1000 Genomes", "This dataset has file information from the AWS S3 1000genomes bucket at https://1000genomes.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 1000 Genomes\nName2: http://www.internationalgenome.org/formats\nDescription: The 1000 Genomes Project is an international collaboration which has established the most detailed catalogue of human genetic variation, including SNPs, structural variants, and their haplotype context. The final phase of the project sequenced more than 2500 individuals from 26 different populations around the world and produced an integrated set of phased haplotypes with more than 80 million variants for these individuals.\n\nDocumentation: https://docs.opendata.aws/1000genomes/readme.html\nContact: http://www.internationalgenome.org/contact\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_1000genomes/index.json", "https://registry.opendata.aws/1000-genomes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_1000genomes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_1000genomes&showErrors=false&email=", "Amazon Web Services", "awsS3Files_1000genomes"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_3kricegenome/", "public", "File Names from the AWS S3 3kricegenome Bucket: 3000 Rice Genomes Project", "This dataset has file information from the AWS S3 3kricegenome bucket at https://3kricegenome.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 3000 Rice Genomes Project\nName2: http://s3.amazonaws.com/3kricegenome/README-snp_pipeline.txt\nDescription: The 3000 Rice Genome Project is an international effort to sequence the genomes of 3,024 rice varieties from 89 countries.\n\nDocumentation: https://docs.opendata.aws/3kricegenome/readme.html\nContact: http://iric.irri.org/contact-us\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_3kricegenome/index.json", "https://registry.opendata.aws/3kricegenome/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_3kricegenome.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_3kricegenome&showErrors=false&email=", "Amazon Web Services", "awsS3Files_3kricegenome"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aft_vbi_pds/", "public", "File Names from the AWS S3 aft-vbi-pds Bucket: Amazon Bin Image Dataset: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.", "This dataset has file information from the AWS S3 aft-vbi-pds bucket at https://aft-vbi-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Bin Image Dataset\nName2: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.\nDescription: The Amazon Bin Image Dataset contains over 500,000 images and metadata from bins of a pod in an operating Amazon Fulfillment Center. The bin images in this dataset are captured as robot units carry pods as part of normal Amazon Fulfillment Center operations.\n\nDocumentation: https://docs.opendata.aws/aft-vbi-pds/readme.html\nContact: amazon-bin-images@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aft_vbi_pds/index.json", "https://registry.opendata.aws/amazon-bin-imagery/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aft_vbi_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aft_vbi_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aft_vbi_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory/", "public", "File Names from the AWS S3 allen-brain-observatory Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: Project data files in a public bucket", "This dataset has file information from the AWS S3 allen-brain-observatory bucket at https://allen-brain-observatory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: Project data files in a public bucket\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory_templates/", "public", "File Names from the AWS S3 allen-brain-observatory-templates Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: SageMaker launch template with s3fs bucket mounts", "This dataset has file information from the AWS S3 allen-brain-observatory-templates bucket at https://allen-brain-observatory-templates.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: SageMaker launch template with s3fs bucket mounts\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory_templates/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory_templates.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory_templates&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory_templates"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_amazon_reviews_pds/", "public", "File Names from the AWS S3 amazon-reviews-pds Bucket: Amazon Customer Reviews Dataset: TSV files of reviews", "This dataset has file information from the AWS S3 amazon-reviews-pds bucket at https://amazon-reviews-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Customer Reviews Dataset\nName2: TSV files of reviews\nDescription: Amazon Customer Reviews (a.k.a. Product Reviews) is one of Amazon\u2019s iconic products. In a period of over two decades since the first review in 1995, millions of Amazon customers have contributed over a hundred million reviews to express opinions and describe their experiences regarding products on the Amazon.com website. Over 130+ million customer reviews are available to researchers as part of this dataset.\n\nDocumentation: https://s3.amazonaws.com/amazon-reviews-pds/readme.html\nContact: customer-review-dataset@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not defined\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_amazon_reviews_pds/index.json", "https://registry.opendata.aws/amazon-reviews/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_amazon_reviews_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_amazon_reviews_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_amazon_reviews_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_avg_kitti/", "public", "File Names from the AWS S3 avg-kitti Bucket: KITTI Vision Benchmark Suite", "This dataset has file information from the AWS S3 avg-kitti bucket at https://avg-kitti.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: KITTI Vision Benchmark Suite\nName2: http://www.cvlibs.net/datasets/kitti/raw_data.php\nDescription: Dataset and benchmarks for computer vision research in the context of autonomous driving. The dataset has been recorded in and around the city of Karlsruhe, Germany using the mobile platform AnnieWay (VW station wagon) which has been equipped with several RGB and monochrome cameras, a Velodyne HDL 64 laser scanner as well as an accurate RTK corrected GPS/IMU localization unit. The dataset has been created for computer vision and machine learning research on stereo, optical flow, visual odometry, semantic segmentation, semantic instance segmentation, road segmentation, single image depth prediction, depth map completion, 2D and 3D object detection and object tracking. In addition, several raw data recordings are provided. The datasets are captured by driving around the mid-size city of Karlsruhe, in rural areas and on highways. Up to 15 cars and 30 pedestrians are visible per image.\n\nDocumentation: http://www.cvlibs.net/datasets/kitti/\nContact: http://www.cvlibs.net/people.php\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_avg_kitti/index.json", "https://registry.opendata.aws/kitti/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_avg_kitti.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_avg_kitti&showErrors=false&email=", "Amazon Web Services", "awsS3Files_avg_kitti"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/", "public", "File Names from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd Bucket: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)", "This dataset has file information from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd bucket at https://aws-earth-mo-atmospheric-mogreps-g-prd.s3.eu-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts\nName2: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)\nDescription: Meteorological data reusers now have an exciting opportunity to sample, experiment and evaluate Met Office atmospheric model data, whilst also experiencing a transformative method of requesting data via Restful APIs on AWS. All ahead of Met Office\u2019s own operationally supported API platform that will be launched in late 2019.\n\nDocumentation: https://github.com/MetOffice/aws-earth-examples\nContact: https://www.metoffice.gov.uk/about-us/contact\nUpdateFrequency: Daily (with 24 hour delay)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/index.json", "https://registry.opendata.aws/uk-met-office/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_gsod/", "public", "File Names from the AWS S3 aws-gsod Bucket: Global Surface Summary of Day: Measurements and metadata", "This dataset has file information from the AWS S3 aws-gsod bucket at https://aws-gsod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Surface Summary of Day\nName2: Measurements and metadata\nDescription: GSOD is a collection of daily weather measurements (temperature, wind speed, humidity, pressure, and more) from 9000+ weather stations around the world.\n\nDocumentation: https://www.ncdc.noaa.gov/\nContact: https://www.ncdc.noaa.gov/\nUpdateFrequency: Currently updated infrequently. Last updated on September 13, 2016.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_gsod/index.json", "https://registry.opendata.aws/noaa-gsod/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_gsod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_gsod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_gsod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_broad_references/", "public", "File Names from the AWS S3 broad-references Bucket: Broad Genome References: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.", "This dataset has file information from the AWS S3 broad-references bucket at https://broad-references.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Broad Genome References\nName2: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.\nDescription: Broad maintained human genome reference builds hg19/hg38 and decoy references.\n\nDocumentation: https://s3.amazonaws.com/broad-references/broad-references-readme.html\nContact: hensonc@broadinstitute.org\nManagedBy: Broad Institute\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_broad_references/index.json", "https://registry.opendata.aws/broad-references/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_broad_references.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_broad_references&showErrors=false&email=", "Amazon Web Services", "awsS3Files_broad_references"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cbers_meta_pds/", "public", "File Names from the AWS S3 cbers-meta-pds Bucket: CBERS on AWS: CBERS metadata (Quicklooks, metadata)", "This dataset has file information from the AWS S3 cbers-meta-pds bucket at https://cbers-meta-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CBERS on AWS\nName2: CBERS metadata (Quicklooks, metadata)\nDescription: This project creates a S3 repository with imagery acquired by the China-Brazil Earth Resources Satellite (CBERS). The image files are recorded and processed by Instituto Nacional de Pesquisa Espaciais (INPE) and are converted to Cloud Optimized Geotiff format in order to optimize its use for cloud based applications. The repository contains all CBERS-4 MUX, AWFI, PAN5M and PAN10M scenes acquired since the start of the satellite mission and is daily updated with new scenes.\n\nDocumentation: https://github.com/fredliporace/cbers-on-aws\nContact: https://lists.osgeo.org/mailman/listinfo/cbers-pds\nManagedBy: [AMS Kepler](https://amskepler.com/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cbers_meta_pds/index.json", "https://registry.opendata.aws/cbers/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cbers_meta_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cbers_meta_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cbers_meta_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cgiardata/", "public", "File Names from the AWS S3 cgiardata Bucket: CCAFS-Climate Data: ARC GRID, and ARC ASCII format compressed", "This dataset has file information from the AWS S3 cgiardata bucket at https://cgiardata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CCAFS-Climate Data\nName2: ARC GRID, and ARC ASCII format compressed\nDescription: High resolution climate data to help assess the impacts of climate change primarily on agriculture. These open access datasets of climate projections will help researchers make climate change impact assessments.\n\nDocumentation: http://www.ccafs-climate.org\nContact: http://www.ccafs-climate.org/contact/\nUpdateFrequency: Every three months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cgiardata/index.json", "https://registry.opendata.aws/cgiardata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cgiardata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cgiardata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cgiardata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_commoncrawl/", "public", "File Names from the AWS S3 commoncrawl Bucket: Common Crawl: Crawl data (WARC and ARC format)", "This dataset has file information from the AWS S3 commoncrawl bucket at https://commoncrawl.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Common Crawl\nName2: Crawl data (WARC and ARC format)\nDescription: A corpus of web crawl data composed of over 25 billion web pages.\n\nDocumentation: http://commoncrawl.org/the-data/get-started/\nContact: http://commoncrawl.org/connect/contact-us/\nManagedBy: [Common Crawl](http://commoncrawl.org/)\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_commoncrawl/index.json", "https://registry.opendata.aws/commoncrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_commoncrawl.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_commoncrawl&showErrors=false&email=", "Amazon Web Services", "awsS3Files_commoncrawl"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cornell_eas_data_lake/", "public", "File Names from the AWS S3 cornell-eas-data-lake Bucket: Cornell EAS Data Lake: Cornell EAS Data Lake", "This dataset has file information from the AWS S3 cornell-eas-data-lake bucket at https://cornell-eas-data-lake.s3.us-east-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cornell EAS Data Lake\nName2: Cornell EAS Data Lake\nDescription: Earth & Atmospheric Sciences at Cornell University has created a public data lake of climate data. The data is stored in columnar storage formats (ORC) to make it straightforward to query using standard tools like Amazon Athena or Apache Spark. The data itself is originally intended to be used for building decision support tools for farmers and digital agriculture. The first dataset is the historical NDFD / NDGD data distributed by NCEP / NOAA / NWS. The NDFD (National Digital Forecast Database) and NDGD (National Digital Guidance Database) contain gridded forecasts and observations at 2.5km resolution for the Contiguous United States (CONUS). There are also 5km grids for several smaller US regions and non-continguous territories, such as Hawaii, Guam, Puerto Rico and Alaska. NOAA distributes archives of the NDFD/NDGD via its NOAA Operational Model Archive and Distribution System (NOMADS) in Grib2 format. The data has been converted to ORC to optimize storage space and to, more importantly, simplify data access via standard data analytics tools.\n\nDocumentation: https://datalake.eas.cornell.edu/\nContact: digitalag@cornell.edu\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cornell_eas_data_lake/index.json", "https://registry.opendata.aws/cornell-eas-data-lake/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cornell_eas_data_lake.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cornell_eas_data_lake&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cornell_eas_data_lake"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cse_cic_ids2018/", "public", "File Names from the AWS S3 cse-cic-ids2018 Bucket: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018): Network traffic and log files", "This dataset has file information from the AWS S3 cse-cic-ids2018 bucket at https://cse-cic-ids2018.s3.ca-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018)\nName2: Network traffic and log files\nDescription: This dataset is the result of a collaborative project between the Communications Security Establishment (CSE) and The Canadian Institute for Cybersecurity (CIC) that use the notion of profiles to generate cybersecurity dataset in a systematic manner. It incluides a detailed description of intrusions along with abstract distribution models for applications, protocols, or lower level network entities. The dataset includes seven different attack scenarios, namely Brute-force, Heartbleed, Botnet, DoS, DDoS, Web attacks, and infiltration of the network from inside. The attacking infrastructure includes 50 machines and the victim organization has 5 departments includes 420 PCs and 30 servers. This dataset includes the network traffic and log files of each machine from the victim side, along with 80 network traffic features extracted from captured traffic using CICFlowMeter-V3. For more information on the creation of this dataset, see this paper by researchers at the Canadian Institute for Cybersecurity (CIC) and the University of New Brunswick (UNB): [Toward Generating a New Intrusion Detection Dataset and Intrusion Traffic Characterization](http://www.scitepress.org/Papers/2018/66398/66398.pdf).\n\nDocumentation: http://www.unb.ca/cic/datasets/ids-2018.html\nContact: CIC@unb.ca\nUpdateFrequency: Annualy\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cse_cic_ids2018/index.json", "https://registry.opendata.aws/cse-cic-ids2018/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cse_cic_ids2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cse_cic_ids2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cse_cic_ids2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cytodata/", "public", "File Names from the AWS S3 cytodata Bucket: Cell Painting Image Collection: Images, extracted features and aggregated profiles are available as a S3 bucket", "This dataset has file information from the AWS S3 cytodata bucket at https://cytodata.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cell Painting Image Collection\nName2: Images, extracted features and aggregated profiles are available as a S3 bucket\nDescription: The Cell Painting Image Collection is a collection of freely downloadable microscopy image sets. Cell Painting is an unbiased high throughput imaging assay used to analyze perturbations in cell models. In addition to the images themselves, each set includes a description of the biological application and some type of \"ground truth\" (expected results). Researchers are encouraged to use these image sets as reference points when developing, testing, and publishing new image analysis algorithms for the life sciences. We hope that the this data set will lead to a better understanding of which methods are best for various biological image analysis applications.\n\nDocumentation: https://github.com/cytodata/cytodata-hackathon-2018\nContact: Post on https://forum.image.sc/ and tag with \"cellpainting\"\nUpdateFrequency: irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cytodata/index.json", "https://registry.opendata.aws/cell-painting-image-collection/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cytodata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cytodata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cytodata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_czb_tabula_muris/", "public", "File Names from the AWS S3 czb-tabula-muris Bucket: Tabula Muris", "This dataset has file information from the AWS S3 czb-tabula-muris bucket at https://czb-tabula-muris.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Tabula Muris\nName2: https://github.com/czbiohub/tabula-muris\nDescription: Tabula Muris is a compendium of single cell transcriptomic data from the model organism *Mus musculus* comprising more than 100,000 cells from 20 organs and tissues. These data represent a new resource for cell biology, reveal gene expression in poorly characterized cell populations, and allow for direct and controlled comparison of gene expression in cell types shared between tissues, such as T-lymphocytes and endothelial cells from different anatomical locations. Two distinct technical approaches were used for most organs: one approach, microfluidic droplet-based 3\u2019-end counting, enabled the survey of thousands of cells at relatively low coverage, while the other, FACS-based full length transcript analysis, enabled characterization of cell types with high sensitivity and coverage. The cumulative data provide the foundation for an atlas of transcriptomic cell biology. See: https://www.nature.com/articles/s41586-018-0590-4\n\nDocumentation: https://github.com/czbiohub/tabula-muris/blob/master/tabula-muris-on-aws.md\nContact: If you have questions about the data, you can create an Issue at https://github.com/czbiohub/tabula-muris.\nManagedBy: [Chan Zuckerberg Biohub](https://www.czbiohub.org/)\nUpdateFrequency: This is the final version of the dataset, it will not be updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_czb_tabula_muris/index.json", "https://registry.opendata.aws/tabula-muris/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_czb_tabula_muris.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_czb_tabula_muris&showErrors=false&email=", "Amazon Web Services", "awsS3Files_czb_tabula_muris"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataforgood_fb_data/", "public", "File Names from the AWS S3 dataforgood-fb-data Bucket: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook: CSV and Cloud-optimized GeoTIFF files", "This dataset has file information from the AWS S3 dataforgood-fb-data bucket at https://dataforgood-fb-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook\nName2: CSV and Cloud-optimized GeoTIFF files\nDescription: Population data for a selection of countries, allocated to 1 arcsecond blocks and provided in a combination of CSV and Cloud-optimized GeoTIFF files. This refines [CIESIN\u2019s Gridded Population of the World](https://sedac.ciesin.columbia.edu/data/collection/gpw-v4) using machine learning models on high-resolution worldwide Digital Globe satellite imagery. CIESIN population counts aggregated from worldwide census data are allocated to blocks where imagery appears to contain buildings.\n\nDocumentation: [Project overview](https://dataforgood.fb.com/population-density-maps-documentation/) and [dataset description](https://docs.opendata.aws/dataforgood-fb-data/readme.html)\nContact: disastermaps@fb.com\nManagedBy: |\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataforgood_fb_data/index.json", "https://registry.opendata.aws/dataforgood-fb-hrsl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataforgood_fb_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataforgood_fb_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataforgood_fb_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_datasets_elasticmapreduce_ngrams_books/", "public", "File Names from the AWS S3 datasets.elasticmapreduce Bucket with prefix=ngrams/books/: Google Books Ngrams: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.", "This dataset has file information from the AWS S3 datasets.elasticmapreduce bucket at https://datasets.elasticmapreduce.s3.us-east-1.amazonaws.com/ with prefix=ngrams/books/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Google Books Ngrams\nName2: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.\nDescription: N-grams are fixed size tuples of items. In this case the items are words extracted from the Google Books corpus. The n specifies the number of elements in the tuple, so a 5-gram contains five words or characters. The n-grams in this dataset were produced by passing a sliding window of the text of books and outputting a record for each new token.\n\nDocumentation: http://books.google.com/ngrams/\nContact: https://books.google.com/ngrams\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_datasets_elasticmapreduce_ngrams_books/index.json", "https://registry.opendata.aws/google-ngrams/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_datasets_elasticmapreduce_ngrams_books.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_datasets_elasticmapreduce_ngrams_books&showErrors=false&email=", "Amazon Web Services", "awsS3Files_datasets_elasticmapreduce_ngrams_books"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataworld_linked_acs/", "public", "File Names from the AWS S3 dataworld-linked-acs Bucket: U.S. Census ACS PUMS: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.", "This dataset has file information from the AWS S3 dataworld-linked-acs bucket at https://dataworld-linked-acs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: U.S. Census ACS PUMS\nName2: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.\nDescription: U.S. Census Bureau American Community Survey (ACS) Public Use Microdata Sample (PUMS) available in a linked data format using the Resource Description Framework (RDF) data model.\n\nDocumentation: https://docs.data.world/uscensus/#american-community-survey-linked-open-data\nContact: https://docs.data.world/uscensus/#60---contact\nUpdateFrequency: Yearly, after ACS 1-year PUMS raw data are released\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataworld_linked_acs/index.json", "https://registry.opendata.aws/census-dataworld-pums/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataworld_linked_acs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataworld_linked_acs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataworld_linked_acs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2015/", "public", "File Names from the AWS S3 dc-lidar-2015 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML, SHP", "This dataset has file information from the AWS S3 dc-lidar-2015 bucket at https://dc-lidar-2015.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML, SHP\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2015/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2015.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2015&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2015"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2018/", "public", "File Names from the AWS S3 dc-lidar-2018 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML", "This dataset has file information from the AWS S3 dc-lidar-2018 bucket at https://dc-lidar-2018.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2018/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_eurex_pds/", "public", "File Names from the AWS S3 deutsche-boerse-eurex-pds Bucket: Deutsche B\u00f6rse Public Dataset: Eurex PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-eurex-pds bucket at https://deutsche-boerse-eurex-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Eurex PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_eurex_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_eurex_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_eurex_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_eurex_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_xetra_pds/", "public", "File Names from the AWS S3 deutsche-boerse-xetra-pds Bucket: Deutsche B\u00f6rse Public Dataset: Xetra PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-xetra-pds bucket at https://deutsche-boerse-xetra-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Xetra PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_xetra_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_xetra_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_xetra_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_xetra_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ebirdst_data/", "public", "File Names from the AWS S3 ebirdst-data Bucket: eBird Status and Trends Model Results: Species results files", "This dataset has file information from the AWS S3 ebirdst-data bucket at https://ebirdst-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: eBird Status and Trends Model Results\nName2: Species results files\nDescription: The eBird Status and Trends project generates estimates of bird occurrence and abundance at a high spatiotemporal resolution. This dataset represents the primary modeled results from the analysis workflow and are designed for further analysis, synthesis, visualization, and exploration.\n\nDocumentation: https://cornelllabofornithology.github.io/ebirdst/articles/ebirdst-introduction.html\nContact: https://help.ebird.org/customer/en/portal/emails/new\nManagedBy: [Cornell Lab of Ornithology](https://www.birds.cornell.edu/home/)\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ebirdst_data/index.json", "https://registry.opendata.aws/ebirdst/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ebirdst_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ebirdst_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ebirdst_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_elevation_tiles_prod/", "public", "File Names from the AWS S3 elevation-tiles-prod Bucket: Terrain Tiles: Gridded elevation tiles", "This dataset has file information from the AWS S3 elevation-tiles-prod bucket at https://elevation-tiles-prod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Terrain Tiles\nName2: Gridded elevation tiles\nDescription: A global dataset providing bare-earth terrain heights, tiled for easy usage and provided on S3.\n\nDocumentation: https://mapzen.com/documentation/terrain-tiles/\nContact: https://github.com/tilezen/joerd/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_elevation_tiles_prod/index.json", "https://registry.opendata.aws/terrain-tiles/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_elevation_tiles_prod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_elevation_tiles_prod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_elevation_tiles_prod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_encode_public/", "public", "File Names from the AWS S3 encode-public Bucket: Encyclopedia of DNA Elements (ENCODE): Released and archived ENCODE data", "This dataset has file information from the AWS S3 encode-public bucket at https://encode-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Encyclopedia of DNA Elements (ENCODE)\nName2: Released and archived ENCODE data\nDescription: The Encyclopedia of DNA Elements (ENCODE) Consortium is an international collaboration of research groups funded by the National Human Genome Research Institute (NHGRI). The goal of ENCODE is to build a comprehensive parts list of functional elements in the human genome, including elements that act at the protein and RNA levels, and regulatory elements that control cells and circumstances in which a gene is active. ENCODE investigators employ a variety of assays and methods to identify functional elements. The discovery and annotation of gene elements is accomplished primarily by sequencing a diverse range of RNA sources, comparative genomics, integrative bioinformatic methods, and human curation. Regulatory elements are typically investigated through DNA hypersensitivity assays, assays of DNA methylation, and immunoprecipitation (IP) of proteins that interact with DNA and RNA, i.e., modified histones, transcription factors, chromatin regulators, and RNA-binding proteins, followed by sequencing.\n\nDocumentation: https://www.encodeproject.org\nContact: encode-help@lists.stanford.edu\nManagedBy: ENCODE Data Coordinating Center\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_encode_public/index.json", "https://registry.opendata.aws/encode-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_encode_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_encode_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_encode_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_epa_rsei_pds/", "public", "File Names from the AWS S3 epa-rsei-pds Bucket: EPA Risk-Screening Environmental Indicators: RSEI Microdata", "This dataset has file information from the AWS S3 epa-rsei-pds bucket at https://epa-rsei-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: EPA Risk-Screening Environmental Indicators\nName2: RSEI Microdata\nDescription: Detailed air model results from EPA\u2019s Risk-Screening Environmental Indicators (RSEI) model.\n\nDocumentation: https://docs.opendata.aws/epa-rsei-pds/readme.html\nContact: https://www.epa.gov/rsei/forms/contact-us-about-rsei-model\nUpdateFrequency: Updated infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_epa_rsei_pds/index.json", "https://registry.opendata.aws/epa-rsei-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_epa_rsei_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_epa_rsei_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_epa_rsei_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_era5_pds/", "public", "File Names from the AWS S3 era5-pds Bucket: ECMWF ERA5 Reanalysis: ERA5 Reanalysis NetCDF 4 files", "This dataset has file information from the AWS S3 era5-pds bucket at https://era5-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ECMWF ERA5 Reanalysis\nName2: ERA5 Reanalysis NetCDF 4 files\nDescription: ERA5 is the fifth generation of ECMWF atmospheric reanalyses of the global climate, and the first reanalysis produced as an operational service. It utilizes the best available observation data from satellites and in-situ stations, which are assimilated and processed using ECMWF's Integrated Forecast System (IFS) Cycle 41r2. The dataset provides all essential atmospheric meteorological parameters like, but not limited to, air temperature, pressure and wind at different altitudes, along with surface parameters like rainfall, soil moisture content and sea parameters like sea-surface temperature and wave height. ERA5 provides data at a considerably higher spatial and temporal resolution than its legacy counterpart ERA-Interim. ERA5 consists of high resolution version with 31 km horizontal resolution, and a reduced resolution ensemble version with 10 members. It is currently available since 2008, but will be continuously extended backwards, first until 1979 and then to 1950. Learn more about ERA5 in Jon Olauson's paper [ERA5: The new champion of wind power modelling?](https://www.researchgate.net/publication/320084119_ERA5_The_new_champion_of_wind_power_modelling).\n\nDocumentation: https://github.com/planet-os/notebooks/blob/master/aws/era5-pds.md\nContact: datahub@intertrust.com\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_era5_pds/index.json", "https://registry.opendata.aws/ecmwf-era5/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_era5_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_era5_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_era5_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_coco/", "public", "File Names from the AWS S3 fast-ai-coco Bucket: COCO - Common Objects in Context - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-coco bucket at https://fast-ai-coco.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: COCO - Common Objects in Context - fast.ai datasets\nName2: Datasets\nDescription: COCO is a large-scale object detection, segmentation, and captioning dataset. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. If you use this dataset in your research please cite arXiv:1405.0312 [cs.CV].\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_coco/index.json", "https://registry.opendata.aws/fast-ai-coco/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_coco.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_coco&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_coco"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imageclas/", "public", "File Names from the AWS S3 fast-ai-imageclas Bucket: Image classification - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imageclas bucket at https://fast-ai-imageclas.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image classification - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image classification research, including CIFAR 10 and 100, Caltech 101, MNIST, Food-101, Oxford-102-Flowers, Oxford-IIIT-Pets, and Stanford-Cars. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imageclas/index.json", "https://registry.opendata.aws/fast-ai-imageclas/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imageclas.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imageclas&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imageclas"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imagelocal/", "public", "File Names from the AWS S3 fast-ai-imagelocal Bucket: Image localization - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imagelocal bucket at https://fast-ai-imagelocal.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image localization - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image localization research, including Camvid and PASCAL VOC (2007 and 2012). This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imagelocal/index.json", "https://registry.opendata.aws/fast-ai-imagelocal/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imagelocal.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imagelocal&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imagelocal"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_nlp/", "public", "File Names from the AWS S3 fast-ai-nlp Bucket: NLP - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-nlp bucket at https://fast-ai-nlp.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NLP - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for NLP, with a focus on classification, including IMDb, AG-News, Amazon Reviews (polarity and full), Yelp Reviews (polarity and full), Dbpedia, Sogou News (Pinyin), Yahoo Answers, Wikitext 2 and Wikitext 103, and ACL-2010 French-English 10^9 corpus. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_nlp/index.json", "https://registry.opendata.aws/fast-ai-nlp/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_nlp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_nlp&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_nlp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib Bucket: HIRLAM Weather Model: Pressure GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib bucket at https://fmi-opendata-rcrhirlam-pressure-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Pressure GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_pressure_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_pressure_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-surface-grib Bucket: HIRLAM Weather Model: Surface GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-surface-grib bucket at https://fmi-opendata-rcrhirlam-surface-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Surface GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_surface_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_surface_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gatk_test_data/", "public", "File Names from the AWS S3 gatk-test-data Bucket: GATK Test Data: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.", "This dataset has file information from the AWS S3 gatk-test-data bucket at https://gatk-test-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GATK Test Data\nName2: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.\nDescription: The GATK test data resource bundle is a collection of files for resequencing human genomic data with the Broad Institute's [Genome Analysis Toolkit (GATK)](https://software.broadinstitute.org/gatk/).\n\nDocumentation: https://s3.amazonaws.com/gatk-test-data/gatk-test-data-readme.html\nContact: https://gatkforums.broadinstitute.org/gatk\nManagedBy: Broad Institute\nUpdateFrequency: Every 3 months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gatk_test_data/index.json", "https://registry.opendata.aws/gatk-test-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gatk_test_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gatk_test_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gatk_test_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gdelt_open_data/", "public", "File Names from the AWS S3 gdelt-open-data Bucket: Global Database of Events, Language and Tone (GDELT): Project data files", "This dataset has file information from the AWS S3 gdelt-open-data bucket at https://gdelt-open-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Database of Events, Language and Tone (GDELT)\nName2: Project data files\nDescription: This project monitors the world's broadcast, print, and web news from nearly every corner of every country in over 100 languages and identifies the people, locations, organizations, counts, themes, sources, emotions, quotes, images and events driving our global society every second of every day.\n\nDocumentation: http://www.gdeltproject.org/\nContact: http://www.gdeltproject.org/about.html#contact\nUpdateFrequency: Not currently being updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gdelt_open_data/index.json", "https://registry.opendata.aws/gdelt/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gdelt_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gdelt_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gdelt_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_genomeark/", "public", "File Names from the AWS S3 genomeark Bucket: Genome Ark", "This dataset has file information from the AWS S3 genomeark bucket at https://genomeark.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome Ark\nName2: https://vgp.github.io\nDescription: The Genome Ark hosts genomic information for the Vertebrate Genomes Project (VGP) and other related projects. The VGP is an international collaboration that aims to generate complete and near error-free reference genomes for all extant vertebrate species. These genomes will be used to address fundamental questions in biology and disease, to identify species most genetically at risk for extinction, and to preserve genetic information of life.\n\nDocumentation: https://vertebrategenomesproject.org\nContact: Erich Jarvis \nManagedBy: The Genome10K community of scientists\nUpdateFrequency: Data will be continually updated as it is generated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_genomeark/index.json", "https://registry.opendata.aws/genomeark/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_genomeark.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_genomeark&showErrors=false&email=", "Amazon Web Services", "awsS3Files_genomeark"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_giab/", "public", "File Names from the AWS S3 giab Bucket: Genome in a Bottle on AWS: Latest data", "This dataset has file information from the AWS S3 giab bucket at https://giab.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome in a Bottle on AWS\nName2: Latest data\nDescription: Several reference genomes to enable translation of whole human genome sequencing to clinical practice.\n\nDocumentation: https://docs.opendata.aws/giab/readme.html\nContact: http://genomeinabottle.org/\nUpdateFrequency: New data are added as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_giab/index.json", "https://registry.opendata.aws/giab/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_giab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_giab&showErrors=false&email=", "Amazon Web Services", "awsS3Files_giab"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gmsdata/", "public", "File Names from the AWS S3 gmsdata Bucket: The Genome Modeling System", "This dataset has file information from the AWS S3 gmsdata bucket at https://gmsdata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Genome Modeling System\nName2: https://gmsdata.s3.amazonaws.com/INDEX.html\nDescription: The Genome Institute at Washington University has developed a high-throughput, fault-tolerant analysis information management system called the Genome Modeling System (GMS), capable of executing complex, interdependent, and automated genome analysis pipelines at a massive scale. The GMS framework provides detailed tracking of samples and data coupled with reliable and repeatable analysis pipelines. GMS includes a full system image with software and services, expandable from one workstation to a large compute cluster.\n\nDocumentation: https://github.com/genome/gms/wiki\nContact: https://github.com/genome/gms/issues\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gmsdata/index.json", "https://registry.opendata.aws/gmsdata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gmsdata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gmsdata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gmsdata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_grillo_openeew/", "public", "File Names from the AWS S3 grillo-openeew Bucket: OpenEEW: OpenEEW", "This dataset has file information from the AWS S3 grillo-openeew bucket at https://grillo-openeew.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenEEW\nName2: OpenEEW\nDescription: Grillo has developed an IoT-based earthquake early-warning system in Mexico and Chile and is now opening its entire archive of unprocessed accelerometer data to the world to encourage the development of new algorithms capable of rapidly detecting and characterizing earthquakes in real time.\n\nDocumentation: https://github.com/grillo/openeew\nContact: openeew@grillo.io\nManagedBy: [Grillo](https://grillo.io/)\nUpdateFrequency: Approximately every 10 minutes\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_grillo_openeew/index.json", "https://registry.opendata.aws/grillo-openeew/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_grillo_openeew.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_grillo_openeew&showErrors=false&email=", "Amazon Web Services", "awsS3Files_grillo_openeew"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_microbiome_project/", "public", "File Names from the AWS S3 human-microbiome-project Bucket: The Human Microbiome Project", "This dataset has file information from the AWS S3 human-microbiome-project bucket at https://human-microbiome-project.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Human Microbiome Project\nName2: https://aws.amazon.com/datasets/human-microbiome-project/\nDescription: The NIH-funded Human Microbiome Project (HMP) is a collaborative effort of over 300 scientists from more than 80 organizations to comprehensively characterize the microbial communities inhabiting the human body and elucidate their role in human health and disease. To accomplish this task, microbial community samples were isolated from a cohort of 300 healthy adult human subjects at 18 specific sites within five regions of the body (oral cavity, airways, urogenital track, skin, and gut). Targeted sequencing of the 16S bacterial marker gene and/or whole metagenome shotgun sequencing was performed for thousands of these samples. In addition, whole genome sequences were generated for isolate strains collected from human body sites to act as reference organisms for analysis. Finally, 16S marker and whole metagenome sequencing was also done on additional samples from people suffering from several disease conditions.\n\nDocumentation: https://commonfund.nih.gov/hmp\nContact: https://commonfund.nih.gov/hmp/related_activities\nUpdateFrequency: Uncertain\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_microbiome_project/index.json", "https://registry.opendata.aws/human-microbiome-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_microbiome_project.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_microbiome_project&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_microbiome_project"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_pangenomics/", "public", "File Names from the AWS S3 human-pangenomics Bucket: Human PanGenomics Project: Human PanGenomics Project", "This dataset has file information from the AWS S3 human-pangenomics bucket at https://human-pangenomics.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Human PanGenomics Project\nName2: Human PanGenomics Project\nDescription: This dataset includes sequencing data, assemblies, and analyses for the offspring of ten parent-offspring trios.\n\nDocumentation: https://github.com/human-pangenomics/hpgp-data\nContact: https://github.com/human-pangenomics/hpgp-data/issues\nUpdateFrequency: Data will be added and updated as technologies improve or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_pangenomics/index.json", "https://registry.opendata.aws/hpgp-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_pangenomics.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_pangenomics&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_pangenomics"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/", "public", "File Names from the AWS S3 ichangemycity-janaagraha-complaints-data-aws Bucket: IChangeMyCity Complaints Data from Janaagraha: IChangeMyCity Complaints", "This dataset has file information from the AWS S3 ichangemycity-janaagraha-complaints-data-aws bucket at https://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IChangeMyCity Complaints Data from Janaagraha\nName2: IChangeMyCity Complaints\nDescription: The [IChangeMyCity](https://www.ichangemycity.com) project provides insight into the complaints raised by citizens from diffent cities of India related to the issues in their neighbourhoods and the resolution of the same by the civic bodies.\n\nDocumentation: http://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/readme.html\nContact: data@janaagraha.org\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/index.json", "https://registry.opendata.aws/ichangemycity/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ichangemycity_janaagraha_complaints_data_aws&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ichangemycity_janaagraha_complaints_data_aws"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_irs_990_spreadsheets/", "public", "File Names from the AWS S3 irs-990-spreadsheets Bucket: IRS 990 Filings (Spreadsheets): Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form", "This dataset has file information from the AWS S3 irs-990-spreadsheets bucket at https://irs-990-spreadsheets.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IRS 990 Filings (Spreadsheets)\nName2: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form\nDescription: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form. Additional fields being added regularly.\n\nDocumentation: https://appliednonprofitresearch.com/documentation/irs-990-spreadsheets\nContact: [info@appliednonprofitresearch.com](info@appliednonprofitresearch.com)\nManagedBy: [Applied Nonprofit Research, LLC](https://www.appliednonprofitresearch.com/)\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_irs_990_spreadsheets/index.json", "https://registry.opendata.aws/990-spreadsheets/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_irs_990_spreadsheets.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_irs_990_spreadsheets&showErrors=false&email=", "Amazon Web Services", "awsS3Files_irs_990_spreadsheets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lab41openaudiocorpus/", "public", "File Names from the AWS S3 lab41openaudiocorpus Bucket: Voices Obscured in Complex Environmental Settings (VOiCES): wav audio files, orthographic transcriptions, and speaker ID", "This dataset has file information from the AWS S3 lab41openaudiocorpus bucket at https://lab41openaudiocorpus.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Voices Obscured in Complex Environmental Settings (VOiCES)\nName2: wav audio files, orthographic transcriptions, and speaker ID\nDescription: VOiCES is a speech corpus recorded in acoustically challenging settings, using distant microphone recording. Speech was recorded in real rooms with various acoustic features (reverb, echo, HVAC systems, outside noise, etc.). Adversarial noise, either television, music, or babble, was concurrently played with clean speech. Data was recorded using multiple microphones strategically placed throughout the room. The corpus includes audio recordings, orthographic transcriptions, and speaker labels.\n\nDocumentation: https://voices18.github.io/\nContact: https://github.com/voices18/utilities/issues\nUpdateFrequency: Data from two additional rooms will be added to the corpus Fall 2018.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lab41openaudiocorpus/index.json", "https://registry.opendata.aws/lab41-sri-voices/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lab41openaudiocorpus.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lab41openaudiocorpus&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lab41openaudiocorpus"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds/", "public", "File Names from the AWS S3 landsat-pds Bucket: Landsat 8: Scenes and metadata", "This dataset has file information from the AWS S3 landsat-pds bucket at https://landsat-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: Scenes and metadata\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds_inventory/", "public", "File Names from the AWS S3 landsat-pds-inventory Bucket: Landsat 8: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)", "This dataset has file information from the AWS S3 landsat-pds-inventory bucket at https://landsat-pds-inventory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds_inventory/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds_inventory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds_inventory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds_inventory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lofar_elais_n1/", "public", "File Names from the AWS S3 lofar-elais-n1 Bucket: LOFAR ELAIS-N1 cycle 2 observations on AWS: LOFAR ELAIS-N1 cycle 2 observations", "This dataset has file information from the AWS S3 lofar-elais-n1 bucket at https://lofar-elais-n1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: LOFAR ELAIS-N1 cycle 2 observations on AWS\nName2: LOFAR ELAIS-N1 cycle 2 observations\nDescription: These data correspond to the [International LOFAR Telescope](http://www.lofar.org/) observations of the sky field ELAIS-N1 (16:10:01 +54:30:36) during the cycle 2 of observations. There are 11 runs of about 8 hours each plus the corresponding observation of the calibration targets before and after the target field. The data are measurement sets ([MS](https://casa.nrao.edu/Memos/229.html)) containing the cross-correlated data and metadata divided in 371 frequency sub-bands per target centred at ~150 MHz.\n\nDocumentation: https://www.lofarcloud.uk/data.html\nContact: https://www.lofarcloud.uk/\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lofar_elais_n1/index.json", "https://registry.opendata.aws/lofar-elais-n1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lofar_elais_n1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lofar_elais_n1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lofar_elais_n1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mf_nwp_models/", "public", "File Names from the AWS S3 mf-nwp-models Bucket: Atmospheric Models from M\u00e9t\u00e9o-France: Atmospheric Models from M\u00e9t\u00e9o-France", "This dataset has file information from the AWS S3 mf-nwp-models bucket at https://mf-nwp-models.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Atmospheric Models from M\u00e9t\u00e9o-France\nName2: Atmospheric Models from M\u00e9t\u00e9o-France\nDescription: Global and high-resolution regional atmospheric models from M\u00e9t\u00e9o-France.\n\nDocumentation: https://mf-models-on-aws.org\nContact: contact@openmeteodata.com\nManagedBy: [OpenMeteoData](https://openmeteodata.com)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mf_nwp_models/index.json", "https://registry.opendata.aws/meteo-france-models/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mf_nwp_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mf_nwp_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mf_nwp_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_modis_pds/", "public", "File Names from the AWS S3 modis-pds Bucket: MODIS on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 modis-pds bucket at https://modis-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: MODIS on AWS\nName2: Imagery and metadata\nDescription: Select products from the Moderate Resolution Imaging Spectroradiometer (MODIS) managed by the U.S. Geological Survey and NASA.\n\nDocumentation: https://docs.opendata.aws/modis-pds/readme.html\nContact: https://github.com/AstroDigital/modis-ingestor/issues\nUpdateFrequency: New MODIS data is added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_modis_pds/index.json", "https://registry.opendata.aws/modis/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_modis_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_modis_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_modis_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_multimedia_commons/", "public", "File Names from the AWS S3 multimedia-commons Bucket: Multimedia Commons: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.", "This dataset has file information from the AWS S3 multimedia-commons bucket at https://multimedia-commons.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Multimedia Commons\nName2: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.\nDescription: The Multimedia Commons is a collection of audio and visual features computed for the nearly 100 million Creative Commons-licensed Flickr images and videos in the YFCC100M dataset from Yahoo! Labs, along with ground-truth annotations for selected subsets. The International Computer Science Institute (ICSI) and Lawrence Livermore National Laboratory are producing and distributing a core set of derived feature sets and annotations as part of an effort to enable large-scale video search capabilities. They have released this feature corpus into the public domain, under Creative Commons License 0, so it is free for anyone to use for any purpose.\n\nDocumentation: https://multimediacommons.wordpress.com/yfcc100m-core-dataset/\nContact: multimedia-commons@icsi.berkeley.edu\nUpdateFrequency: Not updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_multimedia_commons/index.json", "https://registry.opendata.aws/multimedia-commons/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_multimedia_commons.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_multimedia_commons&showErrors=false&email=", "Amazon Web Services", "awsS3Files_multimedia_commons"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mwapublic/", "public", "File Names from the AWS S3 mwapublic Bucket: Epoch of Reionization Dataset: Selected MWA EoR data (uvfits format) from 2013-2015", "This dataset has file information from the AWS S3 mwapublic bucket at https://mwapublic.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Epoch of Reionization Dataset\nName2: Selected MWA EoR data (uvfits format) from 2013-2015\nDescription: The data are from observations with the Murchison Widefield Array (MWA) which is a Square Kilometer Array (SKA) precursor in Western Australia. This particular dataset is from the Epoch of Reionization project which is a key science driver of the SKA. Nearly 2PB of such observations have been recorded to date, this is a small subset of that which has been exported from the MWA data archive in Perth and made available to the public on AWS. The data were taken to detect signatures of the first stars and galaxies forming and the effect of these early stars and galaxies on the evolution of the universe.\n\nDocumentation: http://danielcjacobs.com/research/epoch-of-reionization-aws-public-dataset/\nContact: brynah (at) phys.washington.edu\nManagedBy: University of washington Radio Cosmology Group\nUpdateFrequency: Irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mwapublic/index.json", "https://registry.opendata.aws/epoch-of-reionization/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mwapublic.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mwapublic&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mwapublic"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nanopore_human_wgs/", "public", "File Names from the AWS S3 nanopore-human-wgs Bucket: Nanopore Reference Human Genome: Nanopore Reference Human Genome", "This dataset has file information from the AWS S3 nanopore-human-wgs bucket at https://nanopore-human-wgs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Nanopore Reference Human Genome\nName2: Nanopore Reference Human Genome\nDescription: This dataset includes the sequencing and assembly of a reference standard human genome (GM12878) using the MinION nanopore sequencing instrument with the R9.4 1D chemistry.\n\nDocumentation: https://github.com/nanopore-wgs-consortium/NA12878\nContact: https://github.com/nanopore-wgs-consortium/NA12878/issues\nUpdateFrequency: Data will be added as methodology improves or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nanopore_human_wgs/index.json", "https://registry.opendata.aws/nanopore/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nanopore_human_wgs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nanopore_human_wgs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nanopore_human_wgs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_Landsat/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=Landsat/: NASA NEX: Landsat GLS (Global Land Survey)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=Landsat/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Landsat GLS (Global Land Survey)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_Landsat/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_Landsat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_Landsat&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_Landsat"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_LOCA/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=LOCA/: NASA NEX: Localized Constructed Analogs (LOCA)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=LOCA/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Localized Constructed Analogs (LOCA)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_LOCA/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_LOCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_LOCA&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_LOCA"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_MODIS/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=MODIS/: NASA NEX: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=MODIS/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_MODIS/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_MODIS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_MODIS&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_MODIS"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_DCP30/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-DCP30/: NASA NEX: Downscaled Climate Projections (NEX-DCP30)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-DCP30/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Downscaled Climate Projections (NEX-DCP30)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_DCP30/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_DCP30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_DCP30&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_DCP30"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_GDDP/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-GDDP/: NASA NEX: Global Daily Downscaled Projections (NEX-GDDP)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-GDDP/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Global Daily Downscaled Projections (NEX-GDDP)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_GDDP/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_GDDP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_GDDP&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_GDDP"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gefs_pds/", "public", "File Names from the AWS S3 noaa-gefs-pds Bucket: NOAA Global Ensemble Forecast System (GEFS): Project data files", "This dataset has file information from the AWS S3 noaa-gefs-pds bucket at https://noaa-gefs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Ensemble Forecast System (GEFS)\nName2: Project data files\nDescription: The Global Ensemble Forecast System (GEFS), previously known as the GFS Global ENSemble (GENS), is a weather forecast model made up of 21 separate forecasts, or ensemble members. The National Centers for Environmental Prediction (NCEP) started the GEFS to address the nature of uncertainty in weather observations, which is used to initialize weather forecast models. The GEFS attempts to quantify the amount of uncertainty in a forecast by generating an ensemble of multiple forecasts, each minutely different, or perturbed, from the original observations. With global coverage, GEFS is produced four times a day with weather forecasts going out to 16 days.\n\nDocumentation: https://docs.opendata.aws/noaa-gefs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GEFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GEFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gefs_pds/index.json", "https://registry.opendata.aws/noaa-gefs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gefs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gefs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gefs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_bdp_pds/", "public", "File Names from the AWS S3 noaa-gfs-bdp-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 GFS data", "This dataset has file information from the AWS S3 noaa-gfs-bdp-pds bucket at https://noaa-gfs-bdp-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_bdp_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_bdp_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_bdp_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_bdp_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_pds/", "public", "File Names from the AWS S3 noaa-gfs-pds Bucket: Unidata NOAA Global Forecast System (GFS) Model: A rolling four-week archive of 0.25 degree GFS data", "This dataset has file information from the AWS S3 noaa-gfs-pds bucket at https://noaa-gfs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Unidata NOAA Global Forecast System (GFS) Model\nName2: A rolling four-week archive of 0.25 degree GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks.\n\nDocumentation: https://docs.opendata.aws/noaa-gfs-pds/readme.html\nContact: https://www.ncdc.noaa.gov/contact\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_pds/index.json", "https://registry.opendata.aws/noaa-gfs-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfspara_pds/", "public", "File Names from the AWS S3 noaa-gfspara-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 FV3-based parallel version of the GFS", "This dataset has file information from the AWS S3 noaa-gfspara-pds bucket at https://noaa-gfspara-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 FV3-based parallel version of the GFS\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfspara_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfspara_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfspara_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfspara_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghcn_pds/", "public", "File Names from the AWS S3 noaa-ghcn-pds Bucket: NOAA Global Historical Climatology Network Daily (GHCN-D): Project data files", "This dataset has file information from the AWS S3 noaa-ghcn-pds bucket at https://noaa-ghcn-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Daily (GHCN-D)\nName2: Project data files\nDescription: Global Historical Climatology Network - Daily is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://docs.opendata.aws/noaa-ghcn-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncdc.noaa.gov/ghcn-daily-description). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghcn_pds/index.json", "https://registry.opendata.aws/noaa-ghcn/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghcn_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghcn_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghcn_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghe_pds/", "public", "File Names from the AWS S3 noaa-ghe-pds Bucket: NOAA Global Hydro Estimator (GHE): Project data files", "This dataset has file information from the AWS S3 noaa-ghe-pds bucket at https://noaa-ghe-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Hydro Estimator (GHE)\nName2: Project data files\nDescription: Global Hydro-Estimator provides a global mosaic imagery of rainfall estimates from multi-geostationary satellites, which currently includes GOES-16, GOES-15, Meteosat-8, Meteosat-11 and Himawari-8. The GHE products include: Instantaneous rain rate, 1 hour, 3 hour, 6 hour, 24 hour and also multi-day rainfall accumulation.\n\nDocumentation: https://www.ospo.noaa.gov/Products/atmosphere/ghe/index.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 15 minute-instantaneous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghe_pds/index.json", "https://registry.opendata.aws/noaa-ghe/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghe_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghe_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghe_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_global_hourly_pds/", "public", "File Names from the AWS S3 noaa-global-hourly-pds Bucket: NOAA Global Historical Climatology Network Hourly (GHCN-H): Project data files", "This dataset has file information from the AWS S3 noaa-global-hourly-pds bucket at https://noaa-global-hourly-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Hourly (GHCN-H)\nName2: Project data files\nDescription: Global Historical Climatology Network - Hourly is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: daily (Manually)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_global_hourly_pds/index.json", "https://registry.opendata.aws/noaa-ghcnh/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_global_hourly_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_global_hourly_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_global_hourly_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3NoaaGoes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nUse ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browser the files in buckets. This dataset is a solution to that problem for this bucket.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3NoaaGoes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3NoaaGoes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3NoaaGoes16&showErrors=false&email=", "NOAA", "awsS3NoaaGoes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket: GOES on AWS: GOES-16 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-16 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes16&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes17/", "public", "File Names from the AWS S3 noaa-goes17 Bucket: GOES on AWS: GOES-17 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes17 bucket at https://noaa-goes17.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-17 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes17/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes17&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes17"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_hrrr_pds/", "public", "File Names from the AWS S3 noaa-hrrr-pds Bucket: NOAA High-Resolution Rapid Refresh (HRRR) Model: A rolling one-week archive of HRRR data.", "This dataset has file information from the AWS S3 noaa-hrrr-pds bucket at https://noaa-hrrr-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA High-Resolution Rapid Refresh (HRRR) Model\nName2: A rolling one-week archive of HRRR data.\nDescription: The HRRR is a NOAA real-time 3-km resolution, hourly updated, cloud-resolving, convection-allowing atmospheric model, initialized by 3km grids with 3km radar assimilation. Radar data is assimilated in the HRRR every 15 min over a 1-h period adding further detail to that provided by the hourly data assimilation from the 13km radar-enhanced Rapid Refresh.\n\nDocumentation: https://docs.opendata.aws/noaa-hrrr-pds/readme.html\nContact: https://rapidrefresh.noaa.gov/hrrr/\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_hrrr_pds/index.json", "https://registry.opendata.aws/noaa-hrrr-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_hrrr_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_hrrr_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_hrrr_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_isd_pds/", "public", "File Names from the AWS S3 noaa-isd-pds Bucket: NOAA Integrated Surface Database (ISD): Project data files", "This dataset has file information from the AWS S3 noaa-isd-pds bucket at https://noaa-isd-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Integrated Surface Database (ISD)\nName2: Project data files\nDescription: The Integrated Surface Database (ISD) consists of global hourly and synoptic observations compiled from numerous sources into a gzipped fixed width format. ISD was developed as a joint activity within Asheville's Federal Climate Complex. The database includes over 35,000 stations worldwide, with some having data as far back as 1901, though the data show a substantial increase in volume in the 1940s and again in the early 1970s. Currently, there are over 14,000 \"active\" stations updated daily in the database. The total uncompressed data volume is around 600 gigabytes; however, it continues to grow as more data are added. ISD includes numerous parameters such as wind speed and direction, wind gust, temperature, dew point, cloud data, sea level pressure, altimeter setting, station pressure, present weather, visibility, precipitation amounts for various time periods, snow depth, and various other elements as observed by each station.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_isd_pds/index.json", "https://registry.opendata.aws/noaa-isd/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_isd_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_isd_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_isd_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nexrad_level2/", "public", "File Names from the AWS S3 noaa-nexrad-level2 Bucket: NEXRAD on AWS: NEXRAD Level II archive data", "This dataset has file information from the AWS S3 noaa-nexrad-level2 bucket at https://noaa-nexrad-level2.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II archive data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nexrad_level2/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nexrad_level2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nexrad_level2&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nexrad_level2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_pds/", "public", "File Names from the AWS S3 noaa-nwm-pds Bucket: NOAA National Water Model Short-Range Forecast: A rolling four week archive of NWM data.", "This dataset has file information from the AWS S3 noaa-nwm-pds bucket at https://noaa-nwm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Short-Range Forecast\nName2: A rolling four week archive of NWM data.\nDescription: The National Water Model (NWM) is a water resources model that simulates and forecasts water budget variables, including snowpack, evapotranspiration, soil moisture and streamflow, over the entire continental United States (CONUS). The model, launched in August 2016, is designed to improve the ability of NOAA to meet the needs of its stakeholders (forecasters, emergency managers, reservoir operators, first responders, recreationists, farmers, barge operators, and ecosystem and floodplain managers) by providing expanded accuracy, detail, and frequency of water information. It is operated by NOAA\u2019s Office of Water Prediction. This bucket contains a four-week rollover of the Short Range Forecast model output and the corresponding forcing data for the model. The model is forced with meteorological data from the High Resolution Rapid Refresh (HRRR) and the Rapid Refresh (RAP) models. The Short Range Forecast configuration cycles hourly and produces hourly deterministic forecasts of streamflow and hydrologic states out to 18 hours.\n\nDocumentation: https://docs.opendata.aws/noaa-nwm-pds/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_pds/index.json", "https://registry.opendata.aws/noaa-nwm-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_retro_v2_0_pds/", "public", "File Names from the AWS S3 noaa-nwm-retro-v2.0-pds Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 2.0.", "This dataset has file information from the AWS S3 noaa-nwm-retro-v2.0-pds bucket at https://noaa-nwm-retro-v2.0-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 2.0.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\n... (4 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_retro_v2_0_pds/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_retro_v2_0_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_retro_v2_0_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_retro_v2_0_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ofs_pds/", "public", "File Names from the AWS S3 noaa-ofs-pds Bucket: NOAA Operational Forecast System (OFS): Project data files", "This dataset has file information from the AWS S3 noaa-ofs-pds bucket at https://noaa-ofs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Operational Forecast System (OFS)\nName2: Project data files\nDescription: The Operational Forecast System (OFS) has been developed to serve the maritime user community. OFS was developed in a joint project of the NOAA/National Ocean Service (NOS)/Office of Coast Survey, the NOAA/NOS/Center for Operational Oceanographic Products and Services (CO-OPS), and the NOAA/National Weather Service (NWS)/National Centers for Environmental Prediction (NCEP) Central Operations (NCO). OFS generates water level, water current, water temperature, water salinity (except for the Great Lakes) and wind conditions nowcast and forecast guidance four times per day.\n\nDocumentation: https://docs.opendata.aws/noaa-ofs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA OFS site](https://tidesandcurrents.noaa.gov/models.html). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight and generates 6-hour nowcasts and 48-hour forecast guidance\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ofs_pds/index.json", "https://registry.opendata.aws/noaa-ofs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ofs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ofs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ofs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/", "public", "File Names from the AWS S3 nrel-pds-wtk Bucket with prefix=wtk-techno-economic/pywtk-data/: NREL Wind Integration National Dataset on AWS: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format", "This dataset has file information from the AWS S3 nrel-pds-wtk bucket at https://nrel-pds-wtk.s3.us-west-2.amazonaws.com/ with prefix=wtk-techno-economic/pywtk-data/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NREL Wind Integration National Dataset on AWS\nName2: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format\nDescription: The [Wind Integration National Dataset (WIND)](https://www.nrel.gov/grid/wind-toolkit.html) is an update and expansion of the Eastern Wind Integration Data Set and Western Wind Integration Data Set. It supports the next generation of wind integration studies.\n\nDocumentation: https://www.nrel.gov/grid/wind-toolkit.html\nContact: wind-toolkit@nrel.gov\nManagedBy: [National Renewable Energy Laboratory](https://www.nrel.gov/)\nUpdateFrequency: As Needed\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/index.json", "https://registry.opendata.aws/nrel-pds-wtk/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nwm_archive/", "public", "File Names from the AWS S3 nwm-archive Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 1.2.", "This dataset has file information from the AWS S3 nwm-archive bucket at https://nwm-archive.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 1.2.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nwm_archive/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nwm_archive.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nwm_archive&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nwm_archive"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nyc_tlc/", "public", "File Names from the AWS S3 nyc-tlc Bucket: New York City Taxi and Limousine Commission (TLC) Trip Record Data: CSV files containing NYC TLC trip data.", "This dataset has file information from the AWS S3 nyc-tlc bucket at https://nyc-tlc.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: New York City Taxi and Limousine Commission (TLC) Trip Record Data\nName2: CSV files containing NYC TLC trip data.\nDescription: Data of trips taken by taxis and for-hire vehicles in New York City.\n\nDocumentation: http://www.nyc.gov/html/tlc/html/about/trip_record_data.shtml\nContact: research@tlc.nyc.gov\nUpdateFrequency: As soon as new data is available to be shared publicly.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nyc_tlc/index.json", "https://registry.opendata.aws/nyc-tlc-trip-records-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nyc_tlc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nyc_tlc&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nyc_tlc"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_oicr_icgc_meta_metadata/", "public", "File Names from the AWS S3 oicr.icgc.meta Bucket with prefix=metadata/: ICGC on AWS: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README", "This dataset has file information from the AWS S3 oicr.icgc.meta bucket at https://oicr.icgc.meta.s3.us-east-1.amazonaws.com/ with prefix=metadata/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ICGC on AWS\nName2: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README\nDescription: The International Cancer Genome Consortium (ICGC) coordinates projects with the common aim of accelerating research into the causes and control of cancer. The PanCancer Analysis of Whole Genomes (PCAWG) study is an international collaboration to identify common patterns of mutation in whole genomes from ICGC. More than 2,400 consistently analyzed genomes corresponding to over 1,100 unique ICGC donors are now freely available on Amazon S3 to credentialed researchers subject to ICGC data sharing policies.\n\nDocumentation: https://dcc.icgc.org/icgc-in-the-cloud/aws\nContact: dcc-support@icgc.org\nUpdateFrequency: New data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_oicr_icgc_meta_metadata/index.json", "https://registry.opendata.aws/icgc/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_oicr_icgc_meta_metadata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_oicr_icgc_meta_metadata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_oicr_icgc_meta_metadata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ooni_data/", "public", "File Names from the AWS S3 ooni-data Bucket: Open Observatory of Network Interference: S3 bucket with data", "This dataset has file information from the AWS S3 ooni-data bucket at https://ooni-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open Observatory of Network Interference\nName2: S3 bucket with data\nDescription: A free software, global observation network for detecting censorship, surveillance and traffic manipulation on the internet.\n\nDocumentation: https://ooni.torproject.org/about/\nContact: https://ooni.torproject.org/get-involved/\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ooni_data/index.json", "https://registry.opendata.aws/ooni/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ooni_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ooni_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ooni_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openaq_fetches/", "public", "File Names from the AWS S3 openaq-fetches Bucket: OpenAQ: Minutely CSVs of global air quality fetched from sources all over the world", "This dataset has file information from the AWS S3 openaq-fetches bucket at https://openaq-fetches.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenAQ\nName2: Minutely CSVs of global air quality fetched from sources all over the world\nDescription: Global, aggregated physical air quality data from public data sources provided by government, research-grade and other sources. These awesome groups do the hard work of measuring these data and publicly sharing them, and our community makes them more universally-accessible to both humans and machines.\n\nDocumentation: https://openaq.org\nContact: info@openaq.org\nManagedBy: [OpenAQ](https://openaq.org)\nUpdateFrequency: Minutely\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openaq_fetches/index.json", "https://registry.opendata.aws/openaq/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openaq_fetches.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openaq_fetches&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openaq_fetches"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_opencitymodel/", "public", "File Names from the AWS S3 opencitymodel Bucket: Open City Model (OCM): Project data files", "This dataset has file information from the AWS S3 opencitymodel bucket at https://opencitymodel.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open City Model (OCM)\nName2: Project data files\nDescription: Open City Model is an initiative to provide cityGML data for all the buildings in the United States. By using other open datasets in conjunction with our own code and algorithms it is our goal to provide 3D geometries for every US building.\n\nDocumentation: https://github.com/opencitymodel/opencitymodel\nContact: https://github.com/opencitymodel/opencitymodel#contact\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_opencitymodel/index.json", "https://registry.opendata.aws/opencitymodel/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_opencitymodel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_opencitymodel&showErrors=false&email=", "Amazon Web Services", "awsS3Files_opencitymodel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openneuro_org/", "public", "File Names from the AWS S3 openneuro.org Bucket: OpenNeuro: All datasets", "This dataset has file information from the AWS S3 openneuro.org bucket at https://openneuro.org.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenNeuro\nName2: All datasets\nDescription: OpenNeuro is a database of openly-available brain imaging data. The data are shared according to a Creative Commons CC0 license, providing a broad range of brain imaging data to researchers and citizen scientists alike. The database primarily focuses on functional magnetic resonance imaging (fMRI) data, but also includes other imaging modalities including structural and diffusion MRI, electroencephalography (EEG), and magnetoencephalograpy (MEG). OpenfMRI is a project of the [Center for Reproducible Neuroscience at Stanford University](http://reproducibility.stanford.edu). Development of the OpenNeuro resource has been funded by the National Science Foundation, National Institute of Mental Health, National Institute on Drug Abuse, and the Laura and John Arnold Foundation.\n\nDocumentation: http://openneuro.org\nContact: Support form at https://openneuro.org\nUpdateFrequency: New datasets deposited every 4-6 days\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openneuro_org/index.json", "https://registry.opendata.aws/openneuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openneuro_org.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openneuro_org&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openneuro_org"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osm_pds/", "public", "File Names from the AWS S3 osm-pds Bucket: OpenStreetMap on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 osm-pds bucket at https://osm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap on AWS\nName2: Imagery and metadata\nDescription: OSM is a free, editable map of the world, created and maintained by volunteers. Regular OSM data archives are made available in Amazon S3.\n\nDocumentation: https://docs.opendata.aws/osm-pds/readme.html\nContact: https://github.com/mojodna/osm-pds-pipelines/issues\nUpdateFrequency: Data is updated weekly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osm_pds/index.json", "https://registry.opendata.aws/osm/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osmlr/", "public", "File Names from the AWS S3 osmlr Bucket: OpenStreetMap Linear Referencing: Manifest and data files", "This dataset has file information from the AWS S3 osmlr bucket at https://osmlr.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap Linear Referencing\nName2: Manifest and data files\nDescription: OSMLR a linear referencing system built on top of OpenStreetMap. OSM has great information about roads around the world and their interconnections, but it lacks the means to give a stable identifier to a stretch of roadway. OSMLR provides a stable set of numerical IDs for every 1 kilometer stretch of roadway around the world. In urban areas, OSMLR IDs are attached to each block of roadways between significant intersections.\n\nDocumentation: https://github.com/opentraffic/osmlr/blob/master/docs/intro.md\nContact: https://github.com/opentraffic/osmlr/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osmlr/index.json", "https://registry.opendata.aws/osmlr/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osmlr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osmlr&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osmlr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_qiime2_data/", "public", "File Names from the AWS S3 qiime2-data Bucket: QIIME 2 User Tutorial Datasets: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs", "This dataset has file information from the AWS S3 qiime2-data bucket at https://qiime2-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: QIIME 2 User Tutorial Datasets\nName2: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs\nDescription: QIIME 2 is a powerful, extensible, and decentralized microbiome analysis package with a focus on data and analysis transparency. QIIME 2 enables researchers to start an analysis with raw DNA sequence data and finish with publication-quality figures and statistical results. This dataset contains the user docs (and related datasets) for QIIME 2.\n\nDocumentation: https://docs.qiime2.org\nContact: https://forum.qiime2.org\nManagedBy: The QIIME 2 Development Team\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_qiime2_data/index.json", "https://registry.opendata.aws/qiime2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_qiime2_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_qiime2_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_qiime2_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_safecast_opendata_public_us_east_1/", "public", "File Names from the AWS S3 safecast-opendata-public-us-east-1 Bucket: Safecast: Bulk exports of air and radiation measurements", "This dataset has file information from the AWS S3 safecast-opendata-public-us-east-1 bucket at https://safecast-opendata-public-us-east-1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Safecast\nName2: Bulk exports of air and radiation measurements\nDescription: An ongoing collection of radiation and air quality measurements taken by devices involved in the Safecast project.\n\nDocumentation: https://github.com/Safecast/safecastapi/wiki/Data-Sets\nContact: https://groups.google.com/forum/#!forum/safecast-devices\nManagedBy: [Safecast](https://safecast.org/)\nUpdateFrequency: Continuous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_safecast_opendata_public_us_east_1/index.json", "https://registry.opendata.aws/safecast/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_safecast_opendata_public_us_east_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_safecast_opendata_public_us_east_1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_safecast_opendata_public_us_east_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s1_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s1-l1c/: Sentinel-1: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s1-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C\nDescription: [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1) is a pair of European radar imaging (SAR) satellites launched in 2014 and 2016. Its 6 days revisit cycle and ability to observe through clouds makes it perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. GRD data is available globally since January 2017.\n\nDocumentation: https://roda.sentinel-hub.com/sentinel-s1-l1c/GRD/readme.html\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s1_l1c/index.json", "https://registry.opendata.aws/sentinel-1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s1_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s1_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s1_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l1c/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l1c/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l2a/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l2a/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l2a/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l2a/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l2a&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l2a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel1_slc_seasia_pds/", "public", "File Names from the AWS S3 sentinel1-slc-seasia-pds Bucket: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan", "This dataset has file information from the AWS S3 sentinel1-slc-seasia-pds bucket at https://sentinel1-slc-seasia-pds.s3.ap-southeast-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan\nName2: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan\nDescription: The S1 Single Look Complex (SLC) dataset contains Synthetic Aperture Radar (SAR) data in the C-Band wavelength. The SAR sensors are installed on a two-satellite (Sentinel-1A and Sentinel-1B) constellation orbiting the Earth with a combined revisit time of six days, operated by the European Space Agency. The S1 SLC data are a Level-1 product that collects radar amplitude and phase information in all-weather, day or night conditions, which is ideal for studying natural hazards and emergency response, land applications, oil spill monitoring, sea-ice conditions, and associated climate change effects.\n\nDocumentation: https://github.com/earthobservatory/sentinel1-opds/\nContact: https://github.com/earthobservatory/sentinel1-opds/\nManagedBy: [Earth Observatory of Singapore, Nanyang Technological University](https://earthobservatory.sg)\nUpdateFrequency: S1 SLC data for the region of interest will be updated regularly, as it becomes available on the Alaska Satellite Facility endpoint.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel1_slc_seasia_pds/index.json", "https://registry.opendata.aws/sentinel1-slc-seasia-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel1_slc_seasia_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel1_slc_seasia_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel1_slc_seasia_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_silo_open_data/", "public", "File Names from the AWS S3 silo-open-data Bucket: SILO climate data on AWS: SILO open data", "This dataset has file information from the AWS S3 silo-open-data bucket at https://silo-open-data.s3.ap-southeast-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SILO climate data on AWS\nName2: SILO open data\nDescription: [SILO](https://www.longpaddock.qld.gov.au/silo) is a database of Australian [climate data](https://www.longpaddock.qld.gov.au/silo/about/climate-variables) from 1889 to the present. It provides continuous, daily time-step [data products](https://www.longpaddock.qld.gov.au/silo/about/data-products) in ready-to-use [formats](https://www.longpaddock.qld.gov.au/silo/about/file-formats-and-samples) for research and operational applications. Gridded SILO data in annual NetCDF format are on AWS. Point data are available from the [SILO website](https://www.longpaddock.qld.gov.au/silo/).\n\nDocumentation: https://www.longpaddock.qld.gov.au/silo/gridded-data\nContact: https://www.longpaddock.qld.gov.au/silo/contact-us\nManagedBy: Queensland Government\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_silo_open_data/index.json", "https://registry.opendata.aws/silo/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_silo_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_silo_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_silo_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_softwareheritage/", "public", "File Names from the AWS S3 softwareheritage Bucket: Software Heritage Graph Dataset: Software Heritage Graph Dataset", "This dataset has file information from the AWS S3 softwareheritage bucket at https://softwareheritage.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Software Heritage Graph Dataset\nName2: Software Heritage Graph Dataset\nDescription: [Software Heritage](https://www.softwareheritage.org/) is the largest existing public archive of software source code and accompanying development history. The Software Heritage Graph Dataset is a fully deduplicated Merkle DAG representation of the Software Heritage archive.\n\nDocumentation: https://wiki.softwareheritage.org/wiki/Graph_Dataset_on_Amazon_Athena\nContact: swh-devel@inria.fr\nUpdateFrequency: Data is updated yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_softwareheritage/index.json", "https://registry.opendata.aws/software-heritage/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_softwareheritage.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_softwareheritage&showErrors=false&email=", "Amazon Web Services", "awsS3Files_softwareheritage"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_spacenet_dataset/", "public", "File Names from the AWS S3 spacenet-dataset Bucket: SpaceNet: Imagery and metadata in a S3 bucket", "This dataset has file information from the AWS S3 spacenet-dataset bucket at https://spacenet-dataset.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SpaceNet\nName2: Imagery and metadata in a S3 bucket\nDescription: SpaceNet, launched in August 2016 as an open innovation project offering a repository of freely available imagery with co-registered map features. Before SpaceNet, computer vision researchers had minimal options to obtain free, precision-labeled, and high-resolution satellite imagery. Today, SpaceNet hosts datasets developed by its own team, along with data sets from projects like IARPA\u2019s Functional Map of the World (fMoW).\n\nDocumentation: https://spacenetchallenge.github.io\nContact: https://github.com/SpaceNetChallenge/utilities/issues\nManagedBy: [SpaceNet](https://spacenet.ai/)\nUpdateFrequency: New imagery and features are added quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_spacenet_dataset/index.json", "https://registry.opendata.aws/spacenet/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_spacenet_dataset.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_spacenet_dataset&showErrors=false&email=", "Amazon Web Services", "awsS3Files_spacenet_dataset"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_unidata_nexrad_level2_chunks/", "public", "File Names from the AWS S3 unidata-nexrad-level2-chunks Bucket: NEXRAD on AWS: NEXRAD Level II real-time data", "This dataset has file information from the AWS S3 unidata-nexrad-level2-chunks bucket at https://unidata-nexrad-level2-chunks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II real-time data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_unidata_nexrad_level2_chunks/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_unidata_nexrad_level2_chunks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_unidata_nexrad_level2_chunks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_unidata_nexrad_level2_chunks"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_usgs_lidar_public/", "public", "File Names from the AWS S3 usgs-lidar-public Bucket: USGS 3DEP LiDAR Point Clouds: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.", "This dataset has file information from the AWS S3 usgs-lidar-public bucket at https://usgs-lidar-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: USGS 3DEP LiDAR Point Clouds\nName2: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.\nDescription: The goal of the [USGS 3D Elevation Program ](https://www.usgs.gov/core-science-systems/ngp/3dep) (3DEP) is to collect elevation data in the form of light detection and ranging (LiDAR) data over the conterminous United States, Hawaii, and the U.S. territories, with data acquired over an 8-year period. This dataset provides two realizations of the 3DEP point cloud data. The first resource is a public access organization provided in [Entwine Point Tiles](https://entwine.io/entwine-point-tile.html) format, which a lossless, full-density, streamable octree based on [LASzip](https://laszip.org) (LAZ) encoding. The second resource is a [Requester Pays](https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html) of the same data in LAZ (Compressed LAS) format. Resource names in both buckets correspond to the USGS project names.\n\nDocumentation: https://github.com/hobu/usgs-lidar/\nContact: https://github.com/hobu/usgs-lidar\nManagedBy: [Hobu, Inc.](https://hobu.co)\nUpdateFrequency: Periodically\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_usgs_lidar_public/index.json", "https://registry.opendata.aws/usgs-lidar/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_usgs_lidar_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_usgs_lidar_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_usgs_lidar_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_web_language_models/", "public", "File Names from the AWS S3 web-language-models Bucket: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl): Parallel Corpora to/from English for all official EU languages", "This dataset has file information from the AWS S3 web-language-models bucket at https://web-language-models.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl)\nName2: Parallel Corpora to/from English for all official EU languages\nDescription: ParaCrawl is a set of large parallel corpora to/from English for all official EU languages by a broad web crawling effort. State-of-the-art methods are applied for the entire processing chain from identifying web sites with translated text all the way to collecting, cleaning and delivering parallel corpora that are ready as training data for CEF.AT and translation memories for DG Translation.\n\nDocumentation: https://paracrawl.eu/releases.html\nContact: For questions regarding the datasets contact Kenneth Heafield, email kheafiel@inf.ed.ac.uk. For reporting any issues about bitextor pipeline visit https://github.com/bitextor/bitextor/issues.\nManagedBy: [ParaCrawl](https://paracrawl.eu)\nUpdateFrequency: New data is added according to ParaCrawl release schedule.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_web_language_models/index.json", "https://registry.opendata.aws/paracrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_web_language_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_web_language_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_web_language_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_xiph_media/", "public", "File Names from the AWS S3 xiph-media Bucket: Xiph.Org Test Media: Video and imagery data", "This dataset has file information from the AWS S3 xiph-media bucket at https://xiph-media.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Xiph.Org Test Media\nName2: Video and imagery data\nDescription: Uncompressed video used for video compression and video processing research.\n\nDocumentation: https://media.xiph.org/aws.html\nContact: Thomas Daede tdaede@xiph.org\nUpdateFrequency: New videos are added when contributors submit them.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_xiph_media/index.json", "https://registry.opendata.aws/xiph-media/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_xiph_media.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_xiph_media&showErrors=false&email=", "Amazon Web Services", "awsS3Files_xiph_media"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ycb_benchmarks/", "public", "File Names from the AWS S3 ycb-benchmarks Bucket: Yale-CMU-Berkeley (YCB) Object and Model Set: Project data files", "This dataset has file information from the AWS S3 ycb-benchmarks bucket at https://ycb-benchmarks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Yale-CMU-Berkeley (YCB) Object and Model Set\nName2: Project data files\nDescription: This project primarily aims to facilitate performance benchmarking in robotics research. The dataset provides mesh models, RGB, RGB-D and point cloud images of over 80 objects. The physical objects are also available via the [YCB benchmarking project](http://www.ycbbenchmarks.com/). The data are collected by two state of the art systems: UC Berkley's scanning rig and the Google scanner. The UC Berkley's scanning rig data provide meshes generated with Poisson reconstruction, meshes generated with volumetric range image integration, textured versions of both meshes, Kinbody files for using the meshes with OpenRAVE, 600 High-resolution RGB images, 600 RGB-D images, and 600 point cloud images for each object. The Google scanner data provides 3 meshes with different resolutions (16k, 64k, and 512k polygons), textured versions of each mesh, Kinbody files for using the meshes with OpenRAVE.\n\nDocumentation: http://www.ycbbenchmarks.com/\nContact: bcalli@wpi.edu\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ycb_benchmarks/index.json", "https://registry.opendata.aws/ycb-benchmarks/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ycb_benchmarks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ycb_benchmarks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ycb_benchmarks"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the June 2020 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.graph", "", "", "public", "GLOBEC NEP Vertical Plankton Tow (VPT) Data, 1997-2001", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nCalifornia Current Program\nVertical Plankton Tow (VPT) Data\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10181&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/vpt%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/vpt.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ncast_no (Cast Number Within the Cruise)\nstation_id\nabund_m3 (Abundance, count m-3)\ncomments\ncounter_id\nd_n_flag (Day/Night Flag)\ngear_area (Mouth Area of Net, m2)\ngear_mesh (Net's Mesh Size, mm)\ngear_type\ngenus_species\nlife_stage\nlocal_code\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecVpt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecVpt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecVpt/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecVpt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecVpt&showErrors=false&email=", "GLOBEC", "erdGlobecVpt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://usgodae.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, the EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\nBeach Monitoring Quality Assurance Project Plan (CWBMONQAPP002):\nhttps://www.pacioos.hawaii.edu/wp-content/uploads/2016/08/Beach_Monitoring_QAPP_CWBMONQAPP002_120507.pdf\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwb_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwb_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwb_water_quality/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/cwb_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwb_water_quality&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "cwb_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.graph", "", "", "public", "HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii", "The Hawaii Institute of Marine Biology (HIMB) automatic weather station (AWS) records hourly measurements of precipitation, air temperature, wind speed and direction, and irradiance. Sensors include an Eppley 295-385 nm ultraviolet (UV) radiometer, a LiCor 200SZ Pyranometer, and a LiCor Quantameter (400-700 nm). The sensors are located on the roof of HIMB's Coral Reef Ecology Laboratory (Point Lab) on Moku o Loe (Coconut Island) in Kaneohe Bay on the windward (eastern) coast of Oahu in Hawaii. An accompanying sea water temperature sensor is located less than 10 m offshore of the weather station at a shallow depth of approximately 1 m.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HIMB: HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nsea_water_temperature (water temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nwind_from_direction_std (standard deviation of wind direction (processed), degrees)\nrainfall_amount (total rainfall (processed), mm)\nshortwave_radiation (downwelling shortwave radiation (processed), W/m2)\nultraviolet_radiation (ultraviolet radiation (processed), W/m2)\nphotosynthetic_radiation (photosynthetically active radiation (processed), umol m-2 s-1)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_atn (QARTOD Attenuated Signal Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (139 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HIMB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HIMB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HIMB/index.json", "https://www.pacioos.hawaii.edu/weather/obs-mokuoloe/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HIMB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HIMB&showErrors=false&email=", "Hawaii Institute of Marine Biology (HIMB)", "AWS-HIMB"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.graph", "", "", "public", "Hui O Ka Wai Ola Water Quality Data", "The goal of the Hui O Ka Wai Ola (Association Of The Living Waters) citizen-science based water quality program is to increase the capacity for monitoring water quality in Maui coastal waters by generating reliable data to assess long-term water-quality conditions and detect temporal trends. These data augment the data produced by the Hawaii Department of Health (DOH) Clean Water Branch (CWB) beach monitoring program on Maui.\n \nData are collected and analyzed every two or three weeks for physical and chemical parameters, including ocean salinity, pH, temperature, organic nutrients (nitrogen and phosphorous compounds), dissolved oxygen (DO), and total suspended sediment (TSS). Some water samples are immediately tested at mobile labs while others are processed for testing at University of Hawaii and/or other labs.\n \nUsers of these data should cite the following publication:\n \nFalinski, Kim, Dana Reed, Tova Callender, Emily Fielding, Robin Newbold, and Alana Yurkanin. (2018). Hui O Ka Wai Ola Water Quality Data [Data set]. Zenodo. \"http://doi.org/10.5281/zenodo.1173717\"\n \nFor further information, please visit:\nhttps://www.huiokawaiola.com\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nlocation_id (sampling site identifier)\nlocation_name\nsample_id (sample identifier)\nsession_id (sampling session identifier)\nwater_temperature (Celsius)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hui_water_quality/index.json", "https://www.huiokawaiola.com", "http://upwell.pfeg.noaa.gov/erddap/rss/hui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hui_water_quality&showErrors=false&email=", "Hui O Ka Wai Ola", "hui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitored water quality at several beaches across the island of Maui in the State of Hawaii during the years 2010-2016. This community-based monitoring effort provided valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites were also monitored for harmful bacteria levels of Enterococcus through 2014-06-26. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours.\n\nData were managed through an online repository, the Coral Reef Monitoring Data Portal (now defunct), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection was coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/maui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/maui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/maui_water_quality/index.json", "https://coral.org/maui/", "http://upwell.pfeg.noaa.gov/erddap/rss/maui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=maui_water_quality&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "maui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys. See\nhttps://www.ndbc.noaa.gov/measdes.shtml for a description of the measurements.\n\nThe source data from NOAA NDBC has different column names, different units,\nand different missing values in different files, and other problems\n(notably, lots of rows with duplicate or different values for the same time\npoint). This dataset is a standardized, reformatted, and lightly edited\nversion of that source data, created by NOAA NMFS SWFSC ERD (email:\nerd.data at noaa.gov). Before 2020-01-29, this dataset only had the data\nthat was closest to a given hour, rounded to the nearest hour. Now, this\ndataset has all of the data available from NDBC with the original time\nvalues. If there are multiple source rows for a given buoy for a given\ntime, only the row with the most non-NaN data values is kept. If there is\na gap in the data, a row of missing values is inserted (which causes a nice\ngap when the data is graphed). Also, some impossible data values are\nremoved, but this data is not perfectly clean. This dataset is now updated\nevery 5 minutes.\n\nThis dataset has both historical data (quality controlled, before\n2020-06-01T00:00:00Z) and near real time data (less quality controlled,\nwhich may change at any time, from 2020-06-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Identifier)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.graph", "", "", "public", "NEFSC Continuous Plankton Recorder", "A summary for the data\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ncruise\nsample\nlatitude (degrees_north)\nlongitude (degrees_east)\nphyto_color_indx (Phytoplankton Color Index)\nmarmap_tax_code (Marmap Taxonomic Code)\nmarmap_stage_code\nabundance (per 100 cubic meters)\nlife_stage\ntaxonomic_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/wocecpr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/wocecpr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/wocecpr/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "http://upwell.pfeg.noaa.gov/erddap/rss/wocecpr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=wocecpr&showErrors=false&email=", "NEFSC", "wocecpr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "", "public", "North Pacific High, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.graph", "", "", "public", "OSMC Argo Profile data", "OSMC Argo Profile data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\norganization_name\ncountry_name\nplatform_type_name\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nparameter_name\ndaily_obs_count\nobservation_depth\nobservation_value\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_PROFILERS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_PROFILERS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_PROFILERS/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_PROFILERS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_PROFILERS&showErrors=false&email=", "OSMC", "OSMC_PROFILERS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.graph", "", "", "public", "OSMC normalized observations from GTS", "OSMC normalized In-situ Real time GTS data\n\ncdm_data_type = Point\nVARIABLES:\nPLATFORM_CODE (Station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform\nparameter\nOBSERVATION_VALUE\nOBSERVATION_DEPTH\nCOUNTRY_NAME\norganization_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_Points_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_Points_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_Points/index.json", "https://www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_Points.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_Points&showErrors=false&email=", "OSMC", "OSMC_Points"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001.graph", "", "", "public", "PacIOOS Beach Camera 001: Waikiki, Oahu, Hawaii", "A digital camera on top of the Sheraton Waikiki hotel was used to photograph the shoreline of Waikiki beach along the South Shore of the island of Oahu in the State of Hawaii. The oblique camera view presented here captures the shoreline leading southeast towards Diamond Head crater. It operated for over 4.5 years between February 5, 2009 and October 13, 2013. Capturing hourly snapshots at a set vantage point during the local daytime hours of 6:00 AM or 7:00 AM to 5:00 PM, these images are useful for tracking beach dynamics such as wave run-up, sand movement, and turbidity plumes over time. The camera was mounted on top of a 3 meter wall extending above the roof surface for a total height of 93 meters above ground level or 96 meters above mean sea level. See also BEACHCAM-002 for an alternate camera view from the same location pointing directly downwards.\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (m)\naboveGround (Height, m)\nurl\nname (File Name)\nsize (bytes)\nfileType (File Type)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/BEACHCAM-001_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/BEACHCAM-001_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/BEACHCAM-001/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/BEACHCAM-001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=BEACHCAM-001&showErrors=false&email=", "University of Hawaii", "BEACHCAM-001"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_4"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_2/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_2&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_6/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_6&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_7/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_7&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_7"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_8/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_8&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_9/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_9&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.graph", "", "", "public", "PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-04 is located in Hilo Bay on the east side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-04: PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-04/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-hilo/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-04&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-04"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.graph", "", "", "public", "PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-05 is located in Pelekane Bay near Kawaihae Harbor on the west side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-05: PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-05/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-pelekane/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-05&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-05"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.graph", "", "", "public", "PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii", "The Pacific Islands Ocean Observing System (PacIOOS) operates a Davis Instruments automatic weather station (AWS) near the entrance to Honolulu Harbor on the leeward (western) coast of Oahu in Hawaii to aid with navigation. The station records measurements every 5 minutes of air temperature, wind speed and direction, precipitation, relative humidity, and air pressure. Sensors are located at Pier 1, installed on a tower at an elevation of 64 feet (19.5 meters) above sea level. The station is owned by the Hawaii Pilots Association (HPA). PacIOOS maintains the station and provides data access.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HNLPier1: PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nrainfall_rate (rain rate (processed), mm/h)\nrelative_humidity (relative humidity (processed), %)\nair_pressure (air pressure (processed), millibars)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_gap (QARTOD Gap Test (processed), 0)\nair_temperature_qc_syn (QARTOD Syntax Test (processed), 0)\nair_temperature_qc_loc (QARTOD Location Test (processed), 0)\nair_temperature_qc_rng (QARTOD Gross Range Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_spk (QARTOD Spike Test (processed), 0)\n... (92 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HNLPier1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HNLPier1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HNLPier1/index.json", "https://www.pacioos.hawaii.edu/weather/obs-honolulu/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HNLPier1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HNLPier1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "AWS-HNLPier1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "https://tidesandcurrents.noaa.gov/gomoos.html", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/main.aspx?Division=PRD&ParentMenuId=147&id=1221", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2017, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2017, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2017, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"] + ] + } + } + recorded_at: 2020-07-15 22:17:31 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMekm14day.nc?mod_current[(2015-12-28):1:(2016-01-01)][(0.0):1:(0.0)][(23):1:(24)][(88):1:(90)],u_current[(2015-12-28):1:(2016-01-01)][(0.0):1:(0.0)][(23):1:(24)][(88):1:(90)],v_current[(2015-12-28):1:(2016-01-01)][(0.0):1:(0.0)][(23):1:(24)][(88):1:(90)] + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:17:31 GMT + x-frame-options: SAMEORIGIN + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:17:31 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=erdQMekm14day_3a6f_f1d0_a65b.nc + content-encoding: gzip + content-type: application/x-netcdf + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: yes + string: ../fixtures/188571c95282bcb224bb987dd83d22b7.nc + recorded_at: 2020-07-15 22:17:31 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 diff --git a/tests/vcr_cassettes/griddap_fixes_user_inputs_4.yml b/tests/vcr_cassettes/griddap_fixes_user_inputs_4.yml new file mode 100644 index 0000000..62ad9a5 --- /dev/null +++ b/tests/vcr_cassettes/griddap_fixes_user_inputs_4.yml @@ -0,0 +1,1283 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/info/erdMBchlamday_LonPM180/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:14:38 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=erdMBchlamday_LonPM180_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "acknowledgement", "String", "NOAA NESDIS COASTWATCH, NOAA SWFSC ERD"], + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "Grid"], + ["attribute", "NC_GLOBAL", "composite", "String", "true"], + ["attribute", "NC_GLOBAL", "contributor_name", "String", "NASA GSFC (OBPG)"], + ["attribute", "NC_GLOBAL", "contributor_role", "String", "Source of level 2 data."], + ["attribute", "NC_GLOBAL", "Conventions", "String", "COARDS, CF-1.6, ACDD-1.3"], + ["attribute", "NC_GLOBAL", "creator_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "creator_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "date_created", "String", "2020-07-03"], + ["attribute", "NC_GLOBAL", "date_issued", "String", "2020-07-03"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "179.975"], + ["attribute", "NC_GLOBAL", "files", "String", "MB2020153_2020153_chla.nc, MB2020154_2020154_chla.nc, MB2020155_2020155_chla.nc, MB2020156_2020156_chla.nc, MB2020157_2020157_chla.nc, MB2020158_2020158_chla.nc, MB2020159_2020159_chla.nc, MB2020160_2020160_chla.nc, MB2020161_2020161_chla.nc, MB2020162_2020162_chla.nc, MB2020163_2020163_chla.nc, MB2020164_2020164_chla.nc, MB2020165_2020165_chla.nc, MB2020166_2020166_chla.nc, MB2020167_2020167_chla.nc, MB2020168_2020168_chla.nc, MB2020169_2020169_chla.nc, MB2020170_2020170_chla.nc, MB2020171_2020171_chla.nc, MB2020172_2020172_chla.nc, MB2020173_2020173_chla.nc, MB2020174_2020174_chla.nc, MB2020175_2020175_chla.nc, MB2020176_2020176_chla.nc, MB2020177_2020177_chla.nc, MB2020178_2020178_chla.nc, MB2020179_2020179_chla.nc, MB2020180_2020180_chla.nc, MB2020181_2020181_chla.nc, MB2020182_2020182_chla.nc"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "65.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "-45.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_resolution", "double", "0.025"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "179.975"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "-180.0"], + ["attribute", "NC_GLOBAL", "geospatial_lon_resolution", "double", "0.025"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_max", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_min", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_positive", "String", "up"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_units", "String", "m"], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html"], + ["attribute", "NC_GLOBAL", "institution", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "keywords", "String", "altitude, aqua, chemistry, chla, chlorophyll, chlorophyll-a, coast, coastwatch, color, concentration, concentration_of_chlorophyll_in_sea_water, data, degrees, Earth Science > Oceans > Ocean Chemistry > Chlorophyll, experimental, imaging, MBchla, moderate, modis, national, noaa, node, npp, ocean, ocean color, oceans, orbiting, pacific, partnership, polar, polar-orbiting, resolution, sea, seawater, spectroradiometer, time, water, wcn, west"], + ["attribute", "NC_GLOBAL", "keywords_vocabulary", "String", "GCMD Science Keywords"], + ["attribute", "NC_GLOBAL", "license", "String", "The data may be used and redistributed for free but is not intended\nfor legal use, since it may contain inaccuracies. Neither the data\nContributor, ERD, NOAA, nor the United States Government, nor any\nof their employees or contractors, makes any warranty, express or\nimplied, including warranties of merchantability and fitness for a\nparticular purpose, or assumes any legal liability for the accuracy,\ncompleteness, or usefulness, of this information."], + ["attribute", "NC_GLOBAL", "naming_authority", "String", "gov.noaa.pfeg.coastwatch"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "65.0"], + ["attribute", "NC_GLOBAL", "origin", "String", "NASA GSFC (OBPG)"], + ["attribute", "NC_GLOBAL", "processing_level", "String", "3"], + ["attribute", "NC_GLOBAL", "project", "String", "CoastWatch (https://coastwatch.noaa.gov/)"], + ["attribute", "NC_GLOBAL", "projection", "String", "geographic"], + ["attribute", "NC_GLOBAL", "projection_type", "String", "mapped"], + ["attribute", "NC_GLOBAL", "publisher_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "publisher_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "publisher_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "publisher_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "references", "String", "Aqua/MODIS information: https://oceancolor.gsfc.nasa.gov/ . MODIS information: https://coastwatch.noaa.gov/cw_html/OceanColor_NRT_MODIS_Aqua.html ."], + ["attribute", "NC_GLOBAL", "satellite", "String", "Aqua"], + ["attribute", "NC_GLOBAL", "sensor", "String", "MODIS"], + ["attribute", "NC_GLOBAL", "source", "String", "satellite observation: Aqua, MODIS"], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "(local files)"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "-45.0"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v70"], + ["attribute", "NC_GLOBAL", "summary", "String", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner."], + ["attribute", "NC_GLOBAL", "testOutOfDate", "String", "now-60days"], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2020-06-15T12:00:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "2006-01-16T12:00:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (Monthly Composite), Lon+/-180"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "-180.0"], + ["dimension", "time", "", "double", "nValues=171, evenlySpaced=false, averageSpacing=30 days 23h 9m 11s"], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "1.1374128E9, 1.5922224E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "fraction_digits", "int", "0"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Centered Time"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["dimension", "altitude", "", "double", "nValues=1, onlyValue=0.0"], + ["attribute", "altitude", "_CoordinateAxisType", "String", "Height"], + ["attribute", "altitude", "_CoordinateZisPositive", "String", "up"], + ["attribute", "altitude", "actual_range", "double", "0.0, 0.0"], + ["attribute", "altitude", "axis", "String", "Z"], + ["attribute", "altitude", "fraction_digits", "int", "0"], + ["attribute", "altitude", "ioos_category", "String", "Location"], + ["attribute", "altitude", "long_name", "String", "Altitude"], + ["attribute", "altitude", "positive", "String", "up"], + ["attribute", "altitude", "standard_name", "String", "altitude"], + ["attribute", "altitude", "units", "String", "m"], + ["dimension", "latitude", "", "double", "nValues=4401, evenlySpaced=true, averageSpacing=0.025"], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "double", "-45.0, 65.0"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "coordsys", "String", "geographic"], + ["attribute", "latitude", "fraction_digits", "int", "4"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "point_spacing", "String", "even"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["dimension", "longitude", "", "double", "nValues=14400, evenlySpaced=true, averageSpacing=0.025"], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "double", "-180.0, 179.975"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "coordsys", "String", "geographic"], + ["attribute", "longitude", "fraction_digits", "int", "4"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "point_spacing", "String", "even"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "chlorophyll", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "chlorophyll", "_FillValue", "float", "-9999999.0"], + ["attribute", "chlorophyll", "colorBarMaximum", "double", "30.0"], + ["attribute", "chlorophyll", "colorBarMinimum", "double", "0.03"], + ["attribute", "chlorophyll", "colorBarScale", "String", "Log"], + ["attribute", "chlorophyll", "coordsys", "String", "geographic"], + ["attribute", "chlorophyll", "fraction_digits", "int", "2"], + ["attribute", "chlorophyll", "ioos_category", "String", "Ocean Color"], + ["attribute", "chlorophyll", "long_name", "String", "Chlorophyll Concentration in Sea Water"], + ["attribute", "chlorophyll", "missing_value", "float", "-9999999.0"], + ["attribute", "chlorophyll", "standard_name", "String", "concentration_of_chlorophyll_in_sea_water"], + ["attribute", "chlorophyll", "units", "String", "mg m-3"] + ] + } + } + recorded_at: 2020-07-15 22:14:26 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:14:38 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:14:38 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://upwell.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012.graph", "", "", "public", "AIS Ship Traffic: Hawaii: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_hi_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_hi_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_hi_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_hi_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_hi_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_hi_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012.graph", "", "", "public", "AIS Ship Traffic: Johnston Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Johnston Atoll. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_john_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_john_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_john_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_john_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_john_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_john_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012.graph", "", "", "public", "AIS Ship Traffic: Mariana and Wake: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Mariana Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_mari_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_mari_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_mari_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_mari_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_mari_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_mari_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012.graph", "", "", "public", "AIS Ship Traffic: Rose Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Rose Atoll in American Samoa. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_rose_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_rose_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_rose_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_rose_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_rose_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_rose_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom for the most recent 7 days.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_temp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_temp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_temp/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_temp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_temp&showErrors=false&email=", "University of Hawaii", "aco_adcp_temp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Velocity", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean current velocity at the ACO from a 250 kHz SonTek acoustic doppler current profiler (ADCP) at 1.83 m above the ocean bottom for the most recent 7 days. Velocities are flagged bad if the amplitude is excessively low or high. An amplitude is high if it exceeds the average of the ping before and the ping after by 20 counts. An amplitude is low if less than 6 counts. After this the velocities are flagged bad if the absolute deviation of the vertical velocity from its ensemble median exceeds 0.15 m/s or if its value is less than -0.25 m/s.\n\ncdm_data_type = Profile\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each location, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\neastward_sea_water_velocity (current east component, meters/second)\nnorthward_sea_water_velocity (current north component, meters/second)\nupward_sea_water_velocity (current upward component, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_vel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_vel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_vel/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_vel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_vel&showErrors=false&email=", "University of Hawaii", "aco_adcp_vel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://upwell.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF.graph", "", "", "public", "CRRF Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-CRRF: CRRF Weather Station: Palau: Koror: Ngeanges Island)\nair_temperature (Celsius)\nair_temperature_max (maximum air temperature, Celsius)\nair_temperature_max_time (maximum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (minimum air temperature, Celsius)\nair_temperature_min_time (minimum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_std (air temperature standard deviation, Celsius)\nwind_speed (m/s)\nwind_speed_max (gust speed, m/s)\nwind_speed_max_time (gust speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (minimum wind speed, m/s)\nwind_speed_min_time (minimum wind speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_std (wind speed standard deviation, m/s)\nwind_from_direction (wind direction, degrees)\nwind_from_direction_std (wind direction standard deviation, degrees)\nrainfall_amount (total rainfall, mm)\n... (23 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-CRRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-CRRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-CRRF/index.json", "https://www.pacioos.hawaii.edu/weather/obs-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-CRRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-CRRF&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "AWS-CRRF"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_1000genomes/", "public", "File Names from the AWS S3 1000genomes Bucket: 1000 Genomes", "This dataset has file information from the AWS S3 1000genomes bucket at https://1000genomes.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 1000 Genomes\nName2: http://www.internationalgenome.org/formats\nDescription: The 1000 Genomes Project is an international collaboration which has established the most detailed catalogue of human genetic variation, including SNPs, structural variants, and their haplotype context. The final phase of the project sequenced more than 2500 individuals from 26 different populations around the world and produced an integrated set of phased haplotypes with more than 80 million variants for these individuals.\n\nDocumentation: https://docs.opendata.aws/1000genomes/readme.html\nContact: http://www.internationalgenome.org/contact\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_1000genomes/index.json", "https://registry.opendata.aws/1000-genomes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_1000genomes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_1000genomes&showErrors=false&email=", "Amazon Web Services", "awsS3Files_1000genomes"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_3kricegenome/", "public", "File Names from the AWS S3 3kricegenome Bucket: 3000 Rice Genomes Project", "This dataset has file information from the AWS S3 3kricegenome bucket at https://3kricegenome.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 3000 Rice Genomes Project\nName2: http://s3.amazonaws.com/3kricegenome/README-snp_pipeline.txt\nDescription: The 3000 Rice Genome Project is an international effort to sequence the genomes of 3,024 rice varieties from 89 countries.\n\nDocumentation: https://docs.opendata.aws/3kricegenome/readme.html\nContact: http://iric.irri.org/contact-us\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_3kricegenome/index.json", "https://registry.opendata.aws/3kricegenome/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_3kricegenome.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_3kricegenome&showErrors=false&email=", "Amazon Web Services", "awsS3Files_3kricegenome"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aft_vbi_pds/", "public", "File Names from the AWS S3 aft-vbi-pds Bucket: Amazon Bin Image Dataset: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.", "This dataset has file information from the AWS S3 aft-vbi-pds bucket at https://aft-vbi-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Bin Image Dataset\nName2: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.\nDescription: The Amazon Bin Image Dataset contains over 500,000 images and metadata from bins of a pod in an operating Amazon Fulfillment Center. The bin images in this dataset are captured as robot units carry pods as part of normal Amazon Fulfillment Center operations.\n\nDocumentation: https://docs.opendata.aws/aft-vbi-pds/readme.html\nContact: amazon-bin-images@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aft_vbi_pds/index.json", "https://registry.opendata.aws/amazon-bin-imagery/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aft_vbi_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aft_vbi_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aft_vbi_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory/", "public", "File Names from the AWS S3 allen-brain-observatory Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: Project data files in a public bucket", "This dataset has file information from the AWS S3 allen-brain-observatory bucket at https://allen-brain-observatory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: Project data files in a public bucket\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory_templates/", "public", "File Names from the AWS S3 allen-brain-observatory-templates Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: SageMaker launch template with s3fs bucket mounts", "This dataset has file information from the AWS S3 allen-brain-observatory-templates bucket at https://allen-brain-observatory-templates.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: SageMaker launch template with s3fs bucket mounts\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory_templates/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory_templates.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory_templates&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory_templates"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_amazon_reviews_pds/", "public", "File Names from the AWS S3 amazon-reviews-pds Bucket: Amazon Customer Reviews Dataset: TSV files of reviews", "This dataset has file information from the AWS S3 amazon-reviews-pds bucket at https://amazon-reviews-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Customer Reviews Dataset\nName2: TSV files of reviews\nDescription: Amazon Customer Reviews (a.k.a. Product Reviews) is one of Amazon\u2019s iconic products. In a period of over two decades since the first review in 1995, millions of Amazon customers have contributed over a hundred million reviews to express opinions and describe their experiences regarding products on the Amazon.com website. Over 130+ million customer reviews are available to researchers as part of this dataset.\n\nDocumentation: https://s3.amazonaws.com/amazon-reviews-pds/readme.html\nContact: customer-review-dataset@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not defined\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_amazon_reviews_pds/index.json", "https://registry.opendata.aws/amazon-reviews/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_amazon_reviews_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_amazon_reviews_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_amazon_reviews_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_avg_kitti/", "public", "File Names from the AWS S3 avg-kitti Bucket: KITTI Vision Benchmark Suite", "This dataset has file information from the AWS S3 avg-kitti bucket at https://avg-kitti.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: KITTI Vision Benchmark Suite\nName2: http://www.cvlibs.net/datasets/kitti/raw_data.php\nDescription: Dataset and benchmarks for computer vision research in the context of autonomous driving. The dataset has been recorded in and around the city of Karlsruhe, Germany using the mobile platform AnnieWay (VW station wagon) which has been equipped with several RGB and monochrome cameras, a Velodyne HDL 64 laser scanner as well as an accurate RTK corrected GPS/IMU localization unit. The dataset has been created for computer vision and machine learning research on stereo, optical flow, visual odometry, semantic segmentation, semantic instance segmentation, road segmentation, single image depth prediction, depth map completion, 2D and 3D object detection and object tracking. In addition, several raw data recordings are provided. The datasets are captured by driving around the mid-size city of Karlsruhe, in rural areas and on highways. Up to 15 cars and 30 pedestrians are visible per image.\n\nDocumentation: http://www.cvlibs.net/datasets/kitti/\nContact: http://www.cvlibs.net/people.php\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_avg_kitti/index.json", "https://registry.opendata.aws/kitti/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_avg_kitti.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_avg_kitti&showErrors=false&email=", "Amazon Web Services", "awsS3Files_avg_kitti"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/", "public", "File Names from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd Bucket: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)", "This dataset has file information from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd bucket at https://aws-earth-mo-atmospheric-mogreps-g-prd.s3.eu-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts\nName2: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)\nDescription: Meteorological data reusers now have an exciting opportunity to sample, experiment and evaluate Met Office atmospheric model data, whilst also experiencing a transformative method of requesting data via Restful APIs on AWS. All ahead of Met Office\u2019s own operationally supported API platform that will be launched in late 2019.\n\nDocumentation: https://github.com/MetOffice/aws-earth-examples\nContact: https://www.metoffice.gov.uk/about-us/contact\nUpdateFrequency: Daily (with 24 hour delay)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/index.json", "https://registry.opendata.aws/uk-met-office/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_gsod/", "public", "File Names from the AWS S3 aws-gsod Bucket: Global Surface Summary of Day: Measurements and metadata", "This dataset has file information from the AWS S3 aws-gsod bucket at https://aws-gsod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Surface Summary of Day\nName2: Measurements and metadata\nDescription: GSOD is a collection of daily weather measurements (temperature, wind speed, humidity, pressure, and more) from 9000+ weather stations around the world.\n\nDocumentation: https://www.ncdc.noaa.gov/\nContact: https://www.ncdc.noaa.gov/\nUpdateFrequency: Currently updated infrequently. Last updated on September 13, 2016.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_gsod/index.json", "https://registry.opendata.aws/noaa-gsod/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_gsod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_gsod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_gsod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_broad_references/", "public", "File Names from the AWS S3 broad-references Bucket: Broad Genome References: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.", "This dataset has file information from the AWS S3 broad-references bucket at https://broad-references.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Broad Genome References\nName2: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.\nDescription: Broad maintained human genome reference builds hg19/hg38 and decoy references.\n\nDocumentation: https://s3.amazonaws.com/broad-references/broad-references-readme.html\nContact: hensonc@broadinstitute.org\nManagedBy: Broad Institute\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_broad_references/index.json", "https://registry.opendata.aws/broad-references/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_broad_references.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_broad_references&showErrors=false&email=", "Amazon Web Services", "awsS3Files_broad_references"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cbers_meta_pds/", "public", "File Names from the AWS S3 cbers-meta-pds Bucket: CBERS on AWS: CBERS metadata (Quicklooks, metadata)", "This dataset has file information from the AWS S3 cbers-meta-pds bucket at https://cbers-meta-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CBERS on AWS\nName2: CBERS metadata (Quicklooks, metadata)\nDescription: This project creates a S3 repository with imagery acquired by the China-Brazil Earth Resources Satellite (CBERS). The image files are recorded and processed by Instituto Nacional de Pesquisa Espaciais (INPE) and are converted to Cloud Optimized Geotiff format in order to optimize its use for cloud based applications. The repository contains all CBERS-4 MUX, AWFI, PAN5M and PAN10M scenes acquired since the start of the satellite mission and is daily updated with new scenes.\n\nDocumentation: https://github.com/fredliporace/cbers-on-aws\nContact: https://lists.osgeo.org/mailman/listinfo/cbers-pds\nManagedBy: [AMS Kepler](https://amskepler.com/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cbers_meta_pds/index.json", "https://registry.opendata.aws/cbers/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cbers_meta_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cbers_meta_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cbers_meta_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cgiardata/", "public", "File Names from the AWS S3 cgiardata Bucket: CCAFS-Climate Data: ARC GRID, and ARC ASCII format compressed", "This dataset has file information from the AWS S3 cgiardata bucket at https://cgiardata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CCAFS-Climate Data\nName2: ARC GRID, and ARC ASCII format compressed\nDescription: High resolution climate data to help assess the impacts of climate change primarily on agriculture. These open access datasets of climate projections will help researchers make climate change impact assessments.\n\nDocumentation: http://www.ccafs-climate.org\nContact: http://www.ccafs-climate.org/contact/\nUpdateFrequency: Every three months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cgiardata/index.json", "https://registry.opendata.aws/cgiardata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cgiardata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cgiardata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cgiardata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_commoncrawl/", "public", "File Names from the AWS S3 commoncrawl Bucket: Common Crawl: Crawl data (WARC and ARC format)", "This dataset has file information from the AWS S3 commoncrawl bucket at https://commoncrawl.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Common Crawl\nName2: Crawl data (WARC and ARC format)\nDescription: A corpus of web crawl data composed of over 25 billion web pages.\n\nDocumentation: http://commoncrawl.org/the-data/get-started/\nContact: http://commoncrawl.org/connect/contact-us/\nManagedBy: [Common Crawl](http://commoncrawl.org/)\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_commoncrawl/index.json", "https://registry.opendata.aws/commoncrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_commoncrawl.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_commoncrawl&showErrors=false&email=", "Amazon Web Services", "awsS3Files_commoncrawl"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cornell_eas_data_lake/", "public", "File Names from the AWS S3 cornell-eas-data-lake Bucket: Cornell EAS Data Lake: Cornell EAS Data Lake", "This dataset has file information from the AWS S3 cornell-eas-data-lake bucket at https://cornell-eas-data-lake.s3.us-east-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cornell EAS Data Lake\nName2: Cornell EAS Data Lake\nDescription: Earth & Atmospheric Sciences at Cornell University has created a public data lake of climate data. The data is stored in columnar storage formats (ORC) to make it straightforward to query using standard tools like Amazon Athena or Apache Spark. The data itself is originally intended to be used for building decision support tools for farmers and digital agriculture. The first dataset is the historical NDFD / NDGD data distributed by NCEP / NOAA / NWS. The NDFD (National Digital Forecast Database) and NDGD (National Digital Guidance Database) contain gridded forecasts and observations at 2.5km resolution for the Contiguous United States (CONUS). There are also 5km grids for several smaller US regions and non-continguous territories, such as Hawaii, Guam, Puerto Rico and Alaska. NOAA distributes archives of the NDFD/NDGD via its NOAA Operational Model Archive and Distribution System (NOMADS) in Grib2 format. The data has been converted to ORC to optimize storage space and to, more importantly, simplify data access via standard data analytics tools.\n\nDocumentation: https://datalake.eas.cornell.edu/\nContact: digitalag@cornell.edu\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cornell_eas_data_lake/index.json", "https://registry.opendata.aws/cornell-eas-data-lake/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cornell_eas_data_lake.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cornell_eas_data_lake&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cornell_eas_data_lake"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cse_cic_ids2018/", "public", "File Names from the AWS S3 cse-cic-ids2018 Bucket: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018): Network traffic and log files", "This dataset has file information from the AWS S3 cse-cic-ids2018 bucket at https://cse-cic-ids2018.s3.ca-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018)\nName2: Network traffic and log files\nDescription: This dataset is the result of a collaborative project between the Communications Security Establishment (CSE) and The Canadian Institute for Cybersecurity (CIC) that use the notion of profiles to generate cybersecurity dataset in a systematic manner. It incluides a detailed description of intrusions along with abstract distribution models for applications, protocols, or lower level network entities. The dataset includes seven different attack scenarios, namely Brute-force, Heartbleed, Botnet, DoS, DDoS, Web attacks, and infiltration of the network from inside. The attacking infrastructure includes 50 machines and the victim organization has 5 departments includes 420 PCs and 30 servers. This dataset includes the network traffic and log files of each machine from the victim side, along with 80 network traffic features extracted from captured traffic using CICFlowMeter-V3. For more information on the creation of this dataset, see this paper by researchers at the Canadian Institute for Cybersecurity (CIC) and the University of New Brunswick (UNB): [Toward Generating a New Intrusion Detection Dataset and Intrusion Traffic Characterization](http://www.scitepress.org/Papers/2018/66398/66398.pdf).\n\nDocumentation: http://www.unb.ca/cic/datasets/ids-2018.html\nContact: CIC@unb.ca\nUpdateFrequency: Annualy\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cse_cic_ids2018/index.json", "https://registry.opendata.aws/cse-cic-ids2018/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cse_cic_ids2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cse_cic_ids2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cse_cic_ids2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cytodata/", "public", "File Names from the AWS S3 cytodata Bucket: Cell Painting Image Collection: Images, extracted features and aggregated profiles are available as a S3 bucket", "This dataset has file information from the AWS S3 cytodata bucket at https://cytodata.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cell Painting Image Collection\nName2: Images, extracted features and aggregated profiles are available as a S3 bucket\nDescription: The Cell Painting Image Collection is a collection of freely downloadable microscopy image sets. Cell Painting is an unbiased high throughput imaging assay used to analyze perturbations in cell models. In addition to the images themselves, each set includes a description of the biological application and some type of \"ground truth\" (expected results). Researchers are encouraged to use these image sets as reference points when developing, testing, and publishing new image analysis algorithms for the life sciences. We hope that the this data set will lead to a better understanding of which methods are best for various biological image analysis applications.\n\nDocumentation: https://github.com/cytodata/cytodata-hackathon-2018\nContact: Post on https://forum.image.sc/ and tag with \"cellpainting\"\nUpdateFrequency: irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cytodata/index.json", "https://registry.opendata.aws/cell-painting-image-collection/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cytodata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cytodata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cytodata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_czb_tabula_muris/", "public", "File Names from the AWS S3 czb-tabula-muris Bucket: Tabula Muris", "This dataset has file information from the AWS S3 czb-tabula-muris bucket at https://czb-tabula-muris.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Tabula Muris\nName2: https://github.com/czbiohub/tabula-muris\nDescription: Tabula Muris is a compendium of single cell transcriptomic data from the model organism *Mus musculus* comprising more than 100,000 cells from 20 organs and tissues. These data represent a new resource for cell biology, reveal gene expression in poorly characterized cell populations, and allow for direct and controlled comparison of gene expression in cell types shared between tissues, such as T-lymphocytes and endothelial cells from different anatomical locations. Two distinct technical approaches were used for most organs: one approach, microfluidic droplet-based 3\u2019-end counting, enabled the survey of thousands of cells at relatively low coverage, while the other, FACS-based full length transcript analysis, enabled characterization of cell types with high sensitivity and coverage. The cumulative data provide the foundation for an atlas of transcriptomic cell biology. See: https://www.nature.com/articles/s41586-018-0590-4\n\nDocumentation: https://github.com/czbiohub/tabula-muris/blob/master/tabula-muris-on-aws.md\nContact: If you have questions about the data, you can create an Issue at https://github.com/czbiohub/tabula-muris.\nManagedBy: [Chan Zuckerberg Biohub](https://www.czbiohub.org/)\nUpdateFrequency: This is the final version of the dataset, it will not be updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_czb_tabula_muris/index.json", "https://registry.opendata.aws/tabula-muris/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_czb_tabula_muris.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_czb_tabula_muris&showErrors=false&email=", "Amazon Web Services", "awsS3Files_czb_tabula_muris"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataforgood_fb_data/", "public", "File Names from the AWS S3 dataforgood-fb-data Bucket: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook: CSV and Cloud-optimized GeoTIFF files", "This dataset has file information from the AWS S3 dataforgood-fb-data bucket at https://dataforgood-fb-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook\nName2: CSV and Cloud-optimized GeoTIFF files\nDescription: Population data for a selection of countries, allocated to 1 arcsecond blocks and provided in a combination of CSV and Cloud-optimized GeoTIFF files. This refines [CIESIN\u2019s Gridded Population of the World](https://sedac.ciesin.columbia.edu/data/collection/gpw-v4) using machine learning models on high-resolution worldwide Digital Globe satellite imagery. CIESIN population counts aggregated from worldwide census data are allocated to blocks where imagery appears to contain buildings.\n\nDocumentation: [Project overview](https://dataforgood.fb.com/population-density-maps-documentation/) and [dataset description](https://docs.opendata.aws/dataforgood-fb-data/readme.html)\nContact: disastermaps@fb.com\nManagedBy: |\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataforgood_fb_data/index.json", "https://registry.opendata.aws/dataforgood-fb-hrsl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataforgood_fb_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataforgood_fb_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataforgood_fb_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_datasets_elasticmapreduce_ngrams_books/", "public", "File Names from the AWS S3 datasets.elasticmapreduce Bucket with prefix=ngrams/books/: Google Books Ngrams: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.", "This dataset has file information from the AWS S3 datasets.elasticmapreduce bucket at https://datasets.elasticmapreduce.s3.us-east-1.amazonaws.com/ with prefix=ngrams/books/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Google Books Ngrams\nName2: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.\nDescription: N-grams are fixed size tuples of items. In this case the items are words extracted from the Google Books corpus. The n specifies the number of elements in the tuple, so a 5-gram contains five words or characters. The n-grams in this dataset were produced by passing a sliding window of the text of books and outputting a record for each new token.\n\nDocumentation: http://books.google.com/ngrams/\nContact: https://books.google.com/ngrams\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_datasets_elasticmapreduce_ngrams_books/index.json", "https://registry.opendata.aws/google-ngrams/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_datasets_elasticmapreduce_ngrams_books.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_datasets_elasticmapreduce_ngrams_books&showErrors=false&email=", "Amazon Web Services", "awsS3Files_datasets_elasticmapreduce_ngrams_books"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataworld_linked_acs/", "public", "File Names from the AWS S3 dataworld-linked-acs Bucket: U.S. Census ACS PUMS: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.", "This dataset has file information from the AWS S3 dataworld-linked-acs bucket at https://dataworld-linked-acs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: U.S. Census ACS PUMS\nName2: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.\nDescription: U.S. Census Bureau American Community Survey (ACS) Public Use Microdata Sample (PUMS) available in a linked data format using the Resource Description Framework (RDF) data model.\n\nDocumentation: https://docs.data.world/uscensus/#american-community-survey-linked-open-data\nContact: https://docs.data.world/uscensus/#60---contact\nUpdateFrequency: Yearly, after ACS 1-year PUMS raw data are released\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataworld_linked_acs/index.json", "https://registry.opendata.aws/census-dataworld-pums/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataworld_linked_acs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataworld_linked_acs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataworld_linked_acs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2015/", "public", "File Names from the AWS S3 dc-lidar-2015 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML, SHP", "This dataset has file information from the AWS S3 dc-lidar-2015 bucket at https://dc-lidar-2015.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML, SHP\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2015/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2015.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2015&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2015"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2018/", "public", "File Names from the AWS S3 dc-lidar-2018 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML", "This dataset has file information from the AWS S3 dc-lidar-2018 bucket at https://dc-lidar-2018.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2018/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_eurex_pds/", "public", "File Names from the AWS S3 deutsche-boerse-eurex-pds Bucket: Deutsche B\u00f6rse Public Dataset: Eurex PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-eurex-pds bucket at https://deutsche-boerse-eurex-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Eurex PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_eurex_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_eurex_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_eurex_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_eurex_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_xetra_pds/", "public", "File Names from the AWS S3 deutsche-boerse-xetra-pds Bucket: Deutsche B\u00f6rse Public Dataset: Xetra PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-xetra-pds bucket at https://deutsche-boerse-xetra-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Xetra PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_xetra_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_xetra_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_xetra_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_xetra_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ebirdst_data/", "public", "File Names from the AWS S3 ebirdst-data Bucket: eBird Status and Trends Model Results: Species results files", "This dataset has file information from the AWS S3 ebirdst-data bucket at https://ebirdst-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: eBird Status and Trends Model Results\nName2: Species results files\nDescription: The eBird Status and Trends project generates estimates of bird occurrence and abundance at a high spatiotemporal resolution. This dataset represents the primary modeled results from the analysis workflow and are designed for further analysis, synthesis, visualization, and exploration.\n\nDocumentation: https://cornelllabofornithology.github.io/ebirdst/articles/ebirdst-introduction.html\nContact: https://help.ebird.org/customer/en/portal/emails/new\nManagedBy: [Cornell Lab of Ornithology](https://www.birds.cornell.edu/home/)\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ebirdst_data/index.json", "https://registry.opendata.aws/ebirdst/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ebirdst_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ebirdst_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ebirdst_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_elevation_tiles_prod/", "public", "File Names from the AWS S3 elevation-tiles-prod Bucket: Terrain Tiles: Gridded elevation tiles", "This dataset has file information from the AWS S3 elevation-tiles-prod bucket at https://elevation-tiles-prod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Terrain Tiles\nName2: Gridded elevation tiles\nDescription: A global dataset providing bare-earth terrain heights, tiled for easy usage and provided on S3.\n\nDocumentation: https://mapzen.com/documentation/terrain-tiles/\nContact: https://github.com/tilezen/joerd/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_elevation_tiles_prod/index.json", "https://registry.opendata.aws/terrain-tiles/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_elevation_tiles_prod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_elevation_tiles_prod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_elevation_tiles_prod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_encode_public/", "public", "File Names from the AWS S3 encode-public Bucket: Encyclopedia of DNA Elements (ENCODE): Released and archived ENCODE data", "This dataset has file information from the AWS S3 encode-public bucket at https://encode-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Encyclopedia of DNA Elements (ENCODE)\nName2: Released and archived ENCODE data\nDescription: The Encyclopedia of DNA Elements (ENCODE) Consortium is an international collaboration of research groups funded by the National Human Genome Research Institute (NHGRI). The goal of ENCODE is to build a comprehensive parts list of functional elements in the human genome, including elements that act at the protein and RNA levels, and regulatory elements that control cells and circumstances in which a gene is active. ENCODE investigators employ a variety of assays and methods to identify functional elements. The discovery and annotation of gene elements is accomplished primarily by sequencing a diverse range of RNA sources, comparative genomics, integrative bioinformatic methods, and human curation. Regulatory elements are typically investigated through DNA hypersensitivity assays, assays of DNA methylation, and immunoprecipitation (IP) of proteins that interact with DNA and RNA, i.e., modified histones, transcription factors, chromatin regulators, and RNA-binding proteins, followed by sequencing.\n\nDocumentation: https://www.encodeproject.org\nContact: encode-help@lists.stanford.edu\nManagedBy: ENCODE Data Coordinating Center\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_encode_public/index.json", "https://registry.opendata.aws/encode-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_encode_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_encode_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_encode_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_epa_rsei_pds/", "public", "File Names from the AWS S3 epa-rsei-pds Bucket: EPA Risk-Screening Environmental Indicators: RSEI Microdata", "This dataset has file information from the AWS S3 epa-rsei-pds bucket at https://epa-rsei-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: EPA Risk-Screening Environmental Indicators\nName2: RSEI Microdata\nDescription: Detailed air model results from EPA\u2019s Risk-Screening Environmental Indicators (RSEI) model.\n\nDocumentation: https://docs.opendata.aws/epa-rsei-pds/readme.html\nContact: https://www.epa.gov/rsei/forms/contact-us-about-rsei-model\nUpdateFrequency: Updated infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_epa_rsei_pds/index.json", "https://registry.opendata.aws/epa-rsei-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_epa_rsei_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_epa_rsei_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_epa_rsei_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_era5_pds/", "public", "File Names from the AWS S3 era5-pds Bucket: ECMWF ERA5 Reanalysis: ERA5 Reanalysis NetCDF 4 files", "This dataset has file information from the AWS S3 era5-pds bucket at https://era5-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ECMWF ERA5 Reanalysis\nName2: ERA5 Reanalysis NetCDF 4 files\nDescription: ERA5 is the fifth generation of ECMWF atmospheric reanalyses of the global climate, and the first reanalysis produced as an operational service. It utilizes the best available observation data from satellites and in-situ stations, which are assimilated and processed using ECMWF's Integrated Forecast System (IFS) Cycle 41r2. The dataset provides all essential atmospheric meteorological parameters like, but not limited to, air temperature, pressure and wind at different altitudes, along with surface parameters like rainfall, soil moisture content and sea parameters like sea-surface temperature and wave height. ERA5 provides data at a considerably higher spatial and temporal resolution than its legacy counterpart ERA-Interim. ERA5 consists of high resolution version with 31 km horizontal resolution, and a reduced resolution ensemble version with 10 members. It is currently available since 2008, but will be continuously extended backwards, first until 1979 and then to 1950. Learn more about ERA5 in Jon Olauson's paper [ERA5: The new champion of wind power modelling?](https://www.researchgate.net/publication/320084119_ERA5_The_new_champion_of_wind_power_modelling).\n\nDocumentation: https://github.com/planet-os/notebooks/blob/master/aws/era5-pds.md\nContact: datahub@intertrust.com\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_era5_pds/index.json", "https://registry.opendata.aws/ecmwf-era5/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_era5_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_era5_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_era5_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_coco/", "public", "File Names from the AWS S3 fast-ai-coco Bucket: COCO - Common Objects in Context - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-coco bucket at https://fast-ai-coco.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: COCO - Common Objects in Context - fast.ai datasets\nName2: Datasets\nDescription: COCO is a large-scale object detection, segmentation, and captioning dataset. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. If you use this dataset in your research please cite arXiv:1405.0312 [cs.CV].\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_coco/index.json", "https://registry.opendata.aws/fast-ai-coco/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_coco.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_coco&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_coco"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imageclas/", "public", "File Names from the AWS S3 fast-ai-imageclas Bucket: Image classification - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imageclas bucket at https://fast-ai-imageclas.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image classification - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image classification research, including CIFAR 10 and 100, Caltech 101, MNIST, Food-101, Oxford-102-Flowers, Oxford-IIIT-Pets, and Stanford-Cars. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imageclas/index.json", "https://registry.opendata.aws/fast-ai-imageclas/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imageclas.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imageclas&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imageclas"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imagelocal/", "public", "File Names from the AWS S3 fast-ai-imagelocal Bucket: Image localization - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imagelocal bucket at https://fast-ai-imagelocal.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image localization - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image localization research, including Camvid and PASCAL VOC (2007 and 2012). This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imagelocal/index.json", "https://registry.opendata.aws/fast-ai-imagelocal/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imagelocal.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imagelocal&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imagelocal"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_nlp/", "public", "File Names from the AWS S3 fast-ai-nlp Bucket: NLP - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-nlp bucket at https://fast-ai-nlp.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NLP - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for NLP, with a focus on classification, including IMDb, AG-News, Amazon Reviews (polarity and full), Yelp Reviews (polarity and full), Dbpedia, Sogou News (Pinyin), Yahoo Answers, Wikitext 2 and Wikitext 103, and ACL-2010 French-English 10^9 corpus. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_nlp/index.json", "https://registry.opendata.aws/fast-ai-nlp/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_nlp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_nlp&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_nlp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib Bucket: HIRLAM Weather Model: Pressure GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib bucket at https://fmi-opendata-rcrhirlam-pressure-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Pressure GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_pressure_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_pressure_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-surface-grib Bucket: HIRLAM Weather Model: Surface GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-surface-grib bucket at https://fmi-opendata-rcrhirlam-surface-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Surface GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_surface_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_surface_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gatk_test_data/", "public", "File Names from the AWS S3 gatk-test-data Bucket: GATK Test Data: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.", "This dataset has file information from the AWS S3 gatk-test-data bucket at https://gatk-test-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GATK Test Data\nName2: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.\nDescription: The GATK test data resource bundle is a collection of files for resequencing human genomic data with the Broad Institute's [Genome Analysis Toolkit (GATK)](https://software.broadinstitute.org/gatk/).\n\nDocumentation: https://s3.amazonaws.com/gatk-test-data/gatk-test-data-readme.html\nContact: https://gatkforums.broadinstitute.org/gatk\nManagedBy: Broad Institute\nUpdateFrequency: Every 3 months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gatk_test_data/index.json", "https://registry.opendata.aws/gatk-test-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gatk_test_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gatk_test_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gatk_test_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gdelt_open_data/", "public", "File Names from the AWS S3 gdelt-open-data Bucket: Global Database of Events, Language and Tone (GDELT): Project data files", "This dataset has file information from the AWS S3 gdelt-open-data bucket at https://gdelt-open-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Database of Events, Language and Tone (GDELT)\nName2: Project data files\nDescription: This project monitors the world's broadcast, print, and web news from nearly every corner of every country in over 100 languages and identifies the people, locations, organizations, counts, themes, sources, emotions, quotes, images and events driving our global society every second of every day.\n\nDocumentation: http://www.gdeltproject.org/\nContact: http://www.gdeltproject.org/about.html#contact\nUpdateFrequency: Not currently being updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gdelt_open_data/index.json", "https://registry.opendata.aws/gdelt/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gdelt_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gdelt_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gdelt_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_genomeark/", "public", "File Names from the AWS S3 genomeark Bucket: Genome Ark", "This dataset has file information from the AWS S3 genomeark bucket at https://genomeark.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome Ark\nName2: https://vgp.github.io\nDescription: The Genome Ark hosts genomic information for the Vertebrate Genomes Project (VGP) and other related projects. The VGP is an international collaboration that aims to generate complete and near error-free reference genomes for all extant vertebrate species. These genomes will be used to address fundamental questions in biology and disease, to identify species most genetically at risk for extinction, and to preserve genetic information of life.\n\nDocumentation: https://vertebrategenomesproject.org\nContact: Erich Jarvis \nManagedBy: The Genome10K community of scientists\nUpdateFrequency: Data will be continually updated as it is generated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_genomeark/index.json", "https://registry.opendata.aws/genomeark/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_genomeark.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_genomeark&showErrors=false&email=", "Amazon Web Services", "awsS3Files_genomeark"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_giab/", "public", "File Names from the AWS S3 giab Bucket: Genome in a Bottle on AWS: Latest data", "This dataset has file information from the AWS S3 giab bucket at https://giab.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome in a Bottle on AWS\nName2: Latest data\nDescription: Several reference genomes to enable translation of whole human genome sequencing to clinical practice.\n\nDocumentation: https://docs.opendata.aws/giab/readme.html\nContact: http://genomeinabottle.org/\nUpdateFrequency: New data are added as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_giab/index.json", "https://registry.opendata.aws/giab/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_giab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_giab&showErrors=false&email=", "Amazon Web Services", "awsS3Files_giab"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gmsdata/", "public", "File Names from the AWS S3 gmsdata Bucket: The Genome Modeling System", "This dataset has file information from the AWS S3 gmsdata bucket at https://gmsdata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Genome Modeling System\nName2: https://gmsdata.s3.amazonaws.com/INDEX.html\nDescription: The Genome Institute at Washington University has developed a high-throughput, fault-tolerant analysis information management system called the Genome Modeling System (GMS), capable of executing complex, interdependent, and automated genome analysis pipelines at a massive scale. The GMS framework provides detailed tracking of samples and data coupled with reliable and repeatable analysis pipelines. GMS includes a full system image with software and services, expandable from one workstation to a large compute cluster.\n\nDocumentation: https://github.com/genome/gms/wiki\nContact: https://github.com/genome/gms/issues\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gmsdata/index.json", "https://registry.opendata.aws/gmsdata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gmsdata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gmsdata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gmsdata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_grillo_openeew/", "public", "File Names from the AWS S3 grillo-openeew Bucket: OpenEEW: OpenEEW", "This dataset has file information from the AWS S3 grillo-openeew bucket at https://grillo-openeew.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenEEW\nName2: OpenEEW\nDescription: Grillo has developed an IoT-based earthquake early-warning system in Mexico and Chile and is now opening its entire archive of unprocessed accelerometer data to the world to encourage the development of new algorithms capable of rapidly detecting and characterizing earthquakes in real time.\n\nDocumentation: https://github.com/grillo/openeew\nContact: openeew@grillo.io\nManagedBy: [Grillo](https://grillo.io/)\nUpdateFrequency: Approximately every 10 minutes\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_grillo_openeew/index.json", "https://registry.opendata.aws/grillo-openeew/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_grillo_openeew.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_grillo_openeew&showErrors=false&email=", "Amazon Web Services", "awsS3Files_grillo_openeew"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_microbiome_project/", "public", "File Names from the AWS S3 human-microbiome-project Bucket: The Human Microbiome Project", "This dataset has file information from the AWS S3 human-microbiome-project bucket at https://human-microbiome-project.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Human Microbiome Project\nName2: https://aws.amazon.com/datasets/human-microbiome-project/\nDescription: The NIH-funded Human Microbiome Project (HMP) is a collaborative effort of over 300 scientists from more than 80 organizations to comprehensively characterize the microbial communities inhabiting the human body and elucidate their role in human health and disease. To accomplish this task, microbial community samples were isolated from a cohort of 300 healthy adult human subjects at 18 specific sites within five regions of the body (oral cavity, airways, urogenital track, skin, and gut). Targeted sequencing of the 16S bacterial marker gene and/or whole metagenome shotgun sequencing was performed for thousands of these samples. In addition, whole genome sequences were generated for isolate strains collected from human body sites to act as reference organisms for analysis. Finally, 16S marker and whole metagenome sequencing was also done on additional samples from people suffering from several disease conditions.\n\nDocumentation: https://commonfund.nih.gov/hmp\nContact: https://commonfund.nih.gov/hmp/related_activities\nUpdateFrequency: Uncertain\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_microbiome_project/index.json", "https://registry.opendata.aws/human-microbiome-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_microbiome_project.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_microbiome_project&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_microbiome_project"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_pangenomics/", "public", "File Names from the AWS S3 human-pangenomics Bucket: Human PanGenomics Project: Human PanGenomics Project", "This dataset has file information from the AWS S3 human-pangenomics bucket at https://human-pangenomics.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Human PanGenomics Project\nName2: Human PanGenomics Project\nDescription: This dataset includes sequencing data, assemblies, and analyses for the offspring of ten parent-offspring trios.\n\nDocumentation: https://github.com/human-pangenomics/hpgp-data\nContact: https://github.com/human-pangenomics/hpgp-data/issues\nUpdateFrequency: Data will be added and updated as technologies improve or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_pangenomics/index.json", "https://registry.opendata.aws/hpgp-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_pangenomics.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_pangenomics&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_pangenomics"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/", "public", "File Names from the AWS S3 ichangemycity-janaagraha-complaints-data-aws Bucket: IChangeMyCity Complaints Data from Janaagraha: IChangeMyCity Complaints", "This dataset has file information from the AWS S3 ichangemycity-janaagraha-complaints-data-aws bucket at https://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IChangeMyCity Complaints Data from Janaagraha\nName2: IChangeMyCity Complaints\nDescription: The [IChangeMyCity](https://www.ichangemycity.com) project provides insight into the complaints raised by citizens from diffent cities of India related to the issues in their neighbourhoods and the resolution of the same by the civic bodies.\n\nDocumentation: http://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/readme.html\nContact: data@janaagraha.org\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/index.json", "https://registry.opendata.aws/ichangemycity/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ichangemycity_janaagraha_complaints_data_aws&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ichangemycity_janaagraha_complaints_data_aws"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_irs_990_spreadsheets/", "public", "File Names from the AWS S3 irs-990-spreadsheets Bucket: IRS 990 Filings (Spreadsheets): Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form", "This dataset has file information from the AWS S3 irs-990-spreadsheets bucket at https://irs-990-spreadsheets.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IRS 990 Filings (Spreadsheets)\nName2: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form\nDescription: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form. Additional fields being added regularly.\n\nDocumentation: https://appliednonprofitresearch.com/documentation/irs-990-spreadsheets\nContact: [info@appliednonprofitresearch.com](info@appliednonprofitresearch.com)\nManagedBy: [Applied Nonprofit Research, LLC](https://www.appliednonprofitresearch.com/)\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_irs_990_spreadsheets/index.json", "https://registry.opendata.aws/990-spreadsheets/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_irs_990_spreadsheets.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_irs_990_spreadsheets&showErrors=false&email=", "Amazon Web Services", "awsS3Files_irs_990_spreadsheets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lab41openaudiocorpus/", "public", "File Names from the AWS S3 lab41openaudiocorpus Bucket: Voices Obscured in Complex Environmental Settings (VOiCES): wav audio files, orthographic transcriptions, and speaker ID", "This dataset has file information from the AWS S3 lab41openaudiocorpus bucket at https://lab41openaudiocorpus.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Voices Obscured in Complex Environmental Settings (VOiCES)\nName2: wav audio files, orthographic transcriptions, and speaker ID\nDescription: VOiCES is a speech corpus recorded in acoustically challenging settings, using distant microphone recording. Speech was recorded in real rooms with various acoustic features (reverb, echo, HVAC systems, outside noise, etc.). Adversarial noise, either television, music, or babble, was concurrently played with clean speech. Data was recorded using multiple microphones strategically placed throughout the room. The corpus includes audio recordings, orthographic transcriptions, and speaker labels.\n\nDocumentation: https://voices18.github.io/\nContact: https://github.com/voices18/utilities/issues\nUpdateFrequency: Data from two additional rooms will be added to the corpus Fall 2018.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lab41openaudiocorpus/index.json", "https://registry.opendata.aws/lab41-sri-voices/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lab41openaudiocorpus.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lab41openaudiocorpus&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lab41openaudiocorpus"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds/", "public", "File Names from the AWS S3 landsat-pds Bucket: Landsat 8: Scenes and metadata", "This dataset has file information from the AWS S3 landsat-pds bucket at https://landsat-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: Scenes and metadata\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds_inventory/", "public", "File Names from the AWS S3 landsat-pds-inventory Bucket: Landsat 8: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)", "This dataset has file information from the AWS S3 landsat-pds-inventory bucket at https://landsat-pds-inventory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds_inventory/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds_inventory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds_inventory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds_inventory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lofar_elais_n1/", "public", "File Names from the AWS S3 lofar-elais-n1 Bucket: LOFAR ELAIS-N1 cycle 2 observations on AWS: LOFAR ELAIS-N1 cycle 2 observations", "This dataset has file information from the AWS S3 lofar-elais-n1 bucket at https://lofar-elais-n1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: LOFAR ELAIS-N1 cycle 2 observations on AWS\nName2: LOFAR ELAIS-N1 cycle 2 observations\nDescription: These data correspond to the [International LOFAR Telescope](http://www.lofar.org/) observations of the sky field ELAIS-N1 (16:10:01 +54:30:36) during the cycle 2 of observations. There are 11 runs of about 8 hours each plus the corresponding observation of the calibration targets before and after the target field. The data are measurement sets ([MS](https://casa.nrao.edu/Memos/229.html)) containing the cross-correlated data and metadata divided in 371 frequency sub-bands per target centred at ~150 MHz.\n\nDocumentation: https://www.lofarcloud.uk/data.html\nContact: https://www.lofarcloud.uk/\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lofar_elais_n1/index.json", "https://registry.opendata.aws/lofar-elais-n1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lofar_elais_n1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lofar_elais_n1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lofar_elais_n1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mf_nwp_models/", "public", "File Names from the AWS S3 mf-nwp-models Bucket: Atmospheric Models from M\u00e9t\u00e9o-France: Atmospheric Models from M\u00e9t\u00e9o-France", "This dataset has file information from the AWS S3 mf-nwp-models bucket at https://mf-nwp-models.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Atmospheric Models from M\u00e9t\u00e9o-France\nName2: Atmospheric Models from M\u00e9t\u00e9o-France\nDescription: Global and high-resolution regional atmospheric models from M\u00e9t\u00e9o-France.\n\nDocumentation: https://mf-models-on-aws.org\nContact: contact@openmeteodata.com\nManagedBy: [OpenMeteoData](https://openmeteodata.com)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mf_nwp_models/index.json", "https://registry.opendata.aws/meteo-france-models/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mf_nwp_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mf_nwp_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mf_nwp_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_modis_pds/", "public", "File Names from the AWS S3 modis-pds Bucket: MODIS on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 modis-pds bucket at https://modis-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: MODIS on AWS\nName2: Imagery and metadata\nDescription: Select products from the Moderate Resolution Imaging Spectroradiometer (MODIS) managed by the U.S. Geological Survey and NASA.\n\nDocumentation: https://docs.opendata.aws/modis-pds/readme.html\nContact: https://github.com/AstroDigital/modis-ingestor/issues\nUpdateFrequency: New MODIS data is added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_modis_pds/index.json", "https://registry.opendata.aws/modis/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_modis_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_modis_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_modis_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_multimedia_commons/", "public", "File Names from the AWS S3 multimedia-commons Bucket: Multimedia Commons: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.", "This dataset has file information from the AWS S3 multimedia-commons bucket at https://multimedia-commons.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Multimedia Commons\nName2: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.\nDescription: The Multimedia Commons is a collection of audio and visual features computed for the nearly 100 million Creative Commons-licensed Flickr images and videos in the YFCC100M dataset from Yahoo! Labs, along with ground-truth annotations for selected subsets. The International Computer Science Institute (ICSI) and Lawrence Livermore National Laboratory are producing and distributing a core set of derived feature sets and annotations as part of an effort to enable large-scale video search capabilities. They have released this feature corpus into the public domain, under Creative Commons License 0, so it is free for anyone to use for any purpose.\n\nDocumentation: https://multimediacommons.wordpress.com/yfcc100m-core-dataset/\nContact: multimedia-commons@icsi.berkeley.edu\nUpdateFrequency: Not updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_multimedia_commons/index.json", "https://registry.opendata.aws/multimedia-commons/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_multimedia_commons.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_multimedia_commons&showErrors=false&email=", "Amazon Web Services", "awsS3Files_multimedia_commons"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mwapublic/", "public", "File Names from the AWS S3 mwapublic Bucket: Epoch of Reionization Dataset: Selected MWA EoR data (uvfits format) from 2013-2015", "This dataset has file information from the AWS S3 mwapublic bucket at https://mwapublic.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Epoch of Reionization Dataset\nName2: Selected MWA EoR data (uvfits format) from 2013-2015\nDescription: The data are from observations with the Murchison Widefield Array (MWA) which is a Square Kilometer Array (SKA) precursor in Western Australia. This particular dataset is from the Epoch of Reionization project which is a key science driver of the SKA. Nearly 2PB of such observations have been recorded to date, this is a small subset of that which has been exported from the MWA data archive in Perth and made available to the public on AWS. The data were taken to detect signatures of the first stars and galaxies forming and the effect of these early stars and galaxies on the evolution of the universe.\n\nDocumentation: http://danielcjacobs.com/research/epoch-of-reionization-aws-public-dataset/\nContact: brynah (at) phys.washington.edu\nManagedBy: University of washington Radio Cosmology Group\nUpdateFrequency: Irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mwapublic/index.json", "https://registry.opendata.aws/epoch-of-reionization/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mwapublic.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mwapublic&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mwapublic"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nanopore_human_wgs/", "public", "File Names from the AWS S3 nanopore-human-wgs Bucket: Nanopore Reference Human Genome: Nanopore Reference Human Genome", "This dataset has file information from the AWS S3 nanopore-human-wgs bucket at https://nanopore-human-wgs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Nanopore Reference Human Genome\nName2: Nanopore Reference Human Genome\nDescription: This dataset includes the sequencing and assembly of a reference standard human genome (GM12878) using the MinION nanopore sequencing instrument with the R9.4 1D chemistry.\n\nDocumentation: https://github.com/nanopore-wgs-consortium/NA12878\nContact: https://github.com/nanopore-wgs-consortium/NA12878/issues\nUpdateFrequency: Data will be added as methodology improves or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nanopore_human_wgs/index.json", "https://registry.opendata.aws/nanopore/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nanopore_human_wgs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nanopore_human_wgs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nanopore_human_wgs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_Landsat/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=Landsat/: NASA NEX: Landsat GLS (Global Land Survey)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=Landsat/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Landsat GLS (Global Land Survey)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_Landsat/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_Landsat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_Landsat&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_Landsat"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_LOCA/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=LOCA/: NASA NEX: Localized Constructed Analogs (LOCA)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=LOCA/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Localized Constructed Analogs (LOCA)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_LOCA/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_LOCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_LOCA&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_LOCA"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_MODIS/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=MODIS/: NASA NEX: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=MODIS/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_MODIS/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_MODIS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_MODIS&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_MODIS"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_DCP30/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-DCP30/: NASA NEX: Downscaled Climate Projections (NEX-DCP30)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-DCP30/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Downscaled Climate Projections (NEX-DCP30)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_DCP30/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_DCP30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_DCP30&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_DCP30"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_GDDP/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-GDDP/: NASA NEX: Global Daily Downscaled Projections (NEX-GDDP)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-GDDP/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Global Daily Downscaled Projections (NEX-GDDP)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_GDDP/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_GDDP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_GDDP&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_GDDP"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gefs_pds/", "public", "File Names from the AWS S3 noaa-gefs-pds Bucket: NOAA Global Ensemble Forecast System (GEFS): Project data files", "This dataset has file information from the AWS S3 noaa-gefs-pds bucket at https://noaa-gefs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Ensemble Forecast System (GEFS)\nName2: Project data files\nDescription: The Global Ensemble Forecast System (GEFS), previously known as the GFS Global ENSemble (GENS), is a weather forecast model made up of 21 separate forecasts, or ensemble members. The National Centers for Environmental Prediction (NCEP) started the GEFS to address the nature of uncertainty in weather observations, which is used to initialize weather forecast models. The GEFS attempts to quantify the amount of uncertainty in a forecast by generating an ensemble of multiple forecasts, each minutely different, or perturbed, from the original observations. With global coverage, GEFS is produced four times a day with weather forecasts going out to 16 days.\n\nDocumentation: https://docs.opendata.aws/noaa-gefs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GEFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GEFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gefs_pds/index.json", "https://registry.opendata.aws/noaa-gefs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gefs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gefs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gefs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_bdp_pds/", "public", "File Names from the AWS S3 noaa-gfs-bdp-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 GFS data", "This dataset has file information from the AWS S3 noaa-gfs-bdp-pds bucket at https://noaa-gfs-bdp-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_bdp_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_bdp_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_bdp_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_bdp_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_pds/", "public", "File Names from the AWS S3 noaa-gfs-pds Bucket: Unidata NOAA Global Forecast System (GFS) Model: A rolling four-week archive of 0.25 degree GFS data", "This dataset has file information from the AWS S3 noaa-gfs-pds bucket at https://noaa-gfs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Unidata NOAA Global Forecast System (GFS) Model\nName2: A rolling four-week archive of 0.25 degree GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks.\n\nDocumentation: https://docs.opendata.aws/noaa-gfs-pds/readme.html\nContact: https://www.ncdc.noaa.gov/contact\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_pds/index.json", "https://registry.opendata.aws/noaa-gfs-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfspara_pds/", "public", "File Names from the AWS S3 noaa-gfspara-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 FV3-based parallel version of the GFS", "This dataset has file information from the AWS S3 noaa-gfspara-pds bucket at https://noaa-gfspara-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 FV3-based parallel version of the GFS\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfspara_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfspara_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfspara_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfspara_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghcn_pds/", "public", "File Names from the AWS S3 noaa-ghcn-pds Bucket: NOAA Global Historical Climatology Network Daily (GHCN-D): Project data files", "This dataset has file information from the AWS S3 noaa-ghcn-pds bucket at https://noaa-ghcn-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Daily (GHCN-D)\nName2: Project data files\nDescription: Global Historical Climatology Network - Daily is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://docs.opendata.aws/noaa-ghcn-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncdc.noaa.gov/ghcn-daily-description). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghcn_pds/index.json", "https://registry.opendata.aws/noaa-ghcn/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghcn_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghcn_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghcn_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghe_pds/", "public", "File Names from the AWS S3 noaa-ghe-pds Bucket: NOAA Global Hydro Estimator (GHE): Project data files", "This dataset has file information from the AWS S3 noaa-ghe-pds bucket at https://noaa-ghe-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Hydro Estimator (GHE)\nName2: Project data files\nDescription: Global Hydro-Estimator provides a global mosaic imagery of rainfall estimates from multi-geostationary satellites, which currently includes GOES-16, GOES-15, Meteosat-8, Meteosat-11 and Himawari-8. The GHE products include: Instantaneous rain rate, 1 hour, 3 hour, 6 hour, 24 hour and also multi-day rainfall accumulation.\n\nDocumentation: https://www.ospo.noaa.gov/Products/atmosphere/ghe/index.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 15 minute-instantaneous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghe_pds/index.json", "https://registry.opendata.aws/noaa-ghe/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghe_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghe_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghe_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_global_hourly_pds/", "public", "File Names from the AWS S3 noaa-global-hourly-pds Bucket: NOAA Global Historical Climatology Network Hourly (GHCN-H): Project data files", "This dataset has file information from the AWS S3 noaa-global-hourly-pds bucket at https://noaa-global-hourly-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Hourly (GHCN-H)\nName2: Project data files\nDescription: Global Historical Climatology Network - Hourly is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: daily (Manually)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_global_hourly_pds/index.json", "https://registry.opendata.aws/noaa-ghcnh/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_global_hourly_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_global_hourly_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_global_hourly_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3NoaaGoes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nUse ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browser the files in buckets. This dataset is a solution to that problem for this bucket.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3NoaaGoes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3NoaaGoes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3NoaaGoes16&showErrors=false&email=", "NOAA", "awsS3NoaaGoes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket: GOES on AWS: GOES-16 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-16 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes16&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes17/", "public", "File Names from the AWS S3 noaa-goes17 Bucket: GOES on AWS: GOES-17 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes17 bucket at https://noaa-goes17.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-17 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes17/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes17&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes17"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_hrrr_pds/", "public", "File Names from the AWS S3 noaa-hrrr-pds Bucket: NOAA High-Resolution Rapid Refresh (HRRR) Model: A rolling one-week archive of HRRR data.", "This dataset has file information from the AWS S3 noaa-hrrr-pds bucket at https://noaa-hrrr-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA High-Resolution Rapid Refresh (HRRR) Model\nName2: A rolling one-week archive of HRRR data.\nDescription: The HRRR is a NOAA real-time 3-km resolution, hourly updated, cloud-resolving, convection-allowing atmospheric model, initialized by 3km grids with 3km radar assimilation. Radar data is assimilated in the HRRR every 15 min over a 1-h period adding further detail to that provided by the hourly data assimilation from the 13km radar-enhanced Rapid Refresh.\n\nDocumentation: https://docs.opendata.aws/noaa-hrrr-pds/readme.html\nContact: https://rapidrefresh.noaa.gov/hrrr/\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_hrrr_pds/index.json", "https://registry.opendata.aws/noaa-hrrr-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_hrrr_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_hrrr_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_hrrr_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_isd_pds/", "public", "File Names from the AWS S3 noaa-isd-pds Bucket: NOAA Integrated Surface Database (ISD): Project data files", "This dataset has file information from the AWS S3 noaa-isd-pds bucket at https://noaa-isd-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Integrated Surface Database (ISD)\nName2: Project data files\nDescription: The Integrated Surface Database (ISD) consists of global hourly and synoptic observations compiled from numerous sources into a gzipped fixed width format. ISD was developed as a joint activity within Asheville's Federal Climate Complex. The database includes over 35,000 stations worldwide, with some having data as far back as 1901, though the data show a substantial increase in volume in the 1940s and again in the early 1970s. Currently, there are over 14,000 \"active\" stations updated daily in the database. The total uncompressed data volume is around 600 gigabytes; however, it continues to grow as more data are added. ISD includes numerous parameters such as wind speed and direction, wind gust, temperature, dew point, cloud data, sea level pressure, altimeter setting, station pressure, present weather, visibility, precipitation amounts for various time periods, snow depth, and various other elements as observed by each station.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_isd_pds/index.json", "https://registry.opendata.aws/noaa-isd/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_isd_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_isd_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_isd_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nexrad_level2/", "public", "File Names from the AWS S3 noaa-nexrad-level2 Bucket: NEXRAD on AWS: NEXRAD Level II archive data", "This dataset has file information from the AWS S3 noaa-nexrad-level2 bucket at https://noaa-nexrad-level2.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II archive data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nexrad_level2/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nexrad_level2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nexrad_level2&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nexrad_level2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_pds/", "public", "File Names from the AWS S3 noaa-nwm-pds Bucket: NOAA National Water Model Short-Range Forecast: A rolling four week archive of NWM data.", "This dataset has file information from the AWS S3 noaa-nwm-pds bucket at https://noaa-nwm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Short-Range Forecast\nName2: A rolling four week archive of NWM data.\nDescription: The National Water Model (NWM) is a water resources model that simulates and forecasts water budget variables, including snowpack, evapotranspiration, soil moisture and streamflow, over the entire continental United States (CONUS). The model, launched in August 2016, is designed to improve the ability of NOAA to meet the needs of its stakeholders (forecasters, emergency managers, reservoir operators, first responders, recreationists, farmers, barge operators, and ecosystem and floodplain managers) by providing expanded accuracy, detail, and frequency of water information. It is operated by NOAA\u2019s Office of Water Prediction. This bucket contains a four-week rollover of the Short Range Forecast model output and the corresponding forcing data for the model. The model is forced with meteorological data from the High Resolution Rapid Refresh (HRRR) and the Rapid Refresh (RAP) models. The Short Range Forecast configuration cycles hourly and produces hourly deterministic forecasts of streamflow and hydrologic states out to 18 hours.\n\nDocumentation: https://docs.opendata.aws/noaa-nwm-pds/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_pds/index.json", "https://registry.opendata.aws/noaa-nwm-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_retro_v2_0_pds/", "public", "File Names from the AWS S3 noaa-nwm-retro-v2.0-pds Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 2.0.", "This dataset has file information from the AWS S3 noaa-nwm-retro-v2.0-pds bucket at https://noaa-nwm-retro-v2.0-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 2.0.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\n... (4 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_retro_v2_0_pds/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_retro_v2_0_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_retro_v2_0_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_retro_v2_0_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ofs_pds/", "public", "File Names from the AWS S3 noaa-ofs-pds Bucket: NOAA Operational Forecast System (OFS): Project data files", "This dataset has file information from the AWS S3 noaa-ofs-pds bucket at https://noaa-ofs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Operational Forecast System (OFS)\nName2: Project data files\nDescription: The Operational Forecast System (OFS) has been developed to serve the maritime user community. OFS was developed in a joint project of the NOAA/National Ocean Service (NOS)/Office of Coast Survey, the NOAA/NOS/Center for Operational Oceanographic Products and Services (CO-OPS), and the NOAA/National Weather Service (NWS)/National Centers for Environmental Prediction (NCEP) Central Operations (NCO). OFS generates water level, water current, water temperature, water salinity (except for the Great Lakes) and wind conditions nowcast and forecast guidance four times per day.\n\nDocumentation: https://docs.opendata.aws/noaa-ofs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA OFS site](https://tidesandcurrents.noaa.gov/models.html). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight and generates 6-hour nowcasts and 48-hour forecast guidance\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ofs_pds/index.json", "https://registry.opendata.aws/noaa-ofs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ofs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ofs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ofs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/", "public", "File Names from the AWS S3 nrel-pds-wtk Bucket with prefix=wtk-techno-economic/pywtk-data/: NREL Wind Integration National Dataset on AWS: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format", "This dataset has file information from the AWS S3 nrel-pds-wtk bucket at https://nrel-pds-wtk.s3.us-west-2.amazonaws.com/ with prefix=wtk-techno-economic/pywtk-data/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NREL Wind Integration National Dataset on AWS\nName2: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format\nDescription: The [Wind Integration National Dataset (WIND)](https://www.nrel.gov/grid/wind-toolkit.html) is an update and expansion of the Eastern Wind Integration Data Set and Western Wind Integration Data Set. It supports the next generation of wind integration studies.\n\nDocumentation: https://www.nrel.gov/grid/wind-toolkit.html\nContact: wind-toolkit@nrel.gov\nManagedBy: [National Renewable Energy Laboratory](https://www.nrel.gov/)\nUpdateFrequency: As Needed\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/index.json", "https://registry.opendata.aws/nrel-pds-wtk/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nwm_archive/", "public", "File Names from the AWS S3 nwm-archive Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 1.2.", "This dataset has file information from the AWS S3 nwm-archive bucket at https://nwm-archive.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 1.2.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nwm_archive/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nwm_archive.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nwm_archive&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nwm_archive"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nyc_tlc/", "public", "File Names from the AWS S3 nyc-tlc Bucket: New York City Taxi and Limousine Commission (TLC) Trip Record Data: CSV files containing NYC TLC trip data.", "This dataset has file information from the AWS S3 nyc-tlc bucket at https://nyc-tlc.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: New York City Taxi and Limousine Commission (TLC) Trip Record Data\nName2: CSV files containing NYC TLC trip data.\nDescription: Data of trips taken by taxis and for-hire vehicles in New York City.\n\nDocumentation: http://www.nyc.gov/html/tlc/html/about/trip_record_data.shtml\nContact: research@tlc.nyc.gov\nUpdateFrequency: As soon as new data is available to be shared publicly.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nyc_tlc/index.json", "https://registry.opendata.aws/nyc-tlc-trip-records-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nyc_tlc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nyc_tlc&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nyc_tlc"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_oicr_icgc_meta_metadata/", "public", "File Names from the AWS S3 oicr.icgc.meta Bucket with prefix=metadata/: ICGC on AWS: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README", "This dataset has file information from the AWS S3 oicr.icgc.meta bucket at https://oicr.icgc.meta.s3.us-east-1.amazonaws.com/ with prefix=metadata/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ICGC on AWS\nName2: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README\nDescription: The International Cancer Genome Consortium (ICGC) coordinates projects with the common aim of accelerating research into the causes and control of cancer. The PanCancer Analysis of Whole Genomes (PCAWG) study is an international collaboration to identify common patterns of mutation in whole genomes from ICGC. More than 2,400 consistently analyzed genomes corresponding to over 1,100 unique ICGC donors are now freely available on Amazon S3 to credentialed researchers subject to ICGC data sharing policies.\n\nDocumentation: https://dcc.icgc.org/icgc-in-the-cloud/aws\nContact: dcc-support@icgc.org\nUpdateFrequency: New data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_oicr_icgc_meta_metadata/index.json", "https://registry.opendata.aws/icgc/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_oicr_icgc_meta_metadata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_oicr_icgc_meta_metadata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_oicr_icgc_meta_metadata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ooni_data/", "public", "File Names from the AWS S3 ooni-data Bucket: Open Observatory of Network Interference: S3 bucket with data", "This dataset has file information from the AWS S3 ooni-data bucket at https://ooni-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open Observatory of Network Interference\nName2: S3 bucket with data\nDescription: A free software, global observation network for detecting censorship, surveillance and traffic manipulation on the internet.\n\nDocumentation: https://ooni.torproject.org/about/\nContact: https://ooni.torproject.org/get-involved/\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ooni_data/index.json", "https://registry.opendata.aws/ooni/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ooni_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ooni_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ooni_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openaq_fetches/", "public", "File Names from the AWS S3 openaq-fetches Bucket: OpenAQ: Minutely CSVs of global air quality fetched from sources all over the world", "This dataset has file information from the AWS S3 openaq-fetches bucket at https://openaq-fetches.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenAQ\nName2: Minutely CSVs of global air quality fetched from sources all over the world\nDescription: Global, aggregated physical air quality data from public data sources provided by government, research-grade and other sources. These awesome groups do the hard work of measuring these data and publicly sharing them, and our community makes them more universally-accessible to both humans and machines.\n\nDocumentation: https://openaq.org\nContact: info@openaq.org\nManagedBy: [OpenAQ](https://openaq.org)\nUpdateFrequency: Minutely\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openaq_fetches/index.json", "https://registry.opendata.aws/openaq/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openaq_fetches.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openaq_fetches&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openaq_fetches"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_opencitymodel/", "public", "File Names from the AWS S3 opencitymodel Bucket: Open City Model (OCM): Project data files", "This dataset has file information from the AWS S3 opencitymodel bucket at https://opencitymodel.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open City Model (OCM)\nName2: Project data files\nDescription: Open City Model is an initiative to provide cityGML data for all the buildings in the United States. By using other open datasets in conjunction with our own code and algorithms it is our goal to provide 3D geometries for every US building.\n\nDocumentation: https://github.com/opencitymodel/opencitymodel\nContact: https://github.com/opencitymodel/opencitymodel#contact\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_opencitymodel/index.json", "https://registry.opendata.aws/opencitymodel/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_opencitymodel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_opencitymodel&showErrors=false&email=", "Amazon Web Services", "awsS3Files_opencitymodel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openneuro_org/", "public", "File Names from the AWS S3 openneuro.org Bucket: OpenNeuro: All datasets", "This dataset has file information from the AWS S3 openneuro.org bucket at https://openneuro.org.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenNeuro\nName2: All datasets\nDescription: OpenNeuro is a database of openly-available brain imaging data. The data are shared according to a Creative Commons CC0 license, providing a broad range of brain imaging data to researchers and citizen scientists alike. The database primarily focuses on functional magnetic resonance imaging (fMRI) data, but also includes other imaging modalities including structural and diffusion MRI, electroencephalography (EEG), and magnetoencephalograpy (MEG). OpenfMRI is a project of the [Center for Reproducible Neuroscience at Stanford University](http://reproducibility.stanford.edu). Development of the OpenNeuro resource has been funded by the National Science Foundation, National Institute of Mental Health, National Institute on Drug Abuse, and the Laura and John Arnold Foundation.\n\nDocumentation: http://openneuro.org\nContact: Support form at https://openneuro.org\nUpdateFrequency: New datasets deposited every 4-6 days\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openneuro_org/index.json", "https://registry.opendata.aws/openneuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openneuro_org.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openneuro_org&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openneuro_org"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osm_pds/", "public", "File Names from the AWS S3 osm-pds Bucket: OpenStreetMap on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 osm-pds bucket at https://osm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap on AWS\nName2: Imagery and metadata\nDescription: OSM is a free, editable map of the world, created and maintained by volunteers. Regular OSM data archives are made available in Amazon S3.\n\nDocumentation: https://docs.opendata.aws/osm-pds/readme.html\nContact: https://github.com/mojodna/osm-pds-pipelines/issues\nUpdateFrequency: Data is updated weekly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osm_pds/index.json", "https://registry.opendata.aws/osm/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osmlr/", "public", "File Names from the AWS S3 osmlr Bucket: OpenStreetMap Linear Referencing: Manifest and data files", "This dataset has file information from the AWS S3 osmlr bucket at https://osmlr.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap Linear Referencing\nName2: Manifest and data files\nDescription: OSMLR a linear referencing system built on top of OpenStreetMap. OSM has great information about roads around the world and their interconnections, but it lacks the means to give a stable identifier to a stretch of roadway. OSMLR provides a stable set of numerical IDs for every 1 kilometer stretch of roadway around the world. In urban areas, OSMLR IDs are attached to each block of roadways between significant intersections.\n\nDocumentation: https://github.com/opentraffic/osmlr/blob/master/docs/intro.md\nContact: https://github.com/opentraffic/osmlr/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osmlr/index.json", "https://registry.opendata.aws/osmlr/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osmlr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osmlr&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osmlr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_qiime2_data/", "public", "File Names from the AWS S3 qiime2-data Bucket: QIIME 2 User Tutorial Datasets: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs", "This dataset has file information from the AWS S3 qiime2-data bucket at https://qiime2-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: QIIME 2 User Tutorial Datasets\nName2: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs\nDescription: QIIME 2 is a powerful, extensible, and decentralized microbiome analysis package with a focus on data and analysis transparency. QIIME 2 enables researchers to start an analysis with raw DNA sequence data and finish with publication-quality figures and statistical results. This dataset contains the user docs (and related datasets) for QIIME 2.\n\nDocumentation: https://docs.qiime2.org\nContact: https://forum.qiime2.org\nManagedBy: The QIIME 2 Development Team\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_qiime2_data/index.json", "https://registry.opendata.aws/qiime2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_qiime2_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_qiime2_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_qiime2_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_safecast_opendata_public_us_east_1/", "public", "File Names from the AWS S3 safecast-opendata-public-us-east-1 Bucket: Safecast: Bulk exports of air and radiation measurements", "This dataset has file information from the AWS S3 safecast-opendata-public-us-east-1 bucket at https://safecast-opendata-public-us-east-1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Safecast\nName2: Bulk exports of air and radiation measurements\nDescription: An ongoing collection of radiation and air quality measurements taken by devices involved in the Safecast project.\n\nDocumentation: https://github.com/Safecast/safecastapi/wiki/Data-Sets\nContact: https://groups.google.com/forum/#!forum/safecast-devices\nManagedBy: [Safecast](https://safecast.org/)\nUpdateFrequency: Continuous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_safecast_opendata_public_us_east_1/index.json", "https://registry.opendata.aws/safecast/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_safecast_opendata_public_us_east_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_safecast_opendata_public_us_east_1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_safecast_opendata_public_us_east_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s1_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s1-l1c/: Sentinel-1: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s1-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C\nDescription: [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1) is a pair of European radar imaging (SAR) satellites launched in 2014 and 2016. Its 6 days revisit cycle and ability to observe through clouds makes it perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. GRD data is available globally since January 2017.\n\nDocumentation: https://roda.sentinel-hub.com/sentinel-s1-l1c/GRD/readme.html\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s1_l1c/index.json", "https://registry.opendata.aws/sentinel-1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s1_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s1_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s1_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l1c/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l1c/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l2a/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l2a/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l2a/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l2a/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l2a&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l2a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel1_slc_seasia_pds/", "public", "File Names from the AWS S3 sentinel1-slc-seasia-pds Bucket: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan", "This dataset has file information from the AWS S3 sentinel1-slc-seasia-pds bucket at https://sentinel1-slc-seasia-pds.s3.ap-southeast-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan\nName2: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan\nDescription: The S1 Single Look Complex (SLC) dataset contains Synthetic Aperture Radar (SAR) data in the C-Band wavelength. The SAR sensors are installed on a two-satellite (Sentinel-1A and Sentinel-1B) constellation orbiting the Earth with a combined revisit time of six days, operated by the European Space Agency. The S1 SLC data are a Level-1 product that collects radar amplitude and phase information in all-weather, day or night conditions, which is ideal for studying natural hazards and emergency response, land applications, oil spill monitoring, sea-ice conditions, and associated climate change effects.\n\nDocumentation: https://github.com/earthobservatory/sentinel1-opds/\nContact: https://github.com/earthobservatory/sentinel1-opds/\nManagedBy: [Earth Observatory of Singapore, Nanyang Technological University](https://earthobservatory.sg)\nUpdateFrequency: S1 SLC data for the region of interest will be updated regularly, as it becomes available on the Alaska Satellite Facility endpoint.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel1_slc_seasia_pds/index.json", "https://registry.opendata.aws/sentinel1-slc-seasia-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel1_slc_seasia_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel1_slc_seasia_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel1_slc_seasia_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_silo_open_data/", "public", "File Names from the AWS S3 silo-open-data Bucket: SILO climate data on AWS: SILO open data", "This dataset has file information from the AWS S3 silo-open-data bucket at https://silo-open-data.s3.ap-southeast-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SILO climate data on AWS\nName2: SILO open data\nDescription: [SILO](https://www.longpaddock.qld.gov.au/silo) is a database of Australian [climate data](https://www.longpaddock.qld.gov.au/silo/about/climate-variables) from 1889 to the present. It provides continuous, daily time-step [data products](https://www.longpaddock.qld.gov.au/silo/about/data-products) in ready-to-use [formats](https://www.longpaddock.qld.gov.au/silo/about/file-formats-and-samples) for research and operational applications. Gridded SILO data in annual NetCDF format are on AWS. Point data are available from the [SILO website](https://www.longpaddock.qld.gov.au/silo/).\n\nDocumentation: https://www.longpaddock.qld.gov.au/silo/gridded-data\nContact: https://www.longpaddock.qld.gov.au/silo/contact-us\nManagedBy: Queensland Government\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_silo_open_data/index.json", "https://registry.opendata.aws/silo/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_silo_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_silo_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_silo_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_softwareheritage/", "public", "File Names from the AWS S3 softwareheritage Bucket: Software Heritage Graph Dataset: Software Heritage Graph Dataset", "This dataset has file information from the AWS S3 softwareheritage bucket at https://softwareheritage.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Software Heritage Graph Dataset\nName2: Software Heritage Graph Dataset\nDescription: [Software Heritage](https://www.softwareheritage.org/) is the largest existing public archive of software source code and accompanying development history. The Software Heritage Graph Dataset is a fully deduplicated Merkle DAG representation of the Software Heritage archive.\n\nDocumentation: https://wiki.softwareheritage.org/wiki/Graph_Dataset_on_Amazon_Athena\nContact: swh-devel@inria.fr\nUpdateFrequency: Data is updated yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_softwareheritage/index.json", "https://registry.opendata.aws/software-heritage/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_softwareheritage.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_softwareheritage&showErrors=false&email=", "Amazon Web Services", "awsS3Files_softwareheritage"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_spacenet_dataset/", "public", "File Names from the AWS S3 spacenet-dataset Bucket: SpaceNet: Imagery and metadata in a S3 bucket", "This dataset has file information from the AWS S3 spacenet-dataset bucket at https://spacenet-dataset.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SpaceNet\nName2: Imagery and metadata in a S3 bucket\nDescription: SpaceNet, launched in August 2016 as an open innovation project offering a repository of freely available imagery with co-registered map features. Before SpaceNet, computer vision researchers had minimal options to obtain free, precision-labeled, and high-resolution satellite imagery. Today, SpaceNet hosts datasets developed by its own team, along with data sets from projects like IARPA\u2019s Functional Map of the World (fMoW).\n\nDocumentation: https://spacenetchallenge.github.io\nContact: https://github.com/SpaceNetChallenge/utilities/issues\nManagedBy: [SpaceNet](https://spacenet.ai/)\nUpdateFrequency: New imagery and features are added quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_spacenet_dataset/index.json", "https://registry.opendata.aws/spacenet/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_spacenet_dataset.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_spacenet_dataset&showErrors=false&email=", "Amazon Web Services", "awsS3Files_spacenet_dataset"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_unidata_nexrad_level2_chunks/", "public", "File Names from the AWS S3 unidata-nexrad-level2-chunks Bucket: NEXRAD on AWS: NEXRAD Level II real-time data", "This dataset has file information from the AWS S3 unidata-nexrad-level2-chunks bucket at https://unidata-nexrad-level2-chunks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II real-time data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_unidata_nexrad_level2_chunks/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_unidata_nexrad_level2_chunks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_unidata_nexrad_level2_chunks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_unidata_nexrad_level2_chunks"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_usgs_lidar_public/", "public", "File Names from the AWS S3 usgs-lidar-public Bucket: USGS 3DEP LiDAR Point Clouds: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.", "This dataset has file information from the AWS S3 usgs-lidar-public bucket at https://usgs-lidar-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: USGS 3DEP LiDAR Point Clouds\nName2: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.\nDescription: The goal of the [USGS 3D Elevation Program ](https://www.usgs.gov/core-science-systems/ngp/3dep) (3DEP) is to collect elevation data in the form of light detection and ranging (LiDAR) data over the conterminous United States, Hawaii, and the U.S. territories, with data acquired over an 8-year period. This dataset provides two realizations of the 3DEP point cloud data. The first resource is a public access organization provided in [Entwine Point Tiles](https://entwine.io/entwine-point-tile.html) format, which a lossless, full-density, streamable octree based on [LASzip](https://laszip.org) (LAZ) encoding. The second resource is a [Requester Pays](https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html) of the same data in LAZ (Compressed LAS) format. Resource names in both buckets correspond to the USGS project names.\n\nDocumentation: https://github.com/hobu/usgs-lidar/\nContact: https://github.com/hobu/usgs-lidar\nManagedBy: [Hobu, Inc.](https://hobu.co)\nUpdateFrequency: Periodically\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_usgs_lidar_public/index.json", "https://registry.opendata.aws/usgs-lidar/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_usgs_lidar_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_usgs_lidar_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_usgs_lidar_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_web_language_models/", "public", "File Names from the AWS S3 web-language-models Bucket: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl): Parallel Corpora to/from English for all official EU languages", "This dataset has file information from the AWS S3 web-language-models bucket at https://web-language-models.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl)\nName2: Parallel Corpora to/from English for all official EU languages\nDescription: ParaCrawl is a set of large parallel corpora to/from English for all official EU languages by a broad web crawling effort. State-of-the-art methods are applied for the entire processing chain from identifying web sites with translated text all the way to collecting, cleaning and delivering parallel corpora that are ready as training data for CEF.AT and translation memories for DG Translation.\n\nDocumentation: https://paracrawl.eu/releases.html\nContact: For questions regarding the datasets contact Kenneth Heafield, email kheafiel@inf.ed.ac.uk. For reporting any issues about bitextor pipeline visit https://github.com/bitextor/bitextor/issues.\nManagedBy: [ParaCrawl](https://paracrawl.eu)\nUpdateFrequency: New data is added according to ParaCrawl release schedule.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_web_language_models/index.json", "https://registry.opendata.aws/paracrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_web_language_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_web_language_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_web_language_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_xiph_media/", "public", "File Names from the AWS S3 xiph-media Bucket: Xiph.Org Test Media: Video and imagery data", "This dataset has file information from the AWS S3 xiph-media bucket at https://xiph-media.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Xiph.Org Test Media\nName2: Video and imagery data\nDescription: Uncompressed video used for video compression and video processing research.\n\nDocumentation: https://media.xiph.org/aws.html\nContact: Thomas Daede tdaede@xiph.org\nUpdateFrequency: New videos are added when contributors submit them.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_xiph_media/index.json", "https://registry.opendata.aws/xiph-media/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_xiph_media.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_xiph_media&showErrors=false&email=", "Amazon Web Services", "awsS3Files_xiph_media"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ycb_benchmarks/", "public", "File Names from the AWS S3 ycb-benchmarks Bucket: Yale-CMU-Berkeley (YCB) Object and Model Set: Project data files", "This dataset has file information from the AWS S3 ycb-benchmarks bucket at https://ycb-benchmarks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Yale-CMU-Berkeley (YCB) Object and Model Set\nName2: Project data files\nDescription: This project primarily aims to facilitate performance benchmarking in robotics research. The dataset provides mesh models, RGB, RGB-D and point cloud images of over 80 objects. The physical objects are also available via the [YCB benchmarking project](http://www.ycbbenchmarks.com/). The data are collected by two state of the art systems: UC Berkley's scanning rig and the Google scanner. The UC Berkley's scanning rig data provide meshes generated with Poisson reconstruction, meshes generated with volumetric range image integration, textured versions of both meshes, Kinbody files for using the meshes with OpenRAVE, 600 High-resolution RGB images, 600 RGB-D images, and 600 point cloud images for each object. The Google scanner data provides 3 meshes with different resolutions (16k, 64k, and 512k polygons), textured versions of each mesh, Kinbody files for using the meshes with OpenRAVE.\n\nDocumentation: http://www.ycbbenchmarks.com/\nContact: bcalli@wpi.edu\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ycb_benchmarks/index.json", "https://registry.opendata.aws/ycb-benchmarks/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ycb_benchmarks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ycb_benchmarks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ycb_benchmarks"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the June 2020 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.graph", "", "", "public", "GLOBEC NEP Vertical Plankton Tow (VPT) Data, 1997-2001", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nCalifornia Current Program\nVertical Plankton Tow (VPT) Data\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10181&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/vpt%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/vpt.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ncast_no (Cast Number Within the Cruise)\nstation_id\nabund_m3 (Abundance, count m-3)\ncomments\ncounter_id\nd_n_flag (Day/Night Flag)\ngear_area (Mouth Area of Net, m2)\ngear_mesh (Net's Mesh Size, mm)\ngear_type\ngenus_species\nlife_stage\nlocal_code\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecVpt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecVpt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecVpt/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecVpt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecVpt&showErrors=false&email=", "GLOBEC", "erdGlobecVpt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://usgodae.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, the EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\nBeach Monitoring Quality Assurance Project Plan (CWBMONQAPP002):\nhttps://www.pacioos.hawaii.edu/wp-content/uploads/2016/08/Beach_Monitoring_QAPP_CWBMONQAPP002_120507.pdf\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwb_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwb_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwb_water_quality/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/cwb_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwb_water_quality&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "cwb_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.graph", "", "", "public", "HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii", "The Hawaii Institute of Marine Biology (HIMB) automatic weather station (AWS) records hourly measurements of precipitation, air temperature, wind speed and direction, and irradiance. Sensors include an Eppley 295-385 nm ultraviolet (UV) radiometer, a LiCor 200SZ Pyranometer, and a LiCor Quantameter (400-700 nm). The sensors are located on the roof of HIMB's Coral Reef Ecology Laboratory (Point Lab) on Moku o Loe (Coconut Island) in Kaneohe Bay on the windward (eastern) coast of Oahu in Hawaii. An accompanying sea water temperature sensor is located less than 10 m offshore of the weather station at a shallow depth of approximately 1 m.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HIMB: HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nsea_water_temperature (water temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nwind_from_direction_std (standard deviation of wind direction (processed), degrees)\nrainfall_amount (total rainfall (processed), mm)\nshortwave_radiation (downwelling shortwave radiation (processed), W/m2)\nultraviolet_radiation (ultraviolet radiation (processed), W/m2)\nphotosynthetic_radiation (photosynthetically active radiation (processed), umol m-2 s-1)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_atn (QARTOD Attenuated Signal Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (139 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HIMB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HIMB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HIMB/index.json", "https://www.pacioos.hawaii.edu/weather/obs-mokuoloe/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HIMB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HIMB&showErrors=false&email=", "Hawaii Institute of Marine Biology (HIMB)", "AWS-HIMB"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.graph", "", "", "public", "Hui O Ka Wai Ola Water Quality Data", "The goal of the Hui O Ka Wai Ola (Association Of The Living Waters) citizen-science based water quality program is to increase the capacity for monitoring water quality in Maui coastal waters by generating reliable data to assess long-term water-quality conditions and detect temporal trends. These data augment the data produced by the Hawaii Department of Health (DOH) Clean Water Branch (CWB) beach monitoring program on Maui.\n \nData are collected and analyzed every two or three weeks for physical and chemical parameters, including ocean salinity, pH, temperature, organic nutrients (nitrogen and phosphorous compounds), dissolved oxygen (DO), and total suspended sediment (TSS). Some water samples are immediately tested at mobile labs while others are processed for testing at University of Hawaii and/or other labs.\n \nUsers of these data should cite the following publication:\n \nFalinski, Kim, Dana Reed, Tova Callender, Emily Fielding, Robin Newbold, and Alana Yurkanin. (2018). Hui O Ka Wai Ola Water Quality Data [Data set]. Zenodo. \"http://doi.org/10.5281/zenodo.1173717\"\n \nFor further information, please visit:\nhttps://www.huiokawaiola.com\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nlocation_id (sampling site identifier)\nlocation_name\nsample_id (sample identifier)\nsession_id (sampling session identifier)\nwater_temperature (Celsius)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hui_water_quality/index.json", "https://www.huiokawaiola.com", "http://upwell.pfeg.noaa.gov/erddap/rss/hui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hui_water_quality&showErrors=false&email=", "Hui O Ka Wai Ola", "hui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitored water quality at several beaches across the island of Maui in the State of Hawaii during the years 2010-2016. This community-based monitoring effort provided valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites were also monitored for harmful bacteria levels of Enterococcus through 2014-06-26. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours.\n\nData were managed through an online repository, the Coral Reef Monitoring Data Portal (now defunct), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection was coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/maui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/maui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/maui_water_quality/index.json", "https://coral.org/maui/", "http://upwell.pfeg.noaa.gov/erddap/rss/maui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=maui_water_quality&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "maui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys. See\nhttps://www.ndbc.noaa.gov/measdes.shtml for a description of the measurements.\n\nThe source data from NOAA NDBC has different column names, different units,\nand different missing values in different files, and other problems\n(notably, lots of rows with duplicate or different values for the same time\npoint). This dataset is a standardized, reformatted, and lightly edited\nversion of that source data, created by NOAA NMFS SWFSC ERD (email:\nerd.data at noaa.gov). Before 2020-01-29, this dataset only had the data\nthat was closest to a given hour, rounded to the nearest hour. Now, this\ndataset has all of the data available from NDBC with the original time\nvalues. If there are multiple source rows for a given buoy for a given\ntime, only the row with the most non-NaN data values is kept. If there is\na gap in the data, a row of missing values is inserted (which causes a nice\ngap when the data is graphed). Also, some impossible data values are\nremoved, but this data is not perfectly clean. This dataset is now updated\nevery 5 minutes.\n\nThis dataset has both historical data (quality controlled, before\n2020-06-01T00:00:00Z) and near real time data (less quality controlled,\nwhich may change at any time, from 2020-06-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Identifier)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.graph", "", "", "public", "NEFSC Continuous Plankton Recorder", "A summary for the data\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ncruise\nsample\nlatitude (degrees_north)\nlongitude (degrees_east)\nphyto_color_indx (Phytoplankton Color Index)\nmarmap_tax_code (Marmap Taxonomic Code)\nmarmap_stage_code\nabundance (per 100 cubic meters)\nlife_stage\ntaxonomic_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/wocecpr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/wocecpr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/wocecpr/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "http://upwell.pfeg.noaa.gov/erddap/rss/wocecpr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=wocecpr&showErrors=false&email=", "NEFSC", "wocecpr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "", "public", "North Pacific High, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.graph", "", "", "public", "OSMC Argo Profile data", "OSMC Argo Profile data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\norganization_name\ncountry_name\nplatform_type_name\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nparameter_name\ndaily_obs_count\nobservation_depth\nobservation_value\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_PROFILERS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_PROFILERS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_PROFILERS/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_PROFILERS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_PROFILERS&showErrors=false&email=", "OSMC", "OSMC_PROFILERS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.graph", "", "", "public", "OSMC normalized observations from GTS", "OSMC normalized In-situ Real time GTS data\n\ncdm_data_type = Point\nVARIABLES:\nPLATFORM_CODE (Station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform\nparameter\nOBSERVATION_VALUE\nOBSERVATION_DEPTH\nCOUNTRY_NAME\norganization_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_Points_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_Points_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_Points/index.json", "https://www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_Points.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_Points&showErrors=false&email=", "OSMC", "OSMC_Points"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001.graph", "", "", "public", "PacIOOS Beach Camera 001: Waikiki, Oahu, Hawaii", "A digital camera on top of the Sheraton Waikiki hotel was used to photograph the shoreline of Waikiki beach along the South Shore of the island of Oahu in the State of Hawaii. The oblique camera view presented here captures the shoreline leading southeast towards Diamond Head crater. It operated for over 4.5 years between February 5, 2009 and October 13, 2013. Capturing hourly snapshots at a set vantage point during the local daytime hours of 6:00 AM or 7:00 AM to 5:00 PM, these images are useful for tracking beach dynamics such as wave run-up, sand movement, and turbidity plumes over time. The camera was mounted on top of a 3 meter wall extending above the roof surface for a total height of 93 meters above ground level or 96 meters above mean sea level. See also BEACHCAM-002 for an alternate camera view from the same location pointing directly downwards.\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (m)\naboveGround (Height, m)\nurl\nname (File Name)\nsize (bytes)\nfileType (File Type)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/BEACHCAM-001_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/BEACHCAM-001_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/BEACHCAM-001/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/BEACHCAM-001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=BEACHCAM-001&showErrors=false&email=", "University of Hawaii", "BEACHCAM-001"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_4"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_2/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_2&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_6/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_6&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_7/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_7&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_7"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_8/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_8&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_9/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_9&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.graph", "", "", "public", "PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-04 is located in Hilo Bay on the east side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-04: PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-04/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-hilo/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-04&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-04"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.graph", "", "", "public", "PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-05 is located in Pelekane Bay near Kawaihae Harbor on the west side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-05: PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-05/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-pelekane/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-05&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-05"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.graph", "", "", "public", "PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii", "The Pacific Islands Ocean Observing System (PacIOOS) operates a Davis Instruments automatic weather station (AWS) near the entrance to Honolulu Harbor on the leeward (western) coast of Oahu in Hawaii to aid with navigation. The station records measurements every 5 minutes of air temperature, wind speed and direction, precipitation, relative humidity, and air pressure. Sensors are located at Pier 1, installed on a tower at an elevation of 64 feet (19.5 meters) above sea level. The station is owned by the Hawaii Pilots Association (HPA). PacIOOS maintains the station and provides data access.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HNLPier1: PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nrainfall_rate (rain rate (processed), mm/h)\nrelative_humidity (relative humidity (processed), %)\nair_pressure (air pressure (processed), millibars)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_gap (QARTOD Gap Test (processed), 0)\nair_temperature_qc_syn (QARTOD Syntax Test (processed), 0)\nair_temperature_qc_loc (QARTOD Location Test (processed), 0)\nair_temperature_qc_rng (QARTOD Gross Range Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_spk (QARTOD Spike Test (processed), 0)\n... (92 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HNLPier1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HNLPier1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HNLPier1/index.json", "https://www.pacioos.hawaii.edu/weather/obs-honolulu/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HNLPier1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HNLPier1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "AWS-HNLPier1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "https://tidesandcurrents.noaa.gov/gomoos.html", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/main.aspx?Division=PRD&ParentMenuId=147&id=1221", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2017, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2017, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2017, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"] + ] + } + } + recorded_at: 2020-07-15 22:14:26 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/info/erdMBchlamday_LonPM180/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:14:38 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=erdMBchlamday_LonPM180_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "acknowledgement", "String", "NOAA NESDIS COASTWATCH, NOAA SWFSC ERD"], + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "Grid"], + ["attribute", "NC_GLOBAL", "composite", "String", "true"], + ["attribute", "NC_GLOBAL", "contributor_name", "String", "NASA GSFC (OBPG)"], + ["attribute", "NC_GLOBAL", "contributor_role", "String", "Source of level 2 data."], + ["attribute", "NC_GLOBAL", "Conventions", "String", "COARDS, CF-1.6, ACDD-1.3"], + ["attribute", "NC_GLOBAL", "creator_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "creator_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "date_created", "String", "2020-07-03"], + ["attribute", "NC_GLOBAL", "date_issued", "String", "2020-07-03"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "179.975"], + ["attribute", "NC_GLOBAL", "files", "String", "MB2020153_2020153_chla.nc, MB2020154_2020154_chla.nc, MB2020155_2020155_chla.nc, MB2020156_2020156_chla.nc, MB2020157_2020157_chla.nc, MB2020158_2020158_chla.nc, MB2020159_2020159_chla.nc, MB2020160_2020160_chla.nc, MB2020161_2020161_chla.nc, MB2020162_2020162_chla.nc, MB2020163_2020163_chla.nc, MB2020164_2020164_chla.nc, MB2020165_2020165_chla.nc, MB2020166_2020166_chla.nc, MB2020167_2020167_chla.nc, MB2020168_2020168_chla.nc, MB2020169_2020169_chla.nc, MB2020170_2020170_chla.nc, MB2020171_2020171_chla.nc, MB2020172_2020172_chla.nc, MB2020173_2020173_chla.nc, MB2020174_2020174_chla.nc, MB2020175_2020175_chla.nc, MB2020176_2020176_chla.nc, MB2020177_2020177_chla.nc, MB2020178_2020178_chla.nc, MB2020179_2020179_chla.nc, MB2020180_2020180_chla.nc, MB2020181_2020181_chla.nc, MB2020182_2020182_chla.nc"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "65.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "-45.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_resolution", "double", "0.025"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "179.975"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "-180.0"], + ["attribute", "NC_GLOBAL", "geospatial_lon_resolution", "double", "0.025"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_max", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_min", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_positive", "String", "up"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_units", "String", "m"], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html"], + ["attribute", "NC_GLOBAL", "institution", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "keywords", "String", "altitude, aqua, chemistry, chla, chlorophyll, chlorophyll-a, coast, coastwatch, color, concentration, concentration_of_chlorophyll_in_sea_water, data, degrees, Earth Science > Oceans > Ocean Chemistry > Chlorophyll, experimental, imaging, MBchla, moderate, modis, national, noaa, node, npp, ocean, ocean color, oceans, orbiting, pacific, partnership, polar, polar-orbiting, resolution, sea, seawater, spectroradiometer, time, water, wcn, west"], + ["attribute", "NC_GLOBAL", "keywords_vocabulary", "String", "GCMD Science Keywords"], + ["attribute", "NC_GLOBAL", "license", "String", "The data may be used and redistributed for free but is not intended\nfor legal use, since it may contain inaccuracies. Neither the data\nContributor, ERD, NOAA, nor the United States Government, nor any\nof their employees or contractors, makes any warranty, express or\nimplied, including warranties of merchantability and fitness for a\nparticular purpose, or assumes any legal liability for the accuracy,\ncompleteness, or usefulness, of this information."], + ["attribute", "NC_GLOBAL", "naming_authority", "String", "gov.noaa.pfeg.coastwatch"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "65.0"], + ["attribute", "NC_GLOBAL", "origin", "String", "NASA GSFC (OBPG)"], + ["attribute", "NC_GLOBAL", "processing_level", "String", "3"], + ["attribute", "NC_GLOBAL", "project", "String", "CoastWatch (https://coastwatch.noaa.gov/)"], + ["attribute", "NC_GLOBAL", "projection", "String", "geographic"], + ["attribute", "NC_GLOBAL", "projection_type", "String", "mapped"], + ["attribute", "NC_GLOBAL", "publisher_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "publisher_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "publisher_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "publisher_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "references", "String", "Aqua/MODIS information: https://oceancolor.gsfc.nasa.gov/ . MODIS information: https://coastwatch.noaa.gov/cw_html/OceanColor_NRT_MODIS_Aqua.html ."], + ["attribute", "NC_GLOBAL", "satellite", "String", "Aqua"], + ["attribute", "NC_GLOBAL", "sensor", "String", "MODIS"], + ["attribute", "NC_GLOBAL", "source", "String", "satellite observation: Aqua, MODIS"], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "(local files)"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "-45.0"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v70"], + ["attribute", "NC_GLOBAL", "summary", "String", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner."], + ["attribute", "NC_GLOBAL", "testOutOfDate", "String", "now-60days"], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2020-06-15T12:00:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "2006-01-16T12:00:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (Monthly Composite), Lon+/-180"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "-180.0"], + ["dimension", "time", "", "double", "nValues=171, evenlySpaced=false, averageSpacing=30 days 23h 9m 11s"], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "1.1374128E9, 1.5922224E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "fraction_digits", "int", "0"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Centered Time"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["dimension", "altitude", "", "double", "nValues=1, onlyValue=0.0"], + ["attribute", "altitude", "_CoordinateAxisType", "String", "Height"], + ["attribute", "altitude", "_CoordinateZisPositive", "String", "up"], + ["attribute", "altitude", "actual_range", "double", "0.0, 0.0"], + ["attribute", "altitude", "axis", "String", "Z"], + ["attribute", "altitude", "fraction_digits", "int", "0"], + ["attribute", "altitude", "ioos_category", "String", "Location"], + ["attribute", "altitude", "long_name", "String", "Altitude"], + ["attribute", "altitude", "positive", "String", "up"], + ["attribute", "altitude", "standard_name", "String", "altitude"], + ["attribute", "altitude", "units", "String", "m"], + ["dimension", "latitude", "", "double", "nValues=4401, evenlySpaced=true, averageSpacing=0.025"], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "double", "-45.0, 65.0"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "coordsys", "String", "geographic"], + ["attribute", "latitude", "fraction_digits", "int", "4"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "point_spacing", "String", "even"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["dimension", "longitude", "", "double", "nValues=14400, evenlySpaced=true, averageSpacing=0.025"], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "double", "-180.0, 179.975"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "coordsys", "String", "geographic"], + ["attribute", "longitude", "fraction_digits", "int", "4"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "point_spacing", "String", "even"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "chlorophyll", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "chlorophyll", "_FillValue", "float", "-9999999.0"], + ["attribute", "chlorophyll", "colorBarMaximum", "double", "30.0"], + ["attribute", "chlorophyll", "colorBarMinimum", "double", "0.03"], + ["attribute", "chlorophyll", "colorBarScale", "String", "Log"], + ["attribute", "chlorophyll", "coordsys", "String", "geographic"], + ["attribute", "chlorophyll", "fraction_digits", "int", "2"], + ["attribute", "chlorophyll", "ioos_category", "String", "Ocean Color"], + ["attribute", "chlorophyll", "long_name", "String", "Chlorophyll Concentration in Sea Water"], + ["attribute", "chlorophyll", "missing_value", "float", "-9999999.0"], + ["attribute", "chlorophyll", "standard_name", "String", "concentration_of_chlorophyll_in_sea_water"], + ["attribute", "chlorophyll", "units", "String", "mg m-3"] + ] + } + } + recorded_at: 2020-07-15 22:14:26 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:14:39 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:14:39 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://upwell.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012.graph", "", "", "public", "AIS Ship Traffic: Hawaii: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_hi_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_hi_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_hi_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_hi_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_hi_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_hi_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012.graph", "", "", "public", "AIS Ship Traffic: Johnston Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Johnston Atoll. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_john_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_john_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_john_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_john_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_john_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_john_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012.graph", "", "", "public", "AIS Ship Traffic: Mariana and Wake: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Mariana Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_mari_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_mari_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_mari_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_mari_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_mari_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_mari_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012.graph", "", "", "public", "AIS Ship Traffic: Rose Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Rose Atoll in American Samoa. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_rose_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_rose_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_rose_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_rose_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_rose_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_rose_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom for the most recent 7 days.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_temp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_temp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_temp/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_temp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_temp&showErrors=false&email=", "University of Hawaii", "aco_adcp_temp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Velocity", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean current velocity at the ACO from a 250 kHz SonTek acoustic doppler current profiler (ADCP) at 1.83 m above the ocean bottom for the most recent 7 days. Velocities are flagged bad if the amplitude is excessively low or high. An amplitude is high if it exceeds the average of the ping before and the ping after by 20 counts. An amplitude is low if less than 6 counts. After this the velocities are flagged bad if the absolute deviation of the vertical velocity from its ensemble median exceeds 0.15 m/s or if its value is less than -0.25 m/s.\n\ncdm_data_type = Profile\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each location, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\neastward_sea_water_velocity (current east component, meters/second)\nnorthward_sea_water_velocity (current north component, meters/second)\nupward_sea_water_velocity (current upward component, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_vel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_vel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_vel/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_vel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_vel&showErrors=false&email=", "University of Hawaii", "aco_adcp_vel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://upwell.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF.graph", "", "", "public", "CRRF Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-CRRF: CRRF Weather Station: Palau: Koror: Ngeanges Island)\nair_temperature (Celsius)\nair_temperature_max (maximum air temperature, Celsius)\nair_temperature_max_time (maximum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (minimum air temperature, Celsius)\nair_temperature_min_time (minimum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_std (air temperature standard deviation, Celsius)\nwind_speed (m/s)\nwind_speed_max (gust speed, m/s)\nwind_speed_max_time (gust speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (minimum wind speed, m/s)\nwind_speed_min_time (minimum wind speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_std (wind speed standard deviation, m/s)\nwind_from_direction (wind direction, degrees)\nwind_from_direction_std (wind direction standard deviation, degrees)\nrainfall_amount (total rainfall, mm)\n... (23 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-CRRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-CRRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-CRRF/index.json", "https://www.pacioos.hawaii.edu/weather/obs-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-CRRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-CRRF&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "AWS-CRRF"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_1000genomes/", "public", "File Names from the AWS S3 1000genomes Bucket: 1000 Genomes", "This dataset has file information from the AWS S3 1000genomes bucket at https://1000genomes.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 1000 Genomes\nName2: http://www.internationalgenome.org/formats\nDescription: The 1000 Genomes Project is an international collaboration which has established the most detailed catalogue of human genetic variation, including SNPs, structural variants, and their haplotype context. The final phase of the project sequenced more than 2500 individuals from 26 different populations around the world and produced an integrated set of phased haplotypes with more than 80 million variants for these individuals.\n\nDocumentation: https://docs.opendata.aws/1000genomes/readme.html\nContact: http://www.internationalgenome.org/contact\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_1000genomes/index.json", "https://registry.opendata.aws/1000-genomes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_1000genomes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_1000genomes&showErrors=false&email=", "Amazon Web Services", "awsS3Files_1000genomes"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_3kricegenome/", "public", "File Names from the AWS S3 3kricegenome Bucket: 3000 Rice Genomes Project", "This dataset has file information from the AWS S3 3kricegenome bucket at https://3kricegenome.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 3000 Rice Genomes Project\nName2: http://s3.amazonaws.com/3kricegenome/README-snp_pipeline.txt\nDescription: The 3000 Rice Genome Project is an international effort to sequence the genomes of 3,024 rice varieties from 89 countries.\n\nDocumentation: https://docs.opendata.aws/3kricegenome/readme.html\nContact: http://iric.irri.org/contact-us\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_3kricegenome/index.json", "https://registry.opendata.aws/3kricegenome/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_3kricegenome.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_3kricegenome&showErrors=false&email=", "Amazon Web Services", "awsS3Files_3kricegenome"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aft_vbi_pds/", "public", "File Names from the AWS S3 aft-vbi-pds Bucket: Amazon Bin Image Dataset: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.", "This dataset has file information from the AWS S3 aft-vbi-pds bucket at https://aft-vbi-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Bin Image Dataset\nName2: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.\nDescription: The Amazon Bin Image Dataset contains over 500,000 images and metadata from bins of a pod in an operating Amazon Fulfillment Center. The bin images in this dataset are captured as robot units carry pods as part of normal Amazon Fulfillment Center operations.\n\nDocumentation: https://docs.opendata.aws/aft-vbi-pds/readme.html\nContact: amazon-bin-images@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aft_vbi_pds/index.json", "https://registry.opendata.aws/amazon-bin-imagery/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aft_vbi_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aft_vbi_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aft_vbi_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory/", "public", "File Names from the AWS S3 allen-brain-observatory Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: Project data files in a public bucket", "This dataset has file information from the AWS S3 allen-brain-observatory bucket at https://allen-brain-observatory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: Project data files in a public bucket\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory_templates/", "public", "File Names from the AWS S3 allen-brain-observatory-templates Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: SageMaker launch template with s3fs bucket mounts", "This dataset has file information from the AWS S3 allen-brain-observatory-templates bucket at https://allen-brain-observatory-templates.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: SageMaker launch template with s3fs bucket mounts\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory_templates/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory_templates.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory_templates&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory_templates"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_amazon_reviews_pds/", "public", "File Names from the AWS S3 amazon-reviews-pds Bucket: Amazon Customer Reviews Dataset: TSV files of reviews", "This dataset has file information from the AWS S3 amazon-reviews-pds bucket at https://amazon-reviews-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Customer Reviews Dataset\nName2: TSV files of reviews\nDescription: Amazon Customer Reviews (a.k.a. Product Reviews) is one of Amazon\u2019s iconic products. In a period of over two decades since the first review in 1995, millions of Amazon customers have contributed over a hundred million reviews to express opinions and describe their experiences regarding products on the Amazon.com website. Over 130+ million customer reviews are available to researchers as part of this dataset.\n\nDocumentation: https://s3.amazonaws.com/amazon-reviews-pds/readme.html\nContact: customer-review-dataset@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not defined\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_amazon_reviews_pds/index.json", "https://registry.opendata.aws/amazon-reviews/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_amazon_reviews_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_amazon_reviews_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_amazon_reviews_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_avg_kitti/", "public", "File Names from the AWS S3 avg-kitti Bucket: KITTI Vision Benchmark Suite", "This dataset has file information from the AWS S3 avg-kitti bucket at https://avg-kitti.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: KITTI Vision Benchmark Suite\nName2: http://www.cvlibs.net/datasets/kitti/raw_data.php\nDescription: Dataset and benchmarks for computer vision research in the context of autonomous driving. The dataset has been recorded in and around the city of Karlsruhe, Germany using the mobile platform AnnieWay (VW station wagon) which has been equipped with several RGB and monochrome cameras, a Velodyne HDL 64 laser scanner as well as an accurate RTK corrected GPS/IMU localization unit. The dataset has been created for computer vision and machine learning research on stereo, optical flow, visual odometry, semantic segmentation, semantic instance segmentation, road segmentation, single image depth prediction, depth map completion, 2D and 3D object detection and object tracking. In addition, several raw data recordings are provided. The datasets are captured by driving around the mid-size city of Karlsruhe, in rural areas and on highways. Up to 15 cars and 30 pedestrians are visible per image.\n\nDocumentation: http://www.cvlibs.net/datasets/kitti/\nContact: http://www.cvlibs.net/people.php\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_avg_kitti/index.json", "https://registry.opendata.aws/kitti/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_avg_kitti.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_avg_kitti&showErrors=false&email=", "Amazon Web Services", "awsS3Files_avg_kitti"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/", "public", "File Names from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd Bucket: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)", "This dataset has file information from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd bucket at https://aws-earth-mo-atmospheric-mogreps-g-prd.s3.eu-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts\nName2: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)\nDescription: Meteorological data reusers now have an exciting opportunity to sample, experiment and evaluate Met Office atmospheric model data, whilst also experiencing a transformative method of requesting data via Restful APIs on AWS. All ahead of Met Office\u2019s own operationally supported API platform that will be launched in late 2019.\n\nDocumentation: https://github.com/MetOffice/aws-earth-examples\nContact: https://www.metoffice.gov.uk/about-us/contact\nUpdateFrequency: Daily (with 24 hour delay)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/index.json", "https://registry.opendata.aws/uk-met-office/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_gsod/", "public", "File Names from the AWS S3 aws-gsod Bucket: Global Surface Summary of Day: Measurements and metadata", "This dataset has file information from the AWS S3 aws-gsod bucket at https://aws-gsod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Surface Summary of Day\nName2: Measurements and metadata\nDescription: GSOD is a collection of daily weather measurements (temperature, wind speed, humidity, pressure, and more) from 9000+ weather stations around the world.\n\nDocumentation: https://www.ncdc.noaa.gov/\nContact: https://www.ncdc.noaa.gov/\nUpdateFrequency: Currently updated infrequently. Last updated on September 13, 2016.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_gsod/index.json", "https://registry.opendata.aws/noaa-gsod/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_gsod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_gsod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_gsod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_broad_references/", "public", "File Names from the AWS S3 broad-references Bucket: Broad Genome References: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.", "This dataset has file information from the AWS S3 broad-references bucket at https://broad-references.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Broad Genome References\nName2: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.\nDescription: Broad maintained human genome reference builds hg19/hg38 and decoy references.\n\nDocumentation: https://s3.amazonaws.com/broad-references/broad-references-readme.html\nContact: hensonc@broadinstitute.org\nManagedBy: Broad Institute\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_broad_references/index.json", "https://registry.opendata.aws/broad-references/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_broad_references.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_broad_references&showErrors=false&email=", "Amazon Web Services", "awsS3Files_broad_references"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cbers_meta_pds/", "public", "File Names from the AWS S3 cbers-meta-pds Bucket: CBERS on AWS: CBERS metadata (Quicklooks, metadata)", "This dataset has file information from the AWS S3 cbers-meta-pds bucket at https://cbers-meta-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CBERS on AWS\nName2: CBERS metadata (Quicklooks, metadata)\nDescription: This project creates a S3 repository with imagery acquired by the China-Brazil Earth Resources Satellite (CBERS). The image files are recorded and processed by Instituto Nacional de Pesquisa Espaciais (INPE) and are converted to Cloud Optimized Geotiff format in order to optimize its use for cloud based applications. The repository contains all CBERS-4 MUX, AWFI, PAN5M and PAN10M scenes acquired since the start of the satellite mission and is daily updated with new scenes.\n\nDocumentation: https://github.com/fredliporace/cbers-on-aws\nContact: https://lists.osgeo.org/mailman/listinfo/cbers-pds\nManagedBy: [AMS Kepler](https://amskepler.com/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cbers_meta_pds/index.json", "https://registry.opendata.aws/cbers/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cbers_meta_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cbers_meta_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cbers_meta_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cgiardata/", "public", "File Names from the AWS S3 cgiardata Bucket: CCAFS-Climate Data: ARC GRID, and ARC ASCII format compressed", "This dataset has file information from the AWS S3 cgiardata bucket at https://cgiardata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CCAFS-Climate Data\nName2: ARC GRID, and ARC ASCII format compressed\nDescription: High resolution climate data to help assess the impacts of climate change primarily on agriculture. These open access datasets of climate projections will help researchers make climate change impact assessments.\n\nDocumentation: http://www.ccafs-climate.org\nContact: http://www.ccafs-climate.org/contact/\nUpdateFrequency: Every three months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cgiardata/index.json", "https://registry.opendata.aws/cgiardata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cgiardata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cgiardata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cgiardata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_commoncrawl/", "public", "File Names from the AWS S3 commoncrawl Bucket: Common Crawl: Crawl data (WARC and ARC format)", "This dataset has file information from the AWS S3 commoncrawl bucket at https://commoncrawl.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Common Crawl\nName2: Crawl data (WARC and ARC format)\nDescription: A corpus of web crawl data composed of over 25 billion web pages.\n\nDocumentation: http://commoncrawl.org/the-data/get-started/\nContact: http://commoncrawl.org/connect/contact-us/\nManagedBy: [Common Crawl](http://commoncrawl.org/)\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_commoncrawl/index.json", "https://registry.opendata.aws/commoncrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_commoncrawl.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_commoncrawl&showErrors=false&email=", "Amazon Web Services", "awsS3Files_commoncrawl"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cornell_eas_data_lake/", "public", "File Names from the AWS S3 cornell-eas-data-lake Bucket: Cornell EAS Data Lake: Cornell EAS Data Lake", "This dataset has file information from the AWS S3 cornell-eas-data-lake bucket at https://cornell-eas-data-lake.s3.us-east-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cornell EAS Data Lake\nName2: Cornell EAS Data Lake\nDescription: Earth & Atmospheric Sciences at Cornell University has created a public data lake of climate data. The data is stored in columnar storage formats (ORC) to make it straightforward to query using standard tools like Amazon Athena or Apache Spark. The data itself is originally intended to be used for building decision support tools for farmers and digital agriculture. The first dataset is the historical NDFD / NDGD data distributed by NCEP / NOAA / NWS. The NDFD (National Digital Forecast Database) and NDGD (National Digital Guidance Database) contain gridded forecasts and observations at 2.5km resolution for the Contiguous United States (CONUS). There are also 5km grids for several smaller US regions and non-continguous territories, such as Hawaii, Guam, Puerto Rico and Alaska. NOAA distributes archives of the NDFD/NDGD via its NOAA Operational Model Archive and Distribution System (NOMADS) in Grib2 format. The data has been converted to ORC to optimize storage space and to, more importantly, simplify data access via standard data analytics tools.\n\nDocumentation: https://datalake.eas.cornell.edu/\nContact: digitalag@cornell.edu\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cornell_eas_data_lake/index.json", "https://registry.opendata.aws/cornell-eas-data-lake/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cornell_eas_data_lake.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cornell_eas_data_lake&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cornell_eas_data_lake"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cse_cic_ids2018/", "public", "File Names from the AWS S3 cse-cic-ids2018 Bucket: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018): Network traffic and log files", "This dataset has file information from the AWS S3 cse-cic-ids2018 bucket at https://cse-cic-ids2018.s3.ca-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018)\nName2: Network traffic and log files\nDescription: This dataset is the result of a collaborative project between the Communications Security Establishment (CSE) and The Canadian Institute for Cybersecurity (CIC) that use the notion of profiles to generate cybersecurity dataset in a systematic manner. It incluides a detailed description of intrusions along with abstract distribution models for applications, protocols, or lower level network entities. The dataset includes seven different attack scenarios, namely Brute-force, Heartbleed, Botnet, DoS, DDoS, Web attacks, and infiltration of the network from inside. The attacking infrastructure includes 50 machines and the victim organization has 5 departments includes 420 PCs and 30 servers. This dataset includes the network traffic and log files of each machine from the victim side, along with 80 network traffic features extracted from captured traffic using CICFlowMeter-V3. For more information on the creation of this dataset, see this paper by researchers at the Canadian Institute for Cybersecurity (CIC) and the University of New Brunswick (UNB): [Toward Generating a New Intrusion Detection Dataset and Intrusion Traffic Characterization](http://www.scitepress.org/Papers/2018/66398/66398.pdf).\n\nDocumentation: http://www.unb.ca/cic/datasets/ids-2018.html\nContact: CIC@unb.ca\nUpdateFrequency: Annualy\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cse_cic_ids2018/index.json", "https://registry.opendata.aws/cse-cic-ids2018/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cse_cic_ids2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cse_cic_ids2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cse_cic_ids2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cytodata/", "public", "File Names from the AWS S3 cytodata Bucket: Cell Painting Image Collection: Images, extracted features and aggregated profiles are available as a S3 bucket", "This dataset has file information from the AWS S3 cytodata bucket at https://cytodata.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cell Painting Image Collection\nName2: Images, extracted features and aggregated profiles are available as a S3 bucket\nDescription: The Cell Painting Image Collection is a collection of freely downloadable microscopy image sets. Cell Painting is an unbiased high throughput imaging assay used to analyze perturbations in cell models. In addition to the images themselves, each set includes a description of the biological application and some type of \"ground truth\" (expected results). Researchers are encouraged to use these image sets as reference points when developing, testing, and publishing new image analysis algorithms for the life sciences. We hope that the this data set will lead to a better understanding of which methods are best for various biological image analysis applications.\n\nDocumentation: https://github.com/cytodata/cytodata-hackathon-2018\nContact: Post on https://forum.image.sc/ and tag with \"cellpainting\"\nUpdateFrequency: irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cytodata/index.json", "https://registry.opendata.aws/cell-painting-image-collection/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cytodata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cytodata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cytodata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_czb_tabula_muris/", "public", "File Names from the AWS S3 czb-tabula-muris Bucket: Tabula Muris", "This dataset has file information from the AWS S3 czb-tabula-muris bucket at https://czb-tabula-muris.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Tabula Muris\nName2: https://github.com/czbiohub/tabula-muris\nDescription: Tabula Muris is a compendium of single cell transcriptomic data from the model organism *Mus musculus* comprising more than 100,000 cells from 20 organs and tissues. These data represent a new resource for cell biology, reveal gene expression in poorly characterized cell populations, and allow for direct and controlled comparison of gene expression in cell types shared between tissues, such as T-lymphocytes and endothelial cells from different anatomical locations. Two distinct technical approaches were used for most organs: one approach, microfluidic droplet-based 3\u2019-end counting, enabled the survey of thousands of cells at relatively low coverage, while the other, FACS-based full length transcript analysis, enabled characterization of cell types with high sensitivity and coverage. The cumulative data provide the foundation for an atlas of transcriptomic cell biology. See: https://www.nature.com/articles/s41586-018-0590-4\n\nDocumentation: https://github.com/czbiohub/tabula-muris/blob/master/tabula-muris-on-aws.md\nContact: If you have questions about the data, you can create an Issue at https://github.com/czbiohub/tabula-muris.\nManagedBy: [Chan Zuckerberg Biohub](https://www.czbiohub.org/)\nUpdateFrequency: This is the final version of the dataset, it will not be updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_czb_tabula_muris/index.json", "https://registry.opendata.aws/tabula-muris/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_czb_tabula_muris.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_czb_tabula_muris&showErrors=false&email=", "Amazon Web Services", "awsS3Files_czb_tabula_muris"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataforgood_fb_data/", "public", "File Names from the AWS S3 dataforgood-fb-data Bucket: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook: CSV and Cloud-optimized GeoTIFF files", "This dataset has file information from the AWS S3 dataforgood-fb-data bucket at https://dataforgood-fb-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook\nName2: CSV and Cloud-optimized GeoTIFF files\nDescription: Population data for a selection of countries, allocated to 1 arcsecond blocks and provided in a combination of CSV and Cloud-optimized GeoTIFF files. This refines [CIESIN\u2019s Gridded Population of the World](https://sedac.ciesin.columbia.edu/data/collection/gpw-v4) using machine learning models on high-resolution worldwide Digital Globe satellite imagery. CIESIN population counts aggregated from worldwide census data are allocated to blocks where imagery appears to contain buildings.\n\nDocumentation: [Project overview](https://dataforgood.fb.com/population-density-maps-documentation/) and [dataset description](https://docs.opendata.aws/dataforgood-fb-data/readme.html)\nContact: disastermaps@fb.com\nManagedBy: |\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataforgood_fb_data/index.json", "https://registry.opendata.aws/dataforgood-fb-hrsl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataforgood_fb_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataforgood_fb_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataforgood_fb_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_datasets_elasticmapreduce_ngrams_books/", "public", "File Names from the AWS S3 datasets.elasticmapreduce Bucket with prefix=ngrams/books/: Google Books Ngrams: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.", "This dataset has file information from the AWS S3 datasets.elasticmapreduce bucket at https://datasets.elasticmapreduce.s3.us-east-1.amazonaws.com/ with prefix=ngrams/books/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Google Books Ngrams\nName2: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.\nDescription: N-grams are fixed size tuples of items. In this case the items are words extracted from the Google Books corpus. The n specifies the number of elements in the tuple, so a 5-gram contains five words or characters. The n-grams in this dataset were produced by passing a sliding window of the text of books and outputting a record for each new token.\n\nDocumentation: http://books.google.com/ngrams/\nContact: https://books.google.com/ngrams\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_datasets_elasticmapreduce_ngrams_books/index.json", "https://registry.opendata.aws/google-ngrams/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_datasets_elasticmapreduce_ngrams_books.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_datasets_elasticmapreduce_ngrams_books&showErrors=false&email=", "Amazon Web Services", "awsS3Files_datasets_elasticmapreduce_ngrams_books"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataworld_linked_acs/", "public", "File Names from the AWS S3 dataworld-linked-acs Bucket: U.S. Census ACS PUMS: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.", "This dataset has file information from the AWS S3 dataworld-linked-acs bucket at https://dataworld-linked-acs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: U.S. Census ACS PUMS\nName2: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.\nDescription: U.S. Census Bureau American Community Survey (ACS) Public Use Microdata Sample (PUMS) available in a linked data format using the Resource Description Framework (RDF) data model.\n\nDocumentation: https://docs.data.world/uscensus/#american-community-survey-linked-open-data\nContact: https://docs.data.world/uscensus/#60---contact\nUpdateFrequency: Yearly, after ACS 1-year PUMS raw data are released\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataworld_linked_acs/index.json", "https://registry.opendata.aws/census-dataworld-pums/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataworld_linked_acs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataworld_linked_acs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataworld_linked_acs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2015/", "public", "File Names from the AWS S3 dc-lidar-2015 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML, SHP", "This dataset has file information from the AWS S3 dc-lidar-2015 bucket at https://dc-lidar-2015.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML, SHP\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2015/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2015.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2015&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2015"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2018/", "public", "File Names from the AWS S3 dc-lidar-2018 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML", "This dataset has file information from the AWS S3 dc-lidar-2018 bucket at https://dc-lidar-2018.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2018/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_eurex_pds/", "public", "File Names from the AWS S3 deutsche-boerse-eurex-pds Bucket: Deutsche B\u00f6rse Public Dataset: Eurex PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-eurex-pds bucket at https://deutsche-boerse-eurex-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Eurex PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_eurex_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_eurex_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_eurex_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_eurex_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_xetra_pds/", "public", "File Names from the AWS S3 deutsche-boerse-xetra-pds Bucket: Deutsche B\u00f6rse Public Dataset: Xetra PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-xetra-pds bucket at https://deutsche-boerse-xetra-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Xetra PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_xetra_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_xetra_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_xetra_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_xetra_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ebirdst_data/", "public", "File Names from the AWS S3 ebirdst-data Bucket: eBird Status and Trends Model Results: Species results files", "This dataset has file information from the AWS S3 ebirdst-data bucket at https://ebirdst-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: eBird Status and Trends Model Results\nName2: Species results files\nDescription: The eBird Status and Trends project generates estimates of bird occurrence and abundance at a high spatiotemporal resolution. This dataset represents the primary modeled results from the analysis workflow and are designed for further analysis, synthesis, visualization, and exploration.\n\nDocumentation: https://cornelllabofornithology.github.io/ebirdst/articles/ebirdst-introduction.html\nContact: https://help.ebird.org/customer/en/portal/emails/new\nManagedBy: [Cornell Lab of Ornithology](https://www.birds.cornell.edu/home/)\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ebirdst_data/index.json", "https://registry.opendata.aws/ebirdst/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ebirdst_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ebirdst_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ebirdst_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_elevation_tiles_prod/", "public", "File Names from the AWS S3 elevation-tiles-prod Bucket: Terrain Tiles: Gridded elevation tiles", "This dataset has file information from the AWS S3 elevation-tiles-prod bucket at https://elevation-tiles-prod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Terrain Tiles\nName2: Gridded elevation tiles\nDescription: A global dataset providing bare-earth terrain heights, tiled for easy usage and provided on S3.\n\nDocumentation: https://mapzen.com/documentation/terrain-tiles/\nContact: https://github.com/tilezen/joerd/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_elevation_tiles_prod/index.json", "https://registry.opendata.aws/terrain-tiles/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_elevation_tiles_prod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_elevation_tiles_prod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_elevation_tiles_prod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_encode_public/", "public", "File Names from the AWS S3 encode-public Bucket: Encyclopedia of DNA Elements (ENCODE): Released and archived ENCODE data", "This dataset has file information from the AWS S3 encode-public bucket at https://encode-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Encyclopedia of DNA Elements (ENCODE)\nName2: Released and archived ENCODE data\nDescription: The Encyclopedia of DNA Elements (ENCODE) Consortium is an international collaboration of research groups funded by the National Human Genome Research Institute (NHGRI). The goal of ENCODE is to build a comprehensive parts list of functional elements in the human genome, including elements that act at the protein and RNA levels, and regulatory elements that control cells and circumstances in which a gene is active. ENCODE investigators employ a variety of assays and methods to identify functional elements. The discovery and annotation of gene elements is accomplished primarily by sequencing a diverse range of RNA sources, comparative genomics, integrative bioinformatic methods, and human curation. Regulatory elements are typically investigated through DNA hypersensitivity assays, assays of DNA methylation, and immunoprecipitation (IP) of proteins that interact with DNA and RNA, i.e., modified histones, transcription factors, chromatin regulators, and RNA-binding proteins, followed by sequencing.\n\nDocumentation: https://www.encodeproject.org\nContact: encode-help@lists.stanford.edu\nManagedBy: ENCODE Data Coordinating Center\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_encode_public/index.json", "https://registry.opendata.aws/encode-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_encode_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_encode_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_encode_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_epa_rsei_pds/", "public", "File Names from the AWS S3 epa-rsei-pds Bucket: EPA Risk-Screening Environmental Indicators: RSEI Microdata", "This dataset has file information from the AWS S3 epa-rsei-pds bucket at https://epa-rsei-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: EPA Risk-Screening Environmental Indicators\nName2: RSEI Microdata\nDescription: Detailed air model results from EPA\u2019s Risk-Screening Environmental Indicators (RSEI) model.\n\nDocumentation: https://docs.opendata.aws/epa-rsei-pds/readme.html\nContact: https://www.epa.gov/rsei/forms/contact-us-about-rsei-model\nUpdateFrequency: Updated infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_epa_rsei_pds/index.json", "https://registry.opendata.aws/epa-rsei-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_epa_rsei_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_epa_rsei_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_epa_rsei_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_era5_pds/", "public", "File Names from the AWS S3 era5-pds Bucket: ECMWF ERA5 Reanalysis: ERA5 Reanalysis NetCDF 4 files", "This dataset has file information from the AWS S3 era5-pds bucket at https://era5-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ECMWF ERA5 Reanalysis\nName2: ERA5 Reanalysis NetCDF 4 files\nDescription: ERA5 is the fifth generation of ECMWF atmospheric reanalyses of the global climate, and the first reanalysis produced as an operational service. It utilizes the best available observation data from satellites and in-situ stations, which are assimilated and processed using ECMWF's Integrated Forecast System (IFS) Cycle 41r2. The dataset provides all essential atmospheric meteorological parameters like, but not limited to, air temperature, pressure and wind at different altitudes, along with surface parameters like rainfall, soil moisture content and sea parameters like sea-surface temperature and wave height. ERA5 provides data at a considerably higher spatial and temporal resolution than its legacy counterpart ERA-Interim. ERA5 consists of high resolution version with 31 km horizontal resolution, and a reduced resolution ensemble version with 10 members. It is currently available since 2008, but will be continuously extended backwards, first until 1979 and then to 1950. Learn more about ERA5 in Jon Olauson's paper [ERA5: The new champion of wind power modelling?](https://www.researchgate.net/publication/320084119_ERA5_The_new_champion_of_wind_power_modelling).\n\nDocumentation: https://github.com/planet-os/notebooks/blob/master/aws/era5-pds.md\nContact: datahub@intertrust.com\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_era5_pds/index.json", "https://registry.opendata.aws/ecmwf-era5/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_era5_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_era5_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_era5_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_coco/", "public", "File Names from the AWS S3 fast-ai-coco Bucket: COCO - Common Objects in Context - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-coco bucket at https://fast-ai-coco.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: COCO - Common Objects in Context - fast.ai datasets\nName2: Datasets\nDescription: COCO is a large-scale object detection, segmentation, and captioning dataset. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. If you use this dataset in your research please cite arXiv:1405.0312 [cs.CV].\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_coco/index.json", "https://registry.opendata.aws/fast-ai-coco/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_coco.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_coco&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_coco"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imageclas/", "public", "File Names from the AWS S3 fast-ai-imageclas Bucket: Image classification - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imageclas bucket at https://fast-ai-imageclas.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image classification - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image classification research, including CIFAR 10 and 100, Caltech 101, MNIST, Food-101, Oxford-102-Flowers, Oxford-IIIT-Pets, and Stanford-Cars. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imageclas/index.json", "https://registry.opendata.aws/fast-ai-imageclas/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imageclas.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imageclas&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imageclas"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imagelocal/", "public", "File Names from the AWS S3 fast-ai-imagelocal Bucket: Image localization - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imagelocal bucket at https://fast-ai-imagelocal.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image localization - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image localization research, including Camvid and PASCAL VOC (2007 and 2012). This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imagelocal/index.json", "https://registry.opendata.aws/fast-ai-imagelocal/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imagelocal.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imagelocal&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imagelocal"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_nlp/", "public", "File Names from the AWS S3 fast-ai-nlp Bucket: NLP - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-nlp bucket at https://fast-ai-nlp.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NLP - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for NLP, with a focus on classification, including IMDb, AG-News, Amazon Reviews (polarity and full), Yelp Reviews (polarity and full), Dbpedia, Sogou News (Pinyin), Yahoo Answers, Wikitext 2 and Wikitext 103, and ACL-2010 French-English 10^9 corpus. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_nlp/index.json", "https://registry.opendata.aws/fast-ai-nlp/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_nlp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_nlp&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_nlp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib Bucket: HIRLAM Weather Model: Pressure GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib bucket at https://fmi-opendata-rcrhirlam-pressure-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Pressure GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_pressure_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_pressure_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-surface-grib Bucket: HIRLAM Weather Model: Surface GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-surface-grib bucket at https://fmi-opendata-rcrhirlam-surface-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Surface GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_surface_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_surface_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gatk_test_data/", "public", "File Names from the AWS S3 gatk-test-data Bucket: GATK Test Data: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.", "This dataset has file information from the AWS S3 gatk-test-data bucket at https://gatk-test-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GATK Test Data\nName2: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.\nDescription: The GATK test data resource bundle is a collection of files for resequencing human genomic data with the Broad Institute's [Genome Analysis Toolkit (GATK)](https://software.broadinstitute.org/gatk/).\n\nDocumentation: https://s3.amazonaws.com/gatk-test-data/gatk-test-data-readme.html\nContact: https://gatkforums.broadinstitute.org/gatk\nManagedBy: Broad Institute\nUpdateFrequency: Every 3 months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gatk_test_data/index.json", "https://registry.opendata.aws/gatk-test-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gatk_test_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gatk_test_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gatk_test_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gdelt_open_data/", "public", "File Names from the AWS S3 gdelt-open-data Bucket: Global Database of Events, Language and Tone (GDELT): Project data files", "This dataset has file information from the AWS S3 gdelt-open-data bucket at https://gdelt-open-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Database of Events, Language and Tone (GDELT)\nName2: Project data files\nDescription: This project monitors the world's broadcast, print, and web news from nearly every corner of every country in over 100 languages and identifies the people, locations, organizations, counts, themes, sources, emotions, quotes, images and events driving our global society every second of every day.\n\nDocumentation: http://www.gdeltproject.org/\nContact: http://www.gdeltproject.org/about.html#contact\nUpdateFrequency: Not currently being updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gdelt_open_data/index.json", "https://registry.opendata.aws/gdelt/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gdelt_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gdelt_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gdelt_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_genomeark/", "public", "File Names from the AWS S3 genomeark Bucket: Genome Ark", "This dataset has file information from the AWS S3 genomeark bucket at https://genomeark.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome Ark\nName2: https://vgp.github.io\nDescription: The Genome Ark hosts genomic information for the Vertebrate Genomes Project (VGP) and other related projects. The VGP is an international collaboration that aims to generate complete and near error-free reference genomes for all extant vertebrate species. These genomes will be used to address fundamental questions in biology and disease, to identify species most genetically at risk for extinction, and to preserve genetic information of life.\n\nDocumentation: https://vertebrategenomesproject.org\nContact: Erich Jarvis \nManagedBy: The Genome10K community of scientists\nUpdateFrequency: Data will be continually updated as it is generated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_genomeark/index.json", "https://registry.opendata.aws/genomeark/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_genomeark.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_genomeark&showErrors=false&email=", "Amazon Web Services", "awsS3Files_genomeark"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_giab/", "public", "File Names from the AWS S3 giab Bucket: Genome in a Bottle on AWS: Latest data", "This dataset has file information from the AWS S3 giab bucket at https://giab.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome in a Bottle on AWS\nName2: Latest data\nDescription: Several reference genomes to enable translation of whole human genome sequencing to clinical practice.\n\nDocumentation: https://docs.opendata.aws/giab/readme.html\nContact: http://genomeinabottle.org/\nUpdateFrequency: New data are added as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_giab/index.json", "https://registry.opendata.aws/giab/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_giab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_giab&showErrors=false&email=", "Amazon Web Services", "awsS3Files_giab"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gmsdata/", "public", "File Names from the AWS S3 gmsdata Bucket: The Genome Modeling System", "This dataset has file information from the AWS S3 gmsdata bucket at https://gmsdata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Genome Modeling System\nName2: https://gmsdata.s3.amazonaws.com/INDEX.html\nDescription: The Genome Institute at Washington University has developed a high-throughput, fault-tolerant analysis information management system called the Genome Modeling System (GMS), capable of executing complex, interdependent, and automated genome analysis pipelines at a massive scale. The GMS framework provides detailed tracking of samples and data coupled with reliable and repeatable analysis pipelines. GMS includes a full system image with software and services, expandable from one workstation to a large compute cluster.\n\nDocumentation: https://github.com/genome/gms/wiki\nContact: https://github.com/genome/gms/issues\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gmsdata/index.json", "https://registry.opendata.aws/gmsdata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gmsdata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gmsdata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gmsdata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_grillo_openeew/", "public", "File Names from the AWS S3 grillo-openeew Bucket: OpenEEW: OpenEEW", "This dataset has file information from the AWS S3 grillo-openeew bucket at https://grillo-openeew.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenEEW\nName2: OpenEEW\nDescription: Grillo has developed an IoT-based earthquake early-warning system in Mexico and Chile and is now opening its entire archive of unprocessed accelerometer data to the world to encourage the development of new algorithms capable of rapidly detecting and characterizing earthquakes in real time.\n\nDocumentation: https://github.com/grillo/openeew\nContact: openeew@grillo.io\nManagedBy: [Grillo](https://grillo.io/)\nUpdateFrequency: Approximately every 10 minutes\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_grillo_openeew/index.json", "https://registry.opendata.aws/grillo-openeew/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_grillo_openeew.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_grillo_openeew&showErrors=false&email=", "Amazon Web Services", "awsS3Files_grillo_openeew"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_microbiome_project/", "public", "File Names from the AWS S3 human-microbiome-project Bucket: The Human Microbiome Project", "This dataset has file information from the AWS S3 human-microbiome-project bucket at https://human-microbiome-project.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Human Microbiome Project\nName2: https://aws.amazon.com/datasets/human-microbiome-project/\nDescription: The NIH-funded Human Microbiome Project (HMP) is a collaborative effort of over 300 scientists from more than 80 organizations to comprehensively characterize the microbial communities inhabiting the human body and elucidate their role in human health and disease. To accomplish this task, microbial community samples were isolated from a cohort of 300 healthy adult human subjects at 18 specific sites within five regions of the body (oral cavity, airways, urogenital track, skin, and gut). Targeted sequencing of the 16S bacterial marker gene and/or whole metagenome shotgun sequencing was performed for thousands of these samples. In addition, whole genome sequences were generated for isolate strains collected from human body sites to act as reference organisms for analysis. Finally, 16S marker and whole metagenome sequencing was also done on additional samples from people suffering from several disease conditions.\n\nDocumentation: https://commonfund.nih.gov/hmp\nContact: https://commonfund.nih.gov/hmp/related_activities\nUpdateFrequency: Uncertain\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_microbiome_project/index.json", "https://registry.opendata.aws/human-microbiome-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_microbiome_project.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_microbiome_project&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_microbiome_project"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_pangenomics/", "public", "File Names from the AWS S3 human-pangenomics Bucket: Human PanGenomics Project: Human PanGenomics Project", "This dataset has file information from the AWS S3 human-pangenomics bucket at https://human-pangenomics.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Human PanGenomics Project\nName2: Human PanGenomics Project\nDescription: This dataset includes sequencing data, assemblies, and analyses for the offspring of ten parent-offspring trios.\n\nDocumentation: https://github.com/human-pangenomics/hpgp-data\nContact: https://github.com/human-pangenomics/hpgp-data/issues\nUpdateFrequency: Data will be added and updated as technologies improve or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_pangenomics/index.json", "https://registry.opendata.aws/hpgp-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_pangenomics.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_pangenomics&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_pangenomics"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/", "public", "File Names from the AWS S3 ichangemycity-janaagraha-complaints-data-aws Bucket: IChangeMyCity Complaints Data from Janaagraha: IChangeMyCity Complaints", "This dataset has file information from the AWS S3 ichangemycity-janaagraha-complaints-data-aws bucket at https://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IChangeMyCity Complaints Data from Janaagraha\nName2: IChangeMyCity Complaints\nDescription: The [IChangeMyCity](https://www.ichangemycity.com) project provides insight into the complaints raised by citizens from diffent cities of India related to the issues in their neighbourhoods and the resolution of the same by the civic bodies.\n\nDocumentation: http://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/readme.html\nContact: data@janaagraha.org\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/index.json", "https://registry.opendata.aws/ichangemycity/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ichangemycity_janaagraha_complaints_data_aws&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ichangemycity_janaagraha_complaints_data_aws"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_irs_990_spreadsheets/", "public", "File Names from the AWS S3 irs-990-spreadsheets Bucket: IRS 990 Filings (Spreadsheets): Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form", "This dataset has file information from the AWS S3 irs-990-spreadsheets bucket at https://irs-990-spreadsheets.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IRS 990 Filings (Spreadsheets)\nName2: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form\nDescription: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form. Additional fields being added regularly.\n\nDocumentation: https://appliednonprofitresearch.com/documentation/irs-990-spreadsheets\nContact: [info@appliednonprofitresearch.com](info@appliednonprofitresearch.com)\nManagedBy: [Applied Nonprofit Research, LLC](https://www.appliednonprofitresearch.com/)\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_irs_990_spreadsheets/index.json", "https://registry.opendata.aws/990-spreadsheets/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_irs_990_spreadsheets.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_irs_990_spreadsheets&showErrors=false&email=", "Amazon Web Services", "awsS3Files_irs_990_spreadsheets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lab41openaudiocorpus/", "public", "File Names from the AWS S3 lab41openaudiocorpus Bucket: Voices Obscured in Complex Environmental Settings (VOiCES): wav audio files, orthographic transcriptions, and speaker ID", "This dataset has file information from the AWS S3 lab41openaudiocorpus bucket at https://lab41openaudiocorpus.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Voices Obscured in Complex Environmental Settings (VOiCES)\nName2: wav audio files, orthographic transcriptions, and speaker ID\nDescription: VOiCES is a speech corpus recorded in acoustically challenging settings, using distant microphone recording. Speech was recorded in real rooms with various acoustic features (reverb, echo, HVAC systems, outside noise, etc.). Adversarial noise, either television, music, or babble, was concurrently played with clean speech. Data was recorded using multiple microphones strategically placed throughout the room. The corpus includes audio recordings, orthographic transcriptions, and speaker labels.\n\nDocumentation: https://voices18.github.io/\nContact: https://github.com/voices18/utilities/issues\nUpdateFrequency: Data from two additional rooms will be added to the corpus Fall 2018.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lab41openaudiocorpus/index.json", "https://registry.opendata.aws/lab41-sri-voices/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lab41openaudiocorpus.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lab41openaudiocorpus&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lab41openaudiocorpus"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds/", "public", "File Names from the AWS S3 landsat-pds Bucket: Landsat 8: Scenes and metadata", "This dataset has file information from the AWS S3 landsat-pds bucket at https://landsat-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: Scenes and metadata\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds_inventory/", "public", "File Names from the AWS S3 landsat-pds-inventory Bucket: Landsat 8: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)", "This dataset has file information from the AWS S3 landsat-pds-inventory bucket at https://landsat-pds-inventory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds_inventory/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds_inventory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds_inventory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds_inventory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lofar_elais_n1/", "public", "File Names from the AWS S3 lofar-elais-n1 Bucket: LOFAR ELAIS-N1 cycle 2 observations on AWS: LOFAR ELAIS-N1 cycle 2 observations", "This dataset has file information from the AWS S3 lofar-elais-n1 bucket at https://lofar-elais-n1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: LOFAR ELAIS-N1 cycle 2 observations on AWS\nName2: LOFAR ELAIS-N1 cycle 2 observations\nDescription: These data correspond to the [International LOFAR Telescope](http://www.lofar.org/) observations of the sky field ELAIS-N1 (16:10:01 +54:30:36) during the cycle 2 of observations. There are 11 runs of about 8 hours each plus the corresponding observation of the calibration targets before and after the target field. The data are measurement sets ([MS](https://casa.nrao.edu/Memos/229.html)) containing the cross-correlated data and metadata divided in 371 frequency sub-bands per target centred at ~150 MHz.\n\nDocumentation: https://www.lofarcloud.uk/data.html\nContact: https://www.lofarcloud.uk/\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lofar_elais_n1/index.json", "https://registry.opendata.aws/lofar-elais-n1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lofar_elais_n1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lofar_elais_n1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lofar_elais_n1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mf_nwp_models/", "public", "File Names from the AWS S3 mf-nwp-models Bucket: Atmospheric Models from M\u00e9t\u00e9o-France: Atmospheric Models from M\u00e9t\u00e9o-France", "This dataset has file information from the AWS S3 mf-nwp-models bucket at https://mf-nwp-models.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Atmospheric Models from M\u00e9t\u00e9o-France\nName2: Atmospheric Models from M\u00e9t\u00e9o-France\nDescription: Global and high-resolution regional atmospheric models from M\u00e9t\u00e9o-France.\n\nDocumentation: https://mf-models-on-aws.org\nContact: contact@openmeteodata.com\nManagedBy: [OpenMeteoData](https://openmeteodata.com)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mf_nwp_models/index.json", "https://registry.opendata.aws/meteo-france-models/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mf_nwp_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mf_nwp_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mf_nwp_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_modis_pds/", "public", "File Names from the AWS S3 modis-pds Bucket: MODIS on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 modis-pds bucket at https://modis-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: MODIS on AWS\nName2: Imagery and metadata\nDescription: Select products from the Moderate Resolution Imaging Spectroradiometer (MODIS) managed by the U.S. Geological Survey and NASA.\n\nDocumentation: https://docs.opendata.aws/modis-pds/readme.html\nContact: https://github.com/AstroDigital/modis-ingestor/issues\nUpdateFrequency: New MODIS data is added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_modis_pds/index.json", "https://registry.opendata.aws/modis/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_modis_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_modis_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_modis_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_multimedia_commons/", "public", "File Names from the AWS S3 multimedia-commons Bucket: Multimedia Commons: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.", "This dataset has file information from the AWS S3 multimedia-commons bucket at https://multimedia-commons.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Multimedia Commons\nName2: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.\nDescription: The Multimedia Commons is a collection of audio and visual features computed for the nearly 100 million Creative Commons-licensed Flickr images and videos in the YFCC100M dataset from Yahoo! Labs, along with ground-truth annotations for selected subsets. The International Computer Science Institute (ICSI) and Lawrence Livermore National Laboratory are producing and distributing a core set of derived feature sets and annotations as part of an effort to enable large-scale video search capabilities. They have released this feature corpus into the public domain, under Creative Commons License 0, so it is free for anyone to use for any purpose.\n\nDocumentation: https://multimediacommons.wordpress.com/yfcc100m-core-dataset/\nContact: multimedia-commons@icsi.berkeley.edu\nUpdateFrequency: Not updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_multimedia_commons/index.json", "https://registry.opendata.aws/multimedia-commons/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_multimedia_commons.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_multimedia_commons&showErrors=false&email=", "Amazon Web Services", "awsS3Files_multimedia_commons"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mwapublic/", "public", "File Names from the AWS S3 mwapublic Bucket: Epoch of Reionization Dataset: Selected MWA EoR data (uvfits format) from 2013-2015", "This dataset has file information from the AWS S3 mwapublic bucket at https://mwapublic.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Epoch of Reionization Dataset\nName2: Selected MWA EoR data (uvfits format) from 2013-2015\nDescription: The data are from observations with the Murchison Widefield Array (MWA) which is a Square Kilometer Array (SKA) precursor in Western Australia. This particular dataset is from the Epoch of Reionization project which is a key science driver of the SKA. Nearly 2PB of such observations have been recorded to date, this is a small subset of that which has been exported from the MWA data archive in Perth and made available to the public on AWS. The data were taken to detect signatures of the first stars and galaxies forming and the effect of these early stars and galaxies on the evolution of the universe.\n\nDocumentation: http://danielcjacobs.com/research/epoch-of-reionization-aws-public-dataset/\nContact: brynah (at) phys.washington.edu\nManagedBy: University of washington Radio Cosmology Group\nUpdateFrequency: Irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mwapublic/index.json", "https://registry.opendata.aws/epoch-of-reionization/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mwapublic.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mwapublic&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mwapublic"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nanopore_human_wgs/", "public", "File Names from the AWS S3 nanopore-human-wgs Bucket: Nanopore Reference Human Genome: Nanopore Reference Human Genome", "This dataset has file information from the AWS S3 nanopore-human-wgs bucket at https://nanopore-human-wgs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Nanopore Reference Human Genome\nName2: Nanopore Reference Human Genome\nDescription: This dataset includes the sequencing and assembly of a reference standard human genome (GM12878) using the MinION nanopore sequencing instrument with the R9.4 1D chemistry.\n\nDocumentation: https://github.com/nanopore-wgs-consortium/NA12878\nContact: https://github.com/nanopore-wgs-consortium/NA12878/issues\nUpdateFrequency: Data will be added as methodology improves or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nanopore_human_wgs/index.json", "https://registry.opendata.aws/nanopore/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nanopore_human_wgs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nanopore_human_wgs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nanopore_human_wgs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_Landsat/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=Landsat/: NASA NEX: Landsat GLS (Global Land Survey)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=Landsat/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Landsat GLS (Global Land Survey)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_Landsat/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_Landsat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_Landsat&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_Landsat"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_LOCA/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=LOCA/: NASA NEX: Localized Constructed Analogs (LOCA)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=LOCA/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Localized Constructed Analogs (LOCA)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_LOCA/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_LOCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_LOCA&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_LOCA"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_MODIS/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=MODIS/: NASA NEX: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=MODIS/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_MODIS/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_MODIS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_MODIS&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_MODIS"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_DCP30/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-DCP30/: NASA NEX: Downscaled Climate Projections (NEX-DCP30)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-DCP30/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Downscaled Climate Projections (NEX-DCP30)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_DCP30/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_DCP30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_DCP30&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_DCP30"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_GDDP/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-GDDP/: NASA NEX: Global Daily Downscaled Projections (NEX-GDDP)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-GDDP/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Global Daily Downscaled Projections (NEX-GDDP)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_GDDP/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_GDDP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_GDDP&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_GDDP"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gefs_pds/", "public", "File Names from the AWS S3 noaa-gefs-pds Bucket: NOAA Global Ensemble Forecast System (GEFS): Project data files", "This dataset has file information from the AWS S3 noaa-gefs-pds bucket at https://noaa-gefs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Ensemble Forecast System (GEFS)\nName2: Project data files\nDescription: The Global Ensemble Forecast System (GEFS), previously known as the GFS Global ENSemble (GENS), is a weather forecast model made up of 21 separate forecasts, or ensemble members. The National Centers for Environmental Prediction (NCEP) started the GEFS to address the nature of uncertainty in weather observations, which is used to initialize weather forecast models. The GEFS attempts to quantify the amount of uncertainty in a forecast by generating an ensemble of multiple forecasts, each minutely different, or perturbed, from the original observations. With global coverage, GEFS is produced four times a day with weather forecasts going out to 16 days.\n\nDocumentation: https://docs.opendata.aws/noaa-gefs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GEFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GEFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gefs_pds/index.json", "https://registry.opendata.aws/noaa-gefs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gefs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gefs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gefs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_bdp_pds/", "public", "File Names from the AWS S3 noaa-gfs-bdp-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 GFS data", "This dataset has file information from the AWS S3 noaa-gfs-bdp-pds bucket at https://noaa-gfs-bdp-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_bdp_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_bdp_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_bdp_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_bdp_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_pds/", "public", "File Names from the AWS S3 noaa-gfs-pds Bucket: Unidata NOAA Global Forecast System (GFS) Model: A rolling four-week archive of 0.25 degree GFS data", "This dataset has file information from the AWS S3 noaa-gfs-pds bucket at https://noaa-gfs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Unidata NOAA Global Forecast System (GFS) Model\nName2: A rolling four-week archive of 0.25 degree GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks.\n\nDocumentation: https://docs.opendata.aws/noaa-gfs-pds/readme.html\nContact: https://www.ncdc.noaa.gov/contact\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_pds/index.json", "https://registry.opendata.aws/noaa-gfs-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfspara_pds/", "public", "File Names from the AWS S3 noaa-gfspara-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 FV3-based parallel version of the GFS", "This dataset has file information from the AWS S3 noaa-gfspara-pds bucket at https://noaa-gfspara-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 FV3-based parallel version of the GFS\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfspara_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfspara_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfspara_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfspara_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghcn_pds/", "public", "File Names from the AWS S3 noaa-ghcn-pds Bucket: NOAA Global Historical Climatology Network Daily (GHCN-D): Project data files", "This dataset has file information from the AWS S3 noaa-ghcn-pds bucket at https://noaa-ghcn-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Daily (GHCN-D)\nName2: Project data files\nDescription: Global Historical Climatology Network - Daily is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://docs.opendata.aws/noaa-ghcn-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncdc.noaa.gov/ghcn-daily-description). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghcn_pds/index.json", "https://registry.opendata.aws/noaa-ghcn/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghcn_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghcn_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghcn_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghe_pds/", "public", "File Names from the AWS S3 noaa-ghe-pds Bucket: NOAA Global Hydro Estimator (GHE): Project data files", "This dataset has file information from the AWS S3 noaa-ghe-pds bucket at https://noaa-ghe-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Hydro Estimator (GHE)\nName2: Project data files\nDescription: Global Hydro-Estimator provides a global mosaic imagery of rainfall estimates from multi-geostationary satellites, which currently includes GOES-16, GOES-15, Meteosat-8, Meteosat-11 and Himawari-8. The GHE products include: Instantaneous rain rate, 1 hour, 3 hour, 6 hour, 24 hour and also multi-day rainfall accumulation.\n\nDocumentation: https://www.ospo.noaa.gov/Products/atmosphere/ghe/index.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 15 minute-instantaneous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghe_pds/index.json", "https://registry.opendata.aws/noaa-ghe/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghe_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghe_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghe_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_global_hourly_pds/", "public", "File Names from the AWS S3 noaa-global-hourly-pds Bucket: NOAA Global Historical Climatology Network Hourly (GHCN-H): Project data files", "This dataset has file information from the AWS S3 noaa-global-hourly-pds bucket at https://noaa-global-hourly-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Hourly (GHCN-H)\nName2: Project data files\nDescription: Global Historical Climatology Network - Hourly is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: daily (Manually)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_global_hourly_pds/index.json", "https://registry.opendata.aws/noaa-ghcnh/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_global_hourly_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_global_hourly_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_global_hourly_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3NoaaGoes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nUse ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browser the files in buckets. This dataset is a solution to that problem for this bucket.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3NoaaGoes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3NoaaGoes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3NoaaGoes16&showErrors=false&email=", "NOAA", "awsS3NoaaGoes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket: GOES on AWS: GOES-16 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-16 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes16&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes17/", "public", "File Names from the AWS S3 noaa-goes17 Bucket: GOES on AWS: GOES-17 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes17 bucket at https://noaa-goes17.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-17 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes17/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes17&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes17"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_hrrr_pds/", "public", "File Names from the AWS S3 noaa-hrrr-pds Bucket: NOAA High-Resolution Rapid Refresh (HRRR) Model: A rolling one-week archive of HRRR data.", "This dataset has file information from the AWS S3 noaa-hrrr-pds bucket at https://noaa-hrrr-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA High-Resolution Rapid Refresh (HRRR) Model\nName2: A rolling one-week archive of HRRR data.\nDescription: The HRRR is a NOAA real-time 3-km resolution, hourly updated, cloud-resolving, convection-allowing atmospheric model, initialized by 3km grids with 3km radar assimilation. Radar data is assimilated in the HRRR every 15 min over a 1-h period adding further detail to that provided by the hourly data assimilation from the 13km radar-enhanced Rapid Refresh.\n\nDocumentation: https://docs.opendata.aws/noaa-hrrr-pds/readme.html\nContact: https://rapidrefresh.noaa.gov/hrrr/\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_hrrr_pds/index.json", "https://registry.opendata.aws/noaa-hrrr-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_hrrr_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_hrrr_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_hrrr_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_isd_pds/", "public", "File Names from the AWS S3 noaa-isd-pds Bucket: NOAA Integrated Surface Database (ISD): Project data files", "This dataset has file information from the AWS S3 noaa-isd-pds bucket at https://noaa-isd-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Integrated Surface Database (ISD)\nName2: Project data files\nDescription: The Integrated Surface Database (ISD) consists of global hourly and synoptic observations compiled from numerous sources into a gzipped fixed width format. ISD was developed as a joint activity within Asheville's Federal Climate Complex. The database includes over 35,000 stations worldwide, with some having data as far back as 1901, though the data show a substantial increase in volume in the 1940s and again in the early 1970s. Currently, there are over 14,000 \"active\" stations updated daily in the database. The total uncompressed data volume is around 600 gigabytes; however, it continues to grow as more data are added. ISD includes numerous parameters such as wind speed and direction, wind gust, temperature, dew point, cloud data, sea level pressure, altimeter setting, station pressure, present weather, visibility, precipitation amounts for various time periods, snow depth, and various other elements as observed by each station.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_isd_pds/index.json", "https://registry.opendata.aws/noaa-isd/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_isd_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_isd_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_isd_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nexrad_level2/", "public", "File Names from the AWS S3 noaa-nexrad-level2 Bucket: NEXRAD on AWS: NEXRAD Level II archive data", "This dataset has file information from the AWS S3 noaa-nexrad-level2 bucket at https://noaa-nexrad-level2.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II archive data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nexrad_level2/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nexrad_level2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nexrad_level2&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nexrad_level2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_pds/", "public", "File Names from the AWS S3 noaa-nwm-pds Bucket: NOAA National Water Model Short-Range Forecast: A rolling four week archive of NWM data.", "This dataset has file information from the AWS S3 noaa-nwm-pds bucket at https://noaa-nwm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Short-Range Forecast\nName2: A rolling four week archive of NWM data.\nDescription: The National Water Model (NWM) is a water resources model that simulates and forecasts water budget variables, including snowpack, evapotranspiration, soil moisture and streamflow, over the entire continental United States (CONUS). The model, launched in August 2016, is designed to improve the ability of NOAA to meet the needs of its stakeholders (forecasters, emergency managers, reservoir operators, first responders, recreationists, farmers, barge operators, and ecosystem and floodplain managers) by providing expanded accuracy, detail, and frequency of water information. It is operated by NOAA\u2019s Office of Water Prediction. This bucket contains a four-week rollover of the Short Range Forecast model output and the corresponding forcing data for the model. The model is forced with meteorological data from the High Resolution Rapid Refresh (HRRR) and the Rapid Refresh (RAP) models. The Short Range Forecast configuration cycles hourly and produces hourly deterministic forecasts of streamflow and hydrologic states out to 18 hours.\n\nDocumentation: https://docs.opendata.aws/noaa-nwm-pds/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_pds/index.json", "https://registry.opendata.aws/noaa-nwm-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_retro_v2_0_pds/", "public", "File Names from the AWS S3 noaa-nwm-retro-v2.0-pds Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 2.0.", "This dataset has file information from the AWS S3 noaa-nwm-retro-v2.0-pds bucket at https://noaa-nwm-retro-v2.0-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 2.0.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\n... (4 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_retro_v2_0_pds/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_retro_v2_0_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_retro_v2_0_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_retro_v2_0_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ofs_pds/", "public", "File Names from the AWS S3 noaa-ofs-pds Bucket: NOAA Operational Forecast System (OFS): Project data files", "This dataset has file information from the AWS S3 noaa-ofs-pds bucket at https://noaa-ofs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Operational Forecast System (OFS)\nName2: Project data files\nDescription: The Operational Forecast System (OFS) has been developed to serve the maritime user community. OFS was developed in a joint project of the NOAA/National Ocean Service (NOS)/Office of Coast Survey, the NOAA/NOS/Center for Operational Oceanographic Products and Services (CO-OPS), and the NOAA/National Weather Service (NWS)/National Centers for Environmental Prediction (NCEP) Central Operations (NCO). OFS generates water level, water current, water temperature, water salinity (except for the Great Lakes) and wind conditions nowcast and forecast guidance four times per day.\n\nDocumentation: https://docs.opendata.aws/noaa-ofs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA OFS site](https://tidesandcurrents.noaa.gov/models.html). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight and generates 6-hour nowcasts and 48-hour forecast guidance\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ofs_pds/index.json", "https://registry.opendata.aws/noaa-ofs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ofs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ofs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ofs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/", "public", "File Names from the AWS S3 nrel-pds-wtk Bucket with prefix=wtk-techno-economic/pywtk-data/: NREL Wind Integration National Dataset on AWS: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format", "This dataset has file information from the AWS S3 nrel-pds-wtk bucket at https://nrel-pds-wtk.s3.us-west-2.amazonaws.com/ with prefix=wtk-techno-economic/pywtk-data/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NREL Wind Integration National Dataset on AWS\nName2: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format\nDescription: The [Wind Integration National Dataset (WIND)](https://www.nrel.gov/grid/wind-toolkit.html) is an update and expansion of the Eastern Wind Integration Data Set and Western Wind Integration Data Set. It supports the next generation of wind integration studies.\n\nDocumentation: https://www.nrel.gov/grid/wind-toolkit.html\nContact: wind-toolkit@nrel.gov\nManagedBy: [National Renewable Energy Laboratory](https://www.nrel.gov/)\nUpdateFrequency: As Needed\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/index.json", "https://registry.opendata.aws/nrel-pds-wtk/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nwm_archive/", "public", "File Names from the AWS S3 nwm-archive Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 1.2.", "This dataset has file information from the AWS S3 nwm-archive bucket at https://nwm-archive.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 1.2.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nwm_archive/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nwm_archive.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nwm_archive&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nwm_archive"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nyc_tlc/", "public", "File Names from the AWS S3 nyc-tlc Bucket: New York City Taxi and Limousine Commission (TLC) Trip Record Data: CSV files containing NYC TLC trip data.", "This dataset has file information from the AWS S3 nyc-tlc bucket at https://nyc-tlc.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: New York City Taxi and Limousine Commission (TLC) Trip Record Data\nName2: CSV files containing NYC TLC trip data.\nDescription: Data of trips taken by taxis and for-hire vehicles in New York City.\n\nDocumentation: http://www.nyc.gov/html/tlc/html/about/trip_record_data.shtml\nContact: research@tlc.nyc.gov\nUpdateFrequency: As soon as new data is available to be shared publicly.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nyc_tlc/index.json", "https://registry.opendata.aws/nyc-tlc-trip-records-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nyc_tlc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nyc_tlc&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nyc_tlc"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_oicr_icgc_meta_metadata/", "public", "File Names from the AWS S3 oicr.icgc.meta Bucket with prefix=metadata/: ICGC on AWS: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README", "This dataset has file information from the AWS S3 oicr.icgc.meta bucket at https://oicr.icgc.meta.s3.us-east-1.amazonaws.com/ with prefix=metadata/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ICGC on AWS\nName2: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README\nDescription: The International Cancer Genome Consortium (ICGC) coordinates projects with the common aim of accelerating research into the causes and control of cancer. The PanCancer Analysis of Whole Genomes (PCAWG) study is an international collaboration to identify common patterns of mutation in whole genomes from ICGC. More than 2,400 consistently analyzed genomes corresponding to over 1,100 unique ICGC donors are now freely available on Amazon S3 to credentialed researchers subject to ICGC data sharing policies.\n\nDocumentation: https://dcc.icgc.org/icgc-in-the-cloud/aws\nContact: dcc-support@icgc.org\nUpdateFrequency: New data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_oicr_icgc_meta_metadata/index.json", "https://registry.opendata.aws/icgc/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_oicr_icgc_meta_metadata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_oicr_icgc_meta_metadata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_oicr_icgc_meta_metadata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ooni_data/", "public", "File Names from the AWS S3 ooni-data Bucket: Open Observatory of Network Interference: S3 bucket with data", "This dataset has file information from the AWS S3 ooni-data bucket at https://ooni-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open Observatory of Network Interference\nName2: S3 bucket with data\nDescription: A free software, global observation network for detecting censorship, surveillance and traffic manipulation on the internet.\n\nDocumentation: https://ooni.torproject.org/about/\nContact: https://ooni.torproject.org/get-involved/\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ooni_data/index.json", "https://registry.opendata.aws/ooni/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ooni_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ooni_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ooni_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openaq_fetches/", "public", "File Names from the AWS S3 openaq-fetches Bucket: OpenAQ: Minutely CSVs of global air quality fetched from sources all over the world", "This dataset has file information from the AWS S3 openaq-fetches bucket at https://openaq-fetches.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenAQ\nName2: Minutely CSVs of global air quality fetched from sources all over the world\nDescription: Global, aggregated physical air quality data from public data sources provided by government, research-grade and other sources. These awesome groups do the hard work of measuring these data and publicly sharing them, and our community makes them more universally-accessible to both humans and machines.\n\nDocumentation: https://openaq.org\nContact: info@openaq.org\nManagedBy: [OpenAQ](https://openaq.org)\nUpdateFrequency: Minutely\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openaq_fetches/index.json", "https://registry.opendata.aws/openaq/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openaq_fetches.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openaq_fetches&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openaq_fetches"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_opencitymodel/", "public", "File Names from the AWS S3 opencitymodel Bucket: Open City Model (OCM): Project data files", "This dataset has file information from the AWS S3 opencitymodel bucket at https://opencitymodel.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open City Model (OCM)\nName2: Project data files\nDescription: Open City Model is an initiative to provide cityGML data for all the buildings in the United States. By using other open datasets in conjunction with our own code and algorithms it is our goal to provide 3D geometries for every US building.\n\nDocumentation: https://github.com/opencitymodel/opencitymodel\nContact: https://github.com/opencitymodel/opencitymodel#contact\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_opencitymodel/index.json", "https://registry.opendata.aws/opencitymodel/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_opencitymodel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_opencitymodel&showErrors=false&email=", "Amazon Web Services", "awsS3Files_opencitymodel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openneuro_org/", "public", "File Names from the AWS S3 openneuro.org Bucket: OpenNeuro: All datasets", "This dataset has file information from the AWS S3 openneuro.org bucket at https://openneuro.org.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenNeuro\nName2: All datasets\nDescription: OpenNeuro is a database of openly-available brain imaging data. The data are shared according to a Creative Commons CC0 license, providing a broad range of brain imaging data to researchers and citizen scientists alike. The database primarily focuses on functional magnetic resonance imaging (fMRI) data, but also includes other imaging modalities including structural and diffusion MRI, electroencephalography (EEG), and magnetoencephalograpy (MEG). OpenfMRI is a project of the [Center for Reproducible Neuroscience at Stanford University](http://reproducibility.stanford.edu). Development of the OpenNeuro resource has been funded by the National Science Foundation, National Institute of Mental Health, National Institute on Drug Abuse, and the Laura and John Arnold Foundation.\n\nDocumentation: http://openneuro.org\nContact: Support form at https://openneuro.org\nUpdateFrequency: New datasets deposited every 4-6 days\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openneuro_org/index.json", "https://registry.opendata.aws/openneuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openneuro_org.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openneuro_org&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openneuro_org"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osm_pds/", "public", "File Names from the AWS S3 osm-pds Bucket: OpenStreetMap on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 osm-pds bucket at https://osm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap on AWS\nName2: Imagery and metadata\nDescription: OSM is a free, editable map of the world, created and maintained by volunteers. Regular OSM data archives are made available in Amazon S3.\n\nDocumentation: https://docs.opendata.aws/osm-pds/readme.html\nContact: https://github.com/mojodna/osm-pds-pipelines/issues\nUpdateFrequency: Data is updated weekly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osm_pds/index.json", "https://registry.opendata.aws/osm/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osmlr/", "public", "File Names from the AWS S3 osmlr Bucket: OpenStreetMap Linear Referencing: Manifest and data files", "This dataset has file information from the AWS S3 osmlr bucket at https://osmlr.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap Linear Referencing\nName2: Manifest and data files\nDescription: OSMLR a linear referencing system built on top of OpenStreetMap. OSM has great information about roads around the world and their interconnections, but it lacks the means to give a stable identifier to a stretch of roadway. OSMLR provides a stable set of numerical IDs for every 1 kilometer stretch of roadway around the world. In urban areas, OSMLR IDs are attached to each block of roadways between significant intersections.\n\nDocumentation: https://github.com/opentraffic/osmlr/blob/master/docs/intro.md\nContact: https://github.com/opentraffic/osmlr/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osmlr/index.json", "https://registry.opendata.aws/osmlr/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osmlr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osmlr&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osmlr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_qiime2_data/", "public", "File Names from the AWS S3 qiime2-data Bucket: QIIME 2 User Tutorial Datasets: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs", "This dataset has file information from the AWS S3 qiime2-data bucket at https://qiime2-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: QIIME 2 User Tutorial Datasets\nName2: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs\nDescription: QIIME 2 is a powerful, extensible, and decentralized microbiome analysis package with a focus on data and analysis transparency. QIIME 2 enables researchers to start an analysis with raw DNA sequence data and finish with publication-quality figures and statistical results. This dataset contains the user docs (and related datasets) for QIIME 2.\n\nDocumentation: https://docs.qiime2.org\nContact: https://forum.qiime2.org\nManagedBy: The QIIME 2 Development Team\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_qiime2_data/index.json", "https://registry.opendata.aws/qiime2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_qiime2_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_qiime2_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_qiime2_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_safecast_opendata_public_us_east_1/", "public", "File Names from the AWS S3 safecast-opendata-public-us-east-1 Bucket: Safecast: Bulk exports of air and radiation measurements", "This dataset has file information from the AWS S3 safecast-opendata-public-us-east-1 bucket at https://safecast-opendata-public-us-east-1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Safecast\nName2: Bulk exports of air and radiation measurements\nDescription: An ongoing collection of radiation and air quality measurements taken by devices involved in the Safecast project.\n\nDocumentation: https://github.com/Safecast/safecastapi/wiki/Data-Sets\nContact: https://groups.google.com/forum/#!forum/safecast-devices\nManagedBy: [Safecast](https://safecast.org/)\nUpdateFrequency: Continuous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_safecast_opendata_public_us_east_1/index.json", "https://registry.opendata.aws/safecast/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_safecast_opendata_public_us_east_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_safecast_opendata_public_us_east_1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_safecast_opendata_public_us_east_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s1_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s1-l1c/: Sentinel-1: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s1-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C\nDescription: [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1) is a pair of European radar imaging (SAR) satellites launched in 2014 and 2016. Its 6 days revisit cycle and ability to observe through clouds makes it perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. GRD data is available globally since January 2017.\n\nDocumentation: https://roda.sentinel-hub.com/sentinel-s1-l1c/GRD/readme.html\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s1_l1c/index.json", "https://registry.opendata.aws/sentinel-1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s1_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s1_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s1_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l1c/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l1c/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l2a/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l2a/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l2a/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l2a/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l2a&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l2a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel1_slc_seasia_pds/", "public", "File Names from the AWS S3 sentinel1-slc-seasia-pds Bucket: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan", "This dataset has file information from the AWS S3 sentinel1-slc-seasia-pds bucket at https://sentinel1-slc-seasia-pds.s3.ap-southeast-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan\nName2: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan\nDescription: The S1 Single Look Complex (SLC) dataset contains Synthetic Aperture Radar (SAR) data in the C-Band wavelength. The SAR sensors are installed on a two-satellite (Sentinel-1A and Sentinel-1B) constellation orbiting the Earth with a combined revisit time of six days, operated by the European Space Agency. The S1 SLC data are a Level-1 product that collects radar amplitude and phase information in all-weather, day or night conditions, which is ideal for studying natural hazards and emergency response, land applications, oil spill monitoring, sea-ice conditions, and associated climate change effects.\n\nDocumentation: https://github.com/earthobservatory/sentinel1-opds/\nContact: https://github.com/earthobservatory/sentinel1-opds/\nManagedBy: [Earth Observatory of Singapore, Nanyang Technological University](https://earthobservatory.sg)\nUpdateFrequency: S1 SLC data for the region of interest will be updated regularly, as it becomes available on the Alaska Satellite Facility endpoint.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel1_slc_seasia_pds/index.json", "https://registry.opendata.aws/sentinel1-slc-seasia-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel1_slc_seasia_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel1_slc_seasia_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel1_slc_seasia_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_silo_open_data/", "public", "File Names from the AWS S3 silo-open-data Bucket: SILO climate data on AWS: SILO open data", "This dataset has file information from the AWS S3 silo-open-data bucket at https://silo-open-data.s3.ap-southeast-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SILO climate data on AWS\nName2: SILO open data\nDescription: [SILO](https://www.longpaddock.qld.gov.au/silo) is a database of Australian [climate data](https://www.longpaddock.qld.gov.au/silo/about/climate-variables) from 1889 to the present. It provides continuous, daily time-step [data products](https://www.longpaddock.qld.gov.au/silo/about/data-products) in ready-to-use [formats](https://www.longpaddock.qld.gov.au/silo/about/file-formats-and-samples) for research and operational applications. Gridded SILO data in annual NetCDF format are on AWS. Point data are available from the [SILO website](https://www.longpaddock.qld.gov.au/silo/).\n\nDocumentation: https://www.longpaddock.qld.gov.au/silo/gridded-data\nContact: https://www.longpaddock.qld.gov.au/silo/contact-us\nManagedBy: Queensland Government\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_silo_open_data/index.json", "https://registry.opendata.aws/silo/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_silo_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_silo_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_silo_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_softwareheritage/", "public", "File Names from the AWS S3 softwareheritage Bucket: Software Heritage Graph Dataset: Software Heritage Graph Dataset", "This dataset has file information from the AWS S3 softwareheritage bucket at https://softwareheritage.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Software Heritage Graph Dataset\nName2: Software Heritage Graph Dataset\nDescription: [Software Heritage](https://www.softwareheritage.org/) is the largest existing public archive of software source code and accompanying development history. The Software Heritage Graph Dataset is a fully deduplicated Merkle DAG representation of the Software Heritage archive.\n\nDocumentation: https://wiki.softwareheritage.org/wiki/Graph_Dataset_on_Amazon_Athena\nContact: swh-devel@inria.fr\nUpdateFrequency: Data is updated yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_softwareheritage/index.json", "https://registry.opendata.aws/software-heritage/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_softwareheritage.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_softwareheritage&showErrors=false&email=", "Amazon Web Services", "awsS3Files_softwareheritage"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_spacenet_dataset/", "public", "File Names from the AWS S3 spacenet-dataset Bucket: SpaceNet: Imagery and metadata in a S3 bucket", "This dataset has file information from the AWS S3 spacenet-dataset bucket at https://spacenet-dataset.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SpaceNet\nName2: Imagery and metadata in a S3 bucket\nDescription: SpaceNet, launched in August 2016 as an open innovation project offering a repository of freely available imagery with co-registered map features. Before SpaceNet, computer vision researchers had minimal options to obtain free, precision-labeled, and high-resolution satellite imagery. Today, SpaceNet hosts datasets developed by its own team, along with data sets from projects like IARPA\u2019s Functional Map of the World (fMoW).\n\nDocumentation: https://spacenetchallenge.github.io\nContact: https://github.com/SpaceNetChallenge/utilities/issues\nManagedBy: [SpaceNet](https://spacenet.ai/)\nUpdateFrequency: New imagery and features are added quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_spacenet_dataset/index.json", "https://registry.opendata.aws/spacenet/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_spacenet_dataset.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_spacenet_dataset&showErrors=false&email=", "Amazon Web Services", "awsS3Files_spacenet_dataset"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_unidata_nexrad_level2_chunks/", "public", "File Names from the AWS S3 unidata-nexrad-level2-chunks Bucket: NEXRAD on AWS: NEXRAD Level II real-time data", "This dataset has file information from the AWS S3 unidata-nexrad-level2-chunks bucket at https://unidata-nexrad-level2-chunks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II real-time data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_unidata_nexrad_level2_chunks/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_unidata_nexrad_level2_chunks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_unidata_nexrad_level2_chunks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_unidata_nexrad_level2_chunks"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_usgs_lidar_public/", "public", "File Names from the AWS S3 usgs-lidar-public Bucket: USGS 3DEP LiDAR Point Clouds: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.", "This dataset has file information from the AWS S3 usgs-lidar-public bucket at https://usgs-lidar-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: USGS 3DEP LiDAR Point Clouds\nName2: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.\nDescription: The goal of the [USGS 3D Elevation Program ](https://www.usgs.gov/core-science-systems/ngp/3dep) (3DEP) is to collect elevation data in the form of light detection and ranging (LiDAR) data over the conterminous United States, Hawaii, and the U.S. territories, with data acquired over an 8-year period. This dataset provides two realizations of the 3DEP point cloud data. The first resource is a public access organization provided in [Entwine Point Tiles](https://entwine.io/entwine-point-tile.html) format, which a lossless, full-density, streamable octree based on [LASzip](https://laszip.org) (LAZ) encoding. The second resource is a [Requester Pays](https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html) of the same data in LAZ (Compressed LAS) format. Resource names in both buckets correspond to the USGS project names.\n\nDocumentation: https://github.com/hobu/usgs-lidar/\nContact: https://github.com/hobu/usgs-lidar\nManagedBy: [Hobu, Inc.](https://hobu.co)\nUpdateFrequency: Periodically\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_usgs_lidar_public/index.json", "https://registry.opendata.aws/usgs-lidar/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_usgs_lidar_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_usgs_lidar_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_usgs_lidar_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_web_language_models/", "public", "File Names from the AWS S3 web-language-models Bucket: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl): Parallel Corpora to/from English for all official EU languages", "This dataset has file information from the AWS S3 web-language-models bucket at https://web-language-models.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl)\nName2: Parallel Corpora to/from English for all official EU languages\nDescription: ParaCrawl is a set of large parallel corpora to/from English for all official EU languages by a broad web crawling effort. State-of-the-art methods are applied for the entire processing chain from identifying web sites with translated text all the way to collecting, cleaning and delivering parallel corpora that are ready as training data for CEF.AT and translation memories for DG Translation.\n\nDocumentation: https://paracrawl.eu/releases.html\nContact: For questions regarding the datasets contact Kenneth Heafield, email kheafiel@inf.ed.ac.uk. For reporting any issues about bitextor pipeline visit https://github.com/bitextor/bitextor/issues.\nManagedBy: [ParaCrawl](https://paracrawl.eu)\nUpdateFrequency: New data is added according to ParaCrawl release schedule.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_web_language_models/index.json", "https://registry.opendata.aws/paracrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_web_language_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_web_language_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_web_language_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_xiph_media/", "public", "File Names from the AWS S3 xiph-media Bucket: Xiph.Org Test Media: Video and imagery data", "This dataset has file information from the AWS S3 xiph-media bucket at https://xiph-media.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Xiph.Org Test Media\nName2: Video and imagery data\nDescription: Uncompressed video used for video compression and video processing research.\n\nDocumentation: https://media.xiph.org/aws.html\nContact: Thomas Daede tdaede@xiph.org\nUpdateFrequency: New videos are added when contributors submit them.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_xiph_media/index.json", "https://registry.opendata.aws/xiph-media/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_xiph_media.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_xiph_media&showErrors=false&email=", "Amazon Web Services", "awsS3Files_xiph_media"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ycb_benchmarks/", "public", "File Names from the AWS S3 ycb-benchmarks Bucket: Yale-CMU-Berkeley (YCB) Object and Model Set: Project data files", "This dataset has file information from the AWS S3 ycb-benchmarks bucket at https://ycb-benchmarks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Yale-CMU-Berkeley (YCB) Object and Model Set\nName2: Project data files\nDescription: This project primarily aims to facilitate performance benchmarking in robotics research. The dataset provides mesh models, RGB, RGB-D and point cloud images of over 80 objects. The physical objects are also available via the [YCB benchmarking project](http://www.ycbbenchmarks.com/). The data are collected by two state of the art systems: UC Berkley's scanning rig and the Google scanner. The UC Berkley's scanning rig data provide meshes generated with Poisson reconstruction, meshes generated with volumetric range image integration, textured versions of both meshes, Kinbody files for using the meshes with OpenRAVE, 600 High-resolution RGB images, 600 RGB-D images, and 600 point cloud images for each object. The Google scanner data provides 3 meshes with different resolutions (16k, 64k, and 512k polygons), textured versions of each mesh, Kinbody files for using the meshes with OpenRAVE.\n\nDocumentation: http://www.ycbbenchmarks.com/\nContact: bcalli@wpi.edu\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ycb_benchmarks/index.json", "https://registry.opendata.aws/ycb-benchmarks/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ycb_benchmarks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ycb_benchmarks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ycb_benchmarks"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the June 2020 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.graph", "", "", "public", "GLOBEC NEP Vertical Plankton Tow (VPT) Data, 1997-2001", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nCalifornia Current Program\nVertical Plankton Tow (VPT) Data\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10181&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/vpt%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/vpt.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ncast_no (Cast Number Within the Cruise)\nstation_id\nabund_m3 (Abundance, count m-3)\ncomments\ncounter_id\nd_n_flag (Day/Night Flag)\ngear_area (Mouth Area of Net, m2)\ngear_mesh (Net's Mesh Size, mm)\ngear_type\ngenus_species\nlife_stage\nlocal_code\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecVpt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecVpt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecVpt/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecVpt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecVpt&showErrors=false&email=", "GLOBEC", "erdGlobecVpt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://usgodae.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, the EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\nBeach Monitoring Quality Assurance Project Plan (CWBMONQAPP002):\nhttps://www.pacioos.hawaii.edu/wp-content/uploads/2016/08/Beach_Monitoring_QAPP_CWBMONQAPP002_120507.pdf\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwb_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwb_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwb_water_quality/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/cwb_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwb_water_quality&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "cwb_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.graph", "", "", "public", "HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii", "The Hawaii Institute of Marine Biology (HIMB) automatic weather station (AWS) records hourly measurements of precipitation, air temperature, wind speed and direction, and irradiance. Sensors include an Eppley 295-385 nm ultraviolet (UV) radiometer, a LiCor 200SZ Pyranometer, and a LiCor Quantameter (400-700 nm). The sensors are located on the roof of HIMB's Coral Reef Ecology Laboratory (Point Lab) on Moku o Loe (Coconut Island) in Kaneohe Bay on the windward (eastern) coast of Oahu in Hawaii. An accompanying sea water temperature sensor is located less than 10 m offshore of the weather station at a shallow depth of approximately 1 m.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HIMB: HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nsea_water_temperature (water temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nwind_from_direction_std (standard deviation of wind direction (processed), degrees)\nrainfall_amount (total rainfall (processed), mm)\nshortwave_radiation (downwelling shortwave radiation (processed), W/m2)\nultraviolet_radiation (ultraviolet radiation (processed), W/m2)\nphotosynthetic_radiation (photosynthetically active radiation (processed), umol m-2 s-1)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_atn (QARTOD Attenuated Signal Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (139 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HIMB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HIMB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HIMB/index.json", "https://www.pacioos.hawaii.edu/weather/obs-mokuoloe/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HIMB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HIMB&showErrors=false&email=", "Hawaii Institute of Marine Biology (HIMB)", "AWS-HIMB"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.graph", "", "", "public", "Hui O Ka Wai Ola Water Quality Data", "The goal of the Hui O Ka Wai Ola (Association Of The Living Waters) citizen-science based water quality program is to increase the capacity for monitoring water quality in Maui coastal waters by generating reliable data to assess long-term water-quality conditions and detect temporal trends. These data augment the data produced by the Hawaii Department of Health (DOH) Clean Water Branch (CWB) beach monitoring program on Maui.\n \nData are collected and analyzed every two or three weeks for physical and chemical parameters, including ocean salinity, pH, temperature, organic nutrients (nitrogen and phosphorous compounds), dissolved oxygen (DO), and total suspended sediment (TSS). Some water samples are immediately tested at mobile labs while others are processed for testing at University of Hawaii and/or other labs.\n \nUsers of these data should cite the following publication:\n \nFalinski, Kim, Dana Reed, Tova Callender, Emily Fielding, Robin Newbold, and Alana Yurkanin. (2018). Hui O Ka Wai Ola Water Quality Data [Data set]. Zenodo. \"http://doi.org/10.5281/zenodo.1173717\"\n \nFor further information, please visit:\nhttps://www.huiokawaiola.com\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nlocation_id (sampling site identifier)\nlocation_name\nsample_id (sample identifier)\nsession_id (sampling session identifier)\nwater_temperature (Celsius)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hui_water_quality/index.json", "https://www.huiokawaiola.com", "http://upwell.pfeg.noaa.gov/erddap/rss/hui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hui_water_quality&showErrors=false&email=", "Hui O Ka Wai Ola", "hui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitored water quality at several beaches across the island of Maui in the State of Hawaii during the years 2010-2016. This community-based monitoring effort provided valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites were also monitored for harmful bacteria levels of Enterococcus through 2014-06-26. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours.\n\nData were managed through an online repository, the Coral Reef Monitoring Data Portal (now defunct), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection was coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/maui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/maui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/maui_water_quality/index.json", "https://coral.org/maui/", "http://upwell.pfeg.noaa.gov/erddap/rss/maui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=maui_water_quality&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "maui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys. See\nhttps://www.ndbc.noaa.gov/measdes.shtml for a description of the measurements.\n\nThe source data from NOAA NDBC has different column names, different units,\nand different missing values in different files, and other problems\n(notably, lots of rows with duplicate or different values for the same time\npoint). This dataset is a standardized, reformatted, and lightly edited\nversion of that source data, created by NOAA NMFS SWFSC ERD (email:\nerd.data at noaa.gov). Before 2020-01-29, this dataset only had the data\nthat was closest to a given hour, rounded to the nearest hour. Now, this\ndataset has all of the data available from NDBC with the original time\nvalues. If there are multiple source rows for a given buoy for a given\ntime, only the row with the most non-NaN data values is kept. If there is\na gap in the data, a row of missing values is inserted (which causes a nice\ngap when the data is graphed). Also, some impossible data values are\nremoved, but this data is not perfectly clean. This dataset is now updated\nevery 5 minutes.\n\nThis dataset has both historical data (quality controlled, before\n2020-06-01T00:00:00Z) and near real time data (less quality controlled,\nwhich may change at any time, from 2020-06-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Identifier)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.graph", "", "", "public", "NEFSC Continuous Plankton Recorder", "A summary for the data\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ncruise\nsample\nlatitude (degrees_north)\nlongitude (degrees_east)\nphyto_color_indx (Phytoplankton Color Index)\nmarmap_tax_code (Marmap Taxonomic Code)\nmarmap_stage_code\nabundance (per 100 cubic meters)\nlife_stage\ntaxonomic_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/wocecpr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/wocecpr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/wocecpr/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "http://upwell.pfeg.noaa.gov/erddap/rss/wocecpr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=wocecpr&showErrors=false&email=", "NEFSC", "wocecpr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "", "public", "North Pacific High, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.graph", "", "", "public", "OSMC Argo Profile data", "OSMC Argo Profile data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\norganization_name\ncountry_name\nplatform_type_name\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nparameter_name\ndaily_obs_count\nobservation_depth\nobservation_value\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_PROFILERS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_PROFILERS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_PROFILERS/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_PROFILERS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_PROFILERS&showErrors=false&email=", "OSMC", "OSMC_PROFILERS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.graph", "", "", "public", "OSMC normalized observations from GTS", "OSMC normalized In-situ Real time GTS data\n\ncdm_data_type = Point\nVARIABLES:\nPLATFORM_CODE (Station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform\nparameter\nOBSERVATION_VALUE\nOBSERVATION_DEPTH\nCOUNTRY_NAME\norganization_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_Points_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_Points_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_Points/index.json", "https://www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_Points.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_Points&showErrors=false&email=", "OSMC", "OSMC_Points"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001.graph", "", "", "public", "PacIOOS Beach Camera 001: Waikiki, Oahu, Hawaii", "A digital camera on top of the Sheraton Waikiki hotel was used to photograph the shoreline of Waikiki beach along the South Shore of the island of Oahu in the State of Hawaii. The oblique camera view presented here captures the shoreline leading southeast towards Diamond Head crater. It operated for over 4.5 years between February 5, 2009 and October 13, 2013. Capturing hourly snapshots at a set vantage point during the local daytime hours of 6:00 AM or 7:00 AM to 5:00 PM, these images are useful for tracking beach dynamics such as wave run-up, sand movement, and turbidity plumes over time. The camera was mounted on top of a 3 meter wall extending above the roof surface for a total height of 93 meters above ground level or 96 meters above mean sea level. See also BEACHCAM-002 for an alternate camera view from the same location pointing directly downwards.\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (m)\naboveGround (Height, m)\nurl\nname (File Name)\nsize (bytes)\nfileType (File Type)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/BEACHCAM-001_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/BEACHCAM-001_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/BEACHCAM-001/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/BEACHCAM-001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=BEACHCAM-001&showErrors=false&email=", "University of Hawaii", "BEACHCAM-001"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_4"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_2/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_2&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_6/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_6&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_7/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_7&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_7"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_8/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_8&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_9/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_9&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.graph", "", "", "public", "PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-04 is located in Hilo Bay on the east side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-04: PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-04/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-hilo/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-04&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-04"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.graph", "", "", "public", "PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-05 is located in Pelekane Bay near Kawaihae Harbor on the west side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-05: PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-05/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-pelekane/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-05&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-05"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.graph", "", "", "public", "PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii", "The Pacific Islands Ocean Observing System (PacIOOS) operates a Davis Instruments automatic weather station (AWS) near the entrance to Honolulu Harbor on the leeward (western) coast of Oahu in Hawaii to aid with navigation. The station records measurements every 5 minutes of air temperature, wind speed and direction, precipitation, relative humidity, and air pressure. Sensors are located at Pier 1, installed on a tower at an elevation of 64 feet (19.5 meters) above sea level. The station is owned by the Hawaii Pilots Association (HPA). PacIOOS maintains the station and provides data access.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HNLPier1: PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nrainfall_rate (rain rate (processed), mm/h)\nrelative_humidity (relative humidity (processed), %)\nair_pressure (air pressure (processed), millibars)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_gap (QARTOD Gap Test (processed), 0)\nair_temperature_qc_syn (QARTOD Syntax Test (processed), 0)\nair_temperature_qc_loc (QARTOD Location Test (processed), 0)\nair_temperature_qc_rng (QARTOD Gross Range Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_spk (QARTOD Spike Test (processed), 0)\n... (92 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HNLPier1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HNLPier1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HNLPier1/index.json", "https://www.pacioos.hawaii.edu/weather/obs-honolulu/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HNLPier1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HNLPier1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "AWS-HNLPier1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "https://tidesandcurrents.noaa.gov/gomoos.html", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/main.aspx?Division=PRD&ParentMenuId=147&id=1221", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2017, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2017, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2017, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"] + ] + } + } + recorded_at: 2020-07-15 22:14:26 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 diff --git a/tests/vcr_cassettes/griddap_info_passed_to_x.yml b/tests/vcr_cassettes/griddap_info_passed_to_x.yml new file mode 100644 index 0000000..86daf6e --- /dev/null +++ b/tests/vcr_cassettes/griddap_info_passed_to_x.yml @@ -0,0 +1,35 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/griddap/erdVHNchlamday.nc?chla[(2015-04-01):1:(2015-04-10)][(0.0):1:(0.0)][(21):1:(18)][(-120):1:(-119)] + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:46:02 GMT + x-frame-options: SAMEORIGIN + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:46:02 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=erdVHNchlamday_c41f_2891_eac7.nc + content-encoding: gzip + content-type: application/x-netcdf + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: yes + string: ../fixtures/d618e5bdf14da795fb83ba2e6feae588.nc + recorded_at: 2020-07-15 22:46:03 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 diff --git a/tests/vcr_cassettes/griddap_north_south_latitude.yml b/tests/vcr_cassettes/griddap_north_south_latitude.yml new file mode 100644 index 0000000..f71795a --- /dev/null +++ b/tests/vcr_cassettes/griddap_north_south_latitude.yml @@ -0,0 +1,221 @@ +http_interactions: +- request: + method: get + uri: https://coastwatch.noaa.gov/erddap/info/noaacwNPPVIIRSchlaDaily/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:21:20 GMT + server: Apache + cache-control: private, max-age=0, must-revalidate + strict-transport-security: max-age=63072000; includeSubdomains; + content-disposition: attachment;filename=noaacwNPPVIIRSchlaDaily_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + x-frame-options: SAMEORIGIN + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "Grid"], + ["attribute", "NC_GLOBAL", "Conventions", "String", "CF-1.6, COARDS, ACDD-1.3"], + ["attribute", "NC_GLOBAL", "creator_email", "String", "coastwatch.info@noaa.gov"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "NOAA/NESDIS/STAR"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "https://coastwatch.noaa.gov"], + ["attribute", "NC_GLOBAL", "cw%3aswath_sync_lines", "int", "16, 16, 16, 16"], + ["attribute", "NC_GLOBAL", "cw_orbit_type", "String", "ascending"], + ["attribute", "NC_GLOBAL", "cw_pass_type", "String", "day\\nday/night"], + ["attribute", "NC_GLOBAL", "cw_processing_version", "String", "NRT NOAA"], + ["attribute", "NC_GLOBAL", "cw_projection", "String", "Geographic"], + ["attribute", "NC_GLOBAL", "cw_satellite", "String", "NPP"], + ["attribute", "NC_GLOBAL", "cw_sensor", "String", "VIIRS"], + ["attribute", "NC_GLOBAL", "cw_software_name", "String", "MSL12"], + ["attribute", "NC_GLOBAL", "cw_software_version", "String", "1.30"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "180.01874999999998"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "89.75625000000001"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "-89.75625000000002"], + ["attribute", "NC_GLOBAL", "geospatial_lat_resolution", "double", "0.03750000000000001"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "180.01874999999998"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "-180.01875"], + ["attribute", "NC_GLOBAL", "geospatial_lon_resolution", "double", "0.037500000000000006"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_max", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_min", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_positive", "String", "up"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_units", "String", "m"], + ["attribute", "NC_GLOBAL", "identifier_product_doi_authority", "String", "https://dx.doi.org"], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "https://coastwatch.noaa.gov/cw/satellite-data-products/ocean-color/near-real-time/viirs-snpp.html"], + ["attribute", "NC_GLOBAL", "institution", "String", "NOAA NESDIS CoastWatch"], + ["attribute", "NC_GLOBAL", "keywords", "String", "algorithm, altitude, chemistry, chlor_a, chlorophyll, color, concentration, data, default, Earth Science > Oceans > Ocean Chemistry > Chlorophyll, imager, imager/radiometer, imaging, infrared, L3, level, level-3, mass, mass_concentration_of_chlorophyll_a_in_sea_water, national, npp, ocean, ocean color, oceans, Oceans > Ocean Optics > Ocean Color, optics, orbiting, partnership, polar, polar-orbiting, radiometer, sea, seawater, star, suite, suite/suomi-npp, suomi, time, VIIRS, viirs, viirs-n, visible, water, ww00"], + ["attribute", "NC_GLOBAL", "keywords_vocabulary", "String", "GCMD Science Keywords"], + ["attribute", "NC_GLOBAL", "license", "String", "https://science.nasa.gov/earth-science/earth-science-data/data-information-policy/\nThe data may be used and redistributed for free but is not intended\nfor legal use, since it may contain inaccuracies. Neither the data\nContributor, ERD, NOAA, nor the United States Government, nor any\nof their employees or contractors, makes any warranty, express or\nimplied, including warranties of merchantability and fitness for a\nparticular purpose, or assumes any legal liability for the accuracy,\ncompleteness, or usefulness, of this information."], + ["attribute", "NC_GLOBAL", "naming_authority", "String", "gov.noaa.coastwatch"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "89.75625000000001"], + ["attribute", "NC_GLOBAL", "OBSERVED_PROPERTY", "String", "chlor_a"], + ["attribute", "NC_GLOBAL", "publisher_email", "String", "coastwatch.info@noaa.gov; ncei.info@noaa.gov"], + ["attribute", "NC_GLOBAL", "publisher_name", "String", "NOAA CoastWatch; National Centers for Environmental Information (NCEI)"], + ["attribute", "NC_GLOBAL", "publisher_url", "String", "https://coastwatch.noaa.gov; https://www.ncei.noaa.gov/"], + ["attribute", "NC_GLOBAL", "source", "String", "S-NPP_VIIRS_chlora"], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "https://coastwatch.noaa.gov/thredds/dodsC/CoastWatch/VIIRS/npp/chlora/DailyGlobal/WW00"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "-89.75625000000002"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v29"], + ["attribute", "NC_GLOBAL", "summary", "String", "Visible and Infrared Imager/Radiometer Suite/Suomi-NPP (VIIRS) Level-3 (WW00), Near Real-Time, Chlorophyll, Global, Daily, processed by NOAA. EXPERIMENTAL."], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2020-07-13T12:00:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "2019-07-09T12:00:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "Chlorophyll, NOAA S-NPP VIIRS, Near Real-Time, Global 4km, Level 3, 2017-present, Daily"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "-180.01875"], + ["dimension", "time", "", "double", "nValues=350, evenlySpaced=false, averageSpacing=1 day 1h 26m 39s"], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "1.5626736E9, 1.5946416E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "bounds", "String", "baseline_bounds"], + ["attribute", "time", "calendar", "String", "gregorian"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Time"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["dimension", "altitude", "", "double", "nValues=1, onlyValue=0.0"], + ["attribute", "altitude", "_CoordinateAxisType", "String", "Height"], + ["attribute", "altitude", "_CoordinateZisPositive", "String", "up"], + ["attribute", "altitude", "actual_range", "double", "0.0, 0.0"], + ["attribute", "altitude", "axis", "String", "Z"], + ["attribute", "altitude", "ioos_category", "String", "Location"], + ["attribute", "altitude", "long_name", "String", "Altitude"], + ["attribute", "altitude", "positive", "String", "up"], + ["attribute", "altitude", "standard_name", "String", "altitude"], + ["attribute", "altitude", "units", "String", "m"], + ["dimension", "latitude", "", "double", "nValues=4788, evenlySpaced=true, averageSpacing=-0.03750000000000001"], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "double", "-89.75625000000002, 89.75625000000001"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["dimension", "longitude", "", "double", "nValues=9602, evenlySpaced=true, averageSpacing=0.037500000000000006"], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "double", "-180.01875, 180.01874999999998"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "chlor_a", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "chlor_a", "_FillValue", "float", "NaN"], + ["attribute", "chlor_a", "colorBarMaximum", "double", "30.0"], + ["attribute", "chlor_a", "colorBarMinimum", "double", "0.03"], + ["attribute", "chlor_a", "colorBarScale", "String", "Log"], + ["attribute", "chlor_a", "cw%3aatmospheric_correction", "String", "NOAA MECB BMW Atmospheric Correction"], + ["attribute", "chlor_a", "cw%3afraction_digits", "int", "16"], + ["attribute", "chlor_a", "cw%3aprocessing_algorithm", "String", "OC3 Algorithm"], + ["attribute", "chlor_a", "cw%3aproduct_status", "String", "Experimental"], + ["attribute", "chlor_a", "grid_mapping", "String", "coord_ref"], + ["attribute", "chlor_a", "ioos_category", "String", "Ocean Color"], + ["attribute", "chlor_a", "long_name", "String", "Chlorophyll Concentration, OC3 Algorithm"], + ["attribute", "chlor_a", "missing_value", "float", "NaN"], + ["attribute", "chlor_a", "references", "String", "O and #39;Reilly J. E. et al. (1998), Ocean color chlorophyll algorithms for SeaWiFS, J. Geophys. Res., 103(C11), 2493724953"], + ["attribute", "chlor_a", "standard_name", "String", "mass_concentration_of_chlorophyll_in_sea_water"], + ["attribute", "chlor_a", "units", "String", "mg m^-3"] + ] + } + } + recorded_at: 2020-07-15 22:21:22 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://coastwatch.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:21:20 GMT + server: Apache + cache-control: private, max-age=0, must-revalidate + strict-transport-security: max-age=63072000; includeSubdomains; + last-modified: Wed, 15 Jul 2020 22:21:20 GMT + xdods-server: dods/3.7 + erddap-server: '1.82' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + x-frame-options: SAMEORIGIN + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://coastwatch.noaa.gov/erddap/tabledap/allDatasets.subset", "https://coastwatch.noaa.gov/erddap/tabledap/allDatasets", "https://coastwatch.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://coastwatch.noaa.gov/erddap/info/allDatasets/index.json", "https://coastwatch.noaa.gov/erddap", "", "NOAA.GOV", "allDatasets"] + ] + } + } + recorded_at: 2020-07-15 22:21:22 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://coastwatch.noaa.gov/erddap/griddap/noaacwNPPVIIRSchlaDaily.nc?chlor_a[(2020-07-07T12:00:00Z):1:(2020-07-07T13:00:00Z)][(0):1:(0)][(31):1:(30)][(-120):1:(-119)] + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:21:20 GMT + server: Apache + cache-control: private, max-age=0, must-revalidate + strict-transport-security: max-age=63072000; includeSubdomains; + last-modified: Wed, 15 Jul 2020 22:21:20 GMT + xdods-server: dods/3.7 + erddap-server: '1.82' + content-disposition: attachment;filename=noaacwNPPVIIRSchlaDaily_e3c1_44d7_221b.nc + content-encoding: gzip + content-type: application/x-netcdf + x-frame-options: SAMEORIGIN + transfer-encoding: chunked + body: + encoding: UTF-8 + file: yes + string: ../fixtures/2b34de76a216b28ab3ef759e2d9c69a8.nc + recorded_at: 2020-07-15 22:21:22 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 diff --git a/tests/vcr_cassettes/griddap_read_parameter.yml b/tests/vcr_cassettes/griddap_read_parameter.yml new file mode 100644 index 0000000..83f3082 --- /dev/null +++ b/tests/vcr_cassettes/griddap_read_parameter.yml @@ -0,0 +1,679 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/info/erdQMekm14day/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:20:56 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=erdQMekm14day_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "Grid"], + ["attribute", "NC_GLOBAL", "contact", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "Conventions", "String", "CF-1.6, COARDS, ACDD-1.3"], + ["attribute", "NC_GLOBAL", "creation_date", "String", "Tue Jul 14 23:13:27 2020"], + ["attribute", "NC_GLOBAL", "creator_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "creator_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "defaultGraphQuery", "String", "&.draw=vectors"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "360.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "75.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "-75.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_resolution", "double", "0.25"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "360.0"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_lon_resolution", "double", "0.25"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_max", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_min", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_positive", "String", "up"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_units", "String", "m"], + ["attribute", "NC_GLOBAL", "history", "String", "1-day geographic projection composites, created by erd.data@noaa.gov from L2 swath data obtained from NOAA|NESDIS, are used to create multi-day composites via the composite script in the dalesLibAscatB.py library by erd.data@noaa.gov at NOAA NMFS SWFSC ERD."], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "https://coastwatch.pfeg.noaa.gov/infog/QM_uekm_las.html"], + ["attribute", "NC_GLOBAL", "institution", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "keywords", "String", "advanced, altitude, ascat, circulation, coast, coastwatch, current, data, degrees, diffusivity, driven, Earth Science > Oceans > Ocean Circulation > Wind-Driven Circulation, eumetsat, european, exploitation, global, meteorological, metop, near, near real time, noaa, node, ocean, oceans, organisation, QMuekm, real, satellites, scatterometer, time, wcn, west, wind, wind-driven, zonal"], + ["attribute", "NC_GLOBAL", "license", "String", "The data may be used and redistributed for free but is not intended\nfor legal use, since it may contain inaccuracies. Neither the data\nContributor, ERD, NOAA, nor the United States Government, nor any\nof their employees or contractors, makes any warranty, express or\nimplied, including warranties of merchantability and fitness for a\nparticular purpose, or assumes any legal liability for the accuracy,\ncompleteness, or usefulness, of this information."], + ["attribute", "NC_GLOBAL", "naming_authority", "String", "gov.noaa.pfeg.coastwatch"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "75.0"], + ["attribute", "NC_GLOBAL", "project", "String", "CoastWatch (https://coastwatch.noaa.gov/)"], + ["attribute", "NC_GLOBAL", "publisher_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "publisher_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "publisher_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "publisher_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "references", "String", "NOAA/NESDIS https://manati.star.nesdis.noaa.gov/products/ASCAT.php ."], + ["attribute", "NC_GLOBAL", "source_data", "String", "14-day composite mean of files: QM2020196_2020196_uekm.grd.gz, QM2020195_2020195_uekm.grd.gz, QM2020194_2020194_uekm.grd.gz, QM2020193_2020193_uekm.grd.gz, QM2020192_2020192_uekm.grd.gz, QM2020191_2020191_uekm.grd.gz, QM2020190_2020190_uekm.grd.gz, QM2020189_2020189_uekm.grd.gz, QM2020188_2020188_uekm.grd.gz, QM2020187_2020187_uekm.grd.gz, QM2020186_2020186_uekm.grd.gz, QM2020185_2020185_uekm.grd.gz, QM2020184_2020184_uekm.grd.gz, QM2020183_2020183_uekm.grd.gz"], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "(local files)"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "-75.0"], + ["attribute", "NC_GLOBAL", "spatial_resolution", "String", "0.25 degree"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v70"], + ["attribute", "NC_GLOBAL", "summary", "String", "NOAA CoastWatch distributes science quality Ekman current (in zonal, meridional, and modulus sets) and Ekman upwelling data. This data begins with wind velocity measurements from the ASCAT instruments onboard all EUMETSAT's MetOp satellites. ASCAT is a microwave scatterometer designed to measure surface winds over the global ocean. NOAA CoastWatch processes wind velocity to wind stress and wind stress curl, and finally to Ekman current and Ekman upwelling. (This is a 14 day composite.)"], + ["attribute", "NC_GLOBAL", "testOutOfDate", "String", "now-10days"], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2020-07-08T00:00:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "2013-08-27T00:00:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "Wind Diffusivity Current, All Metop ASCAT, 0.25\u00b0, Global, Near Real Time, 2013-present (14 Day)"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "0.0"], + ["dimension", "time", "", "double", "nValues=2496, evenlySpaced=false, averageSpacing=1 day 0h 6m 56s"], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "1.3775616E9, 1.5941664E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Centered Time"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["dimension", "altitude", "", "double", "nValues=1, onlyValue=0.0"], + ["attribute", "altitude", "_CoordinateAxisType", "String", "Height"], + ["attribute", "altitude", "_CoordinateZisPositive", "String", "up"], + ["attribute", "altitude", "actual_range", "double", "0.0, 0.0"], + ["attribute", "altitude", "axis", "String", "Z"], + ["attribute", "altitude", "ioos_category", "String", "Location"], + ["attribute", "altitude", "long_name", "String", "Altitude"], + ["attribute", "altitude", "positive", "String", "up"], + ["attribute", "altitude", "standard_name", "String", "altitude"], + ["attribute", "altitude", "units", "String", "m"], + ["dimension", "latitude", "", "double", "nValues=601, evenlySpaced=true, averageSpacing=0.25"], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "double", "-75.0, 75.0"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "coordsys", "String", "geographic"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "point_spacing", "String", "even"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["dimension", "longitude", "", "double", "nValues=1441, evenlySpaced=true, averageSpacing=0.25"], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "double", "0.0, 360.0"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "coordsys", "String", "geographic"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "point_spacing", "String", "even"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "u_current", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "u_current", "_FillValue", "float", "-99999.0"], + ["attribute", "u_current", "colorBarMaximum", "double", "4.0"], + ["attribute", "u_current", "colorBarMinimum", "double", "-4.0"], + ["attribute", "u_current", "coordsys", "String", "geographic"], + ["attribute", "u_current", "ioos_category", "String", "Currents"], + ["attribute", "u_current", "long_name", "String", "Zonal Wind Diffusivity Current"], + ["attribute", "u_current", "missing_value", "float", "-99999.0"], + ["attribute", "u_current", "units", "String", "m s-1"], + ["variable", "v_current", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "v_current", "_FillValue", "float", "-99999.0"], + ["attribute", "v_current", "colorBarMaximum", "double", "4.0"], + ["attribute", "v_current", "colorBarMinimum", "double", "-4.0"], + ["attribute", "v_current", "coordsys", "String", "geographic"], + ["attribute", "v_current", "ioos_category", "String", "Currents"], + ["attribute", "v_current", "long_name", "String", "Meridional Wind Diffusivity Current"], + ["attribute", "v_current", "missing_value", "float", "-99999.0"], + ["attribute", "v_current", "units", "String", "m s-1"], + ["variable", "mod_current", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "mod_current", "_FillValue", "float", "-99999.0"], + ["attribute", "mod_current", "colorBarMaximum", "double", "0.05"], + ["attribute", "mod_current", "colorBarMinimum", "double", "0.0"], + ["attribute", "mod_current", "colorBarPalette", "String", "WhiteRedBlack"], + ["attribute", "mod_current", "coordsys", "String", "geographic"], + ["attribute", "mod_current", "ioos_category", "String", "Currents"], + ["attribute", "mod_current", "long_name", "String", "Modulus of Wind Diffusivity Current"], + ["attribute", "mod_current", "missing_value", "float", "-99999.0"], + ["attribute", "mod_current", "units", "String", "m s-1"] + ] + } + } + recorded_at: 2020-07-15 22:20:44 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:20:57 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:20:57 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://upwell.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012.graph", "", "", "public", "AIS Ship Traffic: Hawaii: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_hi_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_hi_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_hi_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_hi_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_hi_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_hi_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012.graph", "", "", "public", "AIS Ship Traffic: Johnston Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Johnston Atoll. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_john_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_john_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_john_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_john_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_john_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_john_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012.graph", "", "", "public", "AIS Ship Traffic: Mariana and Wake: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Mariana Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_mari_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_mari_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_mari_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_mari_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_mari_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_mari_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012.graph", "", "", "public", "AIS Ship Traffic: Rose Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Rose Atoll in American Samoa. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_rose_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_rose_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_rose_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_rose_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_rose_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_rose_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom for the most recent 7 days.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_temp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_temp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_temp/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_temp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_temp&showErrors=false&email=", "University of Hawaii", "aco_adcp_temp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Velocity", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean current velocity at the ACO from a 250 kHz SonTek acoustic doppler current profiler (ADCP) at 1.83 m above the ocean bottom for the most recent 7 days. Velocities are flagged bad if the amplitude is excessively low or high. An amplitude is high if it exceeds the average of the ping before and the ping after by 20 counts. An amplitude is low if less than 6 counts. After this the velocities are flagged bad if the absolute deviation of the vertical velocity from its ensemble median exceeds 0.15 m/s or if its value is less than -0.25 m/s.\n\ncdm_data_type = Profile\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each location, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\neastward_sea_water_velocity (current east component, meters/second)\nnorthward_sea_water_velocity (current north component, meters/second)\nupward_sea_water_velocity (current upward component, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_vel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_vel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_vel/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_vel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_vel&showErrors=false&email=", "University of Hawaii", "aco_adcp_vel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://upwell.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF.graph", "", "", "public", "CRRF Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-CRRF: CRRF Weather Station: Palau: Koror: Ngeanges Island)\nair_temperature (Celsius)\nair_temperature_max (maximum air temperature, Celsius)\nair_temperature_max_time (maximum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (minimum air temperature, Celsius)\nair_temperature_min_time (minimum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_std (air temperature standard deviation, Celsius)\nwind_speed (m/s)\nwind_speed_max (gust speed, m/s)\nwind_speed_max_time (gust speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (minimum wind speed, m/s)\nwind_speed_min_time (minimum wind speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_std (wind speed standard deviation, m/s)\nwind_from_direction (wind direction, degrees)\nwind_from_direction_std (wind direction standard deviation, degrees)\nrainfall_amount (total rainfall, mm)\n... (23 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-CRRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-CRRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-CRRF/index.json", "https://www.pacioos.hawaii.edu/weather/obs-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-CRRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-CRRF&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "AWS-CRRF"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_1000genomes/", "public", "File Names from the AWS S3 1000genomes Bucket: 1000 Genomes", "This dataset has file information from the AWS S3 1000genomes bucket at https://1000genomes.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 1000 Genomes\nName2: http://www.internationalgenome.org/formats\nDescription: The 1000 Genomes Project is an international collaboration which has established the most detailed catalogue of human genetic variation, including SNPs, structural variants, and their haplotype context. The final phase of the project sequenced more than 2500 individuals from 26 different populations around the world and produced an integrated set of phased haplotypes with more than 80 million variants for these individuals.\n\nDocumentation: https://docs.opendata.aws/1000genomes/readme.html\nContact: http://www.internationalgenome.org/contact\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_1000genomes/index.json", "https://registry.opendata.aws/1000-genomes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_1000genomes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_1000genomes&showErrors=false&email=", "Amazon Web Services", "awsS3Files_1000genomes"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_3kricegenome/", "public", "File Names from the AWS S3 3kricegenome Bucket: 3000 Rice Genomes Project", "This dataset has file information from the AWS S3 3kricegenome bucket at https://3kricegenome.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 3000 Rice Genomes Project\nName2: http://s3.amazonaws.com/3kricegenome/README-snp_pipeline.txt\nDescription: The 3000 Rice Genome Project is an international effort to sequence the genomes of 3,024 rice varieties from 89 countries.\n\nDocumentation: https://docs.opendata.aws/3kricegenome/readme.html\nContact: http://iric.irri.org/contact-us\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_3kricegenome/index.json", "https://registry.opendata.aws/3kricegenome/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_3kricegenome.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_3kricegenome&showErrors=false&email=", "Amazon Web Services", "awsS3Files_3kricegenome"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aft_vbi_pds/", "public", "File Names from the AWS S3 aft-vbi-pds Bucket: Amazon Bin Image Dataset: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.", "This dataset has file information from the AWS S3 aft-vbi-pds bucket at https://aft-vbi-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Bin Image Dataset\nName2: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.\nDescription: The Amazon Bin Image Dataset contains over 500,000 images and metadata from bins of a pod in an operating Amazon Fulfillment Center. The bin images in this dataset are captured as robot units carry pods as part of normal Amazon Fulfillment Center operations.\n\nDocumentation: https://docs.opendata.aws/aft-vbi-pds/readme.html\nContact: amazon-bin-images@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aft_vbi_pds/index.json", "https://registry.opendata.aws/amazon-bin-imagery/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aft_vbi_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aft_vbi_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aft_vbi_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory/", "public", "File Names from the AWS S3 allen-brain-observatory Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: Project data files in a public bucket", "This dataset has file information from the AWS S3 allen-brain-observatory bucket at https://allen-brain-observatory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: Project data files in a public bucket\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory_templates/", "public", "File Names from the AWS S3 allen-brain-observatory-templates Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: SageMaker launch template with s3fs bucket mounts", "This dataset has file information from the AWS S3 allen-brain-observatory-templates bucket at https://allen-brain-observatory-templates.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: SageMaker launch template with s3fs bucket mounts\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory_templates/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory_templates.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory_templates&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory_templates"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_amazon_reviews_pds/", "public", "File Names from the AWS S3 amazon-reviews-pds Bucket: Amazon Customer Reviews Dataset: TSV files of reviews", "This dataset has file information from the AWS S3 amazon-reviews-pds bucket at https://amazon-reviews-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Customer Reviews Dataset\nName2: TSV files of reviews\nDescription: Amazon Customer Reviews (a.k.a. Product Reviews) is one of Amazon\u2019s iconic products. In a period of over two decades since the first review in 1995, millions of Amazon customers have contributed over a hundred million reviews to express opinions and describe their experiences regarding products on the Amazon.com website. Over 130+ million customer reviews are available to researchers as part of this dataset.\n\nDocumentation: https://s3.amazonaws.com/amazon-reviews-pds/readme.html\nContact: customer-review-dataset@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not defined\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_amazon_reviews_pds/index.json", "https://registry.opendata.aws/amazon-reviews/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_amazon_reviews_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_amazon_reviews_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_amazon_reviews_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_avg_kitti/", "public", "File Names from the AWS S3 avg-kitti Bucket: KITTI Vision Benchmark Suite", "This dataset has file information from the AWS S3 avg-kitti bucket at https://avg-kitti.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: KITTI Vision Benchmark Suite\nName2: http://www.cvlibs.net/datasets/kitti/raw_data.php\nDescription: Dataset and benchmarks for computer vision research in the context of autonomous driving. The dataset has been recorded in and around the city of Karlsruhe, Germany using the mobile platform AnnieWay (VW station wagon) which has been equipped with several RGB and monochrome cameras, a Velodyne HDL 64 laser scanner as well as an accurate RTK corrected GPS/IMU localization unit. The dataset has been created for computer vision and machine learning research on stereo, optical flow, visual odometry, semantic segmentation, semantic instance segmentation, road segmentation, single image depth prediction, depth map completion, 2D and 3D object detection and object tracking. In addition, several raw data recordings are provided. The datasets are captured by driving around the mid-size city of Karlsruhe, in rural areas and on highways. Up to 15 cars and 30 pedestrians are visible per image.\n\nDocumentation: http://www.cvlibs.net/datasets/kitti/\nContact: http://www.cvlibs.net/people.php\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_avg_kitti/index.json", "https://registry.opendata.aws/kitti/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_avg_kitti.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_avg_kitti&showErrors=false&email=", "Amazon Web Services", "awsS3Files_avg_kitti"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/", "public", "File Names from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd Bucket: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)", "This dataset has file information from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd bucket at https://aws-earth-mo-atmospheric-mogreps-g-prd.s3.eu-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts\nName2: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)\nDescription: Meteorological data reusers now have an exciting opportunity to sample, experiment and evaluate Met Office atmospheric model data, whilst also experiencing a transformative method of requesting data via Restful APIs on AWS. All ahead of Met Office\u2019s own operationally supported API platform that will be launched in late 2019.\n\nDocumentation: https://github.com/MetOffice/aws-earth-examples\nContact: https://www.metoffice.gov.uk/about-us/contact\nUpdateFrequency: Daily (with 24 hour delay)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/index.json", "https://registry.opendata.aws/uk-met-office/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_gsod/", "public", "File Names from the AWS S3 aws-gsod Bucket: Global Surface Summary of Day: Measurements and metadata", "This dataset has file information from the AWS S3 aws-gsod bucket at https://aws-gsod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Surface Summary of Day\nName2: Measurements and metadata\nDescription: GSOD is a collection of daily weather measurements (temperature, wind speed, humidity, pressure, and more) from 9000+ weather stations around the world.\n\nDocumentation: https://www.ncdc.noaa.gov/\nContact: https://www.ncdc.noaa.gov/\nUpdateFrequency: Currently updated infrequently. Last updated on September 13, 2016.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_gsod/index.json", "https://registry.opendata.aws/noaa-gsod/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_gsod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_gsod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_gsod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_broad_references/", "public", "File Names from the AWS S3 broad-references Bucket: Broad Genome References: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.", "This dataset has file information from the AWS S3 broad-references bucket at https://broad-references.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Broad Genome References\nName2: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.\nDescription: Broad maintained human genome reference builds hg19/hg38 and decoy references.\n\nDocumentation: https://s3.amazonaws.com/broad-references/broad-references-readme.html\nContact: hensonc@broadinstitute.org\nManagedBy: Broad Institute\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_broad_references/index.json", "https://registry.opendata.aws/broad-references/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_broad_references.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_broad_references&showErrors=false&email=", "Amazon Web Services", "awsS3Files_broad_references"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cbers_meta_pds/", "public", "File Names from the AWS S3 cbers-meta-pds Bucket: CBERS on AWS: CBERS metadata (Quicklooks, metadata)", "This dataset has file information from the AWS S3 cbers-meta-pds bucket at https://cbers-meta-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CBERS on AWS\nName2: CBERS metadata (Quicklooks, metadata)\nDescription: This project creates a S3 repository with imagery acquired by the China-Brazil Earth Resources Satellite (CBERS). The image files are recorded and processed by Instituto Nacional de Pesquisa Espaciais (INPE) and are converted to Cloud Optimized Geotiff format in order to optimize its use for cloud based applications. The repository contains all CBERS-4 MUX, AWFI, PAN5M and PAN10M scenes acquired since the start of the satellite mission and is daily updated with new scenes.\n\nDocumentation: https://github.com/fredliporace/cbers-on-aws\nContact: https://lists.osgeo.org/mailman/listinfo/cbers-pds\nManagedBy: [AMS Kepler](https://amskepler.com/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cbers_meta_pds/index.json", "https://registry.opendata.aws/cbers/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cbers_meta_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cbers_meta_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cbers_meta_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cgiardata/", "public", "File Names from the AWS S3 cgiardata Bucket: CCAFS-Climate Data: ARC GRID, and ARC ASCII format compressed", "This dataset has file information from the AWS S3 cgiardata bucket at https://cgiardata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CCAFS-Climate Data\nName2: ARC GRID, and ARC ASCII format compressed\nDescription: High resolution climate data to help assess the impacts of climate change primarily on agriculture. These open access datasets of climate projections will help researchers make climate change impact assessments.\n\nDocumentation: http://www.ccafs-climate.org\nContact: http://www.ccafs-climate.org/contact/\nUpdateFrequency: Every three months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cgiardata/index.json", "https://registry.opendata.aws/cgiardata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cgiardata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cgiardata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cgiardata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_commoncrawl/", "public", "File Names from the AWS S3 commoncrawl Bucket: Common Crawl: Crawl data (WARC and ARC format)", "This dataset has file information from the AWS S3 commoncrawl bucket at https://commoncrawl.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Common Crawl\nName2: Crawl data (WARC and ARC format)\nDescription: A corpus of web crawl data composed of over 25 billion web pages.\n\nDocumentation: http://commoncrawl.org/the-data/get-started/\nContact: http://commoncrawl.org/connect/contact-us/\nManagedBy: [Common Crawl](http://commoncrawl.org/)\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_commoncrawl/index.json", "https://registry.opendata.aws/commoncrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_commoncrawl.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_commoncrawl&showErrors=false&email=", "Amazon Web Services", "awsS3Files_commoncrawl"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cornell_eas_data_lake/", "public", "File Names from the AWS S3 cornell-eas-data-lake Bucket: Cornell EAS Data Lake: Cornell EAS Data Lake", "This dataset has file information from the AWS S3 cornell-eas-data-lake bucket at https://cornell-eas-data-lake.s3.us-east-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cornell EAS Data Lake\nName2: Cornell EAS Data Lake\nDescription: Earth & Atmospheric Sciences at Cornell University has created a public data lake of climate data. The data is stored in columnar storage formats (ORC) to make it straightforward to query using standard tools like Amazon Athena or Apache Spark. The data itself is originally intended to be used for building decision support tools for farmers and digital agriculture. The first dataset is the historical NDFD / NDGD data distributed by NCEP / NOAA / NWS. The NDFD (National Digital Forecast Database) and NDGD (National Digital Guidance Database) contain gridded forecasts and observations at 2.5km resolution for the Contiguous United States (CONUS). There are also 5km grids for several smaller US regions and non-continguous territories, such as Hawaii, Guam, Puerto Rico and Alaska. NOAA distributes archives of the NDFD/NDGD via its NOAA Operational Model Archive and Distribution System (NOMADS) in Grib2 format. The data has been converted to ORC to optimize storage space and to, more importantly, simplify data access via standard data analytics tools.\n\nDocumentation: https://datalake.eas.cornell.edu/\nContact: digitalag@cornell.edu\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cornell_eas_data_lake/index.json", "https://registry.opendata.aws/cornell-eas-data-lake/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cornell_eas_data_lake.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cornell_eas_data_lake&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cornell_eas_data_lake"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cse_cic_ids2018/", "public", "File Names from the AWS S3 cse-cic-ids2018 Bucket: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018): Network traffic and log files", "This dataset has file information from the AWS S3 cse-cic-ids2018 bucket at https://cse-cic-ids2018.s3.ca-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018)\nName2: Network traffic and log files\nDescription: This dataset is the result of a collaborative project between the Communications Security Establishment (CSE) and The Canadian Institute for Cybersecurity (CIC) that use the notion of profiles to generate cybersecurity dataset in a systematic manner. It incluides a detailed description of intrusions along with abstract distribution models for applications, protocols, or lower level network entities. The dataset includes seven different attack scenarios, namely Brute-force, Heartbleed, Botnet, DoS, DDoS, Web attacks, and infiltration of the network from inside. The attacking infrastructure includes 50 machines and the victim organization has 5 departments includes 420 PCs and 30 servers. This dataset includes the network traffic and log files of each machine from the victim side, along with 80 network traffic features extracted from captured traffic using CICFlowMeter-V3. For more information on the creation of this dataset, see this paper by researchers at the Canadian Institute for Cybersecurity (CIC) and the University of New Brunswick (UNB): [Toward Generating a New Intrusion Detection Dataset and Intrusion Traffic Characterization](http://www.scitepress.org/Papers/2018/66398/66398.pdf).\n\nDocumentation: http://www.unb.ca/cic/datasets/ids-2018.html\nContact: CIC@unb.ca\nUpdateFrequency: Annualy\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cse_cic_ids2018/index.json", "https://registry.opendata.aws/cse-cic-ids2018/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cse_cic_ids2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cse_cic_ids2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cse_cic_ids2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cytodata/", "public", "File Names from the AWS S3 cytodata Bucket: Cell Painting Image Collection: Images, extracted features and aggregated profiles are available as a S3 bucket", "This dataset has file information from the AWS S3 cytodata bucket at https://cytodata.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cell Painting Image Collection\nName2: Images, extracted features and aggregated profiles are available as a S3 bucket\nDescription: The Cell Painting Image Collection is a collection of freely downloadable microscopy image sets. Cell Painting is an unbiased high throughput imaging assay used to analyze perturbations in cell models. In addition to the images themselves, each set includes a description of the biological application and some type of \"ground truth\" (expected results). Researchers are encouraged to use these image sets as reference points when developing, testing, and publishing new image analysis algorithms for the life sciences. We hope that the this data set will lead to a better understanding of which methods are best for various biological image analysis applications.\n\nDocumentation: https://github.com/cytodata/cytodata-hackathon-2018\nContact: Post on https://forum.image.sc/ and tag with \"cellpainting\"\nUpdateFrequency: irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cytodata/index.json", "https://registry.opendata.aws/cell-painting-image-collection/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cytodata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cytodata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cytodata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_czb_tabula_muris/", "public", "File Names from the AWS S3 czb-tabula-muris Bucket: Tabula Muris", "This dataset has file information from the AWS S3 czb-tabula-muris bucket at https://czb-tabula-muris.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Tabula Muris\nName2: https://github.com/czbiohub/tabula-muris\nDescription: Tabula Muris is a compendium of single cell transcriptomic data from the model organism *Mus musculus* comprising more than 100,000 cells from 20 organs and tissues. These data represent a new resource for cell biology, reveal gene expression in poorly characterized cell populations, and allow for direct and controlled comparison of gene expression in cell types shared between tissues, such as T-lymphocytes and endothelial cells from different anatomical locations. Two distinct technical approaches were used for most organs: one approach, microfluidic droplet-based 3\u2019-end counting, enabled the survey of thousands of cells at relatively low coverage, while the other, FACS-based full length transcript analysis, enabled characterization of cell types with high sensitivity and coverage. The cumulative data provide the foundation for an atlas of transcriptomic cell biology. See: https://www.nature.com/articles/s41586-018-0590-4\n\nDocumentation: https://github.com/czbiohub/tabula-muris/blob/master/tabula-muris-on-aws.md\nContact: If you have questions about the data, you can create an Issue at https://github.com/czbiohub/tabula-muris.\nManagedBy: [Chan Zuckerberg Biohub](https://www.czbiohub.org/)\nUpdateFrequency: This is the final version of the dataset, it will not be updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_czb_tabula_muris/index.json", "https://registry.opendata.aws/tabula-muris/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_czb_tabula_muris.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_czb_tabula_muris&showErrors=false&email=", "Amazon Web Services", "awsS3Files_czb_tabula_muris"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataforgood_fb_data/", "public", "File Names from the AWS S3 dataforgood-fb-data Bucket: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook: CSV and Cloud-optimized GeoTIFF files", "This dataset has file information from the AWS S3 dataforgood-fb-data bucket at https://dataforgood-fb-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook\nName2: CSV and Cloud-optimized GeoTIFF files\nDescription: Population data for a selection of countries, allocated to 1 arcsecond blocks and provided in a combination of CSV and Cloud-optimized GeoTIFF files. This refines [CIESIN\u2019s Gridded Population of the World](https://sedac.ciesin.columbia.edu/data/collection/gpw-v4) using machine learning models on high-resolution worldwide Digital Globe satellite imagery. CIESIN population counts aggregated from worldwide census data are allocated to blocks where imagery appears to contain buildings.\n\nDocumentation: [Project overview](https://dataforgood.fb.com/population-density-maps-documentation/) and [dataset description](https://docs.opendata.aws/dataforgood-fb-data/readme.html)\nContact: disastermaps@fb.com\nManagedBy: |\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataforgood_fb_data/index.json", "https://registry.opendata.aws/dataforgood-fb-hrsl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataforgood_fb_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataforgood_fb_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataforgood_fb_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_datasets_elasticmapreduce_ngrams_books/", "public", "File Names from the AWS S3 datasets.elasticmapreduce Bucket with prefix=ngrams/books/: Google Books Ngrams: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.", "This dataset has file information from the AWS S3 datasets.elasticmapreduce bucket at https://datasets.elasticmapreduce.s3.us-east-1.amazonaws.com/ with prefix=ngrams/books/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Google Books Ngrams\nName2: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.\nDescription: N-grams are fixed size tuples of items. In this case the items are words extracted from the Google Books corpus. The n specifies the number of elements in the tuple, so a 5-gram contains five words or characters. The n-grams in this dataset were produced by passing a sliding window of the text of books and outputting a record for each new token.\n\nDocumentation: http://books.google.com/ngrams/\nContact: https://books.google.com/ngrams\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_datasets_elasticmapreduce_ngrams_books/index.json", "https://registry.opendata.aws/google-ngrams/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_datasets_elasticmapreduce_ngrams_books.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_datasets_elasticmapreduce_ngrams_books&showErrors=false&email=", "Amazon Web Services", "awsS3Files_datasets_elasticmapreduce_ngrams_books"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataworld_linked_acs/", "public", "File Names from the AWS S3 dataworld-linked-acs Bucket: U.S. Census ACS PUMS: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.", "This dataset has file information from the AWS S3 dataworld-linked-acs bucket at https://dataworld-linked-acs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: U.S. Census ACS PUMS\nName2: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.\nDescription: U.S. Census Bureau American Community Survey (ACS) Public Use Microdata Sample (PUMS) available in a linked data format using the Resource Description Framework (RDF) data model.\n\nDocumentation: https://docs.data.world/uscensus/#american-community-survey-linked-open-data\nContact: https://docs.data.world/uscensus/#60---contact\nUpdateFrequency: Yearly, after ACS 1-year PUMS raw data are released\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataworld_linked_acs/index.json", "https://registry.opendata.aws/census-dataworld-pums/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataworld_linked_acs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataworld_linked_acs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataworld_linked_acs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2015/", "public", "File Names from the AWS S3 dc-lidar-2015 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML, SHP", "This dataset has file information from the AWS S3 dc-lidar-2015 bucket at https://dc-lidar-2015.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML, SHP\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2015/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2015.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2015&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2015"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2018/", "public", "File Names from the AWS S3 dc-lidar-2018 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML", "This dataset has file information from the AWS S3 dc-lidar-2018 bucket at https://dc-lidar-2018.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2018/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_eurex_pds/", "public", "File Names from the AWS S3 deutsche-boerse-eurex-pds Bucket: Deutsche B\u00f6rse Public Dataset: Eurex PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-eurex-pds bucket at https://deutsche-boerse-eurex-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Eurex PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_eurex_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_eurex_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_eurex_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_eurex_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_xetra_pds/", "public", "File Names from the AWS S3 deutsche-boerse-xetra-pds Bucket: Deutsche B\u00f6rse Public Dataset: Xetra PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-xetra-pds bucket at https://deutsche-boerse-xetra-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Xetra PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_xetra_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_xetra_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_xetra_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_xetra_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ebirdst_data/", "public", "File Names from the AWS S3 ebirdst-data Bucket: eBird Status and Trends Model Results: Species results files", "This dataset has file information from the AWS S3 ebirdst-data bucket at https://ebirdst-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: eBird Status and Trends Model Results\nName2: Species results files\nDescription: The eBird Status and Trends project generates estimates of bird occurrence and abundance at a high spatiotemporal resolution. This dataset represents the primary modeled results from the analysis workflow and are designed for further analysis, synthesis, visualization, and exploration.\n\nDocumentation: https://cornelllabofornithology.github.io/ebirdst/articles/ebirdst-introduction.html\nContact: https://help.ebird.org/customer/en/portal/emails/new\nManagedBy: [Cornell Lab of Ornithology](https://www.birds.cornell.edu/home/)\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ebirdst_data/index.json", "https://registry.opendata.aws/ebirdst/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ebirdst_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ebirdst_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ebirdst_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_elevation_tiles_prod/", "public", "File Names from the AWS S3 elevation-tiles-prod Bucket: Terrain Tiles: Gridded elevation tiles", "This dataset has file information from the AWS S3 elevation-tiles-prod bucket at https://elevation-tiles-prod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Terrain Tiles\nName2: Gridded elevation tiles\nDescription: A global dataset providing bare-earth terrain heights, tiled for easy usage and provided on S3.\n\nDocumentation: https://mapzen.com/documentation/terrain-tiles/\nContact: https://github.com/tilezen/joerd/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_elevation_tiles_prod/index.json", "https://registry.opendata.aws/terrain-tiles/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_elevation_tiles_prod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_elevation_tiles_prod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_elevation_tiles_prod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_encode_public/", "public", "File Names from the AWS S3 encode-public Bucket: Encyclopedia of DNA Elements (ENCODE): Released and archived ENCODE data", "This dataset has file information from the AWS S3 encode-public bucket at https://encode-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Encyclopedia of DNA Elements (ENCODE)\nName2: Released and archived ENCODE data\nDescription: The Encyclopedia of DNA Elements (ENCODE) Consortium is an international collaboration of research groups funded by the National Human Genome Research Institute (NHGRI). The goal of ENCODE is to build a comprehensive parts list of functional elements in the human genome, including elements that act at the protein and RNA levels, and regulatory elements that control cells and circumstances in which a gene is active. ENCODE investigators employ a variety of assays and methods to identify functional elements. The discovery and annotation of gene elements is accomplished primarily by sequencing a diverse range of RNA sources, comparative genomics, integrative bioinformatic methods, and human curation. Regulatory elements are typically investigated through DNA hypersensitivity assays, assays of DNA methylation, and immunoprecipitation (IP) of proteins that interact with DNA and RNA, i.e., modified histones, transcription factors, chromatin regulators, and RNA-binding proteins, followed by sequencing.\n\nDocumentation: https://www.encodeproject.org\nContact: encode-help@lists.stanford.edu\nManagedBy: ENCODE Data Coordinating Center\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_encode_public/index.json", "https://registry.opendata.aws/encode-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_encode_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_encode_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_encode_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_epa_rsei_pds/", "public", "File Names from the AWS S3 epa-rsei-pds Bucket: EPA Risk-Screening Environmental Indicators: RSEI Microdata", "This dataset has file information from the AWS S3 epa-rsei-pds bucket at https://epa-rsei-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: EPA Risk-Screening Environmental Indicators\nName2: RSEI Microdata\nDescription: Detailed air model results from EPA\u2019s Risk-Screening Environmental Indicators (RSEI) model.\n\nDocumentation: https://docs.opendata.aws/epa-rsei-pds/readme.html\nContact: https://www.epa.gov/rsei/forms/contact-us-about-rsei-model\nUpdateFrequency: Updated infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_epa_rsei_pds/index.json", "https://registry.opendata.aws/epa-rsei-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_epa_rsei_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_epa_rsei_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_epa_rsei_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_era5_pds/", "public", "File Names from the AWS S3 era5-pds Bucket: ECMWF ERA5 Reanalysis: ERA5 Reanalysis NetCDF 4 files", "This dataset has file information from the AWS S3 era5-pds bucket at https://era5-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ECMWF ERA5 Reanalysis\nName2: ERA5 Reanalysis NetCDF 4 files\nDescription: ERA5 is the fifth generation of ECMWF atmospheric reanalyses of the global climate, and the first reanalysis produced as an operational service. It utilizes the best available observation data from satellites and in-situ stations, which are assimilated and processed using ECMWF's Integrated Forecast System (IFS) Cycle 41r2. The dataset provides all essential atmospheric meteorological parameters like, but not limited to, air temperature, pressure and wind at different altitudes, along with surface parameters like rainfall, soil moisture content and sea parameters like sea-surface temperature and wave height. ERA5 provides data at a considerably higher spatial and temporal resolution than its legacy counterpart ERA-Interim. ERA5 consists of high resolution version with 31 km horizontal resolution, and a reduced resolution ensemble version with 10 members. It is currently available since 2008, but will be continuously extended backwards, first until 1979 and then to 1950. Learn more about ERA5 in Jon Olauson's paper [ERA5: The new champion of wind power modelling?](https://www.researchgate.net/publication/320084119_ERA5_The_new_champion_of_wind_power_modelling).\n\nDocumentation: https://github.com/planet-os/notebooks/blob/master/aws/era5-pds.md\nContact: datahub@intertrust.com\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_era5_pds/index.json", "https://registry.opendata.aws/ecmwf-era5/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_era5_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_era5_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_era5_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_coco/", "public", "File Names from the AWS S3 fast-ai-coco Bucket: COCO - Common Objects in Context - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-coco bucket at https://fast-ai-coco.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: COCO - Common Objects in Context - fast.ai datasets\nName2: Datasets\nDescription: COCO is a large-scale object detection, segmentation, and captioning dataset. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. If you use this dataset in your research please cite arXiv:1405.0312 [cs.CV].\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_coco/index.json", "https://registry.opendata.aws/fast-ai-coco/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_coco.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_coco&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_coco"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imageclas/", "public", "File Names from the AWS S3 fast-ai-imageclas Bucket: Image classification - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imageclas bucket at https://fast-ai-imageclas.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image classification - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image classification research, including CIFAR 10 and 100, Caltech 101, MNIST, Food-101, Oxford-102-Flowers, Oxford-IIIT-Pets, and Stanford-Cars. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imageclas/index.json", "https://registry.opendata.aws/fast-ai-imageclas/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imageclas.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imageclas&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imageclas"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imagelocal/", "public", "File Names from the AWS S3 fast-ai-imagelocal Bucket: Image localization - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imagelocal bucket at https://fast-ai-imagelocal.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image localization - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image localization research, including Camvid and PASCAL VOC (2007 and 2012). This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imagelocal/index.json", "https://registry.opendata.aws/fast-ai-imagelocal/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imagelocal.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imagelocal&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imagelocal"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_nlp/", "public", "File Names from the AWS S3 fast-ai-nlp Bucket: NLP - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-nlp bucket at https://fast-ai-nlp.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NLP - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for NLP, with a focus on classification, including IMDb, AG-News, Amazon Reviews (polarity and full), Yelp Reviews (polarity and full), Dbpedia, Sogou News (Pinyin), Yahoo Answers, Wikitext 2 and Wikitext 103, and ACL-2010 French-English 10^9 corpus. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_nlp/index.json", "https://registry.opendata.aws/fast-ai-nlp/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_nlp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_nlp&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_nlp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib Bucket: HIRLAM Weather Model: Pressure GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib bucket at https://fmi-opendata-rcrhirlam-pressure-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Pressure GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_pressure_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_pressure_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-surface-grib Bucket: HIRLAM Weather Model: Surface GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-surface-grib bucket at https://fmi-opendata-rcrhirlam-surface-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Surface GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_surface_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_surface_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gatk_test_data/", "public", "File Names from the AWS S3 gatk-test-data Bucket: GATK Test Data: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.", "This dataset has file information from the AWS S3 gatk-test-data bucket at https://gatk-test-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GATK Test Data\nName2: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.\nDescription: The GATK test data resource bundle is a collection of files for resequencing human genomic data with the Broad Institute's [Genome Analysis Toolkit (GATK)](https://software.broadinstitute.org/gatk/).\n\nDocumentation: https://s3.amazonaws.com/gatk-test-data/gatk-test-data-readme.html\nContact: https://gatkforums.broadinstitute.org/gatk\nManagedBy: Broad Institute\nUpdateFrequency: Every 3 months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gatk_test_data/index.json", "https://registry.opendata.aws/gatk-test-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gatk_test_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gatk_test_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gatk_test_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gdelt_open_data/", "public", "File Names from the AWS S3 gdelt-open-data Bucket: Global Database of Events, Language and Tone (GDELT): Project data files", "This dataset has file information from the AWS S3 gdelt-open-data bucket at https://gdelt-open-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Database of Events, Language and Tone (GDELT)\nName2: Project data files\nDescription: This project monitors the world's broadcast, print, and web news from nearly every corner of every country in over 100 languages and identifies the people, locations, organizations, counts, themes, sources, emotions, quotes, images and events driving our global society every second of every day.\n\nDocumentation: http://www.gdeltproject.org/\nContact: http://www.gdeltproject.org/about.html#contact\nUpdateFrequency: Not currently being updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gdelt_open_data/index.json", "https://registry.opendata.aws/gdelt/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gdelt_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gdelt_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gdelt_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_genomeark/", "public", "File Names from the AWS S3 genomeark Bucket: Genome Ark", "This dataset has file information from the AWS S3 genomeark bucket at https://genomeark.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome Ark\nName2: https://vgp.github.io\nDescription: The Genome Ark hosts genomic information for the Vertebrate Genomes Project (VGP) and other related projects. The VGP is an international collaboration that aims to generate complete and near error-free reference genomes for all extant vertebrate species. These genomes will be used to address fundamental questions in biology and disease, to identify species most genetically at risk for extinction, and to preserve genetic information of life.\n\nDocumentation: https://vertebrategenomesproject.org\nContact: Erich Jarvis \nManagedBy: The Genome10K community of scientists\nUpdateFrequency: Data will be continually updated as it is generated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_genomeark/index.json", "https://registry.opendata.aws/genomeark/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_genomeark.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_genomeark&showErrors=false&email=", "Amazon Web Services", "awsS3Files_genomeark"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_giab/", "public", "File Names from the AWS S3 giab Bucket: Genome in a Bottle on AWS: Latest data", "This dataset has file information from the AWS S3 giab bucket at https://giab.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome in a Bottle on AWS\nName2: Latest data\nDescription: Several reference genomes to enable translation of whole human genome sequencing to clinical practice.\n\nDocumentation: https://docs.opendata.aws/giab/readme.html\nContact: http://genomeinabottle.org/\nUpdateFrequency: New data are added as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_giab/index.json", "https://registry.opendata.aws/giab/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_giab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_giab&showErrors=false&email=", "Amazon Web Services", "awsS3Files_giab"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gmsdata/", "public", "File Names from the AWS S3 gmsdata Bucket: The Genome Modeling System", "This dataset has file information from the AWS S3 gmsdata bucket at https://gmsdata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Genome Modeling System\nName2: https://gmsdata.s3.amazonaws.com/INDEX.html\nDescription: The Genome Institute at Washington University has developed a high-throughput, fault-tolerant analysis information management system called the Genome Modeling System (GMS), capable of executing complex, interdependent, and automated genome analysis pipelines at a massive scale. The GMS framework provides detailed tracking of samples and data coupled with reliable and repeatable analysis pipelines. GMS includes a full system image with software and services, expandable from one workstation to a large compute cluster.\n\nDocumentation: https://github.com/genome/gms/wiki\nContact: https://github.com/genome/gms/issues\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gmsdata/index.json", "https://registry.opendata.aws/gmsdata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gmsdata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gmsdata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gmsdata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_grillo_openeew/", "public", "File Names from the AWS S3 grillo-openeew Bucket: OpenEEW: OpenEEW", "This dataset has file information from the AWS S3 grillo-openeew bucket at https://grillo-openeew.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenEEW\nName2: OpenEEW\nDescription: Grillo has developed an IoT-based earthquake early-warning system in Mexico and Chile and is now opening its entire archive of unprocessed accelerometer data to the world to encourage the development of new algorithms capable of rapidly detecting and characterizing earthquakes in real time.\n\nDocumentation: https://github.com/grillo/openeew\nContact: openeew@grillo.io\nManagedBy: [Grillo](https://grillo.io/)\nUpdateFrequency: Approximately every 10 minutes\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_grillo_openeew/index.json", "https://registry.opendata.aws/grillo-openeew/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_grillo_openeew.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_grillo_openeew&showErrors=false&email=", "Amazon Web Services", "awsS3Files_grillo_openeew"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_microbiome_project/", "public", "File Names from the AWS S3 human-microbiome-project Bucket: The Human Microbiome Project", "This dataset has file information from the AWS S3 human-microbiome-project bucket at https://human-microbiome-project.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Human Microbiome Project\nName2: https://aws.amazon.com/datasets/human-microbiome-project/\nDescription: The NIH-funded Human Microbiome Project (HMP) is a collaborative effort of over 300 scientists from more than 80 organizations to comprehensively characterize the microbial communities inhabiting the human body and elucidate their role in human health and disease. To accomplish this task, microbial community samples were isolated from a cohort of 300 healthy adult human subjects at 18 specific sites within five regions of the body (oral cavity, airways, urogenital track, skin, and gut). Targeted sequencing of the 16S bacterial marker gene and/or whole metagenome shotgun sequencing was performed for thousands of these samples. In addition, whole genome sequences were generated for isolate strains collected from human body sites to act as reference organisms for analysis. Finally, 16S marker and whole metagenome sequencing was also done on additional samples from people suffering from several disease conditions.\n\nDocumentation: https://commonfund.nih.gov/hmp\nContact: https://commonfund.nih.gov/hmp/related_activities\nUpdateFrequency: Uncertain\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_microbiome_project/index.json", "https://registry.opendata.aws/human-microbiome-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_microbiome_project.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_microbiome_project&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_microbiome_project"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_pangenomics/", "public", "File Names from the AWS S3 human-pangenomics Bucket: Human PanGenomics Project: Human PanGenomics Project", "This dataset has file information from the AWS S3 human-pangenomics bucket at https://human-pangenomics.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Human PanGenomics Project\nName2: Human PanGenomics Project\nDescription: This dataset includes sequencing data, assemblies, and analyses for the offspring of ten parent-offspring trios.\n\nDocumentation: https://github.com/human-pangenomics/hpgp-data\nContact: https://github.com/human-pangenomics/hpgp-data/issues\nUpdateFrequency: Data will be added and updated as technologies improve or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_pangenomics/index.json", "https://registry.opendata.aws/hpgp-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_pangenomics.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_pangenomics&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_pangenomics"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/", "public", "File Names from the AWS S3 ichangemycity-janaagraha-complaints-data-aws Bucket: IChangeMyCity Complaints Data from Janaagraha: IChangeMyCity Complaints", "This dataset has file information from the AWS S3 ichangemycity-janaagraha-complaints-data-aws bucket at https://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IChangeMyCity Complaints Data from Janaagraha\nName2: IChangeMyCity Complaints\nDescription: The [IChangeMyCity](https://www.ichangemycity.com) project provides insight into the complaints raised by citizens from diffent cities of India related to the issues in their neighbourhoods and the resolution of the same by the civic bodies.\n\nDocumentation: http://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/readme.html\nContact: data@janaagraha.org\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/index.json", "https://registry.opendata.aws/ichangemycity/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ichangemycity_janaagraha_complaints_data_aws&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ichangemycity_janaagraha_complaints_data_aws"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_irs_990_spreadsheets/", "public", "File Names from the AWS S3 irs-990-spreadsheets Bucket: IRS 990 Filings (Spreadsheets): Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form", "This dataset has file information from the AWS S3 irs-990-spreadsheets bucket at https://irs-990-spreadsheets.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IRS 990 Filings (Spreadsheets)\nName2: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form\nDescription: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form. Additional fields being added regularly.\n\nDocumentation: https://appliednonprofitresearch.com/documentation/irs-990-spreadsheets\nContact: [info@appliednonprofitresearch.com](info@appliednonprofitresearch.com)\nManagedBy: [Applied Nonprofit Research, LLC](https://www.appliednonprofitresearch.com/)\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_irs_990_spreadsheets/index.json", "https://registry.opendata.aws/990-spreadsheets/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_irs_990_spreadsheets.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_irs_990_spreadsheets&showErrors=false&email=", "Amazon Web Services", "awsS3Files_irs_990_spreadsheets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lab41openaudiocorpus/", "public", "File Names from the AWS S3 lab41openaudiocorpus Bucket: Voices Obscured in Complex Environmental Settings (VOiCES): wav audio files, orthographic transcriptions, and speaker ID", "This dataset has file information from the AWS S3 lab41openaudiocorpus bucket at https://lab41openaudiocorpus.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Voices Obscured in Complex Environmental Settings (VOiCES)\nName2: wav audio files, orthographic transcriptions, and speaker ID\nDescription: VOiCES is a speech corpus recorded in acoustically challenging settings, using distant microphone recording. Speech was recorded in real rooms with various acoustic features (reverb, echo, HVAC systems, outside noise, etc.). Adversarial noise, either television, music, or babble, was concurrently played with clean speech. Data was recorded using multiple microphones strategically placed throughout the room. The corpus includes audio recordings, orthographic transcriptions, and speaker labels.\n\nDocumentation: https://voices18.github.io/\nContact: https://github.com/voices18/utilities/issues\nUpdateFrequency: Data from two additional rooms will be added to the corpus Fall 2018.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lab41openaudiocorpus/index.json", "https://registry.opendata.aws/lab41-sri-voices/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lab41openaudiocorpus.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lab41openaudiocorpus&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lab41openaudiocorpus"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds/", "public", "File Names from the AWS S3 landsat-pds Bucket: Landsat 8: Scenes and metadata", "This dataset has file information from the AWS S3 landsat-pds bucket at https://landsat-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: Scenes and metadata\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds_inventory/", "public", "File Names from the AWS S3 landsat-pds-inventory Bucket: Landsat 8: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)", "This dataset has file information from the AWS S3 landsat-pds-inventory bucket at https://landsat-pds-inventory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds_inventory/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds_inventory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds_inventory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds_inventory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lofar_elais_n1/", "public", "File Names from the AWS S3 lofar-elais-n1 Bucket: LOFAR ELAIS-N1 cycle 2 observations on AWS: LOFAR ELAIS-N1 cycle 2 observations", "This dataset has file information from the AWS S3 lofar-elais-n1 bucket at https://lofar-elais-n1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: LOFAR ELAIS-N1 cycle 2 observations on AWS\nName2: LOFAR ELAIS-N1 cycle 2 observations\nDescription: These data correspond to the [International LOFAR Telescope](http://www.lofar.org/) observations of the sky field ELAIS-N1 (16:10:01 +54:30:36) during the cycle 2 of observations. There are 11 runs of about 8 hours each plus the corresponding observation of the calibration targets before and after the target field. The data are measurement sets ([MS](https://casa.nrao.edu/Memos/229.html)) containing the cross-correlated data and metadata divided in 371 frequency sub-bands per target centred at ~150 MHz.\n\nDocumentation: https://www.lofarcloud.uk/data.html\nContact: https://www.lofarcloud.uk/\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lofar_elais_n1/index.json", "https://registry.opendata.aws/lofar-elais-n1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lofar_elais_n1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lofar_elais_n1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lofar_elais_n1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mf_nwp_models/", "public", "File Names from the AWS S3 mf-nwp-models Bucket: Atmospheric Models from M\u00e9t\u00e9o-France: Atmospheric Models from M\u00e9t\u00e9o-France", "This dataset has file information from the AWS S3 mf-nwp-models bucket at https://mf-nwp-models.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Atmospheric Models from M\u00e9t\u00e9o-France\nName2: Atmospheric Models from M\u00e9t\u00e9o-France\nDescription: Global and high-resolution regional atmospheric models from M\u00e9t\u00e9o-France.\n\nDocumentation: https://mf-models-on-aws.org\nContact: contact@openmeteodata.com\nManagedBy: [OpenMeteoData](https://openmeteodata.com)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mf_nwp_models/index.json", "https://registry.opendata.aws/meteo-france-models/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mf_nwp_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mf_nwp_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mf_nwp_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_modis_pds/", "public", "File Names from the AWS S3 modis-pds Bucket: MODIS on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 modis-pds bucket at https://modis-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: MODIS on AWS\nName2: Imagery and metadata\nDescription: Select products from the Moderate Resolution Imaging Spectroradiometer (MODIS) managed by the U.S. Geological Survey and NASA.\n\nDocumentation: https://docs.opendata.aws/modis-pds/readme.html\nContact: https://github.com/AstroDigital/modis-ingestor/issues\nUpdateFrequency: New MODIS data is added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_modis_pds/index.json", "https://registry.opendata.aws/modis/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_modis_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_modis_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_modis_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_multimedia_commons/", "public", "File Names from the AWS S3 multimedia-commons Bucket: Multimedia Commons: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.", "This dataset has file information from the AWS S3 multimedia-commons bucket at https://multimedia-commons.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Multimedia Commons\nName2: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.\nDescription: The Multimedia Commons is a collection of audio and visual features computed for the nearly 100 million Creative Commons-licensed Flickr images and videos in the YFCC100M dataset from Yahoo! Labs, along with ground-truth annotations for selected subsets. The International Computer Science Institute (ICSI) and Lawrence Livermore National Laboratory are producing and distributing a core set of derived feature sets and annotations as part of an effort to enable large-scale video search capabilities. They have released this feature corpus into the public domain, under Creative Commons License 0, so it is free for anyone to use for any purpose.\n\nDocumentation: https://multimediacommons.wordpress.com/yfcc100m-core-dataset/\nContact: multimedia-commons@icsi.berkeley.edu\nUpdateFrequency: Not updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_multimedia_commons/index.json", "https://registry.opendata.aws/multimedia-commons/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_multimedia_commons.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_multimedia_commons&showErrors=false&email=", "Amazon Web Services", "awsS3Files_multimedia_commons"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mwapublic/", "public", "File Names from the AWS S3 mwapublic Bucket: Epoch of Reionization Dataset: Selected MWA EoR data (uvfits format) from 2013-2015", "This dataset has file information from the AWS S3 mwapublic bucket at https://mwapublic.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Epoch of Reionization Dataset\nName2: Selected MWA EoR data (uvfits format) from 2013-2015\nDescription: The data are from observations with the Murchison Widefield Array (MWA) which is a Square Kilometer Array (SKA) precursor in Western Australia. This particular dataset is from the Epoch of Reionization project which is a key science driver of the SKA. Nearly 2PB of such observations have been recorded to date, this is a small subset of that which has been exported from the MWA data archive in Perth and made available to the public on AWS. The data were taken to detect signatures of the first stars and galaxies forming and the effect of these early stars and galaxies on the evolution of the universe.\n\nDocumentation: http://danielcjacobs.com/research/epoch-of-reionization-aws-public-dataset/\nContact: brynah (at) phys.washington.edu\nManagedBy: University of washington Radio Cosmology Group\nUpdateFrequency: Irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mwapublic/index.json", "https://registry.opendata.aws/epoch-of-reionization/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mwapublic.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mwapublic&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mwapublic"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nanopore_human_wgs/", "public", "File Names from the AWS S3 nanopore-human-wgs Bucket: Nanopore Reference Human Genome: Nanopore Reference Human Genome", "This dataset has file information from the AWS S3 nanopore-human-wgs bucket at https://nanopore-human-wgs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Nanopore Reference Human Genome\nName2: Nanopore Reference Human Genome\nDescription: This dataset includes the sequencing and assembly of a reference standard human genome (GM12878) using the MinION nanopore sequencing instrument with the R9.4 1D chemistry.\n\nDocumentation: https://github.com/nanopore-wgs-consortium/NA12878\nContact: https://github.com/nanopore-wgs-consortium/NA12878/issues\nUpdateFrequency: Data will be added as methodology improves or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nanopore_human_wgs/index.json", "https://registry.opendata.aws/nanopore/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nanopore_human_wgs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nanopore_human_wgs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nanopore_human_wgs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_Landsat/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=Landsat/: NASA NEX: Landsat GLS (Global Land Survey)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=Landsat/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Landsat GLS (Global Land Survey)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_Landsat/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_Landsat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_Landsat&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_Landsat"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_LOCA/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=LOCA/: NASA NEX: Localized Constructed Analogs (LOCA)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=LOCA/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Localized Constructed Analogs (LOCA)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_LOCA/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_LOCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_LOCA&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_LOCA"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_MODIS/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=MODIS/: NASA NEX: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=MODIS/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_MODIS/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_MODIS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_MODIS&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_MODIS"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_DCP30/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-DCP30/: NASA NEX: Downscaled Climate Projections (NEX-DCP30)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-DCP30/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Downscaled Climate Projections (NEX-DCP30)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_DCP30/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_DCP30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_DCP30&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_DCP30"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_GDDP/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-GDDP/: NASA NEX: Global Daily Downscaled Projections (NEX-GDDP)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-GDDP/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Global Daily Downscaled Projections (NEX-GDDP)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_GDDP/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_GDDP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_GDDP&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_GDDP"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gefs_pds/", "public", "File Names from the AWS S3 noaa-gefs-pds Bucket: NOAA Global Ensemble Forecast System (GEFS): Project data files", "This dataset has file information from the AWS S3 noaa-gefs-pds bucket at https://noaa-gefs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Ensemble Forecast System (GEFS)\nName2: Project data files\nDescription: The Global Ensemble Forecast System (GEFS), previously known as the GFS Global ENSemble (GENS), is a weather forecast model made up of 21 separate forecasts, or ensemble members. The National Centers for Environmental Prediction (NCEP) started the GEFS to address the nature of uncertainty in weather observations, which is used to initialize weather forecast models. The GEFS attempts to quantify the amount of uncertainty in a forecast by generating an ensemble of multiple forecasts, each minutely different, or perturbed, from the original observations. With global coverage, GEFS is produced four times a day with weather forecasts going out to 16 days.\n\nDocumentation: https://docs.opendata.aws/noaa-gefs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GEFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GEFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gefs_pds/index.json", "https://registry.opendata.aws/noaa-gefs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gefs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gefs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gefs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_bdp_pds/", "public", "File Names from the AWS S3 noaa-gfs-bdp-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 GFS data", "This dataset has file information from the AWS S3 noaa-gfs-bdp-pds bucket at https://noaa-gfs-bdp-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_bdp_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_bdp_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_bdp_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_bdp_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_pds/", "public", "File Names from the AWS S3 noaa-gfs-pds Bucket: Unidata NOAA Global Forecast System (GFS) Model: A rolling four-week archive of 0.25 degree GFS data", "This dataset has file information from the AWS S3 noaa-gfs-pds bucket at https://noaa-gfs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Unidata NOAA Global Forecast System (GFS) Model\nName2: A rolling four-week archive of 0.25 degree GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks.\n\nDocumentation: https://docs.opendata.aws/noaa-gfs-pds/readme.html\nContact: https://www.ncdc.noaa.gov/contact\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_pds/index.json", "https://registry.opendata.aws/noaa-gfs-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfspara_pds/", "public", "File Names from the AWS S3 noaa-gfspara-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 FV3-based parallel version of the GFS", "This dataset has file information from the AWS S3 noaa-gfspara-pds bucket at https://noaa-gfspara-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 FV3-based parallel version of the GFS\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfspara_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfspara_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfspara_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfspara_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghcn_pds/", "public", "File Names from the AWS S3 noaa-ghcn-pds Bucket: NOAA Global Historical Climatology Network Daily (GHCN-D): Project data files", "This dataset has file information from the AWS S3 noaa-ghcn-pds bucket at https://noaa-ghcn-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Daily (GHCN-D)\nName2: Project data files\nDescription: Global Historical Climatology Network - Daily is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://docs.opendata.aws/noaa-ghcn-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncdc.noaa.gov/ghcn-daily-description). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghcn_pds/index.json", "https://registry.opendata.aws/noaa-ghcn/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghcn_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghcn_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghcn_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghe_pds/", "public", "File Names from the AWS S3 noaa-ghe-pds Bucket: NOAA Global Hydro Estimator (GHE): Project data files", "This dataset has file information from the AWS S3 noaa-ghe-pds bucket at https://noaa-ghe-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Hydro Estimator (GHE)\nName2: Project data files\nDescription: Global Hydro-Estimator provides a global mosaic imagery of rainfall estimates from multi-geostationary satellites, which currently includes GOES-16, GOES-15, Meteosat-8, Meteosat-11 and Himawari-8. The GHE products include: Instantaneous rain rate, 1 hour, 3 hour, 6 hour, 24 hour and also multi-day rainfall accumulation.\n\nDocumentation: https://www.ospo.noaa.gov/Products/atmosphere/ghe/index.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 15 minute-instantaneous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghe_pds/index.json", "https://registry.opendata.aws/noaa-ghe/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghe_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghe_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghe_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_global_hourly_pds/", "public", "File Names from the AWS S3 noaa-global-hourly-pds Bucket: NOAA Global Historical Climatology Network Hourly (GHCN-H): Project data files", "This dataset has file information from the AWS S3 noaa-global-hourly-pds bucket at https://noaa-global-hourly-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Hourly (GHCN-H)\nName2: Project data files\nDescription: Global Historical Climatology Network - Hourly is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: daily (Manually)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_global_hourly_pds/index.json", "https://registry.opendata.aws/noaa-ghcnh/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_global_hourly_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_global_hourly_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_global_hourly_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3NoaaGoes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nUse ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browser the files in buckets. This dataset is a solution to that problem for this bucket.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3NoaaGoes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3NoaaGoes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3NoaaGoes16&showErrors=false&email=", "NOAA", "awsS3NoaaGoes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket: GOES on AWS: GOES-16 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-16 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes16&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes17/", "public", "File Names from the AWS S3 noaa-goes17 Bucket: GOES on AWS: GOES-17 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes17 bucket at https://noaa-goes17.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-17 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes17/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes17&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes17"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_hrrr_pds/", "public", "File Names from the AWS S3 noaa-hrrr-pds Bucket: NOAA High-Resolution Rapid Refresh (HRRR) Model: A rolling one-week archive of HRRR data.", "This dataset has file information from the AWS S3 noaa-hrrr-pds bucket at https://noaa-hrrr-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA High-Resolution Rapid Refresh (HRRR) Model\nName2: A rolling one-week archive of HRRR data.\nDescription: The HRRR is a NOAA real-time 3-km resolution, hourly updated, cloud-resolving, convection-allowing atmospheric model, initialized by 3km grids with 3km radar assimilation. Radar data is assimilated in the HRRR every 15 min over a 1-h period adding further detail to that provided by the hourly data assimilation from the 13km radar-enhanced Rapid Refresh.\n\nDocumentation: https://docs.opendata.aws/noaa-hrrr-pds/readme.html\nContact: https://rapidrefresh.noaa.gov/hrrr/\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_hrrr_pds/index.json", "https://registry.opendata.aws/noaa-hrrr-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_hrrr_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_hrrr_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_hrrr_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_isd_pds/", "public", "File Names from the AWS S3 noaa-isd-pds Bucket: NOAA Integrated Surface Database (ISD): Project data files", "This dataset has file information from the AWS S3 noaa-isd-pds bucket at https://noaa-isd-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Integrated Surface Database (ISD)\nName2: Project data files\nDescription: The Integrated Surface Database (ISD) consists of global hourly and synoptic observations compiled from numerous sources into a gzipped fixed width format. ISD was developed as a joint activity within Asheville's Federal Climate Complex. The database includes over 35,000 stations worldwide, with some having data as far back as 1901, though the data show a substantial increase in volume in the 1940s and again in the early 1970s. Currently, there are over 14,000 \"active\" stations updated daily in the database. The total uncompressed data volume is around 600 gigabytes; however, it continues to grow as more data are added. ISD includes numerous parameters such as wind speed and direction, wind gust, temperature, dew point, cloud data, sea level pressure, altimeter setting, station pressure, present weather, visibility, precipitation amounts for various time periods, snow depth, and various other elements as observed by each station.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_isd_pds/index.json", "https://registry.opendata.aws/noaa-isd/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_isd_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_isd_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_isd_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nexrad_level2/", "public", "File Names from the AWS S3 noaa-nexrad-level2 Bucket: NEXRAD on AWS: NEXRAD Level II archive data", "This dataset has file information from the AWS S3 noaa-nexrad-level2 bucket at https://noaa-nexrad-level2.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II archive data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nexrad_level2/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nexrad_level2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nexrad_level2&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nexrad_level2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_pds/", "public", "File Names from the AWS S3 noaa-nwm-pds Bucket: NOAA National Water Model Short-Range Forecast: A rolling four week archive of NWM data.", "This dataset has file information from the AWS S3 noaa-nwm-pds bucket at https://noaa-nwm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Short-Range Forecast\nName2: A rolling four week archive of NWM data.\nDescription: The National Water Model (NWM) is a water resources model that simulates and forecasts water budget variables, including snowpack, evapotranspiration, soil moisture and streamflow, over the entire continental United States (CONUS). The model, launched in August 2016, is designed to improve the ability of NOAA to meet the needs of its stakeholders (forecasters, emergency managers, reservoir operators, first responders, recreationists, farmers, barge operators, and ecosystem and floodplain managers) by providing expanded accuracy, detail, and frequency of water information. It is operated by NOAA\u2019s Office of Water Prediction. This bucket contains a four-week rollover of the Short Range Forecast model output and the corresponding forcing data for the model. The model is forced with meteorological data from the High Resolution Rapid Refresh (HRRR) and the Rapid Refresh (RAP) models. The Short Range Forecast configuration cycles hourly and produces hourly deterministic forecasts of streamflow and hydrologic states out to 18 hours.\n\nDocumentation: https://docs.opendata.aws/noaa-nwm-pds/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_pds/index.json", "https://registry.opendata.aws/noaa-nwm-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_retro_v2_0_pds/", "public", "File Names from the AWS S3 noaa-nwm-retro-v2.0-pds Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 2.0.", "This dataset has file information from the AWS S3 noaa-nwm-retro-v2.0-pds bucket at https://noaa-nwm-retro-v2.0-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 2.0.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\n... (4 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_retro_v2_0_pds/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_retro_v2_0_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_retro_v2_0_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_retro_v2_0_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ofs_pds/", "public", "File Names from the AWS S3 noaa-ofs-pds Bucket: NOAA Operational Forecast System (OFS): Project data files", "This dataset has file information from the AWS S3 noaa-ofs-pds bucket at https://noaa-ofs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Operational Forecast System (OFS)\nName2: Project data files\nDescription: The Operational Forecast System (OFS) has been developed to serve the maritime user community. OFS was developed in a joint project of the NOAA/National Ocean Service (NOS)/Office of Coast Survey, the NOAA/NOS/Center for Operational Oceanographic Products and Services (CO-OPS), and the NOAA/National Weather Service (NWS)/National Centers for Environmental Prediction (NCEP) Central Operations (NCO). OFS generates water level, water current, water temperature, water salinity (except for the Great Lakes) and wind conditions nowcast and forecast guidance four times per day.\n\nDocumentation: https://docs.opendata.aws/noaa-ofs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA OFS site](https://tidesandcurrents.noaa.gov/models.html). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight and generates 6-hour nowcasts and 48-hour forecast guidance\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ofs_pds/index.json", "https://registry.opendata.aws/noaa-ofs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ofs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ofs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ofs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/", "public", "File Names from the AWS S3 nrel-pds-wtk Bucket with prefix=wtk-techno-economic/pywtk-data/: NREL Wind Integration National Dataset on AWS: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format", "This dataset has file information from the AWS S3 nrel-pds-wtk bucket at https://nrel-pds-wtk.s3.us-west-2.amazonaws.com/ with prefix=wtk-techno-economic/pywtk-data/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NREL Wind Integration National Dataset on AWS\nName2: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format\nDescription: The [Wind Integration National Dataset (WIND)](https://www.nrel.gov/grid/wind-toolkit.html) is an update and expansion of the Eastern Wind Integration Data Set and Western Wind Integration Data Set. It supports the next generation of wind integration studies.\n\nDocumentation: https://www.nrel.gov/grid/wind-toolkit.html\nContact: wind-toolkit@nrel.gov\nManagedBy: [National Renewable Energy Laboratory](https://www.nrel.gov/)\nUpdateFrequency: As Needed\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/index.json", "https://registry.opendata.aws/nrel-pds-wtk/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nwm_archive/", "public", "File Names from the AWS S3 nwm-archive Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 1.2.", "This dataset has file information from the AWS S3 nwm-archive bucket at https://nwm-archive.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 1.2.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nwm_archive/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nwm_archive.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nwm_archive&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nwm_archive"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nyc_tlc/", "public", "File Names from the AWS S3 nyc-tlc Bucket: New York City Taxi and Limousine Commission (TLC) Trip Record Data: CSV files containing NYC TLC trip data.", "This dataset has file information from the AWS S3 nyc-tlc bucket at https://nyc-tlc.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: New York City Taxi and Limousine Commission (TLC) Trip Record Data\nName2: CSV files containing NYC TLC trip data.\nDescription: Data of trips taken by taxis and for-hire vehicles in New York City.\n\nDocumentation: http://www.nyc.gov/html/tlc/html/about/trip_record_data.shtml\nContact: research@tlc.nyc.gov\nUpdateFrequency: As soon as new data is available to be shared publicly.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nyc_tlc/index.json", "https://registry.opendata.aws/nyc-tlc-trip-records-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nyc_tlc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nyc_tlc&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nyc_tlc"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_oicr_icgc_meta_metadata/", "public", "File Names from the AWS S3 oicr.icgc.meta Bucket with prefix=metadata/: ICGC on AWS: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README", "This dataset has file information from the AWS S3 oicr.icgc.meta bucket at https://oicr.icgc.meta.s3.us-east-1.amazonaws.com/ with prefix=metadata/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ICGC on AWS\nName2: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README\nDescription: The International Cancer Genome Consortium (ICGC) coordinates projects with the common aim of accelerating research into the causes and control of cancer. The PanCancer Analysis of Whole Genomes (PCAWG) study is an international collaboration to identify common patterns of mutation in whole genomes from ICGC. More than 2,400 consistently analyzed genomes corresponding to over 1,100 unique ICGC donors are now freely available on Amazon S3 to credentialed researchers subject to ICGC data sharing policies.\n\nDocumentation: https://dcc.icgc.org/icgc-in-the-cloud/aws\nContact: dcc-support@icgc.org\nUpdateFrequency: New data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_oicr_icgc_meta_metadata/index.json", "https://registry.opendata.aws/icgc/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_oicr_icgc_meta_metadata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_oicr_icgc_meta_metadata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_oicr_icgc_meta_metadata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ooni_data/", "public", "File Names from the AWS S3 ooni-data Bucket: Open Observatory of Network Interference: S3 bucket with data", "This dataset has file information from the AWS S3 ooni-data bucket at https://ooni-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open Observatory of Network Interference\nName2: S3 bucket with data\nDescription: A free software, global observation network for detecting censorship, surveillance and traffic manipulation on the internet.\n\nDocumentation: https://ooni.torproject.org/about/\nContact: https://ooni.torproject.org/get-involved/\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ooni_data/index.json", "https://registry.opendata.aws/ooni/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ooni_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ooni_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ooni_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openaq_fetches/", "public", "File Names from the AWS S3 openaq-fetches Bucket: OpenAQ: Minutely CSVs of global air quality fetched from sources all over the world", "This dataset has file information from the AWS S3 openaq-fetches bucket at https://openaq-fetches.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenAQ\nName2: Minutely CSVs of global air quality fetched from sources all over the world\nDescription: Global, aggregated physical air quality data from public data sources provided by government, research-grade and other sources. These awesome groups do the hard work of measuring these data and publicly sharing them, and our community makes them more universally-accessible to both humans and machines.\n\nDocumentation: https://openaq.org\nContact: info@openaq.org\nManagedBy: [OpenAQ](https://openaq.org)\nUpdateFrequency: Minutely\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openaq_fetches/index.json", "https://registry.opendata.aws/openaq/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openaq_fetches.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openaq_fetches&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openaq_fetches"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_opencitymodel/", "public", "File Names from the AWS S3 opencitymodel Bucket: Open City Model (OCM): Project data files", "This dataset has file information from the AWS S3 opencitymodel bucket at https://opencitymodel.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open City Model (OCM)\nName2: Project data files\nDescription: Open City Model is an initiative to provide cityGML data for all the buildings in the United States. By using other open datasets in conjunction with our own code and algorithms it is our goal to provide 3D geometries for every US building.\n\nDocumentation: https://github.com/opencitymodel/opencitymodel\nContact: https://github.com/opencitymodel/opencitymodel#contact\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_opencitymodel/index.json", "https://registry.opendata.aws/opencitymodel/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_opencitymodel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_opencitymodel&showErrors=false&email=", "Amazon Web Services", "awsS3Files_opencitymodel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openneuro_org/", "public", "File Names from the AWS S3 openneuro.org Bucket: OpenNeuro: All datasets", "This dataset has file information from the AWS S3 openneuro.org bucket at https://openneuro.org.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenNeuro\nName2: All datasets\nDescription: OpenNeuro is a database of openly-available brain imaging data. The data are shared according to a Creative Commons CC0 license, providing a broad range of brain imaging data to researchers and citizen scientists alike. The database primarily focuses on functional magnetic resonance imaging (fMRI) data, but also includes other imaging modalities including structural and diffusion MRI, electroencephalography (EEG), and magnetoencephalograpy (MEG). OpenfMRI is a project of the [Center for Reproducible Neuroscience at Stanford University](http://reproducibility.stanford.edu). Development of the OpenNeuro resource has been funded by the National Science Foundation, National Institute of Mental Health, National Institute on Drug Abuse, and the Laura and John Arnold Foundation.\n\nDocumentation: http://openneuro.org\nContact: Support form at https://openneuro.org\nUpdateFrequency: New datasets deposited every 4-6 days\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openneuro_org/index.json", "https://registry.opendata.aws/openneuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openneuro_org.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openneuro_org&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openneuro_org"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osm_pds/", "public", "File Names from the AWS S3 osm-pds Bucket: OpenStreetMap on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 osm-pds bucket at https://osm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap on AWS\nName2: Imagery and metadata\nDescription: OSM is a free, editable map of the world, created and maintained by volunteers. Regular OSM data archives are made available in Amazon S3.\n\nDocumentation: https://docs.opendata.aws/osm-pds/readme.html\nContact: https://github.com/mojodna/osm-pds-pipelines/issues\nUpdateFrequency: Data is updated weekly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osm_pds/index.json", "https://registry.opendata.aws/osm/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osmlr/", "public", "File Names from the AWS S3 osmlr Bucket: OpenStreetMap Linear Referencing: Manifest and data files", "This dataset has file information from the AWS S3 osmlr bucket at https://osmlr.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap Linear Referencing\nName2: Manifest and data files\nDescription: OSMLR a linear referencing system built on top of OpenStreetMap. OSM has great information about roads around the world and their interconnections, but it lacks the means to give a stable identifier to a stretch of roadway. OSMLR provides a stable set of numerical IDs for every 1 kilometer stretch of roadway around the world. In urban areas, OSMLR IDs are attached to each block of roadways between significant intersections.\n\nDocumentation: https://github.com/opentraffic/osmlr/blob/master/docs/intro.md\nContact: https://github.com/opentraffic/osmlr/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osmlr/index.json", "https://registry.opendata.aws/osmlr/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osmlr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osmlr&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osmlr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_qiime2_data/", "public", "File Names from the AWS S3 qiime2-data Bucket: QIIME 2 User Tutorial Datasets: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs", "This dataset has file information from the AWS S3 qiime2-data bucket at https://qiime2-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: QIIME 2 User Tutorial Datasets\nName2: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs\nDescription: QIIME 2 is a powerful, extensible, and decentralized microbiome analysis package with a focus on data and analysis transparency. QIIME 2 enables researchers to start an analysis with raw DNA sequence data and finish with publication-quality figures and statistical results. This dataset contains the user docs (and related datasets) for QIIME 2.\n\nDocumentation: https://docs.qiime2.org\nContact: https://forum.qiime2.org\nManagedBy: The QIIME 2 Development Team\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_qiime2_data/index.json", "https://registry.opendata.aws/qiime2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_qiime2_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_qiime2_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_qiime2_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_safecast_opendata_public_us_east_1/", "public", "File Names from the AWS S3 safecast-opendata-public-us-east-1 Bucket: Safecast: Bulk exports of air and radiation measurements", "This dataset has file information from the AWS S3 safecast-opendata-public-us-east-1 bucket at https://safecast-opendata-public-us-east-1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Safecast\nName2: Bulk exports of air and radiation measurements\nDescription: An ongoing collection of radiation and air quality measurements taken by devices involved in the Safecast project.\n\nDocumentation: https://github.com/Safecast/safecastapi/wiki/Data-Sets\nContact: https://groups.google.com/forum/#!forum/safecast-devices\nManagedBy: [Safecast](https://safecast.org/)\nUpdateFrequency: Continuous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_safecast_opendata_public_us_east_1/index.json", "https://registry.opendata.aws/safecast/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_safecast_opendata_public_us_east_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_safecast_opendata_public_us_east_1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_safecast_opendata_public_us_east_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s1_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s1-l1c/: Sentinel-1: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s1-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C\nDescription: [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1) is a pair of European radar imaging (SAR) satellites launched in 2014 and 2016. Its 6 days revisit cycle and ability to observe through clouds makes it perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. GRD data is available globally since January 2017.\n\nDocumentation: https://roda.sentinel-hub.com/sentinel-s1-l1c/GRD/readme.html\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s1_l1c/index.json", "https://registry.opendata.aws/sentinel-1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s1_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s1_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s1_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l1c/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l1c/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l2a/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l2a/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l2a/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l2a/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l2a&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l2a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel1_slc_seasia_pds/", "public", "File Names from the AWS S3 sentinel1-slc-seasia-pds Bucket: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan", "This dataset has file information from the AWS S3 sentinel1-slc-seasia-pds bucket at https://sentinel1-slc-seasia-pds.s3.ap-southeast-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan\nName2: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan\nDescription: The S1 Single Look Complex (SLC) dataset contains Synthetic Aperture Radar (SAR) data in the C-Band wavelength. The SAR sensors are installed on a two-satellite (Sentinel-1A and Sentinel-1B) constellation orbiting the Earth with a combined revisit time of six days, operated by the European Space Agency. The S1 SLC data are a Level-1 product that collects radar amplitude and phase information in all-weather, day or night conditions, which is ideal for studying natural hazards and emergency response, land applications, oil spill monitoring, sea-ice conditions, and associated climate change effects.\n\nDocumentation: https://github.com/earthobservatory/sentinel1-opds/\nContact: https://github.com/earthobservatory/sentinel1-opds/\nManagedBy: [Earth Observatory of Singapore, Nanyang Technological University](https://earthobservatory.sg)\nUpdateFrequency: S1 SLC data for the region of interest will be updated regularly, as it becomes available on the Alaska Satellite Facility endpoint.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel1_slc_seasia_pds/index.json", "https://registry.opendata.aws/sentinel1-slc-seasia-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel1_slc_seasia_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel1_slc_seasia_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel1_slc_seasia_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_silo_open_data/", "public", "File Names from the AWS S3 silo-open-data Bucket: SILO climate data on AWS: SILO open data", "This dataset has file information from the AWS S3 silo-open-data bucket at https://silo-open-data.s3.ap-southeast-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SILO climate data on AWS\nName2: SILO open data\nDescription: [SILO](https://www.longpaddock.qld.gov.au/silo) is a database of Australian [climate data](https://www.longpaddock.qld.gov.au/silo/about/climate-variables) from 1889 to the present. It provides continuous, daily time-step [data products](https://www.longpaddock.qld.gov.au/silo/about/data-products) in ready-to-use [formats](https://www.longpaddock.qld.gov.au/silo/about/file-formats-and-samples) for research and operational applications. Gridded SILO data in annual NetCDF format are on AWS. Point data are available from the [SILO website](https://www.longpaddock.qld.gov.au/silo/).\n\nDocumentation: https://www.longpaddock.qld.gov.au/silo/gridded-data\nContact: https://www.longpaddock.qld.gov.au/silo/contact-us\nManagedBy: Queensland Government\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_silo_open_data/index.json", "https://registry.opendata.aws/silo/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_silo_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_silo_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_silo_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_softwareheritage/", "public", "File Names from the AWS S3 softwareheritage Bucket: Software Heritage Graph Dataset: Software Heritage Graph Dataset", "This dataset has file information from the AWS S3 softwareheritage bucket at https://softwareheritage.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Software Heritage Graph Dataset\nName2: Software Heritage Graph Dataset\nDescription: [Software Heritage](https://www.softwareheritage.org/) is the largest existing public archive of software source code and accompanying development history. The Software Heritage Graph Dataset is a fully deduplicated Merkle DAG representation of the Software Heritage archive.\n\nDocumentation: https://wiki.softwareheritage.org/wiki/Graph_Dataset_on_Amazon_Athena\nContact: swh-devel@inria.fr\nUpdateFrequency: Data is updated yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_softwareheritage/index.json", "https://registry.opendata.aws/software-heritage/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_softwareheritage.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_softwareheritage&showErrors=false&email=", "Amazon Web Services", "awsS3Files_softwareheritage"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_spacenet_dataset/", "public", "File Names from the AWS S3 spacenet-dataset Bucket: SpaceNet: Imagery and metadata in a S3 bucket", "This dataset has file information from the AWS S3 spacenet-dataset bucket at https://spacenet-dataset.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SpaceNet\nName2: Imagery and metadata in a S3 bucket\nDescription: SpaceNet, launched in August 2016 as an open innovation project offering a repository of freely available imagery with co-registered map features. Before SpaceNet, computer vision researchers had minimal options to obtain free, precision-labeled, and high-resolution satellite imagery. Today, SpaceNet hosts datasets developed by its own team, along with data sets from projects like IARPA\u2019s Functional Map of the World (fMoW).\n\nDocumentation: https://spacenetchallenge.github.io\nContact: https://github.com/SpaceNetChallenge/utilities/issues\nManagedBy: [SpaceNet](https://spacenet.ai/)\nUpdateFrequency: New imagery and features are added quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_spacenet_dataset/index.json", "https://registry.opendata.aws/spacenet/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_spacenet_dataset.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_spacenet_dataset&showErrors=false&email=", "Amazon Web Services", "awsS3Files_spacenet_dataset"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_unidata_nexrad_level2_chunks/", "public", "File Names from the AWS S3 unidata-nexrad-level2-chunks Bucket: NEXRAD on AWS: NEXRAD Level II real-time data", "This dataset has file information from the AWS S3 unidata-nexrad-level2-chunks bucket at https://unidata-nexrad-level2-chunks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II real-time data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_unidata_nexrad_level2_chunks/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_unidata_nexrad_level2_chunks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_unidata_nexrad_level2_chunks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_unidata_nexrad_level2_chunks"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_usgs_lidar_public/", "public", "File Names from the AWS S3 usgs-lidar-public Bucket: USGS 3DEP LiDAR Point Clouds: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.", "This dataset has file information from the AWS S3 usgs-lidar-public bucket at https://usgs-lidar-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: USGS 3DEP LiDAR Point Clouds\nName2: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.\nDescription: The goal of the [USGS 3D Elevation Program ](https://www.usgs.gov/core-science-systems/ngp/3dep) (3DEP) is to collect elevation data in the form of light detection and ranging (LiDAR) data over the conterminous United States, Hawaii, and the U.S. territories, with data acquired over an 8-year period. This dataset provides two realizations of the 3DEP point cloud data. The first resource is a public access organization provided in [Entwine Point Tiles](https://entwine.io/entwine-point-tile.html) format, which a lossless, full-density, streamable octree based on [LASzip](https://laszip.org) (LAZ) encoding. The second resource is a [Requester Pays](https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html) of the same data in LAZ (Compressed LAS) format. Resource names in both buckets correspond to the USGS project names.\n\nDocumentation: https://github.com/hobu/usgs-lidar/\nContact: https://github.com/hobu/usgs-lidar\nManagedBy: [Hobu, Inc.](https://hobu.co)\nUpdateFrequency: Periodically\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_usgs_lidar_public/index.json", "https://registry.opendata.aws/usgs-lidar/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_usgs_lidar_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_usgs_lidar_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_usgs_lidar_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_web_language_models/", "public", "File Names from the AWS S3 web-language-models Bucket: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl): Parallel Corpora to/from English for all official EU languages", "This dataset has file information from the AWS S3 web-language-models bucket at https://web-language-models.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl)\nName2: Parallel Corpora to/from English for all official EU languages\nDescription: ParaCrawl is a set of large parallel corpora to/from English for all official EU languages by a broad web crawling effort. State-of-the-art methods are applied for the entire processing chain from identifying web sites with translated text all the way to collecting, cleaning and delivering parallel corpora that are ready as training data for CEF.AT and translation memories for DG Translation.\n\nDocumentation: https://paracrawl.eu/releases.html\nContact: For questions regarding the datasets contact Kenneth Heafield, email kheafiel@inf.ed.ac.uk. For reporting any issues about bitextor pipeline visit https://github.com/bitextor/bitextor/issues.\nManagedBy: [ParaCrawl](https://paracrawl.eu)\nUpdateFrequency: New data is added according to ParaCrawl release schedule.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_web_language_models/index.json", "https://registry.opendata.aws/paracrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_web_language_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_web_language_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_web_language_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_xiph_media/", "public", "File Names from the AWS S3 xiph-media Bucket: Xiph.Org Test Media: Video and imagery data", "This dataset has file information from the AWS S3 xiph-media bucket at https://xiph-media.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Xiph.Org Test Media\nName2: Video and imagery data\nDescription: Uncompressed video used for video compression and video processing research.\n\nDocumentation: https://media.xiph.org/aws.html\nContact: Thomas Daede tdaede@xiph.org\nUpdateFrequency: New videos are added when contributors submit them.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_xiph_media/index.json", "https://registry.opendata.aws/xiph-media/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_xiph_media.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_xiph_media&showErrors=false&email=", "Amazon Web Services", "awsS3Files_xiph_media"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ycb_benchmarks/", "public", "File Names from the AWS S3 ycb-benchmarks Bucket: Yale-CMU-Berkeley (YCB) Object and Model Set: Project data files", "This dataset has file information from the AWS S3 ycb-benchmarks bucket at https://ycb-benchmarks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Yale-CMU-Berkeley (YCB) Object and Model Set\nName2: Project data files\nDescription: This project primarily aims to facilitate performance benchmarking in robotics research. The dataset provides mesh models, RGB, RGB-D and point cloud images of over 80 objects. The physical objects are also available via the [YCB benchmarking project](http://www.ycbbenchmarks.com/). The data are collected by two state of the art systems: UC Berkley's scanning rig and the Google scanner. The UC Berkley's scanning rig data provide meshes generated with Poisson reconstruction, meshes generated with volumetric range image integration, textured versions of both meshes, Kinbody files for using the meshes with OpenRAVE, 600 High-resolution RGB images, 600 RGB-D images, and 600 point cloud images for each object. The Google scanner data provides 3 meshes with different resolutions (16k, 64k, and 512k polygons), textured versions of each mesh, Kinbody files for using the meshes with OpenRAVE.\n\nDocumentation: http://www.ycbbenchmarks.com/\nContact: bcalli@wpi.edu\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ycb_benchmarks/index.json", "https://registry.opendata.aws/ycb-benchmarks/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ycb_benchmarks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ycb_benchmarks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ycb_benchmarks"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the June 2020 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.graph", "", "", "public", "GLOBEC NEP Vertical Plankton Tow (VPT) Data, 1997-2001", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nCalifornia Current Program\nVertical Plankton Tow (VPT) Data\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10181&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/vpt%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/vpt.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ncast_no (Cast Number Within the Cruise)\nstation_id\nabund_m3 (Abundance, count m-3)\ncomments\ncounter_id\nd_n_flag (Day/Night Flag)\ngear_area (Mouth Area of Net, m2)\ngear_mesh (Net's Mesh Size, mm)\ngear_type\ngenus_species\nlife_stage\nlocal_code\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecVpt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecVpt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecVpt/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecVpt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecVpt&showErrors=false&email=", "GLOBEC", "erdGlobecVpt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://usgodae.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, the EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\nBeach Monitoring Quality Assurance Project Plan (CWBMONQAPP002):\nhttps://www.pacioos.hawaii.edu/wp-content/uploads/2016/08/Beach_Monitoring_QAPP_CWBMONQAPP002_120507.pdf\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwb_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwb_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwb_water_quality/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/cwb_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwb_water_quality&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "cwb_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.graph", "", "", "public", "HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii", "The Hawaii Institute of Marine Biology (HIMB) automatic weather station (AWS) records hourly measurements of precipitation, air temperature, wind speed and direction, and irradiance. Sensors include an Eppley 295-385 nm ultraviolet (UV) radiometer, a LiCor 200SZ Pyranometer, and a LiCor Quantameter (400-700 nm). The sensors are located on the roof of HIMB's Coral Reef Ecology Laboratory (Point Lab) on Moku o Loe (Coconut Island) in Kaneohe Bay on the windward (eastern) coast of Oahu in Hawaii. An accompanying sea water temperature sensor is located less than 10 m offshore of the weather station at a shallow depth of approximately 1 m.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HIMB: HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nsea_water_temperature (water temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nwind_from_direction_std (standard deviation of wind direction (processed), degrees)\nrainfall_amount (total rainfall (processed), mm)\nshortwave_radiation (downwelling shortwave radiation (processed), W/m2)\nultraviolet_radiation (ultraviolet radiation (processed), W/m2)\nphotosynthetic_radiation (photosynthetically active radiation (processed), umol m-2 s-1)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_atn (QARTOD Attenuated Signal Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (139 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HIMB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HIMB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HIMB/index.json", "https://www.pacioos.hawaii.edu/weather/obs-mokuoloe/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HIMB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HIMB&showErrors=false&email=", "Hawaii Institute of Marine Biology (HIMB)", "AWS-HIMB"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.graph", "", "", "public", "Hui O Ka Wai Ola Water Quality Data", "The goal of the Hui O Ka Wai Ola (Association Of The Living Waters) citizen-science based water quality program is to increase the capacity for monitoring water quality in Maui coastal waters by generating reliable data to assess long-term water-quality conditions and detect temporal trends. These data augment the data produced by the Hawaii Department of Health (DOH) Clean Water Branch (CWB) beach monitoring program on Maui.\n \nData are collected and analyzed every two or three weeks for physical and chemical parameters, including ocean salinity, pH, temperature, organic nutrients (nitrogen and phosphorous compounds), dissolved oxygen (DO), and total suspended sediment (TSS). Some water samples are immediately tested at mobile labs while others are processed for testing at University of Hawaii and/or other labs.\n \nUsers of these data should cite the following publication:\n \nFalinski, Kim, Dana Reed, Tova Callender, Emily Fielding, Robin Newbold, and Alana Yurkanin. (2018). Hui O Ka Wai Ola Water Quality Data [Data set]. Zenodo. \"http://doi.org/10.5281/zenodo.1173717\"\n \nFor further information, please visit:\nhttps://www.huiokawaiola.com\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nlocation_id (sampling site identifier)\nlocation_name\nsample_id (sample identifier)\nsession_id (sampling session identifier)\nwater_temperature (Celsius)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hui_water_quality/index.json", "https://www.huiokawaiola.com", "http://upwell.pfeg.noaa.gov/erddap/rss/hui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hui_water_quality&showErrors=false&email=", "Hui O Ka Wai Ola", "hui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitored water quality at several beaches across the island of Maui in the State of Hawaii during the years 2010-2016. This community-based monitoring effort provided valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites were also monitored for harmful bacteria levels of Enterococcus through 2014-06-26. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours.\n\nData were managed through an online repository, the Coral Reef Monitoring Data Portal (now defunct), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection was coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/maui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/maui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/maui_water_quality/index.json", "https://coral.org/maui/", "http://upwell.pfeg.noaa.gov/erddap/rss/maui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=maui_water_quality&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "maui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys. See\nhttps://www.ndbc.noaa.gov/measdes.shtml for a description of the measurements.\n\nThe source data from NOAA NDBC has different column names, different units,\nand different missing values in different files, and other problems\n(notably, lots of rows with duplicate or different values for the same time\npoint). This dataset is a standardized, reformatted, and lightly edited\nversion of that source data, created by NOAA NMFS SWFSC ERD (email:\nerd.data at noaa.gov). Before 2020-01-29, this dataset only had the data\nthat was closest to a given hour, rounded to the nearest hour. Now, this\ndataset has all of the data available from NDBC with the original time\nvalues. If there are multiple source rows for a given buoy for a given\ntime, only the row with the most non-NaN data values is kept. If there is\na gap in the data, a row of missing values is inserted (which causes a nice\ngap when the data is graphed). Also, some impossible data values are\nremoved, but this data is not perfectly clean. This dataset is now updated\nevery 5 minutes.\n\nThis dataset has both historical data (quality controlled, before\n2020-06-01T00:00:00Z) and near real time data (less quality controlled,\nwhich may change at any time, from 2020-06-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Identifier)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.graph", "", "", "public", "NEFSC Continuous Plankton Recorder", "A summary for the data\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ncruise\nsample\nlatitude (degrees_north)\nlongitude (degrees_east)\nphyto_color_indx (Phytoplankton Color Index)\nmarmap_tax_code (Marmap Taxonomic Code)\nmarmap_stage_code\nabundance (per 100 cubic meters)\nlife_stage\ntaxonomic_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/wocecpr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/wocecpr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/wocecpr/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "http://upwell.pfeg.noaa.gov/erddap/rss/wocecpr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=wocecpr&showErrors=false&email=", "NEFSC", "wocecpr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "", "public", "North Pacific High, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.graph", "", "", "public", "OSMC Argo Profile data", "OSMC Argo Profile data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\norganization_name\ncountry_name\nplatform_type_name\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nparameter_name\ndaily_obs_count\nobservation_depth\nobservation_value\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_PROFILERS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_PROFILERS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_PROFILERS/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_PROFILERS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_PROFILERS&showErrors=false&email=", "OSMC", "OSMC_PROFILERS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.graph", "", "", "public", "OSMC normalized observations from GTS", "OSMC normalized In-situ Real time GTS data\n\ncdm_data_type = Point\nVARIABLES:\nPLATFORM_CODE (Station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform\nparameter\nOBSERVATION_VALUE\nOBSERVATION_DEPTH\nCOUNTRY_NAME\norganization_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_Points_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_Points_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_Points/index.json", "https://www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_Points.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_Points&showErrors=false&email=", "OSMC", "OSMC_Points"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001.graph", "", "", "public", "PacIOOS Beach Camera 001: Waikiki, Oahu, Hawaii", "A digital camera on top of the Sheraton Waikiki hotel was used to photograph the shoreline of Waikiki beach along the South Shore of the island of Oahu in the State of Hawaii. The oblique camera view presented here captures the shoreline leading southeast towards Diamond Head crater. It operated for over 4.5 years between February 5, 2009 and October 13, 2013. Capturing hourly snapshots at a set vantage point during the local daytime hours of 6:00 AM or 7:00 AM to 5:00 PM, these images are useful for tracking beach dynamics such as wave run-up, sand movement, and turbidity plumes over time. The camera was mounted on top of a 3 meter wall extending above the roof surface for a total height of 93 meters above ground level or 96 meters above mean sea level. See also BEACHCAM-002 for an alternate camera view from the same location pointing directly downwards.\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (m)\naboveGround (Height, m)\nurl\nname (File Name)\nsize (bytes)\nfileType (File Type)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/BEACHCAM-001_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/BEACHCAM-001_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/BEACHCAM-001/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/BEACHCAM-001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=BEACHCAM-001&showErrors=false&email=", "University of Hawaii", "BEACHCAM-001"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_4"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_2/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_2&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_6/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_6&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_7/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_7&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_7"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_8/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_8&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_9/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_9&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.graph", "", "", "public", "PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-04 is located in Hilo Bay on the east side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-04: PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-04/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-hilo/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-04&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-04"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.graph", "", "", "public", "PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-05 is located in Pelekane Bay near Kawaihae Harbor on the west side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-05: PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-05/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-pelekane/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-05&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-05"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.graph", "", "", "public", "PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii", "The Pacific Islands Ocean Observing System (PacIOOS) operates a Davis Instruments automatic weather station (AWS) near the entrance to Honolulu Harbor on the leeward (western) coast of Oahu in Hawaii to aid with navigation. The station records measurements every 5 minutes of air temperature, wind speed and direction, precipitation, relative humidity, and air pressure. Sensors are located at Pier 1, installed on a tower at an elevation of 64 feet (19.5 meters) above sea level. The station is owned by the Hawaii Pilots Association (HPA). PacIOOS maintains the station and provides data access.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HNLPier1: PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nrainfall_rate (rain rate (processed), mm/h)\nrelative_humidity (relative humidity (processed), %)\nair_pressure (air pressure (processed), millibars)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_gap (QARTOD Gap Test (processed), 0)\nair_temperature_qc_syn (QARTOD Syntax Test (processed), 0)\nair_temperature_qc_loc (QARTOD Location Test (processed), 0)\nair_temperature_qc_rng (QARTOD Gross Range Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_spk (QARTOD Spike Test (processed), 0)\n... (92 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HNLPier1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HNLPier1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HNLPier1/index.json", "https://www.pacioos.hawaii.edu/weather/obs-honolulu/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HNLPier1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HNLPier1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "AWS-HNLPier1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "https://tidesandcurrents.noaa.gov/gomoos.html", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/main.aspx?Division=PRD&ParentMenuId=147&id=1221", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2017, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2017, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2017, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"] + ] + } + } + recorded_at: 2020-07-15 22:20:44 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/griddap/erdQMekm14day.nc?mod_current[(2015-12-28):1:(2016-01-01)][(0.0):1:(0.0)][(23):1:(24)][(88):1:(90)],u_current[(2015-12-28):1:(2016-01-01)][(0.0):1:(0.0)][(23):1:(24)][(88):1:(90)],v_current[(2015-12-28):1:(2016-01-01)][(0.0):1:(0.0)][(23):1:(24)][(88):1:(90)] + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:20:44 GMT + x-frame-options: SAMEORIGIN + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:20:44 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=erdQMekm14day_3a6f_f1d0_a65b.nc + content-encoding: gzip + content-type: application/x-netcdf + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: yes + string: ../fixtures/188571c95282bcb224bb987dd83d22b7.nc + recorded_at: 2020-07-15 22:20:44 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 diff --git a/tests/vcr_cassettes/info.yml b/tests/vcr_cassettes/info.yml new file mode 100644 index 0000000..7417c0d --- /dev/null +++ b/tests/vcr_cassettes/info.yml @@ -0,0 +1,3774 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/info/erdRWtanm1day/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.8.1.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Fri, 19 Jul 2019 19:13:44 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=erdRWtanm1day_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "acknowledgement", "String", "NOAA NESDIS COASTWATCH, NOAA SWFSC ERD"], + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "Grid"], + ["attribute", "NC_GLOBAL", "composite", "String", "true"], + ["attribute", "NC_GLOBAL", "contributor_name", "String", "NOAA NESDIS Coral Reef Watch"], + ["attribute", "NC_GLOBAL", "contributor_role", "String", "Source of level 2 data."], + ["attribute", "NC_GLOBAL", "Conventions", "String", "COARDS, CF-1.6, ACDD-1.3"], + ["attribute", "NC_GLOBAL", "creator_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "creator_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "date_created", "String", "2011-03-06"], + ["attribute", "NC_GLOBAL", "date_issued", "String", "2011-03-06"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "359.75"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "85.25"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "-80.25"], + ["attribute", "NC_GLOBAL", "geospatial_lat_resolution", "double", "0.5"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "359.75"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "0.25"], + ["attribute", "NC_GLOBAL", "geospatial_lon_resolution", "double", "0.5"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_max", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_min", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_positive", "String", "up"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_units", "String", "m"], + ["attribute", "NC_GLOBAL", "history", "String", "NOAA NESDIS Coral Reef Watch\n2011-03-06T19:01:46Z NOAA CoastWatch (West Coast Node) and NOAA SFSC ERD"], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "http://coralreefwatch.noaa.gov/satellite/index.html"], + ["attribute", "NC_GLOBAL", "institution", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "keywords", "String", "anomaly, coastwatch, composite, coral, day, Earth Science > Land Surface > Land Temperature > Land Surface Temperature, Earth Science > Oceans > Ocean Temperature > Sea Surface Temperature, land, noaa, ocean, oceans, reef, sea, sst, surface, surface_temperature_anomaly, temperature, watch, wcn"], + ["attribute", "NC_GLOBAL", "keywords_vocabulary", "String", "GCMD Science Keywords"], + ["attribute", "NC_GLOBAL", "license", "String", "The data may be used and redistributed for free but is not intended\nfor legal use, since it may contain inaccuracies. Neither the data\nContributor, ERD, NOAA, nor the United States Government, nor any\nof their employees or contractors, makes any warranty, express or\nimplied, including warranties of merchantability and fitness for a\nparticular purpose, or assumes any legal liability for the accuracy,\ncompleteness, or usefulness, of this information."], + ["attribute", "NC_GLOBAL", "naming_authority", "String", "gov.noaa.pfeg.coastwatch"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "85.25"], + ["attribute", "NC_GLOBAL", "origin", "String", "NOAA NESDIS Coral Reef Watch"], + ["attribute", "NC_GLOBAL", "processing_level", "String", "3"], + ["attribute", "NC_GLOBAL", "project", "String", "CoastWatch (https://coastwatch.noaa.gov/)"], + ["attribute", "NC_GLOBAL", "projection", "String", "geographic"], + ["attribute", "NC_GLOBAL", "projection_type", "String", "mapped"], + ["attribute", "NC_GLOBAL", "publisher_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "publisher_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "publisher_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "publisher_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "references", "String", "Coral Reef Watch: http://coralreefwatch.noaa.gov/"], + ["attribute", "NC_GLOBAL", "satellite", "String", "POES"], + ["attribute", "NC_GLOBAL", "sensor", "String", "AVHRR"], + ["attribute", "NC_GLOBAL", "source", "String", "satellite observation: POES, AVHRR"], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "https://oceanwatch.pfeg.noaa.gov/thredds/dodsC/satellite/RW/tanm/1day"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "-80.25"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v55"], + ["attribute", "NC_GLOBAL", "summary", "String", "NOAA Coral Reef Watch distributes SST anomaly data using a combination of the POES AVHRR Global Area Coverage data, and data from a climatological database. AVHRR SST is compared with the climatological SST for the region and time period specified."], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2011-03-03T12:00:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "2000-12-02T12:00:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "Coral Reef Watch, Temperature Anomaly, 50 km, 2000-2011 (1 Day Composite)"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "0.25"], + ["dimension", "time", "", "double", "nValues=1065, evenlySpaced=false, averageSpacing=3 days 12h 25m 43s"], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "9.757584E8, 1.2991536E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "fraction_digits", "int", "0"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Centered Time"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["dimension", "altitude", "", "double", "nValues=1, onlyValue=0.0"], + ["attribute", "altitude", "_CoordinateAxisType", "String", "Height"], + ["attribute", "altitude", "_CoordinateZisPositive", "String", "up"], + ["attribute", "altitude", "actual_range", "double", "0.0, 0.0"], + ["attribute", "altitude", "axis", "String", "Z"], + ["attribute", "altitude", "fraction_digits", "int", "0"], + ["attribute", "altitude", "ioos_category", "String", "Location"], + ["attribute", "altitude", "long_name", "String", "Altitude"], + ["attribute", "altitude", "positive", "String", "up"], + ["attribute", "altitude", "standard_name", "String", "altitude"], + ["attribute", "altitude", "units", "String", "m"], + ["dimension", "latitude", "", "double", "nValues=332, evenlySpaced=true, averageSpacing=0.5"], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "double", "-80.25, 85.25"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "coordsys", "String", "geographic"], + ["attribute", "latitude", "fraction_digits", "int", "1"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "point_spacing", "String", "even"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["dimension", "longitude", "", "double", "nValues=720, evenlySpaced=true, averageSpacing=0.5"], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "double", "0.25, 359.75"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "coordsys", "String", "geographic"], + ["attribute", "longitude", "fraction_digits", "int", "1"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "point_spacing", "String", "even"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "sstAnomaly", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "sstAnomaly", "_FillValue", "float", "-9999999.0"], + ["attribute", "sstAnomaly", "colorBarMaximum", "double", "3.0"], + ["attribute", "sstAnomaly", "colorBarMinimum", "double", "-3.0"], + ["attribute", "sstAnomaly", "coordsys", "String", "geographic"], + ["attribute", "sstAnomaly", "fraction_digits", "int", "1"], + ["attribute", "sstAnomaly", "ioos_category", "String", "Temperature"], + ["attribute", "sstAnomaly", "long_name", "String", "SST Anomaly"], + ["attribute", "sstAnomaly", "missing_value", "float", "-9999999.0"], + ["attribute", "sstAnomaly", "units", "String", "degree_C"] + ] + } + } + recorded_at: 2019-07-19 19:13:11 GMT + recorded_with: vcr/0.2.6, webmockr/0.3.4 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.8.1.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Fri, 19 Jul 2019 19:13:45 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Fri, 19 Jul 2019 19:13:45 GMT + xdods-server: dods/3.7 + erddap-server: '2.01' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://upwell.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_01af_e372_5bb6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_01af_e372_5bb6.graph", "", "", "public", "AIS Ship Traffic: Hawaii: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_01af_e372_5bb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_01af_e372_5bb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_01af_e372_5bb6/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_01af_e372_5bb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_01af_e372_5bb6&showErrors=false&email=", "University of Hawaii", "hawaii_soest_01af_e372_5bb6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f70b_c777_2d0b", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f70b_c777_2d0b.graph", "", "", "public", "AIS Ship Traffic: Johnston Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f70b_c777_2d0b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f70b_c777_2d0b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f70b_c777_2d0b/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f70b_c777_2d0b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f70b_c777_2d0b&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f70b_c777_2d0b"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_be9a_9be0_1f0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_be9a_9be0_1f0a.graph", "", "", "public", "AIS Ship Traffic: Mariana and Wake: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_be9a_9be0_1f0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_be9a_9be0_1f0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_be9a_9be0_1f0a/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_be9a_9be0_1f0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_be9a_9be0_1f0a&showErrors=false&email=", "University of Hawaii", "hawaii_soest_be9a_9be0_1f0a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5742_4f35_ff55", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5742_4f35_ff55.graph", "", "", "public", "AIS Ship Traffic: Rose Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5742_4f35_ff55_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5742_4f35_ff55_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5742_4f35_ff55/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5742_4f35_ff55.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5742_4f35_ff55&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5742_4f35_ff55"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_490d_1198_15c1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_490d_1198_15c1.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_490d_1198_15c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_490d_1198_15c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_490d_1198_15c1/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_490d_1198_15c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_490d_1198_15c1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_490d_1198_15c1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0956_e939_cefc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0956_e939_cefc.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Velocity", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean current velocity at the ACO from a 250 kHz SonTek acoustic doppler current profiler (ADCP) at 1.83 m above the ocean bottom. Velocities are flagged bad if the amplitude is excessively low or high. An amplitude is high if it exceeds the average of the ping before and the ping after by 20 counts. An amplitude is low if less than 6 counts. After this the velocities are flagged bad if the absolute deviation of the vertical velocity from its ensemble median exceeds 0.15 m/s or if its value is less than -0.25 m/s.\n\ncdm_data_type = Profile\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each location, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\neastward_sea_water_velocity (current east component, meters/second)\nnorthward_sea_water_velocity (current north component, meters/second)\nupward_sea_water_velocity (current upward component, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_0956_e939_cefc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_0956_e939_cefc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_0956_e939_cefc/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_0956_e939_cefc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_0956_e939_cefc&showErrors=false&email=", "University of Hawaii", "hawaii_soest_0956_e939_cefc"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d1bf_1535_741f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d1bf_1535_741f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d1bf_1535_741f.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Bottom Pressure Recorder (BPR)", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean pressure at the ACO from a Bottom Pressure Recorder (BPR).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\npressure (sea water pressure, psi)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d1bf_1535_741f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d1bf_1535_741f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d1bf_1535_741f/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d1bf_1535_741f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d1bf_1535_741f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d1bf_1535_741f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc9b_209f_ea2f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc9b_209f_ea2f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc9b_209f_ea2f.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Hydrophone Acoustics", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographi\nc observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides sound files of ocean acoustics at the ocean floor from the ACO hydrophone.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nelapsedTime (Elapsed Time, seconds)\nchannel_1\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_cc9b_209f_ea2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_cc9b_209f_ea2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_cc9b_209f_ea2f/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_cc9b_209f_ea2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_cc9b_209f_ea2f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_cc9b_209f_ea2f"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/database-tables-description", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/database-tables-description", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/cast-table-column-descriptions", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://upwell.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the May 2019 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://www.usgodae.org/cgi-bin/datalist.pl?summary=Go&dset=fnmoc_obs_sfcobs", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1995.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1995", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1995.graph", "", "", "public", "Hake Survey ADCP (1995)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp1995_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp1995_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp1995/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/1995%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp1995.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp1995&showErrors=false&email=", "OSU", "nwioosAdcp1995"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1998.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1998", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1998.graph", "", "", "public", "Hake Survey ADCP (1998)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp1998_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp1998_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp1998/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/1998%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp1998.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp1998&showErrors=false&email=", "OSU", "nwioosAdcp1998"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2001.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2001", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2001.graph", "", "", "public", "Hake Survey ADCP (2001)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (Altitude, m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp2001_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp2001_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp2001/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/2001%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp2001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp2001&showErrors=false&email=", "OSU", "nwioosAdcp2001"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2003.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2003", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2003.graph", "", "", "public", "Hake Survey ADCP (2003)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp2003_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp2003_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp2003/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/2003%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp2003.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp2003&showErrors=false&email=", "OSU", "nwioosAdcp2003"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2005.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2005", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2005.graph", "", "", "public", "Hake Survey ADCP (2005)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp2005_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp2005_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp2005/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/2005%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp2005.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp2005&showErrors=false&email=", "OSU", "nwioosAdcp2005"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e5b4_d905_99ef", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e5b4_d905_99ef.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e5b4_d905_99ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e5b4_d905_99ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e5b4_d905_99ef/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e5b4_d905_99ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e5b4_d905_99ef&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "hawaii_soest_e5b4_d905_99ef"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_190f_1fe8_4cc4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_190f_1fe8_4cc4.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitors water quality at several beaches across the island of Maui in the State of Hawaii. This community-based monitoring effort provides valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites are also monitored for harmful bacteria levels of Enterococcus. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. \n\nData are managed through an online repository, the Coral Reef Monitoring Data Portal (http://monitoring.coral.org), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection is coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\n... (10 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_190f_1fe8_4cc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_190f_1fe8_4cc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_190f_1fe8_4cc4/index.json", "http://monitoring.coral.org", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_190f_1fe8_4cc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_190f_1fe8_4cc4&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "hawaii_soest_190f_1fe8_4cc4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys.\n\nThe data is from NOAA NDBC. It has been reformatted by NOAA Coastwatch,\nWest Coast Node. This dataset only has the data that is closest to a\ngiven hour. The time values in the dataset are rounded to the nearest hour.\n\nThis dataset has both historical data (quality controlled, before\n2019-06-01T00:00:00Z) and near real time data (less quality controlled, from\n2019-06-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Name)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nwd (Wind Direction, degrees_true)\nwspd (Wind Speed, m s-1)\ngst (Wind Gust Speed, m s-1)\nwvht (Wave Height, m)\ndpd (Wave Period, Dominant, s)\napd (Wave Period, Average, s)\nmwd (Wave Direction, degrees_true)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.graph", "", "", "public", "NEFSC Continuous Plankton Recorder", "A summary for the data\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ncruise\nsample\nlatitude (degrees_north)\nlongitude (degrees_east)\nphyto_color_indx (Phytoplankton Color Index)\nmarmap_tax_code (Marmap Taxonomic Code)\nmarmap_stage_code\nabundance (per 100 cubic meters)\nlife_stage\ntaxonomic_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/wocecpr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/wocecpr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/wocecpr/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "http://upwell.pfeg.noaa.gov/erddap/rss/wocecpr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=wocecpr&showErrors=false&email=", "NEFSC", "wocecpr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp.graph", "", "", "public", "NOAA NDBC SOS, 2006-present, sea_water_temperature", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_water_temperature data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWTemp/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWTemp&showErrors=false&email=", "NOAA NDBC", "ndbcSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind.graph", "", "", "public", "NOAA NDBC SOS, 2006-present, winds", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have winds data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwind_from_direction (degrees_true)\nwind_speed (m s-1)\nwind_speed_of_gust (m s-1)\nupward_air_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWind_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWind_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWind/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWind.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWind&showErrors=false&email=", "NOAA NDBC", "ndbcSosWind"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents.graph", "", "", "public", "NOAA NDBC SOS, 2007-present, currents", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have currents data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\nWARNING: Always check the quality_flags before using this data. A simple criterion is: only use a row of data if the first quality_flags value for the row (overall bin status) is 3 (good data/passed quality test). You can do this by appending &quality_flags=~\"3;.*\" to your request.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nbin (count)\ndirection_of_sea_water_velocity (degrees_true)\nsea_water_speed (cm/s)\nupward_sea_water_velocity (cm/s)\nerror_velocity (cm/s)\nplatform_orientation (degrees_true)\nplatform_pitch_angle (degree)\nplatform_roll_angle (degree)\nsea_water_temperature (Cel)\npct_good_3_beam (Percent Good 3 Beam, percent)\npct_good_4_beam (Percent Good 4 Beam, percent)\npct_rejected (Percent Rejected, percent)\npct_bad (Percent Bad, percent)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosCurrents_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosCurrents_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosCurrents/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosCurrents.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosCurrents&showErrors=false&email=", "NOAA NDBC", "ndbcSosCurrents"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity.graph", "", "", "public", "NOAA NDBC SOS, 2007-present, sea_water_practical_salinity", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_water_practical_salinity data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosSalinity/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosSalinity&showErrors=false&email=", "NOAA NDBC", "ndbcSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel.graph", "", "", "public", "NOAA NDBC SOS, 2008-present, sea_floor_depth_below_sea_surface", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_floor_depth_below_sea_surface data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\naveraging_interval (s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWLevel/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWLevel&showErrors=false&email=", "NOAA NDBC", "ndbcSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "", "public", "North Pacific High, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_43a8_6d6d_9052.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_43a8_6d6d_9052", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_43a8_6d6d_9052.graph", "", "", "public", "Northwestern Hawaiian Islands, Coral Reef Monitoring, Fish Surveys, Belt Transects (BLT)", "Papahanaumokuakea Marine National Monument (PMNM) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_43a8_6d6d_9052_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_43a8_6d6d_9052_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_43a8_6d6d_9052/index.json", "http://www.papahanaumokuakea.gov/research/welcome.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_43a8_6d6d_9052.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_43a8_6d6d_9052&showErrors=false&email=", "USDOC/NOAA/NOS/PMNM", "hawaii_soest_43a8_6d6d_9052"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_68f2_d17d_d413.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_68f2_d17d_d413", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_68f2_d17d_d413.graph", "", "", "public", "Northwestern Hawaiian Islands, Coral Reef Monitoring, Fish Surveys, Belt Transects (vBLT)", "Papahanaumokuakea Marine National Monument (PMNM) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_68f2_d17d_d413_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_68f2_d17d_d413_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_68f2_d17d_d413/index.json", "http://www.papahanaumokuakea.gov/research/welcome.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_68f2_d17d_d413.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_68f2_d17d_d413&showErrors=false&email=", "USDOC/NOAA/NOS/PMNM", "hawaii_soest_68f2_d17d_d413"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_ec1c_1aa4_ddaf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_ec1c_1aa4_ddaf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_ec1c_1aa4_ddaf.graph", "", "", "public", "Northwestern Hawaiian Islands, Coral Reef Monitoring, Fish Surveys, Stationary Point Counts (nSPC)", "Papahanaumokuakea Marine National Monument (PMNM) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_ec1c_1aa4_ddaf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_ec1c_1aa4_ddaf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_ec1c_1aa4_ddaf/index.json", "http://www.papahanaumokuakea.gov/research/welcome.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_ec1c_1aa4_ddaf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_ec1c_1aa4_ddaf&showErrors=false&email=", "USDOC/NOAA/NOS/PMNM", "hawaii_soest_ec1c_1aa4_ddaf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosCoral.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosCoral", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosCoral.graph", "", "", "public", "NWFSC Coral Data Collected off West Coast of US (1980-2005)", "This data contains the locations of some observations of\ncold-water/deep-sea corals off the west coast of the United States.\nRecords of coral catch originate from bottom trawl surveys conducted\nfrom 1980 to 2001 by the Alaska Fisheries Science Center (AFSC) and\n2001 to 2005 by the Northwest Fisheries Science Center (NWFSC).\nLocational information represent the vessel mid positions (for AFSC\nsurvey trawls) or \"best position\" (i.e., priority order: 1) gear\nmidpoint 2) vessel midpoint, 3) vessel start point, 4) vessel end\npoint, 5) station coordinates for NWFSC survey trawls) conducted as\npart of regular surveys of groundfish off the coasts of Washington,\nOregon and California by NOAA Fisheries. Only records where corals\nwere identified in the total catch are included. Each catch sample\nof coral was identified down to the most specific taxonomic level\npossible by the biologists onboard, therefore identification was\ndependent on their expertise. When positive identification was not\npossible, samples were sometimes archived for future identification\nby systematist experts. Data were compiled by the NWFSC, Fishery\nResource Analysis & Monitoring Division\n\nPurpose - Examination of the spatial and temporal distributions of\nobservations of cold-water/deep-sea corals off the west coast of the\nUnited States, including waters off the states of Washington, Oregon,\nand California. It is important to note that these records represent\nonly presence of corals in the area swept by the trawl gear. Since\nbottom trawls used during these surveys are not designed to sample\nepibenthic invertebrates, absence of corals in the catch does not\nnecessary mean they do not occupy the area swept by the trawl gear.\n\nData Credits - NOAA Fisheries, Alaska Fisheries Science Center,\nResource Assessment & Conservation Engineering Division (RACE) NOAA\nFisheries, Northwest Fisheries Science Center, Fishery Resource\nAnalysis & Monitoring Division (FRAM)\n\nContact: Curt Whitmire, NOAA NWFSC, Curt.Whitmire@noaa.gov\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosCoral_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosCoral_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosCoral/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Coral%201980-2005.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosCoral.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosCoral&showErrors=false&email=", "NOAA NWFSC", "nwioosCoral"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosGroundfish.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosGroundfish", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosGroundfish.graph", "", "", "public", "NWFSC Groundfish Data for U.S. West Coast (2003-2005)", "The data available for downloading is summarized data from the 2003-2005\nU.S. West Coast Bottom Trawl Survey (WCGTS) of Groundfish Resources off\nWashington, Oregon and California.\n\nThe Northwest Fisheries Science Center's Fishery Resource Analysis and\nMonitoring Division (FRAM) completed the sixth in an annual series of\ngroundfish bottom trawl surveys in 2003. The survey was conducted June\n24 to October 23, 2003 and targeted the commercial groundfish resources\ninhabiting depths of 55 to 1,280 meters [m], (30 - 700 fathoms [fm])\nfrom the area off Cape Flattery, Washington (latitude [lat.] 48\u00b010'N)\nto the U.S.-Mexican border (lat. 32\u00b030'N) using chartered West Coast\ncommercial trawlers. These ongoing series of annual surveys, conducted\nby FRAM since 1998, are designed to monitor long-term trends in\ndistribution and abundance of west coast groundfish, especially those\nspecies of management concern. The 2003 survey represents the first\nyear in which the depth range was expanded to include both the\ncontinental shelf (55 - 183 m) and continental slope (183 - 1,280 m)\narea and the first year in which a stratified-random sampling design\nwas adopted.\n\nIn 2003, a total of 574 successful tows were completed out of 643\nattempts. Simrad ITI net mensuration data, as well as global\npositioning system (GPS) navigation data and bottom contact sensor\ndata, used to document performance (e.g. bottom tending), were\nobtained for most tows.\n\nAn Aberdeen-style net with a small mesh (2\" stretched measure or less)\nliner in the codend (to retain smaller specimens) was used to sample\nfish biomass. Target duration of each tow was 15 minutes. Tow\nduration was the time between touchdown and lift-off of the trawl net\nfrom the seafloor based on readings from bottom contact sensors.\n\nCatches were sorted to species, aggregate or other appropriate\ntaxonomic level and then weighed using an electronic,\nmotion-compensated scale. A total of 517 species or families (fish\nand invertebrates) were identified within the survey area. Although\nbiological sampling effort continues to include Dover sole\n(Microstomus pacificus), shortspine thornyhead (Sebastolobus\nalascanus), longspine thornyhead (Sebastolobus altivelis), and\nsablefish (Anoplopoma fimbria), focus has increasingly shifted to\nencompass all groundfish species of management concern. Up to 100\nlength measurements, sex determinations, and individual weights\nand up to 25 age structures were collected per haul for these species.\n\ncdm_data_type = Trajectory\nVARIABLES:\nhaul_id (Haul Identifier)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosGroundfish_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosGroundfish_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosGroundfish/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Groundfish%20Survey%202003-2005.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosGroundfish.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosGroundfish&showErrors=false&email=", "NOAA NWFSC", "nwioosGroundfish"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails.graph", "", "", "public", "NWFSC HUD Fish Species Details", "Habitat Use Database (HUD) Fish Species Details compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\nspecies_id\ncommon_name\nscientific_name\nlife_stage\nabsolute_min_depth (m)\npreferred_min_depth (m)\nabsolute_max_depth (m)\npreferred_max_depth (m)\nabsolute_min_temp (Absolute Min Temperature, degree_C)\npreferred_min_temp (Preferred Min Temperature, degree_C)\nabsolute_max_temp (Absolute Max Temperature, degree_C)\npreferred_max_temp (Preferred Max Temperature, degree_C)\nabsolute_min_latitude (degrees_north)\npreferred_min_latitude (degrees_north)\nabsolute_max_latitude (degrees_north)\npreferred_max_latitude (degrees_north)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudFishDetails/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Fish%20Species%20Details.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudFishDetails.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudFishDetails&showErrors=false&email=", "NOAA NWFSC", "nwioosHudFishDetails"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishOccur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishOccur", "", "", "", "public", "NWFSC HUD Fish Species Occurrence", "Habitat Use Database (HUD) Fish Species Occurrence data compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\ncommon_name\nscientific_name\nlife_stage\ngender\nhabitat_association\nseason\nlevel_1_habitat\nlevel_2_habitat\nlevel_3_habitat\nlevel_4_habitat\nactivity\nactivity_association\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudFishOccur/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Fish%20Species%20Occurrence.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudFishOccur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudFishOccur&showErrors=false&email=", "NOAA NWFSC", "nwioosHudFishOccur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudPredPrey.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudPredPrey", "", "", "", "public", "NWFSC HUD Predators and Prey", "Habitat Use Database (HUD) Predators and Prey data compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\necoregion\nseason\nlevel_1_habitat\nlevel_2_habitat\nlevel_3_habitat\nlevel_4_habitat\nscientific_name\ngender\nlife_stage\nprey_name\nprey_gender\nprey_life_stage\npredator_name\npredator_gender\npredator_life_stage\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudPredPrey/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Predators%20and%20Prey.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudPredPrey.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudPredPrey&showErrors=false&email=", "NOAA NWFSC", "nwioosHudPredPrey"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudRef.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudRef", "", "", "", "public", "NWFSC HUD References", "Habitat Use Database (HUD) References compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\nseason\nlevel_1_habitat\nlevel_2_habitat\nlevel_3_habitat\nlevel_4_habitat\nscientific_name\ngender\nlife_stage\nreference_to\nreference_type\nauthors\npublication_year\nreference_name\neditor\npublication_name\npublisher_city\npublisher\nvolume\nnumber\nreferenced_pages\nthesis_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudRef/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20References.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudRef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudRef&showErrors=false&email=", "NOAA NWFSC", "nwioosHudRef"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002.graph", "", "", "public", "NWFSC Observer Fixed Gear Data, off West Coast of US, 2002-2006", "Observer Fixed Gear Data collected during 2002-2006 off West Coast of US.\n\nThis data product originates from data collected by fishery observers in the West Coast Groundfish Observer Program (WCGOP), Fishery Resource Analysis and Monitoring Division (FRAM) at the Northwest Fisheries Science Center, NOAA Fisheries. The WCGOP's goal is to improve total catch estimates by collecting information on the discarded catch (fish returned overboard at-sea) of west coast groundfish species. All data were collected according to standard protocols and data quality control established by the WCGOP. The observed portion of overall catch or landings in a fishery varies by coverage level. Since all fishing operations are not observed, neither the maps nor the data can be used to characterize the fishery completely. This is especially true for rarely-occurring species and when observed sample sizes are small. We urge caution when utilizing these data due to the complexity of groundfish management and fleet harvest dynamics. Grid cells representing less than 3 vessels and less than 10 hauls or sets are not shown due to confidentiality and to ensure adequate sample size. In the limited-entry fixed gear fishery, species discard rates (species discard weight / groundfish total catch (discard + retained weight)) are categorized by approximate quartile ranges and geo-referenced to 20 x 20 kilometer grid cells. The observed fixed gear set location (start location of fishing) was used to allocate data to 20 x 20 kilometer grid cells for calculation. Sixteen species were represented based on combined observer data from 2002-2006. The species included in this data product are dover sole (Microstomus pacificus), sablefish (Anoplopoma fimbria), longspine thornyhead (Sebastolobus altivelis), shortspine thornyhead (Sebastolobus alascanus), lingcod (Ophiodon elongatus), arrowtooth flounder (Atheresthes stomias), petrale sole (Eopsetta jordani), and the rockfishes (genus Sebastes), darkblotched rockfish (S. crameri), Pacific ocean perch (S. alutus), chilipepper (S. goodei), cowcod (S. levis), bocaccio (S. paucispinis), canary rockfish (S. pinniger), widow rockfish (S. entomelas), yelloweye rockfish (S. ruberrimus), and yellowtail rockfish (S. flavidus).\n\nPurpose: This data product was developed to provide basic groundfish discard distribution information for a wide variety of audiences. The West Coast Groundfish Observer Program conducts sampling of groundfish discarded by commercial fisheries along the entire continental U.S. West Coast. The seventeen species included in this data product are among those of most interest to the fisheries management and commercial fishing communities.\n\nData Credits: NOAA Fisheries, Northwest Fisheries Science Center, Fishery Resource Analysis & Monitoring Division, West Coast Groundfish Observer Program, Seattle, WA.\n\ncdm_data_type = Other\nVARIABLES:\nlongitude (Longitude (Center of 20x20 km Grid Cell), degrees_east)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosObsFixed2002_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosObsFixed2002_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosObsFixed2002/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Observer%20Fixed%20Gear%202002%202006.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosObsFixed2002.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosObsFixed2002&showErrors=false&email=", "NOAA NWFSC", "nwioosObsFixed2002"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002.graph", "", "", "public", "NWFSC Observer Trawl Data, off West Coast of US, 2002-2006", "Observer Trawl Data collected during 2002-2006 off West Coast of US.\n\nThis data product originates from data collected by fishery observers in the West Coast Groundfish Observer Program (WCGOP), Fishery Resource Analysis and Monitoring Division (FRAM) at the Northwest Fisheries Science Center, NOAA Fisheries. The WCGOP's goal is to improve total catch estimates by collecting information on the discarded catch (fish returned overboard at-sea) of west coast groundfish species. All data were collected according to standard protocols and data quality control established by the WCGOP. The observed portion of overall catch or landings in a fishery varies by coverage level. Since all fishing operations are not observed, neither the maps nor the data can be used to characterize the fishery completely. This is especially true for rarely-occurring species and when observed sample sizes are small. We urge caution when utilizing these data due to the complexity of groundfish management and fleet harvest dynamics. Grid cells representing less than 3 vessels and less than 10 hauls or sets are not shown due to confidentiality and to ensure adequate sample size. In the limited-entry groundfish bottom trawl fishery, species discard rates (species discard weight / groundfish total catch (discard + retained weight)) are categorized by approximate quartile ranges and geo-referenced to 10 x 10 kilometer grid cells. The observed trawl towline (line drawn from the start to end location of a trawl tow) was used to allocate data to 10 x 10 kilometer grid cells for calculation. Seventeen species were represented based on combined observer data from 2002-2006. The species included in this data product are dover sole (Microstomus pacificus), sablefish (Anoplopoma fimbria), longspine thornyhead (Sebastolobus altivelis), shortspine thornyhead (Sebastolobus alascanus), lingcod (Ophiodon elongatus), arrowtooth flounder (Atheresthes stomias), English sole (Parophrys vetulus), petrale sole (Eopsetta jordani), and the rockfishes (genus Sebastes), darkblotched rockfish (S. crameri), Pacific ocean perch (S. alutus), chilipepper (S. goodei), cowcod (S. levis), bocaccio (S. paucispinis), canary rockfish (S. pinniger), widow rockfish (S. entomelas), yelloweye rockfish (S. ruberrimus), and yellowtail rockfish (S. flavidus).\n\nPurpose: This data product was developed to provide basic groundfish discard distribution information for a wide variety of audiences. The West Coast Groundfish Observer Program conducts sampling of groundfish discarded by commercial fisheries along the entire continental U.S. West Coast. The seventeen species included in this data product are among those of most interest to the fisheries management and commercial fishing communities.\n\nData Credits: NOAA Fisheries, Northwest Fisheries Science Center, Fishery Resource Analysis & Monitoring Division, West Coast Groundfish Observer Program, Seattle, WA.\n\ncdm_data_type = Other\nVARIABLES:\nlongitude (Longitude (Center of 10x10 km Grid Cell), degrees_east)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosObsTrawl2002_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosObsTrawl2002_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosObsTrawl2002/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Observer%20Trawl%202002%202006.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosObsTrawl2002.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosObsTrawl2002&showErrors=false&email=", "NOAA NWFSC", "nwioosObsTrawl2002"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a.graph", "", "", "public", "OceanSITES KEO daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from the Kuroshio Extension Observatory (KEO) site nominally at 32.3N,144.6E, in the Kuroshio Extension recirculation gyre. The actual anchor position is different for each deployment, and this is a slack line mooring with a watch circle radius greater than 5km. For users performing inter comparisons, it may be important to use the actual position of the buoy from the Global Positioning System (GPS) data. This mooring has been instrumented with upper ocean and surface sensors since June 2004. Included in this file are sea temperatures and pressures from the surface to 525m depth, salinity and density (sigma-theta) from the surface to 400m depth, sea currents to 35m depth, a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and barometric pressure. Note that because this is a slack-line mooring, subsurface sensor depths vary with time, and hence one must use the observed and calculated water pressures to compute sensor depths. Also, due to the relatively large scope and different anchor positions, the positions of the buoy at the surface are included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndeptemp (Depth of each measurement, meters)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepth (m)\nPRES (water pressure, observed and calculated, decibar)\nPRES_QC (quality flag)\nPRES_DM (method of data processing)\n... (53 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/keo_121f_a3d0_3c0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/keo_121f_a3d0_3c0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/keo_121f_a3d0_3c0a/index.json", "https://www.pmel.noaa.gov/ocs/", "http://upwell.pfeg.noaa.gov/erddap/rss/keo_121f_a3d0_3c0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=keo_121f_a3d0_3c0a&showErrors=false&email=", "NOAA/PMEL", "keo_121f_a3d0_3c0a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f.graph", "", "", "public", "OceanSITES PAPA daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from station Papa at 50N,145W in the North Pacific. This taut-line mooring has been instrumented with upper ocean and surface sensors since June 2007. Included in this file are sea temperatures from the surface to 300 meters depth, salinity and density (sigma-theta) from the surface to 200m depth, sea currents at 5m and 35m depth, acoustic doppler profiles of zonal and meridional ocean current to from 30 to 158 meters depth, and a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and barometric pressure. Time series of buoy latitude and longitude are included as well.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each measurement, m)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepcur (Depth of each measurement, m)\nUCUR\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\ndeppsal (Depth of each measurement, m)\n... (43 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/papa_8bb5_dcd5_981f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/papa_8bb5_dcd5_981f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/papa_8bb5_dcd5_981f/index.json", "https://www.pmel.noaa.gov/ocs/", "http://upwell.pfeg.noaa.gov/erddap/rss/papa_8bb5_dcd5_981f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=papa_8bb5_dcd5_981f&showErrors=false&email=", "NOAA/PMEL", "papa_8bb5_dcd5_981f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219.graph", "", "", "public", "OceanSITES PIRATA daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from one of the Tropical Atmosphere/Ocean (TAO)/TRITON, Pilot Research Moored Array in the Tropical Atlantic (PIRATA), or Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) mooring sites in the tropical oceans. Included in this file are sea temperatures from the surface to 500 meters at most sites and deeper at others, salinity and potential density (sigma-theta) at the sea surface and deeper at some sites, sea currents at 10m depth and deeper at some sites, a variety of surface observations including winds, air temperature, relative humidity, shortwave solar radiation, longwave radiation, rain rate, barometric pressure. Buoy positions are also included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each TEMP measurement, m)\ndepcur (Depth of each current measurement)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndeppsal (Depth of each Salinity measurement)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\nPSAL (sea_water_practical_salinity)\nPSAL_QC\nPSAL_DM (method of data processing)\ndepden (Depth of each density measurement)\nheightwind (altitude, meters)\nUWND (zonal wind)\nVWND (meridional wind, m/s)\n... (44 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pirata_5922_7dcd_7219_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pirata_5922_7dcd_7219_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pirata_5922_7dcd_7219/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/pirata_5922_7dcd_7219.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pirata_5922_7dcd_7219&showErrors=false&email=", "NOAA/PMEL", "pirata_5922_7dcd_7219"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc.graph", "", "", "public", "OceanSITES TAO daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from one of the flux reference mooring sites in the tropical oceans. Included in this file are sea temperatures from the surface to 500m depth, salinity and density (sigma-theta) from the surface to typically 120m depth, sea currents typically at 10m depth and at some sites deeper, a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and sea level airpressure. Buoy positions are also included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each measurement, m)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\n... (42 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/tao_6eb4_e773_2fbc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/tao_6eb4_e773_2fbc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/tao_6eb4_e773_2fbc/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/tao_6eb4_e773_2fbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=tao_6eb4_e773_2fbc&showErrors=false&email=", "NOAA/PMEL", "tao_6eb4_e773_2fbc"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.graph", "", "", "public", "OSMC Argo Profile data", "OSMC Argo Profile data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\norganization_name\ncountry_name\nplatform_type_name\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nparameter_name\ndaily_obs_count\nobservation_depth\nobservation_value\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_PROFILERS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_PROFILERS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_PROFILERS/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_PROFILERS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_PROFILERS&showErrors=false&email=", "OSMC", "OSMC_PROFILERS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.graph", "", "", "public", "OSMC normalized observations from GTS", "OSMC normalized In-situ Real time GTS data\n\ncdm_data_type = Point\nVARIABLES:\nPLATFORM_CODE (Station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform\nparameter\nOBSERVATION_VALUE\nOBSERVATION_DEPTH\nCOUNTRY_NAME\norganization_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_Points_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_Points_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_Points/index.json", "https://www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_Points.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_Points&showErrors=false&email=", "OSMC", "OSMC_Points"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_417d_33ad_dead.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_417d_33ad_dead", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_417d_33ad_dead.graph", "", "", "public", "Pacific Island Network Marine Fish Monitoring Dataset - Surveys", "National Park Service Fish Stock Data\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\nhigherInstitutionCode\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\nisland\n... (67 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_417d_33ad_dead_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_417d_33ad_dead_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_417d_33ad_dead/index.json", "http://science.nature.nps.gov/im/units/pacn/monitoring/vs_fish_marine.cfm", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_417d_33ad_dead.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_417d_33ad_dead&showErrors=false&email=", "USDOI/NPS/NRSS/IMD/PACN", "hawaii_soest_417d_33ad_dead"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_31bb_eee9_ef0a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_31bb_eee9_ef0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_31bb_eee9_ef0a.graph", "", "", "public", "Pacific Island Network Marine Fish Monitoring Dataset - Transects", "The benthic marine community in the Pacific Island Network (PACN) is a complex ecologic system and a diverse taxonomic environment, including algae and corals and other invertebrates. Reef-building corals are the primary architectural organism and are sensitive to environmental degradation; therefore, they are a good indicator of overall health for nearshore marine ecosystems. Primary stressors to coral reefs include disease, bleaching, sedimentation, eutrophication, storms, and global climate change. The United Nations Environment Programme (UNEP) has proposed using coral reefs as a worldwide indicator ecosystem for global climate change (Spalding et al. 2004). For these reasons, the PACN has chosen to implement long term monitoring of benthic marine communities. Benthic marine communities is most closely linked with marine fish, and monitoring efforts will be conducted at the same time and location to maximize data value\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\n... (58 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_31bb_eee9_ef0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_31bb_eee9_ef0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_31bb_eee9_ef0a/index.json", "http://science.nature.nps.gov/im/units/pacn/monitoring/vs_fish_marine.cfm", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_31bb_eee9_ef0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_31bb_eee9_ef0a&showErrors=false&email=", "USDOI/NPS/NRSS/IMD/PACN", "hawaii_soest_31bb_eee9_ef0a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5673_517d_3b8c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5673_517d_3b8c.graph", "", "", "public", "PacIOOS Nearshore Sensor 01 (NS01): Waikiki Yacht Club, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS01 is located at the Waikiki Yacht Club and is fixed to the bridge pier. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to a piling ~0.5m below mean sea level.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5673_517d_3b8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5673_517d_3b8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5673_517d_3b8c/index.json", "https://www.pacioos.hawaii.edu/water/sensor-waikiki/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5673_517d_3b8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5673_517d_3b8c&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5673_517d_3b8c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_1273_fad1_0404", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_1273_fad1_0404.graph", "", "", "public", "PacIOOS Nearshore Sensor 02 (NS02): Hawaii Yacht Club, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS02 is located at a floating dock off the Hawaii Yacht Club. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to a floating dock just below the ocean surface.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_1273_fad1_0404_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_1273_fad1_0404_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_1273_fad1_0404/index.json", "https://www.pacioos.hawaii.edu/water/sensor-hawaiiyachtclub/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_1273_fad1_0404.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_1273_fad1_0404&showErrors=false&email=", "University of Hawaii", "hawaii_soest_1273_fad1_0404"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d787_1c35_208d", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d787_1c35_208d.graph", "", "", "public", "PacIOOS Nearshore Sensor 03 (NS03): Hilton Hawaiian Pier, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS03 is located at the Atlantis Pier off the Hilton Hawaiian Village. The instrument is a Sea-Bird Electronics model 37SMP. The package is located at approximately 2.0 meters below mean sea level.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d787_1c35_208d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d787_1c35_208d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d787_1c35_208d/index.json", "https://www.pacioos.hawaii.edu/water/sensor-atlantis/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d787_1c35_208d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d787_1c35_208d&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d787_1c35_208d"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_c9f9_c232_1fe9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_c9f9_c232_1fe9.graph", "", "", "public", "PacIOOS Nearshore Sensor 04 (NS04): Waikiki Aquarium, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS04 is located just off the Waikiki Aquarium and is fixed to the pier. The instrument is a Sea-Bird Electronics model 37SMP. The package is mounted on the bottom in approximately 2.0 to 2.5 meters ocean depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_c9f9_c232_1fe9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_c9f9_c232_1fe9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_c9f9_c232_1fe9/index.json", "https://www.pacioos.hawaii.edu/water/sensor-waikikiaquarium/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_c9f9_c232_1fe9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_c9f9_c232_1fe9&showErrors=false&email=", "University of Hawaii", "hawaii_soest_c9f9_c232_1fe9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b55f_a8f2_ad70", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b55f_a8f2_ad70.graph", "", "", "public", "PacIOOS Nearshore Sensor 05 (NS05): Pago Pago, American Samoa", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS05 is located at the Department of Marine and Wildlife Resources (DMWR) dock in Pago Pago Harbor, American Samoa and is mounted to the bottom in about 2 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_b55f_a8f2_ad70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_b55f_a8f2_ad70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_b55f_a8f2_ad70/index.json", "https://www.pacioos.hawaii.edu/water/sensor-pagopago/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_b55f_a8f2_ad70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_b55f_a8f2_ad70&showErrors=false&email=", "University of Hawaii", "hawaii_soest_b55f_a8f2_ad70"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f59_c29c_d820", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f59_c29c_d820.graph", "", "", "public", "PacIOOS Nearshore Sensor 06 (NS06): Pohnpei, Micronesia", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS06 is located at the dock in Pohnpei lagoon and is mounted to the bottom in about 1 meter of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8f59_c29c_d820_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8f59_c29c_d820_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8f59_c29c_d820/index.json", "https://www.pacioos.hawaii.edu/water/sensor-pohnpei/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8f59_c29c_d820.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8f59_c29c_d820&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8f59_c29c_d820"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_77b7_f5dd_cda3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_77b7_f5dd_cda3.graph", "", "", "public", "PacIOOS Nearshore Sensor 07 (NS07): Majuro, Marshall Islands", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS07 is located at the Uliga dock in Majuro, Republic of the Marshall Islands and is mounted to the bottom in about 2 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_77b7_f5dd_cda3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_77b7_f5dd_cda3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_77b7_f5dd_cda3/index.json", "https://www.pacioos.hawaii.edu/water/sensor-majuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_77b7_f5dd_cda3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_77b7_f5dd_cda3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_77b7_f5dd_cda3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e3c0_a956_de01", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e3c0_a956_de01.graph", "", "", "public", "PacIOOS Nearshore Sensor 08 (NS08): Koror, Palau", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS08 is located at the Palau International Coral Reef Center (PICRC) dock in Koror, Palau and is mounted to the bottom in about 3.5 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e3c0_a956_de01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e3c0_a956_de01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e3c0_a956_de01/index.json", "https://www.pacioos.hawaii.edu/water/sensor-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e3c0_a956_de01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e3c0_a956_de01&showErrors=false&email=", "University of Hawaii", "hawaii_soest_e3c0_a956_de01"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0113_b43d_e024", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0113_b43d_e024.graph", "", "", "public", "PacIOOS Nearshore Sensor 09 (NS09): Cetti Bay, Guam", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS09 is approximately 70 meters offshore in Cetti Bay, Guam and is mounted to the bottom in about 3 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_0113_b43d_e024_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_0113_b43d_e024_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_0113_b43d_e024/index.json", "https://www.pacioos.hawaii.edu/water/sensor-cetti/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_0113_b43d_e024.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_0113_b43d_e024&showErrors=false&email=", "University of Hawaii", "hawaii_soest_0113_b43d_e024"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f25e_31a1_16f1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f25e_31a1_16f1.graph", "", "", "public", "PacIOOS Nearshore Sensor 10 (NS10): Maunalua Bay, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS10 is located off the old pier in Maunalua Bay in Hawaii Kai. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to the pier at about 2m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f25e_31a1_16f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f25e_31a1_16f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f25e_31a1_16f1/index.json", "https://www.pacioos.hawaii.edu/water/sensor-maunalua/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f25e_31a1_16f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f25e_31a1_16f1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f25e_31a1_16f1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8668_b202_8233", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8668_b202_8233.graph", "", "", "public", "PacIOOS Nearshore Sensor 11 (NS11): Saipan, CNMI", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS11 is approximately 20 meters offshore of Puntan Babpot near the golf course at Laolao Bay on the east shore of Saipan in the Commonwealth of the Northern Mariana Islands (CNMI) and is mounted to the bottom in about 3 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8668_b202_8233_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8668_b202_8233_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8668_b202_8233/index.json", "https://www.pacioos.hawaii.edu/water/sensor-saipan/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8668_b202_8233.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8668_b202_8233&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8668_b202_8233"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b10c_af2d_3fe8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b10c_af2d_3fe8.graph", "", "", "public", "PacIOOS Nearshore Sensor 12 (NS12): Kalama Beach Park, Maui, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS12 is located at Kalama Beach Park in Kihei, Maui. The instrument is a 6600V2-4 Multi-parameter water quality logger. The package is fixed to a mooring at about 1.5m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\nwater_depth (Sensor depth, m)\nph (1)\noxygen (Dissolved oxygen concentration, kg m-3)\noxygen_saturation (Dissolved oxygen saturation, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_b10c_af2d_3fe8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_b10c_af2d_3fe8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_b10c_af2d_3fe8/index.json", "https://www.pacioos.hawaii.edu/water/sensor-kalama/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_b10c_af2d_3fe8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_b10c_af2d_3fe8&showErrors=false&email=", "University of Hawaii", "hawaii_soest_b10c_af2d_3fe8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_026f_4c1d_55e5", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_026f_4c1d_55e5.graph", "", "", "public", "PacIOOS Nearshore Sensor 13 (NS13): Kahului, Maui, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS13 is located in Kahului Harbor in Maui. The instrument is a 6600V2-4 Multi-parameter water quality logger. The package is fixed to a piling at about 1.5m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nwater_depth (Sensor depth (processed), m)\nwater_depth_raw (Sensor depth (raw), m)\nph (pH (processed), 1)\nph_raw (pH (raw), 1)\noxygen (Dissolved oxygen concentration (processed), kg m-3)\noxygen_raw (Dissolved oxygen concentration (raw), kg m-3)\noxygen_saturation (Dissolved oxygen saturation (processed), 1)\noxygen_saturation_raw (Dissolved oxygen saturation (raw), 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_026f_4c1d_55e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_026f_4c1d_55e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_026f_4c1d_55e5/index.json", "https://www.pacioos.hawaii.edu/water/sensor-kahului/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_026f_4c1d_55e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_026f_4c1d_55e5&showErrors=false&email=", "University of Hawaii", "hawaii_soest_026f_4c1d_55e5"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_191e_fe37_f9a0", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_191e_fe37_f9a0.graph", "", "", "public", "PacIOOS Nearshore Sensor 15 (NS15): Pago Bay, Guam", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS15 is in Pago Bay, Guam and is mounted to the bottom in about 1.5 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. This station was decommissioned and relocated after 2018 in order to minimize burial of the sensor by silt; see NS17 for data at the new mooring location.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_191e_fe37_f9a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_191e_fe37_f9a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_191e_fe37_f9a0/index.json", "https://www.pacioos.hawaii.edu/water/sensor-pago/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_191e_fe37_f9a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_191e_fe37_f9a0&showErrors=false&email=", "University of Hawaii", "hawaii_soest_191e_fe37_f9a0"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d5ba_831c_443a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d5ba_831c_443a.graph", "", "", "public", "PacIOOS Nearshore Sensor 16 (NS16): Wailupe, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS16 is located off Wailupe in Maunalua Bay in Aina Haina. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to the pier at about 1m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d5ba_831c_443a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d5ba_831c_443a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d5ba_831c_443a/index.json", "https://www.pacioos.hawaii.edu/water/sensor-wailupe/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d5ba_831c_443a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d5ba_831c_443a&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d5ba_831c_443a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_093e_cd55_43a3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_093e_cd55_43a3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_093e_cd55_43a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_093e_cd55_43a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_093e_cd55_43a3/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_093e_cd55_43a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_093e_cd55_43a3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_093e_cd55_43a3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc92_7d24_0627", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc92_7d24_0627.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_cc92_7d24_0627_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_cc92_7d24_0627_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_cc92_7d24_0627/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_cc92_7d24_0627.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_cc92_7d24_0627&showErrors=false&email=", "University of Hawaii", "hawaii_soest_cc92_7d24_0627"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f289_8170_ec45", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f289_8170_ec45.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f289_8170_ec45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f289_8170_ec45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f289_8170_ec45/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f289_8170_ec45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f289_8170_ec45&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f289_8170_ec45"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_36dd_cf4c_73a6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_36dd_cf4c_73a6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_36dd_cf4c_73a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_36dd_cf4c_73a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_36dd_cf4c_73a6/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_36dd_cf4c_73a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_36dd_cf4c_73a6&showErrors=false&email=", "University of Hawaii", "hawaii_soest_36dd_cf4c_73a6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5359_8678_82b1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5359_8678_82b1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5359_8678_82b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5359_8678_82b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5359_8678_82b1/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5359_8678_82b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5359_8678_82b1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5359_8678_82b1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_92c1_a2b0_55fb", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_92c1_a2b0_55fb.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_92c1_a2b0_55fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_92c1_a2b0_55fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_92c1_a2b0_55fb/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_92c1_a2b0_55fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_92c1_a2b0_55fb&showErrors=false&email=", "University of Hawaii", "hawaii_soest_92c1_a2b0_55fb"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_75b3_e52c_26a2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_75b3_e52c_26a2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_75b3_e52c_26a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_75b3_e52c_26a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_75b3_e52c_26a2/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_75b3_e52c_26a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_75b3_e52c_26a2&showErrors=false&email=", "University of Hawaii", "hawaii_soest_75b3_e52c_26a2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_a826_8633_00bb", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_a826_8633_00bb.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_a826_8633_00bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_a826_8633_00bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_a826_8633_00bb/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_a826_8633_00bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_a826_8633_00bb&showErrors=false&email=", "University of Hawaii", "hawaii_soest_a826_8633_00bb"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_076a_87b3_40a0", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_076a_87b3_40a0.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_076a_87b3_40a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_076a_87b3_40a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_076a_87b3_40a0/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_076a_87b3_40a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_076a_87b3_40a0&showErrors=false&email=", "University of Hawaii", "hawaii_soest_076a_87b3_40a0"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_4c82_4728_010b", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_4c82_4728_010b.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_4c82_4728_010b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_4c82_4728_010b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_4c82_4728_010b/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_4c82_4728_010b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_4c82_4728_010b&showErrors=false&email=", "University of Hawaii", "hawaii_soest_4c82_4728_010b"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_856b_7e66_8c3f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_856b_7e66_8c3f.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_856b_7e66_8c3f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_856b_7e66_8c3f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_856b_7e66_8c3f/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_856b_7e66_8c3f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_856b_7e66_8c3f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_856b_7e66_8c3f"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2f21_4063_cfec", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2f21_4063_cfec.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_2f21_4063_cfec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_2f21_4063_cfec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_2f21_4063_cfec/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_2f21_4063_cfec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_2f21_4063_cfec&showErrors=false&email=", "University of Hawaii", "hawaii_soest_2f21_4063_cfec"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "http://www.ogcnetwork.net/node/344", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/PRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2017, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2017, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2017, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_88cd_7dfb_ecfa.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_88cd_7dfb_ecfa", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_88cd_7dfb_ecfa.graph", "", "", "public", "US Pacific Islands, Coral Reef Monitoring, Fish Surveys, Belt Transects (BLT)", "Coral Reef Ecosytem Division (CRED) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_88cd_7dfb_ecfa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_88cd_7dfb_ecfa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_88cd_7dfb_ecfa/index.json", "https://www.pifsc.noaa.gov/cred/fish.php", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_88cd_7dfb_ecfa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_88cd_7dfb_ecfa&showErrors=false&email=", "USDOC/NOAA/NMFS/PIFSC/CRED", "hawaii_soest_88cd_7dfb_ecfa"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7448_8dd2_e529.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7448_8dd2_e529", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7448_8dd2_e529.graph", "", "", "public", "US Pacific Islands, Coral Reef Monitoring, Fish Surveys, Stationary Point Counts (nSPC)", "Coral Reef Ecosytem Division (CRED) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\n... (49 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_7448_8dd2_e529_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_7448_8dd2_e529_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_7448_8dd2_e529/index.json", "https://www.pifsc.noaa.gov/cred/fish.php", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_7448_8dd2_e529.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_7448_8dd2_e529&showErrors=false&email=", "USDOC/NOAA/NMFS/PIFSC/CRED", "hawaii_soest_7448_8dd2_e529"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_6dcb_e681_3eab.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_6dcb_e681_3eab", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_6dcb_e681_3eab.graph", "", "", "public", "US Pacific Islands, Coral Reef Monitoring, Fish Surveys, Stationary Point Counts (SPC)", "Coral Reef Ecosytem Division (CRED) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\n... (49 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_6dcb_e681_3eab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_6dcb_e681_3eab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_6dcb_e681_3eab/index.json", "https://www.pifsc.noaa.gov/cred/fish.php", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_6dcb_e681_3eab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_6dcb_e681_3eab&showErrors=false&email=", "USDOC/NOAA/NMFS/PIFSC/CRED", "hawaii_soest_6dcb_e681_3eab"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d98d_1d43_fef7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d98d_1d43_fef7.graph", "", "", "public", "Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\naltitude (height above mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\nair_temperature (Mean air temperature, Celsius)\nair_temperature_std (Standard deviation of air temperature, Celsius)\nair_temperature_max (Maximum air temperature, Celsius)\nair_temperature_max_time (Time of maximum air temperature, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (Minimum air temperature, Celsius)\nair_temperature_min_time (Time of minimum air temperature, seconds since 1970-01-01T00:00:00Z)\nwind_speed (Mean wind speed, m s-1)\nwind_speed_std (Standard deviation wind speed, m s-1)\nwind_speed_max (Maximum wind speed, m s-1)\nwind_speed_max_time (Time of maximum wind speed, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (Minimum wind speed, m s-1)\nwind_speed_min_time (Time of minimum wind speed, seconds since 1970-01-01T00:00:00Z)\nwind_from_direction (degrees)\nwind_from_direction_std (Standard deviation of wind direction, degrees)\nrainfall_amount (Rainfall total, mm)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d98d_1d43_fef7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d98d_1d43_fef7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d98d_1d43_fef7/index.json", "http://www.coralreefresearchfoundation.org", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d98d_1d43_fef7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d98d_1d43_fef7&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "hawaii_soest_d98d_1d43_fef7"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whoiSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whoiSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whoiSos.graph", "", "", "public", "WHOI MVCO 12m Node ADCP SOS, 2008-present", "Wave observations from the 12m node ADCP in the Martha's Vineyard Coastal Observatory (MVCO) in the northwest Atlantic in coastal waters of North America. Extensive, detailed documentation is available in these .xml files:\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/MVCO_ObservingSystem.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/ADCP_System.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/MVCO_Workhorse_1200.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/RDI_Workhorse_1200.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Pressure_Obs_Process.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Velocity_Obs_Process.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Pressure_QC_Chain.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Velocity_QC_Chain.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/PUV_Analysis.xml\n\nFor this dataset, if you want the most recent data, you MUST change the default end time constraint to be a time that is slightly (a few seconds or a few minutes) in the past. The source data server does not allow end time constraints that are after the exact current time.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\npressure (Mean Sea Water Pressure, cm)\nwaveHeightFromPressure (Wave Height from Pressure, cm)\nwavePeriodFromPressure (Wave Period from Pressure, s)\nloCutoffFrequency (Low Cutoff Frequency, Hz)\nhiCutoffFrequency (High Cutoff Frequency, Hz)\nwaveHeightAll (Wave Height All, cm)\nswell (cm)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whoiSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whoiSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whoiSos/index.json", "https://www.whoi.edu/mvco", "http://upwell.pfeg.noaa.gov/erddap/rss/whoiSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoiSos&showErrors=false&email=", "Woods Hole Oceanographic Institution", "whoiSos"] + ] + } + } + recorded_at: 2019-07-19 19:13:11 GMT + recorded_with: vcr/0.2.6, webmockr/0.3.4 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/info/erdMBchlamday_LonPM180/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.8.1.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Fri, 19 Jul 2019 19:13:45 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=erdMBchlamday_LonPM180_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "acknowledgement", "String", "NOAA NESDIS COASTWATCH, NOAA SWFSC ERD"], + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "Grid"], + ["attribute", "NC_GLOBAL", "composite", "String", "true"], + ["attribute", "NC_GLOBAL", "contributor_name", "String", "NASA GSFC (OBPG)"], + ["attribute", "NC_GLOBAL", "contributor_role", "String", "Source of level 2 data."], + ["attribute", "NC_GLOBAL", "Conventions", "String", "COARDS, CF-1.6, ACDD-1.3"], + ["attribute", "NC_GLOBAL", "creator_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "creator_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "date_created", "String", "2019-07-03"], + ["attribute", "NC_GLOBAL", "date_issued", "String", "2019-07-03"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "179.975"], + ["attribute", "NC_GLOBAL", "files", "String", "MB2019152_2019152_chla.nc, MB2019153_2019153_chla.nc, MB2019154_2019154_chla.nc, MB2019155_2019155_chla.nc, MB2019156_2019156_chla.nc, MB2019157_2019157_chla.nc, MB2019159_2019159_chla.nc, MB2019160_2019160_chla.nc, MB2019161_2019161_chla.nc, MB2019162_2019162_chla.nc, MB2019163_2019163_chla.nc, MB2019164_2019164_chla.nc, MB2019165_2019165_chla.nc, MB2019166_2019166_chla.nc, MB2019167_2019167_chla.nc, MB2019168_2019168_chla.nc, MB2019169_2019169_chla.nc, MB2019170_2019170_chla.nc, MB2019171_2019171_chla.nc, MB2019172_2019172_chla.nc, MB2019173_2019173_chla.nc, MB2019174_2019174_chla.nc, MB2019175_2019175_chla.nc, MB2019176_2019176_chla.nc, MB2019177_2019177_chla.nc, MB2019178_2019178_chla.nc, MB2019179_2019179_chla.nc, MB2019180_2019180_chla.nc, MB2019181_2019181_chla.nc"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "65.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "-45.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_resolution", "double", "0.025"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "179.975"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "-180.0"], + ["attribute", "NC_GLOBAL", "geospatial_lon_resolution", "double", "0.025"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_max", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_min", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_positive", "String", "up"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_units", "String", "m"], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html"], + ["attribute", "NC_GLOBAL", "institution", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "keywords", "String", "altitude, aqua, chemistry, chla, chlorophyll, chlorophyll-a, coast, coastwatch, color, concentration, concentration_of_chlorophyll_in_sea_water, data, degrees, Earth Science > Oceans > Ocean Chemistry > Chlorophyll, experimental, imaging, MBchla, moderate, modis, national, noaa, node, npp, ocean, ocean color, oceans, orbiting, pacific, partnership, polar, polar-orbiting, resolution, sea, seawater, spectroradiometer, time, water, wcn, west"], + ["attribute", "NC_GLOBAL", "keywords_vocabulary", "String", "GCMD Science Keywords"], + ["attribute", "NC_GLOBAL", "license", "String", "The data may be used and redistributed for free but is not intended\nfor legal use, since it may contain inaccuracies. Neither the data\nContributor, ERD, NOAA, nor the United States Government, nor any\nof their employees or contractors, makes any warranty, express or\nimplied, including warranties of merchantability and fitness for a\nparticular purpose, or assumes any legal liability for the accuracy,\ncompleteness, or usefulness, of this information."], + ["attribute", "NC_GLOBAL", "naming_authority", "String", "gov.noaa.pfeg.coastwatch"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "65.0"], + ["attribute", "NC_GLOBAL", "origin", "String", "NASA GSFC (OBPG)"], + ["attribute", "NC_GLOBAL", "processing_level", "String", "3"], + ["attribute", "NC_GLOBAL", "project", "String", "CoastWatch (https://coastwatch.noaa.gov/)"], + ["attribute", "NC_GLOBAL", "projection", "String", "geographic"], + ["attribute", "NC_GLOBAL", "projection_type", "String", "mapped"], + ["attribute", "NC_GLOBAL", "publisher_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "publisher_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "publisher_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "publisher_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "references", "String", "Aqua/MODIS information: https://oceancolor.gsfc.nasa.gov/ . MODIS information: https://coastwatch.noaa.gov/cw_html/OceanColor_NRT_MODIS_Aqua.html ."], + ["attribute", "NC_GLOBAL", "satellite", "String", "Aqua"], + ["attribute", "NC_GLOBAL", "sensor", "String", "MODIS"], + ["attribute", "NC_GLOBAL", "source", "String", "satellite observation: Aqua, MODIS"], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "(local files)"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "-45.0"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v55"], + ["attribute", "NC_GLOBAL", "summary", "String", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner."], + ["attribute", "NC_GLOBAL", "testOutOfDate", "String", "now-60days"], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2019-06-15T12:00:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "2006-01-16T12:00:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (Monthly Composite), Lon+/-180"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "-180.0"], + ["dimension", "time", "", "double", "nValues=159, evenlySpaced=false, averageSpacing=31 days"], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "1.1374128E9, 1.5606E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "fraction_digits", "int", "0"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Centered Time"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["dimension", "altitude", "", "double", "nValues=1, onlyValue=0.0"], + ["attribute", "altitude", "_CoordinateAxisType", "String", "Height"], + ["attribute", "altitude", "_CoordinateZisPositive", "String", "up"], + ["attribute", "altitude", "actual_range", "double", "0.0, 0.0"], + ["attribute", "altitude", "axis", "String", "Z"], + ["attribute", "altitude", "fraction_digits", "int", "0"], + ["attribute", "altitude", "ioos_category", "String", "Location"], + ["attribute", "altitude", "long_name", "String", "Altitude"], + ["attribute", "altitude", "positive", "String", "up"], + ["attribute", "altitude", "standard_name", "String", "altitude"], + ["attribute", "altitude", "units", "String", "m"], + ["dimension", "latitude", "", "double", "nValues=4401, evenlySpaced=true, averageSpacing=0.025"], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "double", "-45.0, 65.0"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "coordsys", "String", "geographic"], + ["attribute", "latitude", "fraction_digits", "int", "4"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "point_spacing", "String", "even"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["dimension", "longitude", "", "double", "nValues=14400, evenlySpaced=true, averageSpacing=0.025"], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "double", "-180.0, 179.975"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "coordsys", "String", "geographic"], + ["attribute", "longitude", "fraction_digits", "int", "4"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "point_spacing", "String", "even"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "chlorophyll", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "chlorophyll", "_FillValue", "float", "-9999999.0"], + ["attribute", "chlorophyll", "colorBarMaximum", "double", "30.0"], + ["attribute", "chlorophyll", "colorBarMinimum", "double", "0.03"], + ["attribute", "chlorophyll", "colorBarScale", "String", "Log"], + ["attribute", "chlorophyll", "coordsys", "String", "geographic"], + ["attribute", "chlorophyll", "fraction_digits", "int", "2"], + ["attribute", "chlorophyll", "ioos_category", "String", "Ocean Color"], + ["attribute", "chlorophyll", "long_name", "String", "Chlorophyll Concentration in Sea Water"], + ["attribute", "chlorophyll", "missing_value", "float", "-9999999.0"], + ["attribute", "chlorophyll", "standard_name", "String", "concentration_of_chlorophyll_in_sea_water"], + ["attribute", "chlorophyll", "units", "String", "mg m-3"] + ] + } + } + recorded_at: 2019-07-19 19:13:11 GMT + recorded_with: vcr/0.2.6, webmockr/0.3.4 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.8.1.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Fri, 19 Jul 2019 19:13:46 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Fri, 19 Jul 2019 19:13:46 GMT + xdods-server: dods/3.7 + erddap-server: '2.01' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://upwell.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_01af_e372_5bb6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_01af_e372_5bb6.graph", "", "", "public", "AIS Ship Traffic: Hawaii: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_01af_e372_5bb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_01af_e372_5bb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_01af_e372_5bb6/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_01af_e372_5bb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_01af_e372_5bb6&showErrors=false&email=", "University of Hawaii", "hawaii_soest_01af_e372_5bb6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f70b_c777_2d0b", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f70b_c777_2d0b.graph", "", "", "public", "AIS Ship Traffic: Johnston Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f70b_c777_2d0b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f70b_c777_2d0b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f70b_c777_2d0b/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f70b_c777_2d0b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f70b_c777_2d0b&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f70b_c777_2d0b"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_be9a_9be0_1f0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_be9a_9be0_1f0a.graph", "", "", "public", "AIS Ship Traffic: Mariana and Wake: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_be9a_9be0_1f0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_be9a_9be0_1f0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_be9a_9be0_1f0a/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_be9a_9be0_1f0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_be9a_9be0_1f0a&showErrors=false&email=", "University of Hawaii", "hawaii_soest_be9a_9be0_1f0a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5742_4f35_ff55", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5742_4f35_ff55.graph", "", "", "public", "AIS Ship Traffic: Rose Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5742_4f35_ff55_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5742_4f35_ff55_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5742_4f35_ff55/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5742_4f35_ff55.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5742_4f35_ff55&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5742_4f35_ff55"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_490d_1198_15c1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_490d_1198_15c1.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_490d_1198_15c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_490d_1198_15c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_490d_1198_15c1/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_490d_1198_15c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_490d_1198_15c1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_490d_1198_15c1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0956_e939_cefc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0956_e939_cefc.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Velocity", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean current velocity at the ACO from a 250 kHz SonTek acoustic doppler current profiler (ADCP) at 1.83 m above the ocean bottom. Velocities are flagged bad if the amplitude is excessively low or high. An amplitude is high if it exceeds the average of the ping before and the ping after by 20 counts. An amplitude is low if less than 6 counts. After this the velocities are flagged bad if the absolute deviation of the vertical velocity from its ensemble median exceeds 0.15 m/s or if its value is less than -0.25 m/s.\n\ncdm_data_type = Profile\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each location, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\neastward_sea_water_velocity (current east component, meters/second)\nnorthward_sea_water_velocity (current north component, meters/second)\nupward_sea_water_velocity (current upward component, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_0956_e939_cefc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_0956_e939_cefc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_0956_e939_cefc/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_0956_e939_cefc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_0956_e939_cefc&showErrors=false&email=", "University of Hawaii", "hawaii_soest_0956_e939_cefc"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d1bf_1535_741f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d1bf_1535_741f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d1bf_1535_741f.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Bottom Pressure Recorder (BPR)", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean pressure at the ACO from a Bottom Pressure Recorder (BPR).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\npressure (sea water pressure, psi)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d1bf_1535_741f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d1bf_1535_741f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d1bf_1535_741f/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d1bf_1535_741f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d1bf_1535_741f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d1bf_1535_741f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc9b_209f_ea2f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc9b_209f_ea2f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc9b_209f_ea2f.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Hydrophone Acoustics", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographi\nc observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides sound files of ocean acoustics at the ocean floor from the ACO hydrophone.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nelapsedTime (Elapsed Time, seconds)\nchannel_1\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_cc9b_209f_ea2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_cc9b_209f_ea2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_cc9b_209f_ea2f/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_cc9b_209f_ea2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_cc9b_209f_ea2f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_cc9b_209f_ea2f"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/database-tables-description", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/database-tables-description", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/cast-table-column-descriptions", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://upwell.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the May 2019 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://www.usgodae.org/cgi-bin/datalist.pl?summary=Go&dset=fnmoc_obs_sfcobs", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1995.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1995", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1995.graph", "", "", "public", "Hake Survey ADCP (1995)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp1995_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp1995_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp1995/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/1995%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp1995.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp1995&showErrors=false&email=", "OSU", "nwioosAdcp1995"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1998.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1998", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1998.graph", "", "", "public", "Hake Survey ADCP (1998)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp1998_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp1998_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp1998/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/1998%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp1998.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp1998&showErrors=false&email=", "OSU", "nwioosAdcp1998"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2001.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2001", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2001.graph", "", "", "public", "Hake Survey ADCP (2001)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (Altitude, m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp2001_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp2001_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp2001/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/2001%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp2001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp2001&showErrors=false&email=", "OSU", "nwioosAdcp2001"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2003.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2003", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2003.graph", "", "", "public", "Hake Survey ADCP (2003)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp2003_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp2003_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp2003/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/2003%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp2003.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp2003&showErrors=false&email=", "OSU", "nwioosAdcp2003"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2005.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2005", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2005.graph", "", "", "public", "Hake Survey ADCP (2005)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp2005_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp2005_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp2005/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/2005%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp2005.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp2005&showErrors=false&email=", "OSU", "nwioosAdcp2005"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e5b4_d905_99ef", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e5b4_d905_99ef.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e5b4_d905_99ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e5b4_d905_99ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e5b4_d905_99ef/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e5b4_d905_99ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e5b4_d905_99ef&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "hawaii_soest_e5b4_d905_99ef"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_190f_1fe8_4cc4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_190f_1fe8_4cc4.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitors water quality at several beaches across the island of Maui in the State of Hawaii. This community-based monitoring effort provides valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites are also monitored for harmful bacteria levels of Enterococcus. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. \n\nData are managed through an online repository, the Coral Reef Monitoring Data Portal (http://monitoring.coral.org), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection is coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\n... (10 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_190f_1fe8_4cc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_190f_1fe8_4cc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_190f_1fe8_4cc4/index.json", "http://monitoring.coral.org", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_190f_1fe8_4cc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_190f_1fe8_4cc4&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "hawaii_soest_190f_1fe8_4cc4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys.\n\nThe data is from NOAA NDBC. It has been reformatted by NOAA Coastwatch,\nWest Coast Node. This dataset only has the data that is closest to a\ngiven hour. The time values in the dataset are rounded to the nearest hour.\n\nThis dataset has both historical data (quality controlled, before\n2019-06-01T00:00:00Z) and near real time data (less quality controlled, from\n2019-06-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Name)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nwd (Wind Direction, degrees_true)\nwspd (Wind Speed, m s-1)\ngst (Wind Gust Speed, m s-1)\nwvht (Wave Height, m)\ndpd (Wave Period, Dominant, s)\napd (Wave Period, Average, s)\nmwd (Wave Direction, degrees_true)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.graph", "", "", "public", "NEFSC Continuous Plankton Recorder", "A summary for the data\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ncruise\nsample\nlatitude (degrees_north)\nlongitude (degrees_east)\nphyto_color_indx (Phytoplankton Color Index)\nmarmap_tax_code (Marmap Taxonomic Code)\nmarmap_stage_code\nabundance (per 100 cubic meters)\nlife_stage\ntaxonomic_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/wocecpr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/wocecpr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/wocecpr/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "http://upwell.pfeg.noaa.gov/erddap/rss/wocecpr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=wocecpr&showErrors=false&email=", "NEFSC", "wocecpr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp.graph", "", "", "public", "NOAA NDBC SOS, 2006-present, sea_water_temperature", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_water_temperature data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWTemp/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWTemp&showErrors=false&email=", "NOAA NDBC", "ndbcSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind.graph", "", "", "public", "NOAA NDBC SOS, 2006-present, winds", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have winds data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwind_from_direction (degrees_true)\nwind_speed (m s-1)\nwind_speed_of_gust (m s-1)\nupward_air_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWind_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWind_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWind/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWind.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWind&showErrors=false&email=", "NOAA NDBC", "ndbcSosWind"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents.graph", "", "", "public", "NOAA NDBC SOS, 2007-present, currents", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have currents data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\nWARNING: Always check the quality_flags before using this data. A simple criterion is: only use a row of data if the first quality_flags value for the row (overall bin status) is 3 (good data/passed quality test). You can do this by appending &quality_flags=~\"3;.*\" to your request.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nbin (count)\ndirection_of_sea_water_velocity (degrees_true)\nsea_water_speed (cm/s)\nupward_sea_water_velocity (cm/s)\nerror_velocity (cm/s)\nplatform_orientation (degrees_true)\nplatform_pitch_angle (degree)\nplatform_roll_angle (degree)\nsea_water_temperature (Cel)\npct_good_3_beam (Percent Good 3 Beam, percent)\npct_good_4_beam (Percent Good 4 Beam, percent)\npct_rejected (Percent Rejected, percent)\npct_bad (Percent Bad, percent)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosCurrents_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosCurrents_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosCurrents/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosCurrents.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosCurrents&showErrors=false&email=", "NOAA NDBC", "ndbcSosCurrents"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity.graph", "", "", "public", "NOAA NDBC SOS, 2007-present, sea_water_practical_salinity", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_water_practical_salinity data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosSalinity/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosSalinity&showErrors=false&email=", "NOAA NDBC", "ndbcSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel.graph", "", "", "public", "NOAA NDBC SOS, 2008-present, sea_floor_depth_below_sea_surface", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_floor_depth_below_sea_surface data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\naveraging_interval (s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWLevel/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWLevel&showErrors=false&email=", "NOAA NDBC", "ndbcSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "", "public", "North Pacific High, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_43a8_6d6d_9052.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_43a8_6d6d_9052", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_43a8_6d6d_9052.graph", "", "", "public", "Northwestern Hawaiian Islands, Coral Reef Monitoring, Fish Surveys, Belt Transects (BLT)", "Papahanaumokuakea Marine National Monument (PMNM) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_43a8_6d6d_9052_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_43a8_6d6d_9052_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_43a8_6d6d_9052/index.json", "http://www.papahanaumokuakea.gov/research/welcome.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_43a8_6d6d_9052.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_43a8_6d6d_9052&showErrors=false&email=", "USDOC/NOAA/NOS/PMNM", "hawaii_soest_43a8_6d6d_9052"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_68f2_d17d_d413.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_68f2_d17d_d413", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_68f2_d17d_d413.graph", "", "", "public", "Northwestern Hawaiian Islands, Coral Reef Monitoring, Fish Surveys, Belt Transects (vBLT)", "Papahanaumokuakea Marine National Monument (PMNM) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_68f2_d17d_d413_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_68f2_d17d_d413_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_68f2_d17d_d413/index.json", "http://www.papahanaumokuakea.gov/research/welcome.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_68f2_d17d_d413.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_68f2_d17d_d413&showErrors=false&email=", "USDOC/NOAA/NOS/PMNM", "hawaii_soest_68f2_d17d_d413"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_ec1c_1aa4_ddaf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_ec1c_1aa4_ddaf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_ec1c_1aa4_ddaf.graph", "", "", "public", "Northwestern Hawaiian Islands, Coral Reef Monitoring, Fish Surveys, Stationary Point Counts (nSPC)", "Papahanaumokuakea Marine National Monument (PMNM) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_ec1c_1aa4_ddaf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_ec1c_1aa4_ddaf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_ec1c_1aa4_ddaf/index.json", "http://www.papahanaumokuakea.gov/research/welcome.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_ec1c_1aa4_ddaf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_ec1c_1aa4_ddaf&showErrors=false&email=", "USDOC/NOAA/NOS/PMNM", "hawaii_soest_ec1c_1aa4_ddaf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosCoral.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosCoral", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosCoral.graph", "", "", "public", "NWFSC Coral Data Collected off West Coast of US (1980-2005)", "This data contains the locations of some observations of\ncold-water/deep-sea corals off the west coast of the United States.\nRecords of coral catch originate from bottom trawl surveys conducted\nfrom 1980 to 2001 by the Alaska Fisheries Science Center (AFSC) and\n2001 to 2005 by the Northwest Fisheries Science Center (NWFSC).\nLocational information represent the vessel mid positions (for AFSC\nsurvey trawls) or \"best position\" (i.e., priority order: 1) gear\nmidpoint 2) vessel midpoint, 3) vessel start point, 4) vessel end\npoint, 5) station coordinates for NWFSC survey trawls) conducted as\npart of regular surveys of groundfish off the coasts of Washington,\nOregon and California by NOAA Fisheries. Only records where corals\nwere identified in the total catch are included. Each catch sample\nof coral was identified down to the most specific taxonomic level\npossible by the biologists onboard, therefore identification was\ndependent on their expertise. When positive identification was not\npossible, samples were sometimes archived for future identification\nby systematist experts. Data were compiled by the NWFSC, Fishery\nResource Analysis & Monitoring Division\n\nPurpose - Examination of the spatial and temporal distributions of\nobservations of cold-water/deep-sea corals off the west coast of the\nUnited States, including waters off the states of Washington, Oregon,\nand California. It is important to note that these records represent\nonly presence of corals in the area swept by the trawl gear. Since\nbottom trawls used during these surveys are not designed to sample\nepibenthic invertebrates, absence of corals in the catch does not\nnecessary mean they do not occupy the area swept by the trawl gear.\n\nData Credits - NOAA Fisheries, Alaska Fisheries Science Center,\nResource Assessment & Conservation Engineering Division (RACE) NOAA\nFisheries, Northwest Fisheries Science Center, Fishery Resource\nAnalysis & Monitoring Division (FRAM)\n\nContact: Curt Whitmire, NOAA NWFSC, Curt.Whitmire@noaa.gov\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosCoral_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosCoral_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosCoral/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Coral%201980-2005.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosCoral.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosCoral&showErrors=false&email=", "NOAA NWFSC", "nwioosCoral"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosGroundfish.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosGroundfish", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosGroundfish.graph", "", "", "public", "NWFSC Groundfish Data for U.S. West Coast (2003-2005)", "The data available for downloading is summarized data from the 2003-2005\nU.S. West Coast Bottom Trawl Survey (WCGTS) of Groundfish Resources off\nWashington, Oregon and California.\n\nThe Northwest Fisheries Science Center's Fishery Resource Analysis and\nMonitoring Division (FRAM) completed the sixth in an annual series of\ngroundfish bottom trawl surveys in 2003. The survey was conducted June\n24 to October 23, 2003 and targeted the commercial groundfish resources\ninhabiting depths of 55 to 1,280 meters [m], (30 - 700 fathoms [fm])\nfrom the area off Cape Flattery, Washington (latitude [lat.] 48\u00b010'N)\nto the U.S.-Mexican border (lat. 32\u00b030'N) using chartered West Coast\ncommercial trawlers. These ongoing series of annual surveys, conducted\nby FRAM since 1998, are designed to monitor long-term trends in\ndistribution and abundance of west coast groundfish, especially those\nspecies of management concern. The 2003 survey represents the first\nyear in which the depth range was expanded to include both the\ncontinental shelf (55 - 183 m) and continental slope (183 - 1,280 m)\narea and the first year in which a stratified-random sampling design\nwas adopted.\n\nIn 2003, a total of 574 successful tows were completed out of 643\nattempts. Simrad ITI net mensuration data, as well as global\npositioning system (GPS) navigation data and bottom contact sensor\ndata, used to document performance (e.g. bottom tending), were\nobtained for most tows.\n\nAn Aberdeen-style net with a small mesh (2\" stretched measure or less)\nliner in the codend (to retain smaller specimens) was used to sample\nfish biomass. Target duration of each tow was 15 minutes. Tow\nduration was the time between touchdown and lift-off of the trawl net\nfrom the seafloor based on readings from bottom contact sensors.\n\nCatches were sorted to species, aggregate or other appropriate\ntaxonomic level and then weighed using an electronic,\nmotion-compensated scale. A total of 517 species or families (fish\nand invertebrates) were identified within the survey area. Although\nbiological sampling effort continues to include Dover sole\n(Microstomus pacificus), shortspine thornyhead (Sebastolobus\nalascanus), longspine thornyhead (Sebastolobus altivelis), and\nsablefish (Anoplopoma fimbria), focus has increasingly shifted to\nencompass all groundfish species of management concern. Up to 100\nlength measurements, sex determinations, and individual weights\nand up to 25 age structures were collected per haul for these species.\n\ncdm_data_type = Trajectory\nVARIABLES:\nhaul_id (Haul Identifier)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosGroundfish_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosGroundfish_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosGroundfish/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Groundfish%20Survey%202003-2005.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosGroundfish.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosGroundfish&showErrors=false&email=", "NOAA NWFSC", "nwioosGroundfish"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails.graph", "", "", "public", "NWFSC HUD Fish Species Details", "Habitat Use Database (HUD) Fish Species Details compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\nspecies_id\ncommon_name\nscientific_name\nlife_stage\nabsolute_min_depth (m)\npreferred_min_depth (m)\nabsolute_max_depth (m)\npreferred_max_depth (m)\nabsolute_min_temp (Absolute Min Temperature, degree_C)\npreferred_min_temp (Preferred Min Temperature, degree_C)\nabsolute_max_temp (Absolute Max Temperature, degree_C)\npreferred_max_temp (Preferred Max Temperature, degree_C)\nabsolute_min_latitude (degrees_north)\npreferred_min_latitude (degrees_north)\nabsolute_max_latitude (degrees_north)\npreferred_max_latitude (degrees_north)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudFishDetails/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Fish%20Species%20Details.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudFishDetails.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudFishDetails&showErrors=false&email=", "NOAA NWFSC", "nwioosHudFishDetails"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishOccur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishOccur", "", "", "", "public", "NWFSC HUD Fish Species Occurrence", "Habitat Use Database (HUD) Fish Species Occurrence data compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\ncommon_name\nscientific_name\nlife_stage\ngender\nhabitat_association\nseason\nlevel_1_habitat\nlevel_2_habitat\nlevel_3_habitat\nlevel_4_habitat\nactivity\nactivity_association\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudFishOccur/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Fish%20Species%20Occurrence.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudFishOccur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudFishOccur&showErrors=false&email=", "NOAA NWFSC", "nwioosHudFishOccur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudPredPrey.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudPredPrey", "", "", "", "public", "NWFSC HUD Predators and Prey", "Habitat Use Database (HUD) Predators and Prey data compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\necoregion\nseason\nlevel_1_habitat\nlevel_2_habitat\nlevel_3_habitat\nlevel_4_habitat\nscientific_name\ngender\nlife_stage\nprey_name\nprey_gender\nprey_life_stage\npredator_name\npredator_gender\npredator_life_stage\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudPredPrey/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Predators%20and%20Prey.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudPredPrey.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudPredPrey&showErrors=false&email=", "NOAA NWFSC", "nwioosHudPredPrey"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudRef.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudRef", "", "", "", "public", "NWFSC HUD References", "Habitat Use Database (HUD) References compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\nseason\nlevel_1_habitat\nlevel_2_habitat\nlevel_3_habitat\nlevel_4_habitat\nscientific_name\ngender\nlife_stage\nreference_to\nreference_type\nauthors\npublication_year\nreference_name\neditor\npublication_name\npublisher_city\npublisher\nvolume\nnumber\nreferenced_pages\nthesis_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudRef/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20References.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudRef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudRef&showErrors=false&email=", "NOAA NWFSC", "nwioosHudRef"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002.graph", "", "", "public", "NWFSC Observer Fixed Gear Data, off West Coast of US, 2002-2006", "Observer Fixed Gear Data collected during 2002-2006 off West Coast of US.\n\nThis data product originates from data collected by fishery observers in the West Coast Groundfish Observer Program (WCGOP), Fishery Resource Analysis and Monitoring Division (FRAM) at the Northwest Fisheries Science Center, NOAA Fisheries. The WCGOP's goal is to improve total catch estimates by collecting information on the discarded catch (fish returned overboard at-sea) of west coast groundfish species. All data were collected according to standard protocols and data quality control established by the WCGOP. The observed portion of overall catch or landings in a fishery varies by coverage level. Since all fishing operations are not observed, neither the maps nor the data can be used to characterize the fishery completely. This is especially true for rarely-occurring species and when observed sample sizes are small. We urge caution when utilizing these data due to the complexity of groundfish management and fleet harvest dynamics. Grid cells representing less than 3 vessels and less than 10 hauls or sets are not shown due to confidentiality and to ensure adequate sample size. In the limited-entry fixed gear fishery, species discard rates (species discard weight / groundfish total catch (discard + retained weight)) are categorized by approximate quartile ranges and geo-referenced to 20 x 20 kilometer grid cells. The observed fixed gear set location (start location of fishing) was used to allocate data to 20 x 20 kilometer grid cells for calculation. Sixteen species were represented based on combined observer data from 2002-2006. The species included in this data product are dover sole (Microstomus pacificus), sablefish (Anoplopoma fimbria), longspine thornyhead (Sebastolobus altivelis), shortspine thornyhead (Sebastolobus alascanus), lingcod (Ophiodon elongatus), arrowtooth flounder (Atheresthes stomias), petrale sole (Eopsetta jordani), and the rockfishes (genus Sebastes), darkblotched rockfish (S. crameri), Pacific ocean perch (S. alutus), chilipepper (S. goodei), cowcod (S. levis), bocaccio (S. paucispinis), canary rockfish (S. pinniger), widow rockfish (S. entomelas), yelloweye rockfish (S. ruberrimus), and yellowtail rockfish (S. flavidus).\n\nPurpose: This data product was developed to provide basic groundfish discard distribution information for a wide variety of audiences. The West Coast Groundfish Observer Program conducts sampling of groundfish discarded by commercial fisheries along the entire continental U.S. West Coast. The seventeen species included in this data product are among those of most interest to the fisheries management and commercial fishing communities.\n\nData Credits: NOAA Fisheries, Northwest Fisheries Science Center, Fishery Resource Analysis & Monitoring Division, West Coast Groundfish Observer Program, Seattle, WA.\n\ncdm_data_type = Other\nVARIABLES:\nlongitude (Longitude (Center of 20x20 km Grid Cell), degrees_east)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosObsFixed2002_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosObsFixed2002_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosObsFixed2002/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Observer%20Fixed%20Gear%202002%202006.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosObsFixed2002.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosObsFixed2002&showErrors=false&email=", "NOAA NWFSC", "nwioosObsFixed2002"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002.graph", "", "", "public", "NWFSC Observer Trawl Data, off West Coast of US, 2002-2006", "Observer Trawl Data collected during 2002-2006 off West Coast of US.\n\nThis data product originates from data collected by fishery observers in the West Coast Groundfish Observer Program (WCGOP), Fishery Resource Analysis and Monitoring Division (FRAM) at the Northwest Fisheries Science Center, NOAA Fisheries. The WCGOP's goal is to improve total catch estimates by collecting information on the discarded catch (fish returned overboard at-sea) of west coast groundfish species. All data were collected according to standard protocols and data quality control established by the WCGOP. The observed portion of overall catch or landings in a fishery varies by coverage level. Since all fishing operations are not observed, neither the maps nor the data can be used to characterize the fishery completely. This is especially true for rarely-occurring species and when observed sample sizes are small. We urge caution when utilizing these data due to the complexity of groundfish management and fleet harvest dynamics. Grid cells representing less than 3 vessels and less than 10 hauls or sets are not shown due to confidentiality and to ensure adequate sample size. In the limited-entry groundfish bottom trawl fishery, species discard rates (species discard weight / groundfish total catch (discard + retained weight)) are categorized by approximate quartile ranges and geo-referenced to 10 x 10 kilometer grid cells. The observed trawl towline (line drawn from the start to end location of a trawl tow) was used to allocate data to 10 x 10 kilometer grid cells for calculation. Seventeen species were represented based on combined observer data from 2002-2006. The species included in this data product are dover sole (Microstomus pacificus), sablefish (Anoplopoma fimbria), longspine thornyhead (Sebastolobus altivelis), shortspine thornyhead (Sebastolobus alascanus), lingcod (Ophiodon elongatus), arrowtooth flounder (Atheresthes stomias), English sole (Parophrys vetulus), petrale sole (Eopsetta jordani), and the rockfishes (genus Sebastes), darkblotched rockfish (S. crameri), Pacific ocean perch (S. alutus), chilipepper (S. goodei), cowcod (S. levis), bocaccio (S. paucispinis), canary rockfish (S. pinniger), widow rockfish (S. entomelas), yelloweye rockfish (S. ruberrimus), and yellowtail rockfish (S. flavidus).\n\nPurpose: This data product was developed to provide basic groundfish discard distribution information for a wide variety of audiences. The West Coast Groundfish Observer Program conducts sampling of groundfish discarded by commercial fisheries along the entire continental U.S. West Coast. The seventeen species included in this data product are among those of most interest to the fisheries management and commercial fishing communities.\n\nData Credits: NOAA Fisheries, Northwest Fisheries Science Center, Fishery Resource Analysis & Monitoring Division, West Coast Groundfish Observer Program, Seattle, WA.\n\ncdm_data_type = Other\nVARIABLES:\nlongitude (Longitude (Center of 10x10 km Grid Cell), degrees_east)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosObsTrawl2002_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosObsTrawl2002_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosObsTrawl2002/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Observer%20Trawl%202002%202006.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosObsTrawl2002.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosObsTrawl2002&showErrors=false&email=", "NOAA NWFSC", "nwioosObsTrawl2002"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a.graph", "", "", "public", "OceanSITES KEO daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from the Kuroshio Extension Observatory (KEO) site nominally at 32.3N,144.6E, in the Kuroshio Extension recirculation gyre. The actual anchor position is different for each deployment, and this is a slack line mooring with a watch circle radius greater than 5km. For users performing inter comparisons, it may be important to use the actual position of the buoy from the Global Positioning System (GPS) data. This mooring has been instrumented with upper ocean and surface sensors since June 2004. Included in this file are sea temperatures and pressures from the surface to 525m depth, salinity and density (sigma-theta) from the surface to 400m depth, sea currents to 35m depth, a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and barometric pressure. Note that because this is a slack-line mooring, subsurface sensor depths vary with time, and hence one must use the observed and calculated water pressures to compute sensor depths. Also, due to the relatively large scope and different anchor positions, the positions of the buoy at the surface are included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndeptemp (Depth of each measurement, meters)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepth (m)\nPRES (water pressure, observed and calculated, decibar)\nPRES_QC (quality flag)\nPRES_DM (method of data processing)\n... (53 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/keo_121f_a3d0_3c0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/keo_121f_a3d0_3c0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/keo_121f_a3d0_3c0a/index.json", "https://www.pmel.noaa.gov/ocs/", "http://upwell.pfeg.noaa.gov/erddap/rss/keo_121f_a3d0_3c0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=keo_121f_a3d0_3c0a&showErrors=false&email=", "NOAA/PMEL", "keo_121f_a3d0_3c0a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f.graph", "", "", "public", "OceanSITES PAPA daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from station Papa at 50N,145W in the North Pacific. This taut-line mooring has been instrumented with upper ocean and surface sensors since June 2007. Included in this file are sea temperatures from the surface to 300 meters depth, salinity and density (sigma-theta) from the surface to 200m depth, sea currents at 5m and 35m depth, acoustic doppler profiles of zonal and meridional ocean current to from 30 to 158 meters depth, and a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and barometric pressure. Time series of buoy latitude and longitude are included as well.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each measurement, m)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepcur (Depth of each measurement, m)\nUCUR\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\ndeppsal (Depth of each measurement, m)\n... (43 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/papa_8bb5_dcd5_981f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/papa_8bb5_dcd5_981f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/papa_8bb5_dcd5_981f/index.json", "https://www.pmel.noaa.gov/ocs/", "http://upwell.pfeg.noaa.gov/erddap/rss/papa_8bb5_dcd5_981f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=papa_8bb5_dcd5_981f&showErrors=false&email=", "NOAA/PMEL", "papa_8bb5_dcd5_981f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219.graph", "", "", "public", "OceanSITES PIRATA daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from one of the Tropical Atmosphere/Ocean (TAO)/TRITON, Pilot Research Moored Array in the Tropical Atlantic (PIRATA), or Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) mooring sites in the tropical oceans. Included in this file are sea temperatures from the surface to 500 meters at most sites and deeper at others, salinity and potential density (sigma-theta) at the sea surface and deeper at some sites, sea currents at 10m depth and deeper at some sites, a variety of surface observations including winds, air temperature, relative humidity, shortwave solar radiation, longwave radiation, rain rate, barometric pressure. Buoy positions are also included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each TEMP measurement, m)\ndepcur (Depth of each current measurement)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndeppsal (Depth of each Salinity measurement)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\nPSAL (sea_water_practical_salinity)\nPSAL_QC\nPSAL_DM (method of data processing)\ndepden (Depth of each density measurement)\nheightwind (altitude, meters)\nUWND (zonal wind)\nVWND (meridional wind, m/s)\n... (44 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pirata_5922_7dcd_7219_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pirata_5922_7dcd_7219_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pirata_5922_7dcd_7219/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/pirata_5922_7dcd_7219.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pirata_5922_7dcd_7219&showErrors=false&email=", "NOAA/PMEL", "pirata_5922_7dcd_7219"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc.graph", "", "", "public", "OceanSITES TAO daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from one of the flux reference mooring sites in the tropical oceans. Included in this file are sea temperatures from the surface to 500m depth, salinity and density (sigma-theta) from the surface to typically 120m depth, sea currents typically at 10m depth and at some sites deeper, a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and sea level airpressure. Buoy positions are also included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each measurement, m)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\n... (42 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/tao_6eb4_e773_2fbc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/tao_6eb4_e773_2fbc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/tao_6eb4_e773_2fbc/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/tao_6eb4_e773_2fbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=tao_6eb4_e773_2fbc&showErrors=false&email=", "NOAA/PMEL", "tao_6eb4_e773_2fbc"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.graph", "", "", "public", "OSMC Argo Profile data", "OSMC Argo Profile data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\norganization_name\ncountry_name\nplatform_type_name\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nparameter_name\ndaily_obs_count\nobservation_depth\nobservation_value\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_PROFILERS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_PROFILERS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_PROFILERS/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_PROFILERS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_PROFILERS&showErrors=false&email=", "OSMC", "OSMC_PROFILERS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.graph", "", "", "public", "OSMC normalized observations from GTS", "OSMC normalized In-situ Real time GTS data\n\ncdm_data_type = Point\nVARIABLES:\nPLATFORM_CODE (Station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform\nparameter\nOBSERVATION_VALUE\nOBSERVATION_DEPTH\nCOUNTRY_NAME\norganization_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_Points_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_Points_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_Points/index.json", "https://www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_Points.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_Points&showErrors=false&email=", "OSMC", "OSMC_Points"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_417d_33ad_dead.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_417d_33ad_dead", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_417d_33ad_dead.graph", "", "", "public", "Pacific Island Network Marine Fish Monitoring Dataset - Surveys", "National Park Service Fish Stock Data\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\nhigherInstitutionCode\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\nisland\n... (67 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_417d_33ad_dead_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_417d_33ad_dead_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_417d_33ad_dead/index.json", "http://science.nature.nps.gov/im/units/pacn/monitoring/vs_fish_marine.cfm", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_417d_33ad_dead.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_417d_33ad_dead&showErrors=false&email=", "USDOI/NPS/NRSS/IMD/PACN", "hawaii_soest_417d_33ad_dead"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_31bb_eee9_ef0a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_31bb_eee9_ef0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_31bb_eee9_ef0a.graph", "", "", "public", "Pacific Island Network Marine Fish Monitoring Dataset - Transects", "The benthic marine community in the Pacific Island Network (PACN) is a complex ecologic system and a diverse taxonomic environment, including algae and corals and other invertebrates. Reef-building corals are the primary architectural organism and are sensitive to environmental degradation; therefore, they are a good indicator of overall health for nearshore marine ecosystems. Primary stressors to coral reefs include disease, bleaching, sedimentation, eutrophication, storms, and global climate change. The United Nations Environment Programme (UNEP) has proposed using coral reefs as a worldwide indicator ecosystem for global climate change (Spalding et al. 2004). For these reasons, the PACN has chosen to implement long term monitoring of benthic marine communities. Benthic marine communities is most closely linked with marine fish, and monitoring efforts will be conducted at the same time and location to maximize data value\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\n... (58 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_31bb_eee9_ef0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_31bb_eee9_ef0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_31bb_eee9_ef0a/index.json", "http://science.nature.nps.gov/im/units/pacn/monitoring/vs_fish_marine.cfm", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_31bb_eee9_ef0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_31bb_eee9_ef0a&showErrors=false&email=", "USDOI/NPS/NRSS/IMD/PACN", "hawaii_soest_31bb_eee9_ef0a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5673_517d_3b8c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5673_517d_3b8c.graph", "", "", "public", "PacIOOS Nearshore Sensor 01 (NS01): Waikiki Yacht Club, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS01 is located at the Waikiki Yacht Club and is fixed to the bridge pier. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to a piling ~0.5m below mean sea level.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5673_517d_3b8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5673_517d_3b8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5673_517d_3b8c/index.json", "https://www.pacioos.hawaii.edu/water/sensor-waikiki/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5673_517d_3b8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5673_517d_3b8c&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5673_517d_3b8c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_1273_fad1_0404", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_1273_fad1_0404.graph", "", "", "public", "PacIOOS Nearshore Sensor 02 (NS02): Hawaii Yacht Club, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS02 is located at a floating dock off the Hawaii Yacht Club. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to a floating dock just below the ocean surface.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_1273_fad1_0404_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_1273_fad1_0404_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_1273_fad1_0404/index.json", "https://www.pacioos.hawaii.edu/water/sensor-hawaiiyachtclub/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_1273_fad1_0404.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_1273_fad1_0404&showErrors=false&email=", "University of Hawaii", "hawaii_soest_1273_fad1_0404"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d787_1c35_208d", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d787_1c35_208d.graph", "", "", "public", "PacIOOS Nearshore Sensor 03 (NS03): Hilton Hawaiian Pier, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS03 is located at the Atlantis Pier off the Hilton Hawaiian Village. The instrument is a Sea-Bird Electronics model 37SMP. The package is located at approximately 2.0 meters below mean sea level.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d787_1c35_208d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d787_1c35_208d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d787_1c35_208d/index.json", "https://www.pacioos.hawaii.edu/water/sensor-atlantis/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d787_1c35_208d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d787_1c35_208d&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d787_1c35_208d"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_c9f9_c232_1fe9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_c9f9_c232_1fe9.graph", "", "", "public", "PacIOOS Nearshore Sensor 04 (NS04): Waikiki Aquarium, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS04 is located just off the Waikiki Aquarium and is fixed to the pier. The instrument is a Sea-Bird Electronics model 37SMP. The package is mounted on the bottom in approximately 2.0 to 2.5 meters ocean depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_c9f9_c232_1fe9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_c9f9_c232_1fe9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_c9f9_c232_1fe9/index.json", "https://www.pacioos.hawaii.edu/water/sensor-waikikiaquarium/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_c9f9_c232_1fe9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_c9f9_c232_1fe9&showErrors=false&email=", "University of Hawaii", "hawaii_soest_c9f9_c232_1fe9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b55f_a8f2_ad70", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b55f_a8f2_ad70.graph", "", "", "public", "PacIOOS Nearshore Sensor 05 (NS05): Pago Pago, American Samoa", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS05 is located at the Department of Marine and Wildlife Resources (DMWR) dock in Pago Pago Harbor, American Samoa and is mounted to the bottom in about 2 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_b55f_a8f2_ad70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_b55f_a8f2_ad70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_b55f_a8f2_ad70/index.json", "https://www.pacioos.hawaii.edu/water/sensor-pagopago/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_b55f_a8f2_ad70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_b55f_a8f2_ad70&showErrors=false&email=", "University of Hawaii", "hawaii_soest_b55f_a8f2_ad70"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f59_c29c_d820", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f59_c29c_d820.graph", "", "", "public", "PacIOOS Nearshore Sensor 06 (NS06): Pohnpei, Micronesia", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS06 is located at the dock in Pohnpei lagoon and is mounted to the bottom in about 1 meter of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8f59_c29c_d820_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8f59_c29c_d820_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8f59_c29c_d820/index.json", "https://www.pacioos.hawaii.edu/water/sensor-pohnpei/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8f59_c29c_d820.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8f59_c29c_d820&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8f59_c29c_d820"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_77b7_f5dd_cda3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_77b7_f5dd_cda3.graph", "", "", "public", "PacIOOS Nearshore Sensor 07 (NS07): Majuro, Marshall Islands", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS07 is located at the Uliga dock in Majuro, Republic of the Marshall Islands and is mounted to the bottom in about 2 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_77b7_f5dd_cda3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_77b7_f5dd_cda3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_77b7_f5dd_cda3/index.json", "https://www.pacioos.hawaii.edu/water/sensor-majuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_77b7_f5dd_cda3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_77b7_f5dd_cda3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_77b7_f5dd_cda3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e3c0_a956_de01", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e3c0_a956_de01.graph", "", "", "public", "PacIOOS Nearshore Sensor 08 (NS08): Koror, Palau", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS08 is located at the Palau International Coral Reef Center (PICRC) dock in Koror, Palau and is mounted to the bottom in about 3.5 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e3c0_a956_de01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e3c0_a956_de01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e3c0_a956_de01/index.json", "https://www.pacioos.hawaii.edu/water/sensor-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e3c0_a956_de01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e3c0_a956_de01&showErrors=false&email=", "University of Hawaii", "hawaii_soest_e3c0_a956_de01"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0113_b43d_e024", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0113_b43d_e024.graph", "", "", "public", "PacIOOS Nearshore Sensor 09 (NS09): Cetti Bay, Guam", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS09 is approximately 70 meters offshore in Cetti Bay, Guam and is mounted to the bottom in about 3 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_0113_b43d_e024_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_0113_b43d_e024_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_0113_b43d_e024/index.json", "https://www.pacioos.hawaii.edu/water/sensor-cetti/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_0113_b43d_e024.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_0113_b43d_e024&showErrors=false&email=", "University of Hawaii", "hawaii_soest_0113_b43d_e024"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f25e_31a1_16f1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f25e_31a1_16f1.graph", "", "", "public", "PacIOOS Nearshore Sensor 10 (NS10): Maunalua Bay, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS10 is located off the old pier in Maunalua Bay in Hawaii Kai. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to the pier at about 2m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f25e_31a1_16f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f25e_31a1_16f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f25e_31a1_16f1/index.json", "https://www.pacioos.hawaii.edu/water/sensor-maunalua/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f25e_31a1_16f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f25e_31a1_16f1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f25e_31a1_16f1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8668_b202_8233", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8668_b202_8233.graph", "", "", "public", "PacIOOS Nearshore Sensor 11 (NS11): Saipan, CNMI", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS11 is approximately 20 meters offshore of Puntan Babpot near the golf course at Laolao Bay on the east shore of Saipan in the Commonwealth of the Northern Mariana Islands (CNMI) and is mounted to the bottom in about 3 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8668_b202_8233_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8668_b202_8233_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8668_b202_8233/index.json", "https://www.pacioos.hawaii.edu/water/sensor-saipan/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8668_b202_8233.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8668_b202_8233&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8668_b202_8233"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b10c_af2d_3fe8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b10c_af2d_3fe8.graph", "", "", "public", "PacIOOS Nearshore Sensor 12 (NS12): Kalama Beach Park, Maui, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS12 is located at Kalama Beach Park in Kihei, Maui. The instrument is a 6600V2-4 Multi-parameter water quality logger. The package is fixed to a mooring at about 1.5m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\nwater_depth (Sensor depth, m)\nph (1)\noxygen (Dissolved oxygen concentration, kg m-3)\noxygen_saturation (Dissolved oxygen saturation, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_b10c_af2d_3fe8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_b10c_af2d_3fe8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_b10c_af2d_3fe8/index.json", "https://www.pacioos.hawaii.edu/water/sensor-kalama/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_b10c_af2d_3fe8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_b10c_af2d_3fe8&showErrors=false&email=", "University of Hawaii", "hawaii_soest_b10c_af2d_3fe8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_026f_4c1d_55e5", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_026f_4c1d_55e5.graph", "", "", "public", "PacIOOS Nearshore Sensor 13 (NS13): Kahului, Maui, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS13 is located in Kahului Harbor in Maui. The instrument is a 6600V2-4 Multi-parameter water quality logger. The package is fixed to a piling at about 1.5m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nwater_depth (Sensor depth (processed), m)\nwater_depth_raw (Sensor depth (raw), m)\nph (pH (processed), 1)\nph_raw (pH (raw), 1)\noxygen (Dissolved oxygen concentration (processed), kg m-3)\noxygen_raw (Dissolved oxygen concentration (raw), kg m-3)\noxygen_saturation (Dissolved oxygen saturation (processed), 1)\noxygen_saturation_raw (Dissolved oxygen saturation (raw), 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_026f_4c1d_55e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_026f_4c1d_55e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_026f_4c1d_55e5/index.json", "https://www.pacioos.hawaii.edu/water/sensor-kahului/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_026f_4c1d_55e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_026f_4c1d_55e5&showErrors=false&email=", "University of Hawaii", "hawaii_soest_026f_4c1d_55e5"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_191e_fe37_f9a0", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_191e_fe37_f9a0.graph", "", "", "public", "PacIOOS Nearshore Sensor 15 (NS15): Pago Bay, Guam", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS15 is in Pago Bay, Guam and is mounted to the bottom in about 1.5 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. This station was decommissioned and relocated after 2018 in order to minimize burial of the sensor by silt; see NS17 for data at the new mooring location.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_191e_fe37_f9a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_191e_fe37_f9a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_191e_fe37_f9a0/index.json", "https://www.pacioos.hawaii.edu/water/sensor-pago/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_191e_fe37_f9a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_191e_fe37_f9a0&showErrors=false&email=", "University of Hawaii", "hawaii_soest_191e_fe37_f9a0"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d5ba_831c_443a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d5ba_831c_443a.graph", "", "", "public", "PacIOOS Nearshore Sensor 16 (NS16): Wailupe, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS16 is located off Wailupe in Maunalua Bay in Aina Haina. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to the pier at about 1m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d5ba_831c_443a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d5ba_831c_443a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d5ba_831c_443a/index.json", "https://www.pacioos.hawaii.edu/water/sensor-wailupe/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d5ba_831c_443a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d5ba_831c_443a&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d5ba_831c_443a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_093e_cd55_43a3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_093e_cd55_43a3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_093e_cd55_43a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_093e_cd55_43a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_093e_cd55_43a3/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_093e_cd55_43a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_093e_cd55_43a3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_093e_cd55_43a3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc92_7d24_0627", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc92_7d24_0627.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_cc92_7d24_0627_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_cc92_7d24_0627_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_cc92_7d24_0627/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_cc92_7d24_0627.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_cc92_7d24_0627&showErrors=false&email=", "University of Hawaii", "hawaii_soest_cc92_7d24_0627"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f289_8170_ec45", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f289_8170_ec45.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f289_8170_ec45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f289_8170_ec45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f289_8170_ec45/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f289_8170_ec45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f289_8170_ec45&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f289_8170_ec45"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_36dd_cf4c_73a6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_36dd_cf4c_73a6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_36dd_cf4c_73a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_36dd_cf4c_73a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_36dd_cf4c_73a6/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_36dd_cf4c_73a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_36dd_cf4c_73a6&showErrors=false&email=", "University of Hawaii", "hawaii_soest_36dd_cf4c_73a6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5359_8678_82b1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5359_8678_82b1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5359_8678_82b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5359_8678_82b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5359_8678_82b1/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5359_8678_82b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5359_8678_82b1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5359_8678_82b1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_92c1_a2b0_55fb", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_92c1_a2b0_55fb.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_92c1_a2b0_55fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_92c1_a2b0_55fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_92c1_a2b0_55fb/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_92c1_a2b0_55fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_92c1_a2b0_55fb&showErrors=false&email=", "University of Hawaii", "hawaii_soest_92c1_a2b0_55fb"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_75b3_e52c_26a2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_75b3_e52c_26a2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_75b3_e52c_26a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_75b3_e52c_26a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_75b3_e52c_26a2/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_75b3_e52c_26a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_75b3_e52c_26a2&showErrors=false&email=", "University of Hawaii", "hawaii_soest_75b3_e52c_26a2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_a826_8633_00bb", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_a826_8633_00bb.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_a826_8633_00bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_a826_8633_00bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_a826_8633_00bb/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_a826_8633_00bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_a826_8633_00bb&showErrors=false&email=", "University of Hawaii", "hawaii_soest_a826_8633_00bb"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_076a_87b3_40a0", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_076a_87b3_40a0.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_076a_87b3_40a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_076a_87b3_40a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_076a_87b3_40a0/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_076a_87b3_40a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_076a_87b3_40a0&showErrors=false&email=", "University of Hawaii", "hawaii_soest_076a_87b3_40a0"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_4c82_4728_010b", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_4c82_4728_010b.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_4c82_4728_010b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_4c82_4728_010b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_4c82_4728_010b/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_4c82_4728_010b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_4c82_4728_010b&showErrors=false&email=", "University of Hawaii", "hawaii_soest_4c82_4728_010b"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_856b_7e66_8c3f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_856b_7e66_8c3f.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_856b_7e66_8c3f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_856b_7e66_8c3f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_856b_7e66_8c3f/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_856b_7e66_8c3f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_856b_7e66_8c3f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_856b_7e66_8c3f"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2f21_4063_cfec", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2f21_4063_cfec.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_2f21_4063_cfec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_2f21_4063_cfec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_2f21_4063_cfec/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_2f21_4063_cfec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_2f21_4063_cfec&showErrors=false&email=", "University of Hawaii", "hawaii_soest_2f21_4063_cfec"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "http://www.ogcnetwork.net/node/344", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/PRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2017, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2017, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2017, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_88cd_7dfb_ecfa.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_88cd_7dfb_ecfa", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_88cd_7dfb_ecfa.graph", "", "", "public", "US Pacific Islands, Coral Reef Monitoring, Fish Surveys, Belt Transects (BLT)", "Coral Reef Ecosytem Division (CRED) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_88cd_7dfb_ecfa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_88cd_7dfb_ecfa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_88cd_7dfb_ecfa/index.json", "https://www.pifsc.noaa.gov/cred/fish.php", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_88cd_7dfb_ecfa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_88cd_7dfb_ecfa&showErrors=false&email=", "USDOC/NOAA/NMFS/PIFSC/CRED", "hawaii_soest_88cd_7dfb_ecfa"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7448_8dd2_e529.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7448_8dd2_e529", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7448_8dd2_e529.graph", "", "", "public", "US Pacific Islands, Coral Reef Monitoring, Fish Surveys, Stationary Point Counts (nSPC)", "Coral Reef Ecosytem Division (CRED) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\n... (49 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_7448_8dd2_e529_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_7448_8dd2_e529_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_7448_8dd2_e529/index.json", "https://www.pifsc.noaa.gov/cred/fish.php", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_7448_8dd2_e529.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_7448_8dd2_e529&showErrors=false&email=", "USDOC/NOAA/NMFS/PIFSC/CRED", "hawaii_soest_7448_8dd2_e529"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_6dcb_e681_3eab.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_6dcb_e681_3eab", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_6dcb_e681_3eab.graph", "", "", "public", "US Pacific Islands, Coral Reef Monitoring, Fish Surveys, Stationary Point Counts (SPC)", "Coral Reef Ecosytem Division (CRED) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\n... (49 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_6dcb_e681_3eab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_6dcb_e681_3eab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_6dcb_e681_3eab/index.json", "https://www.pifsc.noaa.gov/cred/fish.php", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_6dcb_e681_3eab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_6dcb_e681_3eab&showErrors=false&email=", "USDOC/NOAA/NMFS/PIFSC/CRED", "hawaii_soest_6dcb_e681_3eab"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d98d_1d43_fef7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d98d_1d43_fef7.graph", "", "", "public", "Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\naltitude (height above mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\nair_temperature (Mean air temperature, Celsius)\nair_temperature_std (Standard deviation of air temperature, Celsius)\nair_temperature_max (Maximum air temperature, Celsius)\nair_temperature_max_time (Time of maximum air temperature, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (Minimum air temperature, Celsius)\nair_temperature_min_time (Time of minimum air temperature, seconds since 1970-01-01T00:00:00Z)\nwind_speed (Mean wind speed, m s-1)\nwind_speed_std (Standard deviation wind speed, m s-1)\nwind_speed_max (Maximum wind speed, m s-1)\nwind_speed_max_time (Time of maximum wind speed, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (Minimum wind speed, m s-1)\nwind_speed_min_time (Time of minimum wind speed, seconds since 1970-01-01T00:00:00Z)\nwind_from_direction (degrees)\nwind_from_direction_std (Standard deviation of wind direction, degrees)\nrainfall_amount (Rainfall total, mm)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d98d_1d43_fef7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d98d_1d43_fef7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d98d_1d43_fef7/index.json", "http://www.coralreefresearchfoundation.org", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d98d_1d43_fef7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d98d_1d43_fef7&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "hawaii_soest_d98d_1d43_fef7"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whoiSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whoiSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whoiSos.graph", "", "", "public", "WHOI MVCO 12m Node ADCP SOS, 2008-present", "Wave observations from the 12m node ADCP in the Martha's Vineyard Coastal Observatory (MVCO) in the northwest Atlantic in coastal waters of North America. Extensive, detailed documentation is available in these .xml files:\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/MVCO_ObservingSystem.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/ADCP_System.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/MVCO_Workhorse_1200.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/RDI_Workhorse_1200.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Pressure_Obs_Process.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Velocity_Obs_Process.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Pressure_QC_Chain.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Velocity_QC_Chain.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/PUV_Analysis.xml\n\nFor this dataset, if you want the most recent data, you MUST change the default end time constraint to be a time that is slightly (a few seconds or a few minutes) in the past. The source data server does not allow end time constraints that are after the exact current time.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\npressure (Mean Sea Water Pressure, cm)\nwaveHeightFromPressure (Wave Height from Pressure, cm)\nwavePeriodFromPressure (Wave Period from Pressure, s)\nloCutoffFrequency (Low Cutoff Frequency, Hz)\nhiCutoffFrequency (High Cutoff Frequency, Hz)\nwaveHeightAll (Wave Height All, cm)\nswell (cm)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whoiSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whoiSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whoiSos/index.json", "https://www.whoi.edu/mvco", "http://upwell.pfeg.noaa.gov/erddap/rss/whoiSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoiSos&showErrors=false&email=", "Woods Hole Oceanographic Institution", "whoiSos"] + ] + } + } + recorded_at: 2019-07-19 19:13:11 GMT + recorded_with: vcr/0.2.6, webmockr/0.3.4 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.8.1.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Fri, 19 Jul 2019 19:13:46 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Fri, 19 Jul 2019 19:13:46 GMT + xdods-server: dods/3.7 + erddap-server: '2.01' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://upwell.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_01af_e372_5bb6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_01af_e372_5bb6.graph", "", "", "public", "AIS Ship Traffic: Hawaii: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_01af_e372_5bb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_01af_e372_5bb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_01af_e372_5bb6/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_01af_e372_5bb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_01af_e372_5bb6&showErrors=false&email=", "University of Hawaii", "hawaii_soest_01af_e372_5bb6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f70b_c777_2d0b", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f70b_c777_2d0b.graph", "", "", "public", "AIS Ship Traffic: Johnston Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f70b_c777_2d0b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f70b_c777_2d0b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f70b_c777_2d0b/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f70b_c777_2d0b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f70b_c777_2d0b&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f70b_c777_2d0b"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_be9a_9be0_1f0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_be9a_9be0_1f0a.graph", "", "", "public", "AIS Ship Traffic: Mariana and Wake: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_be9a_9be0_1f0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_be9a_9be0_1f0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_be9a_9be0_1f0a/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_be9a_9be0_1f0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_be9a_9be0_1f0a&showErrors=false&email=", "University of Hawaii", "hawaii_soest_be9a_9be0_1f0a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5742_4f35_ff55", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5742_4f35_ff55.graph", "", "", "public", "AIS Ship Traffic: Rose Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5742_4f35_ff55_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5742_4f35_ff55_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5742_4f35_ff55/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5742_4f35_ff55.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5742_4f35_ff55&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5742_4f35_ff55"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_490d_1198_15c1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_490d_1198_15c1.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_490d_1198_15c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_490d_1198_15c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_490d_1198_15c1/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_490d_1198_15c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_490d_1198_15c1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_490d_1198_15c1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0956_e939_cefc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0956_e939_cefc.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Velocity", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean current velocity at the ACO from a 250 kHz SonTek acoustic doppler current profiler (ADCP) at 1.83 m above the ocean bottom. Velocities are flagged bad if the amplitude is excessively low or high. An amplitude is high if it exceeds the average of the ping before and the ping after by 20 counts. An amplitude is low if less than 6 counts. After this the velocities are flagged bad if the absolute deviation of the vertical velocity from its ensemble median exceeds 0.15 m/s or if its value is less than -0.25 m/s.\n\ncdm_data_type = Profile\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each location, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\neastward_sea_water_velocity (current east component, meters/second)\nnorthward_sea_water_velocity (current north component, meters/second)\nupward_sea_water_velocity (current upward component, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_0956_e939_cefc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_0956_e939_cefc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_0956_e939_cefc/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_0956_e939_cefc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_0956_e939_cefc&showErrors=false&email=", "University of Hawaii", "hawaii_soest_0956_e939_cefc"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d1bf_1535_741f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d1bf_1535_741f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d1bf_1535_741f.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Bottom Pressure Recorder (BPR)", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean pressure at the ACO from a Bottom Pressure Recorder (BPR).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\npressure (sea water pressure, psi)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d1bf_1535_741f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d1bf_1535_741f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d1bf_1535_741f/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d1bf_1535_741f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d1bf_1535_741f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d1bf_1535_741f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc9b_209f_ea2f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc9b_209f_ea2f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc9b_209f_ea2f.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Hydrophone Acoustics", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographi\nc observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides sound files of ocean acoustics at the ocean floor from the ACO hydrophone.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nelapsedTime (Elapsed Time, seconds)\nchannel_1\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_cc9b_209f_ea2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_cc9b_209f_ea2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_cc9b_209f_ea2f/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_cc9b_209f_ea2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_cc9b_209f_ea2f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_cc9b_209f_ea2f"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/database-tables-description", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/database-tables-description", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/cast-table-column-descriptions", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://upwell.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the May 2019 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://www.usgodae.org/cgi-bin/datalist.pl?summary=Go&dset=fnmoc_obs_sfcobs", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1995.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1995", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1995.graph", "", "", "public", "Hake Survey ADCP (1995)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp1995_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp1995_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp1995/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/1995%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp1995.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp1995&showErrors=false&email=", "OSU", "nwioosAdcp1995"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1998.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1998", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1998.graph", "", "", "public", "Hake Survey ADCP (1998)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp1998_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp1998_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp1998/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/1998%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp1998.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp1998&showErrors=false&email=", "OSU", "nwioosAdcp1998"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2001.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2001", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2001.graph", "", "", "public", "Hake Survey ADCP (2001)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (Altitude, m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp2001_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp2001_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp2001/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/2001%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp2001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp2001&showErrors=false&email=", "OSU", "nwioosAdcp2001"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2003.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2003", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2003.graph", "", "", "public", "Hake Survey ADCP (2003)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp2003_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp2003_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp2003/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/2003%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp2003.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp2003&showErrors=false&email=", "OSU", "nwioosAdcp2003"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2005.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2005", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2005.graph", "", "", "public", "Hake Survey ADCP (2005)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp2005_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp2005_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp2005/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/2005%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp2005.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp2005&showErrors=false&email=", "OSU", "nwioosAdcp2005"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e5b4_d905_99ef", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e5b4_d905_99ef.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e5b4_d905_99ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e5b4_d905_99ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e5b4_d905_99ef/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e5b4_d905_99ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e5b4_d905_99ef&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "hawaii_soest_e5b4_d905_99ef"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_190f_1fe8_4cc4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_190f_1fe8_4cc4.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitors water quality at several beaches across the island of Maui in the State of Hawaii. This community-based monitoring effort provides valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites are also monitored for harmful bacteria levels of Enterococcus. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. \n\nData are managed through an online repository, the Coral Reef Monitoring Data Portal (http://monitoring.coral.org), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection is coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\n... (10 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_190f_1fe8_4cc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_190f_1fe8_4cc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_190f_1fe8_4cc4/index.json", "http://monitoring.coral.org", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_190f_1fe8_4cc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_190f_1fe8_4cc4&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "hawaii_soest_190f_1fe8_4cc4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys.\n\nThe data is from NOAA NDBC. It has been reformatted by NOAA Coastwatch,\nWest Coast Node. This dataset only has the data that is closest to a\ngiven hour. The time values in the dataset are rounded to the nearest hour.\n\nThis dataset has both historical data (quality controlled, before\n2019-06-01T00:00:00Z) and near real time data (less quality controlled, from\n2019-06-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Name)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nwd (Wind Direction, degrees_true)\nwspd (Wind Speed, m s-1)\ngst (Wind Gust Speed, m s-1)\nwvht (Wave Height, m)\ndpd (Wave Period, Dominant, s)\napd (Wave Period, Average, s)\nmwd (Wave Direction, degrees_true)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.graph", "", "", "public", "NEFSC Continuous Plankton Recorder", "A summary for the data\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ncruise\nsample\nlatitude (degrees_north)\nlongitude (degrees_east)\nphyto_color_indx (Phytoplankton Color Index)\nmarmap_tax_code (Marmap Taxonomic Code)\nmarmap_stage_code\nabundance (per 100 cubic meters)\nlife_stage\ntaxonomic_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/wocecpr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/wocecpr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/wocecpr/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "http://upwell.pfeg.noaa.gov/erddap/rss/wocecpr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=wocecpr&showErrors=false&email=", "NEFSC", "wocecpr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp.graph", "", "", "public", "NOAA NDBC SOS, 2006-present, sea_water_temperature", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_water_temperature data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWTemp/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWTemp&showErrors=false&email=", "NOAA NDBC", "ndbcSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind.graph", "", "", "public", "NOAA NDBC SOS, 2006-present, winds", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have winds data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwind_from_direction (degrees_true)\nwind_speed (m s-1)\nwind_speed_of_gust (m s-1)\nupward_air_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWind_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWind_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWind/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWind.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWind&showErrors=false&email=", "NOAA NDBC", "ndbcSosWind"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents.graph", "", "", "public", "NOAA NDBC SOS, 2007-present, currents", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have currents data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\nWARNING: Always check the quality_flags before using this data. A simple criterion is: only use a row of data if the first quality_flags value for the row (overall bin status) is 3 (good data/passed quality test). You can do this by appending &quality_flags=~\"3;.*\" to your request.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nbin (count)\ndirection_of_sea_water_velocity (degrees_true)\nsea_water_speed (cm/s)\nupward_sea_water_velocity (cm/s)\nerror_velocity (cm/s)\nplatform_orientation (degrees_true)\nplatform_pitch_angle (degree)\nplatform_roll_angle (degree)\nsea_water_temperature (Cel)\npct_good_3_beam (Percent Good 3 Beam, percent)\npct_good_4_beam (Percent Good 4 Beam, percent)\npct_rejected (Percent Rejected, percent)\npct_bad (Percent Bad, percent)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosCurrents_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosCurrents_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosCurrents/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosCurrents.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosCurrents&showErrors=false&email=", "NOAA NDBC", "ndbcSosCurrents"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity.graph", "", "", "public", "NOAA NDBC SOS, 2007-present, sea_water_practical_salinity", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_water_practical_salinity data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosSalinity/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosSalinity&showErrors=false&email=", "NOAA NDBC", "ndbcSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel.graph", "", "", "public", "NOAA NDBC SOS, 2008-present, sea_floor_depth_below_sea_surface", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_floor_depth_below_sea_surface data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\naveraging_interval (s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWLevel/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWLevel&showErrors=false&email=", "NOAA NDBC", "ndbcSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "", "public", "North Pacific High, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_43a8_6d6d_9052.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_43a8_6d6d_9052", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_43a8_6d6d_9052.graph", "", "", "public", "Northwestern Hawaiian Islands, Coral Reef Monitoring, Fish Surveys, Belt Transects (BLT)", "Papahanaumokuakea Marine National Monument (PMNM) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_43a8_6d6d_9052_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_43a8_6d6d_9052_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_43a8_6d6d_9052/index.json", "http://www.papahanaumokuakea.gov/research/welcome.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_43a8_6d6d_9052.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_43a8_6d6d_9052&showErrors=false&email=", "USDOC/NOAA/NOS/PMNM", "hawaii_soest_43a8_6d6d_9052"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_68f2_d17d_d413.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_68f2_d17d_d413", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_68f2_d17d_d413.graph", "", "", "public", "Northwestern Hawaiian Islands, Coral Reef Monitoring, Fish Surveys, Belt Transects (vBLT)", "Papahanaumokuakea Marine National Monument (PMNM) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_68f2_d17d_d413_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_68f2_d17d_d413_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_68f2_d17d_d413/index.json", "http://www.papahanaumokuakea.gov/research/welcome.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_68f2_d17d_d413.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_68f2_d17d_d413&showErrors=false&email=", "USDOC/NOAA/NOS/PMNM", "hawaii_soest_68f2_d17d_d413"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_ec1c_1aa4_ddaf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_ec1c_1aa4_ddaf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_ec1c_1aa4_ddaf.graph", "", "", "public", "Northwestern Hawaiian Islands, Coral Reef Monitoring, Fish Surveys, Stationary Point Counts (nSPC)", "Papahanaumokuakea Marine National Monument (PMNM) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_ec1c_1aa4_ddaf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_ec1c_1aa4_ddaf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_ec1c_1aa4_ddaf/index.json", "http://www.papahanaumokuakea.gov/research/welcome.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_ec1c_1aa4_ddaf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_ec1c_1aa4_ddaf&showErrors=false&email=", "USDOC/NOAA/NOS/PMNM", "hawaii_soest_ec1c_1aa4_ddaf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosCoral.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosCoral", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosCoral.graph", "", "", "public", "NWFSC Coral Data Collected off West Coast of US (1980-2005)", "This data contains the locations of some observations of\ncold-water/deep-sea corals off the west coast of the United States.\nRecords of coral catch originate from bottom trawl surveys conducted\nfrom 1980 to 2001 by the Alaska Fisheries Science Center (AFSC) and\n2001 to 2005 by the Northwest Fisheries Science Center (NWFSC).\nLocational information represent the vessel mid positions (for AFSC\nsurvey trawls) or \"best position\" (i.e., priority order: 1) gear\nmidpoint 2) vessel midpoint, 3) vessel start point, 4) vessel end\npoint, 5) station coordinates for NWFSC survey trawls) conducted as\npart of regular surveys of groundfish off the coasts of Washington,\nOregon and California by NOAA Fisheries. Only records where corals\nwere identified in the total catch are included. Each catch sample\nof coral was identified down to the most specific taxonomic level\npossible by the biologists onboard, therefore identification was\ndependent on their expertise. When positive identification was not\npossible, samples were sometimes archived for future identification\nby systematist experts. Data were compiled by the NWFSC, Fishery\nResource Analysis & Monitoring Division\n\nPurpose - Examination of the spatial and temporal distributions of\nobservations of cold-water/deep-sea corals off the west coast of the\nUnited States, including waters off the states of Washington, Oregon,\nand California. It is important to note that these records represent\nonly presence of corals in the area swept by the trawl gear. Since\nbottom trawls used during these surveys are not designed to sample\nepibenthic invertebrates, absence of corals in the catch does not\nnecessary mean they do not occupy the area swept by the trawl gear.\n\nData Credits - NOAA Fisheries, Alaska Fisheries Science Center,\nResource Assessment & Conservation Engineering Division (RACE) NOAA\nFisheries, Northwest Fisheries Science Center, Fishery Resource\nAnalysis & Monitoring Division (FRAM)\n\nContact: Curt Whitmire, NOAA NWFSC, Curt.Whitmire@noaa.gov\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosCoral_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosCoral_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosCoral/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Coral%201980-2005.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosCoral.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosCoral&showErrors=false&email=", "NOAA NWFSC", "nwioosCoral"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosGroundfish.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosGroundfish", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosGroundfish.graph", "", "", "public", "NWFSC Groundfish Data for U.S. West Coast (2003-2005)", "The data available for downloading is summarized data from the 2003-2005\nU.S. West Coast Bottom Trawl Survey (WCGTS) of Groundfish Resources off\nWashington, Oregon and California.\n\nThe Northwest Fisheries Science Center's Fishery Resource Analysis and\nMonitoring Division (FRAM) completed the sixth in an annual series of\ngroundfish bottom trawl surveys in 2003. The survey was conducted June\n24 to October 23, 2003 and targeted the commercial groundfish resources\ninhabiting depths of 55 to 1,280 meters [m], (30 - 700 fathoms [fm])\nfrom the area off Cape Flattery, Washington (latitude [lat.] 48\u00b010'N)\nto the U.S.-Mexican border (lat. 32\u00b030'N) using chartered West Coast\ncommercial trawlers. These ongoing series of annual surveys, conducted\nby FRAM since 1998, are designed to monitor long-term trends in\ndistribution and abundance of west coast groundfish, especially those\nspecies of management concern. The 2003 survey represents the first\nyear in which the depth range was expanded to include both the\ncontinental shelf (55 - 183 m) and continental slope (183 - 1,280 m)\narea and the first year in which a stratified-random sampling design\nwas adopted.\n\nIn 2003, a total of 574 successful tows were completed out of 643\nattempts. Simrad ITI net mensuration data, as well as global\npositioning system (GPS) navigation data and bottom contact sensor\ndata, used to document performance (e.g. bottom tending), were\nobtained for most tows.\n\nAn Aberdeen-style net with a small mesh (2\" stretched measure or less)\nliner in the codend (to retain smaller specimens) was used to sample\nfish biomass. Target duration of each tow was 15 minutes. Tow\nduration was the time between touchdown and lift-off of the trawl net\nfrom the seafloor based on readings from bottom contact sensors.\n\nCatches were sorted to species, aggregate or other appropriate\ntaxonomic level and then weighed using an electronic,\nmotion-compensated scale. A total of 517 species or families (fish\nand invertebrates) were identified within the survey area. Although\nbiological sampling effort continues to include Dover sole\n(Microstomus pacificus), shortspine thornyhead (Sebastolobus\nalascanus), longspine thornyhead (Sebastolobus altivelis), and\nsablefish (Anoplopoma fimbria), focus has increasingly shifted to\nencompass all groundfish species of management concern. Up to 100\nlength measurements, sex determinations, and individual weights\nand up to 25 age structures were collected per haul for these species.\n\ncdm_data_type = Trajectory\nVARIABLES:\nhaul_id (Haul Identifier)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosGroundfish_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosGroundfish_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosGroundfish/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Groundfish%20Survey%202003-2005.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosGroundfish.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosGroundfish&showErrors=false&email=", "NOAA NWFSC", "nwioosGroundfish"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails.graph", "", "", "public", "NWFSC HUD Fish Species Details", "Habitat Use Database (HUD) Fish Species Details compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\nspecies_id\ncommon_name\nscientific_name\nlife_stage\nabsolute_min_depth (m)\npreferred_min_depth (m)\nabsolute_max_depth (m)\npreferred_max_depth (m)\nabsolute_min_temp (Absolute Min Temperature, degree_C)\npreferred_min_temp (Preferred Min Temperature, degree_C)\nabsolute_max_temp (Absolute Max Temperature, degree_C)\npreferred_max_temp (Preferred Max Temperature, degree_C)\nabsolute_min_latitude (degrees_north)\npreferred_min_latitude (degrees_north)\nabsolute_max_latitude (degrees_north)\npreferred_max_latitude (degrees_north)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudFishDetails/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Fish%20Species%20Details.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudFishDetails.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudFishDetails&showErrors=false&email=", "NOAA NWFSC", "nwioosHudFishDetails"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishOccur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishOccur", "", "", "", "public", "NWFSC HUD Fish Species Occurrence", "Habitat Use Database (HUD) Fish Species Occurrence data compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\ncommon_name\nscientific_name\nlife_stage\ngender\nhabitat_association\nseason\nlevel_1_habitat\nlevel_2_habitat\nlevel_3_habitat\nlevel_4_habitat\nactivity\nactivity_association\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudFishOccur/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Fish%20Species%20Occurrence.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudFishOccur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudFishOccur&showErrors=false&email=", "NOAA NWFSC", "nwioosHudFishOccur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudPredPrey.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudPredPrey", "", "", "", "public", "NWFSC HUD Predators and Prey", "Habitat Use Database (HUD) Predators and Prey data compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\necoregion\nseason\nlevel_1_habitat\nlevel_2_habitat\nlevel_3_habitat\nlevel_4_habitat\nscientific_name\ngender\nlife_stage\nprey_name\nprey_gender\nprey_life_stage\npredator_name\npredator_gender\npredator_life_stage\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudPredPrey/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Predators%20and%20Prey.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudPredPrey.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudPredPrey&showErrors=false&email=", "NOAA NWFSC", "nwioosHudPredPrey"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudRef.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudRef", "", "", "", "public", "NWFSC HUD References", "Habitat Use Database (HUD) References compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\nseason\nlevel_1_habitat\nlevel_2_habitat\nlevel_3_habitat\nlevel_4_habitat\nscientific_name\ngender\nlife_stage\nreference_to\nreference_type\nauthors\npublication_year\nreference_name\neditor\npublication_name\npublisher_city\npublisher\nvolume\nnumber\nreferenced_pages\nthesis_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudRef/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20References.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudRef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudRef&showErrors=false&email=", "NOAA NWFSC", "nwioosHudRef"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002.graph", "", "", "public", "NWFSC Observer Fixed Gear Data, off West Coast of US, 2002-2006", "Observer Fixed Gear Data collected during 2002-2006 off West Coast of US.\n\nThis data product originates from data collected by fishery observers in the West Coast Groundfish Observer Program (WCGOP), Fishery Resource Analysis and Monitoring Division (FRAM) at the Northwest Fisheries Science Center, NOAA Fisheries. The WCGOP's goal is to improve total catch estimates by collecting information on the discarded catch (fish returned overboard at-sea) of west coast groundfish species. All data were collected according to standard protocols and data quality control established by the WCGOP. The observed portion of overall catch or landings in a fishery varies by coverage level. Since all fishing operations are not observed, neither the maps nor the data can be used to characterize the fishery completely. This is especially true for rarely-occurring species and when observed sample sizes are small. We urge caution when utilizing these data due to the complexity of groundfish management and fleet harvest dynamics. Grid cells representing less than 3 vessels and less than 10 hauls or sets are not shown due to confidentiality and to ensure adequate sample size. In the limited-entry fixed gear fishery, species discard rates (species discard weight / groundfish total catch (discard + retained weight)) are categorized by approximate quartile ranges and geo-referenced to 20 x 20 kilometer grid cells. The observed fixed gear set location (start location of fishing) was used to allocate data to 20 x 20 kilometer grid cells for calculation. Sixteen species were represented based on combined observer data from 2002-2006. The species included in this data product are dover sole (Microstomus pacificus), sablefish (Anoplopoma fimbria), longspine thornyhead (Sebastolobus altivelis), shortspine thornyhead (Sebastolobus alascanus), lingcod (Ophiodon elongatus), arrowtooth flounder (Atheresthes stomias), petrale sole (Eopsetta jordani), and the rockfishes (genus Sebastes), darkblotched rockfish (S. crameri), Pacific ocean perch (S. alutus), chilipepper (S. goodei), cowcod (S. levis), bocaccio (S. paucispinis), canary rockfish (S. pinniger), widow rockfish (S. entomelas), yelloweye rockfish (S. ruberrimus), and yellowtail rockfish (S. flavidus).\n\nPurpose: This data product was developed to provide basic groundfish discard distribution information for a wide variety of audiences. The West Coast Groundfish Observer Program conducts sampling of groundfish discarded by commercial fisheries along the entire continental U.S. West Coast. The seventeen species included in this data product are among those of most interest to the fisheries management and commercial fishing communities.\n\nData Credits: NOAA Fisheries, Northwest Fisheries Science Center, Fishery Resource Analysis & Monitoring Division, West Coast Groundfish Observer Program, Seattle, WA.\n\ncdm_data_type = Other\nVARIABLES:\nlongitude (Longitude (Center of 20x20 km Grid Cell), degrees_east)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosObsFixed2002_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosObsFixed2002_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosObsFixed2002/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Observer%20Fixed%20Gear%202002%202006.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosObsFixed2002.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosObsFixed2002&showErrors=false&email=", "NOAA NWFSC", "nwioosObsFixed2002"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002.graph", "", "", "public", "NWFSC Observer Trawl Data, off West Coast of US, 2002-2006", "Observer Trawl Data collected during 2002-2006 off West Coast of US.\n\nThis data product originates from data collected by fishery observers in the West Coast Groundfish Observer Program (WCGOP), Fishery Resource Analysis and Monitoring Division (FRAM) at the Northwest Fisheries Science Center, NOAA Fisheries. The WCGOP's goal is to improve total catch estimates by collecting information on the discarded catch (fish returned overboard at-sea) of west coast groundfish species. All data were collected according to standard protocols and data quality control established by the WCGOP. The observed portion of overall catch or landings in a fishery varies by coverage level. Since all fishing operations are not observed, neither the maps nor the data can be used to characterize the fishery completely. This is especially true for rarely-occurring species and when observed sample sizes are small. We urge caution when utilizing these data due to the complexity of groundfish management and fleet harvest dynamics. Grid cells representing less than 3 vessels and less than 10 hauls or sets are not shown due to confidentiality and to ensure adequate sample size. In the limited-entry groundfish bottom trawl fishery, species discard rates (species discard weight / groundfish total catch (discard + retained weight)) are categorized by approximate quartile ranges and geo-referenced to 10 x 10 kilometer grid cells. The observed trawl towline (line drawn from the start to end location of a trawl tow) was used to allocate data to 10 x 10 kilometer grid cells for calculation. Seventeen species were represented based on combined observer data from 2002-2006. The species included in this data product are dover sole (Microstomus pacificus), sablefish (Anoplopoma fimbria), longspine thornyhead (Sebastolobus altivelis), shortspine thornyhead (Sebastolobus alascanus), lingcod (Ophiodon elongatus), arrowtooth flounder (Atheresthes stomias), English sole (Parophrys vetulus), petrale sole (Eopsetta jordani), and the rockfishes (genus Sebastes), darkblotched rockfish (S. crameri), Pacific ocean perch (S. alutus), chilipepper (S. goodei), cowcod (S. levis), bocaccio (S. paucispinis), canary rockfish (S. pinniger), widow rockfish (S. entomelas), yelloweye rockfish (S. ruberrimus), and yellowtail rockfish (S. flavidus).\n\nPurpose: This data product was developed to provide basic groundfish discard distribution information for a wide variety of audiences. The West Coast Groundfish Observer Program conducts sampling of groundfish discarded by commercial fisheries along the entire continental U.S. West Coast. The seventeen species included in this data product are among those of most interest to the fisheries management and commercial fishing communities.\n\nData Credits: NOAA Fisheries, Northwest Fisheries Science Center, Fishery Resource Analysis & Monitoring Division, West Coast Groundfish Observer Program, Seattle, WA.\n\ncdm_data_type = Other\nVARIABLES:\nlongitude (Longitude (Center of 10x10 km Grid Cell), degrees_east)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosObsTrawl2002_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosObsTrawl2002_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosObsTrawl2002/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Observer%20Trawl%202002%202006.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosObsTrawl2002.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosObsTrawl2002&showErrors=false&email=", "NOAA NWFSC", "nwioosObsTrawl2002"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a.graph", "", "", "public", "OceanSITES KEO daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from the Kuroshio Extension Observatory (KEO) site nominally at 32.3N,144.6E, in the Kuroshio Extension recirculation gyre. The actual anchor position is different for each deployment, and this is a slack line mooring with a watch circle radius greater than 5km. For users performing inter comparisons, it may be important to use the actual position of the buoy from the Global Positioning System (GPS) data. This mooring has been instrumented with upper ocean and surface sensors since June 2004. Included in this file are sea temperatures and pressures from the surface to 525m depth, salinity and density (sigma-theta) from the surface to 400m depth, sea currents to 35m depth, a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and barometric pressure. Note that because this is a slack-line mooring, subsurface sensor depths vary with time, and hence one must use the observed and calculated water pressures to compute sensor depths. Also, due to the relatively large scope and different anchor positions, the positions of the buoy at the surface are included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndeptemp (Depth of each measurement, meters)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepth (m)\nPRES (water pressure, observed and calculated, decibar)\nPRES_QC (quality flag)\nPRES_DM (method of data processing)\n... (53 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/keo_121f_a3d0_3c0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/keo_121f_a3d0_3c0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/keo_121f_a3d0_3c0a/index.json", "https://www.pmel.noaa.gov/ocs/", "http://upwell.pfeg.noaa.gov/erddap/rss/keo_121f_a3d0_3c0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=keo_121f_a3d0_3c0a&showErrors=false&email=", "NOAA/PMEL", "keo_121f_a3d0_3c0a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f.graph", "", "", "public", "OceanSITES PAPA daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from station Papa at 50N,145W in the North Pacific. This taut-line mooring has been instrumented with upper ocean and surface sensors since June 2007. Included in this file are sea temperatures from the surface to 300 meters depth, salinity and density (sigma-theta) from the surface to 200m depth, sea currents at 5m and 35m depth, acoustic doppler profiles of zonal and meridional ocean current to from 30 to 158 meters depth, and a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and barometric pressure. Time series of buoy latitude and longitude are included as well.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each measurement, m)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepcur (Depth of each measurement, m)\nUCUR\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\ndeppsal (Depth of each measurement, m)\n... (43 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/papa_8bb5_dcd5_981f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/papa_8bb5_dcd5_981f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/papa_8bb5_dcd5_981f/index.json", "https://www.pmel.noaa.gov/ocs/", "http://upwell.pfeg.noaa.gov/erddap/rss/papa_8bb5_dcd5_981f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=papa_8bb5_dcd5_981f&showErrors=false&email=", "NOAA/PMEL", "papa_8bb5_dcd5_981f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219.graph", "", "", "public", "OceanSITES PIRATA daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from one of the Tropical Atmosphere/Ocean (TAO)/TRITON, Pilot Research Moored Array in the Tropical Atlantic (PIRATA), or Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) mooring sites in the tropical oceans. Included in this file are sea temperatures from the surface to 500 meters at most sites and deeper at others, salinity and potential density (sigma-theta) at the sea surface and deeper at some sites, sea currents at 10m depth and deeper at some sites, a variety of surface observations including winds, air temperature, relative humidity, shortwave solar radiation, longwave radiation, rain rate, barometric pressure. Buoy positions are also included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each TEMP measurement, m)\ndepcur (Depth of each current measurement)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndeppsal (Depth of each Salinity measurement)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\nPSAL (sea_water_practical_salinity)\nPSAL_QC\nPSAL_DM (method of data processing)\ndepden (Depth of each density measurement)\nheightwind (altitude, meters)\nUWND (zonal wind)\nVWND (meridional wind, m/s)\n... (44 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pirata_5922_7dcd_7219_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pirata_5922_7dcd_7219_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pirata_5922_7dcd_7219/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/pirata_5922_7dcd_7219.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pirata_5922_7dcd_7219&showErrors=false&email=", "NOAA/PMEL", "pirata_5922_7dcd_7219"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc.graph", "", "", "public", "OceanSITES TAO daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from one of the flux reference mooring sites in the tropical oceans. Included in this file are sea temperatures from the surface to 500m depth, salinity and density (sigma-theta) from the surface to typically 120m depth, sea currents typically at 10m depth and at some sites deeper, a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and sea level airpressure. Buoy positions are also included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each measurement, m)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\n... (42 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/tao_6eb4_e773_2fbc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/tao_6eb4_e773_2fbc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/tao_6eb4_e773_2fbc/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/tao_6eb4_e773_2fbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=tao_6eb4_e773_2fbc&showErrors=false&email=", "NOAA/PMEL", "tao_6eb4_e773_2fbc"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.graph", "", "", "public", "OSMC Argo Profile data", "OSMC Argo Profile data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\norganization_name\ncountry_name\nplatform_type_name\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nparameter_name\ndaily_obs_count\nobservation_depth\nobservation_value\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_PROFILERS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_PROFILERS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_PROFILERS/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_PROFILERS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_PROFILERS&showErrors=false&email=", "OSMC", "OSMC_PROFILERS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.graph", "", "", "public", "OSMC normalized observations from GTS", "OSMC normalized In-situ Real time GTS data\n\ncdm_data_type = Point\nVARIABLES:\nPLATFORM_CODE (Station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform\nparameter\nOBSERVATION_VALUE\nOBSERVATION_DEPTH\nCOUNTRY_NAME\norganization_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_Points_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_Points_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_Points/index.json", "https://www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_Points.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_Points&showErrors=false&email=", "OSMC", "OSMC_Points"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_417d_33ad_dead.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_417d_33ad_dead", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_417d_33ad_dead.graph", "", "", "public", "Pacific Island Network Marine Fish Monitoring Dataset - Surveys", "National Park Service Fish Stock Data\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\nhigherInstitutionCode\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\nisland\n... (67 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_417d_33ad_dead_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_417d_33ad_dead_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_417d_33ad_dead/index.json", "http://science.nature.nps.gov/im/units/pacn/monitoring/vs_fish_marine.cfm", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_417d_33ad_dead.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_417d_33ad_dead&showErrors=false&email=", "USDOI/NPS/NRSS/IMD/PACN", "hawaii_soest_417d_33ad_dead"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_31bb_eee9_ef0a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_31bb_eee9_ef0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_31bb_eee9_ef0a.graph", "", "", "public", "Pacific Island Network Marine Fish Monitoring Dataset - Transects", "The benthic marine community in the Pacific Island Network (PACN) is a complex ecologic system and a diverse taxonomic environment, including algae and corals and other invertebrates. Reef-building corals are the primary architectural organism and are sensitive to environmental degradation; therefore, they are a good indicator of overall health for nearshore marine ecosystems. Primary stressors to coral reefs include disease, bleaching, sedimentation, eutrophication, storms, and global climate change. The United Nations Environment Programme (UNEP) has proposed using coral reefs as a worldwide indicator ecosystem for global climate change (Spalding et al. 2004). For these reasons, the PACN has chosen to implement long term monitoring of benthic marine communities. Benthic marine communities is most closely linked with marine fish, and monitoring efforts will be conducted at the same time and location to maximize data value\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\n... (58 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_31bb_eee9_ef0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_31bb_eee9_ef0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_31bb_eee9_ef0a/index.json", "http://science.nature.nps.gov/im/units/pacn/monitoring/vs_fish_marine.cfm", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_31bb_eee9_ef0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_31bb_eee9_ef0a&showErrors=false&email=", "USDOI/NPS/NRSS/IMD/PACN", "hawaii_soest_31bb_eee9_ef0a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5673_517d_3b8c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5673_517d_3b8c.graph", "", "", "public", "PacIOOS Nearshore Sensor 01 (NS01): Waikiki Yacht Club, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS01 is located at the Waikiki Yacht Club and is fixed to the bridge pier. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to a piling ~0.5m below mean sea level.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5673_517d_3b8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5673_517d_3b8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5673_517d_3b8c/index.json", "https://www.pacioos.hawaii.edu/water/sensor-waikiki/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5673_517d_3b8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5673_517d_3b8c&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5673_517d_3b8c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_1273_fad1_0404", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_1273_fad1_0404.graph", "", "", "public", "PacIOOS Nearshore Sensor 02 (NS02): Hawaii Yacht Club, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS02 is located at a floating dock off the Hawaii Yacht Club. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to a floating dock just below the ocean surface.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_1273_fad1_0404_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_1273_fad1_0404_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_1273_fad1_0404/index.json", "https://www.pacioos.hawaii.edu/water/sensor-hawaiiyachtclub/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_1273_fad1_0404.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_1273_fad1_0404&showErrors=false&email=", "University of Hawaii", "hawaii_soest_1273_fad1_0404"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d787_1c35_208d", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d787_1c35_208d.graph", "", "", "public", "PacIOOS Nearshore Sensor 03 (NS03): Hilton Hawaiian Pier, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS03 is located at the Atlantis Pier off the Hilton Hawaiian Village. The instrument is a Sea-Bird Electronics model 37SMP. The package is located at approximately 2.0 meters below mean sea level.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d787_1c35_208d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d787_1c35_208d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d787_1c35_208d/index.json", "https://www.pacioos.hawaii.edu/water/sensor-atlantis/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d787_1c35_208d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d787_1c35_208d&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d787_1c35_208d"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_c9f9_c232_1fe9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_c9f9_c232_1fe9.graph", "", "", "public", "PacIOOS Nearshore Sensor 04 (NS04): Waikiki Aquarium, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS04 is located just off the Waikiki Aquarium and is fixed to the pier. The instrument is a Sea-Bird Electronics model 37SMP. The package is mounted on the bottom in approximately 2.0 to 2.5 meters ocean depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_c9f9_c232_1fe9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_c9f9_c232_1fe9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_c9f9_c232_1fe9/index.json", "https://www.pacioos.hawaii.edu/water/sensor-waikikiaquarium/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_c9f9_c232_1fe9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_c9f9_c232_1fe9&showErrors=false&email=", "University of Hawaii", "hawaii_soest_c9f9_c232_1fe9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b55f_a8f2_ad70", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b55f_a8f2_ad70.graph", "", "", "public", "PacIOOS Nearshore Sensor 05 (NS05): Pago Pago, American Samoa", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS05 is located at the Department of Marine and Wildlife Resources (DMWR) dock in Pago Pago Harbor, American Samoa and is mounted to the bottom in about 2 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_b55f_a8f2_ad70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_b55f_a8f2_ad70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_b55f_a8f2_ad70/index.json", "https://www.pacioos.hawaii.edu/water/sensor-pagopago/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_b55f_a8f2_ad70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_b55f_a8f2_ad70&showErrors=false&email=", "University of Hawaii", "hawaii_soest_b55f_a8f2_ad70"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f59_c29c_d820", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f59_c29c_d820.graph", "", "", "public", "PacIOOS Nearshore Sensor 06 (NS06): Pohnpei, Micronesia", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS06 is located at the dock in Pohnpei lagoon and is mounted to the bottom in about 1 meter of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8f59_c29c_d820_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8f59_c29c_d820_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8f59_c29c_d820/index.json", "https://www.pacioos.hawaii.edu/water/sensor-pohnpei/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8f59_c29c_d820.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8f59_c29c_d820&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8f59_c29c_d820"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_77b7_f5dd_cda3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_77b7_f5dd_cda3.graph", "", "", "public", "PacIOOS Nearshore Sensor 07 (NS07): Majuro, Marshall Islands", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS07 is located at the Uliga dock in Majuro, Republic of the Marshall Islands and is mounted to the bottom in about 2 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_77b7_f5dd_cda3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_77b7_f5dd_cda3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_77b7_f5dd_cda3/index.json", "https://www.pacioos.hawaii.edu/water/sensor-majuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_77b7_f5dd_cda3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_77b7_f5dd_cda3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_77b7_f5dd_cda3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e3c0_a956_de01", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e3c0_a956_de01.graph", "", "", "public", "PacIOOS Nearshore Sensor 08 (NS08): Koror, Palau", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS08 is located at the Palau International Coral Reef Center (PICRC) dock in Koror, Palau and is mounted to the bottom in about 3.5 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e3c0_a956_de01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e3c0_a956_de01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e3c0_a956_de01/index.json", "https://www.pacioos.hawaii.edu/water/sensor-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e3c0_a956_de01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e3c0_a956_de01&showErrors=false&email=", "University of Hawaii", "hawaii_soest_e3c0_a956_de01"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0113_b43d_e024", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0113_b43d_e024.graph", "", "", "public", "PacIOOS Nearshore Sensor 09 (NS09): Cetti Bay, Guam", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS09 is approximately 70 meters offshore in Cetti Bay, Guam and is mounted to the bottom in about 3 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_0113_b43d_e024_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_0113_b43d_e024_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_0113_b43d_e024/index.json", "https://www.pacioos.hawaii.edu/water/sensor-cetti/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_0113_b43d_e024.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_0113_b43d_e024&showErrors=false&email=", "University of Hawaii", "hawaii_soest_0113_b43d_e024"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f25e_31a1_16f1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f25e_31a1_16f1.graph", "", "", "public", "PacIOOS Nearshore Sensor 10 (NS10): Maunalua Bay, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS10 is located off the old pier in Maunalua Bay in Hawaii Kai. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to the pier at about 2m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f25e_31a1_16f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f25e_31a1_16f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f25e_31a1_16f1/index.json", "https://www.pacioos.hawaii.edu/water/sensor-maunalua/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f25e_31a1_16f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f25e_31a1_16f1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f25e_31a1_16f1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8668_b202_8233", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8668_b202_8233.graph", "", "", "public", "PacIOOS Nearshore Sensor 11 (NS11): Saipan, CNMI", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS11 is approximately 20 meters offshore of Puntan Babpot near the golf course at Laolao Bay on the east shore of Saipan in the Commonwealth of the Northern Mariana Islands (CNMI) and is mounted to the bottom in about 3 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8668_b202_8233_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8668_b202_8233_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8668_b202_8233/index.json", "https://www.pacioos.hawaii.edu/water/sensor-saipan/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8668_b202_8233.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8668_b202_8233&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8668_b202_8233"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b10c_af2d_3fe8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b10c_af2d_3fe8.graph", "", "", "public", "PacIOOS Nearshore Sensor 12 (NS12): Kalama Beach Park, Maui, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS12 is located at Kalama Beach Park in Kihei, Maui. The instrument is a 6600V2-4 Multi-parameter water quality logger. The package is fixed to a mooring at about 1.5m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\nwater_depth (Sensor depth, m)\nph (1)\noxygen (Dissolved oxygen concentration, kg m-3)\noxygen_saturation (Dissolved oxygen saturation, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_b10c_af2d_3fe8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_b10c_af2d_3fe8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_b10c_af2d_3fe8/index.json", "https://www.pacioos.hawaii.edu/water/sensor-kalama/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_b10c_af2d_3fe8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_b10c_af2d_3fe8&showErrors=false&email=", "University of Hawaii", "hawaii_soest_b10c_af2d_3fe8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_026f_4c1d_55e5", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_026f_4c1d_55e5.graph", "", "", "public", "PacIOOS Nearshore Sensor 13 (NS13): Kahului, Maui, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS13 is located in Kahului Harbor in Maui. The instrument is a 6600V2-4 Multi-parameter water quality logger. The package is fixed to a piling at about 1.5m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nwater_depth (Sensor depth (processed), m)\nwater_depth_raw (Sensor depth (raw), m)\nph (pH (processed), 1)\nph_raw (pH (raw), 1)\noxygen (Dissolved oxygen concentration (processed), kg m-3)\noxygen_raw (Dissolved oxygen concentration (raw), kg m-3)\noxygen_saturation (Dissolved oxygen saturation (processed), 1)\noxygen_saturation_raw (Dissolved oxygen saturation (raw), 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_026f_4c1d_55e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_026f_4c1d_55e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_026f_4c1d_55e5/index.json", "https://www.pacioos.hawaii.edu/water/sensor-kahului/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_026f_4c1d_55e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_026f_4c1d_55e5&showErrors=false&email=", "University of Hawaii", "hawaii_soest_026f_4c1d_55e5"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_191e_fe37_f9a0", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_191e_fe37_f9a0.graph", "", "", "public", "PacIOOS Nearshore Sensor 15 (NS15): Pago Bay, Guam", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS15 is in Pago Bay, Guam and is mounted to the bottom in about 1.5 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. This station was decommissioned and relocated after 2018 in order to minimize burial of the sensor by silt; see NS17 for data at the new mooring location.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_191e_fe37_f9a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_191e_fe37_f9a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_191e_fe37_f9a0/index.json", "https://www.pacioos.hawaii.edu/water/sensor-pago/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_191e_fe37_f9a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_191e_fe37_f9a0&showErrors=false&email=", "University of Hawaii", "hawaii_soest_191e_fe37_f9a0"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d5ba_831c_443a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d5ba_831c_443a.graph", "", "", "public", "PacIOOS Nearshore Sensor 16 (NS16): Wailupe, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS16 is located off Wailupe in Maunalua Bay in Aina Haina. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to the pier at about 1m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d5ba_831c_443a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d5ba_831c_443a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d5ba_831c_443a/index.json", "https://www.pacioos.hawaii.edu/water/sensor-wailupe/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d5ba_831c_443a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d5ba_831c_443a&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d5ba_831c_443a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_093e_cd55_43a3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_093e_cd55_43a3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_093e_cd55_43a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_093e_cd55_43a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_093e_cd55_43a3/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_093e_cd55_43a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_093e_cd55_43a3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_093e_cd55_43a3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc92_7d24_0627", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc92_7d24_0627.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_cc92_7d24_0627_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_cc92_7d24_0627_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_cc92_7d24_0627/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_cc92_7d24_0627.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_cc92_7d24_0627&showErrors=false&email=", "University of Hawaii", "hawaii_soest_cc92_7d24_0627"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f289_8170_ec45", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f289_8170_ec45.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f289_8170_ec45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f289_8170_ec45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f289_8170_ec45/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f289_8170_ec45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f289_8170_ec45&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f289_8170_ec45"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_36dd_cf4c_73a6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_36dd_cf4c_73a6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_36dd_cf4c_73a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_36dd_cf4c_73a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_36dd_cf4c_73a6/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_36dd_cf4c_73a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_36dd_cf4c_73a6&showErrors=false&email=", "University of Hawaii", "hawaii_soest_36dd_cf4c_73a6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5359_8678_82b1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5359_8678_82b1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5359_8678_82b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5359_8678_82b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5359_8678_82b1/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5359_8678_82b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5359_8678_82b1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5359_8678_82b1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_92c1_a2b0_55fb", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_92c1_a2b0_55fb.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_92c1_a2b0_55fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_92c1_a2b0_55fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_92c1_a2b0_55fb/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_92c1_a2b0_55fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_92c1_a2b0_55fb&showErrors=false&email=", "University of Hawaii", "hawaii_soest_92c1_a2b0_55fb"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_75b3_e52c_26a2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_75b3_e52c_26a2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_75b3_e52c_26a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_75b3_e52c_26a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_75b3_e52c_26a2/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_75b3_e52c_26a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_75b3_e52c_26a2&showErrors=false&email=", "University of Hawaii", "hawaii_soest_75b3_e52c_26a2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_a826_8633_00bb", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_a826_8633_00bb.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_a826_8633_00bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_a826_8633_00bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_a826_8633_00bb/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_a826_8633_00bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_a826_8633_00bb&showErrors=false&email=", "University of Hawaii", "hawaii_soest_a826_8633_00bb"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_076a_87b3_40a0", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_076a_87b3_40a0.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_076a_87b3_40a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_076a_87b3_40a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_076a_87b3_40a0/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_076a_87b3_40a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_076a_87b3_40a0&showErrors=false&email=", "University of Hawaii", "hawaii_soest_076a_87b3_40a0"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_4c82_4728_010b", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_4c82_4728_010b.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_4c82_4728_010b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_4c82_4728_010b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_4c82_4728_010b/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_4c82_4728_010b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_4c82_4728_010b&showErrors=false&email=", "University of Hawaii", "hawaii_soest_4c82_4728_010b"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_856b_7e66_8c3f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_856b_7e66_8c3f.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_856b_7e66_8c3f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_856b_7e66_8c3f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_856b_7e66_8c3f/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_856b_7e66_8c3f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_856b_7e66_8c3f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_856b_7e66_8c3f"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2f21_4063_cfec", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2f21_4063_cfec.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_2f21_4063_cfec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_2f21_4063_cfec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_2f21_4063_cfec/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_2f21_4063_cfec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_2f21_4063_cfec&showErrors=false&email=", "University of Hawaii", "hawaii_soest_2f21_4063_cfec"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "http://www.ogcnetwork.net/node/344", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/PRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2017, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2017, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2017, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_88cd_7dfb_ecfa.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_88cd_7dfb_ecfa", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_88cd_7dfb_ecfa.graph", "", "", "public", "US Pacific Islands, Coral Reef Monitoring, Fish Surveys, Belt Transects (BLT)", "Coral Reef Ecosytem Division (CRED) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_88cd_7dfb_ecfa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_88cd_7dfb_ecfa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_88cd_7dfb_ecfa/index.json", "https://www.pifsc.noaa.gov/cred/fish.php", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_88cd_7dfb_ecfa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_88cd_7dfb_ecfa&showErrors=false&email=", "USDOC/NOAA/NMFS/PIFSC/CRED", "hawaii_soest_88cd_7dfb_ecfa"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7448_8dd2_e529.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7448_8dd2_e529", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7448_8dd2_e529.graph", "", "", "public", "US Pacific Islands, Coral Reef Monitoring, Fish Surveys, Stationary Point Counts (nSPC)", "Coral Reef Ecosytem Division (CRED) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\n... (49 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_7448_8dd2_e529_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_7448_8dd2_e529_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_7448_8dd2_e529/index.json", "https://www.pifsc.noaa.gov/cred/fish.php", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_7448_8dd2_e529.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_7448_8dd2_e529&showErrors=false&email=", "USDOC/NOAA/NMFS/PIFSC/CRED", "hawaii_soest_7448_8dd2_e529"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_6dcb_e681_3eab.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_6dcb_e681_3eab", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_6dcb_e681_3eab.graph", "", "", "public", "US Pacific Islands, Coral Reef Monitoring, Fish Surveys, Stationary Point Counts (SPC)", "Coral Reef Ecosytem Division (CRED) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\n... (49 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_6dcb_e681_3eab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_6dcb_e681_3eab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_6dcb_e681_3eab/index.json", "https://www.pifsc.noaa.gov/cred/fish.php", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_6dcb_e681_3eab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_6dcb_e681_3eab&showErrors=false&email=", "USDOC/NOAA/NMFS/PIFSC/CRED", "hawaii_soest_6dcb_e681_3eab"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d98d_1d43_fef7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d98d_1d43_fef7.graph", "", "", "public", "Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\naltitude (height above mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\nair_temperature (Mean air temperature, Celsius)\nair_temperature_std (Standard deviation of air temperature, Celsius)\nair_temperature_max (Maximum air temperature, Celsius)\nair_temperature_max_time (Time of maximum air temperature, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (Minimum air temperature, Celsius)\nair_temperature_min_time (Time of minimum air temperature, seconds since 1970-01-01T00:00:00Z)\nwind_speed (Mean wind speed, m s-1)\nwind_speed_std (Standard deviation wind speed, m s-1)\nwind_speed_max (Maximum wind speed, m s-1)\nwind_speed_max_time (Time of maximum wind speed, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (Minimum wind speed, m s-1)\nwind_speed_min_time (Time of minimum wind speed, seconds since 1970-01-01T00:00:00Z)\nwind_from_direction (degrees)\nwind_from_direction_std (Standard deviation of wind direction, degrees)\nrainfall_amount (Rainfall total, mm)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d98d_1d43_fef7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d98d_1d43_fef7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d98d_1d43_fef7/index.json", "http://www.coralreefresearchfoundation.org", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d98d_1d43_fef7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d98d_1d43_fef7&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "hawaii_soest_d98d_1d43_fef7"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whoiSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whoiSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whoiSos.graph", "", "", "public", "WHOI MVCO 12m Node ADCP SOS, 2008-present", "Wave observations from the 12m node ADCP in the Martha's Vineyard Coastal Observatory (MVCO) in the northwest Atlantic in coastal waters of North America. Extensive, detailed documentation is available in these .xml files:\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/MVCO_ObservingSystem.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/ADCP_System.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/MVCO_Workhorse_1200.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/RDI_Workhorse_1200.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Pressure_Obs_Process.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Velocity_Obs_Process.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Pressure_QC_Chain.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Velocity_QC_Chain.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/PUV_Analysis.xml\n\nFor this dataset, if you want the most recent data, you MUST change the default end time constraint to be a time that is slightly (a few seconds or a few minutes) in the past. The source data server does not allow end time constraints that are after the exact current time.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\npressure (Mean Sea Water Pressure, cm)\nwaveHeightFromPressure (Wave Height from Pressure, cm)\nwavePeriodFromPressure (Wave Period from Pressure, s)\nloCutoffFrequency (Low Cutoff Frequency, Hz)\nhiCutoffFrequency (High Cutoff Frequency, Hz)\nwaveHeightAll (Wave Height All, cm)\nswell (cm)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whoiSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whoiSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whoiSos/index.json", "https://www.whoi.edu/mvco", "http://upwell.pfeg.noaa.gov/erddap/rss/whoiSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoiSos&showErrors=false&email=", "Woods Hole Oceanographic Institution", "whoiSos"] + ] + } + } + recorded_at: 2019-07-19 19:13:11 GMT + recorded_with: vcr/0.2.6, webmockr/0.3.4 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/info/erdMBchla1day/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.8.1.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Fri, 19 Jul 2019 19:13:47 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=erdMBchla1day_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "acknowledgement", "String", "NOAA NESDIS COASTWATCH, NOAA SWFSC ERD"], + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "Grid"], + ["attribute", "NC_GLOBAL", "composite", "String", "true"], + ["attribute", "NC_GLOBAL", "contributor_name", "String", "NASA GSFC (OBPG)"], + ["attribute", "NC_GLOBAL", "contributor_role", "String", "Source of level 2 data."], + ["attribute", "NC_GLOBAL", "Conventions", "String", "COARDS, CF-1.6, ACDD-1.3"], + ["attribute", "NC_GLOBAL", "creator_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "creator_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "date_created", "String", "2019-07-18"], + ["attribute", "NC_GLOBAL", "date_issued", "String", "2019-07-18"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "320.0"], + ["attribute", "NC_GLOBAL", "files", "String", "A2019198112500.L2_LAC_OC.nc, A2019198124500.L2_LAC_OC.nc, A2019198125000.L2_LAC_OC.nc, A2019198125500.L2_LAC_OC.nc, A2019198130000.L2_LAC_OC.nc, A2019198130500.L2_LAC_OC.nc, A2019198141000.L2_LAC_OC.nc, A2019198141500.L2_LAC_OC.nc, A2019198142000.L2_LAC_OC.nc, A2019198144000.L2_LAC_OC.nc, A2019198144500.L2_LAC_OC.nc, A2019198155000.L2_LAC_OC.nc, A2019198155500.L2_LAC_OC.nc, A2019198160000.L2_LAC_OC.nc, A2019198160500.L2_LAC_OC.nc, A2019198161000.L2_LAC_OC.nc, A2019198161500.L2_LAC_OC.nc, A2019198162000.L2_LAC_OC.nc, A2019198162500.L2_LAC_OC.nc, A2019198163000.L2_LAC_OC.nc, A2019198173000.L2_LAC_OC.nc, A2019198173500.L2_LAC_OC.nc, A2019198174000.L2_LAC_OC.nc, A2019198174500.L2_LAC_OC.nc, A2019198175000.L2_LAC_OC.nc, A2019198175500.L2_LAC_OC.nc, A2019198180000.L2_LAC_OC.nc, A2019198181000.L2_LAC_OC.nc, A2019198191000.L2_LAC_OC.nc, A2019198191500.L2_LAC_OC.nc, A2019198192000.L2_LAC_OC.nc, A2019198192500.L2_LAC_OC.nc, A2019198193000.L2_LAC_OC.nc, A2019198193500.L2_LAC_OC.nc, A2019198194000.L2_LAC_OC.nc, A2019198205000.L2_LAC_OC.nc, A2019198205500.L2_LAC_OC.nc, A2019198210000.L2_LAC_OC.nc, A2019198210500.L2_LAC_OC.nc, A2019198211000.L2_LAC_OC.nc, A2019198211500.L2_LAC_OC.nc, A2019198212000.L2_LAC_OC.nc, A2019198222500.L2_LAC_OC.nc, A2019198223000.L2_LAC_OC.nc, A2019198223500.L2_LAC_OC.nc, A2019198224000.L2_LAC_OC.nc, A2019198224500.L2_LAC_OC.nc, A2019198225000.L2_LAC_OC.nc, A2019198225500.L2_LAC_OC.nc, A2019198230000.L2_LAC_OC.nc, A2019199001000.L2_LAC_OC.nc, A2019199001500.L2_LAC_OC.nc, A2019199002000.L2_LAC_OC.nc, A2019199002500.L2_LAC_OC.nc, A2019199003000.L2_LAC_OC.nc, A2019199003500.L2_LAC_OC.nc, A2019199004000.L2_LAC_OC.nc, A2019199004500.L2_LAC_OC.nc, A2019199014500.L2_LAC_OC.nc, A2019199015000.L2_LAC_OC.nc, A2019199015500.L2_LAC_OC.nc, A2019199020000.L2_LAC_OC.nc, A2019199020500.L2_LAC_OC.nc, A2019199021000.L2_LAC_OC.nc, A2019199021500.L2_LAC_OC.nc, A2019199032500.L2_LAC_OC.nc, A2019199033000.L2_LAC_OC.nc, A2019199033500.L2_LAC_OC.nc, A2019199034000.L2_LAC_OC.nc, A2019199034500.L2_LAC_OC.nc, A2019199035000.L2_LAC_OC.nc, A2019199035500.L2_LAC_OC.nc, A2019199050000.L2_LAC_OC.nc, A2019199050500.L2_LAC_OC.nc, A2019199051000.L2_LAC_OC.nc, A2019199051500.L2_LAC_OC.nc, A2019199052000.L2_LAC_OC.nc, A2019199052500.L2_LAC_OC.nc, A2019199053000.L2_LAC_OC.nc, A2019199053500.L2_LAC_OC.nc, A2019199064000.L2_LAC_OC.nc, A2019199064500.L2_LAC_OC.nc, A2019199071500.L2_LAC_OC.nc, A2019199072000.L2_LAC_OC.nc, A2019199090000.L2_LAC_OC.nc, A2019199103000.L2_LAC_OC.nc"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "65.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "-45.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_resolution", "double", "0.025"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "320.0"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "120.0"], + ["attribute", "NC_GLOBAL", "geospatial_lon_resolution", "double", "0.025"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_max", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_min", "double", "0.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_positive", "String", "up"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_units", "String", "m"], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "https://coastwatch.pfeg.noaa.gov/infog/MB_chla_las.html"], + ["attribute", "NC_GLOBAL", "institution", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "keywords", "String", "altitude, aqua, center, chemistry, chla, chlorophyll, chlorophyll-a, chlorophyll_concentration_in_sea_water, coastwatch, color, concentration, data, degrees, Earth Science > Oceans > Ocean Chemistry > Chlorophyll, experimental, flight, goddard, gsfc, imaging, MBchla, moderate, modis, nasa, national, noaa, npp, ocean, ocean color, oceans, orbiting, pacific, partnership, polar, polar-orbiting, resolution, sea, seawater, space, spectroradiometer, time, water"], + ["attribute", "NC_GLOBAL", "keywords_vocabulary", "String", "GCMD Science Keywords"], + ["attribute", "NC_GLOBAL", "license", "String", "The data may be used and redistributed for free but is not intended\nfor legal use, since it may contain inaccuracies. Neither the data\nContributor, ERD, NOAA, nor the United States Government, nor any\nof their employees or contractors, makes any warranty, express or\nimplied, including warranties of merchantability and fitness for a\nparticular purpose, or assumes any legal liability for the accuracy,\ncompleteness, or usefulness, of this information."], + ["attribute", "NC_GLOBAL", "naming_authority", "String", "gov.noaa.pfeg.coastwatch"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "65.0"], + ["attribute", "NC_GLOBAL", "origin", "String", "NASA GSFC (OBPG)"], + ["attribute", "NC_GLOBAL", "processing_level", "String", "3"], + ["attribute", "NC_GLOBAL", "project", "String", "CoastWatch (https://coastwatch.noaa.gov/)"], + ["attribute", "NC_GLOBAL", "projection", "String", "geographic"], + ["attribute", "NC_GLOBAL", "projection_type", "String", "mapped"], + ["attribute", "NC_GLOBAL", "publisher_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "publisher_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "publisher_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "publisher_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "references", "String", "Aqua/MODIS information: https://oceancolor.gsfc.nasa.gov/ . MODIS information: https://coastwatch.noaa.gov/cw_html/OceanColor_NRT_MODIS_Aqua.html ."], + ["attribute", "NC_GLOBAL", "satellite", "String", "Aqua"], + ["attribute", "NC_GLOBAL", "sensor", "String", "MODIS"], + ["attribute", "NC_GLOBAL", "source", "String", "satellite observation: Aqua, MODIS"], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "(local files)"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "-45.0"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v55"], + ["attribute", "NC_GLOBAL", "summary", "String", "NOAA CoastWatch distributes chlorophyll-a concentration data from NASA's Aqua Spacecraft. Measurements are gathered by the Moderate Resolution Imaging Spectroradiometer (MODIS) carried aboard the spacecraft. The algorithm currently used in processing the water leaving radiance to chlorophyll concentration has not yet been accepted as science quality. In addition, assumptions are made in the atmospheric correction in order to provide the data in a timely manner."], + ["attribute", "NC_GLOBAL", "testOutOfDate", "String", "now-3days"], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2019-07-17T12:00:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "2006-01-01T12:00:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "Chlorophyll-a, Aqua MODIS, NPP, 0.025 degrees, Pacific Ocean, 2006-present, EXPERIMENTAL (1 Day Composite)"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "120.0"], + ["dimension", "time", "", "double", "nValues=4741, evenlySpaced=false, averageSpacing=1 day 1h 2m 17s"], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "1.1361168E9, 1.5633648E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "fraction_digits", "int", "0"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Centered Time"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["dimension", "altitude", "", "float", "nValues=1, onlyValue=0.0"], + ["attribute", "altitude", "_CoordinateAxisType", "String", "Height"], + ["attribute", "altitude", "_CoordinateZisPositive", "String", "up"], + ["attribute", "altitude", "actual_range", "float", "0.0, 0.0"], + ["attribute", "altitude", "axis", "String", "Z"], + ["attribute", "altitude", "fraction_digits", "int", "0"], + ["attribute", "altitude", "ioos_category", "String", "Location"], + ["attribute", "altitude", "long_name", "String", "Altitude"], + ["attribute", "altitude", "positive", "String", "up"], + ["attribute", "altitude", "standard_name", "String", "altitude"], + ["attribute", "altitude", "units", "String", "m"], + ["dimension", "latitude", "", "float", "nValues=4401, evenlySpaced=true, averageSpacing=0.025"], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "float", "-45.0, 65.0"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "coordsys", "String", "geographic"], + ["attribute", "latitude", "fraction_digits", "int", "4"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "point_spacing", "String", "even"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["dimension", "longitude", "", "float", "nValues=8001, evenlySpaced=true, averageSpacing=0.025"], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "float", "120.0, 320.0"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "coordsys", "String", "geographic"], + ["attribute", "longitude", "fraction_digits", "int", "4"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "point_spacing", "String", "even"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "chlorophyll", "", "float", "time, altitude, latitude, longitude"], + ["attribute", "chlorophyll", "_FillValue", "float", "-9999999.0"], + ["attribute", "chlorophyll", "colorBarMaximum", "double", "30.0"], + ["attribute", "chlorophyll", "colorBarMinimum", "double", "0.03"], + ["attribute", "chlorophyll", "colorBarScale", "String", "Log"], + ["attribute", "chlorophyll", "coordsys", "String", "geographic"], + ["attribute", "chlorophyll", "fraction_digits", "int", "2"], + ["attribute", "chlorophyll", "ioos_category", "String", "Ocean Color"], + ["attribute", "chlorophyll", "long_name", "String", "Chlorophyll Concentration in Sea Water"], + ["attribute", "chlorophyll", "missing_value", "float", "-9999999.0"], + ["attribute", "chlorophyll", "standard_name", "String", "concentration_of_chlorophyll_in_sea_water"], + ["attribute", "chlorophyll", "units", "String", "mg m-3"] + ] + } + } + recorded_at: 2019-07-19 19:13:11 GMT + recorded_with: vcr/0.2.6, webmockr/0.3.4 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.8.1.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Fri, 19 Jul 2019 19:13:47 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Fri, 19 Jul 2019 19:13:47 GMT + xdods-server: dods/3.7 + erddap-server: '2.01' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://upwell.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_01af_e372_5bb6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_01af_e372_5bb6.graph", "", "", "public", "AIS Ship Traffic: Hawaii: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_01af_e372_5bb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_01af_e372_5bb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_01af_e372_5bb6/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_01af_e372_5bb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_01af_e372_5bb6&showErrors=false&email=", "University of Hawaii", "hawaii_soest_01af_e372_5bb6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f70b_c777_2d0b", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f70b_c777_2d0b.graph", "", "", "public", "AIS Ship Traffic: Johnston Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f70b_c777_2d0b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f70b_c777_2d0b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f70b_c777_2d0b/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f70b_c777_2d0b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f70b_c777_2d0b&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f70b_c777_2d0b"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_be9a_9be0_1f0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_be9a_9be0_1f0a.graph", "", "", "public", "AIS Ship Traffic: Mariana and Wake: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_be9a_9be0_1f0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_be9a_9be0_1f0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_be9a_9be0_1f0a/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_be9a_9be0_1f0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_be9a_9be0_1f0a&showErrors=false&email=", "University of Hawaii", "hawaii_soest_be9a_9be0_1f0a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5742_4f35_ff55", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5742_4f35_ff55.graph", "", "", "public", "AIS Ship Traffic: Rose Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5742_4f35_ff55_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5742_4f35_ff55_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5742_4f35_ff55/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5742_4f35_ff55.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5742_4f35_ff55&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5742_4f35_ff55"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_490d_1198_15c1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_490d_1198_15c1.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_490d_1198_15c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_490d_1198_15c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_490d_1198_15c1/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_490d_1198_15c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_490d_1198_15c1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_490d_1198_15c1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0956_e939_cefc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0956_e939_cefc.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Velocity", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean current velocity at the ACO from a 250 kHz SonTek acoustic doppler current profiler (ADCP) at 1.83 m above the ocean bottom. Velocities are flagged bad if the amplitude is excessively low or high. An amplitude is high if it exceeds the average of the ping before and the ping after by 20 counts. An amplitude is low if less than 6 counts. After this the velocities are flagged bad if the absolute deviation of the vertical velocity from its ensemble median exceeds 0.15 m/s or if its value is less than -0.25 m/s.\n\ncdm_data_type = Profile\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each location, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\neastward_sea_water_velocity (current east component, meters/second)\nnorthward_sea_water_velocity (current north component, meters/second)\nupward_sea_water_velocity (current upward component, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_0956_e939_cefc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_0956_e939_cefc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_0956_e939_cefc/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_0956_e939_cefc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_0956_e939_cefc&showErrors=false&email=", "University of Hawaii", "hawaii_soest_0956_e939_cefc"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d1bf_1535_741f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d1bf_1535_741f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d1bf_1535_741f.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Bottom Pressure Recorder (BPR)", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean pressure at the ACO from a Bottom Pressure Recorder (BPR).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\npressure (sea water pressure, psi)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d1bf_1535_741f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d1bf_1535_741f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d1bf_1535_741f/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d1bf_1535_741f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d1bf_1535_741f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d1bf_1535_741f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc9b_209f_ea2f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc9b_209f_ea2f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc9b_209f_ea2f.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Hydrophone Acoustics", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographi\nc observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides sound files of ocean acoustics at the ocean floor from the ACO hydrophone.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nelapsedTime (Elapsed Time, seconds)\nchannel_1\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_cc9b_209f_ea2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_cc9b_209f_ea2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_cc9b_209f_ea2f/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_cc9b_209f_ea2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_cc9b_209f_ea2f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_cc9b_209f_ea2f"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/database-tables-description", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/database-tables-description", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/cast-table-column-descriptions", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://upwell.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the May 2019 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://www.usgodae.org/cgi-bin/datalist.pl?summary=Go&dset=fnmoc_obs_sfcobs", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1995.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1995", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1995.graph", "", "", "public", "Hake Survey ADCP (1995)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp1995_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp1995_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp1995/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/1995%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp1995.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp1995&showErrors=false&email=", "OSU", "nwioosAdcp1995"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1998.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1998", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1998.graph", "", "", "public", "Hake Survey ADCP (1998)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp1998_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp1998_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp1998/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/1998%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp1998.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp1998&showErrors=false&email=", "OSU", "nwioosAdcp1998"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2001.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2001", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2001.graph", "", "", "public", "Hake Survey ADCP (2001)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (Altitude, m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp2001_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp2001_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp2001/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/2001%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp2001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp2001&showErrors=false&email=", "OSU", "nwioosAdcp2001"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2003.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2003", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2003.graph", "", "", "public", "Hake Survey ADCP (2003)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp2003_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp2003_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp2003/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/2003%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp2003.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp2003&showErrors=false&email=", "OSU", "nwioosAdcp2003"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2005.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2005", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2005.graph", "", "", "public", "Hake Survey ADCP (2005)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp2005_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp2005_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp2005/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/2005%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp2005.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp2005&showErrors=false&email=", "OSU", "nwioosAdcp2005"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e5b4_d905_99ef", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e5b4_d905_99ef.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e5b4_d905_99ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e5b4_d905_99ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e5b4_d905_99ef/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e5b4_d905_99ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e5b4_d905_99ef&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "hawaii_soest_e5b4_d905_99ef"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_190f_1fe8_4cc4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_190f_1fe8_4cc4.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitors water quality at several beaches across the island of Maui in the State of Hawaii. This community-based monitoring effort provides valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites are also monitored for harmful bacteria levels of Enterococcus. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. \n\nData are managed through an online repository, the Coral Reef Monitoring Data Portal (http://monitoring.coral.org), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection is coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\n... (10 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_190f_1fe8_4cc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_190f_1fe8_4cc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_190f_1fe8_4cc4/index.json", "http://monitoring.coral.org", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_190f_1fe8_4cc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_190f_1fe8_4cc4&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "hawaii_soest_190f_1fe8_4cc4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys.\n\nThe data is from NOAA NDBC. It has been reformatted by NOAA Coastwatch,\nWest Coast Node. This dataset only has the data that is closest to a\ngiven hour. The time values in the dataset are rounded to the nearest hour.\n\nThis dataset has both historical data (quality controlled, before\n2019-06-01T00:00:00Z) and near real time data (less quality controlled, from\n2019-06-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Name)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nwd (Wind Direction, degrees_true)\nwspd (Wind Speed, m s-1)\ngst (Wind Gust Speed, m s-1)\nwvht (Wave Height, m)\ndpd (Wave Period, Dominant, s)\napd (Wave Period, Average, s)\nmwd (Wave Direction, degrees_true)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.graph", "", "", "public", "NEFSC Continuous Plankton Recorder", "A summary for the data\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ncruise\nsample\nlatitude (degrees_north)\nlongitude (degrees_east)\nphyto_color_indx (Phytoplankton Color Index)\nmarmap_tax_code (Marmap Taxonomic Code)\nmarmap_stage_code\nabundance (per 100 cubic meters)\nlife_stage\ntaxonomic_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/wocecpr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/wocecpr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/wocecpr/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "http://upwell.pfeg.noaa.gov/erddap/rss/wocecpr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=wocecpr&showErrors=false&email=", "NEFSC", "wocecpr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp.graph", "", "", "public", "NOAA NDBC SOS, 2006-present, sea_water_temperature", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_water_temperature data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWTemp/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWTemp&showErrors=false&email=", "NOAA NDBC", "ndbcSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind.graph", "", "", "public", "NOAA NDBC SOS, 2006-present, winds", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have winds data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwind_from_direction (degrees_true)\nwind_speed (m s-1)\nwind_speed_of_gust (m s-1)\nupward_air_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWind_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWind_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWind/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWind.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWind&showErrors=false&email=", "NOAA NDBC", "ndbcSosWind"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents.graph", "", "", "public", "NOAA NDBC SOS, 2007-present, currents", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have currents data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\nWARNING: Always check the quality_flags before using this data. A simple criterion is: only use a row of data if the first quality_flags value for the row (overall bin status) is 3 (good data/passed quality test). You can do this by appending &quality_flags=~\"3;.*\" to your request.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nbin (count)\ndirection_of_sea_water_velocity (degrees_true)\nsea_water_speed (cm/s)\nupward_sea_water_velocity (cm/s)\nerror_velocity (cm/s)\nplatform_orientation (degrees_true)\nplatform_pitch_angle (degree)\nplatform_roll_angle (degree)\nsea_water_temperature (Cel)\npct_good_3_beam (Percent Good 3 Beam, percent)\npct_good_4_beam (Percent Good 4 Beam, percent)\npct_rejected (Percent Rejected, percent)\npct_bad (Percent Bad, percent)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosCurrents_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosCurrents_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosCurrents/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosCurrents.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosCurrents&showErrors=false&email=", "NOAA NDBC", "ndbcSosCurrents"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity.graph", "", "", "public", "NOAA NDBC SOS, 2007-present, sea_water_practical_salinity", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_water_practical_salinity data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosSalinity/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosSalinity&showErrors=false&email=", "NOAA NDBC", "ndbcSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel.graph", "", "", "public", "NOAA NDBC SOS, 2008-present, sea_floor_depth_below_sea_surface", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_floor_depth_below_sea_surface data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\naveraging_interval (s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWLevel/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWLevel&showErrors=false&email=", "NOAA NDBC", "ndbcSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "", "public", "North Pacific High, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_43a8_6d6d_9052.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_43a8_6d6d_9052", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_43a8_6d6d_9052.graph", "", "", "public", "Northwestern Hawaiian Islands, Coral Reef Monitoring, Fish Surveys, Belt Transects (BLT)", "Papahanaumokuakea Marine National Monument (PMNM) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_43a8_6d6d_9052_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_43a8_6d6d_9052_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_43a8_6d6d_9052/index.json", "http://www.papahanaumokuakea.gov/research/welcome.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_43a8_6d6d_9052.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_43a8_6d6d_9052&showErrors=false&email=", "USDOC/NOAA/NOS/PMNM", "hawaii_soest_43a8_6d6d_9052"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_68f2_d17d_d413.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_68f2_d17d_d413", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_68f2_d17d_d413.graph", "", "", "public", "Northwestern Hawaiian Islands, Coral Reef Monitoring, Fish Surveys, Belt Transects (vBLT)", "Papahanaumokuakea Marine National Monument (PMNM) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_68f2_d17d_d413_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_68f2_d17d_d413_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_68f2_d17d_d413/index.json", "http://www.papahanaumokuakea.gov/research/welcome.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_68f2_d17d_d413.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_68f2_d17d_d413&showErrors=false&email=", "USDOC/NOAA/NOS/PMNM", "hawaii_soest_68f2_d17d_d413"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_ec1c_1aa4_ddaf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_ec1c_1aa4_ddaf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_ec1c_1aa4_ddaf.graph", "", "", "public", "Northwestern Hawaiian Islands, Coral Reef Monitoring, Fish Surveys, Stationary Point Counts (nSPC)", "Papahanaumokuakea Marine National Monument (PMNM) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_ec1c_1aa4_ddaf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_ec1c_1aa4_ddaf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_ec1c_1aa4_ddaf/index.json", "http://www.papahanaumokuakea.gov/research/welcome.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_ec1c_1aa4_ddaf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_ec1c_1aa4_ddaf&showErrors=false&email=", "USDOC/NOAA/NOS/PMNM", "hawaii_soest_ec1c_1aa4_ddaf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosCoral.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosCoral", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosCoral.graph", "", "", "public", "NWFSC Coral Data Collected off West Coast of US (1980-2005)", "This data contains the locations of some observations of\ncold-water/deep-sea corals off the west coast of the United States.\nRecords of coral catch originate from bottom trawl surveys conducted\nfrom 1980 to 2001 by the Alaska Fisheries Science Center (AFSC) and\n2001 to 2005 by the Northwest Fisheries Science Center (NWFSC).\nLocational information represent the vessel mid positions (for AFSC\nsurvey trawls) or \"best position\" (i.e., priority order: 1) gear\nmidpoint 2) vessel midpoint, 3) vessel start point, 4) vessel end\npoint, 5) station coordinates for NWFSC survey trawls) conducted as\npart of regular surveys of groundfish off the coasts of Washington,\nOregon and California by NOAA Fisheries. Only records where corals\nwere identified in the total catch are included. Each catch sample\nof coral was identified down to the most specific taxonomic level\npossible by the biologists onboard, therefore identification was\ndependent on their expertise. When positive identification was not\npossible, samples were sometimes archived for future identification\nby systematist experts. Data were compiled by the NWFSC, Fishery\nResource Analysis & Monitoring Division\n\nPurpose - Examination of the spatial and temporal distributions of\nobservations of cold-water/deep-sea corals off the west coast of the\nUnited States, including waters off the states of Washington, Oregon,\nand California. It is important to note that these records represent\nonly presence of corals in the area swept by the trawl gear. Since\nbottom trawls used during these surveys are not designed to sample\nepibenthic invertebrates, absence of corals in the catch does not\nnecessary mean they do not occupy the area swept by the trawl gear.\n\nData Credits - NOAA Fisheries, Alaska Fisheries Science Center,\nResource Assessment & Conservation Engineering Division (RACE) NOAA\nFisheries, Northwest Fisheries Science Center, Fishery Resource\nAnalysis & Monitoring Division (FRAM)\n\nContact: Curt Whitmire, NOAA NWFSC, Curt.Whitmire@noaa.gov\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosCoral_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosCoral_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosCoral/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Coral%201980-2005.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosCoral.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosCoral&showErrors=false&email=", "NOAA NWFSC", "nwioosCoral"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosGroundfish.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosGroundfish", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosGroundfish.graph", "", "", "public", "NWFSC Groundfish Data for U.S. West Coast (2003-2005)", "The data available for downloading is summarized data from the 2003-2005\nU.S. West Coast Bottom Trawl Survey (WCGTS) of Groundfish Resources off\nWashington, Oregon and California.\n\nThe Northwest Fisheries Science Center's Fishery Resource Analysis and\nMonitoring Division (FRAM) completed the sixth in an annual series of\ngroundfish bottom trawl surveys in 2003. The survey was conducted June\n24 to October 23, 2003 and targeted the commercial groundfish resources\ninhabiting depths of 55 to 1,280 meters [m], (30 - 700 fathoms [fm])\nfrom the area off Cape Flattery, Washington (latitude [lat.] 48\u00b010'N)\nto the U.S.-Mexican border (lat. 32\u00b030'N) using chartered West Coast\ncommercial trawlers. These ongoing series of annual surveys, conducted\nby FRAM since 1998, are designed to monitor long-term trends in\ndistribution and abundance of west coast groundfish, especially those\nspecies of management concern. The 2003 survey represents the first\nyear in which the depth range was expanded to include both the\ncontinental shelf (55 - 183 m) and continental slope (183 - 1,280 m)\narea and the first year in which a stratified-random sampling design\nwas adopted.\n\nIn 2003, a total of 574 successful tows were completed out of 643\nattempts. Simrad ITI net mensuration data, as well as global\npositioning system (GPS) navigation data and bottom contact sensor\ndata, used to document performance (e.g. bottom tending), were\nobtained for most tows.\n\nAn Aberdeen-style net with a small mesh (2\" stretched measure or less)\nliner in the codend (to retain smaller specimens) was used to sample\nfish biomass. Target duration of each tow was 15 minutes. Tow\nduration was the time between touchdown and lift-off of the trawl net\nfrom the seafloor based on readings from bottom contact sensors.\n\nCatches were sorted to species, aggregate or other appropriate\ntaxonomic level and then weighed using an electronic,\nmotion-compensated scale. A total of 517 species or families (fish\nand invertebrates) were identified within the survey area. Although\nbiological sampling effort continues to include Dover sole\n(Microstomus pacificus), shortspine thornyhead (Sebastolobus\nalascanus), longspine thornyhead (Sebastolobus altivelis), and\nsablefish (Anoplopoma fimbria), focus has increasingly shifted to\nencompass all groundfish species of management concern. Up to 100\nlength measurements, sex determinations, and individual weights\nand up to 25 age structures were collected per haul for these species.\n\ncdm_data_type = Trajectory\nVARIABLES:\nhaul_id (Haul Identifier)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosGroundfish_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosGroundfish_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosGroundfish/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Groundfish%20Survey%202003-2005.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosGroundfish.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosGroundfish&showErrors=false&email=", "NOAA NWFSC", "nwioosGroundfish"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails.graph", "", "", "public", "NWFSC HUD Fish Species Details", "Habitat Use Database (HUD) Fish Species Details compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\nspecies_id\ncommon_name\nscientific_name\nlife_stage\nabsolute_min_depth (m)\npreferred_min_depth (m)\nabsolute_max_depth (m)\npreferred_max_depth (m)\nabsolute_min_temp (Absolute Min Temperature, degree_C)\npreferred_min_temp (Preferred Min Temperature, degree_C)\nabsolute_max_temp (Absolute Max Temperature, degree_C)\npreferred_max_temp (Preferred Max Temperature, degree_C)\nabsolute_min_latitude (degrees_north)\npreferred_min_latitude (degrees_north)\nabsolute_max_latitude (degrees_north)\npreferred_max_latitude (degrees_north)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudFishDetails/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Fish%20Species%20Details.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudFishDetails.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudFishDetails&showErrors=false&email=", "NOAA NWFSC", "nwioosHudFishDetails"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishOccur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishOccur", "", "", "", "public", "NWFSC HUD Fish Species Occurrence", "Habitat Use Database (HUD) Fish Species Occurrence data compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\ncommon_name\nscientific_name\nlife_stage\ngender\nhabitat_association\nseason\nlevel_1_habitat\nlevel_2_habitat\nlevel_3_habitat\nlevel_4_habitat\nactivity\nactivity_association\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudFishOccur/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Fish%20Species%20Occurrence.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudFishOccur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudFishOccur&showErrors=false&email=", "NOAA NWFSC", "nwioosHudFishOccur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudPredPrey.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudPredPrey", "", "", "", "public", "NWFSC HUD Predators and Prey", "Habitat Use Database (HUD) Predators and Prey data compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\necoregion\nseason\nlevel_1_habitat\nlevel_2_habitat\nlevel_3_habitat\nlevel_4_habitat\nscientific_name\ngender\nlife_stage\nprey_name\nprey_gender\nprey_life_stage\npredator_name\npredator_gender\npredator_life_stage\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudPredPrey/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Predators%20and%20Prey.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudPredPrey.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudPredPrey&showErrors=false&email=", "NOAA NWFSC", "nwioosHudPredPrey"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudRef.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudRef", "", "", "", "public", "NWFSC HUD References", "Habitat Use Database (HUD) References compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\nseason\nlevel_1_habitat\nlevel_2_habitat\nlevel_3_habitat\nlevel_4_habitat\nscientific_name\ngender\nlife_stage\nreference_to\nreference_type\nauthors\npublication_year\nreference_name\neditor\npublication_name\npublisher_city\npublisher\nvolume\nnumber\nreferenced_pages\nthesis_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudRef/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20References.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudRef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudRef&showErrors=false&email=", "NOAA NWFSC", "nwioosHudRef"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002.graph", "", "", "public", "NWFSC Observer Fixed Gear Data, off West Coast of US, 2002-2006", "Observer Fixed Gear Data collected during 2002-2006 off West Coast of US.\n\nThis data product originates from data collected by fishery observers in the West Coast Groundfish Observer Program (WCGOP), Fishery Resource Analysis and Monitoring Division (FRAM) at the Northwest Fisheries Science Center, NOAA Fisheries. The WCGOP's goal is to improve total catch estimates by collecting information on the discarded catch (fish returned overboard at-sea) of west coast groundfish species. All data were collected according to standard protocols and data quality control established by the WCGOP. The observed portion of overall catch or landings in a fishery varies by coverage level. Since all fishing operations are not observed, neither the maps nor the data can be used to characterize the fishery completely. This is especially true for rarely-occurring species and when observed sample sizes are small. We urge caution when utilizing these data due to the complexity of groundfish management and fleet harvest dynamics. Grid cells representing less than 3 vessels and less than 10 hauls or sets are not shown due to confidentiality and to ensure adequate sample size. In the limited-entry fixed gear fishery, species discard rates (species discard weight / groundfish total catch (discard + retained weight)) are categorized by approximate quartile ranges and geo-referenced to 20 x 20 kilometer grid cells. The observed fixed gear set location (start location of fishing) was used to allocate data to 20 x 20 kilometer grid cells for calculation. Sixteen species were represented based on combined observer data from 2002-2006. The species included in this data product are dover sole (Microstomus pacificus), sablefish (Anoplopoma fimbria), longspine thornyhead (Sebastolobus altivelis), shortspine thornyhead (Sebastolobus alascanus), lingcod (Ophiodon elongatus), arrowtooth flounder (Atheresthes stomias), petrale sole (Eopsetta jordani), and the rockfishes (genus Sebastes), darkblotched rockfish (S. crameri), Pacific ocean perch (S. alutus), chilipepper (S. goodei), cowcod (S. levis), bocaccio (S. paucispinis), canary rockfish (S. pinniger), widow rockfish (S. entomelas), yelloweye rockfish (S. ruberrimus), and yellowtail rockfish (S. flavidus).\n\nPurpose: This data product was developed to provide basic groundfish discard distribution information for a wide variety of audiences. The West Coast Groundfish Observer Program conducts sampling of groundfish discarded by commercial fisheries along the entire continental U.S. West Coast. The seventeen species included in this data product are among those of most interest to the fisheries management and commercial fishing communities.\n\nData Credits: NOAA Fisheries, Northwest Fisheries Science Center, Fishery Resource Analysis & Monitoring Division, West Coast Groundfish Observer Program, Seattle, WA.\n\ncdm_data_type = Other\nVARIABLES:\nlongitude (Longitude (Center of 20x20 km Grid Cell), degrees_east)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosObsFixed2002_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosObsFixed2002_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosObsFixed2002/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Observer%20Fixed%20Gear%202002%202006.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosObsFixed2002.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosObsFixed2002&showErrors=false&email=", "NOAA NWFSC", "nwioosObsFixed2002"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002.graph", "", "", "public", "NWFSC Observer Trawl Data, off West Coast of US, 2002-2006", "Observer Trawl Data collected during 2002-2006 off West Coast of US.\n\nThis data product originates from data collected by fishery observers in the West Coast Groundfish Observer Program (WCGOP), Fishery Resource Analysis and Monitoring Division (FRAM) at the Northwest Fisheries Science Center, NOAA Fisheries. The WCGOP's goal is to improve total catch estimates by collecting information on the discarded catch (fish returned overboard at-sea) of west coast groundfish species. All data were collected according to standard protocols and data quality control established by the WCGOP. The observed portion of overall catch or landings in a fishery varies by coverage level. Since all fishing operations are not observed, neither the maps nor the data can be used to characterize the fishery completely. This is especially true for rarely-occurring species and when observed sample sizes are small. We urge caution when utilizing these data due to the complexity of groundfish management and fleet harvest dynamics. Grid cells representing less than 3 vessels and less than 10 hauls or sets are not shown due to confidentiality and to ensure adequate sample size. In the limited-entry groundfish bottom trawl fishery, species discard rates (species discard weight / groundfish total catch (discard + retained weight)) are categorized by approximate quartile ranges and geo-referenced to 10 x 10 kilometer grid cells. The observed trawl towline (line drawn from the start to end location of a trawl tow) was used to allocate data to 10 x 10 kilometer grid cells for calculation. Seventeen species were represented based on combined observer data from 2002-2006. The species included in this data product are dover sole (Microstomus pacificus), sablefish (Anoplopoma fimbria), longspine thornyhead (Sebastolobus altivelis), shortspine thornyhead (Sebastolobus alascanus), lingcod (Ophiodon elongatus), arrowtooth flounder (Atheresthes stomias), English sole (Parophrys vetulus), petrale sole (Eopsetta jordani), and the rockfishes (genus Sebastes), darkblotched rockfish (S. crameri), Pacific ocean perch (S. alutus), chilipepper (S. goodei), cowcod (S. levis), bocaccio (S. paucispinis), canary rockfish (S. pinniger), widow rockfish (S. entomelas), yelloweye rockfish (S. ruberrimus), and yellowtail rockfish (S. flavidus).\n\nPurpose: This data product was developed to provide basic groundfish discard distribution information for a wide variety of audiences. The West Coast Groundfish Observer Program conducts sampling of groundfish discarded by commercial fisheries along the entire continental U.S. West Coast. The seventeen species included in this data product are among those of most interest to the fisheries management and commercial fishing communities.\n\nData Credits: NOAA Fisheries, Northwest Fisheries Science Center, Fishery Resource Analysis & Monitoring Division, West Coast Groundfish Observer Program, Seattle, WA.\n\ncdm_data_type = Other\nVARIABLES:\nlongitude (Longitude (Center of 10x10 km Grid Cell), degrees_east)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosObsTrawl2002_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosObsTrawl2002_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosObsTrawl2002/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Observer%20Trawl%202002%202006.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosObsTrawl2002.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosObsTrawl2002&showErrors=false&email=", "NOAA NWFSC", "nwioosObsTrawl2002"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a.graph", "", "", "public", "OceanSITES KEO daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from the Kuroshio Extension Observatory (KEO) site nominally at 32.3N,144.6E, in the Kuroshio Extension recirculation gyre. The actual anchor position is different for each deployment, and this is a slack line mooring with a watch circle radius greater than 5km. For users performing inter comparisons, it may be important to use the actual position of the buoy from the Global Positioning System (GPS) data. This mooring has been instrumented with upper ocean and surface sensors since June 2004. Included in this file are sea temperatures and pressures from the surface to 525m depth, salinity and density (sigma-theta) from the surface to 400m depth, sea currents to 35m depth, a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and barometric pressure. Note that because this is a slack-line mooring, subsurface sensor depths vary with time, and hence one must use the observed and calculated water pressures to compute sensor depths. Also, due to the relatively large scope and different anchor positions, the positions of the buoy at the surface are included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndeptemp (Depth of each measurement, meters)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepth (m)\nPRES (water pressure, observed and calculated, decibar)\nPRES_QC (quality flag)\nPRES_DM (method of data processing)\n... (53 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/keo_121f_a3d0_3c0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/keo_121f_a3d0_3c0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/keo_121f_a3d0_3c0a/index.json", "https://www.pmel.noaa.gov/ocs/", "http://upwell.pfeg.noaa.gov/erddap/rss/keo_121f_a3d0_3c0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=keo_121f_a3d0_3c0a&showErrors=false&email=", "NOAA/PMEL", "keo_121f_a3d0_3c0a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f.graph", "", "", "public", "OceanSITES PAPA daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from station Papa at 50N,145W in the North Pacific. This taut-line mooring has been instrumented with upper ocean and surface sensors since June 2007. Included in this file are sea temperatures from the surface to 300 meters depth, salinity and density (sigma-theta) from the surface to 200m depth, sea currents at 5m and 35m depth, acoustic doppler profiles of zonal and meridional ocean current to from 30 to 158 meters depth, and a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and barometric pressure. Time series of buoy latitude and longitude are included as well.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each measurement, m)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepcur (Depth of each measurement, m)\nUCUR\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\ndeppsal (Depth of each measurement, m)\n... (43 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/papa_8bb5_dcd5_981f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/papa_8bb5_dcd5_981f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/papa_8bb5_dcd5_981f/index.json", "https://www.pmel.noaa.gov/ocs/", "http://upwell.pfeg.noaa.gov/erddap/rss/papa_8bb5_dcd5_981f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=papa_8bb5_dcd5_981f&showErrors=false&email=", "NOAA/PMEL", "papa_8bb5_dcd5_981f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219.graph", "", "", "public", "OceanSITES PIRATA daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from one of the Tropical Atmosphere/Ocean (TAO)/TRITON, Pilot Research Moored Array in the Tropical Atlantic (PIRATA), or Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) mooring sites in the tropical oceans. Included in this file are sea temperatures from the surface to 500 meters at most sites and deeper at others, salinity and potential density (sigma-theta) at the sea surface and deeper at some sites, sea currents at 10m depth and deeper at some sites, a variety of surface observations including winds, air temperature, relative humidity, shortwave solar radiation, longwave radiation, rain rate, barometric pressure. Buoy positions are also included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each TEMP measurement, m)\ndepcur (Depth of each current measurement)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndeppsal (Depth of each Salinity measurement)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\nPSAL (sea_water_practical_salinity)\nPSAL_QC\nPSAL_DM (method of data processing)\ndepden (Depth of each density measurement)\nheightwind (altitude, meters)\nUWND (zonal wind)\nVWND (meridional wind, m/s)\n... (44 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pirata_5922_7dcd_7219_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pirata_5922_7dcd_7219_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pirata_5922_7dcd_7219/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/pirata_5922_7dcd_7219.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pirata_5922_7dcd_7219&showErrors=false&email=", "NOAA/PMEL", "pirata_5922_7dcd_7219"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc.graph", "", "", "public", "OceanSITES TAO daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from one of the flux reference mooring sites in the tropical oceans. Included in this file are sea temperatures from the surface to 500m depth, salinity and density (sigma-theta) from the surface to typically 120m depth, sea currents typically at 10m depth and at some sites deeper, a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and sea level airpressure. Buoy positions are also included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each measurement, m)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\n... (42 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/tao_6eb4_e773_2fbc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/tao_6eb4_e773_2fbc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/tao_6eb4_e773_2fbc/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/tao_6eb4_e773_2fbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=tao_6eb4_e773_2fbc&showErrors=false&email=", "NOAA/PMEL", "tao_6eb4_e773_2fbc"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.graph", "", "", "public", "OSMC Argo Profile data", "OSMC Argo Profile data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\norganization_name\ncountry_name\nplatform_type_name\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nparameter_name\ndaily_obs_count\nobservation_depth\nobservation_value\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_PROFILERS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_PROFILERS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_PROFILERS/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_PROFILERS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_PROFILERS&showErrors=false&email=", "OSMC", "OSMC_PROFILERS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.graph", "", "", "public", "OSMC normalized observations from GTS", "OSMC normalized In-situ Real time GTS data\n\ncdm_data_type = Point\nVARIABLES:\nPLATFORM_CODE (Station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform\nparameter\nOBSERVATION_VALUE\nOBSERVATION_DEPTH\nCOUNTRY_NAME\norganization_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_Points_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_Points_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_Points/index.json", "https://www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_Points.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_Points&showErrors=false&email=", "OSMC", "OSMC_Points"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_417d_33ad_dead.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_417d_33ad_dead", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_417d_33ad_dead.graph", "", "", "public", "Pacific Island Network Marine Fish Monitoring Dataset - Surveys", "National Park Service Fish Stock Data\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\nhigherInstitutionCode\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\nisland\n... (67 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_417d_33ad_dead_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_417d_33ad_dead_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_417d_33ad_dead/index.json", "http://science.nature.nps.gov/im/units/pacn/monitoring/vs_fish_marine.cfm", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_417d_33ad_dead.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_417d_33ad_dead&showErrors=false&email=", "USDOI/NPS/NRSS/IMD/PACN", "hawaii_soest_417d_33ad_dead"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_31bb_eee9_ef0a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_31bb_eee9_ef0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_31bb_eee9_ef0a.graph", "", "", "public", "Pacific Island Network Marine Fish Monitoring Dataset - Transects", "The benthic marine community in the Pacific Island Network (PACN) is a complex ecologic system and a diverse taxonomic environment, including algae and corals and other invertebrates. Reef-building corals are the primary architectural organism and are sensitive to environmental degradation; therefore, they are a good indicator of overall health for nearshore marine ecosystems. Primary stressors to coral reefs include disease, bleaching, sedimentation, eutrophication, storms, and global climate change. The United Nations Environment Programme (UNEP) has proposed using coral reefs as a worldwide indicator ecosystem for global climate change (Spalding et al. 2004). For these reasons, the PACN has chosen to implement long term monitoring of benthic marine communities. Benthic marine communities is most closely linked with marine fish, and monitoring efforts will be conducted at the same time and location to maximize data value\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\n... (58 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_31bb_eee9_ef0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_31bb_eee9_ef0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_31bb_eee9_ef0a/index.json", "http://science.nature.nps.gov/im/units/pacn/monitoring/vs_fish_marine.cfm", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_31bb_eee9_ef0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_31bb_eee9_ef0a&showErrors=false&email=", "USDOI/NPS/NRSS/IMD/PACN", "hawaii_soest_31bb_eee9_ef0a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5673_517d_3b8c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5673_517d_3b8c.graph", "", "", "public", "PacIOOS Nearshore Sensor 01 (NS01): Waikiki Yacht Club, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS01 is located at the Waikiki Yacht Club and is fixed to the bridge pier. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to a piling ~0.5m below mean sea level.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5673_517d_3b8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5673_517d_3b8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5673_517d_3b8c/index.json", "https://www.pacioos.hawaii.edu/water/sensor-waikiki/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5673_517d_3b8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5673_517d_3b8c&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5673_517d_3b8c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_1273_fad1_0404", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_1273_fad1_0404.graph", "", "", "public", "PacIOOS Nearshore Sensor 02 (NS02): Hawaii Yacht Club, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS02 is located at a floating dock off the Hawaii Yacht Club. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to a floating dock just below the ocean surface.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_1273_fad1_0404_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_1273_fad1_0404_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_1273_fad1_0404/index.json", "https://www.pacioos.hawaii.edu/water/sensor-hawaiiyachtclub/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_1273_fad1_0404.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_1273_fad1_0404&showErrors=false&email=", "University of Hawaii", "hawaii_soest_1273_fad1_0404"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d787_1c35_208d", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d787_1c35_208d.graph", "", "", "public", "PacIOOS Nearshore Sensor 03 (NS03): Hilton Hawaiian Pier, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS03 is located at the Atlantis Pier off the Hilton Hawaiian Village. The instrument is a Sea-Bird Electronics model 37SMP. The package is located at approximately 2.0 meters below mean sea level.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d787_1c35_208d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d787_1c35_208d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d787_1c35_208d/index.json", "https://www.pacioos.hawaii.edu/water/sensor-atlantis/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d787_1c35_208d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d787_1c35_208d&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d787_1c35_208d"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_c9f9_c232_1fe9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_c9f9_c232_1fe9.graph", "", "", "public", "PacIOOS Nearshore Sensor 04 (NS04): Waikiki Aquarium, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS04 is located just off the Waikiki Aquarium and is fixed to the pier. The instrument is a Sea-Bird Electronics model 37SMP. The package is mounted on the bottom in approximately 2.0 to 2.5 meters ocean depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_c9f9_c232_1fe9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_c9f9_c232_1fe9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_c9f9_c232_1fe9/index.json", "https://www.pacioos.hawaii.edu/water/sensor-waikikiaquarium/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_c9f9_c232_1fe9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_c9f9_c232_1fe9&showErrors=false&email=", "University of Hawaii", "hawaii_soest_c9f9_c232_1fe9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b55f_a8f2_ad70", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b55f_a8f2_ad70.graph", "", "", "public", "PacIOOS Nearshore Sensor 05 (NS05): Pago Pago, American Samoa", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS05 is located at the Department of Marine and Wildlife Resources (DMWR) dock in Pago Pago Harbor, American Samoa and is mounted to the bottom in about 2 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_b55f_a8f2_ad70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_b55f_a8f2_ad70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_b55f_a8f2_ad70/index.json", "https://www.pacioos.hawaii.edu/water/sensor-pagopago/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_b55f_a8f2_ad70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_b55f_a8f2_ad70&showErrors=false&email=", "University of Hawaii", "hawaii_soest_b55f_a8f2_ad70"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f59_c29c_d820", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f59_c29c_d820.graph", "", "", "public", "PacIOOS Nearshore Sensor 06 (NS06): Pohnpei, Micronesia", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS06 is located at the dock in Pohnpei lagoon and is mounted to the bottom in about 1 meter of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8f59_c29c_d820_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8f59_c29c_d820_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8f59_c29c_d820/index.json", "https://www.pacioos.hawaii.edu/water/sensor-pohnpei/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8f59_c29c_d820.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8f59_c29c_d820&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8f59_c29c_d820"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_77b7_f5dd_cda3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_77b7_f5dd_cda3.graph", "", "", "public", "PacIOOS Nearshore Sensor 07 (NS07): Majuro, Marshall Islands", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS07 is located at the Uliga dock in Majuro, Republic of the Marshall Islands and is mounted to the bottom in about 2 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_77b7_f5dd_cda3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_77b7_f5dd_cda3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_77b7_f5dd_cda3/index.json", "https://www.pacioos.hawaii.edu/water/sensor-majuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_77b7_f5dd_cda3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_77b7_f5dd_cda3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_77b7_f5dd_cda3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e3c0_a956_de01", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e3c0_a956_de01.graph", "", "", "public", "PacIOOS Nearshore Sensor 08 (NS08): Koror, Palau", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS08 is located at the Palau International Coral Reef Center (PICRC) dock in Koror, Palau and is mounted to the bottom in about 3.5 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e3c0_a956_de01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e3c0_a956_de01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e3c0_a956_de01/index.json", "https://www.pacioos.hawaii.edu/water/sensor-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e3c0_a956_de01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e3c0_a956_de01&showErrors=false&email=", "University of Hawaii", "hawaii_soest_e3c0_a956_de01"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0113_b43d_e024", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0113_b43d_e024.graph", "", "", "public", "PacIOOS Nearshore Sensor 09 (NS09): Cetti Bay, Guam", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS09 is approximately 70 meters offshore in Cetti Bay, Guam and is mounted to the bottom in about 3 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_0113_b43d_e024_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_0113_b43d_e024_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_0113_b43d_e024/index.json", "https://www.pacioos.hawaii.edu/water/sensor-cetti/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_0113_b43d_e024.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_0113_b43d_e024&showErrors=false&email=", "University of Hawaii", "hawaii_soest_0113_b43d_e024"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f25e_31a1_16f1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f25e_31a1_16f1.graph", "", "", "public", "PacIOOS Nearshore Sensor 10 (NS10): Maunalua Bay, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS10 is located off the old pier in Maunalua Bay in Hawaii Kai. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to the pier at about 2m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f25e_31a1_16f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f25e_31a1_16f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f25e_31a1_16f1/index.json", "https://www.pacioos.hawaii.edu/water/sensor-maunalua/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f25e_31a1_16f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f25e_31a1_16f1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f25e_31a1_16f1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8668_b202_8233", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8668_b202_8233.graph", "", "", "public", "PacIOOS Nearshore Sensor 11 (NS11): Saipan, CNMI", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS11 is approximately 20 meters offshore of Puntan Babpot near the golf course at Laolao Bay on the east shore of Saipan in the Commonwealth of the Northern Mariana Islands (CNMI) and is mounted to the bottom in about 3 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8668_b202_8233_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8668_b202_8233_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8668_b202_8233/index.json", "https://www.pacioos.hawaii.edu/water/sensor-saipan/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8668_b202_8233.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8668_b202_8233&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8668_b202_8233"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b10c_af2d_3fe8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b10c_af2d_3fe8.graph", "", "", "public", "PacIOOS Nearshore Sensor 12 (NS12): Kalama Beach Park, Maui, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS12 is located at Kalama Beach Park in Kihei, Maui. The instrument is a 6600V2-4 Multi-parameter water quality logger. The package is fixed to a mooring at about 1.5m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\nwater_depth (Sensor depth, m)\nph (1)\noxygen (Dissolved oxygen concentration, kg m-3)\noxygen_saturation (Dissolved oxygen saturation, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_b10c_af2d_3fe8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_b10c_af2d_3fe8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_b10c_af2d_3fe8/index.json", "https://www.pacioos.hawaii.edu/water/sensor-kalama/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_b10c_af2d_3fe8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_b10c_af2d_3fe8&showErrors=false&email=", "University of Hawaii", "hawaii_soest_b10c_af2d_3fe8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_026f_4c1d_55e5", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_026f_4c1d_55e5.graph", "", "", "public", "PacIOOS Nearshore Sensor 13 (NS13): Kahului, Maui, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS13 is located in Kahului Harbor in Maui. The instrument is a 6600V2-4 Multi-parameter water quality logger. The package is fixed to a piling at about 1.5m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nwater_depth (Sensor depth (processed), m)\nwater_depth_raw (Sensor depth (raw), m)\nph (pH (processed), 1)\nph_raw (pH (raw), 1)\noxygen (Dissolved oxygen concentration (processed), kg m-3)\noxygen_raw (Dissolved oxygen concentration (raw), kg m-3)\noxygen_saturation (Dissolved oxygen saturation (processed), 1)\noxygen_saturation_raw (Dissolved oxygen saturation (raw), 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_026f_4c1d_55e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_026f_4c1d_55e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_026f_4c1d_55e5/index.json", "https://www.pacioos.hawaii.edu/water/sensor-kahului/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_026f_4c1d_55e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_026f_4c1d_55e5&showErrors=false&email=", "University of Hawaii", "hawaii_soest_026f_4c1d_55e5"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_191e_fe37_f9a0", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_191e_fe37_f9a0.graph", "", "", "public", "PacIOOS Nearshore Sensor 15 (NS15): Pago Bay, Guam", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS15 is in Pago Bay, Guam and is mounted to the bottom in about 1.5 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. This station was decommissioned and relocated after 2018 in order to minimize burial of the sensor by silt; see NS17 for data at the new mooring location.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_191e_fe37_f9a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_191e_fe37_f9a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_191e_fe37_f9a0/index.json", "https://www.pacioos.hawaii.edu/water/sensor-pago/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_191e_fe37_f9a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_191e_fe37_f9a0&showErrors=false&email=", "University of Hawaii", "hawaii_soest_191e_fe37_f9a0"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d5ba_831c_443a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d5ba_831c_443a.graph", "", "", "public", "PacIOOS Nearshore Sensor 16 (NS16): Wailupe, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS16 is located off Wailupe in Maunalua Bay in Aina Haina. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to the pier at about 1m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d5ba_831c_443a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d5ba_831c_443a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d5ba_831c_443a/index.json", "https://www.pacioos.hawaii.edu/water/sensor-wailupe/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d5ba_831c_443a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d5ba_831c_443a&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d5ba_831c_443a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_093e_cd55_43a3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_093e_cd55_43a3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_093e_cd55_43a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_093e_cd55_43a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_093e_cd55_43a3/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_093e_cd55_43a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_093e_cd55_43a3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_093e_cd55_43a3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc92_7d24_0627", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc92_7d24_0627.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_cc92_7d24_0627_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_cc92_7d24_0627_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_cc92_7d24_0627/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_cc92_7d24_0627.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_cc92_7d24_0627&showErrors=false&email=", "University of Hawaii", "hawaii_soest_cc92_7d24_0627"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f289_8170_ec45", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f289_8170_ec45.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f289_8170_ec45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f289_8170_ec45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f289_8170_ec45/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f289_8170_ec45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f289_8170_ec45&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f289_8170_ec45"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_36dd_cf4c_73a6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_36dd_cf4c_73a6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_36dd_cf4c_73a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_36dd_cf4c_73a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_36dd_cf4c_73a6/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_36dd_cf4c_73a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_36dd_cf4c_73a6&showErrors=false&email=", "University of Hawaii", "hawaii_soest_36dd_cf4c_73a6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5359_8678_82b1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5359_8678_82b1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5359_8678_82b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5359_8678_82b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5359_8678_82b1/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5359_8678_82b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5359_8678_82b1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5359_8678_82b1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_92c1_a2b0_55fb", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_92c1_a2b0_55fb.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_92c1_a2b0_55fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_92c1_a2b0_55fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_92c1_a2b0_55fb/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_92c1_a2b0_55fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_92c1_a2b0_55fb&showErrors=false&email=", "University of Hawaii", "hawaii_soest_92c1_a2b0_55fb"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_75b3_e52c_26a2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_75b3_e52c_26a2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_75b3_e52c_26a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_75b3_e52c_26a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_75b3_e52c_26a2/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_75b3_e52c_26a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_75b3_e52c_26a2&showErrors=false&email=", "University of Hawaii", "hawaii_soest_75b3_e52c_26a2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_a826_8633_00bb", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_a826_8633_00bb.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_a826_8633_00bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_a826_8633_00bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_a826_8633_00bb/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_a826_8633_00bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_a826_8633_00bb&showErrors=false&email=", "University of Hawaii", "hawaii_soest_a826_8633_00bb"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_076a_87b3_40a0", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_076a_87b3_40a0.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_076a_87b3_40a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_076a_87b3_40a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_076a_87b3_40a0/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_076a_87b3_40a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_076a_87b3_40a0&showErrors=false&email=", "University of Hawaii", "hawaii_soest_076a_87b3_40a0"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_4c82_4728_010b", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_4c82_4728_010b.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_4c82_4728_010b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_4c82_4728_010b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_4c82_4728_010b/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_4c82_4728_010b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_4c82_4728_010b&showErrors=false&email=", "University of Hawaii", "hawaii_soest_4c82_4728_010b"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_856b_7e66_8c3f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_856b_7e66_8c3f.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_856b_7e66_8c3f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_856b_7e66_8c3f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_856b_7e66_8c3f/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_856b_7e66_8c3f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_856b_7e66_8c3f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_856b_7e66_8c3f"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2f21_4063_cfec", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2f21_4063_cfec.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_2f21_4063_cfec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_2f21_4063_cfec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_2f21_4063_cfec/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_2f21_4063_cfec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_2f21_4063_cfec&showErrors=false&email=", "University of Hawaii", "hawaii_soest_2f21_4063_cfec"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "http://www.ogcnetwork.net/node/344", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/PRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2017, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2017, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2017, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_88cd_7dfb_ecfa.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_88cd_7dfb_ecfa", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_88cd_7dfb_ecfa.graph", "", "", "public", "US Pacific Islands, Coral Reef Monitoring, Fish Surveys, Belt Transects (BLT)", "Coral Reef Ecosytem Division (CRED) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_88cd_7dfb_ecfa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_88cd_7dfb_ecfa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_88cd_7dfb_ecfa/index.json", "https://www.pifsc.noaa.gov/cred/fish.php", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_88cd_7dfb_ecfa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_88cd_7dfb_ecfa&showErrors=false&email=", "USDOC/NOAA/NMFS/PIFSC/CRED", "hawaii_soest_88cd_7dfb_ecfa"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7448_8dd2_e529.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7448_8dd2_e529", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7448_8dd2_e529.graph", "", "", "public", "US Pacific Islands, Coral Reef Monitoring, Fish Surveys, Stationary Point Counts (nSPC)", "Coral Reef Ecosytem Division (CRED) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\n... (49 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_7448_8dd2_e529_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_7448_8dd2_e529_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_7448_8dd2_e529/index.json", "https://www.pifsc.noaa.gov/cred/fish.php", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_7448_8dd2_e529.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_7448_8dd2_e529&showErrors=false&email=", "USDOC/NOAA/NMFS/PIFSC/CRED", "hawaii_soest_7448_8dd2_e529"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_6dcb_e681_3eab.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_6dcb_e681_3eab", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_6dcb_e681_3eab.graph", "", "", "public", "US Pacific Islands, Coral Reef Monitoring, Fish Surveys, Stationary Point Counts (SPC)", "Coral Reef Ecosytem Division (CRED) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\n... (49 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_6dcb_e681_3eab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_6dcb_e681_3eab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_6dcb_e681_3eab/index.json", "https://www.pifsc.noaa.gov/cred/fish.php", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_6dcb_e681_3eab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_6dcb_e681_3eab&showErrors=false&email=", "USDOC/NOAA/NMFS/PIFSC/CRED", "hawaii_soest_6dcb_e681_3eab"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d98d_1d43_fef7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d98d_1d43_fef7.graph", "", "", "public", "Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\naltitude (height above mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\nair_temperature (Mean air temperature, Celsius)\nair_temperature_std (Standard deviation of air temperature, Celsius)\nair_temperature_max (Maximum air temperature, Celsius)\nair_temperature_max_time (Time of maximum air temperature, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (Minimum air temperature, Celsius)\nair_temperature_min_time (Time of minimum air temperature, seconds since 1970-01-01T00:00:00Z)\nwind_speed (Mean wind speed, m s-1)\nwind_speed_std (Standard deviation wind speed, m s-1)\nwind_speed_max (Maximum wind speed, m s-1)\nwind_speed_max_time (Time of maximum wind speed, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (Minimum wind speed, m s-1)\nwind_speed_min_time (Time of minimum wind speed, seconds since 1970-01-01T00:00:00Z)\nwind_from_direction (degrees)\nwind_from_direction_std (Standard deviation of wind direction, degrees)\nrainfall_amount (Rainfall total, mm)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d98d_1d43_fef7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d98d_1d43_fef7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d98d_1d43_fef7/index.json", "http://www.coralreefresearchfoundation.org", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d98d_1d43_fef7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d98d_1d43_fef7&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "hawaii_soest_d98d_1d43_fef7"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whoiSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whoiSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whoiSos.graph", "", "", "public", "WHOI MVCO 12m Node ADCP SOS, 2008-present", "Wave observations from the 12m node ADCP in the Martha's Vineyard Coastal Observatory (MVCO) in the northwest Atlantic in coastal waters of North America. Extensive, detailed documentation is available in these .xml files:\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/MVCO_ObservingSystem.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/ADCP_System.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/MVCO_Workhorse_1200.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/RDI_Workhorse_1200.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Pressure_Obs_Process.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Velocity_Obs_Process.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Pressure_QC_Chain.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Velocity_QC_Chain.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/PUV_Analysis.xml\n\nFor this dataset, if you want the most recent data, you MUST change the default end time constraint to be a time that is slightly (a few seconds or a few minutes) in the past. The source data server does not allow end time constraints that are after the exact current time.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\npressure (Mean Sea Water Pressure, cm)\nwaveHeightFromPressure (Wave Height from Pressure, cm)\nwavePeriodFromPressure (Wave Period from Pressure, s)\nloCutoffFrequency (Low Cutoff Frequency, Hz)\nhiCutoffFrequency (High Cutoff Frequency, Hz)\nwaveHeightAll (Wave Height All, cm)\nswell (cm)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whoiSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whoiSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whoiSos/index.json", "https://www.whoi.edu/mvco", "http://upwell.pfeg.noaa.gov/erddap/rss/whoiSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoiSos&showErrors=false&email=", "Woods Hole Oceanographic Institution", "whoiSos"] + ] + } + } + recorded_at: 2019-07-19 19:13:11 GMT + recorded_with: vcr/0.2.6, webmockr/0.3.4 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.8.1.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Fri, 19 Jul 2019 19:13:47 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Fri, 19 Jul 2019 19:13:47 GMT + xdods-server: dods/3.7 + erddap-server: '2.01' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://upwell.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_01af_e372_5bb6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_01af_e372_5bb6.graph", "", "", "public", "AIS Ship Traffic: Hawaii: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_01af_e372_5bb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_01af_e372_5bb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_01af_e372_5bb6/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_01af_e372_5bb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_01af_e372_5bb6&showErrors=false&email=", "University of Hawaii", "hawaii_soest_01af_e372_5bb6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f70b_c777_2d0b", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f70b_c777_2d0b.graph", "", "", "public", "AIS Ship Traffic: Johnston Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f70b_c777_2d0b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f70b_c777_2d0b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f70b_c777_2d0b/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f70b_c777_2d0b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f70b_c777_2d0b&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f70b_c777_2d0b"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_be9a_9be0_1f0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_be9a_9be0_1f0a.graph", "", "", "public", "AIS Ship Traffic: Mariana and Wake: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_be9a_9be0_1f0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_be9a_9be0_1f0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_be9a_9be0_1f0a/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_be9a_9be0_1f0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_be9a_9be0_1f0a&showErrors=false&email=", "University of Hawaii", "hawaii_soest_be9a_9be0_1f0a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5742_4f35_ff55", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5742_4f35_ff55.graph", "", "", "public", "AIS Ship Traffic: Rose Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5742_4f35_ff55_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5742_4f35_ff55_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5742_4f35_ff55/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5742_4f35_ff55.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5742_4f35_ff55&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5742_4f35_ff55"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_490d_1198_15c1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_490d_1198_15c1.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_490d_1198_15c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_490d_1198_15c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_490d_1198_15c1/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_490d_1198_15c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_490d_1198_15c1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_490d_1198_15c1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0956_e939_cefc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0956_e939_cefc.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Velocity", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean current velocity at the ACO from a 250 kHz SonTek acoustic doppler current profiler (ADCP) at 1.83 m above the ocean bottom. Velocities are flagged bad if the amplitude is excessively low or high. An amplitude is high if it exceeds the average of the ping before and the ping after by 20 counts. An amplitude is low if less than 6 counts. After this the velocities are flagged bad if the absolute deviation of the vertical velocity from its ensemble median exceeds 0.15 m/s or if its value is less than -0.25 m/s.\n\ncdm_data_type = Profile\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each location, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\neastward_sea_water_velocity (current east component, meters/second)\nnorthward_sea_water_velocity (current north component, meters/second)\nupward_sea_water_velocity (current upward component, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_0956_e939_cefc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_0956_e939_cefc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_0956_e939_cefc/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_0956_e939_cefc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_0956_e939_cefc&showErrors=false&email=", "University of Hawaii", "hawaii_soest_0956_e939_cefc"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d1bf_1535_741f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d1bf_1535_741f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d1bf_1535_741f.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Bottom Pressure Recorder (BPR)", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean pressure at the ACO from a Bottom Pressure Recorder (BPR).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\npressure (sea water pressure, psi)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d1bf_1535_741f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d1bf_1535_741f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d1bf_1535_741f/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d1bf_1535_741f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d1bf_1535_741f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d1bf_1535_741f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc9b_209f_ea2f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc9b_209f_ea2f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc9b_209f_ea2f.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Hydrophone Acoustics", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographi\nc observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides sound files of ocean acoustics at the ocean floor from the ACO hydrophone.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nelapsedTime (Elapsed Time, seconds)\nchannel_1\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_cc9b_209f_ea2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_cc9b_209f_ea2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_cc9b_209f_ea2f/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_cc9b_209f_ea2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_cc9b_209f_ea2f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_cc9b_209f_ea2f"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/database-tables-description", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/database-tables-description", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/cast-table-column-descriptions", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://upwell.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the May 2019 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://www.usgodae.org/cgi-bin/datalist.pl?summary=Go&dset=fnmoc_obs_sfcobs", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1995.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1995", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1995.graph", "", "", "public", "Hake Survey ADCP (1995)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp1995_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp1995_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp1995/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/1995%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp1995.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp1995&showErrors=false&email=", "OSU", "nwioosAdcp1995"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1998.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1998", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1998.graph", "", "", "public", "Hake Survey ADCP (1998)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp1998_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp1998_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp1998/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/1998%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp1998.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp1998&showErrors=false&email=", "OSU", "nwioosAdcp1998"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2001.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2001", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2001.graph", "", "", "public", "Hake Survey ADCP (2001)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (Altitude, m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp2001_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp2001_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp2001/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/2001%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp2001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp2001&showErrors=false&email=", "OSU", "nwioosAdcp2001"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2003.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2003", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2003.graph", "", "", "public", "Hake Survey ADCP (2003)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp2003_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp2003_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp2003/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/2003%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp2003.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp2003&showErrors=false&email=", "OSU", "nwioosAdcp2003"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2005.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2005", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2005.graph", "", "", "public", "Hake Survey ADCP (2005)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp2005_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp2005_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp2005/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/2005%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp2005.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp2005&showErrors=false&email=", "OSU", "nwioosAdcp2005"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e5b4_d905_99ef", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e5b4_d905_99ef.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e5b4_d905_99ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e5b4_d905_99ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e5b4_d905_99ef/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e5b4_d905_99ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e5b4_d905_99ef&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "hawaii_soest_e5b4_d905_99ef"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_190f_1fe8_4cc4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_190f_1fe8_4cc4.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitors water quality at several beaches across the island of Maui in the State of Hawaii. This community-based monitoring effort provides valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites are also monitored for harmful bacteria levels of Enterococcus. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. \n\nData are managed through an online repository, the Coral Reef Monitoring Data Portal (http://monitoring.coral.org), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection is coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\n... (10 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_190f_1fe8_4cc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_190f_1fe8_4cc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_190f_1fe8_4cc4/index.json", "http://monitoring.coral.org", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_190f_1fe8_4cc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_190f_1fe8_4cc4&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "hawaii_soest_190f_1fe8_4cc4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys.\n\nThe data is from NOAA NDBC. It has been reformatted by NOAA Coastwatch,\nWest Coast Node. This dataset only has the data that is closest to a\ngiven hour. The time values in the dataset are rounded to the nearest hour.\n\nThis dataset has both historical data (quality controlled, before\n2019-06-01T00:00:00Z) and near real time data (less quality controlled, from\n2019-06-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Name)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nwd (Wind Direction, degrees_true)\nwspd (Wind Speed, m s-1)\ngst (Wind Gust Speed, m s-1)\nwvht (Wave Height, m)\ndpd (Wave Period, Dominant, s)\napd (Wave Period, Average, s)\nmwd (Wave Direction, degrees_true)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.graph", "", "", "public", "NEFSC Continuous Plankton Recorder", "A summary for the data\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ncruise\nsample\nlatitude (degrees_north)\nlongitude (degrees_east)\nphyto_color_indx (Phytoplankton Color Index)\nmarmap_tax_code (Marmap Taxonomic Code)\nmarmap_stage_code\nabundance (per 100 cubic meters)\nlife_stage\ntaxonomic_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/wocecpr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/wocecpr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/wocecpr/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "http://upwell.pfeg.noaa.gov/erddap/rss/wocecpr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=wocecpr&showErrors=false&email=", "NEFSC", "wocecpr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp.graph", "", "", "public", "NOAA NDBC SOS, 2006-present, sea_water_temperature", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_water_temperature data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWTemp/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWTemp&showErrors=false&email=", "NOAA NDBC", "ndbcSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind.graph", "", "", "public", "NOAA NDBC SOS, 2006-present, winds", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have winds data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwind_from_direction (degrees_true)\nwind_speed (m s-1)\nwind_speed_of_gust (m s-1)\nupward_air_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWind_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWind_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWind/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWind.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWind&showErrors=false&email=", "NOAA NDBC", "ndbcSosWind"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents.graph", "", "", "public", "NOAA NDBC SOS, 2007-present, currents", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have currents data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\nWARNING: Always check the quality_flags before using this data. A simple criterion is: only use a row of data if the first quality_flags value for the row (overall bin status) is 3 (good data/passed quality test). You can do this by appending &quality_flags=~\"3;.*\" to your request.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nbin (count)\ndirection_of_sea_water_velocity (degrees_true)\nsea_water_speed (cm/s)\nupward_sea_water_velocity (cm/s)\nerror_velocity (cm/s)\nplatform_orientation (degrees_true)\nplatform_pitch_angle (degree)\nplatform_roll_angle (degree)\nsea_water_temperature (Cel)\npct_good_3_beam (Percent Good 3 Beam, percent)\npct_good_4_beam (Percent Good 4 Beam, percent)\npct_rejected (Percent Rejected, percent)\npct_bad (Percent Bad, percent)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosCurrents_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosCurrents_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosCurrents/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosCurrents.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosCurrents&showErrors=false&email=", "NOAA NDBC", "ndbcSosCurrents"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity.graph", "", "", "public", "NOAA NDBC SOS, 2007-present, sea_water_practical_salinity", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_water_practical_salinity data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosSalinity/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosSalinity&showErrors=false&email=", "NOAA NDBC", "ndbcSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel.graph", "", "", "public", "NOAA NDBC SOS, 2008-present, sea_floor_depth_below_sea_surface", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_floor_depth_below_sea_surface data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\naveraging_interval (s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWLevel/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWLevel&showErrors=false&email=", "NOAA NDBC", "ndbcSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "", "public", "North Pacific High, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_43a8_6d6d_9052.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_43a8_6d6d_9052", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_43a8_6d6d_9052.graph", "", "", "public", "Northwestern Hawaiian Islands, Coral Reef Monitoring, Fish Surveys, Belt Transects (BLT)", "Papahanaumokuakea Marine National Monument (PMNM) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_43a8_6d6d_9052_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_43a8_6d6d_9052_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_43a8_6d6d_9052/index.json", "http://www.papahanaumokuakea.gov/research/welcome.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_43a8_6d6d_9052.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_43a8_6d6d_9052&showErrors=false&email=", "USDOC/NOAA/NOS/PMNM", "hawaii_soest_43a8_6d6d_9052"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_68f2_d17d_d413.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_68f2_d17d_d413", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_68f2_d17d_d413.graph", "", "", "public", "Northwestern Hawaiian Islands, Coral Reef Monitoring, Fish Surveys, Belt Transects (vBLT)", "Papahanaumokuakea Marine National Monument (PMNM) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_68f2_d17d_d413_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_68f2_d17d_d413_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_68f2_d17d_d413/index.json", "http://www.papahanaumokuakea.gov/research/welcome.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_68f2_d17d_d413.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_68f2_d17d_d413&showErrors=false&email=", "USDOC/NOAA/NOS/PMNM", "hawaii_soest_68f2_d17d_d413"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_ec1c_1aa4_ddaf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_ec1c_1aa4_ddaf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_ec1c_1aa4_ddaf.graph", "", "", "public", "Northwestern Hawaiian Islands, Coral Reef Monitoring, Fish Surveys, Stationary Point Counts (nSPC)", "Papahanaumokuakea Marine National Monument (PMNM) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_ec1c_1aa4_ddaf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_ec1c_1aa4_ddaf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_ec1c_1aa4_ddaf/index.json", "http://www.papahanaumokuakea.gov/research/welcome.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_ec1c_1aa4_ddaf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_ec1c_1aa4_ddaf&showErrors=false&email=", "USDOC/NOAA/NOS/PMNM", "hawaii_soest_ec1c_1aa4_ddaf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosCoral.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosCoral", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosCoral.graph", "", "", "public", "NWFSC Coral Data Collected off West Coast of US (1980-2005)", "This data contains the locations of some observations of\ncold-water/deep-sea corals off the west coast of the United States.\nRecords of coral catch originate from bottom trawl surveys conducted\nfrom 1980 to 2001 by the Alaska Fisheries Science Center (AFSC) and\n2001 to 2005 by the Northwest Fisheries Science Center (NWFSC).\nLocational information represent the vessel mid positions (for AFSC\nsurvey trawls) or \"best position\" (i.e., priority order: 1) gear\nmidpoint 2) vessel midpoint, 3) vessel start point, 4) vessel end\npoint, 5) station coordinates for NWFSC survey trawls) conducted as\npart of regular surveys of groundfish off the coasts of Washington,\nOregon and California by NOAA Fisheries. Only records where corals\nwere identified in the total catch are included. Each catch sample\nof coral was identified down to the most specific taxonomic level\npossible by the biologists onboard, therefore identification was\ndependent on their expertise. When positive identification was not\npossible, samples were sometimes archived for future identification\nby systematist experts. Data were compiled by the NWFSC, Fishery\nResource Analysis & Monitoring Division\n\nPurpose - Examination of the spatial and temporal distributions of\nobservations of cold-water/deep-sea corals off the west coast of the\nUnited States, including waters off the states of Washington, Oregon,\nand California. It is important to note that these records represent\nonly presence of corals in the area swept by the trawl gear. Since\nbottom trawls used during these surveys are not designed to sample\nepibenthic invertebrates, absence of corals in the catch does not\nnecessary mean they do not occupy the area swept by the trawl gear.\n\nData Credits - NOAA Fisheries, Alaska Fisheries Science Center,\nResource Assessment & Conservation Engineering Division (RACE) NOAA\nFisheries, Northwest Fisheries Science Center, Fishery Resource\nAnalysis & Monitoring Division (FRAM)\n\nContact: Curt Whitmire, NOAA NWFSC, Curt.Whitmire@noaa.gov\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosCoral_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosCoral_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosCoral/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Coral%201980-2005.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosCoral.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosCoral&showErrors=false&email=", "NOAA NWFSC", "nwioosCoral"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosGroundfish.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosGroundfish", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosGroundfish.graph", "", "", "public", "NWFSC Groundfish Data for U.S. West Coast (2003-2005)", "The data available for downloading is summarized data from the 2003-2005\nU.S. West Coast Bottom Trawl Survey (WCGTS) of Groundfish Resources off\nWashington, Oregon and California.\n\nThe Northwest Fisheries Science Center's Fishery Resource Analysis and\nMonitoring Division (FRAM) completed the sixth in an annual series of\ngroundfish bottom trawl surveys in 2003. The survey was conducted June\n24 to October 23, 2003 and targeted the commercial groundfish resources\ninhabiting depths of 55 to 1,280 meters [m], (30 - 700 fathoms [fm])\nfrom the area off Cape Flattery, Washington (latitude [lat.] 48\u00b010'N)\nto the U.S.-Mexican border (lat. 32\u00b030'N) using chartered West Coast\ncommercial trawlers. These ongoing series of annual surveys, conducted\nby FRAM since 1998, are designed to monitor long-term trends in\ndistribution and abundance of west coast groundfish, especially those\nspecies of management concern. The 2003 survey represents the first\nyear in which the depth range was expanded to include both the\ncontinental shelf (55 - 183 m) and continental slope (183 - 1,280 m)\narea and the first year in which a stratified-random sampling design\nwas adopted.\n\nIn 2003, a total of 574 successful tows were completed out of 643\nattempts. Simrad ITI net mensuration data, as well as global\npositioning system (GPS) navigation data and bottom contact sensor\ndata, used to document performance (e.g. bottom tending), were\nobtained for most tows.\n\nAn Aberdeen-style net with a small mesh (2\" stretched measure or less)\nliner in the codend (to retain smaller specimens) was used to sample\nfish biomass. Target duration of each tow was 15 minutes. Tow\nduration was the time between touchdown and lift-off of the trawl net\nfrom the seafloor based on readings from bottom contact sensors.\n\nCatches were sorted to species, aggregate or other appropriate\ntaxonomic level and then weighed using an electronic,\nmotion-compensated scale. A total of 517 species or families (fish\nand invertebrates) were identified within the survey area. Although\nbiological sampling effort continues to include Dover sole\n(Microstomus pacificus), shortspine thornyhead (Sebastolobus\nalascanus), longspine thornyhead (Sebastolobus altivelis), and\nsablefish (Anoplopoma fimbria), focus has increasingly shifted to\nencompass all groundfish species of management concern. Up to 100\nlength measurements, sex determinations, and individual weights\nand up to 25 age structures were collected per haul for these species.\n\ncdm_data_type = Trajectory\nVARIABLES:\nhaul_id (Haul Identifier)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosGroundfish_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosGroundfish_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosGroundfish/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Groundfish%20Survey%202003-2005.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosGroundfish.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosGroundfish&showErrors=false&email=", "NOAA NWFSC", "nwioosGroundfish"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails.graph", "", "", "public", "NWFSC HUD Fish Species Details", "Habitat Use Database (HUD) Fish Species Details compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\nspecies_id\ncommon_name\nscientific_name\nlife_stage\nabsolute_min_depth (m)\npreferred_min_depth (m)\nabsolute_max_depth (m)\npreferred_max_depth (m)\nabsolute_min_temp (Absolute Min Temperature, degree_C)\npreferred_min_temp (Preferred Min Temperature, degree_C)\nabsolute_max_temp (Absolute Max Temperature, degree_C)\npreferred_max_temp (Preferred Max Temperature, degree_C)\nabsolute_min_latitude (degrees_north)\npreferred_min_latitude (degrees_north)\nabsolute_max_latitude (degrees_north)\npreferred_max_latitude (degrees_north)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudFishDetails/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Fish%20Species%20Details.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudFishDetails.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudFishDetails&showErrors=false&email=", "NOAA NWFSC", "nwioosHudFishDetails"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishOccur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishOccur", "", "", "", "public", "NWFSC HUD Fish Species Occurrence", "Habitat Use Database (HUD) Fish Species Occurrence data compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\ncommon_name\nscientific_name\nlife_stage\ngender\nhabitat_association\nseason\nlevel_1_habitat\nlevel_2_habitat\nlevel_3_habitat\nlevel_4_habitat\nactivity\nactivity_association\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudFishOccur/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Fish%20Species%20Occurrence.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudFishOccur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudFishOccur&showErrors=false&email=", "NOAA NWFSC", "nwioosHudFishOccur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudPredPrey.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudPredPrey", "", "", "", "public", "NWFSC HUD Predators and Prey", "Habitat Use Database (HUD) Predators and Prey data compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\necoregion\nseason\nlevel_1_habitat\nlevel_2_habitat\nlevel_3_habitat\nlevel_4_habitat\nscientific_name\ngender\nlife_stage\nprey_name\nprey_gender\nprey_life_stage\npredator_name\npredator_gender\npredator_life_stage\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudPredPrey/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Predators%20and%20Prey.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudPredPrey.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudPredPrey&showErrors=false&email=", "NOAA NWFSC", "nwioosHudPredPrey"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudRef.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudRef", "", "", "", "public", "NWFSC HUD References", "Habitat Use Database (HUD) References compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\nseason\nlevel_1_habitat\nlevel_2_habitat\nlevel_3_habitat\nlevel_4_habitat\nscientific_name\ngender\nlife_stage\nreference_to\nreference_type\nauthors\npublication_year\nreference_name\neditor\npublication_name\npublisher_city\npublisher\nvolume\nnumber\nreferenced_pages\nthesis_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudRef/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20References.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudRef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudRef&showErrors=false&email=", "NOAA NWFSC", "nwioosHudRef"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002.graph", "", "", "public", "NWFSC Observer Fixed Gear Data, off West Coast of US, 2002-2006", "Observer Fixed Gear Data collected during 2002-2006 off West Coast of US.\n\nThis data product originates from data collected by fishery observers in the West Coast Groundfish Observer Program (WCGOP), Fishery Resource Analysis and Monitoring Division (FRAM) at the Northwest Fisheries Science Center, NOAA Fisheries. The WCGOP's goal is to improve total catch estimates by collecting information on the discarded catch (fish returned overboard at-sea) of west coast groundfish species. All data were collected according to standard protocols and data quality control established by the WCGOP. The observed portion of overall catch or landings in a fishery varies by coverage level. Since all fishing operations are not observed, neither the maps nor the data can be used to characterize the fishery completely. This is especially true for rarely-occurring species and when observed sample sizes are small. We urge caution when utilizing these data due to the complexity of groundfish management and fleet harvest dynamics. Grid cells representing less than 3 vessels and less than 10 hauls or sets are not shown due to confidentiality and to ensure adequate sample size. In the limited-entry fixed gear fishery, species discard rates (species discard weight / groundfish total catch (discard + retained weight)) are categorized by approximate quartile ranges and geo-referenced to 20 x 20 kilometer grid cells. The observed fixed gear set location (start location of fishing) was used to allocate data to 20 x 20 kilometer grid cells for calculation. Sixteen species were represented based on combined observer data from 2002-2006. The species included in this data product are dover sole (Microstomus pacificus), sablefish (Anoplopoma fimbria), longspine thornyhead (Sebastolobus altivelis), shortspine thornyhead (Sebastolobus alascanus), lingcod (Ophiodon elongatus), arrowtooth flounder (Atheresthes stomias), petrale sole (Eopsetta jordani), and the rockfishes (genus Sebastes), darkblotched rockfish (S. crameri), Pacific ocean perch (S. alutus), chilipepper (S. goodei), cowcod (S. levis), bocaccio (S. paucispinis), canary rockfish (S. pinniger), widow rockfish (S. entomelas), yelloweye rockfish (S. ruberrimus), and yellowtail rockfish (S. flavidus).\n\nPurpose: This data product was developed to provide basic groundfish discard distribution information for a wide variety of audiences. The West Coast Groundfish Observer Program conducts sampling of groundfish discarded by commercial fisheries along the entire continental U.S. West Coast. The seventeen species included in this data product are among those of most interest to the fisheries management and commercial fishing communities.\n\nData Credits: NOAA Fisheries, Northwest Fisheries Science Center, Fishery Resource Analysis & Monitoring Division, West Coast Groundfish Observer Program, Seattle, WA.\n\ncdm_data_type = Other\nVARIABLES:\nlongitude (Longitude (Center of 20x20 km Grid Cell), degrees_east)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosObsFixed2002_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosObsFixed2002_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosObsFixed2002/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Observer%20Fixed%20Gear%202002%202006.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosObsFixed2002.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosObsFixed2002&showErrors=false&email=", "NOAA NWFSC", "nwioosObsFixed2002"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002.graph", "", "", "public", "NWFSC Observer Trawl Data, off West Coast of US, 2002-2006", "Observer Trawl Data collected during 2002-2006 off West Coast of US.\n\nThis data product originates from data collected by fishery observers in the West Coast Groundfish Observer Program (WCGOP), Fishery Resource Analysis and Monitoring Division (FRAM) at the Northwest Fisheries Science Center, NOAA Fisheries. The WCGOP's goal is to improve total catch estimates by collecting information on the discarded catch (fish returned overboard at-sea) of west coast groundfish species. All data were collected according to standard protocols and data quality control established by the WCGOP. The observed portion of overall catch or landings in a fishery varies by coverage level. Since all fishing operations are not observed, neither the maps nor the data can be used to characterize the fishery completely. This is especially true for rarely-occurring species and when observed sample sizes are small. We urge caution when utilizing these data due to the complexity of groundfish management and fleet harvest dynamics. Grid cells representing less than 3 vessels and less than 10 hauls or sets are not shown due to confidentiality and to ensure adequate sample size. In the limited-entry groundfish bottom trawl fishery, species discard rates (species discard weight / groundfish total catch (discard + retained weight)) are categorized by approximate quartile ranges and geo-referenced to 10 x 10 kilometer grid cells. The observed trawl towline (line drawn from the start to end location of a trawl tow) was used to allocate data to 10 x 10 kilometer grid cells for calculation. Seventeen species were represented based on combined observer data from 2002-2006. The species included in this data product are dover sole (Microstomus pacificus), sablefish (Anoplopoma fimbria), longspine thornyhead (Sebastolobus altivelis), shortspine thornyhead (Sebastolobus alascanus), lingcod (Ophiodon elongatus), arrowtooth flounder (Atheresthes stomias), English sole (Parophrys vetulus), petrale sole (Eopsetta jordani), and the rockfishes (genus Sebastes), darkblotched rockfish (S. crameri), Pacific ocean perch (S. alutus), chilipepper (S. goodei), cowcod (S. levis), bocaccio (S. paucispinis), canary rockfish (S. pinniger), widow rockfish (S. entomelas), yelloweye rockfish (S. ruberrimus), and yellowtail rockfish (S. flavidus).\n\nPurpose: This data product was developed to provide basic groundfish discard distribution information for a wide variety of audiences. The West Coast Groundfish Observer Program conducts sampling of groundfish discarded by commercial fisheries along the entire continental U.S. West Coast. The seventeen species included in this data product are among those of most interest to the fisheries management and commercial fishing communities.\n\nData Credits: NOAA Fisheries, Northwest Fisheries Science Center, Fishery Resource Analysis & Monitoring Division, West Coast Groundfish Observer Program, Seattle, WA.\n\ncdm_data_type = Other\nVARIABLES:\nlongitude (Longitude (Center of 10x10 km Grid Cell), degrees_east)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosObsTrawl2002_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosObsTrawl2002_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosObsTrawl2002/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Observer%20Trawl%202002%202006.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosObsTrawl2002.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosObsTrawl2002&showErrors=false&email=", "NOAA NWFSC", "nwioosObsTrawl2002"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a.graph", "", "", "public", "OceanSITES KEO daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from the Kuroshio Extension Observatory (KEO) site nominally at 32.3N,144.6E, in the Kuroshio Extension recirculation gyre. The actual anchor position is different for each deployment, and this is a slack line mooring with a watch circle radius greater than 5km. For users performing inter comparisons, it may be important to use the actual position of the buoy from the Global Positioning System (GPS) data. This mooring has been instrumented with upper ocean and surface sensors since June 2004. Included in this file are sea temperatures and pressures from the surface to 525m depth, salinity and density (sigma-theta) from the surface to 400m depth, sea currents to 35m depth, a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and barometric pressure. Note that because this is a slack-line mooring, subsurface sensor depths vary with time, and hence one must use the observed and calculated water pressures to compute sensor depths. Also, due to the relatively large scope and different anchor positions, the positions of the buoy at the surface are included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndeptemp (Depth of each measurement, meters)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepth (m)\nPRES (water pressure, observed and calculated, decibar)\nPRES_QC (quality flag)\nPRES_DM (method of data processing)\n... (53 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/keo_121f_a3d0_3c0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/keo_121f_a3d0_3c0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/keo_121f_a3d0_3c0a/index.json", "https://www.pmel.noaa.gov/ocs/", "http://upwell.pfeg.noaa.gov/erddap/rss/keo_121f_a3d0_3c0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=keo_121f_a3d0_3c0a&showErrors=false&email=", "NOAA/PMEL", "keo_121f_a3d0_3c0a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f.graph", "", "", "public", "OceanSITES PAPA daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from station Papa at 50N,145W in the North Pacific. This taut-line mooring has been instrumented with upper ocean and surface sensors since June 2007. Included in this file are sea temperatures from the surface to 300 meters depth, salinity and density (sigma-theta) from the surface to 200m depth, sea currents at 5m and 35m depth, acoustic doppler profiles of zonal and meridional ocean current to from 30 to 158 meters depth, and a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and barometric pressure. Time series of buoy latitude and longitude are included as well.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each measurement, m)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepcur (Depth of each measurement, m)\nUCUR\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\ndeppsal (Depth of each measurement, m)\n... (43 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/papa_8bb5_dcd5_981f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/papa_8bb5_dcd5_981f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/papa_8bb5_dcd5_981f/index.json", "https://www.pmel.noaa.gov/ocs/", "http://upwell.pfeg.noaa.gov/erddap/rss/papa_8bb5_dcd5_981f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=papa_8bb5_dcd5_981f&showErrors=false&email=", "NOAA/PMEL", "papa_8bb5_dcd5_981f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219.graph", "", "", "public", "OceanSITES PIRATA daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from one of the Tropical Atmosphere/Ocean (TAO)/TRITON, Pilot Research Moored Array in the Tropical Atlantic (PIRATA), or Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) mooring sites in the tropical oceans. Included in this file are sea temperatures from the surface to 500 meters at most sites and deeper at others, salinity and potential density (sigma-theta) at the sea surface and deeper at some sites, sea currents at 10m depth and deeper at some sites, a variety of surface observations including winds, air temperature, relative humidity, shortwave solar radiation, longwave radiation, rain rate, barometric pressure. Buoy positions are also included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each TEMP measurement, m)\ndepcur (Depth of each current measurement)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndeppsal (Depth of each Salinity measurement)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\nPSAL (sea_water_practical_salinity)\nPSAL_QC\nPSAL_DM (method of data processing)\ndepden (Depth of each density measurement)\nheightwind (altitude, meters)\nUWND (zonal wind)\nVWND (meridional wind, m/s)\n... (44 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pirata_5922_7dcd_7219_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pirata_5922_7dcd_7219_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pirata_5922_7dcd_7219/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/pirata_5922_7dcd_7219.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pirata_5922_7dcd_7219&showErrors=false&email=", "NOAA/PMEL", "pirata_5922_7dcd_7219"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc.graph", "", "", "public", "OceanSITES TAO daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from one of the flux reference mooring sites in the tropical oceans. Included in this file are sea temperatures from the surface to 500m depth, salinity and density (sigma-theta) from the surface to typically 120m depth, sea currents typically at 10m depth and at some sites deeper, a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and sea level airpressure. Buoy positions are also included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each measurement, m)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\n... (42 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/tao_6eb4_e773_2fbc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/tao_6eb4_e773_2fbc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/tao_6eb4_e773_2fbc/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/tao_6eb4_e773_2fbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=tao_6eb4_e773_2fbc&showErrors=false&email=", "NOAA/PMEL", "tao_6eb4_e773_2fbc"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.graph", "", "", "public", "OSMC Argo Profile data", "OSMC Argo Profile data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\norganization_name\ncountry_name\nplatform_type_name\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nparameter_name\ndaily_obs_count\nobservation_depth\nobservation_value\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_PROFILERS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_PROFILERS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_PROFILERS/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_PROFILERS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_PROFILERS&showErrors=false&email=", "OSMC", "OSMC_PROFILERS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.graph", "", "", "public", "OSMC normalized observations from GTS", "OSMC normalized In-situ Real time GTS data\n\ncdm_data_type = Point\nVARIABLES:\nPLATFORM_CODE (Station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform\nparameter\nOBSERVATION_VALUE\nOBSERVATION_DEPTH\nCOUNTRY_NAME\norganization_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_Points_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_Points_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_Points/index.json", "https://www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_Points.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_Points&showErrors=false&email=", "OSMC", "OSMC_Points"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_417d_33ad_dead.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_417d_33ad_dead", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_417d_33ad_dead.graph", "", "", "public", "Pacific Island Network Marine Fish Monitoring Dataset - Surveys", "National Park Service Fish Stock Data\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\nhigherInstitutionCode\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\nisland\n... (67 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_417d_33ad_dead_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_417d_33ad_dead_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_417d_33ad_dead/index.json", "http://science.nature.nps.gov/im/units/pacn/monitoring/vs_fish_marine.cfm", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_417d_33ad_dead.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_417d_33ad_dead&showErrors=false&email=", "USDOI/NPS/NRSS/IMD/PACN", "hawaii_soest_417d_33ad_dead"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_31bb_eee9_ef0a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_31bb_eee9_ef0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_31bb_eee9_ef0a.graph", "", "", "public", "Pacific Island Network Marine Fish Monitoring Dataset - Transects", "The benthic marine community in the Pacific Island Network (PACN) is a complex ecologic system and a diverse taxonomic environment, including algae and corals and other invertebrates. Reef-building corals are the primary architectural organism and are sensitive to environmental degradation; therefore, they are a good indicator of overall health for nearshore marine ecosystems. Primary stressors to coral reefs include disease, bleaching, sedimentation, eutrophication, storms, and global climate change. The United Nations Environment Programme (UNEP) has proposed using coral reefs as a worldwide indicator ecosystem for global climate change (Spalding et al. 2004). For these reasons, the PACN has chosen to implement long term monitoring of benthic marine communities. Benthic marine communities is most closely linked with marine fish, and monitoring efforts will be conducted at the same time and location to maximize data value\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\n... (58 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_31bb_eee9_ef0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_31bb_eee9_ef0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_31bb_eee9_ef0a/index.json", "http://science.nature.nps.gov/im/units/pacn/monitoring/vs_fish_marine.cfm", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_31bb_eee9_ef0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_31bb_eee9_ef0a&showErrors=false&email=", "USDOI/NPS/NRSS/IMD/PACN", "hawaii_soest_31bb_eee9_ef0a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5673_517d_3b8c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5673_517d_3b8c.graph", "", "", "public", "PacIOOS Nearshore Sensor 01 (NS01): Waikiki Yacht Club, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS01 is located at the Waikiki Yacht Club and is fixed to the bridge pier. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to a piling ~0.5m below mean sea level.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5673_517d_3b8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5673_517d_3b8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5673_517d_3b8c/index.json", "https://www.pacioos.hawaii.edu/water/sensor-waikiki/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5673_517d_3b8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5673_517d_3b8c&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5673_517d_3b8c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_1273_fad1_0404", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_1273_fad1_0404.graph", "", "", "public", "PacIOOS Nearshore Sensor 02 (NS02): Hawaii Yacht Club, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS02 is located at a floating dock off the Hawaii Yacht Club. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to a floating dock just below the ocean surface.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_1273_fad1_0404_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_1273_fad1_0404_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_1273_fad1_0404/index.json", "https://www.pacioos.hawaii.edu/water/sensor-hawaiiyachtclub/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_1273_fad1_0404.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_1273_fad1_0404&showErrors=false&email=", "University of Hawaii", "hawaii_soest_1273_fad1_0404"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d787_1c35_208d", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d787_1c35_208d.graph", "", "", "public", "PacIOOS Nearshore Sensor 03 (NS03): Hilton Hawaiian Pier, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS03 is located at the Atlantis Pier off the Hilton Hawaiian Village. The instrument is a Sea-Bird Electronics model 37SMP. The package is located at approximately 2.0 meters below mean sea level.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d787_1c35_208d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d787_1c35_208d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d787_1c35_208d/index.json", "https://www.pacioos.hawaii.edu/water/sensor-atlantis/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d787_1c35_208d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d787_1c35_208d&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d787_1c35_208d"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_c9f9_c232_1fe9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_c9f9_c232_1fe9.graph", "", "", "public", "PacIOOS Nearshore Sensor 04 (NS04): Waikiki Aquarium, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS04 is located just off the Waikiki Aquarium and is fixed to the pier. The instrument is a Sea-Bird Electronics model 37SMP. The package is mounted on the bottom in approximately 2.0 to 2.5 meters ocean depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_c9f9_c232_1fe9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_c9f9_c232_1fe9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_c9f9_c232_1fe9/index.json", "https://www.pacioos.hawaii.edu/water/sensor-waikikiaquarium/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_c9f9_c232_1fe9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_c9f9_c232_1fe9&showErrors=false&email=", "University of Hawaii", "hawaii_soest_c9f9_c232_1fe9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b55f_a8f2_ad70", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b55f_a8f2_ad70.graph", "", "", "public", "PacIOOS Nearshore Sensor 05 (NS05): Pago Pago, American Samoa", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS05 is located at the Department of Marine and Wildlife Resources (DMWR) dock in Pago Pago Harbor, American Samoa and is mounted to the bottom in about 2 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_b55f_a8f2_ad70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_b55f_a8f2_ad70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_b55f_a8f2_ad70/index.json", "https://www.pacioos.hawaii.edu/water/sensor-pagopago/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_b55f_a8f2_ad70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_b55f_a8f2_ad70&showErrors=false&email=", "University of Hawaii", "hawaii_soest_b55f_a8f2_ad70"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f59_c29c_d820", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f59_c29c_d820.graph", "", "", "public", "PacIOOS Nearshore Sensor 06 (NS06): Pohnpei, Micronesia", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS06 is located at the dock in Pohnpei lagoon and is mounted to the bottom in about 1 meter of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8f59_c29c_d820_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8f59_c29c_d820_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8f59_c29c_d820/index.json", "https://www.pacioos.hawaii.edu/water/sensor-pohnpei/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8f59_c29c_d820.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8f59_c29c_d820&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8f59_c29c_d820"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_77b7_f5dd_cda3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_77b7_f5dd_cda3.graph", "", "", "public", "PacIOOS Nearshore Sensor 07 (NS07): Majuro, Marshall Islands", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS07 is located at the Uliga dock in Majuro, Republic of the Marshall Islands and is mounted to the bottom in about 2 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_77b7_f5dd_cda3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_77b7_f5dd_cda3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_77b7_f5dd_cda3/index.json", "https://www.pacioos.hawaii.edu/water/sensor-majuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_77b7_f5dd_cda3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_77b7_f5dd_cda3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_77b7_f5dd_cda3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e3c0_a956_de01", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e3c0_a956_de01.graph", "", "", "public", "PacIOOS Nearshore Sensor 08 (NS08): Koror, Palau", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS08 is located at the Palau International Coral Reef Center (PICRC) dock in Koror, Palau and is mounted to the bottom in about 3.5 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e3c0_a956_de01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e3c0_a956_de01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e3c0_a956_de01/index.json", "https://www.pacioos.hawaii.edu/water/sensor-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e3c0_a956_de01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e3c0_a956_de01&showErrors=false&email=", "University of Hawaii", "hawaii_soest_e3c0_a956_de01"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0113_b43d_e024", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0113_b43d_e024.graph", "", "", "public", "PacIOOS Nearshore Sensor 09 (NS09): Cetti Bay, Guam", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS09 is approximately 70 meters offshore in Cetti Bay, Guam and is mounted to the bottom in about 3 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_0113_b43d_e024_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_0113_b43d_e024_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_0113_b43d_e024/index.json", "https://www.pacioos.hawaii.edu/water/sensor-cetti/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_0113_b43d_e024.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_0113_b43d_e024&showErrors=false&email=", "University of Hawaii", "hawaii_soest_0113_b43d_e024"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f25e_31a1_16f1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f25e_31a1_16f1.graph", "", "", "public", "PacIOOS Nearshore Sensor 10 (NS10): Maunalua Bay, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS10 is located off the old pier in Maunalua Bay in Hawaii Kai. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to the pier at about 2m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f25e_31a1_16f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f25e_31a1_16f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f25e_31a1_16f1/index.json", "https://www.pacioos.hawaii.edu/water/sensor-maunalua/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f25e_31a1_16f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f25e_31a1_16f1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f25e_31a1_16f1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8668_b202_8233", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8668_b202_8233.graph", "", "", "public", "PacIOOS Nearshore Sensor 11 (NS11): Saipan, CNMI", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS11 is approximately 20 meters offshore of Puntan Babpot near the golf course at Laolao Bay on the east shore of Saipan in the Commonwealth of the Northern Mariana Islands (CNMI) and is mounted to the bottom in about 3 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8668_b202_8233_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8668_b202_8233_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8668_b202_8233/index.json", "https://www.pacioos.hawaii.edu/water/sensor-saipan/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8668_b202_8233.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8668_b202_8233&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8668_b202_8233"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b10c_af2d_3fe8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b10c_af2d_3fe8.graph", "", "", "public", "PacIOOS Nearshore Sensor 12 (NS12): Kalama Beach Park, Maui, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS12 is located at Kalama Beach Park in Kihei, Maui. The instrument is a 6600V2-4 Multi-parameter water quality logger. The package is fixed to a mooring at about 1.5m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\nwater_depth (Sensor depth, m)\nph (1)\noxygen (Dissolved oxygen concentration, kg m-3)\noxygen_saturation (Dissolved oxygen saturation, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_b10c_af2d_3fe8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_b10c_af2d_3fe8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_b10c_af2d_3fe8/index.json", "https://www.pacioos.hawaii.edu/water/sensor-kalama/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_b10c_af2d_3fe8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_b10c_af2d_3fe8&showErrors=false&email=", "University of Hawaii", "hawaii_soest_b10c_af2d_3fe8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_026f_4c1d_55e5", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_026f_4c1d_55e5.graph", "", "", "public", "PacIOOS Nearshore Sensor 13 (NS13): Kahului, Maui, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS13 is located in Kahului Harbor in Maui. The instrument is a 6600V2-4 Multi-parameter water quality logger. The package is fixed to a piling at about 1.5m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nwater_depth (Sensor depth (processed), m)\nwater_depth_raw (Sensor depth (raw), m)\nph (pH (processed), 1)\nph_raw (pH (raw), 1)\noxygen (Dissolved oxygen concentration (processed), kg m-3)\noxygen_raw (Dissolved oxygen concentration (raw), kg m-3)\noxygen_saturation (Dissolved oxygen saturation (processed), 1)\noxygen_saturation_raw (Dissolved oxygen saturation (raw), 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_026f_4c1d_55e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_026f_4c1d_55e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_026f_4c1d_55e5/index.json", "https://www.pacioos.hawaii.edu/water/sensor-kahului/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_026f_4c1d_55e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_026f_4c1d_55e5&showErrors=false&email=", "University of Hawaii", "hawaii_soest_026f_4c1d_55e5"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_191e_fe37_f9a0", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_191e_fe37_f9a0.graph", "", "", "public", "PacIOOS Nearshore Sensor 15 (NS15): Pago Bay, Guam", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS15 is in Pago Bay, Guam and is mounted to the bottom in about 1.5 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. This station was decommissioned and relocated after 2018 in order to minimize burial of the sensor by silt; see NS17 for data at the new mooring location.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_191e_fe37_f9a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_191e_fe37_f9a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_191e_fe37_f9a0/index.json", "https://www.pacioos.hawaii.edu/water/sensor-pago/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_191e_fe37_f9a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_191e_fe37_f9a0&showErrors=false&email=", "University of Hawaii", "hawaii_soest_191e_fe37_f9a0"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d5ba_831c_443a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d5ba_831c_443a.graph", "", "", "public", "PacIOOS Nearshore Sensor 16 (NS16): Wailupe, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS16 is located off Wailupe in Maunalua Bay in Aina Haina. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to the pier at about 1m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d5ba_831c_443a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d5ba_831c_443a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d5ba_831c_443a/index.json", "https://www.pacioos.hawaii.edu/water/sensor-wailupe/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d5ba_831c_443a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d5ba_831c_443a&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d5ba_831c_443a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_093e_cd55_43a3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_093e_cd55_43a3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_093e_cd55_43a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_093e_cd55_43a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_093e_cd55_43a3/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_093e_cd55_43a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_093e_cd55_43a3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_093e_cd55_43a3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc92_7d24_0627", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc92_7d24_0627.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_cc92_7d24_0627_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_cc92_7d24_0627_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_cc92_7d24_0627/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_cc92_7d24_0627.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_cc92_7d24_0627&showErrors=false&email=", "University of Hawaii", "hawaii_soest_cc92_7d24_0627"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f289_8170_ec45", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f289_8170_ec45.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f289_8170_ec45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f289_8170_ec45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f289_8170_ec45/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f289_8170_ec45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f289_8170_ec45&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f289_8170_ec45"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_36dd_cf4c_73a6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_36dd_cf4c_73a6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_36dd_cf4c_73a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_36dd_cf4c_73a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_36dd_cf4c_73a6/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_36dd_cf4c_73a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_36dd_cf4c_73a6&showErrors=false&email=", "University of Hawaii", "hawaii_soest_36dd_cf4c_73a6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5359_8678_82b1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5359_8678_82b1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5359_8678_82b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5359_8678_82b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5359_8678_82b1/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5359_8678_82b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5359_8678_82b1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5359_8678_82b1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_92c1_a2b0_55fb", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_92c1_a2b0_55fb.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_92c1_a2b0_55fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_92c1_a2b0_55fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_92c1_a2b0_55fb/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_92c1_a2b0_55fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_92c1_a2b0_55fb&showErrors=false&email=", "University of Hawaii", "hawaii_soest_92c1_a2b0_55fb"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_75b3_e52c_26a2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_75b3_e52c_26a2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_75b3_e52c_26a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_75b3_e52c_26a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_75b3_e52c_26a2/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_75b3_e52c_26a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_75b3_e52c_26a2&showErrors=false&email=", "University of Hawaii", "hawaii_soest_75b3_e52c_26a2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_a826_8633_00bb", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_a826_8633_00bb.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_a826_8633_00bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_a826_8633_00bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_a826_8633_00bb/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_a826_8633_00bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_a826_8633_00bb&showErrors=false&email=", "University of Hawaii", "hawaii_soest_a826_8633_00bb"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_076a_87b3_40a0", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_076a_87b3_40a0.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_076a_87b3_40a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_076a_87b3_40a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_076a_87b3_40a0/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_076a_87b3_40a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_076a_87b3_40a0&showErrors=false&email=", "University of Hawaii", "hawaii_soest_076a_87b3_40a0"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_4c82_4728_010b", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_4c82_4728_010b.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_4c82_4728_010b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_4c82_4728_010b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_4c82_4728_010b/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_4c82_4728_010b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_4c82_4728_010b&showErrors=false&email=", "University of Hawaii", "hawaii_soest_4c82_4728_010b"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_856b_7e66_8c3f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_856b_7e66_8c3f.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_856b_7e66_8c3f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_856b_7e66_8c3f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_856b_7e66_8c3f/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_856b_7e66_8c3f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_856b_7e66_8c3f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_856b_7e66_8c3f"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2f21_4063_cfec", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2f21_4063_cfec.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_2f21_4063_cfec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_2f21_4063_cfec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_2f21_4063_cfec/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_2f21_4063_cfec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_2f21_4063_cfec&showErrors=false&email=", "University of Hawaii", "hawaii_soest_2f21_4063_cfec"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "http://www.ogcnetwork.net/node/344", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/PRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2017, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2017, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2017, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_88cd_7dfb_ecfa.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_88cd_7dfb_ecfa", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_88cd_7dfb_ecfa.graph", "", "", "public", "US Pacific Islands, Coral Reef Monitoring, Fish Surveys, Belt Transects (BLT)", "Coral Reef Ecosytem Division (CRED) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_88cd_7dfb_ecfa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_88cd_7dfb_ecfa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_88cd_7dfb_ecfa/index.json", "https://www.pifsc.noaa.gov/cred/fish.php", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_88cd_7dfb_ecfa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_88cd_7dfb_ecfa&showErrors=false&email=", "USDOC/NOAA/NMFS/PIFSC/CRED", "hawaii_soest_88cd_7dfb_ecfa"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7448_8dd2_e529.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7448_8dd2_e529", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7448_8dd2_e529.graph", "", "", "public", "US Pacific Islands, Coral Reef Monitoring, Fish Surveys, Stationary Point Counts (nSPC)", "Coral Reef Ecosytem Division (CRED) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\n... (49 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_7448_8dd2_e529_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_7448_8dd2_e529_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_7448_8dd2_e529/index.json", "https://www.pifsc.noaa.gov/cred/fish.php", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_7448_8dd2_e529.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_7448_8dd2_e529&showErrors=false&email=", "USDOC/NOAA/NMFS/PIFSC/CRED", "hawaii_soest_7448_8dd2_e529"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_6dcb_e681_3eab.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_6dcb_e681_3eab", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_6dcb_e681_3eab.graph", "", "", "public", "US Pacific Islands, Coral Reef Monitoring, Fish Surveys, Stationary Point Counts (SPC)", "Coral Reef Ecosytem Division (CRED) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\n... (49 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_6dcb_e681_3eab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_6dcb_e681_3eab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_6dcb_e681_3eab/index.json", "https://www.pifsc.noaa.gov/cred/fish.php", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_6dcb_e681_3eab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_6dcb_e681_3eab&showErrors=false&email=", "USDOC/NOAA/NMFS/PIFSC/CRED", "hawaii_soest_6dcb_e681_3eab"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d98d_1d43_fef7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d98d_1d43_fef7.graph", "", "", "public", "Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\naltitude (height above mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\nair_temperature (Mean air temperature, Celsius)\nair_temperature_std (Standard deviation of air temperature, Celsius)\nair_temperature_max (Maximum air temperature, Celsius)\nair_temperature_max_time (Time of maximum air temperature, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (Minimum air temperature, Celsius)\nair_temperature_min_time (Time of minimum air temperature, seconds since 1970-01-01T00:00:00Z)\nwind_speed (Mean wind speed, m s-1)\nwind_speed_std (Standard deviation wind speed, m s-1)\nwind_speed_max (Maximum wind speed, m s-1)\nwind_speed_max_time (Time of maximum wind speed, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (Minimum wind speed, m s-1)\nwind_speed_min_time (Time of minimum wind speed, seconds since 1970-01-01T00:00:00Z)\nwind_from_direction (degrees)\nwind_from_direction_std (Standard deviation of wind direction, degrees)\nrainfall_amount (Rainfall total, mm)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d98d_1d43_fef7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d98d_1d43_fef7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d98d_1d43_fef7/index.json", "http://www.coralreefresearchfoundation.org", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d98d_1d43_fef7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d98d_1d43_fef7&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "hawaii_soest_d98d_1d43_fef7"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whoiSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whoiSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whoiSos.graph", "", "", "public", "WHOI MVCO 12m Node ADCP SOS, 2008-present", "Wave observations from the 12m node ADCP in the Martha's Vineyard Coastal Observatory (MVCO) in the northwest Atlantic in coastal waters of North America. Extensive, detailed documentation is available in these .xml files:\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/MVCO_ObservingSystem.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/ADCP_System.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/MVCO_Workhorse_1200.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/RDI_Workhorse_1200.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Pressure_Obs_Process.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Velocity_Obs_Process.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Pressure_QC_Chain.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Velocity_QC_Chain.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/PUV_Analysis.xml\n\nFor this dataset, if you want the most recent data, you MUST change the default end time constraint to be a time that is slightly (a few seconds or a few minutes) in the past. The source data server does not allow end time constraints that are after the exact current time.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\npressure (Mean Sea Water Pressure, cm)\nwaveHeightFromPressure (Wave Height from Pressure, cm)\nwavePeriodFromPressure (Wave Period from Pressure, s)\nloCutoffFrequency (Low Cutoff Frequency, Hz)\nhiCutoffFrequency (High Cutoff Frequency, Hz)\nwaveHeightAll (Wave Height All, cm)\nswell (cm)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whoiSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whoiSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whoiSos/index.json", "https://www.whoi.edu/mvco", "http://upwell.pfeg.noaa.gov/erddap/rss/whoiSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoiSos&showErrors=false&email=", "Woods Hole Oceanographic Institution", "whoiSos"] + ] + } + } + recorded_at: 2019-07-19 19:13:11 GMT + recorded_with: vcr/0.2.6, webmockr/0.3.4 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/info/nodcWoa09mon5t/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.8.1.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Fri, 19 Jul 2019 19:13:48 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=nodcWoa09mon5t_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "acknowledgement", "String", "This work was made possible by a grant from the NOAA Climate and Global Change Program which enabled the establishment of a research group at the National Oceanographic Data Center. The purpose of this group is to prepare research quality oceanographic databases, as well as to compute objective analyses of, and diagnostic studies based on, these databases. Support is now from base funds and from the NOAA Climate Program Office.\n The data on which this atlas is based are in World Ocean Database 2009 and are distributed online and on DVD by NODC/WDC. Many data were acquired as a result of the IOC/IODE Global Oceanographic Data Archaeology and Rescue (GODAR) project, and the IOC/IODE World Ocean Database project (WOD). At NODC/WDC, data archaeology and rescue projects were supported with funding from the NOAA Environmental Science Data and Information Management (ESDIM) Program and the NOAA Climate and Global Change Program which included support from NASA and DOE. Support for some of the regional IOC/GODAR meetings was provided by the Marine Science and Technology (MAST) program of the European Union. The European Community has also provided support for the Mediterranean Data Archeology and Rescue (MEDAR/MEDATLAS) project which has resulted in the inclusion of substantial amounts of ocean profile data from the Mediterranean Sea. Additional Black Sea data have been acquired as a result of a NATO sponsored project.\n We acknowledge the scientists, technicians, and programmers who have collected and processed data, those individuals who have submitted data to national and regional data centers as well as the managers and staff at the various data centers. We thank our colleagues at the NODC. Their efforts have made this and similar works possible."], + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "Grid"], + ["attribute", "NC_GLOBAL", "contributor_name", "String", "Ocean Climate Laboratory"], + ["attribute", "NC_GLOBAL", "Conventions", "String", "CF-1.6, COARDS, ACDD-1.3"], + ["attribute", "NC_GLOBAL", "creator_email", "String", "NODC.Services@noaa.gov"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "NODC"], + ["attribute", "NC_GLOBAL", "creator_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "https://www.nodc.noaa.gov"], + ["attribute", "NC_GLOBAL", "CVS_ID", "String", "1.0"], + ["attribute", "NC_GLOBAL", "date_created", "String", "2010-09-30T17:29:23Z"], + ["attribute", "NC_GLOBAL", "date_issued", "String", "2010-09-30T17:29:23Z"], + ["attribute", "NC_GLOBAL", "date_modified", "String", "2010-09-30T17:29:23Z"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "357.5"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "87.5"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "-87.5"], + ["attribute", "NC_GLOBAL", "geospatial_lat_resolution", "double", "5.0"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "357.5"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "2.5"], + ["attribute", "NC_GLOBAL", "geospatial_lon_resolution", "double", "5.0"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "history", "String", "Please see the acknowledgement and references"], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html"], + ["attribute", "NC_GLOBAL", "institution", "String", "NOAA NODC"], + ["attribute", "NC_GLOBAL", "keywords", "String", "apparent, atlas, chemistry, climatology, degree, density, deviation, dissolved, dissolved o2, Earth Science > Oceans > Ocean Chemistry > Oxygen, Earth Science > Oceans > Ocean Temperature > Water Temperature, Earth Science > Oceans > Salinity/Density > Salinity, error, fractional, fractional_saturation_of_oxygen_in_sea_water, mean, monthly, noaa, nodc, number, o2, observations, ocean, oceans, oxygen, productivity, salinity, saturation, sea, seawater, standard, statistics, temperature, utilization, water, world"], + ["attribute", "NC_GLOBAL", "keywords_vocabulary", "String", "GCMD Science Keywords"], + ["attribute", "NC_GLOBAL", "license", "String", "This data is free for anyone to use, reuse and redistribute without any restriction. NOAA and NODC make no warranty, expressed or implied, nor does the fact of distribution constitute such a warranty. NOAA and NODC cannot assume liability for any damages caused by any errors or omissions in the data."], + ["attribute", "NC_GLOBAL", "Metadata_Convention", "String", "Unidata Dataset Discovery v1.0"], + ["attribute", "NC_GLOBAL", "naming_authority", "String", "gov.noaa.pfeg.coastwatch"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "87.5"], + ["attribute", "NC_GLOBAL", "processing_level", "String", "synthesized product"], + ["attribute", "NC_GLOBAL", "project", "String", "World Ocean Atlas - 2009"], + ["attribute", "NC_GLOBAL", "publisher_email", "String", "NODC.Services@noaa.gov"], + ["attribute", "NC_GLOBAL", "publisher_name", "String", "National Oceanographic Data Center(NODC)"], + ["attribute", "NC_GLOBAL", "publisher_url", "String", "https://www.nodc.noaa.gov"], + ["attribute", "NC_GLOBAL", "references", "String", "Locarnini, R. A., A. V. Mishonov, J. I. Antonov, T. P. Boyer, and H. E. Garcia, 2010. World Ocean Atlas 2009, Volume 1: Temperature. S. Levitus, Ed. NOAA Atlas NESDIS 68, U.S. Government Printing Office, Washington, D.C., 184 pp. URL: ftp://ftp.nodc.noaa.gov/pub/WOA09/DOC/woa09_vol1_text.pdf\n \nAntonov, J. I., D. Seidov, T. P. Boyer, R. A. Locarnini, A. V. Mishonov, and H. E. Garcia, 2010. World Ocean Atlas 2009, Volume 2: Salinity. S. Levitus, Ed. NOAA Atlas NESDIS 69, U.S. Government Printing Office, Washington, D.C., 184 pp. URL:ftp://ftp.nodc.noaa.gov/pub/WOA09/DOC/woa09_vol2_text.pdf\n \nGarcia, H. E., R. A. Locarnini, T. P. Boyer, and J. I. Antonov, 2010. World Ocean Atlas 2009, Volume 3: Dissolved Oxygen, Apparent Oxygen Utilization, and Oxygen Saturation. S. Levitus, Ed. NOAA Atlas NESDIS 70, U.S. Government Printing Office, Washington, D.C., 344 pp. ftp://ftp.nodc.noaa.gov/pub/WOA09/DOC/woa09_vol3_text.pdf"], + ["attribute", "NC_GLOBAL", "source", "String", "Please see the acknowledgement and references"], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "https://data.nodc.noaa.gov/thredds/dodsC/woa09/temperature_monthly_5deg.nc"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "-87.5"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF"], + ["attribute", "NC_GLOBAL", "summary", "String", "This part of the World Ocean Atlas 2009 (WOA09) is a set of objectively analyzed (5 degree grid) climatological fields of in situ temperature, salinity, dissolved oxygen, Apparent Oxygen Utilization (AOU), and percent oxygen saturation at standard depth levels for monthly compositing periods for the World Ocean based on data from 1773-01-13 through 2008-12-25. It also includes associated statistical fields of observed oceanographic profile data interpolated to standard depth levels on a 5 degree grid. For more details, please see https://www.nodc.noaa.gov/OC5/WOA09/pr_woa09.html"], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2008-12-16T00:00:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "2008-01-16T00:00:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "World Ocean Atlas 2009, Monthly Climatology, 5 degree, Temperature, Salinity, Oxygen"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "2.5"], + ["dimension", "time", "", "double", "nValues=12, evenlySpaced=false, averageSpacing=30 days 10h 54m 33s"], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "1.2004416E9, 1.2293856E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "description", "String", "Monthly Climatology.January to December"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Centered Time"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["dimension", "depth", "", "float", "nValues=24, evenlySpaced=false, averageSpacing=65.21739130434783"], + ["attribute", "depth", "_CoordinateAxisType", "String", "Height"], + ["attribute", "depth", "_CoordinateZisPositive", "String", "down"], + ["attribute", "depth", "actual_range", "float", "0.0, 1500.0"], + ["attribute", "depth", "axis", "String", "Z"], + ["attribute", "depth", "description", "String", "Standard Depth Levels"], + ["attribute", "depth", "ioos_category", "String", "Location"], + ["attribute", "depth", "long_name", "String", "Depth"], + ["attribute", "depth", "positive", "String", "down"], + ["attribute", "depth", "standard_name", "String", "depth"], + ["attribute", "depth", "units", "String", "m"], + ["dimension", "latitude", "", "float", "nValues=36, evenlySpaced=true, averageSpacing=5.0"], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "float", "-87.5, 87.5"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["dimension", "longitude", "", "float", "nValues=72, evenlySpaced=true, averageSpacing=5.0"], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "float", "2.5, 357.5"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "temperature_mn", "", "float", "time, depth, latitude, longitude"], + ["attribute", "temperature_mn", "_ChunkSizes", "int", "12, 24, 36, 72"], + ["attribute", "temperature_mn", "_FillValue", "float", "9.96921E36"], + ["attribute", "temperature_mn", "colorBarMaximum", "double", "32.0"], + ["attribute", "temperature_mn", "colorBarMinimum", "double", "0.0"], + ["attribute", "temperature_mn", "description", "String", "The average of all unflagged interpolated values at each standard depth level in each 5-degree square which contains at least one measurement of Sea Water Temperature"], + ["attribute", "temperature_mn", "ioos_category", "String", "Temperature"], + ["attribute", "temperature_mn", "long_name", "String", "Mean of Temperature Observations"], + ["attribute", "temperature_mn", "units", "String", "degree_C"], + ["variable", "temperature_dd", "", "int", "time, depth, latitude, longitude"], + ["attribute", "temperature_dd", "_ChunkSizes", "int", "12, 24, 36, 72"], + ["attribute", "temperature_dd", "_FillValue", "int", "-2147483647"], + ["attribute", "temperature_dd", "colorBarContinuous", "String", "false"], + ["attribute", "temperature_dd", "colorBarMaximum", "double", "10.0"], + ["attribute", "temperature_dd", "colorBarMinimum", "double", "0.0"], + ["attribute", "temperature_dd", "description", "String", "The number of observations of Sea Water Temperature in each 5-degree square of the World Ocean at each standard depth level"], + ["attribute", "temperature_dd", "ioos_category", "String", "Statistics"], + ["attribute", "temperature_dd", "long_name", "String", "Number of Temperature Observations"], + ["attribute", "temperature_dd", "units", "String", "count"], + ["variable", "temperature_sd", "", "float", "time, depth, latitude, longitude"], + ["attribute", "temperature_sd", "_ChunkSizes", "int", "12, 24, 36, 72"], + ["attribute", "temperature_sd", "_FillValue", "float", "9.96921E36"], + ["attribute", "temperature_sd", "colorBarMaximum", "double", "5.0"], + ["attribute", "temperature_sd", "colorBarMinimum", "double", "0.0"], + ["attribute", "temperature_sd", "description", "String", "The standard deviation about the statistical mean in each 5-degree square at each standard depth level"], + ["attribute", "temperature_sd", "ioos_category", "String", "Statistics"], + ["attribute", "temperature_sd", "long_name", "String", "Standard Deviation of Temperature Observations"], + ["attribute", "temperature_sd", "units", "String", "degree_C"], + ["variable", "temperature_se", "", "float", "time, depth, latitude, longitude"], + ["attribute", "temperature_se", "_ChunkSizes", "int", "12, 24, 36, 72"], + ["attribute", "temperature_se", "_FillValue", "float", "9.96921E36"], + ["attribute", "temperature_se", "colorBarMaximum", "double", "1.0"], + ["attribute", "temperature_se", "colorBarMinimum", "double", "0.0"], + ["attribute", "temperature_se", "description", "String", "The standard error of the mean in each 5-degree square at each standard depth level"], + ["attribute", "temperature_se", "ioos_category", "String", "Statistics"], + ["attribute", "temperature_se", "long_name", "String", "Standard Error of Temperature Observations"], + ["attribute", "temperature_se", "units", "String", "degree_C"], + ["variable", "salinity_mn", "", "float", "time, depth, latitude, longitude"], + ["attribute", "salinity_mn", "_ChunkSizes", "int", "12, 24, 36, 72"], + ["attribute", "salinity_mn", "_FillValue", "float", "9.96921E36"], + ["attribute", "salinity_mn", "colorBarMaximum", "double", "37.0"], + ["attribute", "salinity_mn", "colorBarMinimum", "double", "32.0"], + ["attribute", "salinity_mn", "description", "String", "The average of all unflagged interpolated values at each standard depth level in each 5-degree square which contains at least one measurement of Sea Water Salinity"], + ["attribute", "salinity_mn", "ioos_category", "String", "Salinity"], + ["attribute", "salinity_mn", "long_name", "String", "Mean of Practical Salinity Observations"], + ["attribute", "salinity_mn", "salinity_scale", "String", "Practical Salinity Scale(PSS-78)"], + ["attribute", "salinity_mn", "standard_name", "String", "sea_water_practical_salinity"], + ["attribute", "salinity_mn", "units", "String", "PSS-78"], + ["variable", "sslinity_dd", "", "int", "time, depth, latitude, longitude"], + ["attribute", "sslinity_dd", "_ChunkSizes", "int", "12, 24, 36, 72"], + ["attribute", "sslinity_dd", "_FillValue", "int", "-2147483647"], + ["attribute", "sslinity_dd", "colorBarContinuous", "String", "false"], + ["attribute", "sslinity_dd", "colorBarMaximum", "double", "10.0"], + ["attribute", "sslinity_dd", "colorBarMinimum", "double", "0.0"], + ["attribute", "sslinity_dd", "description", "String", "The number of observations of Sea Water Salinity in each 5-degree square of the World Ocean at each standard depth level"], + ["attribute", "sslinity_dd", "ioos_category", "String", "Statistics"], + ["attribute", "sslinity_dd", "long_name", "String", "Number of Salinity Observations"], + ["attribute", "sslinity_dd", "units", "String", "count"], + ["variable", "salinity_sd", "", "float", "time, depth, latitude, longitude"], + ["attribute", "salinity_sd", "_ChunkSizes", "int", "12, 24, 36, 72"], + ["attribute", "salinity_sd", "_FillValue", "float", "9.96921E36"], + ["attribute", "salinity_sd", "colorBarMaximum", "double", "0.6"], + ["attribute", "salinity_sd", "colorBarMinimum", "double", "0.0"], + ["attribute", "salinity_sd", "description", "String", "The standard deviation about the statistical mean in each 5-degree square at each standard depth level"], + ["attribute", "salinity_sd", "ioos_category", "String", "Statistics"], + ["attribute", "salinity_sd", "long_name", "String", "Standard Deviation of Salinity Observations"], + ["attribute", "salinity_sd", "salinity_scale", "String", "Practical Salinity Scale(PSS-78)"], + ["attribute", "salinity_sd", "units", "String", "PSU"], + ["variable", "salinity_se", "", "float", "time, depth, latitude, longitude"], + ["attribute", "salinity_se", "_ChunkSizes", "int", "12, 24, 36, 72"], + ["attribute", "salinity_se", "_FillValue", "float", "9.96921E36"], + ["attribute", "salinity_se", "colorBarMaximum", "double", "0.3"], + ["attribute", "salinity_se", "colorBarMinimum", "double", "0.0"], + ["attribute", "salinity_se", "description", "String", "The standard error of the mean in each 5-degree square at each standard depth level"], + ["attribute", "salinity_se", "ioos_category", "String", "Statistics"], + ["attribute", "salinity_se", "long_name", "String", "Standard Error of Salinity Observations"], + ["attribute", "salinity_se", "salinity_scale", "String", "Practical Salinity Scale(PSS-78)"], + ["attribute", "salinity_se", "units", "String", "PSU"], + ["variable", "oxygenSat_mn", "", "float", "time, depth, latitude, longitude"], + ["attribute", "oxygenSat_mn", "_ChunkSizes", "int", "12, 24, 36, 72"], + ["attribute", "oxygenSat_mn", "_FillValue", "float", "9.96921E36"], + ["attribute", "oxygenSat_mn", "colorBarMaximum", "double", "120.0"], + ["attribute", "oxygenSat_mn", "colorBarMinimum", "double", "50.0"], + ["attribute", "oxygenSat_mn", "description", "String", "The average of all unflagged interpolated values at each standard depth level in each 5-degree square which contains at least one measurement of Oxygen Saturation"], + ["attribute", "oxygenSat_mn", "ioos_category", "String", "Dissolved O2"], + ["attribute", "oxygenSat_mn", "long_name", "String", "Mean of Oxygen Saturation Observations"], + ["attribute", "oxygenSat_mn", "standard_name", "String", "fractional_saturation_of_oxygen_in_sea_water"], + ["attribute", "oxygenSat_mn", "units", "String", "1"], + ["variable", "oxygenSat_dd", "", "int", "time, depth, latitude, longitude"], + ["attribute", "oxygenSat_dd", "_ChunkSizes", "int", "12, 24, 36, 72"], + ["attribute", "oxygenSat_dd", "_FillValue", "int", "-2147483647"], + ["attribute", "oxygenSat_dd", "colorBarContinuous", "String", "false"], + ["attribute", "oxygenSat_dd", "colorBarMaximum", "double", "10.0"], + ["attribute", "oxygenSat_dd", "colorBarMinimum", "double", "0.0"], + ["attribute", "oxygenSat_dd", "description", "String", "The number of observations of Oxygen Saturation in each 5-degree square of the World Ocean at each standard depth level"], + ["attribute", "oxygenSat_dd", "ioos_category", "String", "Statistics"], + ["attribute", "oxygenSat_dd", "long_name", "String", "Number of Oxygen Saturation Observations"], + ["attribute", "oxygenSat_dd", "units", "String", "count"], + ["variable", "oxygenSat_sd", "", "float", "time, depth, latitude, longitude"], + ["attribute", "oxygenSat_sd", "_ChunkSizes", "int", "12, 24, 36, 72"], + ["attribute", "oxygenSat_sd", "_FillValue", "float", "9.96921E36"], + ["attribute", "oxygenSat_sd", "description", "String", "The standard deviation about the statistical mean in each 5-degree square at each standard depth level"], + ["attribute", "oxygenSat_sd", "ioos_category", "String", "Statistics"], + ["attribute", "oxygenSat_sd", "long_name", "String", "Standard Deviation of Oxygen Saturation Observations"], + ["attribute", "oxygenSat_sd", "units", "String", "1"], + ["variable", "oxygenSat_se", "", "float", "time, depth, latitude, longitude"], + ["attribute", "oxygenSat_se", "_ChunkSizes", "int", "12, 24, 36, 72"], + ["attribute", "oxygenSat_se", "_FillValue", "float", "9.96921E36"], + ["attribute", "oxygenSat_se", "description", "String", "The standard error of the mean in each 5-degree square at each standard depth level"], + ["attribute", "oxygenSat_se", "ioos_category", "String", "Statistics"], + ["attribute", "oxygenSat_se", "long_name", "String", "Standard Error of Oxygen Saturation Observations"], + ["attribute", "oxygenSat_se", "units", "String", "1"], + ["variable", "disOxygen_mn", "", "float", "time, depth, latitude, longitude"], + ["attribute", "disOxygen_mn", "_ChunkSizes", "int", "12, 24, 36, 72"], + ["attribute", "disOxygen_mn", "_FillValue", "float", "9.96921E36"], + ["attribute", "disOxygen_mn", "colorBarMaximum", "double", "10.0"], + ["attribute", "disOxygen_mn", "colorBarMinimum", "double", "0.0"], + ["attribute", "disOxygen_mn", "description", "String", "The average of all unflagged interpolated values at each standard depth level in each 5-degree square which contains at least one measurement of Dissolved Oxygen"], + ["attribute", "disOxygen_mn", "ioos_category", "String", "Dissolved O2"], + ["attribute", "disOxygen_mn", "long_name", "String", "Mean of Dissolved Oxygen Observations"], + ["attribute", "disOxygen_mn", "units", "String", "ml/l"], + ["variable", "disOxygen_dd", "", "int", "time, depth, latitude, longitude"], + ["attribute", "disOxygen_dd", "_ChunkSizes", "int", "12, 24, 36, 72"], + ["attribute", "disOxygen_dd", "_FillValue", "int", "-2147483647"], + ["attribute", "disOxygen_dd", "colorBarContinuous", "String", "false"], + ["attribute", "disOxygen_dd", "colorBarMaximum", "double", "10.0"], + ["attribute", "disOxygen_dd", "colorBarMinimum", "double", "0.0"], + ["attribute", "disOxygen_dd", "description", "String", "The number of observations of Dissolved Oxygen in each 5-degree square of the World Ocean at each standard depth level"], + ["attribute", "disOxygen_dd", "ioos_category", "String", "Statistics"], + ["attribute", "disOxygen_dd", "long_name", "String", "Number of Dissolved Oxygen Observations"], + ["attribute", "disOxygen_dd", "units", "String", "count"], + ["variable", "disOxygen_sd", "", "float", "time, depth, latitude, longitude"], + ["attribute", "disOxygen_sd", "_ChunkSizes", "int", "12, 24, 36, 72"], + ["attribute", "disOxygen_sd", "_FillValue", "float", "9.96921E36"], + ["attribute", "disOxygen_sd", "description", "String", "The standard deviation about the statistical mean in each 5-degree square at each standard depth level"], + ["attribute", "disOxygen_sd", "ioos_category", "String", "Statistics"], + ["attribute", "disOxygen_sd", "long_name", "String", "Standard Deviation of Dissolved Oxygen Observations"], + ["attribute", "disOxygen_sd", "units", "String", "ml/l"], + ["variable", "disOxygen_se", "", "float", "time, depth, latitude, longitude"], + ["attribute", "disOxygen_se", "_ChunkSizes", "int", "12, 24, 36, 72"], + ["attribute", "disOxygen_se", "_FillValue", "float", "9.96921E36"], + ["attribute", "disOxygen_se", "description", "String", "The standard error of the mean in each 5-degree square at each standard depth level"], + ["attribute", "disOxygen_se", "ioos_category", "String", "Statistics"], + ["attribute", "disOxygen_se", "long_name", "String", "Standard Error of Dissolved Oxygen Observations"], + ["attribute", "disOxygen_se", "units", "String", "ml/l"], + ["variable", "AOU_mn", "", "float", "time, depth, latitude, longitude"], + ["attribute", "AOU_mn", "_ChunkSizes", "int", "12, 24, 36, 72"], + ["attribute", "AOU_mn", "_FillValue", "float", "9.96921E36"], + ["attribute", "AOU_mn", "colorBarMaximum", "double", "6.0"], + ["attribute", "AOU_mn", "colorBarMinimum", "double", "-2.0"], + ["attribute", "AOU_mn", "description", "String", "The average of all unflagged interpolated values at each standard depth level in each 5-degree square which contains at least one measurement of Apparent Oxygen Utilization"], + ["attribute", "AOU_mn", "ioos_category", "String", "Productivity"], + ["attribute", "AOU_mn", "long_name", "String", "Mean of Apparent Oxygen Utilization Observations"], + ["attribute", "AOU_mn", "units", "String", "ml/l"], + ["variable", "AOU_dd", "", "int", "time, depth, latitude, longitude"], + ["attribute", "AOU_dd", "_ChunkSizes", "int", "12, 24, 36, 72"], + ["attribute", "AOU_dd", "_FillValue", "int", "-2147483647"], + ["attribute", "AOU_dd", "colorBarContinuous", "String", "false"], + ["attribute", "AOU_dd", "colorBarMaximum", "double", "10.0"], + ["attribute", "AOU_dd", "colorBarMinimum", "double", "0.0"], + ["attribute", "AOU_dd", "description", "String", "The number of observations of Apparent Oxygen Utilization in each 5-degree square of the World Ocean at each standard depth level"], + ["attribute", "AOU_dd", "ioos_category", "String", "Statistics"], + ["attribute", "AOU_dd", "long_name", "String", "Number of Apparent Oxygen Utilization Observations"], + ["attribute", "AOU_dd", "units", "String", "count"], + ["variable", "AOU_sd", "", "float", "time, depth, latitude, longitude"], + ["attribute", "AOU_sd", "_ChunkSizes", "int", "12, 24, 36, 72"], + ["attribute", "AOU_sd", "_FillValue", "float", "9.96921E36"], + ["attribute", "AOU_sd", "description", "String", "The standard deviation about the statistical mean in each 5-degree square at each standard depth level"], + ["attribute", "AOU_sd", "ioos_category", "String", "Statistics"], + ["attribute", "AOU_sd", "long_name", "String", "Standard Deviation of Apparent Oxygen Utilization Observations"], + ["attribute", "AOU_sd", "units", "String", "ml/l"], + ["variable", "AOU_se", "", "float", "time, depth, latitude, longitude"], + ["attribute", "AOU_se", "_ChunkSizes", "int", "12, 24, 36, 72"], + ["attribute", "AOU_se", "_FillValue", "float", "9.96921E36"], + ["attribute", "AOU_se", "description", "String", "The standard error of the mean in each 5-degree square at each standard depth level"], + ["attribute", "AOU_se", "ioos_category", "String", "Statistics"], + ["attribute", "AOU_se", "long_name", "String", "Standard Error of Apparent Oxygen Utilization Observations"], + ["attribute", "AOU_se", "units", "String", "ml/l"] + ] + } + } + recorded_at: 2019-07-19 19:13:11 GMT + recorded_with: vcr/0.2.6, webmockr/0.3.4 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.8.1.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Fri, 19 Jul 2019 19:13:48 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Fri, 19 Jul 2019 19:13:48 GMT + xdods-server: dods/3.7 + erddap-server: '2.01' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://upwell.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_01af_e372_5bb6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_01af_e372_5bb6.graph", "", "", "public", "AIS Ship Traffic: Hawaii: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_01af_e372_5bb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_01af_e372_5bb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_01af_e372_5bb6/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_01af_e372_5bb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_01af_e372_5bb6&showErrors=false&email=", "University of Hawaii", "hawaii_soest_01af_e372_5bb6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f70b_c777_2d0b", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f70b_c777_2d0b.graph", "", "", "public", "AIS Ship Traffic: Johnston Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f70b_c777_2d0b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f70b_c777_2d0b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f70b_c777_2d0b/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f70b_c777_2d0b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f70b_c777_2d0b&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f70b_c777_2d0b"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_be9a_9be0_1f0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_be9a_9be0_1f0a.graph", "", "", "public", "AIS Ship Traffic: Mariana and Wake: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_be9a_9be0_1f0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_be9a_9be0_1f0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_be9a_9be0_1f0a/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_be9a_9be0_1f0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_be9a_9be0_1f0a&showErrors=false&email=", "University of Hawaii", "hawaii_soest_be9a_9be0_1f0a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5742_4f35_ff55", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5742_4f35_ff55.graph", "", "", "public", "AIS Ship Traffic: Rose Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5742_4f35_ff55_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5742_4f35_ff55_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5742_4f35_ff55/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5742_4f35_ff55.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5742_4f35_ff55&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5742_4f35_ff55"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_490d_1198_15c1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_490d_1198_15c1.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_490d_1198_15c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_490d_1198_15c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_490d_1198_15c1/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_490d_1198_15c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_490d_1198_15c1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_490d_1198_15c1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0956_e939_cefc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0956_e939_cefc.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Velocity", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean current velocity at the ACO from a 250 kHz SonTek acoustic doppler current profiler (ADCP) at 1.83 m above the ocean bottom. Velocities are flagged bad if the amplitude is excessively low or high. An amplitude is high if it exceeds the average of the ping before and the ping after by 20 counts. An amplitude is low if less than 6 counts. After this the velocities are flagged bad if the absolute deviation of the vertical velocity from its ensemble median exceeds 0.15 m/s or if its value is less than -0.25 m/s.\n\ncdm_data_type = Profile\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each location, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\neastward_sea_water_velocity (current east component, meters/second)\nnorthward_sea_water_velocity (current north component, meters/second)\nupward_sea_water_velocity (current upward component, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_0956_e939_cefc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_0956_e939_cefc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_0956_e939_cefc/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_0956_e939_cefc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_0956_e939_cefc&showErrors=false&email=", "University of Hawaii", "hawaii_soest_0956_e939_cefc"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d1bf_1535_741f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d1bf_1535_741f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d1bf_1535_741f.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Bottom Pressure Recorder (BPR)", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean pressure at the ACO from a Bottom Pressure Recorder (BPR).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\npressure (sea water pressure, psi)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d1bf_1535_741f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d1bf_1535_741f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d1bf_1535_741f/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d1bf_1535_741f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d1bf_1535_741f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d1bf_1535_741f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc9b_209f_ea2f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc9b_209f_ea2f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc9b_209f_ea2f.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Hydrophone Acoustics", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographi\nc observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides sound files of ocean acoustics at the ocean floor from the ACO hydrophone.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nelapsedTime (Elapsed Time, seconds)\nchannel_1\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_cc9b_209f_ea2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_cc9b_209f_ea2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_cc9b_209f_ea2f/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_cc9b_209f_ea2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_cc9b_209f_ea2f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_cc9b_209f_ea2f"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/database-tables-description", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/database-tables-description", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/cast-table-column-descriptions", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://upwell.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the May 2019 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://www.usgodae.org/cgi-bin/datalist.pl?summary=Go&dset=fnmoc_obs_sfcobs", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1995.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1995", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1995.graph", "", "", "public", "Hake Survey ADCP (1995)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp1995_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp1995_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp1995/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/1995%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp1995.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp1995&showErrors=false&email=", "OSU", "nwioosAdcp1995"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1998.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1998", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1998.graph", "", "", "public", "Hake Survey ADCP (1998)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp1998_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp1998_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp1998/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/1998%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp1998.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp1998&showErrors=false&email=", "OSU", "nwioosAdcp1998"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2001.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2001", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2001.graph", "", "", "public", "Hake Survey ADCP (2001)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (Altitude, m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp2001_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp2001_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp2001/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/2001%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp2001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp2001&showErrors=false&email=", "OSU", "nwioosAdcp2001"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2003.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2003", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2003.graph", "", "", "public", "Hake Survey ADCP (2003)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp2003_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp2003_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp2003/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/2003%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp2003.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp2003&showErrors=false&email=", "OSU", "nwioosAdcp2003"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2005.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2005", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2005.graph", "", "", "public", "Hake Survey ADCP (2005)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp2005_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp2005_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp2005/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/2005%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp2005.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp2005&showErrors=false&email=", "OSU", "nwioosAdcp2005"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e5b4_d905_99ef", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e5b4_d905_99ef.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e5b4_d905_99ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e5b4_d905_99ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e5b4_d905_99ef/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e5b4_d905_99ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e5b4_d905_99ef&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "hawaii_soest_e5b4_d905_99ef"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_190f_1fe8_4cc4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_190f_1fe8_4cc4.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitors water quality at several beaches across the island of Maui in the State of Hawaii. This community-based monitoring effort provides valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites are also monitored for harmful bacteria levels of Enterococcus. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. \n\nData are managed through an online repository, the Coral Reef Monitoring Data Portal (http://monitoring.coral.org), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection is coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\n... (10 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_190f_1fe8_4cc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_190f_1fe8_4cc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_190f_1fe8_4cc4/index.json", "http://monitoring.coral.org", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_190f_1fe8_4cc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_190f_1fe8_4cc4&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "hawaii_soest_190f_1fe8_4cc4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys.\n\nThe data is from NOAA NDBC. It has been reformatted by NOAA Coastwatch,\nWest Coast Node. This dataset only has the data that is closest to a\ngiven hour. The time values in the dataset are rounded to the nearest hour.\n\nThis dataset has both historical data (quality controlled, before\n2019-06-01T00:00:00Z) and near real time data (less quality controlled, from\n2019-06-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Name)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nwd (Wind Direction, degrees_true)\nwspd (Wind Speed, m s-1)\ngst (Wind Gust Speed, m s-1)\nwvht (Wave Height, m)\ndpd (Wave Period, Dominant, s)\napd (Wave Period, Average, s)\nmwd (Wave Direction, degrees_true)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.graph", "", "", "public", "NEFSC Continuous Plankton Recorder", "A summary for the data\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ncruise\nsample\nlatitude (degrees_north)\nlongitude (degrees_east)\nphyto_color_indx (Phytoplankton Color Index)\nmarmap_tax_code (Marmap Taxonomic Code)\nmarmap_stage_code\nabundance (per 100 cubic meters)\nlife_stage\ntaxonomic_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/wocecpr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/wocecpr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/wocecpr/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "http://upwell.pfeg.noaa.gov/erddap/rss/wocecpr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=wocecpr&showErrors=false&email=", "NEFSC", "wocecpr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp.graph", "", "", "public", "NOAA NDBC SOS, 2006-present, sea_water_temperature", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_water_temperature data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWTemp/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWTemp&showErrors=false&email=", "NOAA NDBC", "ndbcSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind.graph", "", "", "public", "NOAA NDBC SOS, 2006-present, winds", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have winds data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwind_from_direction (degrees_true)\nwind_speed (m s-1)\nwind_speed_of_gust (m s-1)\nupward_air_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWind_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWind_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWind/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWind.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWind&showErrors=false&email=", "NOAA NDBC", "ndbcSosWind"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents.graph", "", "", "public", "NOAA NDBC SOS, 2007-present, currents", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have currents data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\nWARNING: Always check the quality_flags before using this data. A simple criterion is: only use a row of data if the first quality_flags value for the row (overall bin status) is 3 (good data/passed quality test). You can do this by appending &quality_flags=~\"3;.*\" to your request.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nbin (count)\ndirection_of_sea_water_velocity (degrees_true)\nsea_water_speed (cm/s)\nupward_sea_water_velocity (cm/s)\nerror_velocity (cm/s)\nplatform_orientation (degrees_true)\nplatform_pitch_angle (degree)\nplatform_roll_angle (degree)\nsea_water_temperature (Cel)\npct_good_3_beam (Percent Good 3 Beam, percent)\npct_good_4_beam (Percent Good 4 Beam, percent)\npct_rejected (Percent Rejected, percent)\npct_bad (Percent Bad, percent)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosCurrents_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosCurrents_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosCurrents/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosCurrents.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosCurrents&showErrors=false&email=", "NOAA NDBC", "ndbcSosCurrents"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity.graph", "", "", "public", "NOAA NDBC SOS, 2007-present, sea_water_practical_salinity", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_water_practical_salinity data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosSalinity/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosSalinity&showErrors=false&email=", "NOAA NDBC", "ndbcSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel.graph", "", "", "public", "NOAA NDBC SOS, 2008-present, sea_floor_depth_below_sea_surface", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_floor_depth_below_sea_surface data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\naveraging_interval (s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWLevel/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWLevel&showErrors=false&email=", "NOAA NDBC", "ndbcSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "", "public", "North Pacific High, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_43a8_6d6d_9052.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_43a8_6d6d_9052", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_43a8_6d6d_9052.graph", "", "", "public", "Northwestern Hawaiian Islands, Coral Reef Monitoring, Fish Surveys, Belt Transects (BLT)", "Papahanaumokuakea Marine National Monument (PMNM) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_43a8_6d6d_9052_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_43a8_6d6d_9052_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_43a8_6d6d_9052/index.json", "http://www.papahanaumokuakea.gov/research/welcome.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_43a8_6d6d_9052.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_43a8_6d6d_9052&showErrors=false&email=", "USDOC/NOAA/NOS/PMNM", "hawaii_soest_43a8_6d6d_9052"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_68f2_d17d_d413.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_68f2_d17d_d413", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_68f2_d17d_d413.graph", "", "", "public", "Northwestern Hawaiian Islands, Coral Reef Monitoring, Fish Surveys, Belt Transects (vBLT)", "Papahanaumokuakea Marine National Monument (PMNM) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_68f2_d17d_d413_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_68f2_d17d_d413_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_68f2_d17d_d413/index.json", "http://www.papahanaumokuakea.gov/research/welcome.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_68f2_d17d_d413.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_68f2_d17d_d413&showErrors=false&email=", "USDOC/NOAA/NOS/PMNM", "hawaii_soest_68f2_d17d_d413"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_ec1c_1aa4_ddaf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_ec1c_1aa4_ddaf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_ec1c_1aa4_ddaf.graph", "", "", "public", "Northwestern Hawaiian Islands, Coral Reef Monitoring, Fish Surveys, Stationary Point Counts (nSPC)", "Papahanaumokuakea Marine National Monument (PMNM) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_ec1c_1aa4_ddaf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_ec1c_1aa4_ddaf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_ec1c_1aa4_ddaf/index.json", "http://www.papahanaumokuakea.gov/research/welcome.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_ec1c_1aa4_ddaf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_ec1c_1aa4_ddaf&showErrors=false&email=", "USDOC/NOAA/NOS/PMNM", "hawaii_soest_ec1c_1aa4_ddaf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosCoral.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosCoral", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosCoral.graph", "", "", "public", "NWFSC Coral Data Collected off West Coast of US (1980-2005)", "This data contains the locations of some observations of\ncold-water/deep-sea corals off the west coast of the United States.\nRecords of coral catch originate from bottom trawl surveys conducted\nfrom 1980 to 2001 by the Alaska Fisheries Science Center (AFSC) and\n2001 to 2005 by the Northwest Fisheries Science Center (NWFSC).\nLocational information represent the vessel mid positions (for AFSC\nsurvey trawls) or \"best position\" (i.e., priority order: 1) gear\nmidpoint 2) vessel midpoint, 3) vessel start point, 4) vessel end\npoint, 5) station coordinates for NWFSC survey trawls) conducted as\npart of regular surveys of groundfish off the coasts of Washington,\nOregon and California by NOAA Fisheries. Only records where corals\nwere identified in the total catch are included. Each catch sample\nof coral was identified down to the most specific taxonomic level\npossible by the biologists onboard, therefore identification was\ndependent on their expertise. When positive identification was not\npossible, samples were sometimes archived for future identification\nby systematist experts. Data were compiled by the NWFSC, Fishery\nResource Analysis & Monitoring Division\n\nPurpose - Examination of the spatial and temporal distributions of\nobservations of cold-water/deep-sea corals off the west coast of the\nUnited States, including waters off the states of Washington, Oregon,\nand California. It is important to note that these records represent\nonly presence of corals in the area swept by the trawl gear. Since\nbottom trawls used during these surveys are not designed to sample\nepibenthic invertebrates, absence of corals in the catch does not\nnecessary mean they do not occupy the area swept by the trawl gear.\n\nData Credits - NOAA Fisheries, Alaska Fisheries Science Center,\nResource Assessment & Conservation Engineering Division (RACE) NOAA\nFisheries, Northwest Fisheries Science Center, Fishery Resource\nAnalysis & Monitoring Division (FRAM)\n\nContact: Curt Whitmire, NOAA NWFSC, Curt.Whitmire@noaa.gov\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosCoral_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosCoral_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosCoral/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Coral%201980-2005.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosCoral.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosCoral&showErrors=false&email=", "NOAA NWFSC", "nwioosCoral"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosGroundfish.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosGroundfish", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosGroundfish.graph", "", "", "public", "NWFSC Groundfish Data for U.S. West Coast (2003-2005)", "The data available for downloading is summarized data from the 2003-2005\nU.S. West Coast Bottom Trawl Survey (WCGTS) of Groundfish Resources off\nWashington, Oregon and California.\n\nThe Northwest Fisheries Science Center's Fishery Resource Analysis and\nMonitoring Division (FRAM) completed the sixth in an annual series of\ngroundfish bottom trawl surveys in 2003. The survey was conducted June\n24 to October 23, 2003 and targeted the commercial groundfish resources\ninhabiting depths of 55 to 1,280 meters [m], (30 - 700 fathoms [fm])\nfrom the area off Cape Flattery, Washington (latitude [lat.] 48\u00b010'N)\nto the U.S.-Mexican border (lat. 32\u00b030'N) using chartered West Coast\ncommercial trawlers. These ongoing series of annual surveys, conducted\nby FRAM since 1998, are designed to monitor long-term trends in\ndistribution and abundance of west coast groundfish, especially those\nspecies of management concern. The 2003 survey represents the first\nyear in which the depth range was expanded to include both the\ncontinental shelf (55 - 183 m) and continental slope (183 - 1,280 m)\narea and the first year in which a stratified-random sampling design\nwas adopted.\n\nIn 2003, a total of 574 successful tows were completed out of 643\nattempts. Simrad ITI net mensuration data, as well as global\npositioning system (GPS) navigation data and bottom contact sensor\ndata, used to document performance (e.g. bottom tending), were\nobtained for most tows.\n\nAn Aberdeen-style net with a small mesh (2\" stretched measure or less)\nliner in the codend (to retain smaller specimens) was used to sample\nfish biomass. Target duration of each tow was 15 minutes. Tow\nduration was the time between touchdown and lift-off of the trawl net\nfrom the seafloor based on readings from bottom contact sensors.\n\nCatches were sorted to species, aggregate or other appropriate\ntaxonomic level and then weighed using an electronic,\nmotion-compensated scale. A total of 517 species or families (fish\nand invertebrates) were identified within the survey area. Although\nbiological sampling effort continues to include Dover sole\n(Microstomus pacificus), shortspine thornyhead (Sebastolobus\nalascanus), longspine thornyhead (Sebastolobus altivelis), and\nsablefish (Anoplopoma fimbria), focus has increasingly shifted to\nencompass all groundfish species of management concern. Up to 100\nlength measurements, sex determinations, and individual weights\nand up to 25 age structures were collected per haul for these species.\n\ncdm_data_type = Trajectory\nVARIABLES:\nhaul_id (Haul Identifier)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosGroundfish_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosGroundfish_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosGroundfish/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Groundfish%20Survey%202003-2005.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosGroundfish.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosGroundfish&showErrors=false&email=", "NOAA NWFSC", "nwioosGroundfish"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails.graph", "", "", "public", "NWFSC HUD Fish Species Details", "Habitat Use Database (HUD) Fish Species Details compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\nspecies_id\ncommon_name\nscientific_name\nlife_stage\nabsolute_min_depth (m)\npreferred_min_depth (m)\nabsolute_max_depth (m)\npreferred_max_depth (m)\nabsolute_min_temp (Absolute Min Temperature, degree_C)\npreferred_min_temp (Preferred Min Temperature, degree_C)\nabsolute_max_temp (Absolute Max Temperature, degree_C)\npreferred_max_temp (Preferred Max Temperature, degree_C)\nabsolute_min_latitude (degrees_north)\npreferred_min_latitude (degrees_north)\nabsolute_max_latitude (degrees_north)\npreferred_max_latitude (degrees_north)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudFishDetails/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Fish%20Species%20Details.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudFishDetails.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudFishDetails&showErrors=false&email=", "NOAA NWFSC", "nwioosHudFishDetails"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishOccur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishOccur", "", "", "", "public", "NWFSC HUD Fish Species Occurrence", "Habitat Use Database (HUD) Fish Species Occurrence data compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\ncommon_name\nscientific_name\nlife_stage\ngender\nhabitat_association\nseason\nlevel_1_habitat\nlevel_2_habitat\nlevel_3_habitat\nlevel_4_habitat\nactivity\nactivity_association\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudFishOccur/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Fish%20Species%20Occurrence.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudFishOccur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudFishOccur&showErrors=false&email=", "NOAA NWFSC", "nwioosHudFishOccur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudPredPrey.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudPredPrey", "", "", "", "public", "NWFSC HUD Predators and Prey", "Habitat Use Database (HUD) Predators and Prey data compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\necoregion\nseason\nlevel_1_habitat\nlevel_2_habitat\nlevel_3_habitat\nlevel_4_habitat\nscientific_name\ngender\nlife_stage\nprey_name\nprey_gender\nprey_life_stage\npredator_name\npredator_gender\npredator_life_stage\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudPredPrey/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Predators%20and%20Prey.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudPredPrey.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudPredPrey&showErrors=false&email=", "NOAA NWFSC", "nwioosHudPredPrey"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudRef.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudRef", "", "", "", "public", "NWFSC HUD References", "Habitat Use Database (HUD) References compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\nseason\nlevel_1_habitat\nlevel_2_habitat\nlevel_3_habitat\nlevel_4_habitat\nscientific_name\ngender\nlife_stage\nreference_to\nreference_type\nauthors\npublication_year\nreference_name\neditor\npublication_name\npublisher_city\npublisher\nvolume\nnumber\nreferenced_pages\nthesis_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudRef/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20References.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudRef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudRef&showErrors=false&email=", "NOAA NWFSC", "nwioosHudRef"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002.graph", "", "", "public", "NWFSC Observer Fixed Gear Data, off West Coast of US, 2002-2006", "Observer Fixed Gear Data collected during 2002-2006 off West Coast of US.\n\nThis data product originates from data collected by fishery observers in the West Coast Groundfish Observer Program (WCGOP), Fishery Resource Analysis and Monitoring Division (FRAM) at the Northwest Fisheries Science Center, NOAA Fisheries. The WCGOP's goal is to improve total catch estimates by collecting information on the discarded catch (fish returned overboard at-sea) of west coast groundfish species. All data were collected according to standard protocols and data quality control established by the WCGOP. The observed portion of overall catch or landings in a fishery varies by coverage level. Since all fishing operations are not observed, neither the maps nor the data can be used to characterize the fishery completely. This is especially true for rarely-occurring species and when observed sample sizes are small. We urge caution when utilizing these data due to the complexity of groundfish management and fleet harvest dynamics. Grid cells representing less than 3 vessels and less than 10 hauls or sets are not shown due to confidentiality and to ensure adequate sample size. In the limited-entry fixed gear fishery, species discard rates (species discard weight / groundfish total catch (discard + retained weight)) are categorized by approximate quartile ranges and geo-referenced to 20 x 20 kilometer grid cells. The observed fixed gear set location (start location of fishing) was used to allocate data to 20 x 20 kilometer grid cells for calculation. Sixteen species were represented based on combined observer data from 2002-2006. The species included in this data product are dover sole (Microstomus pacificus), sablefish (Anoplopoma fimbria), longspine thornyhead (Sebastolobus altivelis), shortspine thornyhead (Sebastolobus alascanus), lingcod (Ophiodon elongatus), arrowtooth flounder (Atheresthes stomias), petrale sole (Eopsetta jordani), and the rockfishes (genus Sebastes), darkblotched rockfish (S. crameri), Pacific ocean perch (S. alutus), chilipepper (S. goodei), cowcod (S. levis), bocaccio (S. paucispinis), canary rockfish (S. pinniger), widow rockfish (S. entomelas), yelloweye rockfish (S. ruberrimus), and yellowtail rockfish (S. flavidus).\n\nPurpose: This data product was developed to provide basic groundfish discard distribution information for a wide variety of audiences. The West Coast Groundfish Observer Program conducts sampling of groundfish discarded by commercial fisheries along the entire continental U.S. West Coast. The seventeen species included in this data product are among those of most interest to the fisheries management and commercial fishing communities.\n\nData Credits: NOAA Fisheries, Northwest Fisheries Science Center, Fishery Resource Analysis & Monitoring Division, West Coast Groundfish Observer Program, Seattle, WA.\n\ncdm_data_type = Other\nVARIABLES:\nlongitude (Longitude (Center of 20x20 km Grid Cell), degrees_east)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosObsFixed2002_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosObsFixed2002_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosObsFixed2002/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Observer%20Fixed%20Gear%202002%202006.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosObsFixed2002.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosObsFixed2002&showErrors=false&email=", "NOAA NWFSC", "nwioosObsFixed2002"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002.graph", "", "", "public", "NWFSC Observer Trawl Data, off West Coast of US, 2002-2006", "Observer Trawl Data collected during 2002-2006 off West Coast of US.\n\nThis data product originates from data collected by fishery observers in the West Coast Groundfish Observer Program (WCGOP), Fishery Resource Analysis and Monitoring Division (FRAM) at the Northwest Fisheries Science Center, NOAA Fisheries. The WCGOP's goal is to improve total catch estimates by collecting information on the discarded catch (fish returned overboard at-sea) of west coast groundfish species. All data were collected according to standard protocols and data quality control established by the WCGOP. The observed portion of overall catch or landings in a fishery varies by coverage level. Since all fishing operations are not observed, neither the maps nor the data can be used to characterize the fishery completely. This is especially true for rarely-occurring species and when observed sample sizes are small. We urge caution when utilizing these data due to the complexity of groundfish management and fleet harvest dynamics. Grid cells representing less than 3 vessels and less than 10 hauls or sets are not shown due to confidentiality and to ensure adequate sample size. In the limited-entry groundfish bottom trawl fishery, species discard rates (species discard weight / groundfish total catch (discard + retained weight)) are categorized by approximate quartile ranges and geo-referenced to 10 x 10 kilometer grid cells. The observed trawl towline (line drawn from the start to end location of a trawl tow) was used to allocate data to 10 x 10 kilometer grid cells for calculation. Seventeen species were represented based on combined observer data from 2002-2006. The species included in this data product are dover sole (Microstomus pacificus), sablefish (Anoplopoma fimbria), longspine thornyhead (Sebastolobus altivelis), shortspine thornyhead (Sebastolobus alascanus), lingcod (Ophiodon elongatus), arrowtooth flounder (Atheresthes stomias), English sole (Parophrys vetulus), petrale sole (Eopsetta jordani), and the rockfishes (genus Sebastes), darkblotched rockfish (S. crameri), Pacific ocean perch (S. alutus), chilipepper (S. goodei), cowcod (S. levis), bocaccio (S. paucispinis), canary rockfish (S. pinniger), widow rockfish (S. entomelas), yelloweye rockfish (S. ruberrimus), and yellowtail rockfish (S. flavidus).\n\nPurpose: This data product was developed to provide basic groundfish discard distribution information for a wide variety of audiences. The West Coast Groundfish Observer Program conducts sampling of groundfish discarded by commercial fisheries along the entire continental U.S. West Coast. The seventeen species included in this data product are among those of most interest to the fisheries management and commercial fishing communities.\n\nData Credits: NOAA Fisheries, Northwest Fisheries Science Center, Fishery Resource Analysis & Monitoring Division, West Coast Groundfish Observer Program, Seattle, WA.\n\ncdm_data_type = Other\nVARIABLES:\nlongitude (Longitude (Center of 10x10 km Grid Cell), degrees_east)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosObsTrawl2002_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosObsTrawl2002_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosObsTrawl2002/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Observer%20Trawl%202002%202006.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosObsTrawl2002.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosObsTrawl2002&showErrors=false&email=", "NOAA NWFSC", "nwioosObsTrawl2002"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a.graph", "", "", "public", "OceanSITES KEO daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from the Kuroshio Extension Observatory (KEO) site nominally at 32.3N,144.6E, in the Kuroshio Extension recirculation gyre. The actual anchor position is different for each deployment, and this is a slack line mooring with a watch circle radius greater than 5km. For users performing inter comparisons, it may be important to use the actual position of the buoy from the Global Positioning System (GPS) data. This mooring has been instrumented with upper ocean and surface sensors since June 2004. Included in this file are sea temperatures and pressures from the surface to 525m depth, salinity and density (sigma-theta) from the surface to 400m depth, sea currents to 35m depth, a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and barometric pressure. Note that because this is a slack-line mooring, subsurface sensor depths vary with time, and hence one must use the observed and calculated water pressures to compute sensor depths. Also, due to the relatively large scope and different anchor positions, the positions of the buoy at the surface are included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndeptemp (Depth of each measurement, meters)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepth (m)\nPRES (water pressure, observed and calculated, decibar)\nPRES_QC (quality flag)\nPRES_DM (method of data processing)\n... (53 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/keo_121f_a3d0_3c0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/keo_121f_a3d0_3c0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/keo_121f_a3d0_3c0a/index.json", "https://www.pmel.noaa.gov/ocs/", "http://upwell.pfeg.noaa.gov/erddap/rss/keo_121f_a3d0_3c0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=keo_121f_a3d0_3c0a&showErrors=false&email=", "NOAA/PMEL", "keo_121f_a3d0_3c0a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f.graph", "", "", "public", "OceanSITES PAPA daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from station Papa at 50N,145W in the North Pacific. This taut-line mooring has been instrumented with upper ocean and surface sensors since June 2007. Included in this file are sea temperatures from the surface to 300 meters depth, salinity and density (sigma-theta) from the surface to 200m depth, sea currents at 5m and 35m depth, acoustic doppler profiles of zonal and meridional ocean current to from 30 to 158 meters depth, and a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and barometric pressure. Time series of buoy latitude and longitude are included as well.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each measurement, m)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepcur (Depth of each measurement, m)\nUCUR\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\ndeppsal (Depth of each measurement, m)\n... (43 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/papa_8bb5_dcd5_981f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/papa_8bb5_dcd5_981f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/papa_8bb5_dcd5_981f/index.json", "https://www.pmel.noaa.gov/ocs/", "http://upwell.pfeg.noaa.gov/erddap/rss/papa_8bb5_dcd5_981f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=papa_8bb5_dcd5_981f&showErrors=false&email=", "NOAA/PMEL", "papa_8bb5_dcd5_981f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219.graph", "", "", "public", "OceanSITES PIRATA daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from one of the Tropical Atmosphere/Ocean (TAO)/TRITON, Pilot Research Moored Array in the Tropical Atlantic (PIRATA), or Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) mooring sites in the tropical oceans. Included in this file are sea temperatures from the surface to 500 meters at most sites and deeper at others, salinity and potential density (sigma-theta) at the sea surface and deeper at some sites, sea currents at 10m depth and deeper at some sites, a variety of surface observations including winds, air temperature, relative humidity, shortwave solar radiation, longwave radiation, rain rate, barometric pressure. Buoy positions are also included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each TEMP measurement, m)\ndepcur (Depth of each current measurement)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndeppsal (Depth of each Salinity measurement)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\nPSAL (sea_water_practical_salinity)\nPSAL_QC\nPSAL_DM (method of data processing)\ndepden (Depth of each density measurement)\nheightwind (altitude, meters)\nUWND (zonal wind)\nVWND (meridional wind, m/s)\n... (44 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pirata_5922_7dcd_7219_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pirata_5922_7dcd_7219_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pirata_5922_7dcd_7219/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/pirata_5922_7dcd_7219.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pirata_5922_7dcd_7219&showErrors=false&email=", "NOAA/PMEL", "pirata_5922_7dcd_7219"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc.graph", "", "", "public", "OceanSITES TAO daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from one of the flux reference mooring sites in the tropical oceans. Included in this file are sea temperatures from the surface to 500m depth, salinity and density (sigma-theta) from the surface to typically 120m depth, sea currents typically at 10m depth and at some sites deeper, a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and sea level airpressure. Buoy positions are also included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each measurement, m)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\n... (42 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/tao_6eb4_e773_2fbc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/tao_6eb4_e773_2fbc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/tao_6eb4_e773_2fbc/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/tao_6eb4_e773_2fbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=tao_6eb4_e773_2fbc&showErrors=false&email=", "NOAA/PMEL", "tao_6eb4_e773_2fbc"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.graph", "", "", "public", "OSMC Argo Profile data", "OSMC Argo Profile data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\norganization_name\ncountry_name\nplatform_type_name\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nparameter_name\ndaily_obs_count\nobservation_depth\nobservation_value\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_PROFILERS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_PROFILERS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_PROFILERS/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_PROFILERS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_PROFILERS&showErrors=false&email=", "OSMC", "OSMC_PROFILERS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.graph", "", "", "public", "OSMC normalized observations from GTS", "OSMC normalized In-situ Real time GTS data\n\ncdm_data_type = Point\nVARIABLES:\nPLATFORM_CODE (Station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform\nparameter\nOBSERVATION_VALUE\nOBSERVATION_DEPTH\nCOUNTRY_NAME\norganization_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_Points_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_Points_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_Points/index.json", "https://www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_Points.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_Points&showErrors=false&email=", "OSMC", "OSMC_Points"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_417d_33ad_dead.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_417d_33ad_dead", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_417d_33ad_dead.graph", "", "", "public", "Pacific Island Network Marine Fish Monitoring Dataset - Surveys", "National Park Service Fish Stock Data\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\nhigherInstitutionCode\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\nisland\n... (67 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_417d_33ad_dead_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_417d_33ad_dead_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_417d_33ad_dead/index.json", "http://science.nature.nps.gov/im/units/pacn/monitoring/vs_fish_marine.cfm", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_417d_33ad_dead.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_417d_33ad_dead&showErrors=false&email=", "USDOI/NPS/NRSS/IMD/PACN", "hawaii_soest_417d_33ad_dead"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_31bb_eee9_ef0a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_31bb_eee9_ef0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_31bb_eee9_ef0a.graph", "", "", "public", "Pacific Island Network Marine Fish Monitoring Dataset - Transects", "The benthic marine community in the Pacific Island Network (PACN) is a complex ecologic system and a diverse taxonomic environment, including algae and corals and other invertebrates. Reef-building corals are the primary architectural organism and are sensitive to environmental degradation; therefore, they are a good indicator of overall health for nearshore marine ecosystems. Primary stressors to coral reefs include disease, bleaching, sedimentation, eutrophication, storms, and global climate change. The United Nations Environment Programme (UNEP) has proposed using coral reefs as a worldwide indicator ecosystem for global climate change (Spalding et al. 2004). For these reasons, the PACN has chosen to implement long term monitoring of benthic marine communities. Benthic marine communities is most closely linked with marine fish, and monitoring efforts will be conducted at the same time and location to maximize data value\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\n... (58 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_31bb_eee9_ef0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_31bb_eee9_ef0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_31bb_eee9_ef0a/index.json", "http://science.nature.nps.gov/im/units/pacn/monitoring/vs_fish_marine.cfm", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_31bb_eee9_ef0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_31bb_eee9_ef0a&showErrors=false&email=", "USDOI/NPS/NRSS/IMD/PACN", "hawaii_soest_31bb_eee9_ef0a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5673_517d_3b8c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5673_517d_3b8c.graph", "", "", "public", "PacIOOS Nearshore Sensor 01 (NS01): Waikiki Yacht Club, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS01 is located at the Waikiki Yacht Club and is fixed to the bridge pier. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to a piling ~0.5m below mean sea level.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5673_517d_3b8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5673_517d_3b8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5673_517d_3b8c/index.json", "https://www.pacioos.hawaii.edu/water/sensor-waikiki/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5673_517d_3b8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5673_517d_3b8c&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5673_517d_3b8c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_1273_fad1_0404", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_1273_fad1_0404.graph", "", "", "public", "PacIOOS Nearshore Sensor 02 (NS02): Hawaii Yacht Club, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS02 is located at a floating dock off the Hawaii Yacht Club. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to a floating dock just below the ocean surface.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_1273_fad1_0404_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_1273_fad1_0404_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_1273_fad1_0404/index.json", "https://www.pacioos.hawaii.edu/water/sensor-hawaiiyachtclub/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_1273_fad1_0404.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_1273_fad1_0404&showErrors=false&email=", "University of Hawaii", "hawaii_soest_1273_fad1_0404"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d787_1c35_208d", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d787_1c35_208d.graph", "", "", "public", "PacIOOS Nearshore Sensor 03 (NS03): Hilton Hawaiian Pier, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS03 is located at the Atlantis Pier off the Hilton Hawaiian Village. The instrument is a Sea-Bird Electronics model 37SMP. The package is located at approximately 2.0 meters below mean sea level.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d787_1c35_208d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d787_1c35_208d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d787_1c35_208d/index.json", "https://www.pacioos.hawaii.edu/water/sensor-atlantis/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d787_1c35_208d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d787_1c35_208d&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d787_1c35_208d"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_c9f9_c232_1fe9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_c9f9_c232_1fe9.graph", "", "", "public", "PacIOOS Nearshore Sensor 04 (NS04): Waikiki Aquarium, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS04 is located just off the Waikiki Aquarium and is fixed to the pier. The instrument is a Sea-Bird Electronics model 37SMP. The package is mounted on the bottom in approximately 2.0 to 2.5 meters ocean depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_c9f9_c232_1fe9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_c9f9_c232_1fe9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_c9f9_c232_1fe9/index.json", "https://www.pacioos.hawaii.edu/water/sensor-waikikiaquarium/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_c9f9_c232_1fe9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_c9f9_c232_1fe9&showErrors=false&email=", "University of Hawaii", "hawaii_soest_c9f9_c232_1fe9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b55f_a8f2_ad70", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b55f_a8f2_ad70.graph", "", "", "public", "PacIOOS Nearshore Sensor 05 (NS05): Pago Pago, American Samoa", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS05 is located at the Department of Marine and Wildlife Resources (DMWR) dock in Pago Pago Harbor, American Samoa and is mounted to the bottom in about 2 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_b55f_a8f2_ad70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_b55f_a8f2_ad70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_b55f_a8f2_ad70/index.json", "https://www.pacioos.hawaii.edu/water/sensor-pagopago/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_b55f_a8f2_ad70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_b55f_a8f2_ad70&showErrors=false&email=", "University of Hawaii", "hawaii_soest_b55f_a8f2_ad70"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f59_c29c_d820", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f59_c29c_d820.graph", "", "", "public", "PacIOOS Nearshore Sensor 06 (NS06): Pohnpei, Micronesia", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS06 is located at the dock in Pohnpei lagoon and is mounted to the bottom in about 1 meter of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8f59_c29c_d820_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8f59_c29c_d820_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8f59_c29c_d820/index.json", "https://www.pacioos.hawaii.edu/water/sensor-pohnpei/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8f59_c29c_d820.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8f59_c29c_d820&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8f59_c29c_d820"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_77b7_f5dd_cda3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_77b7_f5dd_cda3.graph", "", "", "public", "PacIOOS Nearshore Sensor 07 (NS07): Majuro, Marshall Islands", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS07 is located at the Uliga dock in Majuro, Republic of the Marshall Islands and is mounted to the bottom in about 2 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_77b7_f5dd_cda3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_77b7_f5dd_cda3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_77b7_f5dd_cda3/index.json", "https://www.pacioos.hawaii.edu/water/sensor-majuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_77b7_f5dd_cda3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_77b7_f5dd_cda3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_77b7_f5dd_cda3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e3c0_a956_de01", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e3c0_a956_de01.graph", "", "", "public", "PacIOOS Nearshore Sensor 08 (NS08): Koror, Palau", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS08 is located at the Palau International Coral Reef Center (PICRC) dock in Koror, Palau and is mounted to the bottom in about 3.5 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e3c0_a956_de01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e3c0_a956_de01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e3c0_a956_de01/index.json", "https://www.pacioos.hawaii.edu/water/sensor-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e3c0_a956_de01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e3c0_a956_de01&showErrors=false&email=", "University of Hawaii", "hawaii_soest_e3c0_a956_de01"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0113_b43d_e024", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0113_b43d_e024.graph", "", "", "public", "PacIOOS Nearshore Sensor 09 (NS09): Cetti Bay, Guam", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS09 is approximately 70 meters offshore in Cetti Bay, Guam and is mounted to the bottom in about 3 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_0113_b43d_e024_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_0113_b43d_e024_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_0113_b43d_e024/index.json", "https://www.pacioos.hawaii.edu/water/sensor-cetti/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_0113_b43d_e024.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_0113_b43d_e024&showErrors=false&email=", "University of Hawaii", "hawaii_soest_0113_b43d_e024"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f25e_31a1_16f1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f25e_31a1_16f1.graph", "", "", "public", "PacIOOS Nearshore Sensor 10 (NS10): Maunalua Bay, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS10 is located off the old pier in Maunalua Bay in Hawaii Kai. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to the pier at about 2m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f25e_31a1_16f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f25e_31a1_16f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f25e_31a1_16f1/index.json", "https://www.pacioos.hawaii.edu/water/sensor-maunalua/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f25e_31a1_16f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f25e_31a1_16f1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f25e_31a1_16f1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8668_b202_8233", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8668_b202_8233.graph", "", "", "public", "PacIOOS Nearshore Sensor 11 (NS11): Saipan, CNMI", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS11 is approximately 20 meters offshore of Puntan Babpot near the golf course at Laolao Bay on the east shore of Saipan in the Commonwealth of the Northern Mariana Islands (CNMI) and is mounted to the bottom in about 3 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8668_b202_8233_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8668_b202_8233_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8668_b202_8233/index.json", "https://www.pacioos.hawaii.edu/water/sensor-saipan/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8668_b202_8233.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8668_b202_8233&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8668_b202_8233"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b10c_af2d_3fe8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b10c_af2d_3fe8.graph", "", "", "public", "PacIOOS Nearshore Sensor 12 (NS12): Kalama Beach Park, Maui, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS12 is located at Kalama Beach Park in Kihei, Maui. The instrument is a 6600V2-4 Multi-parameter water quality logger. The package is fixed to a mooring at about 1.5m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\nwater_depth (Sensor depth, m)\nph (1)\noxygen (Dissolved oxygen concentration, kg m-3)\noxygen_saturation (Dissolved oxygen saturation, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_b10c_af2d_3fe8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_b10c_af2d_3fe8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_b10c_af2d_3fe8/index.json", "https://www.pacioos.hawaii.edu/water/sensor-kalama/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_b10c_af2d_3fe8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_b10c_af2d_3fe8&showErrors=false&email=", "University of Hawaii", "hawaii_soest_b10c_af2d_3fe8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_026f_4c1d_55e5", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_026f_4c1d_55e5.graph", "", "", "public", "PacIOOS Nearshore Sensor 13 (NS13): Kahului, Maui, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS13 is located in Kahului Harbor in Maui. The instrument is a 6600V2-4 Multi-parameter water quality logger. The package is fixed to a piling at about 1.5m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nwater_depth (Sensor depth (processed), m)\nwater_depth_raw (Sensor depth (raw), m)\nph (pH (processed), 1)\nph_raw (pH (raw), 1)\noxygen (Dissolved oxygen concentration (processed), kg m-3)\noxygen_raw (Dissolved oxygen concentration (raw), kg m-3)\noxygen_saturation (Dissolved oxygen saturation (processed), 1)\noxygen_saturation_raw (Dissolved oxygen saturation (raw), 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_026f_4c1d_55e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_026f_4c1d_55e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_026f_4c1d_55e5/index.json", "https://www.pacioos.hawaii.edu/water/sensor-kahului/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_026f_4c1d_55e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_026f_4c1d_55e5&showErrors=false&email=", "University of Hawaii", "hawaii_soest_026f_4c1d_55e5"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_191e_fe37_f9a0", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_191e_fe37_f9a0.graph", "", "", "public", "PacIOOS Nearshore Sensor 15 (NS15): Pago Bay, Guam", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS15 is in Pago Bay, Guam and is mounted to the bottom in about 1.5 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. This station was decommissioned and relocated after 2018 in order to minimize burial of the sensor by silt; see NS17 for data at the new mooring location.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_191e_fe37_f9a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_191e_fe37_f9a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_191e_fe37_f9a0/index.json", "https://www.pacioos.hawaii.edu/water/sensor-pago/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_191e_fe37_f9a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_191e_fe37_f9a0&showErrors=false&email=", "University of Hawaii", "hawaii_soest_191e_fe37_f9a0"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d5ba_831c_443a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d5ba_831c_443a.graph", "", "", "public", "PacIOOS Nearshore Sensor 16 (NS16): Wailupe, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS16 is located off Wailupe in Maunalua Bay in Aina Haina. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to the pier at about 1m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d5ba_831c_443a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d5ba_831c_443a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d5ba_831c_443a/index.json", "https://www.pacioos.hawaii.edu/water/sensor-wailupe/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d5ba_831c_443a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d5ba_831c_443a&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d5ba_831c_443a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_093e_cd55_43a3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_093e_cd55_43a3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_093e_cd55_43a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_093e_cd55_43a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_093e_cd55_43a3/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_093e_cd55_43a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_093e_cd55_43a3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_093e_cd55_43a3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc92_7d24_0627", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc92_7d24_0627.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_cc92_7d24_0627_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_cc92_7d24_0627_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_cc92_7d24_0627/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_cc92_7d24_0627.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_cc92_7d24_0627&showErrors=false&email=", "University of Hawaii", "hawaii_soest_cc92_7d24_0627"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f289_8170_ec45", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f289_8170_ec45.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f289_8170_ec45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f289_8170_ec45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f289_8170_ec45/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f289_8170_ec45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f289_8170_ec45&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f289_8170_ec45"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_36dd_cf4c_73a6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_36dd_cf4c_73a6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_36dd_cf4c_73a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_36dd_cf4c_73a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_36dd_cf4c_73a6/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_36dd_cf4c_73a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_36dd_cf4c_73a6&showErrors=false&email=", "University of Hawaii", "hawaii_soest_36dd_cf4c_73a6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5359_8678_82b1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5359_8678_82b1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5359_8678_82b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5359_8678_82b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5359_8678_82b1/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5359_8678_82b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5359_8678_82b1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5359_8678_82b1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_92c1_a2b0_55fb", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_92c1_a2b0_55fb.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_92c1_a2b0_55fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_92c1_a2b0_55fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_92c1_a2b0_55fb/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_92c1_a2b0_55fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_92c1_a2b0_55fb&showErrors=false&email=", "University of Hawaii", "hawaii_soest_92c1_a2b0_55fb"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_75b3_e52c_26a2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_75b3_e52c_26a2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_75b3_e52c_26a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_75b3_e52c_26a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_75b3_e52c_26a2/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_75b3_e52c_26a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_75b3_e52c_26a2&showErrors=false&email=", "University of Hawaii", "hawaii_soest_75b3_e52c_26a2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_a826_8633_00bb", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_a826_8633_00bb.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_a826_8633_00bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_a826_8633_00bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_a826_8633_00bb/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_a826_8633_00bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_a826_8633_00bb&showErrors=false&email=", "University of Hawaii", "hawaii_soest_a826_8633_00bb"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_076a_87b3_40a0", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_076a_87b3_40a0.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_076a_87b3_40a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_076a_87b3_40a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_076a_87b3_40a0/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_076a_87b3_40a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_076a_87b3_40a0&showErrors=false&email=", "University of Hawaii", "hawaii_soest_076a_87b3_40a0"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_4c82_4728_010b", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_4c82_4728_010b.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_4c82_4728_010b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_4c82_4728_010b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_4c82_4728_010b/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_4c82_4728_010b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_4c82_4728_010b&showErrors=false&email=", "University of Hawaii", "hawaii_soest_4c82_4728_010b"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_856b_7e66_8c3f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_856b_7e66_8c3f.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_856b_7e66_8c3f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_856b_7e66_8c3f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_856b_7e66_8c3f/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_856b_7e66_8c3f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_856b_7e66_8c3f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_856b_7e66_8c3f"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2f21_4063_cfec", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2f21_4063_cfec.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_2f21_4063_cfec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_2f21_4063_cfec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_2f21_4063_cfec/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_2f21_4063_cfec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_2f21_4063_cfec&showErrors=false&email=", "University of Hawaii", "hawaii_soest_2f21_4063_cfec"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "http://www.ogcnetwork.net/node/344", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/PRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2017, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2017, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2017, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_88cd_7dfb_ecfa.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_88cd_7dfb_ecfa", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_88cd_7dfb_ecfa.graph", "", "", "public", "US Pacific Islands, Coral Reef Monitoring, Fish Surveys, Belt Transects (BLT)", "Coral Reef Ecosytem Division (CRED) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_88cd_7dfb_ecfa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_88cd_7dfb_ecfa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_88cd_7dfb_ecfa/index.json", "https://www.pifsc.noaa.gov/cred/fish.php", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_88cd_7dfb_ecfa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_88cd_7dfb_ecfa&showErrors=false&email=", "USDOC/NOAA/NMFS/PIFSC/CRED", "hawaii_soest_88cd_7dfb_ecfa"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7448_8dd2_e529.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7448_8dd2_e529", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7448_8dd2_e529.graph", "", "", "public", "US Pacific Islands, Coral Reef Monitoring, Fish Surveys, Stationary Point Counts (nSPC)", "Coral Reef Ecosytem Division (CRED) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\n... (49 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_7448_8dd2_e529_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_7448_8dd2_e529_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_7448_8dd2_e529/index.json", "https://www.pifsc.noaa.gov/cred/fish.php", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_7448_8dd2_e529.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_7448_8dd2_e529&showErrors=false&email=", "USDOC/NOAA/NMFS/PIFSC/CRED", "hawaii_soest_7448_8dd2_e529"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_6dcb_e681_3eab.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_6dcb_e681_3eab", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_6dcb_e681_3eab.graph", "", "", "public", "US Pacific Islands, Coral Reef Monitoring, Fish Surveys, Stationary Point Counts (SPC)", "Coral Reef Ecosytem Division (CRED) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\n... (49 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_6dcb_e681_3eab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_6dcb_e681_3eab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_6dcb_e681_3eab/index.json", "https://www.pifsc.noaa.gov/cred/fish.php", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_6dcb_e681_3eab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_6dcb_e681_3eab&showErrors=false&email=", "USDOC/NOAA/NMFS/PIFSC/CRED", "hawaii_soest_6dcb_e681_3eab"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d98d_1d43_fef7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d98d_1d43_fef7.graph", "", "", "public", "Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\naltitude (height above mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\nair_temperature (Mean air temperature, Celsius)\nair_temperature_std (Standard deviation of air temperature, Celsius)\nair_temperature_max (Maximum air temperature, Celsius)\nair_temperature_max_time (Time of maximum air temperature, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (Minimum air temperature, Celsius)\nair_temperature_min_time (Time of minimum air temperature, seconds since 1970-01-01T00:00:00Z)\nwind_speed (Mean wind speed, m s-1)\nwind_speed_std (Standard deviation wind speed, m s-1)\nwind_speed_max (Maximum wind speed, m s-1)\nwind_speed_max_time (Time of maximum wind speed, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (Minimum wind speed, m s-1)\nwind_speed_min_time (Time of minimum wind speed, seconds since 1970-01-01T00:00:00Z)\nwind_from_direction (degrees)\nwind_from_direction_std (Standard deviation of wind direction, degrees)\nrainfall_amount (Rainfall total, mm)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d98d_1d43_fef7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d98d_1d43_fef7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d98d_1d43_fef7/index.json", "http://www.coralreefresearchfoundation.org", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d98d_1d43_fef7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d98d_1d43_fef7&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "hawaii_soest_d98d_1d43_fef7"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whoiSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whoiSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whoiSos.graph", "", "", "public", "WHOI MVCO 12m Node ADCP SOS, 2008-present", "Wave observations from the 12m node ADCP in the Martha's Vineyard Coastal Observatory (MVCO) in the northwest Atlantic in coastal waters of North America. Extensive, detailed documentation is available in these .xml files:\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/MVCO_ObservingSystem.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/ADCP_System.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/MVCO_Workhorse_1200.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/RDI_Workhorse_1200.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Pressure_Obs_Process.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Velocity_Obs_Process.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Pressure_QC_Chain.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Velocity_QC_Chain.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/PUV_Analysis.xml\n\nFor this dataset, if you want the most recent data, you MUST change the default end time constraint to be a time that is slightly (a few seconds or a few minutes) in the past. The source data server does not allow end time constraints that are after the exact current time.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\npressure (Mean Sea Water Pressure, cm)\nwaveHeightFromPressure (Wave Height from Pressure, cm)\nwavePeriodFromPressure (Wave Period from Pressure, s)\nloCutoffFrequency (Low Cutoff Frequency, Hz)\nhiCutoffFrequency (High Cutoff Frequency, Hz)\nwaveHeightAll (Wave Height All, cm)\nswell (cm)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whoiSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whoiSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whoiSos/index.json", "https://www.whoi.edu/mvco", "http://upwell.pfeg.noaa.gov/erddap/rss/whoiSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoiSos&showErrors=false&email=", "Woods Hole Oceanographic Institution", "whoiSos"] + ] + } + } + recorded_at: 2019-07-19 19:13:11 GMT + recorded_with: vcr/0.2.6, webmockr/0.3.4 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/3.3 crul/0.8.1.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Fri, 19 Jul 2019 19:13:48 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Fri, 19 Jul 2019 19:13:48 GMT + xdods-server: dods/3.7 + erddap-server: '2.01' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://upwell.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_01af_e372_5bb6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_01af_e372_5bb6.graph", "", "", "public", "AIS Ship Traffic: Hawaii: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_01af_e372_5bb6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_01af_e372_5bb6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_01af_e372_5bb6/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_01af_e372_5bb6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_01af_e372_5bb6&showErrors=false&email=", "University of Hawaii", "hawaii_soest_01af_e372_5bb6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f70b_c777_2d0b", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f70b_c777_2d0b.graph", "", "", "public", "AIS Ship Traffic: Johnston Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f70b_c777_2d0b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f70b_c777_2d0b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f70b_c777_2d0b/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f70b_c777_2d0b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f70b_c777_2d0b&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f70b_c777_2d0b"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_be9a_9be0_1f0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_be9a_9be0_1f0a.graph", "", "", "public", "AIS Ship Traffic: Mariana and Wake: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_be9a_9be0_1f0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_be9a_9be0_1f0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_be9a_9be0_1f0a/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_be9a_9be0_1f0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_be9a_9be0_1f0a&showErrors=false&email=", "University of Hawaii", "hawaii_soest_be9a_9be0_1f0a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5742_4f35_ff55", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5742_4f35_ff55.graph", "", "", "public", "AIS Ship Traffic: Rose Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5742_4f35_ff55_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5742_4f35_ff55_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5742_4f35_ff55/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5742_4f35_ff55.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5742_4f35_ff55&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5742_4f35_ff55"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_490d_1198_15c1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_490d_1198_15c1.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_490d_1198_15c1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_490d_1198_15c1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_490d_1198_15c1/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_490d_1198_15c1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_490d_1198_15c1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_490d_1198_15c1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0956_e939_cefc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0956_e939_cefc.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Velocity", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean current velocity at the ACO from a 250 kHz SonTek acoustic doppler current profiler (ADCP) at 1.83 m above the ocean bottom. Velocities are flagged bad if the amplitude is excessively low or high. An amplitude is high if it exceeds the average of the ping before and the ping after by 20 counts. An amplitude is low if less than 6 counts. After this the velocities are flagged bad if the absolute deviation of the vertical velocity from its ensemble median exceeds 0.15 m/s or if its value is less than -0.25 m/s.\n\ncdm_data_type = Profile\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each location, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\neastward_sea_water_velocity (current east component, meters/second)\nnorthward_sea_water_velocity (current north component, meters/second)\nupward_sea_water_velocity (current upward component, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_0956_e939_cefc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_0956_e939_cefc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_0956_e939_cefc/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_0956_e939_cefc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_0956_e939_cefc&showErrors=false&email=", "University of Hawaii", "hawaii_soest_0956_e939_cefc"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d1bf_1535_741f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d1bf_1535_741f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d1bf_1535_741f.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Bottom Pressure Recorder (BPR)", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean pressure at the ACO from a Bottom Pressure Recorder (BPR).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\npressure (sea water pressure, psi)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d1bf_1535_741f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d1bf_1535_741f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d1bf_1535_741f/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d1bf_1535_741f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d1bf_1535_741f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d1bf_1535_741f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc9b_209f_ea2f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc9b_209f_ea2f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc9b_209f_ea2f.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Hydrophone Acoustics", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographi\nc observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides sound files of ocean acoustics at the ocean floor from the ACO hydrophone.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nelapsedTime (Elapsed Time, seconds)\nchannel_1\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_cc9b_209f_ea2f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_cc9b_209f_ea2f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_cc9b_209f_ea2f/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_cc9b_209f_ea2f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_cc9b_209f_ea2f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_cc9b_209f_ea2f"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/database-tables-description", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/database-tables-description", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "http://www.calcofi.org/new.data/index.php/reporteddata/2013-09-30-23-23-27/cast-table-column-descriptions", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://upwell.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the May 2019 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "http://www.globec.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://www.usgodae.org/cgi-bin/datalist.pl?summary=Go&dset=fnmoc_obs_sfcobs", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1995.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1995", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1995.graph", "", "", "public", "Hake Survey ADCP (1995)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp1995_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp1995_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp1995/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/1995%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp1995.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp1995&showErrors=false&email=", "OSU", "nwioosAdcp1995"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1998.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1998", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp1998.graph", "", "", "public", "Hake Survey ADCP (1998)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp1998_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp1998_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp1998/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/1998%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp1998.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp1998&showErrors=false&email=", "OSU", "nwioosAdcp1998"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2001.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2001", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2001.graph", "", "", "public", "Hake Survey ADCP (2001)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (Altitude, m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp2001_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp2001_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp2001/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/2001%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp2001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp2001&showErrors=false&email=", "OSU", "nwioosAdcp2001"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2003.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2003", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2003.graph", "", "", "public", "Hake Survey ADCP (2003)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp2003_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp2003_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp2003/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/2003%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp2003.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp2003&showErrors=false&email=", "OSU", "nwioosAdcp2003"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2005.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2005", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosAdcp2005.graph", "", "", "public", "Hake Survey ADCP (2005)", "Shipboard acoustic Doppler current profiler data collected during the\nIntegrated Acoustic and Trawl Surveys of Pacific Hake.\nProcessing by: Stephen Pierce, Oregon State University\n(P. M. Kosro also performed some processing steps in the 1998 case)\nDate: 16 August 2006\nData quality: Good in general\nMissing or poor-quality data have been omitted.\n\nThis dataset has a simple simple version of observed velocities, useful\nfor most purposes. The complete data sets with all configuration and\nprocessing details and diagnostic data (e.g. error velocity, AGC,\nspectral width) are available from the NODC Joint Archive for Shipboard\nADCP, or by request from S. Pierce.\n\nProcessing steps included: editing of the data using various\ndiagnostics, calibration of the phase and amplitude errors of the\nADCP/navigation/gyrocompass system by covariability analysis between\ncurrents and ship velocity, reference layer velocity smoothing, and\nfinal production of earth-referenced velocities. For more details\nregarding methods, see: Pierce et al. (2000), DSR II 47, 811-829.\n\nContact: Dr. Stephen D. Pierce, spierce@coas.oregonstate.edu\n\ncdm_data_type = Other\nVARIABLES:\nyear\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\nyearday (time)\neastv (Eastward Sea Water Velocity, m s-1)\nnorthv (Northward Sea Water Velocity, m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosAdcp2005_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosAdcp2005_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosAdcp2005/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/2005%20Hake%20Survey%20ADCP.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosAdcp2005.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosAdcp2005&showErrors=false&email=", "OSU", "nwioosAdcp2005"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e5b4_d905_99ef", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e5b4_d905_99ef.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e5b4_d905_99ef_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e5b4_d905_99ef_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e5b4_d905_99ef/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e5b4_d905_99ef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e5b4_d905_99ef&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "hawaii_soest_e5b4_d905_99ef"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_190f_1fe8_4cc4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_190f_1fe8_4cc4.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitors water quality at several beaches across the island of Maui in the State of Hawaii. This community-based monitoring effort provides valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites are also monitored for harmful bacteria levels of Enterococcus. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. \n\nData are managed through an online repository, the Coral Reef Monitoring Data Portal (http://monitoring.coral.org), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection is coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\n... (10 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_190f_1fe8_4cc4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_190f_1fe8_4cc4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_190f_1fe8_4cc4/index.json", "http://monitoring.coral.org", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_190f_1fe8_4cc4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_190f_1fe8_4cc4&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "hawaii_soest_190f_1fe8_4cc4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys.\n\nThe data is from NOAA NDBC. It has been reformatted by NOAA Coastwatch,\nWest Coast Node. This dataset only has the data that is closest to a\ngiven hour. The time values in the dataset are rounded to the nearest hour.\n\nThis dataset has both historical data (quality controlled, before\n2019-06-01T00:00:00Z) and near real time data (less quality controlled, from\n2019-06-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Name)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nwd (Wind Direction, degrees_true)\nwspd (Wind Speed, m s-1)\ngst (Wind Gust Speed, m s-1)\nwvht (Wave Height, m)\ndpd (Wave Period, Dominant, s)\napd (Wave Period, Average, s)\nmwd (Wave Direction, degrees_true)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.graph", "", "", "public", "NEFSC Continuous Plankton Recorder", "A summary for the data\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ncruise\nsample\nlatitude (degrees_north)\nlongitude (degrees_east)\nphyto_color_indx (Phytoplankton Color Index)\nmarmap_tax_code (Marmap Taxonomic Code)\nmarmap_stage_code\nabundance (per 100 cubic meters)\nlife_stage\ntaxonomic_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/wocecpr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/wocecpr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/wocecpr/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "http://upwell.pfeg.noaa.gov/erddap/rss/wocecpr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=wocecpr&showErrors=false&email=", "NEFSC", "wocecpr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp.graph", "", "", "public", "NOAA NDBC SOS, 2006-present, sea_water_temperature", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_water_temperature data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWTemp/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWTemp&showErrors=false&email=", "NOAA NDBC", "ndbcSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind.graph", "", "", "public", "NOAA NDBC SOS, 2006-present, winds", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have winds data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwind_from_direction (degrees_true)\nwind_speed (m s-1)\nwind_speed_of_gust (m s-1)\nupward_air_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWind_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWind_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWind/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWind.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWind&showErrors=false&email=", "NOAA NDBC", "ndbcSosWind"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents.graph", "", "", "public", "NOAA NDBC SOS, 2007-present, currents", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have currents data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\nWARNING: Always check the quality_flags before using this data. A simple criterion is: only use a row of data if the first quality_flags value for the row (overall bin status) is 3 (good data/passed quality test). You can do this by appending &quality_flags=~\"3;.*\" to your request.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nbin (count)\ndirection_of_sea_water_velocity (degrees_true)\nsea_water_speed (cm/s)\nupward_sea_water_velocity (cm/s)\nerror_velocity (cm/s)\nplatform_orientation (degrees_true)\nplatform_pitch_angle (degree)\nplatform_roll_angle (degree)\nsea_water_temperature (Cel)\npct_good_3_beam (Percent Good 3 Beam, percent)\npct_good_4_beam (Percent Good 4 Beam, percent)\npct_rejected (Percent Rejected, percent)\npct_bad (Percent Bad, percent)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosCurrents_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosCurrents_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosCurrents/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosCurrents.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosCurrents&showErrors=false&email=", "NOAA NDBC", "ndbcSosCurrents"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity.graph", "", "", "public", "NOAA NDBC SOS, 2007-present, sea_water_practical_salinity", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_water_practical_salinity data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosSalinity/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosSalinity&showErrors=false&email=", "NOAA NDBC", "ndbcSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel.graph", "", "", "public", "NOAA NDBC SOS, 2008-present, sea_floor_depth_below_sea_surface", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_floor_depth_below_sea_surface data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\naveraging_interval (s)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ndbcSosWLevel/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/ndbcSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWLevel&showErrors=false&email=", "NOAA NDBC", "ndbcSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "", "public", "North Pacific High, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_43a8_6d6d_9052.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_43a8_6d6d_9052", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_43a8_6d6d_9052.graph", "", "", "public", "Northwestern Hawaiian Islands, Coral Reef Monitoring, Fish Surveys, Belt Transects (BLT)", "Papahanaumokuakea Marine National Monument (PMNM) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_43a8_6d6d_9052_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_43a8_6d6d_9052_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_43a8_6d6d_9052/index.json", "http://www.papahanaumokuakea.gov/research/welcome.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_43a8_6d6d_9052.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_43a8_6d6d_9052&showErrors=false&email=", "USDOC/NOAA/NOS/PMNM", "hawaii_soest_43a8_6d6d_9052"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_68f2_d17d_d413.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_68f2_d17d_d413", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_68f2_d17d_d413.graph", "", "", "public", "Northwestern Hawaiian Islands, Coral Reef Monitoring, Fish Surveys, Belt Transects (vBLT)", "Papahanaumokuakea Marine National Monument (PMNM) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_68f2_d17d_d413_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_68f2_d17d_d413_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_68f2_d17d_d413/index.json", "http://www.papahanaumokuakea.gov/research/welcome.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_68f2_d17d_d413.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_68f2_d17d_d413&showErrors=false&email=", "USDOC/NOAA/NOS/PMNM", "hawaii_soest_68f2_d17d_d413"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_ec1c_1aa4_ddaf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_ec1c_1aa4_ddaf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_ec1c_1aa4_ddaf.graph", "", "", "public", "Northwestern Hawaiian Islands, Coral Reef Monitoring, Fish Surveys, Stationary Point Counts (nSPC)", "Papahanaumokuakea Marine National Monument (PMNM) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_ec1c_1aa4_ddaf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_ec1c_1aa4_ddaf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_ec1c_1aa4_ddaf/index.json", "http://www.papahanaumokuakea.gov/research/welcome.html", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_ec1c_1aa4_ddaf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_ec1c_1aa4_ddaf&showErrors=false&email=", "USDOC/NOAA/NOS/PMNM", "hawaii_soest_ec1c_1aa4_ddaf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosCoral.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosCoral", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosCoral.graph", "", "", "public", "NWFSC Coral Data Collected off West Coast of US (1980-2005)", "This data contains the locations of some observations of\ncold-water/deep-sea corals off the west coast of the United States.\nRecords of coral catch originate from bottom trawl surveys conducted\nfrom 1980 to 2001 by the Alaska Fisheries Science Center (AFSC) and\n2001 to 2005 by the Northwest Fisheries Science Center (NWFSC).\nLocational information represent the vessel mid positions (for AFSC\nsurvey trawls) or \"best position\" (i.e., priority order: 1) gear\nmidpoint 2) vessel midpoint, 3) vessel start point, 4) vessel end\npoint, 5) station coordinates for NWFSC survey trawls) conducted as\npart of regular surveys of groundfish off the coasts of Washington,\nOregon and California by NOAA Fisheries. Only records where corals\nwere identified in the total catch are included. Each catch sample\nof coral was identified down to the most specific taxonomic level\npossible by the biologists onboard, therefore identification was\ndependent on their expertise. When positive identification was not\npossible, samples were sometimes archived for future identification\nby systematist experts. Data were compiled by the NWFSC, Fishery\nResource Analysis & Monitoring Division\n\nPurpose - Examination of the spatial and temporal distributions of\nobservations of cold-water/deep-sea corals off the west coast of the\nUnited States, including waters off the states of Washington, Oregon,\nand California. It is important to note that these records represent\nonly presence of corals in the area swept by the trawl gear. Since\nbottom trawls used during these surveys are not designed to sample\nepibenthic invertebrates, absence of corals in the catch does not\nnecessary mean they do not occupy the area swept by the trawl gear.\n\nData Credits - NOAA Fisheries, Alaska Fisheries Science Center,\nResource Assessment & Conservation Engineering Division (RACE) NOAA\nFisheries, Northwest Fisheries Science Center, Fishery Resource\nAnalysis & Monitoring Division (FRAM)\n\nContact: Curt Whitmire, NOAA NWFSC, Curt.Whitmire@noaa.gov\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosCoral_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosCoral_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosCoral/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Coral%201980-2005.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosCoral.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosCoral&showErrors=false&email=", "NOAA NWFSC", "nwioosCoral"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosGroundfish.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosGroundfish", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosGroundfish.graph", "", "", "public", "NWFSC Groundfish Data for U.S. West Coast (2003-2005)", "The data available for downloading is summarized data from the 2003-2005\nU.S. West Coast Bottom Trawl Survey (WCGTS) of Groundfish Resources off\nWashington, Oregon and California.\n\nThe Northwest Fisheries Science Center's Fishery Resource Analysis and\nMonitoring Division (FRAM) completed the sixth in an annual series of\ngroundfish bottom trawl surveys in 2003. The survey was conducted June\n24 to October 23, 2003 and targeted the commercial groundfish resources\ninhabiting depths of 55 to 1,280 meters [m], (30 - 700 fathoms [fm])\nfrom the area off Cape Flattery, Washington (latitude [lat.] 48\u00b010'N)\nto the U.S.-Mexican border (lat. 32\u00b030'N) using chartered West Coast\ncommercial trawlers. These ongoing series of annual surveys, conducted\nby FRAM since 1998, are designed to monitor long-term trends in\ndistribution and abundance of west coast groundfish, especially those\nspecies of management concern. The 2003 survey represents the first\nyear in which the depth range was expanded to include both the\ncontinental shelf (55 - 183 m) and continental slope (183 - 1,280 m)\narea and the first year in which a stratified-random sampling design\nwas adopted.\n\nIn 2003, a total of 574 successful tows were completed out of 643\nattempts. Simrad ITI net mensuration data, as well as global\npositioning system (GPS) navigation data and bottom contact sensor\ndata, used to document performance (e.g. bottom tending), were\nobtained for most tows.\n\nAn Aberdeen-style net with a small mesh (2\" stretched measure or less)\nliner in the codend (to retain smaller specimens) was used to sample\nfish biomass. Target duration of each tow was 15 minutes. Tow\nduration was the time between touchdown and lift-off of the trawl net\nfrom the seafloor based on readings from bottom contact sensors.\n\nCatches were sorted to species, aggregate or other appropriate\ntaxonomic level and then weighed using an electronic,\nmotion-compensated scale. A total of 517 species or families (fish\nand invertebrates) were identified within the survey area. Although\nbiological sampling effort continues to include Dover sole\n(Microstomus pacificus), shortspine thornyhead (Sebastolobus\nalascanus), longspine thornyhead (Sebastolobus altivelis), and\nsablefish (Anoplopoma fimbria), focus has increasingly shifted to\nencompass all groundfish species of management concern. Up to 100\nlength measurements, sex determinations, and individual weights\nand up to 25 age structures were collected per haul for these species.\n\ncdm_data_type = Trajectory\nVARIABLES:\nhaul_id (Haul Identifier)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosGroundfish_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosGroundfish_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosGroundfish/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Groundfish%20Survey%202003-2005.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosGroundfish.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosGroundfish&showErrors=false&email=", "NOAA NWFSC", "nwioosGroundfish"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishDetails.graph", "", "", "public", "NWFSC HUD Fish Species Details", "Habitat Use Database (HUD) Fish Species Details compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\nspecies_id\ncommon_name\nscientific_name\nlife_stage\nabsolute_min_depth (m)\npreferred_min_depth (m)\nabsolute_max_depth (m)\npreferred_max_depth (m)\nabsolute_min_temp (Absolute Min Temperature, degree_C)\npreferred_min_temp (Preferred Min Temperature, degree_C)\nabsolute_max_temp (Absolute Max Temperature, degree_C)\npreferred_max_temp (Preferred Max Temperature, degree_C)\nabsolute_min_latitude (degrees_north)\npreferred_min_latitude (degrees_north)\nabsolute_max_latitude (degrees_north)\npreferred_max_latitude (degrees_north)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudFishDetails/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Fish%20Species%20Details.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudFishDetails.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudFishDetails&showErrors=false&email=", "NOAA NWFSC", "nwioosHudFishDetails"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishOccur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudFishOccur", "", "", "", "public", "NWFSC HUD Fish Species Occurrence", "Habitat Use Database (HUD) Fish Species Occurrence data compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\ncommon_name\nscientific_name\nlife_stage\ngender\nhabitat_association\nseason\nlevel_1_habitat\nlevel_2_habitat\nlevel_3_habitat\nlevel_4_habitat\nactivity\nactivity_association\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudFishOccur/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Fish%20Species%20Occurrence.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudFishOccur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudFishOccur&showErrors=false&email=", "NOAA NWFSC", "nwioosHudFishOccur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudPredPrey.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudPredPrey", "", "", "", "public", "NWFSC HUD Predators and Prey", "Habitat Use Database (HUD) Predators and Prey data compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\necoregion\nseason\nlevel_1_habitat\nlevel_2_habitat\nlevel_3_habitat\nlevel_4_habitat\nscientific_name\ngender\nlife_stage\nprey_name\nprey_gender\nprey_life_stage\npredator_name\npredator_gender\npredator_life_stage\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudPredPrey/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20Predators%20and%20Prey.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudPredPrey.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudPredPrey&showErrors=false&email=", "NOAA NWFSC", "nwioosHudPredPrey"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudRef.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosHudRef", "", "", "", "public", "NWFSC HUD References", "Habitat Use Database (HUD) References compiled by the Northwest Fisheries Science Center (NWFSC), Fishery Resource Analysis & Monitoring Division. This database details marine habitat preferences for fish species covered under Fisheries Management Plans (FMPs).\n\ncdm_data_type = Other\nVARIABLES:\nseason\nlevel_1_habitat\nlevel_2_habitat\nlevel_3_habitat\nlevel_4_habitat\nscientific_name\ngender\nlife_stage\nreference_to\nreference_type\nauthors\npublication_year\nreference_name\neditor\npublication_name\npublisher_city\npublisher\nvolume\nnumber\nreferenced_pages\nthesis_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosHudRef/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/HUD%20References.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosHudRef.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosHudRef&showErrors=false&email=", "NOAA NWFSC", "nwioosHudRef"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsFixed2002.graph", "", "", "public", "NWFSC Observer Fixed Gear Data, off West Coast of US, 2002-2006", "Observer Fixed Gear Data collected during 2002-2006 off West Coast of US.\n\nThis data product originates from data collected by fishery observers in the West Coast Groundfish Observer Program (WCGOP), Fishery Resource Analysis and Monitoring Division (FRAM) at the Northwest Fisheries Science Center, NOAA Fisheries. The WCGOP's goal is to improve total catch estimates by collecting information on the discarded catch (fish returned overboard at-sea) of west coast groundfish species. All data were collected according to standard protocols and data quality control established by the WCGOP. The observed portion of overall catch or landings in a fishery varies by coverage level. Since all fishing operations are not observed, neither the maps nor the data can be used to characterize the fishery completely. This is especially true for rarely-occurring species and when observed sample sizes are small. We urge caution when utilizing these data due to the complexity of groundfish management and fleet harvest dynamics. Grid cells representing less than 3 vessels and less than 10 hauls or sets are not shown due to confidentiality and to ensure adequate sample size. In the limited-entry fixed gear fishery, species discard rates (species discard weight / groundfish total catch (discard + retained weight)) are categorized by approximate quartile ranges and geo-referenced to 20 x 20 kilometer grid cells. The observed fixed gear set location (start location of fishing) was used to allocate data to 20 x 20 kilometer grid cells for calculation. Sixteen species were represented based on combined observer data from 2002-2006. The species included in this data product are dover sole (Microstomus pacificus), sablefish (Anoplopoma fimbria), longspine thornyhead (Sebastolobus altivelis), shortspine thornyhead (Sebastolobus alascanus), lingcod (Ophiodon elongatus), arrowtooth flounder (Atheresthes stomias), petrale sole (Eopsetta jordani), and the rockfishes (genus Sebastes), darkblotched rockfish (S. crameri), Pacific ocean perch (S. alutus), chilipepper (S. goodei), cowcod (S. levis), bocaccio (S. paucispinis), canary rockfish (S. pinniger), widow rockfish (S. entomelas), yelloweye rockfish (S. ruberrimus), and yellowtail rockfish (S. flavidus).\n\nPurpose: This data product was developed to provide basic groundfish discard distribution information for a wide variety of audiences. The West Coast Groundfish Observer Program conducts sampling of groundfish discarded by commercial fisheries along the entire continental U.S. West Coast. The seventeen species included in this data product are among those of most interest to the fisheries management and commercial fishing communities.\n\nData Credits: NOAA Fisheries, Northwest Fisheries Science Center, Fishery Resource Analysis & Monitoring Division, West Coast Groundfish Observer Program, Seattle, WA.\n\ncdm_data_type = Other\nVARIABLES:\nlongitude (Longitude (Center of 20x20 km Grid Cell), degrees_east)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosObsFixed2002_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosObsFixed2002_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosObsFixed2002/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Observer%20Fixed%20Gear%202002%202006.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosObsFixed2002.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosObsFixed2002&showErrors=false&email=", "NOAA NWFSC", "nwioosObsFixed2002"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nwioosObsTrawl2002.graph", "", "", "public", "NWFSC Observer Trawl Data, off West Coast of US, 2002-2006", "Observer Trawl Data collected during 2002-2006 off West Coast of US.\n\nThis data product originates from data collected by fishery observers in the West Coast Groundfish Observer Program (WCGOP), Fishery Resource Analysis and Monitoring Division (FRAM) at the Northwest Fisheries Science Center, NOAA Fisheries. The WCGOP's goal is to improve total catch estimates by collecting information on the discarded catch (fish returned overboard at-sea) of west coast groundfish species. All data were collected according to standard protocols and data quality control established by the WCGOP. The observed portion of overall catch or landings in a fishery varies by coverage level. Since all fishing operations are not observed, neither the maps nor the data can be used to characterize the fishery completely. This is especially true for rarely-occurring species and when observed sample sizes are small. We urge caution when utilizing these data due to the complexity of groundfish management and fleet harvest dynamics. Grid cells representing less than 3 vessels and less than 10 hauls or sets are not shown due to confidentiality and to ensure adequate sample size. In the limited-entry groundfish bottom trawl fishery, species discard rates (species discard weight / groundfish total catch (discard + retained weight)) are categorized by approximate quartile ranges and geo-referenced to 10 x 10 kilometer grid cells. The observed trawl towline (line drawn from the start to end location of a trawl tow) was used to allocate data to 10 x 10 kilometer grid cells for calculation. Seventeen species were represented based on combined observer data from 2002-2006. The species included in this data product are dover sole (Microstomus pacificus), sablefish (Anoplopoma fimbria), longspine thornyhead (Sebastolobus altivelis), shortspine thornyhead (Sebastolobus alascanus), lingcod (Ophiodon elongatus), arrowtooth flounder (Atheresthes stomias), English sole (Parophrys vetulus), petrale sole (Eopsetta jordani), and the rockfishes (genus Sebastes), darkblotched rockfish (S. crameri), Pacific ocean perch (S. alutus), chilipepper (S. goodei), cowcod (S. levis), bocaccio (S. paucispinis), canary rockfish (S. pinniger), widow rockfish (S. entomelas), yelloweye rockfish (S. ruberrimus), and yellowtail rockfish (S. flavidus).\n\nPurpose: This data product was developed to provide basic groundfish discard distribution information for a wide variety of audiences. The West Coast Groundfish Observer Program conducts sampling of groundfish discarded by commercial fisheries along the entire continental U.S. West Coast. The seventeen species included in this data product are among those of most interest to the fisheries management and commercial fishing communities.\n\nData Credits: NOAA Fisheries, Northwest Fisheries Science Center, Fishery Resource Analysis & Monitoring Division, West Coast Groundfish Observer Program, Seattle, WA.\n\ncdm_data_type = Other\nVARIABLES:\nlongitude (Longitude (Center of 10x10 km Grid Cell), degrees_east)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nwioosObsTrawl2002_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nwioosObsTrawl2002_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nwioosObsTrawl2002/index.json", "http://nwioos.coas.oregonstate.edu:8080/dods/drds/Observer%20Trawl%202002%202006.info", "http://upwell.pfeg.noaa.gov/erddap/rss/nwioosObsTrawl2002.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nwioosObsTrawl2002&showErrors=false&email=", "NOAA NWFSC", "nwioosObsTrawl2002"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/keo_121f_a3d0_3c0a.graph", "", "", "public", "OceanSITES KEO daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from the Kuroshio Extension Observatory (KEO) site nominally at 32.3N,144.6E, in the Kuroshio Extension recirculation gyre. The actual anchor position is different for each deployment, and this is a slack line mooring with a watch circle radius greater than 5km. For users performing inter comparisons, it may be important to use the actual position of the buoy from the Global Positioning System (GPS) data. This mooring has been instrumented with upper ocean and surface sensors since June 2004. Included in this file are sea temperatures and pressures from the surface to 525m depth, salinity and density (sigma-theta) from the surface to 400m depth, sea currents to 35m depth, a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and barometric pressure. Note that because this is a slack-line mooring, subsurface sensor depths vary with time, and hence one must use the observed and calculated water pressures to compute sensor depths. Also, due to the relatively large scope and different anchor positions, the positions of the buoy at the surface are included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndeptemp (Depth of each measurement, meters)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepth (m)\nPRES (water pressure, observed and calculated, decibar)\nPRES_QC (quality flag)\nPRES_DM (method of data processing)\n... (53 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/keo_121f_a3d0_3c0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/keo_121f_a3d0_3c0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/keo_121f_a3d0_3c0a/index.json", "https://www.pmel.noaa.gov/ocs/", "http://upwell.pfeg.noaa.gov/erddap/rss/keo_121f_a3d0_3c0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=keo_121f_a3d0_3c0a&showErrors=false&email=", "NOAA/PMEL", "keo_121f_a3d0_3c0a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/papa_8bb5_dcd5_981f.graph", "", "", "public", "OceanSITES PAPA daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from station Papa at 50N,145W in the North Pacific. This taut-line mooring has been instrumented with upper ocean and surface sensors since June 2007. Included in this file are sea temperatures from the surface to 300 meters depth, salinity and density (sigma-theta) from the surface to 200m depth, sea currents at 5m and 35m depth, acoustic doppler profiles of zonal and meridional ocean current to from 30 to 158 meters depth, and a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and barometric pressure. Time series of buoy latitude and longitude are included as well.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each measurement, m)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepcur (Depth of each measurement, m)\nUCUR\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\ndeppsal (Depth of each measurement, m)\n... (43 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/papa_8bb5_dcd5_981f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/papa_8bb5_dcd5_981f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/papa_8bb5_dcd5_981f/index.json", "https://www.pmel.noaa.gov/ocs/", "http://upwell.pfeg.noaa.gov/erddap/rss/papa_8bb5_dcd5_981f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=papa_8bb5_dcd5_981f&showErrors=false&email=", "NOAA/PMEL", "papa_8bb5_dcd5_981f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pirata_5922_7dcd_7219.graph", "", "", "public", "OceanSITES PIRATA daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from one of the Tropical Atmosphere/Ocean (TAO)/TRITON, Pilot Research Moored Array in the Tropical Atlantic (PIRATA), or Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) mooring sites in the tropical oceans. Included in this file are sea temperatures from the surface to 500 meters at most sites and deeper at others, salinity and potential density (sigma-theta) at the sea surface and deeper at some sites, sea currents at 10m depth and deeper at some sites, a variety of surface observations including winds, air temperature, relative humidity, shortwave solar radiation, longwave radiation, rain rate, barometric pressure. Buoy positions are also included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each TEMP measurement, m)\ndepcur (Depth of each current measurement)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndeppsal (Depth of each Salinity measurement)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\nPSAL (sea_water_practical_salinity)\nPSAL_QC\nPSAL_DM (method of data processing)\ndepden (Depth of each density measurement)\nheightwind (altitude, meters)\nUWND (zonal wind)\nVWND (meridional wind, m/s)\n... (44 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pirata_5922_7dcd_7219_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pirata_5922_7dcd_7219_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pirata_5922_7dcd_7219/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/pirata_5922_7dcd_7219.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pirata_5922_7dcd_7219&showErrors=false&email=", "NOAA/PMEL", "pirata_5922_7dcd_7219"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/tao_6eb4_e773_2fbc.graph", "", "", "public", "OceanSITES TAO daily in-situ data", "This file contains daily real-time and delayed-mode in-situ data from one of the flux reference mooring sites in the tropical oceans. Included in this file are sea temperatures from the surface to 500m depth, salinity and density (sigma-theta) from the surface to typically 120m depth, sea currents typically at 10m depth and at some sites deeper, a variety of surface observations for net air-sea fluxes of heat, moisture, and momentum including winds, solar and longwave radiation, rain, air temperature, relative humidity, and sea level airpressure. Buoy positions are also included as time series of latitude and longitude.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each measurement, m)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\nTEMP_DM (method of data processing)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\n... (42 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/tao_6eb4_e773_2fbc_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/tao_6eb4_e773_2fbc_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/tao_6eb4_e773_2fbc/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/tao_6eb4_e773_2fbc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=tao_6eb4_e773_2fbc&showErrors=false&email=", "NOAA/PMEL", "tao_6eb4_e773_2fbc"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.graph", "", "", "public", "OSMC Argo Profile data", "OSMC Argo Profile data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\norganization_name\ncountry_name\nplatform_type_name\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nparameter_name\ndaily_obs_count\nobservation_depth\nobservation_value\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_PROFILERS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_PROFILERS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_PROFILERS/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_PROFILERS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_PROFILERS&showErrors=false&email=", "OSMC", "OSMC_PROFILERS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.graph", "", "", "public", "OSMC normalized observations from GTS", "OSMC normalized In-situ Real time GTS data\n\ncdm_data_type = Point\nVARIABLES:\nPLATFORM_CODE (Station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform\nparameter\nOBSERVATION_VALUE\nOBSERVATION_DEPTH\nCOUNTRY_NAME\norganization_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_Points_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_Points_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_Points/index.json", "https://www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_Points.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_Points&showErrors=false&email=", "OSMC", "OSMC_Points"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_417d_33ad_dead.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_417d_33ad_dead", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_417d_33ad_dead.graph", "", "", "public", "Pacific Island Network Marine Fish Monitoring Dataset - Surveys", "National Park Service Fish Stock Data\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\nhigherInstitutionCode\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\nisland\n... (67 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_417d_33ad_dead_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_417d_33ad_dead_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_417d_33ad_dead/index.json", "http://science.nature.nps.gov/im/units/pacn/monitoring/vs_fish_marine.cfm", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_417d_33ad_dead.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_417d_33ad_dead&showErrors=false&email=", "USDOI/NPS/NRSS/IMD/PACN", "hawaii_soest_417d_33ad_dead"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_31bb_eee9_ef0a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_31bb_eee9_ef0a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_31bb_eee9_ef0a.graph", "", "", "public", "Pacific Island Network Marine Fish Monitoring Dataset - Transects", "The benthic marine community in the Pacific Island Network (PACN) is a complex ecologic system and a diverse taxonomic environment, including algae and corals and other invertebrates. Reef-building corals are the primary architectural organism and are sensitive to environmental degradation; therefore, they are a good indicator of overall health for nearshore marine ecosystems. Primary stressors to coral reefs include disease, bleaching, sedimentation, eutrophication, storms, and global climate change. The United Nations Environment Programme (UNEP) has proposed using coral reefs as a worldwide indicator ecosystem for global climate change (Spalding et al. 2004). For these reasons, the PACN has chosen to implement long term monitoring of benthic marine communities. Benthic marine communities is most closely linked with marine fish, and monitoring efforts will be conducted at the same time and location to maximize data value\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\n... (58 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_31bb_eee9_ef0a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_31bb_eee9_ef0a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_31bb_eee9_ef0a/index.json", "http://science.nature.nps.gov/im/units/pacn/monitoring/vs_fish_marine.cfm", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_31bb_eee9_ef0a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_31bb_eee9_ef0a&showErrors=false&email=", "USDOI/NPS/NRSS/IMD/PACN", "hawaii_soest_31bb_eee9_ef0a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5673_517d_3b8c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5673_517d_3b8c.graph", "", "", "public", "PacIOOS Nearshore Sensor 01 (NS01): Waikiki Yacht Club, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS01 is located at the Waikiki Yacht Club and is fixed to the bridge pier. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to a piling ~0.5m below mean sea level.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5673_517d_3b8c_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5673_517d_3b8c_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5673_517d_3b8c/index.json", "https://www.pacioos.hawaii.edu/water/sensor-waikiki/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5673_517d_3b8c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5673_517d_3b8c&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5673_517d_3b8c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_1273_fad1_0404", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_1273_fad1_0404.graph", "", "", "public", "PacIOOS Nearshore Sensor 02 (NS02): Hawaii Yacht Club, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS02 is located at a floating dock off the Hawaii Yacht Club. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to a floating dock just below the ocean surface.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_1273_fad1_0404_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_1273_fad1_0404_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_1273_fad1_0404/index.json", "https://www.pacioos.hawaii.edu/water/sensor-hawaiiyachtclub/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_1273_fad1_0404.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_1273_fad1_0404&showErrors=false&email=", "University of Hawaii", "hawaii_soest_1273_fad1_0404"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d787_1c35_208d", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d787_1c35_208d.graph", "", "", "public", "PacIOOS Nearshore Sensor 03 (NS03): Hilton Hawaiian Pier, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS03 is located at the Atlantis Pier off the Hilton Hawaiian Village. The instrument is a Sea-Bird Electronics model 37SMP. The package is located at approximately 2.0 meters below mean sea level.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d787_1c35_208d_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d787_1c35_208d_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d787_1c35_208d/index.json", "https://www.pacioos.hawaii.edu/water/sensor-atlantis/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d787_1c35_208d.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d787_1c35_208d&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d787_1c35_208d"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_c9f9_c232_1fe9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_c9f9_c232_1fe9.graph", "", "", "public", "PacIOOS Nearshore Sensor 04 (NS04): Waikiki Aquarium, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS04 is located just off the Waikiki Aquarium and is fixed to the pier. The instrument is a Sea-Bird Electronics model 37SMP. The package is mounted on the bottom in approximately 2.0 to 2.5 meters ocean depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_c9f9_c232_1fe9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_c9f9_c232_1fe9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_c9f9_c232_1fe9/index.json", "https://www.pacioos.hawaii.edu/water/sensor-waikikiaquarium/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_c9f9_c232_1fe9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_c9f9_c232_1fe9&showErrors=false&email=", "University of Hawaii", "hawaii_soest_c9f9_c232_1fe9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b55f_a8f2_ad70", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b55f_a8f2_ad70.graph", "", "", "public", "PacIOOS Nearshore Sensor 05 (NS05): Pago Pago, American Samoa", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS05 is located at the Department of Marine and Wildlife Resources (DMWR) dock in Pago Pago Harbor, American Samoa and is mounted to the bottom in about 2 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_b55f_a8f2_ad70_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_b55f_a8f2_ad70_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_b55f_a8f2_ad70/index.json", "https://www.pacioos.hawaii.edu/water/sensor-pagopago/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_b55f_a8f2_ad70.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_b55f_a8f2_ad70&showErrors=false&email=", "University of Hawaii", "hawaii_soest_b55f_a8f2_ad70"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f59_c29c_d820", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8f59_c29c_d820.graph", "", "", "public", "PacIOOS Nearshore Sensor 06 (NS06): Pohnpei, Micronesia", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS06 is located at the dock in Pohnpei lagoon and is mounted to the bottom in about 1 meter of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8f59_c29c_d820_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8f59_c29c_d820_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8f59_c29c_d820/index.json", "https://www.pacioos.hawaii.edu/water/sensor-pohnpei/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8f59_c29c_d820.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8f59_c29c_d820&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8f59_c29c_d820"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_77b7_f5dd_cda3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_77b7_f5dd_cda3.graph", "", "", "public", "PacIOOS Nearshore Sensor 07 (NS07): Majuro, Marshall Islands", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS07 is located at the Uliga dock in Majuro, Republic of the Marshall Islands and is mounted to the bottom in about 2 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_77b7_f5dd_cda3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_77b7_f5dd_cda3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_77b7_f5dd_cda3/index.json", "https://www.pacioos.hawaii.edu/water/sensor-majuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_77b7_f5dd_cda3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_77b7_f5dd_cda3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_77b7_f5dd_cda3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e3c0_a956_de01", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_e3c0_a956_de01.graph", "", "", "public", "PacIOOS Nearshore Sensor 08 (NS08): Koror, Palau", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS08 is located at the Palau International Coral Reef Center (PICRC) dock in Koror, Palau and is mounted to the bottom in about 3.5 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_e3c0_a956_de01_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_e3c0_a956_de01_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_e3c0_a956_de01/index.json", "https://www.pacioos.hawaii.edu/water/sensor-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_e3c0_a956_de01.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_e3c0_a956_de01&showErrors=false&email=", "University of Hawaii", "hawaii_soest_e3c0_a956_de01"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0113_b43d_e024", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_0113_b43d_e024.graph", "", "", "public", "PacIOOS Nearshore Sensor 09 (NS09): Cetti Bay, Guam", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS09 is approximately 70 meters offshore in Cetti Bay, Guam and is mounted to the bottom in about 3 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_0113_b43d_e024_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_0113_b43d_e024_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_0113_b43d_e024/index.json", "https://www.pacioos.hawaii.edu/water/sensor-cetti/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_0113_b43d_e024.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_0113_b43d_e024&showErrors=false&email=", "University of Hawaii", "hawaii_soest_0113_b43d_e024"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f25e_31a1_16f1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f25e_31a1_16f1.graph", "", "", "public", "PacIOOS Nearshore Sensor 10 (NS10): Maunalua Bay, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS10 is located off the old pier in Maunalua Bay in Hawaii Kai. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to the pier at about 2m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f25e_31a1_16f1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f25e_31a1_16f1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f25e_31a1_16f1/index.json", "https://www.pacioos.hawaii.edu/water/sensor-maunalua/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f25e_31a1_16f1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f25e_31a1_16f1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f25e_31a1_16f1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8668_b202_8233", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_8668_b202_8233.graph", "", "", "public", "PacIOOS Nearshore Sensor 11 (NS11): Saipan, CNMI", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS11 is approximately 20 meters offshore of Puntan Babpot near the golf course at Laolao Bay on the east shore of Saipan in the Commonwealth of the Northern Mariana Islands (CNMI) and is mounted to the bottom in about 3 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_8668_b202_8233_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_8668_b202_8233_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_8668_b202_8233/index.json", "https://www.pacioos.hawaii.edu/water/sensor-saipan/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_8668_b202_8233.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_8668_b202_8233&showErrors=false&email=", "University of Hawaii", "hawaii_soest_8668_b202_8233"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b10c_af2d_3fe8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_b10c_af2d_3fe8.graph", "", "", "public", "PacIOOS Nearshore Sensor 12 (NS12): Kalama Beach Park, Maui, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS12 is located at Kalama Beach Park in Kihei, Maui. The instrument is a 6600V2-4 Multi-parameter water quality logger. The package is fixed to a mooring at about 1.5m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\nwater_depth (Sensor depth, m)\nph (1)\noxygen (Dissolved oxygen concentration, kg m-3)\noxygen_saturation (Dissolved oxygen saturation, 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_b10c_af2d_3fe8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_b10c_af2d_3fe8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_b10c_af2d_3fe8/index.json", "https://www.pacioos.hawaii.edu/water/sensor-kalama/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_b10c_af2d_3fe8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_b10c_af2d_3fe8&showErrors=false&email=", "University of Hawaii", "hawaii_soest_b10c_af2d_3fe8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_026f_4c1d_55e5", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_026f_4c1d_55e5.graph", "", "", "public", "PacIOOS Nearshore Sensor 13 (NS13): Kahului, Maui, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS13 is located in Kahului Harbor in Maui. The instrument is a 6600V2-4 Multi-parameter water quality logger. The package is fixed to a piling at about 1.5m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\nwater_depth (Sensor depth (processed), m)\nwater_depth_raw (Sensor depth (raw), m)\nph (pH (processed), 1)\nph_raw (pH (raw), 1)\noxygen (Dissolved oxygen concentration (processed), kg m-3)\noxygen_raw (Dissolved oxygen concentration (raw), kg m-3)\noxygen_saturation (Dissolved oxygen saturation (processed), 1)\noxygen_saturation_raw (Dissolved oxygen saturation (raw), 1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_026f_4c1d_55e5_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_026f_4c1d_55e5_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_026f_4c1d_55e5/index.json", "https://www.pacioos.hawaii.edu/water/sensor-kahului/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_026f_4c1d_55e5.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_026f_4c1d_55e5&showErrors=false&email=", "University of Hawaii", "hawaii_soest_026f_4c1d_55e5"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_191e_fe37_f9a0", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_191e_fe37_f9a0.graph", "", "", "public", "PacIOOS Nearshore Sensor 15 (NS15): Pago Bay, Guam", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations. NS15 is in Pago Bay, Guam and is mounted to the bottom in about 1.5 meters of water. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. This station was decommissioned and relocated after 2018 in order to minimize burial of the sensor by silt; see NS17 for data at the new mooring location.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Celsius)\nconductivity (S m-1)\nturbidity (NTU)\nchlorophyll (kg m-3)\nsalinity (1e-3)\npressure (dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_191e_fe37_f9a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_191e_fe37_f9a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_191e_fe37_f9a0/index.json", "https://www.pacioos.hawaii.edu/water/sensor-pago/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_191e_fe37_f9a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_191e_fe37_f9a0&showErrors=false&email=", "University of Hawaii", "hawaii_soest_191e_fe37_f9a0"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d5ba_831c_443a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d5ba_831c_443a.graph", "", "", "public", "PacIOOS Nearshore Sensor 16 (NS16): Wailupe, Oahu, Hawaii", "The nearshore sensors are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed point locations along the south shore of Oahu. NS16 is located off Wailupe in Maunalua Bay in Aina Haina. The instrument is a Sea-Bird Electronics model 16+ V2 coupled with a WET Labs ECO-FLNTUS combination sensor. The package is fixed to the pier at about 1m depth.\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (depth below mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (Temperature (processed), Celsius)\ntemperature_raw (Temperature (raw), Celsius)\nconductivity (Conductivity (processed), S m-1)\nconductivity_raw (Conductivity (raw), S m-1)\nturbidity (Turbidity (processed), NTU)\nturbidity_raw (Turbidity (raw), NTU)\nchlorophyll (Chlorophyll (processed), kg m-3)\nchlorophyll_raw (Chlorophyll (raw), kg m-3)\nsalinity (Salinity (processed), 1e-3)\nsalinity_raw (Salinity (raw), 1e-3)\npressure (Pressure (processed), dbar)\npressure_raw (Pressure (raw), dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d5ba_831c_443a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d5ba_831c_443a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d5ba_831c_443a/index.json", "https://www.pacioos.hawaii.edu/water/sensor-wailupe/", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d5ba_831c_443a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d5ba_831c_443a&showErrors=false&email=", "University of Hawaii", "hawaii_soest_d5ba_831c_443a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_093e_cd55_43a3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_093e_cd55_43a3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_093e_cd55_43a3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_093e_cd55_43a3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_093e_cd55_43a3/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_093e_cd55_43a3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_093e_cd55_43a3&showErrors=false&email=", "University of Hawaii", "hawaii_soest_093e_cd55_43a3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc92_7d24_0627", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_cc92_7d24_0627.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_cc92_7d24_0627_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_cc92_7d24_0627_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_cc92_7d24_0627/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_cc92_7d24_0627.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_cc92_7d24_0627&showErrors=false&email=", "University of Hawaii", "hawaii_soest_cc92_7d24_0627"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f289_8170_ec45", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_f289_8170_ec45.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_f289_8170_ec45_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_f289_8170_ec45_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_f289_8170_ec45/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_f289_8170_ec45.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_f289_8170_ec45&showErrors=false&email=", "University of Hawaii", "hawaii_soest_f289_8170_ec45"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_36dd_cf4c_73a6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_36dd_cf4c_73a6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_36dd_cf4c_73a6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_36dd_cf4c_73a6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_36dd_cf4c_73a6/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_36dd_cf4c_73a6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_36dd_cf4c_73a6&showErrors=false&email=", "University of Hawaii", "hawaii_soest_36dd_cf4c_73a6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5359_8678_82b1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_5359_8678_82b1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_5359_8678_82b1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_5359_8678_82b1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_5359_8678_82b1/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_5359_8678_82b1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_5359_8678_82b1&showErrors=false&email=", "University of Hawaii", "hawaii_soest_5359_8678_82b1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_92c1_a2b0_55fb", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_92c1_a2b0_55fb.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_92c1_a2b0_55fb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_92c1_a2b0_55fb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_92c1_a2b0_55fb/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_92c1_a2b0_55fb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_92c1_a2b0_55fb&showErrors=false&email=", "University of Hawaii", "hawaii_soest_92c1_a2b0_55fb"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_75b3_e52c_26a2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_75b3_e52c_26a2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_75b3_e52c_26a2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_75b3_e52c_26a2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_75b3_e52c_26a2/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_75b3_e52c_26a2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_75b3_e52c_26a2&showErrors=false&email=", "University of Hawaii", "hawaii_soest_75b3_e52c_26a2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_a826_8633_00bb", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_a826_8633_00bb.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_a826_8633_00bb_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_a826_8633_00bb_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_a826_8633_00bb/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_a826_8633_00bb.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_a826_8633_00bb&showErrors=false&email=", "University of Hawaii", "hawaii_soest_a826_8633_00bb"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_076a_87b3_40a0", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_076a_87b3_40a0.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_076a_87b3_40a0_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_076a_87b3_40a0_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_076a_87b3_40a0/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_076a_87b3_40a0.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_076a_87b3_40a0&showErrors=false&email=", "University of Hawaii", "hawaii_soest_076a_87b3_40a0"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_4c82_4728_010b", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_4c82_4728_010b.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_4c82_4728_010b_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_4c82_4728_010b_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_4c82_4728_010b/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_4c82_4728_010b.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_4c82_4728_010b&showErrors=false&email=", "University of Hawaii", "hawaii_soest_4c82_4728_010b"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_856b_7e66_8c3f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_856b_7e66_8c3f.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_856b_7e66_8c3f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_856b_7e66_8c3f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_856b_7e66_8c3f/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_856b_7e66_8c3f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_856b_7e66_8c3f&showErrors=false&email=", "University of Hawaii", "hawaii_soest_856b_7e66_8c3f"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2f21_4063_cfec", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_2f21_4063_cfec.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_2f21_4063_cfec_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_2f21_4063_cfec_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_2f21_4063_cfec/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_2f21_4063_cfec.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_2f21_4063_cfec&showErrors=false&email=", "University of Hawaii", "hawaii_soest_2f21_4063_cfec"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "http://www.ogcnetwork.net/node/344", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/PRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2017, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2017, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2017, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_88cd_7dfb_ecfa.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_88cd_7dfb_ecfa", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_88cd_7dfb_ecfa.graph", "", "", "public", "US Pacific Islands, Coral Reef Monitoring, Fish Surveys, Belt Transects (BLT)", "Coral Reef Ecosytem Division (CRED) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\n... (50 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_88cd_7dfb_ecfa_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_88cd_7dfb_ecfa_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_88cd_7dfb_ecfa/index.json", "https://www.pifsc.noaa.gov/cred/fish.php", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_88cd_7dfb_ecfa.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_88cd_7dfb_ecfa&showErrors=false&email=", "USDOC/NOAA/NMFS/PIFSC/CRED", "hawaii_soest_88cd_7dfb_ecfa"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7448_8dd2_e529.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7448_8dd2_e529", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_7448_8dd2_e529.graph", "", "", "public", "US Pacific Islands, Coral Reef Monitoring, Fish Surveys, Stationary Point Counts (nSPC)", "Coral Reef Ecosytem Division (CRED) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\n... (49 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_7448_8dd2_e529_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_7448_8dd2_e529_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_7448_8dd2_e529/index.json", "https://www.pifsc.noaa.gov/cred/fish.php", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_7448_8dd2_e529.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_7448_8dd2_e529&showErrors=false&email=", "USDOC/NOAA/NMFS/PIFSC/CRED", "hawaii_soest_7448_8dd2_e529"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_6dcb_e681_3eab.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_6dcb_e681_3eab", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_6dcb_e681_3eab.graph", "", "", "public", "US Pacific Islands, Coral Reef Monitoring, Fish Surveys, Stationary Point Counts (SPC)", "Coral Reef Ecosytem Division (CRED) Fish Stock Data from Rapid Ecological Assessments (REAs)\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nminimumDepthInMeters\nmaximumDepthInMeters\nislandGroup\nvernacularName\nscientificName\noid\nmodified\ndatasetID\ndatasetName\ninstitutionCode\ncollectionCode\ninstitutionID\ncollectionID\nownerInstitutionCode\nbasisOfRecord\ncatalogNumber\ntaxonRank\nverbatimCoordinates\nverbatimSRS\ngeodeticDatum\ncoordinateUncertaintyInMeters\ngeoreferencedBy\ngeoreferenceProtocol\nwaterBody\n... (49 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_6dcb_e681_3eab_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_6dcb_e681_3eab_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_6dcb_e681_3eab/index.json", "https://www.pifsc.noaa.gov/cred/fish.php", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_6dcb_e681_3eab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_6dcb_e681_3eab&showErrors=false&email=", "USDOC/NOAA/NMFS/PIFSC/CRED", "hawaii_soest_6dcb_e681_3eab"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d98d_1d43_fef7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hawaii_soest_d98d_1d43_fef7.graph", "", "", "public", "Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\naltitude (height above mean sea level, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_name\nair_temperature (Mean air temperature, Celsius)\nair_temperature_std (Standard deviation of air temperature, Celsius)\nair_temperature_max (Maximum air temperature, Celsius)\nair_temperature_max_time (Time of maximum air temperature, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (Minimum air temperature, Celsius)\nair_temperature_min_time (Time of minimum air temperature, seconds since 1970-01-01T00:00:00Z)\nwind_speed (Mean wind speed, m s-1)\nwind_speed_std (Standard deviation wind speed, m s-1)\nwind_speed_max (Maximum wind speed, m s-1)\nwind_speed_max_time (Time of maximum wind speed, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (Minimum wind speed, m s-1)\nwind_speed_min_time (Time of minimum wind speed, seconds since 1970-01-01T00:00:00Z)\nwind_from_direction (degrees)\nwind_from_direction_std (Standard deviation of wind direction, degrees)\nrainfall_amount (Rainfall total, mm)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hawaii_soest_d98d_1d43_fef7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hawaii_soest_d98d_1d43_fef7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hawaii_soest_d98d_1d43_fef7/index.json", "http://www.coralreefresearchfoundation.org", "http://upwell.pfeg.noaa.gov/erddap/rss/hawaii_soest_d98d_1d43_fef7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hawaii_soest_d98d_1d43_fef7&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "hawaii_soest_d98d_1d43_fef7"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whoiSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whoiSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whoiSos.graph", "", "", "public", "WHOI MVCO 12m Node ADCP SOS, 2008-present", "Wave observations from the 12m node ADCP in the Martha's Vineyard Coastal Observatory (MVCO) in the northwest Atlantic in coastal waters of North America. Extensive, detailed documentation is available in these .xml files:\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/MVCO_ObservingSystem.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/ADCP_System.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/MVCO_Workhorse_1200.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/RDI_Workhorse_1200.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Pressure_Obs_Process.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Velocity_Obs_Process.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Pressure_QC_Chain.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/Velocity_QC_Chain.xml\nhttp://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/PUV_Analysis.xml\n\nFor this dataset, if you want the most recent data, you MUST change the default end time constraint to be a time that is slightly (a few seconds or a few minutes) in the past. The source data server does not allow end time constraints that are after the exact current time.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\npressure (Mean Sea Water Pressure, cm)\nwaveHeightFromPressure (Wave Height from Pressure, cm)\nwavePeriodFromPressure (Wave Period from Pressure, s)\nloCutoffFrequency (Low Cutoff Frequency, Hz)\nhiCutoffFrequency (High Cutoff Frequency, Hz)\nwaveHeightAll (Wave Height All, cm)\nswell (cm)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whoiSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whoiSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whoiSos/index.json", "https://www.whoi.edu/mvco", "http://upwell.pfeg.noaa.gov/erddap/rss/whoiSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whoiSos&showErrors=false&email=", "Woods Hole Oceanographic Institution", "whoiSos"] + ] + } + } + recorded_at: 2019-07-19 19:13:11 GMT + recorded_with: vcr/0.2.6, webmockr/0.3.4 diff --git a/tests/vcr_cassettes/info_diff_servers.yml b/tests/vcr_cassettes/info_diff_servers.yml new file mode 100644 index 0000000..8e87223 --- /dev/null +++ b/tests/vcr_cassettes/info_diff_servers.yml @@ -0,0 +1,204 @@ +http_interactions: +- request: + method: get + uri: http://erddap.marine.ie/erddap/info/IMI_CONN_2D/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + server: nginx/1.10.2 + date: Wed, 15 Jul 2020 20:30:03 GMT + content-type: application/json;charset=UTF-8 + transfer-encoding: chunked + connection: keep-alive + content-disposition: attachment;filename=IMI_CONN_2D_info.json + content-encoding: gzip + access-control-allow-origin: '*' + access-control-allow-methods: GET, POST, OPTIONS + access-control-allow-headers: DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range + access-control-expose-headers: Content-Length,Content-Range + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "Grid"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "-8.89648828124996"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "53.72912172247213"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "52.95089447171561"], + ["attribute", "NC_GLOBAL", "geospatial_lat_resolution", "double", "0.0017727272226800055"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "-8.89648828124996"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "-10.79851171874996"], + ["attribute", "NC_GLOBAL", "geospatial_lon_resolution", "double", "0.002976562500000001"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "http://milas.marine.ie/thredds/"], + ["attribute", "NC_GLOBAL", "institution", "String", "Irish Marine Institute"], + ["attribute", "NC_GLOBAL", "license", "String", "Creative Commons Attribution 4.0 (https://creativecommons.org/licenses/by/4.0/)"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "53.72912172247213"], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "http://milas.marine.ie/thredds/dodsC/IMI-CONN_AGG"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "52.95089447171561"], + ["attribute", "NC_GLOBAL", "summary", "String", "CONN2D"], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2020-07-18T00:00:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "2020-07-07T00:00:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "Irish Marine Institute Connemara Model CONN2D"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "-10.79851171874996"], + ["dimension", "time", "", "double", "nValues=265, evenlySpaced=true, averageSpacing=1h 0m 0s"], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "1.59408E9, 1.5950304E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "time since initialization"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["dimension", "latitude", "", "double", "nValues=440, evenlySpaced=true, averageSpacing=0.0017727272226800055"], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "double", "52.95089447171561, 53.72912172247213"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["dimension", "longitude", "", "double", "nValues=640, evenlySpaced=true, averageSpacing=0.002976562500000001"], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "double", "-10.79851171874996, -8.89648828124996"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "zeta", "", "float", "time, latitude, longitude"], + ["attribute", "zeta", "colorBarMaximum", "String", "3.0"], + ["attribute", "zeta", "colorBarMinimum", "String", "-3.0"], + ["attribute", "zeta", "coordinates", "String", "time latitude longitude"], + ["attribute", "zeta", "FillValue_", "double", "9.99999993381581E36"], + ["attribute", "zeta", "ioos_category", "String", "Sea Level"], + ["attribute", "zeta", "long_name", "String", "Sealevel Height"], + ["attribute", "zeta", "missing_value", "float", "1.0E37"], + ["attribute", "zeta", "standard_name", "String", "sea_surface_height"], + ["attribute", "zeta", "units", "String", "m"], + ["variable", "barotropic_sea_water_x_velocity", "", "float", "time, latitude, longitude"], + ["attribute", "barotropic_sea_water_x_velocity", "colorBarMaximum", "String", "1.0"], + ["attribute", "barotropic_sea_water_x_velocity", "colorBarMinimum", "String", "-1.0"], + ["attribute", "barotropic_sea_water_x_velocity", "coordinates", "String", "time latitude longitude"], + ["attribute", "barotropic_sea_water_x_velocity", "FillValue_", "double", "9.99999993381581E36"], + ["attribute", "barotropic_sea_water_x_velocity", "ioos_category", "String", "Currents"], + ["attribute", "barotropic_sea_water_x_velocity", "long_name", "String", "U barotropic velocity component"], + ["attribute", "barotropic_sea_water_x_velocity", "missing_value", "float", "1.0E37"], + ["attribute", "barotropic_sea_water_x_velocity", "standard_name", "String", "barotropic_sea_water_x_velocity"], + ["attribute", "barotropic_sea_water_x_velocity", "units", "String", "m/s"], + ["variable", "barotropic_sea_water_y_velocity", "", "float", "time, latitude, longitude"], + ["attribute", "barotropic_sea_water_y_velocity", "colorBarMaximum", "String", "1.0"], + ["attribute", "barotropic_sea_water_y_velocity", "colorBarMinimum", "String", "-1.0"], + ["attribute", "barotropic_sea_water_y_velocity", "coordinates", "String", "time latitude longitude"], + ["attribute", "barotropic_sea_water_y_velocity", "FillValue_", "double", "9.99999993381581E36"], + ["attribute", "barotropic_sea_water_y_velocity", "ioos_category", "String", "Currents"], + ["attribute", "barotropic_sea_water_y_velocity", "long_name", "String", "V barotropic velocity component"], + ["attribute", "barotropic_sea_water_y_velocity", "missing_value", "float", "1.0E37"], + ["attribute", "barotropic_sea_water_y_velocity", "standard_name", "String", "barotropic_sea_water_y_velocity"], + ["attribute", "barotropic_sea_water_y_velocity", "units", "String", "m/s"] + ] + } + } + recorded_at: 2020-07-15 20:30:04 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: http://erddap.marine.ie/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + server: nginx/1.10.2 + date: Wed, 15 Jul 2020 20:30:04 GMT + content-type: application/json;charset=UTF-8 + transfer-encoding: chunked + connection: keep-alive + last-modified: Wed, 15 Jul 2020 20:30:02 GMT + xdods-server: dods/3.7 + erddap-server: '1.82' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + access-control-allow-origin: '*' + access-control-allow-methods: GET, POST, OPTIONS + access-control-allow-headers: DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range + access-control-expose-headers: Content-Length,Content-Range + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://erddap.marine.ie/erddap/tabledap/allDatasets.subset", "https://erddap.marine.ie/erddap/tabledap/allDatasets", "https://erddap.marine.ie/erddap/tabledap/allDatasets.graph", "", "", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://erddap.marine.ie/erddap/info/allDatasets/index.json", "https://erddap.marine.ie/erddap", "", "Marine Institute Ireland", "allDatasets"], + ["", "https://erddap.marine.ie/erddap/tabledap/ais_met_hydro.subset", "https://erddap.marine.ie/erddap/tabledap/ais_met_hydro", "https://erddap.marine.ie/erddap/tabledap/ais_met_hydro.graph", "", "", "AIS Met Hydro", "Met Hydro data collected from Marine Institute AIS antenna\n\ncdm_data_type = Point\nVARIABLES:\nmmsi\nstation_id\ntime (Recordedtime, seconds since 1970-01-01T00:00:00Z)\naccuracy\nairtemp\ncdepth2\ncdepth3\ncdir\ncdir2\ncdir3\nclass\ncspeed\ncspeed2\ncspeed3\ndac\ndevice\ndewpoint\nfid\nflowtimestamp (seconds since 1970-01-01T00:00:00Z)\nhumidity\nlatitude (degrees_north)\nleveltrend\nlongitude (degrees_east)\npreciptype\npressure\npressuretend\nrepeat\n... (19 more variables)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/ais_met_hydro_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/ais_met_hydro_iso19115.xml", "https://erddap.marine.ie/erddap/info/ais_met_hydro/index.json", "http://www.digitalocean.ie", "https://erddap.marine.ie/erddap/rss/ais_met_hydro.rss", "Marine Institute", "ais_met_hydro"], + ["", "https://erddap.marine.ie/erddap/tabledap/argoFloats.subset", "https://erddap.marine.ie/erddap/tabledap/argoFloats", "https://erddap.marine.ie/erddap/tabledap/argoFloats.graph", "", "", "Argo Float Vertical Profiles", "Argo float vertical profiles from Coriolis Global Data Assembly Centres\n(GDAC). Argo is an international collaboration that collects high-quality\ntemperature and salinity profiles from the upper 2000m of the ice-free\nglobal ocean and currents from intermediate depths. The data come from\nbattery-powered autonomous floats that spend most of their life drifting\nat depth where they are stabilised by being neutrally buoyant at the\n\"parking depth\" pressure by having a density equal to the ambient pressure\nand a compressibility that is less than that of sea water. At present there\nare several models of profiling float used in Argo. All work in a similar\nfashion but differ somewhat in their design characteristics. At typically\n10-day intervals, the floats pump fluid into an external bladder and rise\nto the surface over about 6 hours while measuring temperature and salinity.\nSatellites or GPS determine the position of the floats when they surface,\nand the floats transmit their data to the satellites. The bladder then\ndeflates and the float returns to its original density and sinks to drift\nuntil the cycle is repeated. Floats are designed to make about 150 such\ncycles.\nData Management URL: http://www.argodatamgt.org/Documentation\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\nfileNumber (File Number)\ndata_type\nformat_version (File format version)\nhandbook_version (Data handbook version)\nreference_date_time (Date of reference for Julian days, seconds since 1970-01-01T00:00:00Z)\ndate_creation (Date of file creation, seconds since 1970-01-01T00:00:00Z)\ndate_update (Date of update of this file, seconds since 1970-01-01T00:00:00Z)\nplatform_number (Float unique identifier)\nproject_name (Name of the project)\npi_name (Name of the principal investigator)\n... (37 more variables)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/argoFloats_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/argoFloats_iso19115.xml", "https://erddap.marine.ie/erddap/info/argoFloats/index.json", "http://www.argo.net/", "https://erddap.marine.ie/erddap/rss/argoFloats.rss", "Argo", "argoFloats"], + ["", "https://erddap.marine.ie/erddap/tabledap/imiblackriverarms.subset", "https://erddap.marine.ie/erddap/tabledap/imiblackriverarms", "https://erddap.marine.ie/erddap/tabledap/imiblackriverarms.graph", "", "", "ARMS Black River", "ARMS Black River data. Marine Institute data from a local source.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation\nlnstationid (Ln Station ID)\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth\nday\nwater_temperature\nconductivity (freshwater Electrical Conductivity)\nconductance (Sea Water Electrical Conductivity)\nnephelometer\nwater_level_mm\ncdomx1\ncdomx3\ncdomx10\ncdomx30\nsonde_temperature\nsonde_spcond (Sonde Sp Cond)\nsonde_do_pc\nsonde_do_mgl\nsonde_ph\nldo_temperature\nldo_do_pc\nldo_do_mgl\nsuna_no3_conc (Mole Concentration Of Nitrate In Sea Water)\n... (8 more variables)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/imiblackriverarms_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/imiblackriverarms_iso19115.xml", "https://erddap.marine.ie/erddap/info/imiblackriverarms/index.json", "http://www.marine.ie", "https://erddap.marine.ie/erddap/rss/imiblackriverarms.rss", "Marine Institute", "imiblackriverarms"], + ["", "https://erddap.marine.ie/erddap/tabledap/imiglenamongarms.subset", "https://erddap.marine.ie/erddap/tabledap/imiglenamongarms", "https://erddap.marine.ie/erddap/tabledap/imiglenamongarms.graph", "", "", "ARMS Glenamong", "ARMS Glenamong data. Marine Institute data from a local source.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation\nlnstationid (Ln Station ID)\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth\nday\nwater_temperature\nconductivity (Freshwater Electrical Conductivity)\nconductance (Freshwaterater Electrical Conductivity)\nnephelometer\nwater_level_mm\ncdom (Chromophoric Dissolved Organic Material)\nsonde_temperature\nsonde_spcond (Sonde Sp Cond)\nsonde_do_pc\nsonde_do_mgl\nsonde_ph (Sonde P H)\nrdo_temperature\nrdo_do_pc\nrdo_do_mgl\ncs_ph_raw\nsonde_chla_v (Concentration Of Chlorophyll In Sea Water)\nsonde_chla_corr (Concentration Of Chlorophyll In Sea Water)\nsonde_ph_mv (Sonde P H M V)\nsonde_supplyv (Sonde Supply V)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/imiglenamongarms_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/imiglenamongarms_iso19115.xml", "https://erddap.marine.ie/erddap/info/imiglenamongarms/index.json", "http://www.marine.ie", "https://erddap.marine.ie/erddap/rss/imiglenamongarms.rss", "Marine Institute", "imiglenamongarms"], + ["", "https://erddap.marine.ie/erddap/tabledap/imiroughriverarms.subset", "https://erddap.marine.ie/erddap/tabledap/imiroughriverarms", "https://erddap.marine.ie/erddap/tabledap/imiroughriverarms.graph", "", "", "ARMS Rough River", "ARMS Rough River data. Marine Institute data from a local source.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation\nlnstationid (Ln Station ID)\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth\nday\nwater_temperature\nconductivity (Freshwater Electrical Conductivity)\nconductance (Fresh water Electrical Conductivity)\nnephelometer\nwater_level_mm\ncdom (Chromophoric Dissolved Organic Material)\nsonde_temperature\nsonde_spcond (Sonde Sp Cond)\nsonde_do_pc\nsonde_do_mgl\nsonde_ph (Sonde P H)\nldo_temperature\nldo_do_pc\nldo_do_mgl\ncs_ph_raw\ncs_ph_mv\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/imiroughriverarms_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/imiroughriverarms_iso19115.xml", "https://erddap.marine.ie/erddap/info/imiroughriverarms/index.json", "http://www.marine.ie", "https://erddap.marine.ie/erddap/rss/imiroughriverarms.rss", "Marine Institute", "imiroughriverarms"], + ["", "https://erddap.marine.ie/erddap/tabledap/IMINewportBuoys.subset", "https://erddap.marine.ie/erddap/tabledap/IMINewportBuoys", "https://erddap.marine.ie/erddap/tabledap/IMINewportBuoys.graph", "", "", "AWQMS Feeagh", "AWQMS Water Quality Monitoring Lough Feeagh, freshwater, Lake Newport Marine Institute\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation\nlnstationid (Ln Station ID)\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth\nday\nwater_temp_2pt5m (Fresh Water Temperature, degree_C)\nwater_temp_5m (Fresh Water Temperature, degree_C)\nwater_temp_8m (Fresh Water Temperature, degree_C)\nwater_temp_11m (Fresh Water Temperature, degree_C)\nwater_temp_14m (Fresh Water Temperature, degree_C)\nwater_temp_16m (Fresh Water Temperature, degree_C)\nwater_temp_18m (Fresh Water Temperature, degree_C)\nwater_temp_20m (Fresh Water Temperature, degree_C)\nwater_temp_22m (Fresh Water Temperature, degree_C)\nwater_temp_27m (Fresh Water Temperature, degree_C)\nwater_temp_32m (Fresh Water Temperature, degree_C)\nwater_temp_42m (Fresh Water Temperature, degree_C)\nairtemperature (Air Temperature, degree_C)\nbarometric_pressure_1 (Air Pressure)\nchlorophyll_a (Concentration Of Chlorophyll In Sea Water)\nnephelometer (water_turbidity, NTU)\ncdom (Chromophoric Dissolved Organic Material)\npyranometer\n... (16 more variables)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IMINewportBuoys_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IMINewportBuoys_iso19115.xml", "https://erddap.marine.ie/erddap/info/IMINewportBuoys/index.json", "http://www.isde.ie/#/f26b4c60-664b-4383-b66e-a729df4fa888", "https://erddap.marine.ie/erddap/rss/IMINewportBuoys.rss", "Marine Institute", "IMINewportBuoys"], + ["", "https://erddap.marine.ie/erddap/tabledap/imifeeaghco2.subset", "https://erddap.marine.ie/erddap/tabledap/imifeeaghco2", "https://erddap.marine.ie/erddap/tabledap/imifeeaghco2.graph", "", "", "AWQMS Feeagh (CO2)", "Feeagh CO2 data. Marine Institute Newport data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation\nlnstationid (Ln Station ID)\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth\nday\nco2_conc_water_mgperl (CO2 Conc Water Mgper L)\nco2_conc_water_mmolperl (CO2 Conc Water Mmolper L)\nco2_temp\nbarometric_pressure_1 (Air Pressure)\nco2_v\nco2_kw\nco2_cv\nco2_kh\nco2_p\nsdi12_result_1\nsdi12_result_2\nsdi12_result_3\nmain_battery_min\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/imifeeaghco2_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/imifeeaghco2_iso19115.xml", "https://erddap.marine.ie/erddap/info/imifeeaghco2/index.json", "http://www.marine.ie", "https://erddap.marine.ie/erddap/rss/imifeeaghco2.rss", "Marine Institute", "imifeeaghco2"], + ["", "https://erddap.marine.ie/erddap/tabledap/imifurnaceawqmsdepthprofile.subset", "https://erddap.marine.ie/erddap/tabledap/imifurnaceawqmsdepthprofile", "https://erddap.marine.ie/erddap/tabledap/imifurnaceawqmsdepthprofile.graph", "", "", "AWQMS Furnace (Depth profile)", "AWQMS Lough Furnace Water Quality Sonde depth profile. Newport\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlnstationid\ntime (Tmstamp, seconds since 1970-01-01T00:00:00Z)\ncable_position\ncorrected_sonde_depth\nday\ndrum_position\nfeed_cable_position_change\nfeed_drum_position_change\nlatitude (degrees_north)\nlongitude (degrees_east)\nmonth\nrecnum\nrot_encs_response\nsonde_chla_corr (Concentration Of Chlorophyll In Sea Water)\nsonde_chla_v (Concentration Of Chlorophyll In Sea Water)\nsonde_depth\nsonde_do_mgl\nsonde_dopc\nsonde_ph\nsonde_salinity (Sea Water Practical Salinity, PSU)\nsonde_self_clean\nsonde_spco\nsonde_temperature\nstation\nstation_name (Stationname)\ntime_sec_id\nwinch_status_response\nyear\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/imifurnaceawqmsdepthprofile_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/imifurnaceawqmsdepthprofile_iso19115.xml", "https://erddap.marine.ie/erddap/info/imifurnaceawqmsdepthprofile/index.json", "http://www.isde.ie/#/f26b4c60-664b-4383-b66e-a729df4fa888", "https://erddap.marine.ie/erddap/rss/imifurnaceawqmsdepthprofile.rss", "Marine Institute", "imifurnaceawqmsdepthprofile"], + ["", "https://erddap.marine.ie/erddap/tabledap/imifurnaceawqms.subset", "https://erddap.marine.ie/erddap/tabledap/imifurnaceawqms", "https://erddap.marine.ie/erddap/tabledap/imifurnaceawqms.graph", "", "", "AWQMS Furnace (Surface)", "AWQMS Lough Furnace Water Quality. Marine Institute Newport\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation\nlnstationid (Ln Station ID)\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth\nday\nairtemperature (Air Temperature)\nbarometric_pressure_1 (Air Pressure)\nchlorophyll_a (Concentration Of Chlorophyll In Sea Water)\nnephelometer\npyranometer\nsurface_pfd\nanemometer\nanemometer_squared\nanemometer_cubed\nbearing\nwind_vane\ncorrected_wind_direction (Wind From Direction)\nsonde_chla_corr (Concentration Of Chlorophyll In Sea Water)\nsonde_chla_v (Concentration Of Chlorophyll In Sea Water)\nsonde_depth\nsonde_do_mgl (mg/l)\nsonde_dopc (percent)\nsonde_ph (Ph Reported On Total Scale, pH)\nsonde_salinity (Sea Water Practical Salinity, PSU)\nsonde_spco (Sonde Sp Co)\nsonde_temperature\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/imifurnaceawqms_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/imifurnaceawqms_iso19115.xml", "https://erddap.marine.ie/erddap/info/imifurnaceawqms/index.json", "http://www.marine.ie", "https://erddap.marine.ie/erddap/rss/imifurnaceawqms.rss", "Marine Institute", "imifurnaceawqms"], + ["", "https://erddap.marine.ie/erddap/tabledap/ICTempNetwork.subset", "https://erddap.marine.ie/erddap/tabledap/ICTempNetwork", "https://erddap.marine.ie/erddap/tabledap/ICTempNetwork.graph", "", "", "Coastal Temperature Network", "Irish Coastal Temperature Network\n\ncdm_data_type = TimeSeries\nVARIABLES:\nSiteName (Station ID)\nlongitude (degrees_east)\nlatitude (degrees_north)\nBay\nyear\nmonth\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nDepth (m)\nSeaTemperature (Sea Surface Temperature, degree_C)\nQFlag (Quality Control Flags)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/ICTempNetwork_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/ICTempNetwork_iso19115.xml", "https://erddap.marine.ie/erddap/info/ICTempNetwork/index.json", "http://www.isde.ie/#/c455d22d-79c2-4dbb-95fb-917a33ea885c", "https://erddap.marine.ie/erddap/rss/ICTempNetwork.rss", "Marine Institute", "ICTempNetwork"], + ["", "https://erddap.marine.ie/erddap/tabledap/ICTempNetworkFreshwater.subset", "https://erddap.marine.ie/erddap/tabledap/ICTempNetworkFreshwater", "https://erddap.marine.ie/erddap/tabledap/ICTempNetworkFreshwater.graph", "", "", "Coastal Temperature Network - Freshwater sites", "Irish Coastal Temperature Network Freshwater sites\n\ncdm_data_type = TimeSeries\nVARIABLES:\nSiteName (Station ID)\nlongitude (degrees_east)\nlatitude (degrees_north)\nBay\nyear\nmonth\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nDepth (m)\ntemperature (Surface Temperature, degree_C)\nQFlag (Quality Control Flags)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/ICTempNetworkFreshwater_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/ICTempNetworkFreshwater_iso19115.xml", "https://erddap.marine.ie/erddap/info/ICTempNetworkFreshwater/index.json", "http://www.isde.ie/#/c455d22d-79c2-4dbb-95fb-917a33ea885c", "https://erddap.marine.ie/erddap/rss/ICTempNetworkFreshwater.rss", "Marine Institute", "ICTempNetworkFreshwater"], + ["", "https://erddap.marine.ie/erddap/tabledap/IMI-TidePrediction_epa.subset", "https://erddap.marine.ie/erddap/tabledap/IMI-TidePrediction_epa", "https://erddap.marine.ie/erddap/tabledap/IMI-TidePrediction_epa.graph", "", "", "EPA Beaches Model Predicted Tide Level", "MI Modelled Tide Predictions for EPA Beach stations\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (longitude in decimal degree east, degrees_east)\nlatitude (latitude in decimal degree north, degrees_north)\nstationID (Station ID)\nsea_surface_height (sea surface height relative to Model MSL, metres)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IMI-TidePrediction_epa_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IMI-TidePrediction_epa_iso19115.xml", "https://erddap.marine.ie/erddap/info/IMI-TidePrediction_epa/index.json", "http://milas.marine.ie/thredds/", "https://erddap.marine.ie/erddap/rss/IMI-TidePrediction_epa.rss", "Marine Institute", "IMI-TidePrediction_epa"], + ["", "https://erddap.marine.ie/erddap/tabledap/imi_feas_obs.subset", "https://erddap.marine.ie/erddap/tabledap/imi_feas_obs", "https://erddap.marine.ie/erddap/tabledap/imi_feas_obs.graph", "", "", "FEAS All Observations", "FEAS All Observations\n\ncdm_data_type = Other\nVARIABLES:\nYear\nQuarter\nICES_Area\nGear_Code\nDemersal_At_Sea_Scheme_Age_Observations\nDemersal_At_Sea_Scheme_Biological_Observations\nDemersal_At_Sea_Scheme_Length_Observations\nPelagic_At_Sea_Scheme_Age_Observations\nPelagic_At_Sea_Scheme_Biological_Observations\nPelagic_At_Sea_Scheme_Length_Observations\nNephrops_At_Sea_Scheme_Age_Observations\nNephrops_At_Sea_Scheme_Biological_Observations\nNephrops_At_Sea_Scheme_Length_Observations\nPort_Sampling_Scheme_Age_Observations\nPort_Sampling_Scheme_Biological_Observations\nPort_Sampling_Scheme_Length_Observations\n", "", "", "https://erddap.marine.ie/erddap/info/imi_feas_obs/index.json", "http://data.marine.ie/", "https://erddap.marine.ie/erddap/rss/imi_feas_obs.rss", "Marine Institute", "imi_feas_obs"], + ["", "https://erddap.marine.ie/erddap/tabledap/imi_feas_obs_sp.subset", "https://erddap.marine.ie/erddap/tabledap/imi_feas_obs_sp", "https://erddap.marine.ie/erddap/tabledap/imi_feas_obs_sp.graph", "", "", "FEAS All Observations by Species", "FEAS All Observations by Species\n\ncdm_data_type = Other\nVARIABLES:\nYear\nQuarter\nICES_Area\nGear_Code\nScientific_Name\nCommon_Name\nAphiaID\nDemersal_At_Sea_Scheme_Age_Observations\nDemersal_At_Sea_Scheme_Biological_Observations\nDemersal_At_Sea_Scheme_Length_Observations\nPelagic_At_Sea_Scheme_Age_Observations\nPelagic_At_Sea_Scheme_Biological_Observations\nPelagic_At_Sea_Scheme_Length_Observations\nNephrops_At_Sea_Scheme_Age_Observations\nNephrops_At_Sea_Scheme_Biological_Observations\nNephrops_At_Sea_Scheme_Length_Observations\nPort_Sampling_Scheme_Age_Observations\nPort_Sampling_Scheme_Biological_Observations\nPort_Sampling_Scheme_Length_Observations\n", "", "", "https://erddap.marine.ie/erddap/info/imi_feas_obs_sp/index.json", "http://data.marine.ie/", "https://erddap.marine.ie/erddap/rss/imi_feas_obs_sp.rss", "Marine Institute", "imi_feas_obs_sp"], + ["", "https://erddap.marine.ie/erddap/tabledap/imiFurnaceWSdaily.subset", "https://erddap.marine.ie/erddap/tabledap/imiFurnaceWSdaily", "https://erddap.marine.ie/erddap/tabledap/imiFurnaceWSdaily.graph", "", "", "Furnace Weather Station Daily averages", "Furnace Automatic Synoptic Weather Station Daily Averages with No Quality control - data supplied by Met Eireann, visit http://www.met.ie/climate-request/ for Quality Controlled Historical data\n\ncdm_data_type = TimeSeries\nVARIABLES:\ndatasourceid (Datasource ID)\nstation_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nAtmosphericPressure (Air Pressure, mb)\nTotalRain (Total Rainfall, mm)\nWindSpeed (kn)\nMaxGust (Wind Gust Speed, kn)\nsolarRad (Solar Radiance, J cm-2)\nMeanAirTemperature (Air Temperature, degree_C)\nGrassMin (Grass Min Air Temperature, degree_C)\nMinAirTemperature (Min Air Temperature, degree_C)\nMaxAirTemperature (Max Air Temperature, degree_C)\nSoilTemp5cm (Soil Temperature, degree_C)\nSoilTemp10cm (Soil Temperature, degree_C)\nSoilTemp20cm (Soil Temperature, degree_C)\nEarthTemp30cm (Soil Temperature, degree_C)\nEarthTemp50cm (Soil Temperature, degree_C)\nEarthTemp100cm (Soil Temperature, degree_C)\nHumidity (Relative Humidity, percent)\nqcflag (Quality Control Flags)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/imiFurnaceWSdaily_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/imiFurnaceWSdaily_iso19115.xml", "https://erddap.marine.ie/erddap/info/imiFurnaceWSdaily/index.json", "http://www.isde.ie/#/a1eb8b30-c49f-41d4-9809-9676c90d65cd", "https://erddap.marine.ie/erddap/rss/imiFurnaceWSdaily.rss", "Met Eireann", "imiFurnaceWSdaily"], + ["", "https://erddap.marine.ie/erddap/tabledap/imiFurnaceWSHourly.subset", "https://erddap.marine.ie/erddap/tabledap/imiFurnaceWSHourly", "https://erddap.marine.ie/erddap/tabledap/imiFurnaceWSHourly.graph", "", "", "Furnace Weather Station Hourly data", "Furnace Automatic Synoptic Weather Station Hourly Averages No Quality Control - data supplied by Met Eireann, visit http://www.met.ie/climate-request/ for Quality Controlled Historical data\n\ncdm_data_type = TimeSeries\nVARIABLES:\ndatasourceid (Datasource ID)\nstation_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nAtmosphericPressure (Air Pressure, mb)\nTotalRain (Total Rainfall, mm)\nWindSpeed (kn)\nMaxGust (Wind Gust Speed, kn)\nsolarRad (Solar Radiance, J cm-2)\nMeanAirTemperature (Air Temperature, degree_C)\nGrassMin (Grass Min Air Temperature, degree_C)\nMinAirTemperature (Min Air Temperature, degree_C)\nMaxAirTemperature (Max Air Temperature, degree_C)\nSoilTemp5cm (Soil Temperature, degree_C)\nSoilTemp10cm (Soil Temperature, degree_C)\nSoilTemp20cm (Soil Temperature, degree_C)\nEarthTemp30cm (Soil Temperature, degree_C)\nEarthTemp50cm (Soil Temperature, degree_C)\nEarthTemp100cm (Soil Temperature, degree_C)\nHumidity (Relative Humidity, percent)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/imiFurnaceWSHourly_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/imiFurnaceWSHourly_iso19115.xml", "https://erddap.marine.ie/erddap/info/imiFurnaceWSHourly/index.json", "http://www.isde.ie/#/a1eb8b30-c49f-41d4-9809-9676c90d65cd", "https://erddap.marine.ie/erddap/rss/imiFurnaceWSHourly.rss", "Met Eireann", "imiFurnaceWSHourly"], + ["", "https://erddap.marine.ie/erddap/tabledap/GFS-WeatherTimeSeries.subset", "https://erddap.marine.ie/erddap/tabledap/GFS-WeatherTimeSeries", "https://erddap.marine.ie/erddap/tabledap/GFS-WeatherTimeSeries.graph", "", "", "GFS weather forecast at selected locations", "GFS weather forecast at selected locations\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (longitude in decimal degree east, degrees_east)\nlatitude (latitude in decimal degree north, degrees_north)\nstationID (Station ID)\nAtmosphericPressure (Air Pressure, mb)\nWindSpeed (kn)\nWindDirection (degrees_true)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/GFS-WeatherTimeSeries_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/GFS-WeatherTimeSeries_iso19115.xml", "https://erddap.marine.ie/erddap/info/GFS-WeatherTimeSeries/index.json", "http://www.emc.ncep.noaa.gov/index.php?branch=GFS", "https://erddap.marine.ie/erddap/rss/GFS-WeatherTimeSeries.rss", "NOAA/NCEP", "GFS-WeatherTimeSeries"], + ["", "https://erddap.marine.ie/erddap/tabledap/miIbts.subset", "https://erddap.marine.ie/erddap/tabledap/miIbts", "https://erddap.marine.ie/erddap/tabledap/miIbts.graph", "", "", "IBTS Trawl Surveys", "IBTS Trawl Surveys\n\ncdm_data_type = Trajectory\nVARIABLES:\nSurveyCodeICES\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nYear\nHaul_Code (Station ID)\nVessel_Code\nSpecies_Code\nCommon_Name\nLength_Split (Juvenile Adult length split, cm)\nTotal_Number_Fish_Per_Hour (count h-1)\nJunvenile_Number_Fish_Per_Hour (Juvenile_Number_Fish_Per_Hour, count h-1)\nAdult_Number_Fish_Per_Hour (count h-1)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/miIbts_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/miIbts_iso19115.xml", "https://erddap.marine.ie/erddap/info/miIbts/index.json", "http://catalog.marine.ie/geonetwork/srv/en/main.home", "https://erddap.marine.ie/erddap/rss/miIbts.rss", "Marine Institute", "miIbts"], + ["", "https://erddap.marine.ie/erddap/tabledap/imipublicunderway.subset", "https://erddap.marine.ie/erddap/tabledap/imipublicunderway", "https://erddap.marine.ie/erddap/tabledap/imipublicunderway.graph", "", "", "Ireland's Marine Institute Research Vessel Underway Data 2013 - Present", "Marine Institute Research Vessel Underway Data\n\ncdm_data_type = Point\nVARIABLES:\nyear\ncruise_id\ntime (Time Interval, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nvessel_name\nplatform_code\nspeed (Vessel Speed)\ndepth_surface (Depth)\ntemperature (degrees_C)\ntemperature_thermosalinograph\nconductivity (S/m)\nsalinity (dimensionless)\nfluorometer_raw\natmospheric_pressure (decibars)\nair_temperature\nrelative_humidity\nrelative_wind_speed\nrelative_wind_direction (Wind From Direction)\ntrue_wind_speed (Wind Speed)\ntrue_wind_direction\npitch\nroll\nheave\ntrue_heading\nspeed_qc\ndepth_surface_qc (Depth)\n... (16 more variables)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/imipublicunderway_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/imipublicunderway_iso19115.xml", "https://erddap.marine.ie/erddap/info/imipublicunderway/index.json", "https://www.marine.ie/Home/site-area/infrastructure-facilities/research-vessels/celtic-explorer", "https://erddap.marine.ie/erddap/rss/imipublicunderway.rss", "Irish Marine Institute", "imipublicunderway"], + ["", "https://erddap.marine.ie/erddap/tabledap/IrishNationalTideGaugeNetwork.subset", "https://erddap.marine.ie/erddap/tabledap/IrishNationalTideGaugeNetwork", "https://erddap.marine.ie/erddap/tabledap/IrishNationalTideGaugeNetwork.graph", "", "", "Irish National Tide Gauge Network Real Time Data", "Network of tide gauges located around the coast of Ireland collecting water level data as part of the \ndevelopment of a permanent tidal monitoring infrastructure. Parameters collected include; Station (ID), dateTime (yyyy-mm-ddThh:mm:ss), \nWater Level (Sea Level above Lowest Astronomical Tide [LAT], m) and Water Level (Water Level wrt Ordnance Datum Malin Head, m). Users of \nthe download service can choose a gauge, time period, parameter(s) and output file type. Advanced downloads allow a user choose an Area of \nInterest (ie. more than one tide gauge) and depth value (ie. with tide gauge always '0') to download data. Real time data are also \navailable from the FTP site, see\u00c2\u00a0www.irishtides.ie.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (time of measurement, seconds since 1970-01-01T00:00:00Z)\naltitude (height of measurement, m)\nlatitude (latitude of measurement, degrees_north)\nlongitude (longitude of measurement, degrees_east)\nstation_id\ndatasourceid (Data Source Identifier)\nWater_Level_LAT (sea level above Lowest Astronomical Tide, metres)\nWater_Level_OD_Malin (sea level above Ordnance Datum Malin, metres)\nQC_Flag (quality flag for all measurements)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IrishNationalTideGaugeNetwork_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IrishNationalTideGaugeNetwork_iso19115.xml", "https://erddap.marine.ie/erddap/info/IrishNationalTideGaugeNetwork/index.json", "http://data.marine.ie/geonetwork/srv/eng/catalog.search#/metadata/ie.marine.data:dataset.2774", "https://erddap.marine.ie/erddap/rss/IrishNationalTideGaugeNetwork.rss", "Marine Institute", "IrishNationalTideGaugeNetwork"], + ["", "https://erddap.marine.ie/erddap/tabledap/IrishNationalTideGaugeNetworkRiverGauges.subset", "https://erddap.marine.ie/erddap/tabledap/IrishNationalTideGaugeNetworkRiverGauges", "https://erddap.marine.ie/erddap/tabledap/IrishNationalTideGaugeNetworkRiverGauges.graph", "", "", "Irish National Tide Gauge Network River Gauges", "The Irish National Tide Gauge Network is an on-going development involving the Marine Institute and a number of organisations in the public and private sectors to develop a permanent tidal monitoring infrastructure, ultimately consisting of between 35 and 40 stations.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\naltitude (m)\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nstation_id\nWater_Level (m)\nWater_Temperature (degree_C)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IrishNationalTideGaugeNetworkRiverGauges_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IrishNationalTideGaugeNetworkRiverGauges_iso19115.xml", "https://erddap.marine.ie/erddap/info/IrishNationalTideGaugeNetworkRiverGauges/index.json", "http://catalog.marine.ie/geonetwork/srv/en/main.home?uuid=0da11e42-2d03-4c64-8b0d-0e78c04efc34", "https://erddap.marine.ie/erddap/rss/IrishNationalTideGaugeNetworkRiverGauges.rss", "Marine Institute", "IrishNationalTideGaugeNetworkRiverGauges"], + ["", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork.subset", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork.graph", "", "", "Irish Wave Buoys", "Irish Wave Buoys\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nstation_id\ninstrument\nPeakPeriod (sea_surface_wave_period_at_variance_spectral_density_maximum, s)\nPeakDirection (sea_surface_wave_to_direction, degrees_true)\nUpcrossPeriod (Sea Surface Swell Wave Zero upcrossing Period, s)\nSignificantWaveHeight (Sea Surface Wave Significant Height, cm)\nSeaTemperature (Sea Surface Temperature, degree_C)\nHmax (Sea Surface Height of the highest wave, cm)\nTHmax (Period of the highest wave, s)\nMeanCurDirTo (mean direction of sea water velocity, degrees_true)\nMeanCurSpeed (mean sea water speed, m/s)\nSignificantWaveHeight_qc (SigWaveHeight Quality Control Flag)\nPeakPeriod_qc (PeakPeriod Control Flag)\nPeakDirection_qc (PeakDirection Quality Control Flag)\nUpcrossPeriod_qc (UpcrossPeriod Quality Control Flag)\nSeaTemperature_qc (SeaTemperature Quality Control Flag)\nHmax_qc (Hmax Quality Control Flag)\nTHmax_qc (THmax Quality Control Flag)\nMeanCurDirTo_qc (MeanCurDirTo Quality Control Flag)\nMeanCurSpeed_qc (MeanCurSpeed Quality Control Flag)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IWaveBNetwork_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IWaveBNetwork_iso19115.xml", "https://erddap.marine.ie/erddap/info/IWaveBNetwork/index.json", "http://www.isde.ie/#/55eb27e0-2fc3-4dab-9963-a99d12402a9e", "https://erddap.marine.ie/erddap/rss/IWaveBNetwork.rss", "Marine Institute", "IWaveBNetwork"], + ["", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork30Min.subset", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork30Min", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork30Min.graph", "", "", "Irish Wave Buoys 30 Min", "Irish Wave Buoys 30 minute\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Detection Time, seconds since 1970-01-01T00:00:00Z)\nstation_id\ninstrument\nPeakPeriod (sea_surface_wave_period_at_variance_spectral_density_maximum, s)\nPeakDirection (sea_surface_wave_to_direction, degrees_true)\nUpcrossPeriod (Sea Surface Swell Wave Zero upcrossing Period, s)\nSignificantWaveHeight (Sea Surface Wave Significant Height, cm)\nSeaTemperature (Sea Surface Temperature, degree_C)\nHmax (Sea Surface Height of the highest wave, cm)\nTHmax (Period of the highest wave, s)\nMeanCurDirTo (mean direction of sea water velocity, degrees_true)\nMeanCurSpeed (mean sea water speed, m/s)\nSignificantWaveHeight_qc (SigWaveHeight Quality Control Flag)\nPeakPeriod_qc (PeakPeriod Control Flag)\nPeakDirection_qc (PeakDirection Quality Control Flag)\nUpcrossPeriod_qc (UpcrossPeriod Quality Control Flag)\nSeaTemperature_qc (SeaTemperature Quality Control Flag)\nHmax_qc (Hmax Quality Control Flag)\nTHmax_qc (THmax Quality Control Flag)\nMeanCurDirTo_qc (MeanCurDirTo Quality Control Flag)\nMeanCurSpeed_qc (MeanCurSpeed Quality Control Flag)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IWaveBNetwork30Min_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IWaveBNetwork30Min_iso19115.xml", "https://erddap.marine.ie/erddap/info/IWaveBNetwork30Min/index.json", "http://www.isde.ie/#/55eb27e0-2fc3-4dab-9963-a99d12402a9e", "https://erddap.marine.ie/erddap/rss/IWaveBNetwork30Min.rss", "Marine Institute", "IWaveBNetwork30Min"], + ["", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork_spectral.subset", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork_spectral", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork_spectral.graph", "", "", "Irish Wave Buoys Spectral Data", "Irish Wave Buoys Spectral Data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nbuoy_id\ntime (Recordedtime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_id\ninstrument\nPeakDirection (degrees_true)\nPeakSpread (degrees_true)\nSignificantWaveHeight (m)\nEnergyPeriod (s)\nMeanWavePeriod_Tm01 (s)\nMeanWavePeriod_Tm02 (s)\nPeakPeriod (s)\nqcflag\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IWaveBNetwork_spectral_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IWaveBNetwork_spectral_iso19115.xml", "https://erddap.marine.ie/erddap/info/IWaveBNetwork_spectral/index.json", "http://www.isde.ie/#/55eb27e0-2fc3-4dab-9963-a99d12402a9e", "https://erddap.marine.ie/erddap/rss/IWaveBNetwork_spectral.rss", "Marine Institute", "IWaveBNetwork_spectral"], + ["", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork_zerocrossing.subset", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork_zerocrossing", "https://erddap.marine.ie/erddap/tabledap/IWaveBNetwork_zerocrossing.graph", "", "", "Irish Wave Buoys Zero crossing Data", "Irish Wave Buoys Zero crossing Data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nbuoy_id\ntime (Recordedtime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nstation_id\ninstrument\nHmax (m)\nHmaxPeriod (THmax, s)\nHavg (m)\nTavg (s)\nqcflag\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IWaveBNetwork_zerocrossing_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IWaveBNetwork_zerocrossing_iso19115.xml", "https://erddap.marine.ie/erddap/info/IWaveBNetwork_zerocrossing/index.json", "http://www.isde.ie/#/55eb27e0-2fc3-4dab-9963-a99d12402a9e", "https://erddap.marine.ie/erddap/rss/IWaveBNetwork_zerocrossing.rss", "Marine Institute", "IWaveBNetwork_zerocrossing"], + ["", "https://erddap.marine.ie/erddap/tabledap/IWBNetwork.subset", "https://erddap.marine.ie/erddap/tabledap/IWBNetwork", "https://erddap.marine.ie/erddap/tabledap/IWBNetwork.graph", "", "", "Irish Weather Buoy Network Real Time Data", "Real time meteorological and oceanographic data collected from the Irish moored Weather Buoy network \nof stations. Parameters collected include: DateTime (yyyy-mm-ddThh:mm:ss.sss), Atmospheric Pressure (mbar), Air Temperature \n(degreeCelsius), DewPoint Temperature (degreeCelsius), Wind Speed (knots), Max Gust Wind Speed (knots), Wind Direction (degreeTrue), Sea \nSurface Temperature (degreeCelsius), Wave Period (seconds), Wave Height (metres) and Relative Humidity (%). Real time data available for \nM2, M3, M4, M5 and M6. Historical data available for M1, FS1 and original M4 spatial location. The network is managed by the Marine \nInstitute in collaboration with Met Eireann and the UK Met Office. The Irish Weather Buoy Network is designed to improve weather forecasts \nand safety at sea around Ireland. The buoy network provides vital data for weather forecasts, shipping bulletins, gale and swell warnings \nas well as data for general public information and research.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_id\nCallSign (Call Sign)\nlongitude (longitude of measurement, degrees_east)\nlatitude (latitude of measurement, degrees_north)\ntime (time of measurement, seconds since 1970-01-01T00:00:00Z)\nAtmosphericPressure (Air pressure, millibars)\nWindDirection (Wind direction, degrees true)\nWindSpeed (Wind speed, knots)\nGust (Wind gust speed, knots)\nWaveHeight (Wave height, meters)\nWavePeriod (Wave period, seconds)\nMeanWaveDirection (Mean wave direction, degrees_true)\nHmax (Maximum wave height, meters)\n... (9 more variables)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IWBNetwork_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IWBNetwork_iso19115.xml", "https://erddap.marine.ie/erddap/info/IWBNetwork/index.json", "http://data.marine.ie/geonetwork/srv/eng/catalog.search#/metadata/ie.marine.data:dataset.2783", "https://erddap.marine.ie/erddap/rss/IWBNetwork.rss", "Marine Institute", "IWBNetwork"], + ["", "https://erddap.marine.ie/erddap/tabledap/IMI-TidePrediction.subset", "https://erddap.marine.ie/erddap/tabledap/IMI-TidePrediction", "https://erddap.marine.ie/erddap/tabledap/IMI-TidePrediction.graph", "", "", "Marine Institute Tide Prediction", "Tidal predictions are generated from measured data via the Irish National Tide Gauge Network and via modelled data from the MI operational hydrodynamic model. Tidal prediction is a calculation of future tide ranges based on available oceanographic parameters. Users can select a station and datetime within the next 2 years for the tidal prediction using the menus available. Water Level is sea surface height above local Lowest Astronomical Tide measured in metres.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (longitude in decimal degree east, degrees_east)\nlatitude (latitude in decimal degree north, degrees_north)\nstationID (Station ID)\nWater_Level (sea surface height above local LAT, metres)\nWater_Level_ODM (sea surface height relative to OD Malin, metres)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IMI-TidePrediction_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IMI-TidePrediction_iso19115.xml", "https://erddap.marine.ie/erddap/info/IMI-TidePrediction/index.json", "http://data.marine.ie/geonetwork/srv/eng/catalog.search#/metadata/ie.marine.data:dataset.2776", "https://erddap.marine.ie/erddap/rss/IMI-TidePrediction.rss", "Marine Institute", "IMI-TidePrediction"], + ["", "https://erddap.marine.ie/erddap/tabledap/nuig_carna_temp.subset", "https://erddap.marine.ie/erddap/tabledap/nuig_carna_temp", "https://erddap.marine.ie/erddap/tabledap/nuig_carna_temp.graph", "", "", "Measurement of Seawater Temperature at Carna, Co. Galway (1974-2003)", "NUIG Carna Temperature Time Series\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (Date Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nyear\nmonth\nday\nstation_id\ntemperature (sea_surface_temperature, degree_C)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/nuig_carna_temp_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/nuig_carna_temp_iso19115.xml", "https://erddap.marine.ie/erddap/info/nuig_carna_temp/index.json", "http://www.nuigalway.ie/ryaninstitute/corefacilities/carnaresearchstation/", "https://erddap.marine.ie/erddap/rss/nuig_carna_temp.rss", "NUIG", "nuig_carna_temp"], + ["", "https://erddap.marine.ie/erddap/tabledap/mestech.subset", "https://erddap.marine.ie/erddap/tabledap/mestech", "https://erddap.marine.ie/erddap/tabledap/mestech.graph", "", "", "MESTECH Multiparameter Sonde data", "Environmental Sensors. Dublin City University data from a local source.\n\ncdm_data_type = Point\nVARIABLES:\ninstrument_id\ntime (seconds since 1970-01-01T00:00:00Z)\nbattery (Battery Voltage, V)\nclock_date\nclock_time\nconductivity (microSiemens/cm)\ndepth (m)\ndissolved_oxygen (mg/l)\nlatitude (degrees_north)\nlongitude (degrees_east)\nph (Sea Water Ph Reported On Total Scale, pH)\nph_mv (Sea Water pH mV, mV)\nsalinity (Sea Water Practical Salinity, ppt)\nsite_id\nSeaTemperature (Sea Surface Temperature, degree_C)\nturbidity (NTU)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/mestech_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/mestech_iso19115.xml", "https://erddap.marine.ie/erddap/info/mestech/index.json", "http://www.mestech.ie", "https://erddap.marine.ie/erddap/rss/mestech.rss", "Dublin City University", "mestech"], + ["", "https://erddap.marine.ie/erddap/tabledap/IMI-WaveBuoyForecast.subset", "https://erddap.marine.ie/erddap/tabledap/IMI-WaveBuoyForecast", "https://erddap.marine.ie/erddap/tabledap/IMI-WaveBuoyForecast.graph", "", "", "MI Wave Forecast at buoy locations", "MI Wave Forecast at buoy locations\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (longitude in decimal degree east, degrees_east)\nlatitude (latitude in decimal degree north, degrees_north)\nstationID (Station ID)\nsignificant_wave_height (m)\nmean_wave_period (mean absolute zero-crossing period (TM02), s)\nmean_wave_direction (mean wave to direction, degrees)\nwave_power_per_unit_crest_length (kW/m)\npeak_period (sea_surface_wave_period_at_variance_spectral_density_maximum, s)\nenergy_period (Wave energy period, s)\nproject_code\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/IMI-WaveBuoyForecast_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/IMI-WaveBuoyForecast_iso19115.xml", "https://erddap.marine.ie/erddap/info/IMI-WaveBuoyForecast/index.json", "http://milas.marine.ie/thredds/", "https://erddap.marine.ie/erddap/rss/IMI-WaveBuoyForecast.rss", "Marine Institute", "IMI-WaveBuoyForecast"], + ["", "https://erddap.marine.ie/erddap/tabledap/waveatlantos00.subset", "https://erddap.marine.ie/erddap/tabledap/waveatlantos00", "https://erddap.marine.ie/erddap/tabledap/waveatlantos00.graph", "", "", "MI Wave Forecast at undefined Atlantos project locations", "MI Wave Forecast at undefined Atlantos project locations (latitude, longitude set to zero)\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (longitude in decimal degree east, degrees_east)\nlatitude (latitude in decimal degree north, degrees_north)\nstationID (Station ID)\nsignificant_wave_height (m)\nmean_wave_period (mean absolute zero-crossing period (TM02), s)\nmean_wave_direction (mean wave to direction, degrees)\nwave_power_per_unit_crest_length (kW/m)\npeak_period (sea_surface_wave_period_at_variance_spectral_density_maximum, s)\nenergy_period (Wave energy period, s)\nproject_code\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/waveatlantos00_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/waveatlantos00_iso19115.xml", "https://erddap.marine.ie/erddap/info/waveatlantos00/index.json", "http://milas.marine.ie/thredds/", "https://erddap.marine.ie/erddap/rss/waveatlantos00.rss", "Marine Institute", "waveatlantos00"], + ["", "https://erddap.marine.ie/erddap/tabledap/imi_obs_video.subset", "https://erddap.marine.ie/erddap/tabledap/imi_obs_video", "https://erddap.marine.ie/erddap/tabledap/imi_obs_video.graph", "", "https://erddap.marine.ie/erddap/files/imi_obs_video/", "Observatory Video Files Subset", "Subset of Spiddal video from 2019\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://erddap.marine.ie/erddap/info/imi_obs_video/index.json", "http://smartbay.marine.ie", "https://erddap.marine.ie/erddap/rss/imi_obs_video.rss", "Marine Institute", "imi_obs_video"], + ["", "https://erddap.marine.ie/erddap/tabledap/pirs_project_data.subset", "https://erddap.marine.ie/erddap/tabledap/pirs_project_data", "https://erddap.marine.ie/erddap/tabledap/pirs_project_data.graph", "", "", "PIRS Project Data", "PIRS Project Data. Marine Institute data from a local source.\n\ncdm_data_type = Point\nVARIABLES:\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (Timestamp, seconds since 1970-01-01T00:00:00Z)\nproject_id\nyear_awarded\nagreed_duration_months\nprimary_research_theme\nsecondary_research_theme\nproject_name\nlead_institution\npartner_institutions\nfunding_programme\nlead_funder\nco_funders\naward_type\nawardee_type\nproject_grant_aid\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/pirs_project_data_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/pirs_project_data_iso19115.xml", "https://erddap.marine.ie/erddap/info/pirs_project_data/index.json", "http://marine.ie/", "https://erddap.marine.ie/erddap/rss/pirs_project_data.rss", "Marine Institute", "pirs_project_data"], + ["", "https://erddap.marine.ie/erddap/tabledap/spiddal_obs_adcp.subset", "https://erddap.marine.ie/erddap/tabledap/spiddal_obs_adcp", "https://erddap.marine.ie/erddap/tabledap/spiddal_obs_adcp.graph", "", "", "SmartBay Observatory ADCP data", "The SmartBay Observatory in Galway Bay is an underwater observatory which uses cameras, probes \nand sensors to permit continuous and remote live underwater monitoring. It was installed in 2015 on the seafloor 1.5km off the coast of \nSpiddal, Co. Galway, Ireland at a depth of 20-25m. Underwater observatories allow ocean researchers unique real-time access to monitor \nongoing changes in the marine environment. The Galway Bay Observatory is an important contribution by Ireland to the growing global \nnetwork of real-time data capture systems deployed in the ocean. Data relating to the marine environment at the Galway Observatory site is \ntransferred in real-time through a fibre optic telecommunications cable to the Marine Institute headquarters and then made publically \navailable on the internet. The data includes a live video stream, the depth of the observatory node, the water temperature and salinity, \nand estimates of the chlorophyll and turbidity levels in the water which give an indication of the volume of phytoplankton and other \nparticles, such as sediment, in the water. Maintenance take place on the observatory every 18 to 24 months. A Teledyne RDI Workhorse \nBroadband 600KHz acoustic Doppler current profiler (ADCP ) is mounted on the observatory infrastructure. It is approximately two metres \nabove the seabed, looking up towards the sea surface. Data are collected every minute for 1.0m depth bins from approx. 1 metre above the \ninstrument to the surface. Data are collected in RDI's PD0 binary format (more information is available from the link: \nhttp://spiddal.marine.ie/data.html#adcp). The .PD0 raw files are processed as they are collected and the real time values for the Near \nSurface and Mid Water Current Speeds and Directions are extracted. The extracted values are displayed in near-real-time on \nsmartbay.marine.ie. The processed data is also provided via an ERDDAP data server allowing the data to be downloaded in a range of open \nformats. The sensor is deployed on the EMSO Smartbay Cable End Equipment Node in Galway Bay in approx. 25m depth of water.\n\ncdm_data_type = Point\nVARIABLES:\ninstrument_id\n... (30 more variables)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/spiddal_obs_adcp_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/spiddal_obs_adcp_iso19115.xml", "https://erddap.marine.ie/erddap/info/spiddal_obs_adcp/index.json", "http://data.marine.ie/geonetwork/srv/eng/catalog.search#/metadata/ie.marine.data:dataset.2820", "https://erddap.marine.ie/erddap/rss/spiddal_obs_adcp.rss", "Marine Institute", "spiddal_obs_adcp"], + ["", "https://erddap.marine.ie/erddap/tabledap/spiddal_obs_ctd.subset", "https://erddap.marine.ie/erddap/tabledap/spiddal_obs_ctd", "https://erddap.marine.ie/erddap/tabledap/spiddal_obs_ctd.graph", "", "", "SmartBay Observatory CTD data", "The SmartBay Observatory in Galway Bay is an underwater observatory which uses \ncameras, probes and sensors to permit continuous and remote live underwater monitoring. It was installed in 2015 \non the seafloor 1.5km off the coast of Spiddal, Co. Galway, Ireland at a depth of 20-25m. Underwater \nobservatories allow ocean researchers unique real-time access to monitor ongoing changes in the marine \nenvironment. The Galway Bay Observatory is an important contribution by Ireland to the growing global network of \nreal-time data capture systems deployed in the ocean. Data relating to the marine environment at the Galway \nObservatory site is transferred in real-time through a fibre optic telecommunications cable to the Marine \nInstitute headquarters and then made publically available on the internet. The data includes a live video \nstream, the depth of the observatory node, the water temperature and salinity, and estimates of the chlorophyll \nand turbidity levels in the water which give an indication of the volume of phytoplankton and other particles, \nsuch as sediment, in the water. Maintenance take place on the observatory every 18 to 24 months. This CTD \n(Conductivity, Temperature, Depth) and Oxygen Dataset comprises of the raw data that is collected from the \nGalway Observatory site using an Idronaut Ocean-Seven 304 plus Conductivity-Temperature-Depth (CTD) sensor \nprobe. The sensor measures the temperature and conductivity of the seawater. The conductivity is used to \ncalculate an estimate of the salinity. The pressure exerted by the seawater above is used to calculate the depth \nof the sensor, and these parameters are also used to estimate the speed of sound within the sea. The Ocean-Seven \n304 Plus CTD has also been equipped with a polarographic IDRONAUT dissolved oxygen sensor which measure the \ndissolved oxygen concentration of the seawater. The sensor is deployed on the EMSO Smartbay Cable End Equipment \nNode in Galway Bay in approx. 25m depth of water.\n\ncdm_data_type = Point\nVARIABLES:\ninstrument_id\n... (12 more variables)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/spiddal_obs_ctd_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/spiddal_obs_ctd_iso19115.xml", "https://erddap.marine.ie/erddap/info/spiddal_obs_ctd/index.json", "http://data.marine.ie/geonetwork/srv/eng/catalog.search#/metadata/ie.marine.data:dataset.2837", "https://erddap.marine.ie/erddap/rss/spiddal_obs_ctd.rss", "Marine Institute", "spiddal_obs_ctd"], + ["", "https://erddap.marine.ie/erddap/tabledap/galway_obs_fluorometer.subset", "https://erddap.marine.ie/erddap/tabledap/galway_obs_fluorometer", "https://erddap.marine.ie/erddap/tabledap/galway_obs_fluorometer.graph", "", "", "SmartBay Observatory Fluorometer data", "The SmartBay Observatory in Galway Bay is an underwater observatory which uses \ncameras, probes and sensors to permit continuous and remote live underwater monitoring. It was installed in 2015 \non the seafloor 1.5km off the coast of Spiddal, Co. Galway, Ireland at a depth of 20-25m. Underwater \nobservatories allow ocean researchers unique real-time access to monitor ongoing changes in the marine \nenvironment. The Galway Bay Observatory is an important contribution by Ireland to the growing global network of \nreal-time data capture systems deployed in the ocean. Data relating to the marine environment at the Galway \nObservatory site is transferred in real-time through a fibre optic telecommunications cable to the Marine \nInstitute headquarters and then made publically available on the internet. The data includes a live video \nstream, the depth of the observatory node, the water temperature and salinity, and estimates of the chlorophyll \nand turbidity levels in the water which give an indication of the volume of phytoplankton and other particles, \nsuch as sediment, in the water. Maintenance take place on the observatory every 18 to 24 months. A WetLabs \nECO-FLNTU is installed on the observatory infrastructure. It measures the fluorescence of the seawater to give \nan estimate of the volume of chlorophyll present (indicative of the amount of phytoplankton in the seawater) and \nit measures turbidity, or the 'cloudiness' of the seawater, caused by the presence of particles such as sediment \nfrom the seabed suspended in the water. The sensor is deployed on the EMSO Smartbay Cable End Equipment Node in \nGalway Bay in approx. 25m depth of water.\n\ncdm_data_type = Point\nVARIABLES:\ninstrument_id\n... (13 more variables)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/galway_obs_fluorometer_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/galway_obs_fluorometer_iso19115.xml", "https://erddap.marine.ie/erddap/info/galway_obs_fluorometer/index.json", "http://data.marine.ie/geonetwork/srv/eng/catalog.search#/metadata/ie.marine.data:dataset.3879", "https://erddap.marine.ie/erddap/rss/galway_obs_fluorometer.rss", "Marine Institute", "galway_obs_fluorometer"], + ["", "https://erddap.marine.ie/erddap/tabledap/galway_obs_hydrophone.subset", "https://erddap.marine.ie/erddap/tabledap/galway_obs_hydrophone", "https://erddap.marine.ie/erddap/tabledap/galway_obs_hydrophone.graph", "", "", "SmartBay Observatory Hydrophone data", "The SmartBay Observatory in Galway Bay is an underwater observatory which uses \ncameras, probes and sensors to permit continuous and remote live underwater monitoring. It was installed in 2015 \non the seafloor 1.5km off the coast of Spiddal, Co. Galway, Ireland at a depth of 20-25m. Underwater \nobservatories allow ocean researchers unique real-time access to monitor ongoing changes in the marine \nenvironment. The SmartBay Observatory is an important contribution by Ireland to the growing global network of \nreal-time data capture systems deployed in the ocean. Data relating to the marine environment at the SmartBay \nObservatory site is transferred in real-time through a fibre optic telecommunications cable to the Marine \nInstitute headquarters and then made publically available on the internet. The data includes a live video \nstream, the depth of the observatory node, the water temperature and salinity, and estimates of the chlorophyll \nand turbidity levels in the water which give an indication of the volume of phytoplankton and other particles, \nsuch as sediment, in the water. Maintenance take place on the observatory every 18 to 24 months.This dataset \ncomprises of processed acoustic data that has been collected from the SmartBay Observatory using an icListen HF \nSmart Hydrophone \u2013 a digital hydrophone that processes and stores acoustic data. The dataset comprises of \nprocessed data, collected from the SmartBay Observatory since its installation in 2015. The wide frequency range \nhydrophone is installed on a separate lander approximately 30m away from the EMSO Smartbay Cable End Equipment \nNode in Galway Bay in approx. 25m depth of water at 53 degrees 13.640'N 9 degrees 15.979'W.\n\ncdm_data_type = Point\nVARIABLES:\ndevice\n... (17 more variables)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/galway_obs_hydrophone_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/galway_obs_hydrophone_iso19115.xml", "https://erddap.marine.ie/erddap/info/galway_obs_hydrophone/index.json", "http://data.marine.ie/geonetwork/srv/eng/catalog.search#/metadata/ie.marine.data:dataset.2939", "https://erddap.marine.ie/erddap/rss/galway_obs_hydrophone.rss", "Marine Institute", "galway_obs_hydrophone"], + ["", "https://erddap.marine.ie/erddap/tabledap/SouthRockallTrough.subset", "https://erddap.marine.ie/erddap/tabledap/SouthRockallTrough", "https://erddap.marine.ie/erddap/tabledap/SouthRockallTrough.graph", "", "", "South Rockall Trough Sub-surface Mooring Pilot Deployment (October 2018 - May 2019) - CTD Data", "This dataset contains raw water temperature, conductivity (derived salinity) and pressure data from CTD instruments from a pilot deep water mooring deployed at a site (15.52 degrees West, 52.999 degrees North) in the South Rockall Trough close to the M6 met-ocean buoy. The pilot sub-surface mooring was deployed in October 2018, then retrieved in May 2019 and consisted of an array of 10 Sea-Bird SBE 37 CTD sensors at a series of fixed depths below the surface (500m, 625m, 750m, 1000m, 1250m, 1500m, 1750m, 2000m, 2500m, 3000m). This subsurface mooring pilot deployment collected data providing a short intra-annual time-series (~8 months) and complements the annual Marine Institute oceanographic survey to the South Rockall Trough, which has taken place since 2004 weather conditions permitting. The CTD sensors were fully calibrated by Sea-Bird in Germany both pre and post deployment. Additional sensors on the mooring include ADCP sensors to measure ocean currents and direction. The mooring was built, deployed and managed by the Marine Institute through discretionary Marine Institute funding and loan of sensors from the National University of Ireland Galway (NUIG). At present there are no operational or project funds available to maintain a continuous series of moorings at the South Rockall Trough location but when logistics and infrastructure are available future deployments may take place. The data from the deployment help understand the variability in the water column not visible at the surface and provide context to CTD profile data collected at 12-18 month resolution in the South Rockall Trough. These data are vital in understanding the likely impact of future ocean climate scenarios on key marine sectors as well as understanding possible impacts on ecosystem in the North East Atlantic Ocean.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nmidgid (Marine Institute Data Granule Identifier)\nsdn_local_cdi_id (SeaDataNet local CDI ID)\narray (Array of stations and platforms deployed at these stations.)\nstation_id (Station name)\nsite_bathy_depth (sea floor depth below sea surface, m)\nplatform_name\nplatform_category\nplatform_category_code\nwmo_platform_code\n... (14 more variables)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/SouthRockallTrough_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/SouthRockallTrough_iso19115.xml", "https://erddap.marine.ie/erddap/info/SouthRockallTrough/index.json", "http://data.marine.ie/geonetwork/srv/eng/catalog.search#/metadata/ie.marine.data:dataset.4069", "https://erddap.marine.ie/erddap/rss/SouthRockallTrough.rss", "Marine Institute", "SouthRockallTrough"], + ["", "https://erddap.marine.ie/erddap/tabledap/misbwxAirmar.subset", "https://erddap.marine.ie/erddap/tabledap/misbwxAirmar", "https://erddap.marine.ie/erddap/tabledap/misbwxAirmar.graph", "", "", "Test SmartBay Airmar Weather Station Data", "Smartbay Airmar Weather Station Data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nstation_id\nairTemperature (Air Temperature, degree_C)\nBarometricPressure_mb (Air Pressure, mb)\nWindDirection_DegTrue (WindDirection, degrees_true)\nWindSpeed_Knot (WindSpeed, kn)\nWindSpeed_msec (WindSpeed, meter second-1)\n", "https://erddap.marine.ie/erddap/metadata/fgdc/xml/misbwxAirmar_fgdc.xml", "https://erddap.marine.ie/erddap/metadata/iso19115/xml/misbwxAirmar_iso19115.xml", "https://erddap.marine.ie/erddap/info/misbwxAirmar/index.json", "http://www.smartbay.ie", "https://erddap.marine.ie/erddap/rss/misbwxAirmar.rss", "Smartbay", "misbwxAirmar"] + ] + } + } + recorded_at: 2020-07-15 20:30:04 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 diff --git a/tests/vcr_cassettes/info_url_slash.yml b/tests/vcr_cassettes/info_url_slash.yml new file mode 100644 index 0000000..2a03af1 --- /dev/null +++ b/tests/vcr_cassettes/info_url_slash.yml @@ -0,0 +1,1053 @@ +http_interactions: +- request: + method: get + uri: https://coastwatch.pfeg.noaa.gov/erddap/info/ncdcOisst21Agg_LonPM180/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.64.1 r-curl/4.3.1 crul/1.1.0.93 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Mon, 07 Jun 2021 21:38:17 GMT + x-frame-options: SAMEORIGIN + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=ncdcOisst21Agg_LonPM180_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "Grid"], + ["attribute", "NC_GLOBAL", "comment", "String", "Data was converted from NetCDF-3 to NetCDF-4 format with metadata updates in November 2017."], + ["attribute", "NC_GLOBAL", "Conventions", "String", "CF-1.6, ACDD-1.3, COARDS"], + ["attribute", "NC_GLOBAL", "creator_email", "String", "oisst-help@noaa.gov"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "NOAA NCEI"], + ["attribute", "NC_GLOBAL", "creator_type", "String", "group"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "https://www.ncei.noaa.gov/"], + ["attribute", "NC_GLOBAL", "date_created", "String", "2021-06-06T09:12:00Z"], + ["attribute", "NC_GLOBAL", "date_modified", "String", "2021-06-06T09:12:00Z"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "179.875"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "89.875"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "-89.875"], + ["attribute", "NC_GLOBAL", "geospatial_lat_resolution", "double", "0.25"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "179.875"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "-179.875"], + ["attribute", "NC_GLOBAL", "geospatial_lon_resolution", "double", "0.25"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "history", "String", "Final file created using preliminary as first guess, and 3 days of AVHRR data. Preliminary uses only 1 day of AVHRR data.\nNew files are downloaded daily from https://www.ncei.noaa.gov/data/sea-surface-temperature-optimum-interpolation/v2.1/access/avhrr/ to NOAA NMFS SWFSC ERD by erd.data@noaa.gov ."], + ["attribute", "NC_GLOBAL", "id", "String", "ncdcOisst21NrtAgg"], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "https://doi.org/10.25921/RE9P-PT57"], + ["attribute", "NC_GLOBAL", "institution", "String", "NOAA NCEI"], + ["attribute", "NC_GLOBAL", "instrument", "String", "Earth Remote Sensing Instruments > Passive Remote Sensing > Spectrometers/Radiometers > Imaging Spectrometers/Radiometers > AVHRR > Advanced Very High Resolution Radiometer"], + ["attribute", "NC_GLOBAL", "instrument_vocabulary", "String", "Global Change Master Directory (GCMD) Instrument Keywords"], + ["attribute", "NC_GLOBAL", "keywords", "String", "advanced, analysed, analysis, anomalies, anomaly, avhrr, centers, concentration, daily, data, day, degree, deviation, distribution, earth, Earth Science > Land Surface > Land Temperature > Land Surface Temperature, Earth Science > Oceans > Ocean Temperature > Sea Surface Temperature, environmental, error, estimated, final, high, ice, ice distribution, information, interpolation, land, national, ncei, near, nesdis, noaa, nrt, ocean, oceans, oisst, optimum, radiometer, real, resolution, science, sea, sea_surface_temperature, sst, standard, statistics, surface, surface_temperature_anomaly, temperature, time, version, very, vhrr, zlev"], + ["attribute", "NC_GLOBAL", "keywords_vocabulary", "String", "GCMD Science Keywords"], + ["attribute", "NC_GLOBAL", "license", "String", "The data may be used and redistributed for free but is not intended\nfor legal use, since it may contain inaccuracies. Neither the data\nContributor, ERD, NOAA, nor the United States Government, nor any\nof their employees or contractors, makes any warranty, express or\nimplied, including warranties of merchantability and fitness for a\nparticular purpose, or assumes any legal liability for the accuracy,\ncompleteness, or usefulness, of this information."], + ["attribute", "NC_GLOBAL", "metadata_link", "String", "https://doi.org/10.25921/RE9P-PT57"], + ["attribute", "NC_GLOBAL", "naming_authority", "String", "gov.noaa.pfeg.coastwatch"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "89.875"], + ["attribute", "NC_GLOBAL", "platform", "String", "Ships, buoys, Argo floats, MetOp-A, MetOp-B"], + ["attribute", "NC_GLOBAL", "platform_vocabulary", "String", "Global Change Master Directory (GCMD) Platform Keywords"], + ["attribute", "NC_GLOBAL", "processing_level", "String", "NOAA Level 4"], + ["attribute", "NC_GLOBAL", "product_version", "String", "Version v02r01"], + ["attribute", "NC_GLOBAL", "references", "String", "Reynolds, et al.(2007) Daily High-Resolution-Blended Analyses for Sea Surface Temperature (available at https://doi.org/10.1175/2007JCLI1824.1). Banzon, et al.(2016) A long-term record of blended satellite and in situ sea-surface temperature for climate monitoring, modeling and environmental studies (available at https://doi.org/10.5194/essd-8-165-2016). Huang et al. (2020) Improvements of the Daily Optimum Interpolation Sea Surface Temperature (DOISST) Version v02r01, submitted.Climatology is based on 1971-2000 OI.v2 SST. Satellite data: Pathfinder AVHRR SST and Navy AVHRR SST. Ice data: NCEP Ice and GSFC Ice."], + ["attribute", "NC_GLOBAL", "sensor", "String", "Thermometer, AVHRR"], + ["attribute", "NC_GLOBAL", "source", "String", "ICOADS, NCEP_GTS, GSFC_ICE, NCEP_ICE, Pathfinder_AVHRR, Navy_AVHRR"], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "(local files)"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "-89.875"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v70"], + ["attribute", "NC_GLOBAL", "summary", "String", "This is the final version of the related dataset \"ncdcOisst21NrtAgg\", which has the preliminary, near real time version of these files. These final files are released about 2 weeks after the NRT files. \n \nNOAA/National Centers for Environmental Information (NCEI) 1/4 Degree Daily Optimum Interpolation Sea Surface Temperature (OISST) Analysis, Version 2.1 - Final. NOAAs 1/4-degree Daily Optimum Interpolation Sea Surface Temperature (OISST) (sometimes referred to as Reynolds SST, which however also refers to earlier products at different resolution), currently available as version v02r01, is created by interpolating and extrapolating SST observations from different sources, resulting in a smoothed complete field. The sources of data are satellite (Advanced Very High Resolution Radiometer (AVHRR)) and in situ platforms (i.e., ships and buoys), and the specific datasets employed may change over time. At the marginal ice zone, sea ice concentrations are used to generate proxy SSTs. A preliminary version of this file is produced in near-real time (1-day latency), and then replaced with a final version after 2 weeks. Note that this is the AVHRR-ONLY DOISST, available from Oct 1981, but there is a companion DOISST product that includes microwave satellite data, available from June 2002"], + ["attribute", "NC_GLOBAL", "testOutOfDate", "String", "now-17days"], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2021-05-22T12:00:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "1981-09-01T12:00:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "SST, Daily Optimum Interpolation (OI), AVHRR Only, Version 2.1, Final, Global, 0.25\u00b0, 1981-present, Lon+/-180"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "-179.875"], + ["dimension", "time", "", "double", "nValues=14508, evenlySpaced=false, averageSpacing=1 day 0h 0m 6s"], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "3.681936E8, 1.6216848E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Center time of the day"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["dimension", "zlev", "", "float", "nValues=1, onlyValue=0.0"], + ["attribute", "zlev", "actual_range", "float", "0.0, 0.0"], + ["attribute", "zlev", "ioos_category", "String", "Location"], + ["attribute", "zlev", "long_name", "String", "Sea surface height"], + ["attribute", "zlev", "positive", "String", "down"], + ["attribute", "zlev", "standard_name", "String", "sea_surface_height"], + ["attribute", "zlev", "units", "String", "m"], + ["dimension", "latitude", "", "float", "nValues=720, evenlySpaced=true, averageSpacing=0.25"], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "float", "-89.875, 89.875"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "grids", "String", "Uniform grid from -89.875 to 89.875 by 0.25"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["dimension", "longitude", "", "float", "nValues=1440, evenlySpaced=true, averageSpacing=0.25"], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "float", "-179.875, 179.875"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "grids", "String", "Uniform grid from 0.125 to 359.875 by 0.25"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "sst", "", "float", "time, zlev, latitude, longitude"], + ["attribute", "sst", "_FillValue", "float", "-9.99"], + ["attribute", "sst", "colorBarMaximum", "double", "32.0"], + ["attribute", "sst", "colorBarMinimum", "double", "0.0"], + ["attribute", "sst", "ioos_category", "String", "Temperature"], + ["attribute", "sst", "long_name", "String", "Daily sea surface temperature"], + ["attribute", "sst", "standard_name", "String", "sea_surface_temperature"], + ["attribute", "sst", "units", "String", "degree_C"], + ["attribute", "sst", "valid_max", "float", "45.0"], + ["attribute", "sst", "valid_min", "float", "-3.0"], + ["variable", "anom", "", "float", "time, zlev, latitude, longitude"], + ["attribute", "anom", "_FillValue", "float", "-9.99"], + ["attribute", "anom", "colorBarMaximum", "double", "3.0"], + ["attribute", "anom", "colorBarMinimum", "double", "-3.0"], + ["attribute", "anom", "ioos_category", "String", "Temperature"], + ["attribute", "anom", "long_name", "String", "Daily sea surface temperature anomalies"], + ["attribute", "anom", "standard_name", "String", "surface_temperature_anomaly"], + ["attribute", "anom", "units", "String", "degree_C"], + ["attribute", "anom", "valid_max", "float", "12.0"], + ["attribute", "anom", "valid_min", "float", "-12.0"], + ["variable", "err", "", "float", "time, zlev, latitude, longitude"], + ["attribute", "err", "_FillValue", "float", "-9.99"], + ["attribute", "err", "colorBarMaximum", "double", "0.6"], + ["attribute", "err", "colorBarMinimum", "double", "0.0"], + ["attribute", "err", "colorBarPalette", "String", "WhiteRedBlack"], + ["attribute", "err", "ioos_category", "String", "Statistics"], + ["attribute", "err", "long_name", "String", "Estimated error standard deviation of analysed_sst"], + ["attribute", "err", "units", "String", "degree_C"], + ["attribute", "err", "valid_max", "float", "10.0"], + ["attribute", "err", "valid_min", "float", "0.0"], + ["variable", "ice", "", "float", "time, zlev, latitude, longitude"], + ["attribute", "ice", "_FillValue", "float", "-9.99"], + ["attribute", "ice", "colorBarMaximum", "double", "1.0"], + ["attribute", "ice", "colorBarMinimum", "double", "0.0"], + ["attribute", "ice", "colorBarPalette", "String", "BlackBlueWhite"], + ["attribute", "ice", "ioos_category", "String", "Ice Distribution"], + ["attribute", "ice", "long_name", "String", "Sea ice concentration"], + ["attribute", "ice", "standard_name", "String", "sea_ice_area_fraction"], + ["attribute", "ice", "units", "String", "1"], + ["attribute", "ice", "valid_max", "float", "1.0"], + ["attribute", "ice", "valid_min", "float", "0.0"] + ] + } + } + recorded_at: 2021-06-07 21:38:15 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://coastwatch.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.64.1 r-curl/4.3.1 crul/1.1.0.93 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Mon, 07 Jun 2021 21:38:17 GMT + x-frame-options: SAMEORIGIN + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Mon, 07 Jun 2021 21:38:17 GMT + xdods-server: dods/3.7 + erddap-server: '2.12' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/nodcPJJU/", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testTableWav.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testTableWav", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testTableWav.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/testTableWav/", "public", "Audio data from a local source.", "Audio data from a local source.\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nelapsedTime (Elapsed Time, seconds)\nchannel_1\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/testTableWav/index.json", "???", "http://coastwatch.pfeg.noaa.gov/erddap/rss/testTableWav.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=testTableWav&showErrors=false&email=", "???", "testTableWav"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalnty (Salinity, psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fedCalLandings/", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCAMarCatLM/", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCAMarCatLY/", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCAMarCatSM/", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCAMarCatSY/", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCinpKfmT/", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "https://www.nps.gov/chis/naturescience/index.htm", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCinpKfmSFNH/", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "https://www.nps.gov/chis/naturescience/index.htm", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCinpKfm1Q/", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "https://www.nps.gov/chis/naturescience/index.htm", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCinpKfm5Q/", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "https://www.nps.gov/chis/naturescience/index.htm", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCinpKfmBT/", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "https://www.nps.gov/chis/naturescience/index.htm", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCinpKfmFT/", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "https://www.nps.gov/chis/naturescience/index.htm", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCinpKfmRPC/", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "https://www.nps.gov/chis/naturescience/index.htm", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nsex_undetermined\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://coastwatch.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/prboSefiDiet/", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://coastwatch.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/prboSefiPhen/", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://coastwatch.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/prboSefiPop/", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://coastwatch.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/prboSefiProd/", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://coastwatch.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes17", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes17.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/awsS3NoaaGoes17/", "public", "File Names from the AWS S3 noaa-goes17 Bucket", "This dataset has file information from the AWS S3 noaa-goes17 bucket at https://noaa-goes17.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browser the files in buckets. This dataset is a solution to that problem for this bucket.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/awsS3NoaaGoes17/index.json", "https://registry.opendata.aws/noaa-goes/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/awsS3NoaaGoes17.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3NoaaGoes17&showErrors=false&email=", "NOAA", "awsS3NoaaGoes17"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/scrippsGliders/", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://coastwatch.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdGtsppBest/", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the April 2021 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdGlobecMoc1/", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdGlobecBirds/", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdGlobecCetaceans/", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdGlobecBottle/", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdGlobecVpt/", "public", "GLOBEC NEP Vertical Plankton Tow (VPT) Data, 1997-2001", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nCalifornia Current Program\nVertical Plankton Tow (VPT) Data\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10181&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/vpt%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/vpt.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ncast_no (Cast Number Within the Cruise)\nstation_id\nabund_m3 (Abundance, count m-3)\ncomments\ncounter_id\nd_n_flag (Day/Night Flag)\ngear_area (Mouth Area of Net, m2)\ngear_mesh (Net's Mesh Size, mm)\ngear_type\ngenus_species\nlife_stage\nlocal_code\n... (8 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecVpt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecVpt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdGlobecVpt/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdGlobecVpt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecVpt&showErrors=false&email=", "GLOBEC", "erdGlobecVpt"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdGodaeSfcobs/", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://usgodae.org/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/earthCubeLisirdHistTsi/", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/LiquidR_HBG3_2015_ais/", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/LiquidR_HBG3_2015_c3/", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/LiquidR_HBG3_2015_ctd/", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/LiquidR_HBG3_2015_mose/", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose_v2.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose_v2", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose_v2.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/LiquidR_HBG3_2015_mose_v2/", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE, version 2", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE (version 2, from Cara Wilson). The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nwave_height (m)\naverage_wave_period (s)\ndominant_wave_period (s)\nwave_direction (degrees_true)\nnumber_averaged_spectra\nnumber_of_samples_per_spectrum\nnumber_of_sample_gaps\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_v2_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_v2_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose_v2/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose_v2.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose_v2&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose_v2"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/LiquidR_HBG3_2015_phytoflash/", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/LiquidR_HBG3_2015_telemetry/", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/LiquidR_HBG3_2015_weather/", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/cwwcNDBCMet/", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys. See\nhttps://www.ndbc.noaa.gov/measdes.shtml for a description of the measurements.\n\nThe source data from NOAA NDBC has different column names, different units,\nand different missing values in different files, and other problems\n(notably, lots of rows with duplicate or different values for the same time\npoint). This dataset is a standardized, reformatted, and lightly edited\nversion of that source data, created by NOAA NMFS SWFSC ERD (email:\nerd.data at noaa.gov). Before 2020-01-29, this dataset only had the data\nthat was closest to a given hour, rounded to the nearest hour. Now, this\ndataset has all of the data available from NDBC with the original time\nvalues. If there are multiple source rows for a given buoy for a given\ntime, only the row with the most non-NaN data values is kept. If there is\na gap in the data, a row of missing values is inserted (which causes a nice\ngap when the data is graphed). Also, some impossible data values are\nremoved, but this data is not perfectly clean. This dataset is now updated\nevery 5 minutes.\n\nThis dataset has both historical data (quality controlled, before\n2021-05-01T00:00:00Z) and near real time data (less quality controlled,\nwhich may change at any time, from 2021-05-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Identifier)\n... (19 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdNewportCtd/", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "https://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp.graph", "", "", "public", "NOAA NDBC SOS, 2006-present, sea_water_temperature", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_water_temperature data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWTemp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWTemp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/ndbcSosWTemp/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/ndbcSosWTemp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWTemp&showErrors=false&email=", "NOAA NDBC", "ndbcSosWTemp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind.graph", "", "", "public", "NOAA NDBC SOS, 2006-present, winds", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have winds data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwind_from_direction (degrees_true)\nwind_speed (m s-1)\nwind_speed_of_gust (m s-1)\nupward_air_velocity (m s-1)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWind_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWind_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/ndbcSosWind/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/ndbcSosWind.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWind&showErrors=false&email=", "NOAA NDBC", "ndbcSosWind"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents.graph", "", "", "public", "NOAA NDBC SOS, 2007-present, currents", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have currents data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\nWARNING: Always check the quality_flags before using this data. A simple criterion is: only use a row of data if the first quality_flags value for the row (overall bin status) is 3 (good data/passed quality test). You can do this by appending &quality_flags=~\"3;.*\" to your request.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nbin (count)\ndirection_of_sea_water_velocity (degrees_true)\nsea_water_speed (cm/s)\nupward_sea_water_velocity (cm/s)\nerror_velocity (cm/s)\nplatform_orientation (degrees_true)\nplatform_pitch_angle (degree)\nplatform_roll_angle (degree)\nsea_water_temperature (Cel)\npct_good_3_beam (Percent Good 3 Beam, percent)\npct_good_4_beam (Percent Good 4 Beam, percent)\npct_rejected (Percent Rejected, percent)\npct_bad (Percent Bad, percent)\n... (9 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosCurrents_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosCurrents_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/ndbcSosCurrents/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/ndbcSosCurrents.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosCurrents&showErrors=false&email=", "NOAA NDBC", "ndbcSosCurrents"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity.graph", "", "", "public", "NOAA NDBC SOS, 2007-present, sea_water_practical_salinity", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_water_practical_salinity data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosSalinity_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosSalinity_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/ndbcSosSalinity/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/ndbcSosSalinity.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosSalinity&showErrors=false&email=", "NOAA NDBC", "ndbcSosSalinity"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel.graph", "", "", "public", "NOAA NDBC SOS, 2008-present, sea_floor_depth_below_sea_surface", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_floor_depth_below_sea_surface data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\naveraging_interval (s)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWLevel_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWLevel_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/ndbcSosWLevel/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/ndbcSosWLevel.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWLevel&showErrors=false&email=", "NOAA NDBC", "ndbcSosWLevel"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEDnrt/", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTED/", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDK/", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipKNBD/", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEBnrt/", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEB/", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEKnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEKnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEKnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEKnrt/", "public", "NOAA Ship Ferdinand Hassler Underway Meteorological Data, Near Real Time", "NOAA Ship Ferdinand Hassler Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEKnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEKnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEKnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEKnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEKnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEKnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEK.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEK", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEK.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEK/", "public", "NOAA Ship Ferdinand Hassler Underway Meteorological Data, Quality Controlled", "NOAA Ship Ferdinand Hassler Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEK_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEK_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEK/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEK.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEK&showErrors=false&email=", "FSU", "fsuNoaaShipWTEK"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEOnrt/", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEO/", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDFnrt/", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDF/", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEYnrt/", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEY/", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEU/", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEJ/", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDM/", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTERnrt/", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTER/", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDHnrt/", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDH/", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDOnrt/", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDO/", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEPnrt/", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEP/", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEEnrt/", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEE/", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDLnrt/", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDL/", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEFnrt/", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEF/", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEGnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEGnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEGnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEGnrt/", "public", "NOAA Ship Reuben Lasker Underway Meteorological Data, Near Real Time", "NOAA Ship Reuben Lasker Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEGnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEGnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEGnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEGnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEGnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEGnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEG.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEG", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEG.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEG/", "public", "NOAA Ship Reuben Lasker Underway Meteorological Data, Quality Controlled", "NOAA Ship Reuben Lasker Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEG_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEG_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEG/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEG.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEG&showErrors=false&email=", "FSU", "fsuNoaaShipWTEG"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTECnrt/", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEC/", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEA.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEA", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEA.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEA/", "public", "NOAA Ship Thomas Jefferson Underway Meteorological Data, Quality Controlled", "NOAA Ship Thomas Jefferson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEA_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEA_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEA/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEA.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEA&showErrors=false&email=", "FSU", "fsuNoaaShipWTEA"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/noaaSanctSoundRelated.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/noaaSanctSoundRelated", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/noaaSanctSoundRelated/", "public", "NOAA-Navy Sanctuary Soundscapes Monitoring Project -- Access", "This dataset has a row for each chunk of hydrophone data from the hydrophone at [some site] and columns for different types of files related to that data: the start of the raw audio data, the frequency-domain audio spectrogram data, and an image of the audio spectrogram data.\n\ncdm_data_type = Other\nVARIABLES:\nsite\npsdID\npsdNetcdfFile\npsdCsvFile (psdCsvFilee)\nolID\nolNetcdfFile\nolCsvFile (olCsvFilee)\ntolID\ntolNetcdfFile\ntolCsvFile (tolCsvFilee)\nbbID\nbbNetcdfFile\nbbCsvFile (bbCsvFilee)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/noaaSanctSoundRelated/index.json", "https://www.ngdc.noaa.gov/mgg/pad/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/noaaSanctSoundRelated.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaaSanctSoundRelated&showErrors=false&email=", "NOAA NCEI", "noaaSanctSoundRelated"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/noaaSanctSoundFileAccess.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/noaaSanctSoundFileAccess", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/noaaSanctSoundFileAccess.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/noaaSanctSoundFileAccess/", "public", "NOAA-Navy Sanctuary Soundscapes Monitoring Project -- File Access", "This dataset makes the NOAA-Navy Sanctuary Soundscapes Monitoring Project Files available for download.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nsite\nsample\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/noaaSanctSoundFileAccess/index.json", "https://www.ngdc.noaa.gov/mgg/pad/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/noaaSanctSoundFileAccess.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaaSanctSoundFileAccess&showErrors=false&email=", "NOAA NCEI", "noaaSanctSoundFileAccess"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdNph/", "public", "North Pacific High, 1967 - 2014", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdPcui/", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - 2013", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWDC9417nrt/", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipKAQP/", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipKAQPnrt/", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipNEPP/", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWDA7827nrt/", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipKCEJ/", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWCX7445nrt/", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWECBnrt/", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWBP3210/", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWBP3210nrt/", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWKWBnrt/", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWXAQ/", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWSQ2674nrt/", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipKAOUnrt/", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipVLHJ/", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipKTDQnrt/", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipZMFRnrt/", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://coastwatch.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "https://tidesandcurrents.noaa.gov/gomoos.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "SFSU EOS Carqinez YSI Archived data", "Raw water quality data collected from a fixed pier at 1 meter below mean lower low water. Instrument collecting data is a YSI 6600 V4 sonde with a conductivity/temperature probe, strain gauge pressure sensor, optical dissolved oxygen probe, optical fluorescence chlorophyll probe, optical fluorescence turbidity probe and potentiometric glass bulb pH probe. Data are raw and not flagged or curated in any manner other than curtailed for deployment periods where the YSI sonde is deployed in the water. Download at your own risk. These data may be used and redistributed for free but they are not intended for legal use, since they may contain inaccuracies. For use for publications please reference the Central and Northern California Ocean Observing system (CeNCOOS) and NOAA. Neither the data provider, CeNCOOS, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, or this information. Please see http://erddap.cencoos.org/erddap/tabledap/carquinez.html for QA/QC data with flagging.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://coastalobservations.sfsu.edu", "http://coastwatch.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "SFSU EOS", "rtcctdCMAysi"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "SFSU EOS Carqinez YSI Raw data", "Raw water quality data collected from a fixed pier at 1 meter below mean lower low water. Instrument collecting data is a YSI 6600 V4 sonde with a conductivity/temperature probe, strain gauge pressure sensor, optical dissolved oxygen probe, optical fluorescence chlorophyll probe, optical fluorescence turbidity probe and potentiometric glass bulb pH probe. Data are raw and not flagged or curated in any manner other than curtailed for deployment periods where the YSI sonde is deployed in the water. Download at your own risk. These data may be used and redistributed for free but they are not intended for legal use, since they may contain inaccuracies. For use for publications please reference the Central and Northern California Ocean Observing system (CeNCOOS) and NOAA. Neither the data provider, CeNCOOS, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, or this information. Please see http://erddap.cencoos.org/erddap/tabledap/carquinez.html for QA/QC data with flagging.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://coastalobservations.sfsu.edu", "http://coastwatch.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "SFSU EOS", "rtcctdCMAysirt"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "SFSU EOS MetStation Archived data", "Raw meteorological data collected with a Campbell Scientific CR-1000 weather station with wind speed, wind direction, temperature, humidity, barometric pressure, rain gauge and solar irradiation sensors. Data are raw and not flagged or curated in any manner other than curtailed for deployment periods where all sensors are functional. These data may be used and redistributed for free but they are not intended for legal use, since they may contain inaccuracies. For use for publications please reference the Central and Northern California Ocean Observing system (CeNCOOS) and NOAA. Neither the data provider, CeNCOOS, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, or this information.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://coastalobservations.sfsu.edu", "http://coastwatch.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "SFSU EOS", "rtcmet"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "SFSU EOS MetStation real time data", "Raw meteorological data collected with a Campbell Scientific CR-1000 weather station with wind speed, wind direction, temperature, humidity, barometric pressure, rain gauge and solar irradiation sensors. Data are raw and not flagged or curated in any manner other than curtailed for deployment periods where all sensors are functional. These data may be used and redistributed for free but they are not intended for legal use, since they may contain inaccuracies. For use for publications please reference the Central and Northern California Ocean Observing system (CeNCOOS) and NOAA. Neither the data provider, CeNCOOS, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, or this information.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://coastalobservations.sfsu.edu", "http://coastwatch.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "SFSU EOS", "rtcmetrt"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "SFSU EOS Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://coastalobservations.sfsu.edu", "http://coastwatch.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "SFSU EOS", "rtcctdSeabird"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "SFSU EOS YSI Archived data", "Raw water quality data collected from a fixed pier at 1 meter below mean lower low water. Instrument collecting data is a YSI 6600 V4 sonde with a conductivity/temperature probe, strain gauge pressure sensor, optical dissolved oxygen probe, optical fluorescence chlorophyll probe, optical fluorescence turbidity probe and potentiometric glass bulb pH probe. Data are raw and not flagged or curated in any manner other than curtailed for deployment periods where the YSI sonde is deployed in the water. Download at your own risk. These data may be used and redistributed for free but they are not intended for legal use, since they may contain inaccuracies. For use for publications please reference the Central and Northern California Ocean Observing system (CeNCOOS) and NOAA. Neither the data provider, CeNCOOS, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, or this information. Please see http://erddap.cencoos.org/erddap/tabledap/tiburon-water-tibc1.html for QA/QC data with flagging.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://coastalobservations.sfsu.edu", "http://coastwatch.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "SFSU EOS", "rtcctdRTCysi"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "SFSU EOS YSI Raw data", "Raw water quality data collected from a fixed pier at 1 meter below mean lower low water. Instrument collecting data is a YSI 6600 V4 sonde with a conductivity/temperature probe, strain gauge pressure sensor, optical dissolved oxygen probe, optical fluorescence chlorophyll probe, optical fluorescence turbidity probe and potentiometric glass bulb pH probe. Data are raw and not flagged or curated in any manner other than curtailed for deployment periods where the YSI sonde is deployed in the water. Download at your own risk. These data may be used and redistributed for free but they are not intended for legal use, since they may contain inaccuracies. For use for publications please reference the Central and Northern California Ocean Observing system (CeNCOOS) and NOAA. Neither the data provider, CeNCOOS, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, or this information. Please see http://erddap.cencoos.org/erddap/tabledap/tiburon-water-tibc1.html for QA/QC data with flagging.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://coastalobservations.sfsu.edu", "http://coastwatch.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "SFSU EOS", "rtcctdRTCysirt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdFedRockfishCtd/", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdFedRockfishStation/", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdPrdCtd/", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/main.aspx?Division=PRD&ParentMenuId=147&id=1221", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayIso/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayAirt/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayCur/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5daySst/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayT/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayW/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayDyn/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayHeat/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayPos/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayD/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayS/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayAdcp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2020, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayEvap/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayQlat/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayRh/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayQsen/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayTau/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayRad/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5daySwnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5daySss/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5daySsd/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayEmp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayRf/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayRain/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayBp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayBf/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayLw/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayLwnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayQnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyIso/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyAirt/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyCur/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDySst/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyT/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyW/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyDyn/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyHeat/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyPos/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyD/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyS/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyAdcp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2020, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyEvap/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyQlat/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyRh/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyQsen/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyTau/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyRad/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDySwnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDySss/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDySsd/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyEmp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyRf/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyRain/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyBp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyBf/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyLw/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyLwnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyQnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonIso/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonAirt/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonCur/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonSst/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonT/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonW/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonDyn/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonHeat/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonPos/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonD/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonS/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonAdcp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonEvap/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonQlat/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonRh/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonQsen/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonTau/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonRad/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonSwnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonSss/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonSsd/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonEmp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonRf/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonRain/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonBp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonBf/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonLw/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonLwnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonQnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtRad/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtIso/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtAirt/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtCur/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtSst/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtT/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtW/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtDyn/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtHeat/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtPos/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtD/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtS/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtAdcp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2020, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtEvap/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtQlat/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtRh/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtQsen/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtTau/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtSwnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtSss/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtSsd/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtEmp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtRf/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtRain/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtBp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtBf/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtLw/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtLwnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtQnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testMediaFiles.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testMediaFiles", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testMediaFiles.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/testMediaFiles/", "public", "Test Media Files", "This dataset lets you test viewing various media files in ERDDAP. \nUse the /files/ option for this dataset and hover over the '?' icon for each \nfile in order to view it.\n\nWARNING: THESE WON'T ALL WORK! \nThese viewers/players are built into browsers. \nDifferent browsers on different operating systems support different media file types.\nCurrently, no browser supports all media file types.\nSome files work partially, e.g., the audio player often displays the wrong duration.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/testMediaFiles/index.json", "https://www.pfeg.noaa.gov/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/testMediaFiles.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=testMediaFiles&showErrors=false&email=", "NOAA SWFSC ERD", "testMediaFiles"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testPrivateAwsS3MediaFiles.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testPrivateAwsS3MediaFiles", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testPrivateAwsS3MediaFiles.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/testPrivateAwsS3MediaFiles/", "public", "Test Private AWS S3 Media Files", "This dataset lets you test viewing various media files in ERDDAP. \nUse the /files/ option for this dataset and hover over the '?' icon for each \nfile in order to view it.\n\nWARNING: THESE WON'T ALL WORK! \nThese viewers/players are built into browsers. \nDifferent browsers on different operating systems support different media file types.\nCurrently, no browser supports all media file types.\nSome files work partially, e.g., the audio player often displays the wrong duration.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/testPrivateAwsS3MediaFiles/index.json", "https://www.pfeg.noaa.gov/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/testPrivateAwsS3MediaFiles.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=testPrivateAwsS3MediaFiles&showErrors=false&email=", "NOAA SWFSC ERD", "testPrivateAwsS3MediaFiles"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testPublicAwsS3MediaFiles.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testPublicAwsS3MediaFiles", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testPublicAwsS3MediaFiles.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/testPublicAwsS3MediaFiles/", "public", "Test Public AWS S3 Media Files", "This dataset lets you test viewing various media files in ERDDAP. \nUse the /files/ option for this dataset and hover over the '?' icon for each \nfile in order to view it.\n\nWARNING: THESE WON'T ALL WORK! \nThese viewers/players are built into browsers. \nDifferent browsers on different operating systems support different media file types.\nCurrently, no browser supports all media file types.\nSome files work partially, e.g., the audio player often displays the wrong duration.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/testPublicAwsS3MediaFiles/index.json", "https://www.pfeg.noaa.gov/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/testPublicAwsS3MediaFiles.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=testPublicAwsS3MediaFiles&showErrors=false&email=", "NOAA SWFSC ERD", "testPublicAwsS3MediaFiles"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/earthCubeKgsBoreTempWV/", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "https://www.wvgs.wvnet.edu/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"] + ] + } + } + recorded_at: 2021-06-07 21:38:15 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://coastwatch.pfeg.noaa.gov/erddap/info/ncdcOisst21Agg_LonPM180/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.64.1 r-curl/4.3.1 crul/1.1.0.93 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Mon, 07 Jun 2021 21:38:17 GMT + x-frame-options: SAMEORIGIN + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=ncdcOisst21Agg_LonPM180_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "Grid"], + ["attribute", "NC_GLOBAL", "comment", "String", "Data was converted from NetCDF-3 to NetCDF-4 format with metadata updates in November 2017."], + ["attribute", "NC_GLOBAL", "Conventions", "String", "CF-1.6, ACDD-1.3, COARDS"], + ["attribute", "NC_GLOBAL", "creator_email", "String", "oisst-help@noaa.gov"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "NOAA NCEI"], + ["attribute", "NC_GLOBAL", "creator_type", "String", "group"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "https://www.ncei.noaa.gov/"], + ["attribute", "NC_GLOBAL", "date_created", "String", "2021-06-06T09:12:00Z"], + ["attribute", "NC_GLOBAL", "date_modified", "String", "2021-06-06T09:12:00Z"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "179.875"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "89.875"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "-89.875"], + ["attribute", "NC_GLOBAL", "geospatial_lat_resolution", "double", "0.25"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "179.875"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "-179.875"], + ["attribute", "NC_GLOBAL", "geospatial_lon_resolution", "double", "0.25"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "history", "String", "Final file created using preliminary as first guess, and 3 days of AVHRR data. Preliminary uses only 1 day of AVHRR data.\nNew files are downloaded daily from https://www.ncei.noaa.gov/data/sea-surface-temperature-optimum-interpolation/v2.1/access/avhrr/ to NOAA NMFS SWFSC ERD by erd.data@noaa.gov ."], + ["attribute", "NC_GLOBAL", "id", "String", "ncdcOisst21NrtAgg"], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "https://doi.org/10.25921/RE9P-PT57"], + ["attribute", "NC_GLOBAL", "institution", "String", "NOAA NCEI"], + ["attribute", "NC_GLOBAL", "instrument", "String", "Earth Remote Sensing Instruments > Passive Remote Sensing > Spectrometers/Radiometers > Imaging Spectrometers/Radiometers > AVHRR > Advanced Very High Resolution Radiometer"], + ["attribute", "NC_GLOBAL", "instrument_vocabulary", "String", "Global Change Master Directory (GCMD) Instrument Keywords"], + ["attribute", "NC_GLOBAL", "keywords", "String", "advanced, analysed, analysis, anomalies, anomaly, avhrr, centers, concentration, daily, data, day, degree, deviation, distribution, earth, Earth Science > Land Surface > Land Temperature > Land Surface Temperature, Earth Science > Oceans > Ocean Temperature > Sea Surface Temperature, environmental, error, estimated, final, high, ice, ice distribution, information, interpolation, land, national, ncei, near, nesdis, noaa, nrt, ocean, oceans, oisst, optimum, radiometer, real, resolution, science, sea, sea_surface_temperature, sst, standard, statistics, surface, surface_temperature_anomaly, temperature, time, version, very, vhrr, zlev"], + ["attribute", "NC_GLOBAL", "keywords_vocabulary", "String", "GCMD Science Keywords"], + ["attribute", "NC_GLOBAL", "license", "String", "The data may be used and redistributed for free but is not intended\nfor legal use, since it may contain inaccuracies. Neither the data\nContributor, ERD, NOAA, nor the United States Government, nor any\nof their employees or contractors, makes any warranty, express or\nimplied, including warranties of merchantability and fitness for a\nparticular purpose, or assumes any legal liability for the accuracy,\ncompleteness, or usefulness, of this information."], + ["attribute", "NC_GLOBAL", "metadata_link", "String", "https://doi.org/10.25921/RE9P-PT57"], + ["attribute", "NC_GLOBAL", "naming_authority", "String", "gov.noaa.pfeg.coastwatch"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "89.875"], + ["attribute", "NC_GLOBAL", "platform", "String", "Ships, buoys, Argo floats, MetOp-A, MetOp-B"], + ["attribute", "NC_GLOBAL", "platform_vocabulary", "String", "Global Change Master Directory (GCMD) Platform Keywords"], + ["attribute", "NC_GLOBAL", "processing_level", "String", "NOAA Level 4"], + ["attribute", "NC_GLOBAL", "product_version", "String", "Version v02r01"], + ["attribute", "NC_GLOBAL", "references", "String", "Reynolds, et al.(2007) Daily High-Resolution-Blended Analyses for Sea Surface Temperature (available at https://doi.org/10.1175/2007JCLI1824.1). Banzon, et al.(2016) A long-term record of blended satellite and in situ sea-surface temperature for climate monitoring, modeling and environmental studies (available at https://doi.org/10.5194/essd-8-165-2016). Huang et al. (2020) Improvements of the Daily Optimum Interpolation Sea Surface Temperature (DOISST) Version v02r01, submitted.Climatology is based on 1971-2000 OI.v2 SST. Satellite data: Pathfinder AVHRR SST and Navy AVHRR SST. Ice data: NCEP Ice and GSFC Ice."], + ["attribute", "NC_GLOBAL", "sensor", "String", "Thermometer, AVHRR"], + ["attribute", "NC_GLOBAL", "source", "String", "ICOADS, NCEP_GTS, GSFC_ICE, NCEP_ICE, Pathfinder_AVHRR, Navy_AVHRR"], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "(local files)"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "-89.875"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v70"], + ["attribute", "NC_GLOBAL", "summary", "String", "This is the final version of the related dataset \"ncdcOisst21NrtAgg\", which has the preliminary, near real time version of these files. These final files are released about 2 weeks after the NRT files. \n \nNOAA/National Centers for Environmental Information (NCEI) 1/4 Degree Daily Optimum Interpolation Sea Surface Temperature (OISST) Analysis, Version 2.1 - Final. NOAAs 1/4-degree Daily Optimum Interpolation Sea Surface Temperature (OISST) (sometimes referred to as Reynolds SST, which however also refers to earlier products at different resolution), currently available as version v02r01, is created by interpolating and extrapolating SST observations from different sources, resulting in a smoothed complete field. The sources of data are satellite (Advanced Very High Resolution Radiometer (AVHRR)) and in situ platforms (i.e., ships and buoys), and the specific datasets employed may change over time. At the marginal ice zone, sea ice concentrations are used to generate proxy SSTs. A preliminary version of this file is produced in near-real time (1-day latency), and then replaced with a final version after 2 weeks. Note that this is the AVHRR-ONLY DOISST, available from Oct 1981, but there is a companion DOISST product that includes microwave satellite data, available from June 2002"], + ["attribute", "NC_GLOBAL", "testOutOfDate", "String", "now-17days"], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2021-05-22T12:00:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "1981-09-01T12:00:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "SST, Daily Optimum Interpolation (OI), AVHRR Only, Version 2.1, Final, Global, 0.25\u00b0, 1981-present, Lon+/-180"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "-179.875"], + ["dimension", "time", "", "double", "nValues=14508, evenlySpaced=false, averageSpacing=1 day 0h 0m 6s"], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "3.681936E8, 1.6216848E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Center time of the day"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["dimension", "zlev", "", "float", "nValues=1, onlyValue=0.0"], + ["attribute", "zlev", "actual_range", "float", "0.0, 0.0"], + ["attribute", "zlev", "ioos_category", "String", "Location"], + ["attribute", "zlev", "long_name", "String", "Sea surface height"], + ["attribute", "zlev", "positive", "String", "down"], + ["attribute", "zlev", "standard_name", "String", "sea_surface_height"], + ["attribute", "zlev", "units", "String", "m"], + ["dimension", "latitude", "", "float", "nValues=720, evenlySpaced=true, averageSpacing=0.25"], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "float", "-89.875, 89.875"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "grids", "String", "Uniform grid from -89.875 to 89.875 by 0.25"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["dimension", "longitude", "", "float", "nValues=1440, evenlySpaced=true, averageSpacing=0.25"], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "float", "-179.875, 179.875"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "grids", "String", "Uniform grid from 0.125 to 359.875 by 0.25"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "sst", "", "float", "time, zlev, latitude, longitude"], + ["attribute", "sst", "_FillValue", "float", "-9.99"], + ["attribute", "sst", "colorBarMaximum", "double", "32.0"], + ["attribute", "sst", "colorBarMinimum", "double", "0.0"], + ["attribute", "sst", "ioos_category", "String", "Temperature"], + ["attribute", "sst", "long_name", "String", "Daily sea surface temperature"], + ["attribute", "sst", "standard_name", "String", "sea_surface_temperature"], + ["attribute", "sst", "units", "String", "degree_C"], + ["attribute", "sst", "valid_max", "float", "45.0"], + ["attribute", "sst", "valid_min", "float", "-3.0"], + ["variable", "anom", "", "float", "time, zlev, latitude, longitude"], + ["attribute", "anom", "_FillValue", "float", "-9.99"], + ["attribute", "anom", "colorBarMaximum", "double", "3.0"], + ["attribute", "anom", "colorBarMinimum", "double", "-3.0"], + ["attribute", "anom", "ioos_category", "String", "Temperature"], + ["attribute", "anom", "long_name", "String", "Daily sea surface temperature anomalies"], + ["attribute", "anom", "standard_name", "String", "surface_temperature_anomaly"], + ["attribute", "anom", "units", "String", "degree_C"], + ["attribute", "anom", "valid_max", "float", "12.0"], + ["attribute", "anom", "valid_min", "float", "-12.0"], + ["variable", "err", "", "float", "time, zlev, latitude, longitude"], + ["attribute", "err", "_FillValue", "float", "-9.99"], + ["attribute", "err", "colorBarMaximum", "double", "0.6"], + ["attribute", "err", "colorBarMinimum", "double", "0.0"], + ["attribute", "err", "colorBarPalette", "String", "WhiteRedBlack"], + ["attribute", "err", "ioos_category", "String", "Statistics"], + ["attribute", "err", "long_name", "String", "Estimated error standard deviation of analysed_sst"], + ["attribute", "err", "units", "String", "degree_C"], + ["attribute", "err", "valid_max", "float", "10.0"], + ["attribute", "err", "valid_min", "float", "0.0"], + ["variable", "ice", "", "float", "time, zlev, latitude, longitude"], + ["attribute", "ice", "_FillValue", "float", "-9.99"], + ["attribute", "ice", "colorBarMaximum", "double", "1.0"], + ["attribute", "ice", "colorBarMinimum", "double", "0.0"], + ["attribute", "ice", "colorBarPalette", "String", "BlackBlueWhite"], + ["attribute", "ice", "ioos_category", "String", "Ice Distribution"], + ["attribute", "ice", "long_name", "String", "Sea ice concentration"], + ["attribute", "ice", "standard_name", "String", "sea_ice_area_fraction"], + ["attribute", "ice", "units", "String", "1"], + ["attribute", "ice", "valid_max", "float", "1.0"], + ["attribute", "ice", "valid_min", "float", "0.0"] + ] + } + } + recorded_at: 2021-06-07 21:38:15 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://coastwatch.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.64.1 r-curl/4.3.1 crul/1.1.0.93 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Mon, 07 Jun 2021 21:38:18 GMT + x-frame-options: SAMEORIGIN + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Mon, 07 Jun 2021 21:38:18 GMT + xdods-server: dods/3.7 + erddap-server: '2.12' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/nodcPJJU/", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testTableWav.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testTableWav", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testTableWav.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/testTableWav/", "public", "Audio data from a local source.", "Audio data from a local source.\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nelapsedTime (Elapsed Time, seconds)\nchannel_1\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/testTableWav/index.json", "???", "http://coastwatch.pfeg.noaa.gov/erddap/rss/testTableWav.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=testTableWav&showErrors=false&email=", "???", "testTableWav"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalnty (Salinity, psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fedCalLandings/", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCAMarCatLM/", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCAMarCatLY/", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCAMarCatSM/", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCAMarCatSY/", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCinpKfmT/", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "https://www.nps.gov/chis/naturescience/index.htm", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCinpKfmSFNH/", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "https://www.nps.gov/chis/naturescience/index.htm", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCinpKfm1Q/", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "https://www.nps.gov/chis/naturescience/index.htm", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCinpKfm5Q/", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "https://www.nps.gov/chis/naturescience/index.htm", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCinpKfmBT/", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "https://www.nps.gov/chis/naturescience/index.htm", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCinpKfmFT/", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "https://www.nps.gov/chis/naturescience/index.htm", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCinpKfmRPC/", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "https://www.nps.gov/chis/naturescience/index.htm", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nsex_undetermined\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://coastwatch.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/prboSefiDiet/", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://coastwatch.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/prboSefiPhen/", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://coastwatch.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/prboSefiPop/", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://coastwatch.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/prboSefiProd/", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://coastwatch.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes17", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes17.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/awsS3NoaaGoes17/", "public", "File Names from the AWS S3 noaa-goes17 Bucket", "This dataset has file information from the AWS S3 noaa-goes17 bucket at https://noaa-goes17.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browser the files in buckets. This dataset is a solution to that problem for this bucket.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/awsS3NoaaGoes17/index.json", "https://registry.opendata.aws/noaa-goes/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/awsS3NoaaGoes17.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3NoaaGoes17&showErrors=false&email=", "NOAA", "awsS3NoaaGoes17"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/scrippsGliders/", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://coastwatch.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdGtsppBest/", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the April 2021 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdGlobecMoc1/", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdGlobecBirds/", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdGlobecCetaceans/", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdGlobecBottle/", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdGlobecVpt/", "public", "GLOBEC NEP Vertical Plankton Tow (VPT) Data, 1997-2001", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nCalifornia Current Program\nVertical Plankton Tow (VPT) Data\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10181&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/vpt%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/vpt.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ncast_no (Cast Number Within the Cruise)\nstation_id\nabund_m3 (Abundance, count m-3)\ncomments\ncounter_id\nd_n_flag (Day/Night Flag)\ngear_area (Mouth Area of Net, m2)\ngear_mesh (Net's Mesh Size, mm)\ngear_type\ngenus_species\nlife_stage\nlocal_code\n... (8 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecVpt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecVpt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdGlobecVpt/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdGlobecVpt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecVpt&showErrors=false&email=", "GLOBEC", "erdGlobecVpt"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdGodaeSfcobs/", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://usgodae.org/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/earthCubeLisirdHistTsi/", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/LiquidR_HBG3_2015_ais/", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/LiquidR_HBG3_2015_c3/", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/LiquidR_HBG3_2015_ctd/", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/LiquidR_HBG3_2015_mose/", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose_v2.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose_v2", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose_v2.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/LiquidR_HBG3_2015_mose_v2/", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE, version 2", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE (version 2, from Cara Wilson). The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nwave_height (m)\naverage_wave_period (s)\ndominant_wave_period (s)\nwave_direction (degrees_true)\nnumber_averaged_spectra\nnumber_of_samples_per_spectrum\nnumber_of_sample_gaps\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_v2_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_v2_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose_v2/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose_v2.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose_v2&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose_v2"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/LiquidR_HBG3_2015_phytoflash/", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/LiquidR_HBG3_2015_telemetry/", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/LiquidR_HBG3_2015_weather/", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/cwwcNDBCMet/", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys. See\nhttps://www.ndbc.noaa.gov/measdes.shtml for a description of the measurements.\n\nThe source data from NOAA NDBC has different column names, different units,\nand different missing values in different files, and other problems\n(notably, lots of rows with duplicate or different values for the same time\npoint). This dataset is a standardized, reformatted, and lightly edited\nversion of that source data, created by NOAA NMFS SWFSC ERD (email:\nerd.data at noaa.gov). Before 2020-01-29, this dataset only had the data\nthat was closest to a given hour, rounded to the nearest hour. Now, this\ndataset has all of the data available from NDBC with the original time\nvalues. If there are multiple source rows for a given buoy for a given\ntime, only the row with the most non-NaN data values is kept. If there is\na gap in the data, a row of missing values is inserted (which causes a nice\ngap when the data is graphed). Also, some impossible data values are\nremoved, but this data is not perfectly clean. This dataset is now updated\nevery 5 minutes.\n\nThis dataset has both historical data (quality controlled, before\n2021-05-01T00:00:00Z) and near real time data (less quality controlled,\nwhich may change at any time, from 2021-05-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Identifier)\n... (19 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdNewportCtd/", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "https://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp.graph", "", "", "public", "NOAA NDBC SOS, 2006-present, sea_water_temperature", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_water_temperature data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWTemp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWTemp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/ndbcSosWTemp/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/ndbcSosWTemp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWTemp&showErrors=false&email=", "NOAA NDBC", "ndbcSosWTemp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind.graph", "", "", "public", "NOAA NDBC SOS, 2006-present, winds", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have winds data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwind_from_direction (degrees_true)\nwind_speed (m s-1)\nwind_speed_of_gust (m s-1)\nupward_air_velocity (m s-1)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWind_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWind_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/ndbcSosWind/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/ndbcSosWind.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWind&showErrors=false&email=", "NOAA NDBC", "ndbcSosWind"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents.graph", "", "", "public", "NOAA NDBC SOS, 2007-present, currents", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have currents data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\nWARNING: Always check the quality_flags before using this data. A simple criterion is: only use a row of data if the first quality_flags value for the row (overall bin status) is 3 (good data/passed quality test). You can do this by appending &quality_flags=~\"3;.*\" to your request.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nbin (count)\ndirection_of_sea_water_velocity (degrees_true)\nsea_water_speed (cm/s)\nupward_sea_water_velocity (cm/s)\nerror_velocity (cm/s)\nplatform_orientation (degrees_true)\nplatform_pitch_angle (degree)\nplatform_roll_angle (degree)\nsea_water_temperature (Cel)\npct_good_3_beam (Percent Good 3 Beam, percent)\npct_good_4_beam (Percent Good 4 Beam, percent)\npct_rejected (Percent Rejected, percent)\npct_bad (Percent Bad, percent)\n... (9 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosCurrents_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosCurrents_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/ndbcSosCurrents/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/ndbcSosCurrents.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosCurrents&showErrors=false&email=", "NOAA NDBC", "ndbcSosCurrents"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity.graph", "", "", "public", "NOAA NDBC SOS, 2007-present, sea_water_practical_salinity", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_water_practical_salinity data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosSalinity_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosSalinity_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/ndbcSosSalinity/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/ndbcSosSalinity.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosSalinity&showErrors=false&email=", "NOAA NDBC", "ndbcSosSalinity"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel.graph", "", "", "public", "NOAA NDBC SOS, 2008-present, sea_floor_depth_below_sea_surface", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_floor_depth_below_sea_surface data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\naveraging_interval (s)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWLevel_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWLevel_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/ndbcSosWLevel/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/ndbcSosWLevel.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWLevel&showErrors=false&email=", "NOAA NDBC", "ndbcSosWLevel"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEDnrt/", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTED/", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDK/", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipKNBD/", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEBnrt/", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEB/", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEKnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEKnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEKnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEKnrt/", "public", "NOAA Ship Ferdinand Hassler Underway Meteorological Data, Near Real Time", "NOAA Ship Ferdinand Hassler Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEKnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEKnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEKnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEKnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEKnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEKnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEK.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEK", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEK.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEK/", "public", "NOAA Ship Ferdinand Hassler Underway Meteorological Data, Quality Controlled", "NOAA Ship Ferdinand Hassler Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEK_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEK_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEK/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEK.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEK&showErrors=false&email=", "FSU", "fsuNoaaShipWTEK"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEOnrt/", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEO/", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDFnrt/", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDF/", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEYnrt/", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEY/", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEU/", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEJ/", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDM/", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTERnrt/", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTER/", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDHnrt/", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDH/", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDOnrt/", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDO/", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEPnrt/", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEP/", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEEnrt/", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEE/", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDLnrt/", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDL/", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEFnrt/", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEF/", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEGnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEGnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEGnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEGnrt/", "public", "NOAA Ship Reuben Lasker Underway Meteorological Data, Near Real Time", "NOAA Ship Reuben Lasker Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEGnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEGnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEGnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEGnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEGnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEGnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEG.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEG", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEG.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEG/", "public", "NOAA Ship Reuben Lasker Underway Meteorological Data, Quality Controlled", "NOAA Ship Reuben Lasker Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEG_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEG_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEG/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEG.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEG&showErrors=false&email=", "FSU", "fsuNoaaShipWTEG"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTECnrt/", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEC/", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEA.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEA", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEA.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEA/", "public", "NOAA Ship Thomas Jefferson Underway Meteorological Data, Quality Controlled", "NOAA Ship Thomas Jefferson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEA_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEA_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEA/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEA.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEA&showErrors=false&email=", "FSU", "fsuNoaaShipWTEA"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/noaaSanctSoundRelated.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/noaaSanctSoundRelated", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/noaaSanctSoundRelated/", "public", "NOAA-Navy Sanctuary Soundscapes Monitoring Project -- Access", "This dataset has a row for each chunk of hydrophone data from the hydrophone at [some site] and columns for different types of files related to that data: the start of the raw audio data, the frequency-domain audio spectrogram data, and an image of the audio spectrogram data.\n\ncdm_data_type = Other\nVARIABLES:\nsite\npsdID\npsdNetcdfFile\npsdCsvFile (psdCsvFilee)\nolID\nolNetcdfFile\nolCsvFile (olCsvFilee)\ntolID\ntolNetcdfFile\ntolCsvFile (tolCsvFilee)\nbbID\nbbNetcdfFile\nbbCsvFile (bbCsvFilee)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/noaaSanctSoundRelated/index.json", "https://www.ngdc.noaa.gov/mgg/pad/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/noaaSanctSoundRelated.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaaSanctSoundRelated&showErrors=false&email=", "NOAA NCEI", "noaaSanctSoundRelated"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/noaaSanctSoundFileAccess.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/noaaSanctSoundFileAccess", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/noaaSanctSoundFileAccess.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/noaaSanctSoundFileAccess/", "public", "NOAA-Navy Sanctuary Soundscapes Monitoring Project -- File Access", "This dataset makes the NOAA-Navy Sanctuary Soundscapes Monitoring Project Files available for download.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nsite\nsample\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/noaaSanctSoundFileAccess/index.json", "https://www.ngdc.noaa.gov/mgg/pad/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/noaaSanctSoundFileAccess.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaaSanctSoundFileAccess&showErrors=false&email=", "NOAA NCEI", "noaaSanctSoundFileAccess"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdNph/", "public", "North Pacific High, 1967 - 2014", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdPcui/", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - 2013", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWDC9417nrt/", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipKAQP/", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipKAQPnrt/", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipNEPP/", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWDA7827nrt/", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipKCEJ/", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWCX7445nrt/", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWECBnrt/", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWBP3210/", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWBP3210nrt/", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWKWBnrt/", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWXAQ/", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWSQ2674nrt/", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipKAOUnrt/", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipVLHJ/", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipKTDQnrt/", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipZMFRnrt/", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://coastwatch.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "https://tidesandcurrents.noaa.gov/gomoos.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "SFSU EOS Carqinez YSI Archived data", "Raw water quality data collected from a fixed pier at 1 meter below mean lower low water. Instrument collecting data is a YSI 6600 V4 sonde with a conductivity/temperature probe, strain gauge pressure sensor, optical dissolved oxygen probe, optical fluorescence chlorophyll probe, optical fluorescence turbidity probe and potentiometric glass bulb pH probe. Data are raw and not flagged or curated in any manner other than curtailed for deployment periods where the YSI sonde is deployed in the water. Download at your own risk. These data may be used and redistributed for free but they are not intended for legal use, since they may contain inaccuracies. For use for publications please reference the Central and Northern California Ocean Observing system (CeNCOOS) and NOAA. Neither the data provider, CeNCOOS, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, or this information. Please see http://erddap.cencoos.org/erddap/tabledap/carquinez.html for QA/QC data with flagging.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://coastalobservations.sfsu.edu", "http://coastwatch.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "SFSU EOS", "rtcctdCMAysi"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "SFSU EOS Carqinez YSI Raw data", "Raw water quality data collected from a fixed pier at 1 meter below mean lower low water. Instrument collecting data is a YSI 6600 V4 sonde with a conductivity/temperature probe, strain gauge pressure sensor, optical dissolved oxygen probe, optical fluorescence chlorophyll probe, optical fluorescence turbidity probe and potentiometric glass bulb pH probe. Data are raw and not flagged or curated in any manner other than curtailed for deployment periods where the YSI sonde is deployed in the water. Download at your own risk. These data may be used and redistributed for free but they are not intended for legal use, since they may contain inaccuracies. For use for publications please reference the Central and Northern California Ocean Observing system (CeNCOOS) and NOAA. Neither the data provider, CeNCOOS, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, or this information. Please see http://erddap.cencoos.org/erddap/tabledap/carquinez.html for QA/QC data with flagging.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://coastalobservations.sfsu.edu", "http://coastwatch.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "SFSU EOS", "rtcctdCMAysirt"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "SFSU EOS MetStation Archived data", "Raw meteorological data collected with a Campbell Scientific CR-1000 weather station with wind speed, wind direction, temperature, humidity, barometric pressure, rain gauge and solar irradiation sensors. Data are raw and not flagged or curated in any manner other than curtailed for deployment periods where all sensors are functional. These data may be used and redistributed for free but they are not intended for legal use, since they may contain inaccuracies. For use for publications please reference the Central and Northern California Ocean Observing system (CeNCOOS) and NOAA. Neither the data provider, CeNCOOS, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, or this information.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://coastalobservations.sfsu.edu", "http://coastwatch.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "SFSU EOS", "rtcmet"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "SFSU EOS MetStation real time data", "Raw meteorological data collected with a Campbell Scientific CR-1000 weather station with wind speed, wind direction, temperature, humidity, barometric pressure, rain gauge and solar irradiation sensors. Data are raw and not flagged or curated in any manner other than curtailed for deployment periods where all sensors are functional. These data may be used and redistributed for free but they are not intended for legal use, since they may contain inaccuracies. For use for publications please reference the Central and Northern California Ocean Observing system (CeNCOOS) and NOAA. Neither the data provider, CeNCOOS, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, or this information.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://coastalobservations.sfsu.edu", "http://coastwatch.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "SFSU EOS", "rtcmetrt"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "SFSU EOS Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://coastalobservations.sfsu.edu", "http://coastwatch.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "SFSU EOS", "rtcctdSeabird"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "SFSU EOS YSI Archived data", "Raw water quality data collected from a fixed pier at 1 meter below mean lower low water. Instrument collecting data is a YSI 6600 V4 sonde with a conductivity/temperature probe, strain gauge pressure sensor, optical dissolved oxygen probe, optical fluorescence chlorophyll probe, optical fluorescence turbidity probe and potentiometric glass bulb pH probe. Data are raw and not flagged or curated in any manner other than curtailed for deployment periods where the YSI sonde is deployed in the water. Download at your own risk. These data may be used and redistributed for free but they are not intended for legal use, since they may contain inaccuracies. For use for publications please reference the Central and Northern California Ocean Observing system (CeNCOOS) and NOAA. Neither the data provider, CeNCOOS, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, or this information. Please see http://erddap.cencoos.org/erddap/tabledap/tiburon-water-tibc1.html for QA/QC data with flagging.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://coastalobservations.sfsu.edu", "http://coastwatch.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "SFSU EOS", "rtcctdRTCysi"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "SFSU EOS YSI Raw data", "Raw water quality data collected from a fixed pier at 1 meter below mean lower low water. Instrument collecting data is a YSI 6600 V4 sonde with a conductivity/temperature probe, strain gauge pressure sensor, optical dissolved oxygen probe, optical fluorescence chlorophyll probe, optical fluorescence turbidity probe and potentiometric glass bulb pH probe. Data are raw and not flagged or curated in any manner other than curtailed for deployment periods where the YSI sonde is deployed in the water. Download at your own risk. These data may be used and redistributed for free but they are not intended for legal use, since they may contain inaccuracies. For use for publications please reference the Central and Northern California Ocean Observing system (CeNCOOS) and NOAA. Neither the data provider, CeNCOOS, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, or this information. Please see http://erddap.cencoos.org/erddap/tabledap/tiburon-water-tibc1.html for QA/QC data with flagging.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://coastalobservations.sfsu.edu", "http://coastwatch.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "SFSU EOS", "rtcctdRTCysirt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdFedRockfishCtd/", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdFedRockfishStation/", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdPrdCtd/", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/main.aspx?Division=PRD&ParentMenuId=147&id=1221", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayIso/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayAirt/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayCur/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5daySst/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayT/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayW/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayDyn/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayHeat/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayPos/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayD/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayS/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayAdcp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2020, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayEvap/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayQlat/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayRh/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayQsen/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayTau/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayRad/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5daySwnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5daySss/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5daySsd/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayEmp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayRf/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayRain/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayBp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayBf/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayLw/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayLwnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayQnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyIso/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyAirt/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyCur/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDySst/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyT/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyW/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyDyn/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyHeat/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyPos/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyD/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyS/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyAdcp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2020, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyEvap/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyQlat/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyRh/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyQsen/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyTau/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyRad/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDySwnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDySss/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDySsd/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyEmp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyRf/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyRain/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyBp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyBf/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyLw/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyLwnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyQnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonIso/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonAirt/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonCur/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonSst/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonT/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonW/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonDyn/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonHeat/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonPos/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonD/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonS/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonAdcp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonEvap/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonQlat/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonRh/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonQsen/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonTau/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonRad/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonSwnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonSss/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonSsd/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonEmp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonRf/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonRain/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonBp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonBf/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonLw/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonLwnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonQnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtRad/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtIso/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtAirt/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtCur/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtSst/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtT/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtW/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtDyn/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtHeat/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtPos/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtD/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtS/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtAdcp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2020, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtEvap/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtQlat/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtRh/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtQsen/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtTau/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtSwnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtSss/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtSsd/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtEmp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtRf/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtRain/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtBp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtBf/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtLw/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtLwnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtQnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testMediaFiles.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testMediaFiles", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testMediaFiles.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/testMediaFiles/", "public", "Test Media Files", "This dataset lets you test viewing various media files in ERDDAP. \nUse the /files/ option for this dataset and hover over the '?' icon for each \nfile in order to view it.\n\nWARNING: THESE WON'T ALL WORK! \nThese viewers/players are built into browsers. \nDifferent browsers on different operating systems support different media file types.\nCurrently, no browser supports all media file types.\nSome files work partially, e.g., the audio player often displays the wrong duration.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/testMediaFiles/index.json", "https://www.pfeg.noaa.gov/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/testMediaFiles.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=testMediaFiles&showErrors=false&email=", "NOAA SWFSC ERD", "testMediaFiles"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testPrivateAwsS3MediaFiles.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testPrivateAwsS3MediaFiles", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testPrivateAwsS3MediaFiles.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/testPrivateAwsS3MediaFiles/", "public", "Test Private AWS S3 Media Files", "This dataset lets you test viewing various media files in ERDDAP. \nUse the /files/ option for this dataset and hover over the '?' icon for each \nfile in order to view it.\n\nWARNING: THESE WON'T ALL WORK! \nThese viewers/players are built into browsers. \nDifferent browsers on different operating systems support different media file types.\nCurrently, no browser supports all media file types.\nSome files work partially, e.g., the audio player often displays the wrong duration.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/testPrivateAwsS3MediaFiles/index.json", "https://www.pfeg.noaa.gov/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/testPrivateAwsS3MediaFiles.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=testPrivateAwsS3MediaFiles&showErrors=false&email=", "NOAA SWFSC ERD", "testPrivateAwsS3MediaFiles"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testPublicAwsS3MediaFiles.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testPublicAwsS3MediaFiles", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testPublicAwsS3MediaFiles.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/testPublicAwsS3MediaFiles/", "public", "Test Public AWS S3 Media Files", "This dataset lets you test viewing various media files in ERDDAP. \nUse the /files/ option for this dataset and hover over the '?' icon for each \nfile in order to view it.\n\nWARNING: THESE WON'T ALL WORK! \nThese viewers/players are built into browsers. \nDifferent browsers on different operating systems support different media file types.\nCurrently, no browser supports all media file types.\nSome files work partially, e.g., the audio player often displays the wrong duration.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/testPublicAwsS3MediaFiles/index.json", "https://www.pfeg.noaa.gov/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/testPublicAwsS3MediaFiles.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=testPublicAwsS3MediaFiles&showErrors=false&email=", "NOAA SWFSC ERD", "testPublicAwsS3MediaFiles"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/earthCubeKgsBoreTempWV/", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "https://www.wvgs.wvnet.edu/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"] + ] + } + } + recorded_at: 2021-06-07 21:38:15 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 diff --git a/tests/vcr_cassettes/info_url_slash2.yml b/tests/vcr_cassettes/info_url_slash2.yml new file mode 100644 index 0000000..be35876 --- /dev/null +++ b/tests/vcr_cassettes/info_url_slash2.yml @@ -0,0 +1,527 @@ +http_interactions: +- request: + method: get + uri: https://coastwatch.pfeg.noaa.gov/erddap/info/ncdcOisst21Agg_LonPM180/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.64.1 r-curl/4.3.1 crul/1.1.0.93 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Mon, 07 Jun 2021 21:42:36 GMT + x-frame-options: SAMEORIGIN + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=ncdcOisst21Agg_LonPM180_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "Grid"], + ["attribute", "NC_GLOBAL", "comment", "String", "Data was converted from NetCDF-3 to NetCDF-4 format with metadata updates in November 2017."], + ["attribute", "NC_GLOBAL", "Conventions", "String", "CF-1.6, ACDD-1.3, COARDS"], + ["attribute", "NC_GLOBAL", "creator_email", "String", "oisst-help@noaa.gov"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "NOAA NCEI"], + ["attribute", "NC_GLOBAL", "creator_type", "String", "group"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "https://www.ncei.noaa.gov/"], + ["attribute", "NC_GLOBAL", "date_created", "String", "2021-06-06T09:12:00Z"], + ["attribute", "NC_GLOBAL", "date_modified", "String", "2021-06-06T09:12:00Z"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "179.875"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "89.875"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "-89.875"], + ["attribute", "NC_GLOBAL", "geospatial_lat_resolution", "double", "0.25"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "179.875"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "-179.875"], + ["attribute", "NC_GLOBAL", "geospatial_lon_resolution", "double", "0.25"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "history", "String", "Final file created using preliminary as first guess, and 3 days of AVHRR data. Preliminary uses only 1 day of AVHRR data.\nNew files are downloaded daily from https://www.ncei.noaa.gov/data/sea-surface-temperature-optimum-interpolation/v2.1/access/avhrr/ to NOAA NMFS SWFSC ERD by erd.data@noaa.gov ."], + ["attribute", "NC_GLOBAL", "id", "String", "ncdcOisst21NrtAgg"], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "https://doi.org/10.25921/RE9P-PT57"], + ["attribute", "NC_GLOBAL", "institution", "String", "NOAA NCEI"], + ["attribute", "NC_GLOBAL", "instrument", "String", "Earth Remote Sensing Instruments > Passive Remote Sensing > Spectrometers/Radiometers > Imaging Spectrometers/Radiometers > AVHRR > Advanced Very High Resolution Radiometer"], + ["attribute", "NC_GLOBAL", "instrument_vocabulary", "String", "Global Change Master Directory (GCMD) Instrument Keywords"], + ["attribute", "NC_GLOBAL", "keywords", "String", "advanced, analysed, analysis, anomalies, anomaly, avhrr, centers, concentration, daily, data, day, degree, deviation, distribution, earth, Earth Science > Land Surface > Land Temperature > Land Surface Temperature, Earth Science > Oceans > Ocean Temperature > Sea Surface Temperature, environmental, error, estimated, final, high, ice, ice distribution, information, interpolation, land, national, ncei, near, nesdis, noaa, nrt, ocean, oceans, oisst, optimum, radiometer, real, resolution, science, sea, sea_surface_temperature, sst, standard, statistics, surface, surface_temperature_anomaly, temperature, time, version, very, vhrr, zlev"], + ["attribute", "NC_GLOBAL", "keywords_vocabulary", "String", "GCMD Science Keywords"], + ["attribute", "NC_GLOBAL", "license", "String", "The data may be used and redistributed for free but is not intended\nfor legal use, since it may contain inaccuracies. Neither the data\nContributor, ERD, NOAA, nor the United States Government, nor any\nof their employees or contractors, makes any warranty, express or\nimplied, including warranties of merchantability and fitness for a\nparticular purpose, or assumes any legal liability for the accuracy,\ncompleteness, or usefulness, of this information."], + ["attribute", "NC_GLOBAL", "metadata_link", "String", "https://doi.org/10.25921/RE9P-PT57"], + ["attribute", "NC_GLOBAL", "naming_authority", "String", "gov.noaa.pfeg.coastwatch"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "89.875"], + ["attribute", "NC_GLOBAL", "platform", "String", "Ships, buoys, Argo floats, MetOp-A, MetOp-B"], + ["attribute", "NC_GLOBAL", "platform_vocabulary", "String", "Global Change Master Directory (GCMD) Platform Keywords"], + ["attribute", "NC_GLOBAL", "processing_level", "String", "NOAA Level 4"], + ["attribute", "NC_GLOBAL", "product_version", "String", "Version v02r01"], + ["attribute", "NC_GLOBAL", "references", "String", "Reynolds, et al.(2007) Daily High-Resolution-Blended Analyses for Sea Surface Temperature (available at https://doi.org/10.1175/2007JCLI1824.1). Banzon, et al.(2016) A long-term record of blended satellite and in situ sea-surface temperature for climate monitoring, modeling and environmental studies (available at https://doi.org/10.5194/essd-8-165-2016). Huang et al. (2020) Improvements of the Daily Optimum Interpolation Sea Surface Temperature (DOISST) Version v02r01, submitted.Climatology is based on 1971-2000 OI.v2 SST. Satellite data: Pathfinder AVHRR SST and Navy AVHRR SST. Ice data: NCEP Ice and GSFC Ice."], + ["attribute", "NC_GLOBAL", "sensor", "String", "Thermometer, AVHRR"], + ["attribute", "NC_GLOBAL", "source", "String", "ICOADS, NCEP_GTS, GSFC_ICE, NCEP_ICE, Pathfinder_AVHRR, Navy_AVHRR"], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "(local files)"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "-89.875"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v70"], + ["attribute", "NC_GLOBAL", "summary", "String", "This is the final version of the related dataset \"ncdcOisst21NrtAgg\", which has the preliminary, near real time version of these files. These final files are released about 2 weeks after the NRT files. \n \nNOAA/National Centers for Environmental Information (NCEI) 1/4 Degree Daily Optimum Interpolation Sea Surface Temperature (OISST) Analysis, Version 2.1 - Final. NOAAs 1/4-degree Daily Optimum Interpolation Sea Surface Temperature (OISST) (sometimes referred to as Reynolds SST, which however also refers to earlier products at different resolution), currently available as version v02r01, is created by interpolating and extrapolating SST observations from different sources, resulting in a smoothed complete field. The sources of data are satellite (Advanced Very High Resolution Radiometer (AVHRR)) and in situ platforms (i.e., ships and buoys), and the specific datasets employed may change over time. At the marginal ice zone, sea ice concentrations are used to generate proxy SSTs. A preliminary version of this file is produced in near-real time (1-day latency), and then replaced with a final version after 2 weeks. Note that this is the AVHRR-ONLY DOISST, available from Oct 1981, but there is a companion DOISST product that includes microwave satellite data, available from June 2002"], + ["attribute", "NC_GLOBAL", "testOutOfDate", "String", "now-17days"], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2021-05-22T12:00:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "1981-09-01T12:00:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "SST, Daily Optimum Interpolation (OI), AVHRR Only, Version 2.1, Final, Global, 0.25\u00b0, 1981-present, Lon+/-180"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "-179.875"], + ["dimension", "time", "", "double", "nValues=14508, evenlySpaced=false, averageSpacing=1 day 0h 0m 6s"], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "3.681936E8, 1.6216848E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Center time of the day"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["dimension", "zlev", "", "float", "nValues=1, onlyValue=0.0"], + ["attribute", "zlev", "actual_range", "float", "0.0, 0.0"], + ["attribute", "zlev", "ioos_category", "String", "Location"], + ["attribute", "zlev", "long_name", "String", "Sea surface height"], + ["attribute", "zlev", "positive", "String", "down"], + ["attribute", "zlev", "standard_name", "String", "sea_surface_height"], + ["attribute", "zlev", "units", "String", "m"], + ["dimension", "latitude", "", "float", "nValues=720, evenlySpaced=true, averageSpacing=0.25"], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "float", "-89.875, 89.875"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "grids", "String", "Uniform grid from -89.875 to 89.875 by 0.25"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["dimension", "longitude", "", "float", "nValues=1440, evenlySpaced=true, averageSpacing=0.25"], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "float", "-179.875, 179.875"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "grids", "String", "Uniform grid from 0.125 to 359.875 by 0.25"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "sst", "", "float", "time, zlev, latitude, longitude"], + ["attribute", "sst", "_FillValue", "float", "-9.99"], + ["attribute", "sst", "colorBarMaximum", "double", "32.0"], + ["attribute", "sst", "colorBarMinimum", "double", "0.0"], + ["attribute", "sst", "ioos_category", "String", "Temperature"], + ["attribute", "sst", "long_name", "String", "Daily sea surface temperature"], + ["attribute", "sst", "standard_name", "String", "sea_surface_temperature"], + ["attribute", "sst", "units", "String", "degree_C"], + ["attribute", "sst", "valid_max", "float", "45.0"], + ["attribute", "sst", "valid_min", "float", "-3.0"], + ["variable", "anom", "", "float", "time, zlev, latitude, longitude"], + ["attribute", "anom", "_FillValue", "float", "-9.99"], + ["attribute", "anom", "colorBarMaximum", "double", "3.0"], + ["attribute", "anom", "colorBarMinimum", "double", "-3.0"], + ["attribute", "anom", "ioos_category", "String", "Temperature"], + ["attribute", "anom", "long_name", "String", "Daily sea surface temperature anomalies"], + ["attribute", "anom", "standard_name", "String", "surface_temperature_anomaly"], + ["attribute", "anom", "units", "String", "degree_C"], + ["attribute", "anom", "valid_max", "float", "12.0"], + ["attribute", "anom", "valid_min", "float", "-12.0"], + ["variable", "err", "", "float", "time, zlev, latitude, longitude"], + ["attribute", "err", "_FillValue", "float", "-9.99"], + ["attribute", "err", "colorBarMaximum", "double", "0.6"], + ["attribute", "err", "colorBarMinimum", "double", "0.0"], + ["attribute", "err", "colorBarPalette", "String", "WhiteRedBlack"], + ["attribute", "err", "ioos_category", "String", "Statistics"], + ["attribute", "err", "long_name", "String", "Estimated error standard deviation of analysed_sst"], + ["attribute", "err", "units", "String", "degree_C"], + ["attribute", "err", "valid_max", "float", "10.0"], + ["attribute", "err", "valid_min", "float", "0.0"], + ["variable", "ice", "", "float", "time, zlev, latitude, longitude"], + ["attribute", "ice", "_FillValue", "float", "-9.99"], + ["attribute", "ice", "colorBarMaximum", "double", "1.0"], + ["attribute", "ice", "colorBarMinimum", "double", "0.0"], + ["attribute", "ice", "colorBarPalette", "String", "BlackBlueWhite"], + ["attribute", "ice", "ioos_category", "String", "Ice Distribution"], + ["attribute", "ice", "long_name", "String", "Sea ice concentration"], + ["attribute", "ice", "standard_name", "String", "sea_ice_area_fraction"], + ["attribute", "ice", "units", "String", "1"], + ["attribute", "ice", "valid_max", "float", "1.0"], + ["attribute", "ice", "valid_min", "float", "0.0"] + ] + } + } + recorded_at: 2021-06-07 21:42:34 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://coastwatch.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.64.1 r-curl/4.3.1 crul/1.1.0.93 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Mon, 07 Jun 2021 21:42:36 GMT + x-frame-options: SAMEORIGIN + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Mon, 07 Jun 2021 21:42:36 GMT + xdods-server: dods/3.7 + erddap-server: '2.12' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/nodcPJJU/", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testTableWav.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testTableWav", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testTableWav.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/testTableWav/", "public", "Audio data from a local source.", "Audio data from a local source.\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nelapsedTime (Elapsed Time, seconds)\nchannel_1\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/testTableWav/index.json", "???", "http://coastwatch.pfeg.noaa.gov/erddap/rss/testTableWav.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=testTableWav&showErrors=false&email=", "???", "testTableWav"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalnty (Salinity, psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fedCalLandings/", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCAMarCatLM/", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCAMarCatLY/", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCAMarCatSM/", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCAMarCatSY/", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCinpKfmT/", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "https://www.nps.gov/chis/naturescience/index.htm", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCinpKfmSFNH/", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "https://www.nps.gov/chis/naturescience/index.htm", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCinpKfm1Q/", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "https://www.nps.gov/chis/naturescience/index.htm", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCinpKfm5Q/", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "https://www.nps.gov/chis/naturescience/index.htm", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCinpKfmBT/", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "https://www.nps.gov/chis/naturescience/index.htm", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCinpKfmFT/", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "https://www.nps.gov/chis/naturescience/index.htm", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdCinpKfmRPC/", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "https://www.nps.gov/chis/naturescience/index.htm", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nsex_undetermined\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://coastwatch.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/prboSefiDiet/", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://coastwatch.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/prboSefiPhen/", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://coastwatch.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/prboSefiPop/", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://coastwatch.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/prboSefiProd/", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://coastwatch.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes17", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes17.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/awsS3NoaaGoes17/", "public", "File Names from the AWS S3 noaa-goes17 Bucket", "This dataset has file information from the AWS S3 noaa-goes17 bucket at https://noaa-goes17.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browser the files in buckets. This dataset is a solution to that problem for this bucket.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/awsS3NoaaGoes17/index.json", "https://registry.opendata.aws/noaa-goes/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/awsS3NoaaGoes17.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3NoaaGoes17&showErrors=false&email=", "NOAA", "awsS3NoaaGoes17"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/scrippsGliders/", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://coastwatch.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdGtsppBest/", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the April 2021 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdGlobecMoc1/", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdGlobecBirds/", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdGlobecCetaceans/", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdGlobecBottle/", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdGlobecVpt/", "public", "GLOBEC NEP Vertical Plankton Tow (VPT) Data, 1997-2001", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nCalifornia Current Program\nVertical Plankton Tow (VPT) Data\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10181&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/vpt%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/vpt.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ncast_no (Cast Number Within the Cruise)\nstation_id\nabund_m3 (Abundance, count m-3)\ncomments\ncounter_id\nd_n_flag (Day/Night Flag)\ngear_area (Mouth Area of Net, m2)\ngear_mesh (Net's Mesh Size, mm)\ngear_type\ngenus_species\nlife_stage\nlocal_code\n... (8 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecVpt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecVpt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdGlobecVpt/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdGlobecVpt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecVpt&showErrors=false&email=", "GLOBEC", "erdGlobecVpt"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdGodaeSfcobs/", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://usgodae.org/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/earthCubeLisirdHistTsi/", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/LiquidR_HBG3_2015_ais/", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/LiquidR_HBG3_2015_c3/", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/LiquidR_HBG3_2015_ctd/", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/LiquidR_HBG3_2015_mose/", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose_v2.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose_v2", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose_v2.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/LiquidR_HBG3_2015_mose_v2/", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE, version 2", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE (version 2, from Cara Wilson). The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nwave_height (m)\naverage_wave_period (s)\ndominant_wave_period (s)\nwave_direction (degrees_true)\nnumber_averaged_spectra\nnumber_of_samples_per_spectrum\nnumber_of_sample_gaps\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_v2_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_v2_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose_v2/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose_v2.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose_v2&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose_v2"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/LiquidR_HBG3_2015_phytoflash/", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/LiquidR_HBG3_2015_telemetry/", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/LiquidR_HBG3_2015_weather/", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/cwwcNDBCMet/", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys. See\nhttps://www.ndbc.noaa.gov/measdes.shtml for a description of the measurements.\n\nThe source data from NOAA NDBC has different column names, different units,\nand different missing values in different files, and other problems\n(notably, lots of rows with duplicate or different values for the same time\npoint). This dataset is a standardized, reformatted, and lightly edited\nversion of that source data, created by NOAA NMFS SWFSC ERD (email:\nerd.data at noaa.gov). Before 2020-01-29, this dataset only had the data\nthat was closest to a given hour, rounded to the nearest hour. Now, this\ndataset has all of the data available from NDBC with the original time\nvalues. If there are multiple source rows for a given buoy for a given\ntime, only the row with the most non-NaN data values is kept. If there is\na gap in the data, a row of missing values is inserted (which causes a nice\ngap when the data is graphed). Also, some impossible data values are\nremoved, but this data is not perfectly clean. This dataset is now updated\nevery 5 minutes.\n\nThis dataset has both historical data (quality controlled, before\n2021-05-01T00:00:00Z) and near real time data (less quality controlled,\nwhich may change at any time, from 2021-05-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Identifier)\n... (19 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdNewportCtd/", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "https://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWTemp.graph", "", "", "public", "NOAA NDBC SOS, 2006-present, sea_water_temperature", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_water_temperature data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWTemp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWTemp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/ndbcSosWTemp/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/ndbcSosWTemp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWTemp&showErrors=false&email=", "NOAA NDBC", "ndbcSosWTemp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWind.graph", "", "", "public", "NOAA NDBC SOS, 2006-present, winds", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have winds data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwind_from_direction (degrees_true)\nwind_speed (m s-1)\nwind_speed_of_gust (m s-1)\nupward_air_velocity (m s-1)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWind_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWind_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/ndbcSosWind/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/ndbcSosWind.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWind&showErrors=false&email=", "NOAA NDBC", "ndbcSosWind"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosCurrents.graph", "", "", "public", "NOAA NDBC SOS, 2007-present, currents", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have currents data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\nWARNING: Always check the quality_flags before using this data. A simple criterion is: only use a row of data if the first quality_flags value for the row (overall bin status) is 3 (good data/passed quality test). You can do this by appending &quality_flags=~\"3;.*\" to your request.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nbin (count)\ndirection_of_sea_water_velocity (degrees_true)\nsea_water_speed (cm/s)\nupward_sea_water_velocity (cm/s)\nerror_velocity (cm/s)\nplatform_orientation (degrees_true)\nplatform_pitch_angle (degree)\nplatform_roll_angle (degree)\nsea_water_temperature (Cel)\npct_good_3_beam (Percent Good 3 Beam, percent)\npct_good_4_beam (Percent Good 4 Beam, percent)\npct_rejected (Percent Rejected, percent)\npct_bad (Percent Bad, percent)\n... (9 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosCurrents_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosCurrents_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/ndbcSosCurrents/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/ndbcSosCurrents.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosCurrents&showErrors=false&email=", "NOAA NDBC", "ndbcSosCurrents"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosSalinity.graph", "", "", "public", "NOAA NDBC SOS, 2007-present, sea_water_practical_salinity", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_water_practical_salinity data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosSalinity_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosSalinity_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/ndbcSosSalinity/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/ndbcSosSalinity.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosSalinity&showErrors=false&email=", "NOAA NDBC", "ndbcSosSalinity"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/ndbcSosWLevel.graph", "", "", "public", "NOAA NDBC SOS, 2008-present, sea_floor_depth_below_sea_surface", "The NOAA NDBC SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have sea_floor_depth_below_sea_surface data.\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\naveraging_interval (s)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ndbcSosWLevel_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ndbcSosWLevel_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/ndbcSosWLevel/index.json", "https://sdf.ndbc.noaa.gov/sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/ndbcSosWLevel.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ndbcSosWLevel&showErrors=false&email=", "NOAA NDBC", "ndbcSosWLevel"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEDnrt/", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTED/", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDK/", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipKNBD/", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEBnrt/", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEB/", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEKnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEKnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEKnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEKnrt/", "public", "NOAA Ship Ferdinand Hassler Underway Meteorological Data, Near Real Time", "NOAA Ship Ferdinand Hassler Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEKnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEKnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEKnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEKnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEKnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEKnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEK.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEK", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEK.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEK/", "public", "NOAA Ship Ferdinand Hassler Underway Meteorological Data, Quality Controlled", "NOAA Ship Ferdinand Hassler Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEK_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEK_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEK/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEK.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEK&showErrors=false&email=", "FSU", "fsuNoaaShipWTEK"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEOnrt/", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEO/", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDFnrt/", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDF/", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEYnrt/", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEY/", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEU/", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEJ/", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDM/", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTERnrt/", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTER/", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDHnrt/", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDH/", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDOnrt/", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDO/", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEPnrt/", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEP/", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEEnrt/", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEE/", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDLnrt/", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTDL/", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEFnrt/", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEF/", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEGnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEGnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEGnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEGnrt/", "public", "NOAA Ship Reuben Lasker Underway Meteorological Data, Near Real Time", "NOAA Ship Reuben Lasker Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEGnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEGnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEGnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEGnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEGnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEGnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEG.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEG", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEG.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEG/", "public", "NOAA Ship Reuben Lasker Underway Meteorological Data, Quality Controlled", "NOAA Ship Reuben Lasker Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEG_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEG_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEG/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEG.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEG&showErrors=false&email=", "FSU", "fsuNoaaShipWTEG"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTECnrt/", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEC/", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEA.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEA", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEA.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuNoaaShipWTEA/", "public", "NOAA Ship Thomas Jefferson Underway Meteorological Data, Quality Controlled", "NOAA Ship Thomas Jefferson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEA_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEA_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEA/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEA.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEA&showErrors=false&email=", "FSU", "fsuNoaaShipWTEA"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/noaaSanctSoundRelated.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/noaaSanctSoundRelated", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/noaaSanctSoundRelated/", "public", "NOAA-Navy Sanctuary Soundscapes Monitoring Project -- Access", "This dataset has a row for each chunk of hydrophone data from the hydrophone at [some site] and columns for different types of files related to that data: the start of the raw audio data, the frequency-domain audio spectrogram data, and an image of the audio spectrogram data.\n\ncdm_data_type = Other\nVARIABLES:\nsite\npsdID\npsdNetcdfFile\npsdCsvFile (psdCsvFilee)\nolID\nolNetcdfFile\nolCsvFile (olCsvFilee)\ntolID\ntolNetcdfFile\ntolCsvFile (tolCsvFilee)\nbbID\nbbNetcdfFile\nbbCsvFile (bbCsvFilee)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/noaaSanctSoundRelated/index.json", "https://www.ngdc.noaa.gov/mgg/pad/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/noaaSanctSoundRelated.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaaSanctSoundRelated&showErrors=false&email=", "NOAA NCEI", "noaaSanctSoundRelated"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/noaaSanctSoundFileAccess.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/noaaSanctSoundFileAccess", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/noaaSanctSoundFileAccess.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/noaaSanctSoundFileAccess/", "public", "NOAA-Navy Sanctuary Soundscapes Monitoring Project -- File Access", "This dataset makes the NOAA-Navy Sanctuary Soundscapes Monitoring Project Files available for download.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nsite\nsample\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/noaaSanctSoundFileAccess/index.json", "https://www.ngdc.noaa.gov/mgg/pad/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/noaaSanctSoundFileAccess.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=noaaSanctSoundFileAccess&showErrors=false&email=", "NOAA NCEI", "noaaSanctSoundFileAccess"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdNph/", "public", "North Pacific High, 1967 - 2014", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdPcui/", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - 2013", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "https://tidesandcurrents.noaa.gov", "http://coastwatch.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWDC9417nrt/", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipKAQP/", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipKAQPnrt/", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipNEPP/", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWDA7827nrt/", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipKCEJ/", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWCX7445nrt/", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWECBnrt/", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWBP3210/", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWBP3210nrt/", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWKWBnrt/", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWXAQ/", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipWSQ2674nrt/", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipKAOUnrt/", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipVLHJ/", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipKTDQnrt/", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/fsuResearchShipZMFRnrt/", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Trajectory\nVARIABLES:\nID (Call Sign)\nsite (Ship Name)\nIMO\ncruise_id\nexpocode\nfacility\nplatform\nplatform_version\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://coastwatch.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "https://tidesandcurrents.noaa.gov/gomoos.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "SFSU EOS Carqinez YSI Archived data", "Raw water quality data collected from a fixed pier at 1 meter below mean lower low water. Instrument collecting data is a YSI 6600 V4 sonde with a conductivity/temperature probe, strain gauge pressure sensor, optical dissolved oxygen probe, optical fluorescence chlorophyll probe, optical fluorescence turbidity probe and potentiometric glass bulb pH probe. Data are raw and not flagged or curated in any manner other than curtailed for deployment periods where the YSI sonde is deployed in the water. Download at your own risk. These data may be used and redistributed for free but they are not intended for legal use, since they may contain inaccuracies. For use for publications please reference the Central and Northern California Ocean Observing system (CeNCOOS) and NOAA. Neither the data provider, CeNCOOS, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, or this information. Please see http://erddap.cencoos.org/erddap/tabledap/carquinez.html for QA/QC data with flagging.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://coastalobservations.sfsu.edu", "http://coastwatch.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "SFSU EOS", "rtcctdCMAysi"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "SFSU EOS Carqinez YSI Raw data", "Raw water quality data collected from a fixed pier at 1 meter below mean lower low water. Instrument collecting data is a YSI 6600 V4 sonde with a conductivity/temperature probe, strain gauge pressure sensor, optical dissolved oxygen probe, optical fluorescence chlorophyll probe, optical fluorescence turbidity probe and potentiometric glass bulb pH probe. Data are raw and not flagged or curated in any manner other than curtailed for deployment periods where the YSI sonde is deployed in the water. Download at your own risk. These data may be used and redistributed for free but they are not intended for legal use, since they may contain inaccuracies. For use for publications please reference the Central and Northern California Ocean Observing system (CeNCOOS) and NOAA. Neither the data provider, CeNCOOS, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, or this information. Please see http://erddap.cencoos.org/erddap/tabledap/carquinez.html for QA/QC data with flagging.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://coastalobservations.sfsu.edu", "http://coastwatch.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "SFSU EOS", "rtcctdCMAysirt"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "SFSU EOS MetStation Archived data", "Raw meteorological data collected with a Campbell Scientific CR-1000 weather station with wind speed, wind direction, temperature, humidity, barometric pressure, rain gauge and solar irradiation sensors. Data are raw and not flagged or curated in any manner other than curtailed for deployment periods where all sensors are functional. These data may be used and redistributed for free but they are not intended for legal use, since they may contain inaccuracies. For use for publications please reference the Central and Northern California Ocean Observing system (CeNCOOS) and NOAA. Neither the data provider, CeNCOOS, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, or this information.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://coastalobservations.sfsu.edu", "http://coastwatch.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "SFSU EOS", "rtcmet"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "SFSU EOS MetStation real time data", "Raw meteorological data collected with a Campbell Scientific CR-1000 weather station with wind speed, wind direction, temperature, humidity, barometric pressure, rain gauge and solar irradiation sensors. Data are raw and not flagged or curated in any manner other than curtailed for deployment periods where all sensors are functional. These data may be used and redistributed for free but they are not intended for legal use, since they may contain inaccuracies. For use for publications please reference the Central and Northern California Ocean Observing system (CeNCOOS) and NOAA. Neither the data provider, CeNCOOS, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, or this information.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://coastalobservations.sfsu.edu", "http://coastwatch.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "SFSU EOS", "rtcmetrt"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "SFSU EOS Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://coastalobservations.sfsu.edu", "http://coastwatch.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "SFSU EOS", "rtcctdSeabird"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "SFSU EOS YSI Archived data", "Raw water quality data collected from a fixed pier at 1 meter below mean lower low water. Instrument collecting data is a YSI 6600 V4 sonde with a conductivity/temperature probe, strain gauge pressure sensor, optical dissolved oxygen probe, optical fluorescence chlorophyll probe, optical fluorescence turbidity probe and potentiometric glass bulb pH probe. Data are raw and not flagged or curated in any manner other than curtailed for deployment periods where the YSI sonde is deployed in the water. Download at your own risk. These data may be used and redistributed for free but they are not intended for legal use, since they may contain inaccuracies. For use for publications please reference the Central and Northern California Ocean Observing system (CeNCOOS) and NOAA. Neither the data provider, CeNCOOS, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, or this information. Please see http://erddap.cencoos.org/erddap/tabledap/tiburon-water-tibc1.html for QA/QC data with flagging.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://coastalobservations.sfsu.edu", "http://coastwatch.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "SFSU EOS", "rtcctdRTCysi"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "SFSU EOS YSI Raw data", "Raw water quality data collected from a fixed pier at 1 meter below mean lower low water. Instrument collecting data is a YSI 6600 V4 sonde with a conductivity/temperature probe, strain gauge pressure sensor, optical dissolved oxygen probe, optical fluorescence chlorophyll probe, optical fluorescence turbidity probe and potentiometric glass bulb pH probe. Data are raw and not flagged or curated in any manner other than curtailed for deployment periods where the YSI sonde is deployed in the water. Download at your own risk. These data may be used and redistributed for free but they are not intended for legal use, since they may contain inaccuracies. For use for publications please reference the Central and Northern California Ocean Observing system (CeNCOOS) and NOAA. Neither the data provider, CeNCOOS, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, or this information. Please see http://erddap.cencoos.org/erddap/tabledap/tiburon-water-tibc1.html for QA/QC data with flagging.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\n... (5 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://coastalobservations.sfsu.edu", "http://coastwatch.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "SFSU EOS", "rtcctdRTCysirt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdFedRockfishCtd/", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdFedRockfishStation/", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/erdPrdCtd/", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/main.aspx?Division=PRD&ParentMenuId=147&id=1221", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayIso/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayAirt/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayCur/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5daySst/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayT/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayW/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayDyn/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayHeat/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayPos/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayD/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayS/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayAdcp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2020, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayEvap/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayQlat/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayRh/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayQsen/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayTau/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayRad/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5daySwnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5daySss/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5daySsd/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayEmp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayRf/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayRain/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayBp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayBf/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayLw/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayLwnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTao5dayQnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyIso/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyAirt/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyCur/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDySst/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyT/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyW/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyDyn/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyHeat/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyPos/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyD/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyS/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyAdcp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2020, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyEvap/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyQlat/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyRh/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyQsen/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyTau/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyRad/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDySwnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDySss/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDySsd/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyEmp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyRf/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyRain/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyBp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyBf/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyLw/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyLwnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoDyQnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonIso/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonAirt/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonCur/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonSst/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonT/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonW/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonDyn/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonHeat/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonPos/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonD/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonS/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonAdcp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonEvap/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonQlat/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonRh/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonQsen/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonTau/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonRad/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonSwnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonSss/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonSsd/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonEmp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonRf/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonRain/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonBp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonBf/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonLw/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonLwnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoMonQnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtRad/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtIso/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtAirt/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtCur/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtSst/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtT/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtW/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtDyn/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtHeat/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtPos/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtD/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtS/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtAdcp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2020, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtEvap/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtQlat/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtRh/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtQsen/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtTau/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtSwnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtSss/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtSsd/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtEmp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtRf/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtRain/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtBp/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtBf/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtLw/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtLwnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/pmelTaoQrtQnet/", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://coastwatch.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testMediaFiles.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testMediaFiles", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testMediaFiles.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/testMediaFiles/", "public", "Test Media Files", "This dataset lets you test viewing various media files in ERDDAP. \nUse the /files/ option for this dataset and hover over the '?' icon for each \nfile in order to view it.\n\nWARNING: THESE WON'T ALL WORK! \nThese viewers/players are built into browsers. \nDifferent browsers on different operating systems support different media file types.\nCurrently, no browser supports all media file types.\nSome files work partially, e.g., the audio player often displays the wrong duration.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/testMediaFiles/index.json", "https://www.pfeg.noaa.gov/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/testMediaFiles.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=testMediaFiles&showErrors=false&email=", "NOAA SWFSC ERD", "testMediaFiles"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testPrivateAwsS3MediaFiles.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testPrivateAwsS3MediaFiles", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testPrivateAwsS3MediaFiles.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/testPrivateAwsS3MediaFiles/", "public", "Test Private AWS S3 Media Files", "This dataset lets you test viewing various media files in ERDDAP. \nUse the /files/ option for this dataset and hover over the '?' icon for each \nfile in order to view it.\n\nWARNING: THESE WON'T ALL WORK! \nThese viewers/players are built into browsers. \nDifferent browsers on different operating systems support different media file types.\nCurrently, no browser supports all media file types.\nSome files work partially, e.g., the audio player often displays the wrong duration.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/testPrivateAwsS3MediaFiles/index.json", "https://www.pfeg.noaa.gov/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/testPrivateAwsS3MediaFiles.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=testPrivateAwsS3MediaFiles&showErrors=false&email=", "NOAA SWFSC ERD", "testPrivateAwsS3MediaFiles"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testPublicAwsS3MediaFiles.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testPublicAwsS3MediaFiles", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/testPublicAwsS3MediaFiles.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/testPublicAwsS3MediaFiles/", "public", "Test Public AWS S3 Media Files", "This dataset lets you test viewing various media files in ERDDAP. \nUse the /files/ option for this dataset and hover over the '?' icon for each \nfile in order to view it.\n\nWARNING: THESE WON'T ALL WORK! \nThese viewers/players are built into browsers. \nDifferent browsers on different operating systems support different media file types.\nCurrently, no browser supports all media file types.\nSome files work partially, e.g., the audio player often displays the wrong duration.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://coastwatch.pfeg.noaa.gov/erddap/info/testPublicAwsS3MediaFiles/index.json", "https://www.pfeg.noaa.gov/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/testPublicAwsS3MediaFiles.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=testPublicAwsS3MediaFiles&showErrors=false&email=", "NOAA SWFSC ERD", "testPublicAwsS3MediaFiles"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://coastwatch.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://coastwatch.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "https://coastwatch.pfeg.noaa.gov/erddap/files/earthCubeKgsBoreTempWV/", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://coastwatch.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://coastwatch.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "https://www.wvgs.wvnet.edu/", "http://coastwatch.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://coastwatch.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"] + ] + } + } + recorded_at: 2021-06-07 21:42:34 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 diff --git a/tests/vcr_cassettes/servers.yml b/tests/vcr_cassettes/servers.yml new file mode 100644 index 0000000..1fe84d8 --- /dev/null +++ b/tests/vcr_cassettes/servers.yml @@ -0,0 +1,107 @@ +http_interactions: +- request: + method: get + uri: https://irishmarineinstitute.github.io/awesome-erddap/erddaps.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.54.0 r-curl/4.0 crul/0.8.4.9100 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/2 200 ' + server: GitHub.com + content-type: application/json; charset=utf-8 + last-modified: Thu, 29 Aug 2019 15:53:53 GMT + etag: W/"5d67f511-12d6" + access-control-allow-origin: '*' + expires: Thu, 29 Aug 2019 20:37:50 GMT + cache-control: max-age=600 + content-encoding: gzip + x-proxy-cache: MISS + x-github-request-id: 365A:3DE3:75194D:7BC839:5D683546 + accept-ranges: bytes + date: Thu, 29 Aug 2019 20:39:53 GMT + via: 1.1 varnish + age: '408' + x-served-by: cache-sea1035-SEA + x-cache: HIT + x-cache-hits: '2' + x-timer: S1567111194.933845,VS0,VE0 + vary: Accept-Encoding + x-fastly-request-id: f35f35060c5dffa55ecce56b0699a01b80ea663f + content-length: '1362' + body: + encoding: UTF-8 + string: "[\n\t{\n\t\t\"name\": \"CoastWatch West Coast Node\",\n\t\t\"url\": + \"https://coastwatch.pfeg.noaa.gov/erddap/\",\n\t\t\"public\": true\n\t},\n + \ {\n\t\t\"name\": \"ERDDAP at the Asia-Pacific Data-Research Center\",\n\t\t\"url\": + \"https://apdrc.soest.hawaii.edu/erddap/\",\n\t\t\"public\": true\n\t},\n + \ {\n\t\t\"name\": \"NOAA's National Centers for Environmental Information + (NCEI)\",\n\t\t\"url\": \"https://www.ncei.noaa.gov/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"Biological and Chemical Oceanography Data + Management Office (BCO-DMO) ERDDAP\",\n\t\t\"url\": \"https://erddap.bco-dmo.org/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"European Marine Observation and Data Network + (EMODnet) Physics ERDDAP\",\n\t\t\"url\": \"https://erddap.emodnet-physics.eu/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"Marine Institute - Ireland\",\n\t\t\"url\": + \"https://erddap.marine.ie/erddap/\",\n\t\t\"public\": true\n\t},\n {\n\t\t\"name\": + \"CoastWatch Caribbean/Gulf of Mexico Node\",\n\t\t\"url\": \"https://cwcgom.aoml.noaa.gov/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"NOAA IOOS Sensors ERDDAP\",\n\t\t\"url\": + \"http://erddap.sensors.ioos.us/erddap/\",\n\t\t\"public\": true\n\t},\n {\n\t\t\"name\": + \"NOAA IOOS CeNCOOS (Central and Northern California Ocean Observing System)\",\n\t\t\"url\": + \"http://erddap.axiomdatascience.com/erddap/\",\n\t\t\"public\": true\n\t},\n + \ {\n\t\t\"name\": \"NOAA IOOS NERACOOS (Northeastern Regional Association + of Coastal and Ocean Observing Systems)\",\n\t\t\"url\": \"http://www.neracoos.org/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"NOAA IOOS NGDAC (National Glider Data Assembly + Center)\",\n\t\t\"url\": \"https://data.ioos.us/gliders/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"NOAA IOOS PacIOOS (Pacific Islands Ocean + Observing System) at the University of Hawaii (UH)\",\n\t\t\"url\": \"http://oos.soest.hawaii.edu/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"Southern California Coastal Ocean Observing + System (SCCOOS)\",\n\t\t\"url\": \"http://sccoos.org/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"NOAA IOOS SECOORA (Southeast Coastal Ocean + Observing Regional Association)\",\n\t\t\"url\": \"http://erddap.secoora.org/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"NOAA NCEI (National Centers for Environmental + Information) / NCDDC\",\n\t\t\"url\": \"https://ecowatch.ncddc.noaa.gov/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"NOAA OSMC (Observing System Monitoring + Center)\",\n\t\t\"url\": \"http://osmc.noaa.gov/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"ONC (Ocean Networks Canada)\",\n\t\t\"url\": + \"http://dap.onc.uvic.ca/erddap/\",\n\t\t\"public\": true\n\t},\n {\n\t\t\"name\": + \"\",\n\t\t\"url\": \"https://oceanwatch.pifsc.noaa.gov/erddap/\",\n\t\t\"public\": + false\n\t},\n {\n\t\t\"name\": \"Ocean Observatories Initiative (OOI)\",\n\t\t\"url\": + \"https://erddap-uncabled.oceanobservatories.org/uncabled/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"Ocean Tracking Network\",\n\t\t\"url\": + \"https://members.oceantrack.org/erddap/\",\n\t\t\"public\": true\n\t},\n + \ {\n\t\t\"name\": \"\",\n\t\t\"url\": \"http://www.myroms.org:8080/erddap/\",\n\t\t\"public\": + false\n\t},\n {\n\t\t\"name\": \"Department of Marine and Coastal Sciences, + School of Environmental and Biological Sciences, Rutgers, The State University + of New Jersey\",\n\t\t\"url\": \"http://tds.marine.rutgers.edu/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"\",\n\t\t\"url\": \"https://comet.nefsc.noaa.gov/erddap/\",\n\t\t\"public\": + false\n\t},\n {\n\t\t\"name\": \"NOAA's Center for Operational Oceanographic + Products and Services\",\n\t\t\"url\": \"https://opendap.co-ops.nos.noaa.gov/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"\",\n\t\t\"url\": \"http://gcoos5.geos.tamu.edu:6060/erddap/\",\n\t\t\"public\": + false\n\t},\n {\n\t\t\"name\": \"\",\n\t\t\"url\": \"http://gcoos4.tamu.edu:8080/erddap/\",\n\t\t\"public\": + false\n\t},\n {\n\t\t\"name\": \"NOAA CoastWatch Great Lakes Node\",\n\t\t\"url\": + \"https://coastwatch.glerl.noaa.gov/erddap/\",\n\t\t\"public\": true\n\t},\n + \ {\n\t\t\"name\": \"\",\n\t\t\"url\": \"http://sfbaynutrients.sfei.org/erddap/\",\n\t\t\"public\": + false\n\t},\n {\n\t\t\"name\": \"Spray Underwater Glider data from Instrument + Development Group, Scripps Institute of Oceanography, University of California, + San Diego\",\n\t\t\"url\": \"https://spraydata.ucsd.edu/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"UBC Earth, Ocean & Atmospheric Sciences + SalishSeaCast Project\",\n\t\t\"url\": \"https://salishsea.eos.ubc.ca/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"UC Davis BML (University of California + at Davis, Bodega Marine Laboratory)\",\n\t\t\"url\": \"http://bmlsc.ucdavis.edu:8080/erddap/\",\n\t\t\"public\": + true\n\t},\n {\n\t\t\"name\": \"NOAA UAF (Unified Access Framework)\",\n\t\t\"url\": + \"https://upwell.pfeg.noaa.gov/erddap/\",\n\t\t\"public\": true\n\t},\n\t{\n\t\t\"name\": + \"Marine Domain Awareness (MDA) - Italy\",\n\t\t\"url\": \"https://bluehub.jrc.ec.europa.eu/erddap/\",\n\t\t\"public\": + true\n\t},\n\t{\n\t\t\"name\": \"R.Tech Engineering\",\n\t\t\"url\": \"https://meteo.rtech.fr/erddap/\",\n\t\t\"public\": + true\n\t},\n\t{\n\t\t\"name\": \"French Research Institute for the Exploitation + of the Sea\",\n\t\t\"url\": \"http://www.ifremer.fr/erddap/\",\n\t\t\"public\": + true\n\t}\n]" + recorded_at: 2019-08-29 20:39:53 GMT + recorded_with: vcr/0.3.0, webmockr/0.4.0 diff --git a/tests/vcr_cassettes/tabledap_disk.yml b/tests/vcr_cassettes/tabledap_disk.yml new file mode 100644 index 0000000..f5ad1a9 --- /dev/null +++ b/tests/vcr_cassettes/tabledap_disk.yml @@ -0,0 +1,1953 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:39 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=erdCinpKfmBT_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "acknowledgement", "String", "NOAA NESDIS COASTWATCH, NOAA SWFSC ERD, Channel Islands National Park, National Park Service"], + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "TimeSeries"], + ["attribute", "NC_GLOBAL", "cdm_timeseries_variables", "String", "station, longitude, latitude"], + ["attribute", "NC_GLOBAL", "contributor_email", "String", "David_Kushner@nps.gov"], + ["attribute", "NC_GLOBAL", "contributor_name", "String", "Channel Islands National Park, National Park Service"], + ["attribute", "NC_GLOBAL", "contributor_role", "String", "Source of data."], + ["attribute", "NC_GLOBAL", "Conventions", "String", "COARDS, CF-1.6, ACDD-1.3, NCCSV-1.0"], + ["attribute", "NC_GLOBAL", "creator_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "creator_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "date_created", "String", "2008-06-11T21:36:06Z"], + ["attribute", "NC_GLOBAL", "date_issued", "String", "2008-06-11T21:36:06Z"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "-118.4"], + ["attribute", "NC_GLOBAL", "featureType", "String", "TimeSeries"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "34.05"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "32.8"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "-118.4"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "-120.4"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_max", "double", "17.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_min", "double", "5.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_positive", "String", "down"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_units", "String", "m"], + ["attribute", "NC_GLOBAL", "history", "String", "Channel Islands National Park, National Park Service\n2008-06-11T21:36:06Z NOAA CoastWatch (West Coast Node) and NOAA SFSC ERD"], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "http://www.nps.gov/chis/naturescience/index.htm"], + ["attribute", "NC_GLOBAL", "institution", "String", "CINP"], + ["attribute", "NC_GLOBAL", "keywords", "String", "anamesus, aplysia, aquatic, atmosphere, aurantia, band, biology, biosphere, californica, channel, chilensis, cinp, coastal, corrugata, crassedoma, crenulata, density, depth, Earth Science > Biosphere > Aquatic Ecosystems > Coastal Habitat, Earth Science > Biosphere > Aquatic Ecosystems > Marine Habitat, ecosystems, forest, fruticosa, fulgens, giganteum, habitat, haliotis, height, helianthoides, identifier, interruptus, islands, kelletia, kelletii, kelp, lofotensis, lophogorgia, lytechinus, marine, mean, megathura, monitoring, muricea, panulirus, pycnopodia, rufescens, station, statistics, stddev, stderr, stylaster, survey, tethya, time, transect, urticina"], + ["attribute", "NC_GLOBAL", "keywords_vocabulary", "String", "GCMD Science Keywords"], + ["attribute", "NC_GLOBAL", "license", "String", "The data may be used and redistributed for free but is not intended for legal use, since it may contain inaccuracies. Neither the data Contributor, CoastWatch, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, of this information. National Park Service Disclaimer: The National Park Service shall not be held liable for improper or incorrect use of the data described and/or contained herein. These data and related graphics are not legal documents and are not intended to be used as such. The information contained in these data is dynamic and may change over time. The data are not better than the original sources from which they were derived. It is the responsibility of the data user to use the data appropriately and consistent within the limitation of geospatial data in general and these data in particular. The related graphics are intended to aid the data user in acquiring relevant data; it is not appropriate to use the related graphics as data. The National Park Service gives no warranty, expressed or implied, as to the accuracy, reliability, or completeness of these data. It is strongly recommended that these data are directly acquired from an NPS server and not indirectly through other sources which may have changed the data in some way. Although these data have been processed successfully on computer systems at the National Park Service, no warranty expressed or implied is made regarding the utility of the data on other systems for general or scientific purposes, nor shall the act of distribution constitute any such warranty. This disclaimer applies both to individual use of the data and aggregate use with other data."], + ["attribute", "NC_GLOBAL", "naming_authority", "String", "gov.noaa.pfeg.coastwatch"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "34.05"], + ["attribute", "NC_GLOBAL", "project", "String", "NOAA NMFS SWFSC ERD (https://www.pfeg.noaa.gov/)"], + ["attribute", "NC_GLOBAL", "references", "String", "Channel Islands National Parks Inventory and Monitoring information: http://nature.nps.gov/im/units/medn . Kelp Forest Monitoring Protocols: http://www.nature.nps.gov/im/units/chis/Reports_PDF/Marine/KFM-HandbookVol1.pdf ."], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "(local files)"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "32.8"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v70"], + ["attribute", "NC_GLOBAL", "subsetVariables", "String", "station, longitude, latitude"], + ["attribute", "NC_GLOBAL", "summary", "String", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth."], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2007-07-01T00:00:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "1983-07-01T00:00:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "-120.4"], + ["variable", "station", "", "String", ""], + ["attribute", "station", "cf_role", "String", "timeseries_id"], + ["attribute", "station", "ioos_category", "String", "Identifier"], + ["attribute", "station", "long_name", "String", "Station"], + ["variable", "longitude", "", "double", ""], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "double", "-120.4, -118.4"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "colorBarMaximum", "double", "-118.4"], + ["attribute", "longitude", "colorBarMinimum", "double", "-120.4"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "latitude", "", "double", ""], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "double", "32.8, 34.05"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "colorBarMaximum", "double", "34.5"], + ["attribute", "latitude", "colorBarMinimum", "double", "32.5"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["variable", "depth", "", "double", ""], + ["attribute", "depth", "_CoordinateAxisType", "String", "Height"], + ["attribute", "depth", "_CoordinateZisPositive", "String", "down"], + ["attribute", "depth", "actual_range", "double", "5.0, 17.0"], + ["attribute", "depth", "axis", "String", "Z"], + ["attribute", "depth", "colorBarMaximum", "double", "20.0"], + ["attribute", "depth", "colorBarMinimum", "double", "0.0"], + ["attribute", "depth", "ioos_category", "String", "Location"], + ["attribute", "depth", "long_name", "String", "Depth"], + ["attribute", "depth", "positive", "String", "down"], + ["attribute", "depth", "standard_name", "String", "depth"], + ["attribute", "depth", "units", "String", "m"], + ["variable", "time", "", "double", ""], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "4.258656E8, 1.183248E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "colorBarMaximum", "double", "1.183248E9"], + ["attribute", "time", "colorBarMinimum", "double", "4.258656E8"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Time"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["variable", "Aplysia_californica_Mean_Density", "", "float", ""], + ["attribute", "Aplysia_californica_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Aplysia_californica_Mean_Density", "actual_range", "float", "0.0, 0.95"], + ["attribute", "Aplysia_californica_Mean_Density", "comment", "String", "Common name: California brown sea hare"], + ["attribute", "Aplysia_californica_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Aplysia_californica_Mean_Density", "long_name", "String", "Aplysia californica Mean Density"], + ["attribute", "Aplysia_californica_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Aplysia_californica_Mean_Density", "units", "String", "m-2"], + ["variable", "Aplysia_californica_StdDev", "", "float", ""], + ["attribute", "Aplysia_californica_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Aplysia_californica_StdDev", "actual_range", "float", "0.0, 0.35"], + ["attribute", "Aplysia_californica_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Aplysia_californica_StdDev", "long_name", "String", "Aplysia californica StdDev"], + ["attribute", "Aplysia_californica_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Aplysia_californica_StdErr", "", "float", ""], + ["attribute", "Aplysia_californica_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Aplysia_californica_StdErr", "actual_range", "float", "0.0, 0.1"], + ["attribute", "Aplysia_californica_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Aplysia_californica_StdErr", "long_name", "String", "Aplysia californica StdErr"], + ["attribute", "Aplysia_californica_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Crassedoma_giganteum_Mean_Density", "", "float", ""], + ["attribute", "Crassedoma_giganteum_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "actual_range", "float", "0.0, 0.92"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "comment", "String", "Common name: Rock scallop"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "long_name", "String", "Crassedoma giganteum Mean Density"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "units", "String", "m-2"], + ["variable", "Crassedoma_giganteum_StdDev", "", "float", ""], + ["attribute", "Crassedoma_giganteum_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Crassedoma_giganteum_StdDev", "actual_range", "float", "0.0, 0.71"], + ["attribute", "Crassedoma_giganteum_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Crassedoma_giganteum_StdDev", "long_name", "String", "Crassedoma giganteum StdDev"], + ["attribute", "Crassedoma_giganteum_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Crassedoma_giganteum_StdErr", "", "float", ""], + ["attribute", "Crassedoma_giganteum_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Crassedoma_giganteum_StdErr", "actual_range", "float", "0.0, 0.2"], + ["attribute", "Crassedoma_giganteum_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Crassedoma_giganteum_StdErr", "long_name", "String", "Crassedoma giganteum StdErr"], + ["attribute", "Crassedoma_giganteum_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_corrugata_Mean_Density", "", "float", ""], + ["attribute", "Haliotis_corrugata_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_corrugata_Mean_Density", "actual_range", "float", "0.0, 0.18"], + ["attribute", "Haliotis_corrugata_Mean_Density", "comment", "String", "Common name: Pink abalone"], + ["attribute", "Haliotis_corrugata_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Haliotis_corrugata_Mean_Density", "long_name", "String", "Haliotis corrugata Mean Density"], + ["attribute", "Haliotis_corrugata_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Haliotis_corrugata_Mean_Density", "units", "String", "m-2"], + ["variable", "Haliotis_corrugata_StdDev", "", "float", ""], + ["attribute", "Haliotis_corrugata_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_corrugata_StdDev", "actual_range", "float", "0.0, 0.1"], + ["attribute", "Haliotis_corrugata_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_corrugata_StdDev", "long_name", "String", "Haliotis corrugata StdDev"], + ["attribute", "Haliotis_corrugata_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_corrugata_StdErr", "", "float", ""], + ["attribute", "Haliotis_corrugata_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_corrugata_StdErr", "actual_range", "float", "0.0, 0.03"], + ["attribute", "Haliotis_corrugata_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_corrugata_StdErr", "long_name", "String", "Haliotis corrugata StdErr"], + ["attribute", "Haliotis_corrugata_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_fulgens_Mean_Density", "", "float", ""], + ["attribute", "Haliotis_fulgens_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_fulgens_Mean_Density", "actual_range", "float", "0.0, 0.005555556"], + ["attribute", "Haliotis_fulgens_Mean_Density", "comment", "String", "Common name: Green abalone"], + ["attribute", "Haliotis_fulgens_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Haliotis_fulgens_Mean_Density", "long_name", "String", "Haliotis fulgens Mean Density"], + ["attribute", "Haliotis_fulgens_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Haliotis_fulgens_Mean_Density", "units", "String", "m-2"], + ["variable", "Haliotis_fulgens_StdDev", "", "float", ""], + ["attribute", "Haliotis_fulgens_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_fulgens_StdDev", "actual_range", "float", "0.0, 0.008206099"], + ["attribute", "Haliotis_fulgens_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_fulgens_StdDev", "long_name", "String", "Haliotis fulgens StdDev"], + ["attribute", "Haliotis_fulgens_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_fulgens_StdErr", "", "float", ""], + ["attribute", "Haliotis_fulgens_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_fulgens_StdErr", "actual_range", "float", "0.0, 0.002368897"], + ["attribute", "Haliotis_fulgens_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_fulgens_StdErr", "long_name", "String", "Haliotis fulgens StdErr"], + ["attribute", "Haliotis_fulgens_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_rufescens_Mean_Density", "", "float", ""], + ["attribute", "Haliotis_rufescens_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_rufescens_Mean_Density", "actual_range", "float", "0.0, 0.99"], + ["attribute", "Haliotis_rufescens_Mean_Density", "comment", "String", "Common name: Red abalone"], + ["attribute", "Haliotis_rufescens_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Haliotis_rufescens_Mean_Density", "long_name", "String", "Haliotis rufescens Mean Density"], + ["attribute", "Haliotis_rufescens_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Haliotis_rufescens_Mean_Density", "units", "String", "m-2"], + ["variable", "Haliotis_rufescens_StdDev", "", "float", ""], + ["attribute", "Haliotis_rufescens_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_rufescens_StdDev", "actual_range", "float", "0.0, 0.6"], + ["attribute", "Haliotis_rufescens_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_rufescens_StdDev", "long_name", "String", "Haliotis rufescens StdDev"], + ["attribute", "Haliotis_rufescens_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_rufescens_StdErr", "", "float", ""], + ["attribute", "Haliotis_rufescens_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_rufescens_StdErr", "actual_range", "float", "0.0, 0.17"], + ["attribute", "Haliotis_rufescens_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_rufescens_StdErr", "long_name", "String", "Haliotis rufescens StdErr"], + ["attribute", "Haliotis_rufescens_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Kelletia_kelletii_Mean_Density", "", "float", ""], + ["attribute", "Kelletia_kelletii_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Kelletia_kelletii_Mean_Density", "actual_range", "float", "0.0, 0.55"], + ["attribute", "Kelletia_kelletii_Mean_Density", "comment", "String", "Common name: Kellet's whelk"], + ["attribute", "Kelletia_kelletii_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Kelletia_kelletii_Mean_Density", "long_name", "String", "Kelletia kelletii Mean Density"], + ["attribute", "Kelletia_kelletii_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Kelletia_kelletii_Mean_Density", "units", "String", "m-2"], + ["variable", "Kelletia_kelletii_StdDev", "", "float", ""], + ["attribute", "Kelletia_kelletii_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Kelletia_kelletii_StdDev", "actual_range", "float", "0.0, 0.29"], + ["attribute", "Kelletia_kelletii_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Kelletia_kelletii_StdDev", "long_name", "String", "Kelletia kelletii StdDev"], + ["attribute", "Kelletia_kelletii_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Kelletia_kelletii_StdErr", "", "float", ""], + ["attribute", "Kelletia_kelletii_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Kelletia_kelletii_StdErr", "actual_range", "float", "0.0, 0.08"], + ["attribute", "Kelletia_kelletii_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Kelletia_kelletii_StdErr", "long_name", "String", "Kelletia kelletii StdErr"], + ["attribute", "Kelletia_kelletii_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Lophogorgia_chilensis_Mean_Density", "", "float", ""], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "actual_range", "float", "0.0, 0.7"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "comment", "String", "Common name: Red gorgonian"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "long_name", "String", "Lophogorgia chilensis Mean Density"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "units", "String", "m-2"], + ["variable", "Lophogorgia_chilensis_StdDev", "", "float", ""], + ["attribute", "Lophogorgia_chilensis_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lophogorgia_chilensis_StdDev", "actual_range", "float", "0.0, 0.44"], + ["attribute", "Lophogorgia_chilensis_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Lophogorgia_chilensis_StdDev", "long_name", "String", "Lophogorgia chilensis StdDev"], + ["attribute", "Lophogorgia_chilensis_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Lophogorgia_chilensis_StdErr", "", "float", ""], + ["attribute", "Lophogorgia_chilensis_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lophogorgia_chilensis_StdErr", "actual_range", "float", "0.0, 0.12"], + ["attribute", "Lophogorgia_chilensis_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Lophogorgia_chilensis_StdErr", "long_name", "String", "Lophogorgia chilensis StdErr"], + ["attribute", "Lophogorgia_chilensis_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Lytechinus_anamesus_Mean_Density", "", "float", ""], + ["attribute", "Lytechinus_anamesus_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "actual_range", "float", "0.0, 22.45"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "comment", "String", "Common name: White sea urchin"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "long_name", "String", "Lytechinus anamesus Mean Density"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "units", "String", "m-2"], + ["variable", "Lytechinus_anamesus_StdDev", "", "float", ""], + ["attribute", "Lytechinus_anamesus_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lytechinus_anamesus_StdDev", "actual_range", "float", "0.0, 9.2"], + ["attribute", "Lytechinus_anamesus_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Lytechinus_anamesus_StdDev", "long_name", "String", "Lytechinus anamesus StdDev"], + ["attribute", "Lytechinus_anamesus_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Lytechinus_anamesus_StdErr", "", "float", ""], + ["attribute", "Lytechinus_anamesus_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lytechinus_anamesus_StdErr", "actual_range", "float", "0.0, 2.65"], + ["attribute", "Lytechinus_anamesus_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Lytechinus_anamesus_StdErr", "long_name", "String", "Lytechinus anamesus StdErr"], + ["attribute", "Lytechinus_anamesus_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Megathura_crenulata_Mean_Density", "", "float", ""], + ["attribute", "Megathura_crenulata_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Megathura_crenulata_Mean_Density", "actual_range", "float", "0.0, 0.5"], + ["attribute", "Megathura_crenulata_Mean_Density", "comment", "String", "Common name: Giant keyhole limpet"], + ["attribute", "Megathura_crenulata_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Megathura_crenulata_Mean_Density", "long_name", "String", "Megathura crenulata Mean Density"], + ["attribute", "Megathura_crenulata_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Megathura_crenulata_Mean_Density", "units", "String", "m-2"], + ["variable", "Megathura_crenulata_StdDev", "", "float", ""], + ["attribute", "Megathura_crenulata_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Megathura_crenulata_StdDev", "actual_range", "float", "0.0, 0.22"], + ["attribute", "Megathura_crenulata_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Megathura_crenulata_StdDev", "long_name", "String", "Megathura crenulata StdDev"], + ["attribute", "Megathura_crenulata_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Megathura_crenulata_StdErr", "", "float", ""], + ["attribute", "Megathura_crenulata_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Megathura_crenulata_StdErr", "actual_range", "float", "0.0, 0.07"], + ["attribute", "Megathura_crenulata_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Megathura_crenulata_StdErr", "long_name", "String", "Megathura crenulata StdErr"], + ["attribute", "Megathura_crenulata_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Muricea_californica_Mean_Density", "", "float", ""], + ["attribute", "Muricea_californica_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_californica_Mean_Density", "actual_range", "float", "0.0, 0.31"], + ["attribute", "Muricea_californica_Mean_Density", "comment", "String", "Common name: California golden gorgonian"], + ["attribute", "Muricea_californica_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Muricea_californica_Mean_Density", "long_name", "String", "Muricea californica Mean Density"], + ["attribute", "Muricea_californica_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Muricea_californica_Mean_Density", "units", "String", "m-2"], + ["variable", "Muricea_californica_StdDev", "", "float", ""], + ["attribute", "Muricea_californica_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_californica_StdDev", "actual_range", "float", "0.0, 0.16"], + ["attribute", "Muricea_californica_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Muricea_californica_StdDev", "long_name", "String", "Muricea californica StdDev"], + ["attribute", "Muricea_californica_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Muricea_californica_StdErr", "", "float", ""], + ["attribute", "Muricea_californica_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_californica_StdErr", "actual_range", "float", "0.0, 0.04"], + ["attribute", "Muricea_californica_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Muricea_californica_StdErr", "long_name", "String", "Muricea californica StdErr"], + ["attribute", "Muricea_californica_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Muricea_fruticosa_Mean_Density", "", "float", ""], + ["attribute", "Muricea_fruticosa_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_fruticosa_Mean_Density", "actual_range", "float", "0.0, 0.04"], + ["attribute", "Muricea_fruticosa_Mean_Density", "comment", "String", "Common name: Brown gorgonian"], + ["attribute", "Muricea_fruticosa_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Muricea_fruticosa_Mean_Density", "long_name", "String", "Muricea fruticosa Mean Density"], + ["attribute", "Muricea_fruticosa_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Muricea_fruticosa_Mean_Density", "units", "String", "m-2"], + ["variable", "Muricea_fruticosa_StdDev", "", "float", ""], + ["attribute", "Muricea_fruticosa_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_fruticosa_StdDev", "actual_range", "float", "0.0, 0.09"], + ["attribute", "Muricea_fruticosa_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Muricea_fruticosa_StdDev", "long_name", "String", "Muricea fruticosa StdDev"], + ["attribute", "Muricea_fruticosa_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Muricea_fruticosa_StdErr", "", "float", ""], + ["attribute", "Muricea_fruticosa_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_fruticosa_StdErr", "actual_range", "float", "0.0, 0.02"], + ["attribute", "Muricea_fruticosa_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Muricea_fruticosa_StdErr", "long_name", "String", "Muricea fruticosa StdErr"], + ["attribute", "Muricea_fruticosa_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Panulirus_interruptus_Mean_Density", "", "float", ""], + ["attribute", "Panulirus_interruptus_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Panulirus_interruptus_Mean_Density", "actual_range", "float", "0.0, 0.11"], + ["attribute", "Panulirus_interruptus_Mean_Density", "comment", "String", "Common name: California spiny lobster"], + ["attribute", "Panulirus_interruptus_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Panulirus_interruptus_Mean_Density", "long_name", "String", "Panulirus interruptus Mean Density"], + ["attribute", "Panulirus_interruptus_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Panulirus_interruptus_Mean_Density", "units", "String", "m-2"], + ["variable", "Panulirus_interruptus_StdDev", "", "float", ""], + ["attribute", "Panulirus_interruptus_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Panulirus_interruptus_StdDev", "actual_range", "float", "0.0, 0.32"], + ["attribute", "Panulirus_interruptus_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Panulirus_interruptus_StdDev", "long_name", "String", "Panulirus interruptus StdDev"], + ["attribute", "Panulirus_interruptus_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Panulirus_interruptus_StdErr", "", "float", ""], + ["attribute", "Panulirus_interruptus_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Panulirus_interruptus_StdErr", "actual_range", "float", "0.0, 0.09"], + ["attribute", "Panulirus_interruptus_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Panulirus_interruptus_StdErr", "long_name", "String", "Panulirus interruptus StdErr"], + ["attribute", "Panulirus_interruptus_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Pycnopodia_helianthoides_Mean_Density", "", "float", ""], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "actual_range", "float", "0.0, 0.33"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "comment", "String", "Common name: Sunflower star"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "long_name", "String", "Pycnopodia helianthoides Mean Density"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "units", "String", "m-2"], + ["variable", "Pycnopodia_helianthoides_StdDev", "", "float", ""], + ["attribute", "Pycnopodia_helianthoides_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Pycnopodia_helianthoides_StdDev", "actual_range", "float", "0.0, 0.21"], + ["attribute", "Pycnopodia_helianthoides_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Pycnopodia_helianthoides_StdDev", "long_name", "String", "Pycnopodia helianthoides StdDev"], + ["attribute", "Pycnopodia_helianthoides_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Pycnopodia_helianthoides_StdErr", "", "float", ""], + ["attribute", "Pycnopodia_helianthoides_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Pycnopodia_helianthoides_StdErr", "actual_range", "float", "0.0, 0.06"], + ["attribute", "Pycnopodia_helianthoides_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Pycnopodia_helianthoides_StdErr", "long_name", "String", "Pycnopodia helianthoides StdErr"], + ["attribute", "Pycnopodia_helianthoides_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Stylaster_californica_Mean_Density", "", "float", ""], + ["attribute", "Stylaster_californica_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Stylaster_californica_Mean_Density", "actual_range", "float", "0.0, 0.13"], + ["attribute", "Stylaster_californica_Mean_Density", "comment", "String", "Common name: California hydrocoral"], + ["attribute", "Stylaster_californica_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Stylaster_californica_Mean_Density", "long_name", "String", "Stylaster californica Mean Density"], + ["attribute", "Stylaster_californica_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Stylaster_californica_Mean_Density", "units", "String", "m-2"], + ["variable", "Stylaster_californica_StdDev", "", "float", ""], + ["attribute", "Stylaster_californica_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Stylaster_californica_StdDev", "actual_range", "float", "0.0, 0.18"], + ["attribute", "Stylaster_californica_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Stylaster_californica_StdDev", "long_name", "String", "Stylaster californica StdDev"], + ["attribute", "Stylaster_californica_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Stylaster_californica_StdErr", "", "float", ""], + ["attribute", "Stylaster_californica_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Stylaster_californica_StdErr", "actual_range", "float", "0.0, 0.05"], + ["attribute", "Stylaster_californica_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Stylaster_californica_StdErr", "long_name", "String", "Stylaster californica StdErr"], + ["attribute", "Stylaster_californica_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Tethya_aurantia_Mean_Density", "", "float", ""], + ["attribute", "Tethya_aurantia_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Tethya_aurantia_Mean_Density", "actual_range", "float", "0.0, 0.41"], + ["attribute", "Tethya_aurantia_Mean_Density", "comment", "String", "Common name: Orange puffball sponge"], + ["attribute", "Tethya_aurantia_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Tethya_aurantia_Mean_Density", "long_name", "String", "Tethya aurantia Mean Density"], + ["attribute", "Tethya_aurantia_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Tethya_aurantia_Mean_Density", "units", "String", "m-2"], + ["variable", "Tethya_aurantia_StdDev", "", "float", ""], + ["attribute", "Tethya_aurantia_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Tethya_aurantia_StdDev", "actual_range", "float", "0.0, 0.18"], + ["attribute", "Tethya_aurantia_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Tethya_aurantia_StdDev", "long_name", "String", "Tethya aurantia StdDev"], + ["attribute", "Tethya_aurantia_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Tethya_aurantia_StdErr", "", "float", ""], + ["attribute", "Tethya_aurantia_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Tethya_aurantia_StdErr", "actual_range", "float", "0.0, 0.05"], + ["attribute", "Tethya_aurantia_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Tethya_aurantia_StdErr", "long_name", "String", "Tethya aurantia StdErr"], + ["attribute", "Tethya_aurantia_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Urticina_lofotensis_Mean_Density", "", "float", ""], + ["attribute", "Urticina_lofotensis_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Urticina_lofotensis_Mean_Density", "actual_range", "float", "0.0, 0.39"], + ["attribute", "Urticina_lofotensis_Mean_Density", "comment", "String", "Common name: White-spotted rose anemone"], + ["attribute", "Urticina_lofotensis_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Urticina_lofotensis_Mean_Density", "long_name", "String", "Urticina lofotensis Mean Density"], + ["attribute", "Urticina_lofotensis_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Urticina_lofotensis_Mean_Density", "units", "String", "m-2"], + ["variable", "Urticina_lofotensis_StdDev", "", "float", ""], + ["attribute", "Urticina_lofotensis_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Urticina_lofotensis_StdDev", "actual_range", "float", "0.0, 0.28"], + ["attribute", "Urticina_lofotensis_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Urticina_lofotensis_StdDev", "long_name", "String", "Urticina lofotensis StdDev"], + ["attribute", "Urticina_lofotensis_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Urticina_lofotensis_StdErr", "", "float", ""], + ["attribute", "Urticina_lofotensis_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Urticina_lofotensis_StdErr", "actual_range", "float", "0.0, 0.08"], + ["attribute", "Urticina_lofotensis_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Urticina_lofotensis_StdErr", "long_name", "String", "Urticina lofotensis StdErr"], + ["attribute", "Urticina_lofotensis_StdErr", "missing_value", "float", "-9999999.0"] + ] + } + } + recorded_at: 2020-07-15 22:22:28 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:40 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:22:40 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://upwell.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012.graph", "", "", "public", "AIS Ship Traffic: Hawaii: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_hi_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_hi_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_hi_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_hi_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_hi_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_hi_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012.graph", "", "", "public", "AIS Ship Traffic: Johnston Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Johnston Atoll. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_john_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_john_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_john_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_john_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_john_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_john_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012.graph", "", "", "public", "AIS Ship Traffic: Mariana and Wake: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Mariana Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_mari_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_mari_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_mari_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_mari_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_mari_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_mari_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012.graph", "", "", "public", "AIS Ship Traffic: Rose Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Rose Atoll in American Samoa. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_rose_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_rose_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_rose_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_rose_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_rose_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_rose_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom for the most recent 7 days.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_temp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_temp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_temp/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_temp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_temp&showErrors=false&email=", "University of Hawaii", "aco_adcp_temp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Velocity", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean current velocity at the ACO from a 250 kHz SonTek acoustic doppler current profiler (ADCP) at 1.83 m above the ocean bottom for the most recent 7 days. Velocities are flagged bad if the amplitude is excessively low or high. An amplitude is high if it exceeds the average of the ping before and the ping after by 20 counts. An amplitude is low if less than 6 counts. After this the velocities are flagged bad if the absolute deviation of the vertical velocity from its ensemble median exceeds 0.15 m/s or if its value is less than -0.25 m/s.\n\ncdm_data_type = Profile\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each location, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\neastward_sea_water_velocity (current east component, meters/second)\nnorthward_sea_water_velocity (current north component, meters/second)\nupward_sea_water_velocity (current upward component, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_vel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_vel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_vel/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_vel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_vel&showErrors=false&email=", "University of Hawaii", "aco_adcp_vel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://upwell.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF.graph", "", "", "public", "CRRF Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-CRRF: CRRF Weather Station: Palau: Koror: Ngeanges Island)\nair_temperature (Celsius)\nair_temperature_max (maximum air temperature, Celsius)\nair_temperature_max_time (maximum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (minimum air temperature, Celsius)\nair_temperature_min_time (minimum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_std (air temperature standard deviation, Celsius)\nwind_speed (m/s)\nwind_speed_max (gust speed, m/s)\nwind_speed_max_time (gust speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (minimum wind speed, m/s)\nwind_speed_min_time (minimum wind speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_std (wind speed standard deviation, m/s)\nwind_from_direction (wind direction, degrees)\nwind_from_direction_std (wind direction standard deviation, degrees)\nrainfall_amount (total rainfall, mm)\n... (23 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-CRRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-CRRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-CRRF/index.json", "https://www.pacioos.hawaii.edu/weather/obs-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-CRRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-CRRF&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "AWS-CRRF"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_1000genomes/", "public", "File Names from the AWS S3 1000genomes Bucket: 1000 Genomes", "This dataset has file information from the AWS S3 1000genomes bucket at https://1000genomes.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 1000 Genomes\nName2: http://www.internationalgenome.org/formats\nDescription: The 1000 Genomes Project is an international collaboration which has established the most detailed catalogue of human genetic variation, including SNPs, structural variants, and their haplotype context. The final phase of the project sequenced more than 2500 individuals from 26 different populations around the world and produced an integrated set of phased haplotypes with more than 80 million variants for these individuals.\n\nDocumentation: https://docs.opendata.aws/1000genomes/readme.html\nContact: http://www.internationalgenome.org/contact\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_1000genomes/index.json", "https://registry.opendata.aws/1000-genomes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_1000genomes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_1000genomes&showErrors=false&email=", "Amazon Web Services", "awsS3Files_1000genomes"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_3kricegenome/", "public", "File Names from the AWS S3 3kricegenome Bucket: 3000 Rice Genomes Project", "This dataset has file information from the AWS S3 3kricegenome bucket at https://3kricegenome.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 3000 Rice Genomes Project\nName2: http://s3.amazonaws.com/3kricegenome/README-snp_pipeline.txt\nDescription: The 3000 Rice Genome Project is an international effort to sequence the genomes of 3,024 rice varieties from 89 countries.\n\nDocumentation: https://docs.opendata.aws/3kricegenome/readme.html\nContact: http://iric.irri.org/contact-us\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_3kricegenome/index.json", "https://registry.opendata.aws/3kricegenome/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_3kricegenome.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_3kricegenome&showErrors=false&email=", "Amazon Web Services", "awsS3Files_3kricegenome"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aft_vbi_pds/", "public", "File Names from the AWS S3 aft-vbi-pds Bucket: Amazon Bin Image Dataset: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.", "This dataset has file information from the AWS S3 aft-vbi-pds bucket at https://aft-vbi-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Bin Image Dataset\nName2: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.\nDescription: The Amazon Bin Image Dataset contains over 500,000 images and metadata from bins of a pod in an operating Amazon Fulfillment Center. The bin images in this dataset are captured as robot units carry pods as part of normal Amazon Fulfillment Center operations.\n\nDocumentation: https://docs.opendata.aws/aft-vbi-pds/readme.html\nContact: amazon-bin-images@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aft_vbi_pds/index.json", "https://registry.opendata.aws/amazon-bin-imagery/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aft_vbi_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aft_vbi_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aft_vbi_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory/", "public", "File Names from the AWS S3 allen-brain-observatory Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: Project data files in a public bucket", "This dataset has file information from the AWS S3 allen-brain-observatory bucket at https://allen-brain-observatory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: Project data files in a public bucket\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory_templates/", "public", "File Names from the AWS S3 allen-brain-observatory-templates Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: SageMaker launch template with s3fs bucket mounts", "This dataset has file information from the AWS S3 allen-brain-observatory-templates bucket at https://allen-brain-observatory-templates.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: SageMaker launch template with s3fs bucket mounts\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory_templates/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory_templates.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory_templates&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory_templates"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_amazon_reviews_pds/", "public", "File Names from the AWS S3 amazon-reviews-pds Bucket: Amazon Customer Reviews Dataset: TSV files of reviews", "This dataset has file information from the AWS S3 amazon-reviews-pds bucket at https://amazon-reviews-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Customer Reviews Dataset\nName2: TSV files of reviews\nDescription: Amazon Customer Reviews (a.k.a. Product Reviews) is one of Amazon\u2019s iconic products. In a period of over two decades since the first review in 1995, millions of Amazon customers have contributed over a hundred million reviews to express opinions and describe their experiences regarding products on the Amazon.com website. Over 130+ million customer reviews are available to researchers as part of this dataset.\n\nDocumentation: https://s3.amazonaws.com/amazon-reviews-pds/readme.html\nContact: customer-review-dataset@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not defined\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_amazon_reviews_pds/index.json", "https://registry.opendata.aws/amazon-reviews/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_amazon_reviews_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_amazon_reviews_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_amazon_reviews_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_avg_kitti/", "public", "File Names from the AWS S3 avg-kitti Bucket: KITTI Vision Benchmark Suite", "This dataset has file information from the AWS S3 avg-kitti bucket at https://avg-kitti.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: KITTI Vision Benchmark Suite\nName2: http://www.cvlibs.net/datasets/kitti/raw_data.php\nDescription: Dataset and benchmarks for computer vision research in the context of autonomous driving. The dataset has been recorded in and around the city of Karlsruhe, Germany using the mobile platform AnnieWay (VW station wagon) which has been equipped with several RGB and monochrome cameras, a Velodyne HDL 64 laser scanner as well as an accurate RTK corrected GPS/IMU localization unit. The dataset has been created for computer vision and machine learning research on stereo, optical flow, visual odometry, semantic segmentation, semantic instance segmentation, road segmentation, single image depth prediction, depth map completion, 2D and 3D object detection and object tracking. In addition, several raw data recordings are provided. The datasets are captured by driving around the mid-size city of Karlsruhe, in rural areas and on highways. Up to 15 cars and 30 pedestrians are visible per image.\n\nDocumentation: http://www.cvlibs.net/datasets/kitti/\nContact: http://www.cvlibs.net/people.php\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_avg_kitti/index.json", "https://registry.opendata.aws/kitti/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_avg_kitti.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_avg_kitti&showErrors=false&email=", "Amazon Web Services", "awsS3Files_avg_kitti"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/", "public", "File Names from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd Bucket: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)", "This dataset has file information from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd bucket at https://aws-earth-mo-atmospheric-mogreps-g-prd.s3.eu-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts\nName2: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)\nDescription: Meteorological data reusers now have an exciting opportunity to sample, experiment and evaluate Met Office atmospheric model data, whilst also experiencing a transformative method of requesting data via Restful APIs on AWS. All ahead of Met Office\u2019s own operationally supported API platform that will be launched in late 2019.\n\nDocumentation: https://github.com/MetOffice/aws-earth-examples\nContact: https://www.metoffice.gov.uk/about-us/contact\nUpdateFrequency: Daily (with 24 hour delay)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/index.json", "https://registry.opendata.aws/uk-met-office/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_gsod/", "public", "File Names from the AWS S3 aws-gsod Bucket: Global Surface Summary of Day: Measurements and metadata", "This dataset has file information from the AWS S3 aws-gsod bucket at https://aws-gsod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Surface Summary of Day\nName2: Measurements and metadata\nDescription: GSOD is a collection of daily weather measurements (temperature, wind speed, humidity, pressure, and more) from 9000+ weather stations around the world.\n\nDocumentation: https://www.ncdc.noaa.gov/\nContact: https://www.ncdc.noaa.gov/\nUpdateFrequency: Currently updated infrequently. Last updated on September 13, 2016.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_gsod/index.json", "https://registry.opendata.aws/noaa-gsod/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_gsod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_gsod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_gsod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_broad_references/", "public", "File Names from the AWS S3 broad-references Bucket: Broad Genome References: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.", "This dataset has file information from the AWS S3 broad-references bucket at https://broad-references.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Broad Genome References\nName2: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.\nDescription: Broad maintained human genome reference builds hg19/hg38 and decoy references.\n\nDocumentation: https://s3.amazonaws.com/broad-references/broad-references-readme.html\nContact: hensonc@broadinstitute.org\nManagedBy: Broad Institute\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_broad_references/index.json", "https://registry.opendata.aws/broad-references/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_broad_references.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_broad_references&showErrors=false&email=", "Amazon Web Services", "awsS3Files_broad_references"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cbers_meta_pds/", "public", "File Names from the AWS S3 cbers-meta-pds Bucket: CBERS on AWS: CBERS metadata (Quicklooks, metadata)", "This dataset has file information from the AWS S3 cbers-meta-pds bucket at https://cbers-meta-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CBERS on AWS\nName2: CBERS metadata (Quicklooks, metadata)\nDescription: This project creates a S3 repository with imagery acquired by the China-Brazil Earth Resources Satellite (CBERS). The image files are recorded and processed by Instituto Nacional de Pesquisa Espaciais (INPE) and are converted to Cloud Optimized Geotiff format in order to optimize its use for cloud based applications. The repository contains all CBERS-4 MUX, AWFI, PAN5M and PAN10M scenes acquired since the start of the satellite mission and is daily updated with new scenes.\n\nDocumentation: https://github.com/fredliporace/cbers-on-aws\nContact: https://lists.osgeo.org/mailman/listinfo/cbers-pds\nManagedBy: [AMS Kepler](https://amskepler.com/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cbers_meta_pds/index.json", "https://registry.opendata.aws/cbers/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cbers_meta_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cbers_meta_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cbers_meta_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cgiardata/", "public", "File Names from the AWS S3 cgiardata Bucket: CCAFS-Climate Data: ARC GRID, and ARC ASCII format compressed", "This dataset has file information from the AWS S3 cgiardata bucket at https://cgiardata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CCAFS-Climate Data\nName2: ARC GRID, and ARC ASCII format compressed\nDescription: High resolution climate data to help assess the impacts of climate change primarily on agriculture. These open access datasets of climate projections will help researchers make climate change impact assessments.\n\nDocumentation: http://www.ccafs-climate.org\nContact: http://www.ccafs-climate.org/contact/\nUpdateFrequency: Every three months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cgiardata/index.json", "https://registry.opendata.aws/cgiardata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cgiardata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cgiardata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cgiardata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_commoncrawl/", "public", "File Names from the AWS S3 commoncrawl Bucket: Common Crawl: Crawl data (WARC and ARC format)", "This dataset has file information from the AWS S3 commoncrawl bucket at https://commoncrawl.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Common Crawl\nName2: Crawl data (WARC and ARC format)\nDescription: A corpus of web crawl data composed of over 25 billion web pages.\n\nDocumentation: http://commoncrawl.org/the-data/get-started/\nContact: http://commoncrawl.org/connect/contact-us/\nManagedBy: [Common Crawl](http://commoncrawl.org/)\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_commoncrawl/index.json", "https://registry.opendata.aws/commoncrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_commoncrawl.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_commoncrawl&showErrors=false&email=", "Amazon Web Services", "awsS3Files_commoncrawl"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cornell_eas_data_lake/", "public", "File Names from the AWS S3 cornell-eas-data-lake Bucket: Cornell EAS Data Lake: Cornell EAS Data Lake", "This dataset has file information from the AWS S3 cornell-eas-data-lake bucket at https://cornell-eas-data-lake.s3.us-east-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cornell EAS Data Lake\nName2: Cornell EAS Data Lake\nDescription: Earth & Atmospheric Sciences at Cornell University has created a public data lake of climate data. The data is stored in columnar storage formats (ORC) to make it straightforward to query using standard tools like Amazon Athena or Apache Spark. The data itself is originally intended to be used for building decision support tools for farmers and digital agriculture. The first dataset is the historical NDFD / NDGD data distributed by NCEP / NOAA / NWS. The NDFD (National Digital Forecast Database) and NDGD (National Digital Guidance Database) contain gridded forecasts and observations at 2.5km resolution for the Contiguous United States (CONUS). There are also 5km grids for several smaller US regions and non-continguous territories, such as Hawaii, Guam, Puerto Rico and Alaska. NOAA distributes archives of the NDFD/NDGD via its NOAA Operational Model Archive and Distribution System (NOMADS) in Grib2 format. The data has been converted to ORC to optimize storage space and to, more importantly, simplify data access via standard data analytics tools.\n\nDocumentation: https://datalake.eas.cornell.edu/\nContact: digitalag@cornell.edu\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cornell_eas_data_lake/index.json", "https://registry.opendata.aws/cornell-eas-data-lake/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cornell_eas_data_lake.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cornell_eas_data_lake&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cornell_eas_data_lake"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cse_cic_ids2018/", "public", "File Names from the AWS S3 cse-cic-ids2018 Bucket: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018): Network traffic and log files", "This dataset has file information from the AWS S3 cse-cic-ids2018 bucket at https://cse-cic-ids2018.s3.ca-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018)\nName2: Network traffic and log files\nDescription: This dataset is the result of a collaborative project between the Communications Security Establishment (CSE) and The Canadian Institute for Cybersecurity (CIC) that use the notion of profiles to generate cybersecurity dataset in a systematic manner. It incluides a detailed description of intrusions along with abstract distribution models for applications, protocols, or lower level network entities. The dataset includes seven different attack scenarios, namely Brute-force, Heartbleed, Botnet, DoS, DDoS, Web attacks, and infiltration of the network from inside. The attacking infrastructure includes 50 machines and the victim organization has 5 departments includes 420 PCs and 30 servers. This dataset includes the network traffic and log files of each machine from the victim side, along with 80 network traffic features extracted from captured traffic using CICFlowMeter-V3. For more information on the creation of this dataset, see this paper by researchers at the Canadian Institute for Cybersecurity (CIC) and the University of New Brunswick (UNB): [Toward Generating a New Intrusion Detection Dataset and Intrusion Traffic Characterization](http://www.scitepress.org/Papers/2018/66398/66398.pdf).\n\nDocumentation: http://www.unb.ca/cic/datasets/ids-2018.html\nContact: CIC@unb.ca\nUpdateFrequency: Annualy\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cse_cic_ids2018/index.json", "https://registry.opendata.aws/cse-cic-ids2018/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cse_cic_ids2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cse_cic_ids2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cse_cic_ids2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cytodata/", "public", "File Names from the AWS S3 cytodata Bucket: Cell Painting Image Collection: Images, extracted features and aggregated profiles are available as a S3 bucket", "This dataset has file information from the AWS S3 cytodata bucket at https://cytodata.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cell Painting Image Collection\nName2: Images, extracted features and aggregated profiles are available as a S3 bucket\nDescription: The Cell Painting Image Collection is a collection of freely downloadable microscopy image sets. Cell Painting is an unbiased high throughput imaging assay used to analyze perturbations in cell models. In addition to the images themselves, each set includes a description of the biological application and some type of \"ground truth\" (expected results). Researchers are encouraged to use these image sets as reference points when developing, testing, and publishing new image analysis algorithms for the life sciences. We hope that the this data set will lead to a better understanding of which methods are best for various biological image analysis applications.\n\nDocumentation: https://github.com/cytodata/cytodata-hackathon-2018\nContact: Post on https://forum.image.sc/ and tag with \"cellpainting\"\nUpdateFrequency: irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cytodata/index.json", "https://registry.opendata.aws/cell-painting-image-collection/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cytodata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cytodata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cytodata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_czb_tabula_muris/", "public", "File Names from the AWS S3 czb-tabula-muris Bucket: Tabula Muris", "This dataset has file information from the AWS S3 czb-tabula-muris bucket at https://czb-tabula-muris.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Tabula Muris\nName2: https://github.com/czbiohub/tabula-muris\nDescription: Tabula Muris is a compendium of single cell transcriptomic data from the model organism *Mus musculus* comprising more than 100,000 cells from 20 organs and tissues. These data represent a new resource for cell biology, reveal gene expression in poorly characterized cell populations, and allow for direct and controlled comparison of gene expression in cell types shared between tissues, such as T-lymphocytes and endothelial cells from different anatomical locations. Two distinct technical approaches were used for most organs: one approach, microfluidic droplet-based 3\u2019-end counting, enabled the survey of thousands of cells at relatively low coverage, while the other, FACS-based full length transcript analysis, enabled characterization of cell types with high sensitivity and coverage. The cumulative data provide the foundation for an atlas of transcriptomic cell biology. See: https://www.nature.com/articles/s41586-018-0590-4\n\nDocumentation: https://github.com/czbiohub/tabula-muris/blob/master/tabula-muris-on-aws.md\nContact: If you have questions about the data, you can create an Issue at https://github.com/czbiohub/tabula-muris.\nManagedBy: [Chan Zuckerberg Biohub](https://www.czbiohub.org/)\nUpdateFrequency: This is the final version of the dataset, it will not be updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_czb_tabula_muris/index.json", "https://registry.opendata.aws/tabula-muris/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_czb_tabula_muris.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_czb_tabula_muris&showErrors=false&email=", "Amazon Web Services", "awsS3Files_czb_tabula_muris"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataforgood_fb_data/", "public", "File Names from the AWS S3 dataforgood-fb-data Bucket: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook: CSV and Cloud-optimized GeoTIFF files", "This dataset has file information from the AWS S3 dataforgood-fb-data bucket at https://dataforgood-fb-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook\nName2: CSV and Cloud-optimized GeoTIFF files\nDescription: Population data for a selection of countries, allocated to 1 arcsecond blocks and provided in a combination of CSV and Cloud-optimized GeoTIFF files. This refines [CIESIN\u2019s Gridded Population of the World](https://sedac.ciesin.columbia.edu/data/collection/gpw-v4) using machine learning models on high-resolution worldwide Digital Globe satellite imagery. CIESIN population counts aggregated from worldwide census data are allocated to blocks where imagery appears to contain buildings.\n\nDocumentation: [Project overview](https://dataforgood.fb.com/population-density-maps-documentation/) and [dataset description](https://docs.opendata.aws/dataforgood-fb-data/readme.html)\nContact: disastermaps@fb.com\nManagedBy: |\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataforgood_fb_data/index.json", "https://registry.opendata.aws/dataforgood-fb-hrsl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataforgood_fb_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataforgood_fb_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataforgood_fb_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_datasets_elasticmapreduce_ngrams_books/", "public", "File Names from the AWS S3 datasets.elasticmapreduce Bucket with prefix=ngrams/books/: Google Books Ngrams: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.", "This dataset has file information from the AWS S3 datasets.elasticmapreduce bucket at https://datasets.elasticmapreduce.s3.us-east-1.amazonaws.com/ with prefix=ngrams/books/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Google Books Ngrams\nName2: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.\nDescription: N-grams are fixed size tuples of items. In this case the items are words extracted from the Google Books corpus. The n specifies the number of elements in the tuple, so a 5-gram contains five words or characters. The n-grams in this dataset were produced by passing a sliding window of the text of books and outputting a record for each new token.\n\nDocumentation: http://books.google.com/ngrams/\nContact: https://books.google.com/ngrams\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_datasets_elasticmapreduce_ngrams_books/index.json", "https://registry.opendata.aws/google-ngrams/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_datasets_elasticmapreduce_ngrams_books.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_datasets_elasticmapreduce_ngrams_books&showErrors=false&email=", "Amazon Web Services", "awsS3Files_datasets_elasticmapreduce_ngrams_books"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataworld_linked_acs/", "public", "File Names from the AWS S3 dataworld-linked-acs Bucket: U.S. Census ACS PUMS: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.", "This dataset has file information from the AWS S3 dataworld-linked-acs bucket at https://dataworld-linked-acs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: U.S. Census ACS PUMS\nName2: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.\nDescription: U.S. Census Bureau American Community Survey (ACS) Public Use Microdata Sample (PUMS) available in a linked data format using the Resource Description Framework (RDF) data model.\n\nDocumentation: https://docs.data.world/uscensus/#american-community-survey-linked-open-data\nContact: https://docs.data.world/uscensus/#60---contact\nUpdateFrequency: Yearly, after ACS 1-year PUMS raw data are released\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataworld_linked_acs/index.json", "https://registry.opendata.aws/census-dataworld-pums/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataworld_linked_acs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataworld_linked_acs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataworld_linked_acs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2015/", "public", "File Names from the AWS S3 dc-lidar-2015 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML, SHP", "This dataset has file information from the AWS S3 dc-lidar-2015 bucket at https://dc-lidar-2015.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML, SHP\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2015/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2015.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2015&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2015"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2018/", "public", "File Names from the AWS S3 dc-lidar-2018 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML", "This dataset has file information from the AWS S3 dc-lidar-2018 bucket at https://dc-lidar-2018.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2018/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_eurex_pds/", "public", "File Names from the AWS S3 deutsche-boerse-eurex-pds Bucket: Deutsche B\u00f6rse Public Dataset: Eurex PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-eurex-pds bucket at https://deutsche-boerse-eurex-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Eurex PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_eurex_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_eurex_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_eurex_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_eurex_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_xetra_pds/", "public", "File Names from the AWS S3 deutsche-boerse-xetra-pds Bucket: Deutsche B\u00f6rse Public Dataset: Xetra PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-xetra-pds bucket at https://deutsche-boerse-xetra-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Xetra PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_xetra_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_xetra_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_xetra_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_xetra_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ebirdst_data/", "public", "File Names from the AWS S3 ebirdst-data Bucket: eBird Status and Trends Model Results: Species results files", "This dataset has file information from the AWS S3 ebirdst-data bucket at https://ebirdst-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: eBird Status and Trends Model Results\nName2: Species results files\nDescription: The eBird Status and Trends project generates estimates of bird occurrence and abundance at a high spatiotemporal resolution. This dataset represents the primary modeled results from the analysis workflow and are designed for further analysis, synthesis, visualization, and exploration.\n\nDocumentation: https://cornelllabofornithology.github.io/ebirdst/articles/ebirdst-introduction.html\nContact: https://help.ebird.org/customer/en/portal/emails/new\nManagedBy: [Cornell Lab of Ornithology](https://www.birds.cornell.edu/home/)\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ebirdst_data/index.json", "https://registry.opendata.aws/ebirdst/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ebirdst_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ebirdst_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ebirdst_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_elevation_tiles_prod/", "public", "File Names from the AWS S3 elevation-tiles-prod Bucket: Terrain Tiles: Gridded elevation tiles", "This dataset has file information from the AWS S3 elevation-tiles-prod bucket at https://elevation-tiles-prod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Terrain Tiles\nName2: Gridded elevation tiles\nDescription: A global dataset providing bare-earth terrain heights, tiled for easy usage and provided on S3.\n\nDocumentation: https://mapzen.com/documentation/terrain-tiles/\nContact: https://github.com/tilezen/joerd/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_elevation_tiles_prod/index.json", "https://registry.opendata.aws/terrain-tiles/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_elevation_tiles_prod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_elevation_tiles_prod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_elevation_tiles_prod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_encode_public/", "public", "File Names from the AWS S3 encode-public Bucket: Encyclopedia of DNA Elements (ENCODE): Released and archived ENCODE data", "This dataset has file information from the AWS S3 encode-public bucket at https://encode-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Encyclopedia of DNA Elements (ENCODE)\nName2: Released and archived ENCODE data\nDescription: The Encyclopedia of DNA Elements (ENCODE) Consortium is an international collaboration of research groups funded by the National Human Genome Research Institute (NHGRI). The goal of ENCODE is to build a comprehensive parts list of functional elements in the human genome, including elements that act at the protein and RNA levels, and regulatory elements that control cells and circumstances in which a gene is active. ENCODE investigators employ a variety of assays and methods to identify functional elements. The discovery and annotation of gene elements is accomplished primarily by sequencing a diverse range of RNA sources, comparative genomics, integrative bioinformatic methods, and human curation. Regulatory elements are typically investigated through DNA hypersensitivity assays, assays of DNA methylation, and immunoprecipitation (IP) of proteins that interact with DNA and RNA, i.e., modified histones, transcription factors, chromatin regulators, and RNA-binding proteins, followed by sequencing.\n\nDocumentation: https://www.encodeproject.org\nContact: encode-help@lists.stanford.edu\nManagedBy: ENCODE Data Coordinating Center\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_encode_public/index.json", "https://registry.opendata.aws/encode-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_encode_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_encode_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_encode_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_epa_rsei_pds/", "public", "File Names from the AWS S3 epa-rsei-pds Bucket: EPA Risk-Screening Environmental Indicators: RSEI Microdata", "This dataset has file information from the AWS S3 epa-rsei-pds bucket at https://epa-rsei-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: EPA Risk-Screening Environmental Indicators\nName2: RSEI Microdata\nDescription: Detailed air model results from EPA\u2019s Risk-Screening Environmental Indicators (RSEI) model.\n\nDocumentation: https://docs.opendata.aws/epa-rsei-pds/readme.html\nContact: https://www.epa.gov/rsei/forms/contact-us-about-rsei-model\nUpdateFrequency: Updated infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_epa_rsei_pds/index.json", "https://registry.opendata.aws/epa-rsei-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_epa_rsei_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_epa_rsei_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_epa_rsei_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_era5_pds/", "public", "File Names from the AWS S3 era5-pds Bucket: ECMWF ERA5 Reanalysis: ERA5 Reanalysis NetCDF 4 files", "This dataset has file information from the AWS S3 era5-pds bucket at https://era5-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ECMWF ERA5 Reanalysis\nName2: ERA5 Reanalysis NetCDF 4 files\nDescription: ERA5 is the fifth generation of ECMWF atmospheric reanalyses of the global climate, and the first reanalysis produced as an operational service. It utilizes the best available observation data from satellites and in-situ stations, which are assimilated and processed using ECMWF's Integrated Forecast System (IFS) Cycle 41r2. The dataset provides all essential atmospheric meteorological parameters like, but not limited to, air temperature, pressure and wind at different altitudes, along with surface parameters like rainfall, soil moisture content and sea parameters like sea-surface temperature and wave height. ERA5 provides data at a considerably higher spatial and temporal resolution than its legacy counterpart ERA-Interim. ERA5 consists of high resolution version with 31 km horizontal resolution, and a reduced resolution ensemble version with 10 members. It is currently available since 2008, but will be continuously extended backwards, first until 1979 and then to 1950. Learn more about ERA5 in Jon Olauson's paper [ERA5: The new champion of wind power modelling?](https://www.researchgate.net/publication/320084119_ERA5_The_new_champion_of_wind_power_modelling).\n\nDocumentation: https://github.com/planet-os/notebooks/blob/master/aws/era5-pds.md\nContact: datahub@intertrust.com\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_era5_pds/index.json", "https://registry.opendata.aws/ecmwf-era5/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_era5_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_era5_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_era5_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_coco/", "public", "File Names from the AWS S3 fast-ai-coco Bucket: COCO - Common Objects in Context - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-coco bucket at https://fast-ai-coco.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: COCO - Common Objects in Context - fast.ai datasets\nName2: Datasets\nDescription: COCO is a large-scale object detection, segmentation, and captioning dataset. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. If you use this dataset in your research please cite arXiv:1405.0312 [cs.CV].\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_coco/index.json", "https://registry.opendata.aws/fast-ai-coco/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_coco.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_coco&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_coco"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imageclas/", "public", "File Names from the AWS S3 fast-ai-imageclas Bucket: Image classification - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imageclas bucket at https://fast-ai-imageclas.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image classification - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image classification research, including CIFAR 10 and 100, Caltech 101, MNIST, Food-101, Oxford-102-Flowers, Oxford-IIIT-Pets, and Stanford-Cars. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imageclas/index.json", "https://registry.opendata.aws/fast-ai-imageclas/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imageclas.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imageclas&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imageclas"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imagelocal/", "public", "File Names from the AWS S3 fast-ai-imagelocal Bucket: Image localization - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imagelocal bucket at https://fast-ai-imagelocal.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image localization - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image localization research, including Camvid and PASCAL VOC (2007 and 2012). This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imagelocal/index.json", "https://registry.opendata.aws/fast-ai-imagelocal/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imagelocal.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imagelocal&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imagelocal"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_nlp/", "public", "File Names from the AWS S3 fast-ai-nlp Bucket: NLP - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-nlp bucket at https://fast-ai-nlp.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NLP - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for NLP, with a focus on classification, including IMDb, AG-News, Amazon Reviews (polarity and full), Yelp Reviews (polarity and full), Dbpedia, Sogou News (Pinyin), Yahoo Answers, Wikitext 2 and Wikitext 103, and ACL-2010 French-English 10^9 corpus. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_nlp/index.json", "https://registry.opendata.aws/fast-ai-nlp/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_nlp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_nlp&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_nlp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib Bucket: HIRLAM Weather Model: Pressure GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib bucket at https://fmi-opendata-rcrhirlam-pressure-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Pressure GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_pressure_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_pressure_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-surface-grib Bucket: HIRLAM Weather Model: Surface GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-surface-grib bucket at https://fmi-opendata-rcrhirlam-surface-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Surface GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_surface_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_surface_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gatk_test_data/", "public", "File Names from the AWS S3 gatk-test-data Bucket: GATK Test Data: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.", "This dataset has file information from the AWS S3 gatk-test-data bucket at https://gatk-test-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GATK Test Data\nName2: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.\nDescription: The GATK test data resource bundle is a collection of files for resequencing human genomic data with the Broad Institute's [Genome Analysis Toolkit (GATK)](https://software.broadinstitute.org/gatk/).\n\nDocumentation: https://s3.amazonaws.com/gatk-test-data/gatk-test-data-readme.html\nContact: https://gatkforums.broadinstitute.org/gatk\nManagedBy: Broad Institute\nUpdateFrequency: Every 3 months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gatk_test_data/index.json", "https://registry.opendata.aws/gatk-test-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gatk_test_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gatk_test_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gatk_test_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gdelt_open_data/", "public", "File Names from the AWS S3 gdelt-open-data Bucket: Global Database of Events, Language and Tone (GDELT): Project data files", "This dataset has file information from the AWS S3 gdelt-open-data bucket at https://gdelt-open-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Database of Events, Language and Tone (GDELT)\nName2: Project data files\nDescription: This project monitors the world's broadcast, print, and web news from nearly every corner of every country in over 100 languages and identifies the people, locations, organizations, counts, themes, sources, emotions, quotes, images and events driving our global society every second of every day.\n\nDocumentation: http://www.gdeltproject.org/\nContact: http://www.gdeltproject.org/about.html#contact\nUpdateFrequency: Not currently being updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gdelt_open_data/index.json", "https://registry.opendata.aws/gdelt/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gdelt_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gdelt_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gdelt_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_genomeark/", "public", "File Names from the AWS S3 genomeark Bucket: Genome Ark", "This dataset has file information from the AWS S3 genomeark bucket at https://genomeark.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome Ark\nName2: https://vgp.github.io\nDescription: The Genome Ark hosts genomic information for the Vertebrate Genomes Project (VGP) and other related projects. The VGP is an international collaboration that aims to generate complete and near error-free reference genomes for all extant vertebrate species. These genomes will be used to address fundamental questions in biology and disease, to identify species most genetically at risk for extinction, and to preserve genetic information of life.\n\nDocumentation: https://vertebrategenomesproject.org\nContact: Erich Jarvis \nManagedBy: The Genome10K community of scientists\nUpdateFrequency: Data will be continually updated as it is generated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_genomeark/index.json", "https://registry.opendata.aws/genomeark/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_genomeark.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_genomeark&showErrors=false&email=", "Amazon Web Services", "awsS3Files_genomeark"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_giab/", "public", "File Names from the AWS S3 giab Bucket: Genome in a Bottle on AWS: Latest data", "This dataset has file information from the AWS S3 giab bucket at https://giab.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome in a Bottle on AWS\nName2: Latest data\nDescription: Several reference genomes to enable translation of whole human genome sequencing to clinical practice.\n\nDocumentation: https://docs.opendata.aws/giab/readme.html\nContact: http://genomeinabottle.org/\nUpdateFrequency: New data are added as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_giab/index.json", "https://registry.opendata.aws/giab/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_giab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_giab&showErrors=false&email=", "Amazon Web Services", "awsS3Files_giab"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gmsdata/", "public", "File Names from the AWS S3 gmsdata Bucket: The Genome Modeling System", "This dataset has file information from the AWS S3 gmsdata bucket at https://gmsdata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Genome Modeling System\nName2: https://gmsdata.s3.amazonaws.com/INDEX.html\nDescription: The Genome Institute at Washington University has developed a high-throughput, fault-tolerant analysis information management system called the Genome Modeling System (GMS), capable of executing complex, interdependent, and automated genome analysis pipelines at a massive scale. The GMS framework provides detailed tracking of samples and data coupled with reliable and repeatable analysis pipelines. GMS includes a full system image with software and services, expandable from one workstation to a large compute cluster.\n\nDocumentation: https://github.com/genome/gms/wiki\nContact: https://github.com/genome/gms/issues\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gmsdata/index.json", "https://registry.opendata.aws/gmsdata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gmsdata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gmsdata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gmsdata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_grillo_openeew/", "public", "File Names from the AWS S3 grillo-openeew Bucket: OpenEEW: OpenEEW", "This dataset has file information from the AWS S3 grillo-openeew bucket at https://grillo-openeew.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenEEW\nName2: OpenEEW\nDescription: Grillo has developed an IoT-based earthquake early-warning system in Mexico and Chile and is now opening its entire archive of unprocessed accelerometer data to the world to encourage the development of new algorithms capable of rapidly detecting and characterizing earthquakes in real time.\n\nDocumentation: https://github.com/grillo/openeew\nContact: openeew@grillo.io\nManagedBy: [Grillo](https://grillo.io/)\nUpdateFrequency: Approximately every 10 minutes\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_grillo_openeew/index.json", "https://registry.opendata.aws/grillo-openeew/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_grillo_openeew.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_grillo_openeew&showErrors=false&email=", "Amazon Web Services", "awsS3Files_grillo_openeew"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_microbiome_project/", "public", "File Names from the AWS S3 human-microbiome-project Bucket: The Human Microbiome Project", "This dataset has file information from the AWS S3 human-microbiome-project bucket at https://human-microbiome-project.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Human Microbiome Project\nName2: https://aws.amazon.com/datasets/human-microbiome-project/\nDescription: The NIH-funded Human Microbiome Project (HMP) is a collaborative effort of over 300 scientists from more than 80 organizations to comprehensively characterize the microbial communities inhabiting the human body and elucidate their role in human health and disease. To accomplish this task, microbial community samples were isolated from a cohort of 300 healthy adult human subjects at 18 specific sites within five regions of the body (oral cavity, airways, urogenital track, skin, and gut). Targeted sequencing of the 16S bacterial marker gene and/or whole metagenome shotgun sequencing was performed for thousands of these samples. In addition, whole genome sequences were generated for isolate strains collected from human body sites to act as reference organisms for analysis. Finally, 16S marker and whole metagenome sequencing was also done on additional samples from people suffering from several disease conditions.\n\nDocumentation: https://commonfund.nih.gov/hmp\nContact: https://commonfund.nih.gov/hmp/related_activities\nUpdateFrequency: Uncertain\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_microbiome_project/index.json", "https://registry.opendata.aws/human-microbiome-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_microbiome_project.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_microbiome_project&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_microbiome_project"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_pangenomics/", "public", "File Names from the AWS S3 human-pangenomics Bucket: Human PanGenomics Project: Human PanGenomics Project", "This dataset has file information from the AWS S3 human-pangenomics bucket at https://human-pangenomics.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Human PanGenomics Project\nName2: Human PanGenomics Project\nDescription: This dataset includes sequencing data, assemblies, and analyses for the offspring of ten parent-offspring trios.\n\nDocumentation: https://github.com/human-pangenomics/hpgp-data\nContact: https://github.com/human-pangenomics/hpgp-data/issues\nUpdateFrequency: Data will be added and updated as technologies improve or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_pangenomics/index.json", "https://registry.opendata.aws/hpgp-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_pangenomics.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_pangenomics&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_pangenomics"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/", "public", "File Names from the AWS S3 ichangemycity-janaagraha-complaints-data-aws Bucket: IChangeMyCity Complaints Data from Janaagraha: IChangeMyCity Complaints", "This dataset has file information from the AWS S3 ichangemycity-janaagraha-complaints-data-aws bucket at https://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IChangeMyCity Complaints Data from Janaagraha\nName2: IChangeMyCity Complaints\nDescription: The [IChangeMyCity](https://www.ichangemycity.com) project provides insight into the complaints raised by citizens from diffent cities of India related to the issues in their neighbourhoods and the resolution of the same by the civic bodies.\n\nDocumentation: http://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/readme.html\nContact: data@janaagraha.org\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/index.json", "https://registry.opendata.aws/ichangemycity/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ichangemycity_janaagraha_complaints_data_aws&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ichangemycity_janaagraha_complaints_data_aws"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_irs_990_spreadsheets/", "public", "File Names from the AWS S3 irs-990-spreadsheets Bucket: IRS 990 Filings (Spreadsheets): Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form", "This dataset has file information from the AWS S3 irs-990-spreadsheets bucket at https://irs-990-spreadsheets.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IRS 990 Filings (Spreadsheets)\nName2: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form\nDescription: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form. Additional fields being added regularly.\n\nDocumentation: https://appliednonprofitresearch.com/documentation/irs-990-spreadsheets\nContact: [info@appliednonprofitresearch.com](info@appliednonprofitresearch.com)\nManagedBy: [Applied Nonprofit Research, LLC](https://www.appliednonprofitresearch.com/)\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_irs_990_spreadsheets/index.json", "https://registry.opendata.aws/990-spreadsheets/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_irs_990_spreadsheets.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_irs_990_spreadsheets&showErrors=false&email=", "Amazon Web Services", "awsS3Files_irs_990_spreadsheets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lab41openaudiocorpus/", "public", "File Names from the AWS S3 lab41openaudiocorpus Bucket: Voices Obscured in Complex Environmental Settings (VOiCES): wav audio files, orthographic transcriptions, and speaker ID", "This dataset has file information from the AWS S3 lab41openaudiocorpus bucket at https://lab41openaudiocorpus.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Voices Obscured in Complex Environmental Settings (VOiCES)\nName2: wav audio files, orthographic transcriptions, and speaker ID\nDescription: VOiCES is a speech corpus recorded in acoustically challenging settings, using distant microphone recording. Speech was recorded in real rooms with various acoustic features (reverb, echo, HVAC systems, outside noise, etc.). Adversarial noise, either television, music, or babble, was concurrently played with clean speech. Data was recorded using multiple microphones strategically placed throughout the room. The corpus includes audio recordings, orthographic transcriptions, and speaker labels.\n\nDocumentation: https://voices18.github.io/\nContact: https://github.com/voices18/utilities/issues\nUpdateFrequency: Data from two additional rooms will be added to the corpus Fall 2018.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lab41openaudiocorpus/index.json", "https://registry.opendata.aws/lab41-sri-voices/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lab41openaudiocorpus.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lab41openaudiocorpus&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lab41openaudiocorpus"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds/", "public", "File Names from the AWS S3 landsat-pds Bucket: Landsat 8: Scenes and metadata", "This dataset has file information from the AWS S3 landsat-pds bucket at https://landsat-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: Scenes and metadata\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds_inventory/", "public", "File Names from the AWS S3 landsat-pds-inventory Bucket: Landsat 8: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)", "This dataset has file information from the AWS S3 landsat-pds-inventory bucket at https://landsat-pds-inventory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds_inventory/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds_inventory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds_inventory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds_inventory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lofar_elais_n1/", "public", "File Names from the AWS S3 lofar-elais-n1 Bucket: LOFAR ELAIS-N1 cycle 2 observations on AWS: LOFAR ELAIS-N1 cycle 2 observations", "This dataset has file information from the AWS S3 lofar-elais-n1 bucket at https://lofar-elais-n1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: LOFAR ELAIS-N1 cycle 2 observations on AWS\nName2: LOFAR ELAIS-N1 cycle 2 observations\nDescription: These data correspond to the [International LOFAR Telescope](http://www.lofar.org/) observations of the sky field ELAIS-N1 (16:10:01 +54:30:36) during the cycle 2 of observations. There are 11 runs of about 8 hours each plus the corresponding observation of the calibration targets before and after the target field. The data are measurement sets ([MS](https://casa.nrao.edu/Memos/229.html)) containing the cross-correlated data and metadata divided in 371 frequency sub-bands per target centred at ~150 MHz.\n\nDocumentation: https://www.lofarcloud.uk/data.html\nContact: https://www.lofarcloud.uk/\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lofar_elais_n1/index.json", "https://registry.opendata.aws/lofar-elais-n1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lofar_elais_n1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lofar_elais_n1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lofar_elais_n1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mf_nwp_models/", "public", "File Names from the AWS S3 mf-nwp-models Bucket: Atmospheric Models from M\u00e9t\u00e9o-France: Atmospheric Models from M\u00e9t\u00e9o-France", "This dataset has file information from the AWS S3 mf-nwp-models bucket at https://mf-nwp-models.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Atmospheric Models from M\u00e9t\u00e9o-France\nName2: Atmospheric Models from M\u00e9t\u00e9o-France\nDescription: Global and high-resolution regional atmospheric models from M\u00e9t\u00e9o-France.\n\nDocumentation: https://mf-models-on-aws.org\nContact: contact@openmeteodata.com\nManagedBy: [OpenMeteoData](https://openmeteodata.com)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mf_nwp_models/index.json", "https://registry.opendata.aws/meteo-france-models/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mf_nwp_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mf_nwp_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mf_nwp_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_modis_pds/", "public", "File Names from the AWS S3 modis-pds Bucket: MODIS on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 modis-pds bucket at https://modis-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: MODIS on AWS\nName2: Imagery and metadata\nDescription: Select products from the Moderate Resolution Imaging Spectroradiometer (MODIS) managed by the U.S. Geological Survey and NASA.\n\nDocumentation: https://docs.opendata.aws/modis-pds/readme.html\nContact: https://github.com/AstroDigital/modis-ingestor/issues\nUpdateFrequency: New MODIS data is added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_modis_pds/index.json", "https://registry.opendata.aws/modis/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_modis_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_modis_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_modis_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_multimedia_commons/", "public", "File Names from the AWS S3 multimedia-commons Bucket: Multimedia Commons: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.", "This dataset has file information from the AWS S3 multimedia-commons bucket at https://multimedia-commons.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Multimedia Commons\nName2: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.\nDescription: The Multimedia Commons is a collection of audio and visual features computed for the nearly 100 million Creative Commons-licensed Flickr images and videos in the YFCC100M dataset from Yahoo! Labs, along with ground-truth annotations for selected subsets. The International Computer Science Institute (ICSI) and Lawrence Livermore National Laboratory are producing and distributing a core set of derived feature sets and annotations as part of an effort to enable large-scale video search capabilities. They have released this feature corpus into the public domain, under Creative Commons License 0, so it is free for anyone to use for any purpose.\n\nDocumentation: https://multimediacommons.wordpress.com/yfcc100m-core-dataset/\nContact: multimedia-commons@icsi.berkeley.edu\nUpdateFrequency: Not updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_multimedia_commons/index.json", "https://registry.opendata.aws/multimedia-commons/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_multimedia_commons.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_multimedia_commons&showErrors=false&email=", "Amazon Web Services", "awsS3Files_multimedia_commons"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mwapublic/", "public", "File Names from the AWS S3 mwapublic Bucket: Epoch of Reionization Dataset: Selected MWA EoR data (uvfits format) from 2013-2015", "This dataset has file information from the AWS S3 mwapublic bucket at https://mwapublic.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Epoch of Reionization Dataset\nName2: Selected MWA EoR data (uvfits format) from 2013-2015\nDescription: The data are from observations with the Murchison Widefield Array (MWA) which is a Square Kilometer Array (SKA) precursor in Western Australia. This particular dataset is from the Epoch of Reionization project which is a key science driver of the SKA. Nearly 2PB of such observations have been recorded to date, this is a small subset of that which has been exported from the MWA data archive in Perth and made available to the public on AWS. The data were taken to detect signatures of the first stars and galaxies forming and the effect of these early stars and galaxies on the evolution of the universe.\n\nDocumentation: http://danielcjacobs.com/research/epoch-of-reionization-aws-public-dataset/\nContact: brynah (at) phys.washington.edu\nManagedBy: University of washington Radio Cosmology Group\nUpdateFrequency: Irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mwapublic/index.json", "https://registry.opendata.aws/epoch-of-reionization/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mwapublic.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mwapublic&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mwapublic"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nanopore_human_wgs/", "public", "File Names from the AWS S3 nanopore-human-wgs Bucket: Nanopore Reference Human Genome: Nanopore Reference Human Genome", "This dataset has file information from the AWS S3 nanopore-human-wgs bucket at https://nanopore-human-wgs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Nanopore Reference Human Genome\nName2: Nanopore Reference Human Genome\nDescription: This dataset includes the sequencing and assembly of a reference standard human genome (GM12878) using the MinION nanopore sequencing instrument with the R9.4 1D chemistry.\n\nDocumentation: https://github.com/nanopore-wgs-consortium/NA12878\nContact: https://github.com/nanopore-wgs-consortium/NA12878/issues\nUpdateFrequency: Data will be added as methodology improves or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nanopore_human_wgs/index.json", "https://registry.opendata.aws/nanopore/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nanopore_human_wgs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nanopore_human_wgs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nanopore_human_wgs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_Landsat/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=Landsat/: NASA NEX: Landsat GLS (Global Land Survey)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=Landsat/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Landsat GLS (Global Land Survey)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_Landsat/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_Landsat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_Landsat&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_Landsat"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_LOCA/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=LOCA/: NASA NEX: Localized Constructed Analogs (LOCA)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=LOCA/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Localized Constructed Analogs (LOCA)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_LOCA/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_LOCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_LOCA&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_LOCA"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_MODIS/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=MODIS/: NASA NEX: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=MODIS/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_MODIS/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_MODIS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_MODIS&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_MODIS"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_DCP30/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-DCP30/: NASA NEX: Downscaled Climate Projections (NEX-DCP30)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-DCP30/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Downscaled Climate Projections (NEX-DCP30)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_DCP30/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_DCP30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_DCP30&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_DCP30"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_GDDP/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-GDDP/: NASA NEX: Global Daily Downscaled Projections (NEX-GDDP)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-GDDP/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Global Daily Downscaled Projections (NEX-GDDP)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_GDDP/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_GDDP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_GDDP&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_GDDP"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gefs_pds/", "public", "File Names from the AWS S3 noaa-gefs-pds Bucket: NOAA Global Ensemble Forecast System (GEFS): Project data files", "This dataset has file information from the AWS S3 noaa-gefs-pds bucket at https://noaa-gefs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Ensemble Forecast System (GEFS)\nName2: Project data files\nDescription: The Global Ensemble Forecast System (GEFS), previously known as the GFS Global ENSemble (GENS), is a weather forecast model made up of 21 separate forecasts, or ensemble members. The National Centers for Environmental Prediction (NCEP) started the GEFS to address the nature of uncertainty in weather observations, which is used to initialize weather forecast models. The GEFS attempts to quantify the amount of uncertainty in a forecast by generating an ensemble of multiple forecasts, each minutely different, or perturbed, from the original observations. With global coverage, GEFS is produced four times a day with weather forecasts going out to 16 days.\n\nDocumentation: https://docs.opendata.aws/noaa-gefs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GEFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GEFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gefs_pds/index.json", "https://registry.opendata.aws/noaa-gefs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gefs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gefs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gefs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_bdp_pds/", "public", "File Names from the AWS S3 noaa-gfs-bdp-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 GFS data", "This dataset has file information from the AWS S3 noaa-gfs-bdp-pds bucket at https://noaa-gfs-bdp-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_bdp_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_bdp_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_bdp_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_bdp_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_pds/", "public", "File Names from the AWS S3 noaa-gfs-pds Bucket: Unidata NOAA Global Forecast System (GFS) Model: A rolling four-week archive of 0.25 degree GFS data", "This dataset has file information from the AWS S3 noaa-gfs-pds bucket at https://noaa-gfs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Unidata NOAA Global Forecast System (GFS) Model\nName2: A rolling four-week archive of 0.25 degree GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks.\n\nDocumentation: https://docs.opendata.aws/noaa-gfs-pds/readme.html\nContact: https://www.ncdc.noaa.gov/contact\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_pds/index.json", "https://registry.opendata.aws/noaa-gfs-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfspara_pds/", "public", "File Names from the AWS S3 noaa-gfspara-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 FV3-based parallel version of the GFS", "This dataset has file information from the AWS S3 noaa-gfspara-pds bucket at https://noaa-gfspara-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 FV3-based parallel version of the GFS\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfspara_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfspara_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfspara_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfspara_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghcn_pds/", "public", "File Names from the AWS S3 noaa-ghcn-pds Bucket: NOAA Global Historical Climatology Network Daily (GHCN-D): Project data files", "This dataset has file information from the AWS S3 noaa-ghcn-pds bucket at https://noaa-ghcn-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Daily (GHCN-D)\nName2: Project data files\nDescription: Global Historical Climatology Network - Daily is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://docs.opendata.aws/noaa-ghcn-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncdc.noaa.gov/ghcn-daily-description). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghcn_pds/index.json", "https://registry.opendata.aws/noaa-ghcn/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghcn_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghcn_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghcn_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghe_pds/", "public", "File Names from the AWS S3 noaa-ghe-pds Bucket: NOAA Global Hydro Estimator (GHE): Project data files", "This dataset has file information from the AWS S3 noaa-ghe-pds bucket at https://noaa-ghe-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Hydro Estimator (GHE)\nName2: Project data files\nDescription: Global Hydro-Estimator provides a global mosaic imagery of rainfall estimates from multi-geostationary satellites, which currently includes GOES-16, GOES-15, Meteosat-8, Meteosat-11 and Himawari-8. The GHE products include: Instantaneous rain rate, 1 hour, 3 hour, 6 hour, 24 hour and also multi-day rainfall accumulation.\n\nDocumentation: https://www.ospo.noaa.gov/Products/atmosphere/ghe/index.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 15 minute-instantaneous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghe_pds/index.json", "https://registry.opendata.aws/noaa-ghe/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghe_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghe_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghe_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_global_hourly_pds/", "public", "File Names from the AWS S3 noaa-global-hourly-pds Bucket: NOAA Global Historical Climatology Network Hourly (GHCN-H): Project data files", "This dataset has file information from the AWS S3 noaa-global-hourly-pds bucket at https://noaa-global-hourly-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Hourly (GHCN-H)\nName2: Project data files\nDescription: Global Historical Climatology Network - Hourly is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: daily (Manually)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_global_hourly_pds/index.json", "https://registry.opendata.aws/noaa-ghcnh/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_global_hourly_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_global_hourly_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_global_hourly_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3NoaaGoes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nUse ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browser the files in buckets. This dataset is a solution to that problem for this bucket.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3NoaaGoes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3NoaaGoes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3NoaaGoes16&showErrors=false&email=", "NOAA", "awsS3NoaaGoes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket: GOES on AWS: GOES-16 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-16 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes16&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes17/", "public", "File Names from the AWS S3 noaa-goes17 Bucket: GOES on AWS: GOES-17 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes17 bucket at https://noaa-goes17.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-17 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes17/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes17&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes17"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_hrrr_pds/", "public", "File Names from the AWS S3 noaa-hrrr-pds Bucket: NOAA High-Resolution Rapid Refresh (HRRR) Model: A rolling one-week archive of HRRR data.", "This dataset has file information from the AWS S3 noaa-hrrr-pds bucket at https://noaa-hrrr-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA High-Resolution Rapid Refresh (HRRR) Model\nName2: A rolling one-week archive of HRRR data.\nDescription: The HRRR is a NOAA real-time 3-km resolution, hourly updated, cloud-resolving, convection-allowing atmospheric model, initialized by 3km grids with 3km radar assimilation. Radar data is assimilated in the HRRR every 15 min over a 1-h period adding further detail to that provided by the hourly data assimilation from the 13km radar-enhanced Rapid Refresh.\n\nDocumentation: https://docs.opendata.aws/noaa-hrrr-pds/readme.html\nContact: https://rapidrefresh.noaa.gov/hrrr/\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_hrrr_pds/index.json", "https://registry.opendata.aws/noaa-hrrr-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_hrrr_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_hrrr_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_hrrr_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_isd_pds/", "public", "File Names from the AWS S3 noaa-isd-pds Bucket: NOAA Integrated Surface Database (ISD): Project data files", "This dataset has file information from the AWS S3 noaa-isd-pds bucket at https://noaa-isd-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Integrated Surface Database (ISD)\nName2: Project data files\nDescription: The Integrated Surface Database (ISD) consists of global hourly and synoptic observations compiled from numerous sources into a gzipped fixed width format. ISD was developed as a joint activity within Asheville's Federal Climate Complex. The database includes over 35,000 stations worldwide, with some having data as far back as 1901, though the data show a substantial increase in volume in the 1940s and again in the early 1970s. Currently, there are over 14,000 \"active\" stations updated daily in the database. The total uncompressed data volume is around 600 gigabytes; however, it continues to grow as more data are added. ISD includes numerous parameters such as wind speed and direction, wind gust, temperature, dew point, cloud data, sea level pressure, altimeter setting, station pressure, present weather, visibility, precipitation amounts for various time periods, snow depth, and various other elements as observed by each station.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_isd_pds/index.json", "https://registry.opendata.aws/noaa-isd/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_isd_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_isd_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_isd_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nexrad_level2/", "public", "File Names from the AWS S3 noaa-nexrad-level2 Bucket: NEXRAD on AWS: NEXRAD Level II archive data", "This dataset has file information from the AWS S3 noaa-nexrad-level2 bucket at https://noaa-nexrad-level2.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II archive data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nexrad_level2/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nexrad_level2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nexrad_level2&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nexrad_level2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_pds/", "public", "File Names from the AWS S3 noaa-nwm-pds Bucket: NOAA National Water Model Short-Range Forecast: A rolling four week archive of NWM data.", "This dataset has file information from the AWS S3 noaa-nwm-pds bucket at https://noaa-nwm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Short-Range Forecast\nName2: A rolling four week archive of NWM data.\nDescription: The National Water Model (NWM) is a water resources model that simulates and forecasts water budget variables, including snowpack, evapotranspiration, soil moisture and streamflow, over the entire continental United States (CONUS). The model, launched in August 2016, is designed to improve the ability of NOAA to meet the needs of its stakeholders (forecasters, emergency managers, reservoir operators, first responders, recreationists, farmers, barge operators, and ecosystem and floodplain managers) by providing expanded accuracy, detail, and frequency of water information. It is operated by NOAA\u2019s Office of Water Prediction. This bucket contains a four-week rollover of the Short Range Forecast model output and the corresponding forcing data for the model. The model is forced with meteorological data from the High Resolution Rapid Refresh (HRRR) and the Rapid Refresh (RAP) models. The Short Range Forecast configuration cycles hourly and produces hourly deterministic forecasts of streamflow and hydrologic states out to 18 hours.\n\nDocumentation: https://docs.opendata.aws/noaa-nwm-pds/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_pds/index.json", "https://registry.opendata.aws/noaa-nwm-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_retro_v2_0_pds/", "public", "File Names from the AWS S3 noaa-nwm-retro-v2.0-pds Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 2.0.", "This dataset has file information from the AWS S3 noaa-nwm-retro-v2.0-pds bucket at https://noaa-nwm-retro-v2.0-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 2.0.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\n... (4 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_retro_v2_0_pds/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_retro_v2_0_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_retro_v2_0_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_retro_v2_0_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ofs_pds/", "public", "File Names from the AWS S3 noaa-ofs-pds Bucket: NOAA Operational Forecast System (OFS): Project data files", "This dataset has file information from the AWS S3 noaa-ofs-pds bucket at https://noaa-ofs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Operational Forecast System (OFS)\nName2: Project data files\nDescription: The Operational Forecast System (OFS) has been developed to serve the maritime user community. OFS was developed in a joint project of the NOAA/National Ocean Service (NOS)/Office of Coast Survey, the NOAA/NOS/Center for Operational Oceanographic Products and Services (CO-OPS), and the NOAA/National Weather Service (NWS)/National Centers for Environmental Prediction (NCEP) Central Operations (NCO). OFS generates water level, water current, water temperature, water salinity (except for the Great Lakes) and wind conditions nowcast and forecast guidance four times per day.\n\nDocumentation: https://docs.opendata.aws/noaa-ofs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA OFS site](https://tidesandcurrents.noaa.gov/models.html). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight and generates 6-hour nowcasts and 48-hour forecast guidance\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ofs_pds/index.json", "https://registry.opendata.aws/noaa-ofs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ofs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ofs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ofs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/", "public", "File Names from the AWS S3 nrel-pds-wtk Bucket with prefix=wtk-techno-economic/pywtk-data/: NREL Wind Integration National Dataset on AWS: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format", "This dataset has file information from the AWS S3 nrel-pds-wtk bucket at https://nrel-pds-wtk.s3.us-west-2.amazonaws.com/ with prefix=wtk-techno-economic/pywtk-data/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NREL Wind Integration National Dataset on AWS\nName2: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format\nDescription: The [Wind Integration National Dataset (WIND)](https://www.nrel.gov/grid/wind-toolkit.html) is an update and expansion of the Eastern Wind Integration Data Set and Western Wind Integration Data Set. It supports the next generation of wind integration studies.\n\nDocumentation: https://www.nrel.gov/grid/wind-toolkit.html\nContact: wind-toolkit@nrel.gov\nManagedBy: [National Renewable Energy Laboratory](https://www.nrel.gov/)\nUpdateFrequency: As Needed\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/index.json", "https://registry.opendata.aws/nrel-pds-wtk/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nwm_archive/", "public", "File Names from the AWS S3 nwm-archive Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 1.2.", "This dataset has file information from the AWS S3 nwm-archive bucket at https://nwm-archive.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 1.2.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nwm_archive/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nwm_archive.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nwm_archive&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nwm_archive"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nyc_tlc/", "public", "File Names from the AWS S3 nyc-tlc Bucket: New York City Taxi and Limousine Commission (TLC) Trip Record Data: CSV files containing NYC TLC trip data.", "This dataset has file information from the AWS S3 nyc-tlc bucket at https://nyc-tlc.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: New York City Taxi and Limousine Commission (TLC) Trip Record Data\nName2: CSV files containing NYC TLC trip data.\nDescription: Data of trips taken by taxis and for-hire vehicles in New York City.\n\nDocumentation: http://www.nyc.gov/html/tlc/html/about/trip_record_data.shtml\nContact: research@tlc.nyc.gov\nUpdateFrequency: As soon as new data is available to be shared publicly.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nyc_tlc/index.json", "https://registry.opendata.aws/nyc-tlc-trip-records-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nyc_tlc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nyc_tlc&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nyc_tlc"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_oicr_icgc_meta_metadata/", "public", "File Names from the AWS S3 oicr.icgc.meta Bucket with prefix=metadata/: ICGC on AWS: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README", "This dataset has file information from the AWS S3 oicr.icgc.meta bucket at https://oicr.icgc.meta.s3.us-east-1.amazonaws.com/ with prefix=metadata/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ICGC on AWS\nName2: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README\nDescription: The International Cancer Genome Consortium (ICGC) coordinates projects with the common aim of accelerating research into the causes and control of cancer. The PanCancer Analysis of Whole Genomes (PCAWG) study is an international collaboration to identify common patterns of mutation in whole genomes from ICGC. More than 2,400 consistently analyzed genomes corresponding to over 1,100 unique ICGC donors are now freely available on Amazon S3 to credentialed researchers subject to ICGC data sharing policies.\n\nDocumentation: https://dcc.icgc.org/icgc-in-the-cloud/aws\nContact: dcc-support@icgc.org\nUpdateFrequency: New data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_oicr_icgc_meta_metadata/index.json", "https://registry.opendata.aws/icgc/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_oicr_icgc_meta_metadata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_oicr_icgc_meta_metadata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_oicr_icgc_meta_metadata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ooni_data/", "public", "File Names from the AWS S3 ooni-data Bucket: Open Observatory of Network Interference: S3 bucket with data", "This dataset has file information from the AWS S3 ooni-data bucket at https://ooni-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open Observatory of Network Interference\nName2: S3 bucket with data\nDescription: A free software, global observation network for detecting censorship, surveillance and traffic manipulation on the internet.\n\nDocumentation: https://ooni.torproject.org/about/\nContact: https://ooni.torproject.org/get-involved/\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ooni_data/index.json", "https://registry.opendata.aws/ooni/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ooni_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ooni_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ooni_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openaq_fetches/", "public", "File Names from the AWS S3 openaq-fetches Bucket: OpenAQ: Minutely CSVs of global air quality fetched from sources all over the world", "This dataset has file information from the AWS S3 openaq-fetches bucket at https://openaq-fetches.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenAQ\nName2: Minutely CSVs of global air quality fetched from sources all over the world\nDescription: Global, aggregated physical air quality data from public data sources provided by government, research-grade and other sources. These awesome groups do the hard work of measuring these data and publicly sharing them, and our community makes them more universally-accessible to both humans and machines.\n\nDocumentation: https://openaq.org\nContact: info@openaq.org\nManagedBy: [OpenAQ](https://openaq.org)\nUpdateFrequency: Minutely\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openaq_fetches/index.json", "https://registry.opendata.aws/openaq/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openaq_fetches.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openaq_fetches&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openaq_fetches"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_opencitymodel/", "public", "File Names from the AWS S3 opencitymodel Bucket: Open City Model (OCM): Project data files", "This dataset has file information from the AWS S3 opencitymodel bucket at https://opencitymodel.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open City Model (OCM)\nName2: Project data files\nDescription: Open City Model is an initiative to provide cityGML data for all the buildings in the United States. By using other open datasets in conjunction with our own code and algorithms it is our goal to provide 3D geometries for every US building.\n\nDocumentation: https://github.com/opencitymodel/opencitymodel\nContact: https://github.com/opencitymodel/opencitymodel#contact\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_opencitymodel/index.json", "https://registry.opendata.aws/opencitymodel/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_opencitymodel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_opencitymodel&showErrors=false&email=", "Amazon Web Services", "awsS3Files_opencitymodel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openneuro_org/", "public", "File Names from the AWS S3 openneuro.org Bucket: OpenNeuro: All datasets", "This dataset has file information from the AWS S3 openneuro.org bucket at https://openneuro.org.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenNeuro\nName2: All datasets\nDescription: OpenNeuro is a database of openly-available brain imaging data. The data are shared according to a Creative Commons CC0 license, providing a broad range of brain imaging data to researchers and citizen scientists alike. The database primarily focuses on functional magnetic resonance imaging (fMRI) data, but also includes other imaging modalities including structural and diffusion MRI, electroencephalography (EEG), and magnetoencephalograpy (MEG). OpenfMRI is a project of the [Center for Reproducible Neuroscience at Stanford University](http://reproducibility.stanford.edu). Development of the OpenNeuro resource has been funded by the National Science Foundation, National Institute of Mental Health, National Institute on Drug Abuse, and the Laura and John Arnold Foundation.\n\nDocumentation: http://openneuro.org\nContact: Support form at https://openneuro.org\nUpdateFrequency: New datasets deposited every 4-6 days\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openneuro_org/index.json", "https://registry.opendata.aws/openneuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openneuro_org.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openneuro_org&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openneuro_org"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osm_pds/", "public", "File Names from the AWS S3 osm-pds Bucket: OpenStreetMap on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 osm-pds bucket at https://osm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap on AWS\nName2: Imagery and metadata\nDescription: OSM is a free, editable map of the world, created and maintained by volunteers. Regular OSM data archives are made available in Amazon S3.\n\nDocumentation: https://docs.opendata.aws/osm-pds/readme.html\nContact: https://github.com/mojodna/osm-pds-pipelines/issues\nUpdateFrequency: Data is updated weekly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osm_pds/index.json", "https://registry.opendata.aws/osm/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osmlr/", "public", "File Names from the AWS S3 osmlr Bucket: OpenStreetMap Linear Referencing: Manifest and data files", "This dataset has file information from the AWS S3 osmlr bucket at https://osmlr.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap Linear Referencing\nName2: Manifest and data files\nDescription: OSMLR a linear referencing system built on top of OpenStreetMap. OSM has great information about roads around the world and their interconnections, but it lacks the means to give a stable identifier to a stretch of roadway. OSMLR provides a stable set of numerical IDs for every 1 kilometer stretch of roadway around the world. In urban areas, OSMLR IDs are attached to each block of roadways between significant intersections.\n\nDocumentation: https://github.com/opentraffic/osmlr/blob/master/docs/intro.md\nContact: https://github.com/opentraffic/osmlr/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osmlr/index.json", "https://registry.opendata.aws/osmlr/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osmlr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osmlr&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osmlr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_qiime2_data/", "public", "File Names from the AWS S3 qiime2-data Bucket: QIIME 2 User Tutorial Datasets: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs", "This dataset has file information from the AWS S3 qiime2-data bucket at https://qiime2-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: QIIME 2 User Tutorial Datasets\nName2: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs\nDescription: QIIME 2 is a powerful, extensible, and decentralized microbiome analysis package with a focus on data and analysis transparency. QIIME 2 enables researchers to start an analysis with raw DNA sequence data and finish with publication-quality figures and statistical results. This dataset contains the user docs (and related datasets) for QIIME 2.\n\nDocumentation: https://docs.qiime2.org\nContact: https://forum.qiime2.org\nManagedBy: The QIIME 2 Development Team\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_qiime2_data/index.json", "https://registry.opendata.aws/qiime2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_qiime2_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_qiime2_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_qiime2_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_safecast_opendata_public_us_east_1/", "public", "File Names from the AWS S3 safecast-opendata-public-us-east-1 Bucket: Safecast: Bulk exports of air and radiation measurements", "This dataset has file information from the AWS S3 safecast-opendata-public-us-east-1 bucket at https://safecast-opendata-public-us-east-1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Safecast\nName2: Bulk exports of air and radiation measurements\nDescription: An ongoing collection of radiation and air quality measurements taken by devices involved in the Safecast project.\n\nDocumentation: https://github.com/Safecast/safecastapi/wiki/Data-Sets\nContact: https://groups.google.com/forum/#!forum/safecast-devices\nManagedBy: [Safecast](https://safecast.org/)\nUpdateFrequency: Continuous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_safecast_opendata_public_us_east_1/index.json", "https://registry.opendata.aws/safecast/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_safecast_opendata_public_us_east_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_safecast_opendata_public_us_east_1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_safecast_opendata_public_us_east_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s1_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s1-l1c/: Sentinel-1: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s1-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C\nDescription: [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1) is a pair of European radar imaging (SAR) satellites launched in 2014 and 2016. Its 6 days revisit cycle and ability to observe through clouds makes it perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. GRD data is available globally since January 2017.\n\nDocumentation: https://roda.sentinel-hub.com/sentinel-s1-l1c/GRD/readme.html\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s1_l1c/index.json", "https://registry.opendata.aws/sentinel-1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s1_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s1_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s1_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l1c/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l1c/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l2a/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l2a/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l2a/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l2a/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l2a&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l2a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel1_slc_seasia_pds/", "public", "File Names from the AWS S3 sentinel1-slc-seasia-pds Bucket: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan", "This dataset has file information from the AWS S3 sentinel1-slc-seasia-pds bucket at https://sentinel1-slc-seasia-pds.s3.ap-southeast-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan\nName2: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan\nDescription: The S1 Single Look Complex (SLC) dataset contains Synthetic Aperture Radar (SAR) data in the C-Band wavelength. The SAR sensors are installed on a two-satellite (Sentinel-1A and Sentinel-1B) constellation orbiting the Earth with a combined revisit time of six days, operated by the European Space Agency. The S1 SLC data are a Level-1 product that collects radar amplitude and phase information in all-weather, day or night conditions, which is ideal for studying natural hazards and emergency response, land applications, oil spill monitoring, sea-ice conditions, and associated climate change effects.\n\nDocumentation: https://github.com/earthobservatory/sentinel1-opds/\nContact: https://github.com/earthobservatory/sentinel1-opds/\nManagedBy: [Earth Observatory of Singapore, Nanyang Technological University](https://earthobservatory.sg)\nUpdateFrequency: S1 SLC data for the region of interest will be updated regularly, as it becomes available on the Alaska Satellite Facility endpoint.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel1_slc_seasia_pds/index.json", "https://registry.opendata.aws/sentinel1-slc-seasia-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel1_slc_seasia_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel1_slc_seasia_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel1_slc_seasia_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_silo_open_data/", "public", "File Names from the AWS S3 silo-open-data Bucket: SILO climate data on AWS: SILO open data", "This dataset has file information from the AWS S3 silo-open-data bucket at https://silo-open-data.s3.ap-southeast-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SILO climate data on AWS\nName2: SILO open data\nDescription: [SILO](https://www.longpaddock.qld.gov.au/silo) is a database of Australian [climate data](https://www.longpaddock.qld.gov.au/silo/about/climate-variables) from 1889 to the present. It provides continuous, daily time-step [data products](https://www.longpaddock.qld.gov.au/silo/about/data-products) in ready-to-use [formats](https://www.longpaddock.qld.gov.au/silo/about/file-formats-and-samples) for research and operational applications. Gridded SILO data in annual NetCDF format are on AWS. Point data are available from the [SILO website](https://www.longpaddock.qld.gov.au/silo/).\n\nDocumentation: https://www.longpaddock.qld.gov.au/silo/gridded-data\nContact: https://www.longpaddock.qld.gov.au/silo/contact-us\nManagedBy: Queensland Government\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_silo_open_data/index.json", "https://registry.opendata.aws/silo/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_silo_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_silo_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_silo_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_softwareheritage/", "public", "File Names from the AWS S3 softwareheritage Bucket: Software Heritage Graph Dataset: Software Heritage Graph Dataset", "This dataset has file information from the AWS S3 softwareheritage bucket at https://softwareheritage.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Software Heritage Graph Dataset\nName2: Software Heritage Graph Dataset\nDescription: [Software Heritage](https://www.softwareheritage.org/) is the largest existing public archive of software source code and accompanying development history. The Software Heritage Graph Dataset is a fully deduplicated Merkle DAG representation of the Software Heritage archive.\n\nDocumentation: https://wiki.softwareheritage.org/wiki/Graph_Dataset_on_Amazon_Athena\nContact: swh-devel@inria.fr\nUpdateFrequency: Data is updated yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_softwareheritage/index.json", "https://registry.opendata.aws/software-heritage/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_softwareheritage.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_softwareheritage&showErrors=false&email=", "Amazon Web Services", "awsS3Files_softwareheritage"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_spacenet_dataset/", "public", "File Names from the AWS S3 spacenet-dataset Bucket: SpaceNet: Imagery and metadata in a S3 bucket", "This dataset has file information from the AWS S3 spacenet-dataset bucket at https://spacenet-dataset.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SpaceNet\nName2: Imagery and metadata in a S3 bucket\nDescription: SpaceNet, launched in August 2016 as an open innovation project offering a repository of freely available imagery with co-registered map features. Before SpaceNet, computer vision researchers had minimal options to obtain free, precision-labeled, and high-resolution satellite imagery. Today, SpaceNet hosts datasets developed by its own team, along with data sets from projects like IARPA\u2019s Functional Map of the World (fMoW).\n\nDocumentation: https://spacenetchallenge.github.io\nContact: https://github.com/SpaceNetChallenge/utilities/issues\nManagedBy: [SpaceNet](https://spacenet.ai/)\nUpdateFrequency: New imagery and features are added quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_spacenet_dataset/index.json", "https://registry.opendata.aws/spacenet/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_spacenet_dataset.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_spacenet_dataset&showErrors=false&email=", "Amazon Web Services", "awsS3Files_spacenet_dataset"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_unidata_nexrad_level2_chunks/", "public", "File Names from the AWS S3 unidata-nexrad-level2-chunks Bucket: NEXRAD on AWS: NEXRAD Level II real-time data", "This dataset has file information from the AWS S3 unidata-nexrad-level2-chunks bucket at https://unidata-nexrad-level2-chunks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II real-time data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_unidata_nexrad_level2_chunks/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_unidata_nexrad_level2_chunks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_unidata_nexrad_level2_chunks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_unidata_nexrad_level2_chunks"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_usgs_lidar_public/", "public", "File Names from the AWS S3 usgs-lidar-public Bucket: USGS 3DEP LiDAR Point Clouds: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.", "This dataset has file information from the AWS S3 usgs-lidar-public bucket at https://usgs-lidar-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: USGS 3DEP LiDAR Point Clouds\nName2: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.\nDescription: The goal of the [USGS 3D Elevation Program ](https://www.usgs.gov/core-science-systems/ngp/3dep) (3DEP) is to collect elevation data in the form of light detection and ranging (LiDAR) data over the conterminous United States, Hawaii, and the U.S. territories, with data acquired over an 8-year period. This dataset provides two realizations of the 3DEP point cloud data. The first resource is a public access organization provided in [Entwine Point Tiles](https://entwine.io/entwine-point-tile.html) format, which a lossless, full-density, streamable octree based on [LASzip](https://laszip.org) (LAZ) encoding. The second resource is a [Requester Pays](https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html) of the same data in LAZ (Compressed LAS) format. Resource names in both buckets correspond to the USGS project names.\n\nDocumentation: https://github.com/hobu/usgs-lidar/\nContact: https://github.com/hobu/usgs-lidar\nManagedBy: [Hobu, Inc.](https://hobu.co)\nUpdateFrequency: Periodically\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_usgs_lidar_public/index.json", "https://registry.opendata.aws/usgs-lidar/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_usgs_lidar_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_usgs_lidar_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_usgs_lidar_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_web_language_models/", "public", "File Names from the AWS S3 web-language-models Bucket: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl): Parallel Corpora to/from English for all official EU languages", "This dataset has file information from the AWS S3 web-language-models bucket at https://web-language-models.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl)\nName2: Parallel Corpora to/from English for all official EU languages\nDescription: ParaCrawl is a set of large parallel corpora to/from English for all official EU languages by a broad web crawling effort. State-of-the-art methods are applied for the entire processing chain from identifying web sites with translated text all the way to collecting, cleaning and delivering parallel corpora that are ready as training data for CEF.AT and translation memories for DG Translation.\n\nDocumentation: https://paracrawl.eu/releases.html\nContact: For questions regarding the datasets contact Kenneth Heafield, email kheafiel@inf.ed.ac.uk. For reporting any issues about bitextor pipeline visit https://github.com/bitextor/bitextor/issues.\nManagedBy: [ParaCrawl](https://paracrawl.eu)\nUpdateFrequency: New data is added according to ParaCrawl release schedule.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_web_language_models/index.json", "https://registry.opendata.aws/paracrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_web_language_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_web_language_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_web_language_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_xiph_media/", "public", "File Names from the AWS S3 xiph-media Bucket: Xiph.Org Test Media: Video and imagery data", "This dataset has file information from the AWS S3 xiph-media bucket at https://xiph-media.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Xiph.Org Test Media\nName2: Video and imagery data\nDescription: Uncompressed video used for video compression and video processing research.\n\nDocumentation: https://media.xiph.org/aws.html\nContact: Thomas Daede tdaede@xiph.org\nUpdateFrequency: New videos are added when contributors submit them.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_xiph_media/index.json", "https://registry.opendata.aws/xiph-media/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_xiph_media.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_xiph_media&showErrors=false&email=", "Amazon Web Services", "awsS3Files_xiph_media"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ycb_benchmarks/", "public", "File Names from the AWS S3 ycb-benchmarks Bucket: Yale-CMU-Berkeley (YCB) Object and Model Set: Project data files", "This dataset has file information from the AWS S3 ycb-benchmarks bucket at https://ycb-benchmarks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Yale-CMU-Berkeley (YCB) Object and Model Set\nName2: Project data files\nDescription: This project primarily aims to facilitate performance benchmarking in robotics research. The dataset provides mesh models, RGB, RGB-D and point cloud images of over 80 objects. The physical objects are also available via the [YCB benchmarking project](http://www.ycbbenchmarks.com/). The data are collected by two state of the art systems: UC Berkley's scanning rig and the Google scanner. The UC Berkley's scanning rig data provide meshes generated with Poisson reconstruction, meshes generated with volumetric range image integration, textured versions of both meshes, Kinbody files for using the meshes with OpenRAVE, 600 High-resolution RGB images, 600 RGB-D images, and 600 point cloud images for each object. The Google scanner data provides 3 meshes with different resolutions (16k, 64k, and 512k polygons), textured versions of each mesh, Kinbody files for using the meshes with OpenRAVE.\n\nDocumentation: http://www.ycbbenchmarks.com/\nContact: bcalli@wpi.edu\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ycb_benchmarks/index.json", "https://registry.opendata.aws/ycb-benchmarks/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ycb_benchmarks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ycb_benchmarks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ycb_benchmarks"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the June 2020 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.graph", "", "", "public", "GLOBEC NEP Vertical Plankton Tow (VPT) Data, 1997-2001", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nCalifornia Current Program\nVertical Plankton Tow (VPT) Data\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10181&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/vpt%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/vpt.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ncast_no (Cast Number Within the Cruise)\nstation_id\nabund_m3 (Abundance, count m-3)\ncomments\ncounter_id\nd_n_flag (Day/Night Flag)\ngear_area (Mouth Area of Net, m2)\ngear_mesh (Net's Mesh Size, mm)\ngear_type\ngenus_species\nlife_stage\nlocal_code\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecVpt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecVpt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecVpt/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecVpt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecVpt&showErrors=false&email=", "GLOBEC", "erdGlobecVpt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://usgodae.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, the EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\nBeach Monitoring Quality Assurance Project Plan (CWBMONQAPP002):\nhttps://www.pacioos.hawaii.edu/wp-content/uploads/2016/08/Beach_Monitoring_QAPP_CWBMONQAPP002_120507.pdf\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwb_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwb_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwb_water_quality/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/cwb_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwb_water_quality&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "cwb_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.graph", "", "", "public", "HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii", "The Hawaii Institute of Marine Biology (HIMB) automatic weather station (AWS) records hourly measurements of precipitation, air temperature, wind speed and direction, and irradiance. Sensors include an Eppley 295-385 nm ultraviolet (UV) radiometer, a LiCor 200SZ Pyranometer, and a LiCor Quantameter (400-700 nm). The sensors are located on the roof of HIMB's Coral Reef Ecology Laboratory (Point Lab) on Moku o Loe (Coconut Island) in Kaneohe Bay on the windward (eastern) coast of Oahu in Hawaii. An accompanying sea water temperature sensor is located less than 10 m offshore of the weather station at a shallow depth of approximately 1 m.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HIMB: HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nsea_water_temperature (water temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nwind_from_direction_std (standard deviation of wind direction (processed), degrees)\nrainfall_amount (total rainfall (processed), mm)\nshortwave_radiation (downwelling shortwave radiation (processed), W/m2)\nultraviolet_radiation (ultraviolet radiation (processed), W/m2)\nphotosynthetic_radiation (photosynthetically active radiation (processed), umol m-2 s-1)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_atn (QARTOD Attenuated Signal Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (139 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HIMB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HIMB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HIMB/index.json", "https://www.pacioos.hawaii.edu/weather/obs-mokuoloe/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HIMB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HIMB&showErrors=false&email=", "Hawaii Institute of Marine Biology (HIMB)", "AWS-HIMB"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.graph", "", "", "public", "Hui O Ka Wai Ola Water Quality Data", "The goal of the Hui O Ka Wai Ola (Association Of The Living Waters) citizen-science based water quality program is to increase the capacity for monitoring water quality in Maui coastal waters by generating reliable data to assess long-term water-quality conditions and detect temporal trends. These data augment the data produced by the Hawaii Department of Health (DOH) Clean Water Branch (CWB) beach monitoring program on Maui.\n \nData are collected and analyzed every two or three weeks for physical and chemical parameters, including ocean salinity, pH, temperature, organic nutrients (nitrogen and phosphorous compounds), dissolved oxygen (DO), and total suspended sediment (TSS). Some water samples are immediately tested at mobile labs while others are processed for testing at University of Hawaii and/or other labs.\n \nUsers of these data should cite the following publication:\n \nFalinski, Kim, Dana Reed, Tova Callender, Emily Fielding, Robin Newbold, and Alana Yurkanin. (2018). Hui O Ka Wai Ola Water Quality Data [Data set]. Zenodo. \"http://doi.org/10.5281/zenodo.1173717\"\n \nFor further information, please visit:\nhttps://www.huiokawaiola.com\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nlocation_id (sampling site identifier)\nlocation_name\nsample_id (sample identifier)\nsession_id (sampling session identifier)\nwater_temperature (Celsius)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hui_water_quality/index.json", "https://www.huiokawaiola.com", "http://upwell.pfeg.noaa.gov/erddap/rss/hui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hui_water_quality&showErrors=false&email=", "Hui O Ka Wai Ola", "hui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitored water quality at several beaches across the island of Maui in the State of Hawaii during the years 2010-2016. This community-based monitoring effort provided valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites were also monitored for harmful bacteria levels of Enterococcus through 2014-06-26. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours.\n\nData were managed through an online repository, the Coral Reef Monitoring Data Portal (now defunct), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection was coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/maui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/maui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/maui_water_quality/index.json", "https://coral.org/maui/", "http://upwell.pfeg.noaa.gov/erddap/rss/maui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=maui_water_quality&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "maui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys. See\nhttps://www.ndbc.noaa.gov/measdes.shtml for a description of the measurements.\n\nThe source data from NOAA NDBC has different column names, different units,\nand different missing values in different files, and other problems\n(notably, lots of rows with duplicate or different values for the same time\npoint). This dataset is a standardized, reformatted, and lightly edited\nversion of that source data, created by NOAA NMFS SWFSC ERD (email:\nerd.data at noaa.gov). Before 2020-01-29, this dataset only had the data\nthat was closest to a given hour, rounded to the nearest hour. Now, this\ndataset has all of the data available from NDBC with the original time\nvalues. If there are multiple source rows for a given buoy for a given\ntime, only the row with the most non-NaN data values is kept. If there is\na gap in the data, a row of missing values is inserted (which causes a nice\ngap when the data is graphed). Also, some impossible data values are\nremoved, but this data is not perfectly clean. This dataset is now updated\nevery 5 minutes.\n\nThis dataset has both historical data (quality controlled, before\n2020-06-01T00:00:00Z) and near real time data (less quality controlled,\nwhich may change at any time, from 2020-06-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Identifier)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.graph", "", "", "public", "NEFSC Continuous Plankton Recorder", "A summary for the data\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ncruise\nsample\nlatitude (degrees_north)\nlongitude (degrees_east)\nphyto_color_indx (Phytoplankton Color Index)\nmarmap_tax_code (Marmap Taxonomic Code)\nmarmap_stage_code\nabundance (per 100 cubic meters)\nlife_stage\ntaxonomic_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/wocecpr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/wocecpr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/wocecpr/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "http://upwell.pfeg.noaa.gov/erddap/rss/wocecpr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=wocecpr&showErrors=false&email=", "NEFSC", "wocecpr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "", "public", "North Pacific High, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.graph", "", "", "public", "OSMC Argo Profile data", "OSMC Argo Profile data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\norganization_name\ncountry_name\nplatform_type_name\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nparameter_name\ndaily_obs_count\nobservation_depth\nobservation_value\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_PROFILERS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_PROFILERS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_PROFILERS/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_PROFILERS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_PROFILERS&showErrors=false&email=", "OSMC", "OSMC_PROFILERS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.graph", "", "", "public", "OSMC normalized observations from GTS", "OSMC normalized In-situ Real time GTS data\n\ncdm_data_type = Point\nVARIABLES:\nPLATFORM_CODE (Station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform\nparameter\nOBSERVATION_VALUE\nOBSERVATION_DEPTH\nCOUNTRY_NAME\norganization_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_Points_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_Points_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_Points/index.json", "https://www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_Points.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_Points&showErrors=false&email=", "OSMC", "OSMC_Points"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001.graph", "", "", "public", "PacIOOS Beach Camera 001: Waikiki, Oahu, Hawaii", "A digital camera on top of the Sheraton Waikiki hotel was used to photograph the shoreline of Waikiki beach along the South Shore of the island of Oahu in the State of Hawaii. The oblique camera view presented here captures the shoreline leading southeast towards Diamond Head crater. It operated for over 4.5 years between February 5, 2009 and October 13, 2013. Capturing hourly snapshots at a set vantage point during the local daytime hours of 6:00 AM or 7:00 AM to 5:00 PM, these images are useful for tracking beach dynamics such as wave run-up, sand movement, and turbidity plumes over time. The camera was mounted on top of a 3 meter wall extending above the roof surface for a total height of 93 meters above ground level or 96 meters above mean sea level. See also BEACHCAM-002 for an alternate camera view from the same location pointing directly downwards.\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (m)\naboveGround (Height, m)\nurl\nname (File Name)\nsize (bytes)\nfileType (File Type)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/BEACHCAM-001_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/BEACHCAM-001_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/BEACHCAM-001/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/BEACHCAM-001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=BEACHCAM-001&showErrors=false&email=", "University of Hawaii", "BEACHCAM-001"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_4"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_2/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_2&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_6/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_6&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_7/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_7&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_7"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_8/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_8&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_9/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_9&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.graph", "", "", "public", "PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-04 is located in Hilo Bay on the east side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-04: PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-04/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-hilo/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-04&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-04"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.graph", "", "", "public", "PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-05 is located in Pelekane Bay near Kawaihae Harbor on the west side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-05: PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-05/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-pelekane/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-05&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-05"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.graph", "", "", "public", "PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii", "The Pacific Islands Ocean Observing System (PacIOOS) operates a Davis Instruments automatic weather station (AWS) near the entrance to Honolulu Harbor on the leeward (western) coast of Oahu in Hawaii to aid with navigation. The station records measurements every 5 minutes of air temperature, wind speed and direction, precipitation, relative humidity, and air pressure. Sensors are located at Pier 1, installed on a tower at an elevation of 64 feet (19.5 meters) above sea level. The station is owned by the Hawaii Pilots Association (HPA). PacIOOS maintains the station and provides data access.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HNLPier1: PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nrainfall_rate (rain rate (processed), mm/h)\nrelative_humidity (relative humidity (processed), %)\nair_pressure (air pressure (processed), millibars)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_gap (QARTOD Gap Test (processed), 0)\nair_temperature_qc_syn (QARTOD Syntax Test (processed), 0)\nair_temperature_qc_loc (QARTOD Location Test (processed), 0)\nair_temperature_qc_rng (QARTOD Gross Range Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_spk (QARTOD Spike Test (processed), 0)\n... (92 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HNLPier1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HNLPier1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HNLPier1/index.json", "https://www.pacioos.hawaii.edu/weather/obs-honolulu/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HNLPier1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HNLPier1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "AWS-HNLPier1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "https://tidesandcurrents.noaa.gov/gomoos.html", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/main.aspx?Division=PRD&ParentMenuId=147&id=1221", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2017, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2017, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2017, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"] + ] + } + } + recorded_at: 2020-07-15 22:22:28 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.csv + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:27 GMT + x-frame-options: SAMEORIGIN + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:22:27 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=erdCinpKfmBT_712b_5843_9069.csv + content-encoding: gzip + content-type: text/csv;charset=ISO-8859-1 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: yes + string: ../fixtures/a198e57ce27267fa73882ec3866d6fde.csv + recorded_at: 2020-07-15 22:22:28 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:40 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=erdCinpKfmBT_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "acknowledgement", "String", "NOAA NESDIS COASTWATCH, NOAA SWFSC ERD, Channel Islands National Park, National Park Service"], + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "TimeSeries"], + ["attribute", "NC_GLOBAL", "cdm_timeseries_variables", "String", "station, longitude, latitude"], + ["attribute", "NC_GLOBAL", "contributor_email", "String", "David_Kushner@nps.gov"], + ["attribute", "NC_GLOBAL", "contributor_name", "String", "Channel Islands National Park, National Park Service"], + ["attribute", "NC_GLOBAL", "contributor_role", "String", "Source of data."], + ["attribute", "NC_GLOBAL", "Conventions", "String", "COARDS, CF-1.6, ACDD-1.3, NCCSV-1.0"], + ["attribute", "NC_GLOBAL", "creator_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "creator_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "date_created", "String", "2008-06-11T21:36:06Z"], + ["attribute", "NC_GLOBAL", "date_issued", "String", "2008-06-11T21:36:06Z"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "-118.4"], + ["attribute", "NC_GLOBAL", "featureType", "String", "TimeSeries"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "34.05"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "32.8"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "-118.4"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "-120.4"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_max", "double", "17.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_min", "double", "5.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_positive", "String", "down"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_units", "String", "m"], + ["attribute", "NC_GLOBAL", "history", "String", "Channel Islands National Park, National Park Service\n2008-06-11T21:36:06Z NOAA CoastWatch (West Coast Node) and NOAA SFSC ERD"], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "http://www.nps.gov/chis/naturescience/index.htm"], + ["attribute", "NC_GLOBAL", "institution", "String", "CINP"], + ["attribute", "NC_GLOBAL", "keywords", "String", "anamesus, aplysia, aquatic, atmosphere, aurantia, band, biology, biosphere, californica, channel, chilensis, cinp, coastal, corrugata, crassedoma, crenulata, density, depth, Earth Science > Biosphere > Aquatic Ecosystems > Coastal Habitat, Earth Science > Biosphere > Aquatic Ecosystems > Marine Habitat, ecosystems, forest, fruticosa, fulgens, giganteum, habitat, haliotis, height, helianthoides, identifier, interruptus, islands, kelletia, kelletii, kelp, lofotensis, lophogorgia, lytechinus, marine, mean, megathura, monitoring, muricea, panulirus, pycnopodia, rufescens, station, statistics, stddev, stderr, stylaster, survey, tethya, time, transect, urticina"], + ["attribute", "NC_GLOBAL", "keywords_vocabulary", "String", "GCMD Science Keywords"], + ["attribute", "NC_GLOBAL", "license", "String", "The data may be used and redistributed for free but is not intended for legal use, since it may contain inaccuracies. Neither the data Contributor, CoastWatch, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, of this information. National Park Service Disclaimer: The National Park Service shall not be held liable for improper or incorrect use of the data described and/or contained herein. These data and related graphics are not legal documents and are not intended to be used as such. The information contained in these data is dynamic and may change over time. The data are not better than the original sources from which they were derived. It is the responsibility of the data user to use the data appropriately and consistent within the limitation of geospatial data in general and these data in particular. The related graphics are intended to aid the data user in acquiring relevant data; it is not appropriate to use the related graphics as data. The National Park Service gives no warranty, expressed or implied, as to the accuracy, reliability, or completeness of these data. It is strongly recommended that these data are directly acquired from an NPS server and not indirectly through other sources which may have changed the data in some way. Although these data have been processed successfully on computer systems at the National Park Service, no warranty expressed or implied is made regarding the utility of the data on other systems for general or scientific purposes, nor shall the act of distribution constitute any such warranty. This disclaimer applies both to individual use of the data and aggregate use with other data."], + ["attribute", "NC_GLOBAL", "naming_authority", "String", "gov.noaa.pfeg.coastwatch"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "34.05"], + ["attribute", "NC_GLOBAL", "project", "String", "NOAA NMFS SWFSC ERD (https://www.pfeg.noaa.gov/)"], + ["attribute", "NC_GLOBAL", "references", "String", "Channel Islands National Parks Inventory and Monitoring information: http://nature.nps.gov/im/units/medn . Kelp Forest Monitoring Protocols: http://www.nature.nps.gov/im/units/chis/Reports_PDF/Marine/KFM-HandbookVol1.pdf ."], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "(local files)"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "32.8"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v70"], + ["attribute", "NC_GLOBAL", "subsetVariables", "String", "station, longitude, latitude"], + ["attribute", "NC_GLOBAL", "summary", "String", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth."], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2007-07-01T00:00:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "1983-07-01T00:00:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "-120.4"], + ["variable", "station", "", "String", ""], + ["attribute", "station", "cf_role", "String", "timeseries_id"], + ["attribute", "station", "ioos_category", "String", "Identifier"], + ["attribute", "station", "long_name", "String", "Station"], + ["variable", "longitude", "", "double", ""], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "double", "-120.4, -118.4"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "colorBarMaximum", "double", "-118.4"], + ["attribute", "longitude", "colorBarMinimum", "double", "-120.4"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "latitude", "", "double", ""], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "double", "32.8, 34.05"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "colorBarMaximum", "double", "34.5"], + ["attribute", "latitude", "colorBarMinimum", "double", "32.5"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["variable", "depth", "", "double", ""], + ["attribute", "depth", "_CoordinateAxisType", "String", "Height"], + ["attribute", "depth", "_CoordinateZisPositive", "String", "down"], + ["attribute", "depth", "actual_range", "double", "5.0, 17.0"], + ["attribute", "depth", "axis", "String", "Z"], + ["attribute", "depth", "colorBarMaximum", "double", "20.0"], + ["attribute", "depth", "colorBarMinimum", "double", "0.0"], + ["attribute", "depth", "ioos_category", "String", "Location"], + ["attribute", "depth", "long_name", "String", "Depth"], + ["attribute", "depth", "positive", "String", "down"], + ["attribute", "depth", "standard_name", "String", "depth"], + ["attribute", "depth", "units", "String", "m"], + ["variable", "time", "", "double", ""], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "4.258656E8, 1.183248E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "colorBarMaximum", "double", "1.183248E9"], + ["attribute", "time", "colorBarMinimum", "double", "4.258656E8"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Time"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["variable", "Aplysia_californica_Mean_Density", "", "float", ""], + ["attribute", "Aplysia_californica_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Aplysia_californica_Mean_Density", "actual_range", "float", "0.0, 0.95"], + ["attribute", "Aplysia_californica_Mean_Density", "comment", "String", "Common name: California brown sea hare"], + ["attribute", "Aplysia_californica_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Aplysia_californica_Mean_Density", "long_name", "String", "Aplysia californica Mean Density"], + ["attribute", "Aplysia_californica_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Aplysia_californica_Mean_Density", "units", "String", "m-2"], + ["variable", "Aplysia_californica_StdDev", "", "float", ""], + ["attribute", "Aplysia_californica_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Aplysia_californica_StdDev", "actual_range", "float", "0.0, 0.35"], + ["attribute", "Aplysia_californica_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Aplysia_californica_StdDev", "long_name", "String", "Aplysia californica StdDev"], + ["attribute", "Aplysia_californica_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Aplysia_californica_StdErr", "", "float", ""], + ["attribute", "Aplysia_californica_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Aplysia_californica_StdErr", "actual_range", "float", "0.0, 0.1"], + ["attribute", "Aplysia_californica_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Aplysia_californica_StdErr", "long_name", "String", "Aplysia californica StdErr"], + ["attribute", "Aplysia_californica_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Crassedoma_giganteum_Mean_Density", "", "float", ""], + ["attribute", "Crassedoma_giganteum_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "actual_range", "float", "0.0, 0.92"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "comment", "String", "Common name: Rock scallop"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "long_name", "String", "Crassedoma giganteum Mean Density"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "units", "String", "m-2"], + ["variable", "Crassedoma_giganteum_StdDev", "", "float", ""], + ["attribute", "Crassedoma_giganteum_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Crassedoma_giganteum_StdDev", "actual_range", "float", "0.0, 0.71"], + ["attribute", "Crassedoma_giganteum_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Crassedoma_giganteum_StdDev", "long_name", "String", "Crassedoma giganteum StdDev"], + ["attribute", "Crassedoma_giganteum_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Crassedoma_giganteum_StdErr", "", "float", ""], + ["attribute", "Crassedoma_giganteum_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Crassedoma_giganteum_StdErr", "actual_range", "float", "0.0, 0.2"], + ["attribute", "Crassedoma_giganteum_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Crassedoma_giganteum_StdErr", "long_name", "String", "Crassedoma giganteum StdErr"], + ["attribute", "Crassedoma_giganteum_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_corrugata_Mean_Density", "", "float", ""], + ["attribute", "Haliotis_corrugata_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_corrugata_Mean_Density", "actual_range", "float", "0.0, 0.18"], + ["attribute", "Haliotis_corrugata_Mean_Density", "comment", "String", "Common name: Pink abalone"], + ["attribute", "Haliotis_corrugata_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Haliotis_corrugata_Mean_Density", "long_name", "String", "Haliotis corrugata Mean Density"], + ["attribute", "Haliotis_corrugata_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Haliotis_corrugata_Mean_Density", "units", "String", "m-2"], + ["variable", "Haliotis_corrugata_StdDev", "", "float", ""], + ["attribute", "Haliotis_corrugata_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_corrugata_StdDev", "actual_range", "float", "0.0, 0.1"], + ["attribute", "Haliotis_corrugata_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_corrugata_StdDev", "long_name", "String", "Haliotis corrugata StdDev"], + ["attribute", "Haliotis_corrugata_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_corrugata_StdErr", "", "float", ""], + ["attribute", "Haliotis_corrugata_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_corrugata_StdErr", "actual_range", "float", "0.0, 0.03"], + ["attribute", "Haliotis_corrugata_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_corrugata_StdErr", "long_name", "String", "Haliotis corrugata StdErr"], + ["attribute", "Haliotis_corrugata_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_fulgens_Mean_Density", "", "float", ""], + ["attribute", "Haliotis_fulgens_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_fulgens_Mean_Density", "actual_range", "float", "0.0, 0.005555556"], + ["attribute", "Haliotis_fulgens_Mean_Density", "comment", "String", "Common name: Green abalone"], + ["attribute", "Haliotis_fulgens_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Haliotis_fulgens_Mean_Density", "long_name", "String", "Haliotis fulgens Mean Density"], + ["attribute", "Haliotis_fulgens_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Haliotis_fulgens_Mean_Density", "units", "String", "m-2"], + ["variable", "Haliotis_fulgens_StdDev", "", "float", ""], + ["attribute", "Haliotis_fulgens_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_fulgens_StdDev", "actual_range", "float", "0.0, 0.008206099"], + ["attribute", "Haliotis_fulgens_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_fulgens_StdDev", "long_name", "String", "Haliotis fulgens StdDev"], + ["attribute", "Haliotis_fulgens_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_fulgens_StdErr", "", "float", ""], + ["attribute", "Haliotis_fulgens_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_fulgens_StdErr", "actual_range", "float", "0.0, 0.002368897"], + ["attribute", "Haliotis_fulgens_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_fulgens_StdErr", "long_name", "String", "Haliotis fulgens StdErr"], + ["attribute", "Haliotis_fulgens_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_rufescens_Mean_Density", "", "float", ""], + ["attribute", "Haliotis_rufescens_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_rufescens_Mean_Density", "actual_range", "float", "0.0, 0.99"], + ["attribute", "Haliotis_rufescens_Mean_Density", "comment", "String", "Common name: Red abalone"], + ["attribute", "Haliotis_rufescens_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Haliotis_rufescens_Mean_Density", "long_name", "String", "Haliotis rufescens Mean Density"], + ["attribute", "Haliotis_rufescens_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Haliotis_rufescens_Mean_Density", "units", "String", "m-2"], + ["variable", "Haliotis_rufescens_StdDev", "", "float", ""], + ["attribute", "Haliotis_rufescens_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_rufescens_StdDev", "actual_range", "float", "0.0, 0.6"], + ["attribute", "Haliotis_rufescens_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_rufescens_StdDev", "long_name", "String", "Haliotis rufescens StdDev"], + ["attribute", "Haliotis_rufescens_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_rufescens_StdErr", "", "float", ""], + ["attribute", "Haliotis_rufescens_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_rufescens_StdErr", "actual_range", "float", "0.0, 0.17"], + ["attribute", "Haliotis_rufescens_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_rufescens_StdErr", "long_name", "String", "Haliotis rufescens StdErr"], + ["attribute", "Haliotis_rufescens_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Kelletia_kelletii_Mean_Density", "", "float", ""], + ["attribute", "Kelletia_kelletii_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Kelletia_kelletii_Mean_Density", "actual_range", "float", "0.0, 0.55"], + ["attribute", "Kelletia_kelletii_Mean_Density", "comment", "String", "Common name: Kellet's whelk"], + ["attribute", "Kelletia_kelletii_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Kelletia_kelletii_Mean_Density", "long_name", "String", "Kelletia kelletii Mean Density"], + ["attribute", "Kelletia_kelletii_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Kelletia_kelletii_Mean_Density", "units", "String", "m-2"], + ["variable", "Kelletia_kelletii_StdDev", "", "float", ""], + ["attribute", "Kelletia_kelletii_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Kelletia_kelletii_StdDev", "actual_range", "float", "0.0, 0.29"], + ["attribute", "Kelletia_kelletii_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Kelletia_kelletii_StdDev", "long_name", "String", "Kelletia kelletii StdDev"], + ["attribute", "Kelletia_kelletii_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Kelletia_kelletii_StdErr", "", "float", ""], + ["attribute", "Kelletia_kelletii_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Kelletia_kelletii_StdErr", "actual_range", "float", "0.0, 0.08"], + ["attribute", "Kelletia_kelletii_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Kelletia_kelletii_StdErr", "long_name", "String", "Kelletia kelletii StdErr"], + ["attribute", "Kelletia_kelletii_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Lophogorgia_chilensis_Mean_Density", "", "float", ""], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "actual_range", "float", "0.0, 0.7"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "comment", "String", "Common name: Red gorgonian"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "long_name", "String", "Lophogorgia chilensis Mean Density"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "units", "String", "m-2"], + ["variable", "Lophogorgia_chilensis_StdDev", "", "float", ""], + ["attribute", "Lophogorgia_chilensis_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lophogorgia_chilensis_StdDev", "actual_range", "float", "0.0, 0.44"], + ["attribute", "Lophogorgia_chilensis_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Lophogorgia_chilensis_StdDev", "long_name", "String", "Lophogorgia chilensis StdDev"], + ["attribute", "Lophogorgia_chilensis_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Lophogorgia_chilensis_StdErr", "", "float", ""], + ["attribute", "Lophogorgia_chilensis_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lophogorgia_chilensis_StdErr", "actual_range", "float", "0.0, 0.12"], + ["attribute", "Lophogorgia_chilensis_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Lophogorgia_chilensis_StdErr", "long_name", "String", "Lophogorgia chilensis StdErr"], + ["attribute", "Lophogorgia_chilensis_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Lytechinus_anamesus_Mean_Density", "", "float", ""], + ["attribute", "Lytechinus_anamesus_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "actual_range", "float", "0.0, 22.45"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "comment", "String", "Common name: White sea urchin"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "long_name", "String", "Lytechinus anamesus Mean Density"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "units", "String", "m-2"], + ["variable", "Lytechinus_anamesus_StdDev", "", "float", ""], + ["attribute", "Lytechinus_anamesus_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lytechinus_anamesus_StdDev", "actual_range", "float", "0.0, 9.2"], + ["attribute", "Lytechinus_anamesus_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Lytechinus_anamesus_StdDev", "long_name", "String", "Lytechinus anamesus StdDev"], + ["attribute", "Lytechinus_anamesus_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Lytechinus_anamesus_StdErr", "", "float", ""], + ["attribute", "Lytechinus_anamesus_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lytechinus_anamesus_StdErr", "actual_range", "float", "0.0, 2.65"], + ["attribute", "Lytechinus_anamesus_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Lytechinus_anamesus_StdErr", "long_name", "String", "Lytechinus anamesus StdErr"], + ["attribute", "Lytechinus_anamesus_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Megathura_crenulata_Mean_Density", "", "float", ""], + ["attribute", "Megathura_crenulata_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Megathura_crenulata_Mean_Density", "actual_range", "float", "0.0, 0.5"], + ["attribute", "Megathura_crenulata_Mean_Density", "comment", "String", "Common name: Giant keyhole limpet"], + ["attribute", "Megathura_crenulata_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Megathura_crenulata_Mean_Density", "long_name", "String", "Megathura crenulata Mean Density"], + ["attribute", "Megathura_crenulata_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Megathura_crenulata_Mean_Density", "units", "String", "m-2"], + ["variable", "Megathura_crenulata_StdDev", "", "float", ""], + ["attribute", "Megathura_crenulata_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Megathura_crenulata_StdDev", "actual_range", "float", "0.0, 0.22"], + ["attribute", "Megathura_crenulata_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Megathura_crenulata_StdDev", "long_name", "String", "Megathura crenulata StdDev"], + ["attribute", "Megathura_crenulata_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Megathura_crenulata_StdErr", "", "float", ""], + ["attribute", "Megathura_crenulata_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Megathura_crenulata_StdErr", "actual_range", "float", "0.0, 0.07"], + ["attribute", "Megathura_crenulata_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Megathura_crenulata_StdErr", "long_name", "String", "Megathura crenulata StdErr"], + ["attribute", "Megathura_crenulata_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Muricea_californica_Mean_Density", "", "float", ""], + ["attribute", "Muricea_californica_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_californica_Mean_Density", "actual_range", "float", "0.0, 0.31"], + ["attribute", "Muricea_californica_Mean_Density", "comment", "String", "Common name: California golden gorgonian"], + ["attribute", "Muricea_californica_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Muricea_californica_Mean_Density", "long_name", "String", "Muricea californica Mean Density"], + ["attribute", "Muricea_californica_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Muricea_californica_Mean_Density", "units", "String", "m-2"], + ["variable", "Muricea_californica_StdDev", "", "float", ""], + ["attribute", "Muricea_californica_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_californica_StdDev", "actual_range", "float", "0.0, 0.16"], + ["attribute", "Muricea_californica_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Muricea_californica_StdDev", "long_name", "String", "Muricea californica StdDev"], + ["attribute", "Muricea_californica_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Muricea_californica_StdErr", "", "float", ""], + ["attribute", "Muricea_californica_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_californica_StdErr", "actual_range", "float", "0.0, 0.04"], + ["attribute", "Muricea_californica_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Muricea_californica_StdErr", "long_name", "String", "Muricea californica StdErr"], + ["attribute", "Muricea_californica_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Muricea_fruticosa_Mean_Density", "", "float", ""], + ["attribute", "Muricea_fruticosa_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_fruticosa_Mean_Density", "actual_range", "float", "0.0, 0.04"], + ["attribute", "Muricea_fruticosa_Mean_Density", "comment", "String", "Common name: Brown gorgonian"], + ["attribute", "Muricea_fruticosa_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Muricea_fruticosa_Mean_Density", "long_name", "String", "Muricea fruticosa Mean Density"], + ["attribute", "Muricea_fruticosa_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Muricea_fruticosa_Mean_Density", "units", "String", "m-2"], + ["variable", "Muricea_fruticosa_StdDev", "", "float", ""], + ["attribute", "Muricea_fruticosa_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_fruticosa_StdDev", "actual_range", "float", "0.0, 0.09"], + ["attribute", "Muricea_fruticosa_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Muricea_fruticosa_StdDev", "long_name", "String", "Muricea fruticosa StdDev"], + ["attribute", "Muricea_fruticosa_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Muricea_fruticosa_StdErr", "", "float", ""], + ["attribute", "Muricea_fruticosa_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_fruticosa_StdErr", "actual_range", "float", "0.0, 0.02"], + ["attribute", "Muricea_fruticosa_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Muricea_fruticosa_StdErr", "long_name", "String", "Muricea fruticosa StdErr"], + ["attribute", "Muricea_fruticosa_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Panulirus_interruptus_Mean_Density", "", "float", ""], + ["attribute", "Panulirus_interruptus_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Panulirus_interruptus_Mean_Density", "actual_range", "float", "0.0, 0.11"], + ["attribute", "Panulirus_interruptus_Mean_Density", "comment", "String", "Common name: California spiny lobster"], + ["attribute", "Panulirus_interruptus_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Panulirus_interruptus_Mean_Density", "long_name", "String", "Panulirus interruptus Mean Density"], + ["attribute", "Panulirus_interruptus_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Panulirus_interruptus_Mean_Density", "units", "String", "m-2"], + ["variable", "Panulirus_interruptus_StdDev", "", "float", ""], + ["attribute", "Panulirus_interruptus_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Panulirus_interruptus_StdDev", "actual_range", "float", "0.0, 0.32"], + ["attribute", "Panulirus_interruptus_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Panulirus_interruptus_StdDev", "long_name", "String", "Panulirus interruptus StdDev"], + ["attribute", "Panulirus_interruptus_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Panulirus_interruptus_StdErr", "", "float", ""], + ["attribute", "Panulirus_interruptus_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Panulirus_interruptus_StdErr", "actual_range", "float", "0.0, 0.09"], + ["attribute", "Panulirus_interruptus_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Panulirus_interruptus_StdErr", "long_name", "String", "Panulirus interruptus StdErr"], + ["attribute", "Panulirus_interruptus_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Pycnopodia_helianthoides_Mean_Density", "", "float", ""], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "actual_range", "float", "0.0, 0.33"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "comment", "String", "Common name: Sunflower star"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "long_name", "String", "Pycnopodia helianthoides Mean Density"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "units", "String", "m-2"], + ["variable", "Pycnopodia_helianthoides_StdDev", "", "float", ""], + ["attribute", "Pycnopodia_helianthoides_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Pycnopodia_helianthoides_StdDev", "actual_range", "float", "0.0, 0.21"], + ["attribute", "Pycnopodia_helianthoides_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Pycnopodia_helianthoides_StdDev", "long_name", "String", "Pycnopodia helianthoides StdDev"], + ["attribute", "Pycnopodia_helianthoides_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Pycnopodia_helianthoides_StdErr", "", "float", ""], + ["attribute", "Pycnopodia_helianthoides_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Pycnopodia_helianthoides_StdErr", "actual_range", "float", "0.0, 0.06"], + ["attribute", "Pycnopodia_helianthoides_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Pycnopodia_helianthoides_StdErr", "long_name", "String", "Pycnopodia helianthoides StdErr"], + ["attribute", "Pycnopodia_helianthoides_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Stylaster_californica_Mean_Density", "", "float", ""], + ["attribute", "Stylaster_californica_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Stylaster_californica_Mean_Density", "actual_range", "float", "0.0, 0.13"], + ["attribute", "Stylaster_californica_Mean_Density", "comment", "String", "Common name: California hydrocoral"], + ["attribute", "Stylaster_californica_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Stylaster_californica_Mean_Density", "long_name", "String", "Stylaster californica Mean Density"], + ["attribute", "Stylaster_californica_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Stylaster_californica_Mean_Density", "units", "String", "m-2"], + ["variable", "Stylaster_californica_StdDev", "", "float", ""], + ["attribute", "Stylaster_californica_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Stylaster_californica_StdDev", "actual_range", "float", "0.0, 0.18"], + ["attribute", "Stylaster_californica_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Stylaster_californica_StdDev", "long_name", "String", "Stylaster californica StdDev"], + ["attribute", "Stylaster_californica_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Stylaster_californica_StdErr", "", "float", ""], + ["attribute", "Stylaster_californica_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Stylaster_californica_StdErr", "actual_range", "float", "0.0, 0.05"], + ["attribute", "Stylaster_californica_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Stylaster_californica_StdErr", "long_name", "String", "Stylaster californica StdErr"], + ["attribute", "Stylaster_californica_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Tethya_aurantia_Mean_Density", "", "float", ""], + ["attribute", "Tethya_aurantia_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Tethya_aurantia_Mean_Density", "actual_range", "float", "0.0, 0.41"], + ["attribute", "Tethya_aurantia_Mean_Density", "comment", "String", "Common name: Orange puffball sponge"], + ["attribute", "Tethya_aurantia_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Tethya_aurantia_Mean_Density", "long_name", "String", "Tethya aurantia Mean Density"], + ["attribute", "Tethya_aurantia_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Tethya_aurantia_Mean_Density", "units", "String", "m-2"], + ["variable", "Tethya_aurantia_StdDev", "", "float", ""], + ["attribute", "Tethya_aurantia_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Tethya_aurantia_StdDev", "actual_range", "float", "0.0, 0.18"], + ["attribute", "Tethya_aurantia_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Tethya_aurantia_StdDev", "long_name", "String", "Tethya aurantia StdDev"], + ["attribute", "Tethya_aurantia_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Tethya_aurantia_StdErr", "", "float", ""], + ["attribute", "Tethya_aurantia_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Tethya_aurantia_StdErr", "actual_range", "float", "0.0, 0.05"], + ["attribute", "Tethya_aurantia_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Tethya_aurantia_StdErr", "long_name", "String", "Tethya aurantia StdErr"], + ["attribute", "Tethya_aurantia_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Urticina_lofotensis_Mean_Density", "", "float", ""], + ["attribute", "Urticina_lofotensis_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Urticina_lofotensis_Mean_Density", "actual_range", "float", "0.0, 0.39"], + ["attribute", "Urticina_lofotensis_Mean_Density", "comment", "String", "Common name: White-spotted rose anemone"], + ["attribute", "Urticina_lofotensis_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Urticina_lofotensis_Mean_Density", "long_name", "String", "Urticina lofotensis Mean Density"], + ["attribute", "Urticina_lofotensis_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Urticina_lofotensis_Mean_Density", "units", "String", "m-2"], + ["variable", "Urticina_lofotensis_StdDev", "", "float", ""], + ["attribute", "Urticina_lofotensis_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Urticina_lofotensis_StdDev", "actual_range", "float", "0.0, 0.28"], + ["attribute", "Urticina_lofotensis_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Urticina_lofotensis_StdDev", "long_name", "String", "Urticina lofotensis StdDev"], + ["attribute", "Urticina_lofotensis_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Urticina_lofotensis_StdErr", "", "float", ""], + ["attribute", "Urticina_lofotensis_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Urticina_lofotensis_StdErr", "actual_range", "float", "0.0, 0.08"], + ["attribute", "Urticina_lofotensis_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Urticina_lofotensis_StdErr", "long_name", "String", "Urticina lofotensis StdErr"], + ["attribute", "Urticina_lofotensis_StdErr", "missing_value", "float", "-9999999.0"] + ] + } + } + recorded_at: 2020-07-15 22:22:28 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:41 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:22:41 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://upwell.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012.graph", "", "", "public", "AIS Ship Traffic: Hawaii: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_hi_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_hi_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_hi_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_hi_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_hi_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_hi_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012.graph", "", "", "public", "AIS Ship Traffic: Johnston Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Johnston Atoll. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_john_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_john_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_john_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_john_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_john_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_john_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012.graph", "", "", "public", "AIS Ship Traffic: Mariana and Wake: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Mariana Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_mari_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_mari_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_mari_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_mari_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_mari_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_mari_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012.graph", "", "", "public", "AIS Ship Traffic: Rose Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Rose Atoll in American Samoa. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_rose_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_rose_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_rose_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_rose_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_rose_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_rose_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom for the most recent 7 days.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_temp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_temp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_temp/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_temp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_temp&showErrors=false&email=", "University of Hawaii", "aco_adcp_temp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Velocity", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean current velocity at the ACO from a 250 kHz SonTek acoustic doppler current profiler (ADCP) at 1.83 m above the ocean bottom for the most recent 7 days. Velocities are flagged bad if the amplitude is excessively low or high. An amplitude is high if it exceeds the average of the ping before and the ping after by 20 counts. An amplitude is low if less than 6 counts. After this the velocities are flagged bad if the absolute deviation of the vertical velocity from its ensemble median exceeds 0.15 m/s or if its value is less than -0.25 m/s.\n\ncdm_data_type = Profile\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each location, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\neastward_sea_water_velocity (current east component, meters/second)\nnorthward_sea_water_velocity (current north component, meters/second)\nupward_sea_water_velocity (current upward component, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_vel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_vel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_vel/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_vel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_vel&showErrors=false&email=", "University of Hawaii", "aco_adcp_vel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://upwell.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF.graph", "", "", "public", "CRRF Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-CRRF: CRRF Weather Station: Palau: Koror: Ngeanges Island)\nair_temperature (Celsius)\nair_temperature_max (maximum air temperature, Celsius)\nair_temperature_max_time (maximum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (minimum air temperature, Celsius)\nair_temperature_min_time (minimum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_std (air temperature standard deviation, Celsius)\nwind_speed (m/s)\nwind_speed_max (gust speed, m/s)\nwind_speed_max_time (gust speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (minimum wind speed, m/s)\nwind_speed_min_time (minimum wind speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_std (wind speed standard deviation, m/s)\nwind_from_direction (wind direction, degrees)\nwind_from_direction_std (wind direction standard deviation, degrees)\nrainfall_amount (total rainfall, mm)\n... (23 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-CRRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-CRRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-CRRF/index.json", "https://www.pacioos.hawaii.edu/weather/obs-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-CRRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-CRRF&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "AWS-CRRF"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_1000genomes/", "public", "File Names from the AWS S3 1000genomes Bucket: 1000 Genomes", "This dataset has file information from the AWS S3 1000genomes bucket at https://1000genomes.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 1000 Genomes\nName2: http://www.internationalgenome.org/formats\nDescription: The 1000 Genomes Project is an international collaboration which has established the most detailed catalogue of human genetic variation, including SNPs, structural variants, and their haplotype context. The final phase of the project sequenced more than 2500 individuals from 26 different populations around the world and produced an integrated set of phased haplotypes with more than 80 million variants for these individuals.\n\nDocumentation: https://docs.opendata.aws/1000genomes/readme.html\nContact: http://www.internationalgenome.org/contact\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_1000genomes/index.json", "https://registry.opendata.aws/1000-genomes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_1000genomes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_1000genomes&showErrors=false&email=", "Amazon Web Services", "awsS3Files_1000genomes"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_3kricegenome/", "public", "File Names from the AWS S3 3kricegenome Bucket: 3000 Rice Genomes Project", "This dataset has file information from the AWS S3 3kricegenome bucket at https://3kricegenome.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 3000 Rice Genomes Project\nName2: http://s3.amazonaws.com/3kricegenome/README-snp_pipeline.txt\nDescription: The 3000 Rice Genome Project is an international effort to sequence the genomes of 3,024 rice varieties from 89 countries.\n\nDocumentation: https://docs.opendata.aws/3kricegenome/readme.html\nContact: http://iric.irri.org/contact-us\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_3kricegenome/index.json", "https://registry.opendata.aws/3kricegenome/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_3kricegenome.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_3kricegenome&showErrors=false&email=", "Amazon Web Services", "awsS3Files_3kricegenome"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aft_vbi_pds/", "public", "File Names from the AWS S3 aft-vbi-pds Bucket: Amazon Bin Image Dataset: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.", "This dataset has file information from the AWS S3 aft-vbi-pds bucket at https://aft-vbi-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Bin Image Dataset\nName2: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.\nDescription: The Amazon Bin Image Dataset contains over 500,000 images and metadata from bins of a pod in an operating Amazon Fulfillment Center. The bin images in this dataset are captured as robot units carry pods as part of normal Amazon Fulfillment Center operations.\n\nDocumentation: https://docs.opendata.aws/aft-vbi-pds/readme.html\nContact: amazon-bin-images@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aft_vbi_pds/index.json", "https://registry.opendata.aws/amazon-bin-imagery/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aft_vbi_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aft_vbi_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aft_vbi_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory/", "public", "File Names from the AWS S3 allen-brain-observatory Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: Project data files in a public bucket", "This dataset has file information from the AWS S3 allen-brain-observatory bucket at https://allen-brain-observatory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: Project data files in a public bucket\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory_templates/", "public", "File Names from the AWS S3 allen-brain-observatory-templates Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: SageMaker launch template with s3fs bucket mounts", "This dataset has file information from the AWS S3 allen-brain-observatory-templates bucket at https://allen-brain-observatory-templates.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: SageMaker launch template with s3fs bucket mounts\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory_templates/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory_templates.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory_templates&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory_templates"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_amazon_reviews_pds/", "public", "File Names from the AWS S3 amazon-reviews-pds Bucket: Amazon Customer Reviews Dataset: TSV files of reviews", "This dataset has file information from the AWS S3 amazon-reviews-pds bucket at https://amazon-reviews-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Customer Reviews Dataset\nName2: TSV files of reviews\nDescription: Amazon Customer Reviews (a.k.a. Product Reviews) is one of Amazon\u2019s iconic products. In a period of over two decades since the first review in 1995, millions of Amazon customers have contributed over a hundred million reviews to express opinions and describe their experiences regarding products on the Amazon.com website. Over 130+ million customer reviews are available to researchers as part of this dataset.\n\nDocumentation: https://s3.amazonaws.com/amazon-reviews-pds/readme.html\nContact: customer-review-dataset@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not defined\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_amazon_reviews_pds/index.json", "https://registry.opendata.aws/amazon-reviews/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_amazon_reviews_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_amazon_reviews_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_amazon_reviews_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_avg_kitti/", "public", "File Names from the AWS S3 avg-kitti Bucket: KITTI Vision Benchmark Suite", "This dataset has file information from the AWS S3 avg-kitti bucket at https://avg-kitti.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: KITTI Vision Benchmark Suite\nName2: http://www.cvlibs.net/datasets/kitti/raw_data.php\nDescription: Dataset and benchmarks for computer vision research in the context of autonomous driving. The dataset has been recorded in and around the city of Karlsruhe, Germany using the mobile platform AnnieWay (VW station wagon) which has been equipped with several RGB and monochrome cameras, a Velodyne HDL 64 laser scanner as well as an accurate RTK corrected GPS/IMU localization unit. The dataset has been created for computer vision and machine learning research on stereo, optical flow, visual odometry, semantic segmentation, semantic instance segmentation, road segmentation, single image depth prediction, depth map completion, 2D and 3D object detection and object tracking. In addition, several raw data recordings are provided. The datasets are captured by driving around the mid-size city of Karlsruhe, in rural areas and on highways. Up to 15 cars and 30 pedestrians are visible per image.\n\nDocumentation: http://www.cvlibs.net/datasets/kitti/\nContact: http://www.cvlibs.net/people.php\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_avg_kitti/index.json", "https://registry.opendata.aws/kitti/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_avg_kitti.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_avg_kitti&showErrors=false&email=", "Amazon Web Services", "awsS3Files_avg_kitti"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/", "public", "File Names from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd Bucket: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)", "This dataset has file information from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd bucket at https://aws-earth-mo-atmospheric-mogreps-g-prd.s3.eu-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts\nName2: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)\nDescription: Meteorological data reusers now have an exciting opportunity to sample, experiment and evaluate Met Office atmospheric model data, whilst also experiencing a transformative method of requesting data via Restful APIs on AWS. All ahead of Met Office\u2019s own operationally supported API platform that will be launched in late 2019.\n\nDocumentation: https://github.com/MetOffice/aws-earth-examples\nContact: https://www.metoffice.gov.uk/about-us/contact\nUpdateFrequency: Daily (with 24 hour delay)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/index.json", "https://registry.opendata.aws/uk-met-office/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_gsod/", "public", "File Names from the AWS S3 aws-gsod Bucket: Global Surface Summary of Day: Measurements and metadata", "This dataset has file information from the AWS S3 aws-gsod bucket at https://aws-gsod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Surface Summary of Day\nName2: Measurements and metadata\nDescription: GSOD is a collection of daily weather measurements (temperature, wind speed, humidity, pressure, and more) from 9000+ weather stations around the world.\n\nDocumentation: https://www.ncdc.noaa.gov/\nContact: https://www.ncdc.noaa.gov/\nUpdateFrequency: Currently updated infrequently. Last updated on September 13, 2016.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_gsod/index.json", "https://registry.opendata.aws/noaa-gsod/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_gsod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_gsod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_gsod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_broad_references/", "public", "File Names from the AWS S3 broad-references Bucket: Broad Genome References: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.", "This dataset has file information from the AWS S3 broad-references bucket at https://broad-references.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Broad Genome References\nName2: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.\nDescription: Broad maintained human genome reference builds hg19/hg38 and decoy references.\n\nDocumentation: https://s3.amazonaws.com/broad-references/broad-references-readme.html\nContact: hensonc@broadinstitute.org\nManagedBy: Broad Institute\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_broad_references/index.json", "https://registry.opendata.aws/broad-references/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_broad_references.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_broad_references&showErrors=false&email=", "Amazon Web Services", "awsS3Files_broad_references"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cbers_meta_pds/", "public", "File Names from the AWS S3 cbers-meta-pds Bucket: CBERS on AWS: CBERS metadata (Quicklooks, metadata)", "This dataset has file information from the AWS S3 cbers-meta-pds bucket at https://cbers-meta-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CBERS on AWS\nName2: CBERS metadata (Quicklooks, metadata)\nDescription: This project creates a S3 repository with imagery acquired by the China-Brazil Earth Resources Satellite (CBERS). The image files are recorded and processed by Instituto Nacional de Pesquisa Espaciais (INPE) and are converted to Cloud Optimized Geotiff format in order to optimize its use for cloud based applications. The repository contains all CBERS-4 MUX, AWFI, PAN5M and PAN10M scenes acquired since the start of the satellite mission and is daily updated with new scenes.\n\nDocumentation: https://github.com/fredliporace/cbers-on-aws\nContact: https://lists.osgeo.org/mailman/listinfo/cbers-pds\nManagedBy: [AMS Kepler](https://amskepler.com/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cbers_meta_pds/index.json", "https://registry.opendata.aws/cbers/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cbers_meta_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cbers_meta_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cbers_meta_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cgiardata/", "public", "File Names from the AWS S3 cgiardata Bucket: CCAFS-Climate Data: ARC GRID, and ARC ASCII format compressed", "This dataset has file information from the AWS S3 cgiardata bucket at https://cgiardata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CCAFS-Climate Data\nName2: ARC GRID, and ARC ASCII format compressed\nDescription: High resolution climate data to help assess the impacts of climate change primarily on agriculture. These open access datasets of climate projections will help researchers make climate change impact assessments.\n\nDocumentation: http://www.ccafs-climate.org\nContact: http://www.ccafs-climate.org/contact/\nUpdateFrequency: Every three months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cgiardata/index.json", "https://registry.opendata.aws/cgiardata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cgiardata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cgiardata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cgiardata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_commoncrawl/", "public", "File Names from the AWS S3 commoncrawl Bucket: Common Crawl: Crawl data (WARC and ARC format)", "This dataset has file information from the AWS S3 commoncrawl bucket at https://commoncrawl.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Common Crawl\nName2: Crawl data (WARC and ARC format)\nDescription: A corpus of web crawl data composed of over 25 billion web pages.\n\nDocumentation: http://commoncrawl.org/the-data/get-started/\nContact: http://commoncrawl.org/connect/contact-us/\nManagedBy: [Common Crawl](http://commoncrawl.org/)\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_commoncrawl/index.json", "https://registry.opendata.aws/commoncrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_commoncrawl.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_commoncrawl&showErrors=false&email=", "Amazon Web Services", "awsS3Files_commoncrawl"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cornell_eas_data_lake/", "public", "File Names from the AWS S3 cornell-eas-data-lake Bucket: Cornell EAS Data Lake: Cornell EAS Data Lake", "This dataset has file information from the AWS S3 cornell-eas-data-lake bucket at https://cornell-eas-data-lake.s3.us-east-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cornell EAS Data Lake\nName2: Cornell EAS Data Lake\nDescription: Earth & Atmospheric Sciences at Cornell University has created a public data lake of climate data. The data is stored in columnar storage formats (ORC) to make it straightforward to query using standard tools like Amazon Athena or Apache Spark. The data itself is originally intended to be used for building decision support tools for farmers and digital agriculture. The first dataset is the historical NDFD / NDGD data distributed by NCEP / NOAA / NWS. The NDFD (National Digital Forecast Database) and NDGD (National Digital Guidance Database) contain gridded forecasts and observations at 2.5km resolution for the Contiguous United States (CONUS). There are also 5km grids for several smaller US regions and non-continguous territories, such as Hawaii, Guam, Puerto Rico and Alaska. NOAA distributes archives of the NDFD/NDGD via its NOAA Operational Model Archive and Distribution System (NOMADS) in Grib2 format. The data has been converted to ORC to optimize storage space and to, more importantly, simplify data access via standard data analytics tools.\n\nDocumentation: https://datalake.eas.cornell.edu/\nContact: digitalag@cornell.edu\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cornell_eas_data_lake/index.json", "https://registry.opendata.aws/cornell-eas-data-lake/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cornell_eas_data_lake.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cornell_eas_data_lake&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cornell_eas_data_lake"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cse_cic_ids2018/", "public", "File Names from the AWS S3 cse-cic-ids2018 Bucket: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018): Network traffic and log files", "This dataset has file information from the AWS S3 cse-cic-ids2018 bucket at https://cse-cic-ids2018.s3.ca-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018)\nName2: Network traffic and log files\nDescription: This dataset is the result of a collaborative project between the Communications Security Establishment (CSE) and The Canadian Institute for Cybersecurity (CIC) that use the notion of profiles to generate cybersecurity dataset in a systematic manner. It incluides a detailed description of intrusions along with abstract distribution models for applications, protocols, or lower level network entities. The dataset includes seven different attack scenarios, namely Brute-force, Heartbleed, Botnet, DoS, DDoS, Web attacks, and infiltration of the network from inside. The attacking infrastructure includes 50 machines and the victim organization has 5 departments includes 420 PCs and 30 servers. This dataset includes the network traffic and log files of each machine from the victim side, along with 80 network traffic features extracted from captured traffic using CICFlowMeter-V3. For more information on the creation of this dataset, see this paper by researchers at the Canadian Institute for Cybersecurity (CIC) and the University of New Brunswick (UNB): [Toward Generating a New Intrusion Detection Dataset and Intrusion Traffic Characterization](http://www.scitepress.org/Papers/2018/66398/66398.pdf).\n\nDocumentation: http://www.unb.ca/cic/datasets/ids-2018.html\nContact: CIC@unb.ca\nUpdateFrequency: Annualy\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cse_cic_ids2018/index.json", "https://registry.opendata.aws/cse-cic-ids2018/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cse_cic_ids2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cse_cic_ids2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cse_cic_ids2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cytodata/", "public", "File Names from the AWS S3 cytodata Bucket: Cell Painting Image Collection: Images, extracted features and aggregated profiles are available as a S3 bucket", "This dataset has file information from the AWS S3 cytodata bucket at https://cytodata.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cell Painting Image Collection\nName2: Images, extracted features and aggregated profiles are available as a S3 bucket\nDescription: The Cell Painting Image Collection is a collection of freely downloadable microscopy image sets. Cell Painting is an unbiased high throughput imaging assay used to analyze perturbations in cell models. In addition to the images themselves, each set includes a description of the biological application and some type of \"ground truth\" (expected results). Researchers are encouraged to use these image sets as reference points when developing, testing, and publishing new image analysis algorithms for the life sciences. We hope that the this data set will lead to a better understanding of which methods are best for various biological image analysis applications.\n\nDocumentation: https://github.com/cytodata/cytodata-hackathon-2018\nContact: Post on https://forum.image.sc/ and tag with \"cellpainting\"\nUpdateFrequency: irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cytodata/index.json", "https://registry.opendata.aws/cell-painting-image-collection/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cytodata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cytodata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cytodata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_czb_tabula_muris/", "public", "File Names from the AWS S3 czb-tabula-muris Bucket: Tabula Muris", "This dataset has file information from the AWS S3 czb-tabula-muris bucket at https://czb-tabula-muris.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Tabula Muris\nName2: https://github.com/czbiohub/tabula-muris\nDescription: Tabula Muris is a compendium of single cell transcriptomic data from the model organism *Mus musculus* comprising more than 100,000 cells from 20 organs and tissues. These data represent a new resource for cell biology, reveal gene expression in poorly characterized cell populations, and allow for direct and controlled comparison of gene expression in cell types shared between tissues, such as T-lymphocytes and endothelial cells from different anatomical locations. Two distinct technical approaches were used for most organs: one approach, microfluidic droplet-based 3\u2019-end counting, enabled the survey of thousands of cells at relatively low coverage, while the other, FACS-based full length transcript analysis, enabled characterization of cell types with high sensitivity and coverage. The cumulative data provide the foundation for an atlas of transcriptomic cell biology. See: https://www.nature.com/articles/s41586-018-0590-4\n\nDocumentation: https://github.com/czbiohub/tabula-muris/blob/master/tabula-muris-on-aws.md\nContact: If you have questions about the data, you can create an Issue at https://github.com/czbiohub/tabula-muris.\nManagedBy: [Chan Zuckerberg Biohub](https://www.czbiohub.org/)\nUpdateFrequency: This is the final version of the dataset, it will not be updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_czb_tabula_muris/index.json", "https://registry.opendata.aws/tabula-muris/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_czb_tabula_muris.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_czb_tabula_muris&showErrors=false&email=", "Amazon Web Services", "awsS3Files_czb_tabula_muris"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataforgood_fb_data/", "public", "File Names from the AWS S3 dataforgood-fb-data Bucket: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook: CSV and Cloud-optimized GeoTIFF files", "This dataset has file information from the AWS S3 dataforgood-fb-data bucket at https://dataforgood-fb-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook\nName2: CSV and Cloud-optimized GeoTIFF files\nDescription: Population data for a selection of countries, allocated to 1 arcsecond blocks and provided in a combination of CSV and Cloud-optimized GeoTIFF files. This refines [CIESIN\u2019s Gridded Population of the World](https://sedac.ciesin.columbia.edu/data/collection/gpw-v4) using machine learning models on high-resolution worldwide Digital Globe satellite imagery. CIESIN population counts aggregated from worldwide census data are allocated to blocks where imagery appears to contain buildings.\n\nDocumentation: [Project overview](https://dataforgood.fb.com/population-density-maps-documentation/) and [dataset description](https://docs.opendata.aws/dataforgood-fb-data/readme.html)\nContact: disastermaps@fb.com\nManagedBy: |\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataforgood_fb_data/index.json", "https://registry.opendata.aws/dataforgood-fb-hrsl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataforgood_fb_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataforgood_fb_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataforgood_fb_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_datasets_elasticmapreduce_ngrams_books/", "public", "File Names from the AWS S3 datasets.elasticmapreduce Bucket with prefix=ngrams/books/: Google Books Ngrams: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.", "This dataset has file information from the AWS S3 datasets.elasticmapreduce bucket at https://datasets.elasticmapreduce.s3.us-east-1.amazonaws.com/ with prefix=ngrams/books/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Google Books Ngrams\nName2: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.\nDescription: N-grams are fixed size tuples of items. In this case the items are words extracted from the Google Books corpus. The n specifies the number of elements in the tuple, so a 5-gram contains five words or characters. The n-grams in this dataset were produced by passing a sliding window of the text of books and outputting a record for each new token.\n\nDocumentation: http://books.google.com/ngrams/\nContact: https://books.google.com/ngrams\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_datasets_elasticmapreduce_ngrams_books/index.json", "https://registry.opendata.aws/google-ngrams/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_datasets_elasticmapreduce_ngrams_books.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_datasets_elasticmapreduce_ngrams_books&showErrors=false&email=", "Amazon Web Services", "awsS3Files_datasets_elasticmapreduce_ngrams_books"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataworld_linked_acs/", "public", "File Names from the AWS S3 dataworld-linked-acs Bucket: U.S. Census ACS PUMS: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.", "This dataset has file information from the AWS S3 dataworld-linked-acs bucket at https://dataworld-linked-acs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: U.S. Census ACS PUMS\nName2: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.\nDescription: U.S. Census Bureau American Community Survey (ACS) Public Use Microdata Sample (PUMS) available in a linked data format using the Resource Description Framework (RDF) data model.\n\nDocumentation: https://docs.data.world/uscensus/#american-community-survey-linked-open-data\nContact: https://docs.data.world/uscensus/#60---contact\nUpdateFrequency: Yearly, after ACS 1-year PUMS raw data are released\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataworld_linked_acs/index.json", "https://registry.opendata.aws/census-dataworld-pums/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataworld_linked_acs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataworld_linked_acs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataworld_linked_acs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2015/", "public", "File Names from the AWS S3 dc-lidar-2015 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML, SHP", "This dataset has file information from the AWS S3 dc-lidar-2015 bucket at https://dc-lidar-2015.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML, SHP\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2015/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2015.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2015&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2015"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2018/", "public", "File Names from the AWS S3 dc-lidar-2018 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML", "This dataset has file information from the AWS S3 dc-lidar-2018 bucket at https://dc-lidar-2018.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2018/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_eurex_pds/", "public", "File Names from the AWS S3 deutsche-boerse-eurex-pds Bucket: Deutsche B\u00f6rse Public Dataset: Eurex PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-eurex-pds bucket at https://deutsche-boerse-eurex-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Eurex PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_eurex_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_eurex_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_eurex_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_eurex_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_xetra_pds/", "public", "File Names from the AWS S3 deutsche-boerse-xetra-pds Bucket: Deutsche B\u00f6rse Public Dataset: Xetra PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-xetra-pds bucket at https://deutsche-boerse-xetra-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Xetra PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_xetra_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_xetra_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_xetra_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_xetra_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ebirdst_data/", "public", "File Names from the AWS S3 ebirdst-data Bucket: eBird Status and Trends Model Results: Species results files", "This dataset has file information from the AWS S3 ebirdst-data bucket at https://ebirdst-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: eBird Status and Trends Model Results\nName2: Species results files\nDescription: The eBird Status and Trends project generates estimates of bird occurrence and abundance at a high spatiotemporal resolution. This dataset represents the primary modeled results from the analysis workflow and are designed for further analysis, synthesis, visualization, and exploration.\n\nDocumentation: https://cornelllabofornithology.github.io/ebirdst/articles/ebirdst-introduction.html\nContact: https://help.ebird.org/customer/en/portal/emails/new\nManagedBy: [Cornell Lab of Ornithology](https://www.birds.cornell.edu/home/)\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ebirdst_data/index.json", "https://registry.opendata.aws/ebirdst/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ebirdst_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ebirdst_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ebirdst_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_elevation_tiles_prod/", "public", "File Names from the AWS S3 elevation-tiles-prod Bucket: Terrain Tiles: Gridded elevation tiles", "This dataset has file information from the AWS S3 elevation-tiles-prod bucket at https://elevation-tiles-prod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Terrain Tiles\nName2: Gridded elevation tiles\nDescription: A global dataset providing bare-earth terrain heights, tiled for easy usage and provided on S3.\n\nDocumentation: https://mapzen.com/documentation/terrain-tiles/\nContact: https://github.com/tilezen/joerd/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_elevation_tiles_prod/index.json", "https://registry.opendata.aws/terrain-tiles/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_elevation_tiles_prod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_elevation_tiles_prod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_elevation_tiles_prod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_encode_public/", "public", "File Names from the AWS S3 encode-public Bucket: Encyclopedia of DNA Elements (ENCODE): Released and archived ENCODE data", "This dataset has file information from the AWS S3 encode-public bucket at https://encode-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Encyclopedia of DNA Elements (ENCODE)\nName2: Released and archived ENCODE data\nDescription: The Encyclopedia of DNA Elements (ENCODE) Consortium is an international collaboration of research groups funded by the National Human Genome Research Institute (NHGRI). The goal of ENCODE is to build a comprehensive parts list of functional elements in the human genome, including elements that act at the protein and RNA levels, and regulatory elements that control cells and circumstances in which a gene is active. ENCODE investigators employ a variety of assays and methods to identify functional elements. The discovery and annotation of gene elements is accomplished primarily by sequencing a diverse range of RNA sources, comparative genomics, integrative bioinformatic methods, and human curation. Regulatory elements are typically investigated through DNA hypersensitivity assays, assays of DNA methylation, and immunoprecipitation (IP) of proteins that interact with DNA and RNA, i.e., modified histones, transcription factors, chromatin regulators, and RNA-binding proteins, followed by sequencing.\n\nDocumentation: https://www.encodeproject.org\nContact: encode-help@lists.stanford.edu\nManagedBy: ENCODE Data Coordinating Center\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_encode_public/index.json", "https://registry.opendata.aws/encode-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_encode_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_encode_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_encode_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_epa_rsei_pds/", "public", "File Names from the AWS S3 epa-rsei-pds Bucket: EPA Risk-Screening Environmental Indicators: RSEI Microdata", "This dataset has file information from the AWS S3 epa-rsei-pds bucket at https://epa-rsei-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: EPA Risk-Screening Environmental Indicators\nName2: RSEI Microdata\nDescription: Detailed air model results from EPA\u2019s Risk-Screening Environmental Indicators (RSEI) model.\n\nDocumentation: https://docs.opendata.aws/epa-rsei-pds/readme.html\nContact: https://www.epa.gov/rsei/forms/contact-us-about-rsei-model\nUpdateFrequency: Updated infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_epa_rsei_pds/index.json", "https://registry.opendata.aws/epa-rsei-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_epa_rsei_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_epa_rsei_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_epa_rsei_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_era5_pds/", "public", "File Names from the AWS S3 era5-pds Bucket: ECMWF ERA5 Reanalysis: ERA5 Reanalysis NetCDF 4 files", "This dataset has file information from the AWS S3 era5-pds bucket at https://era5-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ECMWF ERA5 Reanalysis\nName2: ERA5 Reanalysis NetCDF 4 files\nDescription: ERA5 is the fifth generation of ECMWF atmospheric reanalyses of the global climate, and the first reanalysis produced as an operational service. It utilizes the best available observation data from satellites and in-situ stations, which are assimilated and processed using ECMWF's Integrated Forecast System (IFS) Cycle 41r2. The dataset provides all essential atmospheric meteorological parameters like, but not limited to, air temperature, pressure and wind at different altitudes, along with surface parameters like rainfall, soil moisture content and sea parameters like sea-surface temperature and wave height. ERA5 provides data at a considerably higher spatial and temporal resolution than its legacy counterpart ERA-Interim. ERA5 consists of high resolution version with 31 km horizontal resolution, and a reduced resolution ensemble version with 10 members. It is currently available since 2008, but will be continuously extended backwards, first until 1979 and then to 1950. Learn more about ERA5 in Jon Olauson's paper [ERA5: The new champion of wind power modelling?](https://www.researchgate.net/publication/320084119_ERA5_The_new_champion_of_wind_power_modelling).\n\nDocumentation: https://github.com/planet-os/notebooks/blob/master/aws/era5-pds.md\nContact: datahub@intertrust.com\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_era5_pds/index.json", "https://registry.opendata.aws/ecmwf-era5/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_era5_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_era5_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_era5_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_coco/", "public", "File Names from the AWS S3 fast-ai-coco Bucket: COCO - Common Objects in Context - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-coco bucket at https://fast-ai-coco.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: COCO - Common Objects in Context - fast.ai datasets\nName2: Datasets\nDescription: COCO is a large-scale object detection, segmentation, and captioning dataset. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. If you use this dataset in your research please cite arXiv:1405.0312 [cs.CV].\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_coco/index.json", "https://registry.opendata.aws/fast-ai-coco/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_coco.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_coco&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_coco"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imageclas/", "public", "File Names from the AWS S3 fast-ai-imageclas Bucket: Image classification - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imageclas bucket at https://fast-ai-imageclas.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image classification - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image classification research, including CIFAR 10 and 100, Caltech 101, MNIST, Food-101, Oxford-102-Flowers, Oxford-IIIT-Pets, and Stanford-Cars. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imageclas/index.json", "https://registry.opendata.aws/fast-ai-imageclas/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imageclas.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imageclas&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imageclas"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imagelocal/", "public", "File Names from the AWS S3 fast-ai-imagelocal Bucket: Image localization - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imagelocal bucket at https://fast-ai-imagelocal.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image localization - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image localization research, including Camvid and PASCAL VOC (2007 and 2012). This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imagelocal/index.json", "https://registry.opendata.aws/fast-ai-imagelocal/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imagelocal.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imagelocal&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imagelocal"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_nlp/", "public", "File Names from the AWS S3 fast-ai-nlp Bucket: NLP - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-nlp bucket at https://fast-ai-nlp.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NLP - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for NLP, with a focus on classification, including IMDb, AG-News, Amazon Reviews (polarity and full), Yelp Reviews (polarity and full), Dbpedia, Sogou News (Pinyin), Yahoo Answers, Wikitext 2 and Wikitext 103, and ACL-2010 French-English 10^9 corpus. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_nlp/index.json", "https://registry.opendata.aws/fast-ai-nlp/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_nlp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_nlp&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_nlp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib Bucket: HIRLAM Weather Model: Pressure GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib bucket at https://fmi-opendata-rcrhirlam-pressure-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Pressure GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_pressure_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_pressure_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-surface-grib Bucket: HIRLAM Weather Model: Surface GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-surface-grib bucket at https://fmi-opendata-rcrhirlam-surface-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Surface GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_surface_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_surface_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gatk_test_data/", "public", "File Names from the AWS S3 gatk-test-data Bucket: GATK Test Data: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.", "This dataset has file information from the AWS S3 gatk-test-data bucket at https://gatk-test-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GATK Test Data\nName2: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.\nDescription: The GATK test data resource bundle is a collection of files for resequencing human genomic data with the Broad Institute's [Genome Analysis Toolkit (GATK)](https://software.broadinstitute.org/gatk/).\n\nDocumentation: https://s3.amazonaws.com/gatk-test-data/gatk-test-data-readme.html\nContact: https://gatkforums.broadinstitute.org/gatk\nManagedBy: Broad Institute\nUpdateFrequency: Every 3 months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gatk_test_data/index.json", "https://registry.opendata.aws/gatk-test-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gatk_test_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gatk_test_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gatk_test_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gdelt_open_data/", "public", "File Names from the AWS S3 gdelt-open-data Bucket: Global Database of Events, Language and Tone (GDELT): Project data files", "This dataset has file information from the AWS S3 gdelt-open-data bucket at https://gdelt-open-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Database of Events, Language and Tone (GDELT)\nName2: Project data files\nDescription: This project monitors the world's broadcast, print, and web news from nearly every corner of every country in over 100 languages and identifies the people, locations, organizations, counts, themes, sources, emotions, quotes, images and events driving our global society every second of every day.\n\nDocumentation: http://www.gdeltproject.org/\nContact: http://www.gdeltproject.org/about.html#contact\nUpdateFrequency: Not currently being updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gdelt_open_data/index.json", "https://registry.opendata.aws/gdelt/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gdelt_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gdelt_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gdelt_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_genomeark/", "public", "File Names from the AWS S3 genomeark Bucket: Genome Ark", "This dataset has file information from the AWS S3 genomeark bucket at https://genomeark.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome Ark\nName2: https://vgp.github.io\nDescription: The Genome Ark hosts genomic information for the Vertebrate Genomes Project (VGP) and other related projects. The VGP is an international collaboration that aims to generate complete and near error-free reference genomes for all extant vertebrate species. These genomes will be used to address fundamental questions in biology and disease, to identify species most genetically at risk for extinction, and to preserve genetic information of life.\n\nDocumentation: https://vertebrategenomesproject.org\nContact: Erich Jarvis \nManagedBy: The Genome10K community of scientists\nUpdateFrequency: Data will be continually updated as it is generated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_genomeark/index.json", "https://registry.opendata.aws/genomeark/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_genomeark.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_genomeark&showErrors=false&email=", "Amazon Web Services", "awsS3Files_genomeark"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_giab/", "public", "File Names from the AWS S3 giab Bucket: Genome in a Bottle on AWS: Latest data", "This dataset has file information from the AWS S3 giab bucket at https://giab.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome in a Bottle on AWS\nName2: Latest data\nDescription: Several reference genomes to enable translation of whole human genome sequencing to clinical practice.\n\nDocumentation: https://docs.opendata.aws/giab/readme.html\nContact: http://genomeinabottle.org/\nUpdateFrequency: New data are added as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_giab/index.json", "https://registry.opendata.aws/giab/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_giab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_giab&showErrors=false&email=", "Amazon Web Services", "awsS3Files_giab"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gmsdata/", "public", "File Names from the AWS S3 gmsdata Bucket: The Genome Modeling System", "This dataset has file information from the AWS S3 gmsdata bucket at https://gmsdata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Genome Modeling System\nName2: https://gmsdata.s3.amazonaws.com/INDEX.html\nDescription: The Genome Institute at Washington University has developed a high-throughput, fault-tolerant analysis information management system called the Genome Modeling System (GMS), capable of executing complex, interdependent, and automated genome analysis pipelines at a massive scale. The GMS framework provides detailed tracking of samples and data coupled with reliable and repeatable analysis pipelines. GMS includes a full system image with software and services, expandable from one workstation to a large compute cluster.\n\nDocumentation: https://github.com/genome/gms/wiki\nContact: https://github.com/genome/gms/issues\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gmsdata/index.json", "https://registry.opendata.aws/gmsdata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gmsdata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gmsdata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gmsdata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_grillo_openeew/", "public", "File Names from the AWS S3 grillo-openeew Bucket: OpenEEW: OpenEEW", "This dataset has file information from the AWS S3 grillo-openeew bucket at https://grillo-openeew.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenEEW\nName2: OpenEEW\nDescription: Grillo has developed an IoT-based earthquake early-warning system in Mexico and Chile and is now opening its entire archive of unprocessed accelerometer data to the world to encourage the development of new algorithms capable of rapidly detecting and characterizing earthquakes in real time.\n\nDocumentation: https://github.com/grillo/openeew\nContact: openeew@grillo.io\nManagedBy: [Grillo](https://grillo.io/)\nUpdateFrequency: Approximately every 10 minutes\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_grillo_openeew/index.json", "https://registry.opendata.aws/grillo-openeew/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_grillo_openeew.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_grillo_openeew&showErrors=false&email=", "Amazon Web Services", "awsS3Files_grillo_openeew"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_microbiome_project/", "public", "File Names from the AWS S3 human-microbiome-project Bucket: The Human Microbiome Project", "This dataset has file information from the AWS S3 human-microbiome-project bucket at https://human-microbiome-project.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Human Microbiome Project\nName2: https://aws.amazon.com/datasets/human-microbiome-project/\nDescription: The NIH-funded Human Microbiome Project (HMP) is a collaborative effort of over 300 scientists from more than 80 organizations to comprehensively characterize the microbial communities inhabiting the human body and elucidate their role in human health and disease. To accomplish this task, microbial community samples were isolated from a cohort of 300 healthy adult human subjects at 18 specific sites within five regions of the body (oral cavity, airways, urogenital track, skin, and gut). Targeted sequencing of the 16S bacterial marker gene and/or whole metagenome shotgun sequencing was performed for thousands of these samples. In addition, whole genome sequences were generated for isolate strains collected from human body sites to act as reference organisms for analysis. Finally, 16S marker and whole metagenome sequencing was also done on additional samples from people suffering from several disease conditions.\n\nDocumentation: https://commonfund.nih.gov/hmp\nContact: https://commonfund.nih.gov/hmp/related_activities\nUpdateFrequency: Uncertain\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_microbiome_project/index.json", "https://registry.opendata.aws/human-microbiome-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_microbiome_project.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_microbiome_project&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_microbiome_project"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_pangenomics/", "public", "File Names from the AWS S3 human-pangenomics Bucket: Human PanGenomics Project: Human PanGenomics Project", "This dataset has file information from the AWS S3 human-pangenomics bucket at https://human-pangenomics.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Human PanGenomics Project\nName2: Human PanGenomics Project\nDescription: This dataset includes sequencing data, assemblies, and analyses for the offspring of ten parent-offspring trios.\n\nDocumentation: https://github.com/human-pangenomics/hpgp-data\nContact: https://github.com/human-pangenomics/hpgp-data/issues\nUpdateFrequency: Data will be added and updated as technologies improve or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_pangenomics/index.json", "https://registry.opendata.aws/hpgp-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_pangenomics.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_pangenomics&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_pangenomics"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/", "public", "File Names from the AWS S3 ichangemycity-janaagraha-complaints-data-aws Bucket: IChangeMyCity Complaints Data from Janaagraha: IChangeMyCity Complaints", "This dataset has file information from the AWS S3 ichangemycity-janaagraha-complaints-data-aws bucket at https://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IChangeMyCity Complaints Data from Janaagraha\nName2: IChangeMyCity Complaints\nDescription: The [IChangeMyCity](https://www.ichangemycity.com) project provides insight into the complaints raised by citizens from diffent cities of India related to the issues in their neighbourhoods and the resolution of the same by the civic bodies.\n\nDocumentation: http://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/readme.html\nContact: data@janaagraha.org\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/index.json", "https://registry.opendata.aws/ichangemycity/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ichangemycity_janaagraha_complaints_data_aws&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ichangemycity_janaagraha_complaints_data_aws"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_irs_990_spreadsheets/", "public", "File Names from the AWS S3 irs-990-spreadsheets Bucket: IRS 990 Filings (Spreadsheets): Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form", "This dataset has file information from the AWS S3 irs-990-spreadsheets bucket at https://irs-990-spreadsheets.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IRS 990 Filings (Spreadsheets)\nName2: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form\nDescription: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form. Additional fields being added regularly.\n\nDocumentation: https://appliednonprofitresearch.com/documentation/irs-990-spreadsheets\nContact: [info@appliednonprofitresearch.com](info@appliednonprofitresearch.com)\nManagedBy: [Applied Nonprofit Research, LLC](https://www.appliednonprofitresearch.com/)\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_irs_990_spreadsheets/index.json", "https://registry.opendata.aws/990-spreadsheets/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_irs_990_spreadsheets.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_irs_990_spreadsheets&showErrors=false&email=", "Amazon Web Services", "awsS3Files_irs_990_spreadsheets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lab41openaudiocorpus/", "public", "File Names from the AWS S3 lab41openaudiocorpus Bucket: Voices Obscured in Complex Environmental Settings (VOiCES): wav audio files, orthographic transcriptions, and speaker ID", "This dataset has file information from the AWS S3 lab41openaudiocorpus bucket at https://lab41openaudiocorpus.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Voices Obscured in Complex Environmental Settings (VOiCES)\nName2: wav audio files, orthographic transcriptions, and speaker ID\nDescription: VOiCES is a speech corpus recorded in acoustically challenging settings, using distant microphone recording. Speech was recorded in real rooms with various acoustic features (reverb, echo, HVAC systems, outside noise, etc.). Adversarial noise, either television, music, or babble, was concurrently played with clean speech. Data was recorded using multiple microphones strategically placed throughout the room. The corpus includes audio recordings, orthographic transcriptions, and speaker labels.\n\nDocumentation: https://voices18.github.io/\nContact: https://github.com/voices18/utilities/issues\nUpdateFrequency: Data from two additional rooms will be added to the corpus Fall 2018.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lab41openaudiocorpus/index.json", "https://registry.opendata.aws/lab41-sri-voices/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lab41openaudiocorpus.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lab41openaudiocorpus&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lab41openaudiocorpus"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds/", "public", "File Names from the AWS S3 landsat-pds Bucket: Landsat 8: Scenes and metadata", "This dataset has file information from the AWS S3 landsat-pds bucket at https://landsat-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: Scenes and metadata\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds_inventory/", "public", "File Names from the AWS S3 landsat-pds-inventory Bucket: Landsat 8: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)", "This dataset has file information from the AWS S3 landsat-pds-inventory bucket at https://landsat-pds-inventory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds_inventory/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds_inventory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds_inventory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds_inventory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lofar_elais_n1/", "public", "File Names from the AWS S3 lofar-elais-n1 Bucket: LOFAR ELAIS-N1 cycle 2 observations on AWS: LOFAR ELAIS-N1 cycle 2 observations", "This dataset has file information from the AWS S3 lofar-elais-n1 bucket at https://lofar-elais-n1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: LOFAR ELAIS-N1 cycle 2 observations on AWS\nName2: LOFAR ELAIS-N1 cycle 2 observations\nDescription: These data correspond to the [International LOFAR Telescope](http://www.lofar.org/) observations of the sky field ELAIS-N1 (16:10:01 +54:30:36) during the cycle 2 of observations. There are 11 runs of about 8 hours each plus the corresponding observation of the calibration targets before and after the target field. The data are measurement sets ([MS](https://casa.nrao.edu/Memos/229.html)) containing the cross-correlated data and metadata divided in 371 frequency sub-bands per target centred at ~150 MHz.\n\nDocumentation: https://www.lofarcloud.uk/data.html\nContact: https://www.lofarcloud.uk/\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lofar_elais_n1/index.json", "https://registry.opendata.aws/lofar-elais-n1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lofar_elais_n1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lofar_elais_n1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lofar_elais_n1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mf_nwp_models/", "public", "File Names from the AWS S3 mf-nwp-models Bucket: Atmospheric Models from M\u00e9t\u00e9o-France: Atmospheric Models from M\u00e9t\u00e9o-France", "This dataset has file information from the AWS S3 mf-nwp-models bucket at https://mf-nwp-models.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Atmospheric Models from M\u00e9t\u00e9o-France\nName2: Atmospheric Models from M\u00e9t\u00e9o-France\nDescription: Global and high-resolution regional atmospheric models from M\u00e9t\u00e9o-France.\n\nDocumentation: https://mf-models-on-aws.org\nContact: contact@openmeteodata.com\nManagedBy: [OpenMeteoData](https://openmeteodata.com)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mf_nwp_models/index.json", "https://registry.opendata.aws/meteo-france-models/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mf_nwp_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mf_nwp_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mf_nwp_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_modis_pds/", "public", "File Names from the AWS S3 modis-pds Bucket: MODIS on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 modis-pds bucket at https://modis-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: MODIS on AWS\nName2: Imagery and metadata\nDescription: Select products from the Moderate Resolution Imaging Spectroradiometer (MODIS) managed by the U.S. Geological Survey and NASA.\n\nDocumentation: https://docs.opendata.aws/modis-pds/readme.html\nContact: https://github.com/AstroDigital/modis-ingestor/issues\nUpdateFrequency: New MODIS data is added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_modis_pds/index.json", "https://registry.opendata.aws/modis/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_modis_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_modis_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_modis_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_multimedia_commons/", "public", "File Names from the AWS S3 multimedia-commons Bucket: Multimedia Commons: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.", "This dataset has file information from the AWS S3 multimedia-commons bucket at https://multimedia-commons.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Multimedia Commons\nName2: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.\nDescription: The Multimedia Commons is a collection of audio and visual features computed for the nearly 100 million Creative Commons-licensed Flickr images and videos in the YFCC100M dataset from Yahoo! Labs, along with ground-truth annotations for selected subsets. The International Computer Science Institute (ICSI) and Lawrence Livermore National Laboratory are producing and distributing a core set of derived feature sets and annotations as part of an effort to enable large-scale video search capabilities. They have released this feature corpus into the public domain, under Creative Commons License 0, so it is free for anyone to use for any purpose.\n\nDocumentation: https://multimediacommons.wordpress.com/yfcc100m-core-dataset/\nContact: multimedia-commons@icsi.berkeley.edu\nUpdateFrequency: Not updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_multimedia_commons/index.json", "https://registry.opendata.aws/multimedia-commons/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_multimedia_commons.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_multimedia_commons&showErrors=false&email=", "Amazon Web Services", "awsS3Files_multimedia_commons"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mwapublic/", "public", "File Names from the AWS S3 mwapublic Bucket: Epoch of Reionization Dataset: Selected MWA EoR data (uvfits format) from 2013-2015", "This dataset has file information from the AWS S3 mwapublic bucket at https://mwapublic.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Epoch of Reionization Dataset\nName2: Selected MWA EoR data (uvfits format) from 2013-2015\nDescription: The data are from observations with the Murchison Widefield Array (MWA) which is a Square Kilometer Array (SKA) precursor in Western Australia. This particular dataset is from the Epoch of Reionization project which is a key science driver of the SKA. Nearly 2PB of such observations have been recorded to date, this is a small subset of that which has been exported from the MWA data archive in Perth and made available to the public on AWS. The data were taken to detect signatures of the first stars and galaxies forming and the effect of these early stars and galaxies on the evolution of the universe.\n\nDocumentation: http://danielcjacobs.com/research/epoch-of-reionization-aws-public-dataset/\nContact: brynah (at) phys.washington.edu\nManagedBy: University of washington Radio Cosmology Group\nUpdateFrequency: Irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mwapublic/index.json", "https://registry.opendata.aws/epoch-of-reionization/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mwapublic.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mwapublic&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mwapublic"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nanopore_human_wgs/", "public", "File Names from the AWS S3 nanopore-human-wgs Bucket: Nanopore Reference Human Genome: Nanopore Reference Human Genome", "This dataset has file information from the AWS S3 nanopore-human-wgs bucket at https://nanopore-human-wgs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Nanopore Reference Human Genome\nName2: Nanopore Reference Human Genome\nDescription: This dataset includes the sequencing and assembly of a reference standard human genome (GM12878) using the MinION nanopore sequencing instrument with the R9.4 1D chemistry.\n\nDocumentation: https://github.com/nanopore-wgs-consortium/NA12878\nContact: https://github.com/nanopore-wgs-consortium/NA12878/issues\nUpdateFrequency: Data will be added as methodology improves or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nanopore_human_wgs/index.json", "https://registry.opendata.aws/nanopore/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nanopore_human_wgs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nanopore_human_wgs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nanopore_human_wgs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_Landsat/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=Landsat/: NASA NEX: Landsat GLS (Global Land Survey)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=Landsat/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Landsat GLS (Global Land Survey)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_Landsat/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_Landsat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_Landsat&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_Landsat"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_LOCA/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=LOCA/: NASA NEX: Localized Constructed Analogs (LOCA)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=LOCA/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Localized Constructed Analogs (LOCA)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_LOCA/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_LOCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_LOCA&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_LOCA"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_MODIS/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=MODIS/: NASA NEX: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=MODIS/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_MODIS/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_MODIS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_MODIS&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_MODIS"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_DCP30/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-DCP30/: NASA NEX: Downscaled Climate Projections (NEX-DCP30)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-DCP30/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Downscaled Climate Projections (NEX-DCP30)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_DCP30/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_DCP30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_DCP30&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_DCP30"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_GDDP/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-GDDP/: NASA NEX: Global Daily Downscaled Projections (NEX-GDDP)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-GDDP/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Global Daily Downscaled Projections (NEX-GDDP)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_GDDP/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_GDDP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_GDDP&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_GDDP"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gefs_pds/", "public", "File Names from the AWS S3 noaa-gefs-pds Bucket: NOAA Global Ensemble Forecast System (GEFS): Project data files", "This dataset has file information from the AWS S3 noaa-gefs-pds bucket at https://noaa-gefs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Ensemble Forecast System (GEFS)\nName2: Project data files\nDescription: The Global Ensemble Forecast System (GEFS), previously known as the GFS Global ENSemble (GENS), is a weather forecast model made up of 21 separate forecasts, or ensemble members. The National Centers for Environmental Prediction (NCEP) started the GEFS to address the nature of uncertainty in weather observations, which is used to initialize weather forecast models. The GEFS attempts to quantify the amount of uncertainty in a forecast by generating an ensemble of multiple forecasts, each minutely different, or perturbed, from the original observations. With global coverage, GEFS is produced four times a day with weather forecasts going out to 16 days.\n\nDocumentation: https://docs.opendata.aws/noaa-gefs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GEFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GEFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gefs_pds/index.json", "https://registry.opendata.aws/noaa-gefs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gefs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gefs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gefs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_bdp_pds/", "public", "File Names from the AWS S3 noaa-gfs-bdp-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 GFS data", "This dataset has file information from the AWS S3 noaa-gfs-bdp-pds bucket at https://noaa-gfs-bdp-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_bdp_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_bdp_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_bdp_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_bdp_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_pds/", "public", "File Names from the AWS S3 noaa-gfs-pds Bucket: Unidata NOAA Global Forecast System (GFS) Model: A rolling four-week archive of 0.25 degree GFS data", "This dataset has file information from the AWS S3 noaa-gfs-pds bucket at https://noaa-gfs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Unidata NOAA Global Forecast System (GFS) Model\nName2: A rolling four-week archive of 0.25 degree GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks.\n\nDocumentation: https://docs.opendata.aws/noaa-gfs-pds/readme.html\nContact: https://www.ncdc.noaa.gov/contact\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_pds/index.json", "https://registry.opendata.aws/noaa-gfs-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfspara_pds/", "public", "File Names from the AWS S3 noaa-gfspara-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 FV3-based parallel version of the GFS", "This dataset has file information from the AWS S3 noaa-gfspara-pds bucket at https://noaa-gfspara-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 FV3-based parallel version of the GFS\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfspara_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfspara_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfspara_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfspara_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghcn_pds/", "public", "File Names from the AWS S3 noaa-ghcn-pds Bucket: NOAA Global Historical Climatology Network Daily (GHCN-D): Project data files", "This dataset has file information from the AWS S3 noaa-ghcn-pds bucket at https://noaa-ghcn-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Daily (GHCN-D)\nName2: Project data files\nDescription: Global Historical Climatology Network - Daily is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://docs.opendata.aws/noaa-ghcn-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncdc.noaa.gov/ghcn-daily-description). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghcn_pds/index.json", "https://registry.opendata.aws/noaa-ghcn/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghcn_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghcn_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghcn_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghe_pds/", "public", "File Names from the AWS S3 noaa-ghe-pds Bucket: NOAA Global Hydro Estimator (GHE): Project data files", "This dataset has file information from the AWS S3 noaa-ghe-pds bucket at https://noaa-ghe-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Hydro Estimator (GHE)\nName2: Project data files\nDescription: Global Hydro-Estimator provides a global mosaic imagery of rainfall estimates from multi-geostationary satellites, which currently includes GOES-16, GOES-15, Meteosat-8, Meteosat-11 and Himawari-8. The GHE products include: Instantaneous rain rate, 1 hour, 3 hour, 6 hour, 24 hour and also multi-day rainfall accumulation.\n\nDocumentation: https://www.ospo.noaa.gov/Products/atmosphere/ghe/index.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 15 minute-instantaneous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghe_pds/index.json", "https://registry.opendata.aws/noaa-ghe/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghe_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghe_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghe_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_global_hourly_pds/", "public", "File Names from the AWS S3 noaa-global-hourly-pds Bucket: NOAA Global Historical Climatology Network Hourly (GHCN-H): Project data files", "This dataset has file information from the AWS S3 noaa-global-hourly-pds bucket at https://noaa-global-hourly-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Hourly (GHCN-H)\nName2: Project data files\nDescription: Global Historical Climatology Network - Hourly is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: daily (Manually)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_global_hourly_pds/index.json", "https://registry.opendata.aws/noaa-ghcnh/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_global_hourly_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_global_hourly_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_global_hourly_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3NoaaGoes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nUse ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browser the files in buckets. This dataset is a solution to that problem for this bucket.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3NoaaGoes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3NoaaGoes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3NoaaGoes16&showErrors=false&email=", "NOAA", "awsS3NoaaGoes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket: GOES on AWS: GOES-16 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-16 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes16&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes17/", "public", "File Names from the AWS S3 noaa-goes17 Bucket: GOES on AWS: GOES-17 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes17 bucket at https://noaa-goes17.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-17 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes17/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes17&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes17"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_hrrr_pds/", "public", "File Names from the AWS S3 noaa-hrrr-pds Bucket: NOAA High-Resolution Rapid Refresh (HRRR) Model: A rolling one-week archive of HRRR data.", "This dataset has file information from the AWS S3 noaa-hrrr-pds bucket at https://noaa-hrrr-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA High-Resolution Rapid Refresh (HRRR) Model\nName2: A rolling one-week archive of HRRR data.\nDescription: The HRRR is a NOAA real-time 3-km resolution, hourly updated, cloud-resolving, convection-allowing atmospheric model, initialized by 3km grids with 3km radar assimilation. Radar data is assimilated in the HRRR every 15 min over a 1-h period adding further detail to that provided by the hourly data assimilation from the 13km radar-enhanced Rapid Refresh.\n\nDocumentation: https://docs.opendata.aws/noaa-hrrr-pds/readme.html\nContact: https://rapidrefresh.noaa.gov/hrrr/\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_hrrr_pds/index.json", "https://registry.opendata.aws/noaa-hrrr-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_hrrr_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_hrrr_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_hrrr_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_isd_pds/", "public", "File Names from the AWS S3 noaa-isd-pds Bucket: NOAA Integrated Surface Database (ISD): Project data files", "This dataset has file information from the AWS S3 noaa-isd-pds bucket at https://noaa-isd-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Integrated Surface Database (ISD)\nName2: Project data files\nDescription: The Integrated Surface Database (ISD) consists of global hourly and synoptic observations compiled from numerous sources into a gzipped fixed width format. ISD was developed as a joint activity within Asheville's Federal Climate Complex. The database includes over 35,000 stations worldwide, with some having data as far back as 1901, though the data show a substantial increase in volume in the 1940s and again in the early 1970s. Currently, there are over 14,000 \"active\" stations updated daily in the database. The total uncompressed data volume is around 600 gigabytes; however, it continues to grow as more data are added. ISD includes numerous parameters such as wind speed and direction, wind gust, temperature, dew point, cloud data, sea level pressure, altimeter setting, station pressure, present weather, visibility, precipitation amounts for various time periods, snow depth, and various other elements as observed by each station.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_isd_pds/index.json", "https://registry.opendata.aws/noaa-isd/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_isd_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_isd_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_isd_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nexrad_level2/", "public", "File Names from the AWS S3 noaa-nexrad-level2 Bucket: NEXRAD on AWS: NEXRAD Level II archive data", "This dataset has file information from the AWS S3 noaa-nexrad-level2 bucket at https://noaa-nexrad-level2.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II archive data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nexrad_level2/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nexrad_level2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nexrad_level2&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nexrad_level2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_pds/", "public", "File Names from the AWS S3 noaa-nwm-pds Bucket: NOAA National Water Model Short-Range Forecast: A rolling four week archive of NWM data.", "This dataset has file information from the AWS S3 noaa-nwm-pds bucket at https://noaa-nwm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Short-Range Forecast\nName2: A rolling four week archive of NWM data.\nDescription: The National Water Model (NWM) is a water resources model that simulates and forecasts water budget variables, including snowpack, evapotranspiration, soil moisture and streamflow, over the entire continental United States (CONUS). The model, launched in August 2016, is designed to improve the ability of NOAA to meet the needs of its stakeholders (forecasters, emergency managers, reservoir operators, first responders, recreationists, farmers, barge operators, and ecosystem and floodplain managers) by providing expanded accuracy, detail, and frequency of water information. It is operated by NOAA\u2019s Office of Water Prediction. This bucket contains a four-week rollover of the Short Range Forecast model output and the corresponding forcing data for the model. The model is forced with meteorological data from the High Resolution Rapid Refresh (HRRR) and the Rapid Refresh (RAP) models. The Short Range Forecast configuration cycles hourly and produces hourly deterministic forecasts of streamflow and hydrologic states out to 18 hours.\n\nDocumentation: https://docs.opendata.aws/noaa-nwm-pds/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_pds/index.json", "https://registry.opendata.aws/noaa-nwm-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_retro_v2_0_pds/", "public", "File Names from the AWS S3 noaa-nwm-retro-v2.0-pds Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 2.0.", "This dataset has file information from the AWS S3 noaa-nwm-retro-v2.0-pds bucket at https://noaa-nwm-retro-v2.0-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 2.0.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\n... (4 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_retro_v2_0_pds/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_retro_v2_0_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_retro_v2_0_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_retro_v2_0_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ofs_pds/", "public", "File Names from the AWS S3 noaa-ofs-pds Bucket: NOAA Operational Forecast System (OFS): Project data files", "This dataset has file information from the AWS S3 noaa-ofs-pds bucket at https://noaa-ofs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Operational Forecast System (OFS)\nName2: Project data files\nDescription: The Operational Forecast System (OFS) has been developed to serve the maritime user community. OFS was developed in a joint project of the NOAA/National Ocean Service (NOS)/Office of Coast Survey, the NOAA/NOS/Center for Operational Oceanographic Products and Services (CO-OPS), and the NOAA/National Weather Service (NWS)/National Centers for Environmental Prediction (NCEP) Central Operations (NCO). OFS generates water level, water current, water temperature, water salinity (except for the Great Lakes) and wind conditions nowcast and forecast guidance four times per day.\n\nDocumentation: https://docs.opendata.aws/noaa-ofs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA OFS site](https://tidesandcurrents.noaa.gov/models.html). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight and generates 6-hour nowcasts and 48-hour forecast guidance\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ofs_pds/index.json", "https://registry.opendata.aws/noaa-ofs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ofs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ofs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ofs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/", "public", "File Names from the AWS S3 nrel-pds-wtk Bucket with prefix=wtk-techno-economic/pywtk-data/: NREL Wind Integration National Dataset on AWS: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format", "This dataset has file information from the AWS S3 nrel-pds-wtk bucket at https://nrel-pds-wtk.s3.us-west-2.amazonaws.com/ with prefix=wtk-techno-economic/pywtk-data/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NREL Wind Integration National Dataset on AWS\nName2: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format\nDescription: The [Wind Integration National Dataset (WIND)](https://www.nrel.gov/grid/wind-toolkit.html) is an update and expansion of the Eastern Wind Integration Data Set and Western Wind Integration Data Set. It supports the next generation of wind integration studies.\n\nDocumentation: https://www.nrel.gov/grid/wind-toolkit.html\nContact: wind-toolkit@nrel.gov\nManagedBy: [National Renewable Energy Laboratory](https://www.nrel.gov/)\nUpdateFrequency: As Needed\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/index.json", "https://registry.opendata.aws/nrel-pds-wtk/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nwm_archive/", "public", "File Names from the AWS S3 nwm-archive Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 1.2.", "This dataset has file information from the AWS S3 nwm-archive bucket at https://nwm-archive.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 1.2.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nwm_archive/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nwm_archive.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nwm_archive&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nwm_archive"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nyc_tlc/", "public", "File Names from the AWS S3 nyc-tlc Bucket: New York City Taxi and Limousine Commission (TLC) Trip Record Data: CSV files containing NYC TLC trip data.", "This dataset has file information from the AWS S3 nyc-tlc bucket at https://nyc-tlc.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: New York City Taxi and Limousine Commission (TLC) Trip Record Data\nName2: CSV files containing NYC TLC trip data.\nDescription: Data of trips taken by taxis and for-hire vehicles in New York City.\n\nDocumentation: http://www.nyc.gov/html/tlc/html/about/trip_record_data.shtml\nContact: research@tlc.nyc.gov\nUpdateFrequency: As soon as new data is available to be shared publicly.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nyc_tlc/index.json", "https://registry.opendata.aws/nyc-tlc-trip-records-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nyc_tlc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nyc_tlc&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nyc_tlc"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_oicr_icgc_meta_metadata/", "public", "File Names from the AWS S3 oicr.icgc.meta Bucket with prefix=metadata/: ICGC on AWS: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README", "This dataset has file information from the AWS S3 oicr.icgc.meta bucket at https://oicr.icgc.meta.s3.us-east-1.amazonaws.com/ with prefix=metadata/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ICGC on AWS\nName2: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README\nDescription: The International Cancer Genome Consortium (ICGC) coordinates projects with the common aim of accelerating research into the causes and control of cancer. The PanCancer Analysis of Whole Genomes (PCAWG) study is an international collaboration to identify common patterns of mutation in whole genomes from ICGC. More than 2,400 consistently analyzed genomes corresponding to over 1,100 unique ICGC donors are now freely available on Amazon S3 to credentialed researchers subject to ICGC data sharing policies.\n\nDocumentation: https://dcc.icgc.org/icgc-in-the-cloud/aws\nContact: dcc-support@icgc.org\nUpdateFrequency: New data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_oicr_icgc_meta_metadata/index.json", "https://registry.opendata.aws/icgc/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_oicr_icgc_meta_metadata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_oicr_icgc_meta_metadata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_oicr_icgc_meta_metadata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ooni_data/", "public", "File Names from the AWS S3 ooni-data Bucket: Open Observatory of Network Interference: S3 bucket with data", "This dataset has file information from the AWS S3 ooni-data bucket at https://ooni-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open Observatory of Network Interference\nName2: S3 bucket with data\nDescription: A free software, global observation network for detecting censorship, surveillance and traffic manipulation on the internet.\n\nDocumentation: https://ooni.torproject.org/about/\nContact: https://ooni.torproject.org/get-involved/\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ooni_data/index.json", "https://registry.opendata.aws/ooni/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ooni_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ooni_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ooni_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openaq_fetches/", "public", "File Names from the AWS S3 openaq-fetches Bucket: OpenAQ: Minutely CSVs of global air quality fetched from sources all over the world", "This dataset has file information from the AWS S3 openaq-fetches bucket at https://openaq-fetches.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenAQ\nName2: Minutely CSVs of global air quality fetched from sources all over the world\nDescription: Global, aggregated physical air quality data from public data sources provided by government, research-grade and other sources. These awesome groups do the hard work of measuring these data and publicly sharing them, and our community makes them more universally-accessible to both humans and machines.\n\nDocumentation: https://openaq.org\nContact: info@openaq.org\nManagedBy: [OpenAQ](https://openaq.org)\nUpdateFrequency: Minutely\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openaq_fetches/index.json", "https://registry.opendata.aws/openaq/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openaq_fetches.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openaq_fetches&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openaq_fetches"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_opencitymodel/", "public", "File Names from the AWS S3 opencitymodel Bucket: Open City Model (OCM): Project data files", "This dataset has file information from the AWS S3 opencitymodel bucket at https://opencitymodel.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open City Model (OCM)\nName2: Project data files\nDescription: Open City Model is an initiative to provide cityGML data for all the buildings in the United States. By using other open datasets in conjunction with our own code and algorithms it is our goal to provide 3D geometries for every US building.\n\nDocumentation: https://github.com/opencitymodel/opencitymodel\nContact: https://github.com/opencitymodel/opencitymodel#contact\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_opencitymodel/index.json", "https://registry.opendata.aws/opencitymodel/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_opencitymodel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_opencitymodel&showErrors=false&email=", "Amazon Web Services", "awsS3Files_opencitymodel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openneuro_org/", "public", "File Names from the AWS S3 openneuro.org Bucket: OpenNeuro: All datasets", "This dataset has file information from the AWS S3 openneuro.org bucket at https://openneuro.org.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenNeuro\nName2: All datasets\nDescription: OpenNeuro is a database of openly-available brain imaging data. The data are shared according to a Creative Commons CC0 license, providing a broad range of brain imaging data to researchers and citizen scientists alike. The database primarily focuses on functional magnetic resonance imaging (fMRI) data, but also includes other imaging modalities including structural and diffusion MRI, electroencephalography (EEG), and magnetoencephalograpy (MEG). OpenfMRI is a project of the [Center for Reproducible Neuroscience at Stanford University](http://reproducibility.stanford.edu). Development of the OpenNeuro resource has been funded by the National Science Foundation, National Institute of Mental Health, National Institute on Drug Abuse, and the Laura and John Arnold Foundation.\n\nDocumentation: http://openneuro.org\nContact: Support form at https://openneuro.org\nUpdateFrequency: New datasets deposited every 4-6 days\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openneuro_org/index.json", "https://registry.opendata.aws/openneuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openneuro_org.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openneuro_org&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openneuro_org"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osm_pds/", "public", "File Names from the AWS S3 osm-pds Bucket: OpenStreetMap on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 osm-pds bucket at https://osm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap on AWS\nName2: Imagery and metadata\nDescription: OSM is a free, editable map of the world, created and maintained by volunteers. Regular OSM data archives are made available in Amazon S3.\n\nDocumentation: https://docs.opendata.aws/osm-pds/readme.html\nContact: https://github.com/mojodna/osm-pds-pipelines/issues\nUpdateFrequency: Data is updated weekly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osm_pds/index.json", "https://registry.opendata.aws/osm/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osmlr/", "public", "File Names from the AWS S3 osmlr Bucket: OpenStreetMap Linear Referencing: Manifest and data files", "This dataset has file information from the AWS S3 osmlr bucket at https://osmlr.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap Linear Referencing\nName2: Manifest and data files\nDescription: OSMLR a linear referencing system built on top of OpenStreetMap. OSM has great information about roads around the world and their interconnections, but it lacks the means to give a stable identifier to a stretch of roadway. OSMLR provides a stable set of numerical IDs for every 1 kilometer stretch of roadway around the world. In urban areas, OSMLR IDs are attached to each block of roadways between significant intersections.\n\nDocumentation: https://github.com/opentraffic/osmlr/blob/master/docs/intro.md\nContact: https://github.com/opentraffic/osmlr/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osmlr/index.json", "https://registry.opendata.aws/osmlr/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osmlr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osmlr&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osmlr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_qiime2_data/", "public", "File Names from the AWS S3 qiime2-data Bucket: QIIME 2 User Tutorial Datasets: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs", "This dataset has file information from the AWS S3 qiime2-data bucket at https://qiime2-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: QIIME 2 User Tutorial Datasets\nName2: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs\nDescription: QIIME 2 is a powerful, extensible, and decentralized microbiome analysis package with a focus on data and analysis transparency. QIIME 2 enables researchers to start an analysis with raw DNA sequence data and finish with publication-quality figures and statistical results. This dataset contains the user docs (and related datasets) for QIIME 2.\n\nDocumentation: https://docs.qiime2.org\nContact: https://forum.qiime2.org\nManagedBy: The QIIME 2 Development Team\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_qiime2_data/index.json", "https://registry.opendata.aws/qiime2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_qiime2_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_qiime2_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_qiime2_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_safecast_opendata_public_us_east_1/", "public", "File Names from the AWS S3 safecast-opendata-public-us-east-1 Bucket: Safecast: Bulk exports of air and radiation measurements", "This dataset has file information from the AWS S3 safecast-opendata-public-us-east-1 bucket at https://safecast-opendata-public-us-east-1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Safecast\nName2: Bulk exports of air and radiation measurements\nDescription: An ongoing collection of radiation and air quality measurements taken by devices involved in the Safecast project.\n\nDocumentation: https://github.com/Safecast/safecastapi/wiki/Data-Sets\nContact: https://groups.google.com/forum/#!forum/safecast-devices\nManagedBy: [Safecast](https://safecast.org/)\nUpdateFrequency: Continuous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_safecast_opendata_public_us_east_1/index.json", "https://registry.opendata.aws/safecast/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_safecast_opendata_public_us_east_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_safecast_opendata_public_us_east_1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_safecast_opendata_public_us_east_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s1_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s1-l1c/: Sentinel-1: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s1-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C\nDescription: [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1) is a pair of European radar imaging (SAR) satellites launched in 2014 and 2016. Its 6 days revisit cycle and ability to observe through clouds makes it perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. GRD data is available globally since January 2017.\n\nDocumentation: https://roda.sentinel-hub.com/sentinel-s1-l1c/GRD/readme.html\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s1_l1c/index.json", "https://registry.opendata.aws/sentinel-1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s1_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s1_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s1_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l1c/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l1c/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l2a/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l2a/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l2a/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l2a/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l2a&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l2a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel1_slc_seasia_pds/", "public", "File Names from the AWS S3 sentinel1-slc-seasia-pds Bucket: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan", "This dataset has file information from the AWS S3 sentinel1-slc-seasia-pds bucket at https://sentinel1-slc-seasia-pds.s3.ap-southeast-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan\nName2: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan\nDescription: The S1 Single Look Complex (SLC) dataset contains Synthetic Aperture Radar (SAR) data in the C-Band wavelength. The SAR sensors are installed on a two-satellite (Sentinel-1A and Sentinel-1B) constellation orbiting the Earth with a combined revisit time of six days, operated by the European Space Agency. The S1 SLC data are a Level-1 product that collects radar amplitude and phase information in all-weather, day or night conditions, which is ideal for studying natural hazards and emergency response, land applications, oil spill monitoring, sea-ice conditions, and associated climate change effects.\n\nDocumentation: https://github.com/earthobservatory/sentinel1-opds/\nContact: https://github.com/earthobservatory/sentinel1-opds/\nManagedBy: [Earth Observatory of Singapore, Nanyang Technological University](https://earthobservatory.sg)\nUpdateFrequency: S1 SLC data for the region of interest will be updated regularly, as it becomes available on the Alaska Satellite Facility endpoint.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel1_slc_seasia_pds/index.json", "https://registry.opendata.aws/sentinel1-slc-seasia-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel1_slc_seasia_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel1_slc_seasia_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel1_slc_seasia_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_silo_open_data/", "public", "File Names from the AWS S3 silo-open-data Bucket: SILO climate data on AWS: SILO open data", "This dataset has file information from the AWS S3 silo-open-data bucket at https://silo-open-data.s3.ap-southeast-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SILO climate data on AWS\nName2: SILO open data\nDescription: [SILO](https://www.longpaddock.qld.gov.au/silo) is a database of Australian [climate data](https://www.longpaddock.qld.gov.au/silo/about/climate-variables) from 1889 to the present. It provides continuous, daily time-step [data products](https://www.longpaddock.qld.gov.au/silo/about/data-products) in ready-to-use [formats](https://www.longpaddock.qld.gov.au/silo/about/file-formats-and-samples) for research and operational applications. Gridded SILO data in annual NetCDF format are on AWS. Point data are available from the [SILO website](https://www.longpaddock.qld.gov.au/silo/).\n\nDocumentation: https://www.longpaddock.qld.gov.au/silo/gridded-data\nContact: https://www.longpaddock.qld.gov.au/silo/contact-us\nManagedBy: Queensland Government\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_silo_open_data/index.json", "https://registry.opendata.aws/silo/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_silo_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_silo_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_silo_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_softwareheritage/", "public", "File Names from the AWS S3 softwareheritage Bucket: Software Heritage Graph Dataset: Software Heritage Graph Dataset", "This dataset has file information from the AWS S3 softwareheritage bucket at https://softwareheritage.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Software Heritage Graph Dataset\nName2: Software Heritage Graph Dataset\nDescription: [Software Heritage](https://www.softwareheritage.org/) is the largest existing public archive of software source code and accompanying development history. The Software Heritage Graph Dataset is a fully deduplicated Merkle DAG representation of the Software Heritage archive.\n\nDocumentation: https://wiki.softwareheritage.org/wiki/Graph_Dataset_on_Amazon_Athena\nContact: swh-devel@inria.fr\nUpdateFrequency: Data is updated yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_softwareheritage/index.json", "https://registry.opendata.aws/software-heritage/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_softwareheritage.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_softwareheritage&showErrors=false&email=", "Amazon Web Services", "awsS3Files_softwareheritage"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_spacenet_dataset/", "public", "File Names from the AWS S3 spacenet-dataset Bucket: SpaceNet: Imagery and metadata in a S3 bucket", "This dataset has file information from the AWS S3 spacenet-dataset bucket at https://spacenet-dataset.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SpaceNet\nName2: Imagery and metadata in a S3 bucket\nDescription: SpaceNet, launched in August 2016 as an open innovation project offering a repository of freely available imagery with co-registered map features. Before SpaceNet, computer vision researchers had minimal options to obtain free, precision-labeled, and high-resolution satellite imagery. Today, SpaceNet hosts datasets developed by its own team, along with data sets from projects like IARPA\u2019s Functional Map of the World (fMoW).\n\nDocumentation: https://spacenetchallenge.github.io\nContact: https://github.com/SpaceNetChallenge/utilities/issues\nManagedBy: [SpaceNet](https://spacenet.ai/)\nUpdateFrequency: New imagery and features are added quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_spacenet_dataset/index.json", "https://registry.opendata.aws/spacenet/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_spacenet_dataset.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_spacenet_dataset&showErrors=false&email=", "Amazon Web Services", "awsS3Files_spacenet_dataset"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_unidata_nexrad_level2_chunks/", "public", "File Names from the AWS S3 unidata-nexrad-level2-chunks Bucket: NEXRAD on AWS: NEXRAD Level II real-time data", "This dataset has file information from the AWS S3 unidata-nexrad-level2-chunks bucket at https://unidata-nexrad-level2-chunks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II real-time data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_unidata_nexrad_level2_chunks/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_unidata_nexrad_level2_chunks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_unidata_nexrad_level2_chunks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_unidata_nexrad_level2_chunks"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_usgs_lidar_public/", "public", "File Names from the AWS S3 usgs-lidar-public Bucket: USGS 3DEP LiDAR Point Clouds: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.", "This dataset has file information from the AWS S3 usgs-lidar-public bucket at https://usgs-lidar-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: USGS 3DEP LiDAR Point Clouds\nName2: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.\nDescription: The goal of the [USGS 3D Elevation Program ](https://www.usgs.gov/core-science-systems/ngp/3dep) (3DEP) is to collect elevation data in the form of light detection and ranging (LiDAR) data over the conterminous United States, Hawaii, and the U.S. territories, with data acquired over an 8-year period. This dataset provides two realizations of the 3DEP point cloud data. The first resource is a public access organization provided in [Entwine Point Tiles](https://entwine.io/entwine-point-tile.html) format, which a lossless, full-density, streamable octree based on [LASzip](https://laszip.org) (LAZ) encoding. The second resource is a [Requester Pays](https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html) of the same data in LAZ (Compressed LAS) format. Resource names in both buckets correspond to the USGS project names.\n\nDocumentation: https://github.com/hobu/usgs-lidar/\nContact: https://github.com/hobu/usgs-lidar\nManagedBy: [Hobu, Inc.](https://hobu.co)\nUpdateFrequency: Periodically\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_usgs_lidar_public/index.json", "https://registry.opendata.aws/usgs-lidar/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_usgs_lidar_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_usgs_lidar_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_usgs_lidar_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_web_language_models/", "public", "File Names from the AWS S3 web-language-models Bucket: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl): Parallel Corpora to/from English for all official EU languages", "This dataset has file information from the AWS S3 web-language-models bucket at https://web-language-models.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl)\nName2: Parallel Corpora to/from English for all official EU languages\nDescription: ParaCrawl is a set of large parallel corpora to/from English for all official EU languages by a broad web crawling effort. State-of-the-art methods are applied for the entire processing chain from identifying web sites with translated text all the way to collecting, cleaning and delivering parallel corpora that are ready as training data for CEF.AT and translation memories for DG Translation.\n\nDocumentation: https://paracrawl.eu/releases.html\nContact: For questions regarding the datasets contact Kenneth Heafield, email kheafiel@inf.ed.ac.uk. For reporting any issues about bitextor pipeline visit https://github.com/bitextor/bitextor/issues.\nManagedBy: [ParaCrawl](https://paracrawl.eu)\nUpdateFrequency: New data is added according to ParaCrawl release schedule.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_web_language_models/index.json", "https://registry.opendata.aws/paracrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_web_language_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_web_language_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_web_language_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_xiph_media/", "public", "File Names from the AWS S3 xiph-media Bucket: Xiph.Org Test Media: Video and imagery data", "This dataset has file information from the AWS S3 xiph-media bucket at https://xiph-media.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Xiph.Org Test Media\nName2: Video and imagery data\nDescription: Uncompressed video used for video compression and video processing research.\n\nDocumentation: https://media.xiph.org/aws.html\nContact: Thomas Daede tdaede@xiph.org\nUpdateFrequency: New videos are added when contributors submit them.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_xiph_media/index.json", "https://registry.opendata.aws/xiph-media/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_xiph_media.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_xiph_media&showErrors=false&email=", "Amazon Web Services", "awsS3Files_xiph_media"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ycb_benchmarks/", "public", "File Names from the AWS S3 ycb-benchmarks Bucket: Yale-CMU-Berkeley (YCB) Object and Model Set: Project data files", "This dataset has file information from the AWS S3 ycb-benchmarks bucket at https://ycb-benchmarks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Yale-CMU-Berkeley (YCB) Object and Model Set\nName2: Project data files\nDescription: This project primarily aims to facilitate performance benchmarking in robotics research. The dataset provides mesh models, RGB, RGB-D and point cloud images of over 80 objects. The physical objects are also available via the [YCB benchmarking project](http://www.ycbbenchmarks.com/). The data are collected by two state of the art systems: UC Berkley's scanning rig and the Google scanner. The UC Berkley's scanning rig data provide meshes generated with Poisson reconstruction, meshes generated with volumetric range image integration, textured versions of both meshes, Kinbody files for using the meshes with OpenRAVE, 600 High-resolution RGB images, 600 RGB-D images, and 600 point cloud images for each object. The Google scanner data provides 3 meshes with different resolutions (16k, 64k, and 512k polygons), textured versions of each mesh, Kinbody files for using the meshes with OpenRAVE.\n\nDocumentation: http://www.ycbbenchmarks.com/\nContact: bcalli@wpi.edu\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ycb_benchmarks/index.json", "https://registry.opendata.aws/ycb-benchmarks/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ycb_benchmarks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ycb_benchmarks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ycb_benchmarks"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the June 2020 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.graph", "", "", "public", "GLOBEC NEP Vertical Plankton Tow (VPT) Data, 1997-2001", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nCalifornia Current Program\nVertical Plankton Tow (VPT) Data\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10181&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/vpt%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/vpt.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ncast_no (Cast Number Within the Cruise)\nstation_id\nabund_m3 (Abundance, count m-3)\ncomments\ncounter_id\nd_n_flag (Day/Night Flag)\ngear_area (Mouth Area of Net, m2)\ngear_mesh (Net's Mesh Size, mm)\ngear_type\ngenus_species\nlife_stage\nlocal_code\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecVpt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecVpt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecVpt/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecVpt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecVpt&showErrors=false&email=", "GLOBEC", "erdGlobecVpt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://usgodae.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, the EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\nBeach Monitoring Quality Assurance Project Plan (CWBMONQAPP002):\nhttps://www.pacioos.hawaii.edu/wp-content/uploads/2016/08/Beach_Monitoring_QAPP_CWBMONQAPP002_120507.pdf\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwb_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwb_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwb_water_quality/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/cwb_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwb_water_quality&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "cwb_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.graph", "", "", "public", "HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii", "The Hawaii Institute of Marine Biology (HIMB) automatic weather station (AWS) records hourly measurements of precipitation, air temperature, wind speed and direction, and irradiance. Sensors include an Eppley 295-385 nm ultraviolet (UV) radiometer, a LiCor 200SZ Pyranometer, and a LiCor Quantameter (400-700 nm). The sensors are located on the roof of HIMB's Coral Reef Ecology Laboratory (Point Lab) on Moku o Loe (Coconut Island) in Kaneohe Bay on the windward (eastern) coast of Oahu in Hawaii. An accompanying sea water temperature sensor is located less than 10 m offshore of the weather station at a shallow depth of approximately 1 m.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HIMB: HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nsea_water_temperature (water temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nwind_from_direction_std (standard deviation of wind direction (processed), degrees)\nrainfall_amount (total rainfall (processed), mm)\nshortwave_radiation (downwelling shortwave radiation (processed), W/m2)\nultraviolet_radiation (ultraviolet radiation (processed), W/m2)\nphotosynthetic_radiation (photosynthetically active radiation (processed), umol m-2 s-1)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_atn (QARTOD Attenuated Signal Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (139 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HIMB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HIMB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HIMB/index.json", "https://www.pacioos.hawaii.edu/weather/obs-mokuoloe/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HIMB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HIMB&showErrors=false&email=", "Hawaii Institute of Marine Biology (HIMB)", "AWS-HIMB"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.graph", "", "", "public", "Hui O Ka Wai Ola Water Quality Data", "The goal of the Hui O Ka Wai Ola (Association Of The Living Waters) citizen-science based water quality program is to increase the capacity for monitoring water quality in Maui coastal waters by generating reliable data to assess long-term water-quality conditions and detect temporal trends. These data augment the data produced by the Hawaii Department of Health (DOH) Clean Water Branch (CWB) beach monitoring program on Maui.\n \nData are collected and analyzed every two or three weeks for physical and chemical parameters, including ocean salinity, pH, temperature, organic nutrients (nitrogen and phosphorous compounds), dissolved oxygen (DO), and total suspended sediment (TSS). Some water samples are immediately tested at mobile labs while others are processed for testing at University of Hawaii and/or other labs.\n \nUsers of these data should cite the following publication:\n \nFalinski, Kim, Dana Reed, Tova Callender, Emily Fielding, Robin Newbold, and Alana Yurkanin. (2018). Hui O Ka Wai Ola Water Quality Data [Data set]. Zenodo. \"http://doi.org/10.5281/zenodo.1173717\"\n \nFor further information, please visit:\nhttps://www.huiokawaiola.com\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nlocation_id (sampling site identifier)\nlocation_name\nsample_id (sample identifier)\nsession_id (sampling session identifier)\nwater_temperature (Celsius)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hui_water_quality/index.json", "https://www.huiokawaiola.com", "http://upwell.pfeg.noaa.gov/erddap/rss/hui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hui_water_quality&showErrors=false&email=", "Hui O Ka Wai Ola", "hui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitored water quality at several beaches across the island of Maui in the State of Hawaii during the years 2010-2016. This community-based monitoring effort provided valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites were also monitored for harmful bacteria levels of Enterococcus through 2014-06-26. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours.\n\nData were managed through an online repository, the Coral Reef Monitoring Data Portal (now defunct), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection was coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/maui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/maui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/maui_water_quality/index.json", "https://coral.org/maui/", "http://upwell.pfeg.noaa.gov/erddap/rss/maui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=maui_water_quality&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "maui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys. See\nhttps://www.ndbc.noaa.gov/measdes.shtml for a description of the measurements.\n\nThe source data from NOAA NDBC has different column names, different units,\nand different missing values in different files, and other problems\n(notably, lots of rows with duplicate or different values for the same time\npoint). This dataset is a standardized, reformatted, and lightly edited\nversion of that source data, created by NOAA NMFS SWFSC ERD (email:\nerd.data at noaa.gov). Before 2020-01-29, this dataset only had the data\nthat was closest to a given hour, rounded to the nearest hour. Now, this\ndataset has all of the data available from NDBC with the original time\nvalues. If there are multiple source rows for a given buoy for a given\ntime, only the row with the most non-NaN data values is kept. If there is\na gap in the data, a row of missing values is inserted (which causes a nice\ngap when the data is graphed). Also, some impossible data values are\nremoved, but this data is not perfectly clean. This dataset is now updated\nevery 5 minutes.\n\nThis dataset has both historical data (quality controlled, before\n2020-06-01T00:00:00Z) and near real time data (less quality controlled,\nwhich may change at any time, from 2020-06-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Identifier)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.graph", "", "", "public", "NEFSC Continuous Plankton Recorder", "A summary for the data\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ncruise\nsample\nlatitude (degrees_north)\nlongitude (degrees_east)\nphyto_color_indx (Phytoplankton Color Index)\nmarmap_tax_code (Marmap Taxonomic Code)\nmarmap_stage_code\nabundance (per 100 cubic meters)\nlife_stage\ntaxonomic_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/wocecpr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/wocecpr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/wocecpr/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "http://upwell.pfeg.noaa.gov/erddap/rss/wocecpr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=wocecpr&showErrors=false&email=", "NEFSC", "wocecpr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "", "public", "North Pacific High, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.graph", "", "", "public", "OSMC Argo Profile data", "OSMC Argo Profile data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\norganization_name\ncountry_name\nplatform_type_name\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nparameter_name\ndaily_obs_count\nobservation_depth\nobservation_value\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_PROFILERS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_PROFILERS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_PROFILERS/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_PROFILERS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_PROFILERS&showErrors=false&email=", "OSMC", "OSMC_PROFILERS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.graph", "", "", "public", "OSMC normalized observations from GTS", "OSMC normalized In-situ Real time GTS data\n\ncdm_data_type = Point\nVARIABLES:\nPLATFORM_CODE (Station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform\nparameter\nOBSERVATION_VALUE\nOBSERVATION_DEPTH\nCOUNTRY_NAME\norganization_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_Points_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_Points_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_Points/index.json", "https://www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_Points.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_Points&showErrors=false&email=", "OSMC", "OSMC_Points"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001.graph", "", "", "public", "PacIOOS Beach Camera 001: Waikiki, Oahu, Hawaii", "A digital camera on top of the Sheraton Waikiki hotel was used to photograph the shoreline of Waikiki beach along the South Shore of the island of Oahu in the State of Hawaii. The oblique camera view presented here captures the shoreline leading southeast towards Diamond Head crater. It operated for over 4.5 years between February 5, 2009 and October 13, 2013. Capturing hourly snapshots at a set vantage point during the local daytime hours of 6:00 AM or 7:00 AM to 5:00 PM, these images are useful for tracking beach dynamics such as wave run-up, sand movement, and turbidity plumes over time. The camera was mounted on top of a 3 meter wall extending above the roof surface for a total height of 93 meters above ground level or 96 meters above mean sea level. See also BEACHCAM-002 for an alternate camera view from the same location pointing directly downwards.\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (m)\naboveGround (Height, m)\nurl\nname (File Name)\nsize (bytes)\nfileType (File Type)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/BEACHCAM-001_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/BEACHCAM-001_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/BEACHCAM-001/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/BEACHCAM-001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=BEACHCAM-001&showErrors=false&email=", "University of Hawaii", "BEACHCAM-001"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_4"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_2/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_2&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_6/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_6&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_7/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_7&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_7"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_8/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_8&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_9/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_9&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.graph", "", "", "public", "PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-04 is located in Hilo Bay on the east side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-04: PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-04/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-hilo/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-04&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-04"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.graph", "", "", "public", "PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-05 is located in Pelekane Bay near Kawaihae Harbor on the west side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-05: PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-05/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-pelekane/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-05&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-05"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.graph", "", "", "public", "PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii", "The Pacific Islands Ocean Observing System (PacIOOS) operates a Davis Instruments automatic weather station (AWS) near the entrance to Honolulu Harbor on the leeward (western) coast of Oahu in Hawaii to aid with navigation. The station records measurements every 5 minutes of air temperature, wind speed and direction, precipitation, relative humidity, and air pressure. Sensors are located at Pier 1, installed on a tower at an elevation of 64 feet (19.5 meters) above sea level. The station is owned by the Hawaii Pilots Association (HPA). PacIOOS maintains the station and provides data access.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HNLPier1: PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nrainfall_rate (rain rate (processed), mm/h)\nrelative_humidity (relative humidity (processed), %)\nair_pressure (air pressure (processed), millibars)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_gap (QARTOD Gap Test (processed), 0)\nair_temperature_qc_syn (QARTOD Syntax Test (processed), 0)\nair_temperature_qc_loc (QARTOD Location Test (processed), 0)\nair_temperature_qc_rng (QARTOD Gross Range Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_spk (QARTOD Spike Test (processed), 0)\n... (92 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HNLPier1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HNLPier1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HNLPier1/index.json", "https://www.pacioos.hawaii.edu/weather/obs-honolulu/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HNLPier1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HNLPier1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "AWS-HNLPier1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "https://tidesandcurrents.noaa.gov/gomoos.html", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/main.aspx?Division=PRD&ParentMenuId=147&id=1221", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2017, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2017, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2017, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"] + ] + } + } + recorded_at: 2020-07-15 22:22:28 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.csv?&time%3E%3D2007-06-24&time%3C%3D2007-07-01 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:28 GMT + x-frame-options: SAMEORIGIN + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:22:28 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=erdCinpKfmBT_97f6_55be_e3ba.csv + content-encoding: gzip + content-type: text/csv;charset=ISO-8859-1 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: yes + string: ../fixtures/268b2474e9e613336b900d3289304bb0.csv + recorded_at: 2020-07-15 22:22:28 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 diff --git a/tests/vcr_cassettes/tabledap_fails_well.yml b/tests/vcr_cassettes/tabledap_fails_well.yml new file mode 100644 index 0000000..63604fd --- /dev/null +++ b/tests/vcr_cassettes/tabledap_fails_well.yml @@ -0,0 +1,230 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/info/hawaii_b55f_a8f2_ad70/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '404' + message: Not Found + explanation: Nothing matches the given URI + headers: + status: 'HTTP/1.1 404 ' + date: Wed, 15 Jul 2020 22:22:49 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:22:49 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-description: dods-error + content-encoding: identity + content-type: text/plain;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: ASCII-8BIT + file: no + string: RXJyb3IgewogICAgY29kZT00MDQ7CiAgICBtZXNzYWdlPSJOb3QgRm91bmQ6IEN1cnJlbnRseSB1bmtub3duIGRhdGFzZXRJRD1oYXdhaWlfYjU1Zl9hOGYyX2FkNzAiOwp9Cg== + recorded_at: 2020-07-15 22:22:40 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:49 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=erdCinpKfmBT_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: ASCII-8BIT + file: no + string: ewogICJ0YWJsZSI6IHsKICAgICJjb2x1bW5OYW1lcyI6IFsiUm93IFR5cGUiLCAiVmFyaWFibGUgTmFtZSIsICJBdHRyaWJ1dGUgTmFtZSIsICJEYXRhIFR5cGUiLCAiVmFsdWUiXSwKICAgICJjb2x1bW5UeXBlcyI6IFsiU3RyaW5nIiwgIlN0cmluZyIsICJTdHJpbmciLCAiU3RyaW5nIiwgIlN0cmluZyJdLAogICAgInJvd3MiOiBbCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJhY2tub3dsZWRnZW1lbnQiLCAiU3RyaW5nIiwgIk5PQUEgTkVTRElTIENPQVNUV0FUQ0gsIE5PQUEgU1dGU0MgRVJELCBDaGFubmVsIElzbGFuZHMgTmF0aW9uYWwgUGFyaywgTmF0aW9uYWwgUGFyayBTZXJ2aWNlIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJjZG1fZGF0YV90eXBlIiwgIlN0cmluZyIsICJUaW1lU2VyaWVzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJjZG1fdGltZXNlcmllc192YXJpYWJsZXMiLCAiU3RyaW5nIiwgInN0YXRpb24sIGxvbmdpdHVkZSwgbGF0aXR1ZGUiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgImNvbnRyaWJ1dG9yX2VtYWlsIiwgIlN0cmluZyIsICJEYXZpZF9LdXNobmVyQG5wcy5nb3YiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgImNvbnRyaWJ1dG9yX25hbWUiLCAiU3RyaW5nIiwgIkNoYW5uZWwgSXNsYW5kcyBOYXRpb25hbCBQYXJrLCBOYXRpb25hbCBQYXJrIFNlcnZpY2UiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgImNvbnRyaWJ1dG9yX3JvbGUiLCAiU3RyaW5nIiwgIlNvdXJjZSBvZiBkYXRhLiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAiQ29udmVudGlvbnMiLCAiU3RyaW5nIiwgIkNPQVJEUywgQ0YtMS42LCBBQ0RELTEuMywgTkNDU1YtMS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJjcmVhdG9yX2VtYWlsIiwgIlN0cmluZyIsICJlcmQuZGF0YUBub2FhLmdvdiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAiY3JlYXRvcl9uYW1lIiwgIlN0cmluZyIsICJOT0FBIE5NRlMgU1dGU0MgRVJEIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJjcmVhdG9yX3R5cGUiLCAiU3RyaW5nIiwgImluc3RpdHV0aW9uIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJjcmVhdG9yX3VybCIsICJTdHJpbmciLCAiaHR0cHM6Ly93d3cucGZlZy5ub2FhLmdvdiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAiZGF0ZV9jcmVhdGVkIiwgIlN0cmluZyIsICIyMDA4LTA2LTExVDIxOjM2OjA2WiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAiZGF0ZV9pc3N1ZWQiLCAiU3RyaW5nIiwgIjIwMDgtMDYtMTFUMjE6MzY6MDZaIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJFYXN0ZXJubW9zdF9FYXN0aW5nIiwgImRvdWJsZSIsICItMTE4LjQiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgImZlYXR1cmVUeXBlIiwgIlN0cmluZyIsICJUaW1lU2VyaWVzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJnZW9zcGF0aWFsX2xhdF9tYXgiLCAiZG91YmxlIiwgIjM0LjA1Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJnZW9zcGF0aWFsX2xhdF9taW4iLCAiZG91YmxlIiwgIjMyLjgiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgImdlb3NwYXRpYWxfbGF0X3VuaXRzIiwgIlN0cmluZyIsICJkZWdyZWVzX25vcnRoIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJnZW9zcGF0aWFsX2xvbl9tYXgiLCAiZG91YmxlIiwgIi0xMTguNCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAiZ2Vvc3BhdGlhbF9sb25fbWluIiwgImRvdWJsZSIsICItMTIwLjQiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgImdlb3NwYXRpYWxfbG9uX3VuaXRzIiwgIlN0cmluZyIsICJkZWdyZWVzX2Vhc3QiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgImdlb3NwYXRpYWxfdmVydGljYWxfbWF4IiwgImRvdWJsZSIsICIxNy4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJnZW9zcGF0aWFsX3ZlcnRpY2FsX21pbiIsICJkb3VibGUiLCAiNS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJnZW9zcGF0aWFsX3ZlcnRpY2FsX3Bvc2l0aXZlIiwgIlN0cmluZyIsICJkb3duIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJnZW9zcGF0aWFsX3ZlcnRpY2FsX3VuaXRzIiwgIlN0cmluZyIsICJtIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJoaXN0b3J5IiwgIlN0cmluZyIsICJDaGFubmVsIElzbGFuZHMgTmF0aW9uYWwgUGFyaywgTmF0aW9uYWwgUGFyayBTZXJ2aWNlXG4yMDA4LTA2LTExVDIxOjM2OjA2WiBOT0FBIENvYXN0V2F0Y2ggKFdlc3QgQ29hc3QgTm9kZSkgYW5kIE5PQUEgU0ZTQyBFUkQiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgImluZm9VcmwiLCAiU3RyaW5nIiwgImh0dHA6Ly93d3cubnBzLmdvdi9jaGlzL25hdHVyZXNjaWVuY2UvaW5kZXguaHRtIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJpbnN0aXR1dGlvbiIsICJTdHJpbmciLCAiQ0lOUCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAia2V5d29yZHMiLCAiU3RyaW5nIiwgImFuYW1lc3VzLCBhcGx5c2lhLCBhcXVhdGljLCBhdG1vc3BoZXJlLCBhdXJhbnRpYSwgYmFuZCwgYmlvbG9neSwgYmlvc3BoZXJlLCBjYWxpZm9ybmljYSwgY2hhbm5lbCwgY2hpbGVuc2lzLCBjaW5wLCBjb2FzdGFsLCBjb3JydWdhdGEsIGNyYXNzZWRvbWEsIGNyZW51bGF0YSwgZGVuc2l0eSwgZGVwdGgsIEVhcnRoIFNjaWVuY2UgPiBCaW9zcGhlcmUgPiBBcXVhdGljIEVjb3N5c3RlbXMgPiBDb2FzdGFsIEhhYml0YXQsIEVhcnRoIFNjaWVuY2UgPiBCaW9zcGhlcmUgPiBBcXVhdGljIEVjb3N5c3RlbXMgPiBNYXJpbmUgSGFiaXRhdCwgZWNvc3lzdGVtcywgZm9yZXN0LCBmcnV0aWNvc2EsIGZ1bGdlbnMsIGdpZ2FudGV1bSwgaGFiaXRhdCwgaGFsaW90aXMsIGhlaWdodCwgaGVsaWFudGhvaWRlcywgaWRlbnRpZmllciwgaW50ZXJydXB0dXMsIGlzbGFuZHMsIGtlbGxldGlhLCBrZWxsZXRpaSwga2VscCwgbG9mb3RlbnNpcywgbG9waG9nb3JnaWEsIGx5dGVjaGludXMsIG1hcmluZSwgbWVhbiwgbWVnYXRodXJhLCBtb25pdG9yaW5nLCBtdXJpY2VhLCBwYW51bGlydXMsIHB5Y25vcG9kaWEsIHJ1ZmVzY2Vucywgc3RhdGlvbiwgc3RhdGlzdGljcywgc3RkZGV2LCBzdGRlcnIsIHN0eWxhc3Rlciwgc3VydmV5LCB0ZXRoeWEsIHRpbWUsIHRyYW5zZWN0LCB1cnRpY2luYSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAia2V5d29yZHNfdm9jYWJ1bGFyeSIsICJTdHJpbmciLCAiR0NNRCBTY2llbmNlIEtleXdvcmRzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJsaWNlbnNlIiwgIlN0cmluZyIsICJUaGUgZGF0YSBtYXkgYmUgdXNlZCBhbmQgcmVkaXN0cmlidXRlZCBmb3IgZnJlZSBidXQgaXMgbm90IGludGVuZGVkIGZvciBsZWdhbCB1c2UsIHNpbmNlIGl0IG1heSBjb250YWluIGluYWNjdXJhY2llcy4gTmVpdGhlciB0aGUgZGF0YSBDb250cmlidXRvciwgQ29hc3RXYXRjaCwgTk9BQSwgbm9yIHRoZSBVbml0ZWQgU3RhdGVzIEdvdmVybm1lbnQsIG5vciBhbnkgb2YgdGhlaXIgZW1wbG95ZWVzIG9yIGNvbnRyYWN0b3JzLCBtYWtlcyBhbnkgd2FycmFudHksIGV4cHJlc3Mgb3IgaW1wbGllZCwgaW5jbHVkaW5nIHdhcnJhbnRpZXMgb2YgbWVyY2hhbnRhYmlsaXR5IGFuZCBmaXRuZXNzIGZvciBhIHBhcnRpY3VsYXIgcHVycG9zZSwgb3IgYXNzdW1lcyBhbnkgbGVnYWwgbGlhYmlsaXR5IGZvciB0aGUgYWNjdXJhY3ksIGNvbXBsZXRlbmVzcywgb3IgdXNlZnVsbmVzcywgb2YgdGhpcyBpbmZvcm1hdGlvbi4gIE5hdGlvbmFsIFBhcmsgU2VydmljZSBEaXNjbGFpbWVyOiBUaGUgTmF0aW9uYWwgUGFyayBTZXJ2aWNlIHNoYWxsIG5vdCBiZSBoZWxkIGxpYWJsZSBmb3IgaW1wcm9wZXIgb3IgaW5jb3JyZWN0IHVzZSBvZiB0aGUgZGF0YSBkZXNjcmliZWQgYW5kL29yIGNvbnRhaW5lZCBoZXJlaW4uIFRoZXNlIGRhdGEgYW5kIHJlbGF0ZWQgZ3JhcGhpY3MgYXJlIG5vdCBsZWdhbCBkb2N1bWVudHMgYW5kIGFyZSBub3QgaW50ZW5kZWQgdG8gYmUgdXNlZCBhcyBzdWNoLiBUaGUgaW5mb3JtYXRpb24gY29udGFpbmVkIGluIHRoZXNlIGRhdGEgaXMgZHluYW1pYyBhbmQgbWF5IGNoYW5nZSBvdmVyIHRpbWUuIFRoZSBkYXRhIGFyZSBub3QgYmV0dGVyIHRoYW4gdGhlIG9yaWdpbmFsIHNvdXJjZXMgZnJvbSB3aGljaCB0aGV5IHdlcmUgZGVyaXZlZC4gSXQgaXMgdGhlIHJlc3BvbnNpYmlsaXR5IG9mIHRoZSBkYXRhIHVzZXIgdG8gdXNlIHRoZSBkYXRhIGFwcHJvcHJpYXRlbHkgYW5kIGNvbnNpc3RlbnQgd2l0aGluIHRoZSBsaW1pdGF0aW9uIG9mIGdlb3NwYXRpYWwgZGF0YSBpbiBnZW5lcmFsIGFuZCB0aGVzZSBkYXRhIGluIHBhcnRpY3VsYXIuIFRoZSByZWxhdGVkIGdyYXBoaWNzIGFyZSBpbnRlbmRlZCB0byBhaWQgdGhlIGRhdGEgdXNlciBpbiBhY3F1aXJpbmcgcmVsZXZhbnQgZGF0YTsgaXQgaXMgbm90IGFwcHJvcHJpYXRlIHRvIHVzZSB0aGUgcmVsYXRlZCBncmFwaGljcyBhcyBkYXRhLiBUaGUgTmF0aW9uYWwgUGFyayBTZXJ2aWNlIGdpdmVzIG5vIHdhcnJhbnR5LCBleHByZXNzZWQgb3IgaW1wbGllZCwgYXMgdG8gdGhlIGFjY3VyYWN5LCByZWxpYWJpbGl0eSwgb3IgY29tcGxldGVuZXNzIG9mIHRoZXNlIGRhdGEuIEl0IGlzIHN0cm9uZ2x5IHJlY29tbWVuZGVkIHRoYXQgdGhlc2UgZGF0YSBhcmUgZGlyZWN0bHkgYWNxdWlyZWQgZnJvbSBhbiBOUFMgc2VydmVyIGFuZCBub3QgaW5kaXJlY3RseSB0aHJvdWdoIG90aGVyIHNvdXJjZXMgd2hpY2ggbWF5IGhhdmUgY2hhbmdlZCB0aGUgZGF0YSBpbiBzb21lIHdheS4gQWx0aG91Z2ggdGhlc2UgZGF0YSBoYXZlIGJlZW4gcHJvY2Vzc2VkIHN1Y2Nlc3NmdWxseSBvbiBjb21wdXRlciBzeXN0ZW1zIGF0IHRoZSBOYXRpb25hbCBQYXJrIFNlcnZpY2UsIG5vIHdhcnJhbnR5IGV4cHJlc3NlZCBvciBpbXBsaWVkIGlzIG1hZGUgcmVnYXJkaW5nIHRoZSB1dGlsaXR5IG9mIHRoZSBkYXRhIG9uIG90aGVyIHN5c3RlbXMgZm9yIGdlbmVyYWwgb3Igc2NpZW50aWZpYyBwdXJwb3Nlcywgbm9yIHNoYWxsIHRoZSBhY3Qgb2YgZGlzdHJpYnV0aW9uIGNvbnN0aXR1dGUgYW55IHN1Y2ggd2FycmFudHkuIFRoaXMgZGlzY2xhaW1lciBhcHBsaWVzIGJvdGggdG8gaW5kaXZpZHVhbCB1c2Ugb2YgdGhlIGRhdGEgYW5kIGFnZ3JlZ2F0ZSB1c2Ugd2l0aCBvdGhlciBkYXRhLiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAibmFtaW5nX2F1dGhvcml0eSIsICJTdHJpbmciLCAiZ292Lm5vYWEucGZlZy5jb2FzdHdhdGNoIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJOb3J0aGVybm1vc3RfTm9ydGhpbmciLCAiZG91YmxlIiwgIjM0LjA1Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJwcm9qZWN0IiwgIlN0cmluZyIsICJOT0FBIE5NRlMgU1dGU0MgRVJEIChodHRwczovL3d3dy5wZmVnLm5vYWEuZ292LykiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgInJlZmVyZW5jZXMiLCAiU3RyaW5nIiwgIkNoYW5uZWwgSXNsYW5kcyBOYXRpb25hbCBQYXJrcyBJbnZlbnRvcnkgYW5kIE1vbml0b3JpbmcgaW5mb3JtYXRpb246IGh0dHA6Ly9uYXR1cmUubnBzLmdvdi9pbS91bml0cy9tZWRuIC4gS2VscCBGb3Jlc3QgTW9uaXRvcmluZyBQcm90b2NvbHM6IGh0dHA6Ly93d3cubmF0dXJlLm5wcy5nb3YvaW0vdW5pdHMvY2hpcy9SZXBvcnRzX1BERi9NYXJpbmUvS0ZNLUhhbmRib29rVm9sMS5wZGYgLiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAic291cmNlVXJsIiwgIlN0cmluZyIsICIobG9jYWwgZmlsZXMpIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJTb3V0aGVybm1vc3RfTm9ydGhpbmciLCAiZG91YmxlIiwgIjMyLjgiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgInN0YW5kYXJkX25hbWVfdm9jYWJ1bGFyeSIsICJTdHJpbmciLCAiQ0YgU3RhbmRhcmQgTmFtZSBUYWJsZSB2NzAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgInN1YnNldFZhcmlhYmxlcyIsICJTdHJpbmciLCAic3RhdGlvbiwgbG9uZ2l0dWRlLCBsYXRpdHVkZSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAic3VtbWFyeSIsICJTdHJpbmciLCAiVGhpcyBkYXRhc2V0IGZyb20gdGhlIENoYW5uZWwgSXNsYW5kcyBOYXRpb25hbCBQYXJrJ3MgS2VscCBGb3Jlc3QgTW9uaXRvcmluZyBQcm9ncmFtIGhhcyBtZWFzdXJlbWVudHMgb2YgdGhlIGFidW5kYW5jZSBhbmQgZGlzdHJpYnV0aW9uIG9mIHJhcmUgYW5kIGNsdW1wZWQgb3JnYW5pc21zIG5vdCBhZGVxdWF0ZWx5IHNhbXBsZWQgYnkgcXVhZHJhdHMuIFRoZSBzdW1tYXJ5IGRhdGEgcHJlc2VudGVkIGhlcmUgcmVwcmVzZW50cyB0aGUgbWVhbiBkZW5zaXR5IHBlciBzcXVhcmUgbWV0ZXIuIFNhbXBsaW5nIGlzIGNvbmR1Y3RlZCBhbm51YWxseSBiZXR3ZWVuIHRoZSBtb250aHMgb2YgTWF5LU9jdG9iZXIsIHNvIHRoZSBUaW1lIGRhdGEgaW4gdGhpcyBmaWxlIGlzIEp1bHkgMSBvZiBlYWNoIHllYXIgKGEgbm9taW5hbCB2YWx1ZSkuIFRoZSBhY3R1YWwgbWVhc3VyZW1lbnRzIHdlcmUgdGFrZW4gYXQgdmFyaW91cyBkZXB0aHMsIHNvIHRoZSBEZXB0aCBkYXRhIGluIHRoaXMgZmlsZSBpcyB0aGUgZGVwdGggb2YgdGhlIHN0YXRpb24ncyB0ZW1wZXJhdHVyZSBsb2dnZXIsIHdoaWNoIGlzIGEgdHlwaWNhbCBkZXB0aC4iXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgInRpbWVfY292ZXJhZ2VfZW5kIiwgIlN0cmluZyIsICIyMDA3LTA3LTAxVDAwOjAwOjAwWiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAidGltZV9jb3ZlcmFnZV9zdGFydCIsICJTdHJpbmciLCAiMTk4My0wNy0wMVQwMDowMDowMFoiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgInRpdGxlIiwgIlN0cmluZyIsICJDaGFubmVsIElzbGFuZHMsIEtlbHAgRm9yZXN0IE1vbml0b3JpbmcsIFN1cnZleSwgQmFuZCBUcmFuc2VjdCwgMTk4My0yMDA3Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJXZXN0ZXJubW9zdF9FYXN0aW5nIiwgImRvdWJsZSIsICItMTIwLjQiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJzdGF0aW9uIiwgIiIsICJTdHJpbmciLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgInN0YXRpb24iLCAiY2Zfcm9sZSIsICJTdHJpbmciLCAidGltZXNlcmllc19pZCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJzdGF0aW9uIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIklkZW50aWZpZXIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAic3RhdGlvbiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlN0YXRpb24iXSwKICAgICAgWyJ2YXJpYWJsZSIsICJsb25naXR1ZGUiLCAiIiwgImRvdWJsZSIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAibG9uZ2l0dWRlIiwgIl9Db29yZGluYXRlQXhpc1R5cGUiLCAiU3RyaW5nIiwgIkxvbiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJsb25naXR1ZGUiLCAiYWN0dWFsX3JhbmdlIiwgImRvdWJsZSIsICItMTIwLjQsIC0xMTguNCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJsb25naXR1ZGUiLCAiYXhpcyIsICJTdHJpbmciLCAiWCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJsb25naXR1ZGUiLCAiY29sb3JCYXJNYXhpbXVtIiwgImRvdWJsZSIsICItMTE4LjQiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAibG9uZ2l0dWRlIiwgImNvbG9yQmFyTWluaW11bSIsICJkb3VibGUiLCAiLTEyMC40Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgImxvbmdpdHVkZSIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJMb2NhdGlvbiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJsb25naXR1ZGUiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJMb25naXR1ZGUiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAibG9uZ2l0dWRlIiwgInN0YW5kYXJkX25hbWUiLCAiU3RyaW5nIiwgImxvbmdpdHVkZSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJsb25naXR1ZGUiLCAidW5pdHMiLCAiU3RyaW5nIiwgImRlZ3JlZXNfZWFzdCJdLAogICAgICBbInZhcmlhYmxlIiwgImxhdGl0dWRlIiwgIiIsICJkb3VibGUiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgImxhdGl0dWRlIiwgIl9Db29yZGluYXRlQXhpc1R5cGUiLCAiU3RyaW5nIiwgIkxhdCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJsYXRpdHVkZSIsICJhY3R1YWxfcmFuZ2UiLCAiZG91YmxlIiwgIjMyLjgsIDM0LjA1Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgImxhdGl0dWRlIiwgImF4aXMiLCAiU3RyaW5nIiwgIlkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAibGF0aXR1ZGUiLCAiY29sb3JCYXJNYXhpbXVtIiwgImRvdWJsZSIsICIzNC41Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgImxhdGl0dWRlIiwgImNvbG9yQmFyTWluaW11bSIsICJkb3VibGUiLCAiMzIuNSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJsYXRpdHVkZSIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJMb2NhdGlvbiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJsYXRpdHVkZSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIkxhdGl0dWRlIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgImxhdGl0dWRlIiwgInN0YW5kYXJkX25hbWUiLCAiU3RyaW5nIiwgImxhdGl0dWRlIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgImxhdGl0dWRlIiwgInVuaXRzIiwgIlN0cmluZyIsICJkZWdyZWVzX25vcnRoIl0sCiAgICAgIFsidmFyaWFibGUiLCAiZGVwdGgiLCAiIiwgImRvdWJsZSIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiZGVwdGgiLCAiX0Nvb3JkaW5hdGVBeGlzVHlwZSIsICJTdHJpbmciLCAiSGVpZ2h0Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgImRlcHRoIiwgIl9Db29yZGluYXRlWmlzUG9zaXRpdmUiLCAiU3RyaW5nIiwgImRvd24iXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiZGVwdGgiLCAiYWN0dWFsX3JhbmdlIiwgImRvdWJsZSIsICI1LjAsIDE3LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiZGVwdGgiLCAiYXhpcyIsICJTdHJpbmciLCAiWiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJkZXB0aCIsICJjb2xvckJhck1heGltdW0iLCAiZG91YmxlIiwgIjIwLjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiZGVwdGgiLCAiY29sb3JCYXJNaW5pbXVtIiwgImRvdWJsZSIsICIwLjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiZGVwdGgiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiTG9jYXRpb24iXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiZGVwdGgiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJEZXB0aCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJkZXB0aCIsICJwb3NpdGl2ZSIsICJTdHJpbmciLCAiZG93biJdLAogICAgICBbImF0dHJpYnV0ZSIsICJkZXB0aCIsICJzdGFuZGFyZF9uYW1lIiwgIlN0cmluZyIsICJkZXB0aCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJkZXB0aCIsICJ1bml0cyIsICJTdHJpbmciLCAibSJdLAogICAgICBbInZhcmlhYmxlIiwgInRpbWUiLCAiIiwgImRvdWJsZSIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAidGltZSIsICJfQ29vcmRpbmF0ZUF4aXNUeXBlIiwgIlN0cmluZyIsICJUaW1lIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgInRpbWUiLCAiYWN0dWFsX3JhbmdlIiwgImRvdWJsZSIsICI0LjI1ODY1NkU4LCAxLjE4MzI0OEU5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgInRpbWUiLCAiYXhpcyIsICJTdHJpbmciLCAiVCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJ0aW1lIiwgImNvbG9yQmFyTWF4aW11bSIsICJkb3VibGUiLCAiMS4xODMyNDhFOSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJ0aW1lIiwgImNvbG9yQmFyTWluaW11bSIsICJkb3VibGUiLCAiNC4yNTg2NTZFOCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJ0aW1lIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlRpbWUiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAidGltZSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlRpbWUiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAidGltZSIsICJzdGFuZGFyZF9uYW1lIiwgIlN0cmluZyIsICJ0aW1lIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgInRpbWUiLCAidGltZV9vcmlnaW4iLCAiU3RyaW5nIiwgIjAxLUpBTi0xOTcwIDAwOjAwOjAwIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgInRpbWUiLCAidW5pdHMiLCAiU3RyaW5nIiwgInNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFoiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJBcGx5c2lhX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJBcGx5c2lhX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjk1Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgImNvbW1lbnQiLCAiU3RyaW5nIiwgIkNvbW1vbiBuYW1lOiBDYWxpZm9ybmlhIGJyb3duIHNlYSBoYXJlIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIkJpb2xvZ3kiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQXBseXNpYV9jYWxpZm9ybmljYV9NZWFuX0RlbnNpdHkiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJBcGx5c2lhIGNhbGlmb3JuaWNhIE1lYW4gRGVuc2l0eSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJBcGx5c2lhX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQXBseXNpYV9jYWxpZm9ybmljYV9NZWFuX0RlbnNpdHkiLCAidW5pdHMiLCAiU3RyaW5nIiwgIm0tMiJdLAogICAgICBbInZhcmlhYmxlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfU3RkRGV2IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQXBseXNpYV9jYWxpZm9ybmljYV9TdGREZXYiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfU3RkRGV2IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMzUiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQXBseXNpYV9jYWxpZm9ybmljYV9TdGREZXYiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJBcGx5c2lhX2NhbGlmb3JuaWNhX1N0ZERldiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIkFwbHlzaWEgY2FsaWZvcm5pY2EgU3RkRGV2Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfU3RkRGV2IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfU3RkRXJyIiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQXBseXNpYV9jYWxpZm9ybmljYV9TdGRFcnIiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfU3RkRXJyIiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJBcGx5c2lhX2NhbGlmb3JuaWNhX1N0ZEVyciIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJTdGF0aXN0aWNzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfU3RkRXJyIiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiQXBseXNpYSBjYWxpZm9ybmljYSBTdGRFcnIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQXBseXNpYV9jYWxpZm9ybmljYV9TdGRFcnIiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsidmFyaWFibGUiLCAiQ3Jhc3NlZG9tYV9naWdhbnRldW1fTWVhbl9EZW5zaXR5IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQ3Jhc3NlZG9tYV9naWdhbnRldW1fTWVhbl9EZW5zaXR5IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJDcmFzc2Vkb21hX2dpZ2FudGV1bV9NZWFuX0RlbnNpdHkiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC45MiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJDcmFzc2Vkb21hX2dpZ2FudGV1bV9NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IFJvY2sgc2NhbGxvcCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJDcmFzc2Vkb21hX2dpZ2FudGV1bV9NZWFuX0RlbnNpdHkiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiQmlvbG9neSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJDcmFzc2Vkb21hX2dpZ2FudGV1bV9NZWFuX0RlbnNpdHkiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJDcmFzc2Vkb21hIGdpZ2FudGV1bSBNZWFuIERlbnNpdHkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQ3Jhc3NlZG9tYV9naWdhbnRldW1fTWVhbl9EZW5zaXR5IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJDcmFzc2Vkb21hX2dpZ2FudGV1bV9NZWFuX0RlbnNpdHkiLCAidW5pdHMiLCAiU3RyaW5nIiwgIm0tMiJdLAogICAgICBbInZhcmlhYmxlIiwgIkNyYXNzZWRvbWFfZ2lnYW50ZXVtX1N0ZERldiIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkNyYXNzZWRvbWFfZ2lnYW50ZXVtX1N0ZERldiIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQ3Jhc3NlZG9tYV9naWdhbnRldW1fU3RkRGV2IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuNzEiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQ3Jhc3NlZG9tYV9naWdhbnRldW1fU3RkRGV2IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQ3Jhc3NlZG9tYV9naWdhbnRldW1fU3RkRGV2IiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiQ3Jhc3NlZG9tYSBnaWdhbnRldW0gU3RkRGV2Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkNyYXNzZWRvbWFfZ2lnYW50ZXVtX1N0ZERldiIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJDcmFzc2Vkb21hX2dpZ2FudGV1bV9TdGRFcnIiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJDcmFzc2Vkb21hX2dpZ2FudGV1bV9TdGRFcnIiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkNyYXNzZWRvbWFfZ2lnYW50ZXVtX1N0ZEVyciIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQ3Jhc3NlZG9tYV9naWdhbnRldW1fU3RkRXJyIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQ3Jhc3NlZG9tYV9naWdhbnRldW1fU3RkRXJyIiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiQ3Jhc3NlZG9tYSBnaWdhbnRldW0gU3RkRXJyIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkNyYXNzZWRvbWFfZ2lnYW50ZXVtX1N0ZEVyciIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJIYWxpb3Rpc19jb3JydWdhdGFfTWVhbl9EZW5zaXR5IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfY29ycnVnYXRhX01lYW5fRGVuc2l0eSIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfY29ycnVnYXRhX01lYW5fRGVuc2l0eSIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjE4Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2NvcnJ1Z2F0YV9NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IFBpbmsgYWJhbG9uZSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19jb3JydWdhdGFfTWVhbl9EZW5zaXR5IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIkJpb2xvZ3kiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfY29ycnVnYXRhX01lYW5fRGVuc2l0eSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIkhhbGlvdGlzIGNvcnJ1Z2F0YSBNZWFuIERlbnNpdHkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfY29ycnVnYXRhX01lYW5fRGVuc2l0eSIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfY29ycnVnYXRhX01lYW5fRGVuc2l0eSIsICJ1bml0cyIsICJTdHJpbmciLCAibS0yIl0sCiAgICAgIFsidmFyaWFibGUiLCAiSGFsaW90aXNfY29ycnVnYXRhX1N0ZERldiIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2NvcnJ1Z2F0YV9TdGREZXYiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2NvcnJ1Z2F0YV9TdGREZXYiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4xIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2NvcnJ1Z2F0YV9TdGREZXYiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19jb3JydWdhdGFfU3RkRGV2IiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiSGFsaW90aXMgY29ycnVnYXRhIFN0ZERldiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19jb3JydWdhdGFfU3RkRGV2IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIkhhbGlvdGlzX2NvcnJ1Z2F0YV9TdGRFcnIiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19jb3JydWdhdGFfU3RkRXJyIiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19jb3JydWdhdGFfU3RkRXJyIiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMDMiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfY29ycnVnYXRhX1N0ZEVyciIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJTdGF0aXN0aWNzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2NvcnJ1Z2F0YV9TdGRFcnIiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJIYWxpb3RpcyBjb3JydWdhdGEgU3RkRXJyIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2NvcnJ1Z2F0YV9TdGRFcnIiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsidmFyaWFibGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19NZWFuX0RlbnNpdHkiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19mdWxnZW5zX01lYW5fRGVuc2l0eSIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19NZWFuX0RlbnNpdHkiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4wMDU1NTU1NTYiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IEdyZWVuIGFiYWxvbmUiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19NZWFuX0RlbnNpdHkiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiQmlvbG9neSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19mdWxnZW5zX01lYW5fRGVuc2l0eSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIkhhbGlvdGlzIGZ1bGdlbnMgTWVhbiBEZW5zaXR5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2Z1bGdlbnNfTWVhbl9EZW5zaXR5IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19mdWxnZW5zX01lYW5fRGVuc2l0eSIsICJ1bml0cyIsICJTdHJpbmciLCAibS0yIl0sCiAgICAgIFsidmFyaWFibGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19TdGREZXYiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19mdWxnZW5zX1N0ZERldiIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19TdGREZXYiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4wMDgyMDYwOTkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19TdGREZXYiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19mdWxnZW5zX1N0ZERldiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIkhhbGlvdGlzIGZ1bGdlbnMgU3RkRGV2Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2Z1bGdlbnNfU3RkRGV2IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIkhhbGlvdGlzX2Z1bGdlbnNfU3RkRXJyIiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19TdGRFcnIiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2Z1bGdlbnNfU3RkRXJyIiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMDAyMzY4ODk3Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2Z1bGdlbnNfU3RkRXJyIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19TdGRFcnIiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJIYWxpb3RpcyBmdWxnZW5zIFN0ZEVyciJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19mdWxnZW5zX1N0ZEVyciIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJIYWxpb3Rpc19ydWZlc2NlbnNfTWVhbl9EZW5zaXR5IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfcnVmZXNjZW5zX01lYW5fRGVuc2l0eSIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfcnVmZXNjZW5zX01lYW5fRGVuc2l0eSIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjk5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX3J1ZmVzY2Vuc19NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IFJlZCBhYmFsb25lIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX3J1ZmVzY2Vuc19NZWFuX0RlbnNpdHkiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiQmlvbG9neSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19ydWZlc2NlbnNfTWVhbl9EZW5zaXR5IiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiSGFsaW90aXMgcnVmZXNjZW5zIE1lYW4gRGVuc2l0eSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19ydWZlc2NlbnNfTWVhbl9EZW5zaXR5IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19ydWZlc2NlbnNfTWVhbl9EZW5zaXR5IiwgInVuaXRzIiwgIlN0cmluZyIsICJtLTIiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJIYWxpb3Rpc19ydWZlc2NlbnNfU3RkRGV2IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfcnVmZXNjZW5zX1N0ZERldiIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfcnVmZXNjZW5zX1N0ZERldiIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjYiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfcnVmZXNjZW5zX1N0ZERldiIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJTdGF0aXN0aWNzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX3J1ZmVzY2Vuc19TdGREZXYiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJIYWxpb3RpcyBydWZlc2NlbnMgU3RkRGV2Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX3J1ZmVzY2Vuc19TdGREZXYiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsidmFyaWFibGUiLCAiSGFsaW90aXNfcnVmZXNjZW5zX1N0ZEVyciIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX3J1ZmVzY2Vuc19TdGRFcnIiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX3J1ZmVzY2Vuc19TdGRFcnIiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4xNyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19ydWZlc2NlbnNfU3RkRXJyIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfcnVmZXNjZW5zX1N0ZEVyciIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIkhhbGlvdGlzIHJ1ZmVzY2VucyBTdGRFcnIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfcnVmZXNjZW5zX1N0ZEVyciIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJLZWxsZXRpYV9rZWxsZXRpaV9NZWFuX0RlbnNpdHkiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJLZWxsZXRpYV9rZWxsZXRpaV9NZWFuX0RlbnNpdHkiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIktlbGxldGlhX2tlbGxldGlpX01lYW5fRGVuc2l0eSIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjU1Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIktlbGxldGlhX2tlbGxldGlpX01lYW5fRGVuc2l0eSIsICJjb21tZW50IiwgIlN0cmluZyIsICJDb21tb24gbmFtZTogS2VsbGV0J3Mgd2hlbGsiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiS2VsbGV0aWFfa2VsbGV0aWlfTWVhbl9EZW5zaXR5IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIkJpb2xvZ3kiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiS2VsbGV0aWFfa2VsbGV0aWlfTWVhbl9EZW5zaXR5IiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiS2VsbGV0aWEga2VsbGV0aWkgTWVhbiBEZW5zaXR5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIktlbGxldGlhX2tlbGxldGlpX01lYW5fRGVuc2l0eSIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiS2VsbGV0aWFfa2VsbGV0aWlfTWVhbl9EZW5zaXR5IiwgInVuaXRzIiwgIlN0cmluZyIsICJtLTIiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJLZWxsZXRpYV9rZWxsZXRpaV9TdGREZXYiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJLZWxsZXRpYV9rZWxsZXRpaV9TdGREZXYiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIktlbGxldGlhX2tlbGxldGlpX1N0ZERldiIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjI5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIktlbGxldGlhX2tlbGxldGlpX1N0ZERldiIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJTdGF0aXN0aWNzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIktlbGxldGlhX2tlbGxldGlpX1N0ZERldiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIktlbGxldGlhIGtlbGxldGlpIFN0ZERldiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJLZWxsZXRpYV9rZWxsZXRpaV9TdGREZXYiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsidmFyaWFibGUiLCAiS2VsbGV0aWFfa2VsbGV0aWlfU3RkRXJyIiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiS2VsbGV0aWFfa2VsbGV0aWlfU3RkRXJyIiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJLZWxsZXRpYV9rZWxsZXRpaV9TdGRFcnIiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4wOCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJLZWxsZXRpYV9rZWxsZXRpaV9TdGRFcnIiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJLZWxsZXRpYV9rZWxsZXRpaV9TdGRFcnIiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJLZWxsZXRpYSBrZWxsZXRpaSBTdGRFcnIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiS2VsbGV0aWFfa2VsbGV0aWlfU3RkRXJyIiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIkxvcGhvZ29yZ2lhX2NoaWxlbnNpc19NZWFuX0RlbnNpdHkiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfTWVhbl9EZW5zaXR5IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfTWVhbl9EZW5zaXR5IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuNyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfTWVhbl9EZW5zaXR5IiwgImNvbW1lbnQiLCAiU3RyaW5nIiwgIkNvbW1vbiBuYW1lOiBSZWQgZ29yZ29uaWFuIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkxvcGhvZ29yZ2lhX2NoaWxlbnNpc19NZWFuX0RlbnNpdHkiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiQmlvbG9neSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfTWVhbl9EZW5zaXR5IiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiTG9waG9nb3JnaWEgY2hpbGVuc2lzIE1lYW4gRGVuc2l0eSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfTWVhbl9EZW5zaXR5IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfTWVhbl9EZW5zaXR5IiwgInVuaXRzIiwgIlN0cmluZyIsICJtLTIiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfU3RkRGV2IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTG9waG9nb3JnaWFfY2hpbGVuc2lzX1N0ZERldiIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTG9waG9nb3JnaWFfY2hpbGVuc2lzX1N0ZERldiIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjQ0Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkxvcGhvZ29yZ2lhX2NoaWxlbnNpc19TdGREZXYiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfU3RkRGV2IiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiTG9waG9nb3JnaWEgY2hpbGVuc2lzIFN0ZERldiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfU3RkRGV2IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIkxvcGhvZ29yZ2lhX2NoaWxlbnNpc19TdGRFcnIiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfU3RkRXJyIiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfU3RkRXJyIiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMTIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTG9waG9nb3JnaWFfY2hpbGVuc2lzX1N0ZEVyciIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJTdGF0aXN0aWNzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkxvcGhvZ29yZ2lhX2NoaWxlbnNpc19TdGRFcnIiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJMb3Bob2dvcmdpYSBjaGlsZW5zaXMgU3RkRXJyIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkxvcGhvZ29yZ2lhX2NoaWxlbnNpc19TdGRFcnIiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsidmFyaWFibGUiLCAiTHl0ZWNoaW51c19hbmFtZXN1c19NZWFuX0RlbnNpdHkiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMeXRlY2hpbnVzX2FuYW1lc3VzX01lYW5fRGVuc2l0eSIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTHl0ZWNoaW51c19hbmFtZXN1c19NZWFuX0RlbnNpdHkiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMjIuNDUiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTHl0ZWNoaW51c19hbmFtZXN1c19NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IFdoaXRlIHNlYSB1cmNoaW4iXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTHl0ZWNoaW51c19hbmFtZXN1c19NZWFuX0RlbnNpdHkiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiQmlvbG9neSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMeXRlY2hpbnVzX2FuYW1lc3VzX01lYW5fRGVuc2l0eSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIkx5dGVjaGludXMgYW5hbWVzdXMgTWVhbiBEZW5zaXR5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkx5dGVjaGludXNfYW5hbWVzdXNfTWVhbl9EZW5zaXR5IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMeXRlY2hpbnVzX2FuYW1lc3VzX01lYW5fRGVuc2l0eSIsICJ1bml0cyIsICJTdHJpbmciLCAibS0yIl0sCiAgICAgIFsidmFyaWFibGUiLCAiTHl0ZWNoaW51c19hbmFtZXN1c19TdGREZXYiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMeXRlY2hpbnVzX2FuYW1lc3VzX1N0ZERldiIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTHl0ZWNoaW51c19hbmFtZXN1c19TdGREZXYiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgOS4yIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkx5dGVjaGludXNfYW5hbWVzdXNfU3RkRGV2IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTHl0ZWNoaW51c19hbmFtZXN1c19TdGREZXYiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJMeXRlY2hpbnVzIGFuYW1lc3VzIFN0ZERldiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMeXRlY2hpbnVzX2FuYW1lc3VzX1N0ZERldiIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJMeXRlY2hpbnVzX2FuYW1lc3VzX1N0ZEVyciIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkx5dGVjaGludXNfYW5hbWVzdXNfU3RkRXJyIiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMeXRlY2hpbnVzX2FuYW1lc3VzX1N0ZEVyciIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAyLjY1Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkx5dGVjaGludXNfYW5hbWVzdXNfU3RkRXJyIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTHl0ZWNoaW51c19hbmFtZXN1c19TdGRFcnIiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJMeXRlY2hpbnVzIGFuYW1lc3VzIFN0ZEVyciJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMeXRlY2hpbnVzX2FuYW1lc3VzX1N0ZEVyciIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJNZWdhdGh1cmFfY3JlbnVsYXRhX01lYW5fRGVuc2l0eSIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk1lZ2F0aHVyYV9jcmVudWxhdGFfTWVhbl9EZW5zaXR5IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNZWdhdGh1cmFfY3JlbnVsYXRhX01lYW5fRGVuc2l0eSIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjUiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTWVnYXRodXJhX2NyZW51bGF0YV9NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IEdpYW50IGtleWhvbGUgbGltcGV0Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk1lZ2F0aHVyYV9jcmVudWxhdGFfTWVhbl9EZW5zaXR5IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIkJpb2xvZ3kiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTWVnYXRodXJhX2NyZW51bGF0YV9NZWFuX0RlbnNpdHkiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJNZWdhdGh1cmEgY3JlbnVsYXRhIE1lYW4gRGVuc2l0eSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNZWdhdGh1cmFfY3JlbnVsYXRhX01lYW5fRGVuc2l0eSIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTWVnYXRodXJhX2NyZW51bGF0YV9NZWFuX0RlbnNpdHkiLCAidW5pdHMiLCAiU3RyaW5nIiwgIm0tMiJdLAogICAgICBbInZhcmlhYmxlIiwgIk1lZ2F0aHVyYV9jcmVudWxhdGFfU3RkRGV2IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTWVnYXRodXJhX2NyZW51bGF0YV9TdGREZXYiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk1lZ2F0aHVyYV9jcmVudWxhdGFfU3RkRGV2IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMjIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTWVnYXRodXJhX2NyZW51bGF0YV9TdGREZXYiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNZWdhdGh1cmFfY3JlbnVsYXRhX1N0ZERldiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIk1lZ2F0aHVyYSBjcmVudWxhdGEgU3RkRGV2Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk1lZ2F0aHVyYV9jcmVudWxhdGFfU3RkRGV2IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIk1lZ2F0aHVyYV9jcmVudWxhdGFfU3RkRXJyIiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTWVnYXRodXJhX2NyZW51bGF0YV9TdGRFcnIiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk1lZ2F0aHVyYV9jcmVudWxhdGFfU3RkRXJyIiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMDciXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTWVnYXRodXJhX2NyZW51bGF0YV9TdGRFcnIiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNZWdhdGh1cmFfY3JlbnVsYXRhX1N0ZEVyciIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIk1lZ2F0aHVyYSBjcmVudWxhdGEgU3RkRXJyIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk1lZ2F0aHVyYV9jcmVudWxhdGFfU3RkRXJyIiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIk11cmljZWFfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9jYWxpZm9ybmljYV9NZWFuX0RlbnNpdHkiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMzEiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9jYWxpZm9ybmljYV9NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IENhbGlmb3JuaWEgZ29sZGVuIGdvcmdvbmlhbiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJCaW9sb2d5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiTXVyaWNlYSBjYWxpZm9ybmljYSBNZWFuIERlbnNpdHkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9jYWxpZm9ybmljYV9NZWFuX0RlbnNpdHkiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgInVuaXRzIiwgIlN0cmluZyIsICJtLTIiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJNdXJpY2VhX2NhbGlmb3JuaWNhX1N0ZERldiIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfY2FsaWZvcm5pY2FfU3RkRGV2IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2NhbGlmb3JuaWNhX1N0ZERldiIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjE2Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfY2FsaWZvcm5pY2FfU3RkRGV2IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9jYWxpZm9ybmljYV9TdGREZXYiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJNdXJpY2VhIGNhbGlmb3JuaWNhIFN0ZERldiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2NhbGlmb3JuaWNhX1N0ZERldiIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJNdXJpY2VhX2NhbGlmb3JuaWNhX1N0ZEVyciIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfY2FsaWZvcm5pY2FfU3RkRXJyIiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2NhbGlmb3JuaWNhX1N0ZEVyciIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjA0Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfY2FsaWZvcm5pY2FfU3RkRXJyIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9jYWxpZm9ybmljYV9TdGRFcnIiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJNdXJpY2VhIGNhbGlmb3JuaWNhIFN0ZEVyciJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2NhbGlmb3JuaWNhX1N0ZEVyciIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJNdXJpY2VhX2ZydXRpY29zYV9NZWFuX0RlbnNpdHkiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2ZydXRpY29zYV9NZWFuX0RlbnNpdHkiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfZnJ1dGljb3NhX01lYW5fRGVuc2l0eSIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjA0Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfZnJ1dGljb3NhX01lYW5fRGVuc2l0eSIsICJjb21tZW50IiwgIlN0cmluZyIsICJDb21tb24gbmFtZTogQnJvd24gZ29yZ29uaWFuIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfZnJ1dGljb3NhX01lYW5fRGVuc2l0eSIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJCaW9sb2d5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfZnJ1dGljb3NhX01lYW5fRGVuc2l0eSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIk11cmljZWEgZnJ1dGljb3NhIE1lYW4gRGVuc2l0eSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2ZydXRpY29zYV9NZWFuX0RlbnNpdHkiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfZnJ1dGljb3NhX01lYW5fRGVuc2l0eSIsICJ1bml0cyIsICJTdHJpbmciLCAibS0yIl0sCiAgICAgIFsidmFyaWFibGUiLCAiTXVyaWNlYV9mcnV0aWNvc2FfU3RkRGV2IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9mcnV0aWNvc2FfU3RkRGV2IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2ZydXRpY29zYV9TdGREZXYiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4wOSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2ZydXRpY29zYV9TdGREZXYiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2ZydXRpY29zYV9TdGREZXYiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJNdXJpY2VhIGZydXRpY29zYSBTdGREZXYiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9mcnV0aWNvc2FfU3RkRGV2IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIk11cmljZWFfZnJ1dGljb3NhX1N0ZEVyciIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfZnJ1dGljb3NhX1N0ZEVyciIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9mcnV0aWNvc2FfU3RkRXJyIiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMDIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9mcnV0aWNvc2FfU3RkRXJyIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9mcnV0aWNvc2FfU3RkRXJyIiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiTXVyaWNlYSBmcnV0aWNvc2EgU3RkRXJyIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfZnJ1dGljb3NhX1N0ZEVyciIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJQYW51bGlydXNfaW50ZXJydXB0dXNfTWVhbl9EZW5zaXR5IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX01lYW5fRGVuc2l0eSIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX01lYW5fRGVuc2l0eSIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjExIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlBhbnVsaXJ1c19pbnRlcnJ1cHR1c19NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IENhbGlmb3JuaWEgc3BpbnkgbG9ic3RlciJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQYW51bGlydXNfaW50ZXJydXB0dXNfTWVhbl9EZW5zaXR5IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIkJpb2xvZ3kiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX01lYW5fRGVuc2l0eSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlBhbnVsaXJ1cyBpbnRlcnJ1cHR1cyBNZWFuIERlbnNpdHkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX01lYW5fRGVuc2l0eSIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX01lYW5fRGVuc2l0eSIsICJ1bml0cyIsICJTdHJpbmciLCAibS0yIl0sCiAgICAgIFsidmFyaWFibGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX1N0ZERldiIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlBhbnVsaXJ1c19pbnRlcnJ1cHR1c19TdGREZXYiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlBhbnVsaXJ1c19pbnRlcnJ1cHR1c19TdGREZXYiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4zMiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQYW51bGlydXNfaW50ZXJydXB0dXNfU3RkRGV2IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX1N0ZERldiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlBhbnVsaXJ1cyBpbnRlcnJ1cHR1cyBTdGREZXYiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX1N0ZERldiIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJQYW51bGlydXNfaW50ZXJydXB0dXNfU3RkRXJyIiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX1N0ZEVyciIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX1N0ZEVyciIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjA5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlBhbnVsaXJ1c19pbnRlcnJ1cHR1c19TdGRFcnIiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQYW51bGlydXNfaW50ZXJydXB0dXNfU3RkRXJyIiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiUGFudWxpcnVzIGludGVycnVwdHVzIFN0ZEVyciJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQYW51bGlydXNfaW50ZXJydXB0dXNfU3RkRXJyIiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19NZWFuX0RlbnNpdHkiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQeWNub3BvZGlhX2hlbGlhbnRob2lkZXNfTWVhbl9EZW5zaXR5IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQeWNub3BvZGlhX2hlbGlhbnRob2lkZXNfTWVhbl9EZW5zaXR5IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMzMiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUHljbm9wb2RpYV9oZWxpYW50aG9pZGVzX01lYW5fRGVuc2l0eSIsICJjb21tZW50IiwgIlN0cmluZyIsICJDb21tb24gbmFtZTogU3VuZmxvd2VyIHN0YXIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUHljbm9wb2RpYV9oZWxpYW50aG9pZGVzX01lYW5fRGVuc2l0eSIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJCaW9sb2d5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19NZWFuX0RlbnNpdHkiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJQeWNub3BvZGlhIGhlbGlhbnRob2lkZXMgTWVhbiBEZW5zaXR5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19NZWFuX0RlbnNpdHkiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19NZWFuX0RlbnNpdHkiLCAidW5pdHMiLCAiU3RyaW5nIiwgIm0tMiJdLAogICAgICBbInZhcmlhYmxlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19TdGREZXYiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQeWNub3BvZGlhX2hlbGlhbnRob2lkZXNfU3RkRGV2IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQeWNub3BvZGlhX2hlbGlhbnRob2lkZXNfU3RkRGV2IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMjEiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUHljbm9wb2RpYV9oZWxpYW50aG9pZGVzX1N0ZERldiIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJTdGF0aXN0aWNzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19TdGREZXYiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJQeWNub3BvZGlhIGhlbGlhbnRob2lkZXMgU3RkRGV2Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19TdGREZXYiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsidmFyaWFibGUiLCAiUHljbm9wb2RpYV9oZWxpYW50aG9pZGVzX1N0ZEVyciIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19TdGRFcnIiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19TdGRFcnIiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4wNiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQeWNub3BvZGlhX2hlbGlhbnRob2lkZXNfU3RkRXJyIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUHljbm9wb2RpYV9oZWxpYW50aG9pZGVzX1N0ZEVyciIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlB5Y25vcG9kaWEgaGVsaWFudGhvaWRlcyBTdGRFcnIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUHljbm9wb2RpYV9oZWxpYW50aG9pZGVzX1N0ZEVyciIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJTdHlsYXN0ZXJfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjEzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlN0eWxhc3Rlcl9jYWxpZm9ybmljYV9NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IENhbGlmb3JuaWEgaHlkcm9jb3JhbCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJTdHlsYXN0ZXJfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIkJpb2xvZ3kiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlN0eWxhc3RlciBjYWxpZm9ybmljYSBNZWFuIERlbnNpdHkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICJ1bml0cyIsICJTdHJpbmciLCAibS0yIl0sCiAgICAgIFsidmFyaWFibGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX1N0ZERldiIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlN0eWxhc3Rlcl9jYWxpZm9ybmljYV9TdGREZXYiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlN0eWxhc3Rlcl9jYWxpZm9ybmljYV9TdGREZXYiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4xOCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJTdHlsYXN0ZXJfY2FsaWZvcm5pY2FfU3RkRGV2IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX1N0ZERldiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlN0eWxhc3RlciBjYWxpZm9ybmljYSBTdGREZXYiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX1N0ZERldiIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJTdHlsYXN0ZXJfY2FsaWZvcm5pY2FfU3RkRXJyIiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX1N0ZEVyciIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX1N0ZEVyciIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjA1Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlN0eWxhc3Rlcl9jYWxpZm9ybmljYV9TdGRFcnIiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJTdHlsYXN0ZXJfY2FsaWZvcm5pY2FfU3RkRXJyIiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiU3R5bGFzdGVyIGNhbGlmb3JuaWNhIFN0ZEVyciJdLAogICAgICBbImF0dHJpYnV0ZSIsICJTdHlsYXN0ZXJfY2FsaWZvcm5pY2FfU3RkRXJyIiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIlRldGh5YV9hdXJhbnRpYV9NZWFuX0RlbnNpdHkiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJUZXRoeWFfYXVyYW50aWFfTWVhbl9EZW5zaXR5IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJUZXRoeWFfYXVyYW50aWFfTWVhbl9EZW5zaXR5IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuNDEiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVGV0aHlhX2F1cmFudGlhX01lYW5fRGVuc2l0eSIsICJjb21tZW50IiwgIlN0cmluZyIsICJDb21tb24gbmFtZTogT3JhbmdlIHB1ZmZiYWxsIHNwb25nZSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJUZXRoeWFfYXVyYW50aWFfTWVhbl9EZW5zaXR5IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIkJpb2xvZ3kiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVGV0aHlhX2F1cmFudGlhX01lYW5fRGVuc2l0eSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlRldGh5YSBhdXJhbnRpYSBNZWFuIERlbnNpdHkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVGV0aHlhX2F1cmFudGlhX01lYW5fRGVuc2l0eSIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVGV0aHlhX2F1cmFudGlhX01lYW5fRGVuc2l0eSIsICJ1bml0cyIsICJTdHJpbmciLCAibS0yIl0sCiAgICAgIFsidmFyaWFibGUiLCAiVGV0aHlhX2F1cmFudGlhX1N0ZERldiIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlRldGh5YV9hdXJhbnRpYV9TdGREZXYiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlRldGh5YV9hdXJhbnRpYV9TdGREZXYiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4xOCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJUZXRoeWFfYXVyYW50aWFfU3RkRGV2IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVGV0aHlhX2F1cmFudGlhX1N0ZERldiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlRldGh5YSBhdXJhbnRpYSBTdGREZXYiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVGV0aHlhX2F1cmFudGlhX1N0ZERldiIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJUZXRoeWFfYXVyYW50aWFfU3RkRXJyIiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVGV0aHlhX2F1cmFudGlhX1N0ZEVyciIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVGV0aHlhX2F1cmFudGlhX1N0ZEVyciIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjA1Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlRldGh5YV9hdXJhbnRpYV9TdGRFcnIiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJUZXRoeWFfYXVyYW50aWFfU3RkRXJyIiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiVGV0aHlhIGF1cmFudGlhIFN0ZEVyciJdLAogICAgICBbImF0dHJpYnV0ZSIsICJUZXRoeWFfYXVyYW50aWFfU3RkRXJyIiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfTWVhbl9EZW5zaXR5IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVXJ0aWNpbmFfbG9mb3RlbnNpc19NZWFuX0RlbnNpdHkiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfTWVhbl9EZW5zaXR5IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMzkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVXJ0aWNpbmFfbG9mb3RlbnNpc19NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IFdoaXRlLXNwb3R0ZWQgcm9zZSBhbmVtb25lIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfTWVhbl9EZW5zaXR5IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIkJpb2xvZ3kiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVXJ0aWNpbmFfbG9mb3RlbnNpc19NZWFuX0RlbnNpdHkiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJVcnRpY2luYSBsb2ZvdGVuc2lzIE1lYW4gRGVuc2l0eSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJVcnRpY2luYV9sb2ZvdGVuc2lzX01lYW5fRGVuc2l0eSIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVXJ0aWNpbmFfbG9mb3RlbnNpc19NZWFuX0RlbnNpdHkiLCAidW5pdHMiLCAiU3RyaW5nIiwgIm0tMiJdLAogICAgICBbInZhcmlhYmxlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfU3RkRGV2IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVXJ0aWNpbmFfbG9mb3RlbnNpc19TdGREZXYiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfU3RkRGV2IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMjgiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVXJ0aWNpbmFfbG9mb3RlbnNpc19TdGREZXYiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJVcnRpY2luYV9sb2ZvdGVuc2lzX1N0ZERldiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlVydGljaW5hIGxvZm90ZW5zaXMgU3RkRGV2Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfU3RkRGV2IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfU3RkRXJyIiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVXJ0aWNpbmFfbG9mb3RlbnNpc19TdGRFcnIiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfU3RkRXJyIiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMDgiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVXJ0aWNpbmFfbG9mb3RlbnNpc19TdGRFcnIiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJVcnRpY2luYV9sb2ZvdGVuc2lzX1N0ZEVyciIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlVydGljaW5hIGxvZm90ZW5zaXMgU3RkRXJyIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfU3RkRXJyIiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdCiAgICBdCiAgfQp9Cg== + recorded_at: 2020-07-15 22:22:40 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:49 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:22:49 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: ASCII-8BIT + file: no + string: ewogICJ0YWJsZSI6IHsKICAgICJjb2x1bW5OYW1lcyI6IFsiZ3JpZGRhcCIsICJTdWJzZXQiLCAidGFibGVkYXAiLCAiTWFrZSBBIEdyYXBoIiwgIndtcyIsICJmaWxlcyIsICJBY2Nlc3NpYmxlIiwgIlRpdGxlIiwgIlN1bW1hcnkiLCAiRkdEQyIsICJJU08gMTkxMTUiLCAiSW5mbyIsICJCYWNrZ3JvdW5kIEluZm8iLCAiUlNTIiwgIkVtYWlsIiwgIkluc3RpdHV0aW9uIiwgIkRhdGFzZXQgSUQiXSwKICAgICJjb2x1bW5UeXBlcyI6IFsiU3RyaW5nIiwgIlN0cmluZyIsICJTdHJpbmciLCAiU3RyaW5nIiwgIlN0cmluZyIsICJTdHJpbmciLCAiU3RyaW5nIiwgIlN0cmluZyIsICJTdHJpbmciLCAiU3RyaW5nIiwgIlN0cmluZyIsICJTdHJpbmciLCAiU3RyaW5nIiwgIlN0cmluZyIsICJTdHJpbmciLCAiU3RyaW5nIiwgIlN0cmluZyJdLAogICAgInJvd3MiOiBbCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2FsbERhdGFzZXRzLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hbGxEYXRhc2V0cyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hbGxEYXRhc2V0cy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICIqIFRoZSBMaXN0IG9mIEFsbCBBY3RpdmUgRGF0YXNldHMgaW4gdGhpcyBFUkREQVAgKiIsICJUaGlzIGRhdGFzZXQgaXMgYSB0YWJsZSB3aGljaCBoYXMgYSByb3cgb2YgaW5mb3JtYXRpb24gZm9yIGVhY2ggZGF0YXNldCBjdXJyZW50bHkgYWN0aXZlIGluIHRoaXMgRVJEREFQLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbmRhdGFzZXRJRCAoRGF0YXNldCBJRClcbmFjY2Vzc2libGVcbmluc3RpdHV0aW9uXG5kYXRhU3RydWN0dXJlIChEYXRhIFN0cnVjdHVyZSlcbmNkbV9kYXRhX3R5cGUgKENvbW1vbiBEYXRhIE1vZGVsIFR5cGUpXG5jbGFzcyAoRVJEREFQIENsYXNzKVxudGl0bGVcbm1pbkxvbmdpdHVkZSAoTWluaW11bSBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbm1heExvbmdpdHVkZSAoTWF4aW11bSBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxvbmdpdHVkZVNwYWNpbmcgKEF2ZXJhZ2UgR3JpZCBMb25naXR1ZGUgU3BhY2luZywgZGVncmVlc19lYXN0KVxubWluTGF0aXR1ZGUgKE1pbmltdW0gTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG5tYXhMYXRpdHVkZSAoTWF4aW11bSBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbmxhdGl0dWRlU3BhY2luZyAoQXZlcmFnZSBHcmlkIExhdGl0dWRlIFNwYWNpbmcsIGRlZ3JlZXNfbm9ydGgpXG5taW5BbHRpdHVkZSAoTWluaW11bSBBbHRpdHVkZSBvciAtRGVwdGgsIG0pXG5tYXhBbHRpdHVkZSAoTWF4aW11bSBBbHRpdHVkZSBvciAtRGVwdGgsIG0pXG5taW5UaW1lIChNaW5pbXVtIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5tYXhUaW1lIChNYXhpbXVtIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG50aW1lU3BhY2luZyAoQXZlcmFnZSBHcmlkIFRpbWUgU3BhY2luZywgc2Vjb25kcylcbmdyaWRkYXAgKEJhc2UgVVJMIG9mIE9QZU5EQVAgR3JpZCBTZXJ2aWNlKVxuc3Vic2V0IChVUkwgb2YgU3Vic2V0IFdlYiBQYWdlKVxudGFibGVkYXAgKEJhc2UgVVJMIG9mIE9QZU5EQVAgVGFibGUvU2VxdWVuY2UgU2VydmljZSlcbk1ha2VBR3JhcGggKFVSTCBvZiBNYWtlLUEtR3JhcGggV2ViIFBhZ2UpXG5zb3MgKEJhc2UgVVJMIG9mIFNPUyBTZXJ2aWNlKVxud2NzIChCYXNlIFVSTCBvZiBXQ1MgU2VydmljZSlcbndtcyAoQmFzZSBVUkwgb2YgV01TIFNlcnZpY2UpXG5maWxlcyAoQmFzZSBVUkwgb2YgL2ZpbGVzLyBTZXJ2aWNlKVxuLi4uICgxMCBtb3JlIHZhcmlhYmxlcylcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYWxsRGF0YXNldHMvaW5kZXguanNvbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcCIsICIiLCAiIiwgIk5PQUEgTk1GUyBTV0ZTQyBFbnZpcm9ubWVudGFsIFJlc2VhcmNoIERpdmlzaW9uIiwgImFsbERhdGFzZXRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9haXNfaGlfMjAxMTIwMTIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYWlzX2hpXzIwMTEyMDEyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkFJUyBTaGlwIFRyYWZmaWM6IEhhd2FpaTogMjAxMS0yMDEyIiwgIlNoaXAgcG9zaXRpb24gZGF0YSBmcm9tIGEgc2F0ZWxsaXRlLWJhc2VkIEF1dG9tYXRpYyBJZGVudGlmaWNhdGlvbiBTeXN0ZW0gKEFJUykgd2VyZSBvYnRhaW5lZCBqb2ludGx5IGJ5IFBhY0lPT1MgKEouIFBvdGVtcmEpLCBTT0VTVC9PUkUgb2YgdGhlIFVuaXZlcnNpdHkgb2YgSGF3YWlpIChFLiBSb3RoKSwgYW5kIHRoZSBQYXBhaGFuYXVtb2t1YWtlYSBNYXJpbmUgTmF0aW9uYWwgTW9udW1lbnQgKFBOTU4pIChELiBHcmFoYW0pIHRocm91Z2ggYSBvbmUtdGltZSBwdXJjaGFzZSBmcm9tIE9SQkNPTU0gTExDLiBUaGUgcHVyY2hhc2UgYWdyZWVtZW50IHdhcyBtYWRlIGluIGxhdGUgMjAxMiBhbmQgd2FzIGZvciBhIDMwLWJ5LTMwIGRlZ3JlZSBzZWN0aW9uIG9mIGhpc3RvcmljYWwgQUlTIGRhdGEgdGhhdCBpbmNsdWRlZCB0aGUgcmVnaW9uIG9mIHRoZSBIYXdhaWlhbiBJc2xhbmRzLiBUaGUgZGF0YSBpbmNsdWRlIEFJUyBsb25nIGFuZCB1bmNoZWNrZWQgcmVwb3J0cyBmb3IgYSBvbmUgeWVhciBwZXJpb2Q6IEF1Z3VzdCAyMDExIHRocm91Z2ggbWlkLUF1Z3VzdCAyMDEyLiBUaGUgcmF3LCBtb250aGx5IEdQUyBmaWxlcyB3ZXJlIGxvY2FsbHkgY29udmVydGVkIHRvIE5ldENERiBmb3IgdGhlIFBhY0lPT1MgZGF0YSBzZXJ2ZXJzLiBEdWUgdG8gdmVuZG9yIGNvbnN0cmFpbnRzLCByZWxlYXNlIG9mIHRoZSByYXcgZGF0YSBpcyBsaW1pdGVkLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbm9icyAob2JzZXJ2YXRpb24sIDApXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnNoaXBfaWRfbW1zaSAoc2hpcCBpZGVudGlmaWNhdGlvbiBudW1iZXIgKE1NU0kpLCAwKVxubmF2aWdhdGlvbmFsX3N0YXR1cyAoMClcbnNwZWVkX292ZXJfZ3JvdW5kIChrdHMpXG5jb3Vyc2Vfb3Zlcl9ncm91bmQgKGRlZylcbnRydWVfaGVhZGluZyAoZGVnKVxucmF0ZV9vZl90dXJuIChkZWdyZWVzIG1pbnV0ZXMtMSlcbnBvc2l0aW9uX2FjY3VyYWN5ICgwKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2Fpc19oaV8yMDExMjAxMl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvYWlzX2hpXzIwMTEyMDEyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2Fpc19oaV8yMDExMjAxMi9pbmRleC5qc29uIiwgImh0dHA6Ly93d3cubmF2Y2VuLnVzY2cuZ292Lz9wYWdlTmFtZT1BSVNtYWluIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2Fpc19oaV8yMDExMjAxMi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YWlzX2hpXzIwMTEyMDEyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlBhY2lmaWMgSXNsYW5kcyBPY2VhbiBPYnNlcnZpbmcgU3lzdGVtIChQYWNJT09TKSIsICJhaXNfaGlfMjAxMTIwMTIiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2Fpc19qb2huXzIwMTEyMDEyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2Fpc19qb2huXzIwMTEyMDEyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkFJUyBTaGlwIFRyYWZmaWM6IEpvaG5zdG9uIEF0b2xsOiAyMDExLTIwMTIiLCAiU2hpcCBwb3NpdGlvbiBkYXRhIGZyb20gYSBzYXRlbGxpdGUtYmFzZWQgQXV0b21hdGljIElkZW50aWZpY2F0aW9uIFN5c3RlbSAoQUlTKSB3ZXJlIG9idGFpbmVkIGpvaW50bHkgYnkgUGFjSU9PUyAoSi4gUG90ZW1yYSksIFNPRVNUL09SRSBvZiB0aGUgVW5pdmVyc2l0eSBvZiBIYXdhaWkgKEUuIFJvdGgpLCBhbmQgdGhlIFBhcGFoYW5hdW1va3Vha2VhIE1hcmluZSBOYXRpb25hbCBNb251bWVudCAoUE5NTikgKEQuIEdyYWhhbSkgdGhyb3VnaCBhIG9uZS10aW1lIHB1cmNoYXNlIGZyb20gT1JCQ09NTSBMTEMuIFRoZSBwdXJjaGFzZSBhZ3JlZW1lbnQgd2FzIG1hZGUgaW4gbGF0ZSAyMDEyIGFuZCB3YXMgZm9yIGEgMzAtYnktMzAgZGVncmVlIHNlY3Rpb24gb2YgaGlzdG9yaWNhbCBBSVMgZGF0YSB0aGF0IGluY2x1ZGVkIHRoZSByZWdpb24gc3Vycm91bmRpbmcgSm9obnN0b24gQXRvbGwuIFRoZSBkYXRhIGluY2x1ZGUgQUlTIGxvbmcgYW5kIHVuY2hlY2tlZCByZXBvcnRzIGZvciBhIG9uZSB5ZWFyIHBlcmlvZDogQXVndXN0IDIwMTEgdGhyb3VnaCBtaWQtQXVndXN0IDIwMTIuIFRoZSByYXcsIG1vbnRobHkgR1BTIGZpbGVzIHdlcmUgbG9jYWxseSBjb252ZXJ0ZWQgdG8gTmV0Q0RGIGZvciB0aGUgUGFjSU9PUyBkYXRhIHNlcnZlcnMuIER1ZSB0byB2ZW5kb3IgY29uc3RyYWludHMsIHJlbGVhc2Ugb2YgdGhlIHJhdyBkYXRhIGlzIGxpbWl0ZWQuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxub2JzIChvYnNlcnZhdGlvbiwgMClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuc2hpcF9pZF9tbXNpIChzaGlwIGlkZW50aWZpY2F0aW9uIG51bWJlciAoTU1TSSksIDApXG5uYXZpZ2F0aW9uYWxfc3RhdHVzICgwKVxuc3BlZWRfb3Zlcl9ncm91bmQgKGt0cylcbmNvdXJzZV9vdmVyX2dyb3VuZCAoZGVnKVxudHJ1ZV9oZWFkaW5nIChkZWcpXG5yYXRlX29mX3R1cm4gKGRlZ3JlZXMgbWludXRlcy0xKVxucG9zaXRpb25fYWNjdXJhY3kgKDApXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvYWlzX2pvaG5fMjAxMTIwMTJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2Fpc19qb2huXzIwMTEyMDEyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2Fpc19qb2huXzIwMTEyMDEyL2luZGV4Lmpzb24iLCAiaHR0cDovL3d3dy5uYXZjZW4udXNjZy5nb3YvP3BhZ2VOYW1lPUFJU21haW4iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYWlzX2pvaG5fMjAxMTIwMTIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWFpc19qb2huXzIwMTEyMDEyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlBhY2lmaWMgSXNsYW5kcyBPY2VhbiBPYnNlcnZpbmcgU3lzdGVtIChQYWNJT09TKSIsICJhaXNfam9obl8yMDExMjAxMiJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYWlzX21hcmlfMjAxMTIwMTIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYWlzX21hcmlfMjAxMTIwMTIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQUlTIFNoaXAgVHJhZmZpYzogTWFyaWFuYSBhbmQgV2FrZTogMjAxMS0yMDEyIiwgIlNoaXAgcG9zaXRpb24gZGF0YSBmcm9tIGEgc2F0ZWxsaXRlLWJhc2VkIEF1dG9tYXRpYyBJZGVudGlmaWNhdGlvbiBTeXN0ZW0gKEFJUykgd2VyZSBvYnRhaW5lZCBqb2ludGx5IGJ5IFBhY0lPT1MgKEouIFBvdGVtcmEpLCBTT0VTVC9PUkUgb2YgdGhlIFVuaXZlcnNpdHkgb2YgSGF3YWlpIChFLiBSb3RoKSwgYW5kIHRoZSBQYXBhaGFuYXVtb2t1YWtlYSBNYXJpbmUgTmF0aW9uYWwgTW9udW1lbnQgKFBOTU4pIChELiBHcmFoYW0pIHRocm91Z2ggYSBvbmUtdGltZSBwdXJjaGFzZSBmcm9tIE9SQkNPTU0gTExDLiBUaGUgcHVyY2hhc2UgYWdyZWVtZW50IHdhcyBtYWRlIGluIGxhdGUgMjAxMiBhbmQgd2FzIGZvciBhIDMwLWJ5LTMwIGRlZ3JlZSBzZWN0aW9uIG9mIGhpc3RvcmljYWwgQUlTIGRhdGEgdGhhdCBpbmNsdWRlZCB0aGUgcmVnaW9uIG9mIHRoZSBNYXJpYW5hIElzbGFuZHMuIFRoZSBkYXRhIGluY2x1ZGUgQUlTIGxvbmcgYW5kIHVuY2hlY2tlZCByZXBvcnRzIGZvciBhIG9uZSB5ZWFyIHBlcmlvZDogQXVndXN0IDIwMTEgdGhyb3VnaCBtaWQtQXVndXN0IDIwMTIuIFRoZSByYXcsIG1vbnRobHkgR1BTIGZpbGVzIHdlcmUgbG9jYWxseSBjb252ZXJ0ZWQgdG8gTmV0Q0RGIGZvciB0aGUgUGFjSU9PUyBkYXRhIHNlcnZlcnMuIER1ZSB0byB2ZW5kb3IgY29uc3RyYWludHMsIHJlbGVhc2Ugb2YgdGhlIHJhdyBkYXRhIGlzIGxpbWl0ZWQuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxub2JzIChvYnNlcnZhdGlvbiwgMClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuc2hpcF9pZF9tbXNpIChzaGlwIGlkZW50aWZpY2F0aW9uIG51bWJlciAoTU1TSSksIDApXG5uYXZpZ2F0aW9uYWxfc3RhdHVzICgwKVxuc3BlZWRfb3Zlcl9ncm91bmQgKGt0cylcbmNvdXJzZV9vdmVyX2dyb3VuZCAoZGVnKVxudHJ1ZV9oZWFkaW5nIChkZWcpXG5yYXRlX29mX3R1cm4gKGRlZ3JlZXMgbWludXRlcy0xKVxucG9zaXRpb25fYWNjdXJhY3kgKDApXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvYWlzX21hcmlfMjAxMTIwMTJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2Fpc19tYXJpXzIwMTEyMDEyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2Fpc19tYXJpXzIwMTEyMDEyL2luZGV4Lmpzb24iLCAiaHR0cDovL3d3dy5uYXZjZW4udXNjZy5nb3YvP3BhZ2VOYW1lPUFJU21haW4iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYWlzX21hcmlfMjAxMTIwMTIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWFpc19tYXJpXzIwMTEyMDEyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlBhY2lmaWMgSXNsYW5kcyBPY2VhbiBPYnNlcnZpbmcgU3lzdGVtIChQYWNJT09TKSIsICJhaXNfbWFyaV8yMDExMjAxMiJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYWlzX3Jvc2VfMjAxMTIwMTIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYWlzX3Jvc2VfMjAxMTIwMTIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQUlTIFNoaXAgVHJhZmZpYzogUm9zZSBBdG9sbDogMjAxMS0yMDEyIiwgIlNoaXAgcG9zaXRpb24gZGF0YSBmcm9tIGEgc2F0ZWxsaXRlLWJhc2VkIEF1dG9tYXRpYyBJZGVudGlmaWNhdGlvbiBTeXN0ZW0gKEFJUykgd2VyZSBvYnRhaW5lZCBqb2ludGx5IGJ5IFBhY0lPT1MgKEouIFBvdGVtcmEpLCBTT0VTVC9PUkUgb2YgdGhlIFVuaXZlcnNpdHkgb2YgSGF3YWlpIChFLiBSb3RoKSwgYW5kIHRoZSBQYXBhaGFuYXVtb2t1YWtlYSBNYXJpbmUgTmF0aW9uYWwgTW9udW1lbnQgKFBOTU4pIChELiBHcmFoYW0pIHRocm91Z2ggYSBvbmUtdGltZSBwdXJjaGFzZSBmcm9tIE9SQkNPTU0gTExDLiBUaGUgcHVyY2hhc2UgYWdyZWVtZW50IHdhcyBtYWRlIGluIGxhdGUgMjAxMiBhbmQgd2FzIGZvciBhIDMwLWJ5LTMwIGRlZ3JlZSBzZWN0aW9uIG9mIGhpc3RvcmljYWwgQUlTIGRhdGEgdGhhdCBpbmNsdWRlZCB0aGUgcmVnaW9uIHN1cnJvdW5kaW5nIFJvc2UgQXRvbGwgaW4gQW1lcmljYW4gU2Ftb2EuIFRoZSBkYXRhIGluY2x1ZGUgQUlTIGxvbmcgYW5kIHVuY2hlY2tlZCByZXBvcnRzIGZvciBhIG9uZSB5ZWFyIHBlcmlvZDogQXVndXN0IDIwMTEgdGhyb3VnaCBtaWQtQXVndXN0IDIwMTIuIFRoZSByYXcsIG1vbnRobHkgR1BTIGZpbGVzIHdlcmUgbG9jYWxseSBjb252ZXJ0ZWQgdG8gTmV0Q0RGIGZvciB0aGUgUGFjSU9PUyBkYXRhIHNlcnZlcnMuIER1ZSB0byB2ZW5kb3IgY29uc3RyYWludHMsIHJlbGVhc2Ugb2YgdGhlIHJhdyBkYXRhIGlzIGxpbWl0ZWQuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxub2JzIChvYnNlcnZhdGlvbiwgMClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuc2hpcF9pZF9tbXNpIChzaGlwIGlkZW50aWZpY2F0aW9uIG51bWJlciAoTU1TSSksIDApXG5uYXZpZ2F0aW9uYWxfc3RhdHVzICgwKVxuc3BlZWRfb3Zlcl9ncm91bmQgKGt0cylcbmNvdXJzZV9vdmVyX2dyb3VuZCAoZGVnKVxudHJ1ZV9oZWFkaW5nIChkZWcpXG5yYXRlX29mX3R1cm4gKGRlZ3JlZXMgbWludXRlcy0xKVxucG9zaXRpb25fYWNjdXJhY3kgKDApXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvYWlzX3Jvc2VfMjAxMTIwMTJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2Fpc19yb3NlXzIwMTEyMDEyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2Fpc19yb3NlXzIwMTEyMDEyL2luZGV4Lmpzb24iLCAiaHR0cDovL3d3dy5uYXZjZW4udXNjZy5nb3YvP3BhZ2VOYW1lPUFJU21haW4iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYWlzX3Jvc2VfMjAxMTIwMTIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWFpc19yb3NlXzIwMTEyMDEyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlBhY2lmaWMgSXNsYW5kcyBPY2VhbiBPYnNlcnZpbmcgU3lzdGVtIChQYWNJT09TKSIsICJhaXNfcm9zZV8yMDExMjAxMiJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYWNvX2FkY3BfdGVtcCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hY29fYWRjcF90ZW1wLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkFMT0hBIENhYmxlZCBPYnNlcnZhdG9yeSAoQUNPKTogQWNvdXN0aWMgRG9wcGxlciBDdXJyZW50IFByb2ZpbGVyIChBRENQKTogVGVtcGVyYXR1cmUiLCAiVGhlIFVuaXZlcnNpdHkgb2YgSGF3YWlpJ3MgQUxPSEEgKFwiQSBMb25nLXRlcm0gT2xpZ290cm9waGljIEhhYml0YXQgQXNzZXNzbWVudFwiKSBDYWJsZWQgT2JzZXJ2YXRvcnkgKEFDTykgaXMgbG9jYXRlZCAxMDAga20gbm9ydGggb2YgdGhlIGlzbGFuZCBvZiBPYWh1LCBIYXdhaWkgKDIyIDQ1J04sIDE1OFcpIGluIHRoZSBOb3J0aCBQYWNpZmljIE9jZWFuLiBJdCBwcm92aWRlcyByZWFsLXRpbWUgb2NlYW5vZ3JhcGhpYyBvYnNlcnZhdGlvbnMgZnJvbSBhIGRlcHRoIG9mIGFib3V0IDQsODAwIG0gdmlhIGEgc3VibWFyaW5lIGZpYmVyIG9wdGljIGNhYmxlIHRoYXQgY29tZXMgYXNob3JlIGF0IE1ha2FoYSBvbiBPYWh1LiBUaGlzIGRhdGEgc2V0IHByb3ZpZGVzIG1lYXN1cmVtZW50cyBvZiBzZWEgd2F0ZXIgdGVtcGVyYXR1cmUgYXQgdGhlIEFDTyBhdCAxLjgzIG0gYWJvdmUgdGhlIG9jZWFuIGJvdHRvbSBmb3IgdGhlIG1vc3QgcmVjZW50IDcgZGF5cy5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb25fbmFtZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5kZXB0aCAobSlcbnNlYV93YXRlcl90ZW1wZXJhdHVyZSAoZGVncmVlX0NlbHNpdXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvYWNvX2FkY3BfdGVtcF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvYWNvX2FkY3BfdGVtcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hY29fYWRjcF90ZW1wL2luZGV4Lmpzb24iLCAiaHR0cDovL2Fjby1zc2RzLnNvZXN0Lmhhd2FpaS5lZHUiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYWNvX2FkY3BfdGVtcC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YWNvX2FkY3BfdGVtcCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJVbml2ZXJzaXR5IG9mIEhhd2FpaSIsICJhY29fYWRjcF90ZW1wIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hY29fYWRjcF92ZWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYWNvX2FkY3BfdmVsLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkFMT0hBIENhYmxlZCBPYnNlcnZhdG9yeSAoQUNPKTogQWNvdXN0aWMgRG9wcGxlciBDdXJyZW50IFByb2ZpbGVyIChBRENQKTogVmVsb2NpdHkiLCAiVGhlIFVuaXZlcnNpdHkgb2YgSGF3YWlpJ3MgQUxPSEEgKFwiQSBMb25nLXRlcm0gT2xpZ290cm9waGljIEhhYml0YXQgQXNzZXNzbWVudFwiKSBDYWJsZWQgT2JzZXJ2YXRvcnkgKEFDTykgaXMgbG9jYXRlZCAxMDAga20gbm9ydGggb2YgdGhlIGlzbGFuZCBvZiBPYWh1LCBIYXdhaWkgKDIyIDQ1J04sIDE1OFcpIGluIHRoZSBOb3J0aCBQYWNpZmljIE9jZWFuLiBJdCBwcm92aWRlcyByZWFsLXRpbWUgb2NlYW5vZ3JhcGhpYyBvYnNlcnZhdGlvbnMgZnJvbSBhIGRlcHRoIG9mIGFib3V0IDQsODAwIG0gdmlhIGEgc3VibWFyaW5lIGZpYmVyIG9wdGljIGNhYmxlIHRoYXQgY29tZXMgYXNob3JlIGF0IE1ha2FoYSBvbiBPYWh1LiBUaGlzIGRhdGEgc2V0IHByb3ZpZGVzIG1lYXN1cmVtZW50cyBvZiBvY2VhbiBjdXJyZW50IHZlbG9jaXR5IGF0IHRoZSBBQ08gZnJvbSBhIDI1MCBrSHogU29uVGVrIGFjb3VzdGljIGRvcHBsZXIgY3VycmVudCBwcm9maWxlciAoQURDUCkgYXQgMS44MyBtIGFib3ZlIHRoZSBvY2VhbiBib3R0b20gZm9yIHRoZSBtb3N0IHJlY2VudCA3IGRheXMuIFZlbG9jaXRpZXMgYXJlIGZsYWdnZWQgYmFkIGlmIHRoZSBhbXBsaXR1ZGUgaXMgZXhjZXNzaXZlbHkgbG93IG9yIGhpZ2guIEFuIGFtcGxpdHVkZSBpcyBoaWdoIGlmIGl0IGV4Y2VlZHMgdGhlIGF2ZXJhZ2Ugb2YgdGhlIHBpbmcgYmVmb3JlIGFuZCB0aGUgcGluZyBhZnRlciBieSAyMCBjb3VudHMuIEFuIGFtcGxpdHVkZSBpcyBsb3cgaWYgbGVzcyB0aGFuIDYgY291bnRzLiBBZnRlciB0aGlzIHRoZSB2ZWxvY2l0aWVzIGFyZSBmbGFnZ2VkIGJhZCBpZiB0aGUgYWJzb2x1dGUgZGV2aWF0aW9uIG9mIHRoZSB2ZXJ0aWNhbCB2ZWxvY2l0eSBmcm9tIGl0cyBlbnNlbWJsZSBtZWRpYW4gZXhjZWVkcyAwLjE1IG0vcyBvciBpZiBpdHMgdmFsdWUgaXMgbGVzcyB0aGFuIC0wLjI1IG0vcy5cblxuY2RtX2RhdGFfdHlwZSA9IFByb2ZpbGVcblZBUklBQkxFUzpcbnN0YXRpb25fbmFtZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChEZXB0aCBvZiBlYWNoIGxvY2F0aW9uLCBtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmVhc3R3YXJkX3NlYV93YXRlcl92ZWxvY2l0eSAoY3VycmVudCBlYXN0IGNvbXBvbmVudCwgbWV0ZXJzL3NlY29uZClcbm5vcnRod2FyZF9zZWFfd2F0ZXJfdmVsb2NpdHkgKGN1cnJlbnQgbm9ydGggY29tcG9uZW50LCBtZXRlcnMvc2Vjb25kKVxudXB3YXJkX3NlYV93YXRlcl92ZWxvY2l0eSAoY3VycmVudCB1cHdhcmQgY29tcG9uZW50LCBtZXRlcnMvc2Vjb25kKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2Fjb19hZGNwX3ZlbF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvYWNvX2FkY3BfdmVsX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2Fjb19hZGNwX3ZlbC9pbmRleC5qc29uIiwgImh0dHA6Ly9hY28tc3Nkcy5zb2VzdC5oYXdhaWkuZWR1IiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2Fjb19hZGNwX3ZlbC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YWNvX2FkY3BfdmVsJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlVuaXZlcnNpdHkgb2YgSGF3YWlpIiwgImFjb19hZGNwX3ZlbCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9kY1BKSlUiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9kY1BKSlUuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQU4gRVhQRVJJTUVOVEFMIERBVEFTRVQ6IFVuZGVyd2F5IFNlYSBTdXJmYWNlIFRlbXBlcmF0dXJlIGFuZCBTYWxpbml0eSBBYm9hcmQgdGhlIE9sZWFuZGVyLCAyMDA3LTIwMTAiLCAiVGhlIGRhdGEgYmVpbmcgc3VibWl0dGVkIHRvIE5PREMgY29udGFpbiBpbmZvcm1hdGlvbiBhYm91dCB0ZW1wZXJhdHVyZSBhbmQgc2FsaW5pdHkgb2J0YWluZWQgd2l0aCB0aGUgdXNlIG9mIHRoZXJtb3NhbGlub2dyYXBocyAoVFNHKSBpbnN0YWxsZWQgaW4gc2hpcHMgb2YgdGhlIE5PQUEgZmxlZXQgYW5kIG90aGVyIGNhcmdvIGFuZCBjcnVpc2Ugc2hpcHMuIFRoZSBkYXRhIGlzIHRyYW5zbWl0dGVkIHRvIEFPTUwvTk9BQSBpbiByZWFsLXRpbWUgYW5kIHN1Ym1pdHRlZCB0byBhIHF1YWxpdHkgY29udHJvbCBwcm9jZWR1cmUgZGV2ZWxvcGVkIGF0IEFPTUwgYmFzZWQgb24gdGhlIEdsb2JhbCBPY2VhbiBTdXJmYWNlIFVuZGVyd2F5IERhdGEgUGlsb3QgUHJvamVjdCAoR09TVUQpIHJlYWwtdGltZSBjb250cm9sIHRlc3QuIERhdGEgYXBwcm92ZWQgaW4gdGhlc2UgdGVzdHMgYXJlIHN1Ym1pdHRlZCB0byB0aGUgR1RTLiBUaGUgZGF0YSBzZXQgc3VibWl0dGVkIHRvIE5PREMgZm9yIGRpc3RyaWJ1dGlvbiBjb25zdGl0dXRlIHRoZSBjb21wbGV0ZSBkYXRhIHNldCByZWNlaXZlZCBieSBBT01MIHdpdGggdGhlIGNvcnJlc3BvbmRpbmcgZmxhZ3MgYWZ0ZXIgdGhlIHF1YWxpdHkgY29udHJvbC5cblxuY2RtX2RhdGFfdHlwZSA9IFRyYWplY3RvcnlcblZBUklBQkxFUzpcbmNhbGxTaWduIChDYWxsIFNpZ24pXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmludHAgKEludGVybmFsIFRTRyBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5zYWwgKFRTRyBQcmFjdGlhbCBTYWxpbml0eSwgUFNVKVxuY29uZCAoVFNHIENvbmR1Y3Rpdml0eSwgZGVncmVlX0MpXG5leHQgKFRoZXJtaXN0b3IgV2F0ZXIgVGVtcGVyYXR1cmUsIGRlZ3JlZXNfQ2Vsc2l1cylcbnNzdCAoU2VhIFN1cmZhY2UgVGVtcGVyYXR1cmUsIGRlZ3JlZXNfQ2Vsc2l1cylcbmZsYWdfYSAoUUMgZmxhZy1wbGF0Zm9ybSBpZGVudGlmaWNhdGlvbilcbmZsYWdfYiAoUUMgZmxhZy1pbXBvc3NpYmxlIGRhdGUpXG5mbGFnX2MgKFFDIGZsYWctaW1wb3NzaWJsZSBsb2NhdGlvbilcbmZsYWdfZCAoUUMgZmxhZy1wb3NpdGlvbiBvbiBsYW5kIHN0ZXApXG5mbGFnX2UgKFFDIGZsYWctaW1wb3NzaWJsZSBzcGVlZClcbmZsYWdfZiAoUUMgZmxhZy1nbG9iYWwgcmFuZ2VzKVxuZmxhZ19nIChRQyBmbGFnLXJlZ2lvbmFsIHJhbmdlcylcbmZsYWdfaCAoUUMgZmxhZy1zcGlrZSB0ZXN0KVxuZmxhZ19pIChRQyBmbGFnLWNvbnN0YW50IHZhbHVlKVxuZmxhZ19qIChRQyBmbGFnLWdyYWRpZW50IHRlc3QpXG5mbGFnX2sgKFFDIGZsYWctY2xpbWF0b2xvZ3kgYW5kIE5DRVAgd2Vla2x5IGFuYWx5c2lzKVxuZmxhZ19sIChRQyBmbGFnLWJ1ZGR5IGNoZWNrKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL25vZGNQSkpVX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9ub2RjUEpKVV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub2RjUEpKVS9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LmFvbWwubm9hYS5nb3YvcGhvZC90c2cvaW5kZXgucGhwIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vZGNQSkpVLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub2RjUEpKVSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE9BUiBBT01MIiwgIm5vZGNQSkpVIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2d0b3BwQVQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2d0b3BwQVQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZ3RvcHBBVC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJBbmltYWwgVGVsZW1ldHJ5IE5ldHdvcmsgKEFUTikiLCAiVGhlc2UgZGF0YSAodXBkYXRlZCBkYWlseSkgYXJlIGZyb20gdGhlIEFuaW1hbCBUZWxlbWV0cnkgTmV0d29yayAoQVROKSBwcm9ncmFtLiAgQmVndW4gYXMgb25lIG9mIHRoZSBmaWVsZCBwcm9qZWN0cyBpbiB0aGUgaW50ZXJuYXRpb25hbCBDZW5zdXMgb2YgTWFyaW5lIExpZmUsIHRoZSBQYWNpZmljLWZvY3VzZWQgVE9QUCAoVGFnZ2luZyBvZiBQYWNpZmljIFByZWRhdG9ycykgcHJvZ3JhbSB3YXMgYW4gaW50ZXJuYXRpb25hbCBtdWx0aWRpc2NpcGxpbmFyeSBjb2xsYWJvcmF0aW9uIG9mIG1vcmUgdGhhbiA3NSBzY2llbnRpc3RzIGZyb20gNyBuYXRpb25zLiAgT3ZlciB0aGUgZGVjYWRlIGJlZ2lubmluZyBpbiAyMDAwLCBUT1BQIHJlc2VhcmNoZXJzIGRlcGxveWVkIG1vcmUgdGhhbiA0LDMwMCBlbGVjdHJvbmljIHRhZ3Mgb24gMjMgZGlmZmVyZW50IHNwZWNpZXMgb2YgbWFyaW5lIGFuaW1hbHMgLSB5aWVsZGluZyBhIGRhdGFzZXQgb2YgbW9yZSB0aGFuIDMzNSwwMDAgdHJhY2tpbmcgZGF5cy4gVG8gbGVhcm4gbW9yZSBwbGVhc2UgdmlzaXQgaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9BVE4uXG5cbmNkbV9kYXRhX3R5cGUgPSBUcmFqZWN0b3J5XG5WQVJJQUJMRVM6XG5jb21tb25OYW1lIChDb21tb24gTmFtZSlcbnllYXJEZXBsb3llZCAoWWVhciBEZXBsb3llZClcbnByb2plY3RcbnRvcHBJRCAoVE9QUCBJRCAodW5pcXVlKSlcbnNlcmlhbE51bWJlciAoVGhlIFRhZydzIFNlcmlhbCBOdW1iZXIgKG5vdCB1bmlxdWUpKVxuaXNEcmlmdGVyIChJcyBEcmlmdGVyPylcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxuTEMgKExvY2F0aW9uIFF1YWxpdHkgQ29kZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ndG9wcEFUX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9ndG9wcEFUX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2d0b3BwQVQvaW5kZXguanNvbiIsICJodHRwczovL2d0b3BwLm9yZy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZ3RvcHBBVC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9Z3RvcHBBVCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbmltYWwgVGVsZW1ldHJ5IE5ldHdvcmsiLCAiZ3RvcHBBVCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJY3VmZXMuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkljdWZlcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJY3VmZXMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBDb250aW51b3VzIFVuZGVyd2F5IEZpc2gtRWdnIFNhbXBsZXIiLCAiU2FtcGxlcyBjb2xsZWN0ZWQgdXNpbmcgdGhlIENvbnRpbnVvdXMgVW5kZXJ3YXkgRmlzaC1FZ2cgU2FtcGxlciwga25vd24gYXMgQ1VGRVMuIFRoZSBkYXRhIGluY2x1ZGUgbnVtYmVycyBvZiBhbmNob3Z5LCBzYXJkaW5lLCBqYWNrIG1hY2tlcmVsLCBzcXVpZCwgaGFrZSwgYW5kIHVuaWRlbnRpZmllZCBmaXNoIGVnZ3MgY2FwdHVyZWQsIGFuZCBhc3NvY2lhdGVkIGVudmlyb25tZW50YWwuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxuc2FtcGxlX251bWJlclxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChTdGFydCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoU3RhcnQgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5zdGFydF90ZW1wZXJhdHVyZSAoZGVncmVlIEMpXG5zdGFydF9zYWxpbml0eSAocHN1KVxuc3RhcnRfd2luZF9zcGVlZCAoa25vdHMpXG5zdGFydF93aW5kX2RpcmVjdGlvbiAoZGVncmVlcylcbnN0YXJ0X3B1bXBfc3BlZWQgKE1eMyBwZXIgbWludXRlKVxuc3RvcF90aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc3RvcF9sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbnN0b3BfbG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5zdG9wX3RlbXBlcmF0dXJlIChkZWdyZWUgQylcbnN0b3Bfc2FsaW5pdHkgKHBzdSlcbnN0b3Bfd2luZF9zcGVlZCAoa25vdHMpXG5zdG9wX3dpbmRfZGlyZWN0aW9uIChkZWdyZWVzKVxuc3RvcF9wdW1wX3NwZWVkIChNXjMgcGVyIG1pbnV0ZSlcbnNhcmRpbmVfZWdncyAoY291bnQpXG5hbmNob3Z5X2VnZ3MgKGNvdW50KVxuamFja19tYWNrZXJlbF9lZ2dzIChjb3VudClcbmhha2VfZWdncyAoY291bnQpXG5zcXVpZF9lZ2dzIChjb3VudClcbm90aGVyX2Zpc2hfZWdncyAoY291bnQpXG5jb21tZW50c1xucmVzb3J0ZWRcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJY3VmZXNfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRkljdWZlc19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJY3VmZXMvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWN1ZmVzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJY3VmZXMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJY3VmZXMiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWNydWlzZXMuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkljcnVpc2VzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkljcnVpc2VzLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgQ3J1aXNlcyIsICJDcnVpc2VzIHVzaW5nIG9uZSBvciBtb3JlIHNoaXBzIGNvbmR1Y3RlZCBhcyBwYXJ0IG9mIHRoZSBDYWxpZm9ybmlhIENvb3BlcmF0aXZlIE9jZWFuaWMgRmlzaGVyaWVzIEludmVzdGlnYXRpb25zIChDYWxDT0ZJKSBwcm9ncmFtIGFuZCBvdGhlciByZWxhdGVkIGNydWlzZXMgY29uZHVjdGVkIGJ5IHRoZSBOT0FBIFNvdXRod2VzdCBGaXNoZXJpZXMgU2NpZW5jZSBDZW50ZXIgZnJvbSAxOTUxIHRvIHByZXNlbnQuIE11bHRpLXB1cnBvc2UgY3J1aXNlcyBlLmcuLCBDYWxDT0ZJIGFuZCB0cmF3bGluZywgaW5jbHVkZSBhIGxpc3RpbmcgZm9yIGVhY2ggY3J1aXNlIHR5cGUuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxueWVhclxubW9udGhcbmNydWlzZV90eXBlXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRkljcnVpc2VzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRkljcnVpc2VzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJY3J1aXNlcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRkljcnVpc2VzIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkllZ2djbnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkllZ2djbnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWVnZ2NudC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIEVnZyBDb3VudHMiLCAiRmlzaCBlZ2cgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBlZ2dzIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gZWdncyB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiRWdnIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGVnZ3Mgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGUgKENhbENPSSBTcGVjaWVzIENvZGUpXG5lZ2dfY291bnQgKHJhdyBjb3VudClcbmVnZ3NfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGVnZ3MgZm9yIG9ibGlxdWUgdG93cywgRWdncyBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5lZ2dzXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGVnZ3MgZm9yIG1hbnRhIHRvd3MsIEVnZ3MgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRkllZ2djbnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRkllZ2djbnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWVnZ2NudC9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJZWdnY250LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJZWdnY250JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWVnZ2NudCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJZWdnY250cG9zLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJZWdnY250cG9zIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkllZ2djbnRwb3MuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBFZ2cgQ291bnRzIFBvc2l0aXZlIFRvd3MiLCAiRmlzaCBlZ2cgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBlZ2dzIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgZWdncyB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlciwgaS5lLiwgbm8gXCJ6ZXJvXCIgdG93cy4gVGhlIFwiRWdnIENvdW50c1wiIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGkuZS4sIGJvdGggcG9zaXRpdmUgYW5kIG5lZ2F0aXZlIHRvd3MuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmVnZ19jb3VudCAocmF3IGNvdW50KVxuZWdnc18xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgZWdncyBmb3Igb2JsaXF1ZSB0b3dzLCBFZ2dzIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmVnZ3NfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgZWdncyBmb3IgbWFudGEgdG93cywgRWdncyBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWVnZ2NudHBvc19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWVnZ2NudHBvc19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJZWdnY250cG9zL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRkllZ2djbnRwb3MucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRkllZ2djbnRwb3Mmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJZWdnY250cG9zIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkllZ2dzdGcuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkllZ2dzdGciLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWVnZ3N0Zy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIEVnZyBTdGFnZXMiLCAiRWdnIG1vcnBob2xvZ2ljYWwgZGV2ZWxvcG1lbnRhbCBzdGFnZSBmb3IgZWdncyBvZiBzZWxlY3RlZCBzcGVjaWVzIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cy4gU2VxdWVudGlhbCBkZXZlbG9wbWVudGFsIHN0YWdlcyBhcmUgZGVzY3JpYmVkIGJ5IE1vc2VyIGFuZCBBaGxzdHJvbSAoMTk4NTsgc2VlIHRoZSBpbmZvIHVybCByZWZlcmVuY2VzIHNlY3Rpb24pLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZSAoVG93IFR5cGUgTmFtZSlcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxuZWdnX3N0YWdlXG5lZ2dfc3RhZ2VfY291bnQgKFJhdyBjb3VudCBvZiBlZ2dzIGluIHRoZSBzdGFnZSlcbmVnZ3NfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGVnZ3MgZm9yIG9ibGlxdWUgdG93cywgRWdncyBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5lZ2dzXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGVnZ3MgZm9yIG1hbnRhIHRvd3MsIEVnZ3MgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRkllZ2dzdGdfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRkllZ2dzdGdfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWVnZ3N0Zy9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJZWdnc3RnLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJZWdnc3RnJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWVnZ3N0ZyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250cG9zLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250cG9zIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRwb3MuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3MiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBlZ2dzIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkgLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlciwgaS5lLiwgbm8gXCJ6ZXJvXCIgdG93cy4gVGhlIFwiTGFydmFlIENvdW50c1wiIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGkuZS4sIGJvdGggcG9zaXRpdmUgYW5kIG5lZ2F0aXZlIHRvd3MuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGluIHRoZSBzaXplIGNsYXNzIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgaW4gdGhlIHNpemUgY2xhc3MgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250cG9zX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250cG9zX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnRwb3MvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudHBvcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudHBvcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnRwb3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEF0b0FNLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250QXRvQU0iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEF0b0FNLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBBIHRvIEFNIiwgIkZpc2ggbGFydmFlIGNvdW50cyBhbmQgc3RhbmRhcmRpemVkIGNvdW50cyBmb3IgbGFydmFlIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzLCBpLmUuLCBuZWdhdGl2ZSB0b3dzLiBUaGUgXCJMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3NcIiB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzIHNlbGVjdGVkIGJ5IHRoZSB1c2VyLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZVxubmV0X3R5cGVcbnRvd19udW1iZXJcbm5ldF9sb2NhdGlvblxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5zYW1wbGVfcXVhbGl0eVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbnRpbWUgKFN0YXJ0IFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zY2llbnRpZmljX25hbWVcbmNvbW1vbl9uYW1lXG5pdGlzX3RzbiAoSW50ZXJncmF0ZWQgVGF4b21vbWljIEluZm9ybWF0aW9uIFN5c3RlbSBUYXhvbm9taWMgU2VyaWFsIE51bWJlcilcbmNhbGNvZmlfc3BlY2llc19jb2RlXG5sYXJ2YWVfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUpXG5sYXJ2YWVfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3Igb2JsaXF1ZSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5sYXJ2YWVfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydmNudEF0b0FNX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250QXRvQU1faXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudEF0b0FNL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZjbnRBdG9BTS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudEF0b0FNJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudEF0b0FNIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRBTnRvQVIuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRBTnRvQVIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEFOdG9BUi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIExhcnZhZSBDb3VudHMsIFNjaWVudGlmaWMgTmFtZXMgQU4gdG8gQVIiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250QU50b0FSX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250QU50b0FSX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnRBTnRvQVIvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudEFOdG9BUi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudEFOdG9BUiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnRBTnRvQVIiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEFTdG9CQS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEFTdG9CQSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250QVN0b0JBLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBBUyB0byBCQSIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRBU3RvQkFfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRBU3RvQkFfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudEFTdG9CQS9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250QVN0b0JBLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250QVN0b0JBJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudEFTdG9CQSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250QkNFdG9CWi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEJDRXRvQloiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEJDRXRvQlouZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIEJDRSB0byBCWiIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRCQ0V0b0JaX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250QkNFdG9CWl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250QkNFdG9CWi9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250QkNFdG9CWi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudEJDRXRvQlomc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250QkNFdG9CWiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250Q3RvQ0Uuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRDdG9DRSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250Q3RvQ0UuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIEMgdG8gQ0UiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250Q3RvQ0VfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRDdG9DRV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250Q3RvQ0UvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudEN0b0NFLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250Q3RvQ0Umc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250Q3RvQ0UiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudENEdG9DSC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudENEdG9DSCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250Q0R0b0NILmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBDRCB0byBDSCIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRDRHRvQ0hfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRDRHRvQ0hfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudENEdG9DSC9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250Q0R0b0NILnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250Q0R0b0NIJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudENEdG9DSCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250Q0l0b0NPLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250Q0l0b0NPIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRDSXRvQ08uZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIENJIHRvIENPIiwgIkZpc2ggbGFydmFlIGNvdW50cyBhbmQgc3RhbmRhcmRpemVkIGNvdW50cyBmb3IgbGFydmFlIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzLCBpLmUuLCBuZWdhdGl2ZSB0b3dzLiBUaGUgXCJMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3NcIiB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzIHNlbGVjdGVkIGJ5IHRoZSB1c2VyLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZVxubmV0X3R5cGVcbnRvd19udW1iZXJcbm5ldF9sb2NhdGlvblxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5zYW1wbGVfcXVhbGl0eVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbnRpbWUgKFN0YXJ0IFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zY2llbnRpZmljX25hbWVcbmNvbW1vbl9uYW1lXG5pdGlzX3RzbiAoSW50ZXJncmF0ZWQgVGF4b21vbWljIEluZm9ybWF0aW9uIFN5c3RlbSBUYXhvbm9taWMgU2VyaWFsIE51bWJlcilcbmNhbGNvZmlfc3BlY2llc19jb2RlXG5sYXJ2YWVfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUpXG5sYXJ2YWVfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3Igb2JsaXF1ZSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5sYXJ2YWVfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydmNudENJdG9DT19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydmNudENJdG9DT19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250Q0l0b0NPL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZjbnRDSXRvQ08ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZjbnRDSXRvQ08mc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250Q0l0b0NPIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRDUHRvREUuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRDUHRvREUiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudENQdG9ERS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIExhcnZhZSBDb3VudHMsIFNjaWVudGlmaWMgTmFtZXMgQ1AgdG8gREUiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250Q1B0b0RFX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250Q1B0b0RFX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnRDUHRvREUvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudENQdG9ERS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudENQdG9ERSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnRDUHRvREUiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudERIdG9FQy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudERIdG9FQyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250REh0b0VDLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBESCB0byBFQyIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRESHRvRUNfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRESHRvRUNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudERIdG9FQy9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250REh0b0VDLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250REh0b0VDJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudERIdG9FQyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250RUR0b0VVLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250RUR0b0VVIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRFRHRvRVUuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIEVEIHRvIEVVIiwgIkZpc2ggbGFydmFlIGNvdW50cyBhbmQgc3RhbmRhcmRpemVkIGNvdW50cyBmb3IgbGFydmFlIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzLCBpLmUuLCBuZWdhdGl2ZSB0b3dzLiBUaGUgXCJMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3NcIiB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzIHNlbGVjdGVkIGJ5IHRoZSB1c2VyLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZVxubmV0X3R5cGVcbnRvd19udW1iZXJcbm5ldF9sb2NhdGlvblxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5zYW1wbGVfcXVhbGl0eVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbnRpbWUgKFN0YXJ0IFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zY2llbnRpZmljX25hbWVcbmNvbW1vbl9uYW1lXG5pdGlzX3RzbiAoSW50ZXJncmF0ZWQgVGF4b21vbWljIEluZm9ybWF0aW9uIFN5c3RlbSBUYXhvbm9taWMgU2VyaWFsIE51bWJlcilcbmNhbGNvZmlfc3BlY2llc19jb2RlXG5sYXJ2YWVfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUpXG5sYXJ2YWVfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3Igb2JsaXF1ZSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5sYXJ2YWVfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydmNudEVEdG9FVV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydmNudEVEdG9FVV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250RUR0b0VVL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZjbnRFRHRvRVUucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZjbnRFRHRvRVUmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250RUR0b0VVIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRFVnRvR04uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRFVnRvR04iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEVWdG9HTi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIExhcnZhZSBDb3VudHMsIFNjaWVudGlmaWMgTmFtZXMgRVYgdG8gR04iLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250RVZ0b0dOX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250RVZ0b0dOX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnRFVnRvR04vaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudEVWdG9HTi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudEVWdG9HTiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnRFVnRvR04iXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEdPdG9IQS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEdPdG9IQSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250R090b0hBLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBHTyB0byBIQSIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRHT3RvSEFfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRHT3RvSEFfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudEdPdG9IQS9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250R090b0hBLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250R090b0hBJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudEdPdG9IQSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250SEJ0b0hJLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250SEJ0b0hJIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRIQnRvSEkuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIEhCIHRvIEhJIiwgIkZpc2ggbGFydmFlIGNvdW50cyBhbmQgc3RhbmRhcmRpemVkIGNvdW50cyBmb3IgbGFydmFlIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzLCBpLmUuLCBuZWdhdGl2ZSB0b3dzLiBUaGUgXCJMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3NcIiB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzIHNlbGVjdGVkIGJ5IHRoZSB1c2VyLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZVxubmV0X3R5cGVcbnRvd19udW1iZXJcbm5ldF9sb2NhdGlvblxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5zYW1wbGVfcXVhbGl0eVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbnRpbWUgKFN0YXJ0IFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zY2llbnRpZmljX25hbWVcbmNvbW1vbl9uYW1lXG5pdGlzX3RzbiAoSW50ZXJncmF0ZWQgVGF4b21vbWljIEluZm9ybWF0aW9uIFN5c3RlbSBUYXhvbm9taWMgU2VyaWFsIE51bWJlcilcbmNhbGNvZmlfc3BlY2llc19jb2RlXG5sYXJ2YWVfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUpXG5sYXJ2YWVfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3Igb2JsaXF1ZSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5sYXJ2YWVfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydmNudEhCdG9ISV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydmNudEhCdG9ISV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250SEJ0b0hJL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZjbnRIQnRvSEkucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZjbnRIQnRvSEkmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250SEJ0b0hJIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRISnRvSUQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRISnRvSUQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEhKdG9JRC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIExhcnZhZSBDb3VudHMsIFNjaWVudGlmaWMgTmFtZXMgSEogdG8gSUQiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250SEp0b0lEX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250SEp0b0lEX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnRISnRvSUQvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudEhKdG9JRC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudEhKdG9JRCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnRISnRvSUQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudElFdG9MQS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudElFdG9MQSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250SUV0b0xBLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBJRSB0byBMQSIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRJRXRvTEFfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRJRXRvTEFfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudElFdG9MQS9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250SUV0b0xBLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250SUV0b0xBJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudElFdG9MQSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250TEJ0b0xJLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250TEJ0b0xJIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRMQnRvTEkuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIExCIHRvIExJIiwgIkZpc2ggbGFydmFlIGNvdW50cyBhbmQgc3RhbmRhcmRpemVkIGNvdW50cyBmb3IgbGFydmFlIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzLCBpLmUuLCBuZWdhdGl2ZSB0b3dzLiBUaGUgXCJMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3NcIiB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzIHNlbGVjdGVkIGJ5IHRoZSB1c2VyLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZVxubmV0X3R5cGVcbnRvd19udW1iZXJcbm5ldF9sb2NhdGlvblxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5zYW1wbGVfcXVhbGl0eVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbnRpbWUgKFN0YXJ0IFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zY2llbnRpZmljX25hbWVcbmNvbW1vbl9uYW1lXG5pdGlzX3RzbiAoSW50ZXJncmF0ZWQgVGF4b21vbWljIEluZm9ybWF0aW9uIFN5c3RlbSBUYXhvbm9taWMgU2VyaWFsIE51bWJlcilcbmNhbGNvZmlfc3BlY2llc19jb2RlXG5sYXJ2YWVfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUpXG5sYXJ2YWVfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3Igb2JsaXF1ZSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5sYXJ2YWVfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydmNudExCdG9MSV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydmNudExCdG9MSV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250TEJ0b0xJL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZjbnRMQnRvTEkucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZjbnRMQnRvTEkmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250TEJ0b0xJIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRMSnRvTUEuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRMSnRvTUEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudExKdG9NQS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIExhcnZhZSBDb3VudHMsIFNjaWVudGlmaWMgTmFtZXMgTEogdG8gTUEiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250TEp0b01BX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250TEp0b01BX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnRMSnRvTUEvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudExKdG9NQS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudExKdG9NQSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnRMSnRvTUEiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudE1CdG9NTy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudE1CdG9NTyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250TUJ0b01PLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBNQiB0byBNTyIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRNQnRvTU9fZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRNQnRvTU9faXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudE1CdG9NTy9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250TUJ0b01PLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250TUJ0b01PJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudE1CdG9NTyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250TVB0b05BLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250TVB0b05BIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRNUHRvTkEuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIE1QIHRvIE5BIiwgIkZpc2ggbGFydmFlIGNvdW50cyBhbmQgc3RhbmRhcmRpemVkIGNvdW50cyBmb3IgbGFydmFlIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzLCBpLmUuLCBuZWdhdGl2ZSB0b3dzLiBUaGUgXCJMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3NcIiB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzIHNlbGVjdGVkIGJ5IHRoZSB1c2VyLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZVxubmV0X3R5cGVcbnRvd19udW1iZXJcbm5ldF9sb2NhdGlvblxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5zYW1wbGVfcXVhbGl0eVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbnRpbWUgKFN0YXJ0IFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zY2llbnRpZmljX25hbWVcbmNvbW1vbl9uYW1lXG5pdGlzX3RzbiAoSW50ZXJncmF0ZWQgVGF4b21vbWljIEluZm9ybWF0aW9uIFN5c3RlbSBUYXhvbm9taWMgU2VyaWFsIE51bWJlcilcbmNhbGNvZmlfc3BlY2llc19jb2RlXG5sYXJ2YWVfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUpXG5sYXJ2YWVfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3Igb2JsaXF1ZSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5sYXJ2YWVfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydmNudE1QdG9OQV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydmNudE1QdG9OQV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250TVB0b05BL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZjbnRNUHRvTkEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZjbnRNUHRvTkEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250TVB0b05BIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnROQnRvT0wuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnROQnRvT0wiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudE5CdG9PTC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIExhcnZhZSBDb3VudHMsIFNjaWVudGlmaWMgTmFtZXMgTkIgdG8gT0wiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250TkJ0b09MX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250TkJ0b09MX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnROQnRvT0wvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudE5CdG9PTC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudE5CdG9PTCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnROQnRvT0wiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudE9NdG9PWC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudE9NdG9PWCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250T010b09YLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBPTSB0byBPWCIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRPTXRvT1hfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRPTXRvT1hfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudE9NdG9PWC9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250T010b09YLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250T010b09YJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudE9NdG9PWCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250T1l0b1BJLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250T1l0b1BJIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRPWXRvUEkuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIE9ZIHRvIFBJIiwgIkZpc2ggbGFydmFlIGNvdW50cyBhbmQgc3RhbmRhcmRpemVkIGNvdW50cyBmb3IgbGFydmFlIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzLCBpLmUuLCBuZWdhdGl2ZSB0b3dzLiBUaGUgXCJMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3NcIiB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzIHNlbGVjdGVkIGJ5IHRoZSB1c2VyLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZVxubmV0X3R5cGVcbnRvd19udW1iZXJcbm5ldF9sb2NhdGlvblxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5zYW1wbGVfcXVhbGl0eVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbnRpbWUgKFN0YXJ0IFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zY2llbnRpZmljX25hbWVcbmNvbW1vbl9uYW1lXG5pdGlzX3RzbiAoSW50ZXJncmF0ZWQgVGF4b21vbWljIEluZm9ybWF0aW9uIFN5c3RlbSBUYXhvbm9taWMgU2VyaWFsIE51bWJlcilcbmNhbGNvZmlfc3BlY2llc19jb2RlXG5sYXJ2YWVfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUpXG5sYXJ2YWVfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3Igb2JsaXF1ZSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5sYXJ2YWVfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydmNudE9ZdG9QSV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydmNudE9ZdG9QSV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250T1l0b1BJL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZjbnRPWXRvUEkucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZjbnRPWXRvUEkmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250T1l0b1BJIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRQTHRvUE8uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRQTHRvUE8iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFBMdG9QTy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIExhcnZhZSBDb3VudHMsIFNjaWVudGlmaWMgTmFtZXMgUEwgdG8gUE8iLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250UEx0b1BPX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250UEx0b1BPX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnRQTHRvUE8vaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudFBMdG9QTy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudFBMdG9QTyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnRQTHRvUE8iXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFBQdG9QWi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFBQdG9QWiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250UFB0b1BaLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBQUCB0byBQWiIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRQUHRvUFpfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRQUHRvUFpfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudFBQdG9QWi9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250UFB0b1BaLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250UFB0b1BaJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudFBQdG9QWiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250UXRvU0Euc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRRdG9TQSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250UXRvU0EuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIFEgdG8gU0EiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250UXRvU0FfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRRdG9TQV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250UXRvU0EvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudFF0b1NBLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250UXRvU0Emc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250UXRvU0EiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFNCdG9TQy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFNCdG9TQyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250U0J0b1NDLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBTQiB0byBTQyIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRTQnRvU0NfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRTQnRvU0NfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudFNCdG9TQy9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250U0J0b1NDLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250U0J0b1NDJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudFNCdG9TQyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250U0R0b1NJLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250U0R0b1NJIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRTRHRvU0kuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIFNEIHRvIFNJIiwgIkZpc2ggbGFydmFlIGNvdW50cyBhbmQgc3RhbmRhcmRpemVkIGNvdW50cyBmb3IgbGFydmFlIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzLCBpLmUuLCBuZWdhdGl2ZSB0b3dzLiBUaGUgXCJMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3NcIiB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzIHNlbGVjdGVkIGJ5IHRoZSB1c2VyLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZVxubmV0X3R5cGVcbnRvd19udW1iZXJcbm5ldF9sb2NhdGlvblxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5zYW1wbGVfcXVhbGl0eVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbnRpbWUgKFN0YXJ0IFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zY2llbnRpZmljX25hbWVcbmNvbW1vbl9uYW1lXG5pdGlzX3RzbiAoSW50ZXJncmF0ZWQgVGF4b21vbWljIEluZm9ybWF0aW9uIFN5c3RlbSBUYXhvbm9taWMgU2VyaWFsIE51bWJlcilcbmNhbGNvZmlfc3BlY2llc19jb2RlXG5sYXJ2YWVfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUpXG5sYXJ2YWVfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3Igb2JsaXF1ZSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5sYXJ2YWVfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydmNudFNEdG9TSV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydmNudFNEdG9TSV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250U0R0b1NJL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZjbnRTRHRvU0kucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZjbnRTRHRvU0kmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250U0R0b1NJIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRTSnRvU1Quc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRTSnRvU1QiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFNKdG9TVC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIExhcnZhZSBDb3VudHMsIFNjaWVudGlmaWMgTmFtZXMgU0ogdG8gU1QiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250U0p0b1NUX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250U0p0b1NUX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnRTSnRvU1QvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudFNKdG9TVC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudFNKdG9TVCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnRTSnRvU1QiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFNVdG9URS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFNVdG9URSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250U1V0b1RFLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBTVSB0byBURSIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRTVXRvVEVfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRTVXRvVEVfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudFNVdG9URS9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250U1V0b1RFLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250U1V0b1RFJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudFNVdG9URSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250VEZ0b1Uuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRURnRvVSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250VEZ0b1UuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIFRGIHRvIFUiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250VEZ0b1VfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRURnRvVV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250VEZ0b1UvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudFRGdG9VLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250VEZ0b1Umc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250VEZ0b1UiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFZ0b1ouc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRWdG9aIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRWdG9aLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBWIHRvIFoiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250VnRvWl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydmNudFZ0b1pfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudFZ0b1ovaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudFZ0b1oucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZjbnRWdG9aJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudFZ0b1oiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydnNpei5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydnNpeiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2c2l6LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIFNpemVzIiwgIlNpemUgZGF0YSBmb3Igc2VsZWN0ZWQgbGFydmFsIGZpc2ggY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZSAoVG93IFR5cGUgTmFtZSlcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX3NpemUgKFRvdGFsIGxlbmd0aCBvZiB0aGUgbGFydmFlLCBtbSlcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGluIHRoZSBzaXplIGNsYXNzIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2c2l6X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2c2l6X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZzaXovaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydnNpei5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydnNpeiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZzaXoiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydnN0Zy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydnN0ZyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2c3RnLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIFN0YWdlcyIsICJEZXZlbG9wbWVudGFsIHN0YWdlcyAoeW9sayBzYWMsIHByZWZsZXhpb24sIGZsZXhpb24sIHBvc3RmbGV4aW9uLCBvciB0cmFuc2Zvcm1hdGlvbikgb2Ygc2VsZWN0ZWQgZmlzaCBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZSAoVG93IFR5cGUgTmFtZSlcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX3N0YWdlXG5sYXJ2YWVfc3RhZ2VfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUgaW4gdGhlIHN0YWdlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgaW4gdGhlIHN0YWdlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgaW4gdGhlIHN0YWdlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydnN0Z19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydnN0Z19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2c3RnL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZzdGcucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZzdGcmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2c3RnIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZE5PQUFoeWRyb3Muc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZE5PQUFoeWRyb3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkTk9BQWh5ZHJvcy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIE5PQUFIeWRyb3MiLCAiSHlkcm9ncmFwaGljIGRhdGEgY29sbGVjdGVkIGJ5IGJ1Y2tldCwgQ1RELCBvciAxMC1tIE5pc2tpbiBib3R0bGUgYXMgcGFydCBvZiBDYWxDT0ZJIGFuZCByZWxhdGVkIGNydWlzZXMuIE5vdGUgdGhhdCBtb3N0IG94eWdlbiBhbmQgc2FsaW5pdHkgdmFsdWVzIGluIHRoaXMgdGFibGUgaGF2ZSBub3QgYmVlbiBjYWxpYnJhdGVkIHdpdGggd2F0ZXIgc2FtcGxlcy4gTW9zdCB1c2VycyB3aWxsIHdhbnQgdG8gdXNlIHRoZSBTY3JpcHBzIGh5ZHJvZ3JhcGhpYyBkYXRhIGluc3RlYWQuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRpbWUgKEVzdGltYXRlZCBkYXRldGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmNhc3RfdHlwZVxuc3RhbmRhcmRfZGVwdGggKG1ldGVycylcbnRlbXBlcmF0dXJlIChXYXRlciBUZW1wZXJhdHVyZSwgZGVncmVlIEMpXG5zYWxpbml0eSAocHN1KVxuZGVuc2l0eSAoV2F0ZXIgRGVuc2l0eSwgMTAwMCooZy9sIC0gMSkpXG5veHlnZW4gKERpc3NvbHZlZCBPeHlnZW4gQ29udGVudCwgbWwvbClcbmR5bmFtaWNfaGVpZ2h0IChkeW5hbWljIG1ldGVyKVxucGVyY2VudF9zYXR1cmF0aW9uIChQZXJjZW50IE94eWdlbiBzYXR1cmF0aW9uLCAlKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmROT0FBaHlkcm9zX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmROT0FBaHlkcm9zX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZE5PQUFoeWRyb3MvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkTk9BQWh5ZHJvcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkTk9BQWh5ZHJvcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZE5PQUFoeWRyb3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2lvY2FsY29maUh5ZHJvQm90dGxlLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9zaW9jYWxjb2ZpSHlkcm9Cb3R0bGUiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2lvY2FsY29maUh5ZHJvQm90dGxlLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgU0lPIEh5ZHJvZ3JhcGhpYyBCb3R0bGUgRGF0YSIsICJTSU8gSHlkcm9ncmFwaGljIGRhdGFcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jc3RfY250IChDYXN0IENvdW50KVxuYnRsX2NudCAoQm90dGxlIENvdW50KVxuc3RhX2lkIChMaW5lIGFuZCBTdGF0aW9uKVxuZGVwdGhfaWQgKEJvdHRsZSBJZGVudGlmaWVyKVxuZGVwdGhtIChCb3R0bGUgRGVwdGgsIG1ldGVycylcbnRfZGVnYyAoVGVtcGVyYXR1cmUsIGRlZ3JlZSBDKVxuc2FsaW5pdHkgKHBzdSlcbm8ybWxfbCAoTWVhc3VyZWQgT3h5Z2VuLCBtbC9MIG9mIHNlYXdhdGVyKVxuc3RoZXRhIChQb3RlbnRpYWwgRGVuc2l0eSBvZiB3YXRlcilcbmJ0bG51bSAoQm90dGxlIE51bWJlcilcbnJlY2luZCAoRGF0YSBEZXNjcmlwdG9yIENvZGUpXG50X3ByZWMgKFRlbXBlcmF0dXJlIFByZWNpc2lvbilcbnRfcXVhbCAoVGVtcGVyYXR1cmUgUXVhbGl0eSlcbnNfcHJlYyAoU2FsaW5pdHkgUHJlY2lzaW9uKVxuc19xdWFsIChTYWxpbml0eSBRdWFsaXR5KVxucF9xdWFsIChQcmVzc3VyZSBRdWFsaXR5KVxub19xdWFsIChPeHlnZW4gUHJlY2lzaW9uKVxuc3RodGFxIChQb3RlbnRpYWwgRGVuc2l0eSBRdWFsaXR5KVxubzJzYXRxIChPeHlnZW4gc2F0dXJhdGlvbiBRdWFsaXR5KVxuY2hsb3JhIChDaGxvcm9waHlsbC1hLCB1Zy9MIG9mIHNlYXdhdGVyKVxuY2hscXVhIChDaGxvcm9waHlsbC1hIHF1YWxpdHkpXG5waGFlb3AgKFBoYWVvcGlnbWVudCBDb25jZW50cmF0aW9uLCB1Zy9MIG9mIHNlYXdhdGVyKVxucGhhcXVhIChQaGFlb3BpZ21lbnRzIHF1YWxpdHkpXG5wbzR1ZyAoTWVhc3VyZWQgUGhvc3BoYXRlIENvbmNlbnRyYXRpb24sIHVNL0wgb2Ygc2Vhd2F0ZXIpXG5wbzRxIChQaG9zcGhhdGUgcXVhbGl0eSlcbnNpbzN1ZyAoTWVhc3VyZWQgU2lsaWNhdGUgY29uY2VudHJhdGlvbiwgdU0vTCBvZiBzZWF3YXRlcilcbnNpbzNxdSAoU2lsaWNhdGUgcXVhbGl0eSlcbi4uLiAoMzMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2lvY2FsY29maUh5ZHJvQm90dGxlX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9zaW9jYWxjb2ZpSHlkcm9Cb3R0bGVfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vc2lvY2FsY29maUh5ZHJvQm90dGxlL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9jYWxjb2ZpLm9yZy9jY2RhdGEvZGF0YS1mb3JtYXRzLzc3LWRhdGFiYXNlLXRhYmxlcy5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3Npb2NhbGNvZmlIeWRyb0JvdHRsZS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9c2lvY2FsY29maUh5ZHJvQm90dGxlJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlVDU0QgU0lPIiwgInNpb2NhbGNvZmlIeWRyb0JvdHRsZSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9zaW9jYWxjb2ZpSHlkcm9Cb3R0bGVSZXBvcnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3Npb2NhbGNvZmlIeWRyb0JvdHRsZVJlcG9ydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9zaW9jYWxjb2ZpSHlkcm9Cb3R0bGVSZXBvcnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBTSU8gSHlkcm9ncmFwaGljIEJvdHRsZSBSZXBvcnQgZGF0YSIsICJTSU8gSHlkcm9ncmFwaGljIGRhdGFcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jc3RfY250IChDYXN0IENvdW50KVxuYnRsX2NudCAoQm90dGxlIENvdW50KVxuc3RhX2lkIChMaW5lIGFuZCBTdGF0aW9uKVxuZGVwdGhfaWQgKEJvdHRsZSBJZGVudGlmaWVyKVxucl9kZXB0aCAoUmVwb3J0ZWQgQm90dGxlIERlcHRoLCBtZXRlcnMpXG5yX3RlbXAgKFJlcG9ydGVkIFRlbXBlcmF0dXJlLCBkZWdyZWUgQylcbnJfcG90ZW1wIChSZXBvcnRlZCBQb3RlbnRpYWwgVGVtcGVyYXR1cmUsIGRlZ3JlZSBDKVxucl9zYWxpbml0eSAoUmVwb3J0ZWQgU2FsaW5pdHksIHBzdSlcbnJfc2lnbWEgKFJlcG9ydGVkIFBvdGVudGlhbCBEZW5zaXR5IG9mIHdhdGVyKVxucl9zdmEgKFJlcG9ydGVkIFNwZWNpZmljIFZvbHVtZSBBbm9tYWx5LCBkZWdyZWUgQylcbnJfZHluaHQgKFJlcG9ydGVkIER5bmFtaWMgSGVpZ2h0LCBkeW5hbWljIG1ldGVycylcbnJfbzIgKFJlcG9ydGVkIE94eWdlbiwgbWwvTCBvZiBzZWF3YXRlcilcbnJfbzJzYXQgKFJlcG9ydGVkIE94eWdlbiBTYXR1cmF0aW9uLCAlKVxucl9zaW8zIChSZXBvcnRlZCBTaWxpY2F0ZSBDb25jZW50cmF0aW9uLCB1TS9MIG9mIHNlYXdhdGVyKVxucl9wbzQgKFJlcG9ydGVkIFBob3NwaGF0ZSBDb25jZW50cmF0aW9uLCB1TS9MIG9mIHNlYXdhdGVyKVxucl9ubzMgKFJlcG9ydGVkIE5pdHJhdGUgQ29uY2VudHJhdGlvbiwgdU0vTCBvZiBzZWF3YXRlcilcbnJfbm8yIChSZXBvcnRlZCBOaXRyaXRlIENvbmNlbnRyYXRpb24sIHVNL0wgb2Ygc2Vhd2F0ZXIpXG5yX2NobGEgKFJlcG9ydGVkIENobG9yb3BoeWxsLWEsIHVnL0wgb2Ygc2Vhd2F0ZXIpXG5yX3BoYWVvIChSZXBvcnRlZCBQaGFlb3BoeXRpbiwgdWcvTCBvZiBzZWF3YXRlcilcbnJfcHJlcyAoUmVwb3J0ZWQgUHJlc3N1cmUsIGRiKVxucl9zYW1wIChTYW1wbGUgTnVtYmVyKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2lvY2FsY29maUh5ZHJvQm90dGxlUmVwb3J0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9zaW9jYWxjb2ZpSHlkcm9Cb3R0bGVSZXBvcnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vc2lvY2FsY29maUh5ZHJvQm90dGxlUmVwb3J0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9jYWxjb2ZpLm9yZy9jY2RhdGEvZGF0YS1mb3JtYXRzLzc3LWRhdGFiYXNlLXRhYmxlcy5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3Npb2NhbGNvZmlIeWRyb0JvdHRsZVJlcG9ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9c2lvY2FsY29maUh5ZHJvQm90dGxlUmVwb3J0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlVDU0QgU0lPIiwgInNpb2NhbGNvZmlIeWRyb0JvdHRsZVJlcG9ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9zaW9jYWxjb2ZpSHlkcm9DYXN0cy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2lvY2FsY29maUh5ZHJvQ2FzdHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2lvY2FsY29maUh5ZHJvQ2FzdHMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBTSU8gSHlkcm9ncmFwaGljIENhc3QgRGF0YSIsICJTSU8gSHlkcm9ncmFwaGljIGRhdGFcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jc3RfY250IChDYXN0IENvdW50KVxuY3J1aXNlX2lkXG5jcnV6X3N0YSAoQ3J1aXNlIElkKVxuZGJzdGFfaWQgKENhbENPRkkgTGluZSBhbmQgU3RhdGlvbilcbmNhc3RfaWRcbnN0YV9pZCAoTGluZSBhbmQgU3RhdGlvbilcbnF1YXJ0ZXIgKFF1YXJ0ZXIgb2YgWWVhcilcbnN0YV9jb2RlIChTdGF0aW9uIFR5cGUpXG5kaXN0YW5jZSAoRGlzdGFuY2UgZnJvbSBzaG9yZSlcbmRhdGVcbnllYXJcbm1vbnRoXG5qdWxpYW5fZGF0ZVxuanVsaWFuX2RheVxudGltZV9hc2NpaSAoVGltZSBvZiBDYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sYXRpdHVkZV9kZWdyZWVzXG5sYXRpdHVkZV9taW51dGVzXG5sYXRpdHVkZV9oZW1pc3BoZXJlXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxvbmdpdHVkZV9kZWdyZWVzXG5sb25naXR1ZGVfbWludXRlc1xubG9uZ2l0dWRlX2hlbWlzcGhlcmVcbnJwdF9saW5lIChSZXBvcnRlZCBMaW5lIE51bWJlcilcbnN0X2xpbmUgKE5vbWluYWwgQ2FsQ09GSSBMaW5lKVxuYWNfbGluZSAoQWN0dWFsIExpbmUgTnVtYmVyKVxucnB0X3N0YSAoUmVwb3J0ZWQgU3RhdGlvbilcbi4uLiAoMzQgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2lvY2FsY29maUh5ZHJvQ2FzdHNfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3Npb2NhbGNvZmlIeWRyb0Nhc3RzX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3Npb2NhbGNvZmlIeWRyb0Nhc3RzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9jYWxjb2ZpLm9yZy9jY2RhdGEvZGF0YS1mb3JtYXRzLzc3LWRhdGFiYXNlLXRhYmxlcy5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3Npb2NhbGNvZmlIeWRyb0Nhc3RzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1zaW9jYWxjb2ZpSHlkcm9DYXN0cyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJVQ1NEIFNJTyIsICJzaW9jYWxjb2ZpSHlkcm9DYXN0cyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJc3Rucy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSXN0bnMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSXN0bnMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBTdGF0aW9ucyIsICJTdW1tYXJ5IGluZm9ybWF0aW9uIGFib3V0IHNhbXBsZSBsb2NhdGlvbnMgZm9yIE5PQUEgQ2FsQ09GSSBhbmQgcmVsYXRlZCBjcnVpc2VzLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmJvdHRvbV9kZXB0aCAoZmF0aG9tcylcbnJlbWFya3NcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJc3Ruc19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSXN0bnNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSXN0bnMvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSXN0bnMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklzdG5zJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSXN0bnMiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSXRvd3R5cC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSXRvd3R5cCIsICIiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBUb3cgVHlwZXMiLCAiRGVzY3JpcHRpb24gb2YgZWFjaCBDYWxDT0ZJIG5ldCB0eXBlIGFuZCBpdHMgYXNzb2NpYXRlZCBhYmJyZXZpYXRpb24gaW4gdGhlIENhbENPRkkgZGF0YWJhc2UuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxubmV0X3R5cGVcbmxvbmdfbmV0X3R5cGVcbmRlc2NyaXB0aW9uXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRkl0b3d0eXAvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSXRvd3R5cC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSXRvd3R5cCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRkl0b3d0eXAiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSXRvd3Muc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkl0b3dzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkl0b3dzLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgVG93cyIsICJMb2NhdGlvbiwgcGVyZm9ybWFuY2UsIGFuZCBzdW1tYXJ5IGluZm9ybWF0aW9uIGFib3V0IGluZGl2aWR1YWwgbmV0IHRvd3MuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5tZXNoX3NpemUgKE5ldCBNZXNoIFNpemUsIG1pY3JvbnMpXG50b3RhbF9lZ2dzXG5zb3J0ZWRfcGxhbmt0b25fdm9sdW1lIChtbC8xMDAwIG1eMylcbnNhbXBsZV9xdWFsaXR5XG5zbWFsbF9wbGFua3Rvbl92b2x1bWUgKG1sLzEwMDAgbV4zIG9mIHdhdGVyIHN0cmFpbmVkKVxudG90YWxfcGxhbmt0b25fdm9sdW1lIChtbC8xMDAwIG1eMyBvZiB3YXRlciBzdHJhaW5lZClcbnRvdGFsX2xhcnZhZVxuZW5kX3RpbWUgKEVuZCBUaW1lc3RhbXAsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG50b3RhbF9qdXZlbmlsZXNfb3JfYWR1bHRzIChUb3RhbCBKdXZlbmlsZS9BZHVsdHMpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRkl0b3dzX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJdG93c19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJdG93cy9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJdG93cy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSXRvd3Mmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJdG93cyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mZWRDYWxMYW5kaW5ncy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZmVkQ2FsTGFuZGluZ3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZmVkQ2FsTGFuZGluZ3MuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsaWZvcm5pYSBDb21tZXJjaWFsIEZpc2ggTGFuZGluZ3MsIDE5MzEtMTk3OCIsICJUaGUgR3JvdW5kZmlzaCBBbmFseXNpcyBUZWFtIGF0IHRoZSBTV0ZTQyBGaXNoZXJpZXMgRWNvbG9neSBEaXZpc2lvbiAoU2FudGFcbkNydXopIGNvbXBsZXRlZCB3b3JrIG9uIGEgQ2FsaWZvcm5pYSBjb21tZXJjaWFsIGxhbmRpbmdzIGRhdGFiYXNlLCB3aGljaFxuaW5jbHVkZXMgbGFuZGluZ3MgZnJvbSAxOTMxIHRocm91Z2ggMjAwNy4gTGFuZGluZ3MgZnJvbSAxOTMxIHRocm91Z2ggMTk2OFxud2VyZSByZWNvdmVyZWQgdXNpbmcgZnVuZHMgYW5kIHNlcnZpY2VzIHByb3ZpZGVkIGJ5IHRoZSBORVNESVMgQ2xpbWF0ZVxuRGF0YWJhc2UgTW9kZXJuaXphdGlvbiBQcm9ncmFtIChDRE1QKS4gVGhlIHJlY292ZXJlZCBkYXRhLCB3aGVuIGNvbWJpbmVkIHdpdGhcbm1vcmUgcmVjZW50IGxhbmRpbmdzIGVzdGltYXRlcyBmcm9tIHRoZSBDYWxpZm9ybmlhIENvb3BlcmF0aXZlIEdyb3VuZGZpc2hcblN1cnZleSBmcm9tIDE5NjkgdG8gMjAwNywgZm9ybXMgb25lIG9mIHRoZSBsb25nZXN0IGRldGFpbGVkIGNhdGNoIHJlY29yZHMgaW5cbnRoZSBVUy4gVGhlIDE5MzEtNjggcGVyaW9kIGluY2x1ZGVzIG1vbnRobHkgc3VtbWFyaWVzIG9mIGNhdGNoZXMgYnkgMTAtbWludXRlXG5nZW9ncmFwaGljIGJsb2Nrcy4gIFRoZXNlIGRhdGEgYXJlIG5vdyBvcGVubHkgYXZhaWxhYmxlIHRvIHRoZSBwdWJsaWMgZm9yIHVzZVxuaW4gc3RvY2sgYXNzZXNzbWVudHMgYW5kIG1vbml0b3Jpbmcgb2YgY2xpbWF0ZSBlZmZlY3RzLiBQZWFyc29uIGlzIGN1cnJlbnRseVxud29ya2luZyB3aXRoIHRoZSBDYWxpZm9ybmlhIERlcGFydG1lbnQgb2YgRmlzaCBhbmQgR2FtZSB0byBleHRlbmQgdGhlXG5nZW9ncmFwaGljIHN1bW1hcnkgaW5mb3JtYXRpb24gdG8gbW9yZSByZWNlbnQgeWVhcnMuIEFsc28sIHRoZSB0YXhhIHJlcG9ydGVkXG5pbiB0aGUgaGlzdG9yaWNhbCBkYXRhIGFyZSB0aGUgXCJtYXJrZXQgY2F0ZWdvcmllc1wiIHVzZWQgYnkgZmlzaCBwcm9jZXNzb3JzLFxuYW5kIG1heSBpbnZvbHZlIG11bHRpcGxlIHNwZWNpZXMgZ3JvdXBpbmdzLiBBIHByb2plY3QgaGFzIGJlZW4gaW5pdGlhdGVkIHRvXG5yZXNvbHZlIGhpc3RvcmljYWwgbGFuZGluZ3MgdG8gcHJvdmlkZSBiZXN0IGVzdGltYXRlcyBmb3IgaW5kaXZpZHVhbCBzcGVjaWVzLlxuXG5XaGVuIHVzaW5nIHRoaXMgZGF0YSBpdCBpcyBjcml0aWNhbCB0byB1bmRlcnN0YW5kIHRoYXQgYSBtYXJrZXQgY2F0ZWdvcnkgaXNcbk5PVCBhIHNwZWNpZXMgY29kZSAtIGl0IGlzIGEgc29ydCBncm91cC4gIFdoaWxlIGxhbmRpbmdzIGluIHNvbWUgbWFya2V0XG5jYXRlZ29yaWVzIG1heSBjb25zaXN0IGVudGlyZWx5IG9mIHRoZSBzcGVjaWVzIGZvciB3aGljaCB0aGV5IGFyZSBuYW1lZCxcbmxhbmRpbmdzIGluIG90aGVyIG1hcmtldCBjYXRlZ29yaWVzIG1heSBjb250YWluIGZldyBvZiB0aGUgc3BlY2llcyBmb3Igd2hpY2hcbnRoZXkgYXJlIG5hbWVkLlxuXG5HZW5lcmFsIE5vdGVzOlxuVGhlIGRhdGEgZnJvbSAxOTMwLTE5MzIgaGFzIGEgbG90IG9mIHVua25vd24gYmxvY2sgZGF0YS4gIFdoZW4gdGhlIHRyYXdsXG5sYW5kaW5nIGRhdGEgaXMgZW50ZXJlZCwgc29tZSBvZiB0aGlzIG1heSBiZSByZXNvbHZlZC4gIEF0IHRoZSBzYW1lIHRpbWUsXG5zb21lIGdlYXIgZGF0YSB3aWxsIGJlIGF2YWlsYWJsZS5cblxuV2hlbiBTb3VyY2UgQ29ycCBmaW5pc2hlcyBkYXRhIGVudHJ5IG9mIHRoZSBsYW5kaW5nIHJlY2VpcHQgZGF0YSwgZ2VhciBjb2RlXG5kYXRhIHdpbGwgYmUgYXZhaWxhYmxlIGZyb20gMTk1MS0xOTY4OyBob3dldmVyLCB0aGlzIHdpbGwgbm90IGJlIGNvbXBsZXRlZFxudW50aWwgYXJvdW5kIDIwMTEuXG5cbkJsb2NrIE1hcHM6IGh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvUGFDT09TL21rdF9jYXRjaC9jYV9sYW5kaW5nc19pbmZvLmh0bWxcbkRhdGEgU291cmNlOiBDYWxpZm9ybmlhIERlcGFydG1lbnQgb2YgRmlzaCAmIEdhbWUuXG5EYXRhIEFzc2VtYmx5OiBOT0FBIFNXRlNDIEZFRDsgQ29udGFjdDogRG9uLlBlYXJzb25Abm9hYS5nb3ZcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG5tYXJrZXRfY2F0ZWdvcnlcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZlZENhbExhbmRpbmdzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9QYUNPT1MvbWt0X2NhdGNoIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZlZENhbExhbmRpbmdzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mZWRDYWxMYW5kaW5ncyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIEZFRCIsICJmZWRDYWxMYW5kaW5ncyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDQU1hckNhdExNLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDQU1hckNhdExNIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENBTWFyQ2F0TE0uZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsaWZvcm5pYSBGaXNoIE1hcmtldCBDYXRjaCBMYW5kaW5ncywgTG9uZyBMaXN0LCAxOTI4LTIwMDIsIE1vbnRobHkiLCAiRGF0YWJhc2Ugb2YgZmlzaCBhbmQgaW52ZXJ0ZWJyYXRlcyBjYXVnaHQgb2ZmIENhbGlmb3JuaWEgYW5kIGxhbmRlZCBpbiBDYWxpZm9ybmlhLCBpbmNsdWRpbmcgY29tbWVyY2lhbCBmcmVzaHdhdGVyIGNhdGNoZXMgaW4gQ2FsaWZvcm5pYSB0aHJvdWdoIGJ1dCBub3QgYWZ0ZXIgMTk3MSBhbmQgc29tZSBtYXJpY3VsdHVyZWQgc2hlbGxmaXNoIHN1Y2ggYXMgb3lzdGVycyB0aHJvdWdoIDE5ODAuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L2xhc19maXNoMS9kb2MvbmFtZXNfZGVzY3JpYmUuaHRtbCBhbmRcbmh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvbGFzX2Zpc2gxL2RvYy9tYXJrZXRsaXN0Lmh0bWwgLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG55ZWFyXG5maXNoIChGaXNoIE5hbWUpXG5wb3J0XG5sYW5kaW5ncyAocG91bmRzKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDQU1hckNhdExNL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9sYXNfZmlzaDEvZG9jL25hbWVzX2Rlc2NyaWJlLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ0FNYXJDYXRMTS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ0FNYXJDYXRMTSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJDQSBERkcsIE5PQUEgRVJEIiwgImVyZENBTWFyQ2F0TE0iXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ0FNYXJDYXRMWS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ0FNYXJDYXRMWSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDQU1hckNhdExZLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbGlmb3JuaWEgRmlzaCBNYXJrZXQgQ2F0Y2ggTGFuZGluZ3MsIExvbmcgTGlzdCwgMTkyOC0yMDAyLCBZZWFybHkiLCAiRGF0YWJhc2Ugb2YgZmlzaCBhbmQgaW52ZXJ0ZWJyYXRlcyBjYXVnaHQgb2ZmIENhbGlmb3JuaWEgYW5kIGxhbmRlZCBpbiBDYWxpZm9ybmlhLCBpbmNsdWRpbmcgY29tbWVyY2lhbCBmcmVzaHdhdGVyIGNhdGNoZXMgaW4gQ2FsaWZvcm5pYSB0aHJvdWdoIGJ1dCBub3QgYWZ0ZXIgMTk3MSBhbmQgc29tZSBtYXJpY3VsdHVyZWQgc2hlbGxmaXNoIHN1Y2ggYXMgb3lzdGVycyB0aHJvdWdoIDE5ODAuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L2xhc19maXNoMS9kb2MvbmFtZXNfZGVzY3JpYmUuaHRtbCBhbmRcbmh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvbGFzX2Zpc2gxL2RvYy9tYXJrZXRsaXN0Lmh0bWwgLlxuXG5UaGlzIGRhdGFzZXQgaGFzIHRoZSBzdW1zIG9mIHRoZSBtb250aGx5IHZhbHVlcyBmb3IgZWFjaCBjYWxlbmRhciB5ZWFyLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG55ZWFyXG5maXNoIChGaXNoIE5hbWUpXG5wb3J0XG5sYW5kaW5ncyAocG91bmRzKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDQU1hckNhdExZL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9sYXNfZmlzaDEvZG9jL25hbWVzX2Rlc2NyaWJlLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ0FNYXJDYXRMWS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ0FNYXJDYXRMWSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJDQSBERkcsIE5PQUEgRVJEIiwgImVyZENBTWFyQ2F0TFkiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ0FNYXJDYXRTTS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ0FNYXJDYXRTTSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDQU1hckNhdFNNLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbGlmb3JuaWEgRmlzaCBNYXJrZXQgQ2F0Y2ggTGFuZGluZ3MsIFNob3J0IExpc3QsIDE5MjgtMjAwMiwgTW9udGhseSIsICJEYXRhYmFzZSBvZiBmaXNoIGFuZCBpbnZlcnRlYnJhdGVzIGNhdWdodCBvZmYgQ2FsaWZvcm5pYSBhbmQgbGFuZGVkIGluIENhbGlmb3JuaWEsIGluY2x1ZGluZyBjb21tZXJjaWFsIGZyZXNod2F0ZXIgY2F0Y2hlcyBpbiBDYWxpZm9ybmlhIHRocm91Z2ggYnV0IG5vdCBhZnRlciAxOTcxIGFuZCBzb21lIG1hcmljdWx0dXJlZCBzaGVsbGZpc2ggc3VjaCBhcyBveXN0ZXJzIHRocm91Z2ggMTk4MC4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvbGFzX2Zpc2gxL2RvYy9uYW1lc19kZXNjcmliZS5odG1sIGFuZFxuaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9sYXNfZmlzaDEvZG9jL21hcmtldGxpc3QuaHRtbCAuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnllYXJcbmZpc2ggKEZpc2ggTmFtZSlcbnBvcnRcbmxhbmRpbmdzIChwb3VuZHMpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENBTWFyQ2F0U00vaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L2xhc19maXNoMS9kb2MvbmFtZXNfZGVzY3JpYmUuaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDQU1hckNhdFNNLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDQU1hckNhdFNNJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkNBIERGRywgTk9BQSBFUkQiLCAiZXJkQ0FNYXJDYXRTTSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDQU1hckNhdFNZLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDQU1hckNhdFNZIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENBTWFyQ2F0U1kuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsaWZvcm5pYSBGaXNoIE1hcmtldCBDYXRjaCBMYW5kaW5ncywgU2hvcnQgTGlzdCwgMTkyOC0yMDAyLCBZZWFybHkiLCAiRGF0YWJhc2Ugb2YgZmlzaCBhbmQgaW52ZXJ0ZWJyYXRlcyBjYXVnaHQgb2ZmIENhbGlmb3JuaWEgYW5kIGxhbmRlZCBpbiBDYWxpZm9ybmlhLCBpbmNsdWRpbmcgY29tbWVyY2lhbCBmcmVzaHdhdGVyIGNhdGNoZXMgaW4gQ2FsaWZvcm5pYSB0aHJvdWdoIGJ1dCBub3QgYWZ0ZXIgMTk3MSBhbmQgc29tZSBtYXJpY3VsdHVyZWQgc2hlbGxmaXNoIHN1Y2ggYXMgb3lzdGVycyB0aHJvdWdoIDE5ODAuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L2xhc19maXNoMS9kb2MvbmFtZXNfZGVzY3JpYmUuaHRtbCBhbmRcbmh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvbGFzX2Zpc2gxL2RvYy9tYXJrZXRsaXN0Lmh0bWwgLlxuXG5UaGlzIGRhdGFzZXQgaGFzIHRoZSBzdW1zIG9mIHRoZSBtb250aGx5IHZhbHVlcyBmb3IgZWFjaCBjYWxlbmRhciB5ZWFyLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG55ZWFyXG5maXNoIChGaXNoIE5hbWUpXG5wb3J0XG5sYW5kaW5ncyAocG91bmRzKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDQU1hckNhdFNZL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9sYXNfZmlzaDEvZG9jL25hbWVzX2Rlc2NyaWJlLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ0FNYXJDYXRTWS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ0FNYXJDYXRTWSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJDQSBERkcsIE5PQUEgRVJEIiwgImVyZENBTWFyQ2F0U1kiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2lucEtmbVQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENpbnBLZm1UIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENpbnBLZm1ULmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNoYW5uZWwgSXNsYW5kcywgS2VscCBGb3Jlc3QgTW9uaXRvcmluZywgU2VhIFRlbXBlcmF0dXJlLCAxOTkzLTIwMDciLCAiVGhpcyBkYXRhc2V0IGZyb20gdGhlIENoYW5uZWwgSXNsYW5kcyBOYXRpb25hbCBQYXJrJ3MgS2VscCBGb3Jlc3QgTW9uaXRvcmluZyBQcm9ncmFtIGhhcyBzdWJ0aWRhbCB0ZW1wZXJhdHVyZSBkYXRhIHRha2VuIGF0IHBlcm1hbmVudCBtb25pdG9yaW5nIHNpdGVzLiAgU2luY2UgMTk5MywgcmVtb3RlIHRlbXBlcmF0dXJlIGxvZ2dlcnMgbWFudWZhY3R1cmVkIGJ5IE9uc2V0IENvbXB1dGVyIENvcnBvcmF0aW9uIHdlcmUgZGVwbG95ZWQgYXQgZWFjaCBzaXRlIGFwcHJveGltYXRlbHkgMTAtMjAgY20gZnJvbSB0aGUgYm90dG9tIGluIGEgdW5kZXJ3YXRlciBob3VzaW5nLiAgU2luY2UgMTk5MywgdGhyZWUgbW9kZWxzIG9mIHRlbXBlcmF0dXJlIGxvZ2dlcnMgKEhvYm9UZW1wICh0bSksIFN0b3dBd2F5IChSKSBhbmQgVGlkYml0KFIpKSB3ZXJlIHVzZWQgdG8gY29sbGVjdCB0ZW1wZXJhdHVyZSBkYXRhIGV2ZXJ5IDEtNSBob3VycyBkZXBlbmRpbmcgb24gdGhlIG1vZGVsIHVzZWQuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5zdGF0aW9uXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxuZGVwdGggKG0pXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxudGVtcGVyYXR1cmUgKFNlYSBXYXRlciBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2lucEtmbVRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENpbnBLZm1UX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENpbnBLZm1UL2luZGV4Lmpzb24iLCAiaHR0cDovL3d3dy5ucHMuZ292L2NoaXMvbmF0dXJlc2NpZW5jZS9pbmRleC5odG0iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2lucEtmbVQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENpbnBLZm1UJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkNJTlAiLCAiZXJkQ2lucEtmbVQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2lucEtmbVNGTkguc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENpbnBLZm1TRk5IIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENpbnBLZm1TRk5ILmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNoYW5uZWwgSXNsYW5kcywgS2VscCBGb3Jlc3QgTW9uaXRvcmluZywgU2l6ZSBhbmQgRnJlcXVlbmN5LCBOYXR1cmFsIEhhYml0YXQsIDE5ODUtMjAwNyIsICJUaGlzIGRhdGFzZXQgaGFzIG1lYXN1cmVtZW50cyBvZiB0aGUgc2l6ZSBvZiBzZWxlY3RlZCBhbmltYWwgc3BlY2llcyBhdCBzZWxlY3RlZCBsb2NhdGlvbnMgaW4gdGhlIENoYW5uZWwgSXNsYW5kcyBOYXRpb25hbCBQYXJrLiBTYW1wbGluZyBpcyBjb25kdWN0ZWQgYW5udWFsbHkgYmV0d2VlbiB0aGUgbW9udGhzIG9mIE1heS1PY3RvYmVyLCBzbyB0aGUgVGltZSBkYXRhIGluIHRoaXMgZmlsZSBpcyBKdWx5IDEgb2YgZWFjaCB5ZWFyIChhIG5vbWluYWwgdmFsdWUpLiBUaGUgc2l6ZSBmcmVxdWVuY3kgbWVhc3VyZW1lbnRzIHdlcmUgdGFrZW4gd2l0aGluIDEwIG1ldGVycyBvZiB0aGUgdHJhbnNlY3QgbGluZSBhdCBlYWNoIHNpdGUuICBEZXB0aHMgYXQgdGhlIHNpdGUgdmFyeSBzb21lLCBidXQgd2UgZGVzY3JpYmUgdGhlIGRlcHRoIG9mIHRoZSBzaXRlIGFsb25nIHRoZSB0cmFuc2VjdCBsaW5lIHdoZXJlIHRoYXQgc3RhdGlvbidzIHRlbXBlcmF0dXJlIGxvZ2dlciBpcyBsb2NhdGVkLCBhIHR5cGljYWwgZGVwdGggZm9yIHRoZSBzaXRlLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuaWQgKFN0YXRpb24gSWRlbnRpZmllcilcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5kZXB0aCAobSlcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5jb21tb25fbmFtZVxuc3BlY2llc19uYW1lXG5zaXplIChtbSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDaW5wS2ZtU0ZOSF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2lucEtmbVNGTkhfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2lucEtmbVNGTkgvaW5kZXguanNvbiIsICJodHRwOi8vd3d3Lm5wcy5nb3YvY2hpcy9uYXR1cmVzY2llbmNlL2luZGV4Lmh0bSIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDaW5wS2ZtU0ZOSC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2lucEtmbVNGTkgmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQ0lOUCIsICJlcmRDaW5wS2ZtU0ZOSCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDaW5wS2ZtMVEuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENpbnBLZm0xUSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDaW5wS2ZtMVEuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2hhbm5lbCBJc2xhbmRzLCBLZWxwIEZvcmVzdCBNb25pdG9yaW5nLCBTdXJ2ZXksIDFtIFF1YWRyYXQsIDE5ODItMjAwNyIsICJUaGlzIGRhdGFzZXQgZnJvbSB0aGUgQ2hhbm5lbCBJc2xhbmRzIE5hdGlvbmFsIFBhcmsncyBLZWxwIEZvcmVzdCBNb25pdG9yaW5nIFByb2dyYW0gaGFzIG1lYXN1cmVtZW50cyBvZiB0aGUgYWJ1bmRhbmNlIChkZW5zaXR5KSBvZiByZWxhdGl2ZWx5IGFidW5kYW50IHNlbGVjdGVkIHNlZGVudGFyeSBpbmRpY2F0b3Igc3BlY2llcy4gIFRoZSBzdW1tYXJ5IGRhdGEgcHJlc2VudGVkIGhlcmUgcmVwcmVzZW50cyB0aGUgbWVhbiBkZW5zaXR5IHBlciBzcXVhcmUgbWV0ZXIuIFNhbXBsaW5nIGlzIGNvbmR1Y3RlZCBhbm51YWxseSBiZXR3ZWVuIHRoZSBtb250aHMgb2YgTWF5LU9jdG9iZXIsIHNvIHRoZSBUaW1lIGRhdGEgaW4gdGhpcyBmaWxlIGlzIEp1bHkgMSBvZiBlYWNoIHllYXIgKGEgbm9taW5hbCB2YWx1ZSkuIFRoZSBhY3R1YWwgbWVhc3VyZW1lbnRzIHdlcmUgdGFrZW4gYXQgdmFyaW91cyBkZXB0aHMsIHNvIHRoZSBEZXB0aCBkYXRhIGluIHRoaXMgZmlsZSBpcyB0aGUgZGVwdGggb2YgdGhlIHN0YXRpb24ncyB0ZW1wZXJhdHVyZSBsb2dnZXIsIHdoaWNoIGlzIGEgdHlwaWNhbCBkZXB0aC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb25cbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5kZXB0aCAobSlcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5BZ2FydW1fZmltYnJpYXR1bV9hZHVsdF9NZWFuX0RlbnNpdHkgKG0tMilcbkFnYXJ1bV9maW1icmlhdHVtX2FkdWx0X1N0ZERldlxuQWdhcnVtX2ZpbWJyaWF0dW1fYWR1bHRfU3RkRXJyXG5BZ2FydW1fZmltYnJpYXR1bV9qdXZlbmlsZV9NZWFuX0RlbnNpdHkgKG0tMilcbkFnYXJ1bV9maW1icmlhdHVtX2p1dmVuaWxlX1N0ZERldlxuQWdhcnVtX2ZpbWJyaWF0dW1fanV2ZW5pbGVfU3RkRXJyXG5BbGxvY2xpbnVzX2hvbGRlcmlfTWVhbl9EZW5zaXR5IChtLTIpXG5BbGxvY2xpbnVzX2hvbGRlcmlfU3RkRGV2XG5BbGxvY2xpbnVzX2hvbGRlcmlfU3RkRXJyXG5BcGx5c2lhX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSAobS0yKVxuQXBseXNpYV9jYWxpZm9ybmljYV9TdGREZXZcbkFwbHlzaWFfY2FsaWZvcm5pY2FfU3RkRXJyXG5Bc3RlcmluYV9taW5pYXRhX01lYW5fRGVuc2l0eSAobS0yKVxuQXN0ZXJpbmFfbWluaWF0YV9TdGREZXZcbkFzdGVyaW5hX21pbmlhdGFfU3RkRXJyXG5DZW50cm9zdGVwaGFudXNfY29yb25hdHVzX01lYW5fRGVuc2l0eSAobS0yKVxuQ2VudHJvc3RlcGhhbnVzX2Nvcm9uYXR1c19TdGREZXZcbi4uLiAoOTEgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2lucEtmbTFRX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDaW5wS2ZtMVFfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2lucEtmbTFRL2luZGV4Lmpzb24iLCAiaHR0cDovL3d3dy5ucHMuZ292L2NoaXMvbmF0dXJlc2NpZW5jZS9pbmRleC5odG0iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2lucEtmbTFRLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDaW5wS2ZtMVEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQ0lOUCIsICJlcmRDaW5wS2ZtMVEiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2lucEtmbTVRLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDaW5wS2ZtNVEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2lucEtmbTVRLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNoYW5uZWwgSXNsYW5kcywgS2VscCBGb3Jlc3QgTW9uaXRvcmluZywgU3VydmV5LCA1bSBRdWFkcmF0LCAxOTk2LTIwMDciLCAiVGhpcyBkYXRhc2V0IGZyb20gdGhlIENoYW5uZWwgSXNsYW5kcyBOYXRpb25hbCBQYXJrJ3MgS2VscCBGb3Jlc3QgTW9uaXRvcmluZyBQcm9ncmFtIGhhcyBtZWFzdXJlbWVudHMgb2YgdGhlIGFidW5kYW5jZSBvZiBzZWxlY3RlZCByYXJlLCBjbHVtcGVkLCBzZWRlbnRhcnkgaW5kaWNhdG9yIHNwZWNpZXMuIFRoZSBzdW1tYXJ5IGRhdGEgcHJlc2VudGVkIGhlcmUgcmVwcmVzZW50cyB0aGUgbWVhbiBkZW5zaXR5IHBlciBzcXVhcmUgbWV0ZXIuIFNhbXBsaW5nIGlzIGNvbmR1Y3RlZCBhbm51YWxseSBiZXR3ZWVuIHRoZSBtb250aHMgb2YgTWF5LU9jdG9iZXIsIHNvIHRoZSBUaW1lIGRhdGEgaW4gdGhpcyBmaWxlIGlzIEp1bHkgMSBvZiBlYWNoIHllYXIgKGEgbm9taW5hbCB2YWx1ZSkuIFRoZSBvcmlnaW5hbCBtZWFzdXJlbWVudHMgd2VyZSB0YWtlbiBhdCB2YXJpb3VzIGRlcHRocywgc28gdGhlIERlcHRoIGRhdGEgaW4gdGhpcyBmaWxlIGlzIHRoZSBkZXB0aCBvZiB0aGUgc3RhdGlvbidzIHRlbXBlcmF0dXJlIGxvZ2dlciwgd2hpY2ggaXMgYSB0eXBpY2FsIGRlcHRoLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvblxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmRlcHRoIChtKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbk1hY3JvY3lzdGlzX3B5cmlmZXJhX0FkdWx0X01lYW5fRGVuc2l0eSAobS0yKVxuTWFjcm9jeXN0aXNfcHlyaWZlcmFfQWR1bHRfU3RkRGV2XG5NYWNyb2N5c3Rpc19weXJpZmVyYV9BZHVsdF9TdGRFcnJcbk1hY3JvY3lzdGlzX3B5cmlmZXJhX1N1YmFkdWx0X01lYW5fRGVuc2l0eSAobS0yKVxuTWFjcm9jeXN0aXNfcHlyaWZlcmFfU3ViYWR1bHRfU3RkRGV2XG5NYWNyb2N5c3Rpc19weXJpZmVyYV9TdWJhZHVsdF9TdGRFcnJcblBpc2FzdGVyX2dpZ2FudGV1c19NZWFuX0RlbnNpdHkgKG0tMilcblBpc2FzdGVyX2dpZ2FudGV1c19TdGREZXZcblBpc2FzdGVyX2dpZ2FudGV1c19TdGRFcnJcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDaW5wS2ZtNVFfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENpbnBLZm01UV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDaW5wS2ZtNVEvaW5kZXguanNvbiIsICJodHRwOi8vd3d3Lm5wcy5nb3YvY2hpcy9uYXR1cmVzY2llbmNlL2luZGV4Lmh0bSIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDaW5wS2ZtNVEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENpbnBLZm01USZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJDSU5QIiwgImVyZENpbnBLZm01USJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDaW5wS2ZtQlQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENpbnBLZm1CVCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDaW5wS2ZtQlQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2hhbm5lbCBJc2xhbmRzLCBLZWxwIEZvcmVzdCBNb25pdG9yaW5nLCBTdXJ2ZXksIEJhbmQgVHJhbnNlY3QsIDE5ODMtMjAwNyIsICJUaGlzIGRhdGFzZXQgZnJvbSB0aGUgQ2hhbm5lbCBJc2xhbmRzIE5hdGlvbmFsIFBhcmsncyBLZWxwIEZvcmVzdCBNb25pdG9yaW5nIFByb2dyYW0gaGFzIG1lYXN1cmVtZW50cyBvZiB0aGUgYWJ1bmRhbmNlIGFuZCBkaXN0cmlidXRpb24gb2YgcmFyZSBhbmQgY2x1bXBlZCBvcmdhbmlzbXMgbm90IGFkZXF1YXRlbHkgc2FtcGxlZCBieSBxdWFkcmF0cy4gVGhlIHN1bW1hcnkgZGF0YSBwcmVzZW50ZWQgaGVyZSByZXByZXNlbnRzIHRoZSBtZWFuIGRlbnNpdHkgcGVyIHNxdWFyZSBtZXRlci4gU2FtcGxpbmcgaXMgY29uZHVjdGVkIGFubnVhbGx5IGJldHdlZW4gdGhlIG1vbnRocyBvZiBNYXktT2N0b2Jlciwgc28gdGhlIFRpbWUgZGF0YSBpbiB0aGlzIGZpbGUgaXMgSnVseSAxIG9mIGVhY2ggeWVhciAoYSBub21pbmFsIHZhbHVlKS4gVGhlIGFjdHVhbCBtZWFzdXJlbWVudHMgd2VyZSB0YWtlbiBhdCB2YXJpb3VzIGRlcHRocywgc28gdGhlIERlcHRoIGRhdGEgaW4gdGhpcyBmaWxlIGlzIHRoZSBkZXB0aCBvZiB0aGUgc3RhdGlvbidzIHRlbXBlcmF0dXJlIGxvZ2dlciwgd2hpY2ggaXMgYSB0eXBpY2FsIGRlcHRoLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvblxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmRlcHRoIChtKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbkFwbHlzaWFfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IChtLTIpXG5BcGx5c2lhX2NhbGlmb3JuaWNhX1N0ZERldlxuQXBseXNpYV9jYWxpZm9ybmljYV9TdGRFcnJcbkNyYXNzZWRvbWFfZ2lnYW50ZXVtX01lYW5fRGVuc2l0eSAobS0yKVxuQ3Jhc3NlZG9tYV9naWdhbnRldW1fU3RkRGV2XG5DcmFzc2Vkb21hX2dpZ2FudGV1bV9TdGRFcnJcbkhhbGlvdGlzX2NvcnJ1Z2F0YV9NZWFuX0RlbnNpdHkgKG0tMilcbkhhbGlvdGlzX2NvcnJ1Z2F0YV9TdGREZXZcbkhhbGlvdGlzX2NvcnJ1Z2F0YV9TdGRFcnJcbkhhbGlvdGlzX2Z1bGdlbnNfTWVhbl9EZW5zaXR5IChtLTIpXG5IYWxpb3Rpc19mdWxnZW5zX1N0ZERldlxuSGFsaW90aXNfZnVsZ2Vuc19TdGRFcnJcbkhhbGlvdGlzX3J1ZmVzY2Vuc19NZWFuX0RlbnNpdHkgKG0tMilcbkhhbGlvdGlzX3J1ZmVzY2Vuc19TdGREZXZcbkhhbGlvdGlzX3J1ZmVzY2Vuc19TdGRFcnJcbktlbGxldGlhX2tlbGxldGlpX01lYW5fRGVuc2l0eSAobS0yKVxuS2VsbGV0aWFfa2VsbGV0aWlfU3RkRGV2XG4uLi4gKDMxIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENpbnBLZm1CVF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2lucEtmbUJUX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENpbnBLZm1CVC9pbmRleC5qc29uIiwgImh0dHA6Ly93d3cubnBzLmdvdi9jaGlzL25hdHVyZXNjaWVuY2UvaW5kZXguaHRtIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENpbnBLZm1CVC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2lucEtmbUJUJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkNJTlAiLCAiZXJkQ2lucEtmbUJUIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENpbnBLZm1GVC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2lucEtmbUZUIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENpbnBLZm1GVC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDaGFubmVsIElzbGFuZHMsIEtlbHAgRm9yZXN0IE1vbml0b3JpbmcsIFN1cnZleSwgRmlzaCBUcmFuc2VjdCwgMTk4NS0yMDA3IiwgIlRoaXMgZGF0YXNldCBmcm9tIHRoZSBDaGFubmVsIElzbGFuZHMgTmF0aW9uYWwgUGFyaydzIEtlbHAgRm9yZXN0IE1vbml0b3JpbmcgUHJvZ3JhbSBoYXMgbWVhc3VyZW1lbnRzIG9mIHRoZSBhYnVuZGFuY2Ugb2YgZmlzaCBzcGVjaWVzLiBUaGUgb3JpZ2luYWwgbWVhc3VyZW1lbnRzIHdlcmUgdGFrZW4gYXQgdmFyaW91cyBkZXB0aHMsIHNvIHRoZSBEZXB0aCBkYXRhIGluIHRoaXMgZmlsZSBpcyB0aGUgZGVwdGggb2YgdGhlIHN0YXRpb24ncyB0ZW1wZXJhdHVyZSBsb2dnZXIsIHdoaWNoIGlzIGEgdHlwaWNhbCBkZXB0aC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb25cbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5kZXB0aCAobSlcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5DaHJvbWlzX3B1bmN0aXBpbm5pc19BZHVsdCAoTnVtYmVyIG9mIENocm9taXMgcHVuY3RpcGlubmlzIEFkdWx0LCBwZXIgMTAwbVgybVgzMG0gdHJhbnNlY3QpXG5DaHJvbWlzX3B1bmN0aXBpbm5pc19KdXZlbmlsZSAoTnVtYmVyIG9mIENocm9taXMgcHVuY3RpcGlubmlzIEp1dmVuaWxlLCBwZXIgMTAwbVgybVgzMG0gdHJhbnNlY3QpXG5EYW1hbGljaHRoeXNfdmFjY2FfQWR1bHQgKE51bWJlciBvZiBEYW1hbGljaHRoeXMgdmFjY2EgQWR1bHQsIHBlciAxMDBtWDJtWDMwbSB0cmFuc2VjdClcbkRhbWFsaWNodGh5c192YWNjYV9KdXZlbmlsZSAoTnVtYmVyIG9mIERhbWFsaWNodGh5cyB2YWNjYSBKdXZlbmlsZSwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuRW1iaW90b2NhX2phY2tzb25pX0FkdWx0IChOdW1iZXIgb2YgRW1iaW90b2NhIGphY2tzb25pIEFkdWx0LCBwZXIgMTAwbVgybVgzMG0gdHJhbnNlY3QpXG5FbWJpb3RvY2FfamFja3NvbmlfSnV2ZW5pbGUgKE51bWJlciBvZiBFbWJpb3RvY2EgamFja3NvbmkgSnV2ZW5pbGUsIHBlciAxMDBtWDJtWDMwbSB0cmFuc2VjdClcbkVtYmlvdG9jYV9sYXRlcmFsaXNfQWR1bHQgKE51bWJlciBvZiBFbWJpb3RvY2EgbGF0ZXJhbGlzIEFkdWx0LCBwZXIgMTAwbVgybVgzMG0gdHJhbnNlY3QpXG5FbWJpb3RvY2FfbGF0ZXJhbGlzX0p1dmVuaWxlIChOdW1iZXIgb2YgRW1iaW90b2NhIGxhdGVyYWxpcyBKdXZlbmlsZSwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuR2lyZWxsYV9uaWdyaWNhbnNfQWR1bHQgKE51bWJlciBvZiBHaXJlbGxhIG5pZ3JpY2FucyBBZHVsdCwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuR2lyZWxsYV9uaWdyaWNhbnNfSnV2ZW5pbGUgKE51bWJlciBvZiBHaXJlbGxhIG5pZ3JpY2FucyBKdXZlbmlsZSwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuSGFsaWNob2VyZXNfc2VtaWNpbmN0dXNfRmVtYWxlIChOdW1iZXIgb2YgSGFsaWNob2VyZXMgc2VtaWNpbmN0dXMgRmVtYWxlLCBwZXIgMTAwbVgybVgzMG0gdHJhbnNlY3QpXG5IYWxpY2hvZXJlc19zZW1pY2luY3R1c19NYWxlIChOdW1iZXIgb2YgSGFsaWNob2VyZXMgc2VtaWNpbmN0dXMgTWFsZSwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuSHlwc3lwb3BzX3J1YmljdW5kdXNfQWR1bHQgKE51bWJlciBvZiBIeXBzeXBvcHMgcnViaWN1bmR1cyBBZHVsdCwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuSHlwc3lwb3BzX3J1YmljdW5kdXNfSnV2ZW5pbGUgKE51bWJlciBvZiBIeXBzeXBvcHMgcnViaWN1bmR1cyBKdXZlbmlsZSwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuT3h5anVsaXNfY2FsaWZvcm5pY2FfQWR1bHQgKE51bWJlciBvZiBPeHlqdWxpcyBjYWxpZm9ybmljYSBBZHVsdCwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuT3h5anVsaXNfY2FsaWZvcm5pY2FfSnV2ZW5pbGUgKE51bWJlciBvZiBPeHlqdWxpcyBjYWxpZm9ybmljYSBKdXZlbmlsZSwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuUGFyYWxhYnJheF9jbGF0aHJhdHVzX0FkdWx0IChOdW1iZXIgb2YgUGFyYWxhYnJheCBjbGF0aHJhdHVzIEFkdWx0LCBwZXIgMTAwbVgybVgzMG0gdHJhbnNlY3QpXG5QYXJhbGFicmF4X2NsYXRocmF0dXNfSnV2ZW5pbGUgKE51bWJlciBvZiBQYXJhbGFicmF4IGNsYXRocmF0dXMgSnV2ZW5pbGUsIHBlciAxMDBtWDJtWDMwbSB0cmFuc2VjdClcblNlYmFzdGVzX2F0cm92aXJlbnNfQWR1bHQgKE51bWJlciBvZiBTZWJhc3RlcyBhdHJvdmlyZW5zIEFkdWx0LCBwZXIgMTAwbVgybVgzMG0gdHJhbnNlY3QpXG4uLi4gKDggbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2lucEtmbUZUX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDaW5wS2ZtRlRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2lucEtmbUZUL2luZGV4Lmpzb24iLCAiaHR0cDovL3d3dy5ucHMuZ292L2NoaXMvbmF0dXJlc2NpZW5jZS9pbmRleC5odG0iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2lucEtmbUZULnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDaW5wS2ZtRlQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQ0lOUCIsICJlcmRDaW5wS2ZtRlQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2lucEtmbVJQQy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2lucEtmbVJQQyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDaW5wS2ZtUlBDLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNoYW5uZWwgSXNsYW5kcywgS2VscCBGb3Jlc3QgTW9uaXRvcmluZywgU3VydmV5LCBSYW5kb20gUG9pbnQgQ29udGFjdCwgMTk4Mi0yMDA3IiwgIlRoaXMgZGF0YXNldCBmcm9tIHRoZSBDaGFubmVsIElzbGFuZHMgTmF0aW9uYWwgUGFyaydzIEtlbHAgRm9yZXN0IE1vbml0b3JpbmcgUHJvZ3JhbSBoYXMgZXN0aW1hdGVzIG9mIHN1YnN0cmF0ZSBjb21wb3NpdGlvbiBhbmQgcGVyY2VudCBjb3ZlciBvZiBzZWxlY3RlZCBhbGdhbCBhbmQgaW52ZXJ0ZWJyYXRlIHRheGEuIFRoZSBkYXRhIHN1bW1hcnkgZGF0YSBwcmVzZW50ZWQgaGVyZSByZXByZXNlbnRzIHRoZSBtZWFuIHBlcmNlbnQgY292ZXIgb2YgdGhlIGluZGljYXRvciBzcGVjaWVzIGF0IHRoZSBzaXRlLiBTYW1wbGluZyBpcyBjb25kdWN0ZWQgYW5udWFsbHkgYmV0d2VlbiB0aGUgbW9udGhzIG9mIE1heS1PY3RvYmVyLCBzbyB0aGUgVGltZSBkYXRhIGluIHRoaXMgZmlsZSBpcyBKdWx5IDEgb2YgZWFjaCB5ZWFyIChhIG5vbWluYWwgdmFsdWUpLiBUaGUgYWN0dWFsIG1lYXN1cmVtZW50cyB3ZXJlIHRha2VuIGF0IHZhcmlvdXMgZGVwdGhzLCBzbyB0aGUgRGVwdGggZGF0YSBpbiB0aGlzIGZpbGUgaXMgdGhlIGRlcHRoIG9mIHRoZSBzdGF0aW9uJ3MgdGVtcGVyYXR1cmUgbG9nZ2VyLCB3aGljaCBpcyBhIHR5cGljYWwgZGVwdGguXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5zdGF0aW9uXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxuZGVwdGggKG0pXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuQXJ0aWN1bGF0ZWRfQ29yYWxsaW5lX0FsZ2FlX01lYW4gKHBlcmNlbnQgY292ZXIpXG5BcnRpY3VsYXRlZF9Db3JhbGxpbmVfQWxnYWVfU3RkRGV2XG5BcnRpY3VsYXRlZF9Db3JhbGxpbmVfQWxnYWVfU3RkRXJyXG5Bc3RyYW5naWFfbGFqb2xsYWVuc2lzX01lYW4gKHBlcmNlbnQgY292ZXIpXG5Bc3RyYW5naWFfbGFqb2xsYWVuc2lzX1N0ZERldlxuQXN0cmFuZ2lhX2xham9sbGFlbnNpc19TdGRFcnJcbkJhbGFub3BoeWxsaWFfZWxlZ2Fuc19NZWFuIChwZXJjZW50IGNvdmVyKVxuQmFsYW5vcGh5bGxpYV9lbGVnYW5zX1N0ZERldlxuQmFsYW5vcGh5bGxpYV9lbGVnYW5zX1N0ZEVyclxuQmFsYW51c19zcHBfTWVhbiAocGVyY2VudCBjb3ZlcilcbkJhbGFudXNfc3BwX1N0ZERldlxuQmFsYW51c19zcHBfU3RkRXJyXG5CYXJlX1N1YnN0cmF0ZV9NZWFuIChwZXJjZW50IGNvdmVyKVxuQmFyZV9TdWJzdHJhdGVfU3RkRGV2XG5CYXJlX1N1YnN0cmF0ZV9TdGRFcnJcbkNvYmJsZV9NZWFuIChwZXJjZW50IGNvdmVyKVxuQ29iYmxlX1N0ZERldlxuLi4uICgxMDAgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2lucEtmbVJQQ19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2lucEtmbVJQQ19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDaW5wS2ZtUlBDL2luZGV4Lmpzb24iLCAiaHR0cDovL3d3dy5ucHMuZ292L2NoaXMvbmF0dXJlc2NpZW5jZS9pbmRleC5odG0iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2lucEtmbVJQQy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2lucEtmbVJQQyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJDSU5QIiwgImVyZENpbnBLZm1SUEMiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvRlJEQ1BTVHJhd2xMSEhhdWxDYXRjaC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvRlJEQ1BTVHJhd2xMSEhhdWxDYXRjaCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9GUkRDUFNUcmF3bExISGF1bENhdGNoLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNQUyBUcmF3bCBMaWZlIEhpc3RvcnkgSGF1bCBDYXRjaCBEYXRhIiwgIldlaWdodCBpbiBraWxvZ3JhbXMgZm9yIGFsbCBzcGVjaWVzIChpZGVudGlmaWVkIHRvIGxvd2VzdCB0YXhvbm9taWMgY3JpdGVyaWEpIGNhdWdodCBkdXJpbmcgU1dGU0MtRlJEIGZpc2hlcnkgaW5kZXBlbmRlbnQgc3VydmV5cyAoaW5jbHVkaW5nIERFUE0sIEFUTSwgU2FLZSkgb2YgY29hc3RhbCBwZWxhZ2ljIHNwZWNpZXMgdXNpbmcgbWlkLXdhdGVyIHRyYXdscyAod2l0aCBtb3N0IHRvd3MgcGVyZm9ybWVkIG5lYXIgdGhlIHN1cmZhY2UpIGF0IHBvc2l0aW9uIGFuZCB0aW1lcyBsaXN0ZWQuIEFkZGl0aW9uYWwgaW5mb3JtYXRpb24gZm9yIGEgc3Vic2V0IG9mIGluZGl2aWR1YWxzIGZyb20gc29tZSBzcGVjaWVzIGNhbiBiZSBmb3VuZCBpbiBlaXRoZXIgQ1BTIFRyYXdsIExpZmUgSGlzdG9yeSBMZW5ndGggRnJlcXVlbmN5IG9yIHRoZSBDUFMgVHJhd2wgTGlmZSBIaXN0b3J5IFNwZWNpbWVuIGRhdGFzZXRzLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZVxuc2hpcFxuaGF1bCAoSGF1bCBOdW1iZXIpXG5jb2xsZWN0aW9uXG5sYXRpdHVkZSAoU3RhcnQgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKFN0YXJ0IExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxuc3RvcF9sYXRpdHVkZVxuc3RvcF9sb25naXR1ZGVcbnRpbWUgKEVxdWlsaWJyaXVtIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5oYXVsYmFja190aW1lIChIYXVsIEJhY2sgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnN1cmZhY2VfdGVtcCAoU3VyZmFjZSBUZW1wZXJhdHVyZSwgZGVncmVlIEMpXG5zdXJmYWNlX3RlbXBfbWV0aG9kIChTdXJmYWNlIFRlbXBlcmF0dXJlIE1ldGhvZClcbnNoaXBfc3BkX3Rocm91Z2hfd2F0ZXIgKFNoaXAgU3BlZWQgVGhyb3VnaCBXYXRlciwga25vdClcbml0aXNfdHNuIChJdGlzVFNOKVxuc2NpZW50aWZpY19uYW1lXG5zdWJzYW1wbGVfY291bnRcbnN1YnNhbXBsZV93ZWlnaHQgKGtnKVxucmVtYWluaW5nX3dlaWdodCAoa2cpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvRlJEQ1BTVHJhd2xMSEhhdWxDYXRjaF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvRlJEQ1BTVHJhd2xMSEhhdWxDYXRjaF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9GUkRDUFNUcmF3bExISGF1bENhdGNoL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zd2ZzYy5ub2FhLmdvdi9GUkQvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL0ZSRENQU1RyYXdsTEhIYXVsQ2F0Y2gucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPUZSRENQU1RyYXdsTEhIYXVsQ2F0Y2gmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQS1GaXNoZXJpZXMvU291dGh3ZXN0IEZpc2hlcmllcyBTY2llbmNlIENlbnRlciIsICJGUkRDUFNUcmF3bExISGF1bENhdGNoIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0ZSRENQU1RyYXdsTEhMZW5ndGhGcmVxdWVuY3kuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0ZSRENQU1RyYXdsTEhMZW5ndGhGcmVxdWVuY3kiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvRlJEQ1BTVHJhd2xMSExlbmd0aEZyZXF1ZW5jeS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDUFMgVHJhd2wgTGlmZSBIaXN0b3J5IExlbmd0aCBGcmVxdWVuY3kgRGF0YSIsICJMZW5ndGggZGlzdHJpYnV0aW9uIG9mIGEgc3Vic2V0IG9mIGluZGl2aWR1YWxzIGZyb20gYSBzcGVjaWVzIChtYWlubHkgbm9uLXRhcmdldCkgY2F1Z2h0IGR1cmluZyBTV0ZTQy1GUkQgZmlzaGVyeSBpbmRlcGVuZGVudCB0cmF3bCBzdXJ2ZXlzIG9mIGNvYXN0YWwgcGVsYWdpYyBzcGVjaWVzLiBNZWFzdXJlZCBsZW5ndGhzIGZvciBpbmRpY2F0ZWQgbGVuZ3RoIHR5cGUgKGZvcmssIHN0YW5kYXJkLCB0b3RhbCwgb3IgbWFudGxlKSB3ZXJlIGdyb3VwZWQgaW4gMTAgbW0gYmlucyAoaWRlbnRpZmllZCBieSB0aGUgbWlkcG9pbnQgb2YgdGhlIGxlbmd0aCBjbGFzcykgYW5kIGNvdW50cyBhcmUgcmVjb3JkZWQgYnkgc2V4LiBEb2VzIG5vdCBpbmNsdWRlIHNwZWNpZXMgd2l0aCBpbmRpdmlkdWFsIGxlbmd0aHMgcmVjb3JkZWQgaW4gdGhlIENQUyBUcmF3bCBMaWZlIEhpc3RvcnkgU3BlY2ltZW4gZGF0YXNldC5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG5jcnVpc2VcbnNoaXBcbmhhdWwgKEhhdWwgTnVtYmVyKVxuY29sbGVjdGlvblxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5pdGlzX3RzbiAoSXRpc1RTTilcbnNjaWVudGlmaWNfbmFtZVxubGVuZ3RoX2NsYXNzXG5sZW5ndGhfdHlwZVxubWFsZVxuZmVtYWxlXG51bmtub3duXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvRlJEQ1BTVHJhd2xMSExlbmd0aEZyZXF1ZW5jeV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvRlJEQ1BTVHJhd2xMSExlbmd0aEZyZXF1ZW5jeV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9GUkRDUFNUcmF3bExITGVuZ3RoRnJlcXVlbmN5L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zd2ZzYy5ub2FhLmdvdi9GUkQvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL0ZSRENQU1RyYXdsTEhMZW5ndGhGcmVxdWVuY3kucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPUZSRENQU1RyYXdsTEhMZW5ndGhGcmVxdWVuY3kmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQS1GaXNoZXJpZXMvU291dGh3ZXN0IEZpc2hlcmllcyBTY2llbmNlIENlbnRlciIsICJGUkRDUFNUcmF3bExITGVuZ3RoRnJlcXVlbmN5Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0ZSRENQU1RyYXdsTEhTcGVjaW1lbi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvRlJEQ1BTVHJhd2xMSFNwZWNpbWVuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0ZSRENQU1RyYXdsTEhTcGVjaW1lbi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDUFMgVHJhd2wgTGlmZSBIaXN0b3J5IFNwZWNpbWVuIERhdGEiLCAiSW5kaXZpZHVhbCBzcGVjaW1lbnMgbWVhc3VyZWQgKHdlaWdodCBpbiBncmFtcyBhbmQgbGVuZ3RoIGluIG1tKSBhbmQgc2V4ZWQgZnJvbSBtYWlubHkgdGFyZ2V0ZWQgc3BlY2llcyBjYXVnaHQgZHVyaW5nIFNXRlNDLUZSRCBmaXNoZXJ5IGluZGVwZW5kZW50IHRyYXdsIHN1cnZleXMgb2YgY29hc3RhbCBwZWxhZ2ljIHNwZWNpZXMuIEluZGl2aWR1YWxzIGFyZSBjYXRlZ29yaXplZCBhcyByYW5kb20gb3Igbm9uLXJhbmRvbSBzYW1wbGVzLiBEb2VzIG5vdCBpbmNsdWRlIHNwZWNpZXMgd2l0aCBsZW5ndGggYmlucyByZWNvcmRlZCBpbiB0aGUgQ1BTIFRyYXdsIExpZmUgSGlzdG9yeSBMZW5ndGggRnJlcXVlbmN5IGRhdGFzZXQuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxuY3J1aXNlXG5zaGlwXG5oYXVsIChIYXVsIE51bWJlcilcbmNvbGxlY3Rpb25cbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuaXRpc190c24gKEl0aXNUU04pXG5zY2llbnRpZmljX25hbWVcbnNwZWNpbWVuX251bWJlclxuc2V4XG5pc19yYW5kb21fc2FtcGxlXG53ZWlnaHQgKGcpXG5zdGFuZGFyZF9sZW5ndGggKG1tKVxuZm9ya19sZW5ndGggKG1tKVxudG90YWxfbGVuZ3RoIChtbSlcbm1hbnRsZV9sZW5ndGggKG1tKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL0ZSRENQU1RyYXdsTEhTcGVjaW1lbl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvRlJEQ1BTVHJhd2xMSFNwZWNpbWVuX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL0ZSRENQU1RyYXdsTEhTcGVjaW1lbi9pbmRleC5qc29uIiwgImh0dHBzOi8vc3dmc2Mubm9hYS5nb3YvRlJELyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9GUkRDUFNUcmF3bExIU3BlY2ltZW4ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPUZSRENQU1RyYXdsTEhTcGVjaW1lbiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBLUZpc2hlcmllcy9Tb3V0aHdlc3QgRmlzaGVyaWVzIFNjaWVuY2UgQ2VudGVyIiwgIkZSRENQU1RyYXdsTEhTcGVjaW1lbiJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvQVdTLUNSUkYiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvQVdTLUNSUkYuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ1JSRiBXZWF0aGVyIFN0YXRpb246IFBhbGF1OiBLb3JvcjogTmdlYW5nZXMgSXNsYW5kIiwgIlNpbmNlIDIwMDcsIHRoZSBDb3JhbCBSZWVmIFJlc2VhcmNoIEZvdW5kYXRpb24gKENSUkYpIGhhcyBvcGVyYXRlZCBhIENhbXBiZWxsIFNjaWVudGlmaWMgYXV0b21hdGljIHdlYXRoZXIgc3RhdGlvbiAoQVdTKSBpbiBQYWxhdSBkZXNpZ25lZCB0byBtZWFzdXJlIG1ldGVvcm9sb2dpY2FsL2F0bW9zcGhlcmljIGNvbmRpdGlvbnMgcmVsZXZhbnQgdG8gS29yb3IgU3RhdGUncyBSb2NrIElzbGFuZHMgU291dGhlcm4gTGFnb29uLCBhIFdvcmxkIEhlcml0YWdlIFNpdGUuIFdpdGggbGl0dGxlIGZsYXQgbGFuZCBpbiB0aGUgUm9jayBJc2xhbmRzLCB0aGUgd2VhdGhlciBzdGF0aW9uIGlzIGxvY2F0ZWQgb24gYSA0MC1mdCB0b3dlciBzaXR1YXRlZCBvbiBhIGthcnN0IHJpZGdlIG9uIE5nZWFuZ2VzIElzbGFuZCBhdCAxMDAgZnQgZWxldmF0aW9uLCBhYm91dCA1LjQga20gKDMuNSBtaSkgZnJvbSBDUlJGJ3Mgc3R1ZHkgc2l0ZSBhdCBKZWxseWZpc2ggTGFrZS4gSXQgbWVhc3VyZXMgYSBzdWl0ZSBvZiBhdG1vc3BoZXJpYyBjb25kaXRpb25zIGZvciBjb21wYXJpc29uIHdpdGggQ1JSRidzIHRlbXBvcmFyeSwgZmxvYXRpbmcgd2VhdGhlciBzdGF0aW9uIGxvY2F0ZWQgb24gYSB0cmlwb2QgaW4gSmVsbHlmaXNoIExha2UsIGFuZCBwcm92aWRlcyB2aXRhbCBkYXRhIGZvciBzdHVkeWluZyBob3cgbG9jYWwgd2VhdGhlciBjb25kaXRpb25zIGFuZCBFTlNPIGV2ZW50cyBhZmZlY3QgdGhlIG1hcmluZSBsYWtlIGVudmlyb25tZW50LlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5hbHRpdHVkZSAoRGlzdGFuY2UgYWJvdmUgbWVhbiBzZWEgbGV2ZWwsIG0pXG5zdGF0aW9uX25hbWUgKEFXUy1DUlJGOiBDUlJGIFdlYXRoZXIgU3RhdGlvbjogUGFsYXU6IEtvcm9yOiBOZ2VhbmdlcyBJc2xhbmQpXG5haXJfdGVtcGVyYXR1cmUgKENlbHNpdXMpXG5haXJfdGVtcGVyYXR1cmVfbWF4IChtYXhpbXVtIGFpciB0ZW1wZXJhdHVyZSwgQ2Vsc2l1cylcbmFpcl90ZW1wZXJhdHVyZV9tYXhfdGltZSAobWF4aW11bSBhaXIgdGVtcGVyYXR1cmU6IG9ic2VydmF0aW9uIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5haXJfdGVtcGVyYXR1cmVfbWluIChtaW5pbXVtIGFpciB0ZW1wZXJhdHVyZSwgQ2Vsc2l1cylcbmFpcl90ZW1wZXJhdHVyZV9taW5fdGltZSAobWluaW11bSBhaXIgdGVtcGVyYXR1cmU6IG9ic2VydmF0aW9uIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5haXJfdGVtcGVyYXR1cmVfc3RkIChhaXIgdGVtcGVyYXR1cmUgc3RhbmRhcmQgZGV2aWF0aW9uLCBDZWxzaXVzKVxud2luZF9zcGVlZCAobS9zKVxud2luZF9zcGVlZF9tYXggKGd1c3Qgc3BlZWQsIG0vcylcbndpbmRfc3BlZWRfbWF4X3RpbWUgKGd1c3Qgc3BlZWQ6IG9ic2VydmF0aW9uIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG53aW5kX3NwZWVkX21pbiAobWluaW11bSB3aW5kIHNwZWVkLCBtL3MpXG53aW5kX3NwZWVkX21pbl90aW1lIChtaW5pbXVtIHdpbmQgc3BlZWQ6IG9ic2VydmF0aW9uIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG53aW5kX3NwZWVkX3N0ZCAod2luZCBzcGVlZCBzdGFuZGFyZCBkZXZpYXRpb24sIG0vcylcbndpbmRfZnJvbV9kaXJlY3Rpb24gKHdpbmQgZGlyZWN0aW9uLCBkZWdyZWVzKVxud2luZF9mcm9tX2RpcmVjdGlvbl9zdGQgKHdpbmQgZGlyZWN0aW9uIHN0YW5kYXJkIGRldmlhdGlvbiwgZGVncmVlcylcbnJhaW5mYWxsX2Ftb3VudCAodG90YWwgcmFpbmZhbGwsIG1tKVxuLi4uICgyMyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9BV1MtQ1JSRl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvQVdTLUNSUkZfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vQVdTLUNSUkYvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wYWNpb29zLmhhd2FpaS5lZHUvd2VhdGhlci9vYnMta29yb3IvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL0FXUy1DUlJGLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1BV1MtQ1JSRiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJDb3JhbCBSZWVmIFJlc2VhcmNoIEZvdW5kYXRpb24gKENSUkYpIiwgIkFXUy1DUlJGIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lY29jYXN0X2lucHV0cyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lY29jYXN0X2lucHV0cy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJFY29jYXN0IHNwZWNpZXMgd2VpZ2h0aW5ncyBhbmQgZW52aXJvbm1lbnRhbCBkYXRhIGRhdGVzIiwgIlRoZSBkYXRhc2V0IGNvbnRhaW5zIHRoZSBzcGVjaWVzIHdlaWdodGluZ3MgYW5kIHRoZSBkYXRlcyBvZiB0aGUgZW52aXJvbm1lbnRhbCBkYXRhIHVzZWQgZm9yIGVhY2ggRWNvQ2FzdCBNYXAgZGF0YXNldCAoaHR0cHM6Ly9jb2FzdHdhdGNoLnBmZWcubm9hYS5nb3YvZXJkZGFwL2dyaWRkYXAvZWNvY2FzdClcblxuY2RtX2RhdGFfdHlwZSA9IEdyaWRcblZBUklBQkxFUzpcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kYXRlXG5ibHVlc2hhcmsgKEJsdWUgU2hhcmsgQnljYXRjaCBNb2RlbCBXZWlnaHRpbmcpXG5ibHVlc2hhcmtUUksgKEJsdWUgU2hhcmsgVHJhY2tpbmcgTW9kZWwgV2VpZ2h0aW5nKVxuc2VhbGlvbnMgKENhbGlmb3JuaWEgU2VhIExpb25zIFRyYWNraW5nIE1vZGVsIFdlaWdodGluZylcbmxlYXRoZXJiYWNrcyAoTGVhdGhlcmJhY2sgVHVydGxlcyBNb2RlbCBXZWlnaHRpbmcpXG5zd29yZGZpc2ggKFN3b3JkZmlzaCBNb2RlbCBXZWlnaHRpbmcpXG5zc3RfdGltZSAoRGF0ZSBvZiBTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSBEYXRhLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuY2hsX3RpbWUgKERhdGUgb2YgQ2hsb3JvcGh5bGwtYSBEYXRhLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZWtlX3RpbWUgKERhdGUgb2YgRWRkeSBLaW5ldGljIEVuZXJneSBEYXRhLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc3NoX3RpbWUgKERhdGUgb2YgU2VhIFN1cmZhY2UgSGVpZ2h0IERhdGEsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG53aW5kX3RpbWUgKERhdGUgb2YgV2luZCBEYXRhLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lY29jYXN0X2lucHV0cy9pbmRleC5qc29uIiwgImh0dHBzOi8vY29hc3R3YXRjaC5wZmVnLm5vYWEuZ292L2Vjb2Nhc3QiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZWNvY2FzdF9pbnB1dHMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVjb2Nhc3RfaW5wdXRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk1GUyBTV0ZTQyBFUkQiLCAiZWNvY2FzdF9pbnB1dHMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3ByYm9TZWZpRGlldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wcmJvU2VmaURpZXQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiRmFyYWxsb24gSXNsYW5kIFNlYWJpcmQgRGlldCBTdW1tYXJ5IiwgIkRpZXQgc3VtbWFyeSBkYXRhIGZvciBDYXNzaW4ncyBBdWtsZXRzLCBDb21tb24gTXVycmVzLCBQaWdlb24gR3VpbGxlbW90cywgYW5kIFJoaW5vY2Vyb3MgQXVrbGV0cyBmcm9tIHRoZSBGYXJhbGxvbiBJc2xhbmRzLiBEYXRhIHByZXNlbnRlZCBhcmUgdGhlIHByb3BvcnRpb24gYnkgbnVtYmVyIG9mIHRoZSBtb3N0IGltcG9ydGFudCBwcmV5IGl0ZW1zIGZvciBlYWNoIHNwZWNpZXMuXG5cblRoZSBwcm9wb3J0aW9ucyBwcmVzZW50ZWQgaW4gdGhpcyB0YWJsZSBhcmUgZGVmaW5lZCBhcyB0aGUgbnVtYmVyIG9mIHRoZSBzcGVjaWZpYyBwcmV5IGl0ZW1zIG9ic2VydmVkIGRpdmlkZWQgYnkgdGhlIHRvdGFsIG51bWJlciBvZiBpZGVudGlmaWVkIHByZXkgaXRlbXMgZm9yIHRoYXQgc2Vhc29uLiBEYXRhIGZvciB0aGUgbW9zdCBpbXBvcnRhbnQgcHJleSBzcGVjaWVzIGFyZSBwcmVzZW50ZWQgaGVyZSB3aXRoIGFsbCBvdGhlciBwcmV5IGx1bXBlZCB0b2dldGhlciBhcyBcIm90aGVyXCIuIFNlZSB0aGUgU0VGSSBSZXNlYXJjaCBQbGFucyBhbmQgUHJvdG9jb2xzIGRvY3VtZW50IHVuZGVyIFJlc2VhcmNoIFRvb2xzIGZvciBtb3JlIGluZm9ybWF0aW9uIG9uIGhvdyBkaWV0IGRhdGEgaXMgY29sbGVjdGVkIGZvciBlYWNoIHNwZWNpZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxueWVhclxuUkhBVV9Sb2NrZmlzaCAoUm9ja2Zpc2ggaW4gUmhpbm9jZXJvcyBBdWtsZXQncyBEaWV0LCBwZXJjZW50KVxuUkhBVV9BbmNob3Z5IChBbmNob3Z5IGluIFJoaW5vY2Vyb3MgQXVrbGV0J3MgRGlldCwgcGVyY2VudClcblJIQVVfU2F1cnkgKFNhdXJ5IGluIFJoaW5vY2Vyb3MgQXVrbGV0J3MgRGlldCwgcGVyY2VudClcblJIQVVfT3RoZXIgKE90aGVyIGluIFJoaW5vY2Vyb3MgQXVrbGV0J3MgRGlldCwgcGVyY2VudClcbkNPTVVfUm9ja2Zpc2ggKFJvY2tmaXNoIGluIENvbW1vbiBNdXJyZSdzIERpZXQsIHBlcmNlbnQpXG5DT01VX0FuY2hvdnlTYXJkaW5lIChBbmNob3Z5JlNhcmRpbmUgaW4gQ29tbW9uIE11cnJlJ3MgRGlldCwgcGVyY2VudClcbkNPTVVfT3RoZXIgKE90aGVyIGluIENvbW1vbiBNdXJyZSdzIERpZXQsIHBlcmNlbnQpXG5QSUdVX1JvY2tmaXNoIChSb2NrZmlzaCBpbiBQaWdlb24gR3VpbGxlbW90J3MgRGlldCwgcGVyY2VudClcblBJR1VfU2N1bHBpbiAoU2N1bHBpbiBpbiBQaWdlb24gR3VpbGxlbW90J3MgRGlldCwgcGVyY2VudClcblBJR1VfRmxhdGZpc2ggKEZsYXRmaXNoIGluIFBpZ2VvbiBHdWlsbGVtb3QncyBEaWV0LCBwZXJjZW50KVxuUElHVV9PdGhlciAoT3RoZXIgaW4gUGlnZW9uIEd1aWxsZW1vdCdzIERpZXQsIHBlcmNlbnQpXG5DQUFVX0V1cGFodXNpaWRzIChFdXBhaHVzaWlkcyBpbiBDYXNzaW4ncyBBdWtsZXQncyBEaWV0LCBwZXJjZW50KVxuQ0FBVV9NeXNpaWRzIChNeXNpaWRzIGluIENhc3NpbidzIEF1a2xldCdzIERpZXQsIHBlcmNlbnQpXG5DQUFVX0FtcGhpcG9kcyAoQW1waGlwb2RzIGluIENhc3NpbidzIEF1a2xldCdzIERpZXQsIHBlcmNlbnQpXG5DQUFVX1BpY2VzIChQaWNlcyBpbiBDYXNzaW4ncyBBdWtsZXQncyBEaWV0LCBwZXJjZW50KVxuQ0FBVV9PdGhlciAoT3RoZXIgaW4gQ2Fzc2luJ3MgQXVrbGV0J3MgRGlldCwgcGVyY2VudClcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcHJib1NlZmlEaWV0L2luZGV4Lmpzb24iLCAiaHR0cDovL2RhdGEucHJiby5vcmcvY2FkYzIvaW5kZXgucGhwP21hY3Q9TGlua2VkQXJ0aWNsZXMsY250bnQwMSxkZXRhaWwsMCZjbnRudDAxYXJ0aWNsZV9pZD0xNTUmY250bnQwMXJldHVybmlkPTE1MCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wcmJvU2VmaURpZXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXByYm9TZWZpRGlldCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJQUkJPIiwgInByYm9TZWZpRGlldCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcHJib1NlZmlQaGVuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3ByYm9TZWZpUGhlbi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJGYXJhbGxvbiBJc2xhbmQgU2VhYmlyZCBQaGVub2xvZ3kgU3VtbWFyeSIsICJQaGVub2xvZ3kgKHRpbWluZyBvZiBicmVlZGluZykgc3VtbWFyeSBkYXRhIGZvciBCcmFuZHQncyBDb3Jtb3JhbnQsIENhc3NpbidzIEF1a2xldCwgQ29tbW9uIE11cnJlLCBQaWdlb24gR3VpbGxlbW90LCBhbmQgUmhpbm9jZXJvcyBBdWtsZXQgYnJlZWRpbmcgYXQgdGhlIEZhcmFsbG9uIElzbGFuZHMuIERhdGEgcHJlc2VudGVkIGFyZSBhbm51YWwgbWVhbiBsYXlpbmcgZGF0ZSBmb3IgdGhlIGZpcnN0IG9yIG9ubHkgZWdnIGxhaWQgYWxvbmcgd2l0aCB0aGUgc3RhbmRhcmQgZGV2aWF0aW9uLlxuXG5UaGUgbWVhbiBsYXlpbmcgZGF0ZSBpcyBjYWxjdWxhdGVkIGZyb20gYWxsIHNpdGVzIHdoZXJlIHRoZSBleGFjdCBsYXlpbmcgZGF0ZSBpcyBrbm93biB3aXRoaW4gdGhlIGNoZWNrIHBlcmlvZCBmb3IgdGhhdCBzcGVjaWVzICgxLTUgZGF5cykuIFRoZSBtZWFuIGxheSBkYXRlcyBhcmUgcHJlc2VudGVkIGFzIGp1bGlhbiBkYXRlcyAoZGF5IG9mIHllYXIpIGFuZCB0aGUgc3RhbmRhcmQgZGV2aWF0aW9uIGlzIGluIGRheXMuIFNlZSB0aGUgU0VGSSBSZXNlYXJjaCBQbGFucyBhbmQgUHJvdG9jb2xzIGRvY3VtZW50IHVuZGVyIFJlc2VhcmNoIFRvb2xzIGZvciBtb3JlIGluZm9ybWF0aW9uIG9uIGhvdyBsYXkgZGF0ZXMgYXJlIGRldGVybWluZWQgZm9yIGVhY2ggc3BlY2llcy5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG55ZWFyXG5CUkFDX21lYW4gKEJyYW5kdCdzIENvcm1vcmFudCBNZWFuLCBkYXlfb2ZfeWVhcilcbkJSQUNfc2QgKEJyYW5kdCdzIENvcm1vcmFudCBTdGFuZGFyZCBEZXZpYXRpb24sIGRheXMpXG5DQUFVX21lYW4gKENhc3NpbidzIEF1a2xldCBNZWFuLCBkYXlfb2ZfeWVhcilcbkNBQVVfc2QgKENhc3NpbidzIEF1a2xldCBTdGFuZGFyZCBEZXZpYXRpb24sIGRheXMpXG5DT01VX21lYW4gKENvbW1vbiBNdXJyZSBNZWFuLCBkYXlfb2ZfeWVhcilcbkNPTVVfc2QgKENvbW1vbiBNdXJyZSBTdGFuZGFyZCBEZXZpYXRpb24sIGRheXMpXG5QSUdVX21lYW4gKFBpZ2VvbiBHdWlsbGVtb3QgTWVhbiwgZGF5X29mX3llYXIpXG5QSUdVX3NkIChQaWdlb24gR3VpbGxlbW90IFN0YW5kYXJkIERldmlhdGlvbiwgZGF5cylcblJIQVVfbWVhbiAoUmhpbm9jZXJvcyBBdWtsZXQgTWVhbiwgZGF5X29mX3llYXIpXG5SSEFVX3NkIChSaGlub2Nlcm9zIEF1a2xldCBTdGFuZGFyZCBEZXZpYXRpb24sIGRheXMpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3ByYm9TZWZpUGhlbi9pbmRleC5qc29uIiwgImh0dHA6Ly9kYXRhLnByYm8ub3JnL2NhZGMyL2luZGV4LnBocD9tYWN0PUxpbmtlZEFydGljbGVzLGNudG50MDEsZGV0YWlsLDAmY250bnQwMWFydGljbGVfaWQ9MTU2JmNudG50MDFyZXR1cm5pZD0xNTAiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcHJib1NlZmlQaGVuLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wcmJvU2VmaVBoZW4mc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUFJCTyIsICJwcmJvU2VmaVBoZW4iXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3ByYm9TZWZpUG9wIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3ByYm9TZWZpUG9wLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkZhcmFsbG9uIElzbGFuZCBTZWFiaXJkIFBvcHVsYXRpb24gU3VtbWFyeSIsICJBbm51YWwgYnJlZWRpbmcgcG9wdWxhdGlvbiBlc3RpbWF0ZXMgZm9yIEJyYW5kdCdzIENvcm1vcmFudCwgQ2Fzc2luJ3MgQXVrbGV0LCBDb21tb24gTXVycmUsIERvdWJsZS1jcmVzdGVkIENvcm1vcmFudCwgUGVsYWdpYyBDb3Jtb3JhbnQsIFBpZ2VvbiBHdWlsbGVtb3QsIFR1ZnRlZCBQdWZmaW4sIGFuZCBXZXN0ZXJuIEd1bGwgYXQgdGhlIEZhcmFsbG9uIElzbGFuZHMuIERhdGEgcHJlc2VudGVkIGFyZSB0aGUgbnVtYmVyIG9mIGJyZWVkaW5nIGFkdWx0cyBlc3RpbWF0ZWQgZm9yIGVhY2ggc2Vhc29uLlxuXG5CcmVlZGluZyBwb3B1bGF0aW9uIGVzdGltYXRlcyBmb3IgbW9zdCBzcGVjaWVzIGFyZSBiYXNlZCBvbiBlaXRoZXIgZGlyZWN0IGNvdW50cyBvZiBhbmltYWxzIG9yIG5lc3RzLiBDYXNzaW4ncyBhdWtsZXQgZXN0aW1hdGVzIGFyZSBiYXNlZCBvbiB0aGUgcGVyY2VudCBjaGFuZ2UgaW4gYnVycm93L2NyZXZpY2UgZGVuc2l0eSB3aXRoaW4gYSBzZXJpZXMgb2YgaW5kZXggcGxvdHMuIFRoaXMgcmVsYXRpdmUgY2hhbmdlIGlzIHRoZW4gYXBwbGllZCB0byB0aGUgbGFzdCBmdWxsIGNlbnN1cyBmcm9tIDE5ODkgdG8gYXJyaXZlIGF0IGEgY3VycmVudCBwb3B1bGF0aW9uIGVzdGltYXRlLiBTZWUgdGhlIFNFRkkgUmVzZWFyY2ggUGxhbnMgYW5kIFByb3RvY29scyBkb2N1bWVudCB1bmRlciBSZXNlYXJjaCBUb29scyBmb3IgbW9yZSBpbmZvcm1hdGlvbiBvbiBob3cgdGhlc2UgZXN0aW1hdGVzIHdlcmUgZGV0ZXJtaW5lZC5cblxuTm90ZTogQ2Fzc2luJ3MgYXVrbGV0IHBvcHVsYXRpb24gZXN0aW1hdGUgaXMgZm9yIFNvdXRoZWFzdCBGYXJhbGxvbiBJc2xhbmQgb25seS5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG55ZWFyXG5CUkFDIChQb3B1bGF0aW9uIG9mIEJyYW5kdCdzIENvcm1vcmFudCwgY291bnQpXG5DQUFVIChQb3B1bGF0aW9uIG9mIENhc3NpbidzIEF1a2xldCwgY291bnQpXG5DT01VIChQb3B1bGF0aW9uIG9mIENvbW1vbiBNdXJyZSwgY291bnQpXG5EQ0NPIChQb3B1bGF0aW9uIG9mIERvdWJsZS1jcmVzdGVkIENvcm1vcmFudCwgY291bnQpXG5QRUNPIChQb3B1bGF0aW9uIG9mIFBlbGFnaWMgQ29ybW9yYW50LCBjb3VudClcblBJR1UgKFBvcHVsYXRpb24gb2YgUGlnZW9uIEd1aWxsZW1vdCwgY291bnQpXG5UVVBVIChQb3B1bGF0aW9uIG9mIFR1ZnRlZCBQdWZmaW4sIGNvdW50KVxuV0VHVSAoUG9wdWxhdGlvbiBvZiBXZXN0ZXJuIEd1bGwsIGNvdW50KVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wcmJvU2VmaVBvcC9pbmRleC5qc29uIiwgImh0dHA6Ly9kYXRhLnByYm8ub3JnL2NhZGMyL2luZGV4LnBocD9tYWN0PUxpbmtlZEFydGljbGVzLGNudG50MDEsZGV0YWlsLDAmY250bnQwMWFydGljbGVfaWQ9MTU0JmNudG50MDFyZXR1cm5pZD0xNTAiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcHJib1NlZmlQb3AucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXByYm9TZWZpUG9wJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlBSQk8iLCAicHJib1NlZmlQb3AiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3ByYm9TZWZpUHJvZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wcmJvU2VmaVByb2QuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiRmFyYWxsb24gSXNsYW5kIFNlYWJpcmQgUHJvZHVjdGl2aXR5IFN1bW1hcnkiLCAiQW5udWFsIG1lYW4gcHJvZHVjdGl2aXR5IGZvciBBc2h5IFN0b3JtLXBldHJlbCwgQnJhbmR0J3MgQ29ybW9yYW50LCBDYXNzaW4ncyBBdWtsZXQsIENvbW1vbiBNdXJyZSwgUGVsYWdpYyBDb3Jtb3JhbnQsIFBpZ2VvbiBHdWlsbGVtb3QsIFJoaW5vY2Vyb3MgQXVrbGV0IGFuZCBXZXN0ZXJuIEd1bGwgYnJlZWRpbmcgb24gdGhlIEZhcmFsbG9uIElzbGFuZHMuIERhdGEgcHJlc2VudGVkIGFyZSB0aGUgbWVhbiBudW1iZXIgb2YgY2hpY2tzIGZsZWRnZWQgcGVyIGJyZWVkaW5nIHBhaXIgYWxvbmcgd2l0aCB0aGUgc3RhbmRhcmQgZGV2aWF0aW9uLlxuXG5NZWFuIGFubnVhbCBwcm9kdWN0aXZpdHkgKG51bWJlciBvZiBjaGlja3MgZmxlZGdlZCBwZXIgYnJlZWRpbmcgcGFpcikgaXMgZGV0ZXJtaW5lZCB0aHJvdWdoIHJlZ3VsYXIgY2hlY2tzIG9mIGJyZWVkaW5nIHNpdGVzIGFuZCBpbmNsdWRlcyBkYXRhIGZyb20gYWxsIGJyZWVkaW5nIGF0dGVtcHRzIHdpdGhpbiB0aGF0IHNlYXNvbi4gU2VlIHRoZSBTRUZJIFJlc2VhcmNoIFBsYW5zIGFuZCBQcm90b2NvbHMgZG9jdW1lbnQgdW5kZXIgUmVzZWFyY2ggVG9vbHMgZm9yIG1vcmUgaW5mb3JtYXRpb24gb24gaG93IHRoZXNlIGVzdGltYXRlcyB3ZXJlIGRldGVybWluZWQuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxueWVhclxuQVNTUF9ycyAoQXNoeSBTdG9ybS1wZXRyZWwgQ2hpY2tzIHBlciBCcmVlZGluZyBQYWlyLCBtZWFuKVxuQVNTUF9zZCAoQXNoeSBTdG9ybS1wZXRyZWwgU3RhbmRhcmQgRGV2aWF0aW9uKVxuQlJBQ19ycyAoQnJhbmR0J3MgQ29ybW9yYW50IENoaWNrcyBwZXIgQnJlZWRpbmcgUGFpciwgbWVhbilcbkJSQUNfc2QgKEJyYW5kdCdzIENvcm1vcmFudCBTdGFuZGFyZCBEZXZpYXRpb24pXG5DQUFVX3JzIChDYXNzaW4ncyBBdWtsZXQgQ2hpY2tzIHBlciBCcmVlZGluZyBQYWlyLCBtZWFuKVxuQ0FBVV9zZCAoQ2Fzc2luJ3MgQXVrbGV0IFN0YW5kYXJkIERldmlhdGlvbilcbkNPTVVfcnMgKENvbW1vbiBNdXJyZSBDaGlja3MgcGVyIEJyZWVkaW5nIFBhaXIsIG1lYW4pXG5DT01VX3NkIChDb21tb24gTXVycmUgU3RhbmRhcmQgRGV2aWF0aW9uKVxuUElHVV9ycyAoUGlnZW9uIEd1aWxsZW1vdCBDaGlja3MgcGVyIEJyZWVkaW5nIFBhaXIsIG1lYW4pXG5QSUdVX3NkIChQaWdlb24gR3VpbGxlbW90IFN0YW5kYXJkIERldmlhdGlvbilcblBFQ09fcnMgKFBlbGFnaWMgQ29ybW9yYW50IENoaWNrcyBwZXIgQnJlZWRpbmcgUGFpciwgbWVhbilcblBFQ09fc2QgKFBlbGFnaWMgQ29ybW9yYW50IFN0YW5kYXJkIERldmlhdGlvbilcblJIQVVfcnMgKFJoaW5vY2Vyb3MgQXVrbGV0IENoaWNrcyBwZXIgQnJlZWRpbmcgUGFpciwgbWVhbilcblJIQVVfc2QgKFJoaW5vY2Vyb3MgQXVrbGV0IFN0YW5kYXJkIERldmlhdGlvbilcbldFR1VfcnMgKFdlc3Rlcm4gR3VsbCBDaGlja3MgcGVyIEJyZWVkaW5nIFBhaXIsIG1lYW4pXG5XRUdVX3NkIChXZXN0ZXJuIEd1bGwgU3RhbmRhcmQgRGV2aWF0aW9uKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wcmJvU2VmaVByb2QvaW5kZXguanNvbiIsICJodHRwOi8vZGF0YS5wcmJvLm9yZy9jYWRjMi9pbmRleC5waHA/bWFjdD1MaW5rZWRBcnRpY2xlcyxjbnRudDAxLGRldGFpbCwwJmNudG50MDFhcnRpY2xlX2lkPTE1MyZjbnRudDAxcmV0dXJuaWQ9MTUwIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3ByYm9TZWZpUHJvZC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cHJib1NlZmlQcm9kJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlBSQk8iLCAicHJib1NlZmlQcm9kIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzXzEwMDBnZW5vbWVzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfMTAwMGdlbm9tZXMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfMTAwMGdlbm9tZXMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyAxMDAwZ2Vub21lcyBCdWNrZXQ6IDEwMDAgR2Vub21lcyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIDEwMDBnZW5vbWVzIGJ1Y2tldCBhdCBodHRwczovLzEwMDBnZW5vbWVzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiAxMDAwIEdlbm9tZXNcbk5hbWUyOiBodHRwOi8vd3d3LmludGVybmF0aW9uYWxnZW5vbWUub3JnL2Zvcm1hdHNcbkRlc2NyaXB0aW9uOiBUaGUgMTAwMCBHZW5vbWVzIFByb2plY3QgaXMgYW4gaW50ZXJuYXRpb25hbCBjb2xsYWJvcmF0aW9uIHdoaWNoIGhhcyBlc3RhYmxpc2hlZCB0aGUgbW9zdCBkZXRhaWxlZCBjYXRhbG9ndWUgb2YgaHVtYW4gZ2VuZXRpYyB2YXJpYXRpb24sIGluY2x1ZGluZyBTTlBzLCBzdHJ1Y3R1cmFsIHZhcmlhbnRzLCBhbmQgdGhlaXIgaGFwbG90eXBlIGNvbnRleHQuIFRoZSBmaW5hbCBwaGFzZSBvZiB0aGUgcHJvamVjdCBzZXF1ZW5jZWQgbW9yZSB0aGFuIDI1MDAgaW5kaXZpZHVhbHMgZnJvbSAyNiBkaWZmZXJlbnQgcG9wdWxhdGlvbnMgYXJvdW5kIHRoZSB3b3JsZCBhbmQgcHJvZHVjZWQgYW4gaW50ZWdyYXRlZCBzZXQgb2YgcGhhc2VkIGhhcGxvdHlwZXMgd2l0aCBtb3JlIHRoYW4gODAgbWlsbGlvbiB2YXJpYW50cyBmb3IgdGhlc2UgaW5kaXZpZHVhbHMuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZG9jcy5vcGVuZGF0YS5hd3MvMTAwMGdlbm9tZXMvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IGh0dHA6Ly93d3cuaW50ZXJuYXRpb25hbGdlbm9tZS5vcmcvY29udGFjdFxuVXBkYXRlRnJlcXVlbmN5OiBOb3QgdXBkYXRlZFxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzXzEwMDBnZW5vbWVzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvMTAwMC1nZW5vbWVzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzXzEwMDBnZW5vbWVzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzXzEwMDBnZW5vbWVzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc18xMDAwZ2Vub21lcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc18za3JpY2VnZW5vbWUiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc18za3JpY2VnZW5vbWUuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfM2tyaWNlZ2Vub21lLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgM2tyaWNlZ2Vub21lIEJ1Y2tldDogMzAwMCBSaWNlIEdlbm9tZXMgUHJvamVjdCIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIDNrcmljZWdlbm9tZSBidWNrZXQgYXQgaHR0cHM6Ly8za3JpY2VnZW5vbWUuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IDMwMDAgUmljZSBHZW5vbWVzIFByb2plY3Rcbk5hbWUyOiBodHRwOi8vczMuYW1hem9uYXdzLmNvbS8za3JpY2VnZW5vbWUvUkVBRE1FLXNucF9waXBlbGluZS50eHRcbkRlc2NyaXB0aW9uOiBUaGUgMzAwMCBSaWNlIEdlbm9tZSBQcm9qZWN0IGlzIGFuIGludGVybmF0aW9uYWwgZWZmb3J0IHRvIHNlcXVlbmNlIHRoZSBnZW5vbWVzIG9mIDMsMDI0IHJpY2UgdmFyaWV0aWVzIGZyb20gODkgY291bnRyaWVzLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzLzNrcmljZWdlbm9tZS9yZWFkbWUuaHRtbFxuQ29udGFjdDogaHR0cDovL2lyaWMuaXJyaS5vcmcvY29udGFjdC11c1xuVXBkYXRlRnJlcXVlbmN5OiBOb3QgdXBkYXRlZFxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzXzNrcmljZWdlbm9tZS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzLzNrcmljZWdlbm9tZS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc18za3JpY2VnZW5vbWUucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfM2tyaWNlZ2Vub21lJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc18za3JpY2VnZW5vbWUiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfYWZ0X3ZiaV9wZHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19hZnRfdmJpX3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19hZnRfdmJpX3Bkcy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGFmdC12YmktcGRzIEJ1Y2tldDogQW1hem9uIEJpbiBJbWFnZSBEYXRhc2V0OiBPdmVyIDUwMCwwMDAgYmluIEpQRUcgaW1hZ2VzIGFuZCBjb3JyZXNwb25kaW5nIEpTT04gbWV0YWRhdGEgZmlsZXMgZGVzY3JpYmluZyBpdGVtcyBpbiBiaW5zIGluIEFtYXpvbiBGdWxmaWxsbWVudCBDZW50ZXJzLiIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGFmdC12YmktcGRzIGJ1Y2tldCBhdCBodHRwczovL2FmdC12YmktcGRzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBBbWF6b24gQmluIEltYWdlIERhdGFzZXRcbk5hbWUyOiBPdmVyIDUwMCwwMDAgYmluIEpQRUcgaW1hZ2VzIGFuZCBjb3JyZXNwb25kaW5nIEpTT04gbWV0YWRhdGEgZmlsZXMgZGVzY3JpYmluZyBpdGVtcyBpbiBiaW5zIGluIEFtYXpvbiBGdWxmaWxsbWVudCBDZW50ZXJzLlxuRGVzY3JpcHRpb246IFRoZSBBbWF6b24gQmluIEltYWdlIERhdGFzZXQgY29udGFpbnMgb3ZlciA1MDAsMDAwIGltYWdlcyBhbmQgbWV0YWRhdGEgZnJvbSBiaW5zIG9mIGEgcG9kIGluIGFuIG9wZXJhdGluZyBBbWF6b24gRnVsZmlsbG1lbnQgQ2VudGVyLiBUaGUgYmluIGltYWdlcyBpbiB0aGlzIGRhdGFzZXQgYXJlIGNhcHR1cmVkIGFzIHJvYm90IHVuaXRzIGNhcnJ5IHBvZHMgYXMgcGFydCBvZiBub3JtYWwgQW1hem9uIEZ1bGZpbGxtZW50IENlbnRlciBvcGVyYXRpb25zLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL2FmdC12YmktcGRzL3JlYWRtZS5odG1sXG5Db250YWN0OiBhbWF6b24tYmluLWltYWdlc0BhbWF6b24uY29tXG5NYW5hZ2VkQnk6IFtBbWF6b25dKGh0dHBzOi8vd3d3LmFtYXpvbi5jb20vKVxuVXBkYXRlRnJlcXVlbmN5OiBOb3QgdXBkYXRlZFxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2FmdF92YmlfcGRzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvYW1hem9uLWJpbi1pbWFnZXJ5LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2FmdF92YmlfcGRzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2FmdF92YmlfcGRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19hZnRfdmJpX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19hbGxlbl9icmFpbl9vYnNlcnZhdG9yeSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2FsbGVuX2JyYWluX29ic2VydmF0b3J5LmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2FsbGVuX2JyYWluX29ic2VydmF0b3J5LyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgYWxsZW4tYnJhaW4tb2JzZXJ2YXRvcnkgQnVja2V0OiBBbGxlbiBCcmFpbiBPYnNlcnZhdG9yeSAtIFZpc3VhbCBDb2RpbmcgQVdTIFB1YmxpYyBEYXRhIFNldDogUHJvamVjdCBkYXRhIGZpbGVzIGluIGEgcHVibGljIGJ1Y2tldCIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGFsbGVuLWJyYWluLW9ic2VydmF0b3J5IGJ1Y2tldCBhdCBodHRwczovL2FsbGVuLWJyYWluLW9ic2VydmF0b3J5LnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBBbGxlbiBCcmFpbiBPYnNlcnZhdG9yeSAtIFZpc3VhbCBDb2RpbmcgQVdTIFB1YmxpYyBEYXRhIFNldFxuTmFtZTI6IFByb2plY3QgZGF0YSBmaWxlcyBpbiBhIHB1YmxpYyBidWNrZXRcbkRlc2NyaXB0aW9uOiBUaGUgQWxsZW4gQnJhaW4gT2JzZXJ2YXRvcnkgXHUyMDEzIFZpc3VhbCBDb2RpbmcgaXMgdGhlIGZpcnN0IHN0YW5kYXJkaXplZCBpbiB2aXZvIHN1cnZleSBvZiBwaHlzaW9sb2dpY2FsIGFjdGl2aXR5IGluIHRoZSBtb3VzZSB2aXN1YWwgY29ydGV4LCBmZWF0dXJpbmcgcmVwcmVzZW50YXRpb25zIG9mIHZpc3VhbGx5IGV2b2tlZCBjYWxjaXVtIHJlc3BvbnNlcyBmcm9tIEdDYU1QNi1leHByZXNzaW5nIG5ldXJvbnMgaW4gc2VsZWN0ZWQgY29ydGljYWwgbGF5ZXJzLCB2aXN1YWwgYXJlYXMsIGFuZCBDcmUgbGluZXMuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZ2l0aHViLmNvbS9BbGxlbkluc3RpdHV0ZS9BbGxlblNESy93aWtpL1VzZS10aGUtQWxsZW4tQnJhaW4tT2JzZXJ2YXRvcnktJUUyJTgwJTkzLVZpc3VhbC1Db2Rpbmctb24tQVdTXG5Db250YWN0OiBhd3NwdWJsaWNkYXRhc2V0QGFsbGVuaW5zdGl0dXRlLm9yZ1xuTWFuYWdlZEJ5OiBbQWxsZW4gSW5zdGl0dXRlXShodHRwOi8vd3d3LmFsbGVuaW5zdGl0dXRlLm9yZy8pXG5VcGRhdGVGcmVxdWVuY3k6IEFubnVhbGx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfYWxsZW5fYnJhaW5fb2JzZXJ2YXRvcnkvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9hbGxlbi1icmFpbi1vYnNlcnZhdG9yeS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19hbGxlbl9icmFpbl9vYnNlcnZhdG9yeS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19hbGxlbl9icmFpbl9vYnNlcnZhdG9yeSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfYWxsZW5fYnJhaW5fb2JzZXJ2YXRvcnkiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfYWxsZW5fYnJhaW5fb2JzZXJ2YXRvcnlfdGVtcGxhdGVzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfYWxsZW5fYnJhaW5fb2JzZXJ2YXRvcnlfdGVtcGxhdGVzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2FsbGVuX2JyYWluX29ic2VydmF0b3J5X3RlbXBsYXRlcy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGFsbGVuLWJyYWluLW9ic2VydmF0b3J5LXRlbXBsYXRlcyBCdWNrZXQ6IEFsbGVuIEJyYWluIE9ic2VydmF0b3J5IC0gVmlzdWFsIENvZGluZyBBV1MgUHVibGljIERhdGEgU2V0OiBTYWdlTWFrZXIgbGF1bmNoIHRlbXBsYXRlIHdpdGggczNmcyBidWNrZXQgbW91bnRzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgYWxsZW4tYnJhaW4tb2JzZXJ2YXRvcnktdGVtcGxhdGVzIGJ1Y2tldCBhdCBodHRwczovL2FsbGVuLWJyYWluLW9ic2VydmF0b3J5LXRlbXBsYXRlcy5zMy51cy13ZXN0LTIuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogQWxsZW4gQnJhaW4gT2JzZXJ2YXRvcnkgLSBWaXN1YWwgQ29kaW5nIEFXUyBQdWJsaWMgRGF0YSBTZXRcbk5hbWUyOiBTYWdlTWFrZXIgbGF1bmNoIHRlbXBsYXRlIHdpdGggczNmcyBidWNrZXQgbW91bnRzXG5EZXNjcmlwdGlvbjogVGhlIEFsbGVuIEJyYWluIE9ic2VydmF0b3J5IFx1MjAxMyBWaXN1YWwgQ29kaW5nIGlzIHRoZSBmaXJzdCBzdGFuZGFyZGl6ZWQgaW4gdml2byBzdXJ2ZXkgb2YgcGh5c2lvbG9naWNhbCBhY3Rpdml0eSBpbiB0aGUgbW91c2UgdmlzdWFsIGNvcnRleCwgZmVhdHVyaW5nIHJlcHJlc2VudGF0aW9ucyBvZiB2aXN1YWxseSBldm9rZWQgY2FsY2l1bSByZXNwb25zZXMgZnJvbSBHQ2FNUDYtZXhwcmVzc2luZyBuZXVyb25zIGluIHNlbGVjdGVkIGNvcnRpY2FsIGxheWVycywgdmlzdWFsIGFyZWFzLCBhbmQgQ3JlIGxpbmVzLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2dpdGh1Yi5jb20vQWxsZW5JbnN0aXR1dGUvQWxsZW5TREsvd2lraS9Vc2UtdGhlLUFsbGVuLUJyYWluLU9ic2VydmF0b3J5LSVFMiU4MCU5My1WaXN1YWwtQ29kaW5nLW9uLUFXU1xuQ29udGFjdDogYXdzcHVibGljZGF0YXNldEBhbGxlbmluc3RpdHV0ZS5vcmdcbk1hbmFnZWRCeTogW0FsbGVuIEluc3RpdHV0ZV0oaHR0cDovL3d3dy5hbGxlbmluc3RpdHV0ZS5vcmcvKVxuVXBkYXRlRnJlcXVlbmN5OiBBbm51YWxseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2FsbGVuX2JyYWluX29ic2VydmF0b3J5X3RlbXBsYXRlcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2FsbGVuLWJyYWluLW9ic2VydmF0b3J5LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2FsbGVuX2JyYWluX29ic2VydmF0b3J5X3RlbXBsYXRlcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19hbGxlbl9icmFpbl9vYnNlcnZhdG9yeV90ZW1wbGF0ZXMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2FsbGVuX2JyYWluX29ic2VydmF0b3J5X3RlbXBsYXRlcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19hbWF6b25fcmV2aWV3c19wZHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19hbWF6b25fcmV2aWV3c19wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfYW1hem9uX3Jldmlld3NfcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgYW1hem9uLXJldmlld3MtcGRzIEJ1Y2tldDogQW1hem9uIEN1c3RvbWVyIFJldmlld3MgRGF0YXNldDogVFNWIGZpbGVzIG9mIHJldmlld3MiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBhbWF6b24tcmV2aWV3cy1wZHMgYnVja2V0IGF0IGh0dHBzOi8vYW1hem9uLXJldmlld3MtcGRzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBBbWF6b24gQ3VzdG9tZXIgUmV2aWV3cyBEYXRhc2V0XG5OYW1lMjogVFNWIGZpbGVzIG9mIHJldmlld3NcbkRlc2NyaXB0aW9uOiBBbWF6b24gQ3VzdG9tZXIgUmV2aWV3cyAoYS5rLmEuIFByb2R1Y3QgUmV2aWV3cykgaXMgb25lIG9mIEFtYXpvblx1MjAxOXMgaWNvbmljIHByb2R1Y3RzLiBJbiBhIHBlcmlvZCBvZiBvdmVyIHR3byBkZWNhZGVzIHNpbmNlIHRoZSBmaXJzdCByZXZpZXcgaW4gMTk5NSwgbWlsbGlvbnMgb2YgQW1hem9uIGN1c3RvbWVycyBoYXZlIGNvbnRyaWJ1dGVkIG92ZXIgYSBodW5kcmVkIG1pbGxpb24gcmV2aWV3cyB0byBleHByZXNzIG9waW5pb25zIGFuZCBkZXNjcmliZSB0aGVpciBleHBlcmllbmNlcyByZWdhcmRpbmcgcHJvZHVjdHMgb24gdGhlIEFtYXpvbi5jb20gd2Vic2l0ZS4gT3ZlciAxMzArIG1pbGxpb24gY3VzdG9tZXIgcmV2aWV3cyBhcmUgYXZhaWxhYmxlIHRvIHJlc2VhcmNoZXJzIGFzIHBhcnQgb2YgdGhpcyBkYXRhc2V0LlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL3MzLmFtYXpvbmF3cy5jb20vYW1hem9uLXJldmlld3MtcGRzL3JlYWRtZS5odG1sXG5Db250YWN0OiBjdXN0b21lci1yZXZpZXctZGF0YXNldEBhbWF6b24uY29tXG5NYW5hZ2VkQnk6IFtBbWF6b25dKGh0dHBzOi8vd3d3LmFtYXpvbi5jb20vKVxuVXBkYXRlRnJlcXVlbmN5OiBOb3QgZGVmaW5lZFxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2FtYXpvbl9yZXZpZXdzX3Bkcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2FtYXpvbi1yZXZpZXdzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2FtYXpvbl9yZXZpZXdzX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19hbWF6b25fcmV2aWV3c19wZHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2FtYXpvbl9yZXZpZXdzX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19hdmdfa2l0dGkiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19hdmdfa2l0dGkuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfYXZnX2tpdHRpLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgYXZnLWtpdHRpIEJ1Y2tldDogS0lUVEkgVmlzaW9uIEJlbmNobWFyayBTdWl0ZSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGF2Zy1raXR0aSBidWNrZXQgYXQgaHR0cHM6Ly9hdmcta2l0dGkuczMuZXUtY2VudHJhbC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IEtJVFRJIFZpc2lvbiBCZW5jaG1hcmsgU3VpdGVcbk5hbWUyOiBodHRwOi8vd3d3LmN2bGlicy5uZXQvZGF0YXNldHMva2l0dGkvcmF3X2RhdGEucGhwXG5EZXNjcmlwdGlvbjogRGF0YXNldCBhbmQgYmVuY2htYXJrcyBmb3IgY29tcHV0ZXIgdmlzaW9uIHJlc2VhcmNoIGluIHRoZSBjb250ZXh0IG9mIGF1dG9ub21vdXMgZHJpdmluZy4gVGhlIGRhdGFzZXQgaGFzIGJlZW4gcmVjb3JkZWQgaW4gYW5kIGFyb3VuZCB0aGUgY2l0eSBvZiBLYXJsc3J1aGUsIEdlcm1hbnkgdXNpbmcgdGhlIG1vYmlsZSBwbGF0Zm9ybSBBbm5pZVdheSAoVlcgc3RhdGlvbiB3YWdvbikgd2hpY2ggaGFzIGJlZW4gZXF1aXBwZWQgd2l0aCBzZXZlcmFsIFJHQiBhbmQgbW9ub2Nocm9tZSBjYW1lcmFzLCBhIFZlbG9keW5lIEhETCA2NCBsYXNlciBzY2FubmVyIGFzIHdlbGwgYXMgYW4gYWNjdXJhdGUgUlRLIGNvcnJlY3RlZCBHUFMvSU1VIGxvY2FsaXphdGlvbiB1bml0LiBUaGUgZGF0YXNldCBoYXMgYmVlbiBjcmVhdGVkIGZvciBjb21wdXRlciB2aXNpb24gYW5kIG1hY2hpbmUgbGVhcm5pbmcgcmVzZWFyY2ggb24gc3RlcmVvLCBvcHRpY2FsIGZsb3csIHZpc3VhbCBvZG9tZXRyeSwgc2VtYW50aWMgc2VnbWVudGF0aW9uLCBzZW1hbnRpYyBpbnN0YW5jZSBzZWdtZW50YXRpb24sIHJvYWQgc2VnbWVudGF0aW9uLCBzaW5nbGUgaW1hZ2UgZGVwdGggcHJlZGljdGlvbiwgZGVwdGggbWFwIGNvbXBsZXRpb24sIDJEIGFuZCAzRCBvYmplY3QgZGV0ZWN0aW9uIGFuZCBvYmplY3QgdHJhY2tpbmcuIEluIGFkZGl0aW9uLCBzZXZlcmFsIHJhdyBkYXRhIHJlY29yZGluZ3MgYXJlIHByb3ZpZGVkLiBUaGUgZGF0YXNldHMgYXJlIGNhcHR1cmVkIGJ5IGRyaXZpbmcgYXJvdW5kIHRoZSBtaWQtc2l6ZSBjaXR5IG9mIEthcmxzcnVoZSwgaW4gcnVyYWwgYXJlYXMgYW5kIG9uIGhpZ2h3YXlzLiBVcCB0byAxNSBjYXJzIGFuZCAzMCBwZWRlc3RyaWFucyBhcmUgdmlzaWJsZSBwZXIgaW1hZ2UuXG5cbkRvY3VtZW50YXRpb246IGh0dHA6Ly93d3cuY3ZsaWJzLm5ldC9kYXRhc2V0cy9raXR0aS9cbkNvbnRhY3Q6IGh0dHA6Ly93d3cuY3ZsaWJzLm5ldC9wZW9wbGUucGhwXG5VcGRhdGVGcmVxdWVuY3k6IE5vdCB1cGRhdGVkXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfYXZnX2tpdHRpL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mva2l0dGkvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfYXZnX2tpdHRpLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2F2Z19raXR0aSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfYXZnX2tpdHRpIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2F3c19lYXJ0aF9tb19hdG1vc3BoZXJpY19tb2dyZXBzX2dfcHJkIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfYXdzX2VhcnRoX21vX2F0bW9zcGhlcmljX21vZ3JlcHNfZ19wcmQuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfYXdzX2VhcnRoX21vX2F0bW9zcGhlcmljX21vZ3JlcHNfZ19wcmQvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBhd3MtZWFydGgtbW8tYXRtb3NwaGVyaWMtbW9ncmVwcy1nLXByZCBCdWNrZXQ6IFVLIE1ldCBPZmZpY2UgQXRtb3NwaGVyaWMgRGV0ZXJtaW5pc3RpYyBhbmQgUHJvYmFiaWxpc3RpYyBGb3JlY2FzdHM6IFtNZXQgT2ZmaWNlIEdsb2JhbCBhbmQgUmVnaW9uYWwgRW5zZW1ibGUgUHJlZGljdGlvbiBTeXN0ZW0gKEdsb2JhbCkgLSBNT0dSRVBTLUddKGh0dHBzOi8vd3d3Lm1ldG9mZmljZS5nb3YudWsvYmluYXJpZXMvY29udGVudC9hc3NldHMvbWV0b2ZmaWNlZ292dWsvcGRmL2RhdGEvbW9ncmVwcy1nLXBhcmFtZXRlcnMtbWF5LTIwMTkucGRmKSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGF3cy1lYXJ0aC1tby1hdG1vc3BoZXJpYy1tb2dyZXBzLWctcHJkIGJ1Y2tldCBhdCBodHRwczovL2F3cy1lYXJ0aC1tby1hdG1vc3BoZXJpYy1tb2dyZXBzLWctcHJkLnMzLmV1LXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBVSyBNZXQgT2ZmaWNlIEF0bW9zcGhlcmljIERldGVybWluaXN0aWMgYW5kIFByb2JhYmlsaXN0aWMgRm9yZWNhc3RzXG5OYW1lMjogW01ldCBPZmZpY2UgR2xvYmFsIGFuZCBSZWdpb25hbCBFbnNlbWJsZSBQcmVkaWN0aW9uIFN5c3RlbSAoR2xvYmFsKSAtIE1PR1JFUFMtR10oaHR0cHM6Ly93d3cubWV0b2ZmaWNlLmdvdi51ay9iaW5hcmllcy9jb250ZW50L2Fzc2V0cy9tZXRvZmZpY2Vnb3Z1ay9wZGYvZGF0YS9tb2dyZXBzLWctcGFyYW1ldGVycy1tYXktMjAxOS5wZGYpXG5EZXNjcmlwdGlvbjogTWV0ZW9yb2xvZ2ljYWwgZGF0YSByZXVzZXJzIG5vdyBoYXZlIGFuIGV4Y2l0aW5nIG9wcG9ydHVuaXR5IHRvIHNhbXBsZSwgZXhwZXJpbWVudCBhbmQgZXZhbHVhdGUgTWV0IE9mZmljZSBhdG1vc3BoZXJpYyBtb2RlbCBkYXRhLCB3aGlsc3QgYWxzbyBleHBlcmllbmNpbmcgYSB0cmFuc2Zvcm1hdGl2ZSBtZXRob2Qgb2YgcmVxdWVzdGluZyBkYXRhIHZpYSBSZXN0ZnVsIEFQSXMgb24gQVdTLiBBbGwgYWhlYWQgb2YgTWV0IE9mZmljZVx1MjAxOXMgb3duIG9wZXJhdGlvbmFsbHkgc3VwcG9ydGVkIEFQSSBwbGF0Zm9ybSB0aGF0IHdpbGwgYmUgbGF1bmNoZWQgaW4gbGF0ZSAyMDE5LlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2dpdGh1Yi5jb20vTWV0T2ZmaWNlL2F3cy1lYXJ0aC1leGFtcGxlc1xuQ29udGFjdDogaHR0cHM6Ly93d3cubWV0b2ZmaWNlLmdvdi51ay9hYm91dC11cy9jb250YWN0XG5VcGRhdGVGcmVxdWVuY3k6IERhaWx5ICh3aXRoIDI0IGhvdXIgZGVsYXkpXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfYXdzX2VhcnRoX21vX2F0bW9zcGhlcmljX21vZ3JlcHNfZ19wcmQvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy91ay1tZXQtb2ZmaWNlLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2F3c19lYXJ0aF9tb19hdG1vc3BoZXJpY19tb2dyZXBzX2dfcHJkLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2F3c19lYXJ0aF9tb19hdG1vc3BoZXJpY19tb2dyZXBzX2dfcHJkJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19hd3NfZWFydGhfbW9fYXRtb3NwaGVyaWNfbW9ncmVwc19nX3ByZCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19hd3NfZ3NvZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2F3c19nc29kLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2F3c19nc29kLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgYXdzLWdzb2QgQnVja2V0OiBHbG9iYWwgU3VyZmFjZSBTdW1tYXJ5IG9mIERheTogTWVhc3VyZW1lbnRzIGFuZCBtZXRhZGF0YSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGF3cy1nc29kIGJ1Y2tldCBhdCBodHRwczovL2F3cy1nc29kLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBHbG9iYWwgU3VyZmFjZSBTdW1tYXJ5IG9mIERheVxuTmFtZTI6IE1lYXN1cmVtZW50cyBhbmQgbWV0YWRhdGFcbkRlc2NyaXB0aW9uOiBHU09EIGlzIGEgY29sbGVjdGlvbiBvZiBkYWlseSB3ZWF0aGVyIG1lYXN1cmVtZW50cyAodGVtcGVyYXR1cmUsIHdpbmQgc3BlZWQsIGh1bWlkaXR5LCBwcmVzc3VyZSwgYW5kIG1vcmUpIGZyb20gOTAwMCsgd2VhdGhlciBzdGF0aW9ucyBhcm91bmQgdGhlIHdvcmxkLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL3d3dy5uY2RjLm5vYWEuZ292L1xuQ29udGFjdDogaHR0cHM6Ly93d3cubmNkYy5ub2FhLmdvdi9cblVwZGF0ZUZyZXF1ZW5jeTogQ3VycmVudGx5IHVwZGF0ZWQgaW5mcmVxdWVudGx5LiBMYXN0IHVwZGF0ZWQgb24gU2VwdGVtYmVyIDEzLCAyMDE2LlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2F3c19nc29kL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvbm9hYS1nc29kLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2F3c19nc29kLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2F3c19nc29kJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19hd3NfZ3NvZCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19icm9hZF9yZWZlcmVuY2VzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfYnJvYWRfcmVmZXJlbmNlcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19icm9hZF9yZWZlcmVuY2VzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgYnJvYWQtcmVmZXJlbmNlcyBCdWNrZXQ6IEJyb2FkIEdlbm9tZSBSZWZlcmVuY2VzOiBUaGlzIGRhdGFzZXQgaW5jbHVkZXMgdHdvIGh1bWFuIGdlbm9tZSByZWZlcmVuY2VzIGFzc2VtYmxlZCBieSB0aGUgR2Vub21lIFJlZmVyZW5jZSBDb25zb3J0aXVtOiBIZzE5IGFuZCBIZzM4LiIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGJyb2FkLXJlZmVyZW5jZXMgYnVja2V0IGF0IGh0dHBzOi8vYnJvYWQtcmVmZXJlbmNlcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogQnJvYWQgR2Vub21lIFJlZmVyZW5jZXNcbk5hbWUyOiBUaGlzIGRhdGFzZXQgaW5jbHVkZXMgdHdvIGh1bWFuIGdlbm9tZSByZWZlcmVuY2VzIGFzc2VtYmxlZCBieSB0aGUgR2Vub21lIFJlZmVyZW5jZSBDb25zb3J0aXVtOiBIZzE5IGFuZCBIZzM4LlxuRGVzY3JpcHRpb246IEJyb2FkIG1haW50YWluZWQgaHVtYW4gZ2Vub21lIHJlZmVyZW5jZSBidWlsZHMgaGcxOS9oZzM4IGFuZCBkZWNveSByZWZlcmVuY2VzLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL3MzLmFtYXpvbmF3cy5jb20vYnJvYWQtcmVmZXJlbmNlcy9icm9hZC1yZWZlcmVuY2VzLXJlYWRtZS5odG1sXG5Db250YWN0OiBoZW5zb25jQGJyb2FkaW5zdGl0dXRlLm9yZ1xuTWFuYWdlZEJ5OiBCcm9hZCBJbnN0aXR1dGVcblVwZGF0ZUZyZXF1ZW5jeTogTW9udGhseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2Jyb2FkX3JlZmVyZW5jZXMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9icm9hZC1yZWZlcmVuY2VzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2Jyb2FkX3JlZmVyZW5jZXMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfYnJvYWRfcmVmZXJlbmNlcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfYnJvYWRfcmVmZXJlbmNlcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19jYmVyc19tZXRhX3BkcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2NiZXJzX21ldGFfcGRzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2NiZXJzX21ldGFfcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgY2JlcnMtbWV0YS1wZHMgQnVja2V0OiBDQkVSUyBvbiBBV1M6IENCRVJTIG1ldGFkYXRhIChRdWlja2xvb2tzLCBtZXRhZGF0YSkiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBjYmVycy1tZXRhLXBkcyBidWNrZXQgYXQgaHR0cHM6Ly9jYmVycy1tZXRhLXBkcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogQ0JFUlMgb24gQVdTXG5OYW1lMjogQ0JFUlMgbWV0YWRhdGEgKFF1aWNrbG9va3MsIG1ldGFkYXRhKVxuRGVzY3JpcHRpb246IFRoaXMgcHJvamVjdCBjcmVhdGVzIGEgUzMgcmVwb3NpdG9yeSB3aXRoIGltYWdlcnkgYWNxdWlyZWQgYnkgdGhlIENoaW5hLUJyYXppbCBFYXJ0aCBSZXNvdXJjZXMgU2F0ZWxsaXRlIChDQkVSUykuIFRoZSBpbWFnZSBmaWxlcyBhcmUgcmVjb3JkZWQgYW5kIHByb2Nlc3NlZCBieSBJbnN0aXR1dG8gTmFjaW9uYWwgZGUgUGVzcXVpc2EgRXNwYWNpYWlzIChJTlBFKSBhbmQgYXJlIGNvbnZlcnRlZCB0byBDbG91ZCBPcHRpbWl6ZWQgR2VvdGlmZiBmb3JtYXQgaW4gb3JkZXIgdG8gb3B0aW1pemUgaXRzIHVzZSBmb3IgY2xvdWQgYmFzZWQgYXBwbGljYXRpb25zLiBUaGUgcmVwb3NpdG9yeSBjb250YWlucyBhbGwgQ0JFUlMtNCBNVVgsIEFXRkksIFBBTjVNIGFuZCBQQU4xME0gc2NlbmVzIGFjcXVpcmVkIHNpbmNlIHRoZSBzdGFydCBvZiB0aGUgc2F0ZWxsaXRlIG1pc3Npb24gYW5kIGlzIGRhaWx5IHVwZGF0ZWQgd2l0aCBuZXcgc2NlbmVzLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2dpdGh1Yi5jb20vZnJlZGxpcG9yYWNlL2NiZXJzLW9uLWF3c1xuQ29udGFjdDogaHR0cHM6Ly9saXN0cy5vc2dlby5vcmcvbWFpbG1hbi9saXN0aW5mby9jYmVycy1wZHNcbk1hbmFnZWRCeTogW0FNUyBLZXBsZXJdKGh0dHBzOi8vYW1za2VwbGVyLmNvbS8pXG5VcGRhdGVGcmVxdWVuY3k6IERhaWx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfY2JlcnNfbWV0YV9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9jYmVycy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19jYmVyc19tZXRhX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19jYmVyc19tZXRhX3BkcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfY2JlcnNfbWV0YV9wZHMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfY2dpYXJkYXRhIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfY2dpYXJkYXRhLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2NnaWFyZGF0YS8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGNnaWFyZGF0YSBCdWNrZXQ6IENDQUZTLUNsaW1hdGUgRGF0YTogQVJDIEdSSUQsIGFuZCBBUkMgQVNDSUkgZm9ybWF0IGNvbXByZXNzZWQiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBjZ2lhcmRhdGEgYnVja2V0IGF0IGh0dHBzOi8vY2dpYXJkYXRhLnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBDQ0FGUy1DbGltYXRlIERhdGFcbk5hbWUyOiBBUkMgR1JJRCwgYW5kIEFSQyBBU0NJSSBmb3JtYXQgY29tcHJlc3NlZFxuRGVzY3JpcHRpb246IEhpZ2ggcmVzb2x1dGlvbiBjbGltYXRlIGRhdGEgdG8gaGVscCBhc3Nlc3MgdGhlIGltcGFjdHMgb2YgY2xpbWF0ZSBjaGFuZ2UgcHJpbWFyaWx5IG9uIGFncmljdWx0dXJlLiBUaGVzZSBvcGVuIGFjY2VzcyBkYXRhc2V0cyBvZiBjbGltYXRlIHByb2plY3Rpb25zIHdpbGwgaGVscCByZXNlYXJjaGVycyBtYWtlIGNsaW1hdGUgY2hhbmdlIGltcGFjdCBhc3Nlc3NtZW50cy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cDovL3d3dy5jY2Fmcy1jbGltYXRlLm9yZ1xuQ29udGFjdDogaHR0cDovL3d3dy5jY2Fmcy1jbGltYXRlLm9yZy9jb250YWN0L1xuVXBkYXRlRnJlcXVlbmN5OiBFdmVyeSB0aHJlZSBtb250aHNcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19jZ2lhcmRhdGEvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9jZ2lhcmRhdGEvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfY2dpYXJkYXRhLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2NnaWFyZGF0YSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfY2dpYXJkYXRhIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2NvbW1vbmNyYXdsIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfY29tbW9uY3Jhd2wuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfY29tbW9uY3Jhd2wvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBjb21tb25jcmF3bCBCdWNrZXQ6IENvbW1vbiBDcmF3bDogQ3Jhd2wgZGF0YSAoV0FSQyBhbmQgQVJDIGZvcm1hdCkiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBjb21tb25jcmF3bCBidWNrZXQgYXQgaHR0cHM6Ly9jb21tb25jcmF3bC5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogQ29tbW9uIENyYXdsXG5OYW1lMjogQ3Jhd2wgZGF0YSAoV0FSQyBhbmQgQVJDIGZvcm1hdClcbkRlc2NyaXB0aW9uOiBBIGNvcnB1cyBvZiB3ZWIgY3Jhd2wgZGF0YSBjb21wb3NlZCBvZiBvdmVyIDI1IGJpbGxpb24gd2ViIHBhZ2VzLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwOi8vY29tbW9uY3Jhd2wub3JnL3RoZS1kYXRhL2dldC1zdGFydGVkL1xuQ29udGFjdDogaHR0cDovL2NvbW1vbmNyYXdsLm9yZy9jb25uZWN0L2NvbnRhY3QtdXMvXG5NYW5hZ2VkQnk6IFtDb21tb24gQ3Jhd2xdKGh0dHA6Ly9jb21tb25jcmF3bC5vcmcvKVxuVXBkYXRlRnJlcXVlbmN5OiBNb250aGx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfY29tbW9uY3Jhd2wvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9jb21tb25jcmF3bC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19jb21tb25jcmF3bC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19jb21tb25jcmF3bCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfY29tbW9uY3Jhd2wiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfY29ybmVsbF9lYXNfZGF0YV9sYWtlIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfY29ybmVsbF9lYXNfZGF0YV9sYWtlLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2Nvcm5lbGxfZWFzX2RhdGFfbGFrZS8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGNvcm5lbGwtZWFzLWRhdGEtbGFrZSBCdWNrZXQ6IENvcm5lbGwgRUFTIERhdGEgTGFrZTogQ29ybmVsbCBFQVMgRGF0YSBMYWtlIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgY29ybmVsbC1lYXMtZGF0YS1sYWtlIGJ1Y2tldCBhdCBodHRwczovL2Nvcm5lbGwtZWFzLWRhdGEtbGFrZS5zMy51cy1lYXN0LTIuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogQ29ybmVsbCBFQVMgRGF0YSBMYWtlXG5OYW1lMjogQ29ybmVsbCBFQVMgRGF0YSBMYWtlXG5EZXNjcmlwdGlvbjogRWFydGggJiBBdG1vc3BoZXJpYyBTY2llbmNlcyBhdCBDb3JuZWxsIFVuaXZlcnNpdHkgaGFzIGNyZWF0ZWQgYSBwdWJsaWMgZGF0YSBsYWtlIG9mIGNsaW1hdGUgZGF0YS4gVGhlIGRhdGEgaXMgc3RvcmVkIGluIGNvbHVtbmFyIHN0b3JhZ2UgZm9ybWF0cyAoT1JDKSB0byBtYWtlIGl0IHN0cmFpZ2h0Zm9yd2FyZCB0byBxdWVyeSB1c2luZyBzdGFuZGFyZCB0b29scyBsaWtlIEFtYXpvbiBBdGhlbmEgb3IgQXBhY2hlIFNwYXJrLiBUaGUgZGF0YSBpdHNlbGYgaXMgb3JpZ2luYWxseSBpbnRlbmRlZCB0byBiZSB1c2VkIGZvciBidWlsZGluZyBkZWNpc2lvbiBzdXBwb3J0IHRvb2xzIGZvciBmYXJtZXJzIGFuZCBkaWdpdGFsIGFncmljdWx0dXJlLiBUaGUgZmlyc3QgZGF0YXNldCBpcyB0aGUgaGlzdG9yaWNhbCBOREZEIC8gTkRHRCBkYXRhIGRpc3RyaWJ1dGVkIGJ5IE5DRVAgLyBOT0FBIC8gTldTLiBUaGUgTkRGRCAoTmF0aW9uYWwgRGlnaXRhbCBGb3JlY2FzdCBEYXRhYmFzZSkgYW5kIE5ER0QgKE5hdGlvbmFsIERpZ2l0YWwgR3VpZGFuY2UgRGF0YWJhc2UpIGNvbnRhaW4gZ3JpZGRlZCBmb3JlY2FzdHMgYW5kIG9ic2VydmF0aW9ucyBhdCAyLjVrbSByZXNvbHV0aW9uIGZvciB0aGUgQ29udGlndW91cyBVbml0ZWQgU3RhdGVzIChDT05VUykuIFRoZXJlIGFyZSBhbHNvIDVrbSBncmlkcyBmb3Igc2V2ZXJhbCBzbWFsbGVyIFVTIHJlZ2lvbnMgYW5kIG5vbi1jb250aW5ndW91cyB0ZXJyaXRvcmllcywgc3VjaCBhcyBIYXdhaWksIEd1YW0sIFB1ZXJ0byBSaWNvIGFuZCBBbGFza2EuIE5PQUEgZGlzdHJpYnV0ZXMgYXJjaGl2ZXMgb2YgdGhlIE5ERkQvTkRHRCB2aWEgaXRzIE5PQUEgT3BlcmF0aW9uYWwgTW9kZWwgQXJjaGl2ZSBhbmQgRGlzdHJpYnV0aW9uIFN5c3RlbSAoTk9NQURTKSBpbiBHcmliMiBmb3JtYXQuIFRoZSBkYXRhIGhhcyBiZWVuIGNvbnZlcnRlZCB0byBPUkMgdG8gb3B0aW1pemUgc3RvcmFnZSBzcGFjZSBhbmQgdG8sIG1vcmUgaW1wb3J0YW50bHksIHNpbXBsaWZ5IGRhdGEgYWNjZXNzIHZpYSBzdGFuZGFyZCBkYXRhIGFuYWx5dGljcyB0b29scy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kYXRhbGFrZS5lYXMuY29ybmVsbC5lZHUvXG5Db250YWN0OiBkaWdpdGFsYWdAY29ybmVsbC5lZHVcblVwZGF0ZUZyZXF1ZW5jeTogSG91cmx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfY29ybmVsbF9lYXNfZGF0YV9sYWtlL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvY29ybmVsbC1lYXMtZGF0YS1sYWtlLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2Nvcm5lbGxfZWFzX2RhdGFfbGFrZS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19jb3JuZWxsX2Vhc19kYXRhX2xha2Umc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2Nvcm5lbGxfZWFzX2RhdGFfbGFrZSJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19jc2VfY2ljX2lkczIwMTgiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19jc2VfY2ljX2lkczIwMTguZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfY3NlX2NpY19pZHMyMDE4LyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgY3NlLWNpYy1pZHMyMDE4IEJ1Y2tldDogQSBSZWFsaXN0aWMgQ3liZXIgRGVmZW5zZSBEYXRhc2V0IChDU0UtQ0lDLUlEUzIwMTgpOiBOZXR3b3JrIHRyYWZmaWMgYW5kIGxvZyBmaWxlcyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGNzZS1jaWMtaWRzMjAxOCBidWNrZXQgYXQgaHR0cHM6Ly9jc2UtY2ljLWlkczIwMTguczMuY2EtY2VudHJhbC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IEEgUmVhbGlzdGljIEN5YmVyIERlZmVuc2UgRGF0YXNldCAoQ1NFLUNJQy1JRFMyMDE4KVxuTmFtZTI6IE5ldHdvcmsgdHJhZmZpYyBhbmQgbG9nIGZpbGVzXG5EZXNjcmlwdGlvbjogVGhpcyBkYXRhc2V0IGlzIHRoZSByZXN1bHQgb2YgYSBjb2xsYWJvcmF0aXZlIHByb2plY3QgYmV0d2VlbiB0aGUgQ29tbXVuaWNhdGlvbnMgU2VjdXJpdHkgRXN0YWJsaXNobWVudCAoQ1NFKSBhbmQgVGhlIENhbmFkaWFuIEluc3RpdHV0ZSBmb3IgQ3liZXJzZWN1cml0eSAoQ0lDKSB0aGF0IHVzZSB0aGUgbm90aW9uIG9mIHByb2ZpbGVzIHRvIGdlbmVyYXRlIGN5YmVyc2VjdXJpdHkgZGF0YXNldCBpbiBhIHN5c3RlbWF0aWMgbWFubmVyLiBJdCBpbmNsdWlkZXMgYSBkZXRhaWxlZCBkZXNjcmlwdGlvbiBvZiBpbnRydXNpb25zIGFsb25nIHdpdGggYWJzdHJhY3QgZGlzdHJpYnV0aW9uIG1vZGVscyBmb3IgYXBwbGljYXRpb25zLCBwcm90b2NvbHMsIG9yIGxvd2VyIGxldmVsIG5ldHdvcmsgZW50aXRpZXMuIFRoZSBkYXRhc2V0IGluY2x1ZGVzIHNldmVuIGRpZmZlcmVudCBhdHRhY2sgc2NlbmFyaW9zLCBuYW1lbHkgQnJ1dGUtZm9yY2UsIEhlYXJ0YmxlZWQsIEJvdG5ldCwgRG9TLCBERG9TLCBXZWIgYXR0YWNrcywgYW5kIGluZmlsdHJhdGlvbiBvZiB0aGUgbmV0d29yayBmcm9tIGluc2lkZS4gVGhlIGF0dGFja2luZyBpbmZyYXN0cnVjdHVyZSBpbmNsdWRlcyA1MCBtYWNoaW5lcyBhbmQgdGhlIHZpY3RpbSBvcmdhbml6YXRpb24gaGFzIDUgZGVwYXJ0bWVudHMgaW5jbHVkZXMgNDIwIFBDcyBhbmQgMzAgc2VydmVycy4gVGhpcyBkYXRhc2V0IGluY2x1ZGVzIHRoZSBuZXR3b3JrIHRyYWZmaWMgYW5kIGxvZyBmaWxlcyBvZiBlYWNoIG1hY2hpbmUgZnJvbSB0aGUgdmljdGltIHNpZGUsIGFsb25nIHdpdGggODAgbmV0d29yayB0cmFmZmljIGZlYXR1cmVzIGV4dHJhY3RlZCBmcm9tIGNhcHR1cmVkIHRyYWZmaWMgdXNpbmcgQ0lDRmxvd01ldGVyLVYzLiBGb3IgbW9yZSBpbmZvcm1hdGlvbiBvbiB0aGUgY3JlYXRpb24gb2YgdGhpcyBkYXRhc2V0LCBzZWUgdGhpcyBwYXBlciBieSByZXNlYXJjaGVycyBhdCB0aGUgQ2FuYWRpYW4gSW5zdGl0dXRlIGZvciBDeWJlcnNlY3VyaXR5IChDSUMpIGFuZCB0aGUgVW5pdmVyc2l0eSBvZiBOZXcgQnJ1bnN3aWNrIChVTkIpOiBbVG93YXJkIEdlbmVyYXRpbmcgYSBOZXcgSW50cnVzaW9uIERldGVjdGlvbiBEYXRhc2V0IGFuZCBJbnRydXNpb24gVHJhZmZpYyBDaGFyYWN0ZXJpemF0aW9uXShodHRwOi8vd3d3LnNjaXRlcHJlc3Mub3JnL1BhcGVycy8yMDE4LzY2Mzk4LzY2Mzk4LnBkZikuXG5cbkRvY3VtZW50YXRpb246IGh0dHA6Ly93d3cudW5iLmNhL2NpYy9kYXRhc2V0cy9pZHMtMjAxOC5odG1sXG5Db250YWN0OiBDSUNAdW5iLmNhXG5VcGRhdGVGcmVxdWVuY3k6IEFubnVhbHlcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19jc2VfY2ljX2lkczIwMTgvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9jc2UtY2ljLWlkczIwMTgvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfY3NlX2NpY19pZHMyMDE4LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2NzZV9jaWNfaWRzMjAxOCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfY3NlX2NpY19pZHMyMDE4Il0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2N5dG9kYXRhIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfY3l0b2RhdGEuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfY3l0b2RhdGEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBjeXRvZGF0YSBCdWNrZXQ6IENlbGwgUGFpbnRpbmcgSW1hZ2UgQ29sbGVjdGlvbjogSW1hZ2VzLCBleHRyYWN0ZWQgZmVhdHVyZXMgYW5kIGFnZ3JlZ2F0ZWQgcHJvZmlsZXMgYXJlIGF2YWlsYWJsZSBhcyBhIFMzIGJ1Y2tldCIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGN5dG9kYXRhIGJ1Y2tldCBhdCBodHRwczovL2N5dG9kYXRhLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBDZWxsIFBhaW50aW5nIEltYWdlIENvbGxlY3Rpb25cbk5hbWUyOiBJbWFnZXMsIGV4dHJhY3RlZCBmZWF0dXJlcyBhbmQgYWdncmVnYXRlZCBwcm9maWxlcyBhcmUgYXZhaWxhYmxlIGFzIGEgUzMgYnVja2V0XG5EZXNjcmlwdGlvbjogVGhlIENlbGwgUGFpbnRpbmcgSW1hZ2UgQ29sbGVjdGlvbiBpcyBhIGNvbGxlY3Rpb24gb2YgZnJlZWx5IGRvd25sb2FkYWJsZSBtaWNyb3Njb3B5IGltYWdlIHNldHMuIENlbGwgUGFpbnRpbmcgaXMgYW4gdW5iaWFzZWQgaGlnaCB0aHJvdWdocHV0IGltYWdpbmcgYXNzYXkgdXNlZCB0byBhbmFseXplIHBlcnR1cmJhdGlvbnMgaW4gY2VsbCBtb2RlbHMuIEluIGFkZGl0aW9uIHRvIHRoZSBpbWFnZXMgdGhlbXNlbHZlcywgZWFjaCBzZXQgaW5jbHVkZXMgYSBkZXNjcmlwdGlvbiBvZiB0aGUgYmlvbG9naWNhbCBhcHBsaWNhdGlvbiBhbmQgc29tZSB0eXBlIG9mIFwiZ3JvdW5kIHRydXRoXCIgKGV4cGVjdGVkIHJlc3VsdHMpLiBSZXNlYXJjaGVycyBhcmUgZW5jb3VyYWdlZCB0byB1c2UgdGhlc2UgaW1hZ2Ugc2V0cyBhcyByZWZlcmVuY2UgcG9pbnRzIHdoZW4gZGV2ZWxvcGluZywgdGVzdGluZywgYW5kIHB1Ymxpc2hpbmcgbmV3IGltYWdlIGFuYWx5c2lzIGFsZ29yaXRobXMgZm9yIHRoZSBsaWZlIHNjaWVuY2VzLiBXZSBob3BlIHRoYXQgdGhlIHRoaXMgZGF0YSBzZXQgd2lsbCBsZWFkIHRvIGEgYmV0dGVyIHVuZGVyc3RhbmRpbmcgb2Ygd2hpY2ggbWV0aG9kcyBhcmUgYmVzdCBmb3IgdmFyaW91cyBiaW9sb2dpY2FsIGltYWdlIGFuYWx5c2lzIGFwcGxpY2F0aW9ucy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9naXRodWIuY29tL2N5dG9kYXRhL2N5dG9kYXRhLWhhY2thdGhvbi0yMDE4XG5Db250YWN0OiBQb3N0IG9uIGh0dHBzOi8vZm9ydW0uaW1hZ2Uuc2MvIGFuZCB0YWcgd2l0aCBcImNlbGxwYWludGluZ1wiXG5VcGRhdGVGcmVxdWVuY3k6IGlycmVndWxhcmx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfY3l0b2RhdGEvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9jZWxsLXBhaW50aW5nLWltYWdlLWNvbGxlY3Rpb24vIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfY3l0b2RhdGEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfY3l0b2RhdGEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2N5dG9kYXRhIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2N6Yl90YWJ1bGFfbXVyaXMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19jemJfdGFidWxhX211cmlzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2N6Yl90YWJ1bGFfbXVyaXMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBjemItdGFidWxhLW11cmlzIEJ1Y2tldDogVGFidWxhIE11cmlzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgY3piLXRhYnVsYS1tdXJpcyBidWNrZXQgYXQgaHR0cHM6Ly9jemItdGFidWxhLW11cmlzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBUYWJ1bGEgTXVyaXNcbk5hbWUyOiBodHRwczovL2dpdGh1Yi5jb20vY3piaW9odWIvdGFidWxhLW11cmlzXG5EZXNjcmlwdGlvbjogVGFidWxhIE11cmlzIGlzIGEgY29tcGVuZGl1bSBvZiBzaW5nbGUgY2VsbCB0cmFuc2NyaXB0b21pYyBkYXRhIGZyb20gdGhlIG1vZGVsIG9yZ2FuaXNtICpNdXMgbXVzY3VsdXMqIGNvbXByaXNpbmcgbW9yZSB0aGFuIDEwMCwwMDAgY2VsbHMgZnJvbSAyMCBvcmdhbnMgYW5kIHRpc3N1ZXMuIFRoZXNlIGRhdGEgcmVwcmVzZW50IGEgbmV3IHJlc291cmNlIGZvciBjZWxsIGJpb2xvZ3ksIHJldmVhbCBnZW5lIGV4cHJlc3Npb24gaW4gcG9vcmx5IGNoYXJhY3Rlcml6ZWQgY2VsbCBwb3B1bGF0aW9ucywgYW5kIGFsbG93IGZvciBkaXJlY3QgYW5kIGNvbnRyb2xsZWQgY29tcGFyaXNvbiBvZiBnZW5lIGV4cHJlc3Npb24gaW4gY2VsbCB0eXBlcyBzaGFyZWQgYmV0d2VlbiB0aXNzdWVzLCBzdWNoIGFzIFQtbHltcGhvY3l0ZXMgYW5kIGVuZG90aGVsaWFsIGNlbGxzIGZyb20gZGlmZmVyZW50IGFuYXRvbWljYWwgbG9jYXRpb25zLiBUd28gZGlzdGluY3QgdGVjaG5pY2FsIGFwcHJvYWNoZXMgd2VyZSB1c2VkIGZvciBtb3N0IG9yZ2Fuczogb25lIGFwcHJvYWNoLCBtaWNyb2ZsdWlkaWMgZHJvcGxldC1iYXNlZCAzXHUyMDE5LWVuZCBjb3VudGluZywgZW5hYmxlZCB0aGUgc3VydmV5IG9mIHRob3VzYW5kcyBvZiBjZWxscyBhdCByZWxhdGl2ZWx5IGxvdyBjb3ZlcmFnZSwgd2hpbGUgdGhlIG90aGVyLCBGQUNTLWJhc2VkIGZ1bGwgbGVuZ3RoIHRyYW5zY3JpcHQgYW5hbHlzaXMsIGVuYWJsZWQgY2hhcmFjdGVyaXphdGlvbiBvZiBjZWxsIHR5cGVzIHdpdGggaGlnaCBzZW5zaXRpdml0eSBhbmQgY292ZXJhZ2UuIFRoZSBjdW11bGF0aXZlIGRhdGEgcHJvdmlkZSB0aGUgZm91bmRhdGlvbiBmb3IgYW4gYXRsYXMgb2YgdHJhbnNjcmlwdG9taWMgY2VsbCBiaW9sb2d5LiBTZWU6IGh0dHBzOi8vd3d3Lm5hdHVyZS5jb20vYXJ0aWNsZXMvczQxNTg2LTAxOC0wNTkwLTRcblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9naXRodWIuY29tL2N6YmlvaHViL3RhYnVsYS1tdXJpcy9ibG9iL21hc3Rlci90YWJ1bGEtbXVyaXMtb24tYXdzLm1kXG5Db250YWN0OiBJZiB5b3UgaGF2ZSBxdWVzdGlvbnMgYWJvdXQgdGhlIGRhdGEsIHlvdSBjYW4gY3JlYXRlIGFuIElzc3VlIGF0IGh0dHBzOi8vZ2l0aHViLmNvbS9jemJpb2h1Yi90YWJ1bGEtbXVyaXMuXG5NYW5hZ2VkQnk6IFtDaGFuIFp1Y2tlcmJlcmcgQmlvaHViXShodHRwczovL3d3dy5jemJpb2h1Yi5vcmcvKVxuVXBkYXRlRnJlcXVlbmN5OiBUaGlzIGlzIHRoZSBmaW5hbCB2ZXJzaW9uIG9mIHRoZSBkYXRhc2V0LCBpdCB3aWxsIG5vdCBiZSB1cGRhdGVkLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2N6Yl90YWJ1bGFfbXVyaXMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy90YWJ1bGEtbXVyaXMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfY3piX3RhYnVsYV9tdXJpcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19jemJfdGFidWxhX211cmlzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19jemJfdGFidWxhX211cmlzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2RhdGFmb3Jnb29kX2ZiX2RhdGEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19kYXRhZm9yZ29vZF9mYl9kYXRhLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2RhdGFmb3Jnb29kX2ZiX2RhdGEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBkYXRhZm9yZ29vZC1mYi1kYXRhIEJ1Y2tldDogSGlnaCBSZXNvbHV0aW9uIFBvcHVsYXRpb24gRGVuc2l0eSBNYXBzICsgRGVtb2dyYXBoaWMgRXN0aW1hdGVzIGJ5IENJRVNJTiBhbmQgRmFjZWJvb2s6IENTViBhbmQgQ2xvdWQtb3B0aW1pemVkIEdlb1RJRkYgZmlsZXMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBkYXRhZm9yZ29vZC1mYi1kYXRhIGJ1Y2tldCBhdCBodHRwczovL2RhdGFmb3Jnb29kLWZiLWRhdGEuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IEhpZ2ggUmVzb2x1dGlvbiBQb3B1bGF0aW9uIERlbnNpdHkgTWFwcyArIERlbW9ncmFwaGljIEVzdGltYXRlcyBieSBDSUVTSU4gYW5kIEZhY2Vib29rXG5OYW1lMjogQ1NWIGFuZCBDbG91ZC1vcHRpbWl6ZWQgR2VvVElGRiBmaWxlc1xuRGVzY3JpcHRpb246IFBvcHVsYXRpb24gZGF0YSBmb3IgYSBzZWxlY3Rpb24gb2YgY291bnRyaWVzLCBhbGxvY2F0ZWQgdG8gMSBhcmNzZWNvbmQgYmxvY2tzIGFuZCBwcm92aWRlZCBpbiBhIGNvbWJpbmF0aW9uIG9mIENTViBhbmQgQ2xvdWQtb3B0aW1pemVkIEdlb1RJRkYgZmlsZXMuIFRoaXMgcmVmaW5lcyBbQ0lFU0lOXHUyMDE5cyBHcmlkZGVkIFBvcHVsYXRpb24gb2YgdGhlIFdvcmxkXShodHRwczovL3NlZGFjLmNpZXNpbi5jb2x1bWJpYS5lZHUvZGF0YS9jb2xsZWN0aW9uL2dwdy12NCkgdXNpbmcgbWFjaGluZSBsZWFybmluZyBtb2RlbHMgb24gaGlnaC1yZXNvbHV0aW9uIHdvcmxkd2lkZSBEaWdpdGFsIEdsb2JlIHNhdGVsbGl0ZSBpbWFnZXJ5LiBDSUVTSU4gcG9wdWxhdGlvbiBjb3VudHMgYWdncmVnYXRlZCBmcm9tIHdvcmxkd2lkZSBjZW5zdXMgZGF0YSBhcmUgYWxsb2NhdGVkIHRvIGJsb2NrcyB3aGVyZSBpbWFnZXJ5IGFwcGVhcnMgdG8gY29udGFpbiBidWlsZGluZ3MuXG5cbkRvY3VtZW50YXRpb246IFtQcm9qZWN0IG92ZXJ2aWV3XShodHRwczovL2RhdGFmb3Jnb29kLmZiLmNvbS9wb3B1bGF0aW9uLWRlbnNpdHktbWFwcy1kb2N1bWVudGF0aW9uLykgYW5kIFtkYXRhc2V0IGRlc2NyaXB0aW9uXShodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL2RhdGFmb3Jnb29kLWZiLWRhdGEvcmVhZG1lLmh0bWwpXG5Db250YWN0OiBkaXNhc3Rlcm1hcHNAZmIuY29tXG5NYW5hZ2VkQnk6IHxcblVwZGF0ZUZyZXF1ZW5jeTogUXVhcnRlcmx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZGF0YWZvcmdvb2RfZmJfZGF0YS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2RhdGFmb3Jnb29kLWZiLWhyc2wvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZGF0YWZvcmdvb2RfZmJfZGF0YS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19kYXRhZm9yZ29vZF9mYl9kYXRhJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19kYXRhZm9yZ29vZF9mYl9kYXRhIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2RhdGFzZXRzX2VsYXN0aWNtYXByZWR1Y2VfbmdyYW1zX2Jvb2tzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZGF0YXNldHNfZWxhc3RpY21hcHJlZHVjZV9uZ3JhbXNfYm9va3MuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZGF0YXNldHNfZWxhc3RpY21hcHJlZHVjZV9uZ3JhbXNfYm9va3MvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBkYXRhc2V0cy5lbGFzdGljbWFwcmVkdWNlIEJ1Y2tldCB3aXRoIHByZWZpeD1uZ3JhbXMvYm9va3MvOiBHb29nbGUgQm9va3MgTmdyYW1zOiBBIGRhdGEgc2V0IGNvbnRhaW5pbmcgR29vZ2xlIEJvb2tzIG4tZ3JhbSBjb3Jwb3JhIGluIGEgSGFkb29wIGZyaWVuZGx5IGZpbGUgZm9ybWF0LiIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGRhdGFzZXRzLmVsYXN0aWNtYXByZWR1Y2UgYnVja2V0IGF0IGh0dHBzOi8vZGF0YXNldHMuZWxhc3RpY21hcHJlZHVjZS5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gd2l0aCBwcmVmaXg9bmdyYW1zL2Jvb2tzLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBHb29nbGUgQm9va3MgTmdyYW1zXG5OYW1lMjogQSBkYXRhIHNldCBjb250YWluaW5nIEdvb2dsZSBCb29rcyBuLWdyYW0gY29ycG9yYSBpbiBhIEhhZG9vcCBmcmllbmRseSBmaWxlIGZvcm1hdC5cbkRlc2NyaXB0aW9uOiBOLWdyYW1zIGFyZSBmaXhlZCBzaXplIHR1cGxlcyBvZiBpdGVtcy4gSW4gdGhpcyBjYXNlIHRoZSBpdGVtcyBhcmUgd29yZHMgZXh0cmFjdGVkIGZyb20gdGhlIEdvb2dsZSBCb29rcyBjb3JwdXMuIFRoZSBuIHNwZWNpZmllcyB0aGUgbnVtYmVyIG9mIGVsZW1lbnRzIGluIHRoZSB0dXBsZSwgc28gYSA1LWdyYW0gY29udGFpbnMgZml2ZSB3b3JkcyBvciBjaGFyYWN0ZXJzLiBUaGUgbi1ncmFtcyBpbiB0aGlzIGRhdGFzZXQgd2VyZSBwcm9kdWNlZCBieSBwYXNzaW5nIGEgc2xpZGluZyB3aW5kb3cgb2YgdGhlIHRleHQgb2YgYm9va3MgYW5kIG91dHB1dHRpbmcgYSByZWNvcmQgZm9yIGVhY2ggbmV3IHRva2VuLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwOi8vYm9va3MuZ29vZ2xlLmNvbS9uZ3JhbXMvXG5Db250YWN0OiBodHRwczovL2Jvb2tzLmdvb2dsZS5jb20vbmdyYW1zXG5VcGRhdGVGcmVxdWVuY3k6IE5vdCB1cGRhdGVkXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZGF0YXNldHNfZWxhc3RpY21hcHJlZHVjZV9uZ3JhbXNfYm9va3MvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9nb29nbGUtbmdyYW1zLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2RhdGFzZXRzX2VsYXN0aWNtYXByZWR1Y2VfbmdyYW1zX2Jvb2tzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2RhdGFzZXRzX2VsYXN0aWNtYXByZWR1Y2VfbmdyYW1zX2Jvb2tzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19kYXRhc2V0c19lbGFzdGljbWFwcmVkdWNlX25ncmFtc19ib29rcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19kYXRhd29ybGRfbGlua2VkX2FjcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2RhdGF3b3JsZF9saW5rZWRfYWNzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2RhdGF3b3JsZF9saW5rZWRfYWNzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgZGF0YXdvcmxkLWxpbmtlZC1hY3MgQnVja2V0OiBVLlMuIENlbnN1cyBBQ1MgUFVNUzogUFVNUyBkYXRhIGluIFR1cnRsZSAtIFRlcnNlIFJERiBUcmlwbGUgTGFuZ3VhZ2UgKC50dGwpIGZvcm1hdCBhbG9uZyB3aXRoIG9udG9sb2dpZXMgYW5kIG90aGVyIGNvbXBsZW1lbnRhcnkgZGF0YS4iLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBkYXRhd29ybGQtbGlua2VkLWFjcyBidWNrZXQgYXQgaHR0cHM6Ly9kYXRhd29ybGQtbGlua2VkLWFjcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogVS5TLiBDZW5zdXMgQUNTIFBVTVNcbk5hbWUyOiBQVU1TIGRhdGEgaW4gVHVydGxlIC0gVGVyc2UgUkRGIFRyaXBsZSBMYW5ndWFnZSAoLnR0bCkgZm9ybWF0IGFsb25nIHdpdGggb250b2xvZ2llcyBhbmQgb3RoZXIgY29tcGxlbWVudGFyeSBkYXRhLlxuRGVzY3JpcHRpb246IFUuUy4gQ2Vuc3VzIEJ1cmVhdSBBbWVyaWNhbiBDb21tdW5pdHkgU3VydmV5IChBQ1MpIFB1YmxpYyBVc2UgTWljcm9kYXRhIFNhbXBsZSAoUFVNUykgYXZhaWxhYmxlIGluIGEgbGlua2VkIGRhdGEgZm9ybWF0IHVzaW5nIHRoZSBSZXNvdXJjZSBEZXNjcmlwdGlvbiBGcmFtZXdvcmsgKFJERikgZGF0YSBtb2RlbC5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLmRhdGEud29ybGQvdXNjZW5zdXMvI2FtZXJpY2FuLWNvbW11bml0eS1zdXJ2ZXktbGlua2VkLW9wZW4tZGF0YVxuQ29udGFjdDogaHR0cHM6Ly9kb2NzLmRhdGEud29ybGQvdXNjZW5zdXMvIzYwLS0tY29udGFjdFxuVXBkYXRlRnJlcXVlbmN5OiBZZWFybHksIGFmdGVyIEFDUyAxLXllYXIgUFVNUyByYXcgZGF0YSBhcmUgcmVsZWFzZWRcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19kYXRhd29ybGRfbGlua2VkX2Fjcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2NlbnN1cy1kYXRhd29ybGQtcHVtcy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19kYXRhd29ybGRfbGlua2VkX2Fjcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19kYXRhd29ybGRfbGlua2VkX2FjcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZGF0YXdvcmxkX2xpbmtlZF9hY3MiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZGNfbGlkYXJfMjAxNSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2RjX2xpZGFyXzIwMTUuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZGNfbGlkYXJfMjAxNS8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGRjLWxpZGFyLTIwMTUgQnVja2V0OiBEaXN0cmljdCBvZiBDb2x1bWJpYSAtIENsYXNzaWZpZWQgUG9pbnQgQ2xvdWQgTGlEQVI6IExBUywgWE1MLCBTSFAiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBkYy1saWRhci0yMDE1IGJ1Y2tldCBhdCBodHRwczovL2RjLWxpZGFyLTIwMTUuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IERpc3RyaWN0IG9mIENvbHVtYmlhIC0gQ2xhc3NpZmllZCBQb2ludCBDbG91ZCBMaURBUlxuTmFtZTI6IExBUywgWE1MLCBTSFBcbkRlcHJlY2F0ZWQ6IFRydWVcbkRlc2NyaXB0aW9uOiBQbGVhc2Ugc2VlIFtoZXJlXShodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9kYy1saWRhcikgZm9yIHRoZSBsYXRlcyBjb250ZW50IGFib3V0IHRoaXMgZGF0YXNldC4gTGlEQVIgcG9pbnQgY2xvdWQgZGF0YSBmb3IgV2FzaGluZ3RvbiwgREMgaXMgYXZhaWxhYmxlIGZvciBhbnlvbmUgdG8gdXNlIG9uIEFtYXpvbiBTMy4gVGhpcyBkYXRhc2V0LCBtYW5hZ2VkIGJ5IHRoZSBPZmZpY2Ugb2YgdGhlIENoaWVmIFRlY2hub2xvZ3kgT2ZmaWNlciAoT0NUTyksIHRocm91Z2ggdGhlIGRpcmVjdGlvbiBvZiB0aGUgRGlzdHJpY3Qgb2YgQ29sdW1iaWEgR0lTIHByb2dyYW0sIGNvbnRhaW5zIHRpbGVkIHBvaW50IGNsb3VkIGRhdGEgZm9yIHRoZSBlbnRpcmUgRGlzdHJpY3QgYWxvbmcgd2l0aCBhc3NvY2lhdGVkIG1ldGFkYXRhLlxuXG5Eb2N1bWVudGF0aW9uOiBbMjAxNSBkYXRhXShodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL2RjLWxpZGFyLTIwMTUvcmVhZG1lLmh0bWwpLCBbMjAxOCBkYXRhXShodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL2RjLWxpZGFyLTIwMTgvcmVhZG1lLmh0bWwpXG5Db250YWN0OiBkY2dpc0BkYy5nb3ZcblVwZGF0ZUZyZXF1ZW5jeTogVGhlIG1vc3QgcmVjZW50IGRhdGEgaXMgZnJvbSAyMDE4IGFuZCAyMDE1IGRhdGEgaXMgYXZhaWxhYmxlIGFzIHdlbGwuIEEgbmV3IGRhdGEgYWNxdWlzaXRpb24gaXMgcGxhbm5lZCBmb3IgMjAyMC5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19kY19saWRhcl8yMDE1L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvZGMtbGlkYXItMjAxNS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19kY19saWRhcl8yMDE1LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2RjX2xpZGFyXzIwMTUmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2RjX2xpZGFyXzIwMTUiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZGNfbGlkYXJfMjAxOCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2RjX2xpZGFyXzIwMTguZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZGNfbGlkYXJfMjAxOC8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGRjLWxpZGFyLTIwMTggQnVja2V0OiBEaXN0cmljdCBvZiBDb2x1bWJpYSAtIENsYXNzaWZpZWQgUG9pbnQgQ2xvdWQgTGlEQVI6IExBUywgWE1MIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgZGMtbGlkYXItMjAxOCBidWNrZXQgYXQgaHR0cHM6Ly9kYy1saWRhci0yMDE4LnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBEaXN0cmljdCBvZiBDb2x1bWJpYSAtIENsYXNzaWZpZWQgUG9pbnQgQ2xvdWQgTGlEQVJcbk5hbWUyOiBMQVMsIFhNTFxuRGVwcmVjYXRlZDogVHJ1ZVxuRGVzY3JpcHRpb246IFBsZWFzZSBzZWUgW2hlcmVdKGh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2RjLWxpZGFyKSBmb3IgdGhlIGxhdGVzIGNvbnRlbnQgYWJvdXQgdGhpcyBkYXRhc2V0LiBMaURBUiBwb2ludCBjbG91ZCBkYXRhIGZvciBXYXNoaW5ndG9uLCBEQyBpcyBhdmFpbGFibGUgZm9yIGFueW9uZSB0byB1c2Ugb24gQW1hem9uIFMzLiBUaGlzIGRhdGFzZXQsIG1hbmFnZWQgYnkgdGhlIE9mZmljZSBvZiB0aGUgQ2hpZWYgVGVjaG5vbG9neSBPZmZpY2VyIChPQ1RPKSwgdGhyb3VnaCB0aGUgZGlyZWN0aW9uIG9mIHRoZSBEaXN0cmljdCBvZiBDb2x1bWJpYSBHSVMgcHJvZ3JhbSwgY29udGFpbnMgdGlsZWQgcG9pbnQgY2xvdWQgZGF0YSBmb3IgdGhlIGVudGlyZSBEaXN0cmljdCBhbG9uZyB3aXRoIGFzc29jaWF0ZWQgbWV0YWRhdGEuXG5cbkRvY3VtZW50YXRpb246IFsyMDE1IGRhdGFdKGh0dHBzOi8vZG9jcy5vcGVuZGF0YS5hd3MvZGMtbGlkYXItMjAxNS9yZWFkbWUuaHRtbCksIFsyMDE4IGRhdGFdKGh0dHBzOi8vZG9jcy5vcGVuZGF0YS5hd3MvZGMtbGlkYXItMjAxOC9yZWFkbWUuaHRtbClcbkNvbnRhY3Q6IGRjZ2lzQGRjLmdvdlxuVXBkYXRlRnJlcXVlbmN5OiBUaGUgbW9zdCByZWNlbnQgZGF0YSBpcyBmcm9tIDIwMTggYW5kIDIwMTUgZGF0YSBpcyBhdmFpbGFibGUgYXMgd2VsbC4gQSBuZXcgZGF0YSBhY3F1aXNpdGlvbiBpcyBwbGFubmVkIGZvciAyMDIwLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2RjX2xpZGFyXzIwMTgvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9kYy1saWRhci0yMDE1LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2RjX2xpZGFyXzIwMTgucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfZGNfbGlkYXJfMjAxOCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZGNfbGlkYXJfMjAxOCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19kZXV0c2NoZV9ib2Vyc2VfZXVyZXhfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZGV1dHNjaGVfYm9lcnNlX2V1cmV4X3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19kZXV0c2NoZV9ib2Vyc2VfZXVyZXhfcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgZGV1dHNjaGUtYm9lcnNlLWV1cmV4LXBkcyBCdWNrZXQ6IERldXRzY2hlIEJcdTAwZjZyc2UgUHVibGljIERhdGFzZXQ6IEV1cmV4IFBEUyBGaWxlcyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGRldXRzY2hlLWJvZXJzZS1ldXJleC1wZHMgYnVja2V0IGF0IGh0dHBzOi8vZGV1dHNjaGUtYm9lcnNlLWV1cmV4LXBkcy5zMy5ldS1jZW50cmFsLTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogRGV1dHNjaGUgQlx1MDBmNnJzZSBQdWJsaWMgRGF0YXNldFxuTmFtZTI6IEV1cmV4IFBEUyBGaWxlc1xuRGVzY3JpcHRpb246IFRoZSBEZXV0c2NoZSBCXHUwMGY2cnNlIFB1YmxpYyBEYXRhIFNldCBjb25zaXN0cyBvZiB0cmFkZSBkYXRhIGFnZ3JlZ2F0ZWQgdG8gb25lIG1pbnV0ZSBpbnRlcnZhbHMgZnJvbSB0aGUgRXVyZXggYW5kIFhldHJhIHRyYWRpbmcgc3lzdGVtcy4gSXQgcHJvdmlkZXMgdGhlIGluaXRpYWwgcHJpY2UsIGxvd2VzdCBwcmljZSwgaGlnaGVzdCBwcmljZSwgZmluYWwgcHJpY2UgYW5kIHZvbHVtZSBmb3IgZXZlcnkgbWludXRlIG9mIHRoZSB0cmFkaW5nIGRheSwgYW5kIGZvciBldmVyeSB0cmFkZWFibGUgc2VjdXJpdHkuICBJZiB5b3UgbmVlZCBoaWdoZXIgcmVzb2x1dGlvbiBkYXRhLCBpbmNsdWRpbmcgdW50cmFkZWQgcHJpY2UgbW92ZW1lbnRzLCBwbGVhc2UgcmVmZXIgdG8gb3VyIGhpc3RvcmljYWwgbWFya2V0IGRhdGEgcHJvZHVjdCBbaGVyZV0oaHR0cDovL3d3dy5ldXJleGNoYW5nZS5jb20vZXhjaGFuZ2UtZW4vbWFya2V0LWRhdGEvaGlzdG9yaWNhbC1kYXRhKS4gIEFsc28sIGJlIHN1cmUgdG8gY2hlY2sgb3V0IG91ciBbZGV2ZWxvcGVyJ3MgcG9ydGFsXShodHRwczovL2NvbnNvbGUuZGV2ZWxvcGVyLmRldXRzY2hlLWJvZXJzZS5jb20vKS5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9naXRodWIuY29tL0RldXRzY2hlLUJvZXJzZS9kYmctcGRzXG5Db250YWN0OiBwZHNAZGV1dHNjaGUtYm9lcnNlLmNvbVxuVXBkYXRlRnJlcXVlbmN5OiBUaGUgZGF0YSBpcyB1cGRhdGVkIGV2ZXJ5IG1pbnV0ZSBkdXJpbmcgdHJhZGluZyBob3Vycy5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19kZXV0c2NoZV9ib2Vyc2VfZXVyZXhfcGRzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvZGV1dHNjaGUtYm9lcnNlLXBkcy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19kZXV0c2NoZV9ib2Vyc2VfZXVyZXhfcGRzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2RldXRzY2hlX2JvZXJzZV9ldXJleF9wZHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2RldXRzY2hlX2JvZXJzZV9ldXJleF9wZHMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZGV1dHNjaGVfYm9lcnNlX3hldHJhX3BkcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2RldXRzY2hlX2JvZXJzZV94ZXRyYV9wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZGV1dHNjaGVfYm9lcnNlX3hldHJhX3Bkcy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGRldXRzY2hlLWJvZXJzZS14ZXRyYS1wZHMgQnVja2V0OiBEZXV0c2NoZSBCXHUwMGY2cnNlIFB1YmxpYyBEYXRhc2V0OiBYZXRyYSBQRFMgRmlsZXMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBkZXV0c2NoZS1ib2Vyc2UteGV0cmEtcGRzIGJ1Y2tldCBhdCBodHRwczovL2RldXRzY2hlLWJvZXJzZS14ZXRyYS1wZHMuczMuZXUtY2VudHJhbC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IERldXRzY2hlIEJcdTAwZjZyc2UgUHVibGljIERhdGFzZXRcbk5hbWUyOiBYZXRyYSBQRFMgRmlsZXNcbkRlc2NyaXB0aW9uOiBUaGUgRGV1dHNjaGUgQlx1MDBmNnJzZSBQdWJsaWMgRGF0YSBTZXQgY29uc2lzdHMgb2YgdHJhZGUgZGF0YSBhZ2dyZWdhdGVkIHRvIG9uZSBtaW51dGUgaW50ZXJ2YWxzIGZyb20gdGhlIEV1cmV4IGFuZCBYZXRyYSB0cmFkaW5nIHN5c3RlbXMuIEl0IHByb3ZpZGVzIHRoZSBpbml0aWFsIHByaWNlLCBsb3dlc3QgcHJpY2UsIGhpZ2hlc3QgcHJpY2UsIGZpbmFsIHByaWNlIGFuZCB2b2x1bWUgZm9yIGV2ZXJ5IG1pbnV0ZSBvZiB0aGUgdHJhZGluZyBkYXksIGFuZCBmb3IgZXZlcnkgdHJhZGVhYmxlIHNlY3VyaXR5LiAgSWYgeW91IG5lZWQgaGlnaGVyIHJlc29sdXRpb24gZGF0YSwgaW5jbHVkaW5nIHVudHJhZGVkIHByaWNlIG1vdmVtZW50cywgcGxlYXNlIHJlZmVyIHRvIG91ciBoaXN0b3JpY2FsIG1hcmtldCBkYXRhIHByb2R1Y3QgW2hlcmVdKGh0dHA6Ly93d3cuZXVyZXhjaGFuZ2UuY29tL2V4Y2hhbmdlLWVuL21hcmtldC1kYXRhL2hpc3RvcmljYWwtZGF0YSkuICBBbHNvLCBiZSBzdXJlIHRvIGNoZWNrIG91dCBvdXIgW2RldmVsb3BlcidzIHBvcnRhbF0oaHR0cHM6Ly9jb25zb2xlLmRldmVsb3Blci5kZXV0c2NoZS1ib2Vyc2UuY29tLykuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZ2l0aHViLmNvbS9EZXV0c2NoZS1Cb2Vyc2UvZGJnLXBkc1xuQ29udGFjdDogcGRzQGRldXRzY2hlLWJvZXJzZS5jb21cblVwZGF0ZUZyZXF1ZW5jeTogVGhlIGRhdGEgaXMgdXBkYXRlZCBldmVyeSBtaW51dGUgZHVyaW5nIHRyYWRpbmcgaG91cnMuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZGV1dHNjaGVfYm9lcnNlX3hldHJhX3Bkcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2RldXRzY2hlLWJvZXJzZS1wZHMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZGV1dHNjaGVfYm9lcnNlX3hldHJhX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19kZXV0c2NoZV9ib2Vyc2VfeGV0cmFfcGRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19kZXV0c2NoZV9ib2Vyc2VfeGV0cmFfcGRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2ViaXJkc3RfZGF0YSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2ViaXJkc3RfZGF0YS5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19lYmlyZHN0X2RhdGEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBlYmlyZHN0LWRhdGEgQnVja2V0OiBlQmlyZCBTdGF0dXMgYW5kIFRyZW5kcyBNb2RlbCBSZXN1bHRzOiBTcGVjaWVzIHJlc3VsdHMgZmlsZXMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBlYmlyZHN0LWRhdGEgYnVja2V0IGF0IGh0dHBzOi8vZWJpcmRzdC1kYXRhLnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBlQmlyZCBTdGF0dXMgYW5kIFRyZW5kcyBNb2RlbCBSZXN1bHRzXG5OYW1lMjogU3BlY2llcyByZXN1bHRzIGZpbGVzXG5EZXNjcmlwdGlvbjogVGhlIGVCaXJkIFN0YXR1cyBhbmQgVHJlbmRzIHByb2plY3QgZ2VuZXJhdGVzIGVzdGltYXRlcyBvZiBiaXJkIG9jY3VycmVuY2UgYW5kIGFidW5kYW5jZSBhdCBhIGhpZ2ggc3BhdGlvdGVtcG9yYWwgcmVzb2x1dGlvbi4gVGhpcyBkYXRhc2V0IHJlcHJlc2VudHMgdGhlIHByaW1hcnkgbW9kZWxlZCByZXN1bHRzIGZyb20gdGhlIGFuYWx5c2lzIHdvcmtmbG93IGFuZCBhcmUgZGVzaWduZWQgZm9yIGZ1cnRoZXIgYW5hbHlzaXMsIHN5bnRoZXNpcywgdmlzdWFsaXphdGlvbiwgYW5kIGV4cGxvcmF0aW9uLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2Nvcm5lbGxsYWJvZm9ybml0aG9sb2d5LmdpdGh1Yi5pby9lYmlyZHN0L2FydGljbGVzL2ViaXJkc3QtaW50cm9kdWN0aW9uLmh0bWxcbkNvbnRhY3Q6IGh0dHBzOi8vaGVscC5lYmlyZC5vcmcvY3VzdG9tZXIvZW4vcG9ydGFsL2VtYWlscy9uZXdcbk1hbmFnZWRCeTogW0Nvcm5lbGwgTGFiIG9mIE9ybml0aG9sb2d5XShodHRwczovL3d3dy5iaXJkcy5jb3JuZWxsLmVkdS9ob21lLylcblVwZGF0ZUZyZXF1ZW5jeTogWWVhcmx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZWJpcmRzdF9kYXRhL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvZWJpcmRzdC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19lYmlyZHN0X2RhdGEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfZWJpcmRzdF9kYXRhJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19lYmlyZHN0X2RhdGEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZWxldmF0aW9uX3RpbGVzX3Byb2QiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19lbGV2YXRpb25fdGlsZXNfcHJvZC5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19lbGV2YXRpb25fdGlsZXNfcHJvZC8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGVsZXZhdGlvbi10aWxlcy1wcm9kIEJ1Y2tldDogVGVycmFpbiBUaWxlczogR3JpZGRlZCBlbGV2YXRpb24gdGlsZXMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBlbGV2YXRpb24tdGlsZXMtcHJvZCBidWNrZXQgYXQgaHR0cHM6Ly9lbGV2YXRpb24tdGlsZXMtcHJvZC5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogVGVycmFpbiBUaWxlc1xuTmFtZTI6IEdyaWRkZWQgZWxldmF0aW9uIHRpbGVzXG5EZXNjcmlwdGlvbjogQSBnbG9iYWwgZGF0YXNldCBwcm92aWRpbmcgYmFyZS1lYXJ0aCB0ZXJyYWluIGhlaWdodHMsIHRpbGVkIGZvciBlYXN5IHVzYWdlIGFuZCBwcm92aWRlZCBvbiBTMy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9tYXB6ZW4uY29tL2RvY3VtZW50YXRpb24vdGVycmFpbi10aWxlcy9cbkNvbnRhY3Q6IGh0dHBzOi8vZ2l0aHViLmNvbS90aWxlemVuL2pvZXJkL2lzc3Vlc1xuVXBkYXRlRnJlcXVlbmN5OiBOZXcgZGF0YSBpcyBhZGRlZCBiYXNlZCBvbiBjb21tdW5pdHkgZmVlZGJhY2tcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19lbGV2YXRpb25fdGlsZXNfcHJvZC9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL3RlcnJhaW4tdGlsZXMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZWxldmF0aW9uX3RpbGVzX3Byb2QucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfZWxldmF0aW9uX3RpbGVzX3Byb2Qmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2VsZXZhdGlvbl90aWxlc19wcm9kIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2VuY29kZV9wdWJsaWMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19lbmNvZGVfcHVibGljLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2VuY29kZV9wdWJsaWMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBlbmNvZGUtcHVibGljIEJ1Y2tldDogRW5jeWNsb3BlZGlhIG9mIEROQSBFbGVtZW50cyAoRU5DT0RFKTogUmVsZWFzZWQgYW5kIGFyY2hpdmVkIEVOQ09ERSBkYXRhIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgZW5jb2RlLXB1YmxpYyBidWNrZXQgYXQgaHR0cHM6Ly9lbmNvZGUtcHVibGljLnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBFbmN5Y2xvcGVkaWEgb2YgRE5BIEVsZW1lbnRzIChFTkNPREUpXG5OYW1lMjogUmVsZWFzZWQgYW5kIGFyY2hpdmVkIEVOQ09ERSBkYXRhXG5EZXNjcmlwdGlvbjogVGhlIEVuY3ljbG9wZWRpYSBvZiBETkEgRWxlbWVudHMgKEVOQ09ERSkgQ29uc29ydGl1bSBpcyBhbiBpbnRlcm5hdGlvbmFsIGNvbGxhYm9yYXRpb24gb2YgcmVzZWFyY2ggZ3JvdXBzIGZ1bmRlZCBieSB0aGUgTmF0aW9uYWwgSHVtYW4gR2Vub21lIFJlc2VhcmNoIEluc3RpdHV0ZSAoTkhHUkkpLiBUaGUgZ29hbCBvZiBFTkNPREUgaXMgdG8gYnVpbGQgYSBjb21wcmVoZW5zaXZlIHBhcnRzIGxpc3Qgb2YgZnVuY3Rpb25hbCBlbGVtZW50cyBpbiB0aGUgaHVtYW4gZ2Vub21lLCBpbmNsdWRpbmcgZWxlbWVudHMgdGhhdCBhY3QgYXQgdGhlIHByb3RlaW4gYW5kIFJOQSBsZXZlbHMsIGFuZCByZWd1bGF0b3J5IGVsZW1lbnRzIHRoYXQgY29udHJvbCBjZWxscyBhbmQgY2lyY3Vtc3RhbmNlcyBpbiB3aGljaCBhIGdlbmUgaXMgYWN0aXZlLiBFTkNPREUgaW52ZXN0aWdhdG9ycyBlbXBsb3kgYSB2YXJpZXR5IG9mIGFzc2F5cyBhbmQgbWV0aG9kcyB0byBpZGVudGlmeSBmdW5jdGlvbmFsIGVsZW1lbnRzLiBUaGUgZGlzY292ZXJ5IGFuZCBhbm5vdGF0aW9uIG9mIGdlbmUgZWxlbWVudHMgaXMgYWNjb21wbGlzaGVkIHByaW1hcmlseSBieSBzZXF1ZW5jaW5nIGEgZGl2ZXJzZSByYW5nZSBvZiBSTkEgc291cmNlcywgY29tcGFyYXRpdmUgZ2Vub21pY3MsIGludGVncmF0aXZlIGJpb2luZm9ybWF0aWMgbWV0aG9kcywgYW5kIGh1bWFuIGN1cmF0aW9uLiBSZWd1bGF0b3J5IGVsZW1lbnRzIGFyZSB0eXBpY2FsbHkgaW52ZXN0aWdhdGVkIHRocm91Z2ggRE5BIGh5cGVyc2Vuc2l0aXZpdHkgYXNzYXlzLCBhc3NheXMgb2YgRE5BIG1ldGh5bGF0aW9uLCBhbmQgaW1tdW5vcHJlY2lwaXRhdGlvbiAoSVApIG9mIHByb3RlaW5zIHRoYXQgaW50ZXJhY3Qgd2l0aCBETkEgYW5kIFJOQSwgaS5lLiwgbW9kaWZpZWQgaGlzdG9uZXMsIHRyYW5zY3JpcHRpb24gZmFjdG9ycywgY2hyb21hdGluIHJlZ3VsYXRvcnMsIGFuZCBSTkEtYmluZGluZyBwcm90ZWlucywgZm9sbG93ZWQgYnkgc2VxdWVuY2luZy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly93d3cuZW5jb2RlcHJvamVjdC5vcmdcbkNvbnRhY3Q6IGVuY29kZS1oZWxwQGxpc3RzLnN0YW5mb3JkLmVkdVxuTWFuYWdlZEJ5OiBFTkNPREUgRGF0YSBDb29yZGluYXRpbmcgQ2VudGVyXG5VcGRhdGVGcmVxdWVuY3k6IERhaWx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZW5jb2RlX3B1YmxpYy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2VuY29kZS1wcm9qZWN0LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2VuY29kZV9wdWJsaWMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfZW5jb2RlX3B1YmxpYyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZW5jb2RlX3B1YmxpYyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19lcGFfcnNlaV9wZHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19lcGFfcnNlaV9wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZXBhX3JzZWlfcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgZXBhLXJzZWktcGRzIEJ1Y2tldDogRVBBIFJpc2stU2NyZWVuaW5nIEVudmlyb25tZW50YWwgSW5kaWNhdG9yczogUlNFSSBNaWNyb2RhdGEiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBlcGEtcnNlaS1wZHMgYnVja2V0IGF0IGh0dHBzOi8vZXBhLXJzZWktcGRzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBFUEEgUmlzay1TY3JlZW5pbmcgRW52aXJvbm1lbnRhbCBJbmRpY2F0b3JzXG5OYW1lMjogUlNFSSBNaWNyb2RhdGFcbkRlc2NyaXB0aW9uOiBEZXRhaWxlZCBhaXIgbW9kZWwgcmVzdWx0cyBmcm9tIEVQQVx1MjAxOXMgUmlzay1TY3JlZW5pbmcgRW52aXJvbm1lbnRhbCBJbmRpY2F0b3JzIChSU0VJKSBtb2RlbC5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLm9wZW5kYXRhLmF3cy9lcGEtcnNlaS1wZHMvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IGh0dHBzOi8vd3d3LmVwYS5nb3YvcnNlaS9mb3Jtcy9jb250YWN0LXVzLWFib3V0LXJzZWktbW9kZWxcblVwZGF0ZUZyZXF1ZW5jeTogVXBkYXRlZCBpbmZyZXF1ZW50bHlcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19lcGFfcnNlaV9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9lcGEtcnNlaS1wZHMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZXBhX3JzZWlfcGRzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2VwYV9yc2VpX3BkcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZXBhX3JzZWlfcGRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2VyYTVfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZXJhNV9wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZXJhNV9wZHMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBlcmE1LXBkcyBCdWNrZXQ6IEVDTVdGIEVSQTUgUmVhbmFseXNpczogRVJBNSBSZWFuYWx5c2lzIE5ldENERiA0IGZpbGVzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgZXJhNS1wZHMgYnVja2V0IGF0IGh0dHBzOi8vZXJhNS1wZHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IEVDTVdGIEVSQTUgUmVhbmFseXNpc1xuTmFtZTI6IEVSQTUgUmVhbmFseXNpcyBOZXRDREYgNCBmaWxlc1xuRGVzY3JpcHRpb246IEVSQTUgaXMgdGhlIGZpZnRoIGdlbmVyYXRpb24gb2YgRUNNV0YgYXRtb3NwaGVyaWMgcmVhbmFseXNlcyBvZiB0aGUgZ2xvYmFsIGNsaW1hdGUsIGFuZCB0aGUgZmlyc3QgcmVhbmFseXNpcyBwcm9kdWNlZCBhcyBhbiBvcGVyYXRpb25hbCBzZXJ2aWNlLiBJdCB1dGlsaXplcyB0aGUgYmVzdCBhdmFpbGFibGUgb2JzZXJ2YXRpb24gZGF0YSBmcm9tIHNhdGVsbGl0ZXMgYW5kIGluLXNpdHUgc3RhdGlvbnMsIHdoaWNoIGFyZSBhc3NpbWlsYXRlZCBhbmQgcHJvY2Vzc2VkIHVzaW5nIEVDTVdGJ3MgSW50ZWdyYXRlZCBGb3JlY2FzdCBTeXN0ZW0gKElGUykgQ3ljbGUgNDFyMi4gVGhlIGRhdGFzZXQgcHJvdmlkZXMgYWxsIGVzc2VudGlhbCBhdG1vc3BoZXJpYyBtZXRlb3JvbG9naWNhbCBwYXJhbWV0ZXJzIGxpa2UsIGJ1dCBub3QgbGltaXRlZCB0bywgYWlyIHRlbXBlcmF0dXJlLCBwcmVzc3VyZSBhbmQgd2luZCBhdCBkaWZmZXJlbnQgYWx0aXR1ZGVzLCBhbG9uZyB3aXRoIHN1cmZhY2UgcGFyYW1ldGVycyBsaWtlIHJhaW5mYWxsLCBzb2lsIG1vaXN0dXJlIGNvbnRlbnQgYW5kIHNlYSBwYXJhbWV0ZXJzIGxpa2Ugc2VhLXN1cmZhY2UgdGVtcGVyYXR1cmUgYW5kIHdhdmUgaGVpZ2h0LiBFUkE1IHByb3ZpZGVzIGRhdGEgYXQgYSBjb25zaWRlcmFibHkgaGlnaGVyIHNwYXRpYWwgYW5kIHRlbXBvcmFsIHJlc29sdXRpb24gdGhhbiBpdHMgbGVnYWN5IGNvdW50ZXJwYXJ0IEVSQS1JbnRlcmltLiBFUkE1IGNvbnNpc3RzIG9mIGhpZ2ggcmVzb2x1dGlvbiB2ZXJzaW9uIHdpdGggMzEga20gaG9yaXpvbnRhbCByZXNvbHV0aW9uLCBhbmQgYSByZWR1Y2VkIHJlc29sdXRpb24gZW5zZW1ibGUgdmVyc2lvbiB3aXRoIDEwIG1lbWJlcnMuIEl0IGlzIGN1cnJlbnRseSBhdmFpbGFibGUgc2luY2UgMjAwOCwgYnV0IHdpbGwgYmUgY29udGludW91c2x5IGV4dGVuZGVkIGJhY2t3YXJkcywgZmlyc3QgdW50aWwgMTk3OSBhbmQgdGhlbiB0byAxOTUwLiBMZWFybiBtb3JlIGFib3V0IEVSQTUgaW4gSm9uIE9sYXVzb24ncyBwYXBlciBbRVJBNTogVGhlIG5ldyBjaGFtcGlvbiBvZiB3aW5kIHBvd2VyIG1vZGVsbGluZz9dKGh0dHBzOi8vd3d3LnJlc2VhcmNoZ2F0ZS5uZXQvcHVibGljYXRpb24vMzIwMDg0MTE5X0VSQTVfVGhlX25ld19jaGFtcGlvbl9vZl93aW5kX3Bvd2VyX21vZGVsbGluZykuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZ2l0aHViLmNvbS9wbGFuZXQtb3Mvbm90ZWJvb2tzL2Jsb2IvbWFzdGVyL2F3cy9lcmE1LXBkcy5tZFxuQ29udGFjdDogZGF0YWh1YkBpbnRlcnRydXN0LmNvbVxuVXBkYXRlRnJlcXVlbmN5OiBNb250aGx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZXJhNV9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9lY213Zi1lcmE1LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2VyYTVfcGRzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2VyYTVfcGRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19lcmE1X3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19mYXN0X2FpX2NvY28iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19mYXN0X2FpX2NvY28uZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZmFzdF9haV9jb2NvLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgZmFzdC1haS1jb2NvIEJ1Y2tldDogQ09DTyAtIENvbW1vbiBPYmplY3RzIGluIENvbnRleHQgLSBmYXN0LmFpIGRhdGFzZXRzOiBEYXRhc2V0cyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGZhc3QtYWktY29jbyBidWNrZXQgYXQgaHR0cHM6Ly9mYXN0LWFpLWNvY28uczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IENPQ08gLSBDb21tb24gT2JqZWN0cyBpbiBDb250ZXh0IC0gZmFzdC5haSBkYXRhc2V0c1xuTmFtZTI6IERhdGFzZXRzXG5EZXNjcmlwdGlvbjogQ09DTyBpcyBhIGxhcmdlLXNjYWxlIG9iamVjdCBkZXRlY3Rpb24sIHNlZ21lbnRhdGlvbiwgYW5kIGNhcHRpb25pbmcgZGF0YXNldC4gVGhpcyBpcyBwYXJ0IG9mIHRoZSBmYXN0LmFpIGRhdGFzZXRzIGNvbGxlY3Rpb24gaG9zdGVkIGJ5IEFXUyBmb3IgY29udmVuaWVuY2Ugb2YgZmFzdC5haSBzdHVkZW50cy4gSWYgeW91IHVzZSB0aGlzIGRhdGFzZXQgaW4geW91ciByZXNlYXJjaCBwbGVhc2UgY2l0ZSBhclhpdjoxNDA1LjAzMTIgW2NzLkNWXS5cblxuRG9jdW1lbnRhdGlvbjogaHR0cDovL2NvdXJzZS5mYXN0LmFpL2RhdGFzZXRzXG5Db250YWN0OiBpbmZvQGZhc3QuYWlcbk1hbmFnZWRCeTogW2Zhc3QuYWldKGh0dHA6Ly93d3cuZmFzdC5haS8pXG5VcGRhdGVGcmVxdWVuY3k6IEFzIHJlcXVpcmVkXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZmFzdF9haV9jb2NvL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvZmFzdC1haS1jb2NvLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2Zhc3RfYWlfY29jby5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19mYXN0X2FpX2NvY28mc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2Zhc3RfYWlfY29jbyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19mYXN0X2FpX2ltYWdlY2xhcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2Zhc3RfYWlfaW1hZ2VjbGFzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2Zhc3RfYWlfaW1hZ2VjbGFzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgZmFzdC1haS1pbWFnZWNsYXMgQnVja2V0OiBJbWFnZSBjbGFzc2lmaWNhdGlvbiAtIGZhc3QuYWkgZGF0YXNldHM6IERhdGFzZXRzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgZmFzdC1haS1pbWFnZWNsYXMgYnVja2V0IGF0IGh0dHBzOi8vZmFzdC1haS1pbWFnZWNsYXMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IEltYWdlIGNsYXNzaWZpY2F0aW9uIC0gZmFzdC5haSBkYXRhc2V0c1xuTmFtZTI6IERhdGFzZXRzXG5EZXNjcmlwdGlvbjogU29tZSBvZiB0aGUgbW9zdCBpbXBvcnRhbnQgZGF0YXNldHMgZm9yIGltYWdlIGNsYXNzaWZpY2F0aW9uIHJlc2VhcmNoLCBpbmNsdWRpbmcgQ0lGQVIgMTAgYW5kIDEwMCwgQ2FsdGVjaCAxMDEsIE1OSVNULCBGb29kLTEwMSwgT3hmb3JkLTEwMi1GbG93ZXJzLCBPeGZvcmQtSUlJVC1QZXRzLCBhbmQgU3RhbmZvcmQtQ2Fycy4gIFRoaXMgaXMgcGFydCBvZiB0aGUgZmFzdC5haSBkYXRhc2V0cyBjb2xsZWN0aW9uIGhvc3RlZCBieSBBV1MgZm9yIGNvbnZlbmllbmNlIG9mIGZhc3QuYWkgc3R1ZGVudHMuIFNlZSBkb2N1bWVudGF0aW9uIGxpbmsgZm9yIGNpdGF0aW9uIGFuZCBsaWNlbnNlIGRldGFpbHMgZm9yIGVhY2ggZGF0YXNldC5cblxuRG9jdW1lbnRhdGlvbjogaHR0cDovL2NvdXJzZS5mYXN0LmFpL2RhdGFzZXRzXG5Db250YWN0OiBpbmZvQGZhc3QuYWlcbk1hbmFnZWRCeTogW2Zhc3QuYWldKGh0dHA6Ly93d3cuZmFzdC5haS8pXG5VcGRhdGVGcmVxdWVuY3k6IEFzIHJlcXVpcmVkXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZmFzdF9haV9pbWFnZWNsYXMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9mYXN0LWFpLWltYWdlY2xhcy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19mYXN0X2FpX2ltYWdlY2xhcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19mYXN0X2FpX2ltYWdlY2xhcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZmFzdF9haV9pbWFnZWNsYXMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZmFzdF9haV9pbWFnZWxvY2FsIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZmFzdF9haV9pbWFnZWxvY2FsLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2Zhc3RfYWlfaW1hZ2Vsb2NhbC8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGZhc3QtYWktaW1hZ2Vsb2NhbCBCdWNrZXQ6IEltYWdlIGxvY2FsaXphdGlvbiAgLSBmYXN0LmFpIGRhdGFzZXRzOiBEYXRhc2V0cyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGZhc3QtYWktaW1hZ2Vsb2NhbCBidWNrZXQgYXQgaHR0cHM6Ly9mYXN0LWFpLWltYWdlbG9jYWwuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IEltYWdlIGxvY2FsaXphdGlvbiAgLSBmYXN0LmFpIGRhdGFzZXRzXG5OYW1lMjogRGF0YXNldHNcbkRlc2NyaXB0aW9uOiBTb21lIG9mIHRoZSBtb3N0IGltcG9ydGFudCBkYXRhc2V0cyBmb3IgaW1hZ2UgbG9jYWxpemF0aW9uICByZXNlYXJjaCwgaW5jbHVkaW5nIENhbXZpZCBhbmQgUEFTQ0FMIFZPQyAoMjAwNyBhbmQgMjAxMikuIFRoaXMgaXMgcGFydCBvZiB0aGUgZmFzdC5haSBkYXRhc2V0cyBjb2xsZWN0aW9uIGhvc3RlZCBieSBBV1MgZm9yIGNvbnZlbmllbmNlIG9mIGZhc3QuYWkgc3R1ZGVudHMuIFNlZSBkb2N1bWVudGF0aW9uIGxpbmsgZm9yIGNpdGF0aW9uIGFuZCBsaWNlbnNlIGRldGFpbHMgZm9yIGVhY2ggZGF0YXNldC5cblxuRG9jdW1lbnRhdGlvbjogaHR0cDovL2NvdXJzZS5mYXN0LmFpL2RhdGFzZXRzXG5Db250YWN0OiBpbmZvQGZhc3QuYWlcbk1hbmFnZWRCeTogW2Zhc3QuYWldKGh0dHA6Ly93d3cuZmFzdC5haS8pXG5VcGRhdGVGcmVxdWVuY3k6IEFzIHJlcXVpcmVkXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZmFzdF9haV9pbWFnZWxvY2FsL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvZmFzdC1haS1pbWFnZWxvY2FsLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2Zhc3RfYWlfaW1hZ2Vsb2NhbC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19mYXN0X2FpX2ltYWdlbG9jYWwmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2Zhc3RfYWlfaW1hZ2Vsb2NhbCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19mYXN0X2FpX25scCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2Zhc3RfYWlfbmxwLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2Zhc3RfYWlfbmxwLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgZmFzdC1haS1ubHAgQnVja2V0OiBOTFAgLSBmYXN0LmFpIGRhdGFzZXRzOiBEYXRhc2V0cyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGZhc3QtYWktbmxwIGJ1Y2tldCBhdCBodHRwczovL2Zhc3QtYWktbmxwLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBOTFAgLSBmYXN0LmFpIGRhdGFzZXRzXG5OYW1lMjogRGF0YXNldHNcbkRlc2NyaXB0aW9uOiBTb21lIG9mIHRoZSBtb3N0IGltcG9ydGFudCBkYXRhc2V0cyBmb3IgTkxQLCB3aXRoIGEgZm9jdXMgb24gY2xhc3NpZmljYXRpb24sIGluY2x1ZGluZyBJTURiLCBBRy1OZXdzLCBBbWF6b24gUmV2aWV3cyAocG9sYXJpdHkgYW5kIGZ1bGwpLCBZZWxwIFJldmlld3MgKHBvbGFyaXR5IGFuZCBmdWxsKSwgRGJwZWRpYSwgU29nb3UgTmV3cyAoUGlueWluKSwgWWFob28gQW5zd2VycywgV2lraXRleHQgMiBhbmQgV2lraXRleHQgMTAzLCBhbmQgQUNMLTIwMTAgRnJlbmNoLUVuZ2xpc2ggMTBeOSBjb3JwdXMuICBUaGlzIGlzIHBhcnQgb2YgdGhlIGZhc3QuYWkgZGF0YXNldHMgY29sbGVjdGlvbiBob3N0ZWQgYnkgQVdTIGZvciBjb252ZW5pZW5jZSBvZiBmYXN0LmFpIHN0dWRlbnRzLiBTZWUgZG9jdW1lbnRhdGlvbiBsaW5rIGZvciBjaXRhdGlvbiBhbmQgbGljZW5zZSBkZXRhaWxzIGZvciBlYWNoIGRhdGFzZXQuXG5cbkRvY3VtZW50YXRpb246IGh0dHA6Ly9jb3Vyc2UuZmFzdC5haS9kYXRhc2V0c1xuQ29udGFjdDogaW5mb0BmYXN0LmFpXG5NYW5hZ2VkQnk6IFtmYXN0LmFpXShodHRwOi8vd3d3LmZhc3QuYWkvKVxuVXBkYXRlRnJlcXVlbmN5OiBBcyByZXF1aXJlZFxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2Zhc3RfYWlfbmxwL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvZmFzdC1haS1ubHAvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZmFzdF9haV9ubHAucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfZmFzdF9haV9ubHAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2Zhc3RfYWlfbmxwIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2ZtaV9vcGVuZGF0YV9yY3JoaXJsYW1fcHJlc3N1cmVfZ3JpYiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2ZtaV9vcGVuZGF0YV9yY3JoaXJsYW1fcHJlc3N1cmVfZ3JpYi5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19mbWlfb3BlbmRhdGFfcmNyaGlybGFtX3ByZXNzdXJlX2dyaWIvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBmbWktb3BlbmRhdGEtcmNyaGlybGFtLXByZXNzdXJlLWdyaWIgQnVja2V0OiBISVJMQU0gV2VhdGhlciBNb2RlbDogUHJlc3N1cmUgR1JJQiBmaWxlcyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGZtaS1vcGVuZGF0YS1yY3JoaXJsYW0tcHJlc3N1cmUtZ3JpYiBidWNrZXQgYXQgaHR0cHM6Ly9mbWktb3BlbmRhdGEtcmNyaGlybGFtLXByZXNzdXJlLWdyaWIuczMuZXUtd2VzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IEhJUkxBTSBXZWF0aGVyIE1vZGVsXG5OYW1lMjogUHJlc3N1cmUgR1JJQiBmaWxlc1xuRGVzY3JpcHRpb246IEhJUkxBTSAoSGlnaCBSZXNvbHV0aW9uIExpbWl0ZWQgQXJlYSBNb2RlbCkgaXMgYW4gb3BlcmF0aW9uYWwgc3lub3B0aWMgYW5kIG1lc29zY2FsZSB3ZWF0aGVyIHByZWRpY3Rpb24gbW9kZWwgbWFuYWdlZCBieSB0aGUgRmlubmlzaCBNZXRlb3JvbG9naWNhbCBJbnN0aXR1dGUuXG5cbkRvY3VtZW50YXRpb246IGh0dHA6Ly9lbi5pbG1hdGlldGVlbmxhaXRvcy5maS9vcGVuLWRhdGEtb24tYXdzLXMzXG5Db250YWN0OiBhdm9pbi1kYXRhQGZtaS5maVxuVXBkYXRlRnJlcXVlbmN5OiBUaGUgZGF0YSBpcyB1cGRhdGVkIGZvdXIgdGltZXMgYSBkYXkgd2l0aCBhbmFseXNpcyBob3VycyAwMCwgMDYsIDEyIGFuZCAxOC4gQ29ycmVzcG9uZGluZyBtb2RlbCBydW5zIGFyZSBhdmFpbGFibGUgcm91Z2hseSBmaXZlIGhvdXJzIGFmdGVyIGFuYWx5c2lzIHRpbWUgKH4gYWZ0ZXIgbW9kZWwgcnVuIGhhcyBzdGFydGVkKS5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19mbWlfb3BlbmRhdGFfcmNyaGlybGFtX3ByZXNzdXJlX2dyaWIvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9oaXJsYW0vIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZm1pX29wZW5kYXRhX3JjcmhpcmxhbV9wcmVzc3VyZV9ncmliLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2ZtaV9vcGVuZGF0YV9yY3JoaXJsYW1fcHJlc3N1cmVfZ3JpYiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZm1pX29wZW5kYXRhX3JjcmhpcmxhbV9wcmVzc3VyZV9ncmliIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2ZtaV9vcGVuZGF0YV9yY3JoaXJsYW1fc3VyZmFjZV9ncmliIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZm1pX29wZW5kYXRhX3JjcmhpcmxhbV9zdXJmYWNlX2dyaWIuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZm1pX29wZW5kYXRhX3JjcmhpcmxhbV9zdXJmYWNlX2dyaWIvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBmbWktb3BlbmRhdGEtcmNyaGlybGFtLXN1cmZhY2UtZ3JpYiBCdWNrZXQ6IEhJUkxBTSBXZWF0aGVyIE1vZGVsOiBTdXJmYWNlIEdSSUIgZmlsZXMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBmbWktb3BlbmRhdGEtcmNyaGlybGFtLXN1cmZhY2UtZ3JpYiBidWNrZXQgYXQgaHR0cHM6Ly9mbWktb3BlbmRhdGEtcmNyaGlybGFtLXN1cmZhY2UtZ3JpYi5zMy5ldS13ZXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogSElSTEFNIFdlYXRoZXIgTW9kZWxcbk5hbWUyOiBTdXJmYWNlIEdSSUIgZmlsZXNcbkRlc2NyaXB0aW9uOiBISVJMQU0gKEhpZ2ggUmVzb2x1dGlvbiBMaW1pdGVkIEFyZWEgTW9kZWwpIGlzIGFuIG9wZXJhdGlvbmFsIHN5bm9wdGljIGFuZCBtZXNvc2NhbGUgd2VhdGhlciBwcmVkaWN0aW9uIG1vZGVsIG1hbmFnZWQgYnkgdGhlIEZpbm5pc2ggTWV0ZW9yb2xvZ2ljYWwgSW5zdGl0dXRlLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwOi8vZW4uaWxtYXRpZXRlZW5sYWl0b3MuZmkvb3Blbi1kYXRhLW9uLWF3cy1zM1xuQ29udGFjdDogYXZvaW4tZGF0YUBmbWkuZmlcblVwZGF0ZUZyZXF1ZW5jeTogVGhlIGRhdGEgaXMgdXBkYXRlZCBmb3VyIHRpbWVzIGEgZGF5IHdpdGggYW5hbHlzaXMgaG91cnMgMDAsIDA2LCAxMiBhbmQgMTguIENvcnJlc3BvbmRpbmcgbW9kZWwgcnVucyBhcmUgYXZhaWxhYmxlIHJvdWdobHkgZml2ZSBob3VycyBhZnRlciBhbmFseXNpcyB0aW1lICh+IGFmdGVyIG1vZGVsIHJ1biBoYXMgc3RhcnRlZCkuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZm1pX29wZW5kYXRhX3JjcmhpcmxhbV9zdXJmYWNlX2dyaWIvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9oaXJsYW0vIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZm1pX29wZW5kYXRhX3JjcmhpcmxhbV9zdXJmYWNlX2dyaWIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfZm1pX29wZW5kYXRhX3JjcmhpcmxhbV9zdXJmYWNlX2dyaWImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2ZtaV9vcGVuZGF0YV9yY3JoaXJsYW1fc3VyZmFjZV9ncmliIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2dhdGtfdGVzdF9kYXRhIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZ2F0a190ZXN0X2RhdGEuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZ2F0a190ZXN0X2RhdGEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBnYXRrLXRlc3QtZGF0YSBCdWNrZXQ6IEdBVEsgVGVzdCBEYXRhOiBUaGUgY29udGVudHMgb2YgdGhpcyBkYXRhc2V0IGlzIG11bHRpLW1vZGFsIGFuZCBpbmNsdWRlcyB2YXJpb3VzIHR5cGVzIG9mIGdlbm9taWMgZGF0YSwgc3VjaCBhcyBDUkFNcy9CQU1zLCB3aG9sZS1nZW5vbWUgc2VxdWVuY2luZyAoV0dTKSBkYXRhLCBleG9tZSBkYXRhLCBSTkEgZGF0YSwgZXRjLiIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGdhdGstdGVzdC1kYXRhIGJ1Y2tldCBhdCBodHRwczovL2dhdGstdGVzdC1kYXRhLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBHQVRLIFRlc3QgRGF0YVxuTmFtZTI6IFRoZSBjb250ZW50cyBvZiB0aGlzIGRhdGFzZXQgaXMgbXVsdGktbW9kYWwgYW5kIGluY2x1ZGVzIHZhcmlvdXMgdHlwZXMgb2YgZ2Vub21pYyBkYXRhLCBzdWNoIGFzIENSQU1zL0JBTXMsIHdob2xlLWdlbm9tZSBzZXF1ZW5jaW5nIChXR1MpIGRhdGEsIGV4b21lIGRhdGEsIFJOQSBkYXRhLCBldGMuXG5EZXNjcmlwdGlvbjogVGhlIEdBVEsgdGVzdCBkYXRhIHJlc291cmNlIGJ1bmRsZSBpcyBhIGNvbGxlY3Rpb24gb2YgZmlsZXMgZm9yIHJlc2VxdWVuY2luZyBodW1hbiBnZW5vbWljIGRhdGEgd2l0aCB0aGUgQnJvYWQgSW5zdGl0dXRlJ3MgW0dlbm9tZSBBbmFseXNpcyBUb29sa2l0IChHQVRLKV0oaHR0cHM6Ly9zb2Z0d2FyZS5icm9hZGluc3RpdHV0ZS5vcmcvZ2F0ay8pLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL3MzLmFtYXpvbmF3cy5jb20vZ2F0ay10ZXN0LWRhdGEvZ2F0ay10ZXN0LWRhdGEtcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IGh0dHBzOi8vZ2F0a2ZvcnVtcy5icm9hZGluc3RpdHV0ZS5vcmcvZ2F0a1xuTWFuYWdlZEJ5OiBCcm9hZCBJbnN0aXR1dGVcblVwZGF0ZUZyZXF1ZW5jeTogRXZlcnkgMyBtb250aHNcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19nYXRrX3Rlc3RfZGF0YS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2dhdGstdGVzdC1kYXRhLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2dhdGtfdGVzdF9kYXRhLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2dhdGtfdGVzdF9kYXRhJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19nYXRrX3Rlc3RfZGF0YSJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19nZGVsdF9vcGVuX2RhdGEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19nZGVsdF9vcGVuX2RhdGEuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZ2RlbHRfb3Blbl9kYXRhLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgZ2RlbHQtb3Blbi1kYXRhIEJ1Y2tldDogR2xvYmFsIERhdGFiYXNlIG9mIEV2ZW50cywgTGFuZ3VhZ2UgYW5kIFRvbmUgKEdERUxUKTogUHJvamVjdCBkYXRhIGZpbGVzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgZ2RlbHQtb3Blbi1kYXRhIGJ1Y2tldCBhdCBodHRwczovL2dkZWx0LW9wZW4tZGF0YS5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogR2xvYmFsIERhdGFiYXNlIG9mIEV2ZW50cywgTGFuZ3VhZ2UgYW5kIFRvbmUgKEdERUxUKVxuTmFtZTI6IFByb2plY3QgZGF0YSBmaWxlc1xuRGVzY3JpcHRpb246IFRoaXMgcHJvamVjdCBtb25pdG9ycyB0aGUgd29ybGQncyBicm9hZGNhc3QsIHByaW50LCBhbmQgd2ViIG5ld3MgZnJvbSBuZWFybHkgZXZlcnkgY29ybmVyIG9mIGV2ZXJ5IGNvdW50cnkgaW4gb3ZlciAxMDAgbGFuZ3VhZ2VzIGFuZCBpZGVudGlmaWVzIHRoZSBwZW9wbGUsIGxvY2F0aW9ucywgb3JnYW5pemF0aW9ucywgY291bnRzLCB0aGVtZXMsIHNvdXJjZXMsIGVtb3Rpb25zLCBxdW90ZXMsIGltYWdlcyBhbmQgZXZlbnRzIGRyaXZpbmcgb3VyIGdsb2JhbCBzb2NpZXR5IGV2ZXJ5IHNlY29uZCBvZiBldmVyeSBkYXkuXG5cbkRvY3VtZW50YXRpb246IGh0dHA6Ly93d3cuZ2RlbHRwcm9qZWN0Lm9yZy9cbkNvbnRhY3Q6IGh0dHA6Ly93d3cuZ2RlbHRwcm9qZWN0Lm9yZy9hYm91dC5odG1sI2NvbnRhY3RcblVwZGF0ZUZyZXF1ZW5jeTogTm90IGN1cnJlbnRseSBiZWluZyB1cGRhdGVkXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZ2RlbHRfb3Blbl9kYXRhL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvZ2RlbHQvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZ2RlbHRfb3Blbl9kYXRhLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2dkZWx0X29wZW5fZGF0YSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZ2RlbHRfb3Blbl9kYXRhIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2dlbm9tZWFyayIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2dlbm9tZWFyay5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19nZW5vbWVhcmsvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBnZW5vbWVhcmsgQnVja2V0OiBHZW5vbWUgQXJrIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgZ2Vub21lYXJrIGJ1Y2tldCBhdCBodHRwczovL2dlbm9tZWFyay5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogR2Vub21lIEFya1xuTmFtZTI6IGh0dHBzOi8vdmdwLmdpdGh1Yi5pb1xuRGVzY3JpcHRpb246IFRoZSBHZW5vbWUgQXJrIGhvc3RzIGdlbm9taWMgaW5mb3JtYXRpb24gZm9yIHRoZSBWZXJ0ZWJyYXRlIEdlbm9tZXMgUHJvamVjdCAoVkdQKSBhbmQgb3RoZXIgcmVsYXRlZCBwcm9qZWN0cy4gVGhlIFZHUCBpcyBhbiBpbnRlcm5hdGlvbmFsIGNvbGxhYm9yYXRpb24gdGhhdCBhaW1zIHRvIGdlbmVyYXRlIGNvbXBsZXRlIGFuZCBuZWFyIGVycm9yLWZyZWUgcmVmZXJlbmNlIGdlbm9tZXMgZm9yIGFsbCBleHRhbnQgdmVydGVicmF0ZSBzcGVjaWVzLiBUaGVzZSBnZW5vbWVzIHdpbGwgYmUgdXNlZCB0byBhZGRyZXNzIGZ1bmRhbWVudGFsIHF1ZXN0aW9ucyBpbiBiaW9sb2d5IGFuZCBkaXNlYXNlLCB0byBpZGVudGlmeSBzcGVjaWVzIG1vc3QgZ2VuZXRpY2FsbHkgYXQgcmlzayBmb3IgZXh0aW5jdGlvbiwgYW5kIHRvIHByZXNlcnZlIGdlbmV0aWMgaW5mb3JtYXRpb24gb2YgbGlmZS5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly92ZXJ0ZWJyYXRlZ2Vub21lc3Byb2plY3Qub3JnXG5Db250YWN0OiBFcmljaCBKYXJ2aXMgPGVqYXJ2aXNAcm9ja2VmZWxsZXIuZWR1PlxuTWFuYWdlZEJ5OiBUaGUgR2Vub21lMTBLIGNvbW11bml0eSBvZiBzY2llbnRpc3RzXG5VcGRhdGVGcmVxdWVuY3k6IERhdGEgd2lsbCBiZSBjb250aW51YWxseSB1cGRhdGVkIGFzIGl0IGlzIGdlbmVyYXRlZC5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19nZW5vbWVhcmsvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9nZW5vbWVhcmsvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZ2Vub21lYXJrLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2dlbm9tZWFyayZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZ2Vub21lYXJrIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2dpYWIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19naWFiLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2dpYWIvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBnaWFiIEJ1Y2tldDogR2Vub21lIGluIGEgQm90dGxlIG9uIEFXUzogTGF0ZXN0IGRhdGEiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBnaWFiIGJ1Y2tldCBhdCBodHRwczovL2dpYWIuczMudXMtd2VzdC0yLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IEdlbm9tZSBpbiBhIEJvdHRsZSBvbiBBV1Ncbk5hbWUyOiBMYXRlc3QgZGF0YVxuRGVzY3JpcHRpb246IFNldmVyYWwgcmVmZXJlbmNlIGdlbm9tZXMgdG8gZW5hYmxlIHRyYW5zbGF0aW9uIG9mIHdob2xlIGh1bWFuIGdlbm9tZSBzZXF1ZW5jaW5nIHRvIGNsaW5pY2FsIHByYWN0aWNlLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL2dpYWIvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IGh0dHA6Ly9nZW5vbWVpbmFib3R0bGUub3JnL1xuVXBkYXRlRnJlcXVlbmN5OiBOZXcgZGF0YSBhcmUgYWRkZWQgYXMgc29vbiBhcyB0aGV5IGFyZSBhdmFpbGFibGUuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZ2lhYi9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2dpYWIvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZ2lhYi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19naWFiJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19naWFiIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2dtc2RhdGEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19nbXNkYXRhLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2dtc2RhdGEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBnbXNkYXRhIEJ1Y2tldDogVGhlIEdlbm9tZSBNb2RlbGluZyBTeXN0ZW0iLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBnbXNkYXRhIGJ1Y2tldCBhdCBodHRwczovL2dtc2RhdGEuczMudXMtd2VzdC0yLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IFRoZSBHZW5vbWUgTW9kZWxpbmcgU3lzdGVtXG5OYW1lMjogaHR0cHM6Ly9nbXNkYXRhLnMzLmFtYXpvbmF3cy5jb20vSU5ERVguaHRtbFxuRGVzY3JpcHRpb246IFRoZSBHZW5vbWUgSW5zdGl0dXRlIGF0IFdhc2hpbmd0b24gVW5pdmVyc2l0eSBoYXMgZGV2ZWxvcGVkIGEgaGlnaC10aHJvdWdocHV0LCBmYXVsdC10b2xlcmFudCBhbmFseXNpcyBpbmZvcm1hdGlvbiBtYW5hZ2VtZW50IHN5c3RlbSBjYWxsZWQgdGhlIEdlbm9tZSBNb2RlbGluZyBTeXN0ZW0gKEdNUyksIGNhcGFibGUgb2YgZXhlY3V0aW5nIGNvbXBsZXgsIGludGVyZGVwZW5kZW50LCBhbmQgYXV0b21hdGVkIGdlbm9tZSBhbmFseXNpcyBwaXBlbGluZXMgYXQgYSBtYXNzaXZlIHNjYWxlLiBUaGUgR01TIGZyYW1ld29yayBwcm92aWRlcyBkZXRhaWxlZCB0cmFja2luZyBvZiBzYW1wbGVzIGFuZCBkYXRhIGNvdXBsZWQgd2l0aCByZWxpYWJsZSBhbmQgcmVwZWF0YWJsZSBhbmFseXNpcyBwaXBlbGluZXMuIEdNUyBpbmNsdWRlcyBhIGZ1bGwgc3lzdGVtIGltYWdlIHdpdGggc29mdHdhcmUgYW5kIHNlcnZpY2VzLCBleHBhbmRhYmxlIGZyb20gb25lIHdvcmtzdGF0aW9uIHRvIGEgbGFyZ2UgY29tcHV0ZSBjbHVzdGVyLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2dpdGh1Yi5jb20vZ2Vub21lL2dtcy93aWtpXG5Db250YWN0OiBodHRwczovL2dpdGh1Yi5jb20vZ2Vub21lL2dtcy9pc3N1ZXNcblVwZGF0ZUZyZXF1ZW5jeTogTm90IHVwZGF0ZWRcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19nbXNkYXRhL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvZ21zZGF0YS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19nbXNkYXRhLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2dtc2RhdGEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2dtc2RhdGEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZ3JpbGxvX29wZW5lZXciLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ncmlsbG9fb3BlbmVldy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ncmlsbG9fb3BlbmVldy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGdyaWxsby1vcGVuZWV3IEJ1Y2tldDogT3BlbkVFVzogT3BlbkVFVyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGdyaWxsby1vcGVuZWV3IGJ1Y2tldCBhdCBodHRwczovL2dyaWxsby1vcGVuZWV3LnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBPcGVuRUVXXG5OYW1lMjogT3BlbkVFV1xuRGVzY3JpcHRpb246IEdyaWxsbyBoYXMgZGV2ZWxvcGVkIGFuIElvVC1iYXNlZCBlYXJ0aHF1YWtlIGVhcmx5LXdhcm5pbmcgc3lzdGVtIGluIE1leGljbyBhbmQgQ2hpbGUgYW5kIGlzIG5vdyBvcGVuaW5nIGl0cyBlbnRpcmUgYXJjaGl2ZSBvZiB1bnByb2Nlc3NlZCBhY2NlbGVyb21ldGVyIGRhdGEgdG8gdGhlIHdvcmxkIHRvIGVuY291cmFnZSB0aGUgZGV2ZWxvcG1lbnQgb2YgbmV3IGFsZ29yaXRobXMgY2FwYWJsZSBvZiByYXBpZGx5IGRldGVjdGluZyBhbmQgY2hhcmFjdGVyaXppbmcgZWFydGhxdWFrZXMgaW4gcmVhbCB0aW1lLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2dpdGh1Yi5jb20vZ3JpbGxvL29wZW5lZXdcbkNvbnRhY3Q6IG9wZW5lZXdAZ3JpbGxvLmlvXG5NYW5hZ2VkQnk6IFtHcmlsbG9dKGh0dHBzOi8vZ3JpbGxvLmlvLylcblVwZGF0ZUZyZXF1ZW5jeTogQXBwcm94aW1hdGVseSBldmVyeSAxMCBtaW51dGVzXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZ3JpbGxvX29wZW5lZXcvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9ncmlsbG8tb3BlbmVldy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19ncmlsbG9fb3BlbmVldy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ncmlsbG9fb3BlbmVldyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZ3JpbGxvX29wZW5lZXciXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfaHVtYW5fbWljcm9iaW9tZV9wcm9qZWN0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfaHVtYW5fbWljcm9iaW9tZV9wcm9qZWN0LmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2h1bWFuX21pY3JvYmlvbWVfcHJvamVjdC8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGh1bWFuLW1pY3JvYmlvbWUtcHJvamVjdCBCdWNrZXQ6IFRoZSBIdW1hbiBNaWNyb2Jpb21lIFByb2plY3QiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBodW1hbi1taWNyb2Jpb21lLXByb2plY3QgYnVja2V0IGF0IGh0dHBzOi8vaHVtYW4tbWljcm9iaW9tZS1wcm9qZWN0LnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBUaGUgSHVtYW4gTWljcm9iaW9tZSBQcm9qZWN0XG5OYW1lMjogaHR0cHM6Ly9hd3MuYW1hem9uLmNvbS9kYXRhc2V0cy9odW1hbi1taWNyb2Jpb21lLXByb2plY3QvXG5EZXNjcmlwdGlvbjogVGhlIE5JSC1mdW5kZWQgSHVtYW4gTWljcm9iaW9tZSBQcm9qZWN0IChITVApIGlzIGEgY29sbGFib3JhdGl2ZSBlZmZvcnQgb2Ygb3ZlciAzMDAgc2NpZW50aXN0cyBmcm9tIG1vcmUgdGhhbiA4MCBvcmdhbml6YXRpb25zIHRvIGNvbXByZWhlbnNpdmVseSBjaGFyYWN0ZXJpemUgdGhlIG1pY3JvYmlhbCBjb21tdW5pdGllcyBpbmhhYml0aW5nIHRoZSBodW1hbiBib2R5IGFuZCBlbHVjaWRhdGUgdGhlaXIgcm9sZSBpbiBodW1hbiBoZWFsdGggYW5kIGRpc2Vhc2UuIFRvIGFjY29tcGxpc2ggdGhpcyB0YXNrLCBtaWNyb2JpYWwgY29tbXVuaXR5IHNhbXBsZXMgd2VyZSBpc29sYXRlZCBmcm9tIGEgY29ob3J0IG9mIDMwMCBoZWFsdGh5IGFkdWx0IGh1bWFuIHN1YmplY3RzIGF0IDE4IHNwZWNpZmljIHNpdGVzIHdpdGhpbiBmaXZlIHJlZ2lvbnMgb2YgdGhlIGJvZHkgKG9yYWwgY2F2aXR5LCBhaXJ3YXlzLCB1cm9nZW5pdGFsIHRyYWNrLCBza2luLCBhbmQgZ3V0KS4gVGFyZ2V0ZWQgc2VxdWVuY2luZyBvZiB0aGUgMTZTIGJhY3RlcmlhbCBtYXJrZXIgZ2VuZSBhbmQvb3Igd2hvbGUgbWV0YWdlbm9tZSBzaG90Z3VuIHNlcXVlbmNpbmcgd2FzIHBlcmZvcm1lZCBmb3IgdGhvdXNhbmRzIG9mIHRoZXNlIHNhbXBsZXMuIEluIGFkZGl0aW9uLCB3aG9sZSBnZW5vbWUgc2VxdWVuY2VzIHdlcmUgZ2VuZXJhdGVkIGZvciBpc29sYXRlIHN0cmFpbnMgY29sbGVjdGVkIGZyb20gaHVtYW4gYm9keSBzaXRlcyB0byBhY3QgYXMgcmVmZXJlbmNlIG9yZ2FuaXNtcyBmb3IgYW5hbHlzaXMuIEZpbmFsbHksIDE2UyBtYXJrZXIgYW5kIHdob2xlIG1ldGFnZW5vbWUgc2VxdWVuY2luZyB3YXMgYWxzbyBkb25lIG9uIGFkZGl0aW9uYWwgc2FtcGxlcyBmcm9tIHBlb3BsZSBzdWZmZXJpbmcgZnJvbSBzZXZlcmFsIGRpc2Vhc2UgY29uZGl0aW9ucy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9jb21tb25mdW5kLm5paC5nb3YvaG1wXG5Db250YWN0OiBodHRwczovL2NvbW1vbmZ1bmQubmloLmdvdi9obXAvcmVsYXRlZF9hY3Rpdml0aWVzXG5VcGRhdGVGcmVxdWVuY3k6IFVuY2VydGFpblxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2h1bWFuX21pY3JvYmlvbWVfcHJvamVjdC9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2h1bWFuLW1pY3JvYmlvbWUtcHJvamVjdC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19odW1hbl9taWNyb2Jpb21lX3Byb2plY3QucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfaHVtYW5fbWljcm9iaW9tZV9wcm9qZWN0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19odW1hbl9taWNyb2Jpb21lX3Byb2plY3QiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfaHVtYW5fcGFuZ2Vub21pY3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19odW1hbl9wYW5nZW5vbWljcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19odW1hbl9wYW5nZW5vbWljcy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGh1bWFuLXBhbmdlbm9taWNzIEJ1Y2tldDogSHVtYW4gUGFuR2Vub21pY3MgUHJvamVjdDogSHVtYW4gUGFuR2Vub21pY3MgUHJvamVjdCIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGh1bWFuLXBhbmdlbm9taWNzIGJ1Y2tldCBhdCBodHRwczovL2h1bWFuLXBhbmdlbm9taWNzLnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBIdW1hbiBQYW5HZW5vbWljcyBQcm9qZWN0XG5OYW1lMjogSHVtYW4gUGFuR2Vub21pY3MgUHJvamVjdFxuRGVzY3JpcHRpb246IFRoaXMgZGF0YXNldCBpbmNsdWRlcyBzZXF1ZW5jaW5nIGRhdGEsIGFzc2VtYmxpZXMsIGFuZCBhbmFseXNlcyBmb3IgdGhlIG9mZnNwcmluZyBvZiB0ZW4gcGFyZW50LW9mZnNwcmluZyB0cmlvcy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9naXRodWIuY29tL2h1bWFuLXBhbmdlbm9taWNzL2hwZ3AtZGF0YVxuQ29udGFjdDogaHR0cHM6Ly9naXRodWIuY29tL2h1bWFuLXBhbmdlbm9taWNzL2hwZ3AtZGF0YS9pc3N1ZXNcblVwZGF0ZUZyZXF1ZW5jeTogRGF0YSB3aWxsIGJlIGFkZGVkIGFuZCB1cGRhdGVkIGFzIHRlY2hub2xvZ2llcyBpbXByb3ZlIG9yIG5ldyBkYXRhIHVzZXMgYXJlIGVuY291bnRlcmVkLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2h1bWFuX3Bhbmdlbm9taWNzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvaHBncC1kYXRhLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2h1bWFuX3Bhbmdlbm9taWNzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2h1bWFuX3Bhbmdlbm9taWNzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19odW1hbl9wYW5nZW5vbWljcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19pY2hhbmdlbXljaXR5X2phbmFhZ3JhaGFfY29tcGxhaW50c19kYXRhX2F3cyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2ljaGFuZ2VteWNpdHlfamFuYWFncmFoYV9jb21wbGFpbnRzX2RhdGFfYXdzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2ljaGFuZ2VteWNpdHlfamFuYWFncmFoYV9jb21wbGFpbnRzX2RhdGFfYXdzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgaWNoYW5nZW15Y2l0eS1qYW5hYWdyYWhhLWNvbXBsYWludHMtZGF0YS1hd3MgQnVja2V0OiBJQ2hhbmdlTXlDaXR5IENvbXBsYWludHMgRGF0YSBmcm9tIEphbmFhZ3JhaGE6IElDaGFuZ2VNeUNpdHkgQ29tcGxhaW50cyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGljaGFuZ2VteWNpdHktamFuYWFncmFoYS1jb21wbGFpbnRzLWRhdGEtYXdzIGJ1Y2tldCBhdCBodHRwczovL2ljaGFuZ2VteWNpdHktamFuYWFncmFoYS1jb21wbGFpbnRzLWRhdGEtYXdzLnMzLmFwLXNvdXRoLTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogSUNoYW5nZU15Q2l0eSBDb21wbGFpbnRzIERhdGEgZnJvbSBKYW5hYWdyYWhhXG5OYW1lMjogSUNoYW5nZU15Q2l0eSBDb21wbGFpbnRzXG5EZXNjcmlwdGlvbjogVGhlIFtJQ2hhbmdlTXlDaXR5XShodHRwczovL3d3dy5pY2hhbmdlbXljaXR5LmNvbSkgcHJvamVjdCBwcm92aWRlcyBpbnNpZ2h0IGludG8gdGhlIGNvbXBsYWludHMgcmFpc2VkIGJ5IGNpdGl6ZW5zIGZyb20gZGlmZmVudCBjaXRpZXMgb2YgSW5kaWEgcmVsYXRlZCB0byB0aGUgaXNzdWVzIGluIHRoZWlyIG5laWdoYm91cmhvb2RzIGFuZCB0aGUgcmVzb2x1dGlvbiBvZiB0aGUgc2FtZSBieSB0aGUgY2l2aWMgYm9kaWVzLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwOi8vaWNoYW5nZW15Y2l0eS1qYW5hYWdyYWhhLWNvbXBsYWludHMtZGF0YS1hd3MuczMuYXAtc291dGgtMS5hbWF6b25hd3MuY29tL3JlYWRtZS5odG1sXG5Db250YWN0OiBkYXRhQGphbmFhZ3JhaGEub3JnXG5VcGRhdGVGcmVxdWVuY3k6IERhaWx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfaWNoYW5nZW15Y2l0eV9qYW5hYWdyYWhhX2NvbXBsYWludHNfZGF0YV9hd3MvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9pY2hhbmdlbXljaXR5LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2ljaGFuZ2VteWNpdHlfamFuYWFncmFoYV9jb21wbGFpbnRzX2RhdGFfYXdzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2ljaGFuZ2VteWNpdHlfamFuYWFncmFoYV9jb21wbGFpbnRzX2RhdGFfYXdzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19pY2hhbmdlbXljaXR5X2phbmFhZ3JhaGFfY29tcGxhaW50c19kYXRhX2F3cyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19pcnNfOTkwX3NwcmVhZHNoZWV0cyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2lyc185OTBfc3ByZWFkc2hlZXRzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2lyc185OTBfc3ByZWFkc2hlZXRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgaXJzLTk5MC1zcHJlYWRzaGVldHMgQnVja2V0OiBJUlMgOTkwIEZpbGluZ3MgKFNwcmVhZHNoZWV0cyk6IEV4Y2VycHRzIG9mIGVsZWN0cm9uaWMgRm9ybSA5OTAgYW5kIDk5MC1FWiBmaWxpbmdzLCBjb252ZXJ0ZWQgdG8gc3ByZWFkc2hlZXQgZm9ybSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGlycy05OTAtc3ByZWFkc2hlZXRzIGJ1Y2tldCBhdCBodHRwczovL2lycy05OTAtc3ByZWFkc2hlZXRzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBJUlMgOTkwIEZpbGluZ3MgKFNwcmVhZHNoZWV0cylcbk5hbWUyOiBFeGNlcnB0cyBvZiBlbGVjdHJvbmljIEZvcm0gOTkwIGFuZCA5OTAtRVogZmlsaW5ncywgY29udmVydGVkIHRvIHNwcmVhZHNoZWV0IGZvcm1cbkRlc2NyaXB0aW9uOiBFeGNlcnB0cyBvZiBlbGVjdHJvbmljIEZvcm0gOTkwIGFuZCA5OTAtRVogZmlsaW5ncywgY29udmVydGVkIHRvIHNwcmVhZHNoZWV0IGZvcm0uIEFkZGl0aW9uYWwgZmllbGRzIGJlaW5nIGFkZGVkIHJlZ3VsYXJseS5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9hcHBsaWVkbm9ucHJvZml0cmVzZWFyY2guY29tL2RvY3VtZW50YXRpb24vaXJzLTk5MC1zcHJlYWRzaGVldHNcbkNvbnRhY3Q6IFtpbmZvQGFwcGxpZWRub25wcm9maXRyZXNlYXJjaC5jb21dKGluZm9AYXBwbGllZG5vbnByb2ZpdHJlc2VhcmNoLmNvbSlcbk1hbmFnZWRCeTogW0FwcGxpZWQgTm9ucHJvZml0IFJlc2VhcmNoLCBMTENdKGh0dHBzOi8vd3d3LmFwcGxpZWRub25wcm9maXRyZXNlYXJjaC5jb20vKVxuVXBkYXRlRnJlcXVlbmN5OiBRdWFydGVybHlcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19pcnNfOTkwX3NwcmVhZHNoZWV0cy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzLzk5MC1zcHJlYWRzaGVldHMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfaXJzXzk5MF9zcHJlYWRzaGVldHMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfaXJzXzk5MF9zcHJlYWRzaGVldHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2lyc185OTBfc3ByZWFkc2hlZXRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2xhYjQxb3BlbmF1ZGlvY29ycHVzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbGFiNDFvcGVuYXVkaW9jb3JwdXMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbGFiNDFvcGVuYXVkaW9jb3JwdXMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBsYWI0MW9wZW5hdWRpb2NvcnB1cyBCdWNrZXQ6IFZvaWNlcyBPYnNjdXJlZCBpbiBDb21wbGV4IEVudmlyb25tZW50YWwgU2V0dGluZ3MgKFZPaUNFUyk6IHdhdiBhdWRpbyBmaWxlcywgb3J0aG9ncmFwaGljIHRyYW5zY3JpcHRpb25zLCBhbmQgc3BlYWtlciBJRCIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGxhYjQxb3BlbmF1ZGlvY29ycHVzIGJ1Y2tldCBhdCBodHRwczovL2xhYjQxb3BlbmF1ZGlvY29ycHVzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBWb2ljZXMgT2JzY3VyZWQgaW4gQ29tcGxleCBFbnZpcm9ubWVudGFsIFNldHRpbmdzIChWT2lDRVMpXG5OYW1lMjogd2F2IGF1ZGlvIGZpbGVzLCBvcnRob2dyYXBoaWMgdHJhbnNjcmlwdGlvbnMsIGFuZCBzcGVha2VyIElEXG5EZXNjcmlwdGlvbjogVk9pQ0VTIGlzIGEgc3BlZWNoIGNvcnB1cyByZWNvcmRlZCBpbiBhY291c3RpY2FsbHkgY2hhbGxlbmdpbmcgc2V0dGluZ3MsIHVzaW5nIGRpc3RhbnQgbWljcm9waG9uZSByZWNvcmRpbmcuIFNwZWVjaCB3YXMgcmVjb3JkZWQgaW4gcmVhbCByb29tcyB3aXRoIHZhcmlvdXMgYWNvdXN0aWMgZmVhdHVyZXMgKHJldmVyYiwgZWNobywgSFZBQyBzeXN0ZW1zLCBvdXRzaWRlIG5vaXNlLCBldGMuKS4gQWR2ZXJzYXJpYWwgbm9pc2UsIGVpdGhlciB0ZWxldmlzaW9uLCBtdXNpYywgb3IgYmFiYmxlLCB3YXMgY29uY3VycmVudGx5IHBsYXllZCB3aXRoIGNsZWFuIHNwZWVjaC4gRGF0YSB3YXMgcmVjb3JkZWQgdXNpbmcgbXVsdGlwbGUgbWljcm9waG9uZXMgc3RyYXRlZ2ljYWxseSBwbGFjZWQgdGhyb3VnaG91dCB0aGUgcm9vbS4gVGhlIGNvcnB1cyBpbmNsdWRlcyBhdWRpbyByZWNvcmRpbmdzLCBvcnRob2dyYXBoaWMgdHJhbnNjcmlwdGlvbnMsIGFuZCBzcGVha2VyIGxhYmVscy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly92b2ljZXMxOC5naXRodWIuaW8vXG5Db250YWN0OiBodHRwczovL2dpdGh1Yi5jb20vdm9pY2VzMTgvdXRpbGl0aWVzL2lzc3Vlc1xuVXBkYXRlRnJlcXVlbmN5OiBEYXRhIGZyb20gdHdvIGFkZGl0aW9uYWwgcm9vbXMgd2lsbCBiZSBhZGRlZCB0byB0aGUgY29ycHVzIEZhbGwgMjAxOC5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19sYWI0MW9wZW5hdWRpb2NvcnB1cy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2xhYjQxLXNyaS12b2ljZXMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbGFiNDFvcGVuYXVkaW9jb3JwdXMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfbGFiNDFvcGVuYXVkaW9jb3JwdXMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2xhYjQxb3BlbmF1ZGlvY29ycHVzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2xhbmRzYXRfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbGFuZHNhdF9wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbGFuZHNhdF9wZHMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBsYW5kc2F0LXBkcyBCdWNrZXQ6IExhbmRzYXQgODogU2NlbmVzIGFuZCBtZXRhZGF0YSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGxhbmRzYXQtcGRzIGJ1Y2tldCBhdCBodHRwczovL2xhbmRzYXQtcGRzLnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBMYW5kc2F0IDhcbk5hbWUyOiBTY2VuZXMgYW5kIG1ldGFkYXRhXG5EZXNjcmlwdGlvbjogQW4gb25nb2luZyBjb2xsZWN0aW9uIG9mIHNhdGVsbGl0ZSBpbWFnZXJ5IG9mIGFsbCBsYW5kIG9uIEVhcnRoIHByb2R1Y2VkIGJ5IHRoZSBMYW5kc2F0IDggc2F0ZWxsaXRlLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL2xhbmRzYXQtcGRzL3JlYWRtZS5odG1sXG5Db250YWN0OiBodHRwczovL2xpc3RzLm9zZ2VvLm9yZy9tYWlsbWFuL2xpc3RpbmZvL2xhbmRzYXQtcGRzXG5NYW5hZ2VkQnk6IFtQbGFuZXRdKGh0dHBzOi8vd3d3LnBsYW5ldC5jb20vKVxuVXBkYXRlRnJlcXVlbmN5OiBOZXcgTGFuZHNhdCA4IHNjZW5lcyBhcmUgYWRkZWQgcmVndWxhcmx5IGFzIHNvb24gYXMgdGhleSBhcmUgYXZhaWxhYmxlLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2xhbmRzYXRfcGRzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvbGFuZHNhdC04LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2xhbmRzYXRfcGRzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2xhbmRzYXRfcGRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19sYW5kc2F0X3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19sYW5kc2F0X3Bkc19pbnZlbnRvcnkiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19sYW5kc2F0X3Bkc19pbnZlbnRvcnkuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbGFuZHNhdF9wZHNfaW52ZW50b3J5LyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbGFuZHNhdC1wZHMtaW52ZW50b3J5IEJ1Y2tldDogTGFuZHNhdCA4OiBbUzMgSW52ZW50b3J5XShodHRwczovL2RvY3MuYXdzLmFtYXpvbi5jb20vQW1hem9uUzMvbGF0ZXN0L2Rldi9zdG9yYWdlLWludmVudG9yeS5odG1sI3N0b3JhZ2UtaW52ZW50b3J5LWNvbnRlbnRzKSAoT1JDKSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGxhbmRzYXQtcGRzLWludmVudG9yeSBidWNrZXQgYXQgaHR0cHM6Ly9sYW5kc2F0LXBkcy1pbnZlbnRvcnkuczMudXMtd2VzdC0yLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IExhbmRzYXQgOFxuTmFtZTI6IFtTMyBJbnZlbnRvcnldKGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9BbWF6b25TMy9sYXRlc3QvZGV2L3N0b3JhZ2UtaW52ZW50b3J5Lmh0bWwjc3RvcmFnZS1pbnZlbnRvcnktY29udGVudHMpIChPUkMpXG5EZXNjcmlwdGlvbjogQW4gb25nb2luZyBjb2xsZWN0aW9uIG9mIHNhdGVsbGl0ZSBpbWFnZXJ5IG9mIGFsbCBsYW5kIG9uIEVhcnRoIHByb2R1Y2VkIGJ5IHRoZSBMYW5kc2F0IDggc2F0ZWxsaXRlLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL2xhbmRzYXQtcGRzL3JlYWRtZS5odG1sXG5Db250YWN0OiBodHRwczovL2xpc3RzLm9zZ2VvLm9yZy9tYWlsbWFuL2xpc3RpbmZvL2xhbmRzYXQtcGRzXG5NYW5hZ2VkQnk6IFtQbGFuZXRdKGh0dHBzOi8vd3d3LnBsYW5ldC5jb20vKVxuVXBkYXRlRnJlcXVlbmN5OiBOZXcgTGFuZHNhdCA4IHNjZW5lcyBhcmUgYWRkZWQgcmVndWxhcmx5IGFzIHNvb24gYXMgdGhleSBhcmUgYXZhaWxhYmxlLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2xhbmRzYXRfcGRzX2ludmVudG9yeS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2xhbmRzYXQtOC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19sYW5kc2F0X3Bkc19pbnZlbnRvcnkucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfbGFuZHNhdF9wZHNfaW52ZW50b3J5JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19sYW5kc2F0X3Bkc19pbnZlbnRvcnkiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbG9mYXJfZWxhaXNfbjEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19sb2Zhcl9lbGFpc19uMS5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19sb2Zhcl9lbGFpc19uMS8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGxvZmFyLWVsYWlzLW4xIEJ1Y2tldDogTE9GQVIgRUxBSVMtTjEgY3ljbGUgMiBvYnNlcnZhdGlvbnMgb24gQVdTOiBMT0ZBUiBFTEFJUy1OMSBjeWNsZSAyIG9ic2VydmF0aW9ucyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGxvZmFyLWVsYWlzLW4xIGJ1Y2tldCBhdCBodHRwczovL2xvZmFyLWVsYWlzLW4xLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBMT0ZBUiBFTEFJUy1OMSBjeWNsZSAyIG9ic2VydmF0aW9ucyBvbiBBV1Ncbk5hbWUyOiBMT0ZBUiBFTEFJUy1OMSBjeWNsZSAyIG9ic2VydmF0aW9uc1xuRGVzY3JpcHRpb246IFRoZXNlIGRhdGEgY29ycmVzcG9uZCB0byB0aGUgW0ludGVybmF0aW9uYWwgTE9GQVIgVGVsZXNjb3BlXShodHRwOi8vd3d3LmxvZmFyLm9yZy8pIG9ic2VydmF0aW9ucyBvZiB0aGUgc2t5IGZpZWxkIEVMQUlTLU4xICgxNjoxMDowMSArNTQ6MzA6MzYpIGR1cmluZyB0aGUgY3ljbGUgMiBvZiBvYnNlcnZhdGlvbnMuIFRoZXJlIGFyZSAxMSBydW5zIG9mIGFib3V0IDggaG91cnMgZWFjaCBwbHVzIHRoZSBjb3JyZXNwb25kaW5nIG9ic2VydmF0aW9uIG9mIHRoZSBjYWxpYnJhdGlvbiB0YXJnZXRzIGJlZm9yZSBhbmQgYWZ0ZXIgdGhlIHRhcmdldCBmaWVsZC4gVGhlIGRhdGEgYXJlIG1lYXN1cmVtZW50IHNldHMgKFtNU10oaHR0cHM6Ly9jYXNhLm5yYW8uZWR1L01lbW9zLzIyOS5odG1sKSkgY29udGFpbmluZyB0aGUgY3Jvc3MtY29ycmVsYXRlZCBkYXRhIGFuZCBtZXRhZGF0YSBkaXZpZGVkIGluIDM3MSBmcmVxdWVuY3kgc3ViLWJhbmRzIHBlciB0YXJnZXQgY2VudHJlZCBhdCB+MTUwIE1Iei5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly93d3cubG9mYXJjbG91ZC51ay9kYXRhLmh0bWxcbkNvbnRhY3Q6IGh0dHBzOi8vd3d3LmxvZmFyY2xvdWQudWsvXG5VcGRhdGVGcmVxdWVuY3k6IE5vdCB1cGRhdGVkXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbG9mYXJfZWxhaXNfbjEvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9sb2Zhci1lbGFpcy1uMS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19sb2Zhcl9lbGFpc19uMS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19sb2Zhcl9lbGFpc19uMSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbG9mYXJfZWxhaXNfbjEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbWZfbndwX21vZGVscyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX21mX253cF9tb2RlbHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbWZfbndwX21vZGVscy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG1mLW53cC1tb2RlbHMgQnVja2V0OiBBdG1vc3BoZXJpYyBNb2RlbHMgZnJvbSBNXHUwMGU5dFx1MDBlOW8tRnJhbmNlOiBBdG1vc3BoZXJpYyBNb2RlbHMgZnJvbSBNXHUwMGU5dFx1MDBlOW8tRnJhbmNlIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbWYtbndwLW1vZGVscyBidWNrZXQgYXQgaHR0cHM6Ly9tZi1ud3AtbW9kZWxzLnMzLmV1LXdlc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBBdG1vc3BoZXJpYyBNb2RlbHMgZnJvbSBNXHUwMGU5dFx1MDBlOW8tRnJhbmNlXG5OYW1lMjogQXRtb3NwaGVyaWMgTW9kZWxzIGZyb20gTVx1MDBlOXRcdTAwZTlvLUZyYW5jZVxuRGVzY3JpcHRpb246IEdsb2JhbCBhbmQgaGlnaC1yZXNvbHV0aW9uIHJlZ2lvbmFsIGF0bW9zcGhlcmljIG1vZGVscyBmcm9tIE1cdTAwZTl0XHUwMGU5by1GcmFuY2UuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vbWYtbW9kZWxzLW9uLWF3cy5vcmdcbkNvbnRhY3Q6IGNvbnRhY3RAb3Blbm1ldGVvZGF0YS5jb21cbk1hbmFnZWRCeTogW09wZW5NZXRlb0RhdGFdKGh0dHBzOi8vb3Blbm1ldGVvZGF0YS5jb20pXG5VcGRhdGVGcmVxdWVuY3k6IEV2ZXJ5IDYgaG91cnNcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19tZl9ud3BfbW9kZWxzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvbWV0ZW8tZnJhbmNlLW1vZGVscy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19tZl9ud3BfbW9kZWxzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX21mX253cF9tb2RlbHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX21mX253cF9tb2RlbHMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbW9kaXNfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbW9kaXNfcGRzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX21vZGlzX3Bkcy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG1vZGlzLXBkcyBCdWNrZXQ6IE1PRElTIG9uIEFXUzogSW1hZ2VyeSBhbmQgbWV0YWRhdGEiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBtb2Rpcy1wZHMgYnVja2V0IGF0IGh0dHBzOi8vbW9kaXMtcGRzLnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBNT0RJUyBvbiBBV1Ncbk5hbWUyOiBJbWFnZXJ5IGFuZCBtZXRhZGF0YVxuRGVzY3JpcHRpb246IFNlbGVjdCBwcm9kdWN0cyBmcm9tIHRoZSBNb2RlcmF0ZSBSZXNvbHV0aW9uIEltYWdpbmcgU3BlY3Ryb3JhZGlvbWV0ZXIgKE1PRElTKSBtYW5hZ2VkIGJ5IHRoZSBVLlMuIEdlb2xvZ2ljYWwgU3VydmV5IGFuZCBOQVNBLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL21vZGlzLXBkcy9yZWFkbWUuaHRtbFxuQ29udGFjdDogaHR0cHM6Ly9naXRodWIuY29tL0FzdHJvRGlnaXRhbC9tb2Rpcy1pbmdlc3Rvci9pc3N1ZXNcblVwZGF0ZUZyZXF1ZW5jeTogTmV3IE1PRElTIGRhdGEgaXMgYWRkZWQgcmVndWxhcmx5IGFzIHNvb24gYXMgdGhleSBhcmUgYXZhaWxhYmxlLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX21vZGlzX3Bkcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL21vZGlzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX21vZGlzX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19tb2Rpc19wZHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX21vZGlzX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19tdWx0aW1lZGlhX2NvbW1vbnMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19tdWx0aW1lZGlhX2NvbW1vbnMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbXVsdGltZWRpYV9jb21tb25zLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbXVsdGltZWRpYS1jb21tb25zIEJ1Y2tldDogTXVsdGltZWRpYSBDb21tb25zOiBUaGlzIGRpcmVjdG9yeSBoYXMgOTksMTcxLDY4OCBpbWFnZSBmaWxlcyBhbmQgNzg3LDQ3OSB2aWRlbyBmaWxlcy4gVGhlIHZpZGVvcyBhZGQgdXAgdG8gYXJvdW5kIDgsMDgxIGhvdXJzLCB3aXRoIGFuIGF2ZXJhZ2UgdmlkZW8gbGVuZ3RoIG9mIDM3cyBhbmQgYSBtZWRpYW4gbGVuZ3RoIG9mIDI4cy4iLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBtdWx0aW1lZGlhLWNvbW1vbnMgYnVja2V0IGF0IGh0dHBzOi8vbXVsdGltZWRpYS1jb21tb25zLnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBNdWx0aW1lZGlhIENvbW1vbnNcbk5hbWUyOiBUaGlzIGRpcmVjdG9yeSBoYXMgOTksMTcxLDY4OCBpbWFnZSBmaWxlcyBhbmQgNzg3LDQ3OSB2aWRlbyBmaWxlcy4gVGhlIHZpZGVvcyBhZGQgdXAgdG8gYXJvdW5kIDgsMDgxIGhvdXJzLCB3aXRoIGFuIGF2ZXJhZ2UgdmlkZW8gbGVuZ3RoIG9mIDM3cyBhbmQgYSBtZWRpYW4gbGVuZ3RoIG9mIDI4cy5cbkRlc2NyaXB0aW9uOiBUaGUgTXVsdGltZWRpYSBDb21tb25zIGlzIGEgY29sbGVjdGlvbiBvZiBhdWRpbyBhbmQgdmlzdWFsIGZlYXR1cmVzIGNvbXB1dGVkIGZvciB0aGUgbmVhcmx5IDEwMCBtaWxsaW9uIENyZWF0aXZlIENvbW1vbnMtbGljZW5zZWQgRmxpY2tyIGltYWdlcyBhbmQgdmlkZW9zIGluIHRoZSBZRkNDMTAwTSBkYXRhc2V0IGZyb20gWWFob28hIExhYnMsIGFsb25nIHdpdGggZ3JvdW5kLXRydXRoIGFubm90YXRpb25zIGZvciBzZWxlY3RlZCBzdWJzZXRzLiBUaGUgSW50ZXJuYXRpb25hbCBDb21wdXRlciBTY2llbmNlIEluc3RpdHV0ZSAoSUNTSSkgYW5kIExhd3JlbmNlIExpdmVybW9yZSBOYXRpb25hbCBMYWJvcmF0b3J5IGFyZSBwcm9kdWNpbmcgYW5kIGRpc3RyaWJ1dGluZyBhIGNvcmUgc2V0IG9mIGRlcml2ZWQgZmVhdHVyZSBzZXRzIGFuZCBhbm5vdGF0aW9ucyBhcyBwYXJ0IG9mIGFuIGVmZm9ydCB0byBlbmFibGUgbGFyZ2Utc2NhbGUgdmlkZW8gc2VhcmNoIGNhcGFiaWxpdGllcy4gVGhleSBoYXZlIHJlbGVhc2VkIHRoaXMgZmVhdHVyZSBjb3JwdXMgaW50byB0aGUgcHVibGljIGRvbWFpbiwgdW5kZXIgQ3JlYXRpdmUgQ29tbW9ucyBMaWNlbnNlIDAsIHNvIGl0IGlzIGZyZWUgZm9yIGFueW9uZSB0byB1c2UgZm9yIGFueSBwdXJwb3NlLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL211bHRpbWVkaWFjb21tb25zLndvcmRwcmVzcy5jb20veWZjYzEwMG0tY29yZS1kYXRhc2V0L1xuQ29udGFjdDogbXVsdGltZWRpYS1jb21tb25zQGljc2kuYmVya2VsZXkuZWR1XG5VcGRhdGVGcmVxdWVuY3k6IE5vdCB1cGRhdGVkLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX211bHRpbWVkaWFfY29tbW9ucy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL211bHRpbWVkaWEtY29tbW9ucy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19tdWx0aW1lZGlhX2NvbW1vbnMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfbXVsdGltZWRpYV9jb21tb25zJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19tdWx0aW1lZGlhX2NvbW1vbnMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbXdhcHVibGljIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbXdhcHVibGljLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX213YXB1YmxpYy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG13YXB1YmxpYyBCdWNrZXQ6IEVwb2NoIG9mIFJlaW9uaXphdGlvbiBEYXRhc2V0OiBTZWxlY3RlZCBNV0EgRW9SIGRhdGEgKHV2Zml0cyBmb3JtYXQpIGZyb20gMjAxMy0yMDE1IiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbXdhcHVibGljIGJ1Y2tldCBhdCBodHRwczovL213YXB1YmxpYy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogRXBvY2ggb2YgUmVpb25pemF0aW9uIERhdGFzZXRcbk5hbWUyOiBTZWxlY3RlZCBNV0EgRW9SIGRhdGEgKHV2Zml0cyBmb3JtYXQpIGZyb20gMjAxMy0yMDE1XG5EZXNjcmlwdGlvbjogVGhlIGRhdGEgYXJlIGZyb20gb2JzZXJ2YXRpb25zIHdpdGggdGhlIE11cmNoaXNvbiBXaWRlZmllbGQgQXJyYXkgKE1XQSkgd2hpY2ggaXMgYSBTcXVhcmUgS2lsb21ldGVyIEFycmF5IChTS0EpIHByZWN1cnNvciBpbiBXZXN0ZXJuIEF1c3RyYWxpYS4gIFRoaXMgcGFydGljdWxhciBkYXRhc2V0IGlzIGZyb20gdGhlIEVwb2NoIG9mIFJlaW9uaXphdGlvbiBwcm9qZWN0IHdoaWNoIGlzIGEga2V5IHNjaWVuY2UgZHJpdmVyIG9mIHRoZSBTS0EuIE5lYXJseSAyUEIgb2Ygc3VjaCBvYnNlcnZhdGlvbnMgaGF2ZSBiZWVuIHJlY29yZGVkIHRvIGRhdGUsIHRoaXMgaXMgYSBzbWFsbCBzdWJzZXQgb2YgdGhhdCB3aGljaCBoYXMgYmVlbiBleHBvcnRlZCBmcm9tIHRoZSBNV0EgZGF0YSBhcmNoaXZlIGluIFBlcnRoIGFuZCBtYWRlIGF2YWlsYWJsZSB0byB0aGUgcHVibGljIG9uIEFXUy4gIFRoZSBkYXRhIHdlcmUgdGFrZW4gdG8gZGV0ZWN0IHNpZ25hdHVyZXMgb2YgdGhlIGZpcnN0IHN0YXJzIGFuZCBnYWxheGllcyBmb3JtaW5nIGFuZCB0aGUgZWZmZWN0IG9mIHRoZXNlIGVhcmx5IHN0YXJzIGFuZCBnYWxheGllcyBvbiB0aGUgZXZvbHV0aW9uIG9mIHRoZSB1bml2ZXJzZS5cblxuRG9jdW1lbnRhdGlvbjogaHR0cDovL2RhbmllbGNqYWNvYnMuY29tL3Jlc2VhcmNoL2Vwb2NoLW9mLXJlaW9uaXphdGlvbi1hd3MtcHVibGljLWRhdGFzZXQvXG5Db250YWN0OiBicnluYWggKGF0KSBwaHlzLndhc2hpbmd0b24uZWR1XG5NYW5hZ2VkQnk6IFVuaXZlcnNpdHkgb2Ygd2FzaGluZ3RvbiBSYWRpbyBDb3Ntb2xvZ3kgR3JvdXBcblVwZGF0ZUZyZXF1ZW5jeTogSXJyZWd1bGFybHlcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19td2FwdWJsaWMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9lcG9jaC1vZi1yZWlvbml6YXRpb24vIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbXdhcHVibGljLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX213YXB1YmxpYyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbXdhcHVibGljIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25hbm9wb3JlX2h1bWFuX3dncyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25hbm9wb3JlX2h1bWFuX3dncy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19uYW5vcG9yZV9odW1hbl93Z3MvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBuYW5vcG9yZS1odW1hbi13Z3MgQnVja2V0OiBOYW5vcG9yZSBSZWZlcmVuY2UgSHVtYW4gR2Vub21lOiBOYW5vcG9yZSBSZWZlcmVuY2UgSHVtYW4gR2Vub21lIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbmFub3BvcmUtaHVtYW4td2dzIGJ1Y2tldCBhdCBodHRwczovL25hbm9wb3JlLWh1bWFuLXdncy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogTmFub3BvcmUgUmVmZXJlbmNlIEh1bWFuIEdlbm9tZVxuTmFtZTI6IE5hbm9wb3JlIFJlZmVyZW5jZSBIdW1hbiBHZW5vbWVcbkRlc2NyaXB0aW9uOiBUaGlzIGRhdGFzZXQgaW5jbHVkZXMgdGhlIHNlcXVlbmNpbmcgYW5kIGFzc2VtYmx5IG9mIGEgcmVmZXJlbmNlIHN0YW5kYXJkIGh1bWFuIGdlbm9tZSAoR00xMjg3OCkgdXNpbmcgdGhlIE1pbklPTiBuYW5vcG9yZSBzZXF1ZW5jaW5nIGluc3RydW1lbnQgd2l0aCB0aGUgUjkuNCAxRCBjaGVtaXN0cnkuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZ2l0aHViLmNvbS9uYW5vcG9yZS13Z3MtY29uc29ydGl1bS9OQTEyODc4XG5Db250YWN0OiBodHRwczovL2dpdGh1Yi5jb20vbmFub3BvcmUtd2dzLWNvbnNvcnRpdW0vTkExMjg3OC9pc3N1ZXNcblVwZGF0ZUZyZXF1ZW5jeTogRGF0YSB3aWxsIGJlIGFkZGVkIGFzIG1ldGhvZG9sb2d5IGltcHJvdmVzIG9yIG5ldyBkYXRhIHVzZXMgYXJlIGVuY291bnRlcmVkLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25hbm9wb3JlX2h1bWFuX3dncy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25hbm9wb3JlLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25hbm9wb3JlX2h1bWFuX3dncy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19uYW5vcG9yZV9odW1hbl93Z3Mmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25hbm9wb3JlX2h1bWFuX3dncyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19uYXNhbmV4X0xhbmRzYXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19uYXNhbmV4X0xhbmRzYXQuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbmFzYW5leF9MYW5kc2F0LyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbmFzYW5leCBCdWNrZXQgd2l0aCBwcmVmaXg9TGFuZHNhdC86IE5BU0EgTkVYOiBMYW5kc2F0IEdMUyAoR2xvYmFsIExhbmQgU3VydmV5KSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5hc2FuZXggYnVja2V0IGF0IGh0dHBzOi8vbmFzYW5leC5zMy51cy13ZXN0LTIuYW1hem9uYXdzLmNvbS8gd2l0aCBwcmVmaXg9TGFuZHNhdC8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogTkFTQSBORVhcbk5hbWUyOiBMYW5kc2F0IEdMUyAoR2xvYmFsIExhbmQgU3VydmV5KVxuRGVzY3JpcHRpb246IEEgY29sbGVjdGlvbiBvZiBFYXJ0aCBzY2llbmNlIGRhdGFzZXRzIG1haW50YWluZWQgYnkgTkFTQSwgaW5jbHVkaW5nIGNsaW1hdGUgY2hhbmdlIHByb2plY3Rpb25zIGFuZCBzYXRlbGxpdGUgaW1hZ2VzIG9mIHRoZSBFYXJ0aCdzIHN1cmZhY2UuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZG9jcy5vcGVuZGF0YS5hd3MvbmFzYS1uZXgvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IGh0dHBzOi8vbmV4Lm5hc2EuZ292L25leC9jb250YWN0dXMvXG5VcGRhdGVGcmVxdWVuY3k6IEluZnJlcXVlbnRseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25hc2FuZXhfTGFuZHNhdC9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25hc2FuZXgvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbmFzYW5leF9MYW5kc2F0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX25hc2FuZXhfTGFuZHNhdCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbmFzYW5leF9MYW5kc2F0Il0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25hc2FuZXhfTE9DQSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25hc2FuZXhfTE9DQS5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19uYXNhbmV4X0xPQ0EvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBuYXNhbmV4IEJ1Y2tldCB3aXRoIHByZWZpeD1MT0NBLzogTkFTQSBORVg6IExvY2FsaXplZCBDb25zdHJ1Y3RlZCBBbmFsb2dzIChMT0NBKSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5hc2FuZXggYnVja2V0IGF0IGh0dHBzOi8vbmFzYW5leC5zMy51cy13ZXN0LTIuYW1hem9uYXdzLmNvbS8gd2l0aCBwcmVmaXg9TE9DQS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogTkFTQSBORVhcbk5hbWUyOiBMb2NhbGl6ZWQgQ29uc3RydWN0ZWQgQW5hbG9ncyAoTE9DQSlcbkRlc2NyaXB0aW9uOiBBIGNvbGxlY3Rpb24gb2YgRWFydGggc2NpZW5jZSBkYXRhc2V0cyBtYWludGFpbmVkIGJ5IE5BU0EsIGluY2x1ZGluZyBjbGltYXRlIGNoYW5nZSBwcm9qZWN0aW9ucyBhbmQgc2F0ZWxsaXRlIGltYWdlcyBvZiB0aGUgRWFydGgncyBzdXJmYWNlLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL25hc2EtbmV4L3JlYWRtZS5odG1sXG5Db250YWN0OiBodHRwczovL25leC5uYXNhLmdvdi9uZXgvY29udGFjdHVzL1xuVXBkYXRlRnJlcXVlbmN5OiBJbmZyZXF1ZW50bHlcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19uYXNhbmV4X0xPQ0EvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9uYXNhbmV4LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25hc2FuZXhfTE9DQS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19uYXNhbmV4X0xPQ0Emc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25hc2FuZXhfTE9DQSJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19uYXNhbmV4X01PRElTIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbmFzYW5leF9NT0RJUy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19uYXNhbmV4X01PRElTLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbmFzYW5leCBCdWNrZXQgd2l0aCBwcmVmaXg9TU9ESVMvOiBOQVNBIE5FWDogTU9EMTNRMSAoVmVnZXRhdGlvbiBJbmRpY2VzIDE2LURheSBMMyBHbG9iYWwgMjUwbSkiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBuYXNhbmV4IGJ1Y2tldCBhdCBodHRwczovL25hc2FuZXguczMudXMtd2VzdC0yLmFtYXpvbmF3cy5jb20vIHdpdGggcHJlZml4PU1PRElTLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBOQVNBIE5FWFxuTmFtZTI6IE1PRDEzUTEgKFZlZ2V0YXRpb24gSW5kaWNlcyAxNi1EYXkgTDMgR2xvYmFsIDI1MG0pXG5EZXNjcmlwdGlvbjogQSBjb2xsZWN0aW9uIG9mIEVhcnRoIHNjaWVuY2UgZGF0YXNldHMgbWFpbnRhaW5lZCBieSBOQVNBLCBpbmNsdWRpbmcgY2xpbWF0ZSBjaGFuZ2UgcHJvamVjdGlvbnMgYW5kIHNhdGVsbGl0ZSBpbWFnZXMgb2YgdGhlIEVhcnRoJ3Mgc3VyZmFjZS5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLm9wZW5kYXRhLmF3cy9uYXNhLW5leC9yZWFkbWUuaHRtbFxuQ29udGFjdDogaHR0cHM6Ly9uZXgubmFzYS5nb3YvbmV4L2NvbnRhY3R1cy9cblVwZGF0ZUZyZXF1ZW5jeTogSW5mcmVxdWVudGx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbmFzYW5leF9NT0RJUy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25hc2FuZXgvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbmFzYW5leF9NT0RJUy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19uYXNhbmV4X01PRElTJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19uYXNhbmV4X01PRElTIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25hc2FuZXhfTkVYX0RDUDMwIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbmFzYW5leF9ORVhfRENQMzAuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbmFzYW5leF9ORVhfRENQMzAvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBuYXNhbmV4IEJ1Y2tldCB3aXRoIHByZWZpeD1ORVgtRENQMzAvOiBOQVNBIE5FWDogRG93bnNjYWxlZCBDbGltYXRlIFByb2plY3Rpb25zIChORVgtRENQMzApIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbmFzYW5leCBidWNrZXQgYXQgaHR0cHM6Ly9uYXNhbmV4LnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyB3aXRoIHByZWZpeD1ORVgtRENQMzAvIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5BU0EgTkVYXG5OYW1lMjogRG93bnNjYWxlZCBDbGltYXRlIFByb2plY3Rpb25zIChORVgtRENQMzApXG5EZXNjcmlwdGlvbjogQSBjb2xsZWN0aW9uIG9mIEVhcnRoIHNjaWVuY2UgZGF0YXNldHMgbWFpbnRhaW5lZCBieSBOQVNBLCBpbmNsdWRpbmcgY2xpbWF0ZSBjaGFuZ2UgcHJvamVjdGlvbnMgYW5kIHNhdGVsbGl0ZSBpbWFnZXMgb2YgdGhlIEVhcnRoJ3Mgc3VyZmFjZS5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLm9wZW5kYXRhLmF3cy9uYXNhLW5leC9yZWFkbWUuaHRtbFxuQ29udGFjdDogaHR0cHM6Ly9uZXgubmFzYS5nb3YvbmV4L2NvbnRhY3R1cy9cblVwZGF0ZUZyZXF1ZW5jeTogSW5mcmVxdWVudGx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbmFzYW5leF9ORVhfRENQMzAvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9uYXNhbmV4LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25hc2FuZXhfTkVYX0RDUDMwLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX25hc2FuZXhfTkVYX0RDUDMwJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19uYXNhbmV4X05FWF9EQ1AzMCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19uYXNhbmV4X05FWF9HRERQIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbmFzYW5leF9ORVhfR0REUC5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19uYXNhbmV4X05FWF9HRERQLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbmFzYW5leCBCdWNrZXQgd2l0aCBwcmVmaXg9TkVYLUdERFAvOiBOQVNBIE5FWDogR2xvYmFsIERhaWx5IERvd25zY2FsZWQgUHJvamVjdGlvbnMgKE5FWC1HRERQKSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5hc2FuZXggYnVja2V0IGF0IGh0dHBzOi8vbmFzYW5leC5zMy51cy13ZXN0LTIuYW1hem9uYXdzLmNvbS8gd2l0aCBwcmVmaXg9TkVYLUdERFAvIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5BU0EgTkVYXG5OYW1lMjogR2xvYmFsIERhaWx5IERvd25zY2FsZWQgUHJvamVjdGlvbnMgKE5FWC1HRERQKVxuRGVzY3JpcHRpb246IEEgY29sbGVjdGlvbiBvZiBFYXJ0aCBzY2llbmNlIGRhdGFzZXRzIG1haW50YWluZWQgYnkgTkFTQSwgaW5jbHVkaW5nIGNsaW1hdGUgY2hhbmdlIHByb2plY3Rpb25zIGFuZCBzYXRlbGxpdGUgaW1hZ2VzIG9mIHRoZSBFYXJ0aCdzIHN1cmZhY2UuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZG9jcy5vcGVuZGF0YS5hd3MvbmFzYS1uZXgvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IGh0dHBzOi8vbmV4Lm5hc2EuZ292L25leC9jb250YWN0dXMvXG5VcGRhdGVGcmVxdWVuY3k6IEluZnJlcXVlbnRseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25hc2FuZXhfTkVYX0dERFAvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9uYXNhbmV4LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25hc2FuZXhfTkVYX0dERFAucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfbmFzYW5leF9ORVhfR0REUCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbmFzYW5leF9ORVhfR0REUCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2dlZnNfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbm9hYV9nZWZzX3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ub2FhX2dlZnNfcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbm9hYS1nZWZzLXBkcyBCdWNrZXQ6IE5PQUEgR2xvYmFsIEVuc2VtYmxlIEZvcmVjYXN0IFN5c3RlbSAoR0VGUyk6IFByb2plY3QgZGF0YSBmaWxlcyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5vYWEtZ2Vmcy1wZHMgYnVja2V0IGF0IGh0dHBzOi8vbm9hYS1nZWZzLXBkcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogTk9BQSBHbG9iYWwgRW5zZW1ibGUgRm9yZWNhc3QgU3lzdGVtIChHRUZTKVxuTmFtZTI6IFByb2plY3QgZGF0YSBmaWxlc1xuRGVzY3JpcHRpb246IFRoZSBHbG9iYWwgRW5zZW1ibGUgRm9yZWNhc3QgU3lzdGVtIChHRUZTKSwgcHJldmlvdXNseSBrbm93biBhcyB0aGUgR0ZTIEdsb2JhbCBFTlNlbWJsZSAoR0VOUyksIGlzIGEgd2VhdGhlciBmb3JlY2FzdCBtb2RlbCBtYWRlIHVwIG9mIDIxIHNlcGFyYXRlIGZvcmVjYXN0cywgb3IgZW5zZW1ibGUgbWVtYmVycy4gIFRoZSBOYXRpb25hbCBDZW50ZXJzIGZvciBFbnZpcm9ubWVudGFsIFByZWRpY3Rpb24gKE5DRVApIHN0YXJ0ZWQgdGhlIEdFRlMgdG8gYWRkcmVzcyB0aGUgbmF0dXJlIG9mIHVuY2VydGFpbnR5IGluIHdlYXRoZXIgb2JzZXJ2YXRpb25zLCB3aGljaCBpcyB1c2VkIHRvIGluaXRpYWxpemUgd2VhdGhlciBmb3JlY2FzdCBtb2RlbHMuIFRoZSBHRUZTIGF0dGVtcHRzIHRvIHF1YW50aWZ5IHRoZSBhbW91bnQgb2YgdW5jZXJ0YWludHkgaW4gYSBmb3JlY2FzdCBieSBnZW5lcmF0aW5nIGFuIGVuc2VtYmxlIG9mIG11bHRpcGxlIGZvcmVjYXN0cywgZWFjaCBtaW51dGVseSBkaWZmZXJlbnQsIG9yIHBlcnR1cmJlZCwgZnJvbSB0aGUgb3JpZ2luYWwgb2JzZXJ2YXRpb25zLiBXaXRoIGdsb2JhbCBjb3ZlcmFnZSwgR0VGUyBpcyBwcm9kdWNlZCBmb3VyIHRpbWVzIGEgZGF5IHdpdGggd2VhdGhlciBmb3JlY2FzdHMgZ29pbmcgb3V0IHRvIDE2IGRheXMuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZG9jcy5vcGVuZGF0YS5hd3Mvbm9hYS1nZWZzLXBkcy9yZWFkbWUuaHRtbFxuQ29udGFjdDogRm9yIHF1ZXN0aW9ucyByZWdhcmRpbmcgZGF0YSBjb250ZW50IG9yIHF1YWxpdHksIHZpc2l0IFt0aGUgTk9BQSBHRUZTIHNpdGVdKGh0dHA6Ly93d3cuZW1jLm5jZXAubm9hYS5nb3YvaW5kZXgucGhwP2JyYW5jaD1HRUZTKS4gRm9yIGFueSBxdWVzdGlvbnMgcmVnYXJkaW5nIGRhdGEgZGVsaXZlcnkgbm90IGFzc29jaWF0ZWQgd2l0aCB0aGlzIHBsYXRmb3JtIG9yIGFueSBnZW5lcmFsIHF1ZXN0aW9ucyByZWdhcmRpbmcgdGhlIE5PQUEgQmlnIERhdGEgUHJvamVjdCwgZW1haWwgbm9hYS5iZHBAbm9hYS5nb3Zcbk1hbmFnZWRCeTogW05PQUFdKGh0dHBzOi8vd3d3Lm5vYWEuZ292LylcblVwZGF0ZUZyZXF1ZW5jeTogNCB0aW1lcyBhIGRheSwgZXZlcnkgNiBob3VycyBzdGFydGluZyBhdCBtaWRuaWdodC5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19ub2FhX2dlZnNfcGRzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvbm9hYS1nZWZzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25vYWFfZ2Vmc19wZHMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfbm9hYV9nZWZzX3BkcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbm9hYV9nZWZzX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2dmc19iZHBfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbm9hYV9nZnNfYmRwX3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ub2FhX2dmc19iZHBfcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbm9hYS1nZnMtYmRwLXBkcyBCdWNrZXQ6IE5PQUEgR2xvYmFsIEZvcmVjYXN0IFN5c3RlbSAoR0ZTKTogQSByb2xsaW5nIGZvdXItd2VlayBhcmNoaXZlIG9mIDAuMjUgR0ZTIGRhdGEiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBub2FhLWdmcy1iZHAtcGRzIGJ1Y2tldCBhdCBodHRwczovL25vYWEtZ2ZzLWJkcC1wZHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5PQUEgR2xvYmFsIEZvcmVjYXN0IFN5c3RlbSAoR0ZTKVxuTmFtZTI6IEEgcm9sbGluZyBmb3VyLXdlZWsgYXJjaGl2ZSBvZiAwLjI1IEdGUyBkYXRhXG5EZXNjcmlwdGlvbjogVGhlIEdsb2JhbCBGb3JlY2FzdCBTeXN0ZW0gKEdGUykgaXMgYSB3ZWF0aGVyIGZvcmVjYXN0IG1vZGVsIHByb2R1Y2VkIGJ5IHRoZSBOYXRpb25hbCBDZW50ZXJzIGZvciBFbnZpcm9ubWVudGFsIFByZWRpY3Rpb24gKE5DRVApLiBEb3plbnMgb2YgYXRtb3NwaGVyaWMgYW5kIGxhbmQtc29pbCB2YXJpYWJsZXMgYXJlIGF2YWlsYWJsZSB0aHJvdWdoIHRoaXMgZGF0YXNldCwgZnJvbSB0ZW1wZXJhdHVyZXMsIHdpbmRzLCBhbmQgcHJlY2lwaXRhdGlvbiB0byBzb2lsIG1vaXN0dXJlIGFuZCBhdG1vc3BoZXJpYyBvem9uZSBjb25jZW50cmF0aW9uLiBUaGUgZW50aXJlIGdsb2JlIGlzIGNvdmVyZWQgYnkgdGhlIEdGUyBhdCBhIGJhc2UgaG9yaXpvbnRhbCByZXNvbHV0aW9uIG9mIDE4IG1pbGVzICgyOCBraWxvbWV0ZXJzKSBiZXR3ZWVuIGdyaWQgcG9pbnRzLCB3aGljaCBpcyB1c2VkIGJ5IHRoZSBvcGVyYXRpb25hbCBmb3JlY2FzdGVycyB3aG8gcHJlZGljdCB3ZWF0aGVyIG91dCB0byAxNiBkYXlzIGluIHRoZSBmdXR1cmUuIEhvcml6b250YWwgcmVzb2x1dGlvbiBkcm9wcyB0byA0NCBtaWxlcyAoNzAga2lsb21ldGVycykgYmV0d2VlbiBncmlkIHBvaW50IGZvciBmb3JlY2FzdHMgYmV0d2VlbiBvbmUgd2VlayBhbmQgdHdvIHdlZWtzLiAqKkJvdGggdGhlIGN1cnJlbnQgdmVyc2lvbiBhbmQgdGhlIEZWMy1iYXNlZCBwYXJhbGxlbCB2ZXJzaW9uIG9mIHRoZSBHRlMgYmVpbmcgdGVzdGVkIHRvIGJlY29tZSB0aGUgbmV3IG9wZXJhdGlvbmFsIG1vZGVsIGF0IGEgZnV0dXJlIGRhdGUgYXJlIGF2YWlsYWJsZS4qKlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL3d3dy5uY2RjLm5vYWEuZ292L2RhdGEtYWNjZXNzL21vZGVsLWRhdGEvbW9kZWwtZGF0YXNldHMvZ2xvYmFsLWZvcmNhc3Qtc3lzdGVtLWdmc1xuQ29udGFjdDogRm9yIHF1ZXN0aW9ucyByZWdhcmRpbmcgZGF0YSBjb250ZW50IG9yIHF1YWxpdHksIHZpc2l0IFt0aGUgTk9BQSBHRlMgc2l0ZV0oaHR0cDovL3d3dy5lbWMubmNlcC5ub2FhLmdvdi9pbmRleC5waHA/YnJhbmNoPUdGUykuIEZvciBhbnkgcXVlc3Rpb25zIHJlZ2FyZGluZyBkYXRhIGRlbGl2ZXJ5IG5vdCBhc3NvY2lhdGVkIHdpdGggdGhpcyBwbGF0Zm9ybSBvciBhbnkgZ2VuZXJhbCBxdWVzdGlvbnMgcmVnYXJkaW5nIHRoZSBOT0FBIEJpZyBEYXRhIFByb2plY3QsIGVtYWlsIG5vYWEuYmRwQG5vYWEuZ292LlxuTWFuYWdlZEJ5OiBbTk9BQV0oaHR0cHM6Ly93d3cubm9hYS5nb3YvKVxuVXBkYXRlRnJlcXVlbmN5OiA0IHRpbWVzIGEgZGF5LCBldmVyeSA2IGhvdXJzIHN0YXJ0aW5nIGF0IG1pZG5pZ2h0XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbm9hYV9nZnNfYmRwX3Bkcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25vYWEtZ2ZzLWJkcC1wZHMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbm9hYV9nZnNfYmRwX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ub2FhX2dmc19iZHBfcGRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19ub2FhX2dmc19iZHBfcGRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25vYWFfZ2ZzX3BkcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25vYWFfZ2ZzX3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ub2FhX2dmc19wZHMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBub2FhLWdmcy1wZHMgQnVja2V0OiBVbmlkYXRhIE5PQUEgR2xvYmFsIEZvcmVjYXN0IFN5c3RlbSAoR0ZTKSBNb2RlbDogQSByb2xsaW5nIGZvdXItd2VlayBhcmNoaXZlIG9mIDAuMjUgZGVncmVlIEdGUyBkYXRhIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbm9hYS1nZnMtcGRzIGJ1Y2tldCBhdCBodHRwczovL25vYWEtZ2ZzLXBkcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogVW5pZGF0YSBOT0FBIEdsb2JhbCBGb3JlY2FzdCBTeXN0ZW0gKEdGUykgTW9kZWxcbk5hbWUyOiBBIHJvbGxpbmcgZm91ci13ZWVrIGFyY2hpdmUgb2YgMC4yNSBkZWdyZWUgR0ZTIGRhdGFcbkRlc2NyaXB0aW9uOiBUaGUgR2xvYmFsIEZvcmVjYXN0IFN5c3RlbSAoR0ZTKSBpcyBhIHdlYXRoZXIgZm9yZWNhc3QgbW9kZWwgcHJvZHVjZWQgYnkgdGhlIE5hdGlvbmFsIENlbnRlcnMgZm9yIEVudmlyb25tZW50YWwgUHJlZGljdGlvbiAoTkNFUCkuIERvemVucyBvZiBhdG1vc3BoZXJpYyBhbmQgbGFuZC1zb2lsIHZhcmlhYmxlcyBhcmUgYXZhaWxhYmxlIHRocm91Z2ggdGhpcyBkYXRhc2V0LCBmcm9tIHRlbXBlcmF0dXJlcywgd2luZHMsIGFuZCBwcmVjaXBpdGF0aW9uIHRvIHNvaWwgbW9pc3R1cmUgYW5kIGF0bW9zcGhlcmljIG96b25lIGNvbmNlbnRyYXRpb24uIFRoZSBlbnRpcmUgZ2xvYmUgaXMgY292ZXJlZCBieSB0aGUgR0ZTIGF0IGEgYmFzZSBob3Jpem9udGFsIHJlc29sdXRpb24gb2YgMTggbWlsZXMgKDI4IGtpbG9tZXRlcnMpIGJldHdlZW4gZ3JpZCBwb2ludHMsIHdoaWNoIGlzIHVzZWQgYnkgdGhlIG9wZXJhdGlvbmFsIGZvcmVjYXN0ZXJzIHdobyBwcmVkaWN0IHdlYXRoZXIgb3V0IHRvIDE2IGRheXMgaW4gdGhlIGZ1dHVyZS4gSG9yaXpvbnRhbCByZXNvbHV0aW9uIGRyb3BzIHRvIDQ0IG1pbGVzICg3MCBraWxvbWV0ZXJzKSBiZXR3ZWVuIGdyaWQgcG9pbnQgZm9yIGZvcmVjYXN0cyBiZXR3ZWVuIG9uZSB3ZWVrIGFuZCB0d28gd2Vla3MuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZG9jcy5vcGVuZGF0YS5hd3Mvbm9hYS1nZnMtcGRzL3JlYWRtZS5odG1sXG5Db250YWN0OiBodHRwczovL3d3dy5uY2RjLm5vYWEuZ292L2NvbnRhY3Rcbk1hbmFnZWRCeTogW1VuaWRhdGFdKGh0dHBzOi8vd3d3LnVuaWRhdGEudWNhci5lZHUvKVxuVXBkYXRlRnJlcXVlbmN5OiBFdmVyeSA2IGhvdXJzXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbm9hYV9nZnNfcGRzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvbm9hYS1nZnMtcGRzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25vYWFfZ2ZzX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ub2FhX2dmc19wZHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25vYWFfZ2ZzX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2dmc3BhcmFfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbm9hYV9nZnNwYXJhX3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ub2FhX2dmc3BhcmFfcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbm9hYS1nZnNwYXJhLXBkcyBCdWNrZXQ6IE5PQUEgR2xvYmFsIEZvcmVjYXN0IFN5c3RlbSAoR0ZTKTogQSByb2xsaW5nIGZvdXItd2VlayBhcmNoaXZlIG9mIDAuMjUgRlYzLWJhc2VkIHBhcmFsbGVsIHZlcnNpb24gb2YgdGhlIEdGUyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5vYWEtZ2ZzcGFyYS1wZHMgYnVja2V0IGF0IGh0dHBzOi8vbm9hYS1nZnNwYXJhLXBkcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogTk9BQSBHbG9iYWwgRm9yZWNhc3QgU3lzdGVtIChHRlMpXG5OYW1lMjogQSByb2xsaW5nIGZvdXItd2VlayBhcmNoaXZlIG9mIDAuMjUgRlYzLWJhc2VkIHBhcmFsbGVsIHZlcnNpb24gb2YgdGhlIEdGU1xuRGVzY3JpcHRpb246IFRoZSBHbG9iYWwgRm9yZWNhc3QgU3lzdGVtIChHRlMpIGlzIGEgd2VhdGhlciBmb3JlY2FzdCBtb2RlbCBwcm9kdWNlZCBieSB0aGUgTmF0aW9uYWwgQ2VudGVycyBmb3IgRW52aXJvbm1lbnRhbCBQcmVkaWN0aW9uIChOQ0VQKS4gRG96ZW5zIG9mIGF0bW9zcGhlcmljIGFuZCBsYW5kLXNvaWwgdmFyaWFibGVzIGFyZSBhdmFpbGFibGUgdGhyb3VnaCB0aGlzIGRhdGFzZXQsIGZyb20gdGVtcGVyYXR1cmVzLCB3aW5kcywgYW5kIHByZWNpcGl0YXRpb24gdG8gc29pbCBtb2lzdHVyZSBhbmQgYXRtb3NwaGVyaWMgb3pvbmUgY29uY2VudHJhdGlvbi4gVGhlIGVudGlyZSBnbG9iZSBpcyBjb3ZlcmVkIGJ5IHRoZSBHRlMgYXQgYSBiYXNlIGhvcml6b250YWwgcmVzb2x1dGlvbiBvZiAxOCBtaWxlcyAoMjgga2lsb21ldGVycykgYmV0d2VlbiBncmlkIHBvaW50cywgd2hpY2ggaXMgdXNlZCBieSB0aGUgb3BlcmF0aW9uYWwgZm9yZWNhc3RlcnMgd2hvIHByZWRpY3Qgd2VhdGhlciBvdXQgdG8gMTYgZGF5cyBpbiB0aGUgZnV0dXJlLiBIb3Jpem9udGFsIHJlc29sdXRpb24gZHJvcHMgdG8gNDQgbWlsZXMgKDcwIGtpbG9tZXRlcnMpIGJldHdlZW4gZ3JpZCBwb2ludCBmb3IgZm9yZWNhc3RzIGJldHdlZW4gb25lIHdlZWsgYW5kIHR3byB3ZWVrcy4gKipCb3RoIHRoZSBjdXJyZW50IHZlcnNpb24gYW5kIHRoZSBGVjMtYmFzZWQgcGFyYWxsZWwgdmVyc2lvbiBvZiB0aGUgR0ZTIGJlaW5nIHRlc3RlZCB0byBiZWNvbWUgdGhlIG5ldyBvcGVyYXRpb25hbCBtb2RlbCBhdCBhIGZ1dHVyZSBkYXRlIGFyZSBhdmFpbGFibGUuKipcblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly93d3cubmNkYy5ub2FhLmdvdi9kYXRhLWFjY2Vzcy9tb2RlbC1kYXRhL21vZGVsLWRhdGFzZXRzL2dsb2JhbC1mb3JjYXN0LXN5c3RlbS1nZnNcbkNvbnRhY3Q6IEZvciBxdWVzdGlvbnMgcmVnYXJkaW5nIGRhdGEgY29udGVudCBvciBxdWFsaXR5LCB2aXNpdCBbdGhlIE5PQUEgR0ZTIHNpdGVdKGh0dHA6Ly93d3cuZW1jLm5jZXAubm9hYS5nb3YvaW5kZXgucGhwP2JyYW5jaD1HRlMpLiBGb3IgYW55IHF1ZXN0aW9ucyByZWdhcmRpbmcgZGF0YSBkZWxpdmVyeSBub3QgYXNzb2NpYXRlZCB3aXRoIHRoaXMgcGxhdGZvcm0gb3IgYW55IGdlbmVyYWwgcXVlc3Rpb25zIHJlZ2FyZGluZyB0aGUgTk9BQSBCaWcgRGF0YSBQcm9qZWN0LCBlbWFpbCBub2FhLmJkcEBub2FhLmdvdi5cbk1hbmFnZWRCeTogW05PQUFdKGh0dHBzOi8vd3d3Lm5vYWEuZ292LylcblVwZGF0ZUZyZXF1ZW5jeTogNCB0aW1lcyBhIGRheSwgZXZlcnkgNiBob3VycyBzdGFydGluZyBhdCBtaWRuaWdodFxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25vYWFfZ2ZzcGFyYV9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9ub2FhLWdmcy1iZHAtcGRzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25vYWFfZ2ZzcGFyYV9wZHMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfbm9hYV9nZnNwYXJhX3BkcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbm9hYV9nZnNwYXJhX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2doY25fcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbm9hYV9naGNuX3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ub2FhX2doY25fcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbm9hYS1naGNuLXBkcyBCdWNrZXQ6IE5PQUEgR2xvYmFsIEhpc3RvcmljYWwgQ2xpbWF0b2xvZ3kgTmV0d29yayBEYWlseSAoR0hDTi1EKTogUHJvamVjdCBkYXRhIGZpbGVzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbm9hYS1naGNuLXBkcyBidWNrZXQgYXQgaHR0cHM6Ly9ub2FhLWdoY24tcGRzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBOT0FBIEdsb2JhbCBIaXN0b3JpY2FsIENsaW1hdG9sb2d5IE5ldHdvcmsgRGFpbHkgKEdIQ04tRClcbk5hbWUyOiBQcm9qZWN0IGRhdGEgZmlsZXNcbkRlc2NyaXB0aW9uOiBHbG9iYWwgSGlzdG9yaWNhbCBDbGltYXRvbG9neSBOZXR3b3JrIC0gRGFpbHkgaXMgYSBkYXRhc2V0IGZyb20gTk9BQSB0aGF0IGNvbnRhaW5zIGRhaWx5IG9ic2VydmF0aW9ucyBvdmVyIGdsb2JhbCBsYW5kIGFyZWFzLiBJdCBjb250YWlucyBzdGF0aW9uLWJhc2VkIG1lYXN1cmVtZW50cyBmcm9tIGxhbmQtYmFzZWQgc3RhdGlvbnMgd29ybGR3aWRlLCBhYm91dCB0d28gdGhpcmRzIG9mIHdoaWNoIGFyZSBmb3IgcHJlY2lwaXRhdGlvbiBtZWFzdXJlbWVudCBvbmx5LiBPdGhlciBtZXRlb3JvbG9naWNhbCBlbGVtZW50cyBpbmNsdWRlLCBidXQgYXJlIG5vdCBsaW1pdGVkIHRvLCBkYWlseSBtYXhpbXVtIGFuZCBtaW5pbXVtIHRlbXBlcmF0dXJlLCB0ZW1wZXJhdHVyZSBhdCB0aGUgdGltZSBvZiBvYnNlcnZhdGlvbiwgc25vd2ZhbGwgYW5kIHNub3cgZGVwdGguIEl0IGlzIGEgY29tcG9zaXRlIG9mIGNsaW1hdGUgcmVjb3JkcyBmcm9tIG51bWVyb3VzIHNvdXJjZXMgdGhhdCB3ZXJlIG1lcmdlZCB0b2dldGhlciBhbmQgc3ViamVjdGVkIHRvIGEgY29tbW9uIHN1aXRlIG9mIHF1YWxpdHkgYXNzdXJhbmNlIHJldmlld3MuICBTb21lIGRhdGEgYXJlIG1vcmUgdGhhbiAxNzUgeWVhcnMgb2xkLiBUaGUgZGF0YSBpcyBpbiBDU1YgZm9ybWF0LiBFYWNoIGZpbGUgY29ycmVzcG9uZHMgdG8gYSB5ZWFyIGZyb20gMTc2MyB0byBwcmVzZW50IGFuZCBpcyBuYW1lZCBhcyBzdWNoLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL25vYWEtZ2hjbi1wZHMvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IEZvciBxdWVzdGlvbnMgcmVnYXJkaW5nIGRhdGEgY29udGVudCBvciBxdWFsaXR5LCB2aXNpdCBbdGhlIE5PQUEgR0hDTiBzaXRlXShodHRwczovL3d3dy5uY2RjLm5vYWEuZ292L2doY24tZGFpbHktZGVzY3JpcHRpb24pLiBGb3IgYW55IHF1ZXN0aW9ucyByZWdhcmRpbmcgZGF0YSBkZWxpdmVyeSBub3QgYXNzb2NpYXRlZCB3aXRoIHRoaXMgcGxhdGZvcm0gb3IgYW55IGdlbmVyYWwgcXVlc3Rpb25zIHJlZ2FyZGluZyB0aGUgTk9BQSBCaWcgRGF0YSBQcm9qZWN0LCBlbWFpbCBub2FhLmJkcEBub2FhLmdvdlxuTWFuYWdlZEJ5OiBbTk9BQV0oaHR0cHM6Ly93d3cubm9hYS5nb3YvKVxuVXBkYXRlRnJlcXVlbmN5OiBEYWlseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25vYWFfZ2hjbl9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9ub2FhLWdoY24vIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbm9hYV9naGNuX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ub2FhX2doY25fcGRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19ub2FhX2doY25fcGRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25vYWFfZ2hlX3BkcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25vYWFfZ2hlX3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ub2FhX2doZV9wZHMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBub2FhLWdoZS1wZHMgQnVja2V0OiBOT0FBIEdsb2JhbCBIeWRybyBFc3RpbWF0b3IgKEdIRSk6IFByb2plY3QgZGF0YSBmaWxlcyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5vYWEtZ2hlLXBkcyBidWNrZXQgYXQgaHR0cHM6Ly9ub2FhLWdoZS1wZHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5PQUEgR2xvYmFsIEh5ZHJvIEVzdGltYXRvciAoR0hFKVxuTmFtZTI6IFByb2plY3QgZGF0YSBmaWxlc1xuRGVzY3JpcHRpb246IEdsb2JhbCBIeWRyby1Fc3RpbWF0b3IgcHJvdmlkZXMgYSBnbG9iYWwgbW9zYWljIGltYWdlcnkgb2YgcmFpbmZhbGwgZXN0aW1hdGVzIGZyb20gbXVsdGktZ2Vvc3RhdGlvbmFyeSBzYXRlbGxpdGVzLCB3aGljaCBjdXJyZW50bHkgaW5jbHVkZXMgR09FUy0xNiwgR09FUy0xNSwgTWV0ZW9zYXQtOCwgTWV0ZW9zYXQtMTEgYW5kIEhpbWF3YXJpLTguIFRoZSBHSEUgcHJvZHVjdHMgaW5jbHVkZTogSW5zdGFudGFuZW91cyByYWluIHJhdGUsIDEgaG91ciwgMyBob3VyLCA2IGhvdXIsIDI0IGhvdXIgYW5kIGFsc28gbXVsdGktZGF5IHJhaW5mYWxsIGFjY3VtdWxhdGlvbi5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly93d3cub3Nwby5ub2FhLmdvdi9Qcm9kdWN0cy9hdG1vc3BoZXJlL2doZS9pbmRleC5odG1sXG5Db250YWN0OiB8XG5NYW5hZ2VkQnk6IFtOT0FBXShodHRwczovL3d3dy5ub2FhLmdvdi8pXG5VcGRhdGVGcmVxdWVuY3k6IDE1IG1pbnV0ZS1pbnN0YW50YW5lb3VzXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbm9hYV9naGVfcGRzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvbm9hYS1naGUvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbm9hYV9naGVfcGRzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX25vYWFfZ2hlX3BkcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbm9hYV9naGVfcGRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25vYWFfZ2xvYmFsX2hvdXJseV9wZHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2dsb2JhbF9ob3VybHlfcGRzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX25vYWFfZ2xvYmFsX2hvdXJseV9wZHMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBub2FhLWdsb2JhbC1ob3VybHktcGRzIEJ1Y2tldDogTk9BQSBHbG9iYWwgSGlzdG9yaWNhbCBDbGltYXRvbG9neSBOZXR3b3JrIEhvdXJseSAoR0hDTi1IKTogUHJvamVjdCBkYXRhIGZpbGVzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbm9hYS1nbG9iYWwtaG91cmx5LXBkcyBidWNrZXQgYXQgaHR0cHM6Ly9ub2FhLWdsb2JhbC1ob3VybHktcGRzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBOT0FBIEdsb2JhbCBIaXN0b3JpY2FsIENsaW1hdG9sb2d5IE5ldHdvcmsgSG91cmx5IChHSENOLUgpXG5OYW1lMjogUHJvamVjdCBkYXRhIGZpbGVzXG5EZXNjcmlwdGlvbjogR2xvYmFsIEhpc3RvcmljYWwgQ2xpbWF0b2xvZ3kgTmV0d29yayAtIEhvdXJseSBpcyBhIGRhdGFzZXQgZnJvbSBOT0FBIHRoYXQgY29udGFpbnMgZGFpbHkgb2JzZXJ2YXRpb25zIG92ZXIgZ2xvYmFsIGxhbmQgYXJlYXMuIEl0IGNvbnRhaW5zIHN0YXRpb24tYmFzZWQgbWVhc3VyZW1lbnRzIGZyb20gbGFuZC1iYXNlZCBzdGF0aW9ucyB3b3JsZHdpZGUsIGFib3V0IHR3byB0aGlyZHMgb2Ygd2hpY2ggYXJlIGZvciBwcmVjaXBpdGF0aW9uIG1lYXN1cmVtZW50IG9ubHkuIE90aGVyIG1ldGVvcm9sb2dpY2FsIGVsZW1lbnRzIGluY2x1ZGUsIGJ1dCBhcmUgbm90IGxpbWl0ZWQgdG8sIGRhaWx5IG1heGltdW0gYW5kIG1pbmltdW0gdGVtcGVyYXR1cmUsIHRlbXBlcmF0dXJlIGF0IHRoZSB0aW1lIG9mIG9ic2VydmF0aW9uLCBzbm93ZmFsbCBhbmQgc25vdyBkZXB0aC4gSXQgaXMgYSBjb21wb3NpdGUgb2YgY2xpbWF0ZSByZWNvcmRzIGZyb20gbnVtZXJvdXMgc291cmNlcyB0aGF0IHdlcmUgbWVyZ2VkIHRvZ2V0aGVyIGFuZCBzdWJqZWN0ZWQgdG8gYSBjb21tb24gc3VpdGUgb2YgcXVhbGl0eSBhc3N1cmFuY2UgcmV2aWV3cy4gIFNvbWUgZGF0YSBhcmUgbW9yZSB0aGFuIDE3NSB5ZWFycyBvbGQuIFRoZSBkYXRhIGlzIGluIENTViBmb3JtYXQuIEVhY2ggZmlsZSBjb3JyZXNwb25kcyB0byBhIHllYXIgZnJvbSAxNzYzIHRvIHByZXNlbnQgYW5kIGlzIG5hbWVkIGFzIHN1Y2guXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vd3d3Lm5jZWkubm9hYS5nb3YvZGF0YS9nbG9iYWwtaG91cmx5L2RvYy9pc2QtZm9ybWF0LWRvY3VtZW50LnBkZlxuQ29udGFjdDogRm9yIHF1ZXN0aW9ucyByZWdhcmRpbmcgZGF0YSBjb250ZW50IG9yIHF1YWxpdHksIHZpc2l0IFt0aGUgTk9BQSBHSENOIHNpdGVdKGh0dHBzOi8vd3d3Lm5jZWkubm9hYS5nb3YvZGF0YS9nbG9iYWwtaG91cmx5L2RvYy9pc2QtZm9ybWF0LWRvY3VtZW50LnBkZikuIEZvciBhbnkgcXVlc3Rpb25zIHJlZ2FyZGluZyBkYXRhIGRlbGl2ZXJ5IG5vdCBhc3NvY2lhdGVkIHdpdGggdGhpcyBwbGF0Zm9ybSBvciBhbnkgZ2VuZXJhbCBxdWVzdGlvbnMgcmVnYXJkaW5nIHRoZSBOT0FBIEJpZyBEYXRhIFByb2plY3QsIGVtYWlsIG5vYWEuYmRwQG5vYWEuZ292XG5NYW5hZ2VkQnk6IFtOT0FBXShodHRwczovL3d3dy5ub2FhLmdvdi8pXG5VcGRhdGVGcmVxdWVuY3k6IGRhaWx5IChNYW51YWxseSlcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19ub2FhX2dsb2JhbF9ob3VybHlfcGRzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvbm9hYS1naGNuaC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19ub2FhX2dsb2JhbF9ob3VybHlfcGRzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX25vYWFfZ2xvYmFsX2hvdXJseV9wZHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25vYWFfZ2xvYmFsX2hvdXJseV9wZHMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzTm9hYUdvZXMxNiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM05vYWFHb2VzMTYuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzTm9hYUdvZXMxNi8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG5vYWEtZ29lczE2IEJ1Y2tldCIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5vYWEtZ29lczE2IGJ1Y2tldCBhdCBodHRwczovL25vYWEtZ29lczE2LnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIEdPRVMgc2F0ZWxsaXRlcyAoR09FUy0xNiAmIEdPRVMtMTcpIHByb3ZpZGUgY29udGludW91cyB3ZWF0aGVyIGltYWdlcnkgYW5kIG1vbml0b3Jpbmcgb2YgbWV0ZW9yb2xvZ2ljYWwgYW5kIHNwYWNlIGVudmlyb25tZW50IGRhdGEgYWNyb3NzIE5vcnRoIEFtZXJpY2EuIEdPRVMgc2F0ZWxsaXRlcyBwcm92aWRlIHRoZSBraW5kIG9mIGNvbnRpbnVvdXMgbW9uaXRvcmluZyBuZWNlc3NhcnkgZm9yIGludGVuc2l2ZSBkYXRhIGFuYWx5c2lzLiBUaGV5IGhvdmVyIGNvbnRpbnVvdXNseSBvdmVyIG9uZSBwb3NpdGlvbiBvbiB0aGUgc3VyZmFjZS4gVGhlIHNhdGVsbGl0ZXMgb3JiaXQgaGlnaCBlbm91Z2ggdG8gYWxsb3cgZm9yIGEgZnVsbC1kaXNjIHZpZXcgb2YgdGhlIEVhcnRoLiBCZWNhdXNlIHRoZXkgc3RheSBhYm92ZSBhIGZpeGVkIHNwb3Qgb24gdGhlIHN1cmZhY2UsIHRoZXkgcHJvdmlkZSBhIGNvbnN0YW50IHZpZ2lsIGZvciB0aGUgYXRtb3NwaGVyaWMgXCJ0cmlnZ2Vyc1wiIGZvciBzZXZlcmUgd2VhdGhlciBjb25kaXRpb25zIHN1Y2ggYXMgdG9ybmFkb2VzLCBmbGFzaCBmbG9vZHMsIGhhaWxzdG9ybXMsIGFuZCBodXJyaWNhbmVzLiBXaGVuIHRoZXNlIGNvbmRpdGlvbnMgZGV2ZWxvcCwgdGhlIEdPRVMgc2F0ZWxsaXRlcyBhcmUgYWJsZSB0byBtb25pdG9yIHN0b3JtIGRldmVsb3BtZW50IGFuZCB0cmFjayB0aGVpciBtb3ZlbWVudHMuXG5cblVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlciB0aGUgZmlsZXMgaW4gYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNOb2FhR29lczE2L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvbm9hYS1nb2VzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM05vYWFHb2VzMTYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzTm9hYUdvZXMxNiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIiwgImF3c1MzTm9hYUdvZXMxNiJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2dvZXMxNiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25vYWFfZ29lczE2LmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX25vYWFfZ29lczE2LyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbm9hYS1nb2VzMTYgQnVja2V0OiBHT0VTIG9uIEFXUzogR09FUy0xNiBpbWFnZXJ5IGFuZCBtZXRhZGF0YSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5vYWEtZ29lczE2IGJ1Y2tldCBhdCBodHRwczovL25vYWEtZ29lczE2LnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBHT0VTIG9uIEFXU1xuTmFtZTI6IEdPRVMtMTYgaW1hZ2VyeSBhbmQgbWV0YWRhdGFcbkRlc2NyaXB0aW9uOiBHT0VTIHNhdGVsbGl0ZXMgKEdPRVMtMTYgJiBHT0VTLTE3KSBwcm92aWRlIGNvbnRpbnVvdXMgd2VhdGhlciBpbWFnZXJ5IGFuZCBtb25pdG9yaW5nIG9mIG1ldGVvcm9sb2dpY2FsIGFuZCBzcGFjZSBlbnZpcm9ubWVudCBkYXRhIGFjcm9zcyBOb3J0aCBBbWVyaWNhLiBHT0VTIHNhdGVsbGl0ZXMgcHJvdmlkZSB0aGUga2luZCBvZiBjb250aW51b3VzIG1vbml0b3JpbmcgbmVjZXNzYXJ5IGZvciBpbnRlbnNpdmUgZGF0YSBhbmFseXNpcy4gVGhleSBob3ZlciBjb250aW51b3VzbHkgb3ZlciBvbmUgcG9zaXRpb24gb24gdGhlIHN1cmZhY2UuIFRoZSBzYXRlbGxpdGVzIG9yYml0IGhpZ2ggZW5vdWdoIHRvIGFsbG93IGZvciBhIGZ1bGwtZGlzYyB2aWV3IG9mIHRoZSBFYXJ0aC4gQmVjYXVzZSB0aGV5IHN0YXkgYWJvdmUgYSBmaXhlZCBzcG90IG9uIHRoZSBzdXJmYWNlLCB0aGV5IHByb3ZpZGUgYSBjb25zdGFudCB2aWdpbCBmb3IgdGhlIGF0bW9zcGhlcmljIFwidHJpZ2dlcnNcIiBmb3Igc2V2ZXJlIHdlYXRoZXIgY29uZGl0aW9ucyBzdWNoIGFzIHRvcm5hZG9lcywgZmxhc2ggZmxvb2RzLCBoYWlsc3Rvcm1zLCBhbmQgaHVycmljYW5lcy4gV2hlbiB0aGVzZSBjb25kaXRpb25zIGRldmVsb3AsIHRoZSBHT0VTIHNhdGVsbGl0ZXMgYXJlIGFibGUgdG8gbW9uaXRvciBzdG9ybSBkZXZlbG9wbWVudCBhbmQgdHJhY2sgdGhlaXIgbW92ZW1lbnRzLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL25vYWEtZ29lczE2L2NpY3MtcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IG5vYWEuYmRwQG5vYWEuZ292XG5NYW5hZ2VkQnk6IFtOT0FBXShodHRwczovL3d3dy5ub2FhLmdvdi8pXG5VcGRhdGVGcmVxdWVuY3k6IE5ldyBkYXRhIGlzIGFkZGVkIGFzIHNvb24gYXMgaXQncyBhdmFpbGFibGVcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19ub2FhX2dvZXMxNi9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25vYWEtZ29lcy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19ub2FhX2dvZXMxNi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ub2FhX2dvZXMxNiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbm9hYV9nb2VzMTYiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbm9hYV9nb2VzMTciLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2dvZXMxNy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ub2FhX2dvZXMxNy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG5vYWEtZ29lczE3IEJ1Y2tldDogR09FUyBvbiBBV1M6IEdPRVMtMTcgaW1hZ2VyeSBhbmQgbWV0YWRhdGEiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBub2FhLWdvZXMxNyBidWNrZXQgYXQgaHR0cHM6Ly9ub2FhLWdvZXMxNy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogR09FUyBvbiBBV1Ncbk5hbWUyOiBHT0VTLTE3IGltYWdlcnkgYW5kIG1ldGFkYXRhXG5EZXNjcmlwdGlvbjogR09FUyBzYXRlbGxpdGVzIChHT0VTLTE2ICYgR09FUy0xNykgcHJvdmlkZSBjb250aW51b3VzIHdlYXRoZXIgaW1hZ2VyeSBhbmQgbW9uaXRvcmluZyBvZiBtZXRlb3JvbG9naWNhbCBhbmQgc3BhY2UgZW52aXJvbm1lbnQgZGF0YSBhY3Jvc3MgTm9ydGggQW1lcmljYS4gR09FUyBzYXRlbGxpdGVzIHByb3ZpZGUgdGhlIGtpbmQgb2YgY29udGludW91cyBtb25pdG9yaW5nIG5lY2Vzc2FyeSBmb3IgaW50ZW5zaXZlIGRhdGEgYW5hbHlzaXMuIFRoZXkgaG92ZXIgY29udGludW91c2x5IG92ZXIgb25lIHBvc2l0aW9uIG9uIHRoZSBzdXJmYWNlLiBUaGUgc2F0ZWxsaXRlcyBvcmJpdCBoaWdoIGVub3VnaCB0byBhbGxvdyBmb3IgYSBmdWxsLWRpc2MgdmlldyBvZiB0aGUgRWFydGguIEJlY2F1c2UgdGhleSBzdGF5IGFib3ZlIGEgZml4ZWQgc3BvdCBvbiB0aGUgc3VyZmFjZSwgdGhleSBwcm92aWRlIGEgY29uc3RhbnQgdmlnaWwgZm9yIHRoZSBhdG1vc3BoZXJpYyBcInRyaWdnZXJzXCIgZm9yIHNldmVyZSB3ZWF0aGVyIGNvbmRpdGlvbnMgc3VjaCBhcyB0b3JuYWRvZXMsIGZsYXNoIGZsb29kcywgaGFpbHN0b3JtcywgYW5kIGh1cnJpY2FuZXMuIFdoZW4gdGhlc2UgY29uZGl0aW9ucyBkZXZlbG9wLCB0aGUgR09FUyBzYXRlbGxpdGVzIGFyZSBhYmxlIHRvIG1vbml0b3Igc3Rvcm0gZGV2ZWxvcG1lbnQgYW5kIHRyYWNrIHRoZWlyIG1vdmVtZW50cy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLm9wZW5kYXRhLmF3cy9ub2FhLWdvZXMxNi9jaWNzLXJlYWRtZS5odG1sXG5Db250YWN0OiBub2FhLmJkcEBub2FhLmdvdlxuTWFuYWdlZEJ5OiBbTk9BQV0oaHR0cHM6Ly93d3cubm9hYS5nb3YvKVxuVXBkYXRlRnJlcXVlbmN5OiBOZXcgZGF0YSBpcyBhZGRlZCBhcyBzb29uIGFzIGl0J3MgYXZhaWxhYmxlXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbm9hYV9nb2VzMTcvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9ub2FhLWdvZXMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbm9hYV9nb2VzMTcucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfbm9hYV9nb2VzMTcmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25vYWFfZ29lczE3Il0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25vYWFfaHJycl9wZHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2hycnJfcGRzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX25vYWFfaHJycl9wZHMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBub2FhLWhycnItcGRzIEJ1Y2tldDogTk9BQSBIaWdoLVJlc29sdXRpb24gUmFwaWQgUmVmcmVzaCAoSFJSUikgTW9kZWw6IEEgcm9sbGluZyBvbmUtd2VlayBhcmNoaXZlIG9mIEhSUlIgZGF0YS4iLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBub2FhLWhycnItcGRzIGJ1Y2tldCBhdCBodHRwczovL25vYWEtaHJyci1wZHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5PQUEgSGlnaC1SZXNvbHV0aW9uIFJhcGlkIFJlZnJlc2ggKEhSUlIpIE1vZGVsXG5OYW1lMjogQSByb2xsaW5nIG9uZS13ZWVrIGFyY2hpdmUgb2YgSFJSUiBkYXRhLlxuRGVzY3JpcHRpb246IFRoZSBIUlJSIGlzIGEgTk9BQSByZWFsLXRpbWUgMy1rbSByZXNvbHV0aW9uLCBob3VybHkgdXBkYXRlZCwgY2xvdWQtcmVzb2x2aW5nLCBjb252ZWN0aW9uLWFsbG93aW5nIGF0bW9zcGhlcmljIG1vZGVsLCBpbml0aWFsaXplZCBieSAza20gZ3JpZHMgd2l0aCAza20gcmFkYXIgYXNzaW1pbGF0aW9uLiBSYWRhciBkYXRhIGlzIGFzc2ltaWxhdGVkIGluIHRoZSBIUlJSIGV2ZXJ5IDE1IG1pbiBvdmVyIGEgMS1oIHBlcmlvZCBhZGRpbmcgZnVydGhlciBkZXRhaWwgdG8gdGhhdCBwcm92aWRlZCBieSB0aGUgaG91cmx5IGRhdGEgYXNzaW1pbGF0aW9uIGZyb20gdGhlIDEza20gcmFkYXItZW5oYW5jZWQgUmFwaWQgUmVmcmVzaC5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLm9wZW5kYXRhLmF3cy9ub2FhLWhycnItcGRzL3JlYWRtZS5odG1sXG5Db250YWN0OiBodHRwczovL3JhcGlkcmVmcmVzaC5ub2FhLmdvdi9ocnJyL1xuTWFuYWdlZEJ5OiBbVW5pZGF0YV0oaHR0cHM6Ly93d3cudW5pZGF0YS51Y2FyLmVkdS8pXG5VcGRhdGVGcmVxdWVuY3k6IEhvdXJseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25vYWFfaHJycl9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9ub2FhLWhycnItcGRzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25vYWFfaHJycl9wZHMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfbm9hYV9ocnJyX3BkcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbm9hYV9ocnJyX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2lzZF9wZHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2lzZF9wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbm9hYV9pc2RfcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbm9hYS1pc2QtcGRzIEJ1Y2tldDogTk9BQSBJbnRlZ3JhdGVkIFN1cmZhY2UgRGF0YWJhc2UgKElTRCk6IFByb2plY3QgZGF0YSBmaWxlcyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5vYWEtaXNkLXBkcyBidWNrZXQgYXQgaHR0cHM6Ly9ub2FhLWlzZC1wZHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5PQUEgSW50ZWdyYXRlZCBTdXJmYWNlIERhdGFiYXNlIChJU0QpXG5OYW1lMjogUHJvamVjdCBkYXRhIGZpbGVzXG5EZXNjcmlwdGlvbjogVGhlIEludGVncmF0ZWQgU3VyZmFjZSBEYXRhYmFzZSAoSVNEKSBjb25zaXN0cyBvZiBnbG9iYWwgaG91cmx5IGFuZCBzeW5vcHRpYyBvYnNlcnZhdGlvbnMgY29tcGlsZWQgZnJvbSBudW1lcm91cyBzb3VyY2VzIGludG8gYSBnemlwcGVkIGZpeGVkIHdpZHRoIGZvcm1hdC4gSVNEIHdhcyBkZXZlbG9wZWQgYXMgYSBqb2ludCBhY3Rpdml0eSB3aXRoaW4gQXNoZXZpbGxlJ3MgRmVkZXJhbCBDbGltYXRlIENvbXBsZXguIFRoZSBkYXRhYmFzZSBpbmNsdWRlcyBvdmVyIDM1LDAwMCBzdGF0aW9ucyB3b3JsZHdpZGUsIHdpdGggc29tZSBoYXZpbmcgZGF0YSBhcyBmYXIgYmFjayBhcyAxOTAxLCB0aG91Z2ggdGhlIGRhdGEgc2hvdyBhIHN1YnN0YW50aWFsIGluY3JlYXNlIGluIHZvbHVtZSBpbiB0aGUgMTk0MHMgYW5kIGFnYWluIGluIHRoZSBlYXJseSAxOTcwcy4gQ3VycmVudGx5LCB0aGVyZSBhcmUgb3ZlciAxNCwwMDAgXCJhY3RpdmVcIiBzdGF0aW9ucyB1cGRhdGVkIGRhaWx5IGluIHRoZSBkYXRhYmFzZS4gVGhlIHRvdGFsIHVuY29tcHJlc3NlZCBkYXRhIHZvbHVtZSBpcyBhcm91bmQgNjAwIGdpZ2FieXRlczsgaG93ZXZlciwgaXQgY29udGludWVzIHRvIGdyb3cgYXMgbW9yZSBkYXRhIGFyZSBhZGRlZC4gSVNEIGluY2x1ZGVzIG51bWVyb3VzIHBhcmFtZXRlcnMgc3VjaCBhcyB3aW5kIHNwZWVkIGFuZCBkaXJlY3Rpb24sIHdpbmQgZ3VzdCwgdGVtcGVyYXR1cmUsIGRldyBwb2ludCwgY2xvdWQgZGF0YSwgc2VhIGxldmVsIHByZXNzdXJlLCBhbHRpbWV0ZXIgc2V0dGluZywgc3RhdGlvbiBwcmVzc3VyZSwgcHJlc2VudCB3ZWF0aGVyLCB2aXNpYmlsaXR5LCBwcmVjaXBpdGF0aW9uIGFtb3VudHMgZm9yIHZhcmlvdXMgdGltZSBwZXJpb2RzLCBzbm93IGRlcHRoLCBhbmQgdmFyaW91cyBvdGhlciBlbGVtZW50cyBhcyBvYnNlcnZlZCBieSBlYWNoIHN0YXRpb24uXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vd3d3Lm5jZWkubm9hYS5nb3YvZGF0YS9nbG9iYWwtaG91cmx5L2RvYy9pc2QtZm9ybWF0LWRvY3VtZW50LnBkZlxuQ29udGFjdDogfFxuTWFuYWdlZEJ5OiBbTk9BQV0oaHR0cHM6Ly93d3cubm9hYS5nb3YvKVxuVXBkYXRlRnJlcXVlbmN5OiBEYWlseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25vYWFfaXNkX3Bkcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25vYWEtaXNkLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25vYWFfaXNkX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ub2FhX2lzZF9wZHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25vYWFfaXNkX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX25leHJhZF9sZXZlbDIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX25leHJhZF9sZXZlbDIuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbm9hYV9uZXhyYWRfbGV2ZWwyLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbm9hYS1uZXhyYWQtbGV2ZWwyIEJ1Y2tldDogTkVYUkFEIG9uIEFXUzogTkVYUkFEIExldmVsIElJIGFyY2hpdmUgZGF0YSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5vYWEtbmV4cmFkLWxldmVsMiBidWNrZXQgYXQgaHR0cHM6Ly9ub2FhLW5leHJhZC1sZXZlbDIuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5FWFJBRCBvbiBBV1Ncbk5hbWUyOiBORVhSQUQgTGV2ZWwgSUkgYXJjaGl2ZSBkYXRhXG5EZXNjcmlwdGlvbjogUmVhbC10aW1lIGFuZCBhcmNoaXZhbCBkYXRhIGZyb20gdGhlIE5leHQgR2VuZXJhdGlvbiBXZWF0aGVyIFJhZGFyIChORVhSQUQpIG5ldHdvcmsuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZG9jcy5vcGVuZGF0YS5hd3Mvbm9hYS1uZXhyYWQvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IG5vYWEuYmRwQG5vYWEuZ292XG5NYW5hZ2VkQnk6IFtOT0FBXShodHRwczovL3d3dy5ub2FhLmdvdi8pXG5VcGRhdGVGcmVxdWVuY3k6IE5ldyBMZXZlbCBJSSBkYXRhIGlzIGFkZGVkIGFzIHNvb24gYXMgaXQgaXMgYXZhaWxhYmxlLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25vYWFfbmV4cmFkX2xldmVsMi9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25vYWEtbmV4cmFkLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25vYWFfbmV4cmFkX2xldmVsMi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ub2FhX25leHJhZF9sZXZlbDImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25vYWFfbmV4cmFkX2xldmVsMiJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX253bV9wZHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX253bV9wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbm9hYV9ud21fcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbm9hYS1ud20tcGRzIEJ1Y2tldDogTk9BQSBOYXRpb25hbCBXYXRlciBNb2RlbCBTaG9ydC1SYW5nZSBGb3JlY2FzdDogQSByb2xsaW5nIGZvdXIgd2VlayBhcmNoaXZlIG9mIE5XTSBkYXRhLiIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5vYWEtbndtLXBkcyBidWNrZXQgYXQgaHR0cHM6Ly9ub2FhLW53bS1wZHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5PQUEgTmF0aW9uYWwgV2F0ZXIgTW9kZWwgU2hvcnQtUmFuZ2UgRm9yZWNhc3Rcbk5hbWUyOiBBIHJvbGxpbmcgZm91ciB3ZWVrIGFyY2hpdmUgb2YgTldNIGRhdGEuXG5EZXNjcmlwdGlvbjogVGhlIE5hdGlvbmFsIFdhdGVyIE1vZGVsIChOV00pIGlzIGEgd2F0ZXIgcmVzb3VyY2VzIG1vZGVsIHRoYXQgc2ltdWxhdGVzIGFuZCBmb3JlY2FzdHMgd2F0ZXIgYnVkZ2V0IHZhcmlhYmxlcywgaW5jbHVkaW5nIHNub3dwYWNrLCBldmFwb3RyYW5zcGlyYXRpb24sIHNvaWwgbW9pc3R1cmUgYW5kIHN0cmVhbWZsb3csIG92ZXIgdGhlIGVudGlyZSBjb250aW5lbnRhbCBVbml0ZWQgU3RhdGVzIChDT05VUykuIFRoZSBtb2RlbCwgbGF1bmNoZWQgaW4gQXVndXN0IDIwMTYsIGlzIGRlc2lnbmVkIHRvIGltcHJvdmUgdGhlIGFiaWxpdHkgb2YgTk9BQSB0byBtZWV0IHRoZSBuZWVkcyBvZiBpdHMgc3Rha2Vob2xkZXJzIChmb3JlY2FzdGVycywgZW1lcmdlbmN5IG1hbmFnZXJzLCByZXNlcnZvaXIgb3BlcmF0b3JzLCBmaXJzdCByZXNwb25kZXJzLCByZWNyZWF0aW9uaXN0cywgZmFybWVycywgYmFyZ2Ugb3BlcmF0b3JzLCBhbmQgZWNvc3lzdGVtIGFuZCBmbG9vZHBsYWluIG1hbmFnZXJzKSBieSBwcm92aWRpbmcgZXhwYW5kZWQgYWNjdXJhY3ksIGRldGFpbCwgYW5kIGZyZXF1ZW5jeSBvZiB3YXRlciBpbmZvcm1hdGlvbi4gSXQgaXMgb3BlcmF0ZWQgYnkgTk9BQVx1MjAxOXMgT2ZmaWNlIG9mIFdhdGVyIFByZWRpY3Rpb24uIFRoaXMgYnVja2V0IGNvbnRhaW5zIGEgZm91ci13ZWVrIHJvbGxvdmVyIG9mIHRoZSBTaG9ydCBSYW5nZSBGb3JlY2FzdCBtb2RlbCBvdXRwdXQgYW5kIHRoZSBjb3JyZXNwb25kaW5nIGZvcmNpbmcgZGF0YSBmb3IgdGhlIG1vZGVsLiBUaGUgbW9kZWwgaXMgZm9yY2VkIHdpdGggbWV0ZW9yb2xvZ2ljYWwgZGF0YSBmcm9tIHRoZSBIaWdoIFJlc29sdXRpb24gUmFwaWQgUmVmcmVzaCAoSFJSUikgYW5kIHRoZSBSYXBpZCBSZWZyZXNoIChSQVApIG1vZGVscy4gVGhlIFNob3J0IFJhbmdlIEZvcmVjYXN0IGNvbmZpZ3VyYXRpb24gY3ljbGVzIGhvdXJseSBhbmQgcHJvZHVjZXMgaG91cmx5IGRldGVybWluaXN0aWMgZm9yZWNhc3RzIG9mIHN0cmVhbWZsb3cgYW5kIGh5ZHJvbG9naWMgc3RhdGVzIG91dCB0byAxOCBob3Vycy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLm9wZW5kYXRhLmF3cy9ub2FhLW53bS1wZHMvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IHxcbk1hbmFnZWRCeTogW05PQUFdKGh0dHBzOi8vd3d3Lm5vYWEuZ292LylcblVwZGF0ZUZyZXF1ZW5jeTogRGFpbHlcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19ub2FhX253bV9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9ub2FhLW53bS1wZHMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbm9hYV9ud21fcGRzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX25vYWFfbndtX3BkcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbm9hYV9ud21fcGRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25vYWFfbndtX3JldHJvX3YyXzBfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbm9hYV9ud21fcmV0cm9fdjJfMF9wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbm9hYV9ud21fcmV0cm9fdjJfMF9wZHMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBub2FhLW53bS1yZXRyby12Mi4wLXBkcyBCdWNrZXQ6IE5PQUEgTmF0aW9uYWwgV2F0ZXIgTW9kZWwgUmVhbmFseXNpczogVGhlIGNvbXBsZXRlIGFyY2hpdmUgb2YgTldNIGRhdGEgdmVyc2lvbiAyLjAuIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbm9hYS1ud20tcmV0cm8tdjIuMC1wZHMgYnVja2V0IGF0IGh0dHBzOi8vbm9hYS1ud20tcmV0cm8tdjIuMC1wZHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5PQUEgTmF0aW9uYWwgV2F0ZXIgTW9kZWwgUmVhbmFseXNpc1xuTmFtZTI6IFRoZSBjb21wbGV0ZSBhcmNoaXZlIG9mIE5XTSBkYXRhIHZlcnNpb24gMi4wLlxuRGVzY3JpcHRpb246IFRoZSBOT0FBIE5hdGlvbmFsIFdhdGVyIE1vZGVsIFJlYW5hbHlzaXMgZGF0YXNldCBjb250YWlucyBvdXRwdXQgZnJvbSBtdWx0aS1kZWNhZGUgcmV0cm9zcGVjdGl2ZSBzaW11bGF0aW9ucy4gVGhlc2Ugc2ltdWxhdGlvbnMgdXNlZCBvYnNlcnZlZCByYWluZmFsbCBhcyBpbnB1dCBhbmQgaW5nZXN0ZWQgb3RoZXIgcmVxdWlyZWQgbWV0ZW9yb2xvZ2ljYWwgaW5wdXQgZmllbGRzIGZyb20gYSB3ZWF0aGVyIHJlYW5hbHlzaXMgZGF0YXNldC4gVGhlIG91dHB1dCBmcmVxdWVuY3kgYW5kIGZpZWxkcyBhdmFpbGFibGUgaW4gdGhpcyBoaXN0b3JpY2FsIE5XTSBkYXRhc2V0IGRpZmZlciBmcm9tIHRob3NlIGNvbnRhaW5lZCBpbiB0aGUgcmVhbC10aW1lIGZvcmVjYXN0IG1vZGVsLiBPbmUgYXBwbGljYXRpb24gb2YgdGhpcyBkYXRhc2V0IGlzIHRvIHByb3ZpZGUgaGlzdG9yaWNhbCBjb250ZXh0IHRvIGN1cnJlbnQgcmVhbC10aW1lIHN0cmVhbWZsb3csIHNvaWwgbW9pc3R1cmUgYW5kIHNub3dwYWNrIE5XTSBjb25kaXRpb25zLiBUaGUgcmVhbmFseXNpcyBkYXRhIGNhbiBiZSB1c2VkIHRvIGluZmVyIGZsb3cgZnJlcXVlbmNpZXMgYW5kIHBlcmZvcm0gdGVtcG9yYWwgYW5hbHlzZXMgd2l0aCBob3VybHkgc3RyZWFtZmxvdyBvdXRwdXQgYW5kIDMtaG91cmx5IGxhbmQgc3VyZmFjZSBvdXRwdXQuIFRoZSBsb25nLXRlcm0gZGF0YXNldCBjYW4gYWxzbyBiZSB1c2VkIGluIHRoZSBkZXZlbG9wbWVudCBvZiBlbmQgdXNlciBhcHBsaWNhdGlvbnMgd2hpY2ggcmVxdWlyZSBhIGxvbmcgYmFzZWxpbmUgb2YgZGF0YSBmb3Igc3lzdGVtIHRyYWluaW5nIG9yIHZlcmlmaWNhdGlvbiBwdXJwb3Nlcy4gVGhpcyBkYXRhc2V0IGNvbnRhaW5zIG91dHB1dCBmcm9tIHR3byByZXRyb3NwZWN0aXZlIHNpbXVsYXRpb25zLiAgQ3VycmVudGx5IHRoZXJlIGFyZSB0d28gdmVyc2lvbnMgb2YgdGhlIGRhdGFzZXQ6IEEgMjUteWVhciAoSmFudWFyeSAxOTkzIHRocm91Z2ggRGVjZW1iZXIgMjAxNykgcmV0cm9zcGVjdGl2ZSBzaW11bGF0aW9uIHVzaW5nIHZlcnNpb24gMS4yIG9mIHRoZSBOYXRpb25hbCBXYXRlciBNb2RlbCwgYW5kIGEgMjYteWVhciAoSmFudWFyeSAxOTkzIHRocm91Z2ggRGVjZW1iZXIgMjAxOCkgcmV0cm9zcGVjdGl2ZSBzaW11bGF0aW9uIHVzaW5nIHZlcnNpb24gMi4wIG9mIHRoZSBOYXRpb25hbCBXYXRlciBNb2RlbC5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLm9wZW5kYXRhLmF3cy9ud20tYXJjaGl2ZS9yZWFkbWUuaHRtbFxuQ29udGFjdDogfFxuTWFuYWdlZEJ5OiBbTk9BQV0oaHR0cHM6Ly93d3cubm9hYS5nb3YvKVxuVXBkYXRlRnJlcXVlbmN5OiBObyB1cGRhdGVzXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG4uLi4gKDQgbW9yZSB2YXJpYWJsZXMpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbm9hYV9ud21fcmV0cm9fdjJfMF9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9ud20tYXJjaGl2ZS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19ub2FhX253bV9yZXRyb192Ml8wX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ub2FhX253bV9yZXRyb192Ml8wX3BkcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbm9hYV9ud21fcmV0cm9fdjJfMF9wZHMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbm9hYV9vZnNfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbm9hYV9vZnNfcGRzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX25vYWFfb2ZzX3Bkcy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG5vYWEtb2ZzLXBkcyBCdWNrZXQ6IE5PQUEgT3BlcmF0aW9uYWwgRm9yZWNhc3QgU3lzdGVtIChPRlMpOiBQcm9qZWN0IGRhdGEgZmlsZXMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBub2FhLW9mcy1wZHMgYnVja2V0IGF0IGh0dHBzOi8vbm9hYS1vZnMtcGRzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBOT0FBIE9wZXJhdGlvbmFsIEZvcmVjYXN0IFN5c3RlbSAoT0ZTKVxuTmFtZTI6IFByb2plY3QgZGF0YSBmaWxlc1xuRGVzY3JpcHRpb246IFRoZSBPcGVyYXRpb25hbCBGb3JlY2FzdCBTeXN0ZW0gKE9GUykgaGFzIGJlZW4gZGV2ZWxvcGVkIHRvIHNlcnZlIHRoZSBtYXJpdGltZSB1c2VyIGNvbW11bml0eS4gT0ZTIHdhcyBkZXZlbG9wZWQgaW4gYSBqb2ludCBwcm9qZWN0IG9mIHRoZSBOT0FBL05hdGlvbmFsIE9jZWFuIFNlcnZpY2UgKE5PUykvT2ZmaWNlIG9mIENvYXN0IFN1cnZleSwgdGhlIE5PQUEvTk9TL0NlbnRlciBmb3IgT3BlcmF0aW9uYWwgT2NlYW5vZ3JhcGhpYyBQcm9kdWN0cyBhbmQgU2VydmljZXMgKENPLU9QUyksIGFuZCB0aGUgTk9BQS9OYXRpb25hbCBXZWF0aGVyIFNlcnZpY2UgKE5XUykvTmF0aW9uYWwgQ2VudGVycyBmb3IgRW52aXJvbm1lbnRhbCBQcmVkaWN0aW9uIChOQ0VQKSBDZW50cmFsIE9wZXJhdGlvbnMgKE5DTykuIE9GUyBnZW5lcmF0ZXMgd2F0ZXIgbGV2ZWwsIHdhdGVyIGN1cnJlbnQsIHdhdGVyIHRlbXBlcmF0dXJlLCB3YXRlciBzYWxpbml0eSAoZXhjZXB0IGZvciB0aGUgR3JlYXQgTGFrZXMpIGFuZCB3aW5kIGNvbmRpdGlvbnMgbm93Y2FzdCBhbmQgZm9yZWNhc3QgZ3VpZGFuY2UgZm91ciB0aW1lcyBwZXIgZGF5LlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL25vYWEtb2ZzLXBkcy9yZWFkbWUuaHRtbFxuQ29udGFjdDogRm9yIHF1ZXN0aW9ucyByZWdhcmRpbmcgZGF0YSBjb250ZW50IG9yIHF1YWxpdHksIHZpc2l0IFt0aGUgTk9BQSBPRlMgc2l0ZV0oaHR0cHM6Ly90aWRlc2FuZGN1cnJlbnRzLm5vYWEuZ292L21vZGVscy5odG1sKS4gRm9yIGFueSBxdWVzdGlvbnMgcmVnYXJkaW5nIGRhdGEgZGVsaXZlcnkgbm90IGFzc29jaWF0ZWQgd2l0aCB0aGlzIHBsYXRmb3JtIG9yIGFueSBnZW5lcmFsIHF1ZXN0aW9ucyByZWdhcmRpbmcgdGhlIE5PQUEgQmlnIERhdGEgUHJvamVjdCwgZW1haWwgbm9hYS5iZHBAbm9hYS5nb3Zcbk1hbmFnZWRCeTogW05PQUFdKGh0dHBzOi8vd3d3Lm5vYWEuZ292LylcblVwZGF0ZUZyZXF1ZW5jeTogNCB0aW1lcyBhIGRheSwgZXZlcnkgNiBob3VycyBzdGFydGluZyBhdCBtaWRuaWdodCBhbmQgZ2VuZXJhdGVzIDYtaG91ciBub3djYXN0cyBhbmQgNDgtaG91ciBmb3JlY2FzdCBndWlkYW5jZVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25vYWFfb2ZzX3Bkcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25vYWEtb2ZzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25vYWFfb2ZzX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ub2FhX29mc19wZHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25vYWFfb2ZzX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ucmVsX3Bkc193dGtfd3RrX3RlY2hub19lY29ub21pY19weXd0a19kYXRhIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbnJlbF9wZHNfd3RrX3d0a190ZWNobm9fZWNvbm9taWNfcHl3dGtfZGF0YS5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ucmVsX3Bkc193dGtfd3RrX3RlY2hub19lY29ub21pY19weXd0a19kYXRhLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbnJlbC1wZHMtd3RrIEJ1Y2tldCB3aXRoIHByZWZpeD13dGstdGVjaG5vLWVjb25vbWljL3B5d3RrLWRhdGEvOiBOUkVMIFdpbmQgSW50ZWdyYXRpb24gTmF0aW9uYWwgRGF0YXNldCBvbiBBV1M6IFRlY2hvLWVjb25vbWljIHNvdXJjZSBmaWxlcyBieSBsb2NhdGlvbiBpbiBbSERGNV0oaHR0cHM6Ly9wb3J0YWwuaGRmZ3JvdXAub3JnL2Rpc3BsYXkvSERGNSkgZm9ybWF0IiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbnJlbC1wZHMtd3RrIGJ1Y2tldCBhdCBodHRwczovL25yZWwtcGRzLXd0ay5zMy51cy13ZXN0LTIuYW1hem9uYXdzLmNvbS8gd2l0aCBwcmVmaXg9d3RrLXRlY2huby1lY29ub21pYy9weXd0ay1kYXRhLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBOUkVMIFdpbmQgSW50ZWdyYXRpb24gTmF0aW9uYWwgRGF0YXNldCBvbiBBV1Ncbk5hbWUyOiBUZWNoby1lY29ub21pYyBzb3VyY2UgZmlsZXMgYnkgbG9jYXRpb24gaW4gW0hERjVdKGh0dHBzOi8vcG9ydGFsLmhkZmdyb3VwLm9yZy9kaXNwbGF5L0hERjUpIGZvcm1hdFxuRGVzY3JpcHRpb246IFRoZSBbV2luZCBJbnRlZ3JhdGlvbiBOYXRpb25hbCBEYXRhc2V0IChXSU5EKV0oaHR0cHM6Ly93d3cubnJlbC5nb3YvZ3JpZC93aW5kLXRvb2xraXQuaHRtbCkgaXMgYW4gdXBkYXRlIGFuZCBleHBhbnNpb24gb2YgdGhlIEVhc3Rlcm4gV2luZCBJbnRlZ3JhdGlvbiBEYXRhIFNldCBhbmQgV2VzdGVybiBXaW5kIEludGVncmF0aW9uIERhdGEgU2V0LiBJdCBzdXBwb3J0cyB0aGUgbmV4dCBnZW5lcmF0aW9uIG9mIHdpbmQgaW50ZWdyYXRpb24gc3R1ZGllcy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly93d3cubnJlbC5nb3YvZ3JpZC93aW5kLXRvb2xraXQuaHRtbFxuQ29udGFjdDogd2luZC10b29sa2l0QG5yZWwuZ292XG5NYW5hZ2VkQnk6IFtOYXRpb25hbCBSZW5ld2FibGUgRW5lcmd5IExhYm9yYXRvcnldKGh0dHBzOi8vd3d3Lm5yZWwuZ292LylcblVwZGF0ZUZyZXF1ZW5jeTogQXMgTmVlZGVkXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbnJlbF9wZHNfd3RrX3d0a190ZWNobm9fZWNvbm9taWNfcHl3dGtfZGF0YS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25yZWwtcGRzLXd0ay8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19ucmVsX3Bkc193dGtfd3RrX3RlY2hub19lY29ub21pY19weXd0a19kYXRhLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX25yZWxfcGRzX3d0a193dGtfdGVjaG5vX2Vjb25vbWljX3B5d3RrX2RhdGEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25yZWxfcGRzX3d0a193dGtfdGVjaG5vX2Vjb25vbWljX3B5d3RrX2RhdGEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbndtX2FyY2hpdmUiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ud21fYXJjaGl2ZS5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ud21fYXJjaGl2ZS8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG53bS1hcmNoaXZlIEJ1Y2tldDogTk9BQSBOYXRpb25hbCBXYXRlciBNb2RlbCBSZWFuYWx5c2lzOiBUaGUgY29tcGxldGUgYXJjaGl2ZSBvZiBOV00gZGF0YSB2ZXJzaW9uIDEuMi4iLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBud20tYXJjaGl2ZSBidWNrZXQgYXQgaHR0cHM6Ly9ud20tYXJjaGl2ZS5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogTk9BQSBOYXRpb25hbCBXYXRlciBNb2RlbCBSZWFuYWx5c2lzXG5OYW1lMjogVGhlIGNvbXBsZXRlIGFyY2hpdmUgb2YgTldNIGRhdGEgdmVyc2lvbiAxLjIuXG5EZXNjcmlwdGlvbjogVGhlIE5PQUEgTmF0aW9uYWwgV2F0ZXIgTW9kZWwgUmVhbmFseXNpcyBkYXRhc2V0IGNvbnRhaW5zIG91dHB1dCBmcm9tIG11bHRpLWRlY2FkZSByZXRyb3NwZWN0aXZlIHNpbXVsYXRpb25zLiBUaGVzZSBzaW11bGF0aW9ucyB1c2VkIG9ic2VydmVkIHJhaW5mYWxsIGFzIGlucHV0IGFuZCBpbmdlc3RlZCBvdGhlciByZXF1aXJlZCBtZXRlb3JvbG9naWNhbCBpbnB1dCBmaWVsZHMgZnJvbSBhIHdlYXRoZXIgcmVhbmFseXNpcyBkYXRhc2V0LiBUaGUgb3V0cHV0IGZyZXF1ZW5jeSBhbmQgZmllbGRzIGF2YWlsYWJsZSBpbiB0aGlzIGhpc3RvcmljYWwgTldNIGRhdGFzZXQgZGlmZmVyIGZyb20gdGhvc2UgY29udGFpbmVkIGluIHRoZSByZWFsLXRpbWUgZm9yZWNhc3QgbW9kZWwuIE9uZSBhcHBsaWNhdGlvbiBvZiB0aGlzIGRhdGFzZXQgaXMgdG8gcHJvdmlkZSBoaXN0b3JpY2FsIGNvbnRleHQgdG8gY3VycmVudCByZWFsLXRpbWUgc3RyZWFtZmxvdywgc29pbCBtb2lzdHVyZSBhbmQgc25vd3BhY2sgTldNIGNvbmRpdGlvbnMuIFRoZSByZWFuYWx5c2lzIGRhdGEgY2FuIGJlIHVzZWQgdG8gaW5mZXIgZmxvdyBmcmVxdWVuY2llcyBhbmQgcGVyZm9ybSB0ZW1wb3JhbCBhbmFseXNlcyB3aXRoIGhvdXJseSBzdHJlYW1mbG93IG91dHB1dCBhbmQgMy1ob3VybHkgbGFuZCBzdXJmYWNlIG91dHB1dC4gVGhlIGxvbmctdGVybSBkYXRhc2V0IGNhbiBhbHNvIGJlIHVzZWQgaW4gdGhlIGRldmVsb3BtZW50IG9mIGVuZCB1c2VyIGFwcGxpY2F0aW9ucyB3aGljaCByZXF1aXJlIGEgbG9uZyBiYXNlbGluZSBvZiBkYXRhIGZvciBzeXN0ZW0gdHJhaW5pbmcgb3IgdmVyaWZpY2F0aW9uIHB1cnBvc2VzLiBUaGlzIGRhdGFzZXQgY29udGFpbnMgb3V0cHV0IGZyb20gdHdvIHJldHJvc3BlY3RpdmUgc2ltdWxhdGlvbnMuICBDdXJyZW50bHkgdGhlcmUgYXJlIHR3byB2ZXJzaW9ucyBvZiB0aGUgZGF0YXNldDogQSAyNS15ZWFyIChKYW51YXJ5IDE5OTMgdGhyb3VnaCBEZWNlbWJlciAyMDE3KSByZXRyb3NwZWN0aXZlIHNpbXVsYXRpb24gdXNpbmcgdmVyc2lvbiAxLjIgb2YgdGhlIE5hdGlvbmFsIFdhdGVyIE1vZGVsLCBhbmQgYSAyNi15ZWFyIChKYW51YXJ5IDE5OTMgdGhyb3VnaCBEZWNlbWJlciAyMDE4KSByZXRyb3NwZWN0aXZlIHNpbXVsYXRpb24gdXNpbmcgdmVyc2lvbiAyLjAgb2YgdGhlIE5hdGlvbmFsIFdhdGVyIE1vZGVsLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL253bS1hcmNoaXZlL3JlYWRtZS5odG1sXG5Db250YWN0OiB8XG5NYW5hZ2VkQnk6IFtOT0FBXShodHRwczovL3d3dy5ub2FhLmdvdi8pXG5VcGRhdGVGcmVxdWVuY3k6IE5vIHVwZGF0ZXNcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19ud21fYXJjaGl2ZS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL253bS1hcmNoaXZlLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX253bV9hcmNoaXZlLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX253bV9hcmNoaXZlJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19ud21fYXJjaGl2ZSJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ueWNfdGxjIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbnljX3RsYy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ueWNfdGxjLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbnljLXRsYyBCdWNrZXQ6IE5ldyBZb3JrIENpdHkgVGF4aSBhbmQgTGltb3VzaW5lIENvbW1pc3Npb24gKFRMQykgVHJpcCBSZWNvcmQgRGF0YTogQ1NWIGZpbGVzIGNvbnRhaW5pbmcgTllDIFRMQyB0cmlwIGRhdGEuIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbnljLXRsYyBidWNrZXQgYXQgaHR0cHM6Ly9ueWMtdGxjLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBOZXcgWW9yayBDaXR5IFRheGkgYW5kIExpbW91c2luZSBDb21taXNzaW9uIChUTEMpIFRyaXAgUmVjb3JkIERhdGFcbk5hbWUyOiBDU1YgZmlsZXMgY29udGFpbmluZyBOWUMgVExDIHRyaXAgZGF0YS5cbkRlc2NyaXB0aW9uOiBEYXRhIG9mIHRyaXBzIHRha2VuIGJ5IHRheGlzIGFuZCBmb3ItaGlyZSB2ZWhpY2xlcyBpbiBOZXcgWW9yayBDaXR5LlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwOi8vd3d3Lm55Yy5nb3YvaHRtbC90bGMvaHRtbC9hYm91dC90cmlwX3JlY29yZF9kYXRhLnNodG1sXG5Db250YWN0OiByZXNlYXJjaEB0bGMubnljLmdvdlxuVXBkYXRlRnJlcXVlbmN5OiBBcyBzb29uIGFzIG5ldyBkYXRhIGlzIGF2YWlsYWJsZSB0byBiZSBzaGFyZWQgcHVibGljbHkuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbnljX3RsYy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL255Yy10bGMtdHJpcC1yZWNvcmRzLXBkcy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19ueWNfdGxjLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX255Y190bGMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX255Y190bGMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfb2ljcl9pY2djX21ldGFfbWV0YWRhdGEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19vaWNyX2ljZ2NfbWV0YV9tZXRhZGF0YS5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19vaWNyX2ljZ2NfbWV0YV9tZXRhZGF0YS8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG9pY3IuaWNnYy5tZXRhIEJ1Y2tldCB3aXRoIHByZWZpeD1tZXRhZGF0YS86IElDR0Mgb24gQVdTOiBUaGlzIHB1YmxpYyBBbWF6b24gUzMgYnVja2V0IGNvbnRhaW5zIGFuYWx5c2lzIG1ldGFkYXRhIGluIFhNTCBmb3JtYXQgZm9yIGdlbm9tZSBhbmFseXNpcyByZXN1bHRzLiBNb3JlIGluZm9ybWF0aW9uIGF0IGh0dHA6Ly9vaWNyLmljZ2MubWV0YS5zMy5hbWF6b25hd3MuY29tL21ldGFkYXRhL1JFQURNRSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG9pY3IuaWNnYy5tZXRhIGJ1Y2tldCBhdCBodHRwczovL29pY3IuaWNnYy5tZXRhLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyB3aXRoIHByZWZpeD1tZXRhZGF0YS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogSUNHQyBvbiBBV1Ncbk5hbWUyOiBUaGlzIHB1YmxpYyBBbWF6b24gUzMgYnVja2V0IGNvbnRhaW5zIGFuYWx5c2lzIG1ldGFkYXRhIGluIFhNTCBmb3JtYXQgZm9yIGdlbm9tZSBhbmFseXNpcyByZXN1bHRzLiBNb3JlIGluZm9ybWF0aW9uIGF0IGh0dHA6Ly9vaWNyLmljZ2MubWV0YS5zMy5hbWF6b25hd3MuY29tL21ldGFkYXRhL1JFQURNRVxuRGVzY3JpcHRpb246IFRoZSBJbnRlcm5hdGlvbmFsIENhbmNlciBHZW5vbWUgQ29uc29ydGl1bSAoSUNHQykgY29vcmRpbmF0ZXMgcHJvamVjdHMgd2l0aCB0aGUgY29tbW9uIGFpbSBvZiBhY2NlbGVyYXRpbmcgcmVzZWFyY2ggaW50byB0aGUgY2F1c2VzIGFuZCBjb250cm9sIG9mIGNhbmNlci4gVGhlIFBhbkNhbmNlciBBbmFseXNpcyBvZiBXaG9sZSBHZW5vbWVzIChQQ0FXRykgc3R1ZHkgaXMgYW4gaW50ZXJuYXRpb25hbCBjb2xsYWJvcmF0aW9uIHRvIGlkZW50aWZ5IGNvbW1vbiBwYXR0ZXJucyBvZiBtdXRhdGlvbiBpbiB3aG9sZSBnZW5vbWVzIGZyb20gSUNHQy4gTW9yZSB0aGFuIDIsNDAwIGNvbnNpc3RlbnRseSBhbmFseXplZCBnZW5vbWVzIGNvcnJlc3BvbmRpbmcgdG8gb3ZlciAxLDEwMCB1bmlxdWUgSUNHQyBkb25vcnMgYXJlIG5vdyBmcmVlbHkgYXZhaWxhYmxlIG9uIEFtYXpvbiBTMyB0byBjcmVkZW50aWFsZWQgcmVzZWFyY2hlcnMgc3ViamVjdCB0byBJQ0dDIGRhdGEgc2hhcmluZyBwb2xpY2llcy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kY2MuaWNnYy5vcmcvaWNnYy1pbi10aGUtY2xvdWQvYXdzXG5Db250YWN0OiBkY2Mtc3VwcG9ydEBpY2djLm9yZ1xuVXBkYXRlRnJlcXVlbmN5OiBOZXcgZGF0YSBpcyBhZGRlZCBhcyBzb29uIGFzIGl0IGlzIGF2YWlsYWJsZS5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19vaWNyX2ljZ2NfbWV0YV9tZXRhZGF0YS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2ljZ2MvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfb2ljcl9pY2djX21ldGFfbWV0YWRhdGEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfb2ljcl9pY2djX21ldGFfbWV0YWRhdGEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX29pY3JfaWNnY19tZXRhX21ldGFkYXRhIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX29vbmlfZGF0YSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX29vbmlfZGF0YS5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19vb25pX2RhdGEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBvb25pLWRhdGEgQnVja2V0OiBPcGVuIE9ic2VydmF0b3J5IG9mIE5ldHdvcmsgSW50ZXJmZXJlbmNlOiBTMyBidWNrZXQgd2l0aCBkYXRhIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgb29uaS1kYXRhIGJ1Y2tldCBhdCBodHRwczovL29vbmktZGF0YS5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogT3BlbiBPYnNlcnZhdG9yeSBvZiBOZXR3b3JrIEludGVyZmVyZW5jZVxuTmFtZTI6IFMzIGJ1Y2tldCB3aXRoIGRhdGFcbkRlc2NyaXB0aW9uOiBBIGZyZWUgc29mdHdhcmUsIGdsb2JhbCBvYnNlcnZhdGlvbiBuZXR3b3JrIGZvciBkZXRlY3RpbmcgY2Vuc29yc2hpcCwgc3VydmVpbGxhbmNlIGFuZCB0cmFmZmljIG1hbmlwdWxhdGlvbiBvbiB0aGUgaW50ZXJuZXQuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vb29uaS50b3Jwcm9qZWN0Lm9yZy9hYm91dC9cbkNvbnRhY3Q6IGh0dHBzOi8vb29uaS50b3Jwcm9qZWN0Lm9yZy9nZXQtaW52b2x2ZWQvXG5VcGRhdGVGcmVxdWVuY3k6IERhaWx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfb29uaV9kYXRhL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvb29uaS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19vb25pX2RhdGEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfb29uaV9kYXRhJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19vb25pX2RhdGEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfb3BlbmFxX2ZldGNoZXMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19vcGVuYXFfZmV0Y2hlcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19vcGVuYXFfZmV0Y2hlcy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG9wZW5hcS1mZXRjaGVzIEJ1Y2tldDogT3BlbkFROiBNaW51dGVseSBDU1ZzIG9mIGdsb2JhbCBhaXIgcXVhbGl0eSBmZXRjaGVkIGZyb20gc291cmNlcyBhbGwgb3ZlciB0aGUgd29ybGQiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBvcGVuYXEtZmV0Y2hlcyBidWNrZXQgYXQgaHR0cHM6Ly9vcGVuYXEtZmV0Y2hlcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogT3BlbkFRXG5OYW1lMjogTWludXRlbHkgQ1NWcyBvZiBnbG9iYWwgYWlyIHF1YWxpdHkgZmV0Y2hlZCBmcm9tIHNvdXJjZXMgYWxsIG92ZXIgdGhlIHdvcmxkXG5EZXNjcmlwdGlvbjogR2xvYmFsLCBhZ2dyZWdhdGVkIHBoeXNpY2FsIGFpciBxdWFsaXR5IGRhdGEgZnJvbSBwdWJsaWMgZGF0YSBzb3VyY2VzIHByb3ZpZGVkIGJ5IGdvdmVybm1lbnQsIHJlc2VhcmNoLWdyYWRlIGFuZCBvdGhlciBzb3VyY2VzLiBUaGVzZSBhd2Vzb21lIGdyb3VwcyBkbyB0aGUgaGFyZCB3b3JrIG9mIG1lYXN1cmluZyB0aGVzZSBkYXRhIGFuZCBwdWJsaWNseSBzaGFyaW5nIHRoZW0sIGFuZCBvdXIgY29tbXVuaXR5IG1ha2VzIHRoZW0gbW9yZSB1bml2ZXJzYWxseS1hY2Nlc3NpYmxlIHRvIGJvdGggaHVtYW5zIGFuZCBtYWNoaW5lcy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9vcGVuYXEub3JnXG5Db250YWN0OiBpbmZvQG9wZW5hcS5vcmdcbk1hbmFnZWRCeTogW09wZW5BUV0oaHR0cHM6Ly9vcGVuYXEub3JnKVxuVXBkYXRlRnJlcXVlbmN5OiBNaW51dGVseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX29wZW5hcV9mZXRjaGVzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvb3BlbmFxLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX29wZW5hcV9mZXRjaGVzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX29wZW5hcV9mZXRjaGVzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19vcGVuYXFfZmV0Y2hlcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19vcGVuY2l0eW1vZGVsIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfb3BlbmNpdHltb2RlbC5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19vcGVuY2l0eW1vZGVsLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgb3BlbmNpdHltb2RlbCBCdWNrZXQ6IE9wZW4gQ2l0eSBNb2RlbCAoT0NNKTogUHJvamVjdCBkYXRhIGZpbGVzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgb3BlbmNpdHltb2RlbCBidWNrZXQgYXQgaHR0cHM6Ly9vcGVuY2l0eW1vZGVsLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBPcGVuIENpdHkgTW9kZWwgKE9DTSlcbk5hbWUyOiBQcm9qZWN0IGRhdGEgZmlsZXNcbkRlc2NyaXB0aW9uOiBPcGVuIENpdHkgTW9kZWwgaXMgYW4gaW5pdGlhdGl2ZSB0byBwcm92aWRlIGNpdHlHTUwgZGF0YSBmb3IgYWxsIHRoZSBidWlsZGluZ3MgaW4gdGhlIFVuaXRlZCBTdGF0ZXMuIEJ5IHVzaW5nIG90aGVyIG9wZW4gZGF0YXNldHMgaW4gY29uanVuY3Rpb24gd2l0aCBvdXIgb3duIGNvZGUgYW5kIGFsZ29yaXRobXMgaXQgaXMgb3VyIGdvYWwgdG8gcHJvdmlkZSAzRCBnZW9tZXRyaWVzIGZvciBldmVyeSBVUyBidWlsZGluZy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9naXRodWIuY29tL29wZW5jaXR5bW9kZWwvb3BlbmNpdHltb2RlbFxuQ29udGFjdDogaHR0cHM6Ly9naXRodWIuY29tL29wZW5jaXR5bW9kZWwvb3BlbmNpdHltb2RlbCNjb250YWN0XG5VcGRhdGVGcmVxdWVuY3k6IFF1YXJ0ZXJseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX29wZW5jaXR5bW9kZWwvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9vcGVuY2l0eW1vZGVsLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX29wZW5jaXR5bW9kZWwucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfb3BlbmNpdHltb2RlbCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfb3BlbmNpdHltb2RlbCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19vcGVubmV1cm9fb3JnIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfb3Blbm5ldXJvX29yZy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19vcGVubmV1cm9fb3JnLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgb3Blbm5ldXJvLm9yZyBCdWNrZXQ6IE9wZW5OZXVybzogQWxsIGRhdGFzZXRzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgb3Blbm5ldXJvLm9yZyBidWNrZXQgYXQgaHR0cHM6Ly9vcGVubmV1cm8ub3JnLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBPcGVuTmV1cm9cbk5hbWUyOiBBbGwgZGF0YXNldHNcbkRlc2NyaXB0aW9uOiBPcGVuTmV1cm8gaXMgYSBkYXRhYmFzZSBvZiBvcGVubHktYXZhaWxhYmxlIGJyYWluIGltYWdpbmcgZGF0YS4gVGhlIGRhdGEgYXJlIHNoYXJlZCBhY2NvcmRpbmcgdG8gYSBDcmVhdGl2ZSBDb21tb25zIENDMCBsaWNlbnNlLCBwcm92aWRpbmcgYSBicm9hZCByYW5nZSBvZiBicmFpbiBpbWFnaW5nIGRhdGEgdG8gcmVzZWFyY2hlcnMgYW5kIGNpdGl6ZW4gc2NpZW50aXN0cyBhbGlrZS4gVGhlIGRhdGFiYXNlIHByaW1hcmlseSBmb2N1c2VzIG9uIGZ1bmN0aW9uYWwgbWFnbmV0aWMgcmVzb25hbmNlIGltYWdpbmcgKGZNUkkpIGRhdGEsIGJ1dCBhbHNvIGluY2x1ZGVzIG90aGVyIGltYWdpbmcgbW9kYWxpdGllcyBpbmNsdWRpbmcgc3RydWN0dXJhbCBhbmQgZGlmZnVzaW9uIE1SSSwgZWxlY3Ryb2VuY2VwaGFsb2dyYXBoeSAoRUVHKSwgYW5kIG1hZ25ldG9lbmNlcGhhbG9ncmFweSAoTUVHKS4gT3BlbmZNUkkgaXMgYSBwcm9qZWN0IG9mIHRoZSBbQ2VudGVyIGZvciBSZXByb2R1Y2libGUgTmV1cm9zY2llbmNlIGF0IFN0YW5mb3JkIFVuaXZlcnNpdHldKGh0dHA6Ly9yZXByb2R1Y2liaWxpdHkuc3RhbmZvcmQuZWR1KS4gRGV2ZWxvcG1lbnQgb2YgdGhlIE9wZW5OZXVybyByZXNvdXJjZSBoYXMgYmVlbiBmdW5kZWQgYnkgdGhlIE5hdGlvbmFsIFNjaWVuY2UgRm91bmRhdGlvbiwgTmF0aW9uYWwgSW5zdGl0dXRlIG9mIE1lbnRhbCBIZWFsdGgsIE5hdGlvbmFsIEluc3RpdHV0ZSBvbiBEcnVnIEFidXNlLCBhbmQgdGhlIExhdXJhIGFuZCBKb2huIEFybm9sZCBGb3VuZGF0aW9uLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwOi8vb3Blbm5ldXJvLm9yZ1xuQ29udGFjdDogU3VwcG9ydCBmb3JtIGF0IGh0dHBzOi8vb3Blbm5ldXJvLm9yZ1xuVXBkYXRlRnJlcXVlbmN5OiBOZXcgZGF0YXNldHMgZGVwb3NpdGVkIGV2ZXJ5IDQtNiBkYXlzXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfb3Blbm5ldXJvX29yZy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL29wZW5uZXVyby8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19vcGVubmV1cm9fb3JnLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX29wZW5uZXVyb19vcmcmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX29wZW5uZXVyb19vcmciXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfb3NtX3BkcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX29zbV9wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfb3NtX3Bkcy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG9zbS1wZHMgQnVja2V0OiBPcGVuU3RyZWV0TWFwIG9uIEFXUzogSW1hZ2VyeSBhbmQgbWV0YWRhdGEiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBvc20tcGRzIGJ1Y2tldCBhdCBodHRwczovL29zbS1wZHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE9wZW5TdHJlZXRNYXAgb24gQVdTXG5OYW1lMjogSW1hZ2VyeSBhbmQgbWV0YWRhdGFcbkRlc2NyaXB0aW9uOiBPU00gaXMgYSBmcmVlLCBlZGl0YWJsZSBtYXAgb2YgdGhlIHdvcmxkLCBjcmVhdGVkIGFuZCBtYWludGFpbmVkIGJ5IHZvbHVudGVlcnMuIFJlZ3VsYXIgT1NNIGRhdGEgYXJjaGl2ZXMgYXJlIG1hZGUgYXZhaWxhYmxlIGluIEFtYXpvbiBTMy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLm9wZW5kYXRhLmF3cy9vc20tcGRzL3JlYWRtZS5odG1sXG5Db250YWN0OiBodHRwczovL2dpdGh1Yi5jb20vbW9qb2RuYS9vc20tcGRzLXBpcGVsaW5lcy9pc3N1ZXNcblVwZGF0ZUZyZXF1ZW5jeTogRGF0YSBpcyB1cGRhdGVkIHdlZWtseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX29zbV9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9vc20vIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfb3NtX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19vc21fcGRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19vc21fcGRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX29zbWxyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfb3NtbHIuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfb3NtbHIvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBvc21sciBCdWNrZXQ6IE9wZW5TdHJlZXRNYXAgTGluZWFyIFJlZmVyZW5jaW5nOiBNYW5pZmVzdCBhbmQgZGF0YSBmaWxlcyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG9zbWxyIGJ1Y2tldCBhdCBodHRwczovL29zbWxyLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBPcGVuU3RyZWV0TWFwIExpbmVhciBSZWZlcmVuY2luZ1xuTmFtZTI6IE1hbmlmZXN0IGFuZCBkYXRhIGZpbGVzXG5EZXNjcmlwdGlvbjogT1NNTFIgYSBsaW5lYXIgcmVmZXJlbmNpbmcgc3lzdGVtIGJ1aWx0IG9uIHRvcCBvZiBPcGVuU3RyZWV0TWFwLiBPU00gaGFzIGdyZWF0IGluZm9ybWF0aW9uIGFib3V0IHJvYWRzIGFyb3VuZCB0aGUgd29ybGQgYW5kIHRoZWlyIGludGVyY29ubmVjdGlvbnMsIGJ1dCBpdCBsYWNrcyB0aGUgbWVhbnMgdG8gZ2l2ZSBhIHN0YWJsZSBpZGVudGlmaWVyIHRvIGEgc3RyZXRjaCBvZiByb2Fkd2F5LiBPU01MUiBwcm92aWRlcyBhIHN0YWJsZSBzZXQgb2YgbnVtZXJpY2FsIElEcyBmb3IgZXZlcnkgMSBraWxvbWV0ZXIgc3RyZXRjaCBvZiByb2Fkd2F5IGFyb3VuZCB0aGUgd29ybGQuIEluIHVyYmFuIGFyZWFzLCBPU01MUiBJRHMgYXJlIGF0dGFjaGVkIHRvIGVhY2ggYmxvY2sgb2Ygcm9hZHdheXMgYmV0d2VlbiBzaWduaWZpY2FudCBpbnRlcnNlY3Rpb25zLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2dpdGh1Yi5jb20vb3BlbnRyYWZmaWMvb3NtbHIvYmxvYi9tYXN0ZXIvZG9jcy9pbnRyby5tZFxuQ29udGFjdDogaHR0cHM6Ly9naXRodWIuY29tL29wZW50cmFmZmljL29zbWxyL2lzc3Vlc1xuVXBkYXRlRnJlcXVlbmN5OiBOZXcgZGF0YSBpcyBhZGRlZCBiYXNlZCBvbiBjb21tdW5pdHkgZmVlZGJhY2tcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19vc21sci9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL29zbWxyLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX29zbWxyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX29zbWxyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19vc21sciJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19xaWltZTJfZGF0YSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3FpaW1lMl9kYXRhLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX3FpaW1lMl9kYXRhLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgcWlpbWUyLWRhdGEgQnVja2V0OiBRSUlNRSAyIFVzZXIgVHV0b3JpYWwgRGF0YXNldHM6IFJlbmRlcmVkIGRvY3MgYW5kIHR1dG9yaWFsIGRhdGEsIGFzIGdlbmVyYXRlZCBieSBodHRwczovL2dpdGh1Yi5jb20vcWlpbWUyL2RvY3MiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBxaWltZTItZGF0YSBidWNrZXQgYXQgaHR0cHM6Ly9xaWltZTItZGF0YS5zMy51cy13ZXN0LTIuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogUUlJTUUgMiBVc2VyIFR1dG9yaWFsIERhdGFzZXRzXG5OYW1lMjogUmVuZGVyZWQgZG9jcyBhbmQgdHV0b3JpYWwgZGF0YSwgYXMgZ2VuZXJhdGVkIGJ5IGh0dHBzOi8vZ2l0aHViLmNvbS9xaWltZTIvZG9jc1xuRGVzY3JpcHRpb246IFFJSU1FIDIgaXMgYSBwb3dlcmZ1bCwgZXh0ZW5zaWJsZSwgYW5kIGRlY2VudHJhbGl6ZWQgbWljcm9iaW9tZSBhbmFseXNpcyBwYWNrYWdlIHdpdGggYSBmb2N1cyBvbiBkYXRhIGFuZCBhbmFseXNpcyB0cmFuc3BhcmVuY3kuIFFJSU1FIDIgZW5hYmxlcyByZXNlYXJjaGVycyB0byBzdGFydCBhbiBhbmFseXNpcyB3aXRoIHJhdyBETkEgc2VxdWVuY2UgZGF0YSBhbmQgZmluaXNoIHdpdGggcHVibGljYXRpb24tcXVhbGl0eSBmaWd1cmVzIGFuZCBzdGF0aXN0aWNhbCByZXN1bHRzLiBUaGlzIGRhdGFzZXQgY29udGFpbnMgdGhlIHVzZXIgZG9jcyAoYW5kIHJlbGF0ZWQgZGF0YXNldHMpIGZvciBRSUlNRSAyLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3MucWlpbWUyLm9yZ1xuQ29udGFjdDogaHR0cHM6Ly9mb3J1bS5xaWltZTIub3JnXG5NYW5hZ2VkQnk6IFRoZSBRSUlNRSAyIERldmVsb3BtZW50IFRlYW1cblVwZGF0ZUZyZXF1ZW5jeTogUXVhcnRlcmx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfcWlpbWUyX2RhdGEvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9xaWltZTIvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfcWlpbWUyX2RhdGEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfcWlpbWUyX2RhdGEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX3FpaW1lMl9kYXRhIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3NhZmVjYXN0X29wZW5kYXRhX3B1YmxpY191c19lYXN0XzEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19zYWZlY2FzdF9vcGVuZGF0YV9wdWJsaWNfdXNfZWFzdF8xLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX3NhZmVjYXN0X29wZW5kYXRhX3B1YmxpY191c19lYXN0XzEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBzYWZlY2FzdC1vcGVuZGF0YS1wdWJsaWMtdXMtZWFzdC0xIEJ1Y2tldDogU2FmZWNhc3Q6IEJ1bGsgZXhwb3J0cyBvZiBhaXIgYW5kIHJhZGlhdGlvbiBtZWFzdXJlbWVudHMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBzYWZlY2FzdC1vcGVuZGF0YS1wdWJsaWMtdXMtZWFzdC0xIGJ1Y2tldCBhdCBodHRwczovL3NhZmVjYXN0LW9wZW5kYXRhLXB1YmxpYy11cy1lYXN0LTEuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IFNhZmVjYXN0XG5OYW1lMjogQnVsayBleHBvcnRzIG9mIGFpciBhbmQgcmFkaWF0aW9uIG1lYXN1cmVtZW50c1xuRGVzY3JpcHRpb246IEFuIG9uZ29pbmcgY29sbGVjdGlvbiBvZiByYWRpYXRpb24gYW5kIGFpciBxdWFsaXR5IG1lYXN1cmVtZW50cyB0YWtlbiBieSBkZXZpY2VzIGludm9sdmVkIGluIHRoZSBTYWZlY2FzdCBwcm9qZWN0LlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2dpdGh1Yi5jb20vU2FmZWNhc3Qvc2FmZWNhc3RhcGkvd2lraS9EYXRhLVNldHNcbkNvbnRhY3Q6IGh0dHBzOi8vZ3JvdXBzLmdvb2dsZS5jb20vZm9ydW0vIyFmb3J1bS9zYWZlY2FzdC1kZXZpY2VzXG5NYW5hZ2VkQnk6IFtTYWZlY2FzdF0oaHR0cHM6Ly9zYWZlY2FzdC5vcmcvKVxuVXBkYXRlRnJlcXVlbmN5OiBDb250aW51b3VzXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfc2FmZWNhc3Rfb3BlbmRhdGFfcHVibGljX3VzX2Vhc3RfMS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL3NhZmVjYXN0LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX3NhZmVjYXN0X29wZW5kYXRhX3B1YmxpY191c19lYXN0XzEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfc2FmZWNhc3Rfb3BlbmRhdGFfcHVibGljX3VzX2Vhc3RfMSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfc2FmZWNhc3Rfb3BlbmRhdGFfcHVibGljX3VzX2Vhc3RfMSJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczFfbDFjIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfc2VudGluZWxfaW52ZW50b3J5X3NlbnRpbmVsX3MxX2wxYy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczFfbDFjLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgc2VudGluZWwtaW52ZW50b3J5IEJ1Y2tldCB3aXRoIHByZWZpeD1zZW50aW5lbC1zMS1sMWMvOiBTZW50aW5lbC0xOiBbUzMgSW52ZW50b3J5XShodHRwczovL2RvY3MuYXdzLmFtYXpvbi5jb20vQW1hem9uUzMvbGF0ZXN0L2Rldi9zdG9yYWdlLWludmVudG9yeS5odG1sI3N0b3JhZ2UtaW52ZW50b3J5LWNvbnRlbnRzKSBmaWxlcyBmb3IgTDFDIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgc2VudGluZWwtaW52ZW50b3J5IGJ1Y2tldCBhdCBodHRwczovL3NlbnRpbmVsLWludmVudG9yeS5zMy5ldS1jZW50cmFsLTEuYW1hem9uYXdzLmNvbS8gd2l0aCBwcmVmaXg9c2VudGluZWwtczEtbDFjLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBTZW50aW5lbC0xXG5OYW1lMjogW1MzIEludmVudG9yeV0oaHR0cHM6Ly9kb2NzLmF3cy5hbWF6b24uY29tL0FtYXpvblMzL2xhdGVzdC9kZXYvc3RvcmFnZS1pbnZlbnRvcnkuaHRtbCNzdG9yYWdlLWludmVudG9yeS1jb250ZW50cykgZmlsZXMgZm9yIEwxQ1xuRGVzY3JpcHRpb246IFtTZW50aW5lbC0xXShodHRwczovL3NlbnRpbmVsLmVzYS5pbnQvd2ViL3NlbnRpbmVsL21pc3Npb25zL3NlbnRpbmVsLTEpIGlzIGEgcGFpciBvZiBFdXJvcGVhbiByYWRhciBpbWFnaW5nIChTQVIpIHNhdGVsbGl0ZXMgbGF1bmNoZWQgaW4gMjAxNCBhbmQgMjAxNi4gSXRzIDYgZGF5cyByZXZpc2l0IGN5Y2xlIGFuZCBhYmlsaXR5IHRvIG9ic2VydmUgdGhyb3VnaCBjbG91ZHMgbWFrZXMgaXQgcGVyZmVjdCBmb3Igc2VhIGFuZCBsYW5kIG1vbml0b3JpbmcsIGVtZXJnZW5jeSByZXNwb25zZSBkdWUgdG8gZW52aXJvbm1lbnRhbCBkaXNhc3RlcnMsIGFuZCBlY29ub21pYyBhcHBsaWNhdGlvbnMuIEdSRCBkYXRhIGlzIGF2YWlsYWJsZSBnbG9iYWxseSBzaW5jZSBKYW51YXJ5IDIwMTcuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vcm9kYS5zZW50aW5lbC1odWIuY29tL3NlbnRpbmVsLXMxLWwxYy9HUkQvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IGh0dHBzOi8vZm9ydW0uc2VudGluZWwtaHViLmNvbS9jL2F3cy1zZW50aW5lbFxuTWFuYWdlZEJ5OiBbU2luZXJnaXNlXShodHRwczovL3d3dy5zaW5lcmdpc2UuY29tLylcblVwZGF0ZUZyZXF1ZW5jeTogTmV3IFNlbnRpbmVsIGRhdGEgYXJlIGFkZGVkIHJlZ3VsYXJseSwgdXN1YWxseSB3aXRoaW4gZmV3IGhvdXJzIGFmdGVyIHRoZXkgYXJlIGF2YWlsYWJsZSBvbiBDb3Blcm5pY3VzIE9wZW5IdWIuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfc2VudGluZWxfaW52ZW50b3J5X3NlbnRpbmVsX3MxX2wxYy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL3NlbnRpbmVsLTEvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfc2VudGluZWxfaW52ZW50b3J5X3NlbnRpbmVsX3MxX2wxYy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczFfbDFjJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczFfbDFjIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3NlbnRpbmVsX2ludmVudG9yeV9zZW50aW5lbF9zMl9sMWMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczJfbDFjLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX3NlbnRpbmVsX2ludmVudG9yeV9zZW50aW5lbF9zMl9sMWMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBzZW50aW5lbC1pbnZlbnRvcnkgQnVja2V0IHdpdGggcHJlZml4PXNlbnRpbmVsLXMyLWwxYy86IFNlbnRpbmVsLTI6IFtTMyBJbnZlbnRvcnldKGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9BbWF6b25TMy9sYXRlc3QvZGV2L3N0b3JhZ2UtaW52ZW50b3J5Lmh0bWwjc3RvcmFnZS1pbnZlbnRvcnktY29udGVudHMpIGZpbGVzIGZvciBMMUMgKE9SQyBhbmQgQ1NWKSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIHNlbnRpbmVsLWludmVudG9yeSBidWNrZXQgYXQgaHR0cHM6Ly9zZW50aW5lbC1pbnZlbnRvcnkuczMuZXUtY2VudHJhbC0xLmFtYXpvbmF3cy5jb20vIHdpdGggcHJlZml4PXNlbnRpbmVsLXMyLWwxYy8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogU2VudGluZWwtMlxuTmFtZTI6IFtTMyBJbnZlbnRvcnldKGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9BbWF6b25TMy9sYXRlc3QvZGV2L3N0b3JhZ2UtaW52ZW50b3J5Lmh0bWwjc3RvcmFnZS1pbnZlbnRvcnktY29udGVudHMpIGZpbGVzIGZvciBMMUMgKE9SQyBhbmQgQ1NWKVxuRGVzY3JpcHRpb246IFRoZSBbU2VudGluZWwtMiBtaXNzaW9uXShodHRwczovL3NlbnRpbmVsLmVzYS5pbnQvd2ViL3NlbnRpbmVsL21pc3Npb25zL3NlbnRpbmVsLTIpIGlzIGEgbGFuZCBtb25pdG9yaW5nIGNvbnN0ZWxsYXRpb24gb2YgdHdvIHNhdGVsbGl0ZXMgdGhhdCBwcm92aWRlIGhpZ2ggcmVzb2x1dGlvbiBvcHRpY2FsIGltYWdlcnkgYW5kIHByb3ZpZGUgY29udGludWl0eSBmb3IgdGhlIGN1cnJlbnQgU1BPVCBhbmQgTGFuZHNhdCBtaXNzaW9ucy4gVGhlIG1pc3Npb24gcHJvdmlkZXMgYSBnbG9iYWwgY292ZXJhZ2Ugb2YgdGhlIEVhcnRoJ3MgbGFuZCBzdXJmYWNlIGV2ZXJ5IDUgZGF5cywgbWFraW5nIHRoZSBkYXRhIG9mIGdyZWF0IHVzZSBpbiBvbi1nb2luZyBzdHVkaWVzLiBMMUMgZGF0YSBhcmUgYXZhaWxhYmxlIGZyb20gSnVuZSAyMDE1IGdsb2JhbGx5LiBMMkEgZGF0YSBhcmUgYXZhaWxhYmxlIGZyb20gQXByaWwgMjAxNyBvdmVyIHdpZGVyIEV1cm9wZSByZWdpb24gYW5kIGdsb2JhbGx5IHNpbmNlIERlY2VtYmVyIDIwMTguXG5cbkRvY3VtZW50YXRpb246IERvY3VtZW50YXRpb24gaXMgYXZhaWxhYmxlIGZvciBbU2VudGluZWwtMiBMMUNdKGh0dHBzOi8vcm9kYS5zZW50aW5lbC1odWIuY29tL3NlbnRpbmVsLXMyLWwxYy9yZWFkbWUuaHRtbCkgYW5kIFtTZW50aW5lbC0yIEwyQV0oaHR0cHM6Ly9yb2RhLnNlbnRpbmVsLWh1Yi5jb20vc2VudGluZWwtczItbDJhL3JlYWRtZS5odG1sKS5cbkNvbnRhY3Q6IGh0dHBzOi8vZm9ydW0uc2VudGluZWwtaHViLmNvbS9jL2F3cy1zZW50aW5lbFxuTWFuYWdlZEJ5OiBbU2luZXJnaXNlXShodHRwczovL3d3dy5zaW5lcmdpc2UuY29tLylcblVwZGF0ZUZyZXF1ZW5jeTogTmV3IFNlbnRpbmVsIGRhdGEgYXJlIGFkZGVkIHJlZ3VsYXJseSwgdXN1YWxseSB3aXRoaW4gZmV3IGhvdXJzIGFmdGVyIHRoZXkgYXJlIGF2YWlsYWJsZSBvbiBDb3Blcm5pY3VzIE9wZW5IdWIuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfc2VudGluZWxfaW52ZW50b3J5X3NlbnRpbmVsX3MyX2wxYy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL3NlbnRpbmVsLTIvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfc2VudGluZWxfaW52ZW50b3J5X3NlbnRpbmVsX3MyX2wxYy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczJfbDFjJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczJfbDFjIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3NlbnRpbmVsX2ludmVudG9yeV9zZW50aW5lbF9zMl9sMmEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczJfbDJhLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX3NlbnRpbmVsX2ludmVudG9yeV9zZW50aW5lbF9zMl9sMmEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBzZW50aW5lbC1pbnZlbnRvcnkgQnVja2V0IHdpdGggcHJlZml4PXNlbnRpbmVsLXMyLWwyYS86IFNlbnRpbmVsLTI6IFtTMyBJbnZlbnRvcnldKGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9BbWF6b25TMy9sYXRlc3QvZGV2L3N0b3JhZ2UtaW52ZW50b3J5Lmh0bWwjc3RvcmFnZS1pbnZlbnRvcnktY29udGVudHMpIGZpbGVzIGZvciBMMkEgKE9SQyBhbmQgQ1NWKSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIHNlbnRpbmVsLWludmVudG9yeSBidWNrZXQgYXQgaHR0cHM6Ly9zZW50aW5lbC1pbnZlbnRvcnkuczMuZXUtY2VudHJhbC0xLmFtYXpvbmF3cy5jb20vIHdpdGggcHJlZml4PXNlbnRpbmVsLXMyLWwyYS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogU2VudGluZWwtMlxuTmFtZTI6IFtTMyBJbnZlbnRvcnldKGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9BbWF6b25TMy9sYXRlc3QvZGV2L3N0b3JhZ2UtaW52ZW50b3J5Lmh0bWwjc3RvcmFnZS1pbnZlbnRvcnktY29udGVudHMpIGZpbGVzIGZvciBMMkEgKE9SQyBhbmQgQ1NWKVxuRGVzY3JpcHRpb246IFRoZSBbU2VudGluZWwtMiBtaXNzaW9uXShodHRwczovL3NlbnRpbmVsLmVzYS5pbnQvd2ViL3NlbnRpbmVsL21pc3Npb25zL3NlbnRpbmVsLTIpIGlzIGEgbGFuZCBtb25pdG9yaW5nIGNvbnN0ZWxsYXRpb24gb2YgdHdvIHNhdGVsbGl0ZXMgdGhhdCBwcm92aWRlIGhpZ2ggcmVzb2x1dGlvbiBvcHRpY2FsIGltYWdlcnkgYW5kIHByb3ZpZGUgY29udGludWl0eSBmb3IgdGhlIGN1cnJlbnQgU1BPVCBhbmQgTGFuZHNhdCBtaXNzaW9ucy4gVGhlIG1pc3Npb24gcHJvdmlkZXMgYSBnbG9iYWwgY292ZXJhZ2Ugb2YgdGhlIEVhcnRoJ3MgbGFuZCBzdXJmYWNlIGV2ZXJ5IDUgZGF5cywgbWFraW5nIHRoZSBkYXRhIG9mIGdyZWF0IHVzZSBpbiBvbi1nb2luZyBzdHVkaWVzLiBMMUMgZGF0YSBhcmUgYXZhaWxhYmxlIGZyb20gSnVuZSAyMDE1IGdsb2JhbGx5LiBMMkEgZGF0YSBhcmUgYXZhaWxhYmxlIGZyb20gQXByaWwgMjAxNyBvdmVyIHdpZGVyIEV1cm9wZSByZWdpb24gYW5kIGdsb2JhbGx5IHNpbmNlIERlY2VtYmVyIDIwMTguXG5cbkRvY3VtZW50YXRpb246IERvY3VtZW50YXRpb24gaXMgYXZhaWxhYmxlIGZvciBbU2VudGluZWwtMiBMMUNdKGh0dHBzOi8vcm9kYS5zZW50aW5lbC1odWIuY29tL3NlbnRpbmVsLXMyLWwxYy9yZWFkbWUuaHRtbCkgYW5kIFtTZW50aW5lbC0yIEwyQV0oaHR0cHM6Ly9yb2RhLnNlbnRpbmVsLWh1Yi5jb20vc2VudGluZWwtczItbDJhL3JlYWRtZS5odG1sKS5cbkNvbnRhY3Q6IGh0dHBzOi8vZm9ydW0uc2VudGluZWwtaHViLmNvbS9jL2F3cy1zZW50aW5lbFxuTWFuYWdlZEJ5OiBbU2luZXJnaXNlXShodHRwczovL3d3dy5zaW5lcmdpc2UuY29tLylcblVwZGF0ZUZyZXF1ZW5jeTogTmV3IFNlbnRpbmVsIGRhdGEgYXJlIGFkZGVkIHJlZ3VsYXJseSwgdXN1YWxseSB3aXRoaW4gZmV3IGhvdXJzIGFmdGVyIHRoZXkgYXJlIGF2YWlsYWJsZSBvbiBDb3Blcm5pY3VzIE9wZW5IdWIuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfc2VudGluZWxfaW52ZW50b3J5X3NlbnRpbmVsX3MyX2wyYS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL3NlbnRpbmVsLTIvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfc2VudGluZWxfaW52ZW50b3J5X3NlbnRpbmVsX3MyX2wyYS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczJfbDJhJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczJfbDJhIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3NlbnRpbmVsMV9zbGNfc2Vhc2lhX3BkcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3NlbnRpbmVsMV9zbGNfc2Vhc2lhX3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19zZW50aW5lbDFfc2xjX3NlYXNpYV9wZHMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBzZW50aW5lbDEtc2xjLXNlYXNpYS1wZHMgQnVja2V0OiBTZW50aW5lbC0xIFNMQyBkYXRhc2V0IGZvciBTb3V0aCBhbmQgU291dGhlYXN0IEFzaWEsIFRhaXdhbiwgYW5kIEphcGFuOiBQdWJsaWMgYWNjZXNzIHRvIFNlbnRpbmVsLTEgU0xDIElXIHNjZW5lcyBvdmVyIFNvdXRoIGFuZCBTb3V0aGVhc3QgQXNpYSwgVGFpd2FuIGFuZCBKYXBhbiIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIHNlbnRpbmVsMS1zbGMtc2Vhc2lhLXBkcyBidWNrZXQgYXQgaHR0cHM6Ly9zZW50aW5lbDEtc2xjLXNlYXNpYS1wZHMuczMuYXAtc291dGhlYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogU2VudGluZWwtMSBTTEMgZGF0YXNldCBmb3IgU291dGggYW5kIFNvdXRoZWFzdCBBc2lhLCBUYWl3YW4sIGFuZCBKYXBhblxuTmFtZTI6IFB1YmxpYyBhY2Nlc3MgdG8gU2VudGluZWwtMSBTTEMgSVcgc2NlbmVzIG92ZXIgU291dGggYW5kIFNvdXRoZWFzdCBBc2lhLCBUYWl3YW4gYW5kIEphcGFuXG5EZXNjcmlwdGlvbjogVGhlIFMxIFNpbmdsZSBMb29rIENvbXBsZXggKFNMQykgZGF0YXNldCBjb250YWlucyBTeW50aGV0aWMgQXBlcnR1cmUgUmFkYXIgKFNBUikgZGF0YSBpbiB0aGUgQy1CYW5kIHdhdmVsZW5ndGguIFRoZSBTQVIgc2Vuc29ycyBhcmUgaW5zdGFsbGVkIG9uIGEgdHdvLXNhdGVsbGl0ZSAoU2VudGluZWwtMUEgYW5kIFNlbnRpbmVsLTFCKSBjb25zdGVsbGF0aW9uIG9yYml0aW5nIHRoZSBFYXJ0aCB3aXRoIGEgY29tYmluZWQgcmV2aXNpdCB0aW1lIG9mIHNpeCBkYXlzLCBvcGVyYXRlZCBieSB0aGUgRXVyb3BlYW4gU3BhY2UgQWdlbmN5LiBUaGUgUzEgU0xDIGRhdGEgYXJlIGEgTGV2ZWwtMSBwcm9kdWN0IHRoYXQgY29sbGVjdHMgcmFkYXIgYW1wbGl0dWRlIGFuZCBwaGFzZSBpbmZvcm1hdGlvbiBpbiBhbGwtd2VhdGhlciwgZGF5IG9yIG5pZ2h0IGNvbmRpdGlvbnMsIHdoaWNoIGlzIGlkZWFsIGZvciBzdHVkeWluZyBuYXR1cmFsIGhhemFyZHMgYW5kIGVtZXJnZW5jeSByZXNwb25zZSwgbGFuZCBhcHBsaWNhdGlvbnMsIG9pbCBzcGlsbCBtb25pdG9yaW5nLCBzZWEtaWNlIGNvbmRpdGlvbnMsIGFuZCBhc3NvY2lhdGVkIGNsaW1hdGUgY2hhbmdlIGVmZmVjdHMuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZ2l0aHViLmNvbS9lYXJ0aG9ic2VydmF0b3J5L3NlbnRpbmVsMS1vcGRzL1xuQ29udGFjdDogaHR0cHM6Ly9naXRodWIuY29tL2VhcnRob2JzZXJ2YXRvcnkvc2VudGluZWwxLW9wZHMvXG5NYW5hZ2VkQnk6IFtFYXJ0aCBPYnNlcnZhdG9yeSBvZiBTaW5nYXBvcmUsIE5hbnlhbmcgVGVjaG5vbG9naWNhbCBVbml2ZXJzaXR5XShodHRwczovL2VhcnRob2JzZXJ2YXRvcnkuc2cpXG5VcGRhdGVGcmVxdWVuY3k6IFMxIFNMQyBkYXRhIGZvciB0aGUgcmVnaW9uIG9mIGludGVyZXN0IHdpbGwgYmUgdXBkYXRlZCByZWd1bGFybHksIGFzIGl0IGJlY29tZXMgYXZhaWxhYmxlIG9uIHRoZSBBbGFza2EgU2F0ZWxsaXRlIEZhY2lsaXR5IGVuZHBvaW50LlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX3NlbnRpbmVsMV9zbGNfc2Vhc2lhX3Bkcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL3NlbnRpbmVsMS1zbGMtc2Vhc2lhLXBkcy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19zZW50aW5lbDFfc2xjX3NlYXNpYV9wZHMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfc2VudGluZWwxX3NsY19zZWFzaWFfcGRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19zZW50aW5lbDFfc2xjX3NlYXNpYV9wZHMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfc2lsb19vcGVuX2RhdGEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19zaWxvX29wZW5fZGF0YS5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19zaWxvX29wZW5fZGF0YS8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIHNpbG8tb3Blbi1kYXRhIEJ1Y2tldDogU0lMTyBjbGltYXRlIGRhdGEgb24gQVdTOiBTSUxPIG9wZW4gZGF0YSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIHNpbG8tb3Blbi1kYXRhIGJ1Y2tldCBhdCBodHRwczovL3NpbG8tb3Blbi1kYXRhLnMzLmFwLXNvdXRoZWFzdC0yLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IFNJTE8gY2xpbWF0ZSBkYXRhIG9uIEFXU1xuTmFtZTI6IFNJTE8gb3BlbiBkYXRhXG5EZXNjcmlwdGlvbjogW1NJTE9dKGh0dHBzOi8vd3d3LmxvbmdwYWRkb2NrLnFsZC5nb3YuYXUvc2lsbykgaXMgYSBkYXRhYmFzZSBvZiBBdXN0cmFsaWFuIFtjbGltYXRlIGRhdGFdKGh0dHBzOi8vd3d3LmxvbmdwYWRkb2NrLnFsZC5nb3YuYXUvc2lsby9hYm91dC9jbGltYXRlLXZhcmlhYmxlcykgZnJvbSAxODg5IHRvIHRoZSBwcmVzZW50LiBJdCBwcm92aWRlcyBjb250aW51b3VzLCBkYWlseSB0aW1lLXN0ZXAgW2RhdGEgcHJvZHVjdHNdKGh0dHBzOi8vd3d3LmxvbmdwYWRkb2NrLnFsZC5nb3YuYXUvc2lsby9hYm91dC9kYXRhLXByb2R1Y3RzKSBpbiByZWFkeS10by11c2UgW2Zvcm1hdHNdKGh0dHBzOi8vd3d3LmxvbmdwYWRkb2NrLnFsZC5nb3YuYXUvc2lsby9hYm91dC9maWxlLWZvcm1hdHMtYW5kLXNhbXBsZXMpIGZvciByZXNlYXJjaCBhbmQgb3BlcmF0aW9uYWwgYXBwbGljYXRpb25zLiBHcmlkZGVkIFNJTE8gZGF0YSBpbiBhbm51YWwgTmV0Q0RGIGZvcm1hdCBhcmUgb24gQVdTLiBQb2ludCBkYXRhIGFyZSBhdmFpbGFibGUgZnJvbSB0aGUgW1NJTE8gd2Vic2l0ZV0oaHR0cHM6Ly93d3cubG9uZ3BhZGRvY2sucWxkLmdvdi5hdS9zaWxvLykuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vd3d3LmxvbmdwYWRkb2NrLnFsZC5nb3YuYXUvc2lsby9ncmlkZGVkLWRhdGFcbkNvbnRhY3Q6IGh0dHBzOi8vd3d3LmxvbmdwYWRkb2NrLnFsZC5nb3YuYXUvc2lsby9jb250YWN0LXVzXG5NYW5hZ2VkQnk6IFF1ZWVuc2xhbmQgR292ZXJubWVudFxuVXBkYXRlRnJlcXVlbmN5OiBEYWlseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX3NpbG9fb3Blbl9kYXRhL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvc2lsby8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19zaWxvX29wZW5fZGF0YS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19zaWxvX29wZW5fZGF0YSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfc2lsb19vcGVuX2RhdGEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfc29mdHdhcmVoZXJpdGFnZSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3NvZnR3YXJlaGVyaXRhZ2UuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfc29mdHdhcmVoZXJpdGFnZS8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIHNvZnR3YXJlaGVyaXRhZ2UgQnVja2V0OiBTb2Z0d2FyZSBIZXJpdGFnZSBHcmFwaCBEYXRhc2V0OiBTb2Z0d2FyZSBIZXJpdGFnZSBHcmFwaCBEYXRhc2V0IiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgc29mdHdhcmVoZXJpdGFnZSBidWNrZXQgYXQgaHR0cHM6Ly9zb2Z0d2FyZWhlcml0YWdlLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBTb2Z0d2FyZSBIZXJpdGFnZSBHcmFwaCBEYXRhc2V0XG5OYW1lMjogU29mdHdhcmUgSGVyaXRhZ2UgR3JhcGggRGF0YXNldFxuRGVzY3JpcHRpb246IFtTb2Z0d2FyZSBIZXJpdGFnZV0oaHR0cHM6Ly93d3cuc29mdHdhcmVoZXJpdGFnZS5vcmcvKSBpcyB0aGUgbGFyZ2VzdCBleGlzdGluZyBwdWJsaWMgYXJjaGl2ZSBvZiBzb2Z0d2FyZSBzb3VyY2UgY29kZSBhbmQgYWNjb21wYW55aW5nIGRldmVsb3BtZW50IGhpc3RvcnkuIFRoZSBTb2Z0d2FyZSBIZXJpdGFnZSBHcmFwaCBEYXRhc2V0IGlzIGEgZnVsbHkgZGVkdXBsaWNhdGVkIE1lcmtsZSBEQUcgcmVwcmVzZW50YXRpb24gb2YgdGhlIFNvZnR3YXJlIEhlcml0YWdlIGFyY2hpdmUuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vd2lraS5zb2Z0d2FyZWhlcml0YWdlLm9yZy93aWtpL0dyYXBoX0RhdGFzZXRfb25fQW1hem9uX0F0aGVuYVxuQ29udGFjdDogc3doLWRldmVsQGlucmlhLmZyXG5VcGRhdGVGcmVxdWVuY3k6IERhdGEgaXMgdXBkYXRlZCB5ZWFybHlcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19zb2Z0d2FyZWhlcml0YWdlL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvc29mdHdhcmUtaGVyaXRhZ2UvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfc29mdHdhcmVoZXJpdGFnZS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19zb2Z0d2FyZWhlcml0YWdlJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19zb2Z0d2FyZWhlcml0YWdlIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3NwYWNlbmV0X2RhdGFzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19zcGFjZW5ldF9kYXRhc2V0LmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX3NwYWNlbmV0X2RhdGFzZXQvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBzcGFjZW5ldC1kYXRhc2V0IEJ1Y2tldDogU3BhY2VOZXQ6IEltYWdlcnkgYW5kIG1ldGFkYXRhIGluIGEgUzMgYnVja2V0IiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgc3BhY2VuZXQtZGF0YXNldCBidWNrZXQgYXQgaHR0cHM6Ly9zcGFjZW5ldC1kYXRhc2V0LnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBTcGFjZU5ldFxuTmFtZTI6IEltYWdlcnkgYW5kIG1ldGFkYXRhIGluIGEgUzMgYnVja2V0XG5EZXNjcmlwdGlvbjogU3BhY2VOZXQsIGxhdW5jaGVkIGluIEF1Z3VzdCAyMDE2IGFzIGFuIG9wZW4gaW5ub3ZhdGlvbiBwcm9qZWN0IG9mZmVyaW5nIGEgcmVwb3NpdG9yeSBvZiBmcmVlbHkgYXZhaWxhYmxlIGltYWdlcnkgd2l0aCBjby1yZWdpc3RlcmVkIG1hcCBmZWF0dXJlcy4gQmVmb3JlIFNwYWNlTmV0LCBjb21wdXRlciB2aXNpb24gcmVzZWFyY2hlcnMgaGFkICAgbWluaW1hbCBvcHRpb25zIHRvIG9idGFpbiBmcmVlLCBwcmVjaXNpb24tbGFiZWxlZCwgYW5kIGhpZ2gtcmVzb2x1dGlvbiBzYXRlbGxpdGUgaW1hZ2VyeS4gVG9kYXksIFNwYWNlTmV0IGhvc3RzIGRhdGFzZXRzIGRldmVsb3BlZCBieSBpdHMgb3duIHRlYW0sIGFsb25nIHdpdGggZGF0YSBzZXRzIGZyb20gcHJvamVjdHMgbGlrZSBJQVJQQVx1MjAxOXMgRnVuY3Rpb25hbCBNYXAgb2YgdGhlIFdvcmxkIChmTW9XKS5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9zcGFjZW5ldGNoYWxsZW5nZS5naXRodWIuaW9cbkNvbnRhY3Q6IGh0dHBzOi8vZ2l0aHViLmNvbS9TcGFjZU5ldENoYWxsZW5nZS91dGlsaXRpZXMvaXNzdWVzXG5NYW5hZ2VkQnk6IFtTcGFjZU5ldF0oaHR0cHM6Ly9zcGFjZW5ldC5haS8pXG5VcGRhdGVGcmVxdWVuY3k6IE5ldyBpbWFnZXJ5IGFuZCBmZWF0dXJlcyBhcmUgYWRkZWQgcXVhcnRlcmx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfc3BhY2VuZXRfZGF0YXNldC9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL3NwYWNlbmV0LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX3NwYWNlbmV0X2RhdGFzZXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfc3BhY2VuZXRfZGF0YXNldCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfc3BhY2VuZXRfZGF0YXNldCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc191bmlkYXRhX25leHJhZF9sZXZlbDJfY2h1bmtzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfdW5pZGF0YV9uZXhyYWRfbGV2ZWwyX2NodW5rcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc191bmlkYXRhX25leHJhZF9sZXZlbDJfY2h1bmtzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgdW5pZGF0YS1uZXhyYWQtbGV2ZWwyLWNodW5rcyBCdWNrZXQ6IE5FWFJBRCBvbiBBV1M6IE5FWFJBRCBMZXZlbCBJSSByZWFsLXRpbWUgZGF0YSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIHVuaWRhdGEtbmV4cmFkLWxldmVsMi1jaHVua3MgYnVja2V0IGF0IGh0dHBzOi8vdW5pZGF0YS1uZXhyYWQtbGV2ZWwyLWNodW5rcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogTkVYUkFEIG9uIEFXU1xuTmFtZTI6IE5FWFJBRCBMZXZlbCBJSSByZWFsLXRpbWUgZGF0YVxuRGVzY3JpcHRpb246IFJlYWwtdGltZSBhbmQgYXJjaGl2YWwgZGF0YSBmcm9tIHRoZSBOZXh0IEdlbmVyYXRpb24gV2VhdGhlciBSYWRhciAoTkVYUkFEKSBuZXR3b3JrLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL25vYWEtbmV4cmFkL3JlYWRtZS5odG1sXG5Db250YWN0OiBub2FhLmJkcEBub2FhLmdvdlxuTWFuYWdlZEJ5OiBbTk9BQV0oaHR0cHM6Ly93d3cubm9hYS5nb3YvKVxuVXBkYXRlRnJlcXVlbmN5OiBOZXcgTGV2ZWwgSUkgZGF0YSBpcyBhZGRlZCBhcyBzb29uIGFzIGl0IGlzIGF2YWlsYWJsZS5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc191bmlkYXRhX25leHJhZF9sZXZlbDJfY2h1bmtzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvbm9hYS1uZXhyYWQvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfdW5pZGF0YV9uZXhyYWRfbGV2ZWwyX2NodW5rcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc191bmlkYXRhX25leHJhZF9sZXZlbDJfY2h1bmtzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc191bmlkYXRhX25leHJhZF9sZXZlbDJfY2h1bmtzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3VzZ3NfbGlkYXJfcHVibGljIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfdXNnc19saWRhcl9wdWJsaWMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfdXNnc19saWRhcl9wdWJsaWMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyB1c2dzLWxpZGFyLXB1YmxpYyBCdWNrZXQ6IFVTR1MgM0RFUCBMaURBUiBQb2ludCBDbG91ZHM6IFB1YmxpYyBhY2Nlc3MgRW50d2luZSBQb2ludCBUaWxlcyBvZiBtb3N0IHJlc291cmNlcyBmcm9tIHRoZSBgYGFybjphd3M6czM6Ojp1c2dzLWxpZGFyYGAgYnVja2V0LiIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIHVzZ3MtbGlkYXItcHVibGljIGJ1Y2tldCBhdCBodHRwczovL3VzZ3MtbGlkYXItcHVibGljLnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBVU0dTIDNERVAgTGlEQVIgUG9pbnQgQ2xvdWRzXG5OYW1lMjogUHVibGljIGFjY2VzcyBFbnR3aW5lIFBvaW50IFRpbGVzIG9mIG1vc3QgcmVzb3VyY2VzIGZyb20gdGhlIGBgYXJuOmF3czpzMzo6OnVzZ3MtbGlkYXJgYCBidWNrZXQuXG5EZXNjcmlwdGlvbjogVGhlIGdvYWwgb2YgdGhlIFtVU0dTIDNEIEVsZXZhdGlvbiBQcm9ncmFtIF0oaHR0cHM6Ly93d3cudXNncy5nb3YvY29yZS1zY2llbmNlLXN5c3RlbXMvbmdwLzNkZXApICgzREVQKSBpcyB0byBjb2xsZWN0IGVsZXZhdGlvbiBkYXRhIGluIHRoZSBmb3JtIG9mIGxpZ2h0IGRldGVjdGlvbiBhbmQgcmFuZ2luZyAoTGlEQVIpIGRhdGEgb3ZlciB0aGUgY29udGVybWlub3VzIFVuaXRlZCBTdGF0ZXMsIEhhd2FpaSwgYW5kIHRoZSBVLlMuIHRlcnJpdG9yaWVzLCB3aXRoIGRhdGEgYWNxdWlyZWQgb3ZlciBhbiA4LXllYXIgcGVyaW9kLiBUaGlzIGRhdGFzZXQgcHJvdmlkZXMgdHdvIHJlYWxpemF0aW9ucyBvZiB0aGUgM0RFUCBwb2ludCBjbG91ZCBkYXRhLiBUaGUgZmlyc3QgcmVzb3VyY2UgaXMgYSBwdWJsaWMgYWNjZXNzIG9yZ2FuaXphdGlvbiBwcm92aWRlZCBpbiBbRW50d2luZSBQb2ludCBUaWxlc10oaHR0cHM6Ly9lbnR3aW5lLmlvL2VudHdpbmUtcG9pbnQtdGlsZS5odG1sKSBmb3JtYXQsIHdoaWNoIGEgbG9zc2xlc3MsIGZ1bGwtZGVuc2l0eSwgc3RyZWFtYWJsZSBvY3RyZWUgYmFzZWQgb24gW0xBU3ppcF0oaHR0cHM6Ly9sYXN6aXAub3JnKSAoTEFaKSBlbmNvZGluZy4gVGhlIHNlY29uZCByZXNvdXJjZSBpcyBhIFtSZXF1ZXN0ZXIgUGF5c10oaHR0cHM6Ly9kb2NzLmF3cy5hbWF6b24uY29tL0FtYXpvblMzL2xhdGVzdC9kZXYvUmVxdWVzdGVyUGF5c0J1Y2tldHMuaHRtbCkgb2YgdGhlIHNhbWUgZGF0YSBpbiBMQVogKENvbXByZXNzZWQgTEFTKSBmb3JtYXQuIFJlc291cmNlIG5hbWVzIGluIGJvdGggYnVja2V0cyBjb3JyZXNwb25kIHRvIHRoZSBVU0dTIHByb2plY3QgbmFtZXMuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZ2l0aHViLmNvbS9ob2J1L3VzZ3MtbGlkYXIvXG5Db250YWN0OiBodHRwczovL2dpdGh1Yi5jb20vaG9idS91c2dzLWxpZGFyXG5NYW5hZ2VkQnk6IFtIb2J1LCBJbmMuXShodHRwczovL2hvYnUuY28pXG5VcGRhdGVGcmVxdWVuY3k6IFBlcmlvZGljYWxseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX3VzZ3NfbGlkYXJfcHVibGljL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvdXNncy1saWRhci8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc191c2dzX2xpZGFyX3B1YmxpYy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc191c2dzX2xpZGFyX3B1YmxpYyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfdXNnc19saWRhcl9wdWJsaWMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfd2ViX2xhbmd1YWdlX21vZGVscyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3dlYl9sYW5ndWFnZV9tb2RlbHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfd2ViX2xhbmd1YWdlX21vZGVscy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIHdlYi1sYW5ndWFnZS1tb2RlbHMgQnVja2V0OiBQcm92aXNpb24gb2YgV2ViLVNjYWxlIFBhcmFsbGVsIENvcnBvcmEgZm9yIE9mZmljaWFsIEV1cm9wZWFuIExhbmd1YWdlcyAoUGFyYUNyYXdsKTogUGFyYWxsZWwgQ29ycG9yYSB0by9mcm9tIEVuZ2xpc2ggZm9yIGFsbCBvZmZpY2lhbCBFVSBsYW5ndWFnZXMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyB3ZWItbGFuZ3VhZ2UtbW9kZWxzIGJ1Y2tldCBhdCBodHRwczovL3dlYi1sYW5ndWFnZS1tb2RlbHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IFByb3Zpc2lvbiBvZiBXZWItU2NhbGUgUGFyYWxsZWwgQ29ycG9yYSBmb3IgT2ZmaWNpYWwgRXVyb3BlYW4gTGFuZ3VhZ2VzIChQYXJhQ3Jhd2wpXG5OYW1lMjogUGFyYWxsZWwgQ29ycG9yYSB0by9mcm9tIEVuZ2xpc2ggZm9yIGFsbCBvZmZpY2lhbCBFVSBsYW5ndWFnZXNcbkRlc2NyaXB0aW9uOiBQYXJhQ3Jhd2wgaXMgYSBzZXQgb2YgbGFyZ2UgcGFyYWxsZWwgY29ycG9yYSB0by9mcm9tIEVuZ2xpc2ggZm9yIGFsbCBvZmZpY2lhbCBFVSBsYW5ndWFnZXMgYnkgYSBicm9hZCB3ZWIgY3Jhd2xpbmcgZWZmb3J0LiBTdGF0ZS1vZi10aGUtYXJ0IG1ldGhvZHMgYXJlIGFwcGxpZWQgZm9yIHRoZSBlbnRpcmUgcHJvY2Vzc2luZyBjaGFpbiBmcm9tIGlkZW50aWZ5aW5nIHdlYiBzaXRlcyB3aXRoIHRyYW5zbGF0ZWQgdGV4dCBhbGwgdGhlIHdheSB0byBjb2xsZWN0aW5nLCBjbGVhbmluZyBhbmQgZGVsaXZlcmluZyBwYXJhbGxlbCBjb3Jwb3JhIHRoYXQgYXJlIHJlYWR5IGFzIHRyYWluaW5nIGRhdGEgZm9yIENFRi5BVCBhbmQgdHJhbnNsYXRpb24gbWVtb3JpZXMgZm9yIERHIFRyYW5zbGF0aW9uLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL3BhcmFjcmF3bC5ldS9yZWxlYXNlcy5odG1sXG5Db250YWN0OiBGb3IgcXVlc3Rpb25zIHJlZ2FyZGluZyB0aGUgZGF0YXNldHMgY29udGFjdCBLZW5uZXRoIEhlYWZpZWxkLCBlbWFpbCBraGVhZmllbEBpbmYuZWQuYWMudWsuIEZvciByZXBvcnRpbmcgYW55IGlzc3VlcyBhYm91dCBiaXRleHRvciBwaXBlbGluZSB2aXNpdCBodHRwczovL2dpdGh1Yi5jb20vYml0ZXh0b3IvYml0ZXh0b3IvaXNzdWVzLlxuTWFuYWdlZEJ5OiBbUGFyYUNyYXdsXShodHRwczovL3BhcmFjcmF3bC5ldSlcblVwZGF0ZUZyZXF1ZW5jeTogTmV3IGRhdGEgaXMgYWRkZWQgYWNjb3JkaW5nIHRvIFBhcmFDcmF3bCByZWxlYXNlIHNjaGVkdWxlLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX3dlYl9sYW5ndWFnZV9tb2RlbHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9wYXJhY3Jhd2wvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfd2ViX2xhbmd1YWdlX21vZGVscy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc193ZWJfbGFuZ3VhZ2VfbW9kZWxzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc193ZWJfbGFuZ3VhZ2VfbW9kZWxzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3hpcGhfbWVkaWEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc194aXBoX21lZGlhLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX3hpcGhfbWVkaWEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyB4aXBoLW1lZGlhIEJ1Y2tldDogWGlwaC5PcmcgVGVzdCBNZWRpYTogVmlkZW8gYW5kIGltYWdlcnkgZGF0YSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIHhpcGgtbWVkaWEgYnVja2V0IGF0IGh0dHBzOi8veGlwaC1tZWRpYS5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogWGlwaC5PcmcgVGVzdCBNZWRpYVxuTmFtZTI6IFZpZGVvIGFuZCBpbWFnZXJ5IGRhdGFcbkRlc2NyaXB0aW9uOiBVbmNvbXByZXNzZWQgdmlkZW8gdXNlZCBmb3IgdmlkZW8gY29tcHJlc3Npb24gYW5kIHZpZGVvIHByb2Nlc3NpbmcgcmVzZWFyY2guXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vbWVkaWEueGlwaC5vcmcvYXdzLmh0bWxcbkNvbnRhY3Q6IFRob21hcyBEYWVkZSB0ZGFlZGVAeGlwaC5vcmdcblVwZGF0ZUZyZXF1ZW5jeTogTmV3IHZpZGVvcyBhcmUgYWRkZWQgd2hlbiBjb250cmlidXRvcnMgc3VibWl0IHRoZW0uXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfeGlwaF9tZWRpYS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL3hpcGgtbWVkaWEvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfeGlwaF9tZWRpYS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc194aXBoX21lZGlhJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc194aXBoX21lZGlhIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3ljYl9iZW5jaG1hcmtzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfeWNiX2JlbmNobWFya3MuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfeWNiX2JlbmNobWFya3MvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyB5Y2ItYmVuY2htYXJrcyBCdWNrZXQ6IFlhbGUtQ01VLUJlcmtlbGV5IChZQ0IpIE9iamVjdCBhbmQgTW9kZWwgU2V0OiBQcm9qZWN0IGRhdGEgZmlsZXMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyB5Y2ItYmVuY2htYXJrcyBidWNrZXQgYXQgaHR0cHM6Ly95Y2ItYmVuY2htYXJrcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogWWFsZS1DTVUtQmVya2VsZXkgKFlDQikgT2JqZWN0IGFuZCBNb2RlbCBTZXRcbk5hbWUyOiBQcm9qZWN0IGRhdGEgZmlsZXNcbkRlc2NyaXB0aW9uOiBUaGlzIHByb2plY3QgcHJpbWFyaWx5IGFpbXMgdG8gZmFjaWxpdGF0ZSBwZXJmb3JtYW5jZSBiZW5jaG1hcmtpbmcgaW4gcm9ib3RpY3MgcmVzZWFyY2guIFRoZSBkYXRhc2V0IHByb3ZpZGVzIG1lc2ggbW9kZWxzLCBSR0IsIFJHQi1EIGFuZCBwb2ludCBjbG91ZCBpbWFnZXMgb2Ygb3ZlciA4MCBvYmplY3RzLiBUaGUgcGh5c2ljYWwgb2JqZWN0cyBhcmUgYWxzbyBhdmFpbGFibGUgdmlhIHRoZSBbWUNCIGJlbmNobWFya2luZyBwcm9qZWN0XShodHRwOi8vd3d3LnljYmJlbmNobWFya3MuY29tLykuIFRoZSBkYXRhIGFyZSBjb2xsZWN0ZWQgYnkgdHdvIHN0YXRlIG9mIHRoZSBhcnQgc3lzdGVtczogVUMgQmVya2xleSdzIHNjYW5uaW5nIHJpZyBhbmQgdGhlIEdvb2dsZSBzY2FubmVyLiBUaGUgVUMgQmVya2xleSdzIHNjYW5uaW5nIHJpZyBkYXRhIHByb3ZpZGUgbWVzaGVzIGdlbmVyYXRlZCB3aXRoIFBvaXNzb24gcmVjb25zdHJ1Y3Rpb24sIG1lc2hlcyBnZW5lcmF0ZWQgd2l0aCB2b2x1bWV0cmljIHJhbmdlIGltYWdlIGludGVncmF0aW9uLCB0ZXh0dXJlZCB2ZXJzaW9ucyBvZiBib3RoIG1lc2hlcywgS2luYm9keSBmaWxlcyBmb3IgdXNpbmcgdGhlIG1lc2hlcyB3aXRoIE9wZW5SQVZFLCA2MDAgSGlnaC1yZXNvbHV0aW9uIFJHQiBpbWFnZXMsIDYwMCBSR0ItRCBpbWFnZXMsIGFuZCA2MDAgcG9pbnQgY2xvdWQgaW1hZ2VzIGZvciBlYWNoIG9iamVjdC4gVGhlIEdvb2dsZSBzY2FubmVyIGRhdGEgcHJvdmlkZXMgMyBtZXNoZXMgd2l0aCBkaWZmZXJlbnQgcmVzb2x1dGlvbnMgKDE2aywgNjRrLCBhbmQgNTEyayBwb2x5Z29ucyksIHRleHR1cmVkIHZlcnNpb25zIG9mIGVhY2ggbWVzaCwgS2luYm9keSBmaWxlcyBmb3IgdXNpbmcgdGhlIG1lc2hlcyB3aXRoIE9wZW5SQVZFLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwOi8vd3d3LnljYmJlbmNobWFya3MuY29tL1xuQ29udGFjdDogYmNhbGxpQHdwaS5lZHVcblVwZGF0ZUZyZXF1ZW5jeTogWWVhcmx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfeWNiX2JlbmNobWFya3MvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy95Y2ItYmVuY2htYXJrcy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc195Y2JfYmVuY2htYXJrcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc195Y2JfYmVuY2htYXJrcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfeWNiX2JlbmNobWFya3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2NyaXBwc0dsaWRlcnMuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NjcmlwcHNHbGlkZXJzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NjcmlwcHNHbGlkZXJzLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkdsaWRlcnMsIFNjcmlwcHMgSW5zdGl0dXRpb24gb2YgT2NlYW5vZ3JhcGh5LCAyMDE0LXByZXNlbnQiLCAiU3ByYXkgZ2xpZGVyIGRhdGEgZnJvbSBTY3JpcHBzIEluc3RpdHV0aW9uIG9mIE9jZWFub2dyYXBoeSwgSW5zdHJ1bWVudCBEZXZlbG9wbWVudCBHcm91cC4gR2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgdXNlIGNoYW5nZXMgaW4gYnVveWFuY3kgdG8gbW92ZSB2ZXJ0aWNhbGx5IGFuZCBob3Jpem9udGFsbHkgdGhyb3VnaCB0aGUgd2F0ZXIgY29sdW1uIGluIGEgc2F3LXRvb3RoIHBhdHRlcm4uIFRoZXkgYXJlIGRlcGxveWVkIGZvciBkYXlzIHRvIHNldmVyYWwgbW9udGhzIGFuZCBnYXRoZXIgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsLCBjaGVtaWNhbCBhbmQgYmlvbG9naWNhbCBwcm9jZXNzZXMgb2YgdGhlIHdvcmxkJ3Mgb2NlYW5zLlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVByb2ZpbGVcblZBUklBQkxFUzpcbnRyYWplY3RvcnkgKFRyYWplY3RvcnkgTmFtZSlcbmluc3RpdHV0aW9uXG5wbGF0Zm9ybV9pZFxucGxhdGZvcm1fdHlwZVxud21vX2lkXG5jdGRfbWFrZV9tb2RlbCAoQ1REIE1ha2UgYW5kIE1vZGVsKVxuc2VnbWVudF9pZFxudGltZV91diAoRGVwdGgtYXZlcmFnZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdF91diAoRGVwdGgtYXZlcmFnZWQgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG5sb25fdXYgKERlcHRoLWF2ZXJhZ2VkIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxudSAoRGVwdGgtYXZlcmFnZWQgRWFzdHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBtIHMtMSlcbnYgKERlcHRoLWF2ZXJhZ2VkIE5vcnRod2FyZCBTZWEgV2F0ZXIgVmVsb2NpdHksIG0gcy0xKVxudXZfcWMgKHV2IFF1YWxpdHkgRmxhZylcbnByb2ZpbGVfaWRcbnByb2ZpbGVfcWMgKFByb2ZpbGUgdGltZSwgbGF0aXR1ZGUsIGxvbmdpdHVkZSBRdWFsaXR5IEZsYWcpXG50aW1lIChQcm9maWxlIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoUHJvZmlsZSBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoUHJvZmlsZSBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmRlcHRoIChtKVxuZF9xYyAoZGVwdGggcXVhbGl0eSBmbGFnKVxucHJlc3N1cmUgKFNlYSBXYXRlciBQcmVzc3VyZSwgZGJhcilcbnBfcWMgKHByZXNzdXJlIHF1YWxpdHkgZmxhZylcbnRlbXBlcmF0dXJlIChTZWEgV2F0ZXIgVGVtcGVyYXR1cmUsIENlbHNpdXMpXG4uLi4gKDExIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3NjcmlwcHNHbGlkZXJzX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9zY3JpcHBzR2xpZGVyc19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zY3JpcHBzR2xpZGVycy9pbmRleC5qc29uIiwgImh0dHBzOi8vc3ByYXkudWNzZC5lZHUiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvc2NyaXBwc0dsaWRlcnMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNjcmlwcHNHbGlkZXJzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlNjcmlwcHMgSW5zdGl0dXRpb24gb2YgT2NlYW5vZ3JhcGh5IiwgInNjcmlwcHNHbGlkZXJzIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEd0c3BwQmVzdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkR3RzcHBCZXN0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEd0c3BwQmVzdC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJHbG9iYWwgVGVtcGVyYXR1cmUgYW5kIFNhbGluaXR5IFByb2ZpbGUgUHJvZ3JhbW1lIChHVFNQUCkgRGF0YSwgMTk4NS1wcmVzZW50IiwgIlRoZSBHbG9iYWwgVGVtcGVyYXR1cmUtU2FsaW5pdHkgUHJvZmlsZSBQcm9ncmFtbWUgKEdUU1BQKSBkZXZlbG9wcyBhbmQgbWFpbnRhaW5zIGEgZ2xvYmFsIG9jZWFuIHRlbXBlcmF0dXJlIGFuZCBzYWxpbml0eSByZXNvdXJjZSB3aXRoIGRhdGEgdGhhdCBhcmUgYm90aCB1cC10by1kYXRlIGFuZCBvZiB0aGUgaGlnaGVzdCBxdWFsaXR5LiBJdCBpcyBhIGpvaW50IFdvcmxkIE1ldGVvcm9sb2dpY2FsIE9yZ2FuaXphdGlvbiAoV01PKSBhbmQgSW50ZXJnb3Zlcm5tZW50YWwgT2NlYW5vZ3JhcGhpYyBDb21taXNzaW9uIChJT0MpIHByb2dyYW0uICBJdCBpbmNsdWRlcyBkYXRhIGZyb20gWEJUcywgQ1REcywgbW9vcmVkIGFuZCBkcmlmdGluZyBidW95cywgYW5kIFBBTEFDRSBmbG9hdHMuIEZvciBpbmZvcm1hdGlvbiBhYm91dCBvcmdhbml6YXRpb25zIGNvbnRyaWJ1dGluZyBkYXRhIHRvIEdUU1BQLCBzZWUgaHR0cDovL2dvc2ljLm9yZy9nb29zL0dUU1BQLWRhdGEtZmxvdy5odG0gLiAgVGhlIFUuUy4gTmF0aW9uYWwgT2NlYW5vZ3JhcGhpYyBEYXRhIENlbnRlciAoTk9EQykgbWFpbnRhaW5zIHRoZSBHVFNQUCBDb250aW51b3VzbHkgTWFuYWdlZCBEYXRhIEJhc2UgYW5kIHJlbGVhc2VzIG5ldyAnYmVzdC1jb3B5JyBkYXRhIG9uY2UgcGVyIG1vbnRoLlxuXG5XQVJOSU5HOiBUaGlzIGRhdGFzZXQgaGFzIGEgKmxvdCogb2YgZGF0YS4gIElmIHlvdSByZXF1ZXN0IHRvbyBtdWNoIGRhdGEsIHlvdXIgcmVxdWVzdCB3aWxsIGZhaWwuXG4qIElmIHlvdSBkb24ndCBzcGVjaWZ5IGEgbG9uZ2l0dWRlIGFuZCBsYXRpdHVkZSBib3VuZGluZyBib3gsIGRvbid0IHJlcXVlc3QgbW9yZSB0aGFuIGEgbW9udGgncyBkYXRhIGF0IGEgdGltZS5cbiogSWYgeW91IGRvIHNwZWNpZnkgYSBsb25naXR1ZGUgYW5kIGxhdGl0dWRlIGJvdW5kaW5nIGJveCwgeW91IGNhbiByZXF1ZXN0IGRhdGEgZm9yIGEgcHJvcG9ydGlvbmFsbHkgbG9uZ2VyIHRpbWUgcGVyaW9kLlxuUmVxdWVzdGluZyBkYXRhIGZvciBhIHNwZWNpZmljIHN0YXRpb25faWQgbWF5IGJlIHNsb3csIGJ1dCBpdCB3b3Jrcy5cblxuKioqIFRoaXMgRVJEREFQIGRhdGFzZXQgaGFzIGRhdGEgZm9yIHRoZSBlbnRpcmUgd29ybGQgZm9yIGFsbCBhdmFpbGFibGUgdGltZXMgKGN1cnJlbnRseSwgdXAgdG8gYW5kIGluY2x1ZGluZyB0aGUgSnVuZSAyMDIwIGRhdGEpIGJ1dCBpcyBhIHN1YnNldCBvZiB0aGUgb3JpZ2luYWwgTk9EQyAnYmVzdC1jb3B5JyBkYXRhLiAgSXQgb25seSBpbmNsdWRlcyBkYXRhIHdoZXJlIHRoZSBxdWFsaXR5IGZsYWdzIGluZGljYXRlIHRoZSBkYXRhIGlzIDE9Q09SUkVDVCwgMj1QUk9CQUJMWSBHT09ELCBvciA1PU1PRElGSUVELiBJdCBkb2VzIG5vdCBpbmNsdWRlIHNvbWUgb2YgdGhlIG1ldGFkYXRhLCBhbnkgb2YgdGhlIGhpc3RvcnkgZGF0YSwgb3IgYW55IG9mIHRoZSBxdWFsaXR5IGZsYWcgZGF0YSBvZiB0aGUgb3JpZ2luYWwgZGF0YXNldC4gWW91IGNhbiBhbHdheXMgZ2V0IHRoZSBjb21wbGV0ZSwgdXAtdG8tZGF0ZSBkYXRhc2V0IChhbmQgYWRkaXRpb25hbCwgbmVhci1yZWFsLXRpbWUgZGF0YSkgZnJvbSB0aGUgc291cmNlOiBodHRwczovL3d3dy5ub2RjLm5vYWEuZ292L0dUU1BQLyAuICBTcGVjaWZpYyBkaWZmZXJlbmNlcyBhcmU6XG4qIFByb2ZpbGVzIHdpdGggYSBwb3NpdGlvbl9xdWFsaXR5X2ZsYWcgb3IgYSB0aW1lX3F1YWxpdHlfZmxhZyBvdGhlciB0aGFuIDF8Mnw1IHdlcmUgcmVtb3ZlZC5cbiogUm93cyB3aXRoIGEgZGVwdGggKHopIHZhbHVlIGxlc3MgdGhhbiAtMC40IG9yIGdyZWF0ZXIgdGhhbiAxMDAwMCBvciBhIHpfdmFyaWFibGVfcXVhbGl0eV9mbGFnIG90aGVyIHRoYW4gMXwyfDUgd2VyZSByZW1vdmVkLlxuKiBUZW1wZXJhdHVyZSB2YWx1ZXMgbGVzcyB0aGFuIC00IG9yIGdyZWF0ZXIgdGhhbiA0MCBvciB3aXRoIGEgdGVtcGVyYXR1cmVfcXVhbGl0eV9mbGFnIG90aGVyIHRoYW4gMXwyfDUgd2VyZSBzZXQgdG8gTmFOLlxuKiBTYWxpbml0eSB2YWx1ZXMgbGVzcyB0aGFuIDAgb3IgZ3JlYXRlciB0aGFuIDQxIG9yIHdpdGggYSBzYWxpbml0eV9xdWFsaXR5X2ZsYWcgb3RoZXIgdGhhbiAxfDJ8NSB3ZXJlIHNldCB0byBOYU4uXG4qIFRpbWUgdmFsdWVzIHdlcmUgY29udmVydGVkIGZyb20gXCJkYXlzIHNpbmNlIDE5MDAtMDEtMDEgMDA6MDA6MDBcIiB0byBcInNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFwiLlxuXG5TZWUgdGhlIFF1YWxpdHkgRmxhZyBkZWZpbml0aW9ucyBvbiBwYWdlIDUgYW5kIFwiVGFibGUgMi4xOiBHbG9iYWwgSW1wb3NzaWJsZSBQYXJhbWV0ZXIgVmFsdWVzXCIgb24gcGFnZSA2MSBvZlxuaHR0cHM6Ly93d3cubm9kYy5ub2FhLmdvdi9HVFNQUC9kb2N1bWVudC9xY21hbnMvR1RTUFBfUlRfUUNfTWFudWFsXzIwMDkwOTE2LnBkZiAuXG5UaGUgUXVhbGl0eSBGbGFnIGRlZmluaXRpb25zIGFyZSBhbHNvIGF0XG5odHRwczovL3d3dy5ub2RjLm5vYWEuZ292L0dUU1BQL2RvY3VtZW50L3FjbWFucy9xY2ZsYWdzLmh0bSAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUcmFqZWN0b3J5UHJvZmlsZVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeSAoVHJhamVjdG9yeSBJRClcbi4uLiAoMTEgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkR3RzcHBCZXN0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRHdHNwcEJlc3RfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkR3RzcHBCZXN0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cubm9kYy5ub2FhLmdvdi9HVFNQUC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkR3RzcHBCZXN0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRHdHNwcEJlc3Qmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOT0RDIiwgImVyZEd0c3BwQmVzdCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRHbG9iZWNNb2MxLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRHbG9iZWNNb2MxIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEdsb2JlY01vYzEuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiR0xPQkVDIE5FUCBNT0NORVNTIFBsYW5rdG9uIChNT0MxKSBEYXRhLCAyMDAwLTIwMDIiLCAiR0xPQkVDIChHTE9CYWwgT2NlYW4gRUNvc3lzdGVtcyBEeW5hbWljcykgTkVQIChOb3J0aGVhc3QgUGFjaWZpYykgQ2FsaWZvcm5pYSBDdXJyZW50IFByb2dyYW1cbk1PQ05FU1MgUGxhbmt0b24gKE1PQzEpIERhdGFcblRoZSBNT0NORVNTIGlzIGJhc2VkIG9uIHRoZSBUdWNrZXIgVHJhd2wgcHJpbmNpcGxlIChUdWNrZXIsIDE5NTEpLiBUaGUgTU9DTkVTUy0xIGhhcyBuaW5lIHJlY3Rhbmd1bGFyIG5ldHMgKDFtIHggMS40IG0pIHdoaWNoIGFyZSBvcGVuZWQgYW5kIGNsb3NlZCBzZXF1ZW50aWFsbHkgYnkgY29tbWFuZHMgdGhyb3VnaCBjb25kdWN0aW5nIGNhYmxlIGZyb20gdGhlIHN1cmZhY2UgKFdpZWJlIGV0IGFsLiwgMTk3NikuIEluIE1PQ05FU1Mgc3lzdGVtcywgXCJ0aGUgdW5kZXJ3YXRlciB1bml0IHNlbmRzIGEgZGF0YSBmcmFtZSwgY29tcHJpc2VkIG9mIHRlbXBlcmF0dXJlLCBkZXB0aCwgY29uZHVjdGl2aXR5LCBuZXQtZnJhbWUgYW5nbGUsIGZsb3cgY291bnQsIHRpbWUsIG51bWJlciBvZiBvcGVuIG5ldCwgYW5kIG5ldCBvcGVuaW5nL2Nsb3NpbmcsIHRvIHRoZSBkZWNrIHVuaXQgaW4gYSBjb21wcmVzc2VkIGhleGFkZWNpbWFsIGZvcm1hdCBldmVyeSAyIHNlY29uZHMgYW5kIGZyb20gdGhlIGRlY2sgdW5pdCB0byBhIG1pY3JvY29tcHV0ZXIgZXZlcnkgNCBzZWNvbmRzLi4uIFRlbXBlcmF0dXJlICh0byBhcHByb3hpbWF0ZWx5IDAuMDEgZGVnIEMpIGFuZCBjb25kdWN0aXZpdHkgYXJlIG1lYXN1cmVkIHdpdGggU0VBQklSRCBzZW5zb3JzLiBOb3JtYWxseSwgYSBtb2RpZmllZCBULlMuSy4tZmxvd21ldGVyIGlzIHVzZWQuLi4gQm90aCB0aGUgdGVtcGVyYXR1cmUgYW5kIGNvbmR1Y3Rpdml0eSBzZW5zb3JzIGFuZCB0aGUgZmxvd21ldGVyIGFyZSBtb3VudGVkIG9uIHRvcCBvZiB0aGUgZnJhbWUgc28gdGhhdCB0aGV5IGZhY2UgaG9yaXpvbnRhbGx5IHdoZW4gdGhlIGZyYW1lIGlzIGF0IGEgdG93aW5nIGFuZ2xlIG9mIDQ1ZGVnLi4uIENhbGN1bGF0aW9ucyBvZiBzYWxpbml0eSAodG8gYXBwcm94aW1hdGVseSAwLjAxIG8vb28gUyksIHBvdGVudGlhbCB0ZW1wZXJhdHVyZSAodGhldGEpLCBwb3RlbnRpYWwgZGVuc2l0eSAoc2lnbWEpLCB0aGUgb2JsaXF1ZSBhbmQgdmVydGljYWwgdmVsb2NpdGllcyBvZiB0aGUgbmV0LCBhbmQgdGhlIGFwcHJveGltYXRlIHZvbHVtZSBmaWx0ZXJlZCBieSBlYWNoIG5ldCBhcmUgbWFkZSBhZnRlciBlYWNoIHN0cmluZyBvZiBkYXRhIGhhcyBiZWVuIHJlY2VpdmVkIGJ5IHRoZSBjb21wdXRlci5cIiAoV2llYmUgZXQgYWwuLCAxOTg1KSBJbiBhZGRpdGlvbiwgZGVwZW5kaW5nIG9uIHRoZSBwYXJ0aWN1bGFyIGNvbmZpZ3VyYXRpb24gb2YgdGhlIE1PQ05FU1MtMSwgZGF0YSBtYXkgaGF2ZSBiZWVuIGNvbGxlY3RlZCBmcm9tIG90aGVyIHNlbnNvcnMgYXR0YWNoZWQgdG8gdGhlIGZyYW1lIDogKFRyYW5zbWlzc29tZXRlciwgRmx1b3JvbWV0ZXIsIERvd253ZWxsaW5nIGxpZ2h0IHNlbnNvciwgYW5kIHRoZSBPeHlnZW4gc2Vuc29yKS4gQSBTZWFCaXJkIHVuZGVyd2F0ZXIgcHVtcCB3YXMgYWxzbyBpbmNsdWRlZCBpbiB0aGUgc2Vuc29yIHN1aXQgZS5cbkFmdGVyIHJldHJpZXZhbCB0byBkZWNrLCB0aGUgY29udGVudHMgb2YgdGhlIG5ldHMgd2VyZSByaW5zZWQgaW50byB0aGUgY29kZW5kcyBhIG5kIHRyYW5zZmVycmVkIHRvIHN0b3JhZ2UgYm90dGxlcywgYW5kIGZpeGVkIGFuZCBwcmVzZXJ2ZWQgd2l0aCBmb3JtYWxpbi4gSW4gdGhlIHNob3JlIGxhYm9yYXRvcnksIHRoZSBjb250ZW50cyBvZiB0aGUgYm90dGxlcyB3ZXJlIHN1YnNhbXBsZWQgYW5kIGNvdW50cyBhbmQgYmlvbWFzcyBlc3RpbWF0ZXMgbWFkZSBmb3Igc2VsZWN0ZWQgdGF4YSAoc2VlIHRoZSBQcm9jX1Byb3RvY29sIGluZm8gYmVsb3cpLiBUaGlzIGRhdGEgb2JqZWN0IHJlcG9ydHMgb25seSB0aGUgY291bnQgaW5mb3JtYXRpb24uXG5cbkZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHA6Ly9jaXMud2hvaS5lZHUvc2NpZW5jZS9iY29kbW8vZGF0YXNldC5jZm0/aWQ9MTAxODImZmxhZz12aWV3XG5vclxuaHR0cDovL2dsb2JlYy53aG9pLmVkdS9qZy9pbmZvL2dsb2JlYy9uZXAvY2NzL01PQzElN0JkaXI9Z2xvYmVjLndob2kuZWR1L2pnL2Rpci9nbG9iZWMvbmVwL2Njcy8sZGF0YT1nbG9iZWMuY29hcy5vcmVnb25zdGF0ZS5lZHUvamcvc2Vydi9NT0MxLmh0bWwwJTdEXG5cbkFsbCBpbnF1aXJpZXMgYWJvdXQgdGhpcyBkYXRhIHNob3VsZCBiZSBkaXJlY3RlZCB0byBEci4gV2lsbGlhbSBQZXRlcnNvbiAoYmlsbC5wZXRlcnNvbkBub2FhLmdvdikuXG5JbnF1aXJpZXMgYWJvdXQgaG93IHRvIGFjY2VzcyB0aGlzIGRhdGEgc2hvdWxkIGJlIGRpcmVjdGVkIHRvIERyLiBIYWwgQmF0Y2hlbGRlciAoaGJhdGNoZWxkZXJAY29hcy5vcmVnb25zdGF0ZS5lZHUpLlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG4uLi4gKDIyIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZEdsb2JlY01vYzFfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZEdsb2JlY01vYzFfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkR2xvYmVjTW9jMS9pbmRleC5qc29uIiwgImh0dHBzOi8vZW4ud2lraXBlZGlhLm9yZy93aWtpL0dsb2JhbF9PY2Vhbl9FY29zeXN0ZW1fRHluYW1pY3MiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkR2xvYmVjTW9jMS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkR2xvYmVjTW9jMSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJHTE9CRUMiLCAiZXJkR2xvYmVjTW9jMSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRHbG9iZWNCaXJkcy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkR2xvYmVjQmlyZHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkR2xvYmVjQmlyZHMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiR0xPQkVDIE5FUCBOb3J0aGVybiBDYWxpZm9ybmlhIEN1cnJlbnQgQmlyZCBEYXRhIE5IMDAwNSwgMjAwMC0yMDAwLCAwMDA3IiwgIkdMT0JFQyAoR0xPQmFsIE9jZWFuIEVDb3N5c3RlbXMgRHluYW1pY3MpIE5FUCAoTm9ydGhlYXN0IFBhY2lmaWMpXG5Ob3J0aGVybiBDYWxpZm9ybmlhIEN1cnJlbnQgQmlyZCBEYXRhIGZyb20gUi9WIE5ldyBIb3Jpem9uIGNydWlzZXMgTkgwMDA1IGFuZCAwMDA3LlxuXG5BcyBhIHBhcnQgb2YgdGhlIEdMT0JFQy1Ob3J0aGVhc3QgUGFjaWZpYyBwcm9qZWN0LCB3ZSBpbnZlc3RpZ2F0ZWQgdmFyaWF0aW9uIGluIHRoZSBhYnVuZGFuY2Ugb2YgbWFyaW5lIGJpcmRzIGluIHRoZSBjb250ZXh0IG9mIGJpb2xvZ2ljYWwgYW5kIHBoeXNpY2FsIGhhYml0YXQgY29uZGl0aW9ucyBpbiB0aGUgbm9ydGhlcm4gcG9ydGlvbiBvZiB0aGUgQ2FsaWZvcm5pYSBDdXJyZW50IFN5c3RlbSAoQ0NTKSBkdXJpbmcgY3J1aXNlcyBkdXJpbmcgdGhlIHVwd2VsbGluZyBzZWFzb24gMjAwMC4gQ29udGludW91cyBzdXJ2ZXlzIG9mIHNlYWJpcmRzIHdlcmUgY29uZHVjdGVkIHNpbXVsdGFuZW91c2x5IGluIEp1bmUgKG9uc2V0IG9mIHVwd2VsbGluZykgYW5kIEF1Z3VzdCAobWF0dXJlIHBoYXNlIG9mIHVwd2VsbGluZykuXG5cblNlYWJpcmQgc3VydmV5cyB3ZXJlIGNvbmR1Y3RlZCBjb250aW51b3VzbHkgZHVyaW5nIGRheWxpZ2h0LCB1c2luZyBhIDMwMC1tLXdpZGUgdHJhbnNlY3Qgc3RyaXAuIFdpdGhpbiB0aGF0IHN0cmlwLCBiaXJkcyB3ZXJlIGNvdW50ZWQgdGhhdCBvY2N1cnJlZCB3aXRoaW4gdGhlIDkwIGRlZ3JlZSBxdWFkcmFudCBvZmYgdGhlIHNoaXAncyBib3cgdGhhdCBvZmZlcmVkIHRoZSBiZXN0IG9ic2VydmF0aW9uIGNvbmRpdGlvbnMuXG5cbk9ic2VydmVkIGNvdW50cyBvZiBzZWFiaXJkcyByZWNvcmRlZCBhcyBmbHlpbmcgaW4gYSBzdGVhZHkgZGlyZWN0aW9uIHdlcmUgYWRqdXN0ZWQgZm9yIHRoZSBlZmZlY3Qgb2YgZmxpZ2h0IHNwZWVkIGFuZCBkaXJlY3Rpb24gcmVsYXRpdmUgdG8gdGhhdCBvZiB0aGUgc2hpcCAoU3BlYXIgZXQgYWwuLCAxOTkyOyBTcGVhciBhbmQgQWlubGV5LCAxOTk3YikuIFRoZSBlZmZlY3Qgb2Ygc3VjaCBmbHV4IGlzIHRoZSBtb3N0IHNlcmlvdXMgYmlhcyBlbmNvdW50ZXJlZCBkdXJpbmcgc2VhYmlyZCBzdXJ2ZXlzIGF0IHNlYSAoU3BlYXIgZXQgYWwuLCAyMDA1KS4gS25vd24gYXMgcmFuZG9tIGRpcmVjdGlvbmFsIG1vdmVtZW50IChhcyBvcHBvc2VkIHRvIG5vbnJhbmRvbSBkaXJlY3Rpb25hbCBtb3ZlbWVudCwgd2hpY2ggb2NjdXJzIHdoZW4gYmlyZHMgYXJlIGF0dHJhY3RlZCBvciByZXBlbGxlZCBmcm9tIHRoZSBzdXJ2ZXkgdmVzc2VsKSwgdGhpcyBwcm9ibGVtIHVzdWFsbHkgcmVzdWx0cyBpbiBkZW5zaXR5IG92ZXJlc3RpbWF0aW9uIGJlY2F1c2UgbW9zdCBzcGVjaWVzIGZseSBmYXN0ZXIgdGhhbiBzdXJ2ZXkgdmVzc2VsczsgZGVuc2l0aWVzIG9mIGJpcmRzIHRoYXQgZmx5IHNsb3dlciBvciBhdCBhIHNpbWlsYXIgc3BlZWQgYXMgdGhlIHN1cnZleSB2ZXNzZWwgKGUuZy4sIHN0b3JtLXBldHJlbHMpLCBvciBhcmUgZmx5aW5nIGluIHRoZSBzYW1lIGRpcmVjdGlvbiwgYXJlIHVzdWFsbHkgdW5kZXJlc3RpbWF0ZWQgKFNwZWFyIGV0IGFsLiwgMTk5MilcblxuKGV4dHJhY3RlZCBmcm9tOiBEYXZpZCBHLiBBaW5sZXksIExhcnJ5IEIuIFNwZWFyLCBDeW50aGlhIFQuIFR5bmFuLCBKb2huIEEuIEJhcnRoLCBTdGVwaGVuIEQuIFBpZXJjZSwgUi4gR2xlbm4gRm9yZCBhbmQgVGltb3RoeSBKLiBDb3dsZXMsIDIwMDUuIFBoeXNpY2FsIGFuZCBiaW9sb2dpY2FsIHZhcmlhYmxlcyBhZmZlY3Rpbmcgc2VhYmlyZCBkaXN0cmlidXRpb25zIGR1cmluZyB0aGUgdXB3ZWxsaW5nIHNlYXNvbiBvZiB0aGUgbm9ydGhlcm4gQ2FsaWZvcm5pYSBDdXJyZW50LiBEZWVwIFNlYSBSZXNlYXJjaCBQYXJ0IElJOiBUb3BpY2FsIFN0dWRpZXMgaW4gT2NlYW5vZ3JhcGh5LCBWb2x1bWUgNTIsIElzc3VlcyAxLTIsIEphbnVhcnkgMjAwNSwgUGFnZXMgMTIzLTE0MylcblxuRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cDovL2Npcy53aG9pLmVkdS9zY2llbmNlL2Jjb2Rtby9kYXRhc2V0LmNmbT9pZD0xMDA1MyZmbGFnPXZpZXdcbm9yXG5odHRwOi8vZ2xvYmVjLndob2kuZWR1L2pnL2luZm8vZ2xvYmVjL25lcC9jY3MvYmlyZHMlN0JkaXI9Z2xvYmVjLndob2kuZWR1L2pnL2Rpci9nbG9iZWMvbmVwL2Njcy8sZGF0YT1nbG9iZWMud2hvaS5lZHUvamcvc2Vydi9nbG9iZWMvbmVwL2Njcy9iaXJkcy5odG1sMCU3RFxuXG5Db250YWN0OlxuQ3ludGhpYSBULiBUeW5hbiwgY3R5bmFuQHdob2kuZWR1LCBXb29kcyBIb2xlIE9jZWFub2dyYXBoaWMgSW5zdGl0dXRpb25cbkRhdmlkIEcuIEFpbmxleSwgZGFpbmxleUBwZW5ndWluc2NpZW5jZS5jb20sIEguVC4gSGFydmV5ICYgQXNzb2NpYXRlc1xuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhbnNfbm8gKFRyYW5zZWN0IE51bWJlcilcbi4uLiAoMTIgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkR2xvYmVjQmlyZHNfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZEdsb2JlY0JpcmRzX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZEdsb2JlY0JpcmRzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvR2xvYmFsX09jZWFuX0Vjb3N5c3RlbV9EeW5hbWljcyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRHbG9iZWNCaXJkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkR2xvYmVjQmlyZHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiR0xPQkVDIiwgImVyZEdsb2JlY0JpcmRzIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEdsb2JlY0NldGFjZWFucy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkR2xvYmVjQ2V0YWNlYW5zIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEdsb2JlY0NldGFjZWFucy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJHTE9CRUMgTkVQIE5vcnRoZXJuIENhbGlmb3JuaWEgQ3VycmVudCBDZXRhY2VhbiBTdXJ2ZXkgRGF0YSwgTkgwMDA1LCAyMDAwLTIwMDAsIDAwMDciLCAiR0xPQkVDIChHTE9CYWwgT2NlYW4gRUNvc3lzdGVtcyBEeW5hbWljcykgTkVQIChOb3J0aGVhc3QgUGFjaWZpYylcbk5vcnRoZXJuIENhbGlmb3JuaWEgQ3VycmVudCBDZXRhY2VhbiBTdXJ2ZXkgRGF0YSBmcm9tIFIvViBOZXcgSG9yaXpvbiBjcnVpc2VzIE5IMDAwNSBhbmQgMDAwNy5cblxuTGluZS10cmFuc2VjdCBzdXJ2ZXlzIG9mIGNldGFjZWFucyB3ZXJlIGNvbmR1Y3RlZCBkdXJpbmcgdHdvIGNydWlzZXMgb2YgdGhlIEdMT0JFQyBOb3J0aGVhc3QgUGFjaWZpYyBOb3J0aGVybiBDYWxpZm9ybmlhIEN1cnJlbnQgKE5DQykgcHJvZ3JhbSBpbiAyMDAwOiBNYXkgMjkgLUp1bmUgMTMgYW5kIEp1bHkgMjcgLSBBdWd1c3QgMTIuICAgU3VydmV5cyB3ZXJlIGNvbmR1Y3RlZCBhY3Jvc3MgdGhlIHNoZWxmIGFuZCBzbG9wZSBvZmYgT3JlZ29uIGFuZCBub3J0aGVybiBDYWxpZm9ybmlhICg0MS45IC0gNDQuNjVOKSBmcm9tIHRoZSBjb2FzdCB0byB+MTI1LjVXLiAgIFN1cnZleXMgd2VyZSBjb25kdWN0ZWQgaW4gcGFzc2luZyBtb2RlIHdoaWxlIHRoZSBSL1YgTmV3IEhvcml6b24gd2FzIGluIHRyYW5zaXQgYmV0d2VlbiBzdGF0aW9ucyBmb3IgaHlkcm9ncmFwaGljIGFuZCB6b29wbGFua3RvbiBzYW1wbGluZy4gICBPYnNlcnZhdGlvbnMgd2VyZSBjb25kdWN0ZWQgZnJvbSB0aGUgZmx5aW5nIGJyaWRnZSBkdXJpbmcgZGF5bGlnaHQgKH4wNjAwIHRvIDIwMzApIHdoZW5ldmVyIHN1ZmZpY2llbnQgdmlzaWJpbGl0eSAoaS5lLiwgPiAyIG5tKSBhbmQgd2VhdGhlciAoaS5lLiwgPCBCZWF1Zm9ydCA2KSBhbGxvd2VkLiAgIFR3byBvYnNlcnZlcnMgc2ltdWx0YW5lb3VzbHkgc3VydmV5ZWQgdG8gdGhlIGhvcml6b24gd2l0aCAyNSB4IDE1MCBiaW5vY3VsYXJzLCBlcXVpcHBlZCB3aXRoIGNvbXBhc3MgYW5kIHJldGljbGUuICAgRWFjaCBvYnNlcnZlciBzdXJ2ZXllZCBhIDEwMCBkZWdyZWUgYXJjIGZyb20gMTAgZGVncmVlcyBvZmYgdGhlIGJvdyAob3Bwb3NpdGUgc2lkZSkgdG8gOTAgZGVncmVlcyBvbiB0aGVpciBzaWRlIG9mIHRoZSBzaGlwLiAgIEEgdGhpcmQgb2JzZXJ2ZXIgZm9jdXNlZCBvbiB0aGUgdHJhY2stbGluZSBieSBleWUsIGFpZGVkIHdpdGggNyB4IDUwIGhhbmQtaGVsZCBiaW5vY3VsYXJzLiAgIFNpZ2h0aW5ncyB3ZXJlIGVudGVyZWQgaW1tZWRpYXRlbHkgb24gYSBsYXB0b3AgY29tcHV0ZXIgY29ubmVjdGVkIHRvIHRoZSBzaGlwJ3MgR1BTIHN5c3RlbS4gICBQb3NpdGlvbnMgb2YgYWxsIHNpZ2h0aW5ncyB3ZXJlIGNvcnJlY3RlZCB0byByZWZsZWN0IHRoZSBhY3R1YWwgbG9jYXRpb24gb2YgdGhlIGNldGFjZWFucywgcmF0aGVyIHRoYW4gdGhlIHNoaXAncyBwb3NpdGlvbi4gICBUaGUgaGVpZ2h0IGZyb20gdGhlIHN1cmZhY2Ugb2YgdGhlIHdhdGVyIHRvIHRoZSBleWVzIG9mIG9ic2VydmVycyBvbiB0aGUgMjUgeCAxNTAgYmlub2N1bGFycyB3YXMgMTAuODcgbS5cblxuRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZTpcbmh0dHA6Ly9jaXMud2hvaS5lZHUvc2NpZW5jZS9iY29kbW8vZGF0YXNldC5jZm0/aWQ9MTAwNTUmZmxhZz12aWV3XG5vclxuaHR0cDovL2dsb2JlYy53aG9pLmVkdS9qZy9pbmZvL2dsb2JlYy9uZXAvY2NzL2NldGFjZWFucyU3QmRpcj1nbG9iZWMud2hvaS5lZHUvamcvZGlyL2dsb2JlYy9uZXAvY2NzLyxkYXRhPWdsb2JlYy53aG9pLmVkdS9qZy9zZXJ2L2dsb2JlYy9uZXAvY2NzL2NldGFjZWFucy5odG1sMCU3RFxuXG5Db250YWN0IFBJczpcbkN5bnRoaWEgVC4gVHluYW4sIGN0eW5hbkB3aG9pLmVkdSwgV29vZHMgSG9sZSBPY2Vhbm9ncmFwaGljIEluc3RpdHV0aW9uXG5EYXZpZCBHLiBBaW5sZXksIGRhaW5sZXlAcGVuZ3VpbnNjaWVuY2UuY29tLCBILlQuIEhhcnZleSAmIEFzc29jaWF0ZXNcblxuY2RtX2RhdGFfdHlwZSA9IFRyYWplY3RvcnlcblZBUklBQkxFUzpcbmNydWlzZV9pZFxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDcgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkR2xvYmVjQ2V0YWNlYW5zX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRHbG9iZWNDZXRhY2VhbnNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkR2xvYmVjQ2V0YWNlYW5zL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvR2xvYmFsX09jZWFuX0Vjb3N5c3RlbV9EeW5hbWljcyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRHbG9iZWNDZXRhY2VhbnMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZEdsb2JlY0NldGFjZWFucyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJHTE9CRUMiLCAiZXJkR2xvYmVjQ2V0YWNlYW5zIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEdsb2JlY0JvdHRsZS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkR2xvYmVjQm90dGxlIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEdsb2JlY0JvdHRsZS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJHTE9CRUMgTkVQIFJvc2V0dGUgQm90dGxlIERhdGEgKDIwMDIpIiwgIkdMT0JFQyAoR0xPQmFsIE9jZWFuIEVDb3N5c3RlbXMgRHluYW1pY3MpIE5FUCAoTm9ydGhlYXN0IFBhY2lmaWMpXG5Sb3NldHRlIEJvdHRsZSBEYXRhIGZyb20gTmV3IEhvcml6b24gQ3J1aXNlIChOSDAyMDc6IDEtMTkgQXVndXN0IDIwMDIpLlxuTm90ZXM6XG5QaHlzaWNhbCBkYXRhIHByb2Nlc3NlZCBieSBKYW5lIEZsZWlzY2hiZWluIChPU1UpLlxuQ2hsb3JvcGh5bGwgcmVhZGluZ3MgZG9uZSBieSBMZWFoIEZlaW5iZXJnIChPU1UpLlxuTnV0cmllbnQgYW5hbHlzaXMgZG9uZSBieSBCdXJrZSBIYWxlcyAoT1NVKS5cblNhbDAwIC0gc2FsaW5pdHkgY2FsY3VsYXRlZCBmcm9tIHByaW1hcnkgc2Vuc29ycyAoQzAsVDApLlxuU2FsMTEgLSBzYWxpbml0eSBjYWxjdWxhdGVkIGZyb20gc2Vjb25kYXJ5IHNlbnNvcnMgKEMxLFQxKS5cbnNlY29uZGFyeSBzZW5zb3IgcGFpciB3YXMgdXNlZCBpbiBmaW5hbCBwcm9jZXNzaW5nIG9mIENURCBkYXRhIGZvclxubW9zdCBzdGF0aW9ucyBiZWNhdXNlIHRoZSBwcmltYXJ5IGhhZCBtb3JlIG5vaXNlIGFuZCBzcGlrZXMuIFRoZVxucHJpbWFyeSBwYWlyIHdlcmUgdXNlZCBmb3IgY2FzdCAjOSwgMjQsIDQ4LCAxMTEgYW5kIDE1MCBkdWUgdG9cbm11bHRpcGxlIHNwaWtlcyBvciBvZmZzZXRzIGluIHRoZSBzZWNvbmRhcnkgcGFpci5cbk51dHJpZW50IHNhbXBsZXMgd2VyZSBjb2xsZWN0ZWQgZnJvbSBtb3N0IGJvdHRsZXM7IGFsbCBudXRyaWVudCBkYXRhXG5kZXZlbG9wZWQgZnJvbSBzYW1wbGVzIGZyb3plbiBkdXJpbmcgdGhlIGNydWlzZSBhbmQgYW5hbHl6ZWQgYXNob3JlO1xuZGF0YSBkZXZlbG9wZWQgYnkgQnVya2UgSGFsZXMgKE9TVSkuXG5PcGVyYXRpb24gRGV0ZWN0aW9uIExpbWl0cyBmb3IgTnV0cmllbnQgQ29uY2VudHJhdGlvbnNcbk51dHJpZW50ICBSYW5nZSAgICAgICAgIE1lYW4gICAgVmFyaWFibGUgICAgICAgICBVbml0c1xuUE80ICAgICAgIDAuMDAzLTAuMDA0ICAgMC4wMDQgICBQaG9zcGhhdGUgICAgICAgIG1pY3JvbW9sZXMgcGVyIGxpdGVyXG5OK04gICAgICAgMC4wNC0wLjA4ICAgICAwLjA2ICAgIE5pdHJhdGUrTml0cml0ZSAgbWljcm9tb2xlcyBwZXIgbGl0ZXJcblNpICAgICAgICAwLjEzLTAuMjQgICAgIDAuMTYgICAgU2lsaWNhdGUgICAgICAgICBtaWNyb21vbGVzIHBlciBsaXRlclxuTk8yICAgICAgIDAuMDAzLTAuMDA0ICAgMC4wMDMgICBOaXRyaXRlICAgICAgICAgIG1pY3JvbW9sZXMgcGVyIGxpdGVyXG5EYXRlcyBhbmQgVGltZXMgYXJlIFVUQy5cblxuRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZSBodHRwczovL3d3dy5iY28tZG1vLm9yZy9kYXRhc2V0LzI0NTJcblxuSW5xdWlyaWVzIGFib3V0IGhvdyB0byBhY2Nlc3MgdGhpcyBkYXRhIHNob3VsZCBiZSBkaXJlY3RlZCB0b1xuRHIuIEhhbCBCYXRjaGVsZGVyIChoYmF0Y2hlbGRlckBjb2FzLm9yZWdvbnN0YXRlLmVkdSkuXG5cbmNkbV9kYXRhX3R5cGUgPSBUcmFqZWN0b3J5UHJvZmlsZVxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG4uLi4gKDI0IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZEdsb2JlY0JvdHRsZV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkR2xvYmVjQm90dGxlX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZEdsb2JlY0JvdHRsZS9pbmRleC5qc29uIiwgImh0dHBzOi8vZW4ud2lraXBlZGlhLm9yZy93aWtpL0dsb2JhbF9PY2Vhbl9FY29zeXN0ZW1fRHluYW1pY3MiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkR2xvYmVjQm90dGxlLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRHbG9iZWNCb3R0bGUmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiR0xPQkVDIiwgImVyZEdsb2JlY0JvdHRsZSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRHbG9iZWNWcHQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEdsb2JlY1ZwdCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRHbG9iZWNWcHQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiR0xPQkVDIE5FUCBWZXJ0aWNhbCBQbGFua3RvbiBUb3cgKFZQVCkgRGF0YSwgMTk5Ny0yMDAxIiwgIkdMT0JFQyAoR0xPQmFsIE9jZWFuIEVDb3N5c3RlbXMgRHluYW1pY3MpIE5FUCAoTm9ydGhlYXN0IFBhY2lmaWMpXG5DYWxpZm9ybmlhIEN1cnJlbnQgUHJvZ3JhbVxuVmVydGljYWwgUGxhbmt0b24gVG93IChWUFQpIERhdGFcblxuRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cDovL2Npcy53aG9pLmVkdS9zY2llbmNlL2Jjb2Rtby9kYXRhc2V0LmNmbT9pZD0xMDE4MSZmbGFnPXZpZXdcbm9yXG5odHRwOi8vZ2xvYmVjLndob2kuZWR1L2pnL2luZm8vZ2xvYmVjL25lcC9jY3MvdnB0JTdCZGlyPWdsb2JlYy53aG9pLmVkdS9qZy9kaXIvZ2xvYmVjL25lcC9jY3MvLGRhdGE9Z2xvYmVjLmNvYXMub3JlZ29uc3RhdGUuZWR1L2pnL3NlcnYvdnB0Lmh0bWwwJTdEXG5cbkFsbCBpbnF1aXJpZXMgYWJvdXQgdGhpcyBkYXRhIHNob3VsZCBiZSBkaXJlY3RlZCB0byBEci4gV2lsbGlhbSBQZXRlcnNvbiAoYmlsbC5wZXRlcnNvbkBub2FhLmdvdikuXG5JbnF1aXJpZXMgYWJvdXQgaG93IHRvIGFjY2VzcyB0aGlzIGRhdGEgc2hvdWxkIGJlIGRpcmVjdGVkIHRvIERyLiBIYWwgQmF0Y2hlbGRlciAoaGJhdGNoZWxkZXJAY29hcy5vcmVnb25zdGF0ZS5lZHUpLlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmNhc3Rfbm8gKENhc3QgTnVtYmVyIFdpdGhpbiB0aGUgQ3J1aXNlKVxuc3RhdGlvbl9pZFxuYWJ1bmRfbTMgKEFidW5kYW5jZSwgY291bnQgbS0zKVxuY29tbWVudHNcbmNvdW50ZXJfaWRcbmRfbl9mbGFnIChEYXkvTmlnaHQgRmxhZylcbmdlYXJfYXJlYSAoTW91dGggQXJlYSBvZiBOZXQsIG0yKVxuZ2Vhcl9tZXNoIChOZXQncyBNZXNoIFNpemUsIG1tKVxuZ2Vhcl90eXBlXG5nZW51c19zcGVjaWVzXG5saWZlX3N0YWdlXG5sb2NhbF9jb2RlXG4uLi4gKDggbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkR2xvYmVjVnB0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRHbG9iZWNWcHRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkR2xvYmVjVnB0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvR2xvYmFsX09jZWFuX0Vjb3N5c3RlbV9EeW5hbWljcyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRHbG9iZWNWcHQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZEdsb2JlY1ZwdCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJHTE9CRUMiLCAiZXJkR2xvYmVjVnB0Il0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRHb2RhZVNmY29icyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRHb2RhZVNmY29icy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJHT0RBRSwgU0ZDT0JTIC0gU3VyZmFjZSBUZW1wZXJhdHVyZSBPYnNlcnZhdGlvbnMsIDE5OTgtcHJlc2VudCIsICJHT0RBRSwgU0ZDT0JTIC0gU3VyZmFjZSBUZW1wZXJhdHVyZSBPYnNlcnZhdGlvbnM6IFNoaXAsIGZpeGVkL2RyaWZ0aW5nIGJ1b3ksIGFuZCBDTUFOIGluLXNpdHUgc3VyZmFjZSB0ZW1wZXJhdHVyZS4gIEdsb2JhbCBUZWxlY29tbXVuaWNhdGlvbiBTeXN0ZW0gKEdUUykgRGF0YS5cbiAgICAgICAgXG5UaGUgR2xvYmFsIE9jZWFuIERhdGEgQXNzaW1pbGF0aW9uIEV4cGVyaW1lbnQgKEdPREFFKSBpcyBhIHByYWN0aWNhbCBkZW1vbnN0cmF0aW9uIG9mIG5lYXItcmVhbC10aW1lLCBnbG9iYWwgb2NlYW4gZGF0YSBhc3NpbWlsYXRpb24gdGhhdCBwcm92aWRlcywgcmVndWxhciwgY29tcGxldGUgZGVzY3JpcHRpb25zIG9mIHRoZSB0ZW1wZXJhdHVyZSwgc2FsaW5pdHkgYW5kIHZlbG9jaXR5IHN0cnVjdHVyZXMgb2YgdGhlIG9jZWFuIGluIHN1cHBvcnQgb2Ygb3BlcmF0aW9uYWwgb2NlYW5vZ3JhcGh5LCBzZWFzb25hbC10by1kZWNhZGFsIGNsaW1hdGUgZm9yZWNhc3RzIGFuZCBhbmFseXNlcywgYW5kIG9jZWFub2dyYXBoaWMgcmVzZWFyY2guIFRoZSBHT0RBRSBNb250ZXJleSBTZXJ2ZXIsIHNwb25zb3JlZCBtYWlubHkgYnkgdGhlIE9mZmljZSBvZiBOYXZhbCBSZXNlYXJjaCAoT05SKSwgaXMgaW50ZW5kZWQgdG8gYmUgYSBwcmluY2lwYWwgbm9kZSBpbiB0aGUgR09EQUUgYXJjaGl0ZWN0dXJlLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG50aW1lIChPYnNlcnZhdGlvbiBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxub2JfY2xtIChHREVNIENsaW1hdG9sb2dpY2FsIFNTVCwgZGVncmVlX0MpXG5vYl9jc2dtIChHREVNIFNTVCBDbGltYXRvbG9naWNhbCBWYXJpYWJpbGl0eSwgZGVncmVlX0MpXG5vYl9nbGIgKEdsb2JhbCBBbmFseXNpcyBTU1QgRXN0aW1hdGUsIGRlZ3JlZV9DKVxub2JfZ3NnbSAoR2xvYmFsIEFuYWx5c2lzIFNTVCBWYXJpYWJpbGl0eSBFc3RpbWF0ZSwgZGVncmVlX0MpXG5vYl9xYyAoUHJvYmFiaWxpdHkgb2YgZ3Jvc3MgZXJyb3IgaW4gU1NUKVxub2JfcmNwdCAoU1NUIG9ic2VydmF0aW9uIHJlY2VpcHQgdGltZSBhdCBGTk1PQywgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbm9iX3JnbiAoUmVnaW9uYWwgQW5hbHlzaXMgU1NUIEVzdGltYXRlLCBkZWdyZWVfQylcbm9iX3JzZ20gKFJlZ2lvbmFsIEFuYWx5c2lzIFNTVCBWYXJpYWJpbGl0eSBFc3RpbWF0ZSwgZGVncmVlX0MpXG5vYl9zaWduIChTU1Qgb2JzZXJ2YXRpb24gY2FsbCBzaWduKVxub2Jfc3N0IChTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5vYl90eXAgKFNTVCBvYnNlcmF0aW9uIGRhdGEgdHlwZSlcbm9iX3dtIChTU1Qgd2F0ZXIgbWFzcyBpbmRpY2F0b3IpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkR29kYWVTZmNvYnNfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZEdvZGFlU2Zjb2JzX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZEdvZGFlU2Zjb2JzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly91c2dvZGFlLm9yZy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkR29kYWVTZmNvYnMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZEdvZGFlU2Zjb2JzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZOTU9DIEdPREFFIiwgImVyZEdvZGFlU2Zjb2JzIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2N3Yl93YXRlcl9xdWFsaXR5LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9jd2Jfd2F0ZXJfcXVhbGl0eSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9jd2Jfd2F0ZXJfcXVhbGl0eS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJIYXdhaWkgQ2xlYW4gV2F0ZXIgQnJhbmNoIChDV0IpIEJlYWNoIFdhdGVyIFF1YWxpdHkgRGF0YSIsICJFeHBvc3VyZSB0byBzZXdhZ2UgY29udGFtaW5hdGVkIHJlY3JlYXRpb25hbCB3YXRlcnMgbWF5IGNhdXNlIGdhc3Ryb2ludGVzdGluYWwgaWxsbmVzc2VzIGluIHN3aW1tZXJzLiBUaGUgU3RhdGUgb2YgSGF3YWlpIERlcGFydG1lbnQgb2YgSGVhbHRoIChISURPSCkgQ2xlYW4gV2F0ZXIgQnJhbmNoIChDV0IpIG1vbml0b3JzIHRoZSB3YXRlcnMgb2YgSGF3YWlpJ3MgYmVhY2hlcyBmb3IgY29uY2VudHJhdGlvbnMgb2YgRW50ZXJvY29jY3VzLCB3aGljaCBhY3RzIGFzIGFuIGluZGljYXRvciBvZiBwYXRob2dlbnMuIFRoZSBDV0IgYWxzbyB1c2VzIENsb3N0cmlkaXVtIHBlcmZyaW5nZW5zIGFzIGEgc2Vjb25kYXJ5IHRyYWNlciBvZiBzZXdhZ2UgY29udGFtaW5hdGlvbi4gUmVzdWx0cyBvZiB0aGlzIG1vbml0b3JpbmcgYXJlIGV2YWx1YXRlZCB1c2luZyBhIGRlY2lzaW9uIHJ1bGUgdG8gZGV0ZXJtaW5lIHdoZXRoZXIgYSBiZWFjaCBpcyBzYWZlIChcIkNvbXBsaWFudFwiKSBvciBub3Qgc2FmZSAob24gXCJBbGVydFwiKSBmb3Igc3dpbW1pbmcgYW5kIG90aGVyIHdhdGVyIGNvbnRhY3QgYWN0aXZpdGllcy4gSWYgYSBiZWFjaCBpcyBmb3VuZCB0byBiZSBvbiBcIkFsZXJ0XCIgZHVlIHRvIGVsZXZhdGVkIGluZGljYXRvciBiYWN0ZXJpYSBsZXZlbHMsIHRoZSBDV0IgaXNzdWVzIHB1YmxpYyB3YXJuaW5ncyBhbmQgYWxlcnRzIGFuZCBkZXRlcm1pbmVzIHdoZXRoZXIgcmVzYW1wbGluZyBvZiB0aGUgYXJlYSBpcyBuZWNlc3NhcnkuXG5cblVuZGVyIHRoZSBVLlMuIEJFQUNIIEFjdCwgdGhlIFN0YXRlIG9mIEhhd2FpaSByZWNlaXZlcyBhbiBhbm51YWwgZ3JhbnQgdG8gaW1wbGVtZW50IGl0cyBiZWFjaCBtb25pdG9yaW5nIHByb2dyYW0uIFRoaXMgcmVxdWlyZXMgdGhlIFN0YXRlIHRvIGNvbmR1Y3QgYSBtb25pdG9yaW5nIGFuZCBub3RpZmljYXRpb24gcHJvZ3JhbSB0aGF0IGlzIGNvbnNpc3RlbnQgd2l0aCBwZXJmb3JtYW5jZSBjcml0ZXJpYSBwdWJsaXNoZWQgYnkgdGhlIFUuUy4gRW52aXJvbm1lbnRhbCBQcm90ZWN0aW9uIEFnZW5jeSAoRVBBKSBpbiAyMDAyLiBJbiBNYXJjaCAyMDEwLCB0aGUgRVBBIGFwcHJvdmVkIGFtZW5kbWVudHMgdG8gdGhlIEhhd2FpaSBBZG1pbmlzdHJhdGl2ZSBSdWxlcyAoSEFSKSwgQ2hhcHRlciAxMS01NCwgV2F0ZXIgUXVhbGl0eSBTdGFuZGFyZHMgKENXQiBRQVByZ1AsIEhJRE9IIDIwMTEsIEFwcGVuZGl4IEQpLCB3aGljaCByZXZpc2VkIHRoZSBwcmV2aW91cyBTdGF0ZSBFbnRlcm9jb2NjdXMgY3JpdGVyaWEgb2YgYSBnZW9tZXRyaWMgbWVhbiAoR00pIG9mIDcgY29sb255LWZvcm1pbmcgdW5pdHMgKENGVSkgcGVyIDEwMCBtTCBhbmQgYSBzaW5nbGUgc2FtcGxlIG1heGltdW0gKFNTTSkgb2YgMTAwIENGVS8xMDAgbUwgdG8gbWVldCBjdXJyZW50IEVQQSBndWlkZWxpbmVzLiBUaGUgU3RhdGUgb2YgSGF3YWlpIG5vdyB1c2VzIHRoZSBFUEEgcmVjb21tZW5kZWQgRW50ZXJvY29jY3VzIEdNIGFuZCBTU00gZm9yIHJlY3JlYXRpb25hbCB3YXRlcnMgY29uc2lzdGVudCBpbiB0aGUgMTk4NiBBbWJpZW50IFdhdGVyIFF1YWxpdHkgQ3JpdGVyaWEgZm9yIEJhY3RlcmlhLiBUaGUgY3JpdGVyaW9uIGxpc3RzIHRoZSBHTSBhbmQgU1NNIGZvciBtYXJpbmUgd2F0ZXJzIGFzIDM1IENGVS8xMDAgbUwgYW5kIDEwNCBDRlUvMTAwIG1MLCByZXNwZWN0aXZlbHkuXG5cblRoZSBDV0IgdXRpbGl6ZXMgQ2xvc3RyaWRpdW0gcGVyZnJpbmdlbnMgYXMgYSBzZWNvbmRhcnkgdHJhY2VyIGluIGFkZGl0aW9uIHRvIHRoZSBFbnRlcm9jb2NjdXMgaW5kaWNhdG9yIHRvIGhlbHAgZGlzdGluZ3Vpc2ggYmV0d2VlbiBzZXdhZ2UgYW5kIG5vbi1zZXdhZ2Ugc291cmNlcyBvZiBlbGV2YXRlZCBFbnRlcm9jb2NjdXMgbGV2ZWxzIGluIG1hcmluZSBjb2FzdGFsIHdhdGVycy4gVGhlIHJlbGlhYmlsaXR5IG9mIEVudGVyb2NvY2N1cyBhcyBhbiBpbmRpY2F0b3Igb3JnYW5pc20gaW4gdHJvcGljYWwgZW52aXJvbm1lbnRzIGhhcyBiZWVuIHF1ZXN0aW9uZWQuIFRoaXMgaXNzdWUgd2FzIGZvcm1hbGx5IGRvY3VtZW50ZWQgaW4gdGhlIHJlcG9ydCwgVHJvcGljYWwgV2F0ZXIgUXVhbGl0eSBJbmRpY2F0b3IgV29ya3Nob3AgKEZ1amlva2EgYW5kIEJ5YXBwYW5haGFsbGksIDIwMDMpLlxuXG5PbmUgb2YgdGhlIGxpbWl0YXRpb25zIG9mIGFsbCBhdmFpbGFibGUgYW5kIEVQQS1hcHByb3ZlZCB0ZXN0IG1ldGhvZHMgaXMgdGhhdCB0aGUgc2FtcGxlIG11c3QgYmUgaW5jdWJhdGVkIGZvciBhYm91dCAyNCBob3Vycy4gQXMgYSByZXN1bHQsIHRoZSBwdWJsaWMgZmluZHMgb3V0IHRvZGF5IHdoZW4gdGhleSBzaG91bGRuJ3QgaGF2ZSBnb25lIGluIHRoZSB3YXRlciB5ZXN0ZXJkYXkuIEFzIGEgcmVzdWx0LCB3YXJuaW5nIHNpZ25zIG9uIHRoZSBiZWFjaCBtYXkgb3IgbWF5IG5vdCBiZSByZWZsZWN0aXZlIG9mIGFjdHVhbCB3YXRlciBxdWFsaXR5IGJlY2F1c2UgdGhleSBhcmUgYmFzZWQgb24gdGVzdHMgcGVyZm9ybWVkIG9uZSBvciBtb3JlIGRheXMgYWdvLlxuXG5CZWFjaCBNb25pdG9yaW5nIFF1YWxpdHkgQXNzdXJhbmNlIFByb2plY3QgUGxhbiAoQ1dCTU9OUUFQUDAwMik6XG5odHRwczovL3d3dy5wYWNpb29zLmhhd2FpaS5lZHUvd3AtY29udGVudC91cGxvYWRzLzIwMTYvMDgvQmVhY2hfTW9uaXRvcmluZ19RQVBQX0NXQk1PTlFBUFAwMDJfMTIwNTA3LnBkZlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG4uLi4gKDEyIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2N3Yl93YXRlcl9xdWFsaXR5X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9jd2Jfd2F0ZXJfcXVhbGl0eV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9jd2Jfd2F0ZXJfcXVhbGl0eS9pbmRleC5qc29uIiwgImh0dHA6Ly93d3cuYmVhY2hhcGVkaWEub3JnL1N0YXRlX29mX3RoZV9CZWFjaC9TdGF0ZV9SZXBvcnRzL0hJL1dhdGVyX1F1YWxpdHkiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvY3diX3dhdGVyX3F1YWxpdHkucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWN3Yl93YXRlcl9xdWFsaXR5JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlN0YXRlIG9mIEhhd2FpaSBDbGVhbiBXYXRlciBCcmFuY2ggKENXQikiLCAiY3diX3dhdGVyX3F1YWxpdHkiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvQVdTLUhJTUIuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0FXUy1ISU1CIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0FXUy1ISU1CLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkhJTUIgV2VhdGhlciBTdGF0aW9uOiBNb2t1IG8gTG9lIChDb2NvbnV0IElzbGFuZCksIE9haHUsIEhhd2FpaSIsICJUaGUgSGF3YWlpIEluc3RpdHV0ZSBvZiBNYXJpbmUgQmlvbG9neSAoSElNQikgYXV0b21hdGljIHdlYXRoZXIgc3RhdGlvbiAoQVdTKSByZWNvcmRzIGhvdXJseSBtZWFzdXJlbWVudHMgb2YgcHJlY2lwaXRhdGlvbiwgYWlyIHRlbXBlcmF0dXJlLCB3aW5kIHNwZWVkIGFuZCBkaXJlY3Rpb24sIGFuZCBpcnJhZGlhbmNlLiBTZW5zb3JzIGluY2x1ZGUgYW4gRXBwbGV5IDI5NS0zODUgbm0gdWx0cmF2aW9sZXQgKFVWKSByYWRpb21ldGVyLCBhIExpQ29yIDIwMFNaIFB5cmFub21ldGVyLCBhbmQgYSBMaUNvciBRdWFudGFtZXRlciAoNDAwLTcwMCBubSkuIFRoZSBzZW5zb3JzIGFyZSBsb2NhdGVkIG9uIHRoZSByb29mIG9mIEhJTUIncyBDb3JhbCBSZWVmIEVjb2xvZ3kgTGFib3JhdG9yeSAoUG9pbnQgTGFiKSBvbiBNb2t1IG8gTG9lIChDb2NvbnV0IElzbGFuZCkgaW4gS2FuZW9oZSBCYXkgb24gdGhlIHdpbmR3YXJkIChlYXN0ZXJuKSBjb2FzdCBvZiBPYWh1IGluIEhhd2FpaS4gQW4gYWNjb21wYW55aW5nIHNlYSB3YXRlciB0ZW1wZXJhdHVyZSBzZW5zb3IgaXMgbG9jYXRlZCBsZXNzIHRoYW4gMTAgbSBvZmZzaG9yZSBvZiB0aGUgd2VhdGhlciBzdGF0aW9uIGF0IGEgc2hhbGxvdyBkZXB0aCBvZiBhcHByb3hpbWF0ZWx5IDEgbS5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWx0aXR1ZGUgKERpc3RhbmNlIGFib3ZlIG1lYW4gc2VhIGxldmVsLCBtKVxuc3RhdGlvbl9uYW1lIChBV1MtSElNQjogSElNQiBXZWF0aGVyIFN0YXRpb246IE1va3UgbyBMb2UgKENvY29udXQgSXNsYW5kKSwgT2FodSwgSGF3YWlpKVxuYWlyX3RlbXBlcmF0dXJlIChhaXIgdGVtcGVyYXR1cmUgKHByb2Nlc3NlZCksIENlbHNpdXMpXG5zZWFfd2F0ZXJfdGVtcGVyYXR1cmUgKHdhdGVyIHRlbXBlcmF0dXJlIChwcm9jZXNzZWQpLCBDZWxzaXVzKVxud2luZF9zcGVlZCAod2luZCBzcGVlZCAocHJvY2Vzc2VkKSwgbS9zKVxuZ3VzdF9zcGVlZCAoZ3VzdCBzcGVlZCAocHJvY2Vzc2VkKSwgbS9zKVxud2luZF9mcm9tX2RpcmVjdGlvbiAod2luZCBkaXJlY3Rpb24gKHByb2Nlc3NlZCksIGRlZ3JlZXMpXG53aW5kX2Zyb21fZGlyZWN0aW9uX3N0ZCAoc3RhbmRhcmQgZGV2aWF0aW9uIG9mIHdpbmQgZGlyZWN0aW9uIChwcm9jZXNzZWQpLCBkZWdyZWVzKVxucmFpbmZhbGxfYW1vdW50ICh0b3RhbCByYWluZmFsbCAocHJvY2Vzc2VkKSwgbW0pXG5zaG9ydHdhdmVfcmFkaWF0aW9uIChkb3dud2VsbGluZyBzaG9ydHdhdmUgcmFkaWF0aW9uIChwcm9jZXNzZWQpLCBXL20yKVxudWx0cmF2aW9sZXRfcmFkaWF0aW9uICh1bHRyYXZpb2xldCByYWRpYXRpb24gKHByb2Nlc3NlZCksIFcvbTIpXG5waG90b3N5bnRoZXRpY19yYWRpYXRpb24gKHBob3Rvc3ludGhldGljYWxseSBhY3RpdmUgcmFkaWF0aW9uIChwcm9jZXNzZWQpLCB1bW9sIG0tMiBzLTEpXG5haXJfdGVtcGVyYXR1cmVfcmF3IChhaXIgdGVtcGVyYXR1cmUgKHJhdyksIENlbHNpdXMpXG5haXJfdGVtcGVyYXR1cmVfZG1fcWQgKGFpciB0ZW1wZXJhdHVyZSBkZWxheWVkLW1vZGUgcXVhbGl0eSBkZXNjcmlwdG9yLCAwKVxuYWlyX3RlbXBlcmF0dXJlX3FjX2FnZyAoUUFSVE9EIEFnZ3JlZ2F0ZS9Sb2xsdXAgVGVzdCAocHJvY2Vzc2VkKSwgMClcbmFpcl90ZW1wZXJhdHVyZV9xY19hdG4gKFFBUlRPRCBBdHRlbnVhdGVkIFNpZ25hbCBUZXN0IChwcm9jZXNzZWQpLCAwKVxuYWlyX3RlbXBlcmF0dXJlX3FjX2NsbSAoUUFSVE9EIENsaW1hdG9sb2d5IFRlc3QgKHByb2Nlc3NlZCksIDApXG5haXJfdGVtcGVyYXR1cmVfcWNfZmx0IChRQVJUT0QgRmxhdCBMaW5lIFRlc3QgKHByb2Nlc3NlZCksIDApXG4uLi4gKDEzOSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9BV1MtSElNQl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvQVdTLUhJTUJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vQVdTLUhJTUIvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wYWNpb29zLmhhd2FpaS5lZHUvd2VhdGhlci9vYnMtbW9rdW9sb2UvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL0FXUy1ISU1CLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1BV1MtSElNQiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJIYXdhaWkgSW5zdGl0dXRlIG9mIE1hcmluZSBCaW9sb2d5IChISU1CKSIsICJBV1MtSElNQiJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZWFydGhDdWJlTGlzaXJkSGlzdFRzaSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lYXJ0aEN1YmVMaXNpcmRIaXN0VHNpLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkhpc3RvcmljYWwgVG90YWwgU29sYXIgSXJyYWRpYW5jZSBSZWNvbnN0cnVjdGlvbiIsICJIaXN0b3JpY2FsIFRvdGFsIFNvbGFyIElycmFkaWFuY2UgKFRTSSkgUmVjb25zdHJ1Y3Rpb24gZWNvbnN0cnVjdGlvbiBmcm9tIFdhbmcsIExlYW4sIFNoZWVsZXkgKEFwSiwgMjAwNSkuICBPZmZzZXQgLTQuODE3OCBXL21eMiB0byBtYXRjaCBTT1JDRS9USU0gYWJzb2x1dGUgdmFsdWUgZnJvbSBLb3BwLCBMYXdyZW5jZSwgYW5kIFJvdHRtYW4gKFNvbGFyIFBoeXMsIDIwMDUpLiBFeHRlbmRlZCB1c2luZyBTT1JDRS9USU0gYW5udWFsIGF2ZXJhZ2VzIGZyb20gMjAwMyBvbndhcmQuIENvbXB1dGVkIGJ5IEdyZWcgS29wcC4gIEZyb20gdGhlIExBU1AgSW50ZXJhY3RpdmUgU29sYXIgSXJyYWRpYW5jZSBEYXRhIChMSVNJUkQpIENlbnRlclxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnllYXJcbmlycmFkaWFuY2UgKFRvdGFsIFNvbGFyIElycmFkaWFuY2UsIFcvbV4yKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lYXJ0aEN1YmVMaXNpcmRIaXN0VHNpL2luZGV4Lmpzb24iLCAiaHR0cDovL2xhc3AuY29sb3JhZG8uZWR1L2xpc2lyZC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZWFydGhDdWJlTGlzaXJkSGlzdFRzaS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZWFydGhDdWJlTGlzaXJkSGlzdFRzaSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJMSVNJUkQiLCAiZWFydGhDdWJlTGlzaXJkSGlzdFRzaSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9odWlfd2F0ZXJfcXVhbGl0eS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvaHVpX3dhdGVyX3F1YWxpdHkiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvaHVpX3dhdGVyX3F1YWxpdHkuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiSHVpIE8gS2EgV2FpIE9sYSBXYXRlciBRdWFsaXR5IERhdGEiLCAiVGhlIGdvYWwgb2YgdGhlIEh1aSBPIEthIFdhaSBPbGEgKEFzc29jaWF0aW9uIE9mIFRoZSBMaXZpbmcgV2F0ZXJzKSBjaXRpemVuLXNjaWVuY2UgYmFzZWQgd2F0ZXIgcXVhbGl0eSBwcm9ncmFtIGlzIHRvIGluY3JlYXNlIHRoZSBjYXBhY2l0eSBmb3IgbW9uaXRvcmluZyB3YXRlciBxdWFsaXR5IGluIE1hdWkgY29hc3RhbCB3YXRlcnMgYnkgZ2VuZXJhdGluZyByZWxpYWJsZSBkYXRhIHRvIGFzc2VzcyBsb25nLXRlcm0gd2F0ZXItcXVhbGl0eSBjb25kaXRpb25zIGFuZCBkZXRlY3QgdGVtcG9yYWwgdHJlbmRzLiBUaGVzZSBkYXRhIGF1Z21lbnQgdGhlIGRhdGEgcHJvZHVjZWQgYnkgdGhlIEhhd2FpaSBEZXBhcnRtZW50IG9mIEhlYWx0aCAoRE9IKSBDbGVhbiBXYXRlciBCcmFuY2ggKENXQikgYmVhY2ggbW9uaXRvcmluZyBwcm9ncmFtIG9uIE1hdWkuXG4gICAgXG5EYXRhIGFyZSBjb2xsZWN0ZWQgYW5kIGFuYWx5emVkIGV2ZXJ5IHR3byBvciB0aHJlZSB3ZWVrcyBmb3IgcGh5c2ljYWwgYW5kIGNoZW1pY2FsIHBhcmFtZXRlcnMsIGluY2x1ZGluZyBvY2VhbiBzYWxpbml0eSwgcEgsIHRlbXBlcmF0dXJlLCBvcmdhbmljIG51dHJpZW50cyAobml0cm9nZW4gYW5kIHBob3NwaG9yb3VzIGNvbXBvdW5kcyksIGRpc3NvbHZlZCBveHlnZW4gKERPKSwgYW5kIHRvdGFsIHN1c3BlbmRlZCBzZWRpbWVudCAoVFNTKS4gU29tZSB3YXRlciBzYW1wbGVzIGFyZSBpbW1lZGlhdGVseSB0ZXN0ZWQgYXQgbW9iaWxlIGxhYnMgd2hpbGUgb3RoZXJzIGFyZSBwcm9jZXNzZWQgZm9yIHRlc3RpbmcgYXQgVW5pdmVyc2l0eSBvZiBIYXdhaWkgYW5kL29yIG90aGVyIGxhYnMuXG4gICAgXG5Vc2VycyBvZiB0aGVzZSBkYXRhIHNob3VsZCBjaXRlIHRoZSBmb2xsb3dpbmcgcHVibGljYXRpb246XG4gICAgXG5GYWxpbnNraSwgS2ltLCBEYW5hIFJlZWQsIFRvdmEgQ2FsbGVuZGVyLCBFbWlseSBGaWVsZGluZywgUm9iaW4gTmV3Ym9sZCwgYW5kIEFsYW5hIFl1cmthbmluLiAoMjAxOCkuIEh1aSBPIEthIFdhaSBPbGEgV2F0ZXIgUXVhbGl0eSBEYXRhIFtEYXRhIHNldF0uIFplbm9kby4gXCJodHRwOi8vZG9pLm9yZy8xMC41MjgxL3plbm9kby4xMTczNzE3XCJcbiAgICBcbkZvciBmdXJ0aGVyIGluZm9ybWF0aW9uLCBwbGVhc2UgdmlzaXQ6XG5odHRwczovL3d3dy5odWlva2F3YWlvbGEuY29tXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sb2NhdGlvbl9pZCAoc2FtcGxpbmcgc2l0ZSBpZGVudGlmaWVyKVxubG9jYXRpb25fbmFtZVxuc2FtcGxlX2lkIChzYW1wbGUgaWRlbnRpZmllcilcbnNlc3Npb25faWQgKHNhbXBsaW5nIHNlc3Npb24gaWRlbnRpZmllcilcbndhdGVyX3RlbXBlcmF0dXJlIChDZWxzaXVzKVxuLi4uICgxMiBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9odWlfd2F0ZXJfcXVhbGl0eV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvaHVpX3dhdGVyX3F1YWxpdHlfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vaHVpX3dhdGVyX3F1YWxpdHkvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5odWlva2F3YWlvbGEuY29tIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2h1aV93YXRlcl9xdWFsaXR5LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1odWlfd2F0ZXJfcXVhbGl0eSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJIdWkgTyBLYSBXYWkgT2xhIiwgImh1aV93YXRlcl9xdWFsaXR5Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X2Fpcy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvTGlxdWlkUl9IQkczXzIwMTVfYWlzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X2Fpcy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJMaXF1aWQgUm9ib3RpY3MgV2F2ZSBHbGlkZXIsIEhvbmV5IEJhZGdlciAoRzMpLCAyMDE1LCBBSVMiLCAiTGlxdWlkIFJvYm90aWNzIFdhdmUgR2xpZGVyLCBIb25leSBCYWRnZXIgKEczKSwgMjAxNSwgQUlTLiBUaGUgTUFHSSBtaXNzaW9uIGlzIHRvIHVzZSB0aGUgV2F2ZSBHbGlkZXIgdG8gc2FtcGxlIHRoZSBsYXRlIHN1bW1lciBjaGxvcm9waHlsbCBibG9vbSB0aGF0IGRldmVsb3BzIG5lYXIgMzBcdTAwYjBOLCB3aXRoIHRoZSBnb2FsIG9mIHVzaW5nIHRoZSBjYW1lcmEgYW5kIExJU1NULUhvbG8gdG8gdHJ5IHRvIGlkZW50aWZ5IHNwZWNpZXMgaW4gdGhlIGJsb29tcyBhbmQgdGhlbiBmb2xsb3cgdGhlIGRldmVsb3BtZW50IG9mIHBoeXRvcGxhbmt0b24gYWdncmVnYXRlcy4gVGhlc2UgYWdncmVnYXRlcyBoYXZlIHJlY2VudGx5IGJlZW4gc2hvd24gdG8gYmUgYSBzaWduaWZpY2FudCBwYXJ0IG9mIHRoZSB0b3RhbCBhbW91bnQgb2YgY2FyYm9uIHRoYXQgc2lua3MgdG8gdGhlIGRlZXAgc2VhLiBLYXJsIGV0IGFsICgyMDEyKSBmb3VuZCB0aGF0IGluIGVhY2ggb2YgdGhlIHBhc3QgMTMgeWVhcnMsIHRoZXJlIHdhcyBhIGZsdXggb2YgbWF0ZXJpYWwgdG8gNCwwMDAgbSAodGhlIHN1bW1lciBleHBvcnQgcHVsc2UpIHRoYXQgcmVwcmVzZW50ZWQgfjIwJSBvZiB0aGUgdG90YWwgYW5udWFsIGZsdXguIFdvcmsgYmFzZWQgb24gc2F0ZWxsaXRlIG9jZWFuIGNvbG9yIGRhdGEgb3ZlciB0aGUgcGFzdCBkZWNhZGUgaGFzIHJldmVhbGVkIHRoZSBleGlzdGVuY2Ugb2YgbGFyZ2UgcGh5dG9wbGFua3RvbiBibG9vbXMgaW4gdGhlIFBhY2lmaWMgT2NlYW4gdGhhdCBjb3ZlciB0aG91c2FuZHMgb2Yga20yLCBwZXJzaXN0IGZvciB3ZWVrcyBvciBsb25nZXIsIGFuZCBhcmUgb2Z0ZW4gZG9taW5hdGVkIGJ5IG5pdHJvZ2VuLWZpeGluZyBkaWF0b20gc3ltYmlvc2VzIChXaWxzb24gZXQgYWwuIDIwMDgpLiBXZSBob3BlIHRvIGJlIGFibGUgdG8gZXhhbWluZSB3aGV0aGVyIHRoaXMgYWdncmVnYXRpb24gaXMgb2NjdXJyaW5nIGluIHRoZSB2YXN0IG9jZWFuaWMgcmVnaW9ucyBub3J0aCBhbmQgZWFzdCBvZiBIYXdhaSdpIGFuZCBwcm92aWRlIGEgYmFzaW4tc2NhbGUgY29udGV4dCBmb3IgdGhlIEFMT0hBIG9ic2VydmF0aW9ucy4gVGhlc2UgZXZlbnRzIGhhdmUgcHJvdmVuIGRpZmZpY3VsdCB0byBzdHVkeSBvdXRzaWRlIG9mIHRoZSB0aW1lIHNlcmllcyBzdGF0aW9uIEFMT0hBIGF0IEhhd2FpJ2kuXG5cbmNkbV9kYXRhX3R5cGUgPSBUcmFqZWN0b3J5XG5WQVJJQUJMRVM6XG52ZWhpY2xlTmFtZSAoVmVoaWNsZSBOYW1lKVxuYWlzXG5mZWVkX3ZlcnNpb25cbnRpbWUgKERhdGV0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbk1NU0kgKE1hcml0aW1lIE1vYmlsZSBTZXJ2aWNlIElkZW50aXR5KVxuQ09HIChDb3Vyc2UgT3ZlciBHcm91bmQsIGRlZ3JlZXNfdHJ1ZSlcblNPRyAoU3BlZWQgT3ZlciBHcm91bmQsIGtub3RzKVxuUk9UIChSYXRlIE9mIFR1cm4sIGRlZ3JlZXMvbWluKVxuSGVhZGluZyAoZGVncmVlc190cnVlKVxuTmF2aWdhdGlvblN0YXR1cyAoTmF2aWdhdGlvbiBTdGF0dXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvTGlxdWlkUl9IQkczXzIwMTVfYWlzX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9MaXF1aWRSX0hCRzNfMjAxNV9haXNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vTGlxdWlkUl9IQkczXzIwMTVfYWlzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9NQUdJLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9MaXF1aWRSX0hCRzNfMjAxNV9haXMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPUxpcXVpZFJfSEJHM18yMDE1X2FpcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJMaXF1aWQgUm9ib3RpY3MsIFVUIEF1c3RpbiwgTk9BQSBOTUZTIFNXRlNDIEVSRCIsICJMaXF1aWRSX0hCRzNfMjAxNV9haXMiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvTGlxdWlkUl9IQkczXzIwMTVfYzMuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X2MzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X2MzLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkxpcXVpZCBSb2JvdGljcyBXYXZlIEdsaWRlciwgSG9uZXkgQmFkZ2VyIChHMyksIDIwMTUsIEMzIiwgIkxpcXVpZCBSb2JvdGljcyBXYXZlIEdsaWRlciwgSG9uZXkgQmFkZ2VyIChHMyksIDIwMTUsIEMzLlxuQzMgYm9hcmQgbnVtYmVyIDgyMTUgKG5vdCBjb2F0ZWQpIGFwcGVhcnMgYXMgYm9hcmRfaWQ9MzIsIHRhc2tfaWQ9MjMuXG5DMyBib2FyZCBudW1iZXIgNzcxIChjb2F0ZWQpIGFwcGVhcnMgYXMgYm9hcmRfaWQ9MywgdGFza19pZD0zLiBUaGUgTUFHSSBtaXNzaW9uIGlzIHRvIHVzZSB0aGUgV2F2ZSBHbGlkZXIgdG8gc2FtcGxlIHRoZSBsYXRlIHN1bW1lciBjaGxvcm9waHlsbCBibG9vbSB0aGF0IGRldmVsb3BzIG5lYXIgMzBcdTAwYjBOLCB3aXRoIHRoZSBnb2FsIG9mIHVzaW5nIHRoZSBjYW1lcmEgYW5kIExJU1NULUhvbG8gdG8gdHJ5IHRvIGlkZW50aWZ5IHNwZWNpZXMgaW4gdGhlIGJsb29tcyBhbmQgdGhlbiBmb2xsb3cgdGhlIGRldmVsb3BtZW50IG9mIHBoeXRvcGxhbmt0b24gYWdncmVnYXRlcy4gVGhlc2UgYWdncmVnYXRlcyBoYXZlIHJlY2VudGx5IGJlZW4gc2hvd24gdG8gYmUgYSBzaWduaWZpY2FudCBwYXJ0IG9mIHRoZSB0b3RhbCBhbW91bnQgb2YgY2FyYm9uIHRoYXQgc2lua3MgdG8gdGhlIGRlZXAgc2VhLiBLYXJsIGV0IGFsICgyMDEyKSBmb3VuZCB0aGF0IGluIGVhY2ggb2YgdGhlIHBhc3QgMTMgeWVhcnMsIHRoZXJlIHdhcyBhIGZsdXggb2YgbWF0ZXJpYWwgdG8gNCwwMDAgbSAodGhlIHN1bW1lciBleHBvcnQgcHVsc2UpIHRoYXQgcmVwcmVzZW50ZWQgfjIwJSBvZiB0aGUgdG90YWwgYW5udWFsIGZsdXguIFdvcmsgYmFzZWQgb24gc2F0ZWxsaXRlIG9jZWFuIGNvbG9yIGRhdGEgb3ZlciB0aGUgcGFzdCBkZWNhZGUgaGFzIHJldmVhbGVkIHRoZSBleGlzdGVuY2Ugb2YgbGFyZ2UgcGh5dG9wbGFua3RvbiBibG9vbXMgaW4gdGhlIFBhY2lmaWMgT2NlYW4gdGhhdCBjb3ZlciB0aG91c2FuZHMgb2Yga20yLCBwZXJzaXN0IGZvciB3ZWVrcyBvciBsb25nZXIsIGFuZCBhcmUgb2Z0ZW4gZG9taW5hdGVkIGJ5IG5pdHJvZ2VuLWZpeGluZyBkaWF0b20gc3ltYmlvc2VzIChXaWxzb24gZXQgYWwuIDIwMDgpLiBXZSBob3BlIHRvIGJlIGFibGUgdG8gZXhhbWluZSB3aGV0aGVyIHRoaXMgYWdncmVnYXRpb24gaXMgb2NjdXJyaW5nIGluIHRoZSB2YXN0IG9jZWFuaWMgcmVnaW9ucyBub3J0aCBhbmQgZWFzdCBvZiBIYXdhaSdpIGFuZCBwcm92aWRlIGEgYmFzaW4tc2NhbGUgY29udGV4dCBmb3IgdGhlIEFMT0hBIG9ic2VydmF0aW9ucy4gVGhlc2UgZXZlbnRzIGhhdmUgcHJvdmVuIGRpZmZpY3VsdCB0byBzdHVkeSBvdXRzaWRlIG9mIHRoZSB0aW1lIHNlcmllcyBzdGF0aW9uIEFMT0hBIGF0IEhhd2FpJ2kuXG5cbmNkbV9kYXRhX3R5cGUgPSBUcmFqZWN0b3J5XG5WQVJJQUJMRVM6XG52ZWhpY2xlTmFtZSAoVmVoaWNsZSBOYW1lKVxuYm9hcmRfaWRcbnRhc2tfaWRcbmMzXyAoQzMpXG5mZWVkX3ZlcnNpb25cbnRpbWUgKERhdGV0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnVuaXhfdGltZXN0YW1wIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuYzFfY2hsb3JvcGh5bGwgKENoYW5uZWwgMTogQ2hsb3JvcGh5bGwsIFJGVSlcbmMyX0NET00gKENoYW5uZWwgMjogQ0RPTSwgUkZVKVxuYzNfcGh5Y29lcnl0aHJpbiAoQ2hhbm5lbCAzOiBQaHljb2VyeXRocmluLCBSRlUpXG5wcmVzc3VyZSAoPylcbnRlbXBlcmF0dXJlIChkZWdyZWVfQylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9MaXF1aWRSX0hCRzNfMjAxNV9jM19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvTGlxdWlkUl9IQkczXzIwMTVfYzNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vTGlxdWlkUl9IQkczXzIwMTVfYzMvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L01BR0kvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL0xpcXVpZFJfSEJHM18yMDE1X2MzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1MaXF1aWRSX0hCRzNfMjAxNV9jMyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJMaXF1aWQgUm9ib3RpY3MsIFVUIEF1c3RpbiwgTk9BQSBOTUZTIFNXRlNDIEVSRCIsICJMaXF1aWRSX0hCRzNfMjAxNV9jMyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9MaXF1aWRSX0hCRzNfMjAxNV9jdGQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X2N0ZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9MaXF1aWRSX0hCRzNfMjAxNV9jdGQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTGlxdWlkIFJvYm90aWNzIFdhdmUgR2xpZGVyLCBIb25leSBCYWRnZXIgKEczKSwgMjAxNSwgQ1REIiwgIkxpcXVpZCBSb2JvdGljcyBXYXZlIEdsaWRlciwgSG9uZXkgQmFkZ2VyIChHMyksIDIwMTUsIENURC4gVGhlIE1BR0kgbWlzc2lvbiBpcyB0byB1c2UgdGhlIFdhdmUgR2xpZGVyIHRvIHNhbXBsZSB0aGUgbGF0ZSBzdW1tZXIgY2hsb3JvcGh5bGwgYmxvb20gdGhhdCBkZXZlbG9wcyBuZWFyIDMwXHUwMGIwTiwgd2l0aCB0aGUgZ29hbCBvZiB1c2luZyB0aGUgY2FtZXJhIGFuZCBMSVNTVC1Ib2xvIHRvIHRyeSB0byBpZGVudGlmeSBzcGVjaWVzIGluIHRoZSBibG9vbXMgYW5kIHRoZW4gZm9sbG93IHRoZSBkZXZlbG9wbWVudCBvZiBwaHl0b3BsYW5rdG9uIGFnZ3JlZ2F0ZXMuIFRoZXNlIGFnZ3JlZ2F0ZXMgaGF2ZSByZWNlbnRseSBiZWVuIHNob3duIHRvIGJlIGEgc2lnbmlmaWNhbnQgcGFydCBvZiB0aGUgdG90YWwgYW1vdW50IG9mIGNhcmJvbiB0aGF0IHNpbmtzIHRvIHRoZSBkZWVwIHNlYS4gS2FybCBldCBhbCAoMjAxMikgZm91bmQgdGhhdCBpbiBlYWNoIG9mIHRoZSBwYXN0IDEzIHllYXJzLCB0aGVyZSB3YXMgYSBmbHV4IG9mIG1hdGVyaWFsIHRvIDQsMDAwIG0gKHRoZSBzdW1tZXIgZXhwb3J0IHB1bHNlKSB0aGF0IHJlcHJlc2VudGVkIH4yMCUgb2YgdGhlIHRvdGFsIGFubnVhbCBmbHV4LiBXb3JrIGJhc2VkIG9uIHNhdGVsbGl0ZSBvY2VhbiBjb2xvciBkYXRhIG92ZXIgdGhlIHBhc3QgZGVjYWRlIGhhcyByZXZlYWxlZCB0aGUgZXhpc3RlbmNlIG9mIGxhcmdlIHBoeXRvcGxhbmt0b24gYmxvb21zIGluIHRoZSBQYWNpZmljIE9jZWFuIHRoYXQgY292ZXIgdGhvdXNhbmRzIG9mIGttMiwgcGVyc2lzdCBmb3Igd2Vla3Mgb3IgbG9uZ2VyLCBhbmQgYXJlIG9mdGVuIGRvbWluYXRlZCBieSBuaXRyb2dlbi1maXhpbmcgZGlhdG9tIHN5bWJpb3NlcyAoV2lsc29uIGV0IGFsLiAyMDA4KS4gV2UgaG9wZSB0byBiZSBhYmxlIHRvIGV4YW1pbmUgd2hldGhlciB0aGlzIGFnZ3JlZ2F0aW9uIGlzIG9jY3VycmluZyBpbiB0aGUgdmFzdCBvY2VhbmljIHJlZ2lvbnMgbm9ydGggYW5kIGVhc3Qgb2YgSGF3YWknaSBhbmQgcHJvdmlkZSBhIGJhc2luLXNjYWxlIGNvbnRleHQgZm9yIHRoZSBBTE9IQSBvYnNlcnZhdGlvbnMuIFRoZXNlIGV2ZW50cyBoYXZlIHByb3ZlbiBkaWZmaWN1bHQgdG8gc3R1ZHkgb3V0c2lkZSBvZiB0aGUgdGltZSBzZXJpZXMgc3RhdGlvbiBBTE9IQSBhdCBIYXdhaSdpLlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudmVoaWNsZU5hbWUgKFZlaGljbGUgTmFtZSlcbmJvYXJkX2lkXG50YXNrX2lkXG5jdGRcbmZlZWRfdmVyc2lvblxudGltZSAoRGF0ZXRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxudW5peF90aW1lc3RhbXAgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG50ZW1wZXJhdHVyZSAoZGVncmVlX0MpXG5wcmVzc3VyZSAoZEJhcilcbmNvbmR1Y3Rpdml0eSAoU2VhIFdhdGVyIEVsZWN0cmljYWwgQ29uZHVjdGl2aXR5LCBTL20pXG5kaXNzb2x2ZWRfT191bmNhbGlicmF0ZWQgKEh6KVxucHJhY3RpY2FsX3NhbGluaXR5IChTZWEgV2F0ZXIgUHJhY3RpY2FsIFNhbGluaXR5LCBQU1UpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvTGlxdWlkUl9IQkczXzIwMTVfY3RkX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9MaXF1aWRSX0hCRzNfMjAxNV9jdGRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vTGlxdWlkUl9IQkczXzIwMTVfY3RkL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9NQUdJLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9MaXF1aWRSX0hCRzNfMjAxNV9jdGQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPUxpcXVpZFJfSEJHM18yMDE1X2N0ZCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJMaXF1aWQgUm9ib3RpY3MsIFVUIEF1c3RpbiwgTk9BQSBOTUZTIFNXRlNDIEVSRCIsICJMaXF1aWRSX0hCRzNfMjAxNV9jdGQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvTGlxdWlkUl9IQkczXzIwMTVfbW9zZS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvTGlxdWlkUl9IQkczXzIwMTVfbW9zZSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9MaXF1aWRSX0hCRzNfMjAxNV9tb3NlLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkxpcXVpZCBSb2JvdGljcyBXYXZlIEdsaWRlciwgSG9uZXkgQmFkZ2VyIChHMyksIDIwMTUsIE1PU0UiLCAiTGlxdWlkIFJvYm90aWNzIFdhdmUgR2xpZGVyLCBIb25leSBCYWRnZXIgKEczKSwgMjAxNSwgTU9TRS4gVGhlIE1BR0kgbWlzc2lvbiBpcyB0byB1c2UgdGhlIFdhdmUgR2xpZGVyIHRvIHNhbXBsZSB0aGUgbGF0ZSBzdW1tZXIgY2hsb3JvcGh5bGwgYmxvb20gdGhhdCBkZXZlbG9wcyBuZWFyIDMwXHUwMGIwTiwgd2l0aCB0aGUgZ29hbCBvZiB1c2luZyB0aGUgY2FtZXJhIGFuZCBMSVNTVC1Ib2xvIHRvIHRyeSB0byBpZGVudGlmeSBzcGVjaWVzIGluIHRoZSBibG9vbXMgYW5kIHRoZW4gZm9sbG93IHRoZSBkZXZlbG9wbWVudCBvZiBwaHl0b3BsYW5rdG9uIGFnZ3JlZ2F0ZXMuIFRoZXNlIGFnZ3JlZ2F0ZXMgaGF2ZSByZWNlbnRseSBiZWVuIHNob3duIHRvIGJlIGEgc2lnbmlmaWNhbnQgcGFydCBvZiB0aGUgdG90YWwgYW1vdW50IG9mIGNhcmJvbiB0aGF0IHNpbmtzIHRvIHRoZSBkZWVwIHNlYS4gS2FybCBldCBhbCAoMjAxMikgZm91bmQgdGhhdCBpbiBlYWNoIG9mIHRoZSBwYXN0IDEzIHllYXJzLCB0aGVyZSB3YXMgYSBmbHV4IG9mIG1hdGVyaWFsIHRvIDQsMDAwIG0gKHRoZSBzdW1tZXIgZXhwb3J0IHB1bHNlKSB0aGF0IHJlcHJlc2VudGVkIH4yMCUgb2YgdGhlIHRvdGFsIGFubnVhbCBmbHV4LiBXb3JrIGJhc2VkIG9uIHNhdGVsbGl0ZSBvY2VhbiBjb2xvciBkYXRhIG92ZXIgdGhlIHBhc3QgZGVjYWRlIGhhcyByZXZlYWxlZCB0aGUgZXhpc3RlbmNlIG9mIGxhcmdlIHBoeXRvcGxhbmt0b24gYmxvb21zIGluIHRoZSBQYWNpZmljIE9jZWFuIHRoYXQgY292ZXIgdGhvdXNhbmRzIG9mIGttMiwgcGVyc2lzdCBmb3Igd2Vla3Mgb3IgbG9uZ2VyLCBhbmQgYXJlIG9mdGVuIGRvbWluYXRlZCBieSBuaXRyb2dlbi1maXhpbmcgZGlhdG9tIHN5bWJpb3NlcyAoV2lsc29uIGV0IGFsLiAyMDA4KS4gV2UgaG9wZSB0byBiZSBhYmxlIHRvIGV4YW1pbmUgd2hldGhlciB0aGlzIGFnZ3JlZ2F0aW9uIGlzIG9jY3VycmluZyBpbiB0aGUgdmFzdCBvY2VhbmljIHJlZ2lvbnMgbm9ydGggYW5kIGVhc3Qgb2YgSGF3YWknaSBhbmQgcHJvdmlkZSBhIGJhc2luLXNjYWxlIGNvbnRleHQgZm9yIHRoZSBBTE9IQSBvYnNlcnZhdGlvbnMuIFRoZXNlIGV2ZW50cyBoYXZlIHByb3ZlbiBkaWZmaWN1bHQgdG8gc3R1ZHkgb3V0c2lkZSBvZiB0aGUgdGltZSBzZXJpZXMgc3RhdGlvbiBBTE9IQSBhdCBIYXdhaSdpLlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudmVoaWNsZU5hbWUgKFZlaGljbGUgTmFtZSlcbmJvYXJkX2lkXG50YXNrX2lkXG5tb3NlXG5mZWVkX3ZlcnNpb25cbnRpbWUgKERhdGV0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnVuaXhfdGltZXN0YW1wIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2lnbmlmaWNhbnRfd2F2ZV9oZWlnaHQgKFNlYSBTdXJmYWNlIFdhdmUgU2lnbmlmaWNhbnQgSGVpZ2h0LCBtKVxuYXZlcmFnZV9wZXJpb2RfYWxsX3dhdmVzIChTZWEgU3VyZmFjZSBTd2VsbCBXYXZlIFBlcmlvZCwgcylcbnBlcmlvZF9iZXR3ZWVuX3NpZ25pZmljYW50X3dhdmVzIChTZWEgU3VyZmFjZSBTd2VsbCBXYXZlIFBlcmlvZCwgcylcbmRpcmVjdGlvbl9vZl9zaWduaWZpY2FudF93YXZlcyAoU2VhIFN1cmZhY2UgV2F2ZSBUbyBEaXJlY3Rpb24sIGRlZ3JlZXNfdHJ1ZSlcbm51bWJlcl9hdmVyYWdlZF9zcGVjdHJhXG5udW1iZXJfc2FtcGxlc19wZXJfc3BlY3RydW1cbm51bWJlcl9zYW1wbGVfZ2Fwc1xuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL0xpcXVpZFJfSEJHM18yMDE1X21vc2VfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL0xpcXVpZFJfSEJHM18yMDE1X21vc2VfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vTGlxdWlkUl9IQkczXzIwMTVfbW9zZS9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTUFHSS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvTGlxdWlkUl9IQkczXzIwMTVfbW9zZS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9TGlxdWlkUl9IQkczXzIwMTVfbW9zZSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJMaXF1aWQgUm9ib3RpY3MsIFVUIEF1c3RpbiwgTk9BQSBOTUZTIFNXRlNDIEVSRCIsICJMaXF1aWRSX0hCRzNfMjAxNV9tb3NlIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X3BoeXRvZmxhc2guc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X3BoeXRvZmxhc2giLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvTGlxdWlkUl9IQkczXzIwMTVfcGh5dG9mbGFzaC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJMaXF1aWQgUm9ib3RpY3MgV2F2ZSBHbGlkZXIsIEhvbmV5IEJhZGdlciAoRzMpLCAyMDE1LCBQaHl0b2ZsYXNoIiwgIkxpcXVpZCBSb2JvdGljcyBXYXZlIEdsaWRlciwgSG9uZXkgQmFkZ2VyIChHMyksIDIwMTUsIFBoeXRvZmxhc2guIFRoZSBNQUdJIG1pc3Npb24gaXMgdG8gdXNlIHRoZSBXYXZlIEdsaWRlciB0byBzYW1wbGUgdGhlIGxhdGUgc3VtbWVyIGNobG9yb3BoeWxsIGJsb29tIHRoYXQgZGV2ZWxvcHMgbmVhciAzMFx1MDBiME4sIHdpdGggdGhlIGdvYWwgb2YgdXNpbmcgdGhlIGNhbWVyYSBhbmQgTElTU1QtSG9sbyB0byB0cnkgdG8gaWRlbnRpZnkgc3BlY2llcyBpbiB0aGUgYmxvb21zIGFuZCB0aGVuIGZvbGxvdyB0aGUgZGV2ZWxvcG1lbnQgb2YgcGh5dG9wbGFua3RvbiBhZ2dyZWdhdGVzLiBUaGVzZSBhZ2dyZWdhdGVzIGhhdmUgcmVjZW50bHkgYmVlbiBzaG93biB0byBiZSBhIHNpZ25pZmljYW50IHBhcnQgb2YgdGhlIHRvdGFsIGFtb3VudCBvZiBjYXJib24gdGhhdCBzaW5rcyB0byB0aGUgZGVlcCBzZWEuIEthcmwgZXQgYWwgKDIwMTIpIGZvdW5kIHRoYXQgaW4gZWFjaCBvZiB0aGUgcGFzdCAxMyB5ZWFycywgdGhlcmUgd2FzIGEgZmx1eCBvZiBtYXRlcmlhbCB0byA0LDAwMCBtICh0aGUgc3VtbWVyIGV4cG9ydCBwdWxzZSkgdGhhdCByZXByZXNlbnRlZCB+MjAlIG9mIHRoZSB0b3RhbCBhbm51YWwgZmx1eC4gV29yayBiYXNlZCBvbiBzYXRlbGxpdGUgb2NlYW4gY29sb3IgZGF0YSBvdmVyIHRoZSBwYXN0IGRlY2FkZSBoYXMgcmV2ZWFsZWQgdGhlIGV4aXN0ZW5jZSBvZiBsYXJnZSBwaHl0b3BsYW5rdG9uIGJsb29tcyBpbiB0aGUgUGFjaWZpYyBPY2VhbiB0aGF0IGNvdmVyIHRob3VzYW5kcyBvZiBrbTIsIHBlcnNpc3QgZm9yIHdlZWtzIG9yIGxvbmdlciwgYW5kIGFyZSBvZnRlbiBkb21pbmF0ZWQgYnkgbml0cm9nZW4tZml4aW5nIGRpYXRvbSBzeW1iaW9zZXMgKFdpbHNvbiBldCBhbC4gMjAwOCkuIFdlIGhvcGUgdG8gYmUgYWJsZSB0byBleGFtaW5lIHdoZXRoZXIgdGhpcyBhZ2dyZWdhdGlvbiBpcyBvY2N1cnJpbmcgaW4gdGhlIHZhc3Qgb2NlYW5pYyByZWdpb25zIG5vcnRoIGFuZCBlYXN0IG9mIEhhd2FpJ2kgYW5kIHByb3ZpZGUgYSBiYXNpbi1zY2FsZSBjb250ZXh0IGZvciB0aGUgQUxPSEEgb2JzZXJ2YXRpb25zLiBUaGVzZSBldmVudHMgaGF2ZSBwcm92ZW4gZGlmZmljdWx0IHRvIHN0dWR5IG91dHNpZGUgb2YgdGhlIHRpbWUgc2VyaWVzIHN0YXRpb24gQUxPSEEgYXQgSGF3YWknaS5cblxuY2RtX2RhdGFfdHlwZSA9IFRyYWplY3RvcnlcblZBUklBQkxFUzpcbnZlaGljbGVOYW1lIChWZWhpY2xlIE5hbWUpXG5ib2FyZF9pZFxudGFza19pZFxucGh5dG9mbGFzaFxuZmVlZF92ZXJzaW9uXG50aW1lIChEYXRldGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG51bml4X3RpbWVzdGFtcCAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbkZvXG5GbVxuQmxhbmtcbkZ2XG5ZaWVsZFxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL0xpcXVpZFJfSEJHM18yMDE1X3BoeXRvZmxhc2hfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL0xpcXVpZFJfSEJHM18yMDE1X3BoeXRvZmxhc2hfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vTGlxdWlkUl9IQkczXzIwMTVfcGh5dG9mbGFzaC9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTUFHSS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvTGlxdWlkUl9IQkczXzIwMTVfcGh5dG9mbGFzaC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9TGlxdWlkUl9IQkczXzIwMTVfcGh5dG9mbGFzaCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJMaXF1aWQgUm9ib3RpY3MsIFVUIEF1c3RpbiwgTk9BQSBOTUZTIFNXRlNDIEVSRCIsICJMaXF1aWRSX0hCRzNfMjAxNV9waHl0b2ZsYXNoIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X3RlbGVtZXRyeS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvTGlxdWlkUl9IQkczXzIwMTVfdGVsZW1ldHJ5IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X3RlbGVtZXRyeS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJMaXF1aWQgUm9ib3RpY3MgV2F2ZSBHbGlkZXIsIEhvbmV5IEJhZGdlciAoRzMpLCAyMDE1LCBUZWxlbWV0cnkiLCAiTGlxdWlkIFJvYm90aWNzIFdhdmUgR2xpZGVyLCBIb25leSBCYWRnZXIgKEczKSwgMjAxNSwgVGVsZW1ldHJ5LiBUaGUgTUFHSSBtaXNzaW9uIGlzIHRvIHVzZSB0aGUgV2F2ZSBHbGlkZXIgdG8gc2FtcGxlIHRoZSBsYXRlIHN1bW1lciBjaGxvcm9waHlsbCBibG9vbSB0aGF0IGRldmVsb3BzIG5lYXIgMzBcdTAwYjBOLCB3aXRoIHRoZSBnb2FsIG9mIHVzaW5nIHRoZSBjYW1lcmEgYW5kIExJU1NULUhvbG8gdG8gdHJ5IHRvIGlkZW50aWZ5IHNwZWNpZXMgaW4gdGhlIGJsb29tcyBhbmQgdGhlbiBmb2xsb3cgdGhlIGRldmVsb3BtZW50IG9mIHBoeXRvcGxhbmt0b24gYWdncmVnYXRlcy4gVGhlc2UgYWdncmVnYXRlcyBoYXZlIHJlY2VudGx5IGJlZW4gc2hvd24gdG8gYmUgYSBzaWduaWZpY2FudCBwYXJ0IG9mIHRoZSB0b3RhbCBhbW91bnQgb2YgY2FyYm9uIHRoYXQgc2lua3MgdG8gdGhlIGRlZXAgc2VhLiBLYXJsIGV0IGFsICgyMDEyKSBmb3VuZCB0aGF0IGluIGVhY2ggb2YgdGhlIHBhc3QgMTMgeWVhcnMsIHRoZXJlIHdhcyBhIGZsdXggb2YgbWF0ZXJpYWwgdG8gNCwwMDAgbSAodGhlIHN1bW1lciBleHBvcnQgcHVsc2UpIHRoYXQgcmVwcmVzZW50ZWQgfjIwJSBvZiB0aGUgdG90YWwgYW5udWFsIGZsdXguIFdvcmsgYmFzZWQgb24gc2F0ZWxsaXRlIG9jZWFuIGNvbG9yIGRhdGEgb3ZlciB0aGUgcGFzdCBkZWNhZGUgaGFzIHJldmVhbGVkIHRoZSBleGlzdGVuY2Ugb2YgbGFyZ2UgcGh5dG9wbGFua3RvbiBibG9vbXMgaW4gdGhlIFBhY2lmaWMgT2NlYW4gdGhhdCBjb3ZlciB0aG91c2FuZHMgb2Yga20yLCBwZXJzaXN0IGZvciB3ZWVrcyBvciBsb25nZXIsIGFuZCBhcmUgb2Z0ZW4gZG9taW5hdGVkIGJ5IG5pdHJvZ2VuLWZpeGluZyBkaWF0b20gc3ltYmlvc2VzIChXaWxzb24gZXQgYWwuIDIwMDgpLiBXZSBob3BlIHRvIGJlIGFibGUgdG8gZXhhbWluZSB3aGV0aGVyIHRoaXMgYWdncmVnYXRpb24gaXMgb2NjdXJyaW5nIGluIHRoZSB2YXN0IG9jZWFuaWMgcmVnaW9ucyBub3J0aCBhbmQgZWFzdCBvZiBIYXdhaSdpIGFuZCBwcm92aWRlIGEgYmFzaW4tc2NhbGUgY29udGV4dCBmb3IgdGhlIEFMT0hBIG9ic2VydmF0aW9ucy4gVGhlc2UgZXZlbnRzIGhhdmUgcHJvdmVuIGRpZmZpY3VsdCB0byBzdHVkeSBvdXRzaWRlIG9mIHRoZSB0aW1lIHNlcmllcyBzdGF0aW9uIEFMT0hBIGF0IEhhd2FpJ2kuXG5cbmNkbV9kYXRhX3R5cGUgPSBUcmFqZWN0b3J5XG5WQVJJQUJMRVM6XG52ZWhpY2xlTmFtZSAoVmVoaWNsZSBOYW1lKVxudGVsZW1ldHJ5XG5mZWVkX3ZlcnNpb25cbnRpbWUgKERhdGV0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmRpc3RhbmNlX292ZXJfZ3JvdW5kIChtKVxuZGVzaXJlZF9oZWFkaW5nIChkZWdyZWVzKVxuc3ViX2hlYWRpbmcgKGRlZ3JlZXMpXG50YXJnZXRfd2F5cG9pbnRcbnN1Yl90ZW1wZXJhdHVyZSAoZGVncmVlX0MpXG50b3RhbF9wb3dlciAobVdoKVxud2F0ZXJfc3BlZWQgKGtub3RzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL0xpcXVpZFJfSEJHM18yMDE1X3RlbGVtZXRyeV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvTGlxdWlkUl9IQkczXzIwMTVfdGVsZW1ldHJ5X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL0xpcXVpZFJfSEJHM18yMDE1X3RlbGVtZXRyeS9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTUFHSS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvTGlxdWlkUl9IQkczXzIwMTVfdGVsZW1ldHJ5LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1MaXF1aWRSX0hCRzNfMjAxNV90ZWxlbWV0cnkmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTGlxdWlkIFJvYm90aWNzLCBVVCBBdXN0aW4sIE5PQUEgTk1GUyBTV0ZTQyBFUkQiLCAiTGlxdWlkUl9IQkczXzIwMTVfdGVsZW1ldHJ5Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X3dlYXRoZXIuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X3dlYXRoZXIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvTGlxdWlkUl9IQkczXzIwMTVfd2VhdGhlci5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJMaXF1aWQgUm9ib3RpY3MgV2F2ZSBHbGlkZXIsIEhvbmV5IEJhZGdlciAoRzMpLCAyMDE1LCBXZWF0aGVyIiwgIkxpcXVpZCBSb2JvdGljcyBXYXZlIEdsaWRlciwgSG9uZXkgQmFkZ2VyIChHMyksIDIwMTUsIFdlYXRoZXIuIFRoZSBNQUdJIG1pc3Npb24gaXMgdG8gdXNlIHRoZSBXYXZlIEdsaWRlciB0byBzYW1wbGUgdGhlIGxhdGUgc3VtbWVyIGNobG9yb3BoeWxsIGJsb29tIHRoYXQgZGV2ZWxvcHMgbmVhciAzMFx1MDBiME4sIHdpdGggdGhlIGdvYWwgb2YgdXNpbmcgdGhlIGNhbWVyYSBhbmQgTElTU1QtSG9sbyB0byB0cnkgdG8gaWRlbnRpZnkgc3BlY2llcyBpbiB0aGUgYmxvb21zIGFuZCB0aGVuIGZvbGxvdyB0aGUgZGV2ZWxvcG1lbnQgb2YgcGh5dG9wbGFua3RvbiBhZ2dyZWdhdGVzLiBUaGVzZSBhZ2dyZWdhdGVzIGhhdmUgcmVjZW50bHkgYmVlbiBzaG93biB0byBiZSBhIHNpZ25pZmljYW50IHBhcnQgb2YgdGhlIHRvdGFsIGFtb3VudCBvZiBjYXJib24gdGhhdCBzaW5rcyB0byB0aGUgZGVlcCBzZWEuIEthcmwgZXQgYWwgKDIwMTIpIGZvdW5kIHRoYXQgaW4gZWFjaCBvZiB0aGUgcGFzdCAxMyB5ZWFycywgdGhlcmUgd2FzIGEgZmx1eCBvZiBtYXRlcmlhbCB0byA0LDAwMCBtICh0aGUgc3VtbWVyIGV4cG9ydCBwdWxzZSkgdGhhdCByZXByZXNlbnRlZCB+MjAlIG9mIHRoZSB0b3RhbCBhbm51YWwgZmx1eC4gV29yayBiYXNlZCBvbiBzYXRlbGxpdGUgb2NlYW4gY29sb3IgZGF0YSBvdmVyIHRoZSBwYXN0IGRlY2FkZSBoYXMgcmV2ZWFsZWQgdGhlIGV4aXN0ZW5jZSBvZiBsYXJnZSBwaHl0b3BsYW5rdG9uIGJsb29tcyBpbiB0aGUgUGFjaWZpYyBPY2VhbiB0aGF0IGNvdmVyIHRob3VzYW5kcyBvZiBrbTIsIHBlcnNpc3QgZm9yIHdlZWtzIG9yIGxvbmdlciwgYW5kIGFyZSBvZnRlbiBkb21pbmF0ZWQgYnkgbml0cm9nZW4tZml4aW5nIGRpYXRvbSBzeW1iaW9zZXMgKFdpbHNvbiBldCBhbC4gMjAwOCkuIFdlIGhvcGUgdG8gYmUgYWJsZSB0byBleGFtaW5lIHdoZXRoZXIgdGhpcyBhZ2dyZWdhdGlvbiBpcyBvY2N1cnJpbmcgaW4gdGhlIHZhc3Qgb2NlYW5pYyByZWdpb25zIG5vcnRoIGFuZCBlYXN0IG9mIEhhd2FpJ2kgYW5kIHByb3ZpZGUgYSBiYXNpbi1zY2FsZSBjb250ZXh0IGZvciB0aGUgQUxPSEEgb2JzZXJ2YXRpb25zLiBUaGVzZSBldmVudHMgaGF2ZSBwcm92ZW4gZGlmZmljdWx0IHRvIHN0dWR5IG91dHNpZGUgb2YgdGhlIHRpbWUgc2VyaWVzIHN0YXRpb24gQUxPSEEgYXQgSGF3YWknaS5cblxuY2RtX2RhdGFfdHlwZSA9IFRyYWplY3RvcnlcblZBUklBQkxFUzpcbnZlaGljbGVOYW1lIChWZWhpY2xlIE5hbWUpXG53ZWF0aGVyXG5mZWVkX3ZlcnNpb25cbnRpbWUgKERhdGV0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChkZWdyZWVfQylcbnByZXNzdXJlIChtQmFyKVxuYXZnX3dpbmRfc3BlZWQgKFdpbmQgU3BlZWQsIGtub3RzKVxuc3RkX2Rldl93aW5kX3NwZWVkIChXaW5kIFNwZWVkLCBrbm90cylcbmF2Z193aW5kX2RpcmVjdGlvbiAoV2luZCBGcm9tIERpcmVjdGlvbiwgZGVncmVlc190cnVlKVxuc3RkX2Rldl93aW5kX2RpcmVjdGlvbiAoV2luZCBGcm9tIERpcmVjdGlvbiwgZGVncmVlc190cnVlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL0xpcXVpZFJfSEJHM18yMDE1X3dlYXRoZXJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL0xpcXVpZFJfSEJHM18yMDE1X3dlYXRoZXJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vTGlxdWlkUl9IQkczXzIwMTVfd2VhdGhlci9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTUFHSS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvTGlxdWlkUl9IQkczXzIwMTVfd2VhdGhlci5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9TGlxdWlkUl9IQkczXzIwMTVfd2VhdGhlciZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJMaXF1aWQgUm9ib3RpY3MsIFVUIEF1c3RpbiwgTk9BQSBOTUZTIFNXRlNDIEVSRCIsICJMaXF1aWRSX0hCRzNfMjAxNV93ZWF0aGVyIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL21hdWlfd2F0ZXJfcXVhbGl0eS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbWF1aV93YXRlcl9xdWFsaXR5IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL21hdWlfd2F0ZXJfcXVhbGl0eS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJNYXVpIENpdGl6ZW4gU2NpZW5jZSBDb2FzdGFsIFdhdGVyIFF1YWxpdHkgRGF0YSIsICJBIG5ldHdvcmsgb2YgY2l0aXplbiBzY2llbmNlIHZvbHVudGVlcnMgcGVyaW9kaWNhbGx5IG1vbml0b3JlZCB3YXRlciBxdWFsaXR5IGF0IHNldmVyYWwgYmVhY2hlcyBhY3Jvc3MgdGhlIGlzbGFuZCBvZiBNYXVpIGluIHRoZSBTdGF0ZSBvZiBIYXdhaWkgZHVyaW5nIHRoZSB5ZWFycyAyMDEwLTIwMTYuIFRoaXMgY29tbXVuaXR5LWJhc2VkIG1vbml0b3JpbmcgZWZmb3J0IHByb3ZpZGVkIHZhbHVhYmxlIGRhdGEgZm9yIHJlc291cmNlIG1hbmFnZW1lbnQgcHVycG9zZXMuIEluZm9ybWVkIHZvbHVudGVlciBuZXR3b3JrcyBjYW4gc2VydmUgYXMgYSBjb21tdW5pdHkncyBcImV5ZXMgYW5kIGVhcnNcIiBhbmQgd2lsbCBvZnRlbiBwcm92aWRlIHRoZSBmaXJzdCBpbmRpY2F0aW9ucyBvZiBjaGFuZ2VzIHRvIGEgc3lzdGVtLiBJbiBhZGRpdGlvbiB0byB0aGUgdmFsdWUgb2YgZWFybHkgZGV0ZWN0aW9uLCBpdCBpcyBpbXBvcnRhbnQgdG8gbWFpbnRhaW4gb25nb2luZyBtb25pdG9yaW5nIGVmZm9ydHMgdG8gY29tcGlsZSBkYXRhIGFuZCBkb2N1bWVudCByZXNvdXJjZSBjb25kaXRpb25zLlxuXG5JbiBhZGRpdGlvbiB0byB3YXRlciB0ZW1wZXJhdHVyZSwgc2FsaW5pdHksIHR1cmJpZGl0eSAod2F0ZXIgY2xhcml0eSksIGFuZCBwSCwgc2FtcGxpbmcgc2l0ZXMgd2VyZSBhbHNvIG1vbml0b3JlZCBmb3IgaGFybWZ1bCBiYWN0ZXJpYSBsZXZlbHMgb2YgRW50ZXJvY29jY3VzIHRocm91Z2ggMjAxNC0wNi0yNi4gVGhpcyBpbmRpY2F0b3IgYmFjdGVyaWEgaGFzIGJlZW4gY29ycmVsYXRlZCB3aXRoIHRoZSBwcmVzZW5jZSBvZiBodW1hbiBwYXRob2dlbnMgKGRpc2Vhc2UtY2F1c2luZyBvcmdhbmlzbXMpIGFuZCB0aGVyZWZvcmUgd2l0aCBodW1hbiBpbGxuZXNzZXMgc3VjaCBhcyBnYXN0cm9lbnRlcml0aXMsIGRpYXJyaGVhLCBhbmQgdmFyaW91cyBpbmZlY3Rpb25zIGluIGVwaWRlbWlvbG9naWNhbCBzdHVkaWVzLiBBcyBzdWNoLCBpdCBpcyBjb21tb25seSBtZWFzdXJlZCBpbiBiZWFjaCB3YXRlciBxdWFsaXR5IG1vbml0b3JpbmcgcHJvZ3JhbXMuIEZvciByZWZlcmVuY2UsIHRoZSBVLlMuIEVudmlyb25tZW50YWwgUHJvdGVjdGlvbiBBZ2VuY3kgKEVQQSkgMTk4NiBBbWJpZW50IFdhdGVyIFF1YWxpdHkgQ3JpdGVyaWEgZm9yIEJhY3RlcmlhIHJlY29tbWVuZHMgdGhhdCBhIHdhdGVyIHF1YWxpdHkgYWxlcnQgaXMgcG9zdGVkIGlmIGVpdGhlcjogKGEuKSB0aGUgbGF0ZXN0IHdhdGVyIHNhbXBsZSBleGNlZWRzIDEwNCBDRlUvMTAwIG1MIG9mIEVudGVyb2NvY2N1cywgb3IgKGIuKSB0aGUgZ2VvbWV0cmljIG1lYW4gb2YgdGhlIHBhc3QgMzAgZGF5cyBvZiB3YXRlciBzYW1wbGVzIGV4Y2VlZHMgMzUgQ0ZVLzEwMCBtTC4gT25lIG9mIHRoZSBsaW1pdGF0aW9ucyBvZiBhbGwgYXZhaWxhYmxlIGFuZCBFUEEtYXBwcm92ZWQgdGVzdCBtZXRob2RzIGlzIHRoYXQgdGhlIHNhbXBsZSBtdXN0IGJlIGluY3ViYXRlZCBmb3IgYWJvdXQgMjQgaG91cnMuXG5cbkRhdGEgd2VyZSBtYW5hZ2VkIHRocm91Z2ggYW4gb25saW5lIHJlcG9zaXRvcnksIHRoZSBDb3JhbCBSZWVmIE1vbml0b3JpbmcgRGF0YSBQb3J0YWwgKG5vdyBkZWZ1bmN0KSwgZGV2ZWxvcGVkIGFuZCBjb29yZGluYXRlZCBieSB0aGUgQ29yYWwgUmVlZiBBbGxpYW5jZSAoQ09SQUwpIGFuZCBpdHMgcGFydG5lcnMgd2l0aCBmdW5kaW5nIHByb3ZpZGVkIGJ5IHRoZSBIYXdhaWkgVG91cmlzbSBBdXRob3JpdHkgKEhUQSkgYW5kIHRoZSBOYXRpb25hbCBPY2VhbmljIGFuZCBBdG1vc3BoZXJpYyBBZG1pbmlzdHJhdGlvbiAoTk9BQSkuIERhdGEgY29sbGVjdGlvbiB3YXMgY29vcmRpbmF0ZWQgYnkgdGhlIEhhd2FpaSBEaXZpc2lvbiBvZiBBcXVhdGljIFJlc291cmNlcyAoREFSKSwgdGhlIEhhd2FpaWFuIElzbGFuZHMgSHVtcGJhY2sgV2hhbGUgTmF0aW9uYWwgTWFyaW5lIFNhbmN0dWFyeSAoSElIV05NUyksIEFxdWFuaW1pdHkgTm93LCB0aGUgRGlnaXRhbCBCdXMsIFNhdmUgSG9ub2x1YSBDb2FsaXRpb24sIFByb2plY3QgUy5FLkEuLUxpbmssIGFuZCBvdGhlciBsb2NhbCBvcmdhbml6YXRpb25zIGFuZCBhZ2VuY2llcy4gRGF0YSBhcmUgcHVibGljbHkgZGlzdHJpYnV0ZWQgYnkgdGhlIFBhY2lmaWMgSXNsYW5kcyBPY2VhbiBPYnNlcnZpbmcgU3lzdGVtIChQYWNJT09TKS5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbi4uLiAoOSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9tYXVpX3dhdGVyX3F1YWxpdHlfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL21hdWlfd2F0ZXJfcXVhbGl0eV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9tYXVpX3dhdGVyX3F1YWxpdHkvaW5kZXguanNvbiIsICJodHRwczovL2NvcmFsLm9yZy9tYXVpLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9tYXVpX3dhdGVyX3F1YWxpdHkucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPW1hdWlfd2F0ZXJfcXVhbGl0eSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJDb3JhbCBSZWVmIEFsbGlhbmNlIChDT1JBTCkiLCAibWF1aV93YXRlcl9xdWFsaXR5Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2N3d2NOREJDTWV0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9jd3djTkRCQ01ldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9jd3djTkRCQ01ldC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOREJDIFN0YW5kYXJkIE1ldGVvcm9sb2dpY2FsIEJ1b3kgRGF0YSwgMTk3MC1wcmVzZW50IiwgIlRoZSBOYXRpb25hbCBEYXRhIEJ1b3kgQ2VudGVyIChOREJDKSBkaXN0cmlidXRlcyBtZXRlb3JvbG9naWNhbCBkYXRhIGZyb21cbm1vb3JlZCBidW95cyBtYWludGFpbmVkIGJ5IE5EQkMgYW5kIG90aGVycy4gTW9vcmVkIGJ1b3lzIGFyZSB0aGUgd2VhdGhlclxuc2VudGluZWxzIG9mIHRoZSBzZWEuIFRoZXkgYXJlIGRlcGxveWVkIGluIHRoZSBjb2FzdGFsIGFuZCBvZmZzaG9yZSB3YXRlcnNcbmZyb20gdGhlIHdlc3Rlcm4gQXRsYW50aWMgdG8gdGhlIFBhY2lmaWMgT2NlYW4gYXJvdW5kIEhhd2FpaSwgYW5kIGZyb20gdGhlXG5CZXJpbmcgU2VhIHRvIHRoZSBTb3V0aCBQYWNpZmljLiBOREJDJ3MgbW9vcmVkIGJ1b3lzIG1lYXN1cmUgYW5kIHRyYW5zbWl0XG5iYXJvbWV0cmljIHByZXNzdXJlOyB3aW5kIGRpcmVjdGlvbiwgc3BlZWQsIGFuZCBndXN0OyBhaXIgYW5kIHNlYVxudGVtcGVyYXR1cmU7IGFuZCB3YXZlIGVuZXJneSBzcGVjdHJhIGZyb20gd2hpY2ggc2lnbmlmaWNhbnQgd2F2ZSBoZWlnaHQsXG5kb21pbmFudCB3YXZlIHBlcmlvZCwgYW5kIGF2ZXJhZ2Ugd2F2ZSBwZXJpb2QgYXJlIGRlcml2ZWQuIEV2ZW4gdGhlXG5kaXJlY3Rpb24gb2Ygd2F2ZSBwcm9wYWdhdGlvbiBpcyBtZWFzdXJlZCBvbiBtYW55IG1vb3JlZCBidW95cy4gU2VlXG5odHRwczovL3d3dy5uZGJjLm5vYWEuZ292L21lYXNkZXMuc2h0bWwgZm9yIGEgZGVzY3JpcHRpb24gb2YgdGhlIG1lYXN1cmVtZW50cy5cblxuVGhlIHNvdXJjZSBkYXRhIGZyb20gTk9BQSBOREJDIGhhcyBkaWZmZXJlbnQgY29sdW1uIG5hbWVzLCBkaWZmZXJlbnQgdW5pdHMsXG5hbmQgZGlmZmVyZW50IG1pc3NpbmcgdmFsdWVzIGluIGRpZmZlcmVudCBmaWxlcywgYW5kIG90aGVyIHByb2JsZW1zXG4obm90YWJseSwgbG90cyBvZiByb3dzIHdpdGggZHVwbGljYXRlIG9yIGRpZmZlcmVudCB2YWx1ZXMgZm9yIHRoZSBzYW1lIHRpbWVcbnBvaW50KS4gVGhpcyBkYXRhc2V0IGlzIGEgc3RhbmRhcmRpemVkLCByZWZvcm1hdHRlZCwgYW5kIGxpZ2h0bHkgZWRpdGVkXG52ZXJzaW9uIG9mIHRoYXQgc291cmNlIGRhdGEsIGNyZWF0ZWQgYnkgTk9BQSBOTUZTIFNXRlNDIEVSRCAoZW1haWw6XG5lcmQuZGF0YSBhdCBub2FhLmdvdikuIEJlZm9yZSAyMDIwLTAxLTI5LCB0aGlzIGRhdGFzZXQgb25seSBoYWQgdGhlIGRhdGFcbnRoYXQgd2FzIGNsb3Nlc3QgdG8gYSBnaXZlbiBob3VyLCByb3VuZGVkIHRvIHRoZSBuZWFyZXN0IGhvdXIuIE5vdywgdGhpc1xuZGF0YXNldCBoYXMgYWxsIG9mIHRoZSBkYXRhIGF2YWlsYWJsZSBmcm9tIE5EQkMgd2l0aCB0aGUgb3JpZ2luYWwgdGltZVxudmFsdWVzLiBJZiB0aGVyZSBhcmUgbXVsdGlwbGUgc291cmNlIHJvd3MgZm9yIGEgZ2l2ZW4gYnVveSBmb3IgYSBnaXZlblxudGltZSwgb25seSB0aGUgcm93IHdpdGggdGhlIG1vc3Qgbm9uLU5hTiBkYXRhIHZhbHVlcyBpcyBrZXB0LiBJZiB0aGVyZSBpc1xuYSBnYXAgaW4gdGhlIGRhdGEsIGEgcm93IG9mIG1pc3NpbmcgdmFsdWVzIGlzIGluc2VydGVkICh3aGljaCBjYXVzZXMgYSBuaWNlXG5nYXAgd2hlbiB0aGUgZGF0YSBpcyBncmFwaGVkKS4gQWxzbywgc29tZSBpbXBvc3NpYmxlIGRhdGEgdmFsdWVzIGFyZVxucmVtb3ZlZCwgYnV0IHRoaXMgZGF0YSBpcyBub3QgcGVyZmVjdGx5IGNsZWFuLiBUaGlzIGRhdGFzZXQgaXMgbm93IHVwZGF0ZWRcbmV2ZXJ5IDUgbWludXRlcy5cblxuVGhpcyBkYXRhc2V0IGhhcyBib3RoIGhpc3RvcmljYWwgZGF0YSAocXVhbGl0eSBjb250cm9sbGVkLCBiZWZvcmVcbjIwMjAtMDYtMDFUMDA6MDA6MDBaKSBhbmQgbmVhciByZWFsIHRpbWUgZGF0YSAobGVzcyBxdWFsaXR5IGNvbnRyb2xsZWQsXG53aGljaCBtYXkgY2hhbmdlIGF0IGFueSB0aW1lLCBmcm9tIDIwMjAtMDYtMDFUMDA6MDA6MDBaIG9uKS5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb24gKFN0YXRpb24gSWRlbnRpZmllcilcbi4uLiAoMTkgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvY3d3Y05EQkNNZXRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2N3d2NOREJDTWV0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2N3d2NOREJDTWV0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cubmRiYy5ub2FhLmdvdi8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvY3d3Y05EQkNNZXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWN3d2NOREJDTWV0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTkRCQywgTk9BQSBOTUZTIFNXRlNDIEVSRCIsICJjd3djTkRCQ01ldCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC93b2NlY3ByLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC93b2NlY3ByIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3dvY2VjcHIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTkVGU0MgQ29udGludW91cyBQbGFua3RvbiBSZWNvcmRlciIsICJBIHN1bW1hcnkgZm9yIHRoZSBkYXRhXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmNydWlzZVxuc2FtcGxlXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxucGh5dG9fY29sb3JfaW5keCAoUGh5dG9wbGFua3RvbiBDb2xvciBJbmRleClcbm1hcm1hcF90YXhfY29kZSAoTWFybWFwIFRheG9ub21pYyBDb2RlKVxubWFybWFwX3N0YWdlX2NvZGVcbmFidW5kYW5jZSAocGVyIDEwMCBjdWJpYyBtZXRlcnMpXG5saWZlX3N0YWdlXG50YXhvbm9taWNfbmFtZVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3dvY2VjcHJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3dvY2VjcHJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vd29jZWNwci9pbmRleC5qc29uIiwgImh0dHBzOi8vY29hc3R3YXRjaC5wZmVnLm5vYWEuZ292L2VyZGRhcCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy93b2NlY3ByLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD13b2NlY3ByJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5FRlNDIiwgIndvY2VjcHIiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkTmV3cG9ydEN0ZC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkTmV3cG9ydEN0ZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmROZXdwb3J0Q3RkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5ld3BvcnQgTGFiIENURCBDYXN0cywgMTk5Ny0yMDA4IiwgIlRoZSBOZXdwb3J0IEh5ZHJvZ3JhcGhpYyAoTkgpIExpbmUgYWxvbmcgNDQuNjVcdTAwYjBOIG9mZiBjZW50cmFsIE9yZWdvbiB3YXMgc2FtcGxlZCBzZWFzb25hbGx5IGR1cmluZyB0d28gZXBvY2hzOiAxOTYxLTE5NzEgdGhyb3VnaCB0aGUgVEVOT0MgcHJvZ3JhbSBhbmQgMTk5Ny0yMDAzIHRocm91Z2ggdGhlIEdMT0JFQyBOb3J0aGVhc3QgUGFjaWZpYyBMb25nIFRlcm0gT2JzZXJ2YXRpb25zIFByb2dyYW0gKExUT1ApOyBzb21lIG9ic2VydmF0aW9ucyBhcmUgYXZhaWxhYmxlIGZvciAyMDA0IGFuZCAyMDA1LiBEdXJpbmcgVEVOT0MsIHRoZSBsaW5lIGV4dGVuZGVkIDMwNSBrbSBvZmZzaG9yZSB0byAxMjhcdTAwYjBXLCB3aXRoIHN0YXRpb25zIDE4IGttIGFwYXJ0IG92ZXIgdGhlIGNvbnRpbmVudGFsIHNoZWxmIGFuZCAzNiBrbSBvZmZzaG9yZS4gRHVyaW5nIExUT1AsIHRoZSBsaW5lIHdhcyBzaG9ydGVyICh0byAxMjZcdTAwYjBXKSB3aXRoIGNsb3NlciBzdGF0aW9uIHNwYWNpbmcgb3ZlciB0aGUgY29udGluZW50YWwgc2hlbGYgKDkga20gYXBhcnQpIGFuZCBzbG9wZSAoMTgga20gYXBhcnQpLiBMVE9QIGNydWlzZXMgaW5jbHVkZWQgYmlvY2hlbWljYWwgc2FtcGxpbmcgYW5kIHVuZGVyd2F5IGN1cnJlbnQgbWVhc3VyZW1lbnRzLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1Byb2ZpbGVcblZBUklBQkxFUzpcbmxpbmVcbnRyYW5zZWN0XG5zdGF0aW9uXG5wbGFpbl9zdGF0aW9uXG5wcm9qZWN0XG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxuc3RhdGlvbl9jb2RlIChDVEQgU3RhdGlvbiBDb2RlKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuZGVuc2l0eSAoc2lnbWEpXG5mbHVvcmVzY2VuY2UgKHZvbHRzKVxuc2FsaW5pdHkgKFNlYSBXYXRlciBQcmFjdGljYWwgU2FsaW5pdHksIFBTVSlcbnRlbXBlcmF0dXJlIChkZWdyZWVfQylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmROZXdwb3J0Q3RkX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmROZXdwb3J0Q3RkX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZE5ld3BvcnRDdGQvaW5kZXguanNvbiIsICJodHRwOi8vbGlua2luZ2h1Yi5lbHNldmllci5jb20vcmV0cmlldmUvcGlpL1MwMDc5NjYxMTA3MDAxNDc0IiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZE5ld3BvcnRDdGQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZE5ld3BvcnRDdGQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTldGU0MiLCAiZXJkTmV3cG9ydEN0ZCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbmNlcE5pbm9TU1R3ayIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9uY2VwTmlub1NTVHdrLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5pbm8gUmVnaW9uIFdlZWtseSBTU1QgT0lTU1QudjIiLCAiV2Vla2x5IE9JU1NULnYyICgxOTgxLTIwMTAgYmFzZSBwZXJpb2QpIE5pXHUwMGYxbyAxKzIgKDAtMTBcdTAwYjBTb3V0aCkoOTBcdTAwYjBXZXN0LTgwXHUwMGIwV2VzdCkgTmlcdTAwZjFvIDMgKDVcdTAwYjBOb3J0aC01XHUwMGIwU291dGgpKDE1MFx1MDBiMFdlc3QtOTBcdTAwYjBXZXN0KSBOaVx1MDBmMW8gNCAoNVx1MDBiME5vcnRoLTVcdTAwYjBTb3V0aCkgKDE2MFx1MDBiMEVhc3QtMTUwXHUwMGIwV2VzdCkgTmlcdTAwZjFvIDMuNCAoNVx1MDBiME5vcnRoLTVcdTAwYjBTb3V0aCkoMTcwLTEyMFx1MDBiMFdlc3QpXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbk5pbm8xXzJfc3N0IChkZWdyZWVzIEMpXG5OaW5vMV8yX3NzdGEgKE5pbm8xKzIgU1NUIEFub21hbHksIGRlZ3JlZXMgQylcbk5pbm8zX3NzdCAoZGVncmVlcyBDKVxuTmlubzNfc3N0YSAoTmlubzMgU1NUIEFub21hbHksIGRlZ3JlZXMgQylcbk5pbm8zNF9zc3QgKE5pbm8zLjQgU1NULCBkZWdyZWVzIEMpXG5OaW5vMzRfc3N0YSAoTmlubzMuNCBTU1QgQW5vbWFseSwgZGVncmVlcyBDKVxuTmlubzRfc3N0IChkZWdyZWVzIEMpXG5OaW5vNF9zc3RhIChOaW5vNCBTU1QgQW5vbWFseSwgZGVncmVlcyBDKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9uY2VwTmlub1NTVHdrL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cuY3BjLm5jZXAubm9hYS5nb3YvZGF0YS9pbmRpY2VzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9uY2VwTmlub1NTVHdrLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1uY2VwTmlub1NTVHdrJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5DRVAiLCAibmNlcE5pbm9TU1R3ayJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NTb3NBVGVtcC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zQVRlbXAiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zQVRlbXAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBOT1MgU09TLCBFWFBFUklNRU5UQUwsIDE4NTMtcHJlc2VudCwgQWlyIFRlbXBlcmF0dXJlIiwgIlRoZSBOT0FBIE5PUyBTT1Mgc2VydmVyIGlzIHBhcnQgb2YgdGhlIElPT1MgRElGIFNPUyBQcm9qZWN0LiAgVGhlIHN0YXRpb25zIGluIHRoaXMgZGF0YXNldCBoYXZlIGFpciB0ZW1wZXJhdHVyZSBkYXRhLiAgKioqKlRoZXNlIHNlcnZpY2VzIGFyZSBmb3IgdGVzdGluZyBhbmQgZXZhbHVhdGlvbiB1c2Ugb25seSoqKipcblxuQmVjYXVzZSBvZiB0aGUgbmF0dXJlIG9mIFNPUyByZXF1ZXN0cywgcmVxdWVzdHMgZm9yIGRhdGEgTVVTVCBpbmNsdWRlIGNvbnN0cmFpbnRzIGZvciB0aGUgbG9uZ2l0dWRlLCBsYXRpdHVkZSwgdGltZSwgYW5kL29yIHN0YXRpb25faWQgdmFyaWFibGVzLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbnN0YXRpb25faWRcbmFsdGl0dWRlIChtKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNlbnNvcl9pZFxuYWlyX3RlbXBlcmF0dXJlIChkZWdyZWVfQylcbnF1YWxpdHlfZmxhZ3NcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NTb3NBVGVtcF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zU29zQVRlbXBfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm9zU29zQVRlbXAvaW5kZXguanNvbiIsICJodHRwczovL29wZW5kYXAuY28tb3BzLm5vcy5ub2FhLmdvdi9pb29zLWRpZi1zb3MvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc1Nvc0FUZW1wLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NTb3NBVGVtcCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyIsICJub3NTb3NBVGVtcCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NTb3NCUHJlcy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zQlByZXMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zQlByZXMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBOT1MgU09TLCBFWFBFUklNRU5UQUwsIDE4NTMtcHJlc2VudCwgQmFyb21ldHJpYyBQcmVzc3VyZSIsICJUaGUgTk9BQSBOT1MgU09TIHNlcnZlciBpcyBwYXJ0IG9mIHRoZSBJT09TIERJRiBTT1MgUHJvamVjdC4gIFRoZSBzdGF0aW9ucyBpbiB0aGlzIGRhdGFzZXQgaGF2ZSBiYXJvbWV0cmljIHByZXNzdXJlIGRhdGEuICAqKioqVGhlc2Ugc2VydmljZXMgYXJlIGZvciB0ZXN0aW5nIGFuZCBldmFsdWF0aW9uIHVzZSBvbmx5KioqKlxuXG5CZWNhdXNlIG9mIHRoZSBuYXR1cmUgb2YgU09TIHJlcXVlc3RzLCByZXF1ZXN0cyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgY29uc3RyYWludHMgZm9yIHRoZSBsb25naXR1ZGUsIGxhdGl0dWRlLCB0aW1lLCBhbmQvb3Igc3RhdGlvbl9pZCB2YXJpYWJsZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxuc3RhdGlvbl9pZFxuYWx0aXR1ZGUgKG0pXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2Vuc29yX2lkXG5haXJfcHJlc3N1cmUgKEJhcm9tZXRyaWMgUHJlc3N1cmUsIG1pbGxpYmFycylcbnF1YWxpdHlfZmxhZ3NcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NTb3NCUHJlc19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zU29zQlByZXNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm9zU29zQlByZXMvaW5kZXguanNvbiIsICJodHRwczovL29wZW5kYXAuY28tb3BzLm5vcy5ub2FhLmdvdi9pb29zLWRpZi1zb3MvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc1Nvc0JQcmVzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NTb3NCUHJlcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyIsICJub3NTb3NCUHJlcyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NTb3NXTGV2ZWwuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc1Nvc1dMZXZlbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NTb3NXTGV2ZWwuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBOT1MgU09TLCBFWFBFUklNRU5UQUwsIDE4NTMtcHJlc2VudCwgV2F0ZXIgTGV2ZWwiLCAiVGhlIE5PQUEgTk9TIFNPUyBzZXJ2ZXIgaXMgcGFydCBvZiB0aGUgSU9PUyBESUYgU09TIFByb2plY3QuICBUaGUgc3RhdGlvbnMgaW4gdGhpcyBkYXRhc2V0IGhhdmUgd2F0ZXIgc3VyZmFjZSBoZWlnaHQgYWJvdmUgYSByZWZlcmVuY2UgZGF0dW0uICAqKioqVGhlc2Ugc2VydmljZXMgYXJlIGZvciB0ZXN0aW5nIGFuZCBldmFsdWF0aW9uIHVzZSBvbmx5KioqKlxuXG5CZWNhdXNlIG9mIHRoZSBuYXR1cmUgb2YgU09TIHJlcXVlc3RzLCByZXF1ZXN0cyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgY29uc3RyYWludHMgZm9yIHRoZSBsb25naXR1ZGUsIGxhdGl0dWRlLCB0aW1lLCBhbmQvb3Igc3RhdGlvbl9pZCB2YXJpYWJsZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxuc3RhdGlvbl9pZFxuYWx0aXR1ZGUgKG0pXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2Vuc29yX2lkXG53YXRlcl9sZXZlbCAod2F0ZXJfc3VyZmFjZV9oZWlnaHRfYWJvdmVfcmVmZXJlbmNlX2RhdHVtLCBtKVxuZGF0dW1faWRcbnZlcnRpY2FsX3Bvc2l0aW9uIChtKVxuc2lnbWFcbnF1YWxpdHlfZmxhZ3NcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NTb3NXTGV2ZWxfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc1Nvc1dMZXZlbF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub3NTb3NXTGV2ZWwvaW5kZXguanNvbiIsICJodHRwczovL29wZW5kYXAuY28tb3BzLm5vcy5ub2FhLmdvdi9pb29zLWRpZi1zb3MvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc1Nvc1dMZXZlbC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bm9zU29zV0xldmVsJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk9TIiwgIm5vc1Nvc1dMZXZlbCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NTb3NXVGVtcC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zV1RlbXAiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zV1RlbXAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBOT1MgU09TLCBFWFBFUklNRU5UQUwsIDE4NTMtcHJlc2VudCwgV2F0ZXIgVGVtcGVyYXR1cmUiLCAiVGhlIE5PQUEgTk9TIFNPUyBzZXJ2ZXIgaXMgcGFydCBvZiB0aGUgSU9PUyBESUYgU09TIFByb2plY3QuICBUaGUgc3RhdGlvbnMgaW4gdGhpcyBkYXRhc2V0IGhhdmUgd2F0ZXIgdGVtcGVyYXR1cmUgZGF0YS4gICoqKipUaGVzZSBzZXJ2aWNlcyBhcmUgZm9yIHRlc3RpbmcgYW5kIGV2YWx1YXRpb24gdXNlIG9ubHkqKioqXG5cbkJlY2F1c2Ugb2YgdGhlIG5hdHVyZSBvZiBTT1MgcmVxdWVzdHMsIHJlcXVlc3RzIGZvciBkYXRhIE1VU1QgaW5jbHVkZSBjb25zdHJhaW50cyBmb3IgdGhlIGxvbmdpdHVkZSwgbGF0aXR1ZGUsIHRpbWUsIGFuZC9vciBzdGF0aW9uX2lkIHZhcmlhYmxlcy5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5zdGF0aW9uX2lkXG5hbHRpdHVkZSAobSlcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zZW5zb3JfaWRcbnNlYV93YXRlcl90ZW1wZXJhdHVyZSAoZGVncmVlX0MpXG5xdWFsaXR5X2ZsYWdzXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm9zU29zV1RlbXBfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc1Nvc1dUZW1wX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL25vc1Nvc1dUZW1wL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vcGVuZGFwLmNvLW9wcy5ub3Mubm9hYS5nb3YvaW9vcy1kaWYtc29zLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9ub3NTb3NXVGVtcC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bm9zU29zV1RlbXAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOT1MiLCAibm9zU29zV1RlbXAiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zQ29uZC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zQ29uZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NTb3NDb25kLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgTk9TIFNPUywgRVhQRVJJTUVOVEFMLCAxOTAyLXByZXNlbnQsIENvbmR1Y3Rpdml0eSIsICJUaGUgTk9BQSBOT1MgU09TIHNlcnZlciBpcyBwYXJ0IG9mIHRoZSBJT09TIERJRiBTT1MgUHJvamVjdC4gIFRoZSBzdGF0aW9ucyBpbiB0aGlzIGRhdGFzZXQgaGF2ZSBjb25kdWN0aXZpdHkgZGF0YS4gICoqKipUaGVzZSBzZXJ2aWNlcyBhcmUgZm9yIHRlc3RpbmcgYW5kIGV2YWx1YXRpb24gdXNlIG9ubHkqKioqXG5cbkJlY2F1c2Ugb2YgdGhlIG5hdHVyZSBvZiBTT1MgcmVxdWVzdHMsIHJlcXVlc3RzIGZvciBkYXRhIE1VU1QgaW5jbHVkZSBjb25zdHJhaW50cyBmb3IgdGhlIGxvbmdpdHVkZSwgbGF0aXR1ZGUsIHRpbWUsIGFuZC9vciBzdGF0aW9uX2lkIHZhcmlhYmxlcy5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5zdGF0aW9uX2lkXG5hbHRpdHVkZSAobSlcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zZW5zb3JfaWRcbmNvbmR1Y3Rpdml0eSAoRWxlY3RyaWNhbCBDb25kdWN0aXZpdHksIG1TIGNtLTEpXG5xdWFsaXR5X2ZsYWdzXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm9zU29zQ29uZF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zU29zQ29uZF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub3NTb3NDb25kL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vcGVuZGFwLmNvLW9wcy5ub3Mubm9hYS5nb3YvaW9vcy1kaWYtc29zLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9ub3NTb3NDb25kLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NTb3NDb25kJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk9TIiwgIm5vc1Nvc0NvbmQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zU2FsaW5pdHkuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc1Nvc1NhbGluaXR5IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc1Nvc1NhbGluaXR5LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgTk9TIFNPUywgRVhQRVJJTUVOVEFMLCAxOTAyLXByZXNlbnQsIFNhbGluaXR5IiwgIlRoZSBOT0FBIE5PUyBTT1Mgc2VydmVyIGlzIHBhcnQgb2YgdGhlIElPT1MgRElGIFNPUyBQcm9qZWN0LiAgVGhlIHN0YXRpb25zIGluIHRoaXMgZGF0YXNldCBoYXZlIHNhbGluaXR5IGRhdGEuICAqKioqVGhlc2Ugc2VydmljZXMgYXJlIGZvciB0ZXN0aW5nIGFuZCBldmFsdWF0aW9uIHVzZSBvbmx5KioqKlxuXG5CZWNhdXNlIG9mIHRoZSBuYXR1cmUgb2YgU09TIHJlcXVlc3RzLCByZXF1ZXN0cyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgY29uc3RyYWludHMgZm9yIHRoZSBsb25naXR1ZGUsIGxhdGl0dWRlLCB0aW1lLCBhbmQvb3Igc3RhdGlvbl9pZCB2YXJpYWJsZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxuc3RhdGlvbl9pZFxuYWx0aXR1ZGUgKG0pXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2Vuc29yX2lkXG5zZWFfd2F0ZXJfc2FsaW5pdHkgKFNlYSBXYXRlciBQcmFjdGljYWwgU2FsaW5pdHksIFBTVSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NTb3NTYWxpbml0eV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zU29zU2FsaW5pdHlfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm9zU29zU2FsaW5pdHkvaW5kZXguanNvbiIsICJodHRwczovL29wZW5kYXAuY28tb3BzLm5vcy5ub2FhLmdvdi9pb29zLWRpZi1zb3MvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc1Nvc1NhbGluaXR5LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NTb3NTYWxpbml0eSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyIsICJub3NTb3NTYWxpbml0eSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURURucnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFRG5ydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURURucnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBTaGlwIEJlbGwgTS4gU2hpbWFkYSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBOZWFyIFJlYWwgVGltZSIsICJOT0FBIFNoaXAgQmVsbCBNLiBTaGltYWRhIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKE5lYXIgUmVhbCBUaW1lLCB1cGRhdGVkIGRhaWx5KSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS4gIFxuXCI9flwiIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLiBcblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLiAgXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuICBcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5haXJQcmVzc3VyZSAoQXRtb3NwaGVyaWMgUHJlc3N1cmUsIG1pbGxpYmFyKVxuLi4uICgxOSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VOb2FhU2hpcFdURURucnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdU5vYWFTaGlwV1RFRG5ydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VOb2FhU2hpcFdURURucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1Tm9hYVNoaXBXVEVEbnJ0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VOb2FhU2hpcFdURURucnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdU5vYWFTaGlwV1RFRG5ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURUQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFRCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURUQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBTaGlwIEJlbGwgTS4gU2hpbWFkYSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiTk9BQSBTaGlwIEJlbGwgTS4gU2hpbWFkYSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDE5IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFRF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVEX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFRC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURUQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFRCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVEIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RESy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVERLIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RESy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgRGF2aWQgU3RhcnIgSm9yZGFuIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJOT0FBIFNoaXAgRGF2aWQgU3RhcnIgSm9yZGFuIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVERLX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdUREtfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVERLL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RESy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVERLJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdUREsiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBLTkJELnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcEtOQkQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBLTkJELmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBEZWxhd2FyZSBJSSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiTk9BQSBTaGlwIERlbGF3YXJlIElJIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBLTkJEX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcEtOQkRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBLTkJEL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwS05CRC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBLTkJEJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcEtOQkQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVCbnJ0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURUJucnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVCbnJ0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBGYWlyd2VhdGhlciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBOZWFyIFJlYWwgVGltZSIsICJOT0FBIFNoaXAgRmFpcndlYXRoZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoTmVhciBSZWFsIFRpbWUsIHVwZGF0ZWQgZGFpbHkpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFQm5ydF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVCbnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFQm5ydC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURUJucnQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFQm5ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVCbnJ0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFQi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVCIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFQi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgRmFpcndlYXRoZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUXVhbGl0eSBDb250cm9sbGVkIiwgIk5PQUEgU2hpcCBGYWlyd2VhdGhlciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFQl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVCX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFQi9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURUIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFQiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVCIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFT25ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVPbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFT25ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgR29yZG9uIEd1bnRlciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBOZWFyIFJlYWwgVGltZSIsICJOT0FBIFNoaXAgR29yZG9uIEd1bnRlciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChOZWFyIFJlYWwgVGltZSwgdXBkYXRlZCBkYWlseSkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVEVPbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdURU9ucnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVEVPbnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RFT25ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVEVPbnJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdURU9ucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVPLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURU8iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVPLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBHb3Jkb24gR3VudGVyIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJOT0FBIFNoaXAgR29yZG9uIEd1bnRlciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFT19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVPX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFTy9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURU8ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFTyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVPIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RERm5ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVERGbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RERm5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgSGVucnkgQi4gQmlnZWxvdyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBOZWFyIFJlYWwgVGltZSIsICJOT0FBIFNoaXAgSGVucnkgQi4gQmlnZWxvdyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChOZWFyIFJlYWwgVGltZSwgdXBkYXRlZCBkYWlseSkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVERGbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdUREZucnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVERGbnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RERm5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVERGbnJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdUREZucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVERGLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdUREYiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVERGLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBIZW5yeSBCLiBCaWdlbG93IFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJOT0FBIFNoaXAgSGVucnkgQi4gQmlnZWxvdyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RERl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVERGX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RERi9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdUREYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RERiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVERGIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFWW5ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVZbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFWW5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgSGknaWFsYWthaSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBOZWFyIFJlYWwgVGltZSIsICJOT0FBIFNoaXAgSGknaWFsYWthaSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChOZWFyIFJlYWwgVGltZSwgdXBkYXRlZCBkYWlseSkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVEVZbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdURVlucnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVEVZbnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RFWW5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVEVZbnJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdURVlucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVZLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURVkiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVZLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBIaSdpYWxha2FpIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJOT0FBIFNoaXAgSGknaWFsYWthaSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFWV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVZX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFWS9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURVkucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFWSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVZIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFVS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVVIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFVS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgS2EnaW1pbW9hbmEgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUXVhbGl0eSBDb250cm9sbGVkIiwgIk5PQUEgU2hpcCBLYSdpbWltb2FuYSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDE2IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFVV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVVX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFVS9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURVUucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFVSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVVIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFSi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVKIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFSi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgTWNBcnRodXJJSSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiTk9BQSBTaGlwIE1jQXJ0aHVyIElJIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVEVKX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdURUpfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVEVKL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RFSi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVEVKJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdURUoiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVERNLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURE0iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVERNLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBNaWxsZXIgRnJlZW1hbiBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiTk9BQSBTaGlwIE1pbGxlciBGcmVlbWFuIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVERNX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdURE1faXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVERNL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RETS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVERNJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdURE0iXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVSbnJ0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURVJucnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVSbnJ0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBOYW5jeSBGb3N0ZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgTmVhciBSZWFsIFRpbWUiLCAiTk9BQSBTaGlwIE5hbmN5IEZvc3RlciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChOZWFyIFJlYWwgVGltZSwgdXBkYXRlZCBkYWlseSkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTQgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVEVSbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdURVJucnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVEVSbnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RFUm5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVEVSbnJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdURVJucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVSLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURVIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVSLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBOYW5jeSBGb3N0ZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUXVhbGl0eSBDb250cm9sbGVkIiwgIk5PQUEgU2hpcCBOYW5jeSBGb3N0ZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS4gIFxuXCI9flwiIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLiBcblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLiAgXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuICBcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5haXJQcmVzc3VyZSAoQXRtb3NwaGVyaWMgUHJlc3N1cmUsIG1pbGxpYmFyKVxuLi4uICgxNCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VOb2FhU2hpcFdURVJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdU5vYWFTaGlwV1RFUl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VOb2FhU2hpcFdURVIvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1Tm9hYVNoaXBXVEVSLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VOb2FhU2hpcFdURVImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdU5vYWFTaGlwV1RFUiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdUREhucnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RESG5ydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdUREhucnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBTaGlwIE9rZWFub3MgRXhwbG9yZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgTmVhciBSZWFsIFRpbWUiLCAiTk9BQSBTaGlwIE9rZWFub3MgRXhwbG9yZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoTmVhciBSZWFsIFRpbWUsIHVwZGF0ZWQgZGFpbHkpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RESG5ydF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVERIbnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RESG5ydC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdUREhucnQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RESG5ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVERIbnJ0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RESC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVERIIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RESC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgT2tlYW5vcyBFeHBsb3JlciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiTk9BQSBTaGlwIE9rZWFub3MgRXhwbG9yZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS4gIFxuXCI9flwiIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLiBcblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLiAgXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuICBcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5haXJQcmVzc3VyZSAoQXRtb3NwaGVyaWMgUHJlc3N1cmUsIG1pbGxpYmFyKVxuLi4uICgxMyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VOb2FhU2hpcFdUREhfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdU5vYWFTaGlwV1RESF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VOb2FhU2hpcFdUREgvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1Tm9hYVNoaXBXVERILnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VOb2FhU2hpcFdUREgmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdU5vYWFTaGlwV1RESCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURE9ucnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RET25ydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURE9ucnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBTaGlwIE9yZWdvbiBJSSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBOZWFyIFJlYWwgVGltZSIsICJOT0FBIFNoaXAgT3JlZ29uIElJIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKE5lYXIgUmVhbCBUaW1lLCB1cGRhdGVkIGRhaWx5KSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS4gIFxuXCI9flwiIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLiBcblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLiAgXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuICBcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5haXJQcmVzc3VyZSAoQXRtb3NwaGVyaWMgUHJlc3N1cmUsIG1pbGxpYmFyKVxuLi4uICgxMyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VOb2FhU2hpcFdURE9ucnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdU5vYWFTaGlwV1RET25ydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VOb2FhU2hpcFdURE9ucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1Tm9hYVNoaXBXVERPbnJ0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VOb2FhU2hpcFdURE9ucnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdU5vYWFTaGlwV1RET25ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURE8uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RETyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURE8uZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBTaGlwIE9yZWdvbiBJSSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiTk9BQSBTaGlwIE9yZWdvbiBJSSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RET19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVERPX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RETy9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURE8ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RETyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVERPIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFUG5ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVQbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFUG5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgT3NjYXIgRHlzb24gVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgTmVhciBSZWFsIFRpbWUiLCAiTk9BQSBTaGlwIE9zY2FyIER5c29uIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKE5lYXIgUmVhbCBUaW1lLCB1cGRhdGVkIGRhaWx5KSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS5cbic9ficgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci5cblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy5cbihEb24ndCBpbmNsdWRlIGJhY2tzbGFzaGVzIGluIHlvdXIgcXVlcnkuKVxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbi4uLiAoMTQgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVEVQbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdURVBucnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVEVQbnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RFUG5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVEVQbnJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdURVBucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVQLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURVAiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVQLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBPc2NhciBEeXNvbiBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiTk9BQSBTaGlwIE9zY2FyIER5c29uIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuXG4nPX4nIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLlxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuXG4oRG9uJ3QgaW5jbHVkZSBiYWNrc2xhc2hlcyBpbiB5b3VyIHF1ZXJ5LilcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDE0IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFUF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVQX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFUC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURVAucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFUCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVQIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFRW5ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVFbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFRW5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgT3NjYXIgRWx0b24gU2V0dGUgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgTmVhciBSZWFsIFRpbWUiLCAiTk9BQSBTaGlwIE9zY2FyIEVsdG9uIFNldHRlIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKE5lYXIgUmVhbCBUaW1lLCB1cGRhdGVkIGRhaWx5KSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS4gIFxuXCI9flwiIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLiBcblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLiAgXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuICBcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5haXJQcmVzc3VyZSAoQXRtb3NwaGVyaWMgUHJlc3N1cmUsIG1pbGxpYmFyKVxuLi4uICgxMyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VOb2FhU2hpcFdURUVucnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdU5vYWFTaGlwV1RFRW5ydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VOb2FhU2hpcFdURUVucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1Tm9hYVNoaXBXVEVFbnJ0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VOb2FhU2hpcFdURUVucnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdU5vYWFTaGlwV1RFRW5ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURUUuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFRSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURUUuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBTaGlwIE9zY2FyIEVsdG9uIFNldHRlIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJOT0FBIFNoaXAgT3NjYXIgRWx0b24gU2V0dGUgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS4gIFxuXCI9flwiIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLiBcblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLiAgXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuICBcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5haXJQcmVzc3VyZSAoQXRtb3NwaGVyaWMgUHJlc3N1cmUsIG1pbGxpYmFyKVxuLi4uICgxMyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VOb2FhU2hpcFdURUVfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdU5vYWFTaGlwV1RFRV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VOb2FhU2hpcFdURUUvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1Tm9hYVNoaXBXVEVFLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VOb2FhU2hpcFdURUUmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdU5vYWFTaGlwV1RFRSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURExucnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RETG5ydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURExucnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBTaGlwIFBpc2NlcyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBOZWFyIFJlYWwgVGltZSIsICJOT0FBIFNoaXAgUGlzY2VzIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKE5lYXIgUmVhbCBUaW1lLCB1cGRhdGVkIGRhaWx5KSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS4gIFxuXCI9flwiIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLiBcblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLiAgXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuICBcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5haXJQcmVzc3VyZSAoQXRtb3NwaGVyaWMgUHJlc3N1cmUsIG1pbGxpYmFyKVxuLi4uICgxMyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VOb2FhU2hpcFdURExucnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdU5vYWFTaGlwV1RETG5ydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VOb2FhU2hpcFdURExucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1Tm9hYVNoaXBXVERMbnJ0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VOb2FhU2hpcFdURExucnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdU5vYWFTaGlwV1RETG5ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdUREwuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RETCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdUREwuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBTaGlwIFBpc2NlcyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiTk9BQSBTaGlwIFBpc2NlcyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RETF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVERMX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RETC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdUREwucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RETCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVERMIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFRm5ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVGbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFRm5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgUmFpbmllciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBOZWFyIFJlYWwgVGltZSIsICJOT0FBIFNoaXAgUmFpbmllciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChOZWFyIFJlYWwgVGltZSwgdXBkYXRlZCBkYWlseSkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVEVGbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdURUZucnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVEVGbnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RFRm5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVEVGbnJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdURUZucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVGLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURUYiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVGLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBSYWluaWVyIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJOT0FBIFNoaXAgUmFpbmllciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFRl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVGX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFRi9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURUYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFRiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVGIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFQ25ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVDbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFQ25ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgUm9uYWxkIEJyb3duIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIE5lYXIgUmVhbCBUaW1lIiwgIk5PQUEgU2hpcCBSb25hbGQgQnJvd24gVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoTmVhciBSZWFsIFRpbWUsIHVwZGF0ZWQgZGFpbHkpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDE0IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFQ25ydF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVDbnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFQ25ydC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURUNucnQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFQ25ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVDbnJ0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFQy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVDIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFQy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgUm9uYWxkIEJyb3duIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJOT0FBIFNoaXAgUm9uYWxkIEJyb3duIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTQgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVEVDX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdURUNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVEVDL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RFQy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVEVDJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdURUMiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkTnBoLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmROcGgiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkTnBoLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5vcnRoIFBhY2lmaWMgSGlnaCwgMTk2NyAtIHByZXNlbnQiLCAiVmFyaWF0aW9ucyBpbiBsYXJnZS1zY2FsZSBhdG1vc3BoZXJpYyBmb3JjaW5nIGluZmx1ZW5jZSB1cHdlbGxpbmcgZHluYW1pY3MgYW5kIGVjb3N5c3RlbSBwcm9kdWN0aXZpdHkgaW4gdGhlIENhbGlmb3JuaWEgQ3VycmVudCBTeXN0ZW0gKENDUykuIEluIHRoaXMgcGFwZXIsIHdlIGNoYXJhY3Rlcml6ZSBpbnRlcmFubnVhbCB2YXJpYWJpbGl0eSBvZiB0aGUgTm9ydGggUGFjaWZpYyBIaWdoIG92ZXIgNDAgeWVhcnMgYW5kIGludmVzdGlnYXRlIGhvdyB2YXJpYXRpb24gaW4gaXRzIGFtcGxpdHVkZSBhbmQgcG9zaXRpb24gYWZmZWN0IHVwd2VsbGluZyBhbmQgYmlvbG9neS4gV2UgZGV2ZWxvcCBhIHdpbnRlciB1cHdlbGxpbmcgXCJwcmUtY29uZGl0aW9uaW5nXCIgaW5kZXggYW5kIGRlbW9uc3RyYXRlIGl0cyB1dGlsaXR5IHRvIHVuZGVyc3RhbmRpbmcgYmlvbG9naWNhbCBwcm9jZXNzZXMuIFZhcmlhdGlvbiBpbiB0aGUgd2ludGVyIE5QSCBjYW4gYmUgd2VsbCBkZXNjcmliZWQgYnkgaXRzIGFyZWFsIGV4dGVudCBhbmQgbWF4aW11bSBwcmVzc3VyZSwgd2hpY2ggaW4gdHVybiBpcyBwcmVkaWN0aXZlIG9mIHdpbnRlciB1cHdlbGxpbmcuIE91ciB3aW50ZXIgcHJlLWNvbmRpdGlvbmluZyBpbmRleCBleHBsYWluZWQgNjQlIG9mIHRoZSB2YXJpYXRpb24gaW4gYmlvbG9naWNhbCByZXNwb25zZXMgKGZpc2ggYW5kIHNlYWJpcmRzKS4gVW5kZXJzdGFuZGluZyBjaGFyYWN0ZXJpc3RpY3Mgb2YgdGhlIE5QSCBpbiB3aW50ZXIgaXMgdGhlcmVmb3JlIGNyaXRpY2FsIHRvIHByZWRpY3RpbmcgYmlvbG9naWNhbCByZXNwb25zZXMgaW4gdGhlIENDUy5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxueWVhclxubW9udGggKE1vbnRoICgxIC0gMTIpKVxubG9uZ2l0dWRlIChMb25naXR1ZGUgb2YgdGhlIENlbnRlciBvZiB0aGUgTlBILCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTGF0aXR1ZGUgb2YgdGhlIENlbnRlciBvZiB0aGUgTlBILCBkZWdyZWVzX25vcnRoKVxuYXJlYSAoQXJlYWwgRXh0ZW50IG9mIHRoZSAxMDIwIGhQYSBDb250b3VyLCBrbTIpXG5tYXhTTFAgKE1heGltdW0gU2VhIExldmVsIFByZXNzdXJlLCBoUGEpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkTnBoX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmROcGhfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkTnBoL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vbmxpbmVsaWJyYXJ5LndpbGV5LmNvbS9kb2kvMTAuMTAwMi9ncmwuNTAxMDAvYWJzdHJhY3QiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkTnBoLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmROcGgmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBFUkQiLCAiZXJkTnBoIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRQY3VpIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFBjdWkuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTm9ydGggUGFjaWZpYyBIaWdoLCBQcmUtY29uZGl0aW9uaW5nIEN1bXVsYXRpdmUgVXB3ZWxsaW5nIEluZGV4LCAxOTY3IC0gcHJlc2VudCIsICJWYXJpYXRpb25zIGluIGxhcmdlLXNjYWxlIGF0bW9zcGhlcmljIGZvcmNpbmcgaW5mbHVlbmNlIHVwd2VsbGluZyBkeW5hbWljcyBhbmQgZWNvc3lzdGVtIHByb2R1Y3Rpdml0eSBpbiB0aGUgQ2FsaWZvcm5pYSBDdXJyZW50IFN5c3RlbSAoQ0NTKS4gSW4gdGhpcyBwYXBlciwgd2UgY2hhcmFjdGVyaXplIGludGVyYW5udWFsIHZhcmlhYmlsaXR5IG9mIHRoZSBOb3J0aCBQYWNpZmljIEhpZ2ggb3ZlciA0MCB5ZWFycyBhbmQgaW52ZXN0aWdhdGUgaG93IHZhcmlhdGlvbiBpbiBpdHMgYW1wbGl0dWRlIGFuZCBwb3NpdGlvbiBhZmZlY3QgdXB3ZWxsaW5nIGFuZCBiaW9sb2d5LiBXZSBkZXZlbG9wIGEgd2ludGVyIHVwd2VsbGluZyBcInByZS1jb25kaXRpb25pbmdcIiBpbmRleCBhbmQgZGVtb25zdHJhdGUgaXRzIHV0aWxpdHkgdG8gdW5kZXJzdGFuZGluZyBiaW9sb2dpY2FsIHByb2Nlc3Nlcy4gVmFyaWF0aW9uIGluIHRoZSB3aW50ZXIgTlBIIGNhbiBiZSB3ZWxsIGRlc2NyaWJlZCBieSBpdHMgYXJlYWwgZXh0ZW50IGFuZCBtYXhpbXVtIHByZXNzdXJlLCB3aGljaCBpbiB0dXJuIGlzIHByZWRpY3RpdmUgb2Ygd2ludGVyIHVwd2VsbGluZy4gT3VyIHdpbnRlciBwcmUtY29uZGl0aW9uaW5nIGluZGV4IGV4cGxhaW5lZCA2NCUgb2YgdGhlIHZhcmlhdGlvbiBpbiBiaW9sb2dpY2FsIHJlc3BvbnNlcyAoZmlzaCBhbmQgc2VhYmlyZHMpLiBVbmRlcnN0YW5kaW5nIGNoYXJhY3RlcmlzdGljcyBvZiB0aGUgTlBIIGluIHdpbnRlciBpcyB0aGVyZWZvcmUgY3JpdGljYWwgdG8gcHJlZGljdGluZyBiaW9sb2dpY2FsIHJlc3BvbnNlcyBpbiB0aGUgQ0NTLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5wY3VpMzNOIChQQ1VJIGF0IDMzTiwgbV4zIHNeLTEgMTAwbV4tMSlcbnBjdWkzNk4gKFBDVUkgYXQgMzZOLCBtXjMgc14tMSAxMDBtXi0xKVxucGN1aTM5TiAoUENVSSBhdCAzOU4sIG1eMyBzXi0xIDEwMG1eLTEpXG5wY3VpNDJOIChQQ1VJIGF0IDQyTiwgbV4zIHNeLTEgMTAwbV4tMSlcbnBjdWk0NU4gKFBDVUkgYXQgNDVOLCBtXjMgc14tMSAxMDBtXi0xKVxucGN1aTQ4TiAoUENVSSBhdCA0OE4sIG1eMyBzXi0xIDEwMG1eLTEpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZFBjdWkvaW5kZXguanNvbiIsICJodHRwczovL29ubGluZWxpYnJhcnkud2lsZXkuY29tL2RvaS8xMC4xMDAyL2dybC41MDEwMC9hYnN0cmFjdCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRQY3VpLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRQY3VpJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgRVJEIiwgImVyZFBjdWkiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNDQS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNDQSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc0NBLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PUyBDTy1PUFMgQWN0aXZlIEN1cnJlbnRzIERhdGEsIDYtTWludXRlIiwgIlRoaXMgZGF0YXNldCBoYXMgc3VyZmFjZSBBY3RpdmUgQ3VycmVudHMgZGF0YSBmcm9tIE5PQUEgTk9TIENlbnRlciBmb3Jcbk9wZXJhdGlvbmFsIE9jZWFub2dyYXBoaWMgUHJvZHVjdHMgYW5kIFNlcnZpY2VzIChDTy1PUFMpLlxuXG5XQVJOSU5HOiBUaGVzZSByYXcgZGF0YSBoYXZlIG5vdCBiZWVuIHN1YmplY3RlZCB0byB0aGUgTmF0aW9uYWwgT2NlYW4gU2VydmljZXNcbihOT1MpIFF1YWxpdHkgQ29udHJvbCBwcm9jZWR1cmVzLCBhbmQgZG8gbm90IG5lY2Vzc2FyaWx5IG1lZXQgdGhlIGNyaXRlcmlhIGFuZFxuc3RhbmRhcmRzIG9mIG9mZmljaWFsIE5PUyBkYXRhLiBUaGV5IGFyZSByZWxlYXNlZCBmb3IgbGltaXRlZCBwdWJsaWMgdXNlIHdpdGhcbmFwcHJvcHJpYXRlIGNhdXRpb24uXG5cbldBUk5JTkc6XG4qIFF1ZXJpZXMgZm9yIGRhdGEgTVVTVCBpbmNsdWRlIHN0YXRpb25JRD0gYW5kIHRpbWU+PS5cbiogUXVlcmllcyBVU1VBTExZIGluY2x1ZGUgdGltZTw9ICh0aGUgZGVmYXVsdCBlbmQgdGltZSBjb3JyZXNwb25kcyB0byAnbm93JykuXG4qIFF1ZXJpZXMgTVVTVCBiZSBmb3IgbGVzcyB0aGFuIDMwIGRheXMgd29ydGggb2YgZGF0YS5cbiogVGhlIGRhdGEgc291cmNlIGlzbid0IGNvbXBsZXRlbHkgcmVsaWFibGUuIElmIHlvdXIgcmVxdWVzdCByZXR1cm5zIG5vIGRhdGFcbiAgd2hlbiB5b3UgdGhpbmsgaXQgc2hvdWxkOlxuICAqIFRyeSByZXZpc2luZyB0aGUgcmVxdWVzdCAoZS5nLiwgYSBkaWZmZXJlbnQgdGltZSByYW5nZSkuXG4gICogVGhlIGxpc3Qgb2Ygc3RhdGlvbnMgb2ZmZXJpbmcgdGhpcyBkYXRhIG1heSBiZSBpbmNvcnJlY3QuXG4gICogU29tZXRpbWVzIGEgc3RhdGlvbiBvciB0aGUgZW50aXJlIGRhdGEgc2VydmljZSBpcyB1bmF2YWlsYWJsZS5cbiAgICBXYWl0IGEgd2hpbGUgYW5kIHRyeSBhZ2Fpbi5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb25JRCAoU3RhdGlvbiBJRClcbnN0YXRpb25OYW1lIChTdGF0aW9uIE5hbWUpXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbkNTIChDdXJyZW50IFNwZWVkLCBrbm90cylcbkNEIChDdXJyZW50IERpcmVjdGlvbiwgZGVncmVlc190cnVlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL25vc0Nvb3BzQ0FfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc0Nvb3BzQ0FfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm9zQ29vcHNDQS9pbmRleC5qc29uIiwgImh0dHA6Ly90aWRlc2FuZGN1cnJlbnRzLm5vYWEuZ292LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9ub3NDb29wc0NBLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NDb29wc0NBJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk9TIENPLU9QUyIsICJub3NDb29wc0NBIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzTUFULnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01BVCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01BVC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT1MgQ08tT1BTIE1ldGVvcm9sb2dpY2FsIERhdGEsIEFpciBUZW1wZXJhdHVyZSwgNi1NaW51dGUiLCAiVGhpcyBkYXRhc2V0IGhhcyBBaXIgVGVtcGVyYXR1cmUgZGF0YSBmcm9tIE5PQUEgTk9TIENlbnRlciBmb3IgT3BlcmF0aW9uYWxcbk9jZWFub2dyYXBoaWMgUHJvZHVjdHMgYW5kIFNlcnZpY2VzIChDTy1PUFMpLlxuXG5XQVJOSU5HOiBUaGVzZSBwcmVsaW1pbmFyeSBkYXRhIGhhdmUgbm90IGJlZW4gc3ViamVjdGVkIHRvIHRoZSBOYXRpb25hbCBPY2VhblxuU2VydmljZXMgKE5PUykgUXVhbGl0eSBDb250cm9sIHByb2NlZHVyZXMsIGFuZCBkbyBub3QgbmVjZXNzYXJpbHkgbWVldCB0aGVcbmNyaXRlcmlhIGFuZCBzdGFuZGFyZHMgb2Ygb2ZmaWNpYWwgTk9TIGRhdGEuIFRoZXkgYXJlIHJlbGVhc2VkIGZvciBsaW1pdGVkXG5wdWJsaWMgdXNlIHdpdGggYXBwcm9wcmlhdGUgY2F1dGlvbi5cblxuV0FSTklORzpcbiogUXVlcmllcyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgc3RhdGlvbklEPSBhbmQgdGltZT49LlxuKiBRdWVyaWVzIFVTVUFMTFkgaW5jbHVkZSB0aW1lPD0gKHRoZSBkZWZhdWx0IGVuZCB0aW1lIGNvcnJlc3BvbmRzIHRvICdub3cnKS5cbiogUXVlcmllcyBNVVNUIGJlIGZvciBsZXNzIHRoYW4gMzAgZGF5cyB3b3J0aCBvZiBkYXRhLlxuKiBUaGUgZGF0YSBzb3VyY2UgaXNuJ3QgY29tcGxldGVseSByZWxpYWJsZS4gSWYgeW91ciByZXF1ZXN0IHJldHVybnMgbm8gZGF0YVxuICB3aGVuIHlvdSB0aGluayBpdCBzaG91bGQ6XG4gICogVHJ5IHJldmlzaW5nIHRoZSByZXF1ZXN0IChlLmcuLCBhIGRpZmZlcmVudCB0aW1lIHJhbmdlKS5cbiAgKiBUaGUgbGlzdCBvZiBzdGF0aW9ucyBvZmZlcmluZyB0aGlzIGRhdGEgbWF5IGJlIGluY29ycmVjdC5cbiAgKiBTb21ldGltZXMgYSBzdGF0aW9uIG9yIHRoZSBlbnRpcmUgZGF0YSBzZXJ2aWNlIGlzIHVuYXZhaWxhYmxlLlxuICAgIFdhaXQgYSB3aGlsZSBhbmQgdHJ5IGFnYWluLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvbklEIChTdGF0aW9uIElEKVxuc3RhdGlvbk5hbWUgKFN0YXRpb24gTmFtZSlcbnN0YXRlXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaGVmSUQgKFNIRUYgSUQpXG5kZXBsb3ltZW50IChEZXBsb3ltZW50IERlc2lnbmF0aW9uKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kY3AgKERhdGEgQ29sbGVjdGlvbiBQbGF0Zm9ybSlcbi4uLiAoNSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NDb29wc01BVF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zQ29vcHNNQVRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm9zQ29vcHNNQVQvaW5kZXguanNvbiIsICJodHRwOi8vdGlkZXNhbmRjdXJyZW50cy5ub2FhLmdvdi8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm9zQ29vcHNNQVQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPW5vc0Nvb3BzTUFUJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk9TIENPLU9QUyIsICJub3NDb29wc01BVCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01CUC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNNQlAiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNNQlAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9TIENPLU9QUyBNZXRlb3JvbG9naWNhbCBEYXRhLCBCYXJvbWV0cmljIFByZXNzdXJlLCA2LU1pbnV0ZSIsICJUaGlzIGRhdGFzZXQgaGFzIEJhcm9tZXRyaWMgUHJlc3N1cmUgZGF0YSBmcm9tIE5PQUEgTk9TIENlbnRlciBmb3IgT3BlcmF0aW9uYWxcbk9jZWFub2dyYXBoaWMgUHJvZHVjdHMgYW5kIFNlcnZpY2VzIChDTy1PUFMpLlxuXG5XQVJOSU5HOiBUaGVzZSBwcmVsaW1pbmFyeSBkYXRhIGhhdmUgbm90IGJlZW4gc3ViamVjdGVkIHRvIHRoZSBOYXRpb25hbCBPY2VhblxuU2VydmljZXMgKE5PUykgUXVhbGl0eSBDb250cm9sIHByb2NlZHVyZXMsIGFuZCBkbyBub3QgbmVjZXNzYXJpbHkgbWVldCB0aGVcbmNyaXRlcmlhIGFuZCBzdGFuZGFyZHMgb2Ygb2ZmaWNpYWwgTk9TIGRhdGEuIFRoZXkgYXJlIHJlbGVhc2VkIGZvciBsaW1pdGVkXG5wdWJsaWMgdXNlIHdpdGggYXBwcm9wcmlhdGUgY2F1dGlvbi5cblxuV0FSTklORzpcbiogUXVlcmllcyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgc3RhdGlvbklEPSBhbmQgdGltZT49LlxuKiBRdWVyaWVzIFVTVUFMTFkgaW5jbHVkZSB0aW1lPD0gKHRoZSBkZWZhdWx0IGVuZCB0aW1lIGNvcnJlc3BvbmRzIHRvICdub3cnKS5cbiogUXVlcmllcyBNVVNUIGJlIGZvciBsZXNzIHRoYW4gMzAgZGF5cyB3b3J0aCBvZiBkYXRhLlxuKiBUaGUgZGF0YSBzb3VyY2UgaXNuJ3QgY29tcGxldGVseSByZWxpYWJsZS4gSWYgeW91ciByZXF1ZXN0IHJldHVybnMgbm8gZGF0YVxuICB3aGVuIHlvdSB0aGluayBpdCBzaG91bGQ6XG4gICogVHJ5IHJldmlzaW5nIHRoZSByZXF1ZXN0IChlLmcuLCBhIGRpZmZlcmVudCB0aW1lIHJhbmdlKS5cbiAgKiBUaGUgbGlzdCBvZiBzdGF0aW9ucyBvZmZlcmluZyB0aGlzIGRhdGEgbWF5IGJlIGluY29ycmVjdC5cbiAgKiBTb21ldGltZXMgYSBzdGF0aW9uIG9yIHRoZSBlbnRpcmUgZGF0YSBzZXJ2aWNlIGlzIHVuYXZhaWxhYmxlLlxuICAgIFdhaXQgYSB3aGlsZSBhbmQgdHJ5IGFnYWluLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvbklEIChTdGF0aW9uIElEKVxuc3RhdGlvbk5hbWUgKFN0YXRpb24gTmFtZSlcbnN0YXRlXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaGVmSUQgKFNIRUYgSUQpXG5kZXBsb3ltZW50IChEZXBsb3ltZW50IERlc2lnbmF0aW9uKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kY3AgKERhdGEgQ29sbGVjdGlvbiBQbGF0Zm9ybSlcbi4uLiAoNSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NDb29wc01CUF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zQ29vcHNNQlBfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm9zQ29vcHNNQlAvaW5kZXguanNvbiIsICJodHRwOi8vdGlkZXNhbmRjdXJyZW50cy5ub2FhLmdvdi8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm9zQ29vcHNNQlAucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPW5vc0Nvb3BzTUJQJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk9TIENPLU9QUyIsICJub3NDb29wc01CUCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01DLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01DIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzTUMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9TIENPLU9QUyBNZXRlb3JvbG9naWNhbCBEYXRhLCBDb25kdWN0aXZpdHksIDYtTWludXRlIiwgIlRoaXMgZGF0YXNldCBoYXMgQ29uZHVjdGl2aXR5IGRhdGEgZnJvbSBOT0FBIE5PUyBDZW50ZXIgZm9yIE9wZXJhdGlvbmFsXG5PY2Vhbm9ncmFwaGljIFByb2R1Y3RzIGFuZCBTZXJ2aWNlcyAoQ08tT1BTKS5cblxuV0FSTklORzogVGhlc2UgcHJlbGltaW5hcnkgZGF0YSBoYXZlIG5vdCBiZWVuIHN1YmplY3RlZCB0byB0aGUgTmF0aW9uYWwgT2NlYW5cblNlcnZpY2VzIChOT1MpIFF1YWxpdHkgQ29udHJvbCBwcm9jZWR1cmVzLCBhbmQgZG8gbm90IG5lY2Vzc2FyaWx5IG1lZXQgdGhlXG5jcml0ZXJpYSBhbmQgc3RhbmRhcmRzIG9mIG9mZmljaWFsIE5PUyBkYXRhLiBUaGV5IGFyZSByZWxlYXNlZCBmb3IgbGltaXRlZFxucHVibGljIHVzZSB3aXRoIGFwcHJvcHJpYXRlIGNhdXRpb24uXG5cbldBUk5JTkc6XG4qIFF1ZXJpZXMgZm9yIGRhdGEgTVVTVCBpbmNsdWRlIHN0YXRpb25JRD0gYW5kIHRpbWU+PS5cbiogUXVlcmllcyBVU1VBTExZIGluY2x1ZGUgdGltZTw9ICh0aGUgZGVmYXVsdCBlbmQgdGltZSBjb3JyZXNwb25kcyB0byAnbm93JykuXG4qIFF1ZXJpZXMgTVVTVCBiZSBmb3IgbGVzcyB0aGFuIDMwIGRheXMgd29ydGggb2YgZGF0YS5cbiogVGhlIGRhdGEgc291cmNlIGlzbid0IGNvbXBsZXRlbHkgcmVsaWFibGUuIElmIHlvdXIgcmVxdWVzdCByZXR1cm5zIG5vIGRhdGFcbiAgd2hlbiB5b3UgdGhpbmsgaXQgc2hvdWxkOlxuICAqIFRyeSByZXZpc2luZyB0aGUgcmVxdWVzdCAoZS5nLiwgYSBkaWZmZXJlbnQgdGltZSByYW5nZSkuXG4gICogVGhlIGxpc3Qgb2Ygc3RhdGlvbnMgb2ZmZXJpbmcgdGhpcyBkYXRhIG1heSBiZSBpbmNvcnJlY3QuXG4gICogU29tZXRpbWVzIGEgc3RhdGlvbiBvciB0aGUgZW50aXJlIGRhdGEgc2VydmljZSBpcyB1bmF2YWlsYWJsZS5cbiAgICBXYWl0IGEgd2hpbGUgYW5kIHRyeSBhZ2Fpbi5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb25JRCAoU3RhdGlvbiBJRClcbnN0YXRpb25OYW1lIChTdGF0aW9uIE5hbWUpXG5zdGF0ZVxuZGF0ZUVzdGFibGlzaGVkIChEYXRlIEVzdGFibGlzaGVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2hlZklEIChTSEVGIElEKVxuZGVwbG95bWVudCAoRGVwbG95bWVudCBEZXNpZ25hdGlvbilcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGNwIChEYXRhIENvbGxlY3Rpb24gUGxhdGZvcm0pXG4uLi4gKDUgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm9zQ29vcHNNQ19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zQ29vcHNNQ19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub3NDb29wc01DL2luZGV4Lmpzb24iLCAiaHR0cDovL3RpZGVzYW5kY3VycmVudHMubm9hYS5nb3YvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc0Nvb3BzTUMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPW5vc0Nvb3BzTUMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOT1MgQ08tT1BTIiwgIm5vc0Nvb3BzTUMiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNNUkYuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzTVJGIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzTVJGLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PUyBDTy1PUFMgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUmFpbiBGYWxsLCA2LU1pbnV0ZSIsICJUaGlzIGRhdGFzZXQgaGFzIFJhaW4gRmFsbCBkYXRhIGZyb20gTk9BQSBOT1MgQ2VudGVyIGZvciBPcGVyYXRpb25hbFxuT2NlYW5vZ3JhcGhpYyBQcm9kdWN0cyBhbmQgU2VydmljZXMgKENPLU9QUykuXG5cbldBUk5JTkc6IFRoZXNlIHByZWxpbWluYXJ5IGRhdGEgaGF2ZSBub3QgYmVlbiBzdWJqZWN0ZWQgdG8gdGhlIE5hdGlvbmFsIE9jZWFuXG5TZXJ2aWNlcyAoTk9TKSBRdWFsaXR5IENvbnRyb2wgcHJvY2VkdXJlcywgYW5kIGRvIG5vdCBuZWNlc3NhcmlseSBtZWV0IHRoZVxuY3JpdGVyaWEgYW5kIHN0YW5kYXJkcyBvZiBvZmZpY2lhbCBOT1MgZGF0YS4gVGhleSBhcmUgcmVsZWFzZWQgZm9yIGxpbWl0ZWRcbnB1YmxpYyB1c2Ugd2l0aCBhcHByb3ByaWF0ZSBjYXV0aW9uLlxuXG5XQVJOSU5HOlxuKiBRdWVyaWVzIGZvciBkYXRhIE1VU1QgaW5jbHVkZSBzdGF0aW9uSUQ9IGFuZCB0aW1lPj0uXG4qIFF1ZXJpZXMgVVNVQUxMWSBpbmNsdWRlIHRpbWU8PSAodGhlIGRlZmF1bHQgZW5kIHRpbWUgY29ycmVzcG9uZHMgdG8gJ25vdycpLlxuKiBRdWVyaWVzIE1VU1QgYmUgZm9yIGxlc3MgdGhhbiAzMCBkYXlzIHdvcnRoIG9mIGRhdGEuXG4qIFRoZSBkYXRhIHNvdXJjZSBpc24ndCBjb21wbGV0ZWx5IHJlbGlhYmxlLiBJZiB5b3VyIHJlcXVlc3QgcmV0dXJucyBubyBkYXRhXG4gIHdoZW4geW91IHRoaW5rIGl0IHNob3VsZDpcbiAgKiBUcnkgcmV2aXNpbmcgdGhlIHJlcXVlc3QgKGUuZy4sIGEgZGlmZmVyZW50IHRpbWUgcmFuZ2UpLlxuICAqIFRoZSBsaXN0IG9mIHN0YXRpb25zIG9mZmVyaW5nIHRoaXMgZGF0YSBtYXkgYmUgaW5jb3JyZWN0LlxuICAqIFNvbWV0aW1lcyBhIHN0YXRpb24gb3IgdGhlIGVudGlyZSBkYXRhIHNlcnZpY2UgaXMgdW5hdmFpbGFibGUuXG4gICAgV2FpdCBhIHdoaWxlIGFuZCB0cnkgYWdhaW4uXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5zdGF0aW9uSUQgKFN0YXRpb24gSUQpXG5zdGF0aW9uTmFtZSAoU3RhdGlvbiBOYW1lKVxuc3RhdGVcbmRhdGVFc3RhYmxpc2hlZCAoRGF0ZSBFc3RhYmxpc2hlZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNoZWZJRCAoU0hFRiBJRClcbmRlcGxveW1lbnQgKERlcGxveW1lbnQgRGVzaWduYXRpb24pXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRjcCAoRGF0YSBDb2xsZWN0aW9uIFBsYXRmb3JtKVxuLi4uICg0IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL25vc0Nvb3BzTVJGX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9ub3NDb29wc01SRl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub3NDb29wc01SRi9pbmRleC5qc29uIiwgImh0dHA6Ly90aWRlc2FuZGN1cnJlbnRzLm5vYWEuZ292LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9ub3NDb29wc01SRi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bm9zQ29vcHNNUkYmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOT1MgQ08tT1BTIiwgIm5vc0Nvb3BzTVJGIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzTVJILnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01SSCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01SSC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT1MgQ08tT1BTIE1ldGVvcm9sb2dpY2FsIERhdGEsIFJlbGF0aXZlIEh1bWlkaXR5LCA2LU1pbnV0ZSIsICJUaGlzIGRhdGFzZXQgaGFzIFJlbGF0aXZlIEh1bWlkaXR5IGRhdGEgZnJvbSBOT0FBIE5PUyBDZW50ZXIgZm9yIE9wZXJhdGlvbmFsXG5PY2Vhbm9ncmFwaGljIFByb2R1Y3RzIGFuZCBTZXJ2aWNlcyAoQ08tT1BTKS5cblxuV0FSTklORzogVGhlc2UgcHJlbGltaW5hcnkgZGF0YSBoYXZlIG5vdCBiZWVuIHN1YmplY3RlZCB0byB0aGUgTmF0aW9uYWwgT2NlYW5cblNlcnZpY2VzIChOT1MpIFF1YWxpdHkgQ29udHJvbCBwcm9jZWR1cmVzLCBhbmQgZG8gbm90IG5lY2Vzc2FyaWx5IG1lZXQgdGhlXG5jcml0ZXJpYSBhbmQgc3RhbmRhcmRzIG9mIG9mZmljaWFsIE5PUyBkYXRhLiBUaGV5IGFyZSByZWxlYXNlZCBmb3IgbGltaXRlZFxucHVibGljIHVzZSB3aXRoIGFwcHJvcHJpYXRlIGNhdXRpb24uXG5cbldBUk5JTkc6XG4qIFF1ZXJpZXMgZm9yIGRhdGEgTVVTVCBpbmNsdWRlIHN0YXRpb25JRD0gYW5kIHRpbWU+PS5cbiogUXVlcmllcyBVU1VBTExZIGluY2x1ZGUgdGltZTw9ICh0aGUgZGVmYXVsdCBlbmQgdGltZSBjb3JyZXNwb25kcyB0byAnbm93JykuXG4qIFF1ZXJpZXMgTVVTVCBiZSBmb3IgbGVzcyB0aGFuIDMwIGRheXMgd29ydGggb2YgZGF0YS5cbiogVGhlIGRhdGEgc291cmNlIGlzbid0IGNvbXBsZXRlbHkgcmVsaWFibGUuIElmIHlvdXIgcmVxdWVzdCByZXR1cm5zIG5vIGRhdGFcbiAgd2hlbiB5b3UgdGhpbmsgaXQgc2hvdWxkOlxuICAqIFRyeSByZXZpc2luZyB0aGUgcmVxdWVzdCAoZS5nLiwgYSBkaWZmZXJlbnQgdGltZSByYW5nZSkuXG4gICogVGhlIGxpc3Qgb2Ygc3RhdGlvbnMgb2ZmZXJpbmcgdGhpcyBkYXRhIG1heSBiZSBpbmNvcnJlY3QuXG4gICogU29tZXRpbWVzIGEgc3RhdGlvbiBvciB0aGUgZW50aXJlIGRhdGEgc2VydmljZSBpcyB1bmF2YWlsYWJsZS5cbiAgICBXYWl0IGEgd2hpbGUgYW5kIHRyeSBhZ2Fpbi5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb25JRCAoU3RhdGlvbiBJRClcbnN0YXRpb25OYW1lIChTdGF0aW9uIE5hbWUpXG5zdGF0ZVxuZGF0ZUVzdGFibGlzaGVkIChEYXRlIEVzdGFibGlzaGVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2hlZklEIChTSEVGIElEKVxuZGVwbG95bWVudCAoRGVwbG95bWVudCBEZXNpZ25hdGlvbilcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGNwIChEYXRhIENvbGxlY3Rpb24gUGxhdGZvcm0pXG4uLi4gKDUgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm9zQ29vcHNNUkhfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc0Nvb3BzTVJIX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL25vc0Nvb3BzTVJIL2luZGV4Lmpzb24iLCAiaHR0cDovL3RpZGVzYW5kY3VycmVudHMubm9hYS5nb3YvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc0Nvb3BzTVJILnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NDb29wc01SSCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyBDTy1PUFMiLCAibm9zQ29vcHNNUkgiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNNVi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNNViIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01WLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PUyBDTy1PUFMgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgVmlzaWJpbGl0eSwgNi1NaW51dGUiLCAiVGhpcyBkYXRhc2V0IGhhcyBWaXNpYmlsaXR5IGRhdGEgZnJvbSBOT0FBIE5PUyBDZW50ZXIgZm9yIE9wZXJhdGlvbmFsXG5PY2Vhbm9ncmFwaGljIFByb2R1Y3RzIGFuZCBTZXJ2aWNlcyAoQ08tT1BTKS5cblxuV0FSTklORzogVGhlc2UgcHJlbGltaW5hcnkgZGF0YSBoYXZlIG5vdCBiZWVuIHN1YmplY3RlZCB0byB0aGUgTmF0aW9uYWwgT2NlYW5cblNlcnZpY2VzIChOT1MpIFF1YWxpdHkgQ29udHJvbCBwcm9jZWR1cmVzLCBhbmQgZG8gbm90IG5lY2Vzc2FyaWx5IG1lZXQgdGhlXG5jcml0ZXJpYSBhbmQgc3RhbmRhcmRzIG9mIG9mZmljaWFsIE5PUyBkYXRhLiBUaGV5IGFyZSByZWxlYXNlZCBmb3IgbGltaXRlZFxucHVibGljIHVzZSB3aXRoIGFwcHJvcHJpYXRlIGNhdXRpb24uXG5cbldBUk5JTkc6XG4qIFF1ZXJpZXMgZm9yIGRhdGEgTVVTVCBpbmNsdWRlIHN0YXRpb25JRD0gYW5kIHRpbWU+PS5cbiogUXVlcmllcyBVU1VBTExZIGluY2x1ZGUgdGltZTw9ICh0aGUgZGVmYXVsdCBlbmQgdGltZSBjb3JyZXNwb25kcyB0byAnbm93JykuXG4qIFF1ZXJpZXMgTVVTVCBiZSBmb3IgbGVzcyB0aGFuIDMwIGRheXMgd29ydGggb2YgZGF0YS5cbiogVGhlIGRhdGEgc291cmNlIGlzbid0IGNvbXBsZXRlbHkgcmVsaWFibGUuIElmIHlvdXIgcmVxdWVzdCByZXR1cm5zIG5vIGRhdGFcbiAgd2hlbiB5b3UgdGhpbmsgaXQgc2hvdWxkOlxuICAqIFRyeSByZXZpc2luZyB0aGUgcmVxdWVzdCAoZS5nLiwgYSBkaWZmZXJlbnQgdGltZSByYW5nZSkuXG4gICogVGhlIGxpc3Qgb2Ygc3RhdGlvbnMgb2ZmZXJpbmcgdGhpcyBkYXRhIG1heSBiZSBpbmNvcnJlY3QuXG4gICogU29tZXRpbWVzIGEgc3RhdGlvbiBvciB0aGUgZW50aXJlIGRhdGEgc2VydmljZSBpcyB1bmF2YWlsYWJsZS5cbiAgICBXYWl0IGEgd2hpbGUgYW5kIHRyeSBhZ2Fpbi5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb25JRCAoU3RhdGlvbiBJRClcbnN0YXRpb25OYW1lIChTdGF0aW9uIE5hbWUpXG5zdGF0ZVxuZGF0ZUVzdGFibGlzaGVkIChEYXRlIEVzdGFibGlzaGVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2hlZklEIChTSEVGIElEKVxuZGVwbG95bWVudCAoRGVwbG95bWVudCBEZXNpZ25hdGlvbilcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuVmlzIChWaXNpYmlsaXR5IGluIEFpciwgbmF1dGljYWxfbWlsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm9zQ29vcHNNVl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zQ29vcHNNVl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub3NDb29wc01WL2luZGV4Lmpzb24iLCAiaHR0cDovL3RpZGVzYW5kY3VycmVudHMubm9hYS5nb3YvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc0Nvb3BzTVYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPW5vc0Nvb3BzTVYmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOT1MgQ08tT1BTIiwgIm5vc0Nvb3BzTVYiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNNV1Quc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzTVdUIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzTVdULmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PUyBDTy1PUFMgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgV2F0ZXIgVGVtcGVyYXR1cmUsIDYtTWludXRlIiwgIlRoaXMgZGF0YXNldCBoYXMgV2F0ZXIgVGVtcGVyYXR1cmUgZGF0YSBmcm9tIE5PQUEgTk9TIENlbnRlciBmb3IgT3BlcmF0aW9uYWxcbk9jZWFub2dyYXBoaWMgUHJvZHVjdHMgYW5kIFNlcnZpY2VzIChDTy1PUFMpLlxuXG5XQVJOSU5HOiBUaGVzZSBwcmVsaW1pbmFyeSBkYXRhIGhhdmUgbm90IGJlZW4gc3ViamVjdGVkIHRvIHRoZSBOYXRpb25hbCBPY2VhblxuU2VydmljZXMgKE5PUykgUXVhbGl0eSBDb250cm9sIHByb2NlZHVyZXMsIGFuZCBkbyBub3QgbmVjZXNzYXJpbHkgbWVldCB0aGVcbmNyaXRlcmlhIGFuZCBzdGFuZGFyZHMgb2Ygb2ZmaWNpYWwgTk9TIGRhdGEuIFRoZXkgYXJlIHJlbGVhc2VkIGZvciBsaW1pdGVkXG5wdWJsaWMgdXNlIHdpdGggYXBwcm9wcmlhdGUgY2F1dGlvbi5cblxuV0FSTklORzpcbiogUXVlcmllcyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgc3RhdGlvbklEPSBhbmQgdGltZT49LlxuKiBRdWVyaWVzIFVTVUFMTFkgaW5jbHVkZSB0aW1lPD0gKHRoZSBkZWZhdWx0IGVuZCB0aW1lIGNvcnJlc3BvbmRzIHRvICdub3cnKS5cbiogUXVlcmllcyBNVVNUIGJlIGZvciBsZXNzIHRoYW4gMzAgZGF5cyB3b3J0aCBvZiBkYXRhLlxuKiBUaGUgZGF0YSBzb3VyY2UgaXNuJ3QgY29tcGxldGVseSByZWxpYWJsZS4gSWYgeW91ciByZXF1ZXN0IHJldHVybnMgbm8gZGF0YVxuICB3aGVuIHlvdSB0aGluayBpdCBzaG91bGQ6XG4gICogVHJ5IHJldmlzaW5nIHRoZSByZXF1ZXN0IChlLmcuLCBhIGRpZmZlcmVudCB0aW1lIHJhbmdlKS5cbiAgKiBUaGUgbGlzdCBvZiBzdGF0aW9ucyBvZmZlcmluZyB0aGlzIGRhdGEgbWF5IGJlIGluY29ycmVjdC5cbiAgKiBTb21ldGltZXMgYSBzdGF0aW9uIG9yIHRoZSBlbnRpcmUgZGF0YSBzZXJ2aWNlIGlzIHVuYXZhaWxhYmxlLlxuICAgIFdhaXQgYSB3aGlsZSBhbmQgdHJ5IGFnYWluLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvbklEIChTdGF0aW9uIElEKVxuc3RhdGlvbk5hbWUgKFN0YXRpb24gTmFtZSlcbnN0YXRlXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaGVmSUQgKFNIRUYgSUQpXG5kZXBsb3ltZW50IChEZXBsb3ltZW50IERlc2lnbmF0aW9uKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kY3AgKERhdGEgQ29sbGVjdGlvbiBQbGF0Zm9ybSlcbi4uLiAoNSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NDb29wc01XVF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zQ29vcHNNV1RfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm9zQ29vcHNNV1QvaW5kZXguanNvbiIsICJodHRwOi8vdGlkZXNhbmRjdXJyZW50cy5ub2FhLmdvdi8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm9zQ29vcHNNV1QucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPW5vc0Nvb3BzTVdUJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk9TIENPLU9QUyIsICJub3NDb29wc01XVCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01XLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01XIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzTVcuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9TIENPLU9QUyBNZXRlb3JvbG9naWNhbCBEYXRhLCBXaW5kLCA2LU1pbnV0ZSIsICJUaGlzIGRhdGFzZXQgaGFzIFdpbmQgZGF0YSBmcm9tIE5PQUEgTk9TIENlbnRlciBmb3IgT3BlcmF0aW9uYWwgT2NlYW5vZ3JhcGhpY1xuUHJvZHVjdHMgYW5kIFNlcnZpY2VzIChDTy1PUFMpLlxuXG5XQVJOSU5HOiBUaGVzZSBwcmVsaW1pbmFyeSBkYXRhIGhhdmUgbm90IGJlZW4gc3ViamVjdGVkIHRvIHRoZSBOYXRpb25hbCBPY2VhblxuU2VydmljZXMgKE5PUykgUXVhbGl0eSBDb250cm9sIHByb2NlZHVyZXMsIGFuZCBkbyBub3QgbmVjZXNzYXJpbHkgbWVldCB0aGVcbmNyaXRlcmlhIGFuZCBzdGFuZGFyZHMgb2Ygb2ZmaWNpYWwgTk9TIGRhdGEuIFRoZXkgYXJlIHJlbGVhc2VkIGZvciBsaW1pdGVkXG5wdWJsaWMgdXNlIHdpdGggYXBwcm9wcmlhdGUgY2F1dGlvbi5cblxuV0FSTklORzpcbiogUXVlcmllcyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgc3RhdGlvbklEPSBhbmQgdGltZT49LlxuKiBRdWVyaWVzIFVTVUFMTFkgaW5jbHVkZSB0aW1lPD0gKHRoZSBkZWZhdWx0IGVuZCB0aW1lIGNvcnJlc3BvbmRzIHRvICdub3cnKS5cbiogUXVlcmllcyBNVVNUIGJlIGZvciBsZXNzIHRoYW4gMzAgZGF5cyB3b3J0aCBvZiBkYXRhLlxuKiBUaGUgZGF0YSBzb3VyY2UgaXNuJ3QgY29tcGxldGVseSByZWxpYWJsZS4gSWYgeW91ciByZXF1ZXN0IHJldHVybnMgbm8gZGF0YVxuICB3aGVuIHlvdSB0aGluayBpdCBzaG91bGQ6XG4gICogVHJ5IHJldmlzaW5nIHRoZSByZXF1ZXN0IChlLmcuLCBhIGRpZmZlcmVudCB0aW1lIHJhbmdlKS5cbiAgKiBUaGUgbGlzdCBvZiBzdGF0aW9ucyBvZmZlcmluZyB0aGlzIGRhdGEgbWF5IGJlIGluY29ycmVjdC5cbiAgKiBTb21ldGltZXMgYSBzdGF0aW9uIG9yIHRoZSBlbnRpcmUgZGF0YSBzZXJ2aWNlIGlzIHVuYXZhaWxhYmxlLlxuICAgIFdhaXQgYSB3aGlsZSBhbmQgdHJ5IGFnYWluLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvbklEIChTdGF0aW9uIElEKVxuc3RhdGlvbk5hbWUgKFN0YXRpb24gTmFtZSlcbnN0YXRlXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaGVmSUQgKFNIRUYgSUQpXG5kZXBsb3ltZW50IChEZXBsb3ltZW50IERlc2lnbmF0aW9uKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kY3AgKERhdGEgQ29sbGVjdGlvbiBQbGF0Zm9ybSlcbi4uLiAoNiBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NDb29wc01XX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9ub3NDb29wc01XX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL25vc0Nvb3BzTVcvaW5kZXguanNvbiIsICJodHRwOi8vdGlkZXNhbmRjdXJyZW50cy5ub2FhLmdvdi8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm9zQ29vcHNNVy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bm9zQ29vcHNNVyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyBDTy1PUFMiLCAibm9zQ29vcHNNVyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc1dMVFBITC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFRQSEwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFRQSEwuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9TIENPLU9QUyBXYXRlciBMZXZlbCBEYXRhLCBIaWdoIExvdyBUaWRlIFByZWRpY3Rpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBIaWdoIExvdyBUaWRlIFByZWRpY3Rpb25zIGZyb20gTk9BQSBOT1MgQ2VudGVyIGZvciBPcGVyYXRpb25hbFxuT2NlYW5vZ3JhcGhpYyBQcm9kdWN0cyBhbmQgU2VydmljZXMgKENPLU9QUykuXG5cblRoZSBvZmZpY2lhbCBUaWRlIGFuZCBUaWRhbCBDdXJyZW50IHByZWRpY3Rpb24gdGFibGVzIGFyZSBwdWJsaXNoZWQgYW5udWFsbHkgb25cbk9jdG9iZXIgMSwgZm9yIHRoZSBmb2xsb3dpbmcgY2FsZW5kYXIgeWVhci4gVGlkZSBhbmQgVGlkYWwgQ3VycmVudCBwcmVkaWN0aW9uc1xuZ2VuZXJhdGVkIHByaW9yIHRvIHRoZSBwdWJsaXNoaW5nIGRhdGUgb2YgdGhlIG9mZmljaWFsIHRhYmxlcyBhcmUgc3ViamVjdCB0b1xuY2hhbmdlLiBUaGUgZW5jbG9zZWQgZGF0YSBhcmUgYmFzZWQgdXBvbiB0aGUgbGF0ZXN0IGluZm9ybWF0aW9uIGF2YWlsYWJsZSBhcyBvZlxudGhlIGRhdGUgb2YgeW91ciByZXF1ZXN0LiBUaWRlIGFuZCBUaWRhbCBDdXJyZW50IHByZWRpY3Rpb25zIGdlbmVyYXRlZCBtYXlcbmRpZmZlciBmcm9tIHRoZSBvZmZpY2lhbCBwcmVkaWN0aW9ucyBpZiBpbmZvcm1hdGlvbiBmb3IgdGhlIHN0YXRpb24gcmVxdWVzdGVkXG5oYXMgYmVlbiB1cGRhdGVkIHNpbmNlIHRoZSBwdWJsaXNoaW5nIGRhdGUgb2YgdGhlIG9mZmljaWFsIHRhYmxlcy5cblxuV0FSTklORzpcbiogUXVlcmllcyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgc3RhdGlvbklEPSwgdGltZT49IGFuZCB0aW1lPD0uXG4gIFF1ZXJpZXMgTVVTVCBiZSBmb3IgbGVzcyB0aGFuIDMwIGRheXMgd29ydGggb2YgZGF0YS5cbiogVGhpcyBkYXRhc2V0IG9ubHkgcmV0dXJucyBkYXRhIGZvciB0aGUgTUxMVyAoTWVhbiBMb3dlci1Mb3cgV2F0ZXIpIGRhdHVtLlxuKiBUaGUgZGF0YSBzb3VyY2UgaXNuJ3QgY29tcGxldGVseSByZWxpYWJsZS4gSWYgeW91ciByZXF1ZXN0IHJldHVybnMgbm8gZGF0YVxuICB3aGVuIHlvdSB0aGluayBpdCBzaG91bGQ6XG4gICogVHJ5IHJldmlzaW5nIHRoZSByZXF1ZXN0IChlLmcuLCBhIGRpZmZlcmVudCB0aW1lIHJhbmdlKS5cbiAgKiBUaGUgbGlzdCBvZiBzdGF0aW9ucyBvZmZlcmluZyB0aGlzIGRhdGEgbWF5IGJlIGluY29ycmVjdC5cbiAgKiBTb21ldGltZXMgYSBzdGF0aW9uIG9yIHRoZSBlbnRpcmUgZGF0YSBzZXJ2aWNlIGlzIHVuYXZhaWxhYmxlLlxuICAgIFdhaXQgYSB3aGlsZSBhbmQgdHJ5IGFnYWluLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvbklEIChTdGF0aW9uIElEKVxuc3RhdGlvbk5hbWUgKFN0YXRpb24gTmFtZSlcbnN0YXRlXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaGVmSUQgKFNIRUYgSUQpXG5kZXBsb3ltZW50IChEZXBsb3ltZW50IERlc2lnbmF0aW9uKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDUgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm9zQ29vcHNXTFRQSExfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc0Nvb3BzV0xUUEhMX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL25vc0Nvb3BzV0xUUEhML2luZGV4Lmpzb24iLCAiaHR0cDovL3RpZGVzYW5kY3VycmVudHMubm9hYS5nb3YvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc0Nvb3BzV0xUUEhMLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NDb29wc1dMVFBITCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyBDTy1PUFMiLCAibm9zQ29vcHNXTFRQSEwiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFIxLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc1dMUjEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFIxLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PUyBDTy1PUFMgV2F0ZXIgTGV2ZWwgRGF0YSwgUHJlbGltaW5hcnksIDEtTWludXRlIiwgIlRoaXMgZGF0YXNldCBoYXMgcmVjZW50LCBwcmVsaW1pbmFyeSAobm90IHF1YWxpdHktY29udHJvbGxlZCksIDEtbWludXRlLCB3YXRlciBsZXZlbFxuKHRpZGUpIGRhdGEgZnJvbSBOT0FBIE5PUyBDZW50ZXIgZm9yIE9wZXJhdGlvbmFsIE9jZWFub2dyYXBoaWMgUHJvZHVjdHMgYW5kIFNlcnZpY2VzXG4oQ08tT1BTKS5cblxuV0FSTklORzogVGhlc2UgcmF3IGRhdGEgaGF2ZSBub3QgYmVlbiBzdWJqZWN0ZWQgdG8gdGhlIE5hdGlvbmFsIE9jZWFuIFNlcnZpY2Unc1xucXVhbGl0eSBjb250cm9sIG9yIHF1YWxpdHkgYXNzdXJhbmNlIHByb2NlZHVyZXMgYW5kIGRvIG5vdCBtZWV0IHRoZSBjcml0ZXJpYSBhbmRcbnN0YW5kYXJkcyBvZiBvZmZpY2lhbCBOYXRpb25hbCBPY2VhbiBTZXJ2aWNlIGRhdGEuIFRoZXkgYXJlIHJlbGVhc2VkIGZvciBsaW1pdGVkXG5wdWJsaWMgdXNlIGFzIHByZWxpbWluYXJ5IGRhdGEgdG8gYmUgdXNlZCBvbmx5IHdpdGggYXBwcm9wcmlhdGUgY2F1dGlvbi5cblxuV0FSTklORzpcbiogUXVlcmllcyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgc3RhdGlvbklEPSwgZGF0dW09LCBhbmQgdGltZT49LlxuKiBRdWVyaWVzIGZvciBkYXRhIFVTVUFMTFkgaW5jbHVkZSB0aW1lPD0uXG4qIFF1ZXJpZXMgTVVTVCBiZSBmb3IgbGVzcyB0aGFuIDMwIGRheXMgd29ydGggb2YgZGF0YS5cbiAgVGhlIGRlZmF1bHQgdGltZTw9IHZhbHVlIGNvcnJlc3BvbmRzIHRvICdub3cnLlxuKiBEaWZmZXJlbnQgc3RhdGlvbnMgc3VwcG9ydCBkaWZmZXJlbnQgZGF0dW1zLlxuICBVc2UgRVJEREFQJ3MgU3Vic2V0IHdlYiBwYWdlIHRvIGZpbmQgb3V0IHdoaWNoIGRhdHVtcyBhIGdpdmVuIHN0YXRpb24gc3VwcG9ydHMuXG4qIFRoZSBkYXRhIHNvdXJjZSBpc24ndCBjb21wbGV0ZWx5IHJlbGlhYmxlLiBJZiB5b3VyIHJlcXVlc3QgcmV0dXJucyBubyBkYXRhXG4gIHdoZW4geW91IHRoaW5rIGl0IHNob3VsZDpcbiAgKiBNYWtlIHN1cmUgdGhlIHN0YXRpb24geW91IHNwZWNpZmllZCBzdXBwb3J0cyB0aGUgZGF0dW0geW91IHNwZWNpZmllZC5cbiAgKiBUcnkgcmV2aXNpbmcgdGhlIHJlcXVlc3QgKGUuZy4sIGEgZGlmZmVyZW50IGRhdHVtIG9yIGEgZGlmZmVyZW50IHRpbWUgcmFuZ2UpLlxuICAqIFRoZSBsaXN0IG9mIHN0YXRpb25zIG9mZmVyaW5nIHRoaXMgZGF0YSAob3IgdGhlIGxpc3Qgb2YgZGF0dW1zKSBtYXkgYmUgaW5jb3JyZWN0LlxuICAqIFNvbWV0aW1lcyBhIHN0YXRpb24gb3IgdGhlIGVudGlyZSBkYXRhIHNlcnZpY2UgaXMgdW5hdmFpbGFibGUuXG4gICAgV2FpdCBhIHdoaWxlIGFuZCB0cnkgYWdhaW4uXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5zdGF0aW9uSUQgKFN0YXRpb24gSUQpXG5zdGF0aW9uTmFtZSAoU3RhdGlvbiBOYW1lKVxuc3RhdGVcbmRhdGVFc3RhYmxpc2hlZCAoRGF0ZSBFc3RhYmxpc2hlZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNoZWZJRCAoU0hFRiBJRClcbi4uLiAoOCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NDb29wc1dMUjFfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc0Nvb3BzV0xSMV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub3NDb29wc1dMUjEvaW5kZXguanNvbiIsICJodHRwOi8vdGlkZXNhbmRjdXJyZW50cy5ub2FhLmdvdi8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm9zQ29vcHNXTFIxLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NDb29wc1dMUjEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOT1MgQ08tT1BTIiwgIm5vc0Nvb3BzV0xSMSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc1dMUjYuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzV0xSNiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc1dMUjYuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9TIENPLU9QUyBXYXRlciBMZXZlbCBEYXRhLCBQcmVsaW1pbmFyeSwgNi1NaW51dGUiLCAiVGhpcyBkYXRhc2V0IGhhcyByZWNlbnQsIHByZWxpbWluYXJ5IChub3QgcXVhbGl0eS1jb250cm9sbGVkKSwgNi1taW51dGUsIHdhdGVyIGxldmVsXG4odGlkZSkgZGF0YSBmcm9tIE5PQUEgTk9TIENlbnRlciBmb3IgT3BlcmF0aW9uYWwgT2NlYW5vZ3JhcGhpYyBQcm9kdWN0cyBhbmQgU2VydmljZXNcbihDTy1PUFMpLlxuXG5XQVJOSU5HOiBUaGVzZSByYXcgZGF0YSBoYXZlIG5vdCBiZWVuIHN1YmplY3RlZCB0byB0aGUgTmF0aW9uYWwgT2NlYW4gU2VydmljZSdzXG5xdWFsaXR5IGNvbnRyb2wgb3IgcXVhbGl0eSBhc3N1cmFuY2UgcHJvY2VkdXJlcyBhbmQgZG8gbm90IG1lZXQgdGhlIGNyaXRlcmlhIGFuZFxuc3RhbmRhcmRzIG9mIG9mZmljaWFsIE5hdGlvbmFsIE9jZWFuIFNlcnZpY2UgZGF0YS4gVGhleSBhcmUgcmVsZWFzZWQgZm9yIGxpbWl0ZWRcbnB1YmxpYyB1c2UgYXMgcHJlbGltaW5hcnkgZGF0YSB0byBiZSB1c2VkIG9ubHkgd2l0aCBhcHByb3ByaWF0ZSBjYXV0aW9uLlxuXG5XQVJOSU5HOlxuKiBRdWVyaWVzIGZvciBkYXRhIE1VU1QgaW5jbHVkZSBzdGF0aW9uSUQ9LCBkYXR1bT0sIHRpbWU+PS5cbiogUXVlcmllcyBmb3IgZGF0YSBVU1VBTExZIGluY2x1ZGUgdGltZTw9LlxuKiBRdWVyaWVzIE1VU1QgYmUgZm9yIGxlc3MgdGhhbiAzMCBkYXlzIHdvcnRoIG9mIGRhdGEuXG4gIFRoZSBkZWZhdWx0IHRpbWU8PSB2YWx1ZSBjb3JyZXNwb25kcyB0byAnbm93Jy5cbiogRGlmZmVyZW50IHN0YXRpb25zIHN1cHBvcnQgZGlmZmVyZW50IGRhdHVtcy5cbiAgVXNlIEVSRERBUCdzIFN1YnNldCB3ZWIgcGFnZSB0byBmaW5kIG91dCB3aGljaCBkYXR1bXMgYSBnaXZlbiBzdGF0aW9uIHN1cHBvcnRzLlxuKiBUaGUgZGF0YSBzb3VyY2UgaXNuJ3QgY29tcGxldGVseSByZWxpYWJsZS4gSWYgeW91ciByZXF1ZXN0IHJldHVybnMgbm8gZGF0YVxuICB3aGVuIHlvdSB0aGluayBpdCBzaG91bGQ6XG4gICogTWFrZSBzdXJlIHRoZSBzdGF0aW9uIHlvdSBzcGVjaWZpZWQgc3VwcG9ydHMgdGhlIGRhdHVtIHlvdSBzcGVjaWZpZWQuXG4gICogVHJ5IHJldmlzaW5nIHRoZSByZXF1ZXN0IChlLmcuLCBhIGRpZmZlcmVudCBkYXR1bSBvciBhIGRpZmZlcmVudCB0aW1lIHJhbmdlKS5cbiAgKiBUaGUgbGlzdCBvZiBzdGF0aW9ucyBvZmZlcmluZyB0aGlzIGRhdGEgKG9yIHRoZSBsaXN0IG9mIGRhdHVtcykgbWF5IGJlIGluY29ycmVjdC5cbiAgKiBTb21ldGltZXMgYSBzdGF0aW9uIG9yIHRoZSBlbnRpcmUgZGF0YSBzZXJ2aWNlIGlzIHVuYXZhaWxhYmxlLlxuICAgIFdhaXQgYSB3aGlsZSBhbmQgdHJ5IGFnYWluLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvbklEIChTdGF0aW9uIElEKVxuc3RhdGlvbk5hbWUgKFN0YXRpb24gTmFtZSlcbnN0YXRlXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaGVmSUQgKFNIRUYgSUQpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL25vc0Nvb3BzV0xSNl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zQ29vcHNXTFI2X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL25vc0Nvb3BzV0xSNi9pbmRleC5qc29uIiwgImh0dHA6Ly90aWRlc2FuZGN1cnJlbnRzLm5vYWEuZ292LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9ub3NDb29wc1dMUjYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPW5vc0Nvb3BzV0xSNiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyBDTy1PUFMiLCAibm9zQ29vcHNXTFI2Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzV0xUUDYuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzV0xUUDYiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFRQNi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT1MgQ08tT1BTIFdhdGVyIExldmVsIERhdGEsIFRpZGUgUHJlZGljdGlvbiwgNi1NaW51dGUiLCAiVGhpcyBkYXRhc2V0IGhhcyBIaWdoIExvdyBUaWRlIFByZWRpY3Rpb25zIGZyb20gTk9BQSBOT1MgQ2VudGVyIGZvciBPcGVyYXRpb25hbFxuT2NlYW5vZ3JhcGhpYyBQcm9kdWN0cyBhbmQgU2VydmljZXMgKENPLU9QUykuXG5cblRoZSBvZmZpY2lhbCBUaWRlIGFuZCBUaWRhbCBDdXJyZW50IHByZWRpY3Rpb24gdGFibGVzIGFyZSBwdWJsaXNoZWQgYW5udWFsbHkgb25cbk9jdG9iZXIgMSwgZm9yIHRoZSBmb2xsb3dpbmcgY2FsZW5kYXIgeWVhci4gVGlkZSBhbmQgVGlkYWwgQ3VycmVudCBwcmVkaWN0aW9uc1xuZ2VuZXJhdGVkIHByaW9yIHRvIHRoZSBwdWJsaXNoaW5nIGRhdGUgb2YgdGhlIG9mZmljaWFsIHRhYmxlcyBhcmUgc3ViamVjdCB0b1xuY2hhbmdlLiBUaGUgZW5jbG9zZWQgZGF0YSBhcmUgYmFzZWQgdXBvbiB0aGUgbGF0ZXN0IGluZm9ybWF0aW9uIGF2YWlsYWJsZSBhcyBvZlxudGhlIGRhdGUgb2YgeW91ciByZXF1ZXN0LiBUaWRlIGFuZCBUaWRhbCBDdXJyZW50IHByZWRpY3Rpb25zIGdlbmVyYXRlZCBtYXlcbmRpZmZlciBmcm9tIHRoZSBvZmZpY2lhbCBwcmVkaWN0aW9ucyBpZiBpbmZvcm1hdGlvbiBmb3IgdGhlIHN0YXRpb24gcmVxdWVzdGVkXG5oYXMgYmVlbiB1cGRhdGVkIHNpbmNlIHRoZSBwdWJsaXNoaW5nIGRhdGUgb2YgdGhlIG9mZmljaWFsIHRhYmxlcy5cblxuV0FSTklORzpcbiogUXVlcmllcyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgc3RhdGlvbklEPSwgdGltZT49IGFuZCB0aW1lPD0uXG4gIFF1ZXJpZXMgTVVTVCBiZSBmb3IgbGVzcyB0aGFuIDMwIGRheXMgd29ydGggb2YgZGF0YS5cbiogVGhpcyBkYXRhc2V0IG9ubHkgcmV0dXJucyBkYXRhIGZvciB0aGUgTUxMVyAoTWVhbiBMb3dlci1Mb3cgV2F0ZXIpIGRhdHVtLlxuKiBUaGUgZGF0YSBzb3VyY2UgaXNuJ3QgY29tcGxldGVseSByZWxpYWJsZS4gSWYgeW91ciByZXF1ZXN0IHJldHVybnMgbm8gZGF0YVxuICB3aGVuIHlvdSB0aGluayBpdCBzaG91bGQ6XG4gICogVHJ5IHJldmlzaW5nIHRoZSByZXF1ZXN0IChlLmcuLCBhIGRpZmZlcmVudCB0aW1lIHJhbmdlKS5cbiAgKiBUaGUgbGlzdCBvZiBzdGF0aW9ucyBvZmZlcmluZyB0aGlzIGRhdGEgbWF5IGJlIGluY29ycmVjdC5cbiAgKiBTb21ldGltZXMgYSBzdGF0aW9uIG9yIHRoZSBlbnRpcmUgZGF0YSBzZXJ2aWNlIGlzIHVuYXZhaWxhYmxlLlxuICAgIFdhaXQgYSB3aGlsZSBhbmQgdHJ5IGFnYWluLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvbklEIChTdGF0aW9uIElEKVxuc3RhdGlvbk5hbWUgKFN0YXRpb24gTmFtZSlcbnN0YXRlXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaGVmSUQgKFNIRUYgSUQpXG5kZXBsb3ltZW50IChEZXBsb3ltZW50IERlc2lnbmF0aW9uKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDQgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm9zQ29vcHNXTFRQNl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zQ29vcHNXTFRQNl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub3NDb29wc1dMVFA2L2luZGV4Lmpzb24iLCAiaHR0cDovL3RpZGVzYW5kY3VycmVudHMubm9hYS5nb3YvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc0Nvb3BzV0xUUDYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPW5vc0Nvb3BzV0xUUDYmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOT1MgQ08tT1BTIiwgIm5vc0Nvb3BzV0xUUDYiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFRQNjAuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzV0xUUDYwIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzV0xUUDYwLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PUyBDTy1PUFMgV2F0ZXIgTGV2ZWwgRGF0YSwgVGlkZSBQcmVkaWN0aW9uLCA2MC1NaW51dGUiLCAiVGhpcyBkYXRhc2V0IGhhcyBIaWdoIExvdyBUaWRlIFByZWRpY3Rpb25zIGZyb20gTk9BQSBOT1MgQ2VudGVyIGZvciBPcGVyYXRpb25hbFxuT2NlYW5vZ3JhcGhpYyBQcm9kdWN0cyBhbmQgU2VydmljZXMgKENPLU9QUykuXG5cblRoZSBvZmZpY2lhbCBUaWRlIGFuZCBUaWRhbCBDdXJyZW50IHByZWRpY3Rpb24gdGFibGVzIGFyZSBwdWJsaXNoZWQgYW5udWFsbHkgb25cbk9jdG9iZXIgMSwgZm9yIHRoZSBmb2xsb3dpbmcgY2FsZW5kYXIgeWVhci4gVGlkZSBhbmQgVGlkYWwgQ3VycmVudCBwcmVkaWN0aW9uc1xuZ2VuZXJhdGVkIHByaW9yIHRvIHRoZSBwdWJsaXNoaW5nIGRhdGUgb2YgdGhlIG9mZmljaWFsIHRhYmxlcyBhcmUgc3ViamVjdCB0b1xuY2hhbmdlLiBUaGUgZW5jbG9zZWQgZGF0YSBhcmUgYmFzZWQgdXBvbiB0aGUgbGF0ZXN0IGluZm9ybWF0aW9uIGF2YWlsYWJsZSBhcyBvZlxudGhlIGRhdGUgb2YgeW91ciByZXF1ZXN0LiBUaWRlIGFuZCBUaWRhbCBDdXJyZW50IHByZWRpY3Rpb25zIGdlbmVyYXRlZCBtYXlcbmRpZmZlciBmcm9tIHRoZSBvZmZpY2lhbCBwcmVkaWN0aW9ucyBpZiBpbmZvcm1hdGlvbiBmb3IgdGhlIHN0YXRpb24gcmVxdWVzdGVkXG5oYXMgYmVlbiB1cGRhdGVkIHNpbmNlIHRoZSBwdWJsaXNoaW5nIGRhdGUgb2YgdGhlIG9mZmljaWFsIHRhYmxlcy5cblxuV0FSTklORzpcbiogUXVlcmllcyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgc3RhdGlvbklEPSwgdGltZT49IGFuZCB0aW1lPD0uXG4gIFF1ZXJpZXMgTVVTVCBiZSBmb3IgbGVzcyB0aGFuIDMwIGRheXMgd29ydGggb2YgZGF0YS5cbiogVGhpcyBkYXRhc2V0IG9ubHkgcmV0dXJucyBkYXRhIGZvciB0aGUgTUxMVyAoTWVhbiBMb3dlci1Mb3cgV2F0ZXIpIGRhdHVtLlxuKiBUaGUgZGF0YSBzb3VyY2UgaXNuJ3QgY29tcGxldGVseSByZWxpYWJsZS4gSWYgeW91ciByZXF1ZXN0IHJldHVybnMgbm8gZGF0YVxuICB3aGVuIHlvdSB0aGluayBpdCBzaG91bGQ6XG4gICogVHJ5IHJldmlzaW5nIHRoZSByZXF1ZXN0IChlLmcuLCBhIGRpZmZlcmVudCB0aW1lIHJhbmdlKS5cbiAgKiBUaGUgbGlzdCBvZiBzdGF0aW9ucyBvZmZlcmluZyB0aGlzIGRhdGEgbWF5IGJlIGluY29ycmVjdC5cbiAgKiBTb21ldGltZXMgYSBzdGF0aW9uIG9yIHRoZSBlbnRpcmUgZGF0YSBzZXJ2aWNlIGlzIHVuYXZhaWxhYmxlLlxuICAgIFdhaXQgYSB3aGlsZSBhbmQgdHJ5IGFnYWluLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvbklEIChTdGF0aW9uIElEKVxuc3RhdGlvbk5hbWUgKFN0YXRpb24gTmFtZSlcbnN0YXRlXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaGVmSUQgKFNIRUYgSUQpXG5kZXBsb3ltZW50IChEZXBsb3ltZW50IERlc2lnbmF0aW9uKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDQgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm9zQ29vcHNXTFRQNjBfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc0Nvb3BzV0xUUDYwX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL25vc0Nvb3BzV0xUUDYwL2luZGV4Lmpzb24iLCAiaHR0cDovL3RpZGVzYW5kY3VycmVudHMubm9hYS5nb3YvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc0Nvb3BzV0xUUDYwLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NDb29wc1dMVFA2MCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyBDTy1PUFMiLCAibm9zQ29vcHNXTFRQNjAiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFY2LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc1dMVjYiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFY2LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PUyBDTy1PUFMgV2F0ZXIgTGV2ZWwgRGF0YSwgVmVyaWZpZWQsIDYtTWludXRlIiwgIlRoaXMgZGF0YXNldCBoYXMgdmVyaWZpZWQgKHF1YWxpdHktY29udHJvbGxlZCksIDYtbWludXRlLCB3YXRlciBsZXZlbCAodGlkZSlcbmRhdGEgZnJvbSBOT0FBIE5PUyBDZW50ZXIgZm9yIE9wZXJhdGlvbmFsIE9jZWFub2dyYXBoaWMgUHJvZHVjdHMgYW5kIFNlcnZpY2VzXG4oQ08tT1BTKS4gIFRoaXMgaXMgYSBkZWxheWVkIGRhdGFzZXQsIG5vdCBhIG5lYXItcmVhbC10aW1lIGRhdGFzZXQuXG5cbldBUk5JTkc6XG4qIFF1ZXJpZXMgZm9yIGRhdGEgTVVTVCBpbmNsdWRlIHN0YXRpb25JRD0sIGRhdHVtPSwgdGltZT49LCBhbmQgdGltZTw9LlxuKiBRdWVyaWVzIE1VU1QgYmUgZm9yIGxlc3MgdGhhbiAzMCBkYXlzIHdvcnRoIG9mIGRhdGEuXG4qIERpZmZlcmVudCBzdGF0aW9ucyBzdXBwb3J0IGRpZmZlcmVudCBkYXR1bXMuXG4gIFVzZSBFUkREQVAncyBTdWJzZXQgd2ViIHBhZ2UgdG8gZmluZCBvdXQgd2hpY2ggZGF0dW1zIGEgZ2l2ZW4gc3RhdGlvbiBzdXBwb3J0cy5cbiogVGhlIGRhdGEgc291cmNlIGlzbid0IGNvbXBsZXRlbHkgcmVsaWFibGUuIElmIHlvdXIgcmVxdWVzdCByZXR1cm5zIG5vIGRhdGFcbiAgd2hlbiB5b3UgdGhpbmsgaXQgc2hvdWxkOlxuICAqIE1ha2Ugc3VyZSB0aGUgc3RhdGlvbiB5b3Ugc3BlY2lmaWVkIHN1cHBvcnRzIHRoZSBkYXR1bSB5b3Ugc3BlY2lmaWVkLlxuICAqIFRyeSByZXZpc2luZyB0aGUgcmVxdWVzdCAoZS5nLiwgYSBkaWZmZXJlbnQgZGF0dW0gb3IgYSBkaWZmZXJlbnQgdGltZSByYW5nZSkuXG4gICogVGhlIGxpc3Qgb2Ygc3RhdGlvbnMgb2ZmZXJpbmcgdGhpcyBkYXRhIChvciB0aGUgbGlzdCBvZiBkYXR1bXMpIG1heSBiZSBpbmNvcnJlY3QuXG4gICogU29tZXRpbWVzIGEgc3RhdGlvbiBvciB0aGUgZW50aXJlIGRhdGEgc2VydmljZSBpcyB1bmF2YWlsYWJsZS5cbiAgICBXYWl0IGEgd2hpbGUgYW5kIHRyeSBhZ2Fpbi5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb25JRCAoU3RhdGlvbiBJRClcbnN0YXRpb25OYW1lIChTdGF0aW9uIE5hbWUpXG5zdGF0ZVxuZGF0ZUVzdGFibGlzaGVkIChEYXRlIEVzdGFibGlzaGVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2hlZklEIChTSEVGIElEKVxuZGVwbG95bWVudCAoRGVwbG95bWVudCBEZXNpZ25hdGlvbilcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGF0dW1cbndhdGVyTGV2ZWwgKFdhdGVyIExldmVsLCBtKVxuc2lnbWEgKFN0YW5kYXJkIERldmlhdGlvbiBvZiBXYXRlciBMZXZlbCwgbSlcbi4uLiAoNCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NDb29wc1dMVjZfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc0Nvb3BzV0xWNl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub3NDb29wc1dMVjYvaW5kZXguanNvbiIsICJodHRwOi8vdGlkZXNhbmRjdXJyZW50cy5ub2FhLmdvdi8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm9zQ29vcHNXTFY2LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NDb29wc1dMVjYmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOT1MgQ08tT1BTIiwgIm5vc0Nvb3BzV0xWNiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc1dMVkhMLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc1dMVkhMIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzV0xWSEwuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9TIENPLU9QUyBXYXRlciBMZXZlbCBEYXRhLCBWZXJpZmllZCwgSGlnaCBMb3ciLCAiVGhpcyBkYXRhc2V0IGhhcyB2ZXJpZmllZCAocXVhbGl0eS1jb250cm9sbGVkKSwgZGFpbHksIGhpZ2ggbG93IHdhdGVyIGxldmVsXG4odGlkZSkgZGF0YSBmcm9tIE5PQUEgTk9TIENlbnRlciBmb3IgT3BlcmF0aW9uYWwgT2NlYW5vZ3JhcGhpYyBQcm9kdWN0cyBhbmRcblNlcnZpY2VzIChDTy1PUFMpLiBUaGlzIGlzIGEgZGVsYXllZCBkYXRhc2V0LCBub3QgYSBuZWFyLXJlYWwtdGltZSBkYXRhc2V0LlxuXG5XQVJOSU5HOlxuKiBRdWVyaWVzIGZvciBkYXRhIE1VU1QgaW5jbHVkZSBzdGF0aW9uSUQ9LCBkYXR1bT0sIHRpbWU+PSwgYW5kIHRpbWU8PS5cbiogUXVlcmllcyBNVVNUIGJlIGZvciBsZXNzIHRoYW4gMzAgZGF5cyB3b3J0aCBvZiBkYXRhLlxuKiBEaWZmZXJlbnQgc3RhdGlvbnMgc3VwcG9ydCBkaWZmZXJlbnQgZGF0dW1zLlxuICBVc2UgRVJEREFQJ3MgU3Vic2V0IHdlYiBwYWdlIHRvIGZpbmQgb3V0IHdoaWNoIGRhdHVtcyBhIGdpdmVuIHN0YXRpb24gc3VwcG9ydHMuXG4qIFRoZSBkYXRhIHNvdXJjZSBpc24ndCBjb21wbGV0ZWx5IHJlbGlhYmxlLiBJZiB5b3VyIHJlcXVlc3QgcmV0dXJucyBubyBkYXRhXG4gIHdoZW4geW91IHRoaW5rIGl0IHNob3VsZDpcbiAgKiBNYWtlIHN1cmUgdGhlIHN0YXRpb24geW91IHNwZWNpZmllZCBzdXBwb3J0cyB0aGUgZGF0dW0geW91IHNwZWNpZmllZC5cbiAgKiBUcnkgcmV2aXNpbmcgdGhlIHJlcXVlc3QgKGUuZy4sIGEgZGlmZmVyZW50IGRhdHVtIG9yIGEgZGlmZmVyZW50IHRpbWUgcmFuZ2UpLlxuICAqIFRoZSBsaXN0IG9mIHN0YXRpb25zIG9mZmVyaW5nIHRoaXMgZGF0YSAob3IgdGhlIGxpc3Qgb2YgZGF0dW1zKSBtYXkgYmUgaW5jb3JyZWN0LlxuICAqIFNvbWV0aW1lcyBhIHN0YXRpb24gb3IgdGhlIGVudGlyZSBkYXRhIHNlcnZpY2UgaXMgdW5hdmFpbGFibGUuXG4gICAgV2FpdCBhIHdoaWxlIGFuZCB0cnkgYWdhaW4uXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5zdGF0aW9uSUQgKFN0YXRpb24gSUQpXG5zdGF0aW9uTmFtZSAoU3RhdGlvbiBOYW1lKVxuc3RhdGVcbmRhdGVFc3RhYmxpc2hlZCAoRGF0ZSBFc3RhYmxpc2hlZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNoZWZJRCAoU0hFRiBJRClcbmRlcGxveW1lbnQgKERlcGxveW1lbnQgRGVzaWduYXRpb24pXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRhdHVtXG53YXRlckxldmVsIChXYXRlciBMZXZlbCwgbSlcbnR5cGUgKERlc2lnbmF0aW9uIG9mIFdhdGVyIGxldmVsIEhlaWdodClcbkkgKEluZmVycmVkIEZsYWcpXG5MIChMaW1pdCBGbGFnKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL25vc0Nvb3BzV0xWSExfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc0Nvb3BzV0xWSExfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm9zQ29vcHNXTFZITC9pbmRleC5qc29uIiwgImh0dHA6Ly90aWRlc2FuZGN1cnJlbnRzLm5vYWEuZ292LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9ub3NDb29wc1dMVkhMLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NDb29wc1dMVkhMJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk9TIENPLU9QUyIsICJub3NDb29wc1dMVkhMIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzV0xWNjAuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzV0xWNjAiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFY2MC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT1MgQ08tT1BTIFdhdGVyIExldmVsIERhdGEsIFZlcmlmaWVkLCBIb3VybHkiLCAiVGhpcyBkYXRhc2V0IGhhcyB2ZXJpZmllZCAocXVhbGl0eS1jb250cm9sbGVkKSwgaG91cmx5LCB3YXRlciBsZXZlbCAodGlkZSkgZGF0YVxuZnJvbSBOT0FBIE5PUyBDZW50ZXIgZm9yIE9wZXJhdGlvbmFsIE9jZWFub2dyYXBoaWMgUHJvZHVjdHMgYW5kIFNlcnZpY2VzXG4oQ08tT1BTKS4gICBUaGlzIGlzIGEgZGVsYXllZCBkYXRhc2V0LCBub3QgYSBuZWFyLXJlYWwtdGltZSBkYXRhc2V0LlxuXG5XQVJOSU5HOlxuKiBRdWVyaWVzIGZvciBkYXRhIE1VU1QgaW5jbHVkZSBzdGF0aW9uSUQ9LCBkYXR1bT0sIHRpbWU+PSwgYW5kIHRpbWU8PS5cbiogUXVlcmllcyBNVVNUIGJlIGZvciBsZXNzIHRoYW4gMzAgZGF5cyB3b3J0aCBvZiBkYXRhLlxuKiBEaWZmZXJlbnQgc3RhdGlvbnMgc3VwcG9ydCBkaWZmZXJlbnQgZGF0dW1zLlxuICBVc2UgRVJEREFQJ3MgU3Vic2V0IHdlYiBwYWdlIHRvIGZpbmQgb3V0IHdoaWNoIGRhdHVtcyBhIGdpdmVuIHN0YXRpb24gc3VwcG9ydHMuXG4qIFRoZSBkYXRhIHNvdXJjZSBpc24ndCBjb21wbGV0ZWx5IHJlbGlhYmxlLiBJZiB5b3VyIHJlcXVlc3QgcmV0dXJucyBubyBkYXRhXG4gIHdoZW4geW91IHRoaW5rIGl0IHNob3VsZDpcbiAgKiBNYWtlIHN1cmUgdGhlIHN0YXRpb24geW91IHNwZWNpZmllZCBzdXBwb3J0cyB0aGUgZGF0dW0geW91IHNwZWNpZmllZC5cbiAgKiBUcnkgcmV2aXNpbmcgdGhlIHJlcXVlc3QgKGUuZy4sIGEgZGlmZmVyZW50IGRhdHVtIG9yIGEgZGlmZmVyZW50IHRpbWUgcmFuZ2UpLlxuICAqIFRoZSBsaXN0IG9mIHN0YXRpb25zIG9mZmVyaW5nIHRoaXMgZGF0YSAob3IgdGhlIGxpc3Qgb2YgZGF0dW1zKSBtYXkgYmUgaW5jb3JyZWN0LlxuICAqIFNvbWV0aW1lcyBhIHN0YXRpb24gb3IgdGhlIGVudGlyZSBkYXRhIHNlcnZpY2UgaXMgdW5hdmFpbGFibGUuXG4gICAgV2FpdCBhIHdoaWxlIGFuZCB0cnkgYWdhaW4uXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5zdGF0aW9uSUQgKFN0YXRpb24gSUQpXG5zdGF0aW9uTmFtZSAoU3RhdGlvbiBOYW1lKVxuc3RhdGVcbmRhdGVFc3RhYmxpc2hlZCAoRGF0ZSBFc3RhYmxpc2hlZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNoZWZJRCAoU0hFRiBJRClcbmRlcGxveW1lbnQgKERlcGxveW1lbnQgRGVzaWduYXRpb24pXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRhdHVtXG53YXRlckxldmVsIChXYXRlciBMZXZlbCwgbSlcbnNpZ21hIChTdGFuZGFyZCBEZXZpYXRpb24gb2YgV2F0ZXIgTGV2ZWwsIG0pXG5JIChJbmZlcnJlZCBGbGFnKVxuTCAoTGltaXQgRmxhZylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NDb29wc1dMVjYwX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9ub3NDb29wc1dMVjYwX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL25vc0Nvb3BzV0xWNjAvaW5kZXguanNvbiIsICJodHRwOi8vdGlkZXNhbmRjdXJyZW50cy5ub2FhLmdvdi8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm9zQ29vcHNXTFY2MC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bm9zQ29vcHNXTFY2MCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyBDTy1PUFMiLCAibm9zQ29vcHNXTFY2MCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9udGFzX2ZsdXhfNjJmY185YTIwXzE0MzIuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL250YXNfZmx1eF82MmZjXzlhMjBfMTQzMiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9udGFzX2ZsdXhfNjJmY185YTIwXzE0MzIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiT2NlYW5TSVRFUyBOVEFTIHN1cmZhY2UgbW9vcmluZyBmbHV4ZXMgY2FsY3VsYXRlZCB3aXRoIENvYXJlIDMuMCBhbGdvcml0aG0iLCAiT2NlYW5TaXRlcyB0aW1lLXNlcmllcyBGTFVYICBkYXRhIGZyb20gTlRBUyBzdGF0aW9uXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuUUIgKHNlbnNpYmxlIGhlYXQgZmx1eCwgVy9tMilcblFIIChsYXRlbnQgaGVhdCBmbHV4LCBXL20yKVxuUU4gKG5ldCBoZWF0IGZsdXgsIFcvbTIpXG5RTCAobmV0IGxvbmd3YXZlLCBXL20yKVxuUVMgKG5ldCBzaG9ydHdhdmUsIFcvbTIpXG5UQVVESVIgKHdpbmQgc3RyZXNzIGRpcmVjdGlvbiwgZGVncmVlIE4pXG5UQVVNQUcgKHdpbmQgc3RyZXNzIG1hZ25pdHVkZSwgTi9tXjIpXG5UU0tJTiAoU1NUIGFkanVzdGVkIHRvIHNraW4sIGRlZ3JlZSlcbldTX0ggKHdpbmQgc3BlZWQgYWRqdXN0ZWQgdG8gMTBtLCBtL3MpXG5RUV9IIChzcGVjaWZpYyBodW1pZGl0eSBhZGp1c3RlZCB0byAybSwgZy9rZylcblRBX0ggKGFpciB0ZW1wZXJhdHVyZSBhZGp1c3RlZCB0byAybSwgZGVncmVlX0MpXG5UQVVFIChlYXN0IHdpbmQgc3RyZXNzLCBOL21eMilcblRBVU4gKG5vcnRoIHdpbmQgc3RyZXNzLCBOL21eMilcblNUQUJJTElUWSAoc3RhYmlsaXR5IHBhcmFtZXRlciwgMSlcbmRlcHRoIChkZXB0aCBjb29yZGluYXRlIG9mIHRza2luLCBtKVxud21vX3BsYXRmb3JtX2NvZGVcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbnRhc19mbHV4XzYyZmNfOWEyMF8xNDMyX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9udGFzX2ZsdXhfNjJmY185YTIwXzE0MzJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbnRhc19mbHV4XzYyZmNfOWEyMF8xNDMyL2luZGV4Lmpzb24iLCAiaHR0cDovL3VvcC53aG9pLmVkdS9wcm9qZWN0cy9zdHJhdHVzIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL250YXNfZmx1eF82MmZjXzlhMjBfMTQzMi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bnRhc19mbHV4XzYyZmNfOWEyMF8xNDMyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIldIT0kiLCAibnRhc19mbHV4XzYyZmNfOWEyMF8xNDMyIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL250YXNfbWV0XzhkNzNfMWJjMV9lYzhhLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9udGFzX21ldF84ZDczXzFiYzFfZWM4YSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9udGFzX21ldF84ZDczXzFiYzFfZWM4YS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJPY2VhblNJVEVTIE5UQVMgc3VyZmFjZSBtb29yaW5nIE1FVCBkYXRhIiwgIk9jZWFuU2l0ZXMgdGltZS1zZXJpZXMgTUVUIGRhdGEgZnJvbSBOVEFTIHN0YXRpb25cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5BSVJUIChhaXIgdGVtcGVyYXR1cmUsIGRlZ3JlZV9DKVxuUkVMSCAocmVsYXRpdmUgaHVtaWRpdHksIHBlcmNlbnQpXG5BVE1TIChiYXJvbWV0cmljIHByZXNzdXJlLCBtaWxsaWJhcnMpXG5MVyAoc3VyZmFjZSBkb3dud2VsbGluZyBsb25nd2F2ZSByYWRpYXRpb24sIFcgbS0yKVxuU1cgKHNob3J0d2F2ZSByYWRpYXRpb24sIFcgbS0yKVxuUkFJTiAocHJlY2lwaXRhdGlvbiByYXRlLCBtbS9ob3VyKVxuVVdORCAoV2luZCBWZWxvY2l0eSBFYXN0LCBtZXRlcnMvc2Vjb25kKVxuVldORCAod2luZCB2ZWxvY2l0eSBub3J0aCwgbWV0ZXJzL3NlY29uZClcblRFTVAgKHNlYSB0ZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5QU0FMIChzZWEgd2F0ZXIgcHJhY3RpY2FsIHNhbGluaXR5LCAxKVxuQ05EQyAoY29uZHVjdGl2aXR5LCBTIG0tMSlcblVDVVIgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgUyBtLTEpXG5WQ1VSIChOb3J0aHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBTIG0tMSlcbmxhdGl0dWRlIChhcHByb3hpbWF0ZSBsYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoYXBwcm94aW1hdGUgbG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG53bW9fcGxhdGZvcm1fY29kZVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL250YXNfbWV0XzhkNzNfMWJjMV9lYzhhX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9udGFzX21ldF84ZDczXzFiYzFfZWM4YV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9udGFzX21ldF84ZDczXzFiYzFfZWM4YS9pbmRleC5qc29uIiwgImh0dHA6Ly91b3Aud2hvaS5lZHUvcHJvamVjdHMvc3RyYXR1cyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9udGFzX21ldF84ZDczXzFiYzFfZWM4YS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bnRhc19tZXRfOGQ3M18xYmMxX2VjOGEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiV0hPSSIsICJudGFzX21ldF84ZDczXzFiYzFfZWM4YSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9yYW1hXzNjMTVfMzQxMF83ODBhLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9yYW1hXzNjMTVfMzQxMF83ODBhIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3JhbWFfM2MxNV8zNDEwXzc4MGEuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiT2NlYW5TSVRFUyBSQU1BIGRhaWx5IGluLXNpdHUgZGF0YSIsICJPY2VhblNJVEVTIGRhaWx5IGluLXNpdHUgZGF0YS4gT2NlYW5TSVRFUyBHbG9iYWwgVHJvcGljYWwgTW9vcmVkIEJ1b3kgQXJyYXkgUmVzZWFyY2ggTW9vcmVkIEFycmF5IGZvciBBZnJpY2FuLUFzaWFuLUF1c3RyYWxpYW4gTW9uc29vbiBBbmFseXNpcyBhbmQgUHJlZGljdGlvbiAoUkFNQSkgZGF0YSBmcm9tIFBhY2lmaWMgTWFyaW5lIEVudmlyb25tZW50YWwgTGFib3JhdG9yeSAoUE1FTClcblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbndtb19wbGF0Zm9ybV9jb2RlXG5zaXRlX2NvZGVcbnNpdGVfaWQgKE9jZWFuU0lURVMgc3RhdGlvbiBJRClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoTGF0aXR1ZGUgb2YgZWFjaCBsb2NhdGlvbiwgZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoTG9uZ2l0dWRlIG9mIGVhY2ggbG9jYXRpb24sIGRlZ3JlZXNfZWFzdClcbmRlcGN1ciAoRGVwdGggb2YgZWFjaCBtZWFzdXJlbWVudCwgbWV0ZXJzKVxuVUNVUiAoem9uYWwgY3VycmVudCwgY20vcylcblZDVVIgKG1lcmlkaW9uYWwgY3VycmVudCwgY20vcylcbkNTUEQgKGN1cnJlbnQgc3BlZWQsIGNtL3MpXG5DU1BEX1FDIChxdWFsaXR5IGZsYWcpXG5DU1BEX0RNIChtZXRob2Qgb2YgZGF0YSBwcm9jZXNzaW5nKVxuQ0RJUiAoY3VycmVudCBkaXJlY3Rpb24gKG9jZWFub2dyYXBoaWMgY29udmVudGlvbiwgZmxvd2luZyB0byksIGRlZ3JlZSlcbkNESVJfUUMgKHF1YWxpdHkgZmxhZylcbkNESVJfRE0gKG1ldGhvZCBvZiBkYXRhIHByb2Nlc3NpbmcpXG5URU1QICh0ZW1wZXJhdHVyZSwgZGVncmVlX0NlbHNpdXMpXG5URU1QX1FDIChxdWFsaXR5IGZsYWcpXG5kZXB0aCAoRGVwdGggb2YgZWFjaCBtZWFzdXJlbWVudCwgbSlcbmRlcHBzYWwgKERlcHRoIG9mIGVhY2ggbWVhc3VyZW1lbnQsIG1ldGVycylcblBTQUwgKHNhbGluaXR5LCBQU1UpXG5QU0FMX1FDIChxdWFsaXR5IGZsYWcpXG5QU0FMX0RNIChtZXRob2Qgb2YgZGF0YSBwcm9jZXNzaW5nKVxuZGVwZGVuIChEZXB0aCBvZiBlYWNoIG1lYXN1cmVtZW50LCBtZXRlcnMpXG5ERU4gKHNpZ21hLXRoZXRhIChwb3RlbnRpYWwgZGVuc2l0eSksIGtnL20qKjMpXG5ERU5fUUMgKHF1YWxpdHkgZmxhZylcbi4uLiAoMzcgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcmFtYV8zYzE1XzM0MTBfNzgwYV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcmFtYV8zYzE1XzM0MTBfNzgwYV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9yYW1hXzNjMTVfMzQxMF83ODBhL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcmFtYV8zYzE1XzM0MTBfNzgwYS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cmFtYV8zYzE1XzM0MTBfNzgwYSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJQTUVMIEdsb2JhbCBUcm9waWNhbCBNb29yZWQgQnVveSBBcnJheSIsICJyYW1hXzNjMTVfMzQxMF83ODBhIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3N0cmF0dXNfZmx1eF85NzcwXzdmMThfYjMxNC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc3RyYXR1c19mbHV4Xzk3NzBfN2YxOF9iMzE0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3N0cmF0dXNfZmx1eF85NzcwXzdmMThfYjMxNC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJPY2VhblNJVEVTIFN0cmF0dXMgc3VyZmFjZSBtb29yaW5nIGZsdXhlcyBjYWxjdWxhdGVkIHdpdGggQ29hcmUgMy4wIGFsZ29yaXRobSIsICJPY2VhblNpdGVzIHRpbWUtc2VyaWVzIGZsdXggZGF0YSBmcm9tIFN0cmF0dXMgc3RhdGlvblxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcblFCIChzZW5zaWJsZSBoZWF0IGZsdXgsIFcvbTIpXG5RSCAobGF0ZW50IGhlYXQgZmx1eCwgVy9tMilcblFOIChuZXQgaGVhdCBmbHV4LCBXL20yKVxuUUwgKG5ldCBsb25nd2F2ZSwgVy9tMilcblFTIChuZXQgc2hvcnR3YXZlLCBXL20yKVxuVEFVRElSICh3aW5kIHN0cmVzcyBkaXJlY3Rpb24sIGRlZ3JlZSBOKVxuVEFVTUFHICh3aW5kIHN0cmVzcyBtYWduaXR1ZGUsIE4vbV4yKVxuVFNLSU4gKFNTVCBhZGp1c3RlZCB0byBza2luLCBkZWdyZWUpXG5XU19IICh3aW5kIHNwZWVkIGFkanVzdGVkIHRvIDEwbSwgbS9zKVxuUVFfSCAoc3BlY2lmaWMgaHVtaWRpdHkgYWRqdXN0ZWQgdG8gMm0sIGcva2cpXG5UQV9IIChhaXIgdGVtcGVyYXR1cmUgYWRqdXN0ZWQgdG8gMm0sIGRlZ3JlZV9DKVxuVEFVRSAoZWFzdCB3aW5kIHN0cmVzcywgTi9tXjIpXG5UQVVOIChub3J0aCB3aW5kIHN0cmVzcywgTi9tXjIpXG5TVEFCSUxJVFkgKHN0YWJpbGl0eSBwYXJhbWV0ZXIsIDEpXG5kZXB0aCAoZGVwdGggY29vcmRpbmF0ZSBvZiB0c2tpbiwgbSlcbndtb19wbGF0Zm9ybV9jb2RlXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3N0cmF0dXNfZmx1eF85NzcwXzdmMThfYjMxNF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc3RyYXR1c19mbHV4Xzk3NzBfN2YxOF9iMzE0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3N0cmF0dXNfZmx1eF85NzcwXzdmMThfYjMxNC9pbmRleC5qc29uIiwgImh0dHA6Ly91b3Aud2hvaS5lZHUvcHJvamVjdHMvc3RyYXR1cyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9zdHJhdHVzX2ZsdXhfOTc3MF83ZjE4X2IzMTQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXN0cmF0dXNfZmx1eF85NzcwXzdmMThfYjMxNCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJXSE9JIiwgInN0cmF0dXNfZmx1eF85NzcwXzdmMThfYjMxNCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9zdHJhdHVzX21ldF9hYjQzX2U2MmFfNTQ5NC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc3RyYXR1c19tZXRfYWI0M19lNjJhXzU0OTQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc3RyYXR1c19tZXRfYWI0M19lNjJhXzU0OTQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiT2NlYW5TSVRFUyBTdHJhdHVzIHN1cmZhY2UgbW9vcmluZyBNRVQgZGF0YSIsICJPY2VhblNpdGVzIHRpbWUtc2VyaWVzIGRhdGEgZnJvbSBTdHJhdHVzIHN0YXRpb25cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5BSVJUIChhaXIgdGVtcGVyYXR1cmUsIGRlZ3JlZV9DKVxuUkVMSCAocmVsYXRpdmUgaHVtaWRpdHksIHBlcmNlbnQpXG5BVE1TIChiYXJvbWV0cmljIHByZXNzdXJlLCBtaWxsaWJhcnMpXG5MVyAoc3VyZmFjZSBkb3dud2VsbGluZyBsb25nd2F2ZSByYWRpYXRpb24sIFcgbS0yKVxuU1cgKHNob3J0d2F2ZSByYWRpYXRpb24sIFcgbS0yKVxuUkFJTiAocHJlY2lwaXRhdGlvbiByYXRlLCBtbS9ob3VyKVxuVVdORCAoV2luZCBWZWxvY2l0eSBFYXN0LCBtZXRlcnMvc2Vjb25kKVxuVldORCAod2luZCB2ZWxvY2l0eSBub3J0aCwgbWV0ZXJzL3NlY29uZClcblRFTVAgKHNlYSB0ZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5QU0FMIChzZWEgd2F0ZXIgcHJhY3RpY2FsIHNhbGluaXR5LCAuMDAxKVxuQ05EQyAoY29uZHVjdGl2aXR5LCBTIG0tMSlcblVDVVIgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgUyBtLTEpXG5WQ1VSIChOb3J0aHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBTIG0tMSlcbmxhdGl0dWRlIChhcHByb3hpbWF0ZSBsYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoYXBwcm94aW1hdGUgbG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG53bW9fcGxhdGZvcm1fY29kZVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3N0cmF0dXNfbWV0X2FiNDNfZTYyYV81NDk0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9zdHJhdHVzX21ldF9hYjQzX2U2MmFfNTQ5NF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zdHJhdHVzX21ldF9hYjQzX2U2MmFfNTQ5NC9pbmRleC5qc29uIiwgImh0dHA6Ly91b3Aud2hvaS5lZHUvcHJvamVjdHMvc3RyYXR1cyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9zdHJhdHVzX21ldF9hYjQzX2U2MmFfNTQ5NC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9c3RyYXR1c19tZXRfYWI0M19lNjJhXzU0OTQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiV0hPSSIsICJzdHJhdHVzX21ldF9hYjQzX2U2MmFfNTQ5NCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC93aG90c19mbHV4X2Y4MmZfNDY4NF9hNzRmLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC93aG90c19mbHV4X2Y4MmZfNDY4NF9hNzRmIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3dob3RzX2ZsdXhfZjgyZl80Njg0X2E3NGYuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiT2NlYW5TSVRFUyBXSE9UUyBzdXJmYWNlIG1vb3JpbmcgZmx1eGVzIGNhbGN1bGF0ZWQgd2l0aCBDb2FyZSAzLjAgYWxnb3JpdGhtIiwgIk9jZWFuU2l0ZXMgdGltZS1zZXJpZXMgRkxVWCAgZGF0YSBmcm9tIFdIT1RTIHN0YXRpb25cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5RQiAoc2Vuc2libGUgaGVhdCBmbHV4LCBXL20yKVxuUUggKGxhdGVudCBoZWF0IGZsdXgsIFcvbTIpXG5RTiAobmV0IGhlYXQgZmx1eCwgVy9tMilcblFMIChuZXQgbG9uZ3dhdmUsIFcvbTIpXG5RUyAobmV0IHNob3J0d2F2ZSwgVy9tMilcblRBVURJUiAod2luZCBzdHJlc3MgZGlyZWN0aW9uLCBkZWdyZWUgTilcblRBVU1BRyAod2luZCBzdHJlc3MgbWFnbml0dWRlLCBOL21eMilcblRTS0lOIChTU1QgYWRqdXN0ZWQgdG8gc2tpbiwgZGVncmVlKVxuV1NfSCAod2luZCBzcGVlZCBhZGp1c3RlZCB0byAxMG0sIG0vcylcblFRX0ggKHNwZWNpZmljIGh1bWlkaXR5IGFkanVzdGVkIHRvIDJtLCBnL2tnKVxuVEFfSCAoYWlyIHRlbXBlcmF0dXJlIGFkanVzdGVkIHRvIDJtLCBkZWdyZWVfQylcblRBVUUgKGVhc3Qgd2luZCBzdHJlc3MsIE4vbV4yKVxuVEFVTiAobm9ydGggd2luZCBzdHJlc3MsIE4vbV4yKVxuU1RBQklMSVRZIChzdGFiaWxpdHkgcGFyYW1ldGVyLCAxKVxuZGVwdGggKGRlcHRoIGNvb3JkaW5hdGUgb2YgdHNraW4sIG0pXG53bW9fcGxhdGZvcm1fY29kZVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC93aG90c19mbHV4X2Y4MmZfNDY4NF9hNzRmX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC93aG90c19mbHV4X2Y4MmZfNDY4NF9hNzRmX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3dob3RzX2ZsdXhfZjgyZl80Njg0X2E3NGYvaW5kZXguanNvbiIsICJodHRwOi8vdW9wLndob2kuZWR1L3Byb2plY3RzL3N0cmF0dXMiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvd2hvdHNfZmx1eF9mODJmXzQ2ODRfYTc0Zi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9d2hvdHNfZmx1eF9mODJmXzQ2ODRfYTc0ZiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJXSE9JIiwgIndob3RzX2ZsdXhfZjgyZl80Njg0X2E3NGYiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvd2hvdHNfbWV0X2YxODNfZWUwNl84YjYzLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC93aG90c19tZXRfZjE4M19lZTA2XzhiNjMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvd2hvdHNfbWV0X2YxODNfZWUwNl84YjYzLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk9jZWFuU0lURVMgV0hPVFMgc3VyZmFjZSBtb29yaW5nIE1FVCBkYXRhIiwgIk9jZWFuU2l0ZXMgdGltZS1zZXJpZXMgTUVUICBkYXRhIGZyb20gV0hPVFMgc3RhdGlvblxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbkFJUlQgKGFpciB0ZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5SRUxIIChyZWxhdGl2ZSBodW1pZGl0eSwgcGVyY2VudClcbkFUTVMgKGJhcm9tZXRyaWMgcHJlc3N1cmUsIG1pbGxpYmFycylcbkxXIChzdXJmYWNlIGRvd253ZWxsaW5nIGxvbmd3YXZlIHJhZGlhdGlvbiwgVyBtLTIpXG5TVyAoc2hvcnR3YXZlIHJhZGlhdGlvbiwgVyBtLTIpXG5SQUlOIChwcmVjaXBpdGF0aW9uIHJhdGUsIG1tL2hvdXIpXG5VV05EIChXaW5kIFZlbG9jaXR5IEVhc3QsIG1ldGVycy9zZWNvbmQpXG5WV05EICh3aW5kIHZlbG9jaXR5IG5vcnRoLCBtZXRlcnMvc2Vjb25kKVxuVEVNUCAoc2VhIHRlbXBlcmF0dXJlLCBkZWdyZWVfQylcblBTQUwgKHNlYSB3YXRlciBwcmFjdGljYWwgc2FsaW5pdHksIC4wMDEpXG5DTkRDIChjb25kdWN0aXZpdHksIFMgbS0xKVxuVUNVUiAoRWFzdHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBTIG0tMSlcblZDVVIgKE5vcnRod2FyZCBTZWEgV2F0ZXIgVmVsb2NpdHksIFMgbS0xKVxubGF0aXR1ZGUgKGFwcHJveGltYXRlIGxhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChhcHByb3hpbWF0ZSBsb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbndtb19wbGF0Zm9ybV9jb2RlXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvd2hvdHNfbWV0X2YxODNfZWUwNl84YjYzX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC93aG90c19tZXRfZjE4M19lZTA2XzhiNjNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vd2hvdHNfbWV0X2YxODNfZWUwNl84YjYzL2luZGV4Lmpzb24iLCAiaHR0cDovL3VvcC53aG9pLmVkdS9wcm9qZWN0cy9zdHJhdHVzIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3dob3RzX21ldF9mMTgzX2VlMDZfOGI2My5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9d2hvdHNfbWV0X2YxODNfZWUwNl84YjYzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIldIT0kiLCAid2hvdHNfbWV0X2YxODNfZWUwNl84YjYzIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL09TTUNfUFJPRklMRVJTLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DX1BST0ZJTEVSUyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DX1BST0ZJTEVSUy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJPU01DIEFyZ28gUHJvZmlsZSBkYXRhIiwgIk9TTUMgQXJnbyBQcm9maWxlIGRhdGFcblxuY2RtX2RhdGFfdHlwZSA9IFByb2ZpbGVcblZBUklBQkxFUzpcbnBsYXRmb3JtX2NvZGVcbm9yZ2FuaXphdGlvbl9uYW1lXG5jb3VudHJ5X25hbWVcbnBsYXRmb3JtX3R5cGVfbmFtZVxudGltZSAoT0JTRVJWQVRJT04gREFURSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnBhcmFtZXRlcl9uYW1lXG5kYWlseV9vYnNfY291bnRcbm9ic2VydmF0aW9uX2RlcHRoXG5vYnNlcnZhdGlvbl92YWx1ZVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9PU01DX1BST0ZJTEVSU19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvT1NNQ19QUk9GSUxFUlNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vT1NNQ19QUk9GSUxFUlMvaW5kZXguanNvbiIsICJ3d3cub3NtYy5ub2FhLmdvdiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9PU01DX1BST0ZJTEVSUy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9T1NNQ19QUk9GSUxFUlMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiT1NNQyIsICJPU01DX1BST0ZJTEVSUyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DX2ZsYXR0ZW5lZC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvT1NNQ19mbGF0dGVuZWQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvT1NNQ19mbGF0dGVuZWQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiT1NNQyBmbGF0dGVuZWQgb2JzZXJ2YXRpb25zIGZyb20gR1RTIiwgIk9TTUMgZmxhdHRlbmVkIG9ic2VydmF0aW9ucyBmcm9tIEdUUywgcHJvdmlkaW5nIHR1cGxlZCBkYXRhIGF2YWlsYWJpbGl0eVxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbnBsYXRmb3JtX2lkXG5wbGF0Zm9ybV9jb2RlXG5wbGF0Zm9ybV90eXBlXG5jb3VudHJ5XG50aW1lIChvYnNlcnZhdGlvbiBkYXRlLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbm9ic2VydmF0aW9uX2RlcHRoXG5zc3QgKHNlYSBzdXJmYWNlIHRlbXBlcmF0dXJlLCBEZWcgQylcbmF0bXAgKGFpciB0ZW1wZXJhdHVyZSwgRGVnIEMpXG5wcmVjaXAgKHByZWNpcGl0YXRpb24sIG1tKVxuenRtcCAocHJvZmlsZSB3YXRlciB0ZW1wZXJhdHVyZSwgRGVnIEMpXG56c2FsIChwcm9maWxlIHNhbGluaXR5KVxuc2xwIChzZWEgbGV2ZWwgcHJlc3N1cmUsIGhQYSlcbndpbmRzcGQgKHdpbmQgc3BlZWQsIG0vcylcbndpbmRkaXIgKHdpbmQgZnJvbSBkaXJlY3Rpb24sIERlZyB0cnVlKVxud3ZodCAoc2VhIHN1cmZhY2Ugd2F2ZSBzaWduaWZpY2FudCBoZWlnaHQsIG0pXG53YXRlcmxldmVsIChtKVxuY2xvdWRzIChjbG91ZCBjb3Zlciwgb2t0YXMpXG5kZXdwb2ludCAoZGV3IHBvaW50IHRlbXBlcmF0dXJlLCBEZWcgQylcbnVvIChlYXN0d2FyZCBzZWEgd2F0ZXIgdmVsb2NpdHksIG0gcy0xKVxudm8gKG5vcnRod2FyZCBzZWEgd2F0ZXIgdmVsb2NpdHksIG0gcy0xKVxud28gKHVwd2FyZCBzZWEgd2F0ZXIgdmVsb2NpdHksIG0gcy0xKVxucmFpbmZhbGxfcmF0ZSAobSBzLTEpXG5odXIgKHJlbGF0aXZlIGh1bWlkaXR5KVxuc2VhX3dhdGVyX2VsZWNfY29uZHVjdGl2aXR5IChzZWEgd2F0ZXIgZWxlY3RyaWNhbCBjb25kdWN0aXZpdHksIFMgbS0xKVxuc2VhX3dhdGVyX3ByZXNzdXJlIChkYmFyKVxuLi4uICg3IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL09TTUNfZmxhdHRlbmVkX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9PU01DX2ZsYXR0ZW5lZF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9PU01DX2ZsYXR0ZW5lZC9pbmRleC5qc29uIiwgInd3dy5vc21jLm5vYWEuZ292IiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL09TTUNfZmxhdHRlbmVkLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1PU01DX2ZsYXR0ZW5lZCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJPU01DIiwgIk9TTUNfZmxhdHRlbmVkIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL09TTUNfUG9pbnRzLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DX1BvaW50cyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DX1BvaW50cy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJPU01DIG5vcm1hbGl6ZWQgb2JzZXJ2YXRpb25zIGZyb20gR1RTIiwgIk9TTUMgbm9ybWFsaXplZCBJbi1zaXR1IFJlYWwgdGltZSBHVFMgZGF0YVxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcblBMQVRGT1JNX0NPREUgKFN0YXRpb24gSUQpXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnBsYXRmb3JtXG5wYXJhbWV0ZXJcbk9CU0VSVkFUSU9OX1ZBTFVFXG5PQlNFUlZBVElPTl9ERVBUSFxuQ09VTlRSWV9OQU1FXG5vcmdhbml6YXRpb25fbmFtZVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL09TTUNfUG9pbnRzX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9PU01DX1BvaW50c19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9PU01DX1BvaW50cy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3Lm9zbWMubm9hYS5nb3YiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvT1NNQ19Qb2ludHMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPU9TTUNfUG9pbnRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk9TTUMiLCAiT1NNQ19Qb2ludHMiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvT1NNQ1Y0X0RVT19QUk9GSUxFUy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvT1NNQ1Y0X0RVT19QUk9GSUxFUyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DVjRfRFVPX1BST0ZJTEVTLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk9TTUMgUHJvZmlsZXMiLCAiT1NNQyBwcm9maWxlcyBmcm9tIEdUU1xuXG5jZG1fZGF0YV90eXBlID0gUHJvZmlsZVxuVkFSSUFCTEVTOlxucGxhdGZvcm1fY29kZVxucGxhdGZvcm1fdHlwZVxuY291bnRyeVxudGltZSAoT0JTRVJWQVRJT04gREFURSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5kZXB0aCAoT0JTRVJWQVRJT04gREVQVEgsIG0pXG56dG1wIChwcm9maWxlIHdhdGVyIHRlbXBlcmF0dXJlLCBEZWcgQylcbnpzYWwgKFNlYSBXYXRlciBTYWxpbml0eSlcbnNlYV93YXRlcl9lbGVjX2NvbmR1Y3Rpdml0eSAoU2VhIFdhdGVyIEVsZWN0cmljYWwgQ29uZHVjdGl2aXR5LCBTIG0tMSlcbnNlYV93YXRlcl9wcmVzc3VyZSAoZGJhcilcbm5vcnRod2FyZF9zZWFfd2F0ZXJfdmVsb2NpdHkgKG0gcy0xKVxuZWFzdHdhcmRfc2VhX3dhdGVyX3ZlbG9jaXR5IChtIHMtMSlcbnVwd2FyZF9zZWFfd2F0ZXJfdmVsb2NpdHkgKG0gcy0xKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL09TTUNWNF9EVU9fUFJPRklMRVNfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL09TTUNWNF9EVU9fUFJPRklMRVNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vT1NNQ1Y0X0RVT19QUk9GSUxFUy9pbmRleC5qc29uIiwgInd3dy5vc21jLm5vYWEuZ292IiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL09TTUNWNF9EVU9fUFJPRklMRVMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPU9TTUNWNF9EVU9fUFJPRklMRVMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiT1NNQyIsICJPU01DVjRfRFVPX1BST0ZJTEVTIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL09TTUNWNF9EVU9fU1VSRkFDRV9UUkFKRUNUT1JZLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DVjRfRFVPX1NVUkZBQ0VfVFJBSkVDVE9SWSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DVjRfRFVPX1NVUkZBQ0VfVFJBSkVDVE9SWS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJPU01DIHN1cmZhY2UgdHJhamVjdG9yeSBkYXRhIiwgIlN1cmZhY2UgdHJhamVjdG9yeSBkYXRhIGZyb20gR1RTXG5cbmNkbV9kYXRhX3R5cGUgPSBUcmFqZWN0b3J5XG5WQVJJQUJMRVM6XG5wbGF0Zm9ybV9pZFxucGxhdGZvcm1fY29kZVxucGxhdGZvcm1fdHlwZVxuY291bnRyeVxudGltZSAoT0JTRVJWQVRJT04gREFURSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5vYnNlcnZhdGlvbl9kZXB0aFxuc3N0IChzZWEgc3VyZmFjZSB0ZW1wZXJhdHVyZSwgRGVnIEMpXG5hdG1wIChhaXIgdGVtcGVyYXR1cmUsIERlZyBDKVxucHJlY2lwIChwcmVjaXBpdGF0aW9uLCBtbSlcbnp0bXAgKHByb2ZpbGUgd2F0ZXIgdGVtcGVyYXR1cmUsIERlZyBDKVxuenNhbCAocHJvZmlsZSBzYWxpbml0eSlcbnNzc1xuc2xwIChzZWEgbGV2ZWwgcHJlc3N1cmUsIGhQYSlcbndpbmRzcGQgKHdpbmQgc3BlZWQsIG0vcylcbndpbmRkaXIgKFdpbmQgRnJvbSBEaXJlY3Rpb24sIERlZyB0cnVlKVxud3ZodCAoU2VhIFN1cmZhY2UgV2F2ZSBTaWduaWZpY2FudCBIZWlnaHQsIG0pXG53YXRlcmxldmVsIChtKVxuY2xvdWRzIChjbG91ZCBjb3Zlciwgb2t0YXMpXG5kZXdwb2ludCAoZGV3IHBvaW50IHRlbXBlcmF0dXJlLCBEZWcgQylcbmVhc3R3YXJkX3NlYV93YXRlcl92ZWxvY2l0eSAobSBzLTEpXG5ub3J0aHdhcmRfc2VhX3dhdGVyX3ZlbG9jaXR5IChtIHMtMSlcbnVwd2FyZF9zZWFfd2F0ZXJfdmVsb2NpdHkgKG0gcy0xKVxucmFpbmZhbGxfcmF0ZSAobSBzLTEpXG5yZWxhdGl2ZV9odW1pZGl0eVxuc2VhX3dhdGVyX2VsZWN0cmljYWxfY29uZCAoc2VhIHdhdGVyIGVsZWN0cmljYWwgY29uZHVjdGl2aXR5LCBTIG0tMSlcbi4uLiAoOCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9PU01DVjRfRFVPX1NVUkZBQ0VfVFJBSkVDVE9SWV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvT1NNQ1Y0X0RVT19TVVJGQUNFX1RSQUpFQ1RPUllfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vT1NNQ1Y0X0RVT19TVVJGQUNFX1RSQUpFQ1RPUlkvaW5kZXguanNvbiIsICJ3d3cub3NtYy5ub2FhLmdvdiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9PU01DVjRfRFVPX1NVUkZBQ0VfVFJBSkVDVE9SWS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9T1NNQ1Y0X0RVT19TVVJGQUNFX1RSQUpFQ1RPUlkmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiT1NNQyIsICJPU01DVjRfRFVPX1NVUkZBQ0VfVFJBSkVDVE9SWSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DVjRfRFVPX1RJTUVfU0VSSUVTLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DVjRfRFVPX1RJTUVfU0VSSUVTIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL09TTUNWNF9EVU9fVElNRV9TRVJJRVMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiT1NNQyBUaW1lU2VyaWVzIGRhdGEiLCAiT1NNQyBUaW1lU2VyaWVzIGRhdGFcblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnBsYXRmb3JtX2lkXG5wbGF0Zm9ybV9jb2RlXG5wbGF0Zm9ybV90eXBlIChQTEFURk9SIFRZUEUpXG5jb3VudHJ5XG50aW1lIChPQlNFUlZBVElPTiBEQVRFLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxub2JzZXJ2YXRpb25fZGVwdGhcbnNzdFxuYXRtcFxucHJlY2lwXG56dG1wXG56c2FsIChTZWEgV2F0ZXIgU2FsaW5pdHkpXG5zc3MgKFNlYSBXYXRlciBTYWxpbml0eSlcbnNscCAoU3VyZmFjZSBBaXIgUHJlc3N1cmUpXG53aW5kc3BkXG53aW5kZGlyIChXaW5kIEZyb20gRGlyZWN0aW9uKVxud3ZodCAoU2VhIFN1cmZhY2UgV2F2ZSBTaWduaWZpY2FudCBIZWlnaHQpXG53YXRlcmxldmVsXG5jbG91ZHNcbmRld3BvaW50XG5lYXN0d2FyZF9zZWFfd2F0ZXJfdmVsXG5ub3J0aHdhcmRfc2VhX3dhdGVyX3ZlbFxudXB3YXJkX3NlYV93YXRlcl92ZWxcbnJhaW5mYWxsX3JhdGVcbnJlbGF0aXZlX2h1bWlkaXR5XG5zZWFfd2F0ZXJfZWxlY3RyaWNhbF9jb25kXG5zZWFfd2F0ZXJfcHJlc3N1cmVcbnN1cmZhY2VfZHdud2VsbGluZ19sbmd3YXZlXG4uLi4gKDcgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvT1NNQ1Y0X0RVT19USU1FX1NFUklFU19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvT1NNQ1Y0X0RVT19USU1FX1NFUklFU19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9PU01DVjRfRFVPX1RJTUVfU0VSSUVTL2luZGV4Lmpzb24iLCAid3d3Lm9zbWMubm9hYS5nb3YiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvT1NNQ1Y0X0RVT19USU1FX1NFUklFUy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9T1NNQ1Y0X0RVT19USU1FX1NFUklFUyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJPU01DIiwgIk9TTUNWNF9EVU9fVElNRV9TRVJJRVMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0JFQUNIQ0FNLTAwMSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9CRUFDSENBTS0wMDEuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUGFjSU9PUyBCZWFjaCBDYW1lcmEgMDAxOiBXYWlraWtpLCBPYWh1LCBIYXdhaWkiLCAiQSBkaWdpdGFsIGNhbWVyYSBvbiB0b3Agb2YgdGhlIFNoZXJhdG9uIFdhaWtpa2kgaG90ZWwgd2FzIHVzZWQgdG8gcGhvdG9ncmFwaCB0aGUgc2hvcmVsaW5lIG9mIFdhaWtpa2kgYmVhY2ggYWxvbmcgdGhlIFNvdXRoIFNob3JlIG9mIHRoZSBpc2xhbmQgb2YgT2FodSBpbiB0aGUgU3RhdGUgb2YgSGF3YWlpLiBUaGUgb2JsaXF1ZSBjYW1lcmEgdmlldyBwcmVzZW50ZWQgaGVyZSBjYXB0dXJlcyB0aGUgc2hvcmVsaW5lIGxlYWRpbmcgc291dGhlYXN0IHRvd2FyZHMgRGlhbW9uZCBIZWFkIGNyYXRlci4gSXQgb3BlcmF0ZWQgZm9yIG92ZXIgNC41IHllYXJzIGJldHdlZW4gRmVicnVhcnkgNSwgMjAwOSBhbmQgT2N0b2JlciAxMywgMjAxMy4gQ2FwdHVyaW5nIGhvdXJseSBzbmFwc2hvdHMgYXQgYSBzZXQgdmFudGFnZSBwb2ludCBkdXJpbmcgdGhlIGxvY2FsIGRheXRpbWUgaG91cnMgb2YgNjowMCBBTSBvciA3OjAwIEFNIHRvIDU6MDAgUE0sIHRoZXNlIGltYWdlcyBhcmUgdXNlZnVsIGZvciB0cmFja2luZyBiZWFjaCBkeW5hbWljcyBzdWNoIGFzIHdhdmUgcnVuLXVwLCBzYW5kIG1vdmVtZW50LCBhbmQgdHVyYmlkaXR5IHBsdW1lcyBvdmVyIHRpbWUuIFRoZSBjYW1lcmEgd2FzIG1vdW50ZWQgb24gdG9wIG9mIGEgMyBtZXRlciB3YWxsIGV4dGVuZGluZyBhYm92ZSB0aGUgcm9vZiBzdXJmYWNlIGZvciBhIHRvdGFsIGhlaWdodCBvZiA5MyBtZXRlcnMgYWJvdmUgZ3JvdW5kIGxldmVsIG9yIDk2IG1ldGVycyBhYm92ZSBtZWFuIHNlYSBsZXZlbC4gU2VlIGFsc28gQkVBQ0hDQU0tMDAyIGZvciBhbiBhbHRlcm5hdGUgY2FtZXJhIHZpZXcgZnJvbSB0aGUgc2FtZSBsb2NhdGlvbiBwb2ludGluZyBkaXJlY3RseSBkb3dud2FyZHMuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5hbHRpdHVkZSAobSlcbmFib3ZlR3JvdW5kIChIZWlnaHQsIG0pXG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9CRUFDSENBTS0wMDFfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL0JFQUNIQ0FNLTAwMV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9CRUFDSENBTS0wMDEvaW5kZXguanNvbiIsICJodHRwOi8vd3d3LnBhY2lvb3MuaGF3YWlpLmVkdSIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9CRUFDSENBTS0wMDEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPUJFQUNIQ0FNLTAwMSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJVbml2ZXJzaXR5IG9mIEhhd2FpaSIsICJCRUFDSENBTS0wMDEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTE0XzMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMTRfMy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMTQ6IE1pc3Npb24gMyIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gMyBvZiBTZWFHbGlkZXIgMTE0LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMTRfM19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMTRfM19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzExNF8zL2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTE0XzMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTE0XzMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTE0XzMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTE0XzQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMTRfNC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMTQ6IE1pc3Npb24gNCIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gNCBvZiBTZWFHbGlkZXIgMTE0LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMTRfNF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMTRfNF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzExNF80L2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTE0XzQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTE0XzQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTE0XzQiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTM5XzEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMzlfMS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMzk6IE1pc3Npb24gMSIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gMSBvZiBTZWFHbGlkZXIgMTM5LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMzlfMV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMzlfMV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzEzOV8xL2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTM5XzEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTM5XzEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTM5XzEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTM5XzIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMzlfMi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMzk6IE1pc3Npb24gMiIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gMiBvZiBTZWFHbGlkZXIgMTM5LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMzlfMl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMzlfMl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzEzOV8yL2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTM5XzIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTM5XzImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTM5XzIiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTM5XzMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMzlfMy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMzk6IE1pc3Npb24gMyIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gMyBvZiBTZWFHbGlkZXIgMTM5LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMzlfM19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMzlfM19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzEzOV8zL2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTM5XzMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTM5XzMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTM5XzMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTM5XzYiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMzlfNi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMzk6IE1pc3Npb24gNiIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gNiBvZiBTZWFHbGlkZXIgMTM5LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMzlfNl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMzlfNl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzEzOV82L2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTM5XzYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTM5XzYmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTM5XzYiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTM5XzciLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMzlfNy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMzk6IE1pc3Npb24gNyIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gNyBvZiBTZWFHbGlkZXIgMTM5LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMzlfN19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMzlfN19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzEzOV83L2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTM5XzcucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTM5Xzcmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTM5XzciXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTM5XzgiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMzlfOC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMzk6IE1pc3Npb24gOCIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gOCBvZiBTZWFHbGlkZXIgMTM5LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMzlfOF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMzlfOF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzEzOV84L2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTM5XzgucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTM5Xzgmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTM5XzgiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTM5XzkiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMzlfOS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMzk6IE1pc3Npb24gOSIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gOSBvZiBTZWFHbGlkZXIgMTM5LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMzlfOV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMzlfOV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzEzOV85L2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTM5XzkucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTM5Xzkmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTM5XzkiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnNTIzXzEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2c1MjNfMS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciA1MjM6IE1pc3Npb24gMSIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gMSBvZiBTZWFHbGlkZXIgNTIzLlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2c1MjNfMV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2c1MjNfMV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzUyM18xL2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnNTIzXzEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnNTIzXzEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnNTIzXzEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnNTIzXzMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2c1MjNfMy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciA1MjM6IE1pc3Npb24gMyIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gMyBvZiBTZWFHbGlkZXIgNTIzLlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2c1MjNfM19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2c1MjNfM19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzUyM18zL2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnNTIzXzMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnNTIzXzMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnNTIzXzMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnNTIzXzQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2c1MjNfNC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciA1MjM6IE1pc3Npb24gNCIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gNCBvZiBTZWFHbGlkZXIgNTIzLlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2c1MjNfNF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2c1MjNfNF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzUyM180L2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnNTIzXzQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnNTIzXzQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnNTIzXzQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvV1FCLTA0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9XUUItMDQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvV1FCLTA0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlBhY0lPT1MgV2F0ZXIgUXVhbGl0eSBCdW95IDA0OiBIaWxvIEJheSwgQmlnIElzbGFuZCwgSGF3YWlpIiwgIlRoZSB3YXRlciBxdWFsaXR5IGJ1b3lzIGFyZSBwYXJ0IG9mIHRoZSBQYWNpZmljIElzbGFuZHMgT2NlYW4gT2JzZXJ2aW5nIFN5c3RlbSAoUGFjSU9PUykgYW5kIGFyZSBkZXNpZ25lZCB0byBtZWFzdXJlIGEgdmFyaWV0eSBvZiBvY2VhbiBwYXJhbWV0ZXJzIGF0IGZpeGVkIHBvaW50cy4gV1FCLTA0IGlzIGxvY2F0ZWQgaW4gSGlsbyBCYXkgb24gdGhlIGVhc3Qgc2lkZSBvZiB0aGUgQmlnIElzbGFuZC4gQ29udGludW91cyBzYW1wbGluZyBvZiB0aGlzIGFyZWEgcHJvdmlkZXMgYSByZWNvcmQgb2YgYmFzZWxpbmUgY29uZGl0aW9ucyBvZiB0aGUgY2hlbWljYWwgYW5kIGJpb2xvZ2ljYWwgZW52aXJvbm1lbnQgZm9yIGNvbXBhcmlzb24gd2hlbiB0aGVyZSBhcmUgcG9sbHV0aW9uIGV2ZW50cyBzdWNoIGFzIHN0b3JtIHJ1bm9mZiBvciBhIHNld2FnZSBzcGlsbC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuZGVwdGggKERpc3RhbmNlIGJlbG93IG1lYW4gc2VhIGxldmVsLCBtKVxuc3RhdGlvbl9uYW1lIChXUUItMDQ6IFBhY0lPT1MgV2F0ZXIgUXVhbGl0eSBCdW95IDA0OiBIaWxvIEJheSwgQmlnIElzbGFuZCwgSGF3YWlpKVxudGVtcGVyYXR1cmUgKHdhdGVyIHRlbXBlcmF0dXJlIChwcm9jZXNzZWQpLCBDZWxzaXVzKVxuc2FsaW5pdHkgKHNhbGluaXR5IFBTVSAocHJvY2Vzc2VkKSwgMSlcbnR1cmJpZGl0eSAodHVyYmlkaXR5IE5UVSAocHJvY2Vzc2VkKSwgMSlcbmNobG9yb3BoeWxsIChjaGxvcm9waHlsbCAocHJvY2Vzc2VkKSwgdWcvTClcbm94eWdlbiAoZGlzc29sdmVkIG94eWdlbiBjb25jZW50cmF0aW9uIChwcm9jZXNzZWQpLCBtZy9MKVxub3h5Z2VuX3NhdHVyYXRpb24gKGRpc3NvbHZlZCBveHlnZW4gc2F0dXJhdGlvbiAocHJvY2Vzc2VkKSwgJSlcbnBoIChwSCAocHJvY2Vzc2VkKSwgMSlcbnRlbXBlcmF0dXJlX3JhdyAod2F0ZXIgdGVtcGVyYXR1cmUgKHJhdyksIENlbHNpdXMpXG50ZW1wZXJhdHVyZV9kbV9xZCAod2F0ZXIgdGVtcGVyYXR1cmUgZGVsYXllZC1tb2RlIHF1YWxpdHkgZGVzY3JpcHRvciwgMClcbnRlbXBlcmF0dXJlX3FjX2FnZyAoUUFSVE9EIEFnZ3JlZ2F0ZS9Sb2xsdXAgVGVzdCAocHJvY2Vzc2VkKSwgMClcbnRlbXBlcmF0dXJlX3FjX2dhcCAoUUFSVE9EIEdhcCBUZXN0IChwcm9jZXNzZWQpLCAwKVxudGVtcGVyYXR1cmVfcWNfc3luIChRQVJUT0QgU3ludGF4IFRlc3QgKHByb2Nlc3NlZCksIDApXG50ZW1wZXJhdHVyZV9xY19sb2MgKFFBUlRPRCBMb2NhdGlvbiBUZXN0IChwcm9jZXNzZWQpLCAwKVxudGVtcGVyYXR1cmVfcWNfcm5nIChRQVJUT0QgR3Jvc3MgUmFuZ2UgVGVzdCAocHJvY2Vzc2VkKSwgMClcbnRlbXBlcmF0dXJlX3FjX2NsbSAoUUFSVE9EIENsaW1hdG9sb2d5IFRlc3QgKHByb2Nlc3NlZCksIDApXG50ZW1wZXJhdHVyZV9xY19zcGsgKFFBUlRPRCBTcGlrZSBUZXN0IChwcm9jZXNzZWQpLCAwKVxudGVtcGVyYXR1cmVfcWNfcnRjIChRQVJUT0QgUmF0ZSBvZiBDaGFuZ2UgVGVzdCAocHJvY2Vzc2VkKSwgMClcbnRlbXBlcmF0dXJlX3FjX2ZsdCAoUUFSVE9EIEZsYXQgTGluZSBUZXN0IChwcm9jZXNzZWQpLCAwKVxuLi4uICg5NCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9XUUItMDRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL1dRQi0wNF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9XUUItMDQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wYWNpb29zLmhhd2FpaS5lZHUvd2F0ZXIvd3FidW95LWhpbG8vIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL1dRQi0wNC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9V1FCLTA0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlBhY2lmaWMgSXNsYW5kcyBPY2VhbiBPYnNlcnZpbmcgU3lzdGVtIChQYWNJT09TKSIsICJXUUItMDQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvV1FCLTA1LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9XUUItMDUiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvV1FCLTA1LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlBhY0lPT1MgV2F0ZXIgUXVhbGl0eSBCdW95IDA1OiBQZWxla2FuZSBCYXksIEJpZyBJc2xhbmQsIEhhd2FpaSIsICJUaGUgd2F0ZXIgcXVhbGl0eSBidW95cyBhcmUgcGFydCBvZiB0aGUgUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIGFuZCBhcmUgZGVzaWduZWQgdG8gbWVhc3VyZSBhIHZhcmlldHkgb2Ygb2NlYW4gcGFyYW1ldGVycyBhdCBmaXhlZCBwb2ludHMuIFdRQi0wNSBpcyBsb2NhdGVkIGluIFBlbGVrYW5lIEJheSBuZWFyIEthd2FpaGFlIEhhcmJvciBvbiB0aGUgd2VzdCBzaWRlIG9mIHRoZSBCaWcgSXNsYW5kLiBDb250aW51b3VzIHNhbXBsaW5nIG9mIHRoaXMgYXJlYSBwcm92aWRlcyBhIHJlY29yZCBvZiBiYXNlbGluZSBjb25kaXRpb25zIG9mIHRoZSBjaGVtaWNhbCBhbmQgYmlvbG9naWNhbCBlbnZpcm9ubWVudCBmb3IgY29tcGFyaXNvbiB3aGVuIHRoZXJlIGFyZSBwb2xsdXRpb24gZXZlbnRzIHN1Y2ggYXMgc3Rvcm0gcnVub2ZmIG9yIGEgc2V3YWdlIHNwaWxsLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5kZXB0aCAoRGlzdGFuY2UgYmVsb3cgbWVhbiBzZWEgbGV2ZWwsIG0pXG5zdGF0aW9uX25hbWUgKFdRQi0wNTogUGFjSU9PUyBXYXRlciBRdWFsaXR5IEJ1b3kgMDU6IFBlbGVrYW5lIEJheSwgQmlnIElzbGFuZCwgSGF3YWlpKVxudGVtcGVyYXR1cmUgKHdhdGVyIHRlbXBlcmF0dXJlIChwcm9jZXNzZWQpLCBDZWxzaXVzKVxuc2FsaW5pdHkgKHNhbGluaXR5IFBTVSAocHJvY2Vzc2VkKSwgMSlcbnR1cmJpZGl0eSAodHVyYmlkaXR5IE5UVSAocHJvY2Vzc2VkKSwgMSlcbmNobG9yb3BoeWxsIChjaGxvcm9waHlsbCAocHJvY2Vzc2VkKSwgdWcvTClcbm94eWdlbiAoZGlzc29sdmVkIG94eWdlbiBjb25jZW50cmF0aW9uIChwcm9jZXNzZWQpLCBtZy9MKVxub3h5Z2VuX3NhdHVyYXRpb24gKGRpc3NvbHZlZCBveHlnZW4gc2F0dXJhdGlvbiAocHJvY2Vzc2VkKSwgJSlcbnBoIChwSCAocHJvY2Vzc2VkKSwgMSlcbnRlbXBlcmF0dXJlX3JhdyAod2F0ZXIgdGVtcGVyYXR1cmUgKHJhdyksIENlbHNpdXMpXG50ZW1wZXJhdHVyZV9kbV9xZCAod2F0ZXIgdGVtcGVyYXR1cmUgZGVsYXllZC1tb2RlIHF1YWxpdHkgZGVzY3JpcHRvciwgMClcbnRlbXBlcmF0dXJlX3FjX2FnZyAoUUFSVE9EIEFnZ3JlZ2F0ZS9Sb2xsdXAgVGVzdCAocHJvY2Vzc2VkKSwgMClcbnRlbXBlcmF0dXJlX3FjX2dhcCAoUUFSVE9EIEdhcCBUZXN0IChwcm9jZXNzZWQpLCAwKVxudGVtcGVyYXR1cmVfcWNfc3luIChRQVJUT0QgU3ludGF4IFRlc3QgKHByb2Nlc3NlZCksIDApXG50ZW1wZXJhdHVyZV9xY19sb2MgKFFBUlRPRCBMb2NhdGlvbiBUZXN0IChwcm9jZXNzZWQpLCAwKVxudGVtcGVyYXR1cmVfcWNfcm5nIChRQVJUT0QgR3Jvc3MgUmFuZ2UgVGVzdCAocHJvY2Vzc2VkKSwgMClcbnRlbXBlcmF0dXJlX3FjX2NsbSAoUUFSVE9EIENsaW1hdG9sb2d5IFRlc3QgKHByb2Nlc3NlZCksIDApXG50ZW1wZXJhdHVyZV9xY19zcGsgKFFBUlRPRCBTcGlrZSBUZXN0IChwcm9jZXNzZWQpLCAwKVxudGVtcGVyYXR1cmVfcWNfcnRjIChRQVJUT0QgUmF0ZSBvZiBDaGFuZ2UgVGVzdCAocHJvY2Vzc2VkKSwgMClcbnRlbXBlcmF0dXJlX3FjX2ZsdCAoUUFSVE9EIEZsYXQgTGluZSBUZXN0IChwcm9jZXNzZWQpLCAwKVxuLi4uICg5NCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9XUUItMDVfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL1dRQi0wNV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9XUUItMDUvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wYWNpb29zLmhhd2FpaS5lZHUvd2F0ZXIvd3FidW95LXBlbGVrYW5lLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9XUUItMDUucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPVdRQi0wNSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJQYWNpZmljIElzbGFuZHMgT2NlYW4gT2JzZXJ2aW5nIFN5c3RlbSAoUGFjSU9PUykiLCAiV1FCLTA1Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0FXUy1ITkxQaWVyMS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvQVdTLUhOTFBpZXIxIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0FXUy1ITkxQaWVyMS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIFdlYXRoZXIgU3RhdGlvbjogSG9ub2x1bHUgSGFyYm9yIEVudHJhbmNlLCBPYWh1LCBIYXdhaWkiLCAiVGhlIFBhY2lmaWMgSXNsYW5kcyBPY2VhbiBPYnNlcnZpbmcgU3lzdGVtIChQYWNJT09TKSBvcGVyYXRlcyBhIERhdmlzIEluc3RydW1lbnRzIGF1dG9tYXRpYyB3ZWF0aGVyIHN0YXRpb24gKEFXUykgbmVhciB0aGUgZW50cmFuY2UgdG8gSG9ub2x1bHUgSGFyYm9yIG9uIHRoZSBsZWV3YXJkICh3ZXN0ZXJuKSBjb2FzdCBvZiBPYWh1IGluIEhhd2FpaSB0byBhaWQgd2l0aCBuYXZpZ2F0aW9uLiBUaGUgc3RhdGlvbiByZWNvcmRzIG1lYXN1cmVtZW50cyBldmVyeSA1IG1pbnV0ZXMgb2YgYWlyIHRlbXBlcmF0dXJlLCB3aW5kIHNwZWVkIGFuZCBkaXJlY3Rpb24sIHByZWNpcGl0YXRpb24sIHJlbGF0aXZlIGh1bWlkaXR5LCBhbmQgYWlyIHByZXNzdXJlLiBTZW5zb3JzIGFyZSBsb2NhdGVkIGF0IFBpZXIgMSwgaW5zdGFsbGVkIG9uIGEgdG93ZXIgYXQgYW4gZWxldmF0aW9uIG9mIDY0IGZlZXQgKDE5LjUgbWV0ZXJzKSBhYm92ZSBzZWEgbGV2ZWwuIFRoZSBzdGF0aW9uIGlzIG93bmVkIGJ5IHRoZSBIYXdhaWkgUGlsb3RzIEFzc29jaWF0aW9uIChIUEEpLiBQYWNJT09TIG1haW50YWlucyB0aGUgc3RhdGlvbiBhbmQgcHJvdmlkZXMgZGF0YSBhY2Nlc3MuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFsdGl0dWRlIChEaXN0YW5jZSBhYm92ZSBtZWFuIHNlYSBsZXZlbCwgbSlcbnN0YXRpb25fbmFtZSAoQVdTLUhOTFBpZXIxOiBQYWNJT09TIFdlYXRoZXIgU3RhdGlvbjogSG9ub2x1bHUgSGFyYm9yIEVudHJhbmNlLCBPYWh1LCBIYXdhaWkpXG5haXJfdGVtcGVyYXR1cmUgKGFpciB0ZW1wZXJhdHVyZSAocHJvY2Vzc2VkKSwgQ2Vsc2l1cylcbndpbmRfc3BlZWQgKHdpbmQgc3BlZWQgKHByb2Nlc3NlZCksIG0vcylcbmd1c3Rfc3BlZWQgKGd1c3Qgc3BlZWQgKHByb2Nlc3NlZCksIG0vcylcbndpbmRfZnJvbV9kaXJlY3Rpb24gKHdpbmQgZGlyZWN0aW9uIChwcm9jZXNzZWQpLCBkZWdyZWVzKVxucmFpbmZhbGxfcmF0ZSAocmFpbiByYXRlIChwcm9jZXNzZWQpLCBtbS9oKVxucmVsYXRpdmVfaHVtaWRpdHkgKHJlbGF0aXZlIGh1bWlkaXR5IChwcm9jZXNzZWQpLCAlKVxuYWlyX3ByZXNzdXJlIChhaXIgcHJlc3N1cmUgKHByb2Nlc3NlZCksIG1pbGxpYmFycylcbmFpcl90ZW1wZXJhdHVyZV9yYXcgKGFpciB0ZW1wZXJhdHVyZSAocmF3KSwgQ2Vsc2l1cylcbmFpcl90ZW1wZXJhdHVyZV9kbV9xZCAoYWlyIHRlbXBlcmF0dXJlIGRlbGF5ZWQtbW9kZSBxdWFsaXR5IGRlc2NyaXB0b3IsIDApXG5haXJfdGVtcGVyYXR1cmVfcWNfYWdnIChRQVJUT0QgQWdncmVnYXRlL1JvbGx1cCBUZXN0IChwcm9jZXNzZWQpLCAwKVxuYWlyX3RlbXBlcmF0dXJlX3FjX2dhcCAoUUFSVE9EIEdhcCBUZXN0IChwcm9jZXNzZWQpLCAwKVxuYWlyX3RlbXBlcmF0dXJlX3FjX3N5biAoUUFSVE9EIFN5bnRheCBUZXN0IChwcm9jZXNzZWQpLCAwKVxuYWlyX3RlbXBlcmF0dXJlX3FjX2xvYyAoUUFSVE9EIExvY2F0aW9uIFRlc3QgKHByb2Nlc3NlZCksIDApXG5haXJfdGVtcGVyYXR1cmVfcWNfcm5nIChRQVJUT0QgR3Jvc3MgUmFuZ2UgVGVzdCAocHJvY2Vzc2VkKSwgMClcbmFpcl90ZW1wZXJhdHVyZV9xY19jbG0gKFFBUlRPRCBDbGltYXRvbG9neSBUZXN0IChwcm9jZXNzZWQpLCAwKVxuYWlyX3RlbXBlcmF0dXJlX3FjX3NwayAoUUFSVE9EIFNwaWtlIFRlc3QgKHByb2Nlc3NlZCksIDApXG4uLi4gKDkyIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL0FXUy1ITkxQaWVyMV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvQVdTLUhOTFBpZXIxX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL0FXUy1ITkxQaWVyMS9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBhY2lvb3MuaGF3YWlpLmVkdS93ZWF0aGVyL29icy1ob25vbHVsdS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvQVdTLUhOTFBpZXIxLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1BV1MtSE5MUGllcjEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgIkFXUy1ITkxQaWVyMSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9DaHVrY2hpU2VhXzQ1NGFfMDM3YV9mY2Y0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9DaHVrY2hpU2VhXzQ1NGFfMDM3YV9mY2Y0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0NodWtjaGlTZWFfNDU0YV8wMzdhX2ZjZjQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUE1FTCBFY29GT0NJIENodWtjaGkgU2VhIHByb2ZpbGUgZGF0YSwgMjAxMC0yMDEyIiwgIlBhY2lmaWMgTWFyaW5lIEVudmlyb25tZW50YWwgTGFib3JhdG9yeSAoUE1FTCkgRmlzaGVyaWVzLU9jZWFub2dyYXBoeSBDb29wZXJhdGl2ZSBJbnZlc3RpZ2F0aW9ucyAoRk9DSSkgQ2h1a2NoaSBTZWEuIFBNRUwgRWNvRk9DSSBkYXRhIGZyb20gYSBsb2NhbCBzb3VyY2UuXG5cbmNkbV9kYXRhX3R5cGUgPSBQcm9maWxlXG5WQVJJQUJMRVM6XG5wcm9mXG5pZCAocHJvZmlsZSBpZClcbmNhc3QgKGNhc3QgbnVtYmVyKVxuY3J1aXNlIChDcnVpc2UgbmFtZSlcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sb25naXR1ZGUgKHN0YXRpb24gbG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sb24zNjAgKHN0YXRpb24gbG9uZ2l0dWRlIDM2MCwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKHN0YXRpb24gbGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG5kZXB0aCAobSlcbm9jZWFuX3RlbXBlcmF0dXJlXzEgKFRlbXBlcmF0dXJlIDFcciwgRGVncmVlX0MpXG5vY2Vhbl90ZW1wZXJhdHVyZV8yIChUZW1wZXJhdHVyZSAyXHIsIERlZ3JlZV9DKVxub2NlYW5fZGlzc29sdmVkX294eWdlbl9jb25jZW50cmF0aW9uXzFfbUxwZXJMIChkaXNzb2x2ZWQgb3h5Z2VuIGNvbmNlbnRyYXRpb24gMSBtTC9MXHIsIG1ML0wpXG5vY2Vhbl9kaXNzb2x2ZWRfb3h5Z2VuX2NvbmNlbnRyYXRpb25fMl9tTHBlckwgKGRpc3NvbHZlZCBveHlnZW4gY29uY2VudHJhdGlvbiAyIG1ML0xcciwgbUwvTClcbnBob3Rvc3ludGhldGljYWxseV9hY3RpdmVfcmFkaWF0aW9uIChQaG90b3N5bnRoZXRpY2FsbHkgQWN0aXZlIFJhZGlhdGlvblxyLCBtaWNyb0VpbiBjbS0yIHMtMSlcbm9jZWFuX2NobG9yb3BoeWxsX2FfY29uY2VudHJhdGlvbl9mYWN0b3J5Q2FsIChDaGxvcm9waHlsbCBhIENvbmNlbnRyYXRpb24gKEZhY3RvcnkgQ2FsaWJyYXRpb24pXHIsIG1pY3JvZ3JhbXMvTClcbm9jZWFuX2NobG9yb3BoeWxsX2ZsdW9yZXNjZW5jZV9yYXcgKFJhdyBDaGxvcm9waHlsbCBGbG91cmVzY2VuY2Vcciwgdm9sdHMpXG5vY2Vhbl9wcmFjdGljYWxfc2FsaW5pdHlfMSAoU2FsaW5pdHkgMSAoUFNVIFBTUy03OClcciwgUFNVKVxub2NlYW5fcHJhY3RpY2FsX3NhbGluaXR5XzIgKFNhbGluaXR5IDIgKFBTVSBQU1MtNzgpXHIsIFBTVSlcbm9jZWFuX3NpZ21hX3QgKFNpZ21hLVQsIGtnIG0tMylcbnNlYV93YXRlcl9udXRyaWVudF9ib3R0bGVfbnVtYmVyIChOdXRyaWVudHMgTmlza2luIEJvdHRsZSBOdW1iZXJcciwgbnVtYmVyKVxuc2VhX3dhdGVyX3Bob3NwaGF0ZV9jb25jZW50cmF0aW9uIChQTzQsIG1pY3JvbW9sZXMva2cpXG5zZWFfd2F0ZXJfc2lsaWNhdGVfY29uY2VudHJhdGlvbiAoU0ksIG1pY3JvbW9sZXMva2cpXG5zZWFfd2F0ZXJfbml0cmF0ZV9jb25jZW50cmF0aW9uIChOTzMsIG1pY3JvbW9sZXMva2cpXG5zZWFfd2F0ZXJfbml0cml0ZV9jb25jZW50cmF0aW9uIChOTzIsIG1pY3JvbW9sZXMva2cpXG5zZWFfd2F0ZXJfYW1tb25pdW1fY29uY2VudHJhdGlvbiAoTkg0LCBtaWNyb21vbGVzL2tnKVxub2NlYW5fZGlzc29sdmVkX294eWdlbl9jb25jZW50cmF0aW9uXzFfbU1wZXJrZyAoRGlzc29sdmVkIE94eWdlbiBDb25jZW50cmF0aW9uIDEgbU1vbGVzL2tnXHIsIG1pY3JvbW9sZXMva2cpXG5vY2Vhbl9kaXNzb2x2ZWRfb3h5Z2VuX2NvbmNlbnRyYXRpb25fMl9tTXBlcmtnIChEaXNzb2x2ZWQgT3h5Z2VuIENvbmNlbnRyYXRpb24gMiBtTW9sZXMva2dcciwgbWljcm9tb2xlcy9rZylcbm9jZWFuX294eWdlbl9zYXR1cmF0aW9uXzEgKE94eWdlbiBQZXJjZW50IFNhdHVyYXRpb24gMVxyLCBwZXJjZW50IHNhdHVyYXRpb24pXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvQ2h1a2NoaVNlYV80NTRhXzAzN2FfZmNmNF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvQ2h1a2NoaVNlYV80NTRhXzAzN2FfZmNmNF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9DaHVrY2hpU2VhXzQ1NGFfMDM3YV9mY2Y0L2luZGV4Lmpzb24iLCAid3d3LmVjb2ZvY2kubm9hYS5nb3YiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvQ2h1a2NoaVNlYV80NTRhXzAzN2FfZmNmNC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9Q2h1a2NoaVNlYV80NTRhXzAzN2FfZmNmNCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJQTUVMIEVjb0ZPQ0kiLCAiQ2h1a2NoaVNlYV80NTRhXzAzN2FfZmNmNCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hcmN0aWNSZXNjdWVEYXRhX2U1YmZfY2VmOF8zZjcyLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hcmN0aWNSZXNjdWVEYXRhX2U1YmZfY2VmOF8zZjcyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2FyY3RpY1Jlc2N1ZURhdGFfZTViZl9jZWY4XzNmNzIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUE1FTCBFY29GT0NJIEVhcmx5IEFyY3RpYyBEYXRhLCAxOTg2LTE5OTEiLCAiUGFjaWZpYyBNYXJpbmUgRW52aXJvbm1lbnRhbCBMYWJvcmF0b3J5IChQTUVMKSBGaXNoZXJpZXMtT2NlYW5vZ3JhcGh5IENvb3BlcmF0aXZlIEludmVzdGlnYXRpb25zIChGT0NJKSBFYXJseSBBcmN0aWMgRGF0YSwgMTk4NyAtIDE5OTFcblxuY2RtX2RhdGFfdHlwZSA9IFByb2ZpbGVcblZBUklBQkxFUzpcbnByb2ZcbmlkIChwcm9maWxlIGlkKVxuY2FzdCAoY2FzdCBudW1iZXIpXG5jcnVpc2UgKENydWlzZSBuYW1lKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxvbmdpdHVkZSAoc3RhdGlvbiBsb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxvbjM2MCAoc3RhdGlvbiBsb25naXR1ZGUgMzYwLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoc3RhdGlvbiBsYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbmRlcHRoIChtKVxub2NlYW5fdGVtcGVyYXR1cmVfMSAoVGVtcGVyYXR1cmUgMVxyLCBEZWdyZWVfQylcbm9jZWFuX2NveF9zYWxpbml0eV8xIChzZWFfd2F0ZXJfcHJhY3RpY2FsX3NhbGluaXR5LCBQU1UpXG5vY2Vhbl9wcmFjdGljYWxfc2FsaW5pdHlfMSAoU2FsaW5pdHkgMSAoUFNVIFBTUy03OClcciwgUFNVKVxub2NlYW5fc2lnbWFfdCAoU2lnbWEtVCwga2cgbS0zKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2FyY3RpY1Jlc2N1ZURhdGFfZTViZl9jZWY4XzNmNzJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2FyY3RpY1Jlc2N1ZURhdGFfZTViZl9jZWY4XzNmNzJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXJjdGljUmVzY3VlRGF0YV9lNWJmX2NlZjhfM2Y3Mi9pbmRleC5qc29uIiwgInd3dy5lY29mb2NpLm5vYWEuZ292IiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2FyY3RpY1Jlc2N1ZURhdGFfZTViZl9jZWY4XzNmNzIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWFyY3RpY1Jlc2N1ZURhdGFfZTViZl9jZWY4XzNmNzImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUE1FTCBFY29GT0NJIiwgImFyY3RpY1Jlc2N1ZURhdGFfZTViZl9jZWY4XzNmNzIiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvU2hlbGlrb2ZfbGluZThfMzY5NV8wYWRhX2QwNjYuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL1NoZWxpa29mX2xpbmU4XzM2OTVfMGFkYV9kMDY2IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL1NoZWxpa29mX2xpbmU4XzM2OTVfMGFkYV9kMDY2LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlBNRUwgRWNvRk9DSSBTaGVsaWtvZiBMaW5lIDggRGF0YSwgMTk4MS1vcGVuIiwgIlBhY2lmaWMgTWFyaW5lIEVudmlyb25tZW50YWwgTGFib3JhdG9yeSAoUE1FTCkgRmlzaGVyaWVzLU9jZWFub2dyYXBoeSBDb29wZXJhdGl2ZSBJbnZlc3RpZ2F0aW9ucyAoRk9DSSkgU2hlbGlrb2YgTGluZSA4IERhdGFcblxuY2RtX2RhdGFfdHlwZSA9IFByb2ZpbGVcblZBUklBQkxFUzpcbnByb2ZcbmlkIChwcm9maWxlIGlkKVxuY2FzdCAoY2FzdCBudW1iZXIpXG5jcnVpc2UgKENydWlzZSBuYW1lKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxvbmdpdHVkZSAoc3RhdGlvbiBsb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxvbjM2MCAoc3RhdGlvbiBsb25naXR1ZGUgMzYwLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoc3RhdGlvbiBsYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbmRlcHRoIChtKVxub2NlYW5fdGVtcGVyYXR1cmVfMSAoVGVtcGVyYXR1cmUgMVxyLCBEZWdyZWVfQylcbm9jZWFuX2NveF9zYWxpbml0eV8xIChzZWFfd2F0ZXJfcHJhY3RpY2FsX3NhbGluaXR5LCBQU1UpXG5vY2Vhbl9jaGxvcm9waHlsbF9mbHVvcmVzY2VuY2VfcmF3IChSYXcgQ2hsb3JvcGh5bGwgRmxvdXJlc2NlbmNlXHIsIHZvbHRzKVxucGhvdG9zeW50aGV0aWNhbGx5X2FjdGl2ZV9yYWRpYXRpb24gKFBob3Rvc3ludGhldGljYWxseSBBY3RpdmUgUmFkaWF0aW9uXHIsIG1pY3JvRWluIGNtLTIgcy0xKVxub2NlYW5fc2lnbWFfdCAoU2lnbWEtVCwga2cgbS0zKVxub2NlYW5fY2hsb3JvcGh5bGxfYV9jb25jZW50cmF0aW9uX2ZhY3RvcnlDYWwgKENobG9yb3BoeWxsIGEgQ29uY2VudHJhdGlvbiAoRmFjdG9yeSBDYWxpYnJhdGlvbilcciwgbWljcm9ncmFtcy9MKVxub2NlYW5fZGlzc29sdmVkX294eWdlbl9jb25jZW50cmF0aW9uXzFfbU1wZXJrZyAoRGlzc29sdmVkIE94eWdlbiBDb25jZW50cmF0aW9uIDEgbU1vbGVzL2tnXHIsIG1pY3JvbW9sZXMva2cpXG5vY2Vhbl9kaXNzb2x2ZWRfb3h5Z2VuX2NvbmNlbnRyYXRpb25fMl9tTXBlcmtnIChtb2xlX2NvbmNlbnRyYXRpb25fb2ZfZGlzc29sdmVkX21vbGVjdWxhcl9veHlnZW5faW5fc2VhX3dhdGVyLCBtaWNyb21vbGVzL2tnKVxub2NlYW5fZHluYW1pY19oZWlnaHQgKER5bmFtaWMgSGVpZ2h0LCBkeW5hbWljIG1ldGVycylcbm9jZWFuX294eWdlbl9zYXR1cmF0aW9uXzEgKE94eWdlbiBQZXJjZW50IFNhdHVyYXRpb24gMVxyLCBwZXJjZW50IHNhdHVyYXRpb24pXG5vY2Vhbl9wcmFjdGljYWxfc2FsaW5pdHlfMSAoU2FsaW5pdHkgMSAoUFNVIFBTUy03OClcciwgUFNVKVxub2NlYW5fcHJhY3RpY2FsX3NhbGluaXR5XzIgKFNhbGluaXR5IDIgKFBTVSBQU1MtNzgpXHIsIFBTVSlcbm9jZWFuX3RlbXBlcmF0dXJlXzIgKFRlbXBlcmF0dXJlIDJcciwgRGVncmVlX0MpXG5waG90b3N5bnRoZXRpY2FsbHlfYWN0aXZlX3JhZGlhdGlvbl9yYXcgKFJhdyBQaG90b3N5bnRoZXRpY2FsbHkgQWN0aXZlIFJhZGlhdGlvblxyLCB2b2x0cylcbnRyYW5zbWl0dGFuY2VfcGVyY2VudGFnZSAoUGVyY2VudCBMaWdodCBUcmFuc21pdHRhbmNlLCBwZXJjZW50KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL1NoZWxpa29mX2xpbmU4XzM2OTVfMGFkYV9kMDY2X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9TaGVsaWtvZl9saW5lOF8zNjk1XzBhZGFfZDA2Nl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9TaGVsaWtvZl9saW5lOF8zNjk1XzBhZGFfZDA2Ni9pbmRleC5qc29uIiwgInd3dy5lY29mb2NpLm5vYWEuZ292IiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL1NoZWxpa29mX2xpbmU4XzM2OTVfMGFkYV9kMDY2LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1TaGVsaWtvZl9saW5lOF8zNjk1XzBhZGFfZDA2NiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJQTUVMIEVjb0ZPQ0kiLCAiU2hlbGlrb2ZfbGluZThfMzY5NV8wYWRhX2QwNjYiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwV0RDOTQxN25ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwV0RDOTQxN25ydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXREM5NDE3bnJ0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlJlc2VhcmNoIFNoaXAgQXRsYW50aWMgRXhwbG9yZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUXVhbGl0eSBDb250cm9sbGVkIiwgIlJlc2VhcmNoIFNoaXAgQXRsYW50aWMgRXhwbG9yZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LlxuJz1+JyBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS5cblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLlxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLlxuKERvbid0IGluY2x1ZGUgYmFja3NsYXNoZXMgaW4geW91ciBxdWVyeS4pXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgxOSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBXREM5NDE3bnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBXREM5NDE3bnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcFdEQzk0MTducnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwV0RDOTQxN25ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwV0RDOTQxN25ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwV0RDOTQxN25ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBLQVFQLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBLQVFQIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcEtBUVAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUmVzZWFyY2ggU2hpcCBBdGxhbnRpcyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiUmVzZWFyY2ggU2hpcCBBdGxhbnRpcyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuXG4nPX4nIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLlxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuXG4oRG9uJ3QgaW5jbHVkZSBiYWNrc2xhc2hlcyBpbiB5b3VyIHF1ZXJ5LilcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDMzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdVJlc2VhcmNoU2hpcEtBUVBfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdVJlc2VhcmNoU2hpcEtBUVBfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1UmVzZWFyY2hTaGlwS0FRUC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VSZXNlYXJjaFNoaXBLQVFQLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VSZXNlYXJjaFNoaXBLQVFQJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VSZXNlYXJjaFNoaXBLQVFQIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcEtBUVBucnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcEtBUVBucnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwS0FRUG5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJSZXNlYXJjaCBTaGlwIEF0bGFudGlzIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJSZXNlYXJjaCBTaGlwIEF0bGFudGlzIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS5cbic9ficgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci5cblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy5cbihEb24ndCBpbmNsdWRlIGJhY2tzbGFzaGVzIGluIHlvdXIgcXVlcnkuKVxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbi4uLiAoMzMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1UmVzZWFyY2hTaGlwS0FRUG5ydF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1UmVzZWFyY2hTaGlwS0FRUG5ydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VSZXNlYXJjaFNoaXBLQVFQbnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdVJlc2VhcmNoU2hpcEtBUVBucnQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdVJlc2VhcmNoU2hpcEtBUVBucnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdVJlc2VhcmNoU2hpcEtBUVBucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwTkVQUC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwTkVQUCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBORVBQLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlJlc2VhcmNoIFNoaXAgSGVhbHkgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUXVhbGl0eSBDb250cm9sbGVkIiwgIlJlc2VhcmNoIFNoaXAgSGVhbHkgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LlxuJz1+JyBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS5cblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLlxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLlxuKERvbid0IGluY2x1ZGUgYmFja3NsYXNoZXMgaW4geW91ciBxdWVyeS4pXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgyMiBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBORVBQX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBORVBQX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcE5FUFAvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwTkVQUC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwTkVQUCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwTkVQUCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXREE3ODI3bnJ0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXREE3ODI3bnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdEQTc4MjducnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUmVzZWFyY2ggU2hpcCBLaWxvIE1vYW5hIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJSZXNlYXJjaCBTaGlwIEtpbG8gTW9hbmEgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LlxuJz1+JyBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS5cblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLlxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLlxuKERvbid0IGluY2x1ZGUgYmFja3NsYXNoZXMgaW4geW91ciBxdWVyeS4pXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgyMCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBXREE3ODI3bnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBXREE3ODI3bnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcFdEQTc4MjducnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwV0RBNzgyN25ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwV0RBNzgyN25ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwV0RBNzgyN25ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBLQ0VKLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBLQ0VKIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcEtDRUouZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUmVzZWFyY2ggU2hpcCBLbm9yciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiUmVzZWFyY2ggU2hpcCBLbm9yciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuXG4nPX4nIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLlxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuXG4oRG9uJ3QgaW5jbHVkZSBiYWNrc2xhc2hlcyBpbiB5b3VyIHF1ZXJ5LilcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDMzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdVJlc2VhcmNoU2hpcEtDRUpfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdVJlc2VhcmNoU2hpcEtDRUpfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1UmVzZWFyY2hTaGlwS0NFSi9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VSZXNlYXJjaFNoaXBLQ0VKLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VSZXNlYXJjaFNoaXBLQ0VKJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VSZXNlYXJjaFNoaXBLQ0VKIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdDWDc0NDVucnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdDWDc0NDVucnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwV0NYNzQ0NW5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJSZXNlYXJjaCBTaGlwIExhdXJlbmNlIE0uIEdvdWxkIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJSZXNlYXJjaCBTaGlwIExhdXJlbmNlIE0uIEdvdWxkIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS5cbic9ficgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci5cblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy5cbihEb24ndCBpbmNsdWRlIGJhY2tzbGFzaGVzIGluIHlvdXIgcXVlcnkuKVxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbi4uLiAoMjEgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1UmVzZWFyY2hTaGlwV0NYNzQ0NW5ydF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1UmVzZWFyY2hTaGlwV0NYNzQ0NW5ydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VSZXNlYXJjaFNoaXBXQ1g3NDQ1bnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdVJlc2VhcmNoU2hpcFdDWDc0NDVucnQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdVJlc2VhcmNoU2hpcFdDWDc0NDVucnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdVJlc2VhcmNoU2hpcFdDWDc0NDVucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwV0VDQm5ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwV0VDQm5ydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXRUNCbnJ0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlJlc2VhcmNoIFNoaXAgTWVsdmlsbGUgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUXVhbGl0eSBDb250cm9sbGVkIiwgIlJlc2VhcmNoIFNoaXAgTWVsdmlsbGUgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LlxuJz1+JyBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS5cblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLlxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLlxuKERvbid0IGluY2x1ZGUgYmFja3NsYXNoZXMgaW4geW91ciBxdWVyeS4pXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgxOSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBXRUNCbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBXRUNCbnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcFdFQ0JucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwV0VDQm5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwV0VDQm5ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwV0VDQm5ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXQlAzMjEwLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXQlAzMjEwIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdCUDMyMTAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUmVzZWFyY2ggU2hpcCBOYXRoYW5pZWwgQi4gUGFsbWVyIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJSZXNlYXJjaCBTaGlwIE5hdGhhbmllbCBCLiBQYWxtZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LlxuJz1+JyBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS5cblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLlxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLlxuKERvbid0IGluY2x1ZGUgYmFja3NsYXNoZXMgaW4geW91ciBxdWVyeS4pXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgxOCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBXQlAzMjEwX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBXQlAzMjEwX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcFdCUDMyMTAvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwV0JQMzIxMC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwV0JQMzIxMCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwV0JQMzIxMCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXQlAzMjEwbnJ0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXQlAzMjEwbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdCUDMyMTBucnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUmVzZWFyY2ggU2hpcCBOYXRoYW5pZWwgQi4gUGFsbWVyIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJSZXNlYXJjaCBTaGlwIE5hdGhhbmllbCBCLiBQYWxtZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LlxuJz1+JyBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS5cblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLlxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLlxuKERvbid0IGluY2x1ZGUgYmFja3NsYXNoZXMgaW4geW91ciBxdWVyeS4pXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgxOCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBXQlAzMjEwbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBXQlAzMjEwbnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcFdCUDMyMTBucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwV0JQMzIxMG5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwV0JQMzIxMG5ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwV0JQMzIxMG5ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXS1dCbnJ0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXS1dCbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdLV0JucnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUmVzZWFyY2ggU2hpcCBOZXcgSG9yaXpvbiBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiUmVzZWFyY2ggU2hpcCBOZXcgSG9yaXpvbiBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuXG4nPX4nIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLlxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuXG4oRG9uJ3QgaW5jbHVkZSBiYWNrc2xhc2hlcyBpbiB5b3VyIHF1ZXJ5LilcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDI1IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdVJlc2VhcmNoU2hpcFdLV0JucnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdVJlc2VhcmNoU2hpcFdLV0JucnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1UmVzZWFyY2hTaGlwV0tXQm5ydC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VSZXNlYXJjaFNoaXBXS1dCbnJ0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VSZXNlYXJjaFNoaXBXS1dCbnJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VSZXNlYXJjaFNoaXBXS1dCbnJ0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdYQVEuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdYQVEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwV1hBUS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJSZXNlYXJjaCBTaGlwIE9jZWFudXMgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUXVhbGl0eSBDb250cm9sbGVkIiwgIlJlc2VhcmNoIFNoaXAgT2NlYW51cyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuXG4nPX4nIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLlxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuXG4oRG9uJ3QgaW5jbHVkZSBiYWNrc2xhc2hlcyBpbiB5b3VyIHF1ZXJ5LilcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDI5IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdVJlc2VhcmNoU2hpcFdYQVFfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdVJlc2VhcmNoU2hpcFdYQVFfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1UmVzZWFyY2hTaGlwV1hBUS9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VSZXNlYXJjaFNoaXBXWEFRLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VSZXNlYXJjaFNoaXBXWEFRJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VSZXNlYXJjaFNoaXBXWEFRIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdTUTI2NzRucnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdTUTI2NzRucnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwV1NRMjY3NG5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJSZXNlYXJjaCBTaGlwIFJvYmVydCBHb3Jkb24gU3Byb3VsIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJSZXNlYXJjaCBTaGlwIFJvYmVydCBHb3Jkb24gU3Byb3VsIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS5cbic9ficgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci5cblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy5cbihEb24ndCBpbmNsdWRlIGJhY2tzbGFzaGVzIGluIHlvdXIgcXVlcnkuKVxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbi4uLiAoNyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBXU1EyNjc0bnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBXU1EyNjc0bnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcFdTUTI2NzRucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwV1NRMjY3NG5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwV1NRMjY3NG5ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwV1NRMjY3NG5ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBLQU9VbnJ0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBLQU9VbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcEtBT1VucnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUmVzZWFyY2ggU2hpcCBSb2dlciBSZXZlbGxlIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJSZXNlYXJjaCBTaGlwIFJvZ2VyIFJldmVsbGUgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LlxuJz1+JyBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS5cblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLlxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLlxuKERvbid0IGluY2x1ZGUgYmFja3NsYXNoZXMgaW4geW91ciBxdWVyeS4pXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgyMCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBLQU9VbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBLQU9VbnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcEtBT1VucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwS0FPVW5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwS0FPVW5ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwS0FPVW5ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBWTEhKLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBWTEhKIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFZMSEouZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUmVzZWFyY2ggU2hpcCBTb3V0aGVybiBTdXJ2ZXlvciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiUmVzZWFyY2ggU2hpcCBTb3V0aGVybiBTdXJ2ZXlvciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuXG4nPX4nIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLlxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuXG4oRG9uJ3QgaW5jbHVkZSBiYWNrc2xhc2hlcyBpbiB5b3VyIHF1ZXJ5LilcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDI3IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdVJlc2VhcmNoU2hpcFZMSEpfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdVJlc2VhcmNoU2hpcFZMSEpfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1UmVzZWFyY2hTaGlwVkxISi9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VSZXNlYXJjaFNoaXBWTEhKLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VSZXNlYXJjaFNoaXBWTEhKJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VSZXNlYXJjaFNoaXBWTEhKIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcEtURFFucnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcEtURFFucnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwS1REUW5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJSZXNlYXJjaCBTaGlwIFQuIEcuIFRob21wc29uIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJSZXNlYXJjaCBTaGlwIFQuIEcuIFRob21wc29uIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS5cbic9ficgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci5cblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy5cbihEb24ndCBpbmNsdWRlIGJhY2tzbGFzaGVzIGluIHlvdXIgcXVlcnkuKVxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbi4uLiAoMTcgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1UmVzZWFyY2hTaGlwS1REUW5ydF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1UmVzZWFyY2hTaGlwS1REUW5ydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VSZXNlYXJjaFNoaXBLVERRbnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdVJlc2VhcmNoU2hpcEtURFFucnQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdVJlc2VhcmNoU2hpcEtURFFucnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdVJlc2VhcmNoU2hpcEtURFFucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwWk1GUm5ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwWk1GUm5ydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBaTUZSbnJ0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlJlc2VhcmNoIFNoaXAgVGFuZ2Fyb2EgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUXVhbGl0eSBDb250cm9sbGVkIiwgIlJlc2VhcmNoIFNoaXAgVGFuZ2Fyb2EgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LlxuJz1+JyBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS5cblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLlxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLlxuKERvbid0IGluY2x1ZGUgYmFja3NsYXNoZXMgaW4geW91ciBxdWVyeS4pXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgxNyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBaTUZSbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBaTUZSbnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcFpNRlJucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwWk1GUm5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwWk1GUm5ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwWk1GUm5ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9GRURfUm9ja2Zpc2hfQ2F0Y2guc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0ZFRF9Sb2NrZmlzaF9DYXRjaCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9GRURfUm9ja2Zpc2hfQ2F0Y2guZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUm9ja2Zpc2ggUmVjcnVpdG1lbnQgYW5kIEVjb3N5c3RlbSBBc3Nlc3NtZW50IFN1cnZleSwgQ2F0Y2ggRGF0YSIsICJUaGUgRmlzaGVyaWVzIEVjb2xvZ3kgRGl2aXNpb24gKEZFRCwgaHR0cHM6Ly9zd2ZzYy5ub2FhLmdvdi9Hcm91bmRmaXNoQW5hbHlzaXMvKSBvZiB0aGUgU291dGh3ZXN0IEZpc2hlcmllcyBTY2llbmNlIENlbnRlciAoU1dGU0MpIGhhcyBjb25kdWN0ZWQgYSBtaWR3YXRlciB0cmF3bCBzdXJ2ZXkgb2ZmIGNlbnRyYWwgQ2FsaWZvcm5pYSBzaW5jZSAxOTgzIHdpdGggdGhlIHByaW1hcnkgZ29hbCBvZiBkZXZlbG9waW5nIHByZS1yZWNydWl0IGluZGljZXMgZm9yIHlvdW5nLW9mLXRoZS15ZWFyIChZT1kpIHJvY2tmaXNoIChTZWJhc3RlcyBzcHAuKS4gVGhlIHN1cnZleSBhbHNvIHNhbXBsZXMgbnVtZXJvdXMgb3RoZXIgY29tcG9uZW50cyBvZiB0aGUgZXBpcGVsYWdpYyBtaWNyb25la3RvbiwgaW5jbHVkaW5nIG90aGVyIFlPWSBncm91bmRmaXNoIChzdWNoIGFzIFBhY2lmaWMgaGFrZSwgTWVybHVjY2l1cyBwcm9kdWN0dXMsIGFuZCBzYW5kZGFiLCBDaXRoYXJpY2h0aHlzIHNwcCApLCBjb2FzdGFsIHBlbGFnaWMgZmlzaGVzIChzdWNoIGFzIFBhY2lmaWMgc2FyZGluZSwgU2FyZGlub3BzIHNhZ2F4LCBhbmQgbm9ydGhlcm4gYW5jaG92eSwgRW5ncmF1bGlzIG1vcmRheCkgYW5kIG90aGVyIGZvcmFnZSBzcGVjaWVzLiAgQWRkaXRpb25hbCBkZXRhaWxzIHJlZ2FyZGluZyB0aGUgc3VydmV5IG1ldGhvZHMgYW5kIHJlc3VsdHMgYXJlIGRlc2NyaWJlZCBpbiBSYWxzdG9uIGV0IGFsLiAoMjAxNSkgYW5kIFNha3VtYSBldCBhbC4gKGh0dHA6Ly9jYWxjb2ZpLm9yZy9wdWJsaWNhdGlvbnMvY2FsY29maXJlcG9ydHMvdjU3L1ZvbDU3LVNha3VtYV9wYWdlcy4xNjMtMTgzLnBkZikuIFJhbHN0b24sIFMuLCBKLkMuIEZpZWxkIGFuZCBLLlMuIFNha3VtYS4gMjAxNS4gTG9uZ3Rlcm0gdmFyaWF0aW9uIGluIGEgY2VudHJhbCBDYWxpZm9ybmlhIHBlbGFnaWMgZm9yYWdlIGFzc2VtYmxhZ2UuIEpvdXJuYWwgb2YgTWFyaW5lIFN5c3RlbXMgMTQ2OiAyNi0zNy4gaHR0cHM6Ly9keC5kb2kub3JnLzEwLjEwMTYvai5qbWFyc3lzLjIwMTQuMDYuMDEzLiBTYWt1bWEsIEsuTS4sIEouQy4gRmllbGQsIEIuQi4gTWFyaW5vdmljLCBDLk4uIENhcnJpb24sIE4uSi4gTWFudHVhIGFuZCBTLiBSYWxzdG9uLiBJbiByZXZpc2lvbi4gQW5vbWFsb3VzIGVwaXBlbGFnaWMgbWljcm9uZWt0b24gYXNzZW1ibGFnZSBwYXR0ZXJucyBpbiB0aGUgbmVyaXRpYyB3YXRlcnMgb2YgdGhlIENhbGlmb3JuaWEgQ3VycmVudCBpbiBzcHJpbmcgMjAxNSBkdXJpbmcgYSBwZXJpb2Qgb2YgZXh0cmVtZSBvY2VhbiBjb25kaXRpb25zLiBDYWxDT0ZJIFJlcG9ydHMuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxudGltZSAoTmV0LWluIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoTmV0LWluIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChOZXQtaW4gTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5jcnVpc2VcbmhhdWxfbm8gKEhhdWwgTnVtYmVyKVxudmVzc2VsXG5zdGF0aW9uIChTdGF0aW9uIE51bWJlcilcbmNhdGNoXG5zcGVjaWVzX2NvZGVcbmNvbW1vbl9uYW1lXG5zY2lfbmFtZSAoU2NpZW50aWZpYyBuYW1lKVxuc3BlY2llc19ncm91cFxubWF0dXJpdHlcbnNwZWNpZXNfbm90ZXNcbi4uLiAoMTQgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvRkVEX1JvY2tmaXNoX0NhdGNoX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9GRURfUm9ja2Zpc2hfQ2F0Y2hfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vRkVEX1JvY2tmaXNoX0NhdGNoL2luZGV4Lmpzb24iLCAiaHR0cDovL2NhbGNvZmkub3JnL3B1YmxpY2F0aW9ucy9jYWxjb2ZpcmVwb3J0cy92NTcvVm9sNTctU2FrdW1hX3BhZ2VzLjE2My0xODMucGRmIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL0ZFRF9Sb2NrZmlzaF9DYXRjaC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9RkVEX1JvY2tmaXNoX0NhdGNoJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk1GUyBTV0ZTQyBGRUQiLCAiRkVEX1JvY2tmaXNoX0NhdGNoIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ydGNjdGRDTUF5c2kiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcnRjY3RkQ01BeXNpLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlJUQyBDYXJxaW5leiBZU0kgQXJjaGl2ZWQgZGF0YSIsICJBcmNoaXZlZCBDTUEgZGF0YSAtIHVuZWRpdGVkIHZhcmlhYmxlIG5hbWVzXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxudGVtcGVyYXR1cmUgKFdhdGVyIFRlbXBlcmF0dXJlLCBkZWdyZWVzIEMpXG5zcGNvbmQgKHVTL2NtKVxuY29uZCAodVMvY20pXG5yZXNpc3QgKE9obSpjbSlcblREUyAoZy9MKVxuc2FsaW5pdHkgKHBwdClcbnByZXNzdXJlIChwc2lyKVxuZGVwdGggKG0pXG5waFxucGhtdiAocEgsIG1WKVxuY2hsICh1Zy9MKVxuY2hscmZ1IChjaGwsIFJGVSlcbnR1cmJpZCAoVHVyYmlkKywgTlRVKVxub2Rvc2F0ICglKVxub2RvIChtZy9MKVxuYmF0dCAoYmF0dGVyeSwgdm9sdHMpXG5zdGF0aW9uX2lkXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3J0Y2N0ZENNQXlzaV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcnRjY3RkQ01BeXNpX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3J0Y2N0ZENNQXlzaS9pbmRleC5qc29uIiwgImh0dHBzOi8vc2ZiZWFtcy5zZnN1LmVkdS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcnRjY3RkQ01BeXNpLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ydGNjdGRDTUF5c2kmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUlRDIiwgInJ0Y2N0ZENNQXlzaSJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcnRjY3RkQ01BeXNpcnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcnRjY3RkQ01BeXNpcnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUlRDIENhcnFpbmV6IFlTSSBSYXcgZGF0YSIsICJUZXN0IG9mIGluc3RhbGxpbmcgRVJEREFQIG9uIHRvcCBvZiBZU0kgb3V0cHV0LlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnRlbXBlcmF0dXJlIChXYXRlciBUZW1wZXJhdHVyZSwgZGVncmVlcyBDKVxuc3Bjb25kICh1Uy9jbSlcbmNvbmQgKHVTL2NtKVxucmVzaXN0IChPaG0qY20pXG5URFMgKGcvTClcbnNhbGluaXR5IChwcHQpXG5wcmVzc3VyZSAocHNpcilcbmRlcHRoIChtKVxucGhcbnBobXYgKHBILCBtVilcbmNobCAodWcvTClcbmNobHJmdSAoY2hsLCBSRlUpXG50dXJiaWQgKFR1cmJpZCssIE5UVSlcbm9kb3NhdCAoJSlcbm9kbyAobWcvTClcbmJhdHQgKGJhdHRlcnksIHZvbHRzKVxuc3RhdGlvbl9pZFxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ydGNjdGRDTUF5c2lydF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcnRjY3RkQ01BeXNpcnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcnRjY3RkQ01BeXNpcnQvaW5kZXguanNvbiIsICJodHRwczovL3NmYmVhbXMuc2ZzdS5lZHUvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3J0Y2N0ZENNQXlzaXJ0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ydGNjdGRDTUF5c2lydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJSVEMiLCAicnRjY3RkQ01BeXNpcnQiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3J0Y21ldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ydGNtZXQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUlRDIE1ldFN0YXRpb24gQXJjaGl2ZWQgZGF0YSIsICJBcmNoaXZlZCBSVEMgTWV0IGRhdGEgLSB1bmVkaXRlZCB2YXJpYWJsZSBuYW1lc1xuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbkFpclRfQVZHIChBaXIgVGVtcGVyYXR1cmUsIGRlZ3JlZXMgQylcblJIIChSZWxhdGl2ZSBIdW1pZGl0eSwgJSlcbkJQX0FWRyAoQmFyb21ldHJpYyBQcmVzc3VyZSwgbWJhcilcblNscldfQVZHICh3YXR0cyBzLTFtLTIpXG5QQVJfRGVuX0FWRyAoXHUwMGMyXHUwMGI1bW9sIHMtMW0tMilcblJhaW5fVE9UIChtbSlcbldTX1NfV1ZUIChtL3MpXG5XU19VX1dWVCAobS9zKVxuV2luZERpcl9EVV9XVlQgKGRlZylcbldpbmREaXJfU0RVX1dWVCAoZGVnKVxuV1NfTUFYIChtL3MpXG5QQVJfRGVuXzJfQVZHIChcdTAwYzJcdTAwYjVtb2wgcy0xbS0yKVxuc3RhdGlvbl9pZFxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ydGNtZXRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3J0Y21ldF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ydGNtZXQvaW5kZXguanNvbiIsICJodHRwczovL3NmYmVhbXMuc2ZzdS5lZHUvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3J0Y21ldC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cnRjbWV0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlJUQyIsICJydGNtZXQiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3J0Y21ldHJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3J0Y21ldHJ0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlJUQyBNZXRTdGF0aW9uIHJlYWwgdGltZSBkYXRhIiwgIlJlYWwgVGltZSBSVEMgTWV0IGRhdGEgLSB1bmVkaXRlZCB2YXJpYWJsZSBuYW1lc1xuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbkFpclRfQVZHIChBaXIgVGVtcGVyYXR1cmUsIGRlZ3JlZXMgQylcblJIIChSZWxhdGl2ZSBIdW1pZGl0eSwgJSlcbkJQX0FWRyAoQmFyb21ldHJpYyBQcmVzc3VyZSwgbWJhcilcblNscldfQVZHICh3YXR0cyBzLTFtLTIpXG5QQVJfRGVuX0FWRyAoXHUwMGI1bW9sIHMtMW0tMilcblJhaW5fVE9UIChtbSlcbldTX1NfV1ZUIChtL3MpXG5XU19VX1dWVCAobS9zKVxuV2luZERpcl9EVV9XVlQgKGRlZylcbldpbmREaXJfU0RVX1dWVCAoZGVnKVxuV1NfTUFYIChtL3MpXG5zdGF0aW9uX2lkXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3J0Y21ldHJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9ydGNtZXRydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ydGNtZXRydC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2ZiZWFtcy5zZnN1LmVkdS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcnRjbWV0cnQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXJ0Y21ldHJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlJUQyIsICJydGNtZXRydCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcnRjY3RkU2VhYmlyZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ydGNjdGRTZWFiaXJkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlJUQyBTZWFiaXJkIEFyY2hpdmVkIGRhdGEiLCAiQXJjaGl2ZWQgUlRDIFNlYWJpcmQgZGF0YSAtIHVuZWRpdGVkIHZhcmlhYmxlIG5hbWVzXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxudGVtcGVyYXR1cmUgKFdhdGVyIFRlbXBlcmF0dXJlLCBkZWdyZWVzIEMpXG5jb25kICh1Uy9jbSlcbnByZXNzdXJlIChwc2lyKVxuc2t1ZmExIChWKVxuc2t1ZmEyIChWKVxueG1pcyAoJSlcbnBhciAobWljcm9Nb2wqbS0yKnMtMSlcbnNhbGluaXR5IChwc3MpXG5zaWdtYSAoa2cvbTMpXG5pbnN0X1NOIChJbnN0cnVtZW50IFNlcmlhbCBOdW1iZXIpXG5zdGF0aW9uX2lkXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3J0Y2N0ZFNlYWJpcmRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3J0Y2N0ZFNlYWJpcmRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcnRjY3RkU2VhYmlyZC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2ZiZWFtcy5zZnN1LmVkdS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcnRjY3RkU2VhYmlyZC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cnRjY3RkU2VhYmlyZCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJSVEMiLCAicnRjY3RkU2VhYmlyZCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcnRjY3RkUlRDeXNpIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3J0Y2N0ZFJUQ3lzaS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJSVEMgWVNJIEFyY2hpdmVkIGRhdGEiLCAiQXJjaGl2ZWQgUlRDIGRhdGEgLSB1bmVkaXRlZCB2YXJpYWJsZSBuYW1lc1xuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnRlbXBlcmF0dXJlIChXYXRlciBUZW1wZXJhdHVyZSwgZGVncmVlcyBDKVxuc3Bjb25kICh1Uy9jbSlcbmNvbmQgKHVTL2NtKVxucmVzaXN0IChPaG0qY20pXG5URFMgKGcvTClcbnNhbGluaXR5IChwcHQpXG5wcmVzc3VyZSAocHNpcilcbmRlcHRoIChtKVxucGhcbnBobXYgKHBILCBtVilcbmNobCAodWcvTClcbmNobHJmdSAoY2hsLCBSRlUpXG50dXJiaWQgKFR1cmJpZCssIE5UVSlcbm9kb3NhdCAoJSlcbm9kbyAobWcvTClcbmJhdHQgKGJhdHRlcnksIHZvbHRzKVxuc3RhdGlvbl9pZFxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ydGNjdGRSVEN5c2lfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3J0Y2N0ZFJUQ3lzaV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ydGNjdGRSVEN5c2kvaW5kZXguanNvbiIsICJodHRwczovL3NmYmVhbXMuc2ZzdS5lZHUvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3J0Y2N0ZFJUQ3lzaS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cnRjY3RkUlRDeXNpJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlJUQyIsICJydGNjdGRSVEN5c2kiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3J0Y2N0ZFJUQ3lzaXJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3J0Y2N0ZFJUQ3lzaXJ0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlJUQyBZU0kgUmF3IGRhdGEiLCAiVGVzdCBvZiBpbnN0YWxsaW5nIEVSRERBUCBvbiB0b3Agb2YgWVNJIG91dHB1dC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG50ZW1wZXJhdHVyZSAoV2F0ZXIgVGVtcGVyYXR1cmUsIGRlZ3JlZXMgQylcbnNwY29uZCAodVMvY20pXG5jb25kICh1Uy9jbSlcbnJlc2lzdCAoT2htKmNtKVxuVERTIChnL0wpXG5zYWxpbml0eSAocHB0KVxucHJlc3N1cmUgKHBzaXIpXG5kZXB0aCAobSlcbnBoXG5waG12IChwSCwgbVYpXG5jaGwgKHVnL0wpXG5jaGxyZnUgKGNobCwgUkZVKVxudHVyYmlkIChUdXJiaWQrLCBOVFUpXG5vZG9zYXQgKCUpXG5vZG8gKG1nL0wpXG5iYXR0IChiYXR0ZXJ5LCB2b2x0cylcbnN0YXRpb25faWRcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcnRjY3RkUlRDeXNpcnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3J0Y2N0ZFJUQ3lzaXJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3J0Y2N0ZFJUQ3lzaXJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zZmJlYW1zLnNmc3UuZWR1LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9ydGNjdGRSVEN5c2lydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cnRjY3RkUlRDeXNpcnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUlRDIiwgInJ0Y2N0ZFJUQ3lzaXJ0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2dvbW9vc0J1b3kuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2dvbW9vc0J1b3kiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZ29tb29zQnVveS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJTZW5zb3IgRGF0YSBmcm9tIHRoZSBHb01PT1MgU09TIFNlcnZlciwgMjAwMC1wcmVzZW50IiwgIlRoZSBPQ0VBTlMgSUUgLS0gZm9ybWFsbHkgYXBwcm92ZWQgYXMgYW4gT0dDIEludGVyb3BlcmFiaWxpdHlcbkV4cGVyaW1lbnQgaW4gRGVjZW1iZXIgMjAwNiAtLSBlbmdhZ2VzIGRhdGEgbWFuYWdlcnMgYW5kIHNjaWVudGlzdHNcbmluIHRoZSBPY2Vhbi1PYnNlcnZpbmcgY29tbXVuaXR5IHRvIGFkdmFuY2UgdGhlaXIgdW5kZXJzdGFuZGluZyBhbmRcbmFwcGxpY2F0aW9uIG9mIHZhcmlvdXMgT0dDIHNwZWNpZmljYXRpb25zLCBzb2xpZGlmeSBkZW1vbnN0cmF0aW9uc1xuZm9yIE9jZWFuIFNjaWVuY2UgYXBwbGljYXRpb24gYXJlYXMsIGhhcmRlbiBzb2Z0d2FyZVxuaW1wbGVtZW50YXRpb25zLCBhbmQgcHJvZHVjZSBjYW5kaWRhdGUgT0dDIEJlc3QgUHJhY3RpY2VzIGRvY3VtZW50c1xudGhhdCBjYW4gYmUgdXNlZCB0byBpbmZvcm0gdGhlIGJyb2FkZXIgb2NlYW4tb2JzZXJ2aW5nIGNvbW11bml0eS5cblxuQmVjYXVzZSBvZiB0aGUgbmF0dXJlIG9mIFNPUyByZXF1ZXN0cywgcmVxdWVzdHMgZm9yIGRhdGEgTVVTVFxuaW5jbHVkZSBjb25zdHJhaW50cyBmb3IgdGhlIGxvbmdpdHVkZSwgbGF0aXR1ZGUsIHRpbWUsIGFuZC9vclxuc3RhdGlvbl9pZCB2YXJpYWJsZXMuXG5cbkluaXRpYXRvcnM6IFNVUkEgKGxlYWQpLCBUZXhhcyBBJk0gVW5pdmVyc2l0eSwgTUJBUkksIEdvTU9PUyBhbmRcblVuaWRhdGEuXG5cblNwZWNpZmljIGdvYWxzOlxuKiBDb21wYXJlIFNlbnNvciBPYnNlcnZhdGlvbiBTZXJ2aWNlIChTT1MpIGZyb20gdGhlIE9HQydzIFNlbnNvclxuICBXZWIgRW5hYmxlbWVudCAoU1dFKSBpbml0aWF0aXZlIHRvIHRoZSBXZWIgRmVhdHVyZSBTZXJ2aWNlIChXRlMpXG4gIGFzIGFwcGxpZWQgdG8gb2NlYW4gZGF0YSBpbiBhIHZhcmlldHkgb2YgZGF0YSBmb3JtYXRzIGluY2x1ZGluZ1xuICB0ZXh0IGZpbGVzLCBuZXRDREYgZmlsZXMsIHJlbGF0aW9uYWwgZGF0YWJhc2VzLCBhbmQgcG9zc2libHlcbiAgbmF0aXZlIHNlbnNvciBvdXRwdXQ7IChzZWUgRXhwZXJpbWVudCAjMSBmb3IgZGV0YWlscylcbiogTWFrZSB1c2Ugb2Ygc2VtYW50aWMgbWVkaWF0aW9uIHZpYSBTZW1hbnRpYyBXZWIgdGVjaG5vbG9naWVzIHRvXG4gIGFsbG93IHBsdXJhbGl0eSBvZiBpZGVudGlmaWNhdGlvbiBmb3Igc291cmNlIHR5cGVzIChwbGF0Zm9ybXNcbiAgYW5kIHNlbnNvcnMpIGFuZCBwaGVub21lbmEgdHlwZXM7XG4qIFRlc3QgYWdncmVnYXRpb24gc2VydmljZXMgYW5kIGNhY2hpbmcgc3RyYXRlZ2llcyB0byBwcm92aWRlXG4gIGVmZmljaWVudCBxdWVyaWVzO1xuKiBFeHBsb3JlIHBvc3NpYmxlIGVuaGFuY2VtZW50cyBvZiBUSFJFRERTIHNlcnZlciwgc28gdGhhdCBUSFJFRERTXG4gIHJlc2lkZW50IGRhdGEgc291cmNlcyBtaWdodCBiZSBtYWRlIGF2YWlsYWJsZSB2aWEgU09TIG9yIFdGUztcblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgxOSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9nb21vb3NCdW95X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9nb21vb3NCdW95X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2dvbW9vc0J1b3kvaW5kZXguanNvbiIsICJodHRwczovL3RpZGVzYW5kY3VycmVudHMubm9hYS5nb3YvZ29tb29zLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZ29tb29zQnVveS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9Z29tb29zQnVveSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJHb01PT1MiLCAiZ29tb29zQnVveSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9uZXJhY29vc1Nvcy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbmVyYWNvb3NTb3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbmVyYWNvb3NTb3MuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiU2Vuc29yIERhdGEgZnJvbSB0aGUgTkVSQUNPT1MgU09TIFNlcnZlciwgMjAwMC1wcmVzZW50IiwgIk5vcnRoZWFzdGVybiBSZWdpb25hbCBBc3NvY2lhdGlvbiBvZiBDb2FzdGFsIE9jZWFuXG4gICAgICAgIE9ic2VydmluZyBTeXN0ZW1zIChORVJBQ09PUykgU2Vuc29yIE9ic2VydmF0aW9uIFNlcnZpY2UgKFNPUylcbiAgICAgICAgVGhlIE9DRUFOUyBJRSAtLSBmb3JtYWxseSBhcHByb3ZlZCBhcyBhbiBPR0MgSW50ZXJvcGVyYWJpbGl0eVxuRXhwZXJpbWVudCBpbiBEZWNlbWJlciAyMDA2IC0tIGVuZ2FnZXMgZGF0YSBtYW5hZ2VycyBhbmQgc2NpZW50aXN0c1xuaW4gdGhlIE9jZWFuLU9ic2VydmluZyBjb21tdW5pdHkgdG8gYWR2YW5jZSB0aGVpciB1bmRlcnN0YW5kaW5nIGFuZFxuYXBwbGljYXRpb24gb2YgdmFyaW91cyBPR0Mgc3BlY2lmaWNhdGlvbnMsIHNvbGlkaWZ5IGRlbW9uc3RyYXRpb25zXG5mb3IgT2NlYW4gU2NpZW5jZSBhcHBsaWNhdGlvbiBhcmVhcywgaGFyZGVuIHNvZnR3YXJlXG5pbXBsZW1lbnRhdGlvbnMsIGFuZCBwcm9kdWNlIGNhbmRpZGF0ZSBPR0MgQmVzdCBQcmFjdGljZXMgZG9jdW1lbnRzXG50aGF0IGNhbiBiZSB1c2VkIHRvIGluZm9ybSB0aGUgYnJvYWRlciBvY2Vhbi1vYnNlcnZpbmcgY29tbXVuaXR5LlxuXG5CZWNhdXNlIG9mIHRoZSBuYXR1cmUgb2YgU09TIHJlcXVlc3RzLCByZXF1ZXN0cyBmb3IgZGF0YSBNVVNUXG5pbmNsdWRlIGNvbnN0cmFpbnRzIGZvciB0aGUgbG9uZ2l0dWRlLCBsYXRpdHVkZSwgdGltZSwgYW5kL29yXG5zdGF0aW9uX2lkIHZhcmlhYmxlcy5cblxuSW5pdGlhdG9yczogU1VSQSAobGVhZCksIFRleGFzIEEmTSBVbml2ZXJzaXR5LCBNQkFSSSwgR29NT09TIGFuZFxuVW5pZGF0YS5cblxuU3BlY2lmaWMgZ29hbHM6XG4qIENvbXBhcmUgU2Vuc29yIE9ic2VydmF0aW9uIFNlcnZpY2UgKFNPUykgZnJvbSB0aGUgT0dDJ3MgU2Vuc29yXG4gIFdlYiBFbmFibGVtZW50IChTV0UpIGluaXRpYXRpdmUgdG8gdGhlIFdlYiBGZWF0dXJlIFNlcnZpY2UgKFdGUylcbiAgYXMgYXBwbGllZCB0byBvY2VhbiBkYXRhIGluIGEgdmFyaWV0eSBvZiBkYXRhIGZvcm1hdHMgaW5jbHVkaW5nXG4gIHRleHQgZmlsZXMsIG5ldENERiBmaWxlcywgcmVsYXRpb25hbCBkYXRhYmFzZXMsIGFuZCBwb3NzaWJseVxuICBuYXRpdmUgc2Vuc29yIG91dHB1dDsgKHNlZSBFeHBlcmltZW50ICMxIGZvciBkZXRhaWxzKVxuKiBNYWtlIHVzZSBvZiBzZW1hbnRpYyBtZWRpYXRpb24gdmlhIFNlbWFudGljIFdlYiB0ZWNobm9sb2dpZXMgdG9cbiAgYWxsb3cgcGx1cmFsaXR5IG9mIGlkZW50aWZpY2F0aW9uIGZvciBzb3VyY2UgdHlwZXMgKHBsYXRmb3Jtc1xuICBhbmQgc2Vuc29ycykgYW5kIHBoZW5vbWVuYSB0eXBlcztcbiogVGVzdCBhZ2dyZWdhdGlvbiBzZXJ2aWNlcyBhbmQgY2FjaGluZyBzdHJhdGVnaWVzIHRvIHByb3ZpZGVcbiAgZWZmaWNpZW50IHF1ZXJpZXM7XG4qIEV4cGxvcmUgcG9zc2libGUgZW5oYW5jZW1lbnRzIG9mIFRIUkVERFMgc2VydmVyLCBzbyB0aGF0IFRIUkVERFNcbiAgcmVzaWRlbnQgZGF0YSBzb3VyY2VzIG1pZ2h0IGJlIG1hZGUgYXZhaWxhYmxlIHZpYSBTT1Mgb3IgV0ZTO1xuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDE5IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL25lcmFjb29zU29zX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9uZXJhY29vc1Nvc19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9uZXJhY29vc1Nvcy9pbmRleC5qc29uIiwgImh0dHA6Ly93d3cubmVyYWNvb3Mub3JnLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9uZXJhY29vc1Nvcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bmVyYWNvb3NTb3Mmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTkVSQUNPT1MiLCAibmVyYWNvb3NTb3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkRmVkUm9ja2Zpc2hDdGQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEZlZFJvY2tmaXNoQ3RkIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEZlZFJvY2tmaXNoQ3RkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlNXRlNDIEZFRCBNaWQgV2F0ZXIgVHJhd2wgSnV2ZW5pbGUgUm9ja2Zpc2ggU3VydmV5LCBDVEQgRGF0YSwgMTk4Ny0yMDE1IiwgIlNXRlNDIEZFRCBNaWQgV2F0ZXIgVHJhd2wgSnV2ZW5pbGUgUm9ja2Zpc2ggU3VydmV5OiBDVEQgRGF0YS5cblN1cnZleXMgaGF2ZSBiZWVuIGNvbmR1Y3RlZCBhbG9uZyB0aGUgY2VudHJhbCBDYWxpZm9ybmlhIGNvYXN0IGluIE1heS9KdW5lIFxuZXZlcnkgeWVhciBzaW5jZSAxOTgzLiBJbiAyMDA0IHRoZSBzdXJ2ZXkgYXJlYSB3YXMgZXhwYW5kZWQgdG8gY292ZXIgdGhlIFxuZW50aXJlIGNvYXN0IGZyb20gU2FuIERpZWdvIHRvIENhcGUgTWVuZG9jaW5vLiAgVGhlIHN1cnZleSBzYW1wbGVzIGEgc2VyaWVzIFxub2YgZml4ZWQgdHJhd2wgc3RhdGlvbnMgdXNpbmcgYSBtaWR3YXRlciB0cmF3bC4gVGhlIG1pZHdhdGVyIHRyYXdsIHN1cnZleSBcbmdlYXIgY2FwdHVyZXMgc2lnbmlmaWNhbnQgbnVtYmVycyBvZiBhcHByb3hpbWF0ZWx5IDEwIHJvY2tmaXNoIHNwZWNpZXMgZHVyaW5nXG50aGVpciBwZWxhZ2ljIGp1dmVuaWxlIHN0YWdlIChpLmUuLCA1MC0xNTAgZGF5cyBvbGQpLCBieSB3aGljaCB0aW1lIGFubnVhbFxucmVwcm9kdWN0aXZlIHN1Y2Nlc3MgaGFzIGJlZW4gZXN0YWJsaXNoZWQuIENhdGNoLXBlci11bml0LWVmZm9ydCBkYXRhIGZyb21cbnRoZSBzdXJ2ZXkgYXJlIGFuYWx5emVkIGFuZCBzZXJ2ZSBhcyB0aGUgYmFzaXMgZm9yIHByZWRpY3RpbmcgZnV0dXJlIFxucmVjcnVpdG1lbnQgdG8gcm9ja2Zpc2ggZmlzaGVyaWVzLiBSZXN1bHRzIGZvciBzZXZlcmFsIHNwZWNpZXMgKGUuZy4sIFxuYm9jYWNjaW8sIGNoaWxpcGVwcGVyIFtTLiBnb29kZWldLCBhbmQgd2lkb3cgcm9ja2Zpc2ggW1MuIGVudG9tZWxhc10pIGhhdmVcbnNob3duIHRoYXQgdGhlIHN1cnZleSBkYXRhIGNhbiBiZSB1c2VmdWwgaW4gcHJlZGljdGluZyB5ZWFyLWNsYXNzIHN0cmVuZ3RoXG5pbiBhZ2UtYmFzZWQgc3RvY2sgYXNzZXNzbWVudHMuXG5cblRoZSBzdXJ2ZXkncyBkYXRhIG9uIFlPWSBQYWNpZmljIHdoaXRpbmcgaGFzIGFsc28gYmVlbiB1c2VkIGluIHRoZSBzdG9ja1xuYXNzZXNzbWVudCBwcm9jZXNzLiBUbyBhc3Npc3QgaW4gb2J0YWluaW5nIGFkZGl0aW9uYWwgbm9ydGh3YXJkIHNwYXRpYWxcbmNvdmVyYWdlIG9mIFlPWSBQYWNpZmljIHdoaXRpbmcgb2ZmIE9yZWdvbiBhbmQgV2FzaGluZ3RvbiwgaW4gMjAwMSB0aGVcblBhY2lmaWMgV2hpdGluZyBDb25zZXJ2YXRpb24gQ29vcGVyYXRpdmUgaW4gY29vcGVyYXRpb24gd2l0aCB0aGUgTk9BQSBOTUZTXG5Ob3J0aHdlc3QgRmlzaGVyaWVzIFNjaWVuY2UgQ2VudGVyIGJlZ2FuIGEgbWlkd2F0ZXIgdHJhd2wgc3VydmV5IHBhdHRlcm5lZFxuYWZ0ZXIgdGhlIE5PQUEgTk1GUyBTV0ZTQyBGaXNoZXJpZXMgRWNvbG9neSBEaXZpc2lvbidzIChGRUQpIGV4aXN0aW5nIHN1cnZleS4gXG5Cb3RoIHN1cnZleXMgd29yayBjb29wZXJhdGl2ZWx5IHRvZ2V0aGVyIGVhY2ggeWVhciBpbiBvcmRlciB0byByZXNvbHZlIFxuaW50ZXJhbm51YWwgYWJ1bmRhbmNlIHBhdHRlcm5zIG9mIFlPWSByb2NrZmlzaCBhbmQgUGFjaWZpYyB3aGl0aW5nIG9uIGEgXG5jb2FzdHdpZGUgYmFzaXMsIHdoaWNoIHByb3ZpZGVzIGV4cGVkaWVudCwgY3JpdGljYWwgaW5mb3JtYXRpb24gdGhhdCBjYW4gYmUgXG51c2VkIGluIHRoZSBmaXNoZXJpZXMgbWFuYWdlbWVudCBwcm9jZXNzLlxuXG5UaGUgbGFyZ2UgcXVhbnRpdHkgb2YgcGh5c2ljYWwgZGF0YSBjb2xsZWN0ZWQgZHVyaW5nIHRoZSBzdXJ2ZXlzIChlLmcuLCBDVERcbndpdGggYXR0YWNoZWQgdHJhbnNpbWlzc29tZXRlciBhbmQgZmx1b3JvbWV0ZXIsIHRoZXJtb3NhbGlub21ldGVyLCBhbmQgQURDUClcbmhhdmUgcHJvdmlkZWQgYSBiZXR0ZXIgdW5kZXJzdGFuZGluZyBvZiB0aGUgaHlkcm9ncmFwaGljIGNvbmRpdGlvbnMgb2ZmIHRoZVxuQ2FsaWZvcm5pYSBjb2FzdCBhbmQgYW5hbHlzaXMgb2YgdGhlc2UgZGF0YSBoYXZlIGJlZW4gZGlzdHJpYnV0ZWQgdGhyb3VnaCB0aGVcbnB1YmxpY2F0aW9uIG9mIE5PQUEgTk1GUyBUZWNobmljYWwgTWVtb3JhbmRhLlxuXG5Gb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlIGh0dHBzOi8vc3dmc2Mubm9hYS5nb3YvR3JvdW5kZmlzaEFuYWx5c2lzLyBhbmRcbmh0dHA6Ly93d3cuc2FuY3R1YXJ5c2ltb24ub3JnL3Byb2plY3RzL3Byb2plY3RfaW5mby5waHA/cHJvamVjdElEPTEwMDExOFxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVByb2ZpbGVcblZBUklBQkxFUzpcbmNydWlzZVxuLi4uICgxNyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRGZWRSb2NrZmlzaEN0ZF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkRmVkUm9ja2Zpc2hDdGRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkRmVkUm9ja2Zpc2hDdGQvaW5kZXguanNvbiIsICJodHRwczovL3N3ZnNjLm5vYWEuZ292L0dyb3VuZGZpc2hBbmFseXNpcy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkRmVkUm9ja2Zpc2hDdGQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZEZlZFJvY2tmaXNoQ3RkJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MgRkVEIiwgImVyZEZlZFJvY2tmaXNoQ3RkIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEZlZFJvY2tmaXNoU3RhdGlvbi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkRmVkUm9ja2Zpc2hTdGF0aW9uIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEZlZFJvY2tmaXNoU3RhdGlvbi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJTV0ZTQyBGRUQgTWlkIFdhdGVyIFRyYXdsIEp1dmVuaWxlIFJvY2tmaXNoIFN1cnZleSwgU3VyZmFjZSBEYXRhLCAxOTg3LTIwMTUiLCAiU1dGU0MgRkVEIE1pZCBXYXRlciBUcmF3bCBKdXZlbmlsZSBSb2NrZmlzaCBTdXJ2ZXk6IFN0YXRpb24gSW5mb3JtYXRpb24gYW5kIFN1cmZhY2UgRGF0YS5cblN1cnZleXMgaGF2ZSBiZWVuIGNvbmR1Y3RlZCBhbG9uZyB0aGUgY2VudHJhbCBDYWxpZm9ybmlhIGNvYXN0IGluIE1heS9KdW5lIFxuZXZlcnkgeWVhciBzaW5jZSAxOTgzLiBJbiAyMDA0IHRoZSBzdXJ2ZXkgYXJlYSB3YXMgZXhwYW5kZWQgdG8gY292ZXIgdGhlIFxuZW50aXJlIGNvYXN0IGZyb20gU2FuIERpZWdvIHRvIENhcGUgTWVuZG9jaW5vLiAgVGhlIHN1cnZleSBzYW1wbGVzIGEgc2VyaWVzIFxub2YgZml4ZWQgdHJhd2wgc3RhdGlvbnMgdXNpbmcgYSBtaWR3YXRlciB0cmF3bC4gVGhlIG1pZHdhdGVyIHRyYXdsIHN1cnZleSBcbmdlYXIgY2FwdHVyZXMgc2lnbmlmaWNhbnQgbnVtYmVycyBvZiBhcHByb3hpbWF0ZWx5IDEwIHJvY2tmaXNoIHNwZWNpZXMgZHVyaW5nXG50aGVpciBwZWxhZ2ljIGp1dmVuaWxlIHN0YWdlIChpLmUuLCA1MC0xNTAgZGF5cyBvbGQpLCBieSB3aGljaCB0aW1lIGFubnVhbFxucmVwcm9kdWN0aXZlIHN1Y2Nlc3MgaGFzIGJlZW4gZXN0YWJsaXNoZWQuIENhdGNoLXBlci11bml0LWVmZm9ydCBkYXRhIGZyb21cbnRoZSBzdXJ2ZXkgYXJlIGFuYWx5emVkIGFuZCBzZXJ2ZSBhcyB0aGUgYmFzaXMgZm9yIHByZWRpY3RpbmcgZnV0dXJlIFxucmVjcnVpdG1lbnQgdG8gcm9ja2Zpc2ggZmlzaGVyaWVzLiBSZXN1bHRzIGZvciBzZXZlcmFsIHNwZWNpZXMgKGUuZy4sIFxuYm9jYWNjaW8sIGNoaWxpcGVwcGVyIFtTLiBnb29kZWldLCBhbmQgd2lkb3cgcm9ja2Zpc2ggW1MuIGVudG9tZWxhc10pIGhhdmVcbnNob3duIHRoYXQgdGhlIHN1cnZleSBkYXRhIGNhbiBiZSB1c2VmdWwgaW4gcHJlZGljdGluZyB5ZWFyLWNsYXNzIHN0cmVuZ3RoXG5pbiBhZ2UtYmFzZWQgc3RvY2sgYXNzZXNzbWVudHMuXG5cblRoZSBzdXJ2ZXkncyBkYXRhIG9uIFlPWSBQYWNpZmljIHdoaXRpbmcgaGFzIGFsc28gYmVlbiB1c2VkIGluIHRoZSBzdG9ja1xuYXNzZXNzbWVudCBwcm9jZXNzLiBUbyBhc3Npc3QgaW4gb2J0YWluaW5nIGFkZGl0aW9uYWwgbm9ydGh3YXJkIHNwYXRpYWxcbmNvdmVyYWdlIG9mIFlPWSBQYWNpZmljIHdoaXRpbmcgb2ZmIE9yZWdvbiBhbmQgV2FzaGluZ3RvbiwgaW4gMjAwMSB0aGVcblBhY2lmaWMgV2hpdGluZyBDb25zZXJ2YXRpb24gQ29vcGVyYXRpdmUgaW4gY29vcGVyYXRpb24gd2l0aCB0aGUgTk9BQSBOTUZTXG5Ob3J0aHdlc3QgRmlzaGVyaWVzIFNjaWVuY2UgQ2VudGVyIGJlZ2FuIGEgbWlkd2F0ZXIgdHJhd2wgc3VydmV5IHBhdHRlcm5lZFxuYWZ0ZXIgdGhlIE5PQUEgTk1GUyBTV0ZTQyBGaXNoZXJpZXMgRWNvbG9neSBEaXZpc2lvbidzIChGRUQpIGV4aXN0aW5nIHN1cnZleS4gXG5Cb3RoIHN1cnZleXMgd29yayBjb29wZXJhdGl2ZWx5IHRvZ2V0aGVyIGVhY2ggeWVhciBpbiBvcmRlciB0byByZXNvbHZlIFxuaW50ZXJhbm51YWwgYWJ1bmRhbmNlIHBhdHRlcm5zIG9mIFlPWSByb2NrZmlzaCBhbmQgUGFjaWZpYyB3aGl0aW5nIG9uIGEgXG5jb2FzdHdpZGUgYmFzaXMsIHdoaWNoIHByb3ZpZGVzIGV4cGVkaWVudCwgY3JpdGljYWwgaW5mb3JtYXRpb24gdGhhdCBjYW4gYmUgXG51c2VkIGluIHRoZSBmaXNoZXJpZXMgbWFuYWdlbWVudCBwcm9jZXNzLlxuXG5UaGUgbGFyZ2UgcXVhbnRpdHkgb2YgcGh5c2ljYWwgZGF0YSBjb2xsZWN0ZWQgZHVyaW5nIHRoZSBzdXJ2ZXlzIChlLmcuLCBDVERcbndpdGggYXR0YWNoZWQgdHJhbnNpbWlzc29tZXRlciBhbmQgZmx1b3JvbWV0ZXIsIHRoZXJtb3NhbGlub21ldGVyLCBhbmQgQURDUClcbmhhdmUgcHJvdmlkZWQgYSBiZXR0ZXIgdW5kZXJzdGFuZGluZyBvZiB0aGUgaHlkcm9ncmFwaGljIGNvbmRpdGlvbnMgb2ZmIHRoZVxuQ2FsaWZvcm5pYSBjb2FzdCBhbmQgYW5hbHlzaXMgb2YgdGhlc2UgZGF0YSBoYXZlIGJlZW4gZGlzdHJpYnV0ZWQgdGhyb3VnaCB0aGVcbnB1YmxpY2F0aW9uIG9mIE5PQUEgTk1GUyBUZWNobmljYWwgTWVtb3JhbmRhLlxuXG5Gb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlIGh0dHBzOi8vc3dmc2Mubm9hYS5nb3YvR3JvdW5kZmlzaEFuYWx5c2lzLyBhbmRcbmh0dHA6Ly93d3cuc2FuY3R1YXJ5c2ltb24ub3JnL3Byb2plY3RzL3Byb2plY3RfaW5mby5waHA/cHJvamVjdElEPTEwMDExOFxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxuY3J1aXNlXG4uLi4gKDExIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZEZlZFJvY2tmaXNoU3RhdGlvbl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkRmVkUm9ja2Zpc2hTdGF0aW9uX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZEZlZFJvY2tmaXNoU3RhdGlvbi9pbmRleC5qc29uIiwgImh0dHBzOi8vc3dmc2Mubm9hYS5nb3YvR3JvdW5kZmlzaEFuYWx5c2lzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRGZWRSb2NrZmlzaFN0YXRpb24ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZEZlZFJvY2tmaXNoU3RhdGlvbiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIEZFRCIsICJlcmRGZWRSb2NrZmlzaFN0YXRpb24iXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkUHJkQ3RkLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRQcmRDdGQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkUHJkQ3RkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlNXRlNDIFByb3RlY3RlZCBSZXNvdXJjZXMgRGl2aXNpb24gQ1REIERhdGEiLCAiRGF0YSBmcm9tIE5PQUEgU1dGU0MgUHJvdGVjdGVkIFJlc291cmNlcyBEaXZpc2lvbiAoUFJEKS5cblxuY2RtX2RhdGFfdHlwZSA9IFRyYWplY3RvcnlcblZBUklBQkxFUzpcbnRyYWplY3RvcnlcbnNoaXBfc3RhdGlvbiAoU2hpcCBhbmQgU3RhdGlvbilcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuY2hsb3JvIChTdXJmYWNlIENobG9yb3BoeWxsLCB1ZyBMLTEpXG5waGFlbyAoU3VyZmFjZSBQaGFlb3BoeXRpbiwgdWcgTC0xKVxucHJvZHVjdGl2aXR5IChJbnRlZ3JhdGVkIEV1cGhvdGljIFpvbmUgUHJvZHVjdGl2aXR5LCBtZyBDYXJib24gbS0yIGRheS0xKVxuc3N0IChTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkUHJkQ3RkX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRQcmRDdGRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkUHJkQ3RkL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zd2ZzYy5ub2FhLmdvdi9tYWluLmFzcHg/RGl2aXNpb249UFJEJlBhcmVudE1lbnVJZD0xNDcmaWQ9MTIyMSIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRQcmRDdGQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZFByZEN0ZCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIFBSRCIsICJlcmRQcmRDdGQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlJc28uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5SXNvIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5SXNvLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTc3LXByZXNlbnQsIDIwQyBJc290aGVybSBEZXB0aCIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IDIwQyBJc290aGVybSBEZXB0aCBkYXRhICh0aGUgZGVwdGggYXQgd2hpY2ggdGhlIG9jZWFuIHRlbXBlcmF0dXJlIGlzIDIwQykgZnJvbSB0aGUgXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbklTT182ICgyMEMgSXNvdGhlcm0gRGVwdGgsIG0pXG5RSV81MDA2ICgyMEMgRGVwdGggUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheUlzb19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlJc29faXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlJc28vaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlJc28ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5SXNvJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5SXNvIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5QWlydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlBaXJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5QWlydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk3Ny1wcmVzZW50LCBBaXIgVGVtcGVyYXR1cmUiLCAiVGhpcyBkYXRhc2V0IGhhcyA1LWRheSBBaXIgVGVtcGVyYXR1cmUgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5BVF8yMSAoQWlyIFRlbXBlcmF0dXJlLCBkZWdyZWVfQylcblFBVF81MDIxIChBaXIgVGVtcGVyYXR1cmUgUXVhbGl0eSlcblNBVF82MDIxIChBaXIgVGVtcGVyYXR1cmUgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5QWlydF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlBaXJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW81ZGF5QWlydC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheUFpcnQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5QWlydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvNWRheUFpcnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlDdXIuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5Q3VyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5Q3VyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTc3LXByZXNlbnQsIEN1cnJlbnRzIiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgQ3VycmVudHMgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5VXzMyMCAoRWFzdHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBjbSBzLTEpXG5WXzMyMSAoTm9ydGh3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgY20gcy0xKVxuQ1NfMzAwIChTZWEgV2F0ZXIgVmVsb2NpdHksIGNtIHMtMSlcbkNEXzMxMCAoRGlyZWN0aW9uIG9mIFNlYSBXYXRlciBWZWxvY2l0eSwgZGVncmVlc190cnVlKVxuUUNTXzUzMDAgKEN1cnJlbnQgU3BlZWQgUXVhbGl0eSlcblFDRF81MzEwIChDdXJyZW50IERpcmVjdGlvbiBRdWFsaXR5KVxuU0NTXzYzMDAgKEN1cnJlbnQgU3BlZWQgU291cmNlKVxuQ0lDXzczMDAgKEN1cnJlbnQgSW5zdHJ1bWVudCBDb2RlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5Q3VyX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvNWRheUN1cl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheUN1ci9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheUN1ci5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhbzVkYXlDdXImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlDdXIiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlTc3Quc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5U3N0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5U3N0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTc3LXByZXNlbnQsIFNlYSBTdXJmYWNlIFRlbXBlcmF0dXJlIiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgU2VhIFN1cmZhY2UgVGVtcGVyYXR1cmUgKFNTVCkgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5UXzI1IChTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5RVF81MDI1IChTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSBRdWFsaXR5KVxuU1RfNjAyNSAoU2VhIFN1cmZhY2UgVGVtcGVyYXR1cmUgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5U3N0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvNWRheVNzdF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheVNzdC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheVNzdC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhbzVkYXlTc3Qmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlTc3QiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlULnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlULmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTc3LXByZXNlbnQsIFRlbXBlcmF0dXJlIiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgVGVtcGVyYXR1cmUgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5UXzIwIChTZWEgV2F0ZXIgVGVtcGVyYXR1cmUsIGRlZ3JlZV9DKVxuUVRfNTAyMCAoVGVtcGVyYXR1cmUgUXVhbGl0eSlcblNUXzYwMjAgKFRlbXBlcmF0dXJlIFNvdXJjZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5VF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheVQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlULnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheVQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlUIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5Vy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlXIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5Vy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk3Ny1wcmVzZW50LCBXaW5kIiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgV2luZCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbldVXzQyMiAoWm9uYWwgV2luZCwgbSBzLTEpXG5XVl80MjMgKE1lcmlkaW9uYWwgV2luZCwgbSBzLTEpXG5XU180MDEgKFdpbmQgU3BlZWQsIG0gcy0xKVxuUVdTXzU0MDEgKFdpbmQgU3BlZWQgUXVhbGl0eSlcblNXU182NDAxIChXaW5kIFNwZWVkIFNvdXJjZSlcbldEXzQxMCAoV2luZCBEaXJlY3Rpb24sIGRlZ3JlZXNfdHJ1ZSlcblFXRF81NDEwIChXaW5kIERpcmVjdGlvbiBRdWFsaXR5KVxuU1dEXzY0MTAgKFdpbmQgRGlyZWN0aW9uIFNvdXJjZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVdfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5V19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheVcvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlXLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheVcmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlXIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5RHluLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUR5biIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUR5bi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk4MC1wcmVzZW50LCBEeW5hbWljIEhlaWdodCIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IER5bmFtaWMgSGVpZ2h0IGRhdGEgKGEgbWVhc3VyZSBvZiB0aGUgZWxldmF0aW9uIG9mIHRoZSBzZWEgbGV2ZWwsIGNhbGN1bGF0ZWQgYnkgaW50ZWdyYXRpbmcgdGhlIHNwZWNpZmljIHZvbHVtZSBhbm9tYWx5IG9mIHRoZSBzZWEgd2F0ZXIgYmV0d2VlbiB0aGUgc2VhIHN1cmZhY2UgYW5kIDUwMCBtIGRlcHRoKSBmcm9tIHRoZSBcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgNS1kYXkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGNvbnNlY3V0aXZlIGZpdmUgZGF5IGludGVydmFscy4gIEEgbWluaW11bSBvZiAyIGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIDUtZGF5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuRFlOXzEzIChEeW5hbWljIEhlaWdodCwgZHluLWNtKVxuUURfNTAxMyAoRHluYW1pYyBIZWlnaHQgUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheUR5bl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlEeW5faXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlEeW4vaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlEeW4ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5RHluJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5RHluIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5SGVhdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlIZWF0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5SGVhdC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk4MC1wcmVzZW50LCBIZWF0IENvbnRlbnQiLCAiVGhpcyBkYXRhc2V0IGhhcyA1LWRheSBIZWF0IENvbnRlbnQgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5IVENfMTMwIChIZWF0IENvbnRlbnQsIDEwKioxMCBKIG0tMilcbkhUQ181MTMwIChIZWF0IENvbnRlbnQgUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheUhlYXRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5SGVhdF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheUhlYXQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlIZWF0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheUhlYXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlIZWF0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5UG9zLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVBvcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVBvcy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk4MC1wcmVzZW50LCBQb3NpdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IFBvc2l0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgNS1kYXkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGNvbnNlY3V0aXZlIGZpdmUgZGF5IGludGVydmFscy4gIEEgbWluaW11bSBvZiAyIGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIDUtZGF5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuTE9OXzUwMiAoUHJlY2lzZSBMb25naXR1ZGUsIGRlZ3JlZV9lYXN0KVxuUVhfNTUwMiAoTG9uZ2l0dWRlIFF1YWxpdHkpXG5MQVRfNTAwIChQcmVjaXNlIExhdGl0dWRlLCBkZWdyZWVfbm9ydGgpXG5RWV81NTAwIChMYXRpdHVkZSBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5UG9zX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvNWRheVBvc19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheVBvcy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheVBvcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhbzVkYXlQb3Mmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlQb3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlELnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlELmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTg3LXByZXNlbnQsIFBvdGVudGlhbCBEZW5zaXR5IEFub21hbHkiLCAiVGhpcyBkYXRhc2V0IGhhcyA1LWRheSBQb3RlbnRpYWwgRGVuc2l0eSBBbm9tYWx5IChzaWdtYS10aGV0YSkgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5TVEhfNzEgKFNpZ21hLVRoZXRhLCBrZyBtLTMpXG5RU1RfNTA3MSAoU2lnbWEtVGhldGEgUXVhbGl0eSlcblNTVF82MDcxIChTaWdtYS1UaGV0YSBTb3VyY2UpXG5ESUNfNzA3MSAoU2lnbWEtVGhldGEgSW5zdHJ1bWVudCBDb2RlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5RF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlEX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW81ZGF5RC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheUQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5RCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvNWRheUQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlTLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlTLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTg3LXByZXNlbnQsIFNhbGluaXR5IiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgU2FsaW5pdHkgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5TXzQxIChTZWEgV2F0ZXIgUHJhY3RpY2FsIFNhbGluaXR5LCBQU1UpXG5RU181MDQxIChTYWxpbml0eSBRdWFsaXR5KVxuU1NfNjA0MSAoU2FsaW5pdHkgU291cmNlKVxuU0lDXzgwNDEgKFNhbGluaXR5IEluc3RydW1lbnQgQ29kZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVNfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5U19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheVMvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlTLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheVMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlTIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5QWRjcC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlBZGNwIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5QWRjcC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk4OC0yMDE3LCBBRENQIiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgQWNvdXN0aWMgRG9wcGxlciBDdXJyZW50IFByb2ZpbGVyIChBRENQKSB3YXRlciBjdXJyZW50cyBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgQURDUCBkYXRhIGFyZSBhdmFpbGFibGUgb25seSBhZnRlciBtb29yaW5nIHJlY292ZXJpZXMsIHdoaWNoIGFyZSBzY2hlZHVsZWQgb24gYW4gYW5udWFsIGJhc2lzLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG51XzEyMDUgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgY20vcylcblFVXzUyMDUgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSBRdWFsaXR5KVxudl8xMjA2IChOb3J0aHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBjbS9zKVxuUVZfNTIwNiAoTm9ydGh3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5QWRjcF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlBZGNwX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW81ZGF5QWRjcC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheUFkY3AucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5QWRjcCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvNWRheUFkY3AiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlFdmFwLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUV2YXAiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlFdmFwLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTg5LXByZXNlbnQsIEV2YXBvcmF0aW9uIiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgRXZhcG9yYXRpb24gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5FXzI1MCAoRXZhcG9yYXRpb24sIE1NL0hSKVxuUUVfNTI1MCAoRXZhcG9yYXRpb24gUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheUV2YXBfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5RXZhcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheUV2YXAvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlFdmFwLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheUV2YXAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlFdmFwIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5UWxhdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlRbGF0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5UWxhdC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk4OS1wcmVzZW50LCBMYXRlbnQgSGVhdCBGbHV4IiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgTGF0ZW50IEhlYXQgRmx1eCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFMXzEzNyAoTGF0ZW50IEhlYXQgRmx1eCwgVyBtLTIpXG5RUUxfNTEzNyAoTGF0ZW50IEhlYXQgRmx1eCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5UWxhdF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlRbGF0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW81ZGF5UWxhdC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheVFsYXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5UWxhdCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvNWRheVFsYXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlSaC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlSaCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVJoLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTg5LXByZXNlbnQsIFJlbGF0aXZlIEh1bWlkaXR5IiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgUmVsYXRpdmUgSHVtaWRpdHkgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5SSF85MTAgKFJlbGF0aXZlIEh1bWlkaXR5LCBwZXJjZW50KVxuUVJIXzU5MTAgKFJlbGF0aXZlIEh1bWlkaXR5IFF1YWxpdHkpXG5TUkhfNjkxMCAoUmVsYXRpdmUgSHVtaWRpdHkgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5UmhfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5UmhfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlSaC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheVJoLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheVJoJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5UmgiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlRc2VuLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVFzZW4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlRc2VuLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTg5LXByZXNlbnQsIFNlbnNpYmxlIEhlYXQgRmx1eCIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IFNlbnNpYmxlIEhlYXQgRmx1eCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFTXzEzOCAoU2Vuc2libGUgSGVhdCBGbHV4LCBXIG0tMilcblFRU181MTM4IChTZW5zaWJsZSBIZWF0IEZsdXggUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVFzZW5fZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5UXNlbl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheVFzZW4vaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlRc2VuLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheVFzZW4mc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlRc2VuIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5VGF1LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVRhdSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVRhdS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk4OS1wcmVzZW50LCBXaW5kIFN0cmVzcyIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IFdpbmQgU3RyZXNzIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgNS1kYXkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGNvbnNlY3V0aXZlIGZpdmUgZGF5IGludGVydmFscy4gIEEgbWluaW11bSBvZiAyIGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIDUtZGF5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuVFhfNDQyIChab25hbCBXaW5kIFN0cmVzcywgTi9tMilcblRZXzQ0MyAoTWVyaWRpb25hbCBXaW5kIFN0cmVzcywgTi9tMilcblRBVV80NDAgKFdpbmQgU3RyZXNzLCBOL20yKVxuVERfNDQ1IChXaW5kIFN0cmVzcyBEaXJlY3Rpb24sIGRlZ3JlZXNfdHJ1ZSlcblFUQVVfNTQ0MCAoV2luZCBTdHJlc3MgUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVRhdV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlUYXVfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlUYXUvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlUYXUucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5VGF1JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5VGF1Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5UmFkLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVJhZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVJhZC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk5MS1wcmVzZW50LCBEb3duZ29pbmcgU2hvcnR3YXZlIFJhZGlhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IERvd25nb2luZyBTaG9ydHdhdmUgUmFkaWF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgNS1kYXkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGNvbnNlY3V0aXZlIGZpdmUgZGF5IGludGVydmFscy4gIEEgbWluaW11bSBvZiAyIGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIDUtZGF5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUkRfNDk1IChEb3duZ29pbmcgU2hvcnR3YXZlIFJhZGlhdGlvbiwgVy9NKioyKVxuUVNXXzU0OTUgKFNob3J0d2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNTV182NDk1IChTaG9ydHdhdmUgUmFkaWF0aW9uIFNvdXJjZSlcblJEU180OTYgKFNob3J0d2F2ZSBSYWRpYXRpb24gU3RhbmRhcmQgRGV2aWF0aW9uLCBXL00qKjIpXG5SRFBfNDk3IChTaG9ydHdhdmUgUmFkaWF0aW9uIFBlYWssIFcvTSoqMilcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVJhZF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlSYWRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlSYWQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlSYWQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5UmFkJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5UmFkIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5U3duZXQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5U3duZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlTd25ldC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk5MS1wcmVzZW50LCBOZXQgU2hvcnR3YXZlIFJhZGlhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IE5ldCBTaG9ydHdhdmUgUmFkaWF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgNS1kYXkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGNvbnNlY3V0aXZlIGZpdmUgZGF5IGludGVydmFscy4gIEEgbWluaW11bSBvZiAyIGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIDUtZGF5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuU1dOXzE0OTUgKE5ldCBTaG9ydHdhdmUgUmFkaWF0aW9uLCBXL00qKjIpXG5RU1dfNTQ5NSAoU2hvcnR3YXZlIFJhZGlhdGlvbiBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5U3duZXRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5U3duZXRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlTd25ldC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheVN3bmV0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheVN3bmV0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5U3duZXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlTc3Muc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5U3NzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5U3NzLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTkyLXByZXNlbnQsIFNlYSBTdXJmYWNlIFNhbGluaXR5IiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgU2VhIFN1cmZhY2UgU2FsaW5pdHkgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5TXzQxIChTZWEgV2F0ZXIgUHJhY3RpY2FsIFNhbGluaXR5LCBQU1UpXG5RU181MDQxIChTYWxpbml0eSBRdWFsaXR5KVxuU1NfNjA0MSAoU2FsaW5pdHkgU291cmNlKVxuU0lDXzcwNDEgKFNhbGluaXR5IEluc3RydW1lbnQgQ29kZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVNzc19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlTc3NfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlTc3MvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlTc3MucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5U3NzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5U3NzIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5U3NkLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVNzZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVNzZC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk5Mi1wcmVzZW50LCBTaWdtYS1UaGV0YSIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IFNpZ21hLVRoZXRhIChQb3RlbnRpYWwgRGVuc2l0eSBBbm9tYWx5KSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNUSF83MSAoU2lnbWEtVGhldGEsIGtnIG0tMylcblFTVF81MDcxIChTaWdtYS1UaGV0YSBRdWFsaXR5KVxuU1NUXzYwNzEgKFNpZ21hLVRoZXRhIFNvdXJjZSlcbkRJQ183MDcxIChTaWdtYS1UaGV0YSBJbnN0cnVtZW50IENvZGUpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhbzVkYXlTc2RfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5U3NkX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW81ZGF5U3NkL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW81ZGF5U3NkLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheVNzZCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvNWRheVNzZCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUVtcC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlFbXAiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlFbXAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgNS1EYXksIDE5OTctcHJlc2VudCwgRXZhcG9yYXRpb24gTWludXMgUHJlY2lwaXRhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IEV2YXBvcmF0aW9uIE1pbnVzIFByZWNpcGl0YXRpb24gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5FTVBfMjUxIChFdmFwb3JhdGlvbiBNaW51cyBQcmVjaXBpdGF0aW9uLCBtbS9ocilcblFFTVBfNTI1MSAoRXZhcG9yYXRpb24gTWludXMgUHJlY2lwaXRhdGlvbiBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5RW1wX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvNWRheUVtcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheUVtcC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheUVtcC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhbzVkYXlFbXAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlFbXAiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlSZi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlSZiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVJmLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTk3LXByZXNlbnQsIEhlYXQgRmx1eCBEdWUgVG8gUmFpbiIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IEhlYXQgRmx1eCBEdWUgVG8gUmFpbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFSXzEzOSAoSGVhdCBGbHV4IER1ZSBUbyBSYWluLCBXIG0tMilcblFRUl81MTM5IChIZWF0IEZsdXggRHVlIFRvIFJhaW4gUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVJmX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvNWRheVJmX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW81ZGF5UmYvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlSZi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhbzVkYXlSZiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvNWRheVJmIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5UmFpbi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlSYWluIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5UmFpbi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk5Ny1wcmVzZW50LCBQcmVjaXBpdGF0aW9uIiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgUHJlY2lwaXRhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblJOXzQ4NSAoUHJlY2lwaXRhdGlvbiwgTU0vSFIpXG5RUk5fNTQ4NSAoUHJlY2lwaXRhdGlvbiBRdWFsaXR5KVxuU1JOXzY0ODUgKFByZWNpcGl0YXRpb24gU291cmNlKVxuUk5TXzQ4NiAoUHJlY2lwaXRhdGlvbiBTdGFuZGFyZCBEZXZpYXRpb24sIE1NL0hSKVxuUk5QXzQ4NyAoUGVyY2VudCBUaW1lIFJhaW5pbmcsIHBlcmNlbnQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhbzVkYXlSYWluX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvNWRheVJhaW5faXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlSYWluL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW81ZGF5UmFpbi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhbzVkYXlSYWluJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5UmFpbiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUJwLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUJwIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5QnAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgNS1EYXksIDE5OTgtcHJlc2VudCwgQmFyb21ldHJpYyAoQWlyKSBQcmVzc3VyZSIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IEJhcm9tZXRyaWMgKEFpcikgUHJlc3N1cmUgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5CUF85MTUgKEJhcm9tZXRyaWMgKEFpcikgUHJlc3N1cmUsIGhQYSlcblFCUF81OTE1IChCYXJvbWV0cmljIChBaXIpIFByZXNzdXJlIFF1YWxpdHkpXG5TQlBfNjkxNSAoQmFyb21ldHJpYyAoQWlyKSBQcmVzc3VyZSBTb3VyY2UpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhbzVkYXlCcF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlCcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheUJwL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW81ZGF5QnAucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5QnAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlCcCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUJmLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUJmIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5QmYuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgNS1EYXksIDIwMDAtcHJlc2VudCwgQnVveWFuY3kgRmx1eCIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IEJ1b3lhbmN5IEZsdXggZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5CRl8xOTEgKEJ1b3lhbmN5IEZsdXgsIDEwKio2IGtnIG0tMiBzLTEpXG5RQkZfNTE5MSAoQnVveWFuY3kgRmx1eCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5QmZfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5QmZfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlCZi9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheUJmLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheUJmJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5QmYiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlMdy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlMdyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUx3LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAyMDAwLXByZXNlbnQsIExvbmd3YXZlIFJhZGlhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IEluY29taW5nIExvbmd3YXZlIFJhZGlhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFsXzEzNiAoSW5jb21pbmcgTG9uZ3dhdmUgUmFkaWF0aW9uLCBXIG0tMilcblFMV181MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNMV182MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5THdfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5THdfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlMdy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheUx3LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheUx3JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5THciXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlMd25ldC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlMd25ldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUx3bmV0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAyMDAwLXByZXNlbnQsIE5ldCBMb25nd2F2ZSBSYWRpYXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyA1LWRheSBOZXQgTG9uZ3dhdmUgUmFkaWF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgNS1kYXkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGNvbnNlY3V0aXZlIGZpdmUgZGF5IGludGVydmFscy4gIEEgbWluaW11bSBvZiAyIGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIDUtZGF5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuTFdOXzExMzYgKE5ldCBMb25nd2F2ZSBSYWRpYXRpb24sIFcgbS0yKVxuUUxXXzUxMzYgKExvbmd3YXZlIFJhZGlhdGlvbiBRdWFsaXR5KVxuU0xXXzYxMzYgKExvbmd3YXZlIFJhZGlhdGlvbiBTb3VyY2UpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhbzVkYXlMd25ldF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlMd25ldF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheUx3bmV0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW81ZGF5THduZXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5THduZXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlMd25ldCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVFuZXQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5UW5ldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVFuZXQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgNS1EYXksIDIwMDAtcHJlc2VudCwgVG90YWwgSGVhdCBGbHV4IiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgVG90YWwgSGVhdCBGbHV4IGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgNS1kYXkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGNvbnNlY3V0aXZlIGZpdmUgZGF5IGludGVydmFscy4gIEEgbWluaW11bSBvZiAyIGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIDUtZGF5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUVRfMjEwIChUb3RhbCBIZWF0IEZsdXgsIFcvTSoqMilcblFRMF81MjEwIChUb3RhbCBIZWF0IEZsdXggUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVFuZXRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5UW5ldF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheVFuZXQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlRbmV0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheVFuZXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlRbmV0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUlzby5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5SXNvIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUlzby5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk3Ny1wcmVzZW50LCAyMEMgSXNvdGhlcm0gRGVwdGgiLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSAyMEMgSXNvdGhlcm0gRGVwdGggZGF0YSAodGhlIGRlcHRoIGF0IHdoaWNoIHRoZSBvY2VhbiB0ZW1wZXJhdHVyZSBpcyAyMEMpIGZyb20gdGhlIFxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBEYWlseSBhdmVyYWdlcyBhcmUgY29tcHV0ZWQgc3RhcnRpbmcgYXQgMDA6MDBaIGFuZCBhcmUgYXNzaWduZWQgYW4gb2JzZXJ2YXRpb24gJ3RpbWUnIG9mIDEyOjAwWi4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuSVNPXzYgKDIwQyBJc290aGVybSBEZXB0aCwgbSlcblFJXzUwMDYgKDIwQyBEZXB0aCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeUlzb19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5SXNvX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9EeUlzby9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlJc28ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeUlzbyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvRHlJc28iXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5QWlydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5QWlydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlBaXJ0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAxOTc3LXByZXNlbnQsIEFpciBUZW1wZXJhdHVyZSIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IEFpciBUZW1wZXJhdHVyZSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5BVF8yMSAoQWlyIFRlbXBlcmF0dXJlLCBkZWdyZWVfQylcblFBVF81MDIxIChBaXIgVGVtcGVyYXR1cmUgUXVhbGl0eSlcblNBVF82MDIxIChBaXIgVGVtcGVyYXR1cmUgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeUFpcnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9EeUFpcnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb0R5QWlydC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlBaXJ0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvRHlBaXJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9EeUFpcnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5Q3VyLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlDdXIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5Q3VyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAxOTc3LXByZXNlbnQsIEN1cnJlbnRzIiwgIlRoaXMgZGF0YXNldCBoYXMgZGFpbHkgQ3VycmVudHMgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBEYWlseSBhdmVyYWdlcyBhcmUgY29tcHV0ZWQgc3RhcnRpbmcgYXQgMDA6MDBaIGFuZCBhcmUgYXNzaWduZWQgYW4gb2JzZXJ2YXRpb24gJ3RpbWUnIG9mIDEyOjAwWi4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuVV8zMjAgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgY20gcy0xKVxuVl8zMjEgKE5vcnRod2FyZCBTZWEgV2F0ZXIgVmVsb2NpdHksIGNtIHMtMSlcbkNTXzMwMCAoU2VhIFdhdGVyIFZlbG9jaXR5LCBjbSBzLTEpXG5DRF8zMTAgKERpcmVjdGlvbiBvZiBTZWEgV2F0ZXIgVmVsb2NpdHksIGRlZ3JlZXNfdHJ1ZSlcblFDU181MzAwIChDdXJyZW50IFNwZWVkIFF1YWxpdHkpXG5RQ0RfNTMxMCAoQ3VycmVudCBEaXJlY3Rpb24gUXVhbGl0eSlcblNDU182MzAwIChDdXJyZW50IFNwZWVkIFNvdXJjZSlcbkNJQ183MzAwIChDdXJyZW50IEluc3RydW1lbnQgQ29kZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvRHlDdXJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9EeUN1cl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlDdXIvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb0R5Q3VyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvRHlDdXImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5Q3VyIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVNzdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5U3N0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVNzdC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk3Ny1wcmVzZW50LCBTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IFNlYSBTdXJmYWNlIFRlbXBlcmF0dXJlIChTU1QpIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblRfMjUgKFNlYSBTdXJmYWNlIFRlbXBlcmF0dXJlLCBkZWdyZWVfQylcblFUXzUwMjUgKFNlYSBTdXJmYWNlIFRlbXBlcmF0dXJlIFF1YWxpdHkpXG5TVF82MDI1IChTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSBTb3VyY2UpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5U3N0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlTc3RfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb0R5U3N0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeVNzdC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5U3N0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9EeVNzdCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlULnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlUIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDE5NzctcHJlc2VudCwgVGVtcGVyYXR1cmUiLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBUZW1wZXJhdHVyZSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5UXzIwIChTZWEgV2F0ZXIgVGVtcGVyYXR1cmUsIGRlZ3JlZV9DKVxuUVRfNTAyMCAoVGVtcGVyYXR1cmUgUXVhbGl0eSlcblNUXzYwMjAgKFRlbXBlcmF0dXJlIFNvdXJjZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvRHlUX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlUX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9EeVQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb0R5VC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5VCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvRHlUIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVcuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVciLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5Vy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk3Ny1wcmVzZW50LCBXaW5kIiwgIlRoaXMgZGF0YXNldCBoYXMgZGFpbHkgV2luZCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5XVV80MjIgKFpvbmFsIFdpbmQsIG0gcy0xKVxuV1ZfNDIzIChNZXJpZGlvbmFsIFdpbmQsIG0gcy0xKVxuV1NfNDAxIChXaW5kIFNwZWVkLCBtIHMtMSlcblFXU181NDAxIChXaW5kIFNwZWVkIFF1YWxpdHkpXG5TV1NfNjQwMSAoV2luZCBTcGVlZCBTb3VyY2UpXG5XRF80MTAgKFdpbmQgRGlyZWN0aW9uLCBkZWdyZWVzX3RydWUpXG5RV0RfNTQxMCAoV2luZCBEaXJlY3Rpb24gUXVhbGl0eSlcblNXRF82NDEwIChXaW5kIERpcmVjdGlvbiBTb3VyY2UpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5V19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5V19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlXL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeVcucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeVcmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5VyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlEeW4uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUR5biIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlEeW4uZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDE5ODAtcHJlc2VudCwgRHluYW1pYyBIZWlnaHQiLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBEeW5hbWljIEhlaWdodCBkYXRhIChhIG1lYXN1cmUgb2YgdGhlIGVsZXZhdGlvbiBvZiB0aGUgc2VhIGxldmVsLCBjYWxjdWxhdGVkIGJ5IGludGVncmF0aW5nIHRoZSBzcGVjaWZpYyB2b2x1bWUgYW5vbWFseSBvZiB0aGUgc2VhIHdhdGVyIGJldHdlZW4gdGhlIHNlYSBzdXJmYWNlIGFuZCA1MDAgbSBkZXB0aCkgZnJvbSB0aGUgXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5EWU5fMTMgKER5bmFtaWMgSGVpZ2h0LCBkeW4tY20pXG5RRF81MDEzIChEeW5hbWljIEhlaWdodCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeUR5bl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5RHluX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9EeUR5bi9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlEeW4ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeUR5biZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvRHlEeW4iXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5SGVhdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5SGVhdCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlIZWF0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAxOTgwLXByZXNlbnQsIEhlYXQgQ29udGVudCIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IEhlYXQgQ29udGVudCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5IVENfMTMwIChIZWF0IENvbnRlbnQsIDEwKioxMCBKIG0tMilcbkhUQ181MTMwIChIZWF0IENvbnRlbnQgUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvRHlIZWF0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlIZWF0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9EeUhlYXQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb0R5SGVhdC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5SGVhdCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvRHlIZWF0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVBvcy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UG9zIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVBvcy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk4MC1wcmVzZW50LCBQb3NpdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IFBvc2l0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkxPTl81MDIgKFByZWNpc2UgTG9uZ2l0dWRlLCBkZWdyZWVfZWFzdClcblFYXzU1MDIgKExvbmdpdHVkZSBRdWFsaXR5KVxuTEFUXzUwMCAoUHJlY2lzZSBMYXRpdHVkZSwgZGVncmVlX25vcnRoKVxuUVlfNTUwMCAoTGF0aXR1ZGUgUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvRHlQb3NfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9EeVBvc19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlQb3MvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb0R5UG9zLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvRHlQb3Mmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5UG9zIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5RC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk4Ny1wcmVzZW50LCBQb3RlbnRpYWwgRGVuc2l0eSBBbm9tYWx5IiwgIlRoaXMgZGF0YXNldCBoYXMgZGFpbHkgUG90ZW50aWFsIERlbnNpdHkgQW5vbWFseSAoc2lnbWEtdGhldGEpIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNUSF83MSAoU2lnbWEtVGhldGEsIGtnIG0tMylcblFTVF81MDcxIChTaWdtYS1UaGV0YSBRdWFsaXR5KVxuU1NUXzYwNzEgKFNpZ21hLVRoZXRhIFNvdXJjZSlcbkRJQ183MDcxIChTaWdtYS1UaGV0YSBJbnN0cnVtZW50IENvZGUpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5RF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5RF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlEL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeUQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeUQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5RCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlTLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlTIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDE5ODctcHJlc2VudCwgU2FsaW5pdHkiLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBTYWxpbml0eSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5TXzQxIChTZWEgV2F0ZXIgUHJhY3RpY2FsIFNhbGluaXR5LCBQU1UpXG5RU181MDQxIChTYWxpbml0eSBRdWFsaXR5KVxuU1NfNjA0MSAoU2FsaW5pdHkgU291cmNlKVxuU0lDXzgwNDEgKFNhbGluaXR5IEluc3RydW1lbnQgQ29kZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvRHlTX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlTX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9EeVMvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb0R5Uy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5UyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvRHlTIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUFkY3Auc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUFkY3AiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5QWRjcC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk4OC0yMDE3LCBBRENQIiwgIlRoaXMgZGF0YXNldCBoYXMgZGFpbHkgQWNvdXN0aWMgRG9wcGxlciBDdXJyZW50IFByb2ZpbGVyIChBRENQKSB3YXRlciBjdXJyZW50cyBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgQURDUCBkYXRhIGFyZSBhdmFpbGFibGUgb25seSBhZnRlciBtb29yaW5nIHJlY292ZXJpZXMsIHdoaWNoIGFyZSBzY2hlZHVsZWQgb24gYW4gYW5udWFsIGJhc2lzLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG51XzEyMDUgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgY20vcylcblFVXzUyMDUgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSBRdWFsaXR5KVxudl8xMjA2IChOb3J0aHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBjbS9zKVxuUVZfNTIwNiAoTm9ydGh3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeUFkY3BfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9EeUFkY3BfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb0R5QWRjcC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlBZGNwLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvRHlBZGNwJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9EeUFkY3AiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5RXZhcC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5RXZhcCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlFdmFwLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAxOTg5LXByZXNlbnQsIEV2YXBvcmF0aW9uIiwgIlRoaXMgZGF0YXNldCBoYXMgZGFpbHkgRXZhcG9yYXRpb24gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBEYWlseSBhdmVyYWdlcyBhcmUgY29tcHV0ZWQgc3RhcnRpbmcgYXQgMDA6MDBaIGFuZCBhcmUgYXNzaWduZWQgYW4gb2JzZXJ2YXRpb24gJ3RpbWUnIG9mIDEyOjAwWi4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuRV8yNTAgKEV2YXBvcmF0aW9uLCBNTS9IUilcblFFXzUyNTAgKEV2YXBvcmF0aW9uIFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5RXZhcF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5RXZhcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlFdmFwL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeUV2YXAucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeUV2YXAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5RXZhcCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlRbGF0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlRbGF0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVFsYXQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDE5ODktcHJlc2VudCwgTGF0ZW50IEhlYXQgRmx1eCIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IExhdGVudCBIZWF0IEZsdXggZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBEYWlseSBhdmVyYWdlcyBhcmUgY29tcHV0ZWQgc3RhcnRpbmcgYXQgMDA6MDBaIGFuZCBhcmUgYXNzaWduZWQgYW4gb2JzZXJ2YXRpb24gJ3RpbWUnIG9mIDEyOjAwWi4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUUxfMTM3IChMYXRlbnQgSGVhdCBGbHV4LCBXIG0tMilcblFRTF81MTM3IChMYXRlbnQgSGVhdCBGbHV4IFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5UWxhdF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5UWxhdF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlRbGF0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeVFsYXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeVFsYXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5UWxhdCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlSaC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UmgiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UmguZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDE5ODktcHJlc2VudCwgUmVsYXRpdmUgSHVtaWRpdHkiLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBSZWxhdGl2ZSBIdW1pZGl0eSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5SSF85MTAgKFJlbGF0aXZlIEh1bWlkaXR5LCBwZXJjZW50KVxuUVJIXzU5MTAgKFJlbGF0aXZlIEh1bWlkaXR5IFF1YWxpdHkpXG5TUkhfNjkxMCAoUmVsYXRpdmUgSHVtaWRpdHkgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeVJoX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlSaF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlSaC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlSaC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5Umgmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5UmgiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UXNlbi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UXNlbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlRc2VuLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAxOTg5LXByZXNlbnQsIFNlbnNpYmxlIEhlYXQgRmx1eCIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IFNlbnNpYmxlIEhlYXQgRmx1eCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5RU18xMzggKFNlbnNpYmxlIEhlYXQgRmx1eCwgVyBtLTIpXG5RUVNfNTEzOCAoU2Vuc2libGUgSGVhdCBGbHV4IFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5UXNlbl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5UXNlbl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlRc2VuL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeVFzZW4ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeVFzZW4mc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5UXNlbiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlUYXUuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVRhdSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlUYXUuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDE5ODktcHJlc2VudCwgV2luZCBTdHJlc3MiLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBXaW5kIFN0cmVzcyBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5UWF80NDIgKFpvbmFsIFdpbmQgU3RyZXNzLCBOL20yKVxuVFlfNDQzIChNZXJpZGlvbmFsIFdpbmQgU3RyZXNzLCBOL20yKVxuVEFVXzQ0MCAoV2luZCBTdHJlc3MsIE4vbTIpXG5URF80NDUgKFdpbmQgU3RyZXNzIERpcmVjdGlvbiwgZGVncmVlc190cnVlKVxuUVRBVV81NDQwIChXaW5kIFN0cmVzcyBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeVRhdV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5VGF1X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9EeVRhdS9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlUYXUucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeVRhdSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvRHlUYXUiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UmFkLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlSYWQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UmFkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAxOTkxLXByZXNlbnQsIERvd25nb2luZyBTaG9ydHdhdmUgUmFkaWF0aW9uIiwgIlRoaXMgZGF0YXNldCBoYXMgZGFpbHkgRG93bmdvaW5nIFNob3J0d2F2ZSBSYWRpYXRpb24gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBEYWlseSBhdmVyYWdlcyBhcmUgY29tcHV0ZWQgc3RhcnRpbmcgYXQgMDA6MDBaIGFuZCBhcmUgYXNzaWduZWQgYW4gb2JzZXJ2YXRpb24gJ3RpbWUnIG9mIDEyOjAwWi4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUkRfNDk1IChEb3duZ29pbmcgU2hvcnR3YXZlIFJhZGlhdGlvbiwgVy9NKioyKVxuUVNXXzU0OTUgKFNob3J0d2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNTV182NDk1IChTaG9ydHdhdmUgUmFkaWF0aW9uIFNvdXJjZSlcblJEU180OTYgKFNob3J0d2F2ZSBSYWRpYXRpb24gU3RhbmRhcmQgRGV2aWF0aW9uLCBXL00qKjIpXG5SRFBfNDk3IChTaG9ydHdhdmUgUmFkaWF0aW9uIFBlYWssIFcvTSoqMilcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvRHlSYWRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9EeVJhZF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlSYWQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb0R5UmFkLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvRHlSYWQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5UmFkIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVN3bmV0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlTd25ldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlTd25ldC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk5MS1wcmVzZW50LCBOZXQgU2hvcnR3YXZlIFJhZGlhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IE5ldCBTaG9ydHdhdmUgUmFkaWF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNXTl8xNDk1IChOZXQgU2hvcnR3YXZlIFJhZGlhdGlvbiwgVy9NKioyKVxuUVNXXzU0OTUgKFNob3J0d2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvRHlTd25ldF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5U3duZXRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb0R5U3duZXQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb0R5U3duZXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeVN3bmV0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9EeVN3bmV0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVNzcy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5U3NzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVNzcy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk5Mi1wcmVzZW50LCBTZWEgU3VyZmFjZSBTYWxpbml0eSIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IFNlYSBTdXJmYWNlIFNhbGluaXR5IGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNfNDEgKFNlYSBXYXRlciBQcmFjdGljYWwgU2FsaW5pdHksIFBTVSlcblFTXzUwNDEgKFNhbGluaXR5IFF1YWxpdHkpXG5TU182MDQxIChTYWxpbml0eSBTb3VyY2UpXG5TSUNfNzA0MSAoU2FsaW5pdHkgSW5zdHJ1bWVudCBDb2RlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeVNzc19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5U3NzX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9EeVNzcy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlTc3MucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeVNzcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvRHlTc3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5U3NkLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlTc2QiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5U3NkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAxOTkyLXByZXNlbnQsIFNpZ21hLVRoZXRhIiwgIlRoaXMgZGF0YXNldCBoYXMgZGFpbHkgU2lnbWEtVGhldGEgKFBvdGVudGlhbCBEZW5zaXR5IEFub21hbHkpIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNUSF83MSAoU2lnbWEtVGhldGEsIGtnIG0tMylcblFTVF81MDcxIChTaWdtYS1UaGV0YSBRdWFsaXR5KVxuU1NUXzYwNzEgKFNpZ21hLVRoZXRhIFNvdXJjZSlcbkRJQ183MDcxIChTaWdtYS1UaGV0YSBJbnN0cnVtZW50IENvZGUpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5U3NkX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlTc2RfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb0R5U3NkL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeVNzZC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5U3NkJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9EeVNzZCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlFbXAuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUVtcCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlFbXAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDE5OTctcHJlc2VudCwgRXZhcG9yYXRpb24gTWludXMgUHJlY2lwaXRhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IEV2YXBvcmF0aW9uIE1pbnVzIFByZWNpcGl0YXRpb24gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBEYWlseSBhdmVyYWdlcyBhcmUgY29tcHV0ZWQgc3RhcnRpbmcgYXQgMDA6MDBaIGFuZCBhcmUgYXNzaWduZWQgYW4gb2JzZXJ2YXRpb24gJ3RpbWUnIG9mIDEyOjAwWi4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuRU1QXzI1MSAoRXZhcG9yYXRpb24gTWludXMgUHJlY2lwaXRhdGlvbiwgbW0vaHIpXG5RRU1QXzUyNTEgKEV2YXBvcmF0aW9uIE1pbnVzIFByZWNpcGl0YXRpb24gUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvRHlFbXBfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9EeUVtcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlFbXAvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb0R5RW1wLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvRHlFbXAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5RW1wIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVJmLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlSZiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlSZi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk5Ny1wcmVzZW50LCBIZWF0IEZsdXggRHVlIFRvIFJhaW4iLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBIZWF0IEZsdXggRHVlIFRvIFJhaW4gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBEYWlseSBhdmVyYWdlcyBhcmUgY29tcHV0ZWQgc3RhcnRpbmcgYXQgMDA6MDBaIGFuZCBhcmUgYXNzaWduZWQgYW4gb2JzZXJ2YXRpb24gJ3RpbWUnIG9mIDEyOjAwWi4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUVJfMTM5IChIZWF0IEZsdXggRHVlIFRvIFJhaW4sIFcgbS0yKVxuUVFSXzUxMzkgKEhlYXQgRmx1eCBEdWUgVG8gUmFpbiBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeVJmX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlSZl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlSZi9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlSZi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5UmYmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5UmYiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UmFpbi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UmFpbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlSYWluLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAxOTk3LXByZXNlbnQsIFByZWNpcGl0YXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBQcmVjaXBpdGF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblJOXzQ4NSAoUHJlY2lwaXRhdGlvbiwgTU0vSFIpXG5RUk5fNTQ4NSAoUHJlY2lwaXRhdGlvbiBRdWFsaXR5KVxuU1JOXzY0ODUgKFByZWNpcGl0YXRpb24gU291cmNlKVxuUk5TXzQ4NiAoUHJlY2lwaXRhdGlvbiBTdGFuZGFyZCBEZXZpYXRpb24sIE1NL0hSKVxuUk5QXzQ4NyAoUGVyY2VudCBUaW1lIFJhaW5pbmcsIHBlcmNlbnQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5UmFpbl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5UmFpbl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlSYWluL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeVJhaW4ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeVJhaW4mc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5UmFpbiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlCcC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5QnAiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5QnAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDE5OTgtcHJlc2VudCwgQmFyb21ldHJpYyAoQWlyKSBQcmVzc3VyZSIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IEJhcm9tZXRyaWMgKEFpcikgUHJlc3N1cmUgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBEYWlseSBhdmVyYWdlcyBhcmUgY29tcHV0ZWQgc3RhcnRpbmcgYXQgMDA6MDBaIGFuZCBhcmUgYXNzaWduZWQgYW4gb2JzZXJ2YXRpb24gJ3RpbWUnIG9mIDEyOjAwWi4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuQlBfOTE1IChCYXJvbWV0cmljIChBaXIpIFByZXNzdXJlLCBoUGEpXG5RQlBfNTkxNSAoQmFyb21ldHJpYyAoQWlyKSBQcmVzc3VyZSBRdWFsaXR5KVxuU0JQXzY5MTUgKEJhcm9tZXRyaWMgKEFpcikgUHJlc3N1cmUgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeUJwX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlCcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlCcC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlCcC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5QnAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5QnAiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5QmYuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUJmIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUJmLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAyMDAwLXByZXNlbnQsIEJ1b3lhbmN5IEZsdXgiLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBCdW95YW5jeSBGbHV4IGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkJGXzE5MSAoQnVveWFuY3kgRmx1eCwgMTAqKjYga2cgbS0yIHMtMSlcblFCRl81MTkxIChCdW95YW5jeSBGbHV4IFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5QmZfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9EeUJmX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9EeUJmL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeUJmLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvRHlCZiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvRHlCZiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlMdy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5THciLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5THcuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDIwMDAtcHJlc2VudCwgTG9uZ3dhdmUgUmFkaWF0aW9uIiwgIlRoaXMgZGF0YXNldCBoYXMgZGFpbHkgSW5jb21pbmcgTG9uZ3dhdmUgUmFkaWF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFsXzEzNiAoSW5jb21pbmcgTG9uZ3dhdmUgUmFkaWF0aW9uLCBXIG0tMilcblFMV181MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNMV182MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeUx3X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlMd19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlMdy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlMdy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5THcmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5THciXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5THduZXQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUx3bmV0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUx3bmV0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAyMDAwLXByZXNlbnQsIE5ldCBMb25nd2F2ZSBSYWRpYXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBOZXQgTG9uZ3dhdmUgUmFkaWF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkxXTl8xMTM2IChOZXQgTG9uZ3dhdmUgUmFkaWF0aW9uLCBXIG0tMilcblFMV181MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNMV182MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeUx3bmV0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlMd25ldF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlMd25ldC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlMd25ldC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5THduZXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5THduZXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UW5ldC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UW5ldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlRbmV0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAyMDAwLXByZXNlbnQsIFRvdGFsIEhlYXQgRmx1eCIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IFRvdGFsIEhlYXQgRmx1eCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5RVF8yMTAgKFRvdGFsIEhlYXQgRmx1eCwgVy9NKioyKVxuUVEwXzUyMTAgKFRvdGFsIEhlYXQgRmx1eCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeVFuZXRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9EeVFuZXRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb0R5UW5ldC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlRbmV0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvRHlRbmV0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9EeVFuZXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbklzby5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbklzbyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uSXNvLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5NzctcHJlc2VudCwgMjBDIElzb3RoZXJtIERlcHRoIiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSAyMEMgSXNvdGhlcm0gRGVwdGggZGF0YSAodGhlIGRlcHRoIGF0IHdoaWNoIHRoZSBvY2VhbiB0ZW1wZXJhdHVyZSBpcyAyMEMpIGZyb20gdGhlIFxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBNb250aGx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIG1vbnRoLiAgQSBtaW5pbXVtIG9mIDE1IGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIG1vbnRobHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5JU09fNiAoMjBDIElzb3RoZXJtIERlcHRoLCBtKVxuUUlfNTAwNiAoMjBDIERlcHRoIFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vbklzb19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vbklzb19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uSXNvL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25Jc28ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25Jc28mc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vbklzbyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uQWlydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkFpcnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkFpcnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMTk3Ny1wcmVzZW50LCBBaXIgVGVtcGVyYXR1cmUiLCAiVGhpcyBkYXRhc2V0IGhhcyBtb250aGx5IEFpciBUZW1wZXJhdHVyZSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkFUXzIxIChBaXIgVGVtcGVyYXR1cmUsIGRlZ3JlZV9DKVxuUUFUXzUwMjEgKEFpciBUZW1wZXJhdHVyZSBRdWFsaXR5KVxuU0FUXzYwMjEgKEFpciBUZW1wZXJhdHVyZSBTb3VyY2UpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vbkFpcnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25BaXJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25BaXJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25BaXJ0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uQWlydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uQWlydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uQ3VyLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uQ3VyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25DdXIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMTk3Ny1wcmVzZW50LCBDdXJyZW50cyIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgQ3VycmVudHMgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBNb250aGx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIG1vbnRoLiAgQSBtaW5pbXVtIG9mIDE1IGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIG1vbnRobHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5VXzMyMCAoRWFzdHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBjbSBzLTEpXG5WXzMyMSAoTm9ydGh3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgY20gcy0xKVxuQ1NfMzAwIChTZWEgV2F0ZXIgVmVsb2NpdHksIGNtIHMtMSlcbkNEXzMxMCAoRGlyZWN0aW9uIG9mIFNlYSBXYXRlciBWZWxvY2l0eSwgZGVncmVlc190cnVlKVxuUUNTXzUzMDAgKEN1cnJlbnQgU3BlZWQgUXVhbGl0eSlcblFDRF81MzEwIChDdXJyZW50IERpcmVjdGlvbiBRdWFsaXR5KVxuU0NTXzYzMDAgKEN1cnJlbnQgU3BlZWQgU291cmNlKVxuQ0lDXzczMDAgKEN1cnJlbnQgSW5zdHJ1bWVudCBDb2RlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25DdXJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25DdXJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb01vbkN1ci9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uQ3VyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uQ3VyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9Nb25DdXIiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblNzdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblNzdCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uU3N0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5NzctcHJlc2VudCwgU2VhIFN1cmZhY2UgVGVtcGVyYXR1cmUiLCAiVGhpcyBkYXRhc2V0IGhhcyBtb250aGx5IFNlYSBTdXJmYWNlIFRlbXBlcmF0dXJlIChTU1QpIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuVF8yNSAoU2VhIFN1cmZhY2UgVGVtcGVyYXR1cmUsIGRlZ3JlZV9DKVxuUVRfNTAyNSAoU2VhIFN1cmZhY2UgVGVtcGVyYXR1cmUgUXVhbGl0eSlcblNUXzYwMjUgKFNlYSBTdXJmYWNlIFRlbXBlcmF0dXJlIFNvdXJjZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvTW9uU3N0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uU3N0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25Tc3QvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb01vblNzdC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vblNzdCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uU3N0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25ULnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uVCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uVC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBNb250aGx5LCAxOTc3LXByZXNlbnQsIFRlbXBlcmF0dXJlIiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBUZW1wZXJhdHVyZSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblRfMjAgKFNlYSBXYXRlciBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5RVF81MDIwIChUZW1wZXJhdHVyZSBRdWFsaXR5KVxuU1RfNjAyMCAoVGVtcGVyYXR1cmUgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25UX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uVF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uVC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uVC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vblQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vblQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblcuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25XIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25XLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5NzctcHJlc2VudCwgV2luZCIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgV2luZCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbldVXzQyMiAoWm9uYWwgV2luZCwgbSBzLTEpXG5XVl80MjMgKE1lcmlkaW9uYWwgV2luZCwgbSBzLTEpXG5XU180MDEgKFdpbmQgU3BlZWQsIG0gcy0xKVxuUVdTXzU0MDEgKFdpbmQgU3BlZWQgUXVhbGl0eSlcblNXU182NDAxIChXaW5kIFNwZWVkIFNvdXJjZSlcbldEXzQxMCAoV2luZCBEaXJlY3Rpb24sIGRlZ3JlZXNfdHJ1ZSlcblFXRF81NDEwIChXaW5kIERpcmVjdGlvbiBRdWFsaXR5KVxuU1dEXzY0MTAgKFdpbmQgRGlyZWN0aW9uIFNvdXJjZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvTW9uV19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vbldfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb01vblcvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb01vblcucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25XJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9Nb25XIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25EeW4uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25EeW4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkR5bi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBNb250aGx5LCAxOTgwLXByZXNlbnQsIER5bmFtaWMgSGVpZ2h0IiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBEeW5hbWljIEhlaWdodCBkYXRhIChhIG1lYXN1cmUgb2YgdGhlIGVsZXZhdGlvbiBvZiB0aGUgc2VhIGxldmVsLCBjYWxjdWxhdGVkIGJ5IGludGVncmF0aW5nIHRoZSBzcGVjaWZpYyB2b2x1bWUgYW5vbWFseSBvZiB0aGUgc2VhIHdhdGVyIGJldHdlZW4gdGhlIHNlYSBzdXJmYWNlIGFuZCA1MDAgbSBkZXB0aCkgZnJvbSB0aGUgXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkRZTl8xMyAoRHluYW1pYyBIZWlnaHQsIGR5bi1jbSlcblFEXzUwMTMgKER5bmFtaWMgSGVpZ2h0IFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vbkR5bl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vbkR5bl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uRHluL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25EeW4ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25EeW4mc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vbkR5biJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uSGVhdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkhlYXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkhlYXQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMTk4MC1wcmVzZW50LCBIZWF0IENvbnRlbnQiLCAiVGhpcyBkYXRhc2V0IGhhcyBtb250aGx5IEhlYXQgQ29udGVudCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkhUQ18xMzAgKEhlYXQgQ29udGVudCwgMTAqKjEwIEogbS0yKVxuSFRDXzUxMzAgKEhlYXQgQ29udGVudCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25IZWF0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uSGVhdF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uSGVhdC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uSGVhdC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vbkhlYXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vbkhlYXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblBvcy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblBvcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uUG9zLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5ODAtcHJlc2VudCwgUG9zaXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBtb250aGx5IFBvc2l0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuTE9OXzUwMiAoUHJlY2lzZSBMb25naXR1ZGUsIGRlZ3JlZV9lYXN0KVxuUVhfNTUwMiAoTG9uZ2l0dWRlIFF1YWxpdHkpXG5MQVRfNTAwIChQcmVjaXNlIExhdGl0dWRlLCBkZWdyZWVfbm9ydGgpXG5RWV81NTAwIChMYXRpdHVkZSBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25Qb3NfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25Qb3NfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb01vblBvcy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uUG9zLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uUG9zJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9Nb25Qb3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25EIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25ELmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5ODctcHJlc2VudCwgUG90ZW50aWFsIERlbnNpdHkgQW5vbWFseSIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgUG90ZW50aWFsIERlbnNpdHkgQW5vbWFseSAoc2lnbWEtdGhldGEpIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuU1RIXzcxIChTaWdtYS1UaGV0YSwga2cgbS0zKVxuUVNUXzUwNzEgKFNpZ21hLVRoZXRhIFF1YWxpdHkpXG5TU1RfNjA3MSAoU2lnbWEtVGhldGEgU291cmNlKVxuRElDXzcwNzEgKFNpZ21hLVRoZXRhIEluc3RydW1lbnQgQ29kZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvTW9uRF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vbkRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb01vbkQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb01vbkQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25EJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9Nb25EIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25TLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uUyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uUy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBNb250aGx5LCAxOTg3LXByZXNlbnQsIFNhbGluaXR5IiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBTYWxpbml0eSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNfNDEgKFNlYSBXYXRlciBQcmFjdGljYWwgU2FsaW5pdHksIFBTVSlcblFTXzUwNDEgKFNhbGluaXR5IFF1YWxpdHkpXG5TU182MDQxIChTYWxpbml0eSBTb3VyY2UpXG5TSUNfODA0MSAoU2FsaW5pdHkgSW5zdHJ1bWVudCBDb2RlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25TX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uU19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uUy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uUy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vblMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vblMiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkFkY3Auc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25BZGNwIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25BZGNwLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5ODgtMjAxNywgQURDUCIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgQWNvdXN0aWMgRG9wcGxlciBDdXJyZW50IFByb2ZpbGVyIChBRENQKSB3YXRlciBjdXJyZW50cyBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgQURDUCBkYXRhIGFyZSBhdmFpbGFibGUgb25seSBhZnRlciBtb29yaW5nIHJlY292ZXJpZXMsIHdoaWNoIGFyZSBzY2hlZHVsZWQgb24gYW4gYW5udWFsIGJhc2lzLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG51XzEyMDUgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgY20vcylcblFVXzUyMDUgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSBRdWFsaXR5KVxudl8xMjA2IChOb3J0aHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBjbS9zKVxuUVZfNTIwNiAoTm9ydGh3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25BZGNwX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uQWRjcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uQWRjcC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uQWRjcC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vbkFkY3Amc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vbkFkY3AiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkV2YXAuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25FdmFwIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25FdmFwLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5ODktcHJlc2VudCwgRXZhcG9yYXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBtb250aGx5IEV2YXBvcmF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuRV8yNTAgKEV2YXBvcmF0aW9uLCBNTS9IUilcblFFXzUyNTAgKEV2YXBvcmF0aW9uIFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vbkV2YXBfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25FdmFwX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25FdmFwL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25FdmFwLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uRXZhcCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uRXZhcCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uUWxhdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblFsYXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblFsYXQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMTk4OS1wcmVzZW50LCBMYXRlbnQgSGVhdCBGbHV4IiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBMYXRlbnQgSGVhdCBGbHV4IGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUUxfMTM3IChMYXRlbnQgSGVhdCBGbHV4LCBXIG0tMilcblFRTF81MTM3IChMYXRlbnQgSGVhdCBGbHV4IFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vblFsYXRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25RbGF0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25RbGF0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25RbGF0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uUWxhdCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uUWxhdCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uUmguc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25SaCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uUmguZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMTk4OS1wcmVzZW50LCBSZWxhdGl2ZSBIdW1pZGl0eSIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgUmVsYXRpdmUgSHVtaWRpdHkgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBNb250aGx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIG1vbnRoLiAgQSBtaW5pbXVtIG9mIDE1IGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIG1vbnRobHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5SSF85MTAgKFJlbGF0aXZlIEh1bWlkaXR5LCBwZXJjZW50KVxuUVJIXzU5MTAgKFJlbGF0aXZlIEh1bWlkaXR5IFF1YWxpdHkpXG5TUkhfNjkxMCAoUmVsYXRpdmUgSHVtaWRpdHkgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25SaF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vblJoX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25SaC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uUmgucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25SaCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uUmgiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblFzZW4uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25Rc2VuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25Rc2VuLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5ODktcHJlc2VudCwgU2Vuc2libGUgSGVhdCBGbHV4IiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBTZW5zaWJsZSBIZWF0IEZsdXggZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBNb250aGx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIG1vbnRoLiAgQSBtaW5pbXVtIG9mIDE1IGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIG1vbnRobHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5RU18xMzggKFNlbnNpYmxlIEhlYXQgRmx1eCwgVyBtLTIpXG5RUVNfNTEzOCAoU2Vuc2libGUgSGVhdCBGbHV4IFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vblFzZW5fZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25Rc2VuX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25Rc2VuL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25Rc2VuLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uUXNlbiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uUXNlbiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uVGF1LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uVGF1IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25UYXUuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMTk4OS1wcmVzZW50LCBXaW5kIFN0cmVzcyIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgV2luZCBTdHJlc3MgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBNb250aGx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIG1vbnRoLiAgQSBtaW5pbXVtIG9mIDE1IGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIG1vbnRobHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5UWF80NDIgKFpvbmFsIFdpbmQgU3RyZXNzLCBOL20yKVxuVFlfNDQzIChNZXJpZGlvbmFsIFdpbmQgU3RyZXNzLCBOL20yKVxuVEFVXzQ0MCAoV2luZCBTdHJlc3MsIE4vbTIpXG5URF80NDUgKFdpbmQgU3RyZXNzIERpcmVjdGlvbiwgZGVncmVlc190cnVlKVxuUVRBVV81NDQwIChXaW5kIFN0cmVzcyBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25UYXVfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25UYXVfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb01vblRhdS9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uVGF1LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uVGF1JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9Nb25UYXUiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblJhZC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblJhZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uUmFkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5OTEtcHJlc2VudCwgRG93bmdvaW5nIFNob3J0d2F2ZSBSYWRpYXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBtb250aGx5IERvd25nb2luZyBTaG9ydHdhdmUgUmFkaWF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUkRfNDk1IChEb3duZ29pbmcgU2hvcnR3YXZlIFJhZGlhdGlvbiwgVy9NKioyKVxuUVNXXzU0OTUgKFNob3J0d2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNTV182NDk1IChTaG9ydHdhdmUgUmFkaWF0aW9uIFNvdXJjZSlcblJEU180OTYgKFNob3J0d2F2ZSBSYWRpYXRpb24gU3RhbmRhcmQgRGV2aWF0aW9uLCBXL00qKjIpXG5SRFBfNDk3IChTaG9ydHdhdmUgUmFkaWF0aW9uIFBlYWssIFcvTSoqMilcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvTW9uUmFkX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uUmFkX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25SYWQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb01vblJhZC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vblJhZCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uUmFkIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25Td25ldC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblN3bmV0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25Td25ldC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBNb250aGx5LCAxOTkxLXByZXNlbnQsIE5ldCBTaG9ydHdhdmUgUmFkaWF0aW9uIiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBOZXQgU2hvcnR3YXZlIFJhZGlhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNXTl8xNDk1IChOZXQgU2hvcnR3YXZlIFJhZGlhdGlvbiwgVy9NKioyKVxuUVNXXzU0OTUgKFNob3J0d2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvTW9uU3duZXRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25Td25ldF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uU3duZXQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb01vblN3bmV0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uU3duZXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vblN3bmV0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25Tc3Muc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25Tc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblNzcy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBNb250aGx5LCAxOTkyLXByZXNlbnQsIFNlYSBTdXJmYWNlIFNhbGluaXR5IiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBTZWEgU3VyZmFjZSBTYWxpbml0eSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNfNDEgKFNlYSBXYXRlciBQcmFjdGljYWwgU2FsaW5pdHksIFBTVSlcblFTXzUwNDEgKFNhbGluaXR5IFF1YWxpdHkpXG5TU182MDQxIChTYWxpbml0eSBTb3VyY2UpXG5TSUNfNzA0MSAoU2FsaW5pdHkgSW5zdHJ1bWVudCBDb2RlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25Tc3NfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25Tc3NfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb01vblNzcy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uU3NzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uU3NzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9Nb25Tc3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblNzZC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblNzZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uU3NkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5OTItcHJlc2VudCwgU2lnbWEtVGhldGEiLCAiVGhpcyBkYXRhc2V0IGhhcyBtb250aGx5IFNpZ21hLVRoZXRhIChQb3RlbnRpYWwgRGVuc2l0eSBBbm9tYWx5KSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNUSF83MSAoU2lnbWEtVGhldGEsIGtnIG0tMylcblFTVF81MDcxIChTaWdtYS1UaGV0YSBRdWFsaXR5KVxuU1NUXzYwNzEgKFNpZ21hLVRoZXRhIFNvdXJjZSlcbkRJQ183MDcxIChTaWdtYS1UaGV0YSBJbnN0cnVtZW50IENvZGUpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vblNzZF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vblNzZF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uU3NkL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25Tc2QucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25Tc2Qmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vblNzZCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uRW1wLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uRW1wIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25FbXAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMTk5Ny1wcmVzZW50LCBFdmFwb3JhdGlvbiBNaW51cyBQcmVjaXBpdGF0aW9uIiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBFdmFwb3JhdGlvbiBNaW51cyBQcmVjaXBpdGF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuRU1QXzI1MSAoRXZhcG9yYXRpb24gTWludXMgUHJlY2lwaXRhdGlvbiwgbW0vaHIpXG5RRU1QXzUyNTEgKEV2YXBvcmF0aW9uIE1pbnVzIFByZWNpcGl0YXRpb24gUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvTW9uRW1wX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uRW1wX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25FbXAvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb01vbkVtcC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vbkVtcCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uRW1wIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25SZi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblJmIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25SZi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBNb250aGx5LCAxOTk3LXByZXNlbnQsIEhlYXQgRmx1eCBEdWUgVG8gUmFpbiIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgSGVhdCBGbHV4IER1ZSBUbyBSYWluIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUVJfMTM5IChIZWF0IEZsdXggRHVlIFRvIFJhaW4sIFcgbS0yKVxuUVFSXzUxMzkgKEhlYXQgRmx1eCBEdWUgVG8gUmFpbiBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25SZl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vblJmX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25SZi9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uUmYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25SZiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uUmYiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblJhaW4uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25SYWluIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25SYWluLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5OTctcHJlc2VudCwgUHJlY2lwaXRhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgUHJlY2lwaXRhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblJOXzQ4NSAoUHJlY2lwaXRhdGlvbiwgTU0vSFIpXG5RUk5fNTQ4NSAoUHJlY2lwaXRhdGlvbiBRdWFsaXR5KVxuU1JOXzY0ODUgKFByZWNpcGl0YXRpb24gU291cmNlKVxuUk5TXzQ4NiAoUHJlY2lwaXRhdGlvbiBTdGFuZGFyZCBEZXZpYXRpb24sIE1NL0hSKVxuUk5QXzQ4NyAoUGVyY2VudCBUaW1lIFJhaW5pbmcsIHBlcmNlbnQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vblJhaW5fZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25SYWluX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25SYWluL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25SYWluLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uUmFpbiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uUmFpbiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uQnAuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25CcCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uQnAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMTk5OC1wcmVzZW50LCBCYXJvbWV0cmljIChBaXIpIFByZXNzdXJlIiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBCYXJvbWV0cmljIChBaXIpIFByZXNzdXJlIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuQlBfOTE1IChCYXJvbWV0cmljIChBaXIpIFByZXNzdXJlLCBoUGEpXG5RQlBfNTkxNSAoQmFyb21ldHJpYyAoQWlyKSBQcmVzc3VyZSBRdWFsaXR5KVxuU0JQXzY5MTUgKEJhcm9tZXRyaWMgKEFpcikgUHJlc3N1cmUgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25CcF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vbkJwX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25CcC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uQnAucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25CcCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uQnAiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkJmLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uQmYiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkJmLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDIwMDAtcHJlc2VudCwgQnVveWFuY3kgRmx1eCIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgQnVveWFuY3kgRmx1eCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkJGXzE5MSAoQnVveWFuY3kgRmx1eCwgMTAqKjYga2cgbS0yIHMtMSlcblFCRl81MTkxIChCdW95YW5jeSBGbHV4IFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vbkJmX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uQmZfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb01vbkJmL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25CZi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vbkJmJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9Nb25CZiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uTHcuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25MdyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uTHcuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMjAwMC1wcmVzZW50LCBMb25nd2F2ZSBSYWRpYXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBtb250aGx5IEluY29taW5nIExvbmd3YXZlIFJhZGlhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFsXzEzNiAoSW5jb21pbmcgTG9uZ3dhdmUgUmFkaWF0aW9uLCBXIG0tMilcblFMV181MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNMV182MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25Md19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vbkx3X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25Mdy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uTHcucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25MdyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uTHciXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkx3bmV0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uTHduZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkx3bmV0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDIwMDAtcHJlc2VudCwgTmV0IExvbmd3YXZlIFJhZGlhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgTmV0IExvbmd3YXZlIFJhZGlhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkxXTl8xMTM2IChOZXQgTG9uZ3dhdmUgUmFkaWF0aW9uLCBXIG0tMilcblFMV181MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNMV182MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25Md25ldF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vbkx3bmV0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25Md25ldC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uTHduZXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25Md25ldCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uTHduZXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblFuZXQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25RbmV0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25RbmV0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDIwMDAtcHJlc2VudCwgVG90YWwgSGVhdCBGbHV4IiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBUb3RhbCBIZWF0IEZsdXggZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBNb250aGx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIG1vbnRoLiAgQSBtaW5pbXVtIG9mIDE1IGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIG1vbnRobHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5RVF8yMTAgKFRvdGFsIEhlYXQgRmx1eCwgVy9NKioyKVxuUVEwXzUyMTAgKFRvdGFsIEhlYXQgRmx1eCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25RbmV0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uUW5ldF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uUW5ldC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uUW5ldC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vblFuZXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vblFuZXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFJhZC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFJhZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0UmFkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTkwMS1wcmVzZW50LCBEb3duZ29pbmcgU2hvcnR3YXZlIFJhZGlhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBEb3duZ29pbmcgU2hvcnR3YXZlIFJhZGlhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5SRF80OTUgKERvd25nb2luZyBTaG9ydHdhdmUgUmFkaWF0aW9uLCBXL00qKjIpXG5RU1dfNTQ5NSAoU2hvcnR3YXZlIFJhZGlhdGlvbiBRdWFsaXR5KVxuU1NXXzY0OTUgKFNob3J0d2F2ZSBSYWRpYXRpb24gU291cmNlKVxuUkRTXzQ5NiAoU2hvcnR3YXZlIFJhZGlhdGlvbiBTdGFuZGFyZCBEZXZpYXRpb24sIFcvTSoqMilcblJEUF80OTcgKFNob3J0d2F2ZSBSYWRpYXRpb24gUGVhaywgVy9NKioyKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRSYWRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9RcnRSYWRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydFJhZC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0UmFkLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvUXJ0UmFkJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRSYWQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydElzby5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydElzbyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0SXNvLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk3Ny1wcmVzZW50LCAyMEMgSXNvdGhlcm0gRGVwdGgiLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgMjBDIElzb3RoZXJtIERlcHRoIGRhdGEgKHRoZSBkZXB0aCBhdCB3aGljaCB0aGUgb2NlYW4gdGVtcGVyYXR1cmUgaXMgMjBDKSBmcm9tIHRoZSBcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbklTT182ICgyMEMgSXNvdGhlcm0gRGVwdGgsIG0pXG5RSV81MDA2ICgyMEMgRGVwdGggUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0SXNvX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0SXNvX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnRJc28vaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydElzby5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydElzbyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0SXNvIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRBaXJ0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0QWlydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0QWlydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5NzctcHJlc2VudCwgQWlyIFRlbXBlcmF0dXJlIiwgIlRoaXMgZGF0YXNldCBoYXMgcXVhcnRlcmx5IEFpciBUZW1wZXJhdHVyZSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5BVF8yMSAoQWlyIFRlbXBlcmF0dXJlLCBkZWdyZWVfQylcblFBVF81MDIxIChBaXIgVGVtcGVyYXR1cmUgUXVhbGl0eSlcblNBVF82MDIxIChBaXIgVGVtcGVyYXR1cmUgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRBaXJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0QWlydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvUXJ0QWlydC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0QWlydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydEFpcnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb1FydEFpcnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydEN1ci5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydEN1ciIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0Q3VyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk3Ny1wcmVzZW50LCBDdXJyZW50cyIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBDdXJyZW50cyBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5VXzMyMCAoRWFzdHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBjbSBzLTEpXG5WXzMyMSAoTm9ydGh3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgY20gcy0xKVxuQ1NfMzAwIChTZWEgV2F0ZXIgVmVsb2NpdHksIGNtIHMtMSlcbkNEXzMxMCAoRGlyZWN0aW9uIG9mIFNlYSBXYXRlciBWZWxvY2l0eSwgZGVncmVlc190cnVlKVxuUUNTXzUzMDAgKEN1cnJlbnQgU3BlZWQgUXVhbGl0eSlcblFDRF81MzEwIChDdXJyZW50IERpcmVjdGlvbiBRdWFsaXR5KVxuU0NTXzYzMDAgKEN1cnJlbnQgU3BlZWQgU291cmNlKVxuQ0lDXzczMDAgKEN1cnJlbnQgSW5zdHJ1bWVudCBDb2RlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRDdXJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9RcnRDdXJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydEN1ci9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0Q3VyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvUXJ0Q3VyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRDdXIiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFNzdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFNzdCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0U3N0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk3Ny1wcmVzZW50LCBTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSAoU1NUKSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5UXzI1IChTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5RVF81MDI1IChTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSBRdWFsaXR5KVxuU1RfNjAyNSAoU2VhIFN1cmZhY2UgVGVtcGVyYXR1cmUgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRTc3RfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9RcnRTc3RfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydFNzdC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0U3N0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvUXJ0U3N0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRTc3QiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRUIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRULmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk3Ny1wcmVzZW50LCBUZW1wZXJhdHVyZSIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBUZW1wZXJhdHVyZSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5UXzIwIChTZWEgV2F0ZXIgVGVtcGVyYXR1cmUsIGRlZ3JlZV9DKVxuUVRfNTAyMCAoVGVtcGVyYXR1cmUgUXVhbGl0eSlcblNUXzYwMjAgKFRlbXBlcmF0dXJlIFNvdXJjZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0VF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydFRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydFQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydFQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRUJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRUIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRXLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0VyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0Vy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5NzctcHJlc2VudCwgV2luZCIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBXaW5kIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbldVXzQyMiAoWm9uYWwgV2luZCwgbSBzLTEpXG5XVl80MjMgKE1lcmlkaW9uYWwgV2luZCwgbSBzLTEpXG5XU180MDEgKFdpbmQgU3BlZWQsIG0gcy0xKVxuUVdTXzU0MDEgKFdpbmQgU3BlZWQgUXVhbGl0eSlcblNXU182NDAxIChXaW5kIFNwZWVkIFNvdXJjZSlcbldEXzQxMCAoV2luZCBEaXJlY3Rpb24sIGRlZ3JlZXNfdHJ1ZSlcblFXRF81NDEwIChXaW5kIERpcmVjdGlvbiBRdWFsaXR5KVxuU1dEXzY0MTAgKFdpbmQgRGlyZWN0aW9uIFNvdXJjZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0V19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydFdfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydFcvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydFcucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRXJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRXIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnREeW4uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnREeW4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydER5bi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5ODAtcHJlc2VudCwgRHluYW1pYyBIZWlnaHQiLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgRHluYW1pYyBIZWlnaHQgZGF0YSAoYSBtZWFzdXJlIG9mIHRoZSBlbGV2YXRpb24gb2YgdGhlIHNlYSBsZXZlbCwgY2FsY3VsYXRlZCBieSBpbnRlZ3JhdGluZyB0aGUgc3BlY2lmaWMgdm9sdW1lIGFub21hbHkgb2YgdGhlIHNlYSB3YXRlciBiZXR3ZWVuIHRoZSBzZWEgc3VyZmFjZSBhbmQgNTAwIG0gZGVwdGgpIGZyb20gdGhlIFxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBRdWFydGVybHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIG1vbnRobHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSAzIG1vbnRoIHBlcmlvZC4gIEEgbWluaW11bSBvZiAyIG1vbnRobHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgcXVhcnRlcmx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuRFlOXzEzIChEeW5hbWljIEhlaWdodCwgZHluLWNtKVxuUURfNTAxMyAoRHluYW1pYyBIZWlnaHQgUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0RHluX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0RHluX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnREeW4vaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydER5bi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydER5biZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0RHluIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRIZWF0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0SGVhdCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0SGVhdC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5ODAtcHJlc2VudCwgSGVhdCBDb250ZW50IiwgIlRoaXMgZGF0YXNldCBoYXMgcXVhcnRlcmx5IEhlYXQgQ29udGVudCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5IVENfMTMwIChIZWF0IENvbnRlbnQsIDEwKioxMCBKIG0tMilcbkhUQ181MTMwIChIZWF0IENvbnRlbnQgUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0SGVhdF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydEhlYXRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydEhlYXQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydEhlYXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRIZWF0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRIZWF0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRQb3Muc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRQb3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFBvcy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5ODAtcHJlc2VudCwgUG9zaXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgUG9zaXRpb24gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBRdWFydGVybHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIG1vbnRobHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSAzIG1vbnRoIHBlcmlvZC4gIEEgbWluaW11bSBvZiAyIG1vbnRobHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgcXVhcnRlcmx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuTE9OXzUwMiAoUHJlY2lzZSBMb25naXR1ZGUsIGRlZ3JlZV9lYXN0KVxuUVhfNTUwMiAoTG9uZ2l0dWRlIFF1YWxpdHkpXG5MQVRfNTAwIChQcmVjaXNlIExhdGl0dWRlLCBkZWdyZWVfbm9ydGgpXG5RWV81NTAwIChMYXRpdHVkZSBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRQb3NfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9RcnRQb3NfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydFBvcy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0UG9zLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvUXJ0UG9zJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRQb3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydEQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnREIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRELmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk4Ny1wcmVzZW50LCBQb3RlbnRpYWwgRGVuc2l0eSBBbm9tYWx5IiwgIlRoaXMgZGF0YXNldCBoYXMgcXVhcnRlcmx5IFBvdGVudGlhbCBEZW5zaXR5IEFub21hbHkgKHNpZ21hLXRoZXRhKSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5TVEhfNzEgKFNpZ21hLVRoZXRhLCBrZyBtLTMpXG5RU1RfNTA3MSAoU2lnbWEtVGhldGEgUXVhbGl0eSlcblNTVF82MDcxIChTaWdtYS1UaGV0YSBTb3VyY2UpXG5ESUNfNzA3MSAoU2lnbWEtVGhldGEgSW5zdHJ1bWVudCBDb2RlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnREX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0RF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvUXJ0RC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0RC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydEQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb1FydEQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFMuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRTIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRTLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk4Ny1wcmVzZW50LCBTYWxpbml0eSIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBTYWxpbml0eSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5TXzQxIChTZWEgV2F0ZXIgUHJhY3RpY2FsIFNhbGluaXR5LCBQU1UpXG5RU181MDQxIChTYWxpbml0eSBRdWFsaXR5KVxuU1NfNjA0MSAoU2FsaW5pdHkgU291cmNlKVxuU0lDXzgwNDEgKFNhbGluaXR5IEluc3RydW1lbnQgQ29kZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0U19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydFNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydFMvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydFMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRTJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRTIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRBZGNwLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0QWRjcCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0QWRjcC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5ODgtMjAxNywgQURDUCIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBBY291c3RpYyBEb3BwbGVyIEN1cnJlbnQgUHJvZmlsZXIgKEFEQ1ApIHdhdGVyIGN1cnJlbnRzIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgQURDUCBkYXRhIGFyZSBhdmFpbGFibGUgb25seSBhZnRlciBtb29yaW5nIHJlY292ZXJpZXMsIHdoaWNoIGFyZSBzY2hlZHVsZWQgb24gYW4gYW5udWFsIGJhc2lzLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG51XzEyMDUgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgY20vcylcblFVXzUyMDUgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSBRdWFsaXR5KVxudl8xMjA2IChOb3J0aHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBjbS9zKVxuUVZfNTIwNiAoTm9ydGh3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRBZGNwX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0QWRjcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvUXJ0QWRjcC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0QWRjcC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydEFkY3Amc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb1FydEFkY3AiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydEV2YXAuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRFdmFwIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRFdmFwLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk4OS1wcmVzZW50LCBFdmFwb3JhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBFdmFwb3JhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5FXzI1MCAoRXZhcG9yYXRpb24sIE1NL0hSKVxuUUVfNTI1MCAoRXZhcG9yYXRpb24gUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0RXZhcF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydEV2YXBfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydEV2YXAvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydEV2YXAucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRFdmFwJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRFdmFwIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRRbGF0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0UWxhdCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0UWxhdC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5ODktcHJlc2VudCwgTGF0ZW50IEhlYXQgRmx1eCIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBMYXRlbnQgSGVhdCBGbHV4IGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFMXzEzNyAoTGF0ZW50IEhlYXQgRmx1eCwgVyBtLTIpXG5RUUxfNTEzNyAoTGF0ZW50IEhlYXQgRmx1eCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRRbGF0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0UWxhdF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvUXJ0UWxhdC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0UWxhdC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydFFsYXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb1FydFFsYXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFJoLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0UmgiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFJoLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk4OS1wcmVzZW50LCBSZWxhdGl2ZSBIdW1pZGl0eSIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBSZWxhdGl2ZSBIdW1pZGl0eSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5SSF85MTAgKFJlbGF0aXZlIEh1bWlkaXR5LCBwZXJjZW50KVxuUVJIXzU5MTAgKFJlbGF0aXZlIEh1bWlkaXR5IFF1YWxpdHkpXG5TUkhfNjkxMCAoUmVsYXRpdmUgSHVtaWRpdHkgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRSaF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydFJoX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnRSaC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0UmgucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRSaCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0UmgiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFFzZW4uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRRc2VuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRRc2VuLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk4OS1wcmVzZW50LCBTZW5zaWJsZSBIZWF0IEZsdXgiLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgU2Vuc2libGUgSGVhdCBGbHV4IGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFTXzEzOCAoU2Vuc2libGUgSGVhdCBGbHV4LCBXIG0tMilcblFRU181MTM4IChTZW5zaWJsZSBIZWF0IEZsdXggUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0UXNlbl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydFFzZW5faXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydFFzZW4vaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydFFzZW4ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRRc2VuJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRRc2VuIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRUYXUuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRUYXUiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFRhdS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5ODktcHJlc2VudCwgV2luZCBTdHJlc3MiLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgV2luZCBTdHJlc3MgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBRdWFydGVybHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIG1vbnRobHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSAzIG1vbnRoIHBlcmlvZC4gIEEgbWluaW11bSBvZiAyIG1vbnRobHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgcXVhcnRlcmx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuVFhfNDQyIChab25hbCBXaW5kIFN0cmVzcywgTi9tMilcblRZXzQ0MyAoTWVyaWRpb25hbCBXaW5kIFN0cmVzcywgTi9tMilcblRBVV80NDAgKFdpbmQgU3RyZXNzLCBOL20yKVxuVERfNDQ1IChXaW5kIFN0cmVzcyBEaXJlY3Rpb24sIGRlZ3JlZXNfdHJ1ZSlcblFUQVVfNTQ0MCAoV2luZCBTdHJlc3MgUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0VGF1X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0VGF1X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnRUYXUvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydFRhdS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydFRhdSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0VGF1Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRTd25ldC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFN3bmV0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRTd25ldC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5OTEtcHJlc2VudCwgTmV0IFNob3J0d2F2ZSBSYWRpYXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgTmV0IFNob3J0d2F2ZSBSYWRpYXRpb24gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBRdWFydGVybHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIG1vbnRobHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSAzIG1vbnRoIHBlcmlvZC4gIEEgbWluaW11bSBvZiAyIG1vbnRobHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgcXVhcnRlcmx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuU1dOXzE0OTUgKE5ldCBTaG9ydHdhdmUgUmFkaWF0aW9uLCBXL00qKjIpXG5RU1dfNTQ5NSAoU2hvcnR3YXZlIFJhZGlhdGlvbiBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRTd25ldF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydFN3bmV0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnRTd25ldC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0U3duZXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRTd25ldCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0U3duZXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFNzcy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFNzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0U3NzLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk5Mi1wcmVzZW50LCBTZWEgU3VyZmFjZSBTYWxpbml0eSIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBTZWEgU3VyZmFjZSBTYWxpbml0eSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5TXzQxIChTZWEgV2F0ZXIgUHJhY3RpY2FsIFNhbGluaXR5LCBQU1UpXG5RU181MDQxIChTYWxpbml0eSBRdWFsaXR5KVxuU1NfNjA0MSAoU2FsaW5pdHkgU291cmNlKVxuU0lDXzcwNDEgKFNhbGluaXR5IEluc3RydW1lbnQgQ29kZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0U3NzX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0U3NzX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnRTc3MvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydFNzcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydFNzcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0U3NzIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRTc2Quc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRTc2QiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFNzZC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5OTItcHJlc2VudCwgU2lnbWEtVGhldGEiLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgU2lnbWEtVGhldGEgKFBvdGVudGlhbCBEZW5zaXR5IEFub21hbHkpIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNUSF83MSAoU2lnbWEtVGhldGEsIGtnIG0tMylcblFTVF81MDcxIChTaWdtYS1UaGV0YSBRdWFsaXR5KVxuU1NUXzYwNzEgKFNpZ21hLVRoZXRhIFNvdXJjZSlcbkRJQ183MDcxIChTaWdtYS1UaGV0YSBJbnN0cnVtZW50IENvZGUpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb1FydFNzZF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydFNzZF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvUXJ0U3NkL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9RcnRTc2QucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRTc2Qmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb1FydFNzZCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0RW1wLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0RW1wIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRFbXAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgUXVhcnRlcmx5LCAxOTk3LXByZXNlbnQsIEV2YXBvcmF0aW9uIE1pbnVzIFByZWNpcGl0YXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgRXZhcG9yYXRpb24gTWludXMgUHJlY2lwaXRhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5FTVBfMjUxIChFdmFwb3JhdGlvbiBNaW51cyBQcmVjaXBpdGF0aW9uLCBtbS9ocilcblFFTVBfNTI1MSAoRXZhcG9yYXRpb24gTWludXMgUHJlY2lwaXRhdGlvbiBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRFbXBfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9RcnRFbXBfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydEVtcC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0RW1wLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvUXJ0RW1wJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRFbXAiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFJmLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0UmYiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFJmLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk5Ny1wcmVzZW50LCBIZWF0IEZsdXggRHVlIFRvIFJhaW4iLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgSGVhdCBGbHV4IER1ZSBUbyBSYWluIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFSXzEzOSAoSGVhdCBGbHV4IER1ZSBUbyBSYWluLCBXIG0tMilcblFRUl81MTM5IChIZWF0IEZsdXggRHVlIFRvIFJhaW4gUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0UmZfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9RcnRSZl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvUXJ0UmYvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydFJmLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvUXJ0UmYmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb1FydFJmIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRSYWluLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0UmFpbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0UmFpbi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5OTctcHJlc2VudCwgUHJlY2lwaXRhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBQcmVjaXBpdGF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblJOXzQ4NSAoUHJlY2lwaXRhdGlvbiwgTU0vSFIpXG5RUk5fNTQ4NSAoUHJlY2lwaXRhdGlvbiBRdWFsaXR5KVxuU1JOXzY0ODUgKFByZWNpcGl0YXRpb24gU291cmNlKVxuUk5TXzQ4NiAoUHJlY2lwaXRhdGlvbiBTdGFuZGFyZCBEZXZpYXRpb24sIE1NL0hSKVxuUk5QXzQ4NyAoUGVyY2VudCBUaW1lIFJhaW5pbmcsIHBlcmNlbnQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb1FydFJhaW5fZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9RcnRSYWluX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnRSYWluL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9RcnRSYWluLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvUXJ0UmFpbiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0UmFpbiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0QnAuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRCcCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0QnAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgUXVhcnRlcmx5LCAxOTk4LXByZXNlbnQsIEJhcm9tZXRyaWMgKEFpcikgUHJlc3N1cmUiLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgQmFyb21ldHJpYyAoQWlyKSBQcmVzc3VyZSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5CUF85MTUgKEJhcm9tZXRyaWMgKEFpcikgUHJlc3N1cmUsIGhQYSlcblFCUF81OTE1IChCYXJvbWV0cmljIChBaXIpIFByZXNzdXJlIFF1YWxpdHkpXG5TQlBfNjkxNSAoQmFyb21ldHJpYyAoQWlyKSBQcmVzc3VyZSBTb3VyY2UpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb1FydEJwX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0QnBfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydEJwL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9RcnRCcC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydEJwJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRCcCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0QmYuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRCZiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0QmYuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgUXVhcnRlcmx5LCAyMDAwLXByZXNlbnQsIEJ1b3lhbmN5IEZsdXgiLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgQnVveWFuY3kgRmx1eCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5CRl8xOTEgKEJ1b3lhbmN5IEZsdXgsIDEwKio2IGtnIG0tMiBzLTEpXG5RQkZfNTE5MSAoQnVveWFuY3kgRmx1eCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRCZl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydEJmX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnRCZi9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0QmYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRCZiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0QmYiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydEx3LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0THciLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydEx3LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMjAwMC1wcmVzZW50LCBMb25nd2F2ZSBSYWRpYXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgSW5jb21pbmcgTG9uZ3dhdmUgUmFkaWF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFsXzEzNiAoSW5jb21pbmcgTG9uZ3dhdmUgUmFkaWF0aW9uLCBXIG0tMilcblFMV181MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNMV182MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRMd19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydEx3X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnRMdy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0THcucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRMdyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0THciXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydEx3bmV0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0THduZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydEx3bmV0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMjAwMC1wcmVzZW50LCBOZXQgTG9uZ3dhdmUgUmFkaWF0aW9uIiwgIlRoaXMgZGF0YXNldCBoYXMgcXVhcnRlcmx5IE5ldCBMb25nd2F2ZSBSYWRpYXRpb24gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBRdWFydGVybHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIG1vbnRobHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSAzIG1vbnRoIHBlcmlvZC4gIEEgbWluaW11bSBvZiAyIG1vbnRobHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgcXVhcnRlcmx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuTFdOXzExMzYgKE5ldCBMb25nd2F2ZSBSYWRpYXRpb24sIFcgbS0yKVxuUUxXXzUxMzYgKExvbmd3YXZlIFJhZGlhdGlvbiBRdWFsaXR5KVxuU0xXXzYxMzYgKExvbmd3YXZlIFJhZGlhdGlvbiBTb3VyY2UpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb1FydEx3bmV0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0THduZXRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydEx3bmV0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9RcnRMd25ldC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydEx3bmV0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRMd25ldCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0UW5ldC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFFuZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFFuZXQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgUXVhcnRlcmx5LCAyMDAwLXByZXNlbnQsIFRvdGFsIEhlYXQgRmx1eCIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBUb3RhbCBIZWF0IEZsdXggZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBRdWFydGVybHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIG1vbnRobHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSAzIG1vbnRoIHBlcmlvZC4gIEEgbWluaW11bSBvZiAyIG1vbnRobHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgcXVhcnRlcmx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUVRfMjEwIChUb3RhbCBIZWF0IEZsdXgsIFcvTSoqMilcblFRMF81MjEwIChUb3RhbCBIZWF0IEZsdXggUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0UW5ldF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydFFuZXRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydFFuZXQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydFFuZXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRRbmV0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRRbmV0Il0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTIxNmhyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJMjE2aHIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVXB3ZWxsaW5nIEluZGV4LCAyMU4gMTA3VywgNi1ob3VybHkiLCAiVXB3ZWxsaW5nIGluZGV4IGNvbXB1dGVkIGZyb20gMS1kZWdyZWUgRk5NT0Mgc2VhIGxldmVsIHByZXNzdXJlIGZvciAxNSBsb2NhdGlvbnMgb2ZmIHRoZSBOb3J0aCBBbWVyaWNhbiBXZXN0IENvYXN0IGF0IGVhY2ggMyBkZWdyZWVzIG9mIGxhdGl0dWRlIGZyb20gMjFOIHRvIDYwTi4gVGhlIGNvYXN0YWwgVXB3ZWxsaW5nIEluZGV4IGlzIGFuIGluZGV4IG9mIHRoZSBzdHJlbmd0aCBvZiB0aGUgd2luZCBmb3JjaW5nIG9uIHRoZSBvY2VhbiB3aGljaCBoYXMgYmVlbiB1c2VkIGluIG1hbnkgc3R1ZGllcyBvZiB0aGUgZWZmZWN0cyBvZiBvY2VhbiB2YXJpYWJpbGl0eSBvbiB0aGUgcmVwcm9kdWN0aXZlIGFuZCByZWNydWl0bWVudCBzdWNjZXNzIG9mIG1hbnkgZmlzaCBhbmQgaW52ZXJ0ZWJyYXRlIHNwZWNpZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChyZWZlcmVuY2UgdGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnVwd2VsbGluZ19pbmRleFxuc3RhdGlvbl9pZFxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRVSTIxNmhyX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRVSTIxNmhyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZFVJMjE2aHIvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0xBUy9kb2NzL3dpbmRfZnJvbV9wcmVzc3VyZS5uYy5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZFVJMjE2aHIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZFVJMjE2aHImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQS9TV0ZTQyBFbnZpcm9ubWVudGFsIFJlc2VhcmNoIERpdmlzaW9uIiwgImVyZFVJMjE2aHIiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJMjQ2aHIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUkyNDZoci5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJVcHdlbGxpbmcgSW5kZXgsIDI0TiAxMTNXLCA2LWhvdXJseSIsICJVcHdlbGxpbmcgaW5kZXggY29tcHV0ZWQgZnJvbSAxLWRlZ3JlZSBGTk1PQyBzZWEgbGV2ZWwgcHJlc3N1cmUgZm9yIDE1IGxvY2F0aW9ucyBvZmYgdGhlIE5vcnRoIEFtZXJpY2FuIFdlc3QgQ29hc3QgYXQgZWFjaCAzIGRlZ3JlZXMgb2YgbGF0aXR1ZGUgZnJvbSAyMU4gdG8gNjBOLiBUaGUgY29hc3RhbCBVcHdlbGxpbmcgSW5kZXggaXMgYW4gaW5kZXggb2YgdGhlIHN0cmVuZ3RoIG9mIHRoZSB3aW5kIGZvcmNpbmcgb24gdGhlIG9jZWFuIHdoaWNoIGhhcyBiZWVuIHVzZWQgaW4gbWFueSBzdHVkaWVzIG9mIHRoZSBlZmZlY3RzIG9mIG9jZWFuIHZhcmlhYmlsaXR5IG9uIHRoZSByZXByb2R1Y3RpdmUgYW5kIHJlY3J1aXRtZW50IHN1Y2Nlc3Mgb2YgbWFueSBmaXNoIGFuZCBpbnZlcnRlYnJhdGUgc3BlY2llcy5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHJlZmVyZW5jZSB0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxudXB3ZWxsaW5nX2luZGV4XG5zdGF0aW9uX2lkXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZFVJMjQ2aHJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZFVJMjQ2aHJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkVUkyNDZoci9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTEFTL2RvY3Mvd2luZF9mcm9tX3ByZXNzdXJlLm5jLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkVUkyNDZoci5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkVUkyNDZociZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBL1NXRlNDIEVudmlyb25tZW50YWwgUmVzZWFyY2ggRGl2aXNpb24iLCAiZXJkVUkyNDZociJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUkyNzZociIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTI3NmhyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlVwd2VsbGluZyBJbmRleCwgMjdOIDExNlcsIDYtaG91cmx5IiwgIlVwd2VsbGluZyBpbmRleCBjb21wdXRlZCBmcm9tIDEtZGVncmVlIEZOTU9DIHNlYSBsZXZlbCBwcmVzc3VyZSBmb3IgMTUgbG9jYXRpb25zIG9mZiB0aGUgTm9ydGggQW1lcmljYW4gV2VzdCBDb2FzdCBhdCBlYWNoIDMgZGVncmVlcyBvZiBsYXRpdHVkZSBmcm9tIDIxTiB0byA2ME4uIFRoZSBjb2FzdGFsIFVwd2VsbGluZyBJbmRleCBpcyBhbiBpbmRleCBvZiB0aGUgc3RyZW5ndGggb2YgdGhlIHdpbmQgZm9yY2luZyBvbiB0aGUgb2NlYW4gd2hpY2ggaGFzIGJlZW4gdXNlZCBpbiBtYW55IHN0dWRpZXMgb2YgdGhlIGVmZmVjdHMgb2Ygb2NlYW4gdmFyaWFiaWxpdHkgb24gdGhlIHJlcHJvZHVjdGl2ZSBhbmQgcmVjcnVpdG1lbnQgc3VjY2VzcyBvZiBtYW55IGZpc2ggYW5kIGludmVydGVicmF0ZSBzcGVjaWVzLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAocmVmZXJlbmNlIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG51cHdlbGxpbmdfaW5kZXhcbnN0YXRpb25faWRcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkVUkyNzZocl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkVUkyNzZocl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRVSTI3NmhyL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9MQVMvZG9jcy93aW5kX2Zyb21fcHJlc3N1cmUubmMuaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRVSTI3NmhyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRVSTI3NmhyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEvU1dGU0MgRW52aXJvbm1lbnRhbCBSZXNlYXJjaCBEaXZpc2lvbiIsICJlcmRVSTI3NmhyIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTMwNmhyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJMzA2aHIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVXB3ZWxsaW5nIEluZGV4LCAzME4gMTE5VywgNi1ob3VybHkiLCAiVXB3ZWxsaW5nIGluZGV4IGNvbXB1dGVkIGZyb20gMS1kZWdyZWUgRk5NT0Mgc2VhIGxldmVsIHByZXNzdXJlIGZvciAxNSBsb2NhdGlvbnMgb2ZmIHRoZSBOb3J0aCBBbWVyaWNhbiBXZXN0IENvYXN0IGF0IGVhY2ggMyBkZWdyZWVzIG9mIGxhdGl0dWRlIGZyb20gMjFOIHRvIDYwTi4gVGhlIGNvYXN0YWwgVXB3ZWxsaW5nIEluZGV4IGlzIGFuIGluZGV4IG9mIHRoZSBzdHJlbmd0aCBvZiB0aGUgd2luZCBmb3JjaW5nIG9uIHRoZSBvY2VhbiB3aGljaCBoYXMgYmVlbiB1c2VkIGluIG1hbnkgc3R1ZGllcyBvZiB0aGUgZWZmZWN0cyBvZiBvY2VhbiB2YXJpYWJpbGl0eSBvbiB0aGUgcmVwcm9kdWN0aXZlIGFuZCByZWNydWl0bWVudCBzdWNjZXNzIG9mIG1hbnkgZmlzaCBhbmQgaW52ZXJ0ZWJyYXRlIHNwZWNpZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChyZWZlcmVuY2UgdGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnVwd2VsbGluZ19pbmRleFxuc3RhdGlvbl9pZFxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRVSTMwNmhyX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRVSTMwNmhyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZFVJMzA2aHIvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0xBUy9kb2NzL3dpbmRfZnJvbV9wcmVzc3VyZS5uYy5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZFVJMzA2aHIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZFVJMzA2aHImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQS9TV0ZTQyBFbnZpcm9ubWVudGFsIFJlc2VhcmNoIERpdmlzaW9uIiwgImVyZFVJMzA2aHIiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJMzM2aHIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUkzMzZoci5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJVcHdlbGxpbmcgSW5kZXgsIDMzTiAxMTlXLCA2LWhvdXJseSIsICJVcHdlbGxpbmcgaW5kZXggY29tcHV0ZWQgZnJvbSAxLWRlZ3JlZSBGTk1PQyBzZWEgbGV2ZWwgcHJlc3N1cmUgZm9yIDE1IGxvY2F0aW9ucyBvZmYgdGhlIE5vcnRoIEFtZXJpY2FuIFdlc3QgQ29hc3QgYXQgZWFjaCAzIGRlZ3JlZXMgb2YgbGF0aXR1ZGUgZnJvbSAyMU4gdG8gNjBOLiBUaGUgY29hc3RhbCBVcHdlbGxpbmcgSW5kZXggaXMgYW4gaW5kZXggb2YgdGhlIHN0cmVuZ3RoIG9mIHRoZSB3aW5kIGZvcmNpbmcgb24gdGhlIG9jZWFuIHdoaWNoIGhhcyBiZWVuIHVzZWQgaW4gbWFueSBzdHVkaWVzIG9mIHRoZSBlZmZlY3RzIG9mIG9jZWFuIHZhcmlhYmlsaXR5IG9uIHRoZSByZXByb2R1Y3RpdmUgYW5kIHJlY3J1aXRtZW50IHN1Y2Nlc3Mgb2YgbWFueSBmaXNoIGFuZCBpbnZlcnRlYnJhdGUgc3BlY2llcy5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHJlZmVyZW5jZSB0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxudXB3ZWxsaW5nX2luZGV4XG5zdGF0aW9uX2lkXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZFVJMzM2aHJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZFVJMzM2aHJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkVUkzMzZoci9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTEFTL2RvY3Mvd2luZF9mcm9tX3ByZXNzdXJlLm5jLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkVUkzMzZoci5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkVUkzMzZociZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBL1NXRlNDIEVudmlyb25tZW50YWwgUmVzZWFyY2ggRGl2aXNpb24iLCAiZXJkVUkzMzZociJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUkzNjZociIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTM2NmhyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlVwd2VsbGluZyBJbmRleCwgMzZOIDEyMlcsIDYtaG91cmx5IiwgIlVwd2VsbGluZyBpbmRleCBjb21wdXRlZCBmcm9tIDEtZGVncmVlIEZOTU9DIHNlYSBsZXZlbCBwcmVzc3VyZSBmb3IgMTUgbG9jYXRpb25zIG9mZiB0aGUgTm9ydGggQW1lcmljYW4gV2VzdCBDb2FzdCBhdCBlYWNoIDMgZGVncmVlcyBvZiBsYXRpdHVkZSBmcm9tIDIxTiB0byA2ME4uIFRoZSBjb2FzdGFsIFVwd2VsbGluZyBJbmRleCBpcyBhbiBpbmRleCBvZiB0aGUgc3RyZW5ndGggb2YgdGhlIHdpbmQgZm9yY2luZyBvbiB0aGUgb2NlYW4gd2hpY2ggaGFzIGJlZW4gdXNlZCBpbiBtYW55IHN0dWRpZXMgb2YgdGhlIGVmZmVjdHMgb2Ygb2NlYW4gdmFyaWFiaWxpdHkgb24gdGhlIHJlcHJvZHVjdGl2ZSBhbmQgcmVjcnVpdG1lbnQgc3VjY2VzcyBvZiBtYW55IGZpc2ggYW5kIGludmVydGVicmF0ZSBzcGVjaWVzLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAocmVmZXJlbmNlIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG51cHdlbGxpbmdfaW5kZXhcbnN0YXRpb25faWRcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkVUkzNjZocl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkVUkzNjZocl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRVSTM2NmhyL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9MQVMvZG9jcy93aW5kX2Zyb21fcHJlc3N1cmUubmMuaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRVSTM2NmhyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRVSTM2NmhyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEvU1dGU0MgRW52aXJvbm1lbnRhbCBSZXNlYXJjaCBEaXZpc2lvbiIsICJlcmRVSTM2NmhyIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTM5NmhyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJMzk2aHIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVXB3ZWxsaW5nIEluZGV4LCAzOU4gMTI1VywgNi1ob3VybHkiLCAiVXB3ZWxsaW5nIGluZGV4IGNvbXB1dGVkIGZyb20gMS1kZWdyZWUgRk5NT0Mgc2VhIGxldmVsIHByZXNzdXJlIGZvciAxNSBsb2NhdGlvbnMgb2ZmIHRoZSBOb3J0aCBBbWVyaWNhbiBXZXN0IENvYXN0IGF0IGVhY2ggMyBkZWdyZWVzIG9mIGxhdGl0dWRlIGZyb20gMjFOIHRvIDYwTi4gVGhlIGNvYXN0YWwgVXB3ZWxsaW5nIEluZGV4IGlzIGFuIGluZGV4IG9mIHRoZSBzdHJlbmd0aCBvZiB0aGUgd2luZCBmb3JjaW5nIG9uIHRoZSBvY2VhbiB3aGljaCBoYXMgYmVlbiB1c2VkIGluIG1hbnkgc3R1ZGllcyBvZiB0aGUgZWZmZWN0cyBvZiBvY2VhbiB2YXJpYWJpbGl0eSBvbiB0aGUgcmVwcm9kdWN0aXZlIGFuZCByZWNydWl0bWVudCBzdWNjZXNzIG9mIG1hbnkgZmlzaCBhbmQgaW52ZXJ0ZWJyYXRlIHNwZWNpZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChyZWZlcmVuY2UgdGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnVwd2VsbGluZ19pbmRleFxuc3RhdGlvbl9pZFxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRVSTM5NmhyX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRVSTM5NmhyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZFVJMzk2aHIvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0xBUy9kb2NzL3dpbmRfZnJvbV9wcmVzc3VyZS5uYy5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZFVJMzk2aHIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZFVJMzk2aHImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQS9TV0ZTQyBFbnZpcm9ubWVudGFsIFJlc2VhcmNoIERpdmlzaW9uIiwgImVyZFVJMzk2aHIiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJNDI2aHIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUk0MjZoci5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJVcHdlbGxpbmcgSW5kZXgsIDQyTiAxMjVXLCA2LWhvdXJseSIsICJVcHdlbGxpbmcgaW5kZXggY29tcHV0ZWQgZnJvbSAxLWRlZ3JlZSBGTk1PQyBzZWEgbGV2ZWwgcHJlc3N1cmUgZm9yIDE1IGxvY2F0aW9ucyBvZmYgdGhlIE5vcnRoIEFtZXJpY2FuIFdlc3QgQ29hc3QgYXQgZWFjaCAzIGRlZ3JlZXMgb2YgbGF0aXR1ZGUgZnJvbSAyMU4gdG8gNjBOLiBUaGUgY29hc3RhbCBVcHdlbGxpbmcgSW5kZXggaXMgYW4gaW5kZXggb2YgdGhlIHN0cmVuZ3RoIG9mIHRoZSB3aW5kIGZvcmNpbmcgb24gdGhlIG9jZWFuIHdoaWNoIGhhcyBiZWVuIHVzZWQgaW4gbWFueSBzdHVkaWVzIG9mIHRoZSBlZmZlY3RzIG9mIG9jZWFuIHZhcmlhYmlsaXR5IG9uIHRoZSByZXByb2R1Y3RpdmUgYW5kIHJlY3J1aXRtZW50IHN1Y2Nlc3Mgb2YgbWFueSBmaXNoIGFuZCBpbnZlcnRlYnJhdGUgc3BlY2llcy5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHJlZmVyZW5jZSB0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxudXB3ZWxsaW5nX2luZGV4XG5zdGF0aW9uX2lkXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZFVJNDI2aHJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZFVJNDI2aHJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkVUk0MjZoci9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTEFTL2RvY3Mvd2luZF9mcm9tX3ByZXNzdXJlLm5jLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkVUk0MjZoci5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkVUk0MjZociZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBL1NXRlNDIEVudmlyb25tZW50YWwgUmVzZWFyY2ggRGl2aXNpb24iLCAiZXJkVUk0MjZociJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUk0NTZociIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTQ1NmhyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlVwd2VsbGluZyBJbmRleCwgNDVOIDEyNVcsIDYtaG91cmx5IiwgIlVwd2VsbGluZyBpbmRleCBjb21wdXRlZCBmcm9tIDEtZGVncmVlIEZOTU9DIHNlYSBsZXZlbCBwcmVzc3VyZSBmb3IgMTUgbG9jYXRpb25zIG9mZiB0aGUgTm9ydGggQW1lcmljYW4gV2VzdCBDb2FzdCBhdCBlYWNoIDMgZGVncmVlcyBvZiBsYXRpdHVkZSBmcm9tIDIxTiB0byA2ME4uIFRoZSBjb2FzdGFsIFVwd2VsbGluZyBJbmRleCBpcyBhbiBpbmRleCBvZiB0aGUgc3RyZW5ndGggb2YgdGhlIHdpbmQgZm9yY2luZyBvbiB0aGUgb2NlYW4gd2hpY2ggaGFzIGJlZW4gdXNlZCBpbiBtYW55IHN0dWRpZXMgb2YgdGhlIGVmZmVjdHMgb2Ygb2NlYW4gdmFyaWFiaWxpdHkgb24gdGhlIHJlcHJvZHVjdGl2ZSBhbmQgcmVjcnVpdG1lbnQgc3VjY2VzcyBvZiBtYW55IGZpc2ggYW5kIGludmVydGVicmF0ZSBzcGVjaWVzLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAocmVmZXJlbmNlIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG51cHdlbGxpbmdfaW5kZXhcbnN0YXRpb25faWRcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkVUk0NTZocl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkVUk0NTZocl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRVSTQ1NmhyL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9MQVMvZG9jcy93aW5kX2Zyb21fcHJlc3N1cmUubmMuaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRVSTQ1NmhyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRVSTQ1NmhyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEvU1dGU0MgRW52aXJvbm1lbnRhbCBSZXNlYXJjaCBEaXZpc2lvbiIsICJlcmRVSTQ1NmhyIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTQ4NmhyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJNDg2aHIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVXB3ZWxsaW5nIEluZGV4LCA0OE4gMTI1VywgNi1ob3VybHkiLCAiVXB3ZWxsaW5nIGluZGV4IGNvbXB1dGVkIGZyb20gMS1kZWdyZWUgRk5NT0Mgc2VhIGxldmVsIHByZXNzdXJlIGZvciAxNSBsb2NhdGlvbnMgb2ZmIHRoZSBOb3J0aCBBbWVyaWNhbiBXZXN0IENvYXN0IGF0IGVhY2ggMyBkZWdyZWVzIG9mIGxhdGl0dWRlIGZyb20gMjFOIHRvIDYwTi4gVGhlIGNvYXN0YWwgVXB3ZWxsaW5nIEluZGV4IGlzIGFuIGluZGV4IG9mIHRoZSBzdHJlbmd0aCBvZiB0aGUgd2luZCBmb3JjaW5nIG9uIHRoZSBvY2VhbiB3aGljaCBoYXMgYmVlbiB1c2VkIGluIG1hbnkgc3R1ZGllcyBvZiB0aGUgZWZmZWN0cyBvZiBvY2VhbiB2YXJpYWJpbGl0eSBvbiB0aGUgcmVwcm9kdWN0aXZlIGFuZCByZWNydWl0bWVudCBzdWNjZXNzIG9mIG1hbnkgZmlzaCBhbmQgaW52ZXJ0ZWJyYXRlIHNwZWNpZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChyZWZlcmVuY2UgdGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnVwd2VsbGluZ19pbmRleFxuc3RhdGlvbl9pZFxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRVSTQ4NmhyX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRVSTQ4NmhyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZFVJNDg2aHIvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0xBUy9kb2NzL3dpbmRfZnJvbV9wcmVzc3VyZS5uYy5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZFVJNDg2aHIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZFVJNDg2aHImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQS9TV0ZTQyBFbnZpcm9ubWVudGFsIFJlc2VhcmNoIERpdmlzaW9uIiwgImVyZFVJNDg2aHIiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJNTE2aHIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUk1MTZoci5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJVcHdlbGxpbmcgSW5kZXgsIDUxTiAxMzFXLCA2LWhvdXJseSIsICJVcHdlbGxpbmcgaW5kZXggY29tcHV0ZWQgZnJvbSAxLWRlZ3JlZSBGTk1PQyBzZWEgbGV2ZWwgcHJlc3N1cmUgZm9yIDE1IGxvY2F0aW9ucyBvZmYgdGhlIE5vcnRoIEFtZXJpY2FuIFdlc3QgQ29hc3QgYXQgZWFjaCAzIGRlZ3JlZXMgb2YgbGF0aXR1ZGUgZnJvbSAyMU4gdG8gNjBOLiBUaGUgY29hc3RhbCBVcHdlbGxpbmcgSW5kZXggaXMgYW4gaW5kZXggb2YgdGhlIHN0cmVuZ3RoIG9mIHRoZSB3aW5kIGZvcmNpbmcgb24gdGhlIG9jZWFuIHdoaWNoIGhhcyBiZWVuIHVzZWQgaW4gbWFueSBzdHVkaWVzIG9mIHRoZSBlZmZlY3RzIG9mIG9jZWFuIHZhcmlhYmlsaXR5IG9uIHRoZSByZXByb2R1Y3RpdmUgYW5kIHJlY3J1aXRtZW50IHN1Y2Nlc3Mgb2YgbWFueSBmaXNoIGFuZCBpbnZlcnRlYnJhdGUgc3BlY2llcy5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHJlZmVyZW5jZSB0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxudXB3ZWxsaW5nX2luZGV4XG5zdGF0aW9uX2lkXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZFVJNTE2aHJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZFVJNTE2aHJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkVUk1MTZoci9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTEFTL2RvY3Mvd2luZF9mcm9tX3ByZXNzdXJlLm5jLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkVUk1MTZoci5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkVUk1MTZociZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBL1NXRlNDIEVudmlyb25tZW50YWwgUmVzZWFyY2ggRGl2aXNpb24iLCAiZXJkVUk1MTZociJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUk1NDZociIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTU0NmhyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlVwd2VsbGluZyBJbmRleCwgNTROIDEzNFcsIDYtaG91cmx5IiwgIlVwd2VsbGluZyBpbmRleCBjb21wdXRlZCBmcm9tIDEtZGVncmVlIEZOTU9DIHNlYSBsZXZlbCBwcmVzc3VyZSBmb3IgMTUgbG9jYXRpb25zIG9mZiB0aGUgTm9ydGggQW1lcmljYW4gV2VzdCBDb2FzdCBhdCBlYWNoIDMgZGVncmVlcyBvZiBsYXRpdHVkZSBmcm9tIDIxTiB0byA2ME4uIFRoZSBjb2FzdGFsIFVwd2VsbGluZyBJbmRleCBpcyBhbiBpbmRleCBvZiB0aGUgc3RyZW5ndGggb2YgdGhlIHdpbmQgZm9yY2luZyBvbiB0aGUgb2NlYW4gd2hpY2ggaGFzIGJlZW4gdXNlZCBpbiBtYW55IHN0dWRpZXMgb2YgdGhlIGVmZmVjdHMgb2Ygb2NlYW4gdmFyaWFiaWxpdHkgb24gdGhlIHJlcHJvZHVjdGl2ZSBhbmQgcmVjcnVpdG1lbnQgc3VjY2VzcyBvZiBtYW55IGZpc2ggYW5kIGludmVydGVicmF0ZSBzcGVjaWVzLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAocmVmZXJlbmNlIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG51cHdlbGxpbmdfaW5kZXhcbnN0YXRpb25faWRcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkVUk1NDZocl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkVUk1NDZocl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRVSTU0NmhyL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9MQVMvZG9jcy93aW5kX2Zyb21fcHJlc3N1cmUubmMuaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRVSTU0NmhyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRVSTU0NmhyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEvU1dGU0MgRW52aXJvbm1lbnRhbCBSZXNlYXJjaCBEaXZpc2lvbiIsICJlcmRVSTU0NmhyIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTU3NmhyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJNTc2aHIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVXB3ZWxsaW5nIEluZGV4LCA1N04gMTM3VywgNi1ob3VybHkiLCAiVXB3ZWxsaW5nIGluZGV4IGNvbXB1dGVkIGZyb20gMS1kZWdyZWUgRk5NT0Mgc2VhIGxldmVsIHByZXNzdXJlIGZvciAxNSBsb2NhdGlvbnMgb2ZmIHRoZSBOb3J0aCBBbWVyaWNhbiBXZXN0IENvYXN0IGF0IGVhY2ggMyBkZWdyZWVzIG9mIGxhdGl0dWRlIGZyb20gMjFOIHRvIDYwTi4gVGhlIGNvYXN0YWwgVXB3ZWxsaW5nIEluZGV4IGlzIGFuIGluZGV4IG9mIHRoZSBzdHJlbmd0aCBvZiB0aGUgd2luZCBmb3JjaW5nIG9uIHRoZSBvY2VhbiB3aGljaCBoYXMgYmVlbiB1c2VkIGluIG1hbnkgc3R1ZGllcyBvZiB0aGUgZWZmZWN0cyBvZiBvY2VhbiB2YXJpYWJpbGl0eSBvbiB0aGUgcmVwcm9kdWN0aXZlIGFuZCByZWNydWl0bWVudCBzdWNjZXNzIG9mIG1hbnkgZmlzaCBhbmQgaW52ZXJ0ZWJyYXRlIHNwZWNpZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChyZWZlcmVuY2UgdGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnVwd2VsbGluZ19pbmRleFxuc3RhdGlvbl9pZFxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRVSTU3NmhyX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRVSTU3NmhyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZFVJNTc2aHIvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0xBUy9kb2NzL3dpbmRfZnJvbV9wcmVzc3VyZS5uYy5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZFVJNTc2aHIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZFVJNTc2aHImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQS9TV0ZTQyBFbnZpcm9ubWVudGFsIFJlc2VhcmNoIERpdmlzaW9uIiwgImVyZFVJNTc2aHIiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJNjA2aHIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUk2MDZoci5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJVcHdlbGxpbmcgSW5kZXgsIDYwTiAxNDZXLCA2LWhvdXJseSIsICJVcHdlbGxpbmcgaW5kZXggY29tcHV0ZWQgZnJvbSAxLWRlZ3JlZSBGTk1PQyBzZWEgbGV2ZWwgcHJlc3N1cmUgZm9yIDE1IGxvY2F0aW9ucyBvZmYgdGhlIE5vcnRoIEFtZXJpY2FuIFdlc3QgQ29hc3QgYXQgZWFjaCAzIGRlZ3JlZXMgb2YgbGF0aXR1ZGUgZnJvbSAyMU4gdG8gNjBOLiBUaGUgY29hc3RhbCBVcHdlbGxpbmcgSW5kZXggaXMgYW4gaW5kZXggb2YgdGhlIHN0cmVuZ3RoIG9mIHRoZSB3aW5kIGZvcmNpbmcgb24gdGhlIG9jZWFuIHdoaWNoIGhhcyBiZWVuIHVzZWQgaW4gbWFueSBzdHVkaWVzIG9mIHRoZSBlZmZlY3RzIG9mIG9jZWFuIHZhcmlhYmlsaXR5IG9uIHRoZSByZXByb2R1Y3RpdmUgYW5kIHJlY3J1aXRtZW50IHN1Y2Nlc3Mgb2YgbWFueSBmaXNoIGFuZCBpbnZlcnRlYnJhdGUgc3BlY2llcy5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHJlZmVyZW5jZSB0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxudXB3ZWxsaW5nX2luZGV4XG5zdGF0aW9uX2lkXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZFVJNjA2aHJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZFVJNjA2aHJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkVUk2MDZoci9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTEFTL2RvY3Mvd2luZF9mcm9tX3ByZXNzdXJlLm5jLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkVUk2MDZoci5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkVUk2MDZociZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBL1NXRlNDIEVudmlyb25tZW50YWwgUmVzZWFyY2ggRGl2aXNpb24iLCAiZXJkVUk2MDZociJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUk2MTZociIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTYxNmhyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlVwd2VsbGluZyBJbmRleCwgNjBOIDE0OVcsIDYtaG91cmx5IiwgIlVwd2VsbGluZyBpbmRleCBjb21wdXRlZCBmcm9tIDEtZGVncmVlIEZOTU9DIHNlYSBsZXZlbCBwcmVzc3VyZSBmb3IgMTUgbG9jYXRpb25zIG9mZiB0aGUgTm9ydGggQW1lcmljYW4gV2VzdCBDb2FzdCBhdCBlYWNoIDMgZGVncmVlcyBvZiBsYXRpdHVkZSBmcm9tIDIxTiB0byA2ME4uIFRoZSBjb2FzdGFsIFVwd2VsbGluZyBJbmRleCBpcyBhbiBpbmRleCBvZiB0aGUgc3RyZW5ndGggb2YgdGhlIHdpbmQgZm9yY2luZyBvbiB0aGUgb2NlYW4gd2hpY2ggaGFzIGJlZW4gdXNlZCBpbiBtYW55IHN0dWRpZXMgb2YgdGhlIGVmZmVjdHMgb2Ygb2NlYW4gdmFyaWFiaWxpdHkgb24gdGhlIHJlcHJvZHVjdGl2ZSBhbmQgcmVjcnVpdG1lbnQgc3VjY2VzcyBvZiBtYW55IGZpc2ggYW5kIGludmVydGVicmF0ZSBzcGVjaWVzLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAocmVmZXJlbmNlIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG51cHdlbGxpbmdfaW5kZXhcbnN0YXRpb25faWRcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkVUk2MTZocl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkVUk2MTZocl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRVSTYxNmhyL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9MQVMvZG9jcy93aW5kX2Zyb21fcHJlc3N1cmUubmMuaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRVSTYxNmhyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRVSTYxNmhyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEvU1dGU0MgRW52aXJvbm1lbnRhbCBSZXNlYXJjaCBEaXZpc2lvbiIsICJlcmRVSTYxNmhyIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25tc3BXY29zQWRjcEQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25tc3BXY29zQWRjcEQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm1zcFdjb3NBZGNwRC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJXZXN0IENvYXN0IE9ic2VydmluZyBTeXN0ZW0gKFdDT1MpIEFEQ1AgQ3VycmVudHMgRGF0YSwgMjAwNC0yMDA4IiwgIlRoZSBXZXN0IENvYXN0IE9ic2VydmluZyBTeXN0ZW0gKFdDT1MpIHByb2plY3QgcHJvdmlkZXMgYWNjZXNzIHRvIHRlbXBlcmF0dXJlIGFuZCBjdXJyZW50cyBkYXRhIGNvbGxlY3RlZCBhdCBmb3VyIG9mIHRoZSBmaXZlIE5hdGlvbmFsIE1hcmluZSBTYW5jdHVhcnkgc2l0ZXMsIGluY2x1ZGluZyBPbHltcGljIENvYXN0LCBHdWxmIG9mIHRoZSBGYXJhbGxvbmVzLCBNb250ZXJleSBCYXksIGFuZCBDaGFubmVsIElzbGFuZHMuIEEgc2VtaS1hdXRvbWF0ZWQgZW5kLXRvLWVuZCBkYXRhIG1hbmFnZW1lbnQgc3lzdGVtIHRyYW5zcG9ydHMgYW5kIHRyYW5zZm9ybXMgdGhlIGRhdGEgZnJvbSBzb3VyY2UgdG8gYXJjaGl2ZSwgbWFraW5nIHRoZSBkYXRhIGFjZXNzaWJsZSBmb3IgZGlzY292ZXJ5LCBhY2Nlc3MgYW5kIGFuYWx5c2lzIGZyb20gbXVsdGlwbGUgSW50ZXJuZXQgcG9pbnRzIG9mIGVudHJ5LlxuXG5UaGUgc3RhdGlvbnMgKGFuZCB0aGVpciBjb2RlIG5hbWVzKSBhcmUgU2FuIE1pZ3VlbCBOb3J0aCAoQkFZKSwgU2FudGEgUm9zYSBOb3J0aCAoQkVBKSwgQ3V5bGVyIEhhcmJvciAoQ1VZKSwgUGVsaWNhbi9Qcmlzb25lcnMgQXJlYSAoUEVMKSwgU2FuIE1pZ3VlbCBTb3V0aCAoU01TKSwgU2FudGEgUm9zYSBTb3V0aCAoU1JTKSwgVmFsbGV5IEFuY2ggKFZBTCkuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzUHJvZmlsZVxuVkFSSUFCTEVTOlxuc3RhdGlvblxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkRhdGFRdWFsaXR5IChEYXRhIFF1YWxpdHksIHBlcmNlbnQpXG5EYXRhUXVhbGl0eV9mbGFnIChEYXRhIFF1YWxpdHkgRmxhZylcbkVhc3R3YXJkIChFYXN0d2FyZCBDdXJyZW50LCBtIHMtMSlcbkVhc3R3YXJkX2ZsYWdcbkVycm9yVmVsb2NpdHkgKEVycm9yIFZlbG9jaXR5LCBtIHMtMSlcbkVycm9yVmVsb2NpdHlfZmxhZyAoRXJyb3IgVmVsb2NpdHkgRmxhZylcbkludGVuc2l0eSAoY291bnQpXG5JbnRlbnNpdHlfZmxhZ1xuTm9ydGh3YXJkIChOb3J0aHdhcmQgQ3VycmVudCwgbSBzLTEpXG5Ob3J0aHdhcmRfZmxhZ1xuVXB3YXJkcyAoVXB3YXJkIEN1cnJlbnQsIG0gcy0xKVxuVXB3YXJkc19mbGFnXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm1zcFdjb3NBZGNwRF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm1zcFdjb3NBZGNwRF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ubXNwV2Nvc0FkY3BEL2luZGV4Lmpzb24iLCAiZnRwOi8vZnRwLm5vZGMubm9hYS5nb3Yvbm9kYy9hcmNoaXZlL2FyYzAwMDYvMDAwMjAzOS8xLjEvYWJvdXQvV0NPU19wcm9qZWN0X2RvY3VtZW50X3BoYXNlSV8yMDA2MDMxNy5wZGYiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm1zcFdjb3NBZGNwRC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bm1zcFdjb3NBZGNwRCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5NU1AiLCAibm1zcFdjb3NBZGNwRCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ubXNwV2Nvc0FkY3BTLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ubXNwV2Nvc0FkY3BTIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25tc3BXY29zQWRjcFMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiV2VzdCBDb2FzdCBPYnNlcnZpbmcgU3lzdGVtIChXQ09TKSBBRENQIFN0YXRpb24gRGF0YSwgMjAwNC0yMDA4IiwgIlRoZSBXZXN0IENvYXN0IE9ic2VydmluZyBTeXN0ZW0gKFdDT1MpIHByb2plY3QgcHJvdmlkZXMgYWNjZXNzIHRvIHRlbXBlcmF0dXJlIGFuZCBjdXJyZW50cyBkYXRhIGNvbGxlY3RlZCBhdCBmb3VyIG9mIHRoZSBmaXZlIE5hdGlvbmFsIE1hcmluZSBTYW5jdHVhcnkgc2l0ZXMsIGluY2x1ZGluZyBPbHltcGljIENvYXN0LCBHdWxmIG9mIHRoZSBGYXJhbGxvbmVzLCBNb250ZXJleSBCYXksIGFuZCBDaGFubmVsIElzbGFuZHMuIEEgc2VtaS1hdXRvbWF0ZWQgZW5kLXRvLWVuZCBkYXRhIG1hbmFnZW1lbnQgc3lzdGVtIHRyYW5zcG9ydHMgYW5kIHRyYW5zZm9ybXMgdGhlIGRhdGEgZnJvbSBzb3VyY2UgdG8gYXJjaGl2ZSwgbWFraW5nIHRoZSBkYXRhIGFjZXNzaWJsZSBmb3IgZGlzY292ZXJ5LCBhY2Nlc3MgYW5kIGFuYWx5c2lzIGZyb20gbXVsdGlwbGUgSW50ZXJuZXQgcG9pbnRzIG9mIGVudHJ5LlxuXG5UaGUgc3RhdGlvbnMgKGFuZCB0aGVpciBjb2RlIG5hbWVzKSBhcmUgU2FuIE1pZ3VlbCBOb3J0aCAoQkFZKSwgU2FudGEgUm9zYSBOb3J0aCAoQkVBKSwgQ3V5bGVyIEhhcmJvciAoQ1VZKSwgUGVsaWNhbi9Qcmlzb25lcnMgQXJlYSAoUEVMKSwgU2FuIE1pZ3VlbCBTb3V0aCAoU01TKSwgU2FudGEgUm9zYSBTb3V0aCAoU1JTKSwgVmFsbGV5IEFuY2ggKFZBTCkuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzUHJvZmlsZVxuVkFSSUFCTEVTOlxuc3RhdGlvblxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5QcmVzc3VyZSAoU2VhIFdhdGVyIFByZXNzdXJlLCBkYmFyKVxuUHJlc3N1cmVfZmxhZ1xuVGVtcGVyYXR1cmUgKFNlYSBXYXRlciBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5UZW1wZXJhdHVyZV9mbGFnXG5XYXRlckRlcHRoIChXYXRlciBEZXB0aCwgbSlcbldhdGVyRGVwdGhfZmxhZyAoV2F0ZXIgRGVwdGggRmxhZylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ubXNwV2Nvc0FkY3BTX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9ubXNwV2Nvc0FkY3BTX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL25tc3BXY29zQWRjcFMvaW5kZXguanNvbiIsICJmdHA6Ly9mdHAubm9kYy5ub2FhLmdvdi9ub2RjL2FyY2hpdmUvYXJjMDAwNi8wMDAyMDM5LzEuMS9hYm91dC9XQ09TX3Byb2plY3RfZG9jdW1lbnRfcGhhc2VJXzIwMDYwMzE3LnBkZiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9ubXNwV2Nvc0FkY3BTLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ubXNwV2Nvc0FkY3BTJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk1TUCIsICJubXNwV2Nvc0FkY3BTIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25tc3BXY29zVGVtcC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm1zcFdjb3NUZW1wIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25tc3BXY29zVGVtcC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJXZXN0IENvYXN0IE9ic2VydmluZyBTeXN0ZW0gKFdDT1MpIFRlbXBlcmF0dXJlIERhdGEsIDIwMDQtMjAxMSIsICJUaGUgV2VzdCBDb2FzdCBPYnNlcnZpbmcgU3lzdGVtIChXQ09TKSBwcm9qZWN0IHByb3ZpZGVzIGFjY2VzcyB0byB0ZW1wZXJhdHVyZSBhbmQgY3VycmVudHMgZGF0YSBjb2xsZWN0ZWQgYXQgZm91ciBvZiB0aGUgZml2ZSBOYXRpb25hbCBNYXJpbmUgU2FuY3R1YXJ5IHNpdGVzLCBpbmNsdWRpbmcgT2x5bXBpYyBDb2FzdCwgR3VsZiBvZiB0aGUgRmFyYWxsb25lcywgTW9udGVyZXkgQmF5LCBhbmQgQ2hhbm5lbCBJc2xhbmRzLiBBIHNlbWktYXV0b21hdGVkIGVuZC10by1lbmQgZGF0YSBtYW5hZ2VtZW50IHN5c3RlbSB0cmFuc3BvcnRzIGFuZCB0cmFuc2Zvcm1zIHRoZSBkYXRhIGZyb20gc291cmNlIHRvIGFyY2hpdmUsIG1ha2luZyB0aGUgZGF0YSBhY2Vzc2libGUgZm9yIGRpc2NvdmVyeSwgYWNjZXNzIGFuZCBhbmFseXNpcyBmcm9tIG11bHRpcGxlIEludGVybmV0IHBvaW50cyBvZiBlbnRyeS5cblxuVGhlIHN0YXRpb25zIChhbmQgdGhlaXIgY29kZSBuYW1lcykgYXJlIEFubyBOdWV2byAoQU5PMDAxKSwgU2FuIE1pZ3VlbCBOb3J0aCAoQkFZKSwgU2FudGEgUm9zYSBOb3J0aCAoQkVBKSwgQmlnIENyZWVrIChCSUcwMDEpLCBCb2RlZ2EgSGVhZCAoQk9EMDAxKSwgQ2FwZSBBbGF2YSAxNU0gKENBMDE1KSwgQ2FwZSBBbGF2YSA0Mk0gKENBMDQyKSwgQ2FwZSBBbGF2YSA2NU0gKENBMDY1KSwgQ2FwZSBBbGF2YSAxMDBNIChDQTEwMCksIENhbm5lcnkgUm93IChDQU4wMDEpLCBDYXBlIEVsaXphYmV0aCAxNU0gKENFMDE1KSwgQ2FwZSBFbGl6YWJldGggNDJNIChDRTA0MiksIENhcGUgRWxpemFiZXRoIDY1TSAoQ0UwNjUpLCBDYXBlIEVsaXphYmV0aCAxMDBNIChDRTEwMCksIEN1eWxlciBIYXJib3IgKENVWSksIEVzYWxlbiAoRVNBMDAxKSwgUG9pbnQgSm9lIChKT0UwMDEpLCBLYWxhbG9jaCAxNU0gKEtMMDE1KSwgS2FsYWxvY2ggMjdNIChLTDAyNyksIExhIENydXogUm9jayAoTEFDMDAxKSwgTG9wZXogUm9jayAoTE9QMDAxKSwgTWFrYWggQmF5IDE1TSAoTUIwMTUpLCBNYWthaCBCYXkgNDJNIChNQjA0MiksIFBlbGljYW4vUHJpc29uZXJzIEFyZWEgKFBFTCksIFBpZ2VvbiBQb2ludCAoUElHMDAxKSwgUGxhc2tldHQgUm9jayAoUExBMDAxKSwgU291dGhlYXN0IEZhcmFsbG9uIElzbGFuZCAoU0VGMDAxKSwgU2FuIE1pZ3VlbCBTb3V0aCAoU01TKSwgU2FudGEgUm9zYSBTb3V0aCAoU1JTKSwgU3Vuc2V0IFBvaW50IChTVU4wMDEpLCBUZWF3aGl0IEhlYWQgMTVNIChUSDAxNSksIFRlYXdoaXQgSGVhZCAzMU0gKFRIMDMxKSwgVGVhd2hpdCBIZWFkIDQyTSAoVEgwNDIpLCBUZXJyYWNlIFBvaW50IDcgKFRQVDAwNyksIFRlcnJhY2UgUG9pbnQgOCAoVFBUMDA4KSwgVmFsbGV5IEFuY2ggKFZBTCksIFdlc3RvbiBCZWFjaCAoV0VTMDAxKS5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNQcm9maWxlXG5WQVJJQUJMRVM6XG5zdGF0aW9uXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuVGVtcGVyYXR1cmUgKFNlYSBXYXRlciBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5UZW1wZXJhdHVyZV9mbGFnXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm1zcFdjb3NUZW1wX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9ubXNwV2Nvc1RlbXBfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm1zcFdjb3NUZW1wL2luZGV4Lmpzb24iLCAiZnRwOi8vZnRwLm5vZGMubm9hYS5nb3Yvbm9kYy9hcmNoaXZlL2FyYzAwMDYvMDAwMjAzOS8xLjEvYWJvdXQvV0NPU19wcm9qZWN0X2RvY3VtZW50X3BoYXNlSV8yMDA2MDMxNy5wZGYiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm1zcFdjb3NUZW1wLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ubXNwV2Nvc1RlbXAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOTVNQIiwgIm5tc3BXY29zVGVtcCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lYXJ0aEN1YmVLZ3NCb3JlVGVtcFdWLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lYXJ0aEN1YmVLZ3NCb3JlVGVtcFdWIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VhcnRoQ3ViZUtnc0JvcmVUZW1wV1YuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiV2VzdCBWaXJnaW5pYSBCb3JlaG9sZSBUZW1wZXJhdHVyZXMsIEFBU0cgU3RhdGUgR2VvdGhlcm1hbCBEYXRhLCAxOTM2LTIwMTAiLCAiQm9yZWhvbGUgdGVtcGVyYXR1cmUgbWVhc3VyZW1lbnRzIGluIFdlc3QgVmlyZ2luaWFcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5PYnNlcnZhdGlvblVSSSAoT2JzZXJ2YXRpb24gVVJJKVxuV2VsbE5hbWUgKFdlbGwgTmFtZSlcbkFQSU5vXG5IZWFkZXJVUkkgKEhlYWRlciBVUkkpXG5MYWJlbFxuT3BlcmF0b3JcblNwdWREYXRlIChTcHVkIERhdGUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG50aW1lIChFbmRlZCBEcmlsbGluZyBEYXRlLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuV2VsbFR5cGUgKFdlbGwgVHlwZSlcbkZpZWxkXG5Db3VudHlcblN0YXRlXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuRHJpbGxlclRvdGFsRGVwdGggKERyaWxsZXIgVG90YWwgRGVwdGgsIGZ0KVxuRGVwdGhSZWZlcmVuY2VQb2ludCAoRGVwdGggUmVmZXJlbmNlIFBvaW50KVxuV2VsbEJvcmVTaGFwZSAoV2VsbCBCb3JlIFNoYXBlKVxuVHJ1ZVZlcnRpY2FsRGVwdGggKFRydWUgVmVydGljYWwgRGVwdGgsIGZ0KVxuRWxldmF0aW9uR0wgKEVsZXZhdGlvbiBHTCwgZnQpXG5Gb3JtYXRpb25URCAoRm9ybWF0aW9uIFREKVxuTWVhc3VyZWRUZW1wZXJhdHVyZSAoTWVhc3VyZWQgVGVtcGVyYXR1cmUsIGRlZ3JlZV9GKVxuRGVwdGhPZk1lYXN1cmVtZW50IChEZXB0aCBPZiBNZWFzdXJlbWVudCwgZnQpXG5NZWFzdXJlbWVudEZvcm1hdGlvbiAoTWVhc3VyZW1lbnQgRm9ybWF0aW9uKVxuUmVsYXRlZFJlc291cmNlIChSZWxhdGVkIFJlc291cmNlKVxuVGltZVNpbmNlQ2lyY3VsYXRpb24gKFRpbWUgU2luY2UgQ2lyY3VsYXRpb24sID8pXG5PdGhlck5hbWUgKE90aGVyIE5hbWUpXG5MZWFzZU5hbWUgKExlYXNlIE5hbWUpXG5Ob3Rlc1xuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VhcnRoQ3ViZUtnc0JvcmVUZW1wV1ZfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VhcnRoQ3ViZUtnc0JvcmVUZW1wV1ZfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZWFydGhDdWJlS2dzQm9yZVRlbXBXVi9pbmRleC5qc29uIiwgImh0dHA6Ly93d3cud3Zncy53dm5ldC5lZHUvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VhcnRoQ3ViZUtnc0JvcmVUZW1wV1YucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVhcnRoQ3ViZUtnc0JvcmVUZW1wV1Ymc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiV2VzdCBWaXJnaW5pYSBHZW9sb2dpY2FsIGFuZCBFY29ub21pYyBTdXJ2ZXkiLCAiZWFydGhDdWJlS2dzQm9yZVRlbXBXViJdCiAgICBdCiAgfQp9Cg== + recorded_at: 2020-07-15 22:22:40 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.csv?bbbbb + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '400' + message: Bad Request + explanation: Bad request syntax or unsupported method + headers: + status: 'HTTP/1.1 400 ' + date: Wed, 15 Jul 2020 22:22:38 GMT + x-frame-options: SAMEORIGIN + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:22:38 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-description: dods-error + content-encoding: gzip + vary: accept-encoding + content-type: text/plain;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: ASCII-8BIT + file: no + string: RXJyb3IgewogICAgY29kZT00MDA7CiAgICBtZXNzYWdlPSJCYWQgUmVxdWVzdDogUXVlcnkgZXJyb3I6IFVucmVjb2duaXplZCB2YXJpYWJsZT1cImJiYmJiXCIuIjsKfQo= + recorded_at: 2020-07-15 22:22:40 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:51 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=erdCinpKfmBT_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: ASCII-8BIT + file: no + string: ewogICJ0YWJsZSI6IHsKICAgICJjb2x1bW5OYW1lcyI6IFsiUm93IFR5cGUiLCAiVmFyaWFibGUgTmFtZSIsICJBdHRyaWJ1dGUgTmFtZSIsICJEYXRhIFR5cGUiLCAiVmFsdWUiXSwKICAgICJjb2x1bW5UeXBlcyI6IFsiU3RyaW5nIiwgIlN0cmluZyIsICJTdHJpbmciLCAiU3RyaW5nIiwgIlN0cmluZyJdLAogICAgInJvd3MiOiBbCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJhY2tub3dsZWRnZW1lbnQiLCAiU3RyaW5nIiwgIk5PQUEgTkVTRElTIENPQVNUV0FUQ0gsIE5PQUEgU1dGU0MgRVJELCBDaGFubmVsIElzbGFuZHMgTmF0aW9uYWwgUGFyaywgTmF0aW9uYWwgUGFyayBTZXJ2aWNlIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJjZG1fZGF0YV90eXBlIiwgIlN0cmluZyIsICJUaW1lU2VyaWVzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJjZG1fdGltZXNlcmllc192YXJpYWJsZXMiLCAiU3RyaW5nIiwgInN0YXRpb24sIGxvbmdpdHVkZSwgbGF0aXR1ZGUiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgImNvbnRyaWJ1dG9yX2VtYWlsIiwgIlN0cmluZyIsICJEYXZpZF9LdXNobmVyQG5wcy5nb3YiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgImNvbnRyaWJ1dG9yX25hbWUiLCAiU3RyaW5nIiwgIkNoYW5uZWwgSXNsYW5kcyBOYXRpb25hbCBQYXJrLCBOYXRpb25hbCBQYXJrIFNlcnZpY2UiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgImNvbnRyaWJ1dG9yX3JvbGUiLCAiU3RyaW5nIiwgIlNvdXJjZSBvZiBkYXRhLiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAiQ29udmVudGlvbnMiLCAiU3RyaW5nIiwgIkNPQVJEUywgQ0YtMS42LCBBQ0RELTEuMywgTkNDU1YtMS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJjcmVhdG9yX2VtYWlsIiwgIlN0cmluZyIsICJlcmQuZGF0YUBub2FhLmdvdiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAiY3JlYXRvcl9uYW1lIiwgIlN0cmluZyIsICJOT0FBIE5NRlMgU1dGU0MgRVJEIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJjcmVhdG9yX3R5cGUiLCAiU3RyaW5nIiwgImluc3RpdHV0aW9uIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJjcmVhdG9yX3VybCIsICJTdHJpbmciLCAiaHR0cHM6Ly93d3cucGZlZy5ub2FhLmdvdiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAiZGF0ZV9jcmVhdGVkIiwgIlN0cmluZyIsICIyMDA4LTA2LTExVDIxOjM2OjA2WiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAiZGF0ZV9pc3N1ZWQiLCAiU3RyaW5nIiwgIjIwMDgtMDYtMTFUMjE6MzY6MDZaIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJFYXN0ZXJubW9zdF9FYXN0aW5nIiwgImRvdWJsZSIsICItMTE4LjQiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgImZlYXR1cmVUeXBlIiwgIlN0cmluZyIsICJUaW1lU2VyaWVzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJnZW9zcGF0aWFsX2xhdF9tYXgiLCAiZG91YmxlIiwgIjM0LjA1Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJnZW9zcGF0aWFsX2xhdF9taW4iLCAiZG91YmxlIiwgIjMyLjgiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgImdlb3NwYXRpYWxfbGF0X3VuaXRzIiwgIlN0cmluZyIsICJkZWdyZWVzX25vcnRoIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJnZW9zcGF0aWFsX2xvbl9tYXgiLCAiZG91YmxlIiwgIi0xMTguNCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAiZ2Vvc3BhdGlhbF9sb25fbWluIiwgImRvdWJsZSIsICItMTIwLjQiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgImdlb3NwYXRpYWxfbG9uX3VuaXRzIiwgIlN0cmluZyIsICJkZWdyZWVzX2Vhc3QiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgImdlb3NwYXRpYWxfdmVydGljYWxfbWF4IiwgImRvdWJsZSIsICIxNy4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJnZW9zcGF0aWFsX3ZlcnRpY2FsX21pbiIsICJkb3VibGUiLCAiNS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJnZW9zcGF0aWFsX3ZlcnRpY2FsX3Bvc2l0aXZlIiwgIlN0cmluZyIsICJkb3duIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJnZW9zcGF0aWFsX3ZlcnRpY2FsX3VuaXRzIiwgIlN0cmluZyIsICJtIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJoaXN0b3J5IiwgIlN0cmluZyIsICJDaGFubmVsIElzbGFuZHMgTmF0aW9uYWwgUGFyaywgTmF0aW9uYWwgUGFyayBTZXJ2aWNlXG4yMDA4LTA2LTExVDIxOjM2OjA2WiBOT0FBIENvYXN0V2F0Y2ggKFdlc3QgQ29hc3QgTm9kZSkgYW5kIE5PQUEgU0ZTQyBFUkQiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgImluZm9VcmwiLCAiU3RyaW5nIiwgImh0dHA6Ly93d3cubnBzLmdvdi9jaGlzL25hdHVyZXNjaWVuY2UvaW5kZXguaHRtIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJpbnN0aXR1dGlvbiIsICJTdHJpbmciLCAiQ0lOUCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAia2V5d29yZHMiLCAiU3RyaW5nIiwgImFuYW1lc3VzLCBhcGx5c2lhLCBhcXVhdGljLCBhdG1vc3BoZXJlLCBhdXJhbnRpYSwgYmFuZCwgYmlvbG9neSwgYmlvc3BoZXJlLCBjYWxpZm9ybmljYSwgY2hhbm5lbCwgY2hpbGVuc2lzLCBjaW5wLCBjb2FzdGFsLCBjb3JydWdhdGEsIGNyYXNzZWRvbWEsIGNyZW51bGF0YSwgZGVuc2l0eSwgZGVwdGgsIEVhcnRoIFNjaWVuY2UgPiBCaW9zcGhlcmUgPiBBcXVhdGljIEVjb3N5c3RlbXMgPiBDb2FzdGFsIEhhYml0YXQsIEVhcnRoIFNjaWVuY2UgPiBCaW9zcGhlcmUgPiBBcXVhdGljIEVjb3N5c3RlbXMgPiBNYXJpbmUgSGFiaXRhdCwgZWNvc3lzdGVtcywgZm9yZXN0LCBmcnV0aWNvc2EsIGZ1bGdlbnMsIGdpZ2FudGV1bSwgaGFiaXRhdCwgaGFsaW90aXMsIGhlaWdodCwgaGVsaWFudGhvaWRlcywgaWRlbnRpZmllciwgaW50ZXJydXB0dXMsIGlzbGFuZHMsIGtlbGxldGlhLCBrZWxsZXRpaSwga2VscCwgbG9mb3RlbnNpcywgbG9waG9nb3JnaWEsIGx5dGVjaGludXMsIG1hcmluZSwgbWVhbiwgbWVnYXRodXJhLCBtb25pdG9yaW5nLCBtdXJpY2VhLCBwYW51bGlydXMsIHB5Y25vcG9kaWEsIHJ1ZmVzY2Vucywgc3RhdGlvbiwgc3RhdGlzdGljcywgc3RkZGV2LCBzdGRlcnIsIHN0eWxhc3Rlciwgc3VydmV5LCB0ZXRoeWEsIHRpbWUsIHRyYW5zZWN0LCB1cnRpY2luYSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAia2V5d29yZHNfdm9jYWJ1bGFyeSIsICJTdHJpbmciLCAiR0NNRCBTY2llbmNlIEtleXdvcmRzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJsaWNlbnNlIiwgIlN0cmluZyIsICJUaGUgZGF0YSBtYXkgYmUgdXNlZCBhbmQgcmVkaXN0cmlidXRlZCBmb3IgZnJlZSBidXQgaXMgbm90IGludGVuZGVkIGZvciBsZWdhbCB1c2UsIHNpbmNlIGl0IG1heSBjb250YWluIGluYWNjdXJhY2llcy4gTmVpdGhlciB0aGUgZGF0YSBDb250cmlidXRvciwgQ29hc3RXYXRjaCwgTk9BQSwgbm9yIHRoZSBVbml0ZWQgU3RhdGVzIEdvdmVybm1lbnQsIG5vciBhbnkgb2YgdGhlaXIgZW1wbG95ZWVzIG9yIGNvbnRyYWN0b3JzLCBtYWtlcyBhbnkgd2FycmFudHksIGV4cHJlc3Mgb3IgaW1wbGllZCwgaW5jbHVkaW5nIHdhcnJhbnRpZXMgb2YgbWVyY2hhbnRhYmlsaXR5IGFuZCBmaXRuZXNzIGZvciBhIHBhcnRpY3VsYXIgcHVycG9zZSwgb3IgYXNzdW1lcyBhbnkgbGVnYWwgbGlhYmlsaXR5IGZvciB0aGUgYWNjdXJhY3ksIGNvbXBsZXRlbmVzcywgb3IgdXNlZnVsbmVzcywgb2YgdGhpcyBpbmZvcm1hdGlvbi4gIE5hdGlvbmFsIFBhcmsgU2VydmljZSBEaXNjbGFpbWVyOiBUaGUgTmF0aW9uYWwgUGFyayBTZXJ2aWNlIHNoYWxsIG5vdCBiZSBoZWxkIGxpYWJsZSBmb3IgaW1wcm9wZXIgb3IgaW5jb3JyZWN0IHVzZSBvZiB0aGUgZGF0YSBkZXNjcmliZWQgYW5kL29yIGNvbnRhaW5lZCBoZXJlaW4uIFRoZXNlIGRhdGEgYW5kIHJlbGF0ZWQgZ3JhcGhpY3MgYXJlIG5vdCBsZWdhbCBkb2N1bWVudHMgYW5kIGFyZSBub3QgaW50ZW5kZWQgdG8gYmUgdXNlZCBhcyBzdWNoLiBUaGUgaW5mb3JtYXRpb24gY29udGFpbmVkIGluIHRoZXNlIGRhdGEgaXMgZHluYW1pYyBhbmQgbWF5IGNoYW5nZSBvdmVyIHRpbWUuIFRoZSBkYXRhIGFyZSBub3QgYmV0dGVyIHRoYW4gdGhlIG9yaWdpbmFsIHNvdXJjZXMgZnJvbSB3aGljaCB0aGV5IHdlcmUgZGVyaXZlZC4gSXQgaXMgdGhlIHJlc3BvbnNpYmlsaXR5IG9mIHRoZSBkYXRhIHVzZXIgdG8gdXNlIHRoZSBkYXRhIGFwcHJvcHJpYXRlbHkgYW5kIGNvbnNpc3RlbnQgd2l0aGluIHRoZSBsaW1pdGF0aW9uIG9mIGdlb3NwYXRpYWwgZGF0YSBpbiBnZW5lcmFsIGFuZCB0aGVzZSBkYXRhIGluIHBhcnRpY3VsYXIuIFRoZSByZWxhdGVkIGdyYXBoaWNzIGFyZSBpbnRlbmRlZCB0byBhaWQgdGhlIGRhdGEgdXNlciBpbiBhY3F1aXJpbmcgcmVsZXZhbnQgZGF0YTsgaXQgaXMgbm90IGFwcHJvcHJpYXRlIHRvIHVzZSB0aGUgcmVsYXRlZCBncmFwaGljcyBhcyBkYXRhLiBUaGUgTmF0aW9uYWwgUGFyayBTZXJ2aWNlIGdpdmVzIG5vIHdhcnJhbnR5LCBleHByZXNzZWQgb3IgaW1wbGllZCwgYXMgdG8gdGhlIGFjY3VyYWN5LCByZWxpYWJpbGl0eSwgb3IgY29tcGxldGVuZXNzIG9mIHRoZXNlIGRhdGEuIEl0IGlzIHN0cm9uZ2x5IHJlY29tbWVuZGVkIHRoYXQgdGhlc2UgZGF0YSBhcmUgZGlyZWN0bHkgYWNxdWlyZWQgZnJvbSBhbiBOUFMgc2VydmVyIGFuZCBub3QgaW5kaXJlY3RseSB0aHJvdWdoIG90aGVyIHNvdXJjZXMgd2hpY2ggbWF5IGhhdmUgY2hhbmdlZCB0aGUgZGF0YSBpbiBzb21lIHdheS4gQWx0aG91Z2ggdGhlc2UgZGF0YSBoYXZlIGJlZW4gcHJvY2Vzc2VkIHN1Y2Nlc3NmdWxseSBvbiBjb21wdXRlciBzeXN0ZW1zIGF0IHRoZSBOYXRpb25hbCBQYXJrIFNlcnZpY2UsIG5vIHdhcnJhbnR5IGV4cHJlc3NlZCBvciBpbXBsaWVkIGlzIG1hZGUgcmVnYXJkaW5nIHRoZSB1dGlsaXR5IG9mIHRoZSBkYXRhIG9uIG90aGVyIHN5c3RlbXMgZm9yIGdlbmVyYWwgb3Igc2NpZW50aWZpYyBwdXJwb3Nlcywgbm9yIHNoYWxsIHRoZSBhY3Qgb2YgZGlzdHJpYnV0aW9uIGNvbnN0aXR1dGUgYW55IHN1Y2ggd2FycmFudHkuIFRoaXMgZGlzY2xhaW1lciBhcHBsaWVzIGJvdGggdG8gaW5kaXZpZHVhbCB1c2Ugb2YgdGhlIGRhdGEgYW5kIGFnZ3JlZ2F0ZSB1c2Ugd2l0aCBvdGhlciBkYXRhLiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAibmFtaW5nX2F1dGhvcml0eSIsICJTdHJpbmciLCAiZ292Lm5vYWEucGZlZy5jb2FzdHdhdGNoIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJOb3J0aGVybm1vc3RfTm9ydGhpbmciLCAiZG91YmxlIiwgIjM0LjA1Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJwcm9qZWN0IiwgIlN0cmluZyIsICJOT0FBIE5NRlMgU1dGU0MgRVJEIChodHRwczovL3d3dy5wZmVnLm5vYWEuZ292LykiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgInJlZmVyZW5jZXMiLCAiU3RyaW5nIiwgIkNoYW5uZWwgSXNsYW5kcyBOYXRpb25hbCBQYXJrcyBJbnZlbnRvcnkgYW5kIE1vbml0b3JpbmcgaW5mb3JtYXRpb246IGh0dHA6Ly9uYXR1cmUubnBzLmdvdi9pbS91bml0cy9tZWRuIC4gS2VscCBGb3Jlc3QgTW9uaXRvcmluZyBQcm90b2NvbHM6IGh0dHA6Ly93d3cubmF0dXJlLm5wcy5nb3YvaW0vdW5pdHMvY2hpcy9SZXBvcnRzX1BERi9NYXJpbmUvS0ZNLUhhbmRib29rVm9sMS5wZGYgLiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAic291cmNlVXJsIiwgIlN0cmluZyIsICIobG9jYWwgZmlsZXMpIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJTb3V0aGVybm1vc3RfTm9ydGhpbmciLCAiZG91YmxlIiwgIjMyLjgiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgInN0YW5kYXJkX25hbWVfdm9jYWJ1bGFyeSIsICJTdHJpbmciLCAiQ0YgU3RhbmRhcmQgTmFtZSBUYWJsZSB2NzAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgInN1YnNldFZhcmlhYmxlcyIsICJTdHJpbmciLCAic3RhdGlvbiwgbG9uZ2l0dWRlLCBsYXRpdHVkZSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAic3VtbWFyeSIsICJTdHJpbmciLCAiVGhpcyBkYXRhc2V0IGZyb20gdGhlIENoYW5uZWwgSXNsYW5kcyBOYXRpb25hbCBQYXJrJ3MgS2VscCBGb3Jlc3QgTW9uaXRvcmluZyBQcm9ncmFtIGhhcyBtZWFzdXJlbWVudHMgb2YgdGhlIGFidW5kYW5jZSBhbmQgZGlzdHJpYnV0aW9uIG9mIHJhcmUgYW5kIGNsdW1wZWQgb3JnYW5pc21zIG5vdCBhZGVxdWF0ZWx5IHNhbXBsZWQgYnkgcXVhZHJhdHMuIFRoZSBzdW1tYXJ5IGRhdGEgcHJlc2VudGVkIGhlcmUgcmVwcmVzZW50cyB0aGUgbWVhbiBkZW5zaXR5IHBlciBzcXVhcmUgbWV0ZXIuIFNhbXBsaW5nIGlzIGNvbmR1Y3RlZCBhbm51YWxseSBiZXR3ZWVuIHRoZSBtb250aHMgb2YgTWF5LU9jdG9iZXIsIHNvIHRoZSBUaW1lIGRhdGEgaW4gdGhpcyBmaWxlIGlzIEp1bHkgMSBvZiBlYWNoIHllYXIgKGEgbm9taW5hbCB2YWx1ZSkuIFRoZSBhY3R1YWwgbWVhc3VyZW1lbnRzIHdlcmUgdGFrZW4gYXQgdmFyaW91cyBkZXB0aHMsIHNvIHRoZSBEZXB0aCBkYXRhIGluIHRoaXMgZmlsZSBpcyB0aGUgZGVwdGggb2YgdGhlIHN0YXRpb24ncyB0ZW1wZXJhdHVyZSBsb2dnZXIsIHdoaWNoIGlzIGEgdHlwaWNhbCBkZXB0aC4iXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgInRpbWVfY292ZXJhZ2VfZW5kIiwgIlN0cmluZyIsICIyMDA3LTA3LTAxVDAwOjAwOjAwWiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAidGltZV9jb3ZlcmFnZV9zdGFydCIsICJTdHJpbmciLCAiMTk4My0wNy0wMVQwMDowMDowMFoiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgInRpdGxlIiwgIlN0cmluZyIsICJDaGFubmVsIElzbGFuZHMsIEtlbHAgRm9yZXN0IE1vbml0b3JpbmcsIFN1cnZleSwgQmFuZCBUcmFuc2VjdCwgMTk4My0yMDA3Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJXZXN0ZXJubW9zdF9FYXN0aW5nIiwgImRvdWJsZSIsICItMTIwLjQiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJzdGF0aW9uIiwgIiIsICJTdHJpbmciLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgInN0YXRpb24iLCAiY2Zfcm9sZSIsICJTdHJpbmciLCAidGltZXNlcmllc19pZCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJzdGF0aW9uIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIklkZW50aWZpZXIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAic3RhdGlvbiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlN0YXRpb24iXSwKICAgICAgWyJ2YXJpYWJsZSIsICJsb25naXR1ZGUiLCAiIiwgImRvdWJsZSIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAibG9uZ2l0dWRlIiwgIl9Db29yZGluYXRlQXhpc1R5cGUiLCAiU3RyaW5nIiwgIkxvbiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJsb25naXR1ZGUiLCAiYWN0dWFsX3JhbmdlIiwgImRvdWJsZSIsICItMTIwLjQsIC0xMTguNCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJsb25naXR1ZGUiLCAiYXhpcyIsICJTdHJpbmciLCAiWCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJsb25naXR1ZGUiLCAiY29sb3JCYXJNYXhpbXVtIiwgImRvdWJsZSIsICItMTE4LjQiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAibG9uZ2l0dWRlIiwgImNvbG9yQmFyTWluaW11bSIsICJkb3VibGUiLCAiLTEyMC40Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgImxvbmdpdHVkZSIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJMb2NhdGlvbiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJsb25naXR1ZGUiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJMb25naXR1ZGUiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAibG9uZ2l0dWRlIiwgInN0YW5kYXJkX25hbWUiLCAiU3RyaW5nIiwgImxvbmdpdHVkZSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJsb25naXR1ZGUiLCAidW5pdHMiLCAiU3RyaW5nIiwgImRlZ3JlZXNfZWFzdCJdLAogICAgICBbInZhcmlhYmxlIiwgImxhdGl0dWRlIiwgIiIsICJkb3VibGUiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgImxhdGl0dWRlIiwgIl9Db29yZGluYXRlQXhpc1R5cGUiLCAiU3RyaW5nIiwgIkxhdCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJsYXRpdHVkZSIsICJhY3R1YWxfcmFuZ2UiLCAiZG91YmxlIiwgIjMyLjgsIDM0LjA1Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgImxhdGl0dWRlIiwgImF4aXMiLCAiU3RyaW5nIiwgIlkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAibGF0aXR1ZGUiLCAiY29sb3JCYXJNYXhpbXVtIiwgImRvdWJsZSIsICIzNC41Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgImxhdGl0dWRlIiwgImNvbG9yQmFyTWluaW11bSIsICJkb3VibGUiLCAiMzIuNSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJsYXRpdHVkZSIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJMb2NhdGlvbiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJsYXRpdHVkZSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIkxhdGl0dWRlIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgImxhdGl0dWRlIiwgInN0YW5kYXJkX25hbWUiLCAiU3RyaW5nIiwgImxhdGl0dWRlIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgImxhdGl0dWRlIiwgInVuaXRzIiwgIlN0cmluZyIsICJkZWdyZWVzX25vcnRoIl0sCiAgICAgIFsidmFyaWFibGUiLCAiZGVwdGgiLCAiIiwgImRvdWJsZSIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiZGVwdGgiLCAiX0Nvb3JkaW5hdGVBeGlzVHlwZSIsICJTdHJpbmciLCAiSGVpZ2h0Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgImRlcHRoIiwgIl9Db29yZGluYXRlWmlzUG9zaXRpdmUiLCAiU3RyaW5nIiwgImRvd24iXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiZGVwdGgiLCAiYWN0dWFsX3JhbmdlIiwgImRvdWJsZSIsICI1LjAsIDE3LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiZGVwdGgiLCAiYXhpcyIsICJTdHJpbmciLCAiWiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJkZXB0aCIsICJjb2xvckJhck1heGltdW0iLCAiZG91YmxlIiwgIjIwLjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiZGVwdGgiLCAiY29sb3JCYXJNaW5pbXVtIiwgImRvdWJsZSIsICIwLjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiZGVwdGgiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiTG9jYXRpb24iXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiZGVwdGgiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJEZXB0aCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJkZXB0aCIsICJwb3NpdGl2ZSIsICJTdHJpbmciLCAiZG93biJdLAogICAgICBbImF0dHJpYnV0ZSIsICJkZXB0aCIsICJzdGFuZGFyZF9uYW1lIiwgIlN0cmluZyIsICJkZXB0aCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJkZXB0aCIsICJ1bml0cyIsICJTdHJpbmciLCAibSJdLAogICAgICBbInZhcmlhYmxlIiwgInRpbWUiLCAiIiwgImRvdWJsZSIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAidGltZSIsICJfQ29vcmRpbmF0ZUF4aXNUeXBlIiwgIlN0cmluZyIsICJUaW1lIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgInRpbWUiLCAiYWN0dWFsX3JhbmdlIiwgImRvdWJsZSIsICI0LjI1ODY1NkU4LCAxLjE4MzI0OEU5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgInRpbWUiLCAiYXhpcyIsICJTdHJpbmciLCAiVCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJ0aW1lIiwgImNvbG9yQmFyTWF4aW11bSIsICJkb3VibGUiLCAiMS4xODMyNDhFOSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJ0aW1lIiwgImNvbG9yQmFyTWluaW11bSIsICJkb3VibGUiLCAiNC4yNTg2NTZFOCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJ0aW1lIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlRpbWUiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAidGltZSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlRpbWUiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAidGltZSIsICJzdGFuZGFyZF9uYW1lIiwgIlN0cmluZyIsICJ0aW1lIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgInRpbWUiLCAidGltZV9vcmlnaW4iLCAiU3RyaW5nIiwgIjAxLUpBTi0xOTcwIDAwOjAwOjAwIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgInRpbWUiLCAidW5pdHMiLCAiU3RyaW5nIiwgInNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFoiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJBcGx5c2lhX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJBcGx5c2lhX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjk1Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgImNvbW1lbnQiLCAiU3RyaW5nIiwgIkNvbW1vbiBuYW1lOiBDYWxpZm9ybmlhIGJyb3duIHNlYSBoYXJlIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIkJpb2xvZ3kiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQXBseXNpYV9jYWxpZm9ybmljYV9NZWFuX0RlbnNpdHkiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJBcGx5c2lhIGNhbGlmb3JuaWNhIE1lYW4gRGVuc2l0eSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJBcGx5c2lhX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQXBseXNpYV9jYWxpZm9ybmljYV9NZWFuX0RlbnNpdHkiLCAidW5pdHMiLCAiU3RyaW5nIiwgIm0tMiJdLAogICAgICBbInZhcmlhYmxlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfU3RkRGV2IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQXBseXNpYV9jYWxpZm9ybmljYV9TdGREZXYiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfU3RkRGV2IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMzUiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQXBseXNpYV9jYWxpZm9ybmljYV9TdGREZXYiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJBcGx5c2lhX2NhbGlmb3JuaWNhX1N0ZERldiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIkFwbHlzaWEgY2FsaWZvcm5pY2EgU3RkRGV2Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfU3RkRGV2IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfU3RkRXJyIiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQXBseXNpYV9jYWxpZm9ybmljYV9TdGRFcnIiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfU3RkRXJyIiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJBcGx5c2lhX2NhbGlmb3JuaWNhX1N0ZEVyciIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJTdGF0aXN0aWNzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfU3RkRXJyIiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiQXBseXNpYSBjYWxpZm9ybmljYSBTdGRFcnIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQXBseXNpYV9jYWxpZm9ybmljYV9TdGRFcnIiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsidmFyaWFibGUiLCAiQ3Jhc3NlZG9tYV9naWdhbnRldW1fTWVhbl9EZW5zaXR5IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQ3Jhc3NlZG9tYV9naWdhbnRldW1fTWVhbl9EZW5zaXR5IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJDcmFzc2Vkb21hX2dpZ2FudGV1bV9NZWFuX0RlbnNpdHkiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC45MiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJDcmFzc2Vkb21hX2dpZ2FudGV1bV9NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IFJvY2sgc2NhbGxvcCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJDcmFzc2Vkb21hX2dpZ2FudGV1bV9NZWFuX0RlbnNpdHkiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiQmlvbG9neSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJDcmFzc2Vkb21hX2dpZ2FudGV1bV9NZWFuX0RlbnNpdHkiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJDcmFzc2Vkb21hIGdpZ2FudGV1bSBNZWFuIERlbnNpdHkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQ3Jhc3NlZG9tYV9naWdhbnRldW1fTWVhbl9EZW5zaXR5IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJDcmFzc2Vkb21hX2dpZ2FudGV1bV9NZWFuX0RlbnNpdHkiLCAidW5pdHMiLCAiU3RyaW5nIiwgIm0tMiJdLAogICAgICBbInZhcmlhYmxlIiwgIkNyYXNzZWRvbWFfZ2lnYW50ZXVtX1N0ZERldiIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkNyYXNzZWRvbWFfZ2lnYW50ZXVtX1N0ZERldiIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQ3Jhc3NlZG9tYV9naWdhbnRldW1fU3RkRGV2IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuNzEiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQ3Jhc3NlZG9tYV9naWdhbnRldW1fU3RkRGV2IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQ3Jhc3NlZG9tYV9naWdhbnRldW1fU3RkRGV2IiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiQ3Jhc3NlZG9tYSBnaWdhbnRldW0gU3RkRGV2Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkNyYXNzZWRvbWFfZ2lnYW50ZXVtX1N0ZERldiIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJDcmFzc2Vkb21hX2dpZ2FudGV1bV9TdGRFcnIiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJDcmFzc2Vkb21hX2dpZ2FudGV1bV9TdGRFcnIiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkNyYXNzZWRvbWFfZ2lnYW50ZXVtX1N0ZEVyciIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQ3Jhc3NlZG9tYV9naWdhbnRldW1fU3RkRXJyIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQ3Jhc3NlZG9tYV9naWdhbnRldW1fU3RkRXJyIiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiQ3Jhc3NlZG9tYSBnaWdhbnRldW0gU3RkRXJyIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkNyYXNzZWRvbWFfZ2lnYW50ZXVtX1N0ZEVyciIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJIYWxpb3Rpc19jb3JydWdhdGFfTWVhbl9EZW5zaXR5IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfY29ycnVnYXRhX01lYW5fRGVuc2l0eSIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfY29ycnVnYXRhX01lYW5fRGVuc2l0eSIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjE4Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2NvcnJ1Z2F0YV9NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IFBpbmsgYWJhbG9uZSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19jb3JydWdhdGFfTWVhbl9EZW5zaXR5IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIkJpb2xvZ3kiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfY29ycnVnYXRhX01lYW5fRGVuc2l0eSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIkhhbGlvdGlzIGNvcnJ1Z2F0YSBNZWFuIERlbnNpdHkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfY29ycnVnYXRhX01lYW5fRGVuc2l0eSIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfY29ycnVnYXRhX01lYW5fRGVuc2l0eSIsICJ1bml0cyIsICJTdHJpbmciLCAibS0yIl0sCiAgICAgIFsidmFyaWFibGUiLCAiSGFsaW90aXNfY29ycnVnYXRhX1N0ZERldiIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2NvcnJ1Z2F0YV9TdGREZXYiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2NvcnJ1Z2F0YV9TdGREZXYiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4xIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2NvcnJ1Z2F0YV9TdGREZXYiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19jb3JydWdhdGFfU3RkRGV2IiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiSGFsaW90aXMgY29ycnVnYXRhIFN0ZERldiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19jb3JydWdhdGFfU3RkRGV2IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIkhhbGlvdGlzX2NvcnJ1Z2F0YV9TdGRFcnIiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19jb3JydWdhdGFfU3RkRXJyIiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19jb3JydWdhdGFfU3RkRXJyIiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMDMiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfY29ycnVnYXRhX1N0ZEVyciIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJTdGF0aXN0aWNzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2NvcnJ1Z2F0YV9TdGRFcnIiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJIYWxpb3RpcyBjb3JydWdhdGEgU3RkRXJyIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2NvcnJ1Z2F0YV9TdGRFcnIiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsidmFyaWFibGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19NZWFuX0RlbnNpdHkiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19mdWxnZW5zX01lYW5fRGVuc2l0eSIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19NZWFuX0RlbnNpdHkiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4wMDU1NTU1NTYiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IEdyZWVuIGFiYWxvbmUiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19NZWFuX0RlbnNpdHkiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiQmlvbG9neSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19mdWxnZW5zX01lYW5fRGVuc2l0eSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIkhhbGlvdGlzIGZ1bGdlbnMgTWVhbiBEZW5zaXR5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2Z1bGdlbnNfTWVhbl9EZW5zaXR5IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19mdWxnZW5zX01lYW5fRGVuc2l0eSIsICJ1bml0cyIsICJTdHJpbmciLCAibS0yIl0sCiAgICAgIFsidmFyaWFibGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19TdGREZXYiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19mdWxnZW5zX1N0ZERldiIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19TdGREZXYiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4wMDgyMDYwOTkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19TdGREZXYiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19mdWxnZW5zX1N0ZERldiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIkhhbGlvdGlzIGZ1bGdlbnMgU3RkRGV2Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2Z1bGdlbnNfU3RkRGV2IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIkhhbGlvdGlzX2Z1bGdlbnNfU3RkRXJyIiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19TdGRFcnIiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2Z1bGdlbnNfU3RkRXJyIiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMDAyMzY4ODk3Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2Z1bGdlbnNfU3RkRXJyIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19TdGRFcnIiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJIYWxpb3RpcyBmdWxnZW5zIFN0ZEVyciJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19mdWxnZW5zX1N0ZEVyciIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJIYWxpb3Rpc19ydWZlc2NlbnNfTWVhbl9EZW5zaXR5IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfcnVmZXNjZW5zX01lYW5fRGVuc2l0eSIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfcnVmZXNjZW5zX01lYW5fRGVuc2l0eSIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjk5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX3J1ZmVzY2Vuc19NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IFJlZCBhYmFsb25lIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX3J1ZmVzY2Vuc19NZWFuX0RlbnNpdHkiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiQmlvbG9neSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19ydWZlc2NlbnNfTWVhbl9EZW5zaXR5IiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiSGFsaW90aXMgcnVmZXNjZW5zIE1lYW4gRGVuc2l0eSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19ydWZlc2NlbnNfTWVhbl9EZW5zaXR5IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19ydWZlc2NlbnNfTWVhbl9EZW5zaXR5IiwgInVuaXRzIiwgIlN0cmluZyIsICJtLTIiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJIYWxpb3Rpc19ydWZlc2NlbnNfU3RkRGV2IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfcnVmZXNjZW5zX1N0ZERldiIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfcnVmZXNjZW5zX1N0ZERldiIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjYiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfcnVmZXNjZW5zX1N0ZERldiIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJTdGF0aXN0aWNzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX3J1ZmVzY2Vuc19TdGREZXYiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJIYWxpb3RpcyBydWZlc2NlbnMgU3RkRGV2Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX3J1ZmVzY2Vuc19TdGREZXYiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsidmFyaWFibGUiLCAiSGFsaW90aXNfcnVmZXNjZW5zX1N0ZEVyciIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX3J1ZmVzY2Vuc19TdGRFcnIiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX3J1ZmVzY2Vuc19TdGRFcnIiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4xNyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19ydWZlc2NlbnNfU3RkRXJyIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfcnVmZXNjZW5zX1N0ZEVyciIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIkhhbGlvdGlzIHJ1ZmVzY2VucyBTdGRFcnIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfcnVmZXNjZW5zX1N0ZEVyciIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJLZWxsZXRpYV9rZWxsZXRpaV9NZWFuX0RlbnNpdHkiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJLZWxsZXRpYV9rZWxsZXRpaV9NZWFuX0RlbnNpdHkiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIktlbGxldGlhX2tlbGxldGlpX01lYW5fRGVuc2l0eSIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjU1Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIktlbGxldGlhX2tlbGxldGlpX01lYW5fRGVuc2l0eSIsICJjb21tZW50IiwgIlN0cmluZyIsICJDb21tb24gbmFtZTogS2VsbGV0J3Mgd2hlbGsiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiS2VsbGV0aWFfa2VsbGV0aWlfTWVhbl9EZW5zaXR5IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIkJpb2xvZ3kiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiS2VsbGV0aWFfa2VsbGV0aWlfTWVhbl9EZW5zaXR5IiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiS2VsbGV0aWEga2VsbGV0aWkgTWVhbiBEZW5zaXR5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIktlbGxldGlhX2tlbGxldGlpX01lYW5fRGVuc2l0eSIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiS2VsbGV0aWFfa2VsbGV0aWlfTWVhbl9EZW5zaXR5IiwgInVuaXRzIiwgIlN0cmluZyIsICJtLTIiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJLZWxsZXRpYV9rZWxsZXRpaV9TdGREZXYiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJLZWxsZXRpYV9rZWxsZXRpaV9TdGREZXYiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIktlbGxldGlhX2tlbGxldGlpX1N0ZERldiIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjI5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIktlbGxldGlhX2tlbGxldGlpX1N0ZERldiIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJTdGF0aXN0aWNzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIktlbGxldGlhX2tlbGxldGlpX1N0ZERldiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIktlbGxldGlhIGtlbGxldGlpIFN0ZERldiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJLZWxsZXRpYV9rZWxsZXRpaV9TdGREZXYiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsidmFyaWFibGUiLCAiS2VsbGV0aWFfa2VsbGV0aWlfU3RkRXJyIiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiS2VsbGV0aWFfa2VsbGV0aWlfU3RkRXJyIiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJLZWxsZXRpYV9rZWxsZXRpaV9TdGRFcnIiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4wOCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJLZWxsZXRpYV9rZWxsZXRpaV9TdGRFcnIiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJLZWxsZXRpYV9rZWxsZXRpaV9TdGRFcnIiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJLZWxsZXRpYSBrZWxsZXRpaSBTdGRFcnIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiS2VsbGV0aWFfa2VsbGV0aWlfU3RkRXJyIiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIkxvcGhvZ29yZ2lhX2NoaWxlbnNpc19NZWFuX0RlbnNpdHkiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfTWVhbl9EZW5zaXR5IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfTWVhbl9EZW5zaXR5IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuNyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfTWVhbl9EZW5zaXR5IiwgImNvbW1lbnQiLCAiU3RyaW5nIiwgIkNvbW1vbiBuYW1lOiBSZWQgZ29yZ29uaWFuIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkxvcGhvZ29yZ2lhX2NoaWxlbnNpc19NZWFuX0RlbnNpdHkiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiQmlvbG9neSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfTWVhbl9EZW5zaXR5IiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiTG9waG9nb3JnaWEgY2hpbGVuc2lzIE1lYW4gRGVuc2l0eSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfTWVhbl9EZW5zaXR5IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfTWVhbl9EZW5zaXR5IiwgInVuaXRzIiwgIlN0cmluZyIsICJtLTIiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfU3RkRGV2IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTG9waG9nb3JnaWFfY2hpbGVuc2lzX1N0ZERldiIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTG9waG9nb3JnaWFfY2hpbGVuc2lzX1N0ZERldiIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjQ0Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkxvcGhvZ29yZ2lhX2NoaWxlbnNpc19TdGREZXYiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfU3RkRGV2IiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiTG9waG9nb3JnaWEgY2hpbGVuc2lzIFN0ZERldiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfU3RkRGV2IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIkxvcGhvZ29yZ2lhX2NoaWxlbnNpc19TdGRFcnIiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfU3RkRXJyIiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfU3RkRXJyIiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMTIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTG9waG9nb3JnaWFfY2hpbGVuc2lzX1N0ZEVyciIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJTdGF0aXN0aWNzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkxvcGhvZ29yZ2lhX2NoaWxlbnNpc19TdGRFcnIiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJMb3Bob2dvcmdpYSBjaGlsZW5zaXMgU3RkRXJyIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkxvcGhvZ29yZ2lhX2NoaWxlbnNpc19TdGRFcnIiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsidmFyaWFibGUiLCAiTHl0ZWNoaW51c19hbmFtZXN1c19NZWFuX0RlbnNpdHkiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMeXRlY2hpbnVzX2FuYW1lc3VzX01lYW5fRGVuc2l0eSIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTHl0ZWNoaW51c19hbmFtZXN1c19NZWFuX0RlbnNpdHkiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMjIuNDUiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTHl0ZWNoaW51c19hbmFtZXN1c19NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IFdoaXRlIHNlYSB1cmNoaW4iXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTHl0ZWNoaW51c19hbmFtZXN1c19NZWFuX0RlbnNpdHkiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiQmlvbG9neSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMeXRlY2hpbnVzX2FuYW1lc3VzX01lYW5fRGVuc2l0eSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIkx5dGVjaGludXMgYW5hbWVzdXMgTWVhbiBEZW5zaXR5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkx5dGVjaGludXNfYW5hbWVzdXNfTWVhbl9EZW5zaXR5IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMeXRlY2hpbnVzX2FuYW1lc3VzX01lYW5fRGVuc2l0eSIsICJ1bml0cyIsICJTdHJpbmciLCAibS0yIl0sCiAgICAgIFsidmFyaWFibGUiLCAiTHl0ZWNoaW51c19hbmFtZXN1c19TdGREZXYiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMeXRlY2hpbnVzX2FuYW1lc3VzX1N0ZERldiIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTHl0ZWNoaW51c19hbmFtZXN1c19TdGREZXYiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgOS4yIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkx5dGVjaGludXNfYW5hbWVzdXNfU3RkRGV2IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTHl0ZWNoaW51c19hbmFtZXN1c19TdGREZXYiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJMeXRlY2hpbnVzIGFuYW1lc3VzIFN0ZERldiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMeXRlY2hpbnVzX2FuYW1lc3VzX1N0ZERldiIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJMeXRlY2hpbnVzX2FuYW1lc3VzX1N0ZEVyciIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkx5dGVjaGludXNfYW5hbWVzdXNfU3RkRXJyIiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMeXRlY2hpbnVzX2FuYW1lc3VzX1N0ZEVyciIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAyLjY1Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkx5dGVjaGludXNfYW5hbWVzdXNfU3RkRXJyIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTHl0ZWNoaW51c19hbmFtZXN1c19TdGRFcnIiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJMeXRlY2hpbnVzIGFuYW1lc3VzIFN0ZEVyciJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMeXRlY2hpbnVzX2FuYW1lc3VzX1N0ZEVyciIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJNZWdhdGh1cmFfY3JlbnVsYXRhX01lYW5fRGVuc2l0eSIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk1lZ2F0aHVyYV9jcmVudWxhdGFfTWVhbl9EZW5zaXR5IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNZWdhdGh1cmFfY3JlbnVsYXRhX01lYW5fRGVuc2l0eSIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjUiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTWVnYXRodXJhX2NyZW51bGF0YV9NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IEdpYW50IGtleWhvbGUgbGltcGV0Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk1lZ2F0aHVyYV9jcmVudWxhdGFfTWVhbl9EZW5zaXR5IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIkJpb2xvZ3kiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTWVnYXRodXJhX2NyZW51bGF0YV9NZWFuX0RlbnNpdHkiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJNZWdhdGh1cmEgY3JlbnVsYXRhIE1lYW4gRGVuc2l0eSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNZWdhdGh1cmFfY3JlbnVsYXRhX01lYW5fRGVuc2l0eSIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTWVnYXRodXJhX2NyZW51bGF0YV9NZWFuX0RlbnNpdHkiLCAidW5pdHMiLCAiU3RyaW5nIiwgIm0tMiJdLAogICAgICBbInZhcmlhYmxlIiwgIk1lZ2F0aHVyYV9jcmVudWxhdGFfU3RkRGV2IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTWVnYXRodXJhX2NyZW51bGF0YV9TdGREZXYiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk1lZ2F0aHVyYV9jcmVudWxhdGFfU3RkRGV2IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMjIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTWVnYXRodXJhX2NyZW51bGF0YV9TdGREZXYiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNZWdhdGh1cmFfY3JlbnVsYXRhX1N0ZERldiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIk1lZ2F0aHVyYSBjcmVudWxhdGEgU3RkRGV2Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk1lZ2F0aHVyYV9jcmVudWxhdGFfU3RkRGV2IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIk1lZ2F0aHVyYV9jcmVudWxhdGFfU3RkRXJyIiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTWVnYXRodXJhX2NyZW51bGF0YV9TdGRFcnIiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk1lZ2F0aHVyYV9jcmVudWxhdGFfU3RkRXJyIiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMDciXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTWVnYXRodXJhX2NyZW51bGF0YV9TdGRFcnIiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNZWdhdGh1cmFfY3JlbnVsYXRhX1N0ZEVyciIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIk1lZ2F0aHVyYSBjcmVudWxhdGEgU3RkRXJyIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk1lZ2F0aHVyYV9jcmVudWxhdGFfU3RkRXJyIiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIk11cmljZWFfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9jYWxpZm9ybmljYV9NZWFuX0RlbnNpdHkiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMzEiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9jYWxpZm9ybmljYV9NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IENhbGlmb3JuaWEgZ29sZGVuIGdvcmdvbmlhbiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJCaW9sb2d5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiTXVyaWNlYSBjYWxpZm9ybmljYSBNZWFuIERlbnNpdHkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9jYWxpZm9ybmljYV9NZWFuX0RlbnNpdHkiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgInVuaXRzIiwgIlN0cmluZyIsICJtLTIiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJNdXJpY2VhX2NhbGlmb3JuaWNhX1N0ZERldiIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfY2FsaWZvcm5pY2FfU3RkRGV2IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2NhbGlmb3JuaWNhX1N0ZERldiIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjE2Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfY2FsaWZvcm5pY2FfU3RkRGV2IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9jYWxpZm9ybmljYV9TdGREZXYiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJNdXJpY2VhIGNhbGlmb3JuaWNhIFN0ZERldiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2NhbGlmb3JuaWNhX1N0ZERldiIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJNdXJpY2VhX2NhbGlmb3JuaWNhX1N0ZEVyciIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfY2FsaWZvcm5pY2FfU3RkRXJyIiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2NhbGlmb3JuaWNhX1N0ZEVyciIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjA0Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfY2FsaWZvcm5pY2FfU3RkRXJyIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9jYWxpZm9ybmljYV9TdGRFcnIiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJNdXJpY2VhIGNhbGlmb3JuaWNhIFN0ZEVyciJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2NhbGlmb3JuaWNhX1N0ZEVyciIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJNdXJpY2VhX2ZydXRpY29zYV9NZWFuX0RlbnNpdHkiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2ZydXRpY29zYV9NZWFuX0RlbnNpdHkiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfZnJ1dGljb3NhX01lYW5fRGVuc2l0eSIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjA0Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfZnJ1dGljb3NhX01lYW5fRGVuc2l0eSIsICJjb21tZW50IiwgIlN0cmluZyIsICJDb21tb24gbmFtZTogQnJvd24gZ29yZ29uaWFuIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfZnJ1dGljb3NhX01lYW5fRGVuc2l0eSIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJCaW9sb2d5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfZnJ1dGljb3NhX01lYW5fRGVuc2l0eSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIk11cmljZWEgZnJ1dGljb3NhIE1lYW4gRGVuc2l0eSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2ZydXRpY29zYV9NZWFuX0RlbnNpdHkiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfZnJ1dGljb3NhX01lYW5fRGVuc2l0eSIsICJ1bml0cyIsICJTdHJpbmciLCAibS0yIl0sCiAgICAgIFsidmFyaWFibGUiLCAiTXVyaWNlYV9mcnV0aWNvc2FfU3RkRGV2IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9mcnV0aWNvc2FfU3RkRGV2IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2ZydXRpY29zYV9TdGREZXYiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4wOSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2ZydXRpY29zYV9TdGREZXYiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2ZydXRpY29zYV9TdGREZXYiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJNdXJpY2VhIGZydXRpY29zYSBTdGREZXYiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9mcnV0aWNvc2FfU3RkRGV2IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIk11cmljZWFfZnJ1dGljb3NhX1N0ZEVyciIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfZnJ1dGljb3NhX1N0ZEVyciIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9mcnV0aWNvc2FfU3RkRXJyIiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMDIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9mcnV0aWNvc2FfU3RkRXJyIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9mcnV0aWNvc2FfU3RkRXJyIiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiTXVyaWNlYSBmcnV0aWNvc2EgU3RkRXJyIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfZnJ1dGljb3NhX1N0ZEVyciIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJQYW51bGlydXNfaW50ZXJydXB0dXNfTWVhbl9EZW5zaXR5IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX01lYW5fRGVuc2l0eSIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX01lYW5fRGVuc2l0eSIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjExIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlBhbnVsaXJ1c19pbnRlcnJ1cHR1c19NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IENhbGlmb3JuaWEgc3BpbnkgbG9ic3RlciJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQYW51bGlydXNfaW50ZXJydXB0dXNfTWVhbl9EZW5zaXR5IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIkJpb2xvZ3kiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX01lYW5fRGVuc2l0eSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlBhbnVsaXJ1cyBpbnRlcnJ1cHR1cyBNZWFuIERlbnNpdHkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX01lYW5fRGVuc2l0eSIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX01lYW5fRGVuc2l0eSIsICJ1bml0cyIsICJTdHJpbmciLCAibS0yIl0sCiAgICAgIFsidmFyaWFibGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX1N0ZERldiIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlBhbnVsaXJ1c19pbnRlcnJ1cHR1c19TdGREZXYiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlBhbnVsaXJ1c19pbnRlcnJ1cHR1c19TdGREZXYiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4zMiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQYW51bGlydXNfaW50ZXJydXB0dXNfU3RkRGV2IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX1N0ZERldiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlBhbnVsaXJ1cyBpbnRlcnJ1cHR1cyBTdGREZXYiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX1N0ZERldiIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJQYW51bGlydXNfaW50ZXJydXB0dXNfU3RkRXJyIiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX1N0ZEVyciIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX1N0ZEVyciIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjA5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlBhbnVsaXJ1c19pbnRlcnJ1cHR1c19TdGRFcnIiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQYW51bGlydXNfaW50ZXJydXB0dXNfU3RkRXJyIiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiUGFudWxpcnVzIGludGVycnVwdHVzIFN0ZEVyciJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQYW51bGlydXNfaW50ZXJydXB0dXNfU3RkRXJyIiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19NZWFuX0RlbnNpdHkiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQeWNub3BvZGlhX2hlbGlhbnRob2lkZXNfTWVhbl9EZW5zaXR5IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQeWNub3BvZGlhX2hlbGlhbnRob2lkZXNfTWVhbl9EZW5zaXR5IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMzMiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUHljbm9wb2RpYV9oZWxpYW50aG9pZGVzX01lYW5fRGVuc2l0eSIsICJjb21tZW50IiwgIlN0cmluZyIsICJDb21tb24gbmFtZTogU3VuZmxvd2VyIHN0YXIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUHljbm9wb2RpYV9oZWxpYW50aG9pZGVzX01lYW5fRGVuc2l0eSIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJCaW9sb2d5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19NZWFuX0RlbnNpdHkiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJQeWNub3BvZGlhIGhlbGlhbnRob2lkZXMgTWVhbiBEZW5zaXR5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19NZWFuX0RlbnNpdHkiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19NZWFuX0RlbnNpdHkiLCAidW5pdHMiLCAiU3RyaW5nIiwgIm0tMiJdLAogICAgICBbInZhcmlhYmxlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19TdGREZXYiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQeWNub3BvZGlhX2hlbGlhbnRob2lkZXNfU3RkRGV2IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQeWNub3BvZGlhX2hlbGlhbnRob2lkZXNfU3RkRGV2IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMjEiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUHljbm9wb2RpYV9oZWxpYW50aG9pZGVzX1N0ZERldiIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJTdGF0aXN0aWNzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19TdGREZXYiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJQeWNub3BvZGlhIGhlbGlhbnRob2lkZXMgU3RkRGV2Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19TdGREZXYiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsidmFyaWFibGUiLCAiUHljbm9wb2RpYV9oZWxpYW50aG9pZGVzX1N0ZEVyciIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19TdGRFcnIiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19TdGRFcnIiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4wNiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQeWNub3BvZGlhX2hlbGlhbnRob2lkZXNfU3RkRXJyIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUHljbm9wb2RpYV9oZWxpYW50aG9pZGVzX1N0ZEVyciIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlB5Y25vcG9kaWEgaGVsaWFudGhvaWRlcyBTdGRFcnIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUHljbm9wb2RpYV9oZWxpYW50aG9pZGVzX1N0ZEVyciIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJTdHlsYXN0ZXJfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjEzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlN0eWxhc3Rlcl9jYWxpZm9ybmljYV9NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IENhbGlmb3JuaWEgaHlkcm9jb3JhbCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJTdHlsYXN0ZXJfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIkJpb2xvZ3kiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlN0eWxhc3RlciBjYWxpZm9ybmljYSBNZWFuIERlbnNpdHkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICJ1bml0cyIsICJTdHJpbmciLCAibS0yIl0sCiAgICAgIFsidmFyaWFibGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX1N0ZERldiIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlN0eWxhc3Rlcl9jYWxpZm9ybmljYV9TdGREZXYiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlN0eWxhc3Rlcl9jYWxpZm9ybmljYV9TdGREZXYiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4xOCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJTdHlsYXN0ZXJfY2FsaWZvcm5pY2FfU3RkRGV2IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX1N0ZERldiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlN0eWxhc3RlciBjYWxpZm9ybmljYSBTdGREZXYiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX1N0ZERldiIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJTdHlsYXN0ZXJfY2FsaWZvcm5pY2FfU3RkRXJyIiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX1N0ZEVyciIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX1N0ZEVyciIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjA1Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlN0eWxhc3Rlcl9jYWxpZm9ybmljYV9TdGRFcnIiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJTdHlsYXN0ZXJfY2FsaWZvcm5pY2FfU3RkRXJyIiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiU3R5bGFzdGVyIGNhbGlmb3JuaWNhIFN0ZEVyciJdLAogICAgICBbImF0dHJpYnV0ZSIsICJTdHlsYXN0ZXJfY2FsaWZvcm5pY2FfU3RkRXJyIiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIlRldGh5YV9hdXJhbnRpYV9NZWFuX0RlbnNpdHkiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJUZXRoeWFfYXVyYW50aWFfTWVhbl9EZW5zaXR5IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJUZXRoeWFfYXVyYW50aWFfTWVhbl9EZW5zaXR5IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuNDEiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVGV0aHlhX2F1cmFudGlhX01lYW5fRGVuc2l0eSIsICJjb21tZW50IiwgIlN0cmluZyIsICJDb21tb24gbmFtZTogT3JhbmdlIHB1ZmZiYWxsIHNwb25nZSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJUZXRoeWFfYXVyYW50aWFfTWVhbl9EZW5zaXR5IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIkJpb2xvZ3kiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVGV0aHlhX2F1cmFudGlhX01lYW5fRGVuc2l0eSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlRldGh5YSBhdXJhbnRpYSBNZWFuIERlbnNpdHkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVGV0aHlhX2F1cmFudGlhX01lYW5fRGVuc2l0eSIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVGV0aHlhX2F1cmFudGlhX01lYW5fRGVuc2l0eSIsICJ1bml0cyIsICJTdHJpbmciLCAibS0yIl0sCiAgICAgIFsidmFyaWFibGUiLCAiVGV0aHlhX2F1cmFudGlhX1N0ZERldiIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlRldGh5YV9hdXJhbnRpYV9TdGREZXYiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlRldGh5YV9hdXJhbnRpYV9TdGREZXYiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4xOCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJUZXRoeWFfYXVyYW50aWFfU3RkRGV2IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVGV0aHlhX2F1cmFudGlhX1N0ZERldiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlRldGh5YSBhdXJhbnRpYSBTdGREZXYiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVGV0aHlhX2F1cmFudGlhX1N0ZERldiIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJUZXRoeWFfYXVyYW50aWFfU3RkRXJyIiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVGV0aHlhX2F1cmFudGlhX1N0ZEVyciIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVGV0aHlhX2F1cmFudGlhX1N0ZEVyciIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjA1Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlRldGh5YV9hdXJhbnRpYV9TdGRFcnIiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJUZXRoeWFfYXVyYW50aWFfU3RkRXJyIiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiVGV0aHlhIGF1cmFudGlhIFN0ZEVyciJdLAogICAgICBbImF0dHJpYnV0ZSIsICJUZXRoeWFfYXVyYW50aWFfU3RkRXJyIiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfTWVhbl9EZW5zaXR5IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVXJ0aWNpbmFfbG9mb3RlbnNpc19NZWFuX0RlbnNpdHkiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfTWVhbl9EZW5zaXR5IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMzkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVXJ0aWNpbmFfbG9mb3RlbnNpc19NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IFdoaXRlLXNwb3R0ZWQgcm9zZSBhbmVtb25lIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfTWVhbl9EZW5zaXR5IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIkJpb2xvZ3kiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVXJ0aWNpbmFfbG9mb3RlbnNpc19NZWFuX0RlbnNpdHkiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJVcnRpY2luYSBsb2ZvdGVuc2lzIE1lYW4gRGVuc2l0eSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJVcnRpY2luYV9sb2ZvdGVuc2lzX01lYW5fRGVuc2l0eSIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVXJ0aWNpbmFfbG9mb3RlbnNpc19NZWFuX0RlbnNpdHkiLCAidW5pdHMiLCAiU3RyaW5nIiwgIm0tMiJdLAogICAgICBbInZhcmlhYmxlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfU3RkRGV2IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVXJ0aWNpbmFfbG9mb3RlbnNpc19TdGREZXYiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfU3RkRGV2IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMjgiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVXJ0aWNpbmFfbG9mb3RlbnNpc19TdGREZXYiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJVcnRpY2luYV9sb2ZvdGVuc2lzX1N0ZERldiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlVydGljaW5hIGxvZm90ZW5zaXMgU3RkRGV2Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfU3RkRGV2IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfU3RkRXJyIiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVXJ0aWNpbmFfbG9mb3RlbnNpc19TdGRFcnIiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfU3RkRXJyIiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMDgiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVXJ0aWNpbmFfbG9mb3RlbnNpc19TdGRFcnIiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJVcnRpY2luYV9sb2ZvdGVuc2lzX1N0ZEVyciIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlVydGljaW5hIGxvZm90ZW5zaXMgU3RkRXJyIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfU3RkRXJyIiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdCiAgICBdCiAgfQp9Cg== + recorded_at: 2020-07-15 22:22:40 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:52 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:22:52 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: ASCII-8BIT + file: no + string: ewogICJ0YWJsZSI6IHsKICAgICJjb2x1bW5OYW1lcyI6IFsiZ3JpZGRhcCIsICJTdWJzZXQiLCAidGFibGVkYXAiLCAiTWFrZSBBIEdyYXBoIiwgIndtcyIsICJmaWxlcyIsICJBY2Nlc3NpYmxlIiwgIlRpdGxlIiwgIlN1bW1hcnkiLCAiRkdEQyIsICJJU08gMTkxMTUiLCAiSW5mbyIsICJCYWNrZ3JvdW5kIEluZm8iLCAiUlNTIiwgIkVtYWlsIiwgIkluc3RpdHV0aW9uIiwgIkRhdGFzZXQgSUQiXSwKICAgICJjb2x1bW5UeXBlcyI6IFsiU3RyaW5nIiwgIlN0cmluZyIsICJTdHJpbmciLCAiU3RyaW5nIiwgIlN0cmluZyIsICJTdHJpbmciLCAiU3RyaW5nIiwgIlN0cmluZyIsICJTdHJpbmciLCAiU3RyaW5nIiwgIlN0cmluZyIsICJTdHJpbmciLCAiU3RyaW5nIiwgIlN0cmluZyIsICJTdHJpbmciLCAiU3RyaW5nIiwgIlN0cmluZyJdLAogICAgInJvd3MiOiBbCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2FsbERhdGFzZXRzLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hbGxEYXRhc2V0cyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hbGxEYXRhc2V0cy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICIqIFRoZSBMaXN0IG9mIEFsbCBBY3RpdmUgRGF0YXNldHMgaW4gdGhpcyBFUkREQVAgKiIsICJUaGlzIGRhdGFzZXQgaXMgYSB0YWJsZSB3aGljaCBoYXMgYSByb3cgb2YgaW5mb3JtYXRpb24gZm9yIGVhY2ggZGF0YXNldCBjdXJyZW50bHkgYWN0aXZlIGluIHRoaXMgRVJEREFQLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbmRhdGFzZXRJRCAoRGF0YXNldCBJRClcbmFjY2Vzc2libGVcbmluc3RpdHV0aW9uXG5kYXRhU3RydWN0dXJlIChEYXRhIFN0cnVjdHVyZSlcbmNkbV9kYXRhX3R5cGUgKENvbW1vbiBEYXRhIE1vZGVsIFR5cGUpXG5jbGFzcyAoRVJEREFQIENsYXNzKVxudGl0bGVcbm1pbkxvbmdpdHVkZSAoTWluaW11bSBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbm1heExvbmdpdHVkZSAoTWF4aW11bSBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxvbmdpdHVkZVNwYWNpbmcgKEF2ZXJhZ2UgR3JpZCBMb25naXR1ZGUgU3BhY2luZywgZGVncmVlc19lYXN0KVxubWluTGF0aXR1ZGUgKE1pbmltdW0gTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG5tYXhMYXRpdHVkZSAoTWF4aW11bSBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbmxhdGl0dWRlU3BhY2luZyAoQXZlcmFnZSBHcmlkIExhdGl0dWRlIFNwYWNpbmcsIGRlZ3JlZXNfbm9ydGgpXG5taW5BbHRpdHVkZSAoTWluaW11bSBBbHRpdHVkZSBvciAtRGVwdGgsIG0pXG5tYXhBbHRpdHVkZSAoTWF4aW11bSBBbHRpdHVkZSBvciAtRGVwdGgsIG0pXG5taW5UaW1lIChNaW5pbXVtIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5tYXhUaW1lIChNYXhpbXVtIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG50aW1lU3BhY2luZyAoQXZlcmFnZSBHcmlkIFRpbWUgU3BhY2luZywgc2Vjb25kcylcbmdyaWRkYXAgKEJhc2UgVVJMIG9mIE9QZU5EQVAgR3JpZCBTZXJ2aWNlKVxuc3Vic2V0IChVUkwgb2YgU3Vic2V0IFdlYiBQYWdlKVxudGFibGVkYXAgKEJhc2UgVVJMIG9mIE9QZU5EQVAgVGFibGUvU2VxdWVuY2UgU2VydmljZSlcbk1ha2VBR3JhcGggKFVSTCBvZiBNYWtlLUEtR3JhcGggV2ViIFBhZ2UpXG5zb3MgKEJhc2UgVVJMIG9mIFNPUyBTZXJ2aWNlKVxud2NzIChCYXNlIFVSTCBvZiBXQ1MgU2VydmljZSlcbndtcyAoQmFzZSBVUkwgb2YgV01TIFNlcnZpY2UpXG5maWxlcyAoQmFzZSBVUkwgb2YgL2ZpbGVzLyBTZXJ2aWNlKVxuLi4uICgxMCBtb3JlIHZhcmlhYmxlcylcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYWxsRGF0YXNldHMvaW5kZXguanNvbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcCIsICIiLCAiIiwgIk5PQUEgTk1GUyBTV0ZTQyBFbnZpcm9ubWVudGFsIFJlc2VhcmNoIERpdmlzaW9uIiwgImFsbERhdGFzZXRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9haXNfaGlfMjAxMTIwMTIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYWlzX2hpXzIwMTEyMDEyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkFJUyBTaGlwIFRyYWZmaWM6IEhhd2FpaTogMjAxMS0yMDEyIiwgIlNoaXAgcG9zaXRpb24gZGF0YSBmcm9tIGEgc2F0ZWxsaXRlLWJhc2VkIEF1dG9tYXRpYyBJZGVudGlmaWNhdGlvbiBTeXN0ZW0gKEFJUykgd2VyZSBvYnRhaW5lZCBqb2ludGx5IGJ5IFBhY0lPT1MgKEouIFBvdGVtcmEpLCBTT0VTVC9PUkUgb2YgdGhlIFVuaXZlcnNpdHkgb2YgSGF3YWlpIChFLiBSb3RoKSwgYW5kIHRoZSBQYXBhaGFuYXVtb2t1YWtlYSBNYXJpbmUgTmF0aW9uYWwgTW9udW1lbnQgKFBOTU4pIChELiBHcmFoYW0pIHRocm91Z2ggYSBvbmUtdGltZSBwdXJjaGFzZSBmcm9tIE9SQkNPTU0gTExDLiBUaGUgcHVyY2hhc2UgYWdyZWVtZW50IHdhcyBtYWRlIGluIGxhdGUgMjAxMiBhbmQgd2FzIGZvciBhIDMwLWJ5LTMwIGRlZ3JlZSBzZWN0aW9uIG9mIGhpc3RvcmljYWwgQUlTIGRhdGEgdGhhdCBpbmNsdWRlZCB0aGUgcmVnaW9uIG9mIHRoZSBIYXdhaWlhbiBJc2xhbmRzLiBUaGUgZGF0YSBpbmNsdWRlIEFJUyBsb25nIGFuZCB1bmNoZWNrZWQgcmVwb3J0cyBmb3IgYSBvbmUgeWVhciBwZXJpb2Q6IEF1Z3VzdCAyMDExIHRocm91Z2ggbWlkLUF1Z3VzdCAyMDEyLiBUaGUgcmF3LCBtb250aGx5IEdQUyBmaWxlcyB3ZXJlIGxvY2FsbHkgY29udmVydGVkIHRvIE5ldENERiBmb3IgdGhlIFBhY0lPT1MgZGF0YSBzZXJ2ZXJzLiBEdWUgdG8gdmVuZG9yIGNvbnN0cmFpbnRzLCByZWxlYXNlIG9mIHRoZSByYXcgZGF0YSBpcyBsaW1pdGVkLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbm9icyAob2JzZXJ2YXRpb24sIDApXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnNoaXBfaWRfbW1zaSAoc2hpcCBpZGVudGlmaWNhdGlvbiBudW1iZXIgKE1NU0kpLCAwKVxubmF2aWdhdGlvbmFsX3N0YXR1cyAoMClcbnNwZWVkX292ZXJfZ3JvdW5kIChrdHMpXG5jb3Vyc2Vfb3Zlcl9ncm91bmQgKGRlZylcbnRydWVfaGVhZGluZyAoZGVnKVxucmF0ZV9vZl90dXJuIChkZWdyZWVzIG1pbnV0ZXMtMSlcbnBvc2l0aW9uX2FjY3VyYWN5ICgwKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2Fpc19oaV8yMDExMjAxMl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvYWlzX2hpXzIwMTEyMDEyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2Fpc19oaV8yMDExMjAxMi9pbmRleC5qc29uIiwgImh0dHA6Ly93d3cubmF2Y2VuLnVzY2cuZ292Lz9wYWdlTmFtZT1BSVNtYWluIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2Fpc19oaV8yMDExMjAxMi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YWlzX2hpXzIwMTEyMDEyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlBhY2lmaWMgSXNsYW5kcyBPY2VhbiBPYnNlcnZpbmcgU3lzdGVtIChQYWNJT09TKSIsICJhaXNfaGlfMjAxMTIwMTIiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2Fpc19qb2huXzIwMTEyMDEyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2Fpc19qb2huXzIwMTEyMDEyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkFJUyBTaGlwIFRyYWZmaWM6IEpvaG5zdG9uIEF0b2xsOiAyMDExLTIwMTIiLCAiU2hpcCBwb3NpdGlvbiBkYXRhIGZyb20gYSBzYXRlbGxpdGUtYmFzZWQgQXV0b21hdGljIElkZW50aWZpY2F0aW9uIFN5c3RlbSAoQUlTKSB3ZXJlIG9idGFpbmVkIGpvaW50bHkgYnkgUGFjSU9PUyAoSi4gUG90ZW1yYSksIFNPRVNUL09SRSBvZiB0aGUgVW5pdmVyc2l0eSBvZiBIYXdhaWkgKEUuIFJvdGgpLCBhbmQgdGhlIFBhcGFoYW5hdW1va3Vha2VhIE1hcmluZSBOYXRpb25hbCBNb251bWVudCAoUE5NTikgKEQuIEdyYWhhbSkgdGhyb3VnaCBhIG9uZS10aW1lIHB1cmNoYXNlIGZyb20gT1JCQ09NTSBMTEMuIFRoZSBwdXJjaGFzZSBhZ3JlZW1lbnQgd2FzIG1hZGUgaW4gbGF0ZSAyMDEyIGFuZCB3YXMgZm9yIGEgMzAtYnktMzAgZGVncmVlIHNlY3Rpb24gb2YgaGlzdG9yaWNhbCBBSVMgZGF0YSB0aGF0IGluY2x1ZGVkIHRoZSByZWdpb24gc3Vycm91bmRpbmcgSm9obnN0b24gQXRvbGwuIFRoZSBkYXRhIGluY2x1ZGUgQUlTIGxvbmcgYW5kIHVuY2hlY2tlZCByZXBvcnRzIGZvciBhIG9uZSB5ZWFyIHBlcmlvZDogQXVndXN0IDIwMTEgdGhyb3VnaCBtaWQtQXVndXN0IDIwMTIuIFRoZSByYXcsIG1vbnRobHkgR1BTIGZpbGVzIHdlcmUgbG9jYWxseSBjb252ZXJ0ZWQgdG8gTmV0Q0RGIGZvciB0aGUgUGFjSU9PUyBkYXRhIHNlcnZlcnMuIER1ZSB0byB2ZW5kb3IgY29uc3RyYWludHMsIHJlbGVhc2Ugb2YgdGhlIHJhdyBkYXRhIGlzIGxpbWl0ZWQuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxub2JzIChvYnNlcnZhdGlvbiwgMClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuc2hpcF9pZF9tbXNpIChzaGlwIGlkZW50aWZpY2F0aW9uIG51bWJlciAoTU1TSSksIDApXG5uYXZpZ2F0aW9uYWxfc3RhdHVzICgwKVxuc3BlZWRfb3Zlcl9ncm91bmQgKGt0cylcbmNvdXJzZV9vdmVyX2dyb3VuZCAoZGVnKVxudHJ1ZV9oZWFkaW5nIChkZWcpXG5yYXRlX29mX3R1cm4gKGRlZ3JlZXMgbWludXRlcy0xKVxucG9zaXRpb25fYWNjdXJhY3kgKDApXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvYWlzX2pvaG5fMjAxMTIwMTJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2Fpc19qb2huXzIwMTEyMDEyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2Fpc19qb2huXzIwMTEyMDEyL2luZGV4Lmpzb24iLCAiaHR0cDovL3d3dy5uYXZjZW4udXNjZy5nb3YvP3BhZ2VOYW1lPUFJU21haW4iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYWlzX2pvaG5fMjAxMTIwMTIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWFpc19qb2huXzIwMTEyMDEyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlBhY2lmaWMgSXNsYW5kcyBPY2VhbiBPYnNlcnZpbmcgU3lzdGVtIChQYWNJT09TKSIsICJhaXNfam9obl8yMDExMjAxMiJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYWlzX21hcmlfMjAxMTIwMTIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYWlzX21hcmlfMjAxMTIwMTIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQUlTIFNoaXAgVHJhZmZpYzogTWFyaWFuYSBhbmQgV2FrZTogMjAxMS0yMDEyIiwgIlNoaXAgcG9zaXRpb24gZGF0YSBmcm9tIGEgc2F0ZWxsaXRlLWJhc2VkIEF1dG9tYXRpYyBJZGVudGlmaWNhdGlvbiBTeXN0ZW0gKEFJUykgd2VyZSBvYnRhaW5lZCBqb2ludGx5IGJ5IFBhY0lPT1MgKEouIFBvdGVtcmEpLCBTT0VTVC9PUkUgb2YgdGhlIFVuaXZlcnNpdHkgb2YgSGF3YWlpIChFLiBSb3RoKSwgYW5kIHRoZSBQYXBhaGFuYXVtb2t1YWtlYSBNYXJpbmUgTmF0aW9uYWwgTW9udW1lbnQgKFBOTU4pIChELiBHcmFoYW0pIHRocm91Z2ggYSBvbmUtdGltZSBwdXJjaGFzZSBmcm9tIE9SQkNPTU0gTExDLiBUaGUgcHVyY2hhc2UgYWdyZWVtZW50IHdhcyBtYWRlIGluIGxhdGUgMjAxMiBhbmQgd2FzIGZvciBhIDMwLWJ5LTMwIGRlZ3JlZSBzZWN0aW9uIG9mIGhpc3RvcmljYWwgQUlTIGRhdGEgdGhhdCBpbmNsdWRlZCB0aGUgcmVnaW9uIG9mIHRoZSBNYXJpYW5hIElzbGFuZHMuIFRoZSBkYXRhIGluY2x1ZGUgQUlTIGxvbmcgYW5kIHVuY2hlY2tlZCByZXBvcnRzIGZvciBhIG9uZSB5ZWFyIHBlcmlvZDogQXVndXN0IDIwMTEgdGhyb3VnaCBtaWQtQXVndXN0IDIwMTIuIFRoZSByYXcsIG1vbnRobHkgR1BTIGZpbGVzIHdlcmUgbG9jYWxseSBjb252ZXJ0ZWQgdG8gTmV0Q0RGIGZvciB0aGUgUGFjSU9PUyBkYXRhIHNlcnZlcnMuIER1ZSB0byB2ZW5kb3IgY29uc3RyYWludHMsIHJlbGVhc2Ugb2YgdGhlIHJhdyBkYXRhIGlzIGxpbWl0ZWQuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxub2JzIChvYnNlcnZhdGlvbiwgMClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuc2hpcF9pZF9tbXNpIChzaGlwIGlkZW50aWZpY2F0aW9uIG51bWJlciAoTU1TSSksIDApXG5uYXZpZ2F0aW9uYWxfc3RhdHVzICgwKVxuc3BlZWRfb3Zlcl9ncm91bmQgKGt0cylcbmNvdXJzZV9vdmVyX2dyb3VuZCAoZGVnKVxudHJ1ZV9oZWFkaW5nIChkZWcpXG5yYXRlX29mX3R1cm4gKGRlZ3JlZXMgbWludXRlcy0xKVxucG9zaXRpb25fYWNjdXJhY3kgKDApXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvYWlzX21hcmlfMjAxMTIwMTJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2Fpc19tYXJpXzIwMTEyMDEyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2Fpc19tYXJpXzIwMTEyMDEyL2luZGV4Lmpzb24iLCAiaHR0cDovL3d3dy5uYXZjZW4udXNjZy5nb3YvP3BhZ2VOYW1lPUFJU21haW4iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYWlzX21hcmlfMjAxMTIwMTIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWFpc19tYXJpXzIwMTEyMDEyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlBhY2lmaWMgSXNsYW5kcyBPY2VhbiBPYnNlcnZpbmcgU3lzdGVtIChQYWNJT09TKSIsICJhaXNfbWFyaV8yMDExMjAxMiJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYWlzX3Jvc2VfMjAxMTIwMTIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYWlzX3Jvc2VfMjAxMTIwMTIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQUlTIFNoaXAgVHJhZmZpYzogUm9zZSBBdG9sbDogMjAxMS0yMDEyIiwgIlNoaXAgcG9zaXRpb24gZGF0YSBmcm9tIGEgc2F0ZWxsaXRlLWJhc2VkIEF1dG9tYXRpYyBJZGVudGlmaWNhdGlvbiBTeXN0ZW0gKEFJUykgd2VyZSBvYnRhaW5lZCBqb2ludGx5IGJ5IFBhY0lPT1MgKEouIFBvdGVtcmEpLCBTT0VTVC9PUkUgb2YgdGhlIFVuaXZlcnNpdHkgb2YgSGF3YWlpIChFLiBSb3RoKSwgYW5kIHRoZSBQYXBhaGFuYXVtb2t1YWtlYSBNYXJpbmUgTmF0aW9uYWwgTW9udW1lbnQgKFBOTU4pIChELiBHcmFoYW0pIHRocm91Z2ggYSBvbmUtdGltZSBwdXJjaGFzZSBmcm9tIE9SQkNPTU0gTExDLiBUaGUgcHVyY2hhc2UgYWdyZWVtZW50IHdhcyBtYWRlIGluIGxhdGUgMjAxMiBhbmQgd2FzIGZvciBhIDMwLWJ5LTMwIGRlZ3JlZSBzZWN0aW9uIG9mIGhpc3RvcmljYWwgQUlTIGRhdGEgdGhhdCBpbmNsdWRlZCB0aGUgcmVnaW9uIHN1cnJvdW5kaW5nIFJvc2UgQXRvbGwgaW4gQW1lcmljYW4gU2Ftb2EuIFRoZSBkYXRhIGluY2x1ZGUgQUlTIGxvbmcgYW5kIHVuY2hlY2tlZCByZXBvcnRzIGZvciBhIG9uZSB5ZWFyIHBlcmlvZDogQXVndXN0IDIwMTEgdGhyb3VnaCBtaWQtQXVndXN0IDIwMTIuIFRoZSByYXcsIG1vbnRobHkgR1BTIGZpbGVzIHdlcmUgbG9jYWxseSBjb252ZXJ0ZWQgdG8gTmV0Q0RGIGZvciB0aGUgUGFjSU9PUyBkYXRhIHNlcnZlcnMuIER1ZSB0byB2ZW5kb3IgY29uc3RyYWludHMsIHJlbGVhc2Ugb2YgdGhlIHJhdyBkYXRhIGlzIGxpbWl0ZWQuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxub2JzIChvYnNlcnZhdGlvbiwgMClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuc2hpcF9pZF9tbXNpIChzaGlwIGlkZW50aWZpY2F0aW9uIG51bWJlciAoTU1TSSksIDApXG5uYXZpZ2F0aW9uYWxfc3RhdHVzICgwKVxuc3BlZWRfb3Zlcl9ncm91bmQgKGt0cylcbmNvdXJzZV9vdmVyX2dyb3VuZCAoZGVnKVxudHJ1ZV9oZWFkaW5nIChkZWcpXG5yYXRlX29mX3R1cm4gKGRlZ3JlZXMgbWludXRlcy0xKVxucG9zaXRpb25fYWNjdXJhY3kgKDApXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvYWlzX3Jvc2VfMjAxMTIwMTJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2Fpc19yb3NlXzIwMTEyMDEyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2Fpc19yb3NlXzIwMTEyMDEyL2luZGV4Lmpzb24iLCAiaHR0cDovL3d3dy5uYXZjZW4udXNjZy5nb3YvP3BhZ2VOYW1lPUFJU21haW4iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYWlzX3Jvc2VfMjAxMTIwMTIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWFpc19yb3NlXzIwMTEyMDEyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlBhY2lmaWMgSXNsYW5kcyBPY2VhbiBPYnNlcnZpbmcgU3lzdGVtIChQYWNJT09TKSIsICJhaXNfcm9zZV8yMDExMjAxMiJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYWNvX2FkY3BfdGVtcCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hY29fYWRjcF90ZW1wLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkFMT0hBIENhYmxlZCBPYnNlcnZhdG9yeSAoQUNPKTogQWNvdXN0aWMgRG9wcGxlciBDdXJyZW50IFByb2ZpbGVyIChBRENQKTogVGVtcGVyYXR1cmUiLCAiVGhlIFVuaXZlcnNpdHkgb2YgSGF3YWlpJ3MgQUxPSEEgKFwiQSBMb25nLXRlcm0gT2xpZ290cm9waGljIEhhYml0YXQgQXNzZXNzbWVudFwiKSBDYWJsZWQgT2JzZXJ2YXRvcnkgKEFDTykgaXMgbG9jYXRlZCAxMDAga20gbm9ydGggb2YgdGhlIGlzbGFuZCBvZiBPYWh1LCBIYXdhaWkgKDIyIDQ1J04sIDE1OFcpIGluIHRoZSBOb3J0aCBQYWNpZmljIE9jZWFuLiBJdCBwcm92aWRlcyByZWFsLXRpbWUgb2NlYW5vZ3JhcGhpYyBvYnNlcnZhdGlvbnMgZnJvbSBhIGRlcHRoIG9mIGFib3V0IDQsODAwIG0gdmlhIGEgc3VibWFyaW5lIGZpYmVyIG9wdGljIGNhYmxlIHRoYXQgY29tZXMgYXNob3JlIGF0IE1ha2FoYSBvbiBPYWh1LiBUaGlzIGRhdGEgc2V0IHByb3ZpZGVzIG1lYXN1cmVtZW50cyBvZiBzZWEgd2F0ZXIgdGVtcGVyYXR1cmUgYXQgdGhlIEFDTyBhdCAxLjgzIG0gYWJvdmUgdGhlIG9jZWFuIGJvdHRvbSBmb3IgdGhlIG1vc3QgcmVjZW50IDcgZGF5cy5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb25fbmFtZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5kZXB0aCAobSlcbnNlYV93YXRlcl90ZW1wZXJhdHVyZSAoZGVncmVlX0NlbHNpdXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvYWNvX2FkY3BfdGVtcF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvYWNvX2FkY3BfdGVtcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hY29fYWRjcF90ZW1wL2luZGV4Lmpzb24iLCAiaHR0cDovL2Fjby1zc2RzLnNvZXN0Lmhhd2FpaS5lZHUiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYWNvX2FkY3BfdGVtcC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YWNvX2FkY3BfdGVtcCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJVbml2ZXJzaXR5IG9mIEhhd2FpaSIsICJhY29fYWRjcF90ZW1wIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hY29fYWRjcF92ZWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYWNvX2FkY3BfdmVsLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkFMT0hBIENhYmxlZCBPYnNlcnZhdG9yeSAoQUNPKTogQWNvdXN0aWMgRG9wcGxlciBDdXJyZW50IFByb2ZpbGVyIChBRENQKTogVmVsb2NpdHkiLCAiVGhlIFVuaXZlcnNpdHkgb2YgSGF3YWlpJ3MgQUxPSEEgKFwiQSBMb25nLXRlcm0gT2xpZ290cm9waGljIEhhYml0YXQgQXNzZXNzbWVudFwiKSBDYWJsZWQgT2JzZXJ2YXRvcnkgKEFDTykgaXMgbG9jYXRlZCAxMDAga20gbm9ydGggb2YgdGhlIGlzbGFuZCBvZiBPYWh1LCBIYXdhaWkgKDIyIDQ1J04sIDE1OFcpIGluIHRoZSBOb3J0aCBQYWNpZmljIE9jZWFuLiBJdCBwcm92aWRlcyByZWFsLXRpbWUgb2NlYW5vZ3JhcGhpYyBvYnNlcnZhdGlvbnMgZnJvbSBhIGRlcHRoIG9mIGFib3V0IDQsODAwIG0gdmlhIGEgc3VibWFyaW5lIGZpYmVyIG9wdGljIGNhYmxlIHRoYXQgY29tZXMgYXNob3JlIGF0IE1ha2FoYSBvbiBPYWh1LiBUaGlzIGRhdGEgc2V0IHByb3ZpZGVzIG1lYXN1cmVtZW50cyBvZiBvY2VhbiBjdXJyZW50IHZlbG9jaXR5IGF0IHRoZSBBQ08gZnJvbSBhIDI1MCBrSHogU29uVGVrIGFjb3VzdGljIGRvcHBsZXIgY3VycmVudCBwcm9maWxlciAoQURDUCkgYXQgMS44MyBtIGFib3ZlIHRoZSBvY2VhbiBib3R0b20gZm9yIHRoZSBtb3N0IHJlY2VudCA3IGRheXMuIFZlbG9jaXRpZXMgYXJlIGZsYWdnZWQgYmFkIGlmIHRoZSBhbXBsaXR1ZGUgaXMgZXhjZXNzaXZlbHkgbG93IG9yIGhpZ2guIEFuIGFtcGxpdHVkZSBpcyBoaWdoIGlmIGl0IGV4Y2VlZHMgdGhlIGF2ZXJhZ2Ugb2YgdGhlIHBpbmcgYmVmb3JlIGFuZCB0aGUgcGluZyBhZnRlciBieSAyMCBjb3VudHMuIEFuIGFtcGxpdHVkZSBpcyBsb3cgaWYgbGVzcyB0aGFuIDYgY291bnRzLiBBZnRlciB0aGlzIHRoZSB2ZWxvY2l0aWVzIGFyZSBmbGFnZ2VkIGJhZCBpZiB0aGUgYWJzb2x1dGUgZGV2aWF0aW9uIG9mIHRoZSB2ZXJ0aWNhbCB2ZWxvY2l0eSBmcm9tIGl0cyBlbnNlbWJsZSBtZWRpYW4gZXhjZWVkcyAwLjE1IG0vcyBvciBpZiBpdHMgdmFsdWUgaXMgbGVzcyB0aGFuIC0wLjI1IG0vcy5cblxuY2RtX2RhdGFfdHlwZSA9IFByb2ZpbGVcblZBUklBQkxFUzpcbnN0YXRpb25fbmFtZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChEZXB0aCBvZiBlYWNoIGxvY2F0aW9uLCBtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmVhc3R3YXJkX3NlYV93YXRlcl92ZWxvY2l0eSAoY3VycmVudCBlYXN0IGNvbXBvbmVudCwgbWV0ZXJzL3NlY29uZClcbm5vcnRod2FyZF9zZWFfd2F0ZXJfdmVsb2NpdHkgKGN1cnJlbnQgbm9ydGggY29tcG9uZW50LCBtZXRlcnMvc2Vjb25kKVxudXB3YXJkX3NlYV93YXRlcl92ZWxvY2l0eSAoY3VycmVudCB1cHdhcmQgY29tcG9uZW50LCBtZXRlcnMvc2Vjb25kKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2Fjb19hZGNwX3ZlbF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvYWNvX2FkY3BfdmVsX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2Fjb19hZGNwX3ZlbC9pbmRleC5qc29uIiwgImh0dHA6Ly9hY28tc3Nkcy5zb2VzdC5oYXdhaWkuZWR1IiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2Fjb19hZGNwX3ZlbC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YWNvX2FkY3BfdmVsJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlVuaXZlcnNpdHkgb2YgSGF3YWlpIiwgImFjb19hZGNwX3ZlbCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9kY1BKSlUiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9kY1BKSlUuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQU4gRVhQRVJJTUVOVEFMIERBVEFTRVQ6IFVuZGVyd2F5IFNlYSBTdXJmYWNlIFRlbXBlcmF0dXJlIGFuZCBTYWxpbml0eSBBYm9hcmQgdGhlIE9sZWFuZGVyLCAyMDA3LTIwMTAiLCAiVGhlIGRhdGEgYmVpbmcgc3VibWl0dGVkIHRvIE5PREMgY29udGFpbiBpbmZvcm1hdGlvbiBhYm91dCB0ZW1wZXJhdHVyZSBhbmQgc2FsaW5pdHkgb2J0YWluZWQgd2l0aCB0aGUgdXNlIG9mIHRoZXJtb3NhbGlub2dyYXBocyAoVFNHKSBpbnN0YWxsZWQgaW4gc2hpcHMgb2YgdGhlIE5PQUEgZmxlZXQgYW5kIG90aGVyIGNhcmdvIGFuZCBjcnVpc2Ugc2hpcHMuIFRoZSBkYXRhIGlzIHRyYW5zbWl0dGVkIHRvIEFPTUwvTk9BQSBpbiByZWFsLXRpbWUgYW5kIHN1Ym1pdHRlZCB0byBhIHF1YWxpdHkgY29udHJvbCBwcm9jZWR1cmUgZGV2ZWxvcGVkIGF0IEFPTUwgYmFzZWQgb24gdGhlIEdsb2JhbCBPY2VhbiBTdXJmYWNlIFVuZGVyd2F5IERhdGEgUGlsb3QgUHJvamVjdCAoR09TVUQpIHJlYWwtdGltZSBjb250cm9sIHRlc3QuIERhdGEgYXBwcm92ZWQgaW4gdGhlc2UgdGVzdHMgYXJlIHN1Ym1pdHRlZCB0byB0aGUgR1RTLiBUaGUgZGF0YSBzZXQgc3VibWl0dGVkIHRvIE5PREMgZm9yIGRpc3RyaWJ1dGlvbiBjb25zdGl0dXRlIHRoZSBjb21wbGV0ZSBkYXRhIHNldCByZWNlaXZlZCBieSBBT01MIHdpdGggdGhlIGNvcnJlc3BvbmRpbmcgZmxhZ3MgYWZ0ZXIgdGhlIHF1YWxpdHkgY29udHJvbC5cblxuY2RtX2RhdGFfdHlwZSA9IFRyYWplY3RvcnlcblZBUklBQkxFUzpcbmNhbGxTaWduIChDYWxsIFNpZ24pXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmludHAgKEludGVybmFsIFRTRyBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5zYWwgKFRTRyBQcmFjdGlhbCBTYWxpbml0eSwgUFNVKVxuY29uZCAoVFNHIENvbmR1Y3Rpdml0eSwgZGVncmVlX0MpXG5leHQgKFRoZXJtaXN0b3IgV2F0ZXIgVGVtcGVyYXR1cmUsIGRlZ3JlZXNfQ2Vsc2l1cylcbnNzdCAoU2VhIFN1cmZhY2UgVGVtcGVyYXR1cmUsIGRlZ3JlZXNfQ2Vsc2l1cylcbmZsYWdfYSAoUUMgZmxhZy1wbGF0Zm9ybSBpZGVudGlmaWNhdGlvbilcbmZsYWdfYiAoUUMgZmxhZy1pbXBvc3NpYmxlIGRhdGUpXG5mbGFnX2MgKFFDIGZsYWctaW1wb3NzaWJsZSBsb2NhdGlvbilcbmZsYWdfZCAoUUMgZmxhZy1wb3NpdGlvbiBvbiBsYW5kIHN0ZXApXG5mbGFnX2UgKFFDIGZsYWctaW1wb3NzaWJsZSBzcGVlZClcbmZsYWdfZiAoUUMgZmxhZy1nbG9iYWwgcmFuZ2VzKVxuZmxhZ19nIChRQyBmbGFnLXJlZ2lvbmFsIHJhbmdlcylcbmZsYWdfaCAoUUMgZmxhZy1zcGlrZSB0ZXN0KVxuZmxhZ19pIChRQyBmbGFnLWNvbnN0YW50IHZhbHVlKVxuZmxhZ19qIChRQyBmbGFnLWdyYWRpZW50IHRlc3QpXG5mbGFnX2sgKFFDIGZsYWctY2xpbWF0b2xvZ3kgYW5kIE5DRVAgd2Vla2x5IGFuYWx5c2lzKVxuZmxhZ19sIChRQyBmbGFnLWJ1ZGR5IGNoZWNrKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL25vZGNQSkpVX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9ub2RjUEpKVV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub2RjUEpKVS9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LmFvbWwubm9hYS5nb3YvcGhvZC90c2cvaW5kZXgucGhwIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vZGNQSkpVLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub2RjUEpKVSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE9BUiBBT01MIiwgIm5vZGNQSkpVIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2d0b3BwQVQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2d0b3BwQVQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZ3RvcHBBVC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJBbmltYWwgVGVsZW1ldHJ5IE5ldHdvcmsgKEFUTikiLCAiVGhlc2UgZGF0YSAodXBkYXRlZCBkYWlseSkgYXJlIGZyb20gdGhlIEFuaW1hbCBUZWxlbWV0cnkgTmV0d29yayAoQVROKSBwcm9ncmFtLiAgQmVndW4gYXMgb25lIG9mIHRoZSBmaWVsZCBwcm9qZWN0cyBpbiB0aGUgaW50ZXJuYXRpb25hbCBDZW5zdXMgb2YgTWFyaW5lIExpZmUsIHRoZSBQYWNpZmljLWZvY3VzZWQgVE9QUCAoVGFnZ2luZyBvZiBQYWNpZmljIFByZWRhdG9ycykgcHJvZ3JhbSB3YXMgYW4gaW50ZXJuYXRpb25hbCBtdWx0aWRpc2NpcGxpbmFyeSBjb2xsYWJvcmF0aW9uIG9mIG1vcmUgdGhhbiA3NSBzY2llbnRpc3RzIGZyb20gNyBuYXRpb25zLiAgT3ZlciB0aGUgZGVjYWRlIGJlZ2lubmluZyBpbiAyMDAwLCBUT1BQIHJlc2VhcmNoZXJzIGRlcGxveWVkIG1vcmUgdGhhbiA0LDMwMCBlbGVjdHJvbmljIHRhZ3Mgb24gMjMgZGlmZmVyZW50IHNwZWNpZXMgb2YgbWFyaW5lIGFuaW1hbHMgLSB5aWVsZGluZyBhIGRhdGFzZXQgb2YgbW9yZSB0aGFuIDMzNSwwMDAgdHJhY2tpbmcgZGF5cy4gVG8gbGVhcm4gbW9yZSBwbGVhc2UgdmlzaXQgaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9BVE4uXG5cbmNkbV9kYXRhX3R5cGUgPSBUcmFqZWN0b3J5XG5WQVJJQUJMRVM6XG5jb21tb25OYW1lIChDb21tb24gTmFtZSlcbnllYXJEZXBsb3llZCAoWWVhciBEZXBsb3llZClcbnByb2plY3RcbnRvcHBJRCAoVE9QUCBJRCAodW5pcXVlKSlcbnNlcmlhbE51bWJlciAoVGhlIFRhZydzIFNlcmlhbCBOdW1iZXIgKG5vdCB1bmlxdWUpKVxuaXNEcmlmdGVyIChJcyBEcmlmdGVyPylcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxuTEMgKExvY2F0aW9uIFF1YWxpdHkgQ29kZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ndG9wcEFUX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9ndG9wcEFUX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2d0b3BwQVQvaW5kZXguanNvbiIsICJodHRwczovL2d0b3BwLm9yZy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZ3RvcHBBVC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9Z3RvcHBBVCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbmltYWwgVGVsZW1ldHJ5IE5ldHdvcmsiLCAiZ3RvcHBBVCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJY3VmZXMuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkljdWZlcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJY3VmZXMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBDb250aW51b3VzIFVuZGVyd2F5IEZpc2gtRWdnIFNhbXBsZXIiLCAiU2FtcGxlcyBjb2xsZWN0ZWQgdXNpbmcgdGhlIENvbnRpbnVvdXMgVW5kZXJ3YXkgRmlzaC1FZ2cgU2FtcGxlciwga25vd24gYXMgQ1VGRVMuIFRoZSBkYXRhIGluY2x1ZGUgbnVtYmVycyBvZiBhbmNob3Z5LCBzYXJkaW5lLCBqYWNrIG1hY2tlcmVsLCBzcXVpZCwgaGFrZSwgYW5kIHVuaWRlbnRpZmllZCBmaXNoIGVnZ3MgY2FwdHVyZWQsIGFuZCBhc3NvY2lhdGVkIGVudmlyb25tZW50YWwuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxuc2FtcGxlX251bWJlclxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChTdGFydCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoU3RhcnQgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5zdGFydF90ZW1wZXJhdHVyZSAoZGVncmVlIEMpXG5zdGFydF9zYWxpbml0eSAocHN1KVxuc3RhcnRfd2luZF9zcGVlZCAoa25vdHMpXG5zdGFydF93aW5kX2RpcmVjdGlvbiAoZGVncmVlcylcbnN0YXJ0X3B1bXBfc3BlZWQgKE1eMyBwZXIgbWludXRlKVxuc3RvcF90aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc3RvcF9sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbnN0b3BfbG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5zdG9wX3RlbXBlcmF0dXJlIChkZWdyZWUgQylcbnN0b3Bfc2FsaW5pdHkgKHBzdSlcbnN0b3Bfd2luZF9zcGVlZCAoa25vdHMpXG5zdG9wX3dpbmRfZGlyZWN0aW9uIChkZWdyZWVzKVxuc3RvcF9wdW1wX3NwZWVkIChNXjMgcGVyIG1pbnV0ZSlcbnNhcmRpbmVfZWdncyAoY291bnQpXG5hbmNob3Z5X2VnZ3MgKGNvdW50KVxuamFja19tYWNrZXJlbF9lZ2dzIChjb3VudClcbmhha2VfZWdncyAoY291bnQpXG5zcXVpZF9lZ2dzIChjb3VudClcbm90aGVyX2Zpc2hfZWdncyAoY291bnQpXG5jb21tZW50c1xucmVzb3J0ZWRcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJY3VmZXNfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRkljdWZlc19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJY3VmZXMvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWN1ZmVzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJY3VmZXMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJY3VmZXMiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWNydWlzZXMuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkljcnVpc2VzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkljcnVpc2VzLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgQ3J1aXNlcyIsICJDcnVpc2VzIHVzaW5nIG9uZSBvciBtb3JlIHNoaXBzIGNvbmR1Y3RlZCBhcyBwYXJ0IG9mIHRoZSBDYWxpZm9ybmlhIENvb3BlcmF0aXZlIE9jZWFuaWMgRmlzaGVyaWVzIEludmVzdGlnYXRpb25zIChDYWxDT0ZJKSBwcm9ncmFtIGFuZCBvdGhlciByZWxhdGVkIGNydWlzZXMgY29uZHVjdGVkIGJ5IHRoZSBOT0FBIFNvdXRod2VzdCBGaXNoZXJpZXMgU2NpZW5jZSBDZW50ZXIgZnJvbSAxOTUxIHRvIHByZXNlbnQuIE11bHRpLXB1cnBvc2UgY3J1aXNlcyBlLmcuLCBDYWxDT0ZJIGFuZCB0cmF3bGluZywgaW5jbHVkZSBhIGxpc3RpbmcgZm9yIGVhY2ggY3J1aXNlIHR5cGUuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxueWVhclxubW9udGhcbmNydWlzZV90eXBlXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRkljcnVpc2VzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRkljcnVpc2VzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJY3J1aXNlcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRkljcnVpc2VzIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkllZ2djbnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkllZ2djbnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWVnZ2NudC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIEVnZyBDb3VudHMiLCAiRmlzaCBlZ2cgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBlZ2dzIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gZWdncyB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiRWdnIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGVnZ3Mgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGUgKENhbENPSSBTcGVjaWVzIENvZGUpXG5lZ2dfY291bnQgKHJhdyBjb3VudClcbmVnZ3NfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGVnZ3MgZm9yIG9ibGlxdWUgdG93cywgRWdncyBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5lZ2dzXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGVnZ3MgZm9yIG1hbnRhIHRvd3MsIEVnZ3MgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRkllZ2djbnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRkllZ2djbnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWVnZ2NudC9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJZWdnY250LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJZWdnY250JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWVnZ2NudCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJZWdnY250cG9zLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJZWdnY250cG9zIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkllZ2djbnRwb3MuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBFZ2cgQ291bnRzIFBvc2l0aXZlIFRvd3MiLCAiRmlzaCBlZ2cgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBlZ2dzIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgZWdncyB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlciwgaS5lLiwgbm8gXCJ6ZXJvXCIgdG93cy4gVGhlIFwiRWdnIENvdW50c1wiIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGkuZS4sIGJvdGggcG9zaXRpdmUgYW5kIG5lZ2F0aXZlIHRvd3MuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmVnZ19jb3VudCAocmF3IGNvdW50KVxuZWdnc18xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgZWdncyBmb3Igb2JsaXF1ZSB0b3dzLCBFZ2dzIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmVnZ3NfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgZWdncyBmb3IgbWFudGEgdG93cywgRWdncyBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWVnZ2NudHBvc19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWVnZ2NudHBvc19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJZWdnY250cG9zL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRkllZ2djbnRwb3MucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRkllZ2djbnRwb3Mmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJZWdnY250cG9zIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkllZ2dzdGcuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkllZ2dzdGciLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWVnZ3N0Zy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIEVnZyBTdGFnZXMiLCAiRWdnIG1vcnBob2xvZ2ljYWwgZGV2ZWxvcG1lbnRhbCBzdGFnZSBmb3IgZWdncyBvZiBzZWxlY3RlZCBzcGVjaWVzIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cy4gU2VxdWVudGlhbCBkZXZlbG9wbWVudGFsIHN0YWdlcyBhcmUgZGVzY3JpYmVkIGJ5IE1vc2VyIGFuZCBBaGxzdHJvbSAoMTk4NTsgc2VlIHRoZSBpbmZvIHVybCByZWZlcmVuY2VzIHNlY3Rpb24pLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZSAoVG93IFR5cGUgTmFtZSlcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxuZWdnX3N0YWdlXG5lZ2dfc3RhZ2VfY291bnQgKFJhdyBjb3VudCBvZiBlZ2dzIGluIHRoZSBzdGFnZSlcbmVnZ3NfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGVnZ3MgZm9yIG9ibGlxdWUgdG93cywgRWdncyBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5lZ2dzXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGVnZ3MgZm9yIG1hbnRhIHRvd3MsIEVnZ3MgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRkllZ2dzdGdfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRkllZ2dzdGdfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWVnZ3N0Zy9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJZWdnc3RnLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJZWdnc3RnJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWVnZ3N0ZyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250cG9zLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250cG9zIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRwb3MuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3MiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBlZ2dzIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkgLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlciwgaS5lLiwgbm8gXCJ6ZXJvXCIgdG93cy4gVGhlIFwiTGFydmFlIENvdW50c1wiIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGkuZS4sIGJvdGggcG9zaXRpdmUgYW5kIG5lZ2F0aXZlIHRvd3MuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGluIHRoZSBzaXplIGNsYXNzIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgaW4gdGhlIHNpemUgY2xhc3MgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250cG9zX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250cG9zX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnRwb3MvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudHBvcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudHBvcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnRwb3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEF0b0FNLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250QXRvQU0iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEF0b0FNLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBBIHRvIEFNIiwgIkZpc2ggbGFydmFlIGNvdW50cyBhbmQgc3RhbmRhcmRpemVkIGNvdW50cyBmb3IgbGFydmFlIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzLCBpLmUuLCBuZWdhdGl2ZSB0b3dzLiBUaGUgXCJMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3NcIiB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzIHNlbGVjdGVkIGJ5IHRoZSB1c2VyLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZVxubmV0X3R5cGVcbnRvd19udW1iZXJcbm5ldF9sb2NhdGlvblxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5zYW1wbGVfcXVhbGl0eVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbnRpbWUgKFN0YXJ0IFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zY2llbnRpZmljX25hbWVcbmNvbW1vbl9uYW1lXG5pdGlzX3RzbiAoSW50ZXJncmF0ZWQgVGF4b21vbWljIEluZm9ybWF0aW9uIFN5c3RlbSBUYXhvbm9taWMgU2VyaWFsIE51bWJlcilcbmNhbGNvZmlfc3BlY2llc19jb2RlXG5sYXJ2YWVfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUpXG5sYXJ2YWVfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3Igb2JsaXF1ZSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5sYXJ2YWVfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydmNudEF0b0FNX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250QXRvQU1faXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudEF0b0FNL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZjbnRBdG9BTS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudEF0b0FNJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudEF0b0FNIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRBTnRvQVIuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRBTnRvQVIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEFOdG9BUi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIExhcnZhZSBDb3VudHMsIFNjaWVudGlmaWMgTmFtZXMgQU4gdG8gQVIiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250QU50b0FSX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250QU50b0FSX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnRBTnRvQVIvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudEFOdG9BUi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudEFOdG9BUiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnRBTnRvQVIiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEFTdG9CQS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEFTdG9CQSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250QVN0b0JBLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBBUyB0byBCQSIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRBU3RvQkFfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRBU3RvQkFfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudEFTdG9CQS9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250QVN0b0JBLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250QVN0b0JBJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudEFTdG9CQSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250QkNFdG9CWi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEJDRXRvQloiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEJDRXRvQlouZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIEJDRSB0byBCWiIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRCQ0V0b0JaX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250QkNFdG9CWl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250QkNFdG9CWi9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250QkNFdG9CWi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudEJDRXRvQlomc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250QkNFdG9CWiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250Q3RvQ0Uuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRDdG9DRSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250Q3RvQ0UuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIEMgdG8gQ0UiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250Q3RvQ0VfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRDdG9DRV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250Q3RvQ0UvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudEN0b0NFLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250Q3RvQ0Umc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250Q3RvQ0UiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudENEdG9DSC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudENEdG9DSCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250Q0R0b0NILmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBDRCB0byBDSCIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRDRHRvQ0hfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRDRHRvQ0hfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudENEdG9DSC9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250Q0R0b0NILnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250Q0R0b0NIJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudENEdG9DSCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250Q0l0b0NPLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250Q0l0b0NPIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRDSXRvQ08uZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIENJIHRvIENPIiwgIkZpc2ggbGFydmFlIGNvdW50cyBhbmQgc3RhbmRhcmRpemVkIGNvdW50cyBmb3IgbGFydmFlIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzLCBpLmUuLCBuZWdhdGl2ZSB0b3dzLiBUaGUgXCJMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3NcIiB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzIHNlbGVjdGVkIGJ5IHRoZSB1c2VyLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZVxubmV0X3R5cGVcbnRvd19udW1iZXJcbm5ldF9sb2NhdGlvblxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5zYW1wbGVfcXVhbGl0eVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbnRpbWUgKFN0YXJ0IFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zY2llbnRpZmljX25hbWVcbmNvbW1vbl9uYW1lXG5pdGlzX3RzbiAoSW50ZXJncmF0ZWQgVGF4b21vbWljIEluZm9ybWF0aW9uIFN5c3RlbSBUYXhvbm9taWMgU2VyaWFsIE51bWJlcilcbmNhbGNvZmlfc3BlY2llc19jb2RlXG5sYXJ2YWVfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUpXG5sYXJ2YWVfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3Igb2JsaXF1ZSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5sYXJ2YWVfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydmNudENJdG9DT19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydmNudENJdG9DT19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250Q0l0b0NPL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZjbnRDSXRvQ08ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZjbnRDSXRvQ08mc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250Q0l0b0NPIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRDUHRvREUuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRDUHRvREUiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudENQdG9ERS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIExhcnZhZSBDb3VudHMsIFNjaWVudGlmaWMgTmFtZXMgQ1AgdG8gREUiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250Q1B0b0RFX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250Q1B0b0RFX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnRDUHRvREUvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudENQdG9ERS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudENQdG9ERSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnRDUHRvREUiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudERIdG9FQy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudERIdG9FQyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250REh0b0VDLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBESCB0byBFQyIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRESHRvRUNfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRESHRvRUNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudERIdG9FQy9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250REh0b0VDLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250REh0b0VDJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudERIdG9FQyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250RUR0b0VVLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250RUR0b0VVIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRFRHRvRVUuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIEVEIHRvIEVVIiwgIkZpc2ggbGFydmFlIGNvdW50cyBhbmQgc3RhbmRhcmRpemVkIGNvdW50cyBmb3IgbGFydmFlIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzLCBpLmUuLCBuZWdhdGl2ZSB0b3dzLiBUaGUgXCJMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3NcIiB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzIHNlbGVjdGVkIGJ5IHRoZSB1c2VyLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZVxubmV0X3R5cGVcbnRvd19udW1iZXJcbm5ldF9sb2NhdGlvblxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5zYW1wbGVfcXVhbGl0eVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbnRpbWUgKFN0YXJ0IFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zY2llbnRpZmljX25hbWVcbmNvbW1vbl9uYW1lXG5pdGlzX3RzbiAoSW50ZXJncmF0ZWQgVGF4b21vbWljIEluZm9ybWF0aW9uIFN5c3RlbSBUYXhvbm9taWMgU2VyaWFsIE51bWJlcilcbmNhbGNvZmlfc3BlY2llc19jb2RlXG5sYXJ2YWVfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUpXG5sYXJ2YWVfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3Igb2JsaXF1ZSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5sYXJ2YWVfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydmNudEVEdG9FVV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydmNudEVEdG9FVV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250RUR0b0VVL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZjbnRFRHRvRVUucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZjbnRFRHRvRVUmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250RUR0b0VVIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRFVnRvR04uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRFVnRvR04iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEVWdG9HTi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIExhcnZhZSBDb3VudHMsIFNjaWVudGlmaWMgTmFtZXMgRVYgdG8gR04iLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250RVZ0b0dOX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250RVZ0b0dOX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnRFVnRvR04vaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudEVWdG9HTi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudEVWdG9HTiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnRFVnRvR04iXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEdPdG9IQS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEdPdG9IQSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250R090b0hBLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBHTyB0byBIQSIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRHT3RvSEFfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRHT3RvSEFfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudEdPdG9IQS9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250R090b0hBLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250R090b0hBJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudEdPdG9IQSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250SEJ0b0hJLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250SEJ0b0hJIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRIQnRvSEkuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIEhCIHRvIEhJIiwgIkZpc2ggbGFydmFlIGNvdW50cyBhbmQgc3RhbmRhcmRpemVkIGNvdW50cyBmb3IgbGFydmFlIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzLCBpLmUuLCBuZWdhdGl2ZSB0b3dzLiBUaGUgXCJMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3NcIiB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzIHNlbGVjdGVkIGJ5IHRoZSB1c2VyLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZVxubmV0X3R5cGVcbnRvd19udW1iZXJcbm5ldF9sb2NhdGlvblxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5zYW1wbGVfcXVhbGl0eVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbnRpbWUgKFN0YXJ0IFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zY2llbnRpZmljX25hbWVcbmNvbW1vbl9uYW1lXG5pdGlzX3RzbiAoSW50ZXJncmF0ZWQgVGF4b21vbWljIEluZm9ybWF0aW9uIFN5c3RlbSBUYXhvbm9taWMgU2VyaWFsIE51bWJlcilcbmNhbGNvZmlfc3BlY2llc19jb2RlXG5sYXJ2YWVfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUpXG5sYXJ2YWVfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3Igb2JsaXF1ZSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5sYXJ2YWVfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydmNudEhCdG9ISV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydmNudEhCdG9ISV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250SEJ0b0hJL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZjbnRIQnRvSEkucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZjbnRIQnRvSEkmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250SEJ0b0hJIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRISnRvSUQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRISnRvSUQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEhKdG9JRC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIExhcnZhZSBDb3VudHMsIFNjaWVudGlmaWMgTmFtZXMgSEogdG8gSUQiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250SEp0b0lEX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250SEp0b0lEX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnRISnRvSUQvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudEhKdG9JRC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudEhKdG9JRCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnRISnRvSUQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudElFdG9MQS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudElFdG9MQSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250SUV0b0xBLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBJRSB0byBMQSIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRJRXRvTEFfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRJRXRvTEFfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudElFdG9MQS9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250SUV0b0xBLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250SUV0b0xBJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudElFdG9MQSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250TEJ0b0xJLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250TEJ0b0xJIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRMQnRvTEkuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIExCIHRvIExJIiwgIkZpc2ggbGFydmFlIGNvdW50cyBhbmQgc3RhbmRhcmRpemVkIGNvdW50cyBmb3IgbGFydmFlIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzLCBpLmUuLCBuZWdhdGl2ZSB0b3dzLiBUaGUgXCJMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3NcIiB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzIHNlbGVjdGVkIGJ5IHRoZSB1c2VyLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZVxubmV0X3R5cGVcbnRvd19udW1iZXJcbm5ldF9sb2NhdGlvblxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5zYW1wbGVfcXVhbGl0eVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbnRpbWUgKFN0YXJ0IFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zY2llbnRpZmljX25hbWVcbmNvbW1vbl9uYW1lXG5pdGlzX3RzbiAoSW50ZXJncmF0ZWQgVGF4b21vbWljIEluZm9ybWF0aW9uIFN5c3RlbSBUYXhvbm9taWMgU2VyaWFsIE51bWJlcilcbmNhbGNvZmlfc3BlY2llc19jb2RlXG5sYXJ2YWVfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUpXG5sYXJ2YWVfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3Igb2JsaXF1ZSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5sYXJ2YWVfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydmNudExCdG9MSV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydmNudExCdG9MSV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250TEJ0b0xJL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZjbnRMQnRvTEkucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZjbnRMQnRvTEkmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250TEJ0b0xJIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRMSnRvTUEuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRMSnRvTUEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudExKdG9NQS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIExhcnZhZSBDb3VudHMsIFNjaWVudGlmaWMgTmFtZXMgTEogdG8gTUEiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250TEp0b01BX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250TEp0b01BX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnRMSnRvTUEvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudExKdG9NQS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudExKdG9NQSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnRMSnRvTUEiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudE1CdG9NTy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudE1CdG9NTyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250TUJ0b01PLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBNQiB0byBNTyIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRNQnRvTU9fZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRNQnRvTU9faXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudE1CdG9NTy9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250TUJ0b01PLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250TUJ0b01PJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudE1CdG9NTyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250TVB0b05BLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250TVB0b05BIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRNUHRvTkEuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIE1QIHRvIE5BIiwgIkZpc2ggbGFydmFlIGNvdW50cyBhbmQgc3RhbmRhcmRpemVkIGNvdW50cyBmb3IgbGFydmFlIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzLCBpLmUuLCBuZWdhdGl2ZSB0b3dzLiBUaGUgXCJMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3NcIiB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzIHNlbGVjdGVkIGJ5IHRoZSB1c2VyLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZVxubmV0X3R5cGVcbnRvd19udW1iZXJcbm5ldF9sb2NhdGlvblxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5zYW1wbGVfcXVhbGl0eVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbnRpbWUgKFN0YXJ0IFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zY2llbnRpZmljX25hbWVcbmNvbW1vbl9uYW1lXG5pdGlzX3RzbiAoSW50ZXJncmF0ZWQgVGF4b21vbWljIEluZm9ybWF0aW9uIFN5c3RlbSBUYXhvbm9taWMgU2VyaWFsIE51bWJlcilcbmNhbGNvZmlfc3BlY2llc19jb2RlXG5sYXJ2YWVfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUpXG5sYXJ2YWVfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3Igb2JsaXF1ZSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5sYXJ2YWVfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydmNudE1QdG9OQV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydmNudE1QdG9OQV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250TVB0b05BL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZjbnRNUHRvTkEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZjbnRNUHRvTkEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250TVB0b05BIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnROQnRvT0wuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnROQnRvT0wiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudE5CdG9PTC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIExhcnZhZSBDb3VudHMsIFNjaWVudGlmaWMgTmFtZXMgTkIgdG8gT0wiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250TkJ0b09MX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250TkJ0b09MX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnROQnRvT0wvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudE5CdG9PTC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudE5CdG9PTCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnROQnRvT0wiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudE9NdG9PWC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudE9NdG9PWCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250T010b09YLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBPTSB0byBPWCIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRPTXRvT1hfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRPTXRvT1hfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudE9NdG9PWC9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250T010b09YLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250T010b09YJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudE9NdG9PWCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250T1l0b1BJLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250T1l0b1BJIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRPWXRvUEkuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIE9ZIHRvIFBJIiwgIkZpc2ggbGFydmFlIGNvdW50cyBhbmQgc3RhbmRhcmRpemVkIGNvdW50cyBmb3IgbGFydmFlIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzLCBpLmUuLCBuZWdhdGl2ZSB0b3dzLiBUaGUgXCJMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3NcIiB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzIHNlbGVjdGVkIGJ5IHRoZSB1c2VyLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZVxubmV0X3R5cGVcbnRvd19udW1iZXJcbm5ldF9sb2NhdGlvblxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5zYW1wbGVfcXVhbGl0eVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbnRpbWUgKFN0YXJ0IFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zY2llbnRpZmljX25hbWVcbmNvbW1vbl9uYW1lXG5pdGlzX3RzbiAoSW50ZXJncmF0ZWQgVGF4b21vbWljIEluZm9ybWF0aW9uIFN5c3RlbSBUYXhvbm9taWMgU2VyaWFsIE51bWJlcilcbmNhbGNvZmlfc3BlY2llc19jb2RlXG5sYXJ2YWVfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUpXG5sYXJ2YWVfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3Igb2JsaXF1ZSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5sYXJ2YWVfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydmNudE9ZdG9QSV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydmNudE9ZdG9QSV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250T1l0b1BJL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZjbnRPWXRvUEkucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZjbnRPWXRvUEkmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250T1l0b1BJIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRQTHRvUE8uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRQTHRvUE8iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFBMdG9QTy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIExhcnZhZSBDb3VudHMsIFNjaWVudGlmaWMgTmFtZXMgUEwgdG8gUE8iLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250UEx0b1BPX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250UEx0b1BPX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnRQTHRvUE8vaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudFBMdG9QTy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudFBMdG9QTyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnRQTHRvUE8iXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFBQdG9QWi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFBQdG9QWiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250UFB0b1BaLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBQUCB0byBQWiIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRQUHRvUFpfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRQUHRvUFpfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudFBQdG9QWi9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250UFB0b1BaLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250UFB0b1BaJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudFBQdG9QWiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250UXRvU0Euc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRRdG9TQSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250UXRvU0EuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIFEgdG8gU0EiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250UXRvU0FfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRRdG9TQV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250UXRvU0EvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudFF0b1NBLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250UXRvU0Emc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250UXRvU0EiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFNCdG9TQy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFNCdG9TQyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250U0J0b1NDLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBTQiB0byBTQyIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRTQnRvU0NfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRTQnRvU0NfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudFNCdG9TQy9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250U0J0b1NDLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250U0J0b1NDJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudFNCdG9TQyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250U0R0b1NJLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250U0R0b1NJIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRTRHRvU0kuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIFNEIHRvIFNJIiwgIkZpc2ggbGFydmFlIGNvdW50cyBhbmQgc3RhbmRhcmRpemVkIGNvdW50cyBmb3IgbGFydmFlIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzLCBpLmUuLCBuZWdhdGl2ZSB0b3dzLiBUaGUgXCJMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3NcIiB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzIHNlbGVjdGVkIGJ5IHRoZSB1c2VyLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZVxubmV0X3R5cGVcbnRvd19udW1iZXJcbm5ldF9sb2NhdGlvblxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5zYW1wbGVfcXVhbGl0eVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbnRpbWUgKFN0YXJ0IFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zY2llbnRpZmljX25hbWVcbmNvbW1vbl9uYW1lXG5pdGlzX3RzbiAoSW50ZXJncmF0ZWQgVGF4b21vbWljIEluZm9ybWF0aW9uIFN5c3RlbSBUYXhvbm9taWMgU2VyaWFsIE51bWJlcilcbmNhbGNvZmlfc3BlY2llc19jb2RlXG5sYXJ2YWVfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUpXG5sYXJ2YWVfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3Igb2JsaXF1ZSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5sYXJ2YWVfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydmNudFNEdG9TSV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydmNudFNEdG9TSV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250U0R0b1NJL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZjbnRTRHRvU0kucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZjbnRTRHRvU0kmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250U0R0b1NJIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRTSnRvU1Quc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRTSnRvU1QiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFNKdG9TVC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIExhcnZhZSBDb3VudHMsIFNjaWVudGlmaWMgTmFtZXMgU0ogdG8gU1QiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250U0p0b1NUX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250U0p0b1NUX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnRTSnRvU1QvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudFNKdG9TVC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudFNKdG9TVCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnRTSnRvU1QiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFNVdG9URS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFNVdG9URSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250U1V0b1RFLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBTVSB0byBURSIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRTVXRvVEVfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRTVXRvVEVfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudFNVdG9URS9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250U1V0b1RFLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250U1V0b1RFJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudFNVdG9URSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250VEZ0b1Uuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRURnRvVSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250VEZ0b1UuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIFRGIHRvIFUiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250VEZ0b1VfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRURnRvVV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250VEZ0b1UvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudFRGdG9VLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250VEZ0b1Umc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250VEZ0b1UiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFZ0b1ouc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRWdG9aIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRWdG9aLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBWIHRvIFoiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250VnRvWl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydmNudFZ0b1pfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudFZ0b1ovaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudFZ0b1oucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZjbnRWdG9aJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudFZ0b1oiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydnNpei5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydnNpeiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2c2l6LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIFNpemVzIiwgIlNpemUgZGF0YSBmb3Igc2VsZWN0ZWQgbGFydmFsIGZpc2ggY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZSAoVG93IFR5cGUgTmFtZSlcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX3NpemUgKFRvdGFsIGxlbmd0aCBvZiB0aGUgbGFydmFlLCBtbSlcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGluIHRoZSBzaXplIGNsYXNzIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2c2l6X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2c2l6X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZzaXovaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydnNpei5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydnNpeiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZzaXoiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydnN0Zy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydnN0ZyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2c3RnLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIFN0YWdlcyIsICJEZXZlbG9wbWVudGFsIHN0YWdlcyAoeW9sayBzYWMsIHByZWZsZXhpb24sIGZsZXhpb24sIHBvc3RmbGV4aW9uLCBvciB0cmFuc2Zvcm1hdGlvbikgb2Ygc2VsZWN0ZWQgZmlzaCBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZSAoVG93IFR5cGUgTmFtZSlcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX3N0YWdlXG5sYXJ2YWVfc3RhZ2VfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUgaW4gdGhlIHN0YWdlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgaW4gdGhlIHN0YWdlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgaW4gdGhlIHN0YWdlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydnN0Z19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydnN0Z19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2c3RnL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZzdGcucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZzdGcmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2c3RnIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZE5PQUFoeWRyb3Muc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZE5PQUFoeWRyb3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkTk9BQWh5ZHJvcy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIE5PQUFIeWRyb3MiLCAiSHlkcm9ncmFwaGljIGRhdGEgY29sbGVjdGVkIGJ5IGJ1Y2tldCwgQ1RELCBvciAxMC1tIE5pc2tpbiBib3R0bGUgYXMgcGFydCBvZiBDYWxDT0ZJIGFuZCByZWxhdGVkIGNydWlzZXMuIE5vdGUgdGhhdCBtb3N0IG94eWdlbiBhbmQgc2FsaW5pdHkgdmFsdWVzIGluIHRoaXMgdGFibGUgaGF2ZSBub3QgYmVlbiBjYWxpYnJhdGVkIHdpdGggd2F0ZXIgc2FtcGxlcy4gTW9zdCB1c2VycyB3aWxsIHdhbnQgdG8gdXNlIHRoZSBTY3JpcHBzIGh5ZHJvZ3JhcGhpYyBkYXRhIGluc3RlYWQuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRpbWUgKEVzdGltYXRlZCBkYXRldGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmNhc3RfdHlwZVxuc3RhbmRhcmRfZGVwdGggKG1ldGVycylcbnRlbXBlcmF0dXJlIChXYXRlciBUZW1wZXJhdHVyZSwgZGVncmVlIEMpXG5zYWxpbml0eSAocHN1KVxuZGVuc2l0eSAoV2F0ZXIgRGVuc2l0eSwgMTAwMCooZy9sIC0gMSkpXG5veHlnZW4gKERpc3NvbHZlZCBPeHlnZW4gQ29udGVudCwgbWwvbClcbmR5bmFtaWNfaGVpZ2h0IChkeW5hbWljIG1ldGVyKVxucGVyY2VudF9zYXR1cmF0aW9uIChQZXJjZW50IE94eWdlbiBzYXR1cmF0aW9uLCAlKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmROT0FBaHlkcm9zX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmROT0FBaHlkcm9zX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZE5PQUFoeWRyb3MvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkTk9BQWh5ZHJvcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkTk9BQWh5ZHJvcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZE5PQUFoeWRyb3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2lvY2FsY29maUh5ZHJvQm90dGxlLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9zaW9jYWxjb2ZpSHlkcm9Cb3R0bGUiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2lvY2FsY29maUh5ZHJvQm90dGxlLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgU0lPIEh5ZHJvZ3JhcGhpYyBCb3R0bGUgRGF0YSIsICJTSU8gSHlkcm9ncmFwaGljIGRhdGFcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jc3RfY250IChDYXN0IENvdW50KVxuYnRsX2NudCAoQm90dGxlIENvdW50KVxuc3RhX2lkIChMaW5lIGFuZCBTdGF0aW9uKVxuZGVwdGhfaWQgKEJvdHRsZSBJZGVudGlmaWVyKVxuZGVwdGhtIChCb3R0bGUgRGVwdGgsIG1ldGVycylcbnRfZGVnYyAoVGVtcGVyYXR1cmUsIGRlZ3JlZSBDKVxuc2FsaW5pdHkgKHBzdSlcbm8ybWxfbCAoTWVhc3VyZWQgT3h5Z2VuLCBtbC9MIG9mIHNlYXdhdGVyKVxuc3RoZXRhIChQb3RlbnRpYWwgRGVuc2l0eSBvZiB3YXRlcilcbmJ0bG51bSAoQm90dGxlIE51bWJlcilcbnJlY2luZCAoRGF0YSBEZXNjcmlwdG9yIENvZGUpXG50X3ByZWMgKFRlbXBlcmF0dXJlIFByZWNpc2lvbilcbnRfcXVhbCAoVGVtcGVyYXR1cmUgUXVhbGl0eSlcbnNfcHJlYyAoU2FsaW5pdHkgUHJlY2lzaW9uKVxuc19xdWFsIChTYWxpbml0eSBRdWFsaXR5KVxucF9xdWFsIChQcmVzc3VyZSBRdWFsaXR5KVxub19xdWFsIChPeHlnZW4gUHJlY2lzaW9uKVxuc3RodGFxIChQb3RlbnRpYWwgRGVuc2l0eSBRdWFsaXR5KVxubzJzYXRxIChPeHlnZW4gc2F0dXJhdGlvbiBRdWFsaXR5KVxuY2hsb3JhIChDaGxvcm9waHlsbC1hLCB1Zy9MIG9mIHNlYXdhdGVyKVxuY2hscXVhIChDaGxvcm9waHlsbC1hIHF1YWxpdHkpXG5waGFlb3AgKFBoYWVvcGlnbWVudCBDb25jZW50cmF0aW9uLCB1Zy9MIG9mIHNlYXdhdGVyKVxucGhhcXVhIChQaGFlb3BpZ21lbnRzIHF1YWxpdHkpXG5wbzR1ZyAoTWVhc3VyZWQgUGhvc3BoYXRlIENvbmNlbnRyYXRpb24sIHVNL0wgb2Ygc2Vhd2F0ZXIpXG5wbzRxIChQaG9zcGhhdGUgcXVhbGl0eSlcbnNpbzN1ZyAoTWVhc3VyZWQgU2lsaWNhdGUgY29uY2VudHJhdGlvbiwgdU0vTCBvZiBzZWF3YXRlcilcbnNpbzNxdSAoU2lsaWNhdGUgcXVhbGl0eSlcbi4uLiAoMzMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2lvY2FsY29maUh5ZHJvQm90dGxlX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9zaW9jYWxjb2ZpSHlkcm9Cb3R0bGVfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vc2lvY2FsY29maUh5ZHJvQm90dGxlL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9jYWxjb2ZpLm9yZy9jY2RhdGEvZGF0YS1mb3JtYXRzLzc3LWRhdGFiYXNlLXRhYmxlcy5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3Npb2NhbGNvZmlIeWRyb0JvdHRsZS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9c2lvY2FsY29maUh5ZHJvQm90dGxlJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlVDU0QgU0lPIiwgInNpb2NhbGNvZmlIeWRyb0JvdHRsZSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9zaW9jYWxjb2ZpSHlkcm9Cb3R0bGVSZXBvcnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3Npb2NhbGNvZmlIeWRyb0JvdHRsZVJlcG9ydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9zaW9jYWxjb2ZpSHlkcm9Cb3R0bGVSZXBvcnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBTSU8gSHlkcm9ncmFwaGljIEJvdHRsZSBSZXBvcnQgZGF0YSIsICJTSU8gSHlkcm9ncmFwaGljIGRhdGFcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jc3RfY250IChDYXN0IENvdW50KVxuYnRsX2NudCAoQm90dGxlIENvdW50KVxuc3RhX2lkIChMaW5lIGFuZCBTdGF0aW9uKVxuZGVwdGhfaWQgKEJvdHRsZSBJZGVudGlmaWVyKVxucl9kZXB0aCAoUmVwb3J0ZWQgQm90dGxlIERlcHRoLCBtZXRlcnMpXG5yX3RlbXAgKFJlcG9ydGVkIFRlbXBlcmF0dXJlLCBkZWdyZWUgQylcbnJfcG90ZW1wIChSZXBvcnRlZCBQb3RlbnRpYWwgVGVtcGVyYXR1cmUsIGRlZ3JlZSBDKVxucl9zYWxpbml0eSAoUmVwb3J0ZWQgU2FsaW5pdHksIHBzdSlcbnJfc2lnbWEgKFJlcG9ydGVkIFBvdGVudGlhbCBEZW5zaXR5IG9mIHdhdGVyKVxucl9zdmEgKFJlcG9ydGVkIFNwZWNpZmljIFZvbHVtZSBBbm9tYWx5LCBkZWdyZWUgQylcbnJfZHluaHQgKFJlcG9ydGVkIER5bmFtaWMgSGVpZ2h0LCBkeW5hbWljIG1ldGVycylcbnJfbzIgKFJlcG9ydGVkIE94eWdlbiwgbWwvTCBvZiBzZWF3YXRlcilcbnJfbzJzYXQgKFJlcG9ydGVkIE94eWdlbiBTYXR1cmF0aW9uLCAlKVxucl9zaW8zIChSZXBvcnRlZCBTaWxpY2F0ZSBDb25jZW50cmF0aW9uLCB1TS9MIG9mIHNlYXdhdGVyKVxucl9wbzQgKFJlcG9ydGVkIFBob3NwaGF0ZSBDb25jZW50cmF0aW9uLCB1TS9MIG9mIHNlYXdhdGVyKVxucl9ubzMgKFJlcG9ydGVkIE5pdHJhdGUgQ29uY2VudHJhdGlvbiwgdU0vTCBvZiBzZWF3YXRlcilcbnJfbm8yIChSZXBvcnRlZCBOaXRyaXRlIENvbmNlbnRyYXRpb24sIHVNL0wgb2Ygc2Vhd2F0ZXIpXG5yX2NobGEgKFJlcG9ydGVkIENobG9yb3BoeWxsLWEsIHVnL0wgb2Ygc2Vhd2F0ZXIpXG5yX3BoYWVvIChSZXBvcnRlZCBQaGFlb3BoeXRpbiwgdWcvTCBvZiBzZWF3YXRlcilcbnJfcHJlcyAoUmVwb3J0ZWQgUHJlc3N1cmUsIGRiKVxucl9zYW1wIChTYW1wbGUgTnVtYmVyKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2lvY2FsY29maUh5ZHJvQm90dGxlUmVwb3J0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9zaW9jYWxjb2ZpSHlkcm9Cb3R0bGVSZXBvcnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vc2lvY2FsY29maUh5ZHJvQm90dGxlUmVwb3J0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9jYWxjb2ZpLm9yZy9jY2RhdGEvZGF0YS1mb3JtYXRzLzc3LWRhdGFiYXNlLXRhYmxlcy5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3Npb2NhbGNvZmlIeWRyb0JvdHRsZVJlcG9ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9c2lvY2FsY29maUh5ZHJvQm90dGxlUmVwb3J0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlVDU0QgU0lPIiwgInNpb2NhbGNvZmlIeWRyb0JvdHRsZVJlcG9ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9zaW9jYWxjb2ZpSHlkcm9DYXN0cy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2lvY2FsY29maUh5ZHJvQ2FzdHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2lvY2FsY29maUh5ZHJvQ2FzdHMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBTSU8gSHlkcm9ncmFwaGljIENhc3QgRGF0YSIsICJTSU8gSHlkcm9ncmFwaGljIGRhdGFcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jc3RfY250IChDYXN0IENvdW50KVxuY3J1aXNlX2lkXG5jcnV6X3N0YSAoQ3J1aXNlIElkKVxuZGJzdGFfaWQgKENhbENPRkkgTGluZSBhbmQgU3RhdGlvbilcbmNhc3RfaWRcbnN0YV9pZCAoTGluZSBhbmQgU3RhdGlvbilcbnF1YXJ0ZXIgKFF1YXJ0ZXIgb2YgWWVhcilcbnN0YV9jb2RlIChTdGF0aW9uIFR5cGUpXG5kaXN0YW5jZSAoRGlzdGFuY2UgZnJvbSBzaG9yZSlcbmRhdGVcbnllYXJcbm1vbnRoXG5qdWxpYW5fZGF0ZVxuanVsaWFuX2RheVxudGltZV9hc2NpaSAoVGltZSBvZiBDYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sYXRpdHVkZV9kZWdyZWVzXG5sYXRpdHVkZV9taW51dGVzXG5sYXRpdHVkZV9oZW1pc3BoZXJlXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxvbmdpdHVkZV9kZWdyZWVzXG5sb25naXR1ZGVfbWludXRlc1xubG9uZ2l0dWRlX2hlbWlzcGhlcmVcbnJwdF9saW5lIChSZXBvcnRlZCBMaW5lIE51bWJlcilcbnN0X2xpbmUgKE5vbWluYWwgQ2FsQ09GSSBMaW5lKVxuYWNfbGluZSAoQWN0dWFsIExpbmUgTnVtYmVyKVxucnB0X3N0YSAoUmVwb3J0ZWQgU3RhdGlvbilcbi4uLiAoMzQgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2lvY2FsY29maUh5ZHJvQ2FzdHNfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3Npb2NhbGNvZmlIeWRyb0Nhc3RzX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3Npb2NhbGNvZmlIeWRyb0Nhc3RzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9jYWxjb2ZpLm9yZy9jY2RhdGEvZGF0YS1mb3JtYXRzLzc3LWRhdGFiYXNlLXRhYmxlcy5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3Npb2NhbGNvZmlIeWRyb0Nhc3RzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1zaW9jYWxjb2ZpSHlkcm9DYXN0cyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJVQ1NEIFNJTyIsICJzaW9jYWxjb2ZpSHlkcm9DYXN0cyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJc3Rucy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSXN0bnMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSXN0bnMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBTdGF0aW9ucyIsICJTdW1tYXJ5IGluZm9ybWF0aW9uIGFib3V0IHNhbXBsZSBsb2NhdGlvbnMgZm9yIE5PQUEgQ2FsQ09GSSBhbmQgcmVsYXRlZCBjcnVpc2VzLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmJvdHRvbV9kZXB0aCAoZmF0aG9tcylcbnJlbWFya3NcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJc3Ruc19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSXN0bnNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSXN0bnMvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSXN0bnMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklzdG5zJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSXN0bnMiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSXRvd3R5cC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSXRvd3R5cCIsICIiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBUb3cgVHlwZXMiLCAiRGVzY3JpcHRpb24gb2YgZWFjaCBDYWxDT0ZJIG5ldCB0eXBlIGFuZCBpdHMgYXNzb2NpYXRlZCBhYmJyZXZpYXRpb24gaW4gdGhlIENhbENPRkkgZGF0YWJhc2UuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxubmV0X3R5cGVcbmxvbmdfbmV0X3R5cGVcbmRlc2NyaXB0aW9uXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRkl0b3d0eXAvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSXRvd3R5cC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSXRvd3R5cCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRkl0b3d0eXAiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSXRvd3Muc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkl0b3dzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkl0b3dzLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgVG93cyIsICJMb2NhdGlvbiwgcGVyZm9ybWFuY2UsIGFuZCBzdW1tYXJ5IGluZm9ybWF0aW9uIGFib3V0IGluZGl2aWR1YWwgbmV0IHRvd3MuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5tZXNoX3NpemUgKE5ldCBNZXNoIFNpemUsIG1pY3JvbnMpXG50b3RhbF9lZ2dzXG5zb3J0ZWRfcGxhbmt0b25fdm9sdW1lIChtbC8xMDAwIG1eMylcbnNhbXBsZV9xdWFsaXR5XG5zbWFsbF9wbGFua3Rvbl92b2x1bWUgKG1sLzEwMDAgbV4zIG9mIHdhdGVyIHN0cmFpbmVkKVxudG90YWxfcGxhbmt0b25fdm9sdW1lIChtbC8xMDAwIG1eMyBvZiB3YXRlciBzdHJhaW5lZClcbnRvdGFsX2xhcnZhZVxuZW5kX3RpbWUgKEVuZCBUaW1lc3RhbXAsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG50b3RhbF9qdXZlbmlsZXNfb3JfYWR1bHRzIChUb3RhbCBKdXZlbmlsZS9BZHVsdHMpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRkl0b3dzX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJdG93c19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJdG93cy9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJdG93cy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSXRvd3Mmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJdG93cyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mZWRDYWxMYW5kaW5ncy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZmVkQ2FsTGFuZGluZ3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZmVkQ2FsTGFuZGluZ3MuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsaWZvcm5pYSBDb21tZXJjaWFsIEZpc2ggTGFuZGluZ3MsIDE5MzEtMTk3OCIsICJUaGUgR3JvdW5kZmlzaCBBbmFseXNpcyBUZWFtIGF0IHRoZSBTV0ZTQyBGaXNoZXJpZXMgRWNvbG9neSBEaXZpc2lvbiAoU2FudGFcbkNydXopIGNvbXBsZXRlZCB3b3JrIG9uIGEgQ2FsaWZvcm5pYSBjb21tZXJjaWFsIGxhbmRpbmdzIGRhdGFiYXNlLCB3aGljaFxuaW5jbHVkZXMgbGFuZGluZ3MgZnJvbSAxOTMxIHRocm91Z2ggMjAwNy4gTGFuZGluZ3MgZnJvbSAxOTMxIHRocm91Z2ggMTk2OFxud2VyZSByZWNvdmVyZWQgdXNpbmcgZnVuZHMgYW5kIHNlcnZpY2VzIHByb3ZpZGVkIGJ5IHRoZSBORVNESVMgQ2xpbWF0ZVxuRGF0YWJhc2UgTW9kZXJuaXphdGlvbiBQcm9ncmFtIChDRE1QKS4gVGhlIHJlY292ZXJlZCBkYXRhLCB3aGVuIGNvbWJpbmVkIHdpdGhcbm1vcmUgcmVjZW50IGxhbmRpbmdzIGVzdGltYXRlcyBmcm9tIHRoZSBDYWxpZm9ybmlhIENvb3BlcmF0aXZlIEdyb3VuZGZpc2hcblN1cnZleSBmcm9tIDE5NjkgdG8gMjAwNywgZm9ybXMgb25lIG9mIHRoZSBsb25nZXN0IGRldGFpbGVkIGNhdGNoIHJlY29yZHMgaW5cbnRoZSBVUy4gVGhlIDE5MzEtNjggcGVyaW9kIGluY2x1ZGVzIG1vbnRobHkgc3VtbWFyaWVzIG9mIGNhdGNoZXMgYnkgMTAtbWludXRlXG5nZW9ncmFwaGljIGJsb2Nrcy4gIFRoZXNlIGRhdGEgYXJlIG5vdyBvcGVubHkgYXZhaWxhYmxlIHRvIHRoZSBwdWJsaWMgZm9yIHVzZVxuaW4gc3RvY2sgYXNzZXNzbWVudHMgYW5kIG1vbml0b3Jpbmcgb2YgY2xpbWF0ZSBlZmZlY3RzLiBQZWFyc29uIGlzIGN1cnJlbnRseVxud29ya2luZyB3aXRoIHRoZSBDYWxpZm9ybmlhIERlcGFydG1lbnQgb2YgRmlzaCBhbmQgR2FtZSB0byBleHRlbmQgdGhlXG5nZW9ncmFwaGljIHN1bW1hcnkgaW5mb3JtYXRpb24gdG8gbW9yZSByZWNlbnQgeWVhcnMuIEFsc28sIHRoZSB0YXhhIHJlcG9ydGVkXG5pbiB0aGUgaGlzdG9yaWNhbCBkYXRhIGFyZSB0aGUgXCJtYXJrZXQgY2F0ZWdvcmllc1wiIHVzZWQgYnkgZmlzaCBwcm9jZXNzb3JzLFxuYW5kIG1heSBpbnZvbHZlIG11bHRpcGxlIHNwZWNpZXMgZ3JvdXBpbmdzLiBBIHByb2plY3QgaGFzIGJlZW4gaW5pdGlhdGVkIHRvXG5yZXNvbHZlIGhpc3RvcmljYWwgbGFuZGluZ3MgdG8gcHJvdmlkZSBiZXN0IGVzdGltYXRlcyBmb3IgaW5kaXZpZHVhbCBzcGVjaWVzLlxuXG5XaGVuIHVzaW5nIHRoaXMgZGF0YSBpdCBpcyBjcml0aWNhbCB0byB1bmRlcnN0YW5kIHRoYXQgYSBtYXJrZXQgY2F0ZWdvcnkgaXNcbk5PVCBhIHNwZWNpZXMgY29kZSAtIGl0IGlzIGEgc29ydCBncm91cC4gIFdoaWxlIGxhbmRpbmdzIGluIHNvbWUgbWFya2V0XG5jYXRlZ29yaWVzIG1heSBjb25zaXN0IGVudGlyZWx5IG9mIHRoZSBzcGVjaWVzIGZvciB3aGljaCB0aGV5IGFyZSBuYW1lZCxcbmxhbmRpbmdzIGluIG90aGVyIG1hcmtldCBjYXRlZ29yaWVzIG1heSBjb250YWluIGZldyBvZiB0aGUgc3BlY2llcyBmb3Igd2hpY2hcbnRoZXkgYXJlIG5hbWVkLlxuXG5HZW5lcmFsIE5vdGVzOlxuVGhlIGRhdGEgZnJvbSAxOTMwLTE5MzIgaGFzIGEgbG90IG9mIHVua25vd24gYmxvY2sgZGF0YS4gIFdoZW4gdGhlIHRyYXdsXG5sYW5kaW5nIGRhdGEgaXMgZW50ZXJlZCwgc29tZSBvZiB0aGlzIG1heSBiZSByZXNvbHZlZC4gIEF0IHRoZSBzYW1lIHRpbWUsXG5zb21lIGdlYXIgZGF0YSB3aWxsIGJlIGF2YWlsYWJsZS5cblxuV2hlbiBTb3VyY2UgQ29ycCBmaW5pc2hlcyBkYXRhIGVudHJ5IG9mIHRoZSBsYW5kaW5nIHJlY2VpcHQgZGF0YSwgZ2VhciBjb2RlXG5kYXRhIHdpbGwgYmUgYXZhaWxhYmxlIGZyb20gMTk1MS0xOTY4OyBob3dldmVyLCB0aGlzIHdpbGwgbm90IGJlIGNvbXBsZXRlZFxudW50aWwgYXJvdW5kIDIwMTEuXG5cbkJsb2NrIE1hcHM6IGh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvUGFDT09TL21rdF9jYXRjaC9jYV9sYW5kaW5nc19pbmZvLmh0bWxcbkRhdGEgU291cmNlOiBDYWxpZm9ybmlhIERlcGFydG1lbnQgb2YgRmlzaCAmIEdhbWUuXG5EYXRhIEFzc2VtYmx5OiBOT0FBIFNXRlNDIEZFRDsgQ29udGFjdDogRG9uLlBlYXJzb25Abm9hYS5nb3ZcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG5tYXJrZXRfY2F0ZWdvcnlcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZlZENhbExhbmRpbmdzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9QYUNPT1MvbWt0X2NhdGNoIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZlZENhbExhbmRpbmdzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mZWRDYWxMYW5kaW5ncyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIEZFRCIsICJmZWRDYWxMYW5kaW5ncyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDQU1hckNhdExNLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDQU1hckNhdExNIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENBTWFyQ2F0TE0uZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsaWZvcm5pYSBGaXNoIE1hcmtldCBDYXRjaCBMYW5kaW5ncywgTG9uZyBMaXN0LCAxOTI4LTIwMDIsIE1vbnRobHkiLCAiRGF0YWJhc2Ugb2YgZmlzaCBhbmQgaW52ZXJ0ZWJyYXRlcyBjYXVnaHQgb2ZmIENhbGlmb3JuaWEgYW5kIGxhbmRlZCBpbiBDYWxpZm9ybmlhLCBpbmNsdWRpbmcgY29tbWVyY2lhbCBmcmVzaHdhdGVyIGNhdGNoZXMgaW4gQ2FsaWZvcm5pYSB0aHJvdWdoIGJ1dCBub3QgYWZ0ZXIgMTk3MSBhbmQgc29tZSBtYXJpY3VsdHVyZWQgc2hlbGxmaXNoIHN1Y2ggYXMgb3lzdGVycyB0aHJvdWdoIDE5ODAuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L2xhc19maXNoMS9kb2MvbmFtZXNfZGVzY3JpYmUuaHRtbCBhbmRcbmh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvbGFzX2Zpc2gxL2RvYy9tYXJrZXRsaXN0Lmh0bWwgLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG55ZWFyXG5maXNoIChGaXNoIE5hbWUpXG5wb3J0XG5sYW5kaW5ncyAocG91bmRzKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDQU1hckNhdExNL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9sYXNfZmlzaDEvZG9jL25hbWVzX2Rlc2NyaWJlLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ0FNYXJDYXRMTS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ0FNYXJDYXRMTSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJDQSBERkcsIE5PQUEgRVJEIiwgImVyZENBTWFyQ2F0TE0iXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ0FNYXJDYXRMWS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ0FNYXJDYXRMWSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDQU1hckNhdExZLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbGlmb3JuaWEgRmlzaCBNYXJrZXQgQ2F0Y2ggTGFuZGluZ3MsIExvbmcgTGlzdCwgMTkyOC0yMDAyLCBZZWFybHkiLCAiRGF0YWJhc2Ugb2YgZmlzaCBhbmQgaW52ZXJ0ZWJyYXRlcyBjYXVnaHQgb2ZmIENhbGlmb3JuaWEgYW5kIGxhbmRlZCBpbiBDYWxpZm9ybmlhLCBpbmNsdWRpbmcgY29tbWVyY2lhbCBmcmVzaHdhdGVyIGNhdGNoZXMgaW4gQ2FsaWZvcm5pYSB0aHJvdWdoIGJ1dCBub3QgYWZ0ZXIgMTk3MSBhbmQgc29tZSBtYXJpY3VsdHVyZWQgc2hlbGxmaXNoIHN1Y2ggYXMgb3lzdGVycyB0aHJvdWdoIDE5ODAuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L2xhc19maXNoMS9kb2MvbmFtZXNfZGVzY3JpYmUuaHRtbCBhbmRcbmh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvbGFzX2Zpc2gxL2RvYy9tYXJrZXRsaXN0Lmh0bWwgLlxuXG5UaGlzIGRhdGFzZXQgaGFzIHRoZSBzdW1zIG9mIHRoZSBtb250aGx5IHZhbHVlcyBmb3IgZWFjaCBjYWxlbmRhciB5ZWFyLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG55ZWFyXG5maXNoIChGaXNoIE5hbWUpXG5wb3J0XG5sYW5kaW5ncyAocG91bmRzKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDQU1hckNhdExZL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9sYXNfZmlzaDEvZG9jL25hbWVzX2Rlc2NyaWJlLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ0FNYXJDYXRMWS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ0FNYXJDYXRMWSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJDQSBERkcsIE5PQUEgRVJEIiwgImVyZENBTWFyQ2F0TFkiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ0FNYXJDYXRTTS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ0FNYXJDYXRTTSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDQU1hckNhdFNNLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbGlmb3JuaWEgRmlzaCBNYXJrZXQgQ2F0Y2ggTGFuZGluZ3MsIFNob3J0IExpc3QsIDE5MjgtMjAwMiwgTW9udGhseSIsICJEYXRhYmFzZSBvZiBmaXNoIGFuZCBpbnZlcnRlYnJhdGVzIGNhdWdodCBvZmYgQ2FsaWZvcm5pYSBhbmQgbGFuZGVkIGluIENhbGlmb3JuaWEsIGluY2x1ZGluZyBjb21tZXJjaWFsIGZyZXNod2F0ZXIgY2F0Y2hlcyBpbiBDYWxpZm9ybmlhIHRocm91Z2ggYnV0IG5vdCBhZnRlciAxOTcxIGFuZCBzb21lIG1hcmljdWx0dXJlZCBzaGVsbGZpc2ggc3VjaCBhcyBveXN0ZXJzIHRocm91Z2ggMTk4MC4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvbGFzX2Zpc2gxL2RvYy9uYW1lc19kZXNjcmliZS5odG1sIGFuZFxuaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9sYXNfZmlzaDEvZG9jL21hcmtldGxpc3QuaHRtbCAuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnllYXJcbmZpc2ggKEZpc2ggTmFtZSlcbnBvcnRcbmxhbmRpbmdzIChwb3VuZHMpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENBTWFyQ2F0U00vaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L2xhc19maXNoMS9kb2MvbmFtZXNfZGVzY3JpYmUuaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDQU1hckNhdFNNLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDQU1hckNhdFNNJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkNBIERGRywgTk9BQSBFUkQiLCAiZXJkQ0FNYXJDYXRTTSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDQU1hckNhdFNZLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDQU1hckNhdFNZIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENBTWFyQ2F0U1kuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsaWZvcm5pYSBGaXNoIE1hcmtldCBDYXRjaCBMYW5kaW5ncywgU2hvcnQgTGlzdCwgMTkyOC0yMDAyLCBZZWFybHkiLCAiRGF0YWJhc2Ugb2YgZmlzaCBhbmQgaW52ZXJ0ZWJyYXRlcyBjYXVnaHQgb2ZmIENhbGlmb3JuaWEgYW5kIGxhbmRlZCBpbiBDYWxpZm9ybmlhLCBpbmNsdWRpbmcgY29tbWVyY2lhbCBmcmVzaHdhdGVyIGNhdGNoZXMgaW4gQ2FsaWZvcm5pYSB0aHJvdWdoIGJ1dCBub3QgYWZ0ZXIgMTk3MSBhbmQgc29tZSBtYXJpY3VsdHVyZWQgc2hlbGxmaXNoIHN1Y2ggYXMgb3lzdGVycyB0aHJvdWdoIDE5ODAuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L2xhc19maXNoMS9kb2MvbmFtZXNfZGVzY3JpYmUuaHRtbCBhbmRcbmh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvbGFzX2Zpc2gxL2RvYy9tYXJrZXRsaXN0Lmh0bWwgLlxuXG5UaGlzIGRhdGFzZXQgaGFzIHRoZSBzdW1zIG9mIHRoZSBtb250aGx5IHZhbHVlcyBmb3IgZWFjaCBjYWxlbmRhciB5ZWFyLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG55ZWFyXG5maXNoIChGaXNoIE5hbWUpXG5wb3J0XG5sYW5kaW5ncyAocG91bmRzKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDQU1hckNhdFNZL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9sYXNfZmlzaDEvZG9jL25hbWVzX2Rlc2NyaWJlLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ0FNYXJDYXRTWS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ0FNYXJDYXRTWSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJDQSBERkcsIE5PQUEgRVJEIiwgImVyZENBTWFyQ2F0U1kiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2lucEtmbVQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENpbnBLZm1UIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENpbnBLZm1ULmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNoYW5uZWwgSXNsYW5kcywgS2VscCBGb3Jlc3QgTW9uaXRvcmluZywgU2VhIFRlbXBlcmF0dXJlLCAxOTkzLTIwMDciLCAiVGhpcyBkYXRhc2V0IGZyb20gdGhlIENoYW5uZWwgSXNsYW5kcyBOYXRpb25hbCBQYXJrJ3MgS2VscCBGb3Jlc3QgTW9uaXRvcmluZyBQcm9ncmFtIGhhcyBzdWJ0aWRhbCB0ZW1wZXJhdHVyZSBkYXRhIHRha2VuIGF0IHBlcm1hbmVudCBtb25pdG9yaW5nIHNpdGVzLiAgU2luY2UgMTk5MywgcmVtb3RlIHRlbXBlcmF0dXJlIGxvZ2dlcnMgbWFudWZhY3R1cmVkIGJ5IE9uc2V0IENvbXB1dGVyIENvcnBvcmF0aW9uIHdlcmUgZGVwbG95ZWQgYXQgZWFjaCBzaXRlIGFwcHJveGltYXRlbHkgMTAtMjAgY20gZnJvbSB0aGUgYm90dG9tIGluIGEgdW5kZXJ3YXRlciBob3VzaW5nLiAgU2luY2UgMTk5MywgdGhyZWUgbW9kZWxzIG9mIHRlbXBlcmF0dXJlIGxvZ2dlcnMgKEhvYm9UZW1wICh0bSksIFN0b3dBd2F5IChSKSBhbmQgVGlkYml0KFIpKSB3ZXJlIHVzZWQgdG8gY29sbGVjdCB0ZW1wZXJhdHVyZSBkYXRhIGV2ZXJ5IDEtNSBob3VycyBkZXBlbmRpbmcgb24gdGhlIG1vZGVsIHVzZWQuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5zdGF0aW9uXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxuZGVwdGggKG0pXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxudGVtcGVyYXR1cmUgKFNlYSBXYXRlciBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2lucEtmbVRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENpbnBLZm1UX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENpbnBLZm1UL2luZGV4Lmpzb24iLCAiaHR0cDovL3d3dy5ucHMuZ292L2NoaXMvbmF0dXJlc2NpZW5jZS9pbmRleC5odG0iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2lucEtmbVQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENpbnBLZm1UJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkNJTlAiLCAiZXJkQ2lucEtmbVQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2lucEtmbVNGTkguc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENpbnBLZm1TRk5IIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENpbnBLZm1TRk5ILmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNoYW5uZWwgSXNsYW5kcywgS2VscCBGb3Jlc3QgTW9uaXRvcmluZywgU2l6ZSBhbmQgRnJlcXVlbmN5LCBOYXR1cmFsIEhhYml0YXQsIDE5ODUtMjAwNyIsICJUaGlzIGRhdGFzZXQgaGFzIG1lYXN1cmVtZW50cyBvZiB0aGUgc2l6ZSBvZiBzZWxlY3RlZCBhbmltYWwgc3BlY2llcyBhdCBzZWxlY3RlZCBsb2NhdGlvbnMgaW4gdGhlIENoYW5uZWwgSXNsYW5kcyBOYXRpb25hbCBQYXJrLiBTYW1wbGluZyBpcyBjb25kdWN0ZWQgYW5udWFsbHkgYmV0d2VlbiB0aGUgbW9udGhzIG9mIE1heS1PY3RvYmVyLCBzbyB0aGUgVGltZSBkYXRhIGluIHRoaXMgZmlsZSBpcyBKdWx5IDEgb2YgZWFjaCB5ZWFyIChhIG5vbWluYWwgdmFsdWUpLiBUaGUgc2l6ZSBmcmVxdWVuY3kgbWVhc3VyZW1lbnRzIHdlcmUgdGFrZW4gd2l0aGluIDEwIG1ldGVycyBvZiB0aGUgdHJhbnNlY3QgbGluZSBhdCBlYWNoIHNpdGUuICBEZXB0aHMgYXQgdGhlIHNpdGUgdmFyeSBzb21lLCBidXQgd2UgZGVzY3JpYmUgdGhlIGRlcHRoIG9mIHRoZSBzaXRlIGFsb25nIHRoZSB0cmFuc2VjdCBsaW5lIHdoZXJlIHRoYXQgc3RhdGlvbidzIHRlbXBlcmF0dXJlIGxvZ2dlciBpcyBsb2NhdGVkLCBhIHR5cGljYWwgZGVwdGggZm9yIHRoZSBzaXRlLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuaWQgKFN0YXRpb24gSWRlbnRpZmllcilcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5kZXB0aCAobSlcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5jb21tb25fbmFtZVxuc3BlY2llc19uYW1lXG5zaXplIChtbSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDaW5wS2ZtU0ZOSF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2lucEtmbVNGTkhfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2lucEtmbVNGTkgvaW5kZXguanNvbiIsICJodHRwOi8vd3d3Lm5wcy5nb3YvY2hpcy9uYXR1cmVzY2llbmNlL2luZGV4Lmh0bSIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDaW5wS2ZtU0ZOSC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2lucEtmbVNGTkgmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQ0lOUCIsICJlcmRDaW5wS2ZtU0ZOSCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDaW5wS2ZtMVEuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENpbnBLZm0xUSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDaW5wS2ZtMVEuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2hhbm5lbCBJc2xhbmRzLCBLZWxwIEZvcmVzdCBNb25pdG9yaW5nLCBTdXJ2ZXksIDFtIFF1YWRyYXQsIDE5ODItMjAwNyIsICJUaGlzIGRhdGFzZXQgZnJvbSB0aGUgQ2hhbm5lbCBJc2xhbmRzIE5hdGlvbmFsIFBhcmsncyBLZWxwIEZvcmVzdCBNb25pdG9yaW5nIFByb2dyYW0gaGFzIG1lYXN1cmVtZW50cyBvZiB0aGUgYWJ1bmRhbmNlIChkZW5zaXR5KSBvZiByZWxhdGl2ZWx5IGFidW5kYW50IHNlbGVjdGVkIHNlZGVudGFyeSBpbmRpY2F0b3Igc3BlY2llcy4gIFRoZSBzdW1tYXJ5IGRhdGEgcHJlc2VudGVkIGhlcmUgcmVwcmVzZW50cyB0aGUgbWVhbiBkZW5zaXR5IHBlciBzcXVhcmUgbWV0ZXIuIFNhbXBsaW5nIGlzIGNvbmR1Y3RlZCBhbm51YWxseSBiZXR3ZWVuIHRoZSBtb250aHMgb2YgTWF5LU9jdG9iZXIsIHNvIHRoZSBUaW1lIGRhdGEgaW4gdGhpcyBmaWxlIGlzIEp1bHkgMSBvZiBlYWNoIHllYXIgKGEgbm9taW5hbCB2YWx1ZSkuIFRoZSBhY3R1YWwgbWVhc3VyZW1lbnRzIHdlcmUgdGFrZW4gYXQgdmFyaW91cyBkZXB0aHMsIHNvIHRoZSBEZXB0aCBkYXRhIGluIHRoaXMgZmlsZSBpcyB0aGUgZGVwdGggb2YgdGhlIHN0YXRpb24ncyB0ZW1wZXJhdHVyZSBsb2dnZXIsIHdoaWNoIGlzIGEgdHlwaWNhbCBkZXB0aC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb25cbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5kZXB0aCAobSlcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5BZ2FydW1fZmltYnJpYXR1bV9hZHVsdF9NZWFuX0RlbnNpdHkgKG0tMilcbkFnYXJ1bV9maW1icmlhdHVtX2FkdWx0X1N0ZERldlxuQWdhcnVtX2ZpbWJyaWF0dW1fYWR1bHRfU3RkRXJyXG5BZ2FydW1fZmltYnJpYXR1bV9qdXZlbmlsZV9NZWFuX0RlbnNpdHkgKG0tMilcbkFnYXJ1bV9maW1icmlhdHVtX2p1dmVuaWxlX1N0ZERldlxuQWdhcnVtX2ZpbWJyaWF0dW1fanV2ZW5pbGVfU3RkRXJyXG5BbGxvY2xpbnVzX2hvbGRlcmlfTWVhbl9EZW5zaXR5IChtLTIpXG5BbGxvY2xpbnVzX2hvbGRlcmlfU3RkRGV2XG5BbGxvY2xpbnVzX2hvbGRlcmlfU3RkRXJyXG5BcGx5c2lhX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSAobS0yKVxuQXBseXNpYV9jYWxpZm9ybmljYV9TdGREZXZcbkFwbHlzaWFfY2FsaWZvcm5pY2FfU3RkRXJyXG5Bc3RlcmluYV9taW5pYXRhX01lYW5fRGVuc2l0eSAobS0yKVxuQXN0ZXJpbmFfbWluaWF0YV9TdGREZXZcbkFzdGVyaW5hX21pbmlhdGFfU3RkRXJyXG5DZW50cm9zdGVwaGFudXNfY29yb25hdHVzX01lYW5fRGVuc2l0eSAobS0yKVxuQ2VudHJvc3RlcGhhbnVzX2Nvcm9uYXR1c19TdGREZXZcbi4uLiAoOTEgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2lucEtmbTFRX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDaW5wS2ZtMVFfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2lucEtmbTFRL2luZGV4Lmpzb24iLCAiaHR0cDovL3d3dy5ucHMuZ292L2NoaXMvbmF0dXJlc2NpZW5jZS9pbmRleC5odG0iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2lucEtmbTFRLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDaW5wS2ZtMVEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQ0lOUCIsICJlcmRDaW5wS2ZtMVEiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2lucEtmbTVRLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDaW5wS2ZtNVEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2lucEtmbTVRLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNoYW5uZWwgSXNsYW5kcywgS2VscCBGb3Jlc3QgTW9uaXRvcmluZywgU3VydmV5LCA1bSBRdWFkcmF0LCAxOTk2LTIwMDciLCAiVGhpcyBkYXRhc2V0IGZyb20gdGhlIENoYW5uZWwgSXNsYW5kcyBOYXRpb25hbCBQYXJrJ3MgS2VscCBGb3Jlc3QgTW9uaXRvcmluZyBQcm9ncmFtIGhhcyBtZWFzdXJlbWVudHMgb2YgdGhlIGFidW5kYW5jZSBvZiBzZWxlY3RlZCByYXJlLCBjbHVtcGVkLCBzZWRlbnRhcnkgaW5kaWNhdG9yIHNwZWNpZXMuIFRoZSBzdW1tYXJ5IGRhdGEgcHJlc2VudGVkIGhlcmUgcmVwcmVzZW50cyB0aGUgbWVhbiBkZW5zaXR5IHBlciBzcXVhcmUgbWV0ZXIuIFNhbXBsaW5nIGlzIGNvbmR1Y3RlZCBhbm51YWxseSBiZXR3ZWVuIHRoZSBtb250aHMgb2YgTWF5LU9jdG9iZXIsIHNvIHRoZSBUaW1lIGRhdGEgaW4gdGhpcyBmaWxlIGlzIEp1bHkgMSBvZiBlYWNoIHllYXIgKGEgbm9taW5hbCB2YWx1ZSkuIFRoZSBvcmlnaW5hbCBtZWFzdXJlbWVudHMgd2VyZSB0YWtlbiBhdCB2YXJpb3VzIGRlcHRocywgc28gdGhlIERlcHRoIGRhdGEgaW4gdGhpcyBmaWxlIGlzIHRoZSBkZXB0aCBvZiB0aGUgc3RhdGlvbidzIHRlbXBlcmF0dXJlIGxvZ2dlciwgd2hpY2ggaXMgYSB0eXBpY2FsIGRlcHRoLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvblxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmRlcHRoIChtKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbk1hY3JvY3lzdGlzX3B5cmlmZXJhX0FkdWx0X01lYW5fRGVuc2l0eSAobS0yKVxuTWFjcm9jeXN0aXNfcHlyaWZlcmFfQWR1bHRfU3RkRGV2XG5NYWNyb2N5c3Rpc19weXJpZmVyYV9BZHVsdF9TdGRFcnJcbk1hY3JvY3lzdGlzX3B5cmlmZXJhX1N1YmFkdWx0X01lYW5fRGVuc2l0eSAobS0yKVxuTWFjcm9jeXN0aXNfcHlyaWZlcmFfU3ViYWR1bHRfU3RkRGV2XG5NYWNyb2N5c3Rpc19weXJpZmVyYV9TdWJhZHVsdF9TdGRFcnJcblBpc2FzdGVyX2dpZ2FudGV1c19NZWFuX0RlbnNpdHkgKG0tMilcblBpc2FzdGVyX2dpZ2FudGV1c19TdGREZXZcblBpc2FzdGVyX2dpZ2FudGV1c19TdGRFcnJcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDaW5wS2ZtNVFfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENpbnBLZm01UV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDaW5wS2ZtNVEvaW5kZXguanNvbiIsICJodHRwOi8vd3d3Lm5wcy5nb3YvY2hpcy9uYXR1cmVzY2llbmNlL2luZGV4Lmh0bSIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDaW5wS2ZtNVEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENpbnBLZm01USZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJDSU5QIiwgImVyZENpbnBLZm01USJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDaW5wS2ZtQlQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENpbnBLZm1CVCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDaW5wS2ZtQlQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2hhbm5lbCBJc2xhbmRzLCBLZWxwIEZvcmVzdCBNb25pdG9yaW5nLCBTdXJ2ZXksIEJhbmQgVHJhbnNlY3QsIDE5ODMtMjAwNyIsICJUaGlzIGRhdGFzZXQgZnJvbSB0aGUgQ2hhbm5lbCBJc2xhbmRzIE5hdGlvbmFsIFBhcmsncyBLZWxwIEZvcmVzdCBNb25pdG9yaW5nIFByb2dyYW0gaGFzIG1lYXN1cmVtZW50cyBvZiB0aGUgYWJ1bmRhbmNlIGFuZCBkaXN0cmlidXRpb24gb2YgcmFyZSBhbmQgY2x1bXBlZCBvcmdhbmlzbXMgbm90IGFkZXF1YXRlbHkgc2FtcGxlZCBieSBxdWFkcmF0cy4gVGhlIHN1bW1hcnkgZGF0YSBwcmVzZW50ZWQgaGVyZSByZXByZXNlbnRzIHRoZSBtZWFuIGRlbnNpdHkgcGVyIHNxdWFyZSBtZXRlci4gU2FtcGxpbmcgaXMgY29uZHVjdGVkIGFubnVhbGx5IGJldHdlZW4gdGhlIG1vbnRocyBvZiBNYXktT2N0b2Jlciwgc28gdGhlIFRpbWUgZGF0YSBpbiB0aGlzIGZpbGUgaXMgSnVseSAxIG9mIGVhY2ggeWVhciAoYSBub21pbmFsIHZhbHVlKS4gVGhlIGFjdHVhbCBtZWFzdXJlbWVudHMgd2VyZSB0YWtlbiBhdCB2YXJpb3VzIGRlcHRocywgc28gdGhlIERlcHRoIGRhdGEgaW4gdGhpcyBmaWxlIGlzIHRoZSBkZXB0aCBvZiB0aGUgc3RhdGlvbidzIHRlbXBlcmF0dXJlIGxvZ2dlciwgd2hpY2ggaXMgYSB0eXBpY2FsIGRlcHRoLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvblxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmRlcHRoIChtKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbkFwbHlzaWFfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IChtLTIpXG5BcGx5c2lhX2NhbGlmb3JuaWNhX1N0ZERldlxuQXBseXNpYV9jYWxpZm9ybmljYV9TdGRFcnJcbkNyYXNzZWRvbWFfZ2lnYW50ZXVtX01lYW5fRGVuc2l0eSAobS0yKVxuQ3Jhc3NlZG9tYV9naWdhbnRldW1fU3RkRGV2XG5DcmFzc2Vkb21hX2dpZ2FudGV1bV9TdGRFcnJcbkhhbGlvdGlzX2NvcnJ1Z2F0YV9NZWFuX0RlbnNpdHkgKG0tMilcbkhhbGlvdGlzX2NvcnJ1Z2F0YV9TdGREZXZcbkhhbGlvdGlzX2NvcnJ1Z2F0YV9TdGRFcnJcbkhhbGlvdGlzX2Z1bGdlbnNfTWVhbl9EZW5zaXR5IChtLTIpXG5IYWxpb3Rpc19mdWxnZW5zX1N0ZERldlxuSGFsaW90aXNfZnVsZ2Vuc19TdGRFcnJcbkhhbGlvdGlzX3J1ZmVzY2Vuc19NZWFuX0RlbnNpdHkgKG0tMilcbkhhbGlvdGlzX3J1ZmVzY2Vuc19TdGREZXZcbkhhbGlvdGlzX3J1ZmVzY2Vuc19TdGRFcnJcbktlbGxldGlhX2tlbGxldGlpX01lYW5fRGVuc2l0eSAobS0yKVxuS2VsbGV0aWFfa2VsbGV0aWlfU3RkRGV2XG4uLi4gKDMxIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENpbnBLZm1CVF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2lucEtmbUJUX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENpbnBLZm1CVC9pbmRleC5qc29uIiwgImh0dHA6Ly93d3cubnBzLmdvdi9jaGlzL25hdHVyZXNjaWVuY2UvaW5kZXguaHRtIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENpbnBLZm1CVC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2lucEtmbUJUJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkNJTlAiLCAiZXJkQ2lucEtmbUJUIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENpbnBLZm1GVC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2lucEtmbUZUIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENpbnBLZm1GVC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDaGFubmVsIElzbGFuZHMsIEtlbHAgRm9yZXN0IE1vbml0b3JpbmcsIFN1cnZleSwgRmlzaCBUcmFuc2VjdCwgMTk4NS0yMDA3IiwgIlRoaXMgZGF0YXNldCBmcm9tIHRoZSBDaGFubmVsIElzbGFuZHMgTmF0aW9uYWwgUGFyaydzIEtlbHAgRm9yZXN0IE1vbml0b3JpbmcgUHJvZ3JhbSBoYXMgbWVhc3VyZW1lbnRzIG9mIHRoZSBhYnVuZGFuY2Ugb2YgZmlzaCBzcGVjaWVzLiBUaGUgb3JpZ2luYWwgbWVhc3VyZW1lbnRzIHdlcmUgdGFrZW4gYXQgdmFyaW91cyBkZXB0aHMsIHNvIHRoZSBEZXB0aCBkYXRhIGluIHRoaXMgZmlsZSBpcyB0aGUgZGVwdGggb2YgdGhlIHN0YXRpb24ncyB0ZW1wZXJhdHVyZSBsb2dnZXIsIHdoaWNoIGlzIGEgdHlwaWNhbCBkZXB0aC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb25cbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5kZXB0aCAobSlcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5DaHJvbWlzX3B1bmN0aXBpbm5pc19BZHVsdCAoTnVtYmVyIG9mIENocm9taXMgcHVuY3RpcGlubmlzIEFkdWx0LCBwZXIgMTAwbVgybVgzMG0gdHJhbnNlY3QpXG5DaHJvbWlzX3B1bmN0aXBpbm5pc19KdXZlbmlsZSAoTnVtYmVyIG9mIENocm9taXMgcHVuY3RpcGlubmlzIEp1dmVuaWxlLCBwZXIgMTAwbVgybVgzMG0gdHJhbnNlY3QpXG5EYW1hbGljaHRoeXNfdmFjY2FfQWR1bHQgKE51bWJlciBvZiBEYW1hbGljaHRoeXMgdmFjY2EgQWR1bHQsIHBlciAxMDBtWDJtWDMwbSB0cmFuc2VjdClcbkRhbWFsaWNodGh5c192YWNjYV9KdXZlbmlsZSAoTnVtYmVyIG9mIERhbWFsaWNodGh5cyB2YWNjYSBKdXZlbmlsZSwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuRW1iaW90b2NhX2phY2tzb25pX0FkdWx0IChOdW1iZXIgb2YgRW1iaW90b2NhIGphY2tzb25pIEFkdWx0LCBwZXIgMTAwbVgybVgzMG0gdHJhbnNlY3QpXG5FbWJpb3RvY2FfamFja3NvbmlfSnV2ZW5pbGUgKE51bWJlciBvZiBFbWJpb3RvY2EgamFja3NvbmkgSnV2ZW5pbGUsIHBlciAxMDBtWDJtWDMwbSB0cmFuc2VjdClcbkVtYmlvdG9jYV9sYXRlcmFsaXNfQWR1bHQgKE51bWJlciBvZiBFbWJpb3RvY2EgbGF0ZXJhbGlzIEFkdWx0LCBwZXIgMTAwbVgybVgzMG0gdHJhbnNlY3QpXG5FbWJpb3RvY2FfbGF0ZXJhbGlzX0p1dmVuaWxlIChOdW1iZXIgb2YgRW1iaW90b2NhIGxhdGVyYWxpcyBKdXZlbmlsZSwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuR2lyZWxsYV9uaWdyaWNhbnNfQWR1bHQgKE51bWJlciBvZiBHaXJlbGxhIG5pZ3JpY2FucyBBZHVsdCwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuR2lyZWxsYV9uaWdyaWNhbnNfSnV2ZW5pbGUgKE51bWJlciBvZiBHaXJlbGxhIG5pZ3JpY2FucyBKdXZlbmlsZSwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuSGFsaWNob2VyZXNfc2VtaWNpbmN0dXNfRmVtYWxlIChOdW1iZXIgb2YgSGFsaWNob2VyZXMgc2VtaWNpbmN0dXMgRmVtYWxlLCBwZXIgMTAwbVgybVgzMG0gdHJhbnNlY3QpXG5IYWxpY2hvZXJlc19zZW1pY2luY3R1c19NYWxlIChOdW1iZXIgb2YgSGFsaWNob2VyZXMgc2VtaWNpbmN0dXMgTWFsZSwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuSHlwc3lwb3BzX3J1YmljdW5kdXNfQWR1bHQgKE51bWJlciBvZiBIeXBzeXBvcHMgcnViaWN1bmR1cyBBZHVsdCwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuSHlwc3lwb3BzX3J1YmljdW5kdXNfSnV2ZW5pbGUgKE51bWJlciBvZiBIeXBzeXBvcHMgcnViaWN1bmR1cyBKdXZlbmlsZSwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuT3h5anVsaXNfY2FsaWZvcm5pY2FfQWR1bHQgKE51bWJlciBvZiBPeHlqdWxpcyBjYWxpZm9ybmljYSBBZHVsdCwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuT3h5anVsaXNfY2FsaWZvcm5pY2FfSnV2ZW5pbGUgKE51bWJlciBvZiBPeHlqdWxpcyBjYWxpZm9ybmljYSBKdXZlbmlsZSwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuUGFyYWxhYnJheF9jbGF0aHJhdHVzX0FkdWx0IChOdW1iZXIgb2YgUGFyYWxhYnJheCBjbGF0aHJhdHVzIEFkdWx0LCBwZXIgMTAwbVgybVgzMG0gdHJhbnNlY3QpXG5QYXJhbGFicmF4X2NsYXRocmF0dXNfSnV2ZW5pbGUgKE51bWJlciBvZiBQYXJhbGFicmF4IGNsYXRocmF0dXMgSnV2ZW5pbGUsIHBlciAxMDBtWDJtWDMwbSB0cmFuc2VjdClcblNlYmFzdGVzX2F0cm92aXJlbnNfQWR1bHQgKE51bWJlciBvZiBTZWJhc3RlcyBhdHJvdmlyZW5zIEFkdWx0LCBwZXIgMTAwbVgybVgzMG0gdHJhbnNlY3QpXG4uLi4gKDggbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2lucEtmbUZUX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDaW5wS2ZtRlRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2lucEtmbUZUL2luZGV4Lmpzb24iLCAiaHR0cDovL3d3dy5ucHMuZ292L2NoaXMvbmF0dXJlc2NpZW5jZS9pbmRleC5odG0iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2lucEtmbUZULnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDaW5wS2ZtRlQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQ0lOUCIsICJlcmRDaW5wS2ZtRlQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2lucEtmbVJQQy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2lucEtmbVJQQyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDaW5wS2ZtUlBDLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNoYW5uZWwgSXNsYW5kcywgS2VscCBGb3Jlc3QgTW9uaXRvcmluZywgU3VydmV5LCBSYW5kb20gUG9pbnQgQ29udGFjdCwgMTk4Mi0yMDA3IiwgIlRoaXMgZGF0YXNldCBmcm9tIHRoZSBDaGFubmVsIElzbGFuZHMgTmF0aW9uYWwgUGFyaydzIEtlbHAgRm9yZXN0IE1vbml0b3JpbmcgUHJvZ3JhbSBoYXMgZXN0aW1hdGVzIG9mIHN1YnN0cmF0ZSBjb21wb3NpdGlvbiBhbmQgcGVyY2VudCBjb3ZlciBvZiBzZWxlY3RlZCBhbGdhbCBhbmQgaW52ZXJ0ZWJyYXRlIHRheGEuIFRoZSBkYXRhIHN1bW1hcnkgZGF0YSBwcmVzZW50ZWQgaGVyZSByZXByZXNlbnRzIHRoZSBtZWFuIHBlcmNlbnQgY292ZXIgb2YgdGhlIGluZGljYXRvciBzcGVjaWVzIGF0IHRoZSBzaXRlLiBTYW1wbGluZyBpcyBjb25kdWN0ZWQgYW5udWFsbHkgYmV0d2VlbiB0aGUgbW9udGhzIG9mIE1heS1PY3RvYmVyLCBzbyB0aGUgVGltZSBkYXRhIGluIHRoaXMgZmlsZSBpcyBKdWx5IDEgb2YgZWFjaCB5ZWFyIChhIG5vbWluYWwgdmFsdWUpLiBUaGUgYWN0dWFsIG1lYXN1cmVtZW50cyB3ZXJlIHRha2VuIGF0IHZhcmlvdXMgZGVwdGhzLCBzbyB0aGUgRGVwdGggZGF0YSBpbiB0aGlzIGZpbGUgaXMgdGhlIGRlcHRoIG9mIHRoZSBzdGF0aW9uJ3MgdGVtcGVyYXR1cmUgbG9nZ2VyLCB3aGljaCBpcyBhIHR5cGljYWwgZGVwdGguXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5zdGF0aW9uXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxuZGVwdGggKG0pXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuQXJ0aWN1bGF0ZWRfQ29yYWxsaW5lX0FsZ2FlX01lYW4gKHBlcmNlbnQgY292ZXIpXG5BcnRpY3VsYXRlZF9Db3JhbGxpbmVfQWxnYWVfU3RkRGV2XG5BcnRpY3VsYXRlZF9Db3JhbGxpbmVfQWxnYWVfU3RkRXJyXG5Bc3RyYW5naWFfbGFqb2xsYWVuc2lzX01lYW4gKHBlcmNlbnQgY292ZXIpXG5Bc3RyYW5naWFfbGFqb2xsYWVuc2lzX1N0ZERldlxuQXN0cmFuZ2lhX2xham9sbGFlbnNpc19TdGRFcnJcbkJhbGFub3BoeWxsaWFfZWxlZ2Fuc19NZWFuIChwZXJjZW50IGNvdmVyKVxuQmFsYW5vcGh5bGxpYV9lbGVnYW5zX1N0ZERldlxuQmFsYW5vcGh5bGxpYV9lbGVnYW5zX1N0ZEVyclxuQmFsYW51c19zcHBfTWVhbiAocGVyY2VudCBjb3ZlcilcbkJhbGFudXNfc3BwX1N0ZERldlxuQmFsYW51c19zcHBfU3RkRXJyXG5CYXJlX1N1YnN0cmF0ZV9NZWFuIChwZXJjZW50IGNvdmVyKVxuQmFyZV9TdWJzdHJhdGVfU3RkRGV2XG5CYXJlX1N1YnN0cmF0ZV9TdGRFcnJcbkNvYmJsZV9NZWFuIChwZXJjZW50IGNvdmVyKVxuQ29iYmxlX1N0ZERldlxuLi4uICgxMDAgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2lucEtmbVJQQ19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2lucEtmbVJQQ19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDaW5wS2ZtUlBDL2luZGV4Lmpzb24iLCAiaHR0cDovL3d3dy5ucHMuZ292L2NoaXMvbmF0dXJlc2NpZW5jZS9pbmRleC5odG0iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2lucEtmbVJQQy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2lucEtmbVJQQyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJDSU5QIiwgImVyZENpbnBLZm1SUEMiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvRlJEQ1BTVHJhd2xMSEhhdWxDYXRjaC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvRlJEQ1BTVHJhd2xMSEhhdWxDYXRjaCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9GUkRDUFNUcmF3bExISGF1bENhdGNoLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNQUyBUcmF3bCBMaWZlIEhpc3RvcnkgSGF1bCBDYXRjaCBEYXRhIiwgIldlaWdodCBpbiBraWxvZ3JhbXMgZm9yIGFsbCBzcGVjaWVzIChpZGVudGlmaWVkIHRvIGxvd2VzdCB0YXhvbm9taWMgY3JpdGVyaWEpIGNhdWdodCBkdXJpbmcgU1dGU0MtRlJEIGZpc2hlcnkgaW5kZXBlbmRlbnQgc3VydmV5cyAoaW5jbHVkaW5nIERFUE0sIEFUTSwgU2FLZSkgb2YgY29hc3RhbCBwZWxhZ2ljIHNwZWNpZXMgdXNpbmcgbWlkLXdhdGVyIHRyYXdscyAod2l0aCBtb3N0IHRvd3MgcGVyZm9ybWVkIG5lYXIgdGhlIHN1cmZhY2UpIGF0IHBvc2l0aW9uIGFuZCB0aW1lcyBsaXN0ZWQuIEFkZGl0aW9uYWwgaW5mb3JtYXRpb24gZm9yIGEgc3Vic2V0IG9mIGluZGl2aWR1YWxzIGZyb20gc29tZSBzcGVjaWVzIGNhbiBiZSBmb3VuZCBpbiBlaXRoZXIgQ1BTIFRyYXdsIExpZmUgSGlzdG9yeSBMZW5ndGggRnJlcXVlbmN5IG9yIHRoZSBDUFMgVHJhd2wgTGlmZSBIaXN0b3J5IFNwZWNpbWVuIGRhdGFzZXRzLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZVxuc2hpcFxuaGF1bCAoSGF1bCBOdW1iZXIpXG5jb2xsZWN0aW9uXG5sYXRpdHVkZSAoU3RhcnQgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKFN0YXJ0IExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxuc3RvcF9sYXRpdHVkZVxuc3RvcF9sb25naXR1ZGVcbnRpbWUgKEVxdWlsaWJyaXVtIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5oYXVsYmFja190aW1lIChIYXVsIEJhY2sgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnN1cmZhY2VfdGVtcCAoU3VyZmFjZSBUZW1wZXJhdHVyZSwgZGVncmVlIEMpXG5zdXJmYWNlX3RlbXBfbWV0aG9kIChTdXJmYWNlIFRlbXBlcmF0dXJlIE1ldGhvZClcbnNoaXBfc3BkX3Rocm91Z2hfd2F0ZXIgKFNoaXAgU3BlZWQgVGhyb3VnaCBXYXRlciwga25vdClcbml0aXNfdHNuIChJdGlzVFNOKVxuc2NpZW50aWZpY19uYW1lXG5zdWJzYW1wbGVfY291bnRcbnN1YnNhbXBsZV93ZWlnaHQgKGtnKVxucmVtYWluaW5nX3dlaWdodCAoa2cpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvRlJEQ1BTVHJhd2xMSEhhdWxDYXRjaF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvRlJEQ1BTVHJhd2xMSEhhdWxDYXRjaF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9GUkRDUFNUcmF3bExISGF1bENhdGNoL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zd2ZzYy5ub2FhLmdvdi9GUkQvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL0ZSRENQU1RyYXdsTEhIYXVsQ2F0Y2gucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPUZSRENQU1RyYXdsTEhIYXVsQ2F0Y2gmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQS1GaXNoZXJpZXMvU291dGh3ZXN0IEZpc2hlcmllcyBTY2llbmNlIENlbnRlciIsICJGUkRDUFNUcmF3bExISGF1bENhdGNoIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0ZSRENQU1RyYXdsTEhMZW5ndGhGcmVxdWVuY3kuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0ZSRENQU1RyYXdsTEhMZW5ndGhGcmVxdWVuY3kiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvRlJEQ1BTVHJhd2xMSExlbmd0aEZyZXF1ZW5jeS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDUFMgVHJhd2wgTGlmZSBIaXN0b3J5IExlbmd0aCBGcmVxdWVuY3kgRGF0YSIsICJMZW5ndGggZGlzdHJpYnV0aW9uIG9mIGEgc3Vic2V0IG9mIGluZGl2aWR1YWxzIGZyb20gYSBzcGVjaWVzIChtYWlubHkgbm9uLXRhcmdldCkgY2F1Z2h0IGR1cmluZyBTV0ZTQy1GUkQgZmlzaGVyeSBpbmRlcGVuZGVudCB0cmF3bCBzdXJ2ZXlzIG9mIGNvYXN0YWwgcGVsYWdpYyBzcGVjaWVzLiBNZWFzdXJlZCBsZW5ndGhzIGZvciBpbmRpY2F0ZWQgbGVuZ3RoIHR5cGUgKGZvcmssIHN0YW5kYXJkLCB0b3RhbCwgb3IgbWFudGxlKSB3ZXJlIGdyb3VwZWQgaW4gMTAgbW0gYmlucyAoaWRlbnRpZmllZCBieSB0aGUgbWlkcG9pbnQgb2YgdGhlIGxlbmd0aCBjbGFzcykgYW5kIGNvdW50cyBhcmUgcmVjb3JkZWQgYnkgc2V4LiBEb2VzIG5vdCBpbmNsdWRlIHNwZWNpZXMgd2l0aCBpbmRpdmlkdWFsIGxlbmd0aHMgcmVjb3JkZWQgaW4gdGhlIENQUyBUcmF3bCBMaWZlIEhpc3RvcnkgU3BlY2ltZW4gZGF0YXNldC5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG5jcnVpc2VcbnNoaXBcbmhhdWwgKEhhdWwgTnVtYmVyKVxuY29sbGVjdGlvblxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5pdGlzX3RzbiAoSXRpc1RTTilcbnNjaWVudGlmaWNfbmFtZVxubGVuZ3RoX2NsYXNzXG5sZW5ndGhfdHlwZVxubWFsZVxuZmVtYWxlXG51bmtub3duXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvRlJEQ1BTVHJhd2xMSExlbmd0aEZyZXF1ZW5jeV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvRlJEQ1BTVHJhd2xMSExlbmd0aEZyZXF1ZW5jeV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9GUkRDUFNUcmF3bExITGVuZ3RoRnJlcXVlbmN5L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zd2ZzYy5ub2FhLmdvdi9GUkQvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL0ZSRENQU1RyYXdsTEhMZW5ndGhGcmVxdWVuY3kucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPUZSRENQU1RyYXdsTEhMZW5ndGhGcmVxdWVuY3kmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQS1GaXNoZXJpZXMvU291dGh3ZXN0IEZpc2hlcmllcyBTY2llbmNlIENlbnRlciIsICJGUkRDUFNUcmF3bExITGVuZ3RoRnJlcXVlbmN5Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0ZSRENQU1RyYXdsTEhTcGVjaW1lbi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvRlJEQ1BTVHJhd2xMSFNwZWNpbWVuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0ZSRENQU1RyYXdsTEhTcGVjaW1lbi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDUFMgVHJhd2wgTGlmZSBIaXN0b3J5IFNwZWNpbWVuIERhdGEiLCAiSW5kaXZpZHVhbCBzcGVjaW1lbnMgbWVhc3VyZWQgKHdlaWdodCBpbiBncmFtcyBhbmQgbGVuZ3RoIGluIG1tKSBhbmQgc2V4ZWQgZnJvbSBtYWlubHkgdGFyZ2V0ZWQgc3BlY2llcyBjYXVnaHQgZHVyaW5nIFNXRlNDLUZSRCBmaXNoZXJ5IGluZGVwZW5kZW50IHRyYXdsIHN1cnZleXMgb2YgY29hc3RhbCBwZWxhZ2ljIHNwZWNpZXMuIEluZGl2aWR1YWxzIGFyZSBjYXRlZ29yaXplZCBhcyByYW5kb20gb3Igbm9uLXJhbmRvbSBzYW1wbGVzLiBEb2VzIG5vdCBpbmNsdWRlIHNwZWNpZXMgd2l0aCBsZW5ndGggYmlucyByZWNvcmRlZCBpbiB0aGUgQ1BTIFRyYXdsIExpZmUgSGlzdG9yeSBMZW5ndGggRnJlcXVlbmN5IGRhdGFzZXQuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxuY3J1aXNlXG5zaGlwXG5oYXVsIChIYXVsIE51bWJlcilcbmNvbGxlY3Rpb25cbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuaXRpc190c24gKEl0aXNUU04pXG5zY2llbnRpZmljX25hbWVcbnNwZWNpbWVuX251bWJlclxuc2V4XG5pc19yYW5kb21fc2FtcGxlXG53ZWlnaHQgKGcpXG5zdGFuZGFyZF9sZW5ndGggKG1tKVxuZm9ya19sZW5ndGggKG1tKVxudG90YWxfbGVuZ3RoIChtbSlcbm1hbnRsZV9sZW5ndGggKG1tKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL0ZSRENQU1RyYXdsTEhTcGVjaW1lbl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvRlJEQ1BTVHJhd2xMSFNwZWNpbWVuX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL0ZSRENQU1RyYXdsTEhTcGVjaW1lbi9pbmRleC5qc29uIiwgImh0dHBzOi8vc3dmc2Mubm9hYS5nb3YvRlJELyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9GUkRDUFNUcmF3bExIU3BlY2ltZW4ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPUZSRENQU1RyYXdsTEhTcGVjaW1lbiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBLUZpc2hlcmllcy9Tb3V0aHdlc3QgRmlzaGVyaWVzIFNjaWVuY2UgQ2VudGVyIiwgIkZSRENQU1RyYXdsTEhTcGVjaW1lbiJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvQVdTLUNSUkYiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvQVdTLUNSUkYuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ1JSRiBXZWF0aGVyIFN0YXRpb246IFBhbGF1OiBLb3JvcjogTmdlYW5nZXMgSXNsYW5kIiwgIlNpbmNlIDIwMDcsIHRoZSBDb3JhbCBSZWVmIFJlc2VhcmNoIEZvdW5kYXRpb24gKENSUkYpIGhhcyBvcGVyYXRlZCBhIENhbXBiZWxsIFNjaWVudGlmaWMgYXV0b21hdGljIHdlYXRoZXIgc3RhdGlvbiAoQVdTKSBpbiBQYWxhdSBkZXNpZ25lZCB0byBtZWFzdXJlIG1ldGVvcm9sb2dpY2FsL2F0bW9zcGhlcmljIGNvbmRpdGlvbnMgcmVsZXZhbnQgdG8gS29yb3IgU3RhdGUncyBSb2NrIElzbGFuZHMgU291dGhlcm4gTGFnb29uLCBhIFdvcmxkIEhlcml0YWdlIFNpdGUuIFdpdGggbGl0dGxlIGZsYXQgbGFuZCBpbiB0aGUgUm9jayBJc2xhbmRzLCB0aGUgd2VhdGhlciBzdGF0aW9uIGlzIGxvY2F0ZWQgb24gYSA0MC1mdCB0b3dlciBzaXR1YXRlZCBvbiBhIGthcnN0IHJpZGdlIG9uIE5nZWFuZ2VzIElzbGFuZCBhdCAxMDAgZnQgZWxldmF0aW9uLCBhYm91dCA1LjQga20gKDMuNSBtaSkgZnJvbSBDUlJGJ3Mgc3R1ZHkgc2l0ZSBhdCBKZWxseWZpc2ggTGFrZS4gSXQgbWVhc3VyZXMgYSBzdWl0ZSBvZiBhdG1vc3BoZXJpYyBjb25kaXRpb25zIGZvciBjb21wYXJpc29uIHdpdGggQ1JSRidzIHRlbXBvcmFyeSwgZmxvYXRpbmcgd2VhdGhlciBzdGF0aW9uIGxvY2F0ZWQgb24gYSB0cmlwb2QgaW4gSmVsbHlmaXNoIExha2UsIGFuZCBwcm92aWRlcyB2aXRhbCBkYXRhIGZvciBzdHVkeWluZyBob3cgbG9jYWwgd2VhdGhlciBjb25kaXRpb25zIGFuZCBFTlNPIGV2ZW50cyBhZmZlY3QgdGhlIG1hcmluZSBsYWtlIGVudmlyb25tZW50LlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5hbHRpdHVkZSAoRGlzdGFuY2UgYWJvdmUgbWVhbiBzZWEgbGV2ZWwsIG0pXG5zdGF0aW9uX25hbWUgKEFXUy1DUlJGOiBDUlJGIFdlYXRoZXIgU3RhdGlvbjogUGFsYXU6IEtvcm9yOiBOZ2VhbmdlcyBJc2xhbmQpXG5haXJfdGVtcGVyYXR1cmUgKENlbHNpdXMpXG5haXJfdGVtcGVyYXR1cmVfbWF4IChtYXhpbXVtIGFpciB0ZW1wZXJhdHVyZSwgQ2Vsc2l1cylcbmFpcl90ZW1wZXJhdHVyZV9tYXhfdGltZSAobWF4aW11bSBhaXIgdGVtcGVyYXR1cmU6IG9ic2VydmF0aW9uIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5haXJfdGVtcGVyYXR1cmVfbWluIChtaW5pbXVtIGFpciB0ZW1wZXJhdHVyZSwgQ2Vsc2l1cylcbmFpcl90ZW1wZXJhdHVyZV9taW5fdGltZSAobWluaW11bSBhaXIgdGVtcGVyYXR1cmU6IG9ic2VydmF0aW9uIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5haXJfdGVtcGVyYXR1cmVfc3RkIChhaXIgdGVtcGVyYXR1cmUgc3RhbmRhcmQgZGV2aWF0aW9uLCBDZWxzaXVzKVxud2luZF9zcGVlZCAobS9zKVxud2luZF9zcGVlZF9tYXggKGd1c3Qgc3BlZWQsIG0vcylcbndpbmRfc3BlZWRfbWF4X3RpbWUgKGd1c3Qgc3BlZWQ6IG9ic2VydmF0aW9uIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG53aW5kX3NwZWVkX21pbiAobWluaW11bSB3aW5kIHNwZWVkLCBtL3MpXG53aW5kX3NwZWVkX21pbl90aW1lIChtaW5pbXVtIHdpbmQgc3BlZWQ6IG9ic2VydmF0aW9uIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG53aW5kX3NwZWVkX3N0ZCAod2luZCBzcGVlZCBzdGFuZGFyZCBkZXZpYXRpb24sIG0vcylcbndpbmRfZnJvbV9kaXJlY3Rpb24gKHdpbmQgZGlyZWN0aW9uLCBkZWdyZWVzKVxud2luZF9mcm9tX2RpcmVjdGlvbl9zdGQgKHdpbmQgZGlyZWN0aW9uIHN0YW5kYXJkIGRldmlhdGlvbiwgZGVncmVlcylcbnJhaW5mYWxsX2Ftb3VudCAodG90YWwgcmFpbmZhbGwsIG1tKVxuLi4uICgyMyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9BV1MtQ1JSRl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvQVdTLUNSUkZfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vQVdTLUNSUkYvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wYWNpb29zLmhhd2FpaS5lZHUvd2VhdGhlci9vYnMta29yb3IvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL0FXUy1DUlJGLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1BV1MtQ1JSRiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJDb3JhbCBSZWVmIFJlc2VhcmNoIEZvdW5kYXRpb24gKENSUkYpIiwgIkFXUy1DUlJGIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lY29jYXN0X2lucHV0cyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lY29jYXN0X2lucHV0cy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJFY29jYXN0IHNwZWNpZXMgd2VpZ2h0aW5ncyBhbmQgZW52aXJvbm1lbnRhbCBkYXRhIGRhdGVzIiwgIlRoZSBkYXRhc2V0IGNvbnRhaW5zIHRoZSBzcGVjaWVzIHdlaWdodGluZ3MgYW5kIHRoZSBkYXRlcyBvZiB0aGUgZW52aXJvbm1lbnRhbCBkYXRhIHVzZWQgZm9yIGVhY2ggRWNvQ2FzdCBNYXAgZGF0YXNldCAoaHR0cHM6Ly9jb2FzdHdhdGNoLnBmZWcubm9hYS5nb3YvZXJkZGFwL2dyaWRkYXAvZWNvY2FzdClcblxuY2RtX2RhdGFfdHlwZSA9IEdyaWRcblZBUklBQkxFUzpcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kYXRlXG5ibHVlc2hhcmsgKEJsdWUgU2hhcmsgQnljYXRjaCBNb2RlbCBXZWlnaHRpbmcpXG5ibHVlc2hhcmtUUksgKEJsdWUgU2hhcmsgVHJhY2tpbmcgTW9kZWwgV2VpZ2h0aW5nKVxuc2VhbGlvbnMgKENhbGlmb3JuaWEgU2VhIExpb25zIFRyYWNraW5nIE1vZGVsIFdlaWdodGluZylcbmxlYXRoZXJiYWNrcyAoTGVhdGhlcmJhY2sgVHVydGxlcyBNb2RlbCBXZWlnaHRpbmcpXG5zd29yZGZpc2ggKFN3b3JkZmlzaCBNb2RlbCBXZWlnaHRpbmcpXG5zc3RfdGltZSAoRGF0ZSBvZiBTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSBEYXRhLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuY2hsX3RpbWUgKERhdGUgb2YgQ2hsb3JvcGh5bGwtYSBEYXRhLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZWtlX3RpbWUgKERhdGUgb2YgRWRkeSBLaW5ldGljIEVuZXJneSBEYXRhLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc3NoX3RpbWUgKERhdGUgb2YgU2VhIFN1cmZhY2UgSGVpZ2h0IERhdGEsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG53aW5kX3RpbWUgKERhdGUgb2YgV2luZCBEYXRhLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lY29jYXN0X2lucHV0cy9pbmRleC5qc29uIiwgImh0dHBzOi8vY29hc3R3YXRjaC5wZmVnLm5vYWEuZ292L2Vjb2Nhc3QiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZWNvY2FzdF9pbnB1dHMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVjb2Nhc3RfaW5wdXRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk1GUyBTV0ZTQyBFUkQiLCAiZWNvY2FzdF9pbnB1dHMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3ByYm9TZWZpRGlldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wcmJvU2VmaURpZXQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiRmFyYWxsb24gSXNsYW5kIFNlYWJpcmQgRGlldCBTdW1tYXJ5IiwgIkRpZXQgc3VtbWFyeSBkYXRhIGZvciBDYXNzaW4ncyBBdWtsZXRzLCBDb21tb24gTXVycmVzLCBQaWdlb24gR3VpbGxlbW90cywgYW5kIFJoaW5vY2Vyb3MgQXVrbGV0cyBmcm9tIHRoZSBGYXJhbGxvbiBJc2xhbmRzLiBEYXRhIHByZXNlbnRlZCBhcmUgdGhlIHByb3BvcnRpb24gYnkgbnVtYmVyIG9mIHRoZSBtb3N0IGltcG9ydGFudCBwcmV5IGl0ZW1zIGZvciBlYWNoIHNwZWNpZXMuXG5cblRoZSBwcm9wb3J0aW9ucyBwcmVzZW50ZWQgaW4gdGhpcyB0YWJsZSBhcmUgZGVmaW5lZCBhcyB0aGUgbnVtYmVyIG9mIHRoZSBzcGVjaWZpYyBwcmV5IGl0ZW1zIG9ic2VydmVkIGRpdmlkZWQgYnkgdGhlIHRvdGFsIG51bWJlciBvZiBpZGVudGlmaWVkIHByZXkgaXRlbXMgZm9yIHRoYXQgc2Vhc29uLiBEYXRhIGZvciB0aGUgbW9zdCBpbXBvcnRhbnQgcHJleSBzcGVjaWVzIGFyZSBwcmVzZW50ZWQgaGVyZSB3aXRoIGFsbCBvdGhlciBwcmV5IGx1bXBlZCB0b2dldGhlciBhcyBcIm90aGVyXCIuIFNlZSB0aGUgU0VGSSBSZXNlYXJjaCBQbGFucyBhbmQgUHJvdG9jb2xzIGRvY3VtZW50IHVuZGVyIFJlc2VhcmNoIFRvb2xzIGZvciBtb3JlIGluZm9ybWF0aW9uIG9uIGhvdyBkaWV0IGRhdGEgaXMgY29sbGVjdGVkIGZvciBlYWNoIHNwZWNpZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxueWVhclxuUkhBVV9Sb2NrZmlzaCAoUm9ja2Zpc2ggaW4gUmhpbm9jZXJvcyBBdWtsZXQncyBEaWV0LCBwZXJjZW50KVxuUkhBVV9BbmNob3Z5IChBbmNob3Z5IGluIFJoaW5vY2Vyb3MgQXVrbGV0J3MgRGlldCwgcGVyY2VudClcblJIQVVfU2F1cnkgKFNhdXJ5IGluIFJoaW5vY2Vyb3MgQXVrbGV0J3MgRGlldCwgcGVyY2VudClcblJIQVVfT3RoZXIgKE90aGVyIGluIFJoaW5vY2Vyb3MgQXVrbGV0J3MgRGlldCwgcGVyY2VudClcbkNPTVVfUm9ja2Zpc2ggKFJvY2tmaXNoIGluIENvbW1vbiBNdXJyZSdzIERpZXQsIHBlcmNlbnQpXG5DT01VX0FuY2hvdnlTYXJkaW5lIChBbmNob3Z5JlNhcmRpbmUgaW4gQ29tbW9uIE11cnJlJ3MgRGlldCwgcGVyY2VudClcbkNPTVVfT3RoZXIgKE90aGVyIGluIENvbW1vbiBNdXJyZSdzIERpZXQsIHBlcmNlbnQpXG5QSUdVX1JvY2tmaXNoIChSb2NrZmlzaCBpbiBQaWdlb24gR3VpbGxlbW90J3MgRGlldCwgcGVyY2VudClcblBJR1VfU2N1bHBpbiAoU2N1bHBpbiBpbiBQaWdlb24gR3VpbGxlbW90J3MgRGlldCwgcGVyY2VudClcblBJR1VfRmxhdGZpc2ggKEZsYXRmaXNoIGluIFBpZ2VvbiBHdWlsbGVtb3QncyBEaWV0LCBwZXJjZW50KVxuUElHVV9PdGhlciAoT3RoZXIgaW4gUGlnZW9uIEd1aWxsZW1vdCdzIERpZXQsIHBlcmNlbnQpXG5DQUFVX0V1cGFodXNpaWRzIChFdXBhaHVzaWlkcyBpbiBDYXNzaW4ncyBBdWtsZXQncyBEaWV0LCBwZXJjZW50KVxuQ0FBVV9NeXNpaWRzIChNeXNpaWRzIGluIENhc3NpbidzIEF1a2xldCdzIERpZXQsIHBlcmNlbnQpXG5DQUFVX0FtcGhpcG9kcyAoQW1waGlwb2RzIGluIENhc3NpbidzIEF1a2xldCdzIERpZXQsIHBlcmNlbnQpXG5DQUFVX1BpY2VzIChQaWNlcyBpbiBDYXNzaW4ncyBBdWtsZXQncyBEaWV0LCBwZXJjZW50KVxuQ0FBVV9PdGhlciAoT3RoZXIgaW4gQ2Fzc2luJ3MgQXVrbGV0J3MgRGlldCwgcGVyY2VudClcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcHJib1NlZmlEaWV0L2luZGV4Lmpzb24iLCAiaHR0cDovL2RhdGEucHJiby5vcmcvY2FkYzIvaW5kZXgucGhwP21hY3Q9TGlua2VkQXJ0aWNsZXMsY250bnQwMSxkZXRhaWwsMCZjbnRudDAxYXJ0aWNsZV9pZD0xNTUmY250bnQwMXJldHVybmlkPTE1MCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wcmJvU2VmaURpZXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXByYm9TZWZpRGlldCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJQUkJPIiwgInByYm9TZWZpRGlldCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcHJib1NlZmlQaGVuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3ByYm9TZWZpUGhlbi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJGYXJhbGxvbiBJc2xhbmQgU2VhYmlyZCBQaGVub2xvZ3kgU3VtbWFyeSIsICJQaGVub2xvZ3kgKHRpbWluZyBvZiBicmVlZGluZykgc3VtbWFyeSBkYXRhIGZvciBCcmFuZHQncyBDb3Jtb3JhbnQsIENhc3NpbidzIEF1a2xldCwgQ29tbW9uIE11cnJlLCBQaWdlb24gR3VpbGxlbW90LCBhbmQgUmhpbm9jZXJvcyBBdWtsZXQgYnJlZWRpbmcgYXQgdGhlIEZhcmFsbG9uIElzbGFuZHMuIERhdGEgcHJlc2VudGVkIGFyZSBhbm51YWwgbWVhbiBsYXlpbmcgZGF0ZSBmb3IgdGhlIGZpcnN0IG9yIG9ubHkgZWdnIGxhaWQgYWxvbmcgd2l0aCB0aGUgc3RhbmRhcmQgZGV2aWF0aW9uLlxuXG5UaGUgbWVhbiBsYXlpbmcgZGF0ZSBpcyBjYWxjdWxhdGVkIGZyb20gYWxsIHNpdGVzIHdoZXJlIHRoZSBleGFjdCBsYXlpbmcgZGF0ZSBpcyBrbm93biB3aXRoaW4gdGhlIGNoZWNrIHBlcmlvZCBmb3IgdGhhdCBzcGVjaWVzICgxLTUgZGF5cykuIFRoZSBtZWFuIGxheSBkYXRlcyBhcmUgcHJlc2VudGVkIGFzIGp1bGlhbiBkYXRlcyAoZGF5IG9mIHllYXIpIGFuZCB0aGUgc3RhbmRhcmQgZGV2aWF0aW9uIGlzIGluIGRheXMuIFNlZSB0aGUgU0VGSSBSZXNlYXJjaCBQbGFucyBhbmQgUHJvdG9jb2xzIGRvY3VtZW50IHVuZGVyIFJlc2VhcmNoIFRvb2xzIGZvciBtb3JlIGluZm9ybWF0aW9uIG9uIGhvdyBsYXkgZGF0ZXMgYXJlIGRldGVybWluZWQgZm9yIGVhY2ggc3BlY2llcy5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG55ZWFyXG5CUkFDX21lYW4gKEJyYW5kdCdzIENvcm1vcmFudCBNZWFuLCBkYXlfb2ZfeWVhcilcbkJSQUNfc2QgKEJyYW5kdCdzIENvcm1vcmFudCBTdGFuZGFyZCBEZXZpYXRpb24sIGRheXMpXG5DQUFVX21lYW4gKENhc3NpbidzIEF1a2xldCBNZWFuLCBkYXlfb2ZfeWVhcilcbkNBQVVfc2QgKENhc3NpbidzIEF1a2xldCBTdGFuZGFyZCBEZXZpYXRpb24sIGRheXMpXG5DT01VX21lYW4gKENvbW1vbiBNdXJyZSBNZWFuLCBkYXlfb2ZfeWVhcilcbkNPTVVfc2QgKENvbW1vbiBNdXJyZSBTdGFuZGFyZCBEZXZpYXRpb24sIGRheXMpXG5QSUdVX21lYW4gKFBpZ2VvbiBHdWlsbGVtb3QgTWVhbiwgZGF5X29mX3llYXIpXG5QSUdVX3NkIChQaWdlb24gR3VpbGxlbW90IFN0YW5kYXJkIERldmlhdGlvbiwgZGF5cylcblJIQVVfbWVhbiAoUmhpbm9jZXJvcyBBdWtsZXQgTWVhbiwgZGF5X29mX3llYXIpXG5SSEFVX3NkIChSaGlub2Nlcm9zIEF1a2xldCBTdGFuZGFyZCBEZXZpYXRpb24sIGRheXMpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3ByYm9TZWZpUGhlbi9pbmRleC5qc29uIiwgImh0dHA6Ly9kYXRhLnByYm8ub3JnL2NhZGMyL2luZGV4LnBocD9tYWN0PUxpbmtlZEFydGljbGVzLGNudG50MDEsZGV0YWlsLDAmY250bnQwMWFydGljbGVfaWQ9MTU2JmNudG50MDFyZXR1cm5pZD0xNTAiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcHJib1NlZmlQaGVuLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wcmJvU2VmaVBoZW4mc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUFJCTyIsICJwcmJvU2VmaVBoZW4iXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3ByYm9TZWZpUG9wIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3ByYm9TZWZpUG9wLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkZhcmFsbG9uIElzbGFuZCBTZWFiaXJkIFBvcHVsYXRpb24gU3VtbWFyeSIsICJBbm51YWwgYnJlZWRpbmcgcG9wdWxhdGlvbiBlc3RpbWF0ZXMgZm9yIEJyYW5kdCdzIENvcm1vcmFudCwgQ2Fzc2luJ3MgQXVrbGV0LCBDb21tb24gTXVycmUsIERvdWJsZS1jcmVzdGVkIENvcm1vcmFudCwgUGVsYWdpYyBDb3Jtb3JhbnQsIFBpZ2VvbiBHdWlsbGVtb3QsIFR1ZnRlZCBQdWZmaW4sIGFuZCBXZXN0ZXJuIEd1bGwgYXQgdGhlIEZhcmFsbG9uIElzbGFuZHMuIERhdGEgcHJlc2VudGVkIGFyZSB0aGUgbnVtYmVyIG9mIGJyZWVkaW5nIGFkdWx0cyBlc3RpbWF0ZWQgZm9yIGVhY2ggc2Vhc29uLlxuXG5CcmVlZGluZyBwb3B1bGF0aW9uIGVzdGltYXRlcyBmb3IgbW9zdCBzcGVjaWVzIGFyZSBiYXNlZCBvbiBlaXRoZXIgZGlyZWN0IGNvdW50cyBvZiBhbmltYWxzIG9yIG5lc3RzLiBDYXNzaW4ncyBhdWtsZXQgZXN0aW1hdGVzIGFyZSBiYXNlZCBvbiB0aGUgcGVyY2VudCBjaGFuZ2UgaW4gYnVycm93L2NyZXZpY2UgZGVuc2l0eSB3aXRoaW4gYSBzZXJpZXMgb2YgaW5kZXggcGxvdHMuIFRoaXMgcmVsYXRpdmUgY2hhbmdlIGlzIHRoZW4gYXBwbGllZCB0byB0aGUgbGFzdCBmdWxsIGNlbnN1cyBmcm9tIDE5ODkgdG8gYXJyaXZlIGF0IGEgY3VycmVudCBwb3B1bGF0aW9uIGVzdGltYXRlLiBTZWUgdGhlIFNFRkkgUmVzZWFyY2ggUGxhbnMgYW5kIFByb3RvY29scyBkb2N1bWVudCB1bmRlciBSZXNlYXJjaCBUb29scyBmb3IgbW9yZSBpbmZvcm1hdGlvbiBvbiBob3cgdGhlc2UgZXN0aW1hdGVzIHdlcmUgZGV0ZXJtaW5lZC5cblxuTm90ZTogQ2Fzc2luJ3MgYXVrbGV0IHBvcHVsYXRpb24gZXN0aW1hdGUgaXMgZm9yIFNvdXRoZWFzdCBGYXJhbGxvbiBJc2xhbmQgb25seS5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG55ZWFyXG5CUkFDIChQb3B1bGF0aW9uIG9mIEJyYW5kdCdzIENvcm1vcmFudCwgY291bnQpXG5DQUFVIChQb3B1bGF0aW9uIG9mIENhc3NpbidzIEF1a2xldCwgY291bnQpXG5DT01VIChQb3B1bGF0aW9uIG9mIENvbW1vbiBNdXJyZSwgY291bnQpXG5EQ0NPIChQb3B1bGF0aW9uIG9mIERvdWJsZS1jcmVzdGVkIENvcm1vcmFudCwgY291bnQpXG5QRUNPIChQb3B1bGF0aW9uIG9mIFBlbGFnaWMgQ29ybW9yYW50LCBjb3VudClcblBJR1UgKFBvcHVsYXRpb24gb2YgUGlnZW9uIEd1aWxsZW1vdCwgY291bnQpXG5UVVBVIChQb3B1bGF0aW9uIG9mIFR1ZnRlZCBQdWZmaW4sIGNvdW50KVxuV0VHVSAoUG9wdWxhdGlvbiBvZiBXZXN0ZXJuIEd1bGwsIGNvdW50KVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wcmJvU2VmaVBvcC9pbmRleC5qc29uIiwgImh0dHA6Ly9kYXRhLnByYm8ub3JnL2NhZGMyL2luZGV4LnBocD9tYWN0PUxpbmtlZEFydGljbGVzLGNudG50MDEsZGV0YWlsLDAmY250bnQwMWFydGljbGVfaWQ9MTU0JmNudG50MDFyZXR1cm5pZD0xNTAiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcHJib1NlZmlQb3AucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXByYm9TZWZpUG9wJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlBSQk8iLCAicHJib1NlZmlQb3AiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3ByYm9TZWZpUHJvZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wcmJvU2VmaVByb2QuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiRmFyYWxsb24gSXNsYW5kIFNlYWJpcmQgUHJvZHVjdGl2aXR5IFN1bW1hcnkiLCAiQW5udWFsIG1lYW4gcHJvZHVjdGl2aXR5IGZvciBBc2h5IFN0b3JtLXBldHJlbCwgQnJhbmR0J3MgQ29ybW9yYW50LCBDYXNzaW4ncyBBdWtsZXQsIENvbW1vbiBNdXJyZSwgUGVsYWdpYyBDb3Jtb3JhbnQsIFBpZ2VvbiBHdWlsbGVtb3QsIFJoaW5vY2Vyb3MgQXVrbGV0IGFuZCBXZXN0ZXJuIEd1bGwgYnJlZWRpbmcgb24gdGhlIEZhcmFsbG9uIElzbGFuZHMuIERhdGEgcHJlc2VudGVkIGFyZSB0aGUgbWVhbiBudW1iZXIgb2YgY2hpY2tzIGZsZWRnZWQgcGVyIGJyZWVkaW5nIHBhaXIgYWxvbmcgd2l0aCB0aGUgc3RhbmRhcmQgZGV2aWF0aW9uLlxuXG5NZWFuIGFubnVhbCBwcm9kdWN0aXZpdHkgKG51bWJlciBvZiBjaGlja3MgZmxlZGdlZCBwZXIgYnJlZWRpbmcgcGFpcikgaXMgZGV0ZXJtaW5lZCB0aHJvdWdoIHJlZ3VsYXIgY2hlY2tzIG9mIGJyZWVkaW5nIHNpdGVzIGFuZCBpbmNsdWRlcyBkYXRhIGZyb20gYWxsIGJyZWVkaW5nIGF0dGVtcHRzIHdpdGhpbiB0aGF0IHNlYXNvbi4gU2VlIHRoZSBTRUZJIFJlc2VhcmNoIFBsYW5zIGFuZCBQcm90b2NvbHMgZG9jdW1lbnQgdW5kZXIgUmVzZWFyY2ggVG9vbHMgZm9yIG1vcmUgaW5mb3JtYXRpb24gb24gaG93IHRoZXNlIGVzdGltYXRlcyB3ZXJlIGRldGVybWluZWQuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxueWVhclxuQVNTUF9ycyAoQXNoeSBTdG9ybS1wZXRyZWwgQ2hpY2tzIHBlciBCcmVlZGluZyBQYWlyLCBtZWFuKVxuQVNTUF9zZCAoQXNoeSBTdG9ybS1wZXRyZWwgU3RhbmRhcmQgRGV2aWF0aW9uKVxuQlJBQ19ycyAoQnJhbmR0J3MgQ29ybW9yYW50IENoaWNrcyBwZXIgQnJlZWRpbmcgUGFpciwgbWVhbilcbkJSQUNfc2QgKEJyYW5kdCdzIENvcm1vcmFudCBTdGFuZGFyZCBEZXZpYXRpb24pXG5DQUFVX3JzIChDYXNzaW4ncyBBdWtsZXQgQ2hpY2tzIHBlciBCcmVlZGluZyBQYWlyLCBtZWFuKVxuQ0FBVV9zZCAoQ2Fzc2luJ3MgQXVrbGV0IFN0YW5kYXJkIERldmlhdGlvbilcbkNPTVVfcnMgKENvbW1vbiBNdXJyZSBDaGlja3MgcGVyIEJyZWVkaW5nIFBhaXIsIG1lYW4pXG5DT01VX3NkIChDb21tb24gTXVycmUgU3RhbmRhcmQgRGV2aWF0aW9uKVxuUElHVV9ycyAoUGlnZW9uIEd1aWxsZW1vdCBDaGlja3MgcGVyIEJyZWVkaW5nIFBhaXIsIG1lYW4pXG5QSUdVX3NkIChQaWdlb24gR3VpbGxlbW90IFN0YW5kYXJkIERldmlhdGlvbilcblBFQ09fcnMgKFBlbGFnaWMgQ29ybW9yYW50IENoaWNrcyBwZXIgQnJlZWRpbmcgUGFpciwgbWVhbilcblBFQ09fc2QgKFBlbGFnaWMgQ29ybW9yYW50IFN0YW5kYXJkIERldmlhdGlvbilcblJIQVVfcnMgKFJoaW5vY2Vyb3MgQXVrbGV0IENoaWNrcyBwZXIgQnJlZWRpbmcgUGFpciwgbWVhbilcblJIQVVfc2QgKFJoaW5vY2Vyb3MgQXVrbGV0IFN0YW5kYXJkIERldmlhdGlvbilcbldFR1VfcnMgKFdlc3Rlcm4gR3VsbCBDaGlja3MgcGVyIEJyZWVkaW5nIFBhaXIsIG1lYW4pXG5XRUdVX3NkIChXZXN0ZXJuIEd1bGwgU3RhbmRhcmQgRGV2aWF0aW9uKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wcmJvU2VmaVByb2QvaW5kZXguanNvbiIsICJodHRwOi8vZGF0YS5wcmJvLm9yZy9jYWRjMi9pbmRleC5waHA/bWFjdD1MaW5rZWRBcnRpY2xlcyxjbnRudDAxLGRldGFpbCwwJmNudG50MDFhcnRpY2xlX2lkPTE1MyZjbnRudDAxcmV0dXJuaWQ9MTUwIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3ByYm9TZWZpUHJvZC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cHJib1NlZmlQcm9kJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlBSQk8iLCAicHJib1NlZmlQcm9kIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzXzEwMDBnZW5vbWVzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfMTAwMGdlbm9tZXMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfMTAwMGdlbm9tZXMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyAxMDAwZ2Vub21lcyBCdWNrZXQ6IDEwMDAgR2Vub21lcyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIDEwMDBnZW5vbWVzIGJ1Y2tldCBhdCBodHRwczovLzEwMDBnZW5vbWVzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiAxMDAwIEdlbm9tZXNcbk5hbWUyOiBodHRwOi8vd3d3LmludGVybmF0aW9uYWxnZW5vbWUub3JnL2Zvcm1hdHNcbkRlc2NyaXB0aW9uOiBUaGUgMTAwMCBHZW5vbWVzIFByb2plY3QgaXMgYW4gaW50ZXJuYXRpb25hbCBjb2xsYWJvcmF0aW9uIHdoaWNoIGhhcyBlc3RhYmxpc2hlZCB0aGUgbW9zdCBkZXRhaWxlZCBjYXRhbG9ndWUgb2YgaHVtYW4gZ2VuZXRpYyB2YXJpYXRpb24sIGluY2x1ZGluZyBTTlBzLCBzdHJ1Y3R1cmFsIHZhcmlhbnRzLCBhbmQgdGhlaXIgaGFwbG90eXBlIGNvbnRleHQuIFRoZSBmaW5hbCBwaGFzZSBvZiB0aGUgcHJvamVjdCBzZXF1ZW5jZWQgbW9yZSB0aGFuIDI1MDAgaW5kaXZpZHVhbHMgZnJvbSAyNiBkaWZmZXJlbnQgcG9wdWxhdGlvbnMgYXJvdW5kIHRoZSB3b3JsZCBhbmQgcHJvZHVjZWQgYW4gaW50ZWdyYXRlZCBzZXQgb2YgcGhhc2VkIGhhcGxvdHlwZXMgd2l0aCBtb3JlIHRoYW4gODAgbWlsbGlvbiB2YXJpYW50cyBmb3IgdGhlc2UgaW5kaXZpZHVhbHMuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZG9jcy5vcGVuZGF0YS5hd3MvMTAwMGdlbm9tZXMvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IGh0dHA6Ly93d3cuaW50ZXJuYXRpb25hbGdlbm9tZS5vcmcvY29udGFjdFxuVXBkYXRlRnJlcXVlbmN5OiBOb3QgdXBkYXRlZFxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzXzEwMDBnZW5vbWVzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvMTAwMC1nZW5vbWVzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzXzEwMDBnZW5vbWVzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzXzEwMDBnZW5vbWVzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc18xMDAwZ2Vub21lcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc18za3JpY2VnZW5vbWUiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc18za3JpY2VnZW5vbWUuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfM2tyaWNlZ2Vub21lLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgM2tyaWNlZ2Vub21lIEJ1Y2tldDogMzAwMCBSaWNlIEdlbm9tZXMgUHJvamVjdCIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIDNrcmljZWdlbm9tZSBidWNrZXQgYXQgaHR0cHM6Ly8za3JpY2VnZW5vbWUuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IDMwMDAgUmljZSBHZW5vbWVzIFByb2plY3Rcbk5hbWUyOiBodHRwOi8vczMuYW1hem9uYXdzLmNvbS8za3JpY2VnZW5vbWUvUkVBRE1FLXNucF9waXBlbGluZS50eHRcbkRlc2NyaXB0aW9uOiBUaGUgMzAwMCBSaWNlIEdlbm9tZSBQcm9qZWN0IGlzIGFuIGludGVybmF0aW9uYWwgZWZmb3J0IHRvIHNlcXVlbmNlIHRoZSBnZW5vbWVzIG9mIDMsMDI0IHJpY2UgdmFyaWV0aWVzIGZyb20gODkgY291bnRyaWVzLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzLzNrcmljZWdlbm9tZS9yZWFkbWUuaHRtbFxuQ29udGFjdDogaHR0cDovL2lyaWMuaXJyaS5vcmcvY29udGFjdC11c1xuVXBkYXRlRnJlcXVlbmN5OiBOb3QgdXBkYXRlZFxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzXzNrcmljZWdlbm9tZS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzLzNrcmljZWdlbm9tZS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc18za3JpY2VnZW5vbWUucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfM2tyaWNlZ2Vub21lJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc18za3JpY2VnZW5vbWUiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfYWZ0X3ZiaV9wZHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19hZnRfdmJpX3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19hZnRfdmJpX3Bkcy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGFmdC12YmktcGRzIEJ1Y2tldDogQW1hem9uIEJpbiBJbWFnZSBEYXRhc2V0OiBPdmVyIDUwMCwwMDAgYmluIEpQRUcgaW1hZ2VzIGFuZCBjb3JyZXNwb25kaW5nIEpTT04gbWV0YWRhdGEgZmlsZXMgZGVzY3JpYmluZyBpdGVtcyBpbiBiaW5zIGluIEFtYXpvbiBGdWxmaWxsbWVudCBDZW50ZXJzLiIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGFmdC12YmktcGRzIGJ1Y2tldCBhdCBodHRwczovL2FmdC12YmktcGRzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBBbWF6b24gQmluIEltYWdlIERhdGFzZXRcbk5hbWUyOiBPdmVyIDUwMCwwMDAgYmluIEpQRUcgaW1hZ2VzIGFuZCBjb3JyZXNwb25kaW5nIEpTT04gbWV0YWRhdGEgZmlsZXMgZGVzY3JpYmluZyBpdGVtcyBpbiBiaW5zIGluIEFtYXpvbiBGdWxmaWxsbWVudCBDZW50ZXJzLlxuRGVzY3JpcHRpb246IFRoZSBBbWF6b24gQmluIEltYWdlIERhdGFzZXQgY29udGFpbnMgb3ZlciA1MDAsMDAwIGltYWdlcyBhbmQgbWV0YWRhdGEgZnJvbSBiaW5zIG9mIGEgcG9kIGluIGFuIG9wZXJhdGluZyBBbWF6b24gRnVsZmlsbG1lbnQgQ2VudGVyLiBUaGUgYmluIGltYWdlcyBpbiB0aGlzIGRhdGFzZXQgYXJlIGNhcHR1cmVkIGFzIHJvYm90IHVuaXRzIGNhcnJ5IHBvZHMgYXMgcGFydCBvZiBub3JtYWwgQW1hem9uIEZ1bGZpbGxtZW50IENlbnRlciBvcGVyYXRpb25zLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL2FmdC12YmktcGRzL3JlYWRtZS5odG1sXG5Db250YWN0OiBhbWF6b24tYmluLWltYWdlc0BhbWF6b24uY29tXG5NYW5hZ2VkQnk6IFtBbWF6b25dKGh0dHBzOi8vd3d3LmFtYXpvbi5jb20vKVxuVXBkYXRlRnJlcXVlbmN5OiBOb3QgdXBkYXRlZFxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2FmdF92YmlfcGRzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvYW1hem9uLWJpbi1pbWFnZXJ5LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2FmdF92YmlfcGRzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2FmdF92YmlfcGRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19hZnRfdmJpX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19hbGxlbl9icmFpbl9vYnNlcnZhdG9yeSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2FsbGVuX2JyYWluX29ic2VydmF0b3J5LmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2FsbGVuX2JyYWluX29ic2VydmF0b3J5LyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgYWxsZW4tYnJhaW4tb2JzZXJ2YXRvcnkgQnVja2V0OiBBbGxlbiBCcmFpbiBPYnNlcnZhdG9yeSAtIFZpc3VhbCBDb2RpbmcgQVdTIFB1YmxpYyBEYXRhIFNldDogUHJvamVjdCBkYXRhIGZpbGVzIGluIGEgcHVibGljIGJ1Y2tldCIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGFsbGVuLWJyYWluLW9ic2VydmF0b3J5IGJ1Y2tldCBhdCBodHRwczovL2FsbGVuLWJyYWluLW9ic2VydmF0b3J5LnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBBbGxlbiBCcmFpbiBPYnNlcnZhdG9yeSAtIFZpc3VhbCBDb2RpbmcgQVdTIFB1YmxpYyBEYXRhIFNldFxuTmFtZTI6IFByb2plY3QgZGF0YSBmaWxlcyBpbiBhIHB1YmxpYyBidWNrZXRcbkRlc2NyaXB0aW9uOiBUaGUgQWxsZW4gQnJhaW4gT2JzZXJ2YXRvcnkgXHUyMDEzIFZpc3VhbCBDb2RpbmcgaXMgdGhlIGZpcnN0IHN0YW5kYXJkaXplZCBpbiB2aXZvIHN1cnZleSBvZiBwaHlzaW9sb2dpY2FsIGFjdGl2aXR5IGluIHRoZSBtb3VzZSB2aXN1YWwgY29ydGV4LCBmZWF0dXJpbmcgcmVwcmVzZW50YXRpb25zIG9mIHZpc3VhbGx5IGV2b2tlZCBjYWxjaXVtIHJlc3BvbnNlcyBmcm9tIEdDYU1QNi1leHByZXNzaW5nIG5ldXJvbnMgaW4gc2VsZWN0ZWQgY29ydGljYWwgbGF5ZXJzLCB2aXN1YWwgYXJlYXMsIGFuZCBDcmUgbGluZXMuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZ2l0aHViLmNvbS9BbGxlbkluc3RpdHV0ZS9BbGxlblNESy93aWtpL1VzZS10aGUtQWxsZW4tQnJhaW4tT2JzZXJ2YXRvcnktJUUyJTgwJTkzLVZpc3VhbC1Db2Rpbmctb24tQVdTXG5Db250YWN0OiBhd3NwdWJsaWNkYXRhc2V0QGFsbGVuaW5zdGl0dXRlLm9yZ1xuTWFuYWdlZEJ5OiBbQWxsZW4gSW5zdGl0dXRlXShodHRwOi8vd3d3LmFsbGVuaW5zdGl0dXRlLm9yZy8pXG5VcGRhdGVGcmVxdWVuY3k6IEFubnVhbGx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfYWxsZW5fYnJhaW5fb2JzZXJ2YXRvcnkvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9hbGxlbi1icmFpbi1vYnNlcnZhdG9yeS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19hbGxlbl9icmFpbl9vYnNlcnZhdG9yeS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19hbGxlbl9icmFpbl9vYnNlcnZhdG9yeSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfYWxsZW5fYnJhaW5fb2JzZXJ2YXRvcnkiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfYWxsZW5fYnJhaW5fb2JzZXJ2YXRvcnlfdGVtcGxhdGVzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfYWxsZW5fYnJhaW5fb2JzZXJ2YXRvcnlfdGVtcGxhdGVzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2FsbGVuX2JyYWluX29ic2VydmF0b3J5X3RlbXBsYXRlcy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGFsbGVuLWJyYWluLW9ic2VydmF0b3J5LXRlbXBsYXRlcyBCdWNrZXQ6IEFsbGVuIEJyYWluIE9ic2VydmF0b3J5IC0gVmlzdWFsIENvZGluZyBBV1MgUHVibGljIERhdGEgU2V0OiBTYWdlTWFrZXIgbGF1bmNoIHRlbXBsYXRlIHdpdGggczNmcyBidWNrZXQgbW91bnRzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgYWxsZW4tYnJhaW4tb2JzZXJ2YXRvcnktdGVtcGxhdGVzIGJ1Y2tldCBhdCBodHRwczovL2FsbGVuLWJyYWluLW9ic2VydmF0b3J5LXRlbXBsYXRlcy5zMy51cy13ZXN0LTIuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogQWxsZW4gQnJhaW4gT2JzZXJ2YXRvcnkgLSBWaXN1YWwgQ29kaW5nIEFXUyBQdWJsaWMgRGF0YSBTZXRcbk5hbWUyOiBTYWdlTWFrZXIgbGF1bmNoIHRlbXBsYXRlIHdpdGggczNmcyBidWNrZXQgbW91bnRzXG5EZXNjcmlwdGlvbjogVGhlIEFsbGVuIEJyYWluIE9ic2VydmF0b3J5IFx1MjAxMyBWaXN1YWwgQ29kaW5nIGlzIHRoZSBmaXJzdCBzdGFuZGFyZGl6ZWQgaW4gdml2byBzdXJ2ZXkgb2YgcGh5c2lvbG9naWNhbCBhY3Rpdml0eSBpbiB0aGUgbW91c2UgdmlzdWFsIGNvcnRleCwgZmVhdHVyaW5nIHJlcHJlc2VudGF0aW9ucyBvZiB2aXN1YWxseSBldm9rZWQgY2FsY2l1bSByZXNwb25zZXMgZnJvbSBHQ2FNUDYtZXhwcmVzc2luZyBuZXVyb25zIGluIHNlbGVjdGVkIGNvcnRpY2FsIGxheWVycywgdmlzdWFsIGFyZWFzLCBhbmQgQ3JlIGxpbmVzLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2dpdGh1Yi5jb20vQWxsZW5JbnN0aXR1dGUvQWxsZW5TREsvd2lraS9Vc2UtdGhlLUFsbGVuLUJyYWluLU9ic2VydmF0b3J5LSVFMiU4MCU5My1WaXN1YWwtQ29kaW5nLW9uLUFXU1xuQ29udGFjdDogYXdzcHVibGljZGF0YXNldEBhbGxlbmluc3RpdHV0ZS5vcmdcbk1hbmFnZWRCeTogW0FsbGVuIEluc3RpdHV0ZV0oaHR0cDovL3d3dy5hbGxlbmluc3RpdHV0ZS5vcmcvKVxuVXBkYXRlRnJlcXVlbmN5OiBBbm51YWxseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2FsbGVuX2JyYWluX29ic2VydmF0b3J5X3RlbXBsYXRlcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2FsbGVuLWJyYWluLW9ic2VydmF0b3J5LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2FsbGVuX2JyYWluX29ic2VydmF0b3J5X3RlbXBsYXRlcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19hbGxlbl9icmFpbl9vYnNlcnZhdG9yeV90ZW1wbGF0ZXMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2FsbGVuX2JyYWluX29ic2VydmF0b3J5X3RlbXBsYXRlcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19hbWF6b25fcmV2aWV3c19wZHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19hbWF6b25fcmV2aWV3c19wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfYW1hem9uX3Jldmlld3NfcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgYW1hem9uLXJldmlld3MtcGRzIEJ1Y2tldDogQW1hem9uIEN1c3RvbWVyIFJldmlld3MgRGF0YXNldDogVFNWIGZpbGVzIG9mIHJldmlld3MiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBhbWF6b24tcmV2aWV3cy1wZHMgYnVja2V0IGF0IGh0dHBzOi8vYW1hem9uLXJldmlld3MtcGRzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBBbWF6b24gQ3VzdG9tZXIgUmV2aWV3cyBEYXRhc2V0XG5OYW1lMjogVFNWIGZpbGVzIG9mIHJldmlld3NcbkRlc2NyaXB0aW9uOiBBbWF6b24gQ3VzdG9tZXIgUmV2aWV3cyAoYS5rLmEuIFByb2R1Y3QgUmV2aWV3cykgaXMgb25lIG9mIEFtYXpvblx1MjAxOXMgaWNvbmljIHByb2R1Y3RzLiBJbiBhIHBlcmlvZCBvZiBvdmVyIHR3byBkZWNhZGVzIHNpbmNlIHRoZSBmaXJzdCByZXZpZXcgaW4gMTk5NSwgbWlsbGlvbnMgb2YgQW1hem9uIGN1c3RvbWVycyBoYXZlIGNvbnRyaWJ1dGVkIG92ZXIgYSBodW5kcmVkIG1pbGxpb24gcmV2aWV3cyB0byBleHByZXNzIG9waW5pb25zIGFuZCBkZXNjcmliZSB0aGVpciBleHBlcmllbmNlcyByZWdhcmRpbmcgcHJvZHVjdHMgb24gdGhlIEFtYXpvbi5jb20gd2Vic2l0ZS4gT3ZlciAxMzArIG1pbGxpb24gY3VzdG9tZXIgcmV2aWV3cyBhcmUgYXZhaWxhYmxlIHRvIHJlc2VhcmNoZXJzIGFzIHBhcnQgb2YgdGhpcyBkYXRhc2V0LlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL3MzLmFtYXpvbmF3cy5jb20vYW1hem9uLXJldmlld3MtcGRzL3JlYWRtZS5odG1sXG5Db250YWN0OiBjdXN0b21lci1yZXZpZXctZGF0YXNldEBhbWF6b24uY29tXG5NYW5hZ2VkQnk6IFtBbWF6b25dKGh0dHBzOi8vd3d3LmFtYXpvbi5jb20vKVxuVXBkYXRlRnJlcXVlbmN5OiBOb3QgZGVmaW5lZFxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2FtYXpvbl9yZXZpZXdzX3Bkcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2FtYXpvbi1yZXZpZXdzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2FtYXpvbl9yZXZpZXdzX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19hbWF6b25fcmV2aWV3c19wZHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2FtYXpvbl9yZXZpZXdzX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19hdmdfa2l0dGkiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19hdmdfa2l0dGkuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfYXZnX2tpdHRpLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgYXZnLWtpdHRpIEJ1Y2tldDogS0lUVEkgVmlzaW9uIEJlbmNobWFyayBTdWl0ZSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGF2Zy1raXR0aSBidWNrZXQgYXQgaHR0cHM6Ly9hdmcta2l0dGkuczMuZXUtY2VudHJhbC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IEtJVFRJIFZpc2lvbiBCZW5jaG1hcmsgU3VpdGVcbk5hbWUyOiBodHRwOi8vd3d3LmN2bGlicy5uZXQvZGF0YXNldHMva2l0dGkvcmF3X2RhdGEucGhwXG5EZXNjcmlwdGlvbjogRGF0YXNldCBhbmQgYmVuY2htYXJrcyBmb3IgY29tcHV0ZXIgdmlzaW9uIHJlc2VhcmNoIGluIHRoZSBjb250ZXh0IG9mIGF1dG9ub21vdXMgZHJpdmluZy4gVGhlIGRhdGFzZXQgaGFzIGJlZW4gcmVjb3JkZWQgaW4gYW5kIGFyb3VuZCB0aGUgY2l0eSBvZiBLYXJsc3J1aGUsIEdlcm1hbnkgdXNpbmcgdGhlIG1vYmlsZSBwbGF0Zm9ybSBBbm5pZVdheSAoVlcgc3RhdGlvbiB3YWdvbikgd2hpY2ggaGFzIGJlZW4gZXF1aXBwZWQgd2l0aCBzZXZlcmFsIFJHQiBhbmQgbW9ub2Nocm9tZSBjYW1lcmFzLCBhIFZlbG9keW5lIEhETCA2NCBsYXNlciBzY2FubmVyIGFzIHdlbGwgYXMgYW4gYWNjdXJhdGUgUlRLIGNvcnJlY3RlZCBHUFMvSU1VIGxvY2FsaXphdGlvbiB1bml0LiBUaGUgZGF0YXNldCBoYXMgYmVlbiBjcmVhdGVkIGZvciBjb21wdXRlciB2aXNpb24gYW5kIG1hY2hpbmUgbGVhcm5pbmcgcmVzZWFyY2ggb24gc3RlcmVvLCBvcHRpY2FsIGZsb3csIHZpc3VhbCBvZG9tZXRyeSwgc2VtYW50aWMgc2VnbWVudGF0aW9uLCBzZW1hbnRpYyBpbnN0YW5jZSBzZWdtZW50YXRpb24sIHJvYWQgc2VnbWVudGF0aW9uLCBzaW5nbGUgaW1hZ2UgZGVwdGggcHJlZGljdGlvbiwgZGVwdGggbWFwIGNvbXBsZXRpb24sIDJEIGFuZCAzRCBvYmplY3QgZGV0ZWN0aW9uIGFuZCBvYmplY3QgdHJhY2tpbmcuIEluIGFkZGl0aW9uLCBzZXZlcmFsIHJhdyBkYXRhIHJlY29yZGluZ3MgYXJlIHByb3ZpZGVkLiBUaGUgZGF0YXNldHMgYXJlIGNhcHR1cmVkIGJ5IGRyaXZpbmcgYXJvdW5kIHRoZSBtaWQtc2l6ZSBjaXR5IG9mIEthcmxzcnVoZSwgaW4gcnVyYWwgYXJlYXMgYW5kIG9uIGhpZ2h3YXlzLiBVcCB0byAxNSBjYXJzIGFuZCAzMCBwZWRlc3RyaWFucyBhcmUgdmlzaWJsZSBwZXIgaW1hZ2UuXG5cbkRvY3VtZW50YXRpb246IGh0dHA6Ly93d3cuY3ZsaWJzLm5ldC9kYXRhc2V0cy9raXR0aS9cbkNvbnRhY3Q6IGh0dHA6Ly93d3cuY3ZsaWJzLm5ldC9wZW9wbGUucGhwXG5VcGRhdGVGcmVxdWVuY3k6IE5vdCB1cGRhdGVkXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfYXZnX2tpdHRpL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mva2l0dGkvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfYXZnX2tpdHRpLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2F2Z19raXR0aSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfYXZnX2tpdHRpIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2F3c19lYXJ0aF9tb19hdG1vc3BoZXJpY19tb2dyZXBzX2dfcHJkIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfYXdzX2VhcnRoX21vX2F0bW9zcGhlcmljX21vZ3JlcHNfZ19wcmQuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfYXdzX2VhcnRoX21vX2F0bW9zcGhlcmljX21vZ3JlcHNfZ19wcmQvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBhd3MtZWFydGgtbW8tYXRtb3NwaGVyaWMtbW9ncmVwcy1nLXByZCBCdWNrZXQ6IFVLIE1ldCBPZmZpY2UgQXRtb3NwaGVyaWMgRGV0ZXJtaW5pc3RpYyBhbmQgUHJvYmFiaWxpc3RpYyBGb3JlY2FzdHM6IFtNZXQgT2ZmaWNlIEdsb2JhbCBhbmQgUmVnaW9uYWwgRW5zZW1ibGUgUHJlZGljdGlvbiBTeXN0ZW0gKEdsb2JhbCkgLSBNT0dSRVBTLUddKGh0dHBzOi8vd3d3Lm1ldG9mZmljZS5nb3YudWsvYmluYXJpZXMvY29udGVudC9hc3NldHMvbWV0b2ZmaWNlZ292dWsvcGRmL2RhdGEvbW9ncmVwcy1nLXBhcmFtZXRlcnMtbWF5LTIwMTkucGRmKSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGF3cy1lYXJ0aC1tby1hdG1vc3BoZXJpYy1tb2dyZXBzLWctcHJkIGJ1Y2tldCBhdCBodHRwczovL2F3cy1lYXJ0aC1tby1hdG1vc3BoZXJpYy1tb2dyZXBzLWctcHJkLnMzLmV1LXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBVSyBNZXQgT2ZmaWNlIEF0bW9zcGhlcmljIERldGVybWluaXN0aWMgYW5kIFByb2JhYmlsaXN0aWMgRm9yZWNhc3RzXG5OYW1lMjogW01ldCBPZmZpY2UgR2xvYmFsIGFuZCBSZWdpb25hbCBFbnNlbWJsZSBQcmVkaWN0aW9uIFN5c3RlbSAoR2xvYmFsKSAtIE1PR1JFUFMtR10oaHR0cHM6Ly93d3cubWV0b2ZmaWNlLmdvdi51ay9iaW5hcmllcy9jb250ZW50L2Fzc2V0cy9tZXRvZmZpY2Vnb3Z1ay9wZGYvZGF0YS9tb2dyZXBzLWctcGFyYW1ldGVycy1tYXktMjAxOS5wZGYpXG5EZXNjcmlwdGlvbjogTWV0ZW9yb2xvZ2ljYWwgZGF0YSByZXVzZXJzIG5vdyBoYXZlIGFuIGV4Y2l0aW5nIG9wcG9ydHVuaXR5IHRvIHNhbXBsZSwgZXhwZXJpbWVudCBhbmQgZXZhbHVhdGUgTWV0IE9mZmljZSBhdG1vc3BoZXJpYyBtb2RlbCBkYXRhLCB3aGlsc3QgYWxzbyBleHBlcmllbmNpbmcgYSB0cmFuc2Zvcm1hdGl2ZSBtZXRob2Qgb2YgcmVxdWVzdGluZyBkYXRhIHZpYSBSZXN0ZnVsIEFQSXMgb24gQVdTLiBBbGwgYWhlYWQgb2YgTWV0IE9mZmljZVx1MjAxOXMgb3duIG9wZXJhdGlvbmFsbHkgc3VwcG9ydGVkIEFQSSBwbGF0Zm9ybSB0aGF0IHdpbGwgYmUgbGF1bmNoZWQgaW4gbGF0ZSAyMDE5LlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2dpdGh1Yi5jb20vTWV0T2ZmaWNlL2F3cy1lYXJ0aC1leGFtcGxlc1xuQ29udGFjdDogaHR0cHM6Ly93d3cubWV0b2ZmaWNlLmdvdi51ay9hYm91dC11cy9jb250YWN0XG5VcGRhdGVGcmVxdWVuY3k6IERhaWx5ICh3aXRoIDI0IGhvdXIgZGVsYXkpXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfYXdzX2VhcnRoX21vX2F0bW9zcGhlcmljX21vZ3JlcHNfZ19wcmQvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy91ay1tZXQtb2ZmaWNlLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2F3c19lYXJ0aF9tb19hdG1vc3BoZXJpY19tb2dyZXBzX2dfcHJkLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2F3c19lYXJ0aF9tb19hdG1vc3BoZXJpY19tb2dyZXBzX2dfcHJkJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19hd3NfZWFydGhfbW9fYXRtb3NwaGVyaWNfbW9ncmVwc19nX3ByZCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19hd3NfZ3NvZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2F3c19nc29kLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2F3c19nc29kLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgYXdzLWdzb2QgQnVja2V0OiBHbG9iYWwgU3VyZmFjZSBTdW1tYXJ5IG9mIERheTogTWVhc3VyZW1lbnRzIGFuZCBtZXRhZGF0YSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGF3cy1nc29kIGJ1Y2tldCBhdCBodHRwczovL2F3cy1nc29kLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBHbG9iYWwgU3VyZmFjZSBTdW1tYXJ5IG9mIERheVxuTmFtZTI6IE1lYXN1cmVtZW50cyBhbmQgbWV0YWRhdGFcbkRlc2NyaXB0aW9uOiBHU09EIGlzIGEgY29sbGVjdGlvbiBvZiBkYWlseSB3ZWF0aGVyIG1lYXN1cmVtZW50cyAodGVtcGVyYXR1cmUsIHdpbmQgc3BlZWQsIGh1bWlkaXR5LCBwcmVzc3VyZSwgYW5kIG1vcmUpIGZyb20gOTAwMCsgd2VhdGhlciBzdGF0aW9ucyBhcm91bmQgdGhlIHdvcmxkLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL3d3dy5uY2RjLm5vYWEuZ292L1xuQ29udGFjdDogaHR0cHM6Ly93d3cubmNkYy5ub2FhLmdvdi9cblVwZGF0ZUZyZXF1ZW5jeTogQ3VycmVudGx5IHVwZGF0ZWQgaW5mcmVxdWVudGx5LiBMYXN0IHVwZGF0ZWQgb24gU2VwdGVtYmVyIDEzLCAyMDE2LlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2F3c19nc29kL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvbm9hYS1nc29kLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2F3c19nc29kLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2F3c19nc29kJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19hd3NfZ3NvZCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19icm9hZF9yZWZlcmVuY2VzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfYnJvYWRfcmVmZXJlbmNlcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19icm9hZF9yZWZlcmVuY2VzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgYnJvYWQtcmVmZXJlbmNlcyBCdWNrZXQ6IEJyb2FkIEdlbm9tZSBSZWZlcmVuY2VzOiBUaGlzIGRhdGFzZXQgaW5jbHVkZXMgdHdvIGh1bWFuIGdlbm9tZSByZWZlcmVuY2VzIGFzc2VtYmxlZCBieSB0aGUgR2Vub21lIFJlZmVyZW5jZSBDb25zb3J0aXVtOiBIZzE5IGFuZCBIZzM4LiIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGJyb2FkLXJlZmVyZW5jZXMgYnVja2V0IGF0IGh0dHBzOi8vYnJvYWQtcmVmZXJlbmNlcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogQnJvYWQgR2Vub21lIFJlZmVyZW5jZXNcbk5hbWUyOiBUaGlzIGRhdGFzZXQgaW5jbHVkZXMgdHdvIGh1bWFuIGdlbm9tZSByZWZlcmVuY2VzIGFzc2VtYmxlZCBieSB0aGUgR2Vub21lIFJlZmVyZW5jZSBDb25zb3J0aXVtOiBIZzE5IGFuZCBIZzM4LlxuRGVzY3JpcHRpb246IEJyb2FkIG1haW50YWluZWQgaHVtYW4gZ2Vub21lIHJlZmVyZW5jZSBidWlsZHMgaGcxOS9oZzM4IGFuZCBkZWNveSByZWZlcmVuY2VzLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL3MzLmFtYXpvbmF3cy5jb20vYnJvYWQtcmVmZXJlbmNlcy9icm9hZC1yZWZlcmVuY2VzLXJlYWRtZS5odG1sXG5Db250YWN0OiBoZW5zb25jQGJyb2FkaW5zdGl0dXRlLm9yZ1xuTWFuYWdlZEJ5OiBCcm9hZCBJbnN0aXR1dGVcblVwZGF0ZUZyZXF1ZW5jeTogTW9udGhseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2Jyb2FkX3JlZmVyZW5jZXMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9icm9hZC1yZWZlcmVuY2VzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2Jyb2FkX3JlZmVyZW5jZXMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfYnJvYWRfcmVmZXJlbmNlcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfYnJvYWRfcmVmZXJlbmNlcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19jYmVyc19tZXRhX3BkcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2NiZXJzX21ldGFfcGRzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2NiZXJzX21ldGFfcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgY2JlcnMtbWV0YS1wZHMgQnVja2V0OiBDQkVSUyBvbiBBV1M6IENCRVJTIG1ldGFkYXRhIChRdWlja2xvb2tzLCBtZXRhZGF0YSkiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBjYmVycy1tZXRhLXBkcyBidWNrZXQgYXQgaHR0cHM6Ly9jYmVycy1tZXRhLXBkcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogQ0JFUlMgb24gQVdTXG5OYW1lMjogQ0JFUlMgbWV0YWRhdGEgKFF1aWNrbG9va3MsIG1ldGFkYXRhKVxuRGVzY3JpcHRpb246IFRoaXMgcHJvamVjdCBjcmVhdGVzIGEgUzMgcmVwb3NpdG9yeSB3aXRoIGltYWdlcnkgYWNxdWlyZWQgYnkgdGhlIENoaW5hLUJyYXppbCBFYXJ0aCBSZXNvdXJjZXMgU2F0ZWxsaXRlIChDQkVSUykuIFRoZSBpbWFnZSBmaWxlcyBhcmUgcmVjb3JkZWQgYW5kIHByb2Nlc3NlZCBieSBJbnN0aXR1dG8gTmFjaW9uYWwgZGUgUGVzcXVpc2EgRXNwYWNpYWlzIChJTlBFKSBhbmQgYXJlIGNvbnZlcnRlZCB0byBDbG91ZCBPcHRpbWl6ZWQgR2VvdGlmZiBmb3JtYXQgaW4gb3JkZXIgdG8gb3B0aW1pemUgaXRzIHVzZSBmb3IgY2xvdWQgYmFzZWQgYXBwbGljYXRpb25zLiBUaGUgcmVwb3NpdG9yeSBjb250YWlucyBhbGwgQ0JFUlMtNCBNVVgsIEFXRkksIFBBTjVNIGFuZCBQQU4xME0gc2NlbmVzIGFjcXVpcmVkIHNpbmNlIHRoZSBzdGFydCBvZiB0aGUgc2F0ZWxsaXRlIG1pc3Npb24gYW5kIGlzIGRhaWx5IHVwZGF0ZWQgd2l0aCBuZXcgc2NlbmVzLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2dpdGh1Yi5jb20vZnJlZGxpcG9yYWNlL2NiZXJzLW9uLWF3c1xuQ29udGFjdDogaHR0cHM6Ly9saXN0cy5vc2dlby5vcmcvbWFpbG1hbi9saXN0aW5mby9jYmVycy1wZHNcbk1hbmFnZWRCeTogW0FNUyBLZXBsZXJdKGh0dHBzOi8vYW1za2VwbGVyLmNvbS8pXG5VcGRhdGVGcmVxdWVuY3k6IERhaWx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfY2JlcnNfbWV0YV9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9jYmVycy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19jYmVyc19tZXRhX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19jYmVyc19tZXRhX3BkcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfY2JlcnNfbWV0YV9wZHMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfY2dpYXJkYXRhIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfY2dpYXJkYXRhLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2NnaWFyZGF0YS8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGNnaWFyZGF0YSBCdWNrZXQ6IENDQUZTLUNsaW1hdGUgRGF0YTogQVJDIEdSSUQsIGFuZCBBUkMgQVNDSUkgZm9ybWF0IGNvbXByZXNzZWQiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBjZ2lhcmRhdGEgYnVja2V0IGF0IGh0dHBzOi8vY2dpYXJkYXRhLnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBDQ0FGUy1DbGltYXRlIERhdGFcbk5hbWUyOiBBUkMgR1JJRCwgYW5kIEFSQyBBU0NJSSBmb3JtYXQgY29tcHJlc3NlZFxuRGVzY3JpcHRpb246IEhpZ2ggcmVzb2x1dGlvbiBjbGltYXRlIGRhdGEgdG8gaGVscCBhc3Nlc3MgdGhlIGltcGFjdHMgb2YgY2xpbWF0ZSBjaGFuZ2UgcHJpbWFyaWx5IG9uIGFncmljdWx0dXJlLiBUaGVzZSBvcGVuIGFjY2VzcyBkYXRhc2V0cyBvZiBjbGltYXRlIHByb2plY3Rpb25zIHdpbGwgaGVscCByZXNlYXJjaGVycyBtYWtlIGNsaW1hdGUgY2hhbmdlIGltcGFjdCBhc3Nlc3NtZW50cy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cDovL3d3dy5jY2Fmcy1jbGltYXRlLm9yZ1xuQ29udGFjdDogaHR0cDovL3d3dy5jY2Fmcy1jbGltYXRlLm9yZy9jb250YWN0L1xuVXBkYXRlRnJlcXVlbmN5OiBFdmVyeSB0aHJlZSBtb250aHNcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19jZ2lhcmRhdGEvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9jZ2lhcmRhdGEvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfY2dpYXJkYXRhLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2NnaWFyZGF0YSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfY2dpYXJkYXRhIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2NvbW1vbmNyYXdsIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfY29tbW9uY3Jhd2wuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfY29tbW9uY3Jhd2wvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBjb21tb25jcmF3bCBCdWNrZXQ6IENvbW1vbiBDcmF3bDogQ3Jhd2wgZGF0YSAoV0FSQyBhbmQgQVJDIGZvcm1hdCkiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBjb21tb25jcmF3bCBidWNrZXQgYXQgaHR0cHM6Ly9jb21tb25jcmF3bC5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogQ29tbW9uIENyYXdsXG5OYW1lMjogQ3Jhd2wgZGF0YSAoV0FSQyBhbmQgQVJDIGZvcm1hdClcbkRlc2NyaXB0aW9uOiBBIGNvcnB1cyBvZiB3ZWIgY3Jhd2wgZGF0YSBjb21wb3NlZCBvZiBvdmVyIDI1IGJpbGxpb24gd2ViIHBhZ2VzLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwOi8vY29tbW9uY3Jhd2wub3JnL3RoZS1kYXRhL2dldC1zdGFydGVkL1xuQ29udGFjdDogaHR0cDovL2NvbW1vbmNyYXdsLm9yZy9jb25uZWN0L2NvbnRhY3QtdXMvXG5NYW5hZ2VkQnk6IFtDb21tb24gQ3Jhd2xdKGh0dHA6Ly9jb21tb25jcmF3bC5vcmcvKVxuVXBkYXRlRnJlcXVlbmN5OiBNb250aGx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfY29tbW9uY3Jhd2wvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9jb21tb25jcmF3bC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19jb21tb25jcmF3bC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19jb21tb25jcmF3bCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfY29tbW9uY3Jhd2wiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfY29ybmVsbF9lYXNfZGF0YV9sYWtlIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfY29ybmVsbF9lYXNfZGF0YV9sYWtlLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2Nvcm5lbGxfZWFzX2RhdGFfbGFrZS8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGNvcm5lbGwtZWFzLWRhdGEtbGFrZSBCdWNrZXQ6IENvcm5lbGwgRUFTIERhdGEgTGFrZTogQ29ybmVsbCBFQVMgRGF0YSBMYWtlIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgY29ybmVsbC1lYXMtZGF0YS1sYWtlIGJ1Y2tldCBhdCBodHRwczovL2Nvcm5lbGwtZWFzLWRhdGEtbGFrZS5zMy51cy1lYXN0LTIuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogQ29ybmVsbCBFQVMgRGF0YSBMYWtlXG5OYW1lMjogQ29ybmVsbCBFQVMgRGF0YSBMYWtlXG5EZXNjcmlwdGlvbjogRWFydGggJiBBdG1vc3BoZXJpYyBTY2llbmNlcyBhdCBDb3JuZWxsIFVuaXZlcnNpdHkgaGFzIGNyZWF0ZWQgYSBwdWJsaWMgZGF0YSBsYWtlIG9mIGNsaW1hdGUgZGF0YS4gVGhlIGRhdGEgaXMgc3RvcmVkIGluIGNvbHVtbmFyIHN0b3JhZ2UgZm9ybWF0cyAoT1JDKSB0byBtYWtlIGl0IHN0cmFpZ2h0Zm9yd2FyZCB0byBxdWVyeSB1c2luZyBzdGFuZGFyZCB0b29scyBsaWtlIEFtYXpvbiBBdGhlbmEgb3IgQXBhY2hlIFNwYXJrLiBUaGUgZGF0YSBpdHNlbGYgaXMgb3JpZ2luYWxseSBpbnRlbmRlZCB0byBiZSB1c2VkIGZvciBidWlsZGluZyBkZWNpc2lvbiBzdXBwb3J0IHRvb2xzIGZvciBmYXJtZXJzIGFuZCBkaWdpdGFsIGFncmljdWx0dXJlLiBUaGUgZmlyc3QgZGF0YXNldCBpcyB0aGUgaGlzdG9yaWNhbCBOREZEIC8gTkRHRCBkYXRhIGRpc3RyaWJ1dGVkIGJ5IE5DRVAgLyBOT0FBIC8gTldTLiBUaGUgTkRGRCAoTmF0aW9uYWwgRGlnaXRhbCBGb3JlY2FzdCBEYXRhYmFzZSkgYW5kIE5ER0QgKE5hdGlvbmFsIERpZ2l0YWwgR3VpZGFuY2UgRGF0YWJhc2UpIGNvbnRhaW4gZ3JpZGRlZCBmb3JlY2FzdHMgYW5kIG9ic2VydmF0aW9ucyBhdCAyLjVrbSByZXNvbHV0aW9uIGZvciB0aGUgQ29udGlndW91cyBVbml0ZWQgU3RhdGVzIChDT05VUykuIFRoZXJlIGFyZSBhbHNvIDVrbSBncmlkcyBmb3Igc2V2ZXJhbCBzbWFsbGVyIFVTIHJlZ2lvbnMgYW5kIG5vbi1jb250aW5ndW91cyB0ZXJyaXRvcmllcywgc3VjaCBhcyBIYXdhaWksIEd1YW0sIFB1ZXJ0byBSaWNvIGFuZCBBbGFza2EuIE5PQUEgZGlzdHJpYnV0ZXMgYXJjaGl2ZXMgb2YgdGhlIE5ERkQvTkRHRCB2aWEgaXRzIE5PQUEgT3BlcmF0aW9uYWwgTW9kZWwgQXJjaGl2ZSBhbmQgRGlzdHJpYnV0aW9uIFN5c3RlbSAoTk9NQURTKSBpbiBHcmliMiBmb3JtYXQuIFRoZSBkYXRhIGhhcyBiZWVuIGNvbnZlcnRlZCB0byBPUkMgdG8gb3B0aW1pemUgc3RvcmFnZSBzcGFjZSBhbmQgdG8sIG1vcmUgaW1wb3J0YW50bHksIHNpbXBsaWZ5IGRhdGEgYWNjZXNzIHZpYSBzdGFuZGFyZCBkYXRhIGFuYWx5dGljcyB0b29scy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kYXRhbGFrZS5lYXMuY29ybmVsbC5lZHUvXG5Db250YWN0OiBkaWdpdGFsYWdAY29ybmVsbC5lZHVcblVwZGF0ZUZyZXF1ZW5jeTogSG91cmx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfY29ybmVsbF9lYXNfZGF0YV9sYWtlL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvY29ybmVsbC1lYXMtZGF0YS1sYWtlLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2Nvcm5lbGxfZWFzX2RhdGFfbGFrZS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19jb3JuZWxsX2Vhc19kYXRhX2xha2Umc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2Nvcm5lbGxfZWFzX2RhdGFfbGFrZSJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19jc2VfY2ljX2lkczIwMTgiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19jc2VfY2ljX2lkczIwMTguZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfY3NlX2NpY19pZHMyMDE4LyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgY3NlLWNpYy1pZHMyMDE4IEJ1Y2tldDogQSBSZWFsaXN0aWMgQ3liZXIgRGVmZW5zZSBEYXRhc2V0IChDU0UtQ0lDLUlEUzIwMTgpOiBOZXR3b3JrIHRyYWZmaWMgYW5kIGxvZyBmaWxlcyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGNzZS1jaWMtaWRzMjAxOCBidWNrZXQgYXQgaHR0cHM6Ly9jc2UtY2ljLWlkczIwMTguczMuY2EtY2VudHJhbC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IEEgUmVhbGlzdGljIEN5YmVyIERlZmVuc2UgRGF0YXNldCAoQ1NFLUNJQy1JRFMyMDE4KVxuTmFtZTI6IE5ldHdvcmsgdHJhZmZpYyBhbmQgbG9nIGZpbGVzXG5EZXNjcmlwdGlvbjogVGhpcyBkYXRhc2V0IGlzIHRoZSByZXN1bHQgb2YgYSBjb2xsYWJvcmF0aXZlIHByb2plY3QgYmV0d2VlbiB0aGUgQ29tbXVuaWNhdGlvbnMgU2VjdXJpdHkgRXN0YWJsaXNobWVudCAoQ1NFKSBhbmQgVGhlIENhbmFkaWFuIEluc3RpdHV0ZSBmb3IgQ3liZXJzZWN1cml0eSAoQ0lDKSB0aGF0IHVzZSB0aGUgbm90aW9uIG9mIHByb2ZpbGVzIHRvIGdlbmVyYXRlIGN5YmVyc2VjdXJpdHkgZGF0YXNldCBpbiBhIHN5c3RlbWF0aWMgbWFubmVyLiBJdCBpbmNsdWlkZXMgYSBkZXRhaWxlZCBkZXNjcmlwdGlvbiBvZiBpbnRydXNpb25zIGFsb25nIHdpdGggYWJzdHJhY3QgZGlzdHJpYnV0aW9uIG1vZGVscyBmb3IgYXBwbGljYXRpb25zLCBwcm90b2NvbHMsIG9yIGxvd2VyIGxldmVsIG5ldHdvcmsgZW50aXRpZXMuIFRoZSBkYXRhc2V0IGluY2x1ZGVzIHNldmVuIGRpZmZlcmVudCBhdHRhY2sgc2NlbmFyaW9zLCBuYW1lbHkgQnJ1dGUtZm9yY2UsIEhlYXJ0YmxlZWQsIEJvdG5ldCwgRG9TLCBERG9TLCBXZWIgYXR0YWNrcywgYW5kIGluZmlsdHJhdGlvbiBvZiB0aGUgbmV0d29yayBmcm9tIGluc2lkZS4gVGhlIGF0dGFja2luZyBpbmZyYXN0cnVjdHVyZSBpbmNsdWRlcyA1MCBtYWNoaW5lcyBhbmQgdGhlIHZpY3RpbSBvcmdhbml6YXRpb24gaGFzIDUgZGVwYXJ0bWVudHMgaW5jbHVkZXMgNDIwIFBDcyBhbmQgMzAgc2VydmVycy4gVGhpcyBkYXRhc2V0IGluY2x1ZGVzIHRoZSBuZXR3b3JrIHRyYWZmaWMgYW5kIGxvZyBmaWxlcyBvZiBlYWNoIG1hY2hpbmUgZnJvbSB0aGUgdmljdGltIHNpZGUsIGFsb25nIHdpdGggODAgbmV0d29yayB0cmFmZmljIGZlYXR1cmVzIGV4dHJhY3RlZCBmcm9tIGNhcHR1cmVkIHRyYWZmaWMgdXNpbmcgQ0lDRmxvd01ldGVyLVYzLiBGb3IgbW9yZSBpbmZvcm1hdGlvbiBvbiB0aGUgY3JlYXRpb24gb2YgdGhpcyBkYXRhc2V0LCBzZWUgdGhpcyBwYXBlciBieSByZXNlYXJjaGVycyBhdCB0aGUgQ2FuYWRpYW4gSW5zdGl0dXRlIGZvciBDeWJlcnNlY3VyaXR5IChDSUMpIGFuZCB0aGUgVW5pdmVyc2l0eSBvZiBOZXcgQnJ1bnN3aWNrIChVTkIpOiBbVG93YXJkIEdlbmVyYXRpbmcgYSBOZXcgSW50cnVzaW9uIERldGVjdGlvbiBEYXRhc2V0IGFuZCBJbnRydXNpb24gVHJhZmZpYyBDaGFyYWN0ZXJpemF0aW9uXShodHRwOi8vd3d3LnNjaXRlcHJlc3Mub3JnL1BhcGVycy8yMDE4LzY2Mzk4LzY2Mzk4LnBkZikuXG5cbkRvY3VtZW50YXRpb246IGh0dHA6Ly93d3cudW5iLmNhL2NpYy9kYXRhc2V0cy9pZHMtMjAxOC5odG1sXG5Db250YWN0OiBDSUNAdW5iLmNhXG5VcGRhdGVGcmVxdWVuY3k6IEFubnVhbHlcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19jc2VfY2ljX2lkczIwMTgvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9jc2UtY2ljLWlkczIwMTgvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfY3NlX2NpY19pZHMyMDE4LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2NzZV9jaWNfaWRzMjAxOCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfY3NlX2NpY19pZHMyMDE4Il0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2N5dG9kYXRhIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfY3l0b2RhdGEuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfY3l0b2RhdGEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBjeXRvZGF0YSBCdWNrZXQ6IENlbGwgUGFpbnRpbmcgSW1hZ2UgQ29sbGVjdGlvbjogSW1hZ2VzLCBleHRyYWN0ZWQgZmVhdHVyZXMgYW5kIGFnZ3JlZ2F0ZWQgcHJvZmlsZXMgYXJlIGF2YWlsYWJsZSBhcyBhIFMzIGJ1Y2tldCIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGN5dG9kYXRhIGJ1Y2tldCBhdCBodHRwczovL2N5dG9kYXRhLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBDZWxsIFBhaW50aW5nIEltYWdlIENvbGxlY3Rpb25cbk5hbWUyOiBJbWFnZXMsIGV4dHJhY3RlZCBmZWF0dXJlcyBhbmQgYWdncmVnYXRlZCBwcm9maWxlcyBhcmUgYXZhaWxhYmxlIGFzIGEgUzMgYnVja2V0XG5EZXNjcmlwdGlvbjogVGhlIENlbGwgUGFpbnRpbmcgSW1hZ2UgQ29sbGVjdGlvbiBpcyBhIGNvbGxlY3Rpb24gb2YgZnJlZWx5IGRvd25sb2FkYWJsZSBtaWNyb3Njb3B5IGltYWdlIHNldHMuIENlbGwgUGFpbnRpbmcgaXMgYW4gdW5iaWFzZWQgaGlnaCB0aHJvdWdocHV0IGltYWdpbmcgYXNzYXkgdXNlZCB0byBhbmFseXplIHBlcnR1cmJhdGlvbnMgaW4gY2VsbCBtb2RlbHMuIEluIGFkZGl0aW9uIHRvIHRoZSBpbWFnZXMgdGhlbXNlbHZlcywgZWFjaCBzZXQgaW5jbHVkZXMgYSBkZXNjcmlwdGlvbiBvZiB0aGUgYmlvbG9naWNhbCBhcHBsaWNhdGlvbiBhbmQgc29tZSB0eXBlIG9mIFwiZ3JvdW5kIHRydXRoXCIgKGV4cGVjdGVkIHJlc3VsdHMpLiBSZXNlYXJjaGVycyBhcmUgZW5jb3VyYWdlZCB0byB1c2UgdGhlc2UgaW1hZ2Ugc2V0cyBhcyByZWZlcmVuY2UgcG9pbnRzIHdoZW4gZGV2ZWxvcGluZywgdGVzdGluZywgYW5kIHB1Ymxpc2hpbmcgbmV3IGltYWdlIGFuYWx5c2lzIGFsZ29yaXRobXMgZm9yIHRoZSBsaWZlIHNjaWVuY2VzLiBXZSBob3BlIHRoYXQgdGhlIHRoaXMgZGF0YSBzZXQgd2lsbCBsZWFkIHRvIGEgYmV0dGVyIHVuZGVyc3RhbmRpbmcgb2Ygd2hpY2ggbWV0aG9kcyBhcmUgYmVzdCBmb3IgdmFyaW91cyBiaW9sb2dpY2FsIGltYWdlIGFuYWx5c2lzIGFwcGxpY2F0aW9ucy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9naXRodWIuY29tL2N5dG9kYXRhL2N5dG9kYXRhLWhhY2thdGhvbi0yMDE4XG5Db250YWN0OiBQb3N0IG9uIGh0dHBzOi8vZm9ydW0uaW1hZ2Uuc2MvIGFuZCB0YWcgd2l0aCBcImNlbGxwYWludGluZ1wiXG5VcGRhdGVGcmVxdWVuY3k6IGlycmVndWxhcmx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfY3l0b2RhdGEvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9jZWxsLXBhaW50aW5nLWltYWdlLWNvbGxlY3Rpb24vIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfY3l0b2RhdGEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfY3l0b2RhdGEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2N5dG9kYXRhIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2N6Yl90YWJ1bGFfbXVyaXMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19jemJfdGFidWxhX211cmlzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2N6Yl90YWJ1bGFfbXVyaXMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBjemItdGFidWxhLW11cmlzIEJ1Y2tldDogVGFidWxhIE11cmlzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgY3piLXRhYnVsYS1tdXJpcyBidWNrZXQgYXQgaHR0cHM6Ly9jemItdGFidWxhLW11cmlzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBUYWJ1bGEgTXVyaXNcbk5hbWUyOiBodHRwczovL2dpdGh1Yi5jb20vY3piaW9odWIvdGFidWxhLW11cmlzXG5EZXNjcmlwdGlvbjogVGFidWxhIE11cmlzIGlzIGEgY29tcGVuZGl1bSBvZiBzaW5nbGUgY2VsbCB0cmFuc2NyaXB0b21pYyBkYXRhIGZyb20gdGhlIG1vZGVsIG9yZ2FuaXNtICpNdXMgbXVzY3VsdXMqIGNvbXByaXNpbmcgbW9yZSB0aGFuIDEwMCwwMDAgY2VsbHMgZnJvbSAyMCBvcmdhbnMgYW5kIHRpc3N1ZXMuIFRoZXNlIGRhdGEgcmVwcmVzZW50IGEgbmV3IHJlc291cmNlIGZvciBjZWxsIGJpb2xvZ3ksIHJldmVhbCBnZW5lIGV4cHJlc3Npb24gaW4gcG9vcmx5IGNoYXJhY3Rlcml6ZWQgY2VsbCBwb3B1bGF0aW9ucywgYW5kIGFsbG93IGZvciBkaXJlY3QgYW5kIGNvbnRyb2xsZWQgY29tcGFyaXNvbiBvZiBnZW5lIGV4cHJlc3Npb24gaW4gY2VsbCB0eXBlcyBzaGFyZWQgYmV0d2VlbiB0aXNzdWVzLCBzdWNoIGFzIFQtbHltcGhvY3l0ZXMgYW5kIGVuZG90aGVsaWFsIGNlbGxzIGZyb20gZGlmZmVyZW50IGFuYXRvbWljYWwgbG9jYXRpb25zLiBUd28gZGlzdGluY3QgdGVjaG5pY2FsIGFwcHJvYWNoZXMgd2VyZSB1c2VkIGZvciBtb3N0IG9yZ2Fuczogb25lIGFwcHJvYWNoLCBtaWNyb2ZsdWlkaWMgZHJvcGxldC1iYXNlZCAzXHUyMDE5LWVuZCBjb3VudGluZywgZW5hYmxlZCB0aGUgc3VydmV5IG9mIHRob3VzYW5kcyBvZiBjZWxscyBhdCByZWxhdGl2ZWx5IGxvdyBjb3ZlcmFnZSwgd2hpbGUgdGhlIG90aGVyLCBGQUNTLWJhc2VkIGZ1bGwgbGVuZ3RoIHRyYW5zY3JpcHQgYW5hbHlzaXMsIGVuYWJsZWQgY2hhcmFjdGVyaXphdGlvbiBvZiBjZWxsIHR5cGVzIHdpdGggaGlnaCBzZW5zaXRpdml0eSBhbmQgY292ZXJhZ2UuIFRoZSBjdW11bGF0aXZlIGRhdGEgcHJvdmlkZSB0aGUgZm91bmRhdGlvbiBmb3IgYW4gYXRsYXMgb2YgdHJhbnNjcmlwdG9taWMgY2VsbCBiaW9sb2d5LiBTZWU6IGh0dHBzOi8vd3d3Lm5hdHVyZS5jb20vYXJ0aWNsZXMvczQxNTg2LTAxOC0wNTkwLTRcblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9naXRodWIuY29tL2N6YmlvaHViL3RhYnVsYS1tdXJpcy9ibG9iL21hc3Rlci90YWJ1bGEtbXVyaXMtb24tYXdzLm1kXG5Db250YWN0OiBJZiB5b3UgaGF2ZSBxdWVzdGlvbnMgYWJvdXQgdGhlIGRhdGEsIHlvdSBjYW4gY3JlYXRlIGFuIElzc3VlIGF0IGh0dHBzOi8vZ2l0aHViLmNvbS9jemJpb2h1Yi90YWJ1bGEtbXVyaXMuXG5NYW5hZ2VkQnk6IFtDaGFuIFp1Y2tlcmJlcmcgQmlvaHViXShodHRwczovL3d3dy5jemJpb2h1Yi5vcmcvKVxuVXBkYXRlRnJlcXVlbmN5OiBUaGlzIGlzIHRoZSBmaW5hbCB2ZXJzaW9uIG9mIHRoZSBkYXRhc2V0LCBpdCB3aWxsIG5vdCBiZSB1cGRhdGVkLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2N6Yl90YWJ1bGFfbXVyaXMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy90YWJ1bGEtbXVyaXMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfY3piX3RhYnVsYV9tdXJpcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19jemJfdGFidWxhX211cmlzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19jemJfdGFidWxhX211cmlzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2RhdGFmb3Jnb29kX2ZiX2RhdGEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19kYXRhZm9yZ29vZF9mYl9kYXRhLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2RhdGFmb3Jnb29kX2ZiX2RhdGEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBkYXRhZm9yZ29vZC1mYi1kYXRhIEJ1Y2tldDogSGlnaCBSZXNvbHV0aW9uIFBvcHVsYXRpb24gRGVuc2l0eSBNYXBzICsgRGVtb2dyYXBoaWMgRXN0aW1hdGVzIGJ5IENJRVNJTiBhbmQgRmFjZWJvb2s6IENTViBhbmQgQ2xvdWQtb3B0aW1pemVkIEdlb1RJRkYgZmlsZXMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBkYXRhZm9yZ29vZC1mYi1kYXRhIGJ1Y2tldCBhdCBodHRwczovL2RhdGFmb3Jnb29kLWZiLWRhdGEuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IEhpZ2ggUmVzb2x1dGlvbiBQb3B1bGF0aW9uIERlbnNpdHkgTWFwcyArIERlbW9ncmFwaGljIEVzdGltYXRlcyBieSBDSUVTSU4gYW5kIEZhY2Vib29rXG5OYW1lMjogQ1NWIGFuZCBDbG91ZC1vcHRpbWl6ZWQgR2VvVElGRiBmaWxlc1xuRGVzY3JpcHRpb246IFBvcHVsYXRpb24gZGF0YSBmb3IgYSBzZWxlY3Rpb24gb2YgY291bnRyaWVzLCBhbGxvY2F0ZWQgdG8gMSBhcmNzZWNvbmQgYmxvY2tzIGFuZCBwcm92aWRlZCBpbiBhIGNvbWJpbmF0aW9uIG9mIENTViBhbmQgQ2xvdWQtb3B0aW1pemVkIEdlb1RJRkYgZmlsZXMuIFRoaXMgcmVmaW5lcyBbQ0lFU0lOXHUyMDE5cyBHcmlkZGVkIFBvcHVsYXRpb24gb2YgdGhlIFdvcmxkXShodHRwczovL3NlZGFjLmNpZXNpbi5jb2x1bWJpYS5lZHUvZGF0YS9jb2xsZWN0aW9uL2dwdy12NCkgdXNpbmcgbWFjaGluZSBsZWFybmluZyBtb2RlbHMgb24gaGlnaC1yZXNvbHV0aW9uIHdvcmxkd2lkZSBEaWdpdGFsIEdsb2JlIHNhdGVsbGl0ZSBpbWFnZXJ5LiBDSUVTSU4gcG9wdWxhdGlvbiBjb3VudHMgYWdncmVnYXRlZCBmcm9tIHdvcmxkd2lkZSBjZW5zdXMgZGF0YSBhcmUgYWxsb2NhdGVkIHRvIGJsb2NrcyB3aGVyZSBpbWFnZXJ5IGFwcGVhcnMgdG8gY29udGFpbiBidWlsZGluZ3MuXG5cbkRvY3VtZW50YXRpb246IFtQcm9qZWN0IG92ZXJ2aWV3XShodHRwczovL2RhdGFmb3Jnb29kLmZiLmNvbS9wb3B1bGF0aW9uLWRlbnNpdHktbWFwcy1kb2N1bWVudGF0aW9uLykgYW5kIFtkYXRhc2V0IGRlc2NyaXB0aW9uXShodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL2RhdGFmb3Jnb29kLWZiLWRhdGEvcmVhZG1lLmh0bWwpXG5Db250YWN0OiBkaXNhc3Rlcm1hcHNAZmIuY29tXG5NYW5hZ2VkQnk6IHxcblVwZGF0ZUZyZXF1ZW5jeTogUXVhcnRlcmx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZGF0YWZvcmdvb2RfZmJfZGF0YS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2RhdGFmb3Jnb29kLWZiLWhyc2wvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZGF0YWZvcmdvb2RfZmJfZGF0YS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19kYXRhZm9yZ29vZF9mYl9kYXRhJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19kYXRhZm9yZ29vZF9mYl9kYXRhIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2RhdGFzZXRzX2VsYXN0aWNtYXByZWR1Y2VfbmdyYW1zX2Jvb2tzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZGF0YXNldHNfZWxhc3RpY21hcHJlZHVjZV9uZ3JhbXNfYm9va3MuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZGF0YXNldHNfZWxhc3RpY21hcHJlZHVjZV9uZ3JhbXNfYm9va3MvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBkYXRhc2V0cy5lbGFzdGljbWFwcmVkdWNlIEJ1Y2tldCB3aXRoIHByZWZpeD1uZ3JhbXMvYm9va3MvOiBHb29nbGUgQm9va3MgTmdyYW1zOiBBIGRhdGEgc2V0IGNvbnRhaW5pbmcgR29vZ2xlIEJvb2tzIG4tZ3JhbSBjb3Jwb3JhIGluIGEgSGFkb29wIGZyaWVuZGx5IGZpbGUgZm9ybWF0LiIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGRhdGFzZXRzLmVsYXN0aWNtYXByZWR1Y2UgYnVja2V0IGF0IGh0dHBzOi8vZGF0YXNldHMuZWxhc3RpY21hcHJlZHVjZS5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gd2l0aCBwcmVmaXg9bmdyYW1zL2Jvb2tzLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBHb29nbGUgQm9va3MgTmdyYW1zXG5OYW1lMjogQSBkYXRhIHNldCBjb250YWluaW5nIEdvb2dsZSBCb29rcyBuLWdyYW0gY29ycG9yYSBpbiBhIEhhZG9vcCBmcmllbmRseSBmaWxlIGZvcm1hdC5cbkRlc2NyaXB0aW9uOiBOLWdyYW1zIGFyZSBmaXhlZCBzaXplIHR1cGxlcyBvZiBpdGVtcy4gSW4gdGhpcyBjYXNlIHRoZSBpdGVtcyBhcmUgd29yZHMgZXh0cmFjdGVkIGZyb20gdGhlIEdvb2dsZSBCb29rcyBjb3JwdXMuIFRoZSBuIHNwZWNpZmllcyB0aGUgbnVtYmVyIG9mIGVsZW1lbnRzIGluIHRoZSB0dXBsZSwgc28gYSA1LWdyYW0gY29udGFpbnMgZml2ZSB3b3JkcyBvciBjaGFyYWN0ZXJzLiBUaGUgbi1ncmFtcyBpbiB0aGlzIGRhdGFzZXQgd2VyZSBwcm9kdWNlZCBieSBwYXNzaW5nIGEgc2xpZGluZyB3aW5kb3cgb2YgdGhlIHRleHQgb2YgYm9va3MgYW5kIG91dHB1dHRpbmcgYSByZWNvcmQgZm9yIGVhY2ggbmV3IHRva2VuLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwOi8vYm9va3MuZ29vZ2xlLmNvbS9uZ3JhbXMvXG5Db250YWN0OiBodHRwczovL2Jvb2tzLmdvb2dsZS5jb20vbmdyYW1zXG5VcGRhdGVGcmVxdWVuY3k6IE5vdCB1cGRhdGVkXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZGF0YXNldHNfZWxhc3RpY21hcHJlZHVjZV9uZ3JhbXNfYm9va3MvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9nb29nbGUtbmdyYW1zLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2RhdGFzZXRzX2VsYXN0aWNtYXByZWR1Y2VfbmdyYW1zX2Jvb2tzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2RhdGFzZXRzX2VsYXN0aWNtYXByZWR1Y2VfbmdyYW1zX2Jvb2tzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19kYXRhc2V0c19lbGFzdGljbWFwcmVkdWNlX25ncmFtc19ib29rcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19kYXRhd29ybGRfbGlua2VkX2FjcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2RhdGF3b3JsZF9saW5rZWRfYWNzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2RhdGF3b3JsZF9saW5rZWRfYWNzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgZGF0YXdvcmxkLWxpbmtlZC1hY3MgQnVja2V0OiBVLlMuIENlbnN1cyBBQ1MgUFVNUzogUFVNUyBkYXRhIGluIFR1cnRsZSAtIFRlcnNlIFJERiBUcmlwbGUgTGFuZ3VhZ2UgKC50dGwpIGZvcm1hdCBhbG9uZyB3aXRoIG9udG9sb2dpZXMgYW5kIG90aGVyIGNvbXBsZW1lbnRhcnkgZGF0YS4iLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBkYXRhd29ybGQtbGlua2VkLWFjcyBidWNrZXQgYXQgaHR0cHM6Ly9kYXRhd29ybGQtbGlua2VkLWFjcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogVS5TLiBDZW5zdXMgQUNTIFBVTVNcbk5hbWUyOiBQVU1TIGRhdGEgaW4gVHVydGxlIC0gVGVyc2UgUkRGIFRyaXBsZSBMYW5ndWFnZSAoLnR0bCkgZm9ybWF0IGFsb25nIHdpdGggb250b2xvZ2llcyBhbmQgb3RoZXIgY29tcGxlbWVudGFyeSBkYXRhLlxuRGVzY3JpcHRpb246IFUuUy4gQ2Vuc3VzIEJ1cmVhdSBBbWVyaWNhbiBDb21tdW5pdHkgU3VydmV5IChBQ1MpIFB1YmxpYyBVc2UgTWljcm9kYXRhIFNhbXBsZSAoUFVNUykgYXZhaWxhYmxlIGluIGEgbGlua2VkIGRhdGEgZm9ybWF0IHVzaW5nIHRoZSBSZXNvdXJjZSBEZXNjcmlwdGlvbiBGcmFtZXdvcmsgKFJERikgZGF0YSBtb2RlbC5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLmRhdGEud29ybGQvdXNjZW5zdXMvI2FtZXJpY2FuLWNvbW11bml0eS1zdXJ2ZXktbGlua2VkLW9wZW4tZGF0YVxuQ29udGFjdDogaHR0cHM6Ly9kb2NzLmRhdGEud29ybGQvdXNjZW5zdXMvIzYwLS0tY29udGFjdFxuVXBkYXRlRnJlcXVlbmN5OiBZZWFybHksIGFmdGVyIEFDUyAxLXllYXIgUFVNUyByYXcgZGF0YSBhcmUgcmVsZWFzZWRcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19kYXRhd29ybGRfbGlua2VkX2Fjcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2NlbnN1cy1kYXRhd29ybGQtcHVtcy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19kYXRhd29ybGRfbGlua2VkX2Fjcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19kYXRhd29ybGRfbGlua2VkX2FjcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZGF0YXdvcmxkX2xpbmtlZF9hY3MiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZGNfbGlkYXJfMjAxNSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2RjX2xpZGFyXzIwMTUuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZGNfbGlkYXJfMjAxNS8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGRjLWxpZGFyLTIwMTUgQnVja2V0OiBEaXN0cmljdCBvZiBDb2x1bWJpYSAtIENsYXNzaWZpZWQgUG9pbnQgQ2xvdWQgTGlEQVI6IExBUywgWE1MLCBTSFAiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBkYy1saWRhci0yMDE1IGJ1Y2tldCBhdCBodHRwczovL2RjLWxpZGFyLTIwMTUuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IERpc3RyaWN0IG9mIENvbHVtYmlhIC0gQ2xhc3NpZmllZCBQb2ludCBDbG91ZCBMaURBUlxuTmFtZTI6IExBUywgWE1MLCBTSFBcbkRlcHJlY2F0ZWQ6IFRydWVcbkRlc2NyaXB0aW9uOiBQbGVhc2Ugc2VlIFtoZXJlXShodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9kYy1saWRhcikgZm9yIHRoZSBsYXRlcyBjb250ZW50IGFib3V0IHRoaXMgZGF0YXNldC4gTGlEQVIgcG9pbnQgY2xvdWQgZGF0YSBmb3IgV2FzaGluZ3RvbiwgREMgaXMgYXZhaWxhYmxlIGZvciBhbnlvbmUgdG8gdXNlIG9uIEFtYXpvbiBTMy4gVGhpcyBkYXRhc2V0LCBtYW5hZ2VkIGJ5IHRoZSBPZmZpY2Ugb2YgdGhlIENoaWVmIFRlY2hub2xvZ3kgT2ZmaWNlciAoT0NUTyksIHRocm91Z2ggdGhlIGRpcmVjdGlvbiBvZiB0aGUgRGlzdHJpY3Qgb2YgQ29sdW1iaWEgR0lTIHByb2dyYW0sIGNvbnRhaW5zIHRpbGVkIHBvaW50IGNsb3VkIGRhdGEgZm9yIHRoZSBlbnRpcmUgRGlzdHJpY3QgYWxvbmcgd2l0aCBhc3NvY2lhdGVkIG1ldGFkYXRhLlxuXG5Eb2N1bWVudGF0aW9uOiBbMjAxNSBkYXRhXShodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL2RjLWxpZGFyLTIwMTUvcmVhZG1lLmh0bWwpLCBbMjAxOCBkYXRhXShodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL2RjLWxpZGFyLTIwMTgvcmVhZG1lLmh0bWwpXG5Db250YWN0OiBkY2dpc0BkYy5nb3ZcblVwZGF0ZUZyZXF1ZW5jeTogVGhlIG1vc3QgcmVjZW50IGRhdGEgaXMgZnJvbSAyMDE4IGFuZCAyMDE1IGRhdGEgaXMgYXZhaWxhYmxlIGFzIHdlbGwuIEEgbmV3IGRhdGEgYWNxdWlzaXRpb24gaXMgcGxhbm5lZCBmb3IgMjAyMC5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19kY19saWRhcl8yMDE1L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvZGMtbGlkYXItMjAxNS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19kY19saWRhcl8yMDE1LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2RjX2xpZGFyXzIwMTUmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2RjX2xpZGFyXzIwMTUiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZGNfbGlkYXJfMjAxOCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2RjX2xpZGFyXzIwMTguZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZGNfbGlkYXJfMjAxOC8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGRjLWxpZGFyLTIwMTggQnVja2V0OiBEaXN0cmljdCBvZiBDb2x1bWJpYSAtIENsYXNzaWZpZWQgUG9pbnQgQ2xvdWQgTGlEQVI6IExBUywgWE1MIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgZGMtbGlkYXItMjAxOCBidWNrZXQgYXQgaHR0cHM6Ly9kYy1saWRhci0yMDE4LnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBEaXN0cmljdCBvZiBDb2x1bWJpYSAtIENsYXNzaWZpZWQgUG9pbnQgQ2xvdWQgTGlEQVJcbk5hbWUyOiBMQVMsIFhNTFxuRGVwcmVjYXRlZDogVHJ1ZVxuRGVzY3JpcHRpb246IFBsZWFzZSBzZWUgW2hlcmVdKGh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2RjLWxpZGFyKSBmb3IgdGhlIGxhdGVzIGNvbnRlbnQgYWJvdXQgdGhpcyBkYXRhc2V0LiBMaURBUiBwb2ludCBjbG91ZCBkYXRhIGZvciBXYXNoaW5ndG9uLCBEQyBpcyBhdmFpbGFibGUgZm9yIGFueW9uZSB0byB1c2Ugb24gQW1hem9uIFMzLiBUaGlzIGRhdGFzZXQsIG1hbmFnZWQgYnkgdGhlIE9mZmljZSBvZiB0aGUgQ2hpZWYgVGVjaG5vbG9neSBPZmZpY2VyIChPQ1RPKSwgdGhyb3VnaCB0aGUgZGlyZWN0aW9uIG9mIHRoZSBEaXN0cmljdCBvZiBDb2x1bWJpYSBHSVMgcHJvZ3JhbSwgY29udGFpbnMgdGlsZWQgcG9pbnQgY2xvdWQgZGF0YSBmb3IgdGhlIGVudGlyZSBEaXN0cmljdCBhbG9uZyB3aXRoIGFzc29jaWF0ZWQgbWV0YWRhdGEuXG5cbkRvY3VtZW50YXRpb246IFsyMDE1IGRhdGFdKGh0dHBzOi8vZG9jcy5vcGVuZGF0YS5hd3MvZGMtbGlkYXItMjAxNS9yZWFkbWUuaHRtbCksIFsyMDE4IGRhdGFdKGh0dHBzOi8vZG9jcy5vcGVuZGF0YS5hd3MvZGMtbGlkYXItMjAxOC9yZWFkbWUuaHRtbClcbkNvbnRhY3Q6IGRjZ2lzQGRjLmdvdlxuVXBkYXRlRnJlcXVlbmN5OiBUaGUgbW9zdCByZWNlbnQgZGF0YSBpcyBmcm9tIDIwMTggYW5kIDIwMTUgZGF0YSBpcyBhdmFpbGFibGUgYXMgd2VsbC4gQSBuZXcgZGF0YSBhY3F1aXNpdGlvbiBpcyBwbGFubmVkIGZvciAyMDIwLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2RjX2xpZGFyXzIwMTgvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9kYy1saWRhci0yMDE1LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2RjX2xpZGFyXzIwMTgucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfZGNfbGlkYXJfMjAxOCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZGNfbGlkYXJfMjAxOCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19kZXV0c2NoZV9ib2Vyc2VfZXVyZXhfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZGV1dHNjaGVfYm9lcnNlX2V1cmV4X3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19kZXV0c2NoZV9ib2Vyc2VfZXVyZXhfcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgZGV1dHNjaGUtYm9lcnNlLWV1cmV4LXBkcyBCdWNrZXQ6IERldXRzY2hlIEJcdTAwZjZyc2UgUHVibGljIERhdGFzZXQ6IEV1cmV4IFBEUyBGaWxlcyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGRldXRzY2hlLWJvZXJzZS1ldXJleC1wZHMgYnVja2V0IGF0IGh0dHBzOi8vZGV1dHNjaGUtYm9lcnNlLWV1cmV4LXBkcy5zMy5ldS1jZW50cmFsLTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogRGV1dHNjaGUgQlx1MDBmNnJzZSBQdWJsaWMgRGF0YXNldFxuTmFtZTI6IEV1cmV4IFBEUyBGaWxlc1xuRGVzY3JpcHRpb246IFRoZSBEZXV0c2NoZSBCXHUwMGY2cnNlIFB1YmxpYyBEYXRhIFNldCBjb25zaXN0cyBvZiB0cmFkZSBkYXRhIGFnZ3JlZ2F0ZWQgdG8gb25lIG1pbnV0ZSBpbnRlcnZhbHMgZnJvbSB0aGUgRXVyZXggYW5kIFhldHJhIHRyYWRpbmcgc3lzdGVtcy4gSXQgcHJvdmlkZXMgdGhlIGluaXRpYWwgcHJpY2UsIGxvd2VzdCBwcmljZSwgaGlnaGVzdCBwcmljZSwgZmluYWwgcHJpY2UgYW5kIHZvbHVtZSBmb3IgZXZlcnkgbWludXRlIG9mIHRoZSB0cmFkaW5nIGRheSwgYW5kIGZvciBldmVyeSB0cmFkZWFibGUgc2VjdXJpdHkuICBJZiB5b3UgbmVlZCBoaWdoZXIgcmVzb2x1dGlvbiBkYXRhLCBpbmNsdWRpbmcgdW50cmFkZWQgcHJpY2UgbW92ZW1lbnRzLCBwbGVhc2UgcmVmZXIgdG8gb3VyIGhpc3RvcmljYWwgbWFya2V0IGRhdGEgcHJvZHVjdCBbaGVyZV0oaHR0cDovL3d3dy5ldXJleGNoYW5nZS5jb20vZXhjaGFuZ2UtZW4vbWFya2V0LWRhdGEvaGlzdG9yaWNhbC1kYXRhKS4gIEFsc28sIGJlIHN1cmUgdG8gY2hlY2sgb3V0IG91ciBbZGV2ZWxvcGVyJ3MgcG9ydGFsXShodHRwczovL2NvbnNvbGUuZGV2ZWxvcGVyLmRldXRzY2hlLWJvZXJzZS5jb20vKS5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9naXRodWIuY29tL0RldXRzY2hlLUJvZXJzZS9kYmctcGRzXG5Db250YWN0OiBwZHNAZGV1dHNjaGUtYm9lcnNlLmNvbVxuVXBkYXRlRnJlcXVlbmN5OiBUaGUgZGF0YSBpcyB1cGRhdGVkIGV2ZXJ5IG1pbnV0ZSBkdXJpbmcgdHJhZGluZyBob3Vycy5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19kZXV0c2NoZV9ib2Vyc2VfZXVyZXhfcGRzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvZGV1dHNjaGUtYm9lcnNlLXBkcy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19kZXV0c2NoZV9ib2Vyc2VfZXVyZXhfcGRzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2RldXRzY2hlX2JvZXJzZV9ldXJleF9wZHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2RldXRzY2hlX2JvZXJzZV9ldXJleF9wZHMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZGV1dHNjaGVfYm9lcnNlX3hldHJhX3BkcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2RldXRzY2hlX2JvZXJzZV94ZXRyYV9wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZGV1dHNjaGVfYm9lcnNlX3hldHJhX3Bkcy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGRldXRzY2hlLWJvZXJzZS14ZXRyYS1wZHMgQnVja2V0OiBEZXV0c2NoZSBCXHUwMGY2cnNlIFB1YmxpYyBEYXRhc2V0OiBYZXRyYSBQRFMgRmlsZXMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBkZXV0c2NoZS1ib2Vyc2UteGV0cmEtcGRzIGJ1Y2tldCBhdCBodHRwczovL2RldXRzY2hlLWJvZXJzZS14ZXRyYS1wZHMuczMuZXUtY2VudHJhbC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IERldXRzY2hlIEJcdTAwZjZyc2UgUHVibGljIERhdGFzZXRcbk5hbWUyOiBYZXRyYSBQRFMgRmlsZXNcbkRlc2NyaXB0aW9uOiBUaGUgRGV1dHNjaGUgQlx1MDBmNnJzZSBQdWJsaWMgRGF0YSBTZXQgY29uc2lzdHMgb2YgdHJhZGUgZGF0YSBhZ2dyZWdhdGVkIHRvIG9uZSBtaW51dGUgaW50ZXJ2YWxzIGZyb20gdGhlIEV1cmV4IGFuZCBYZXRyYSB0cmFkaW5nIHN5c3RlbXMuIEl0IHByb3ZpZGVzIHRoZSBpbml0aWFsIHByaWNlLCBsb3dlc3QgcHJpY2UsIGhpZ2hlc3QgcHJpY2UsIGZpbmFsIHByaWNlIGFuZCB2b2x1bWUgZm9yIGV2ZXJ5IG1pbnV0ZSBvZiB0aGUgdHJhZGluZyBkYXksIGFuZCBmb3IgZXZlcnkgdHJhZGVhYmxlIHNlY3VyaXR5LiAgSWYgeW91IG5lZWQgaGlnaGVyIHJlc29sdXRpb24gZGF0YSwgaW5jbHVkaW5nIHVudHJhZGVkIHByaWNlIG1vdmVtZW50cywgcGxlYXNlIHJlZmVyIHRvIG91ciBoaXN0b3JpY2FsIG1hcmtldCBkYXRhIHByb2R1Y3QgW2hlcmVdKGh0dHA6Ly93d3cuZXVyZXhjaGFuZ2UuY29tL2V4Y2hhbmdlLWVuL21hcmtldC1kYXRhL2hpc3RvcmljYWwtZGF0YSkuICBBbHNvLCBiZSBzdXJlIHRvIGNoZWNrIG91dCBvdXIgW2RldmVsb3BlcidzIHBvcnRhbF0oaHR0cHM6Ly9jb25zb2xlLmRldmVsb3Blci5kZXV0c2NoZS1ib2Vyc2UuY29tLykuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZ2l0aHViLmNvbS9EZXV0c2NoZS1Cb2Vyc2UvZGJnLXBkc1xuQ29udGFjdDogcGRzQGRldXRzY2hlLWJvZXJzZS5jb21cblVwZGF0ZUZyZXF1ZW5jeTogVGhlIGRhdGEgaXMgdXBkYXRlZCBldmVyeSBtaW51dGUgZHVyaW5nIHRyYWRpbmcgaG91cnMuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZGV1dHNjaGVfYm9lcnNlX3hldHJhX3Bkcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2RldXRzY2hlLWJvZXJzZS1wZHMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZGV1dHNjaGVfYm9lcnNlX3hldHJhX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19kZXV0c2NoZV9ib2Vyc2VfeGV0cmFfcGRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19kZXV0c2NoZV9ib2Vyc2VfeGV0cmFfcGRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2ViaXJkc3RfZGF0YSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2ViaXJkc3RfZGF0YS5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19lYmlyZHN0X2RhdGEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBlYmlyZHN0LWRhdGEgQnVja2V0OiBlQmlyZCBTdGF0dXMgYW5kIFRyZW5kcyBNb2RlbCBSZXN1bHRzOiBTcGVjaWVzIHJlc3VsdHMgZmlsZXMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBlYmlyZHN0LWRhdGEgYnVja2V0IGF0IGh0dHBzOi8vZWJpcmRzdC1kYXRhLnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBlQmlyZCBTdGF0dXMgYW5kIFRyZW5kcyBNb2RlbCBSZXN1bHRzXG5OYW1lMjogU3BlY2llcyByZXN1bHRzIGZpbGVzXG5EZXNjcmlwdGlvbjogVGhlIGVCaXJkIFN0YXR1cyBhbmQgVHJlbmRzIHByb2plY3QgZ2VuZXJhdGVzIGVzdGltYXRlcyBvZiBiaXJkIG9jY3VycmVuY2UgYW5kIGFidW5kYW5jZSBhdCBhIGhpZ2ggc3BhdGlvdGVtcG9yYWwgcmVzb2x1dGlvbi4gVGhpcyBkYXRhc2V0IHJlcHJlc2VudHMgdGhlIHByaW1hcnkgbW9kZWxlZCByZXN1bHRzIGZyb20gdGhlIGFuYWx5c2lzIHdvcmtmbG93IGFuZCBhcmUgZGVzaWduZWQgZm9yIGZ1cnRoZXIgYW5hbHlzaXMsIHN5bnRoZXNpcywgdmlzdWFsaXphdGlvbiwgYW5kIGV4cGxvcmF0aW9uLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2Nvcm5lbGxsYWJvZm9ybml0aG9sb2d5LmdpdGh1Yi5pby9lYmlyZHN0L2FydGljbGVzL2ViaXJkc3QtaW50cm9kdWN0aW9uLmh0bWxcbkNvbnRhY3Q6IGh0dHBzOi8vaGVscC5lYmlyZC5vcmcvY3VzdG9tZXIvZW4vcG9ydGFsL2VtYWlscy9uZXdcbk1hbmFnZWRCeTogW0Nvcm5lbGwgTGFiIG9mIE9ybml0aG9sb2d5XShodHRwczovL3d3dy5iaXJkcy5jb3JuZWxsLmVkdS9ob21lLylcblVwZGF0ZUZyZXF1ZW5jeTogWWVhcmx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZWJpcmRzdF9kYXRhL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvZWJpcmRzdC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19lYmlyZHN0X2RhdGEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfZWJpcmRzdF9kYXRhJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19lYmlyZHN0X2RhdGEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZWxldmF0aW9uX3RpbGVzX3Byb2QiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19lbGV2YXRpb25fdGlsZXNfcHJvZC5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19lbGV2YXRpb25fdGlsZXNfcHJvZC8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGVsZXZhdGlvbi10aWxlcy1wcm9kIEJ1Y2tldDogVGVycmFpbiBUaWxlczogR3JpZGRlZCBlbGV2YXRpb24gdGlsZXMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBlbGV2YXRpb24tdGlsZXMtcHJvZCBidWNrZXQgYXQgaHR0cHM6Ly9lbGV2YXRpb24tdGlsZXMtcHJvZC5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogVGVycmFpbiBUaWxlc1xuTmFtZTI6IEdyaWRkZWQgZWxldmF0aW9uIHRpbGVzXG5EZXNjcmlwdGlvbjogQSBnbG9iYWwgZGF0YXNldCBwcm92aWRpbmcgYmFyZS1lYXJ0aCB0ZXJyYWluIGhlaWdodHMsIHRpbGVkIGZvciBlYXN5IHVzYWdlIGFuZCBwcm92aWRlZCBvbiBTMy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9tYXB6ZW4uY29tL2RvY3VtZW50YXRpb24vdGVycmFpbi10aWxlcy9cbkNvbnRhY3Q6IGh0dHBzOi8vZ2l0aHViLmNvbS90aWxlemVuL2pvZXJkL2lzc3Vlc1xuVXBkYXRlRnJlcXVlbmN5OiBOZXcgZGF0YSBpcyBhZGRlZCBiYXNlZCBvbiBjb21tdW5pdHkgZmVlZGJhY2tcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19lbGV2YXRpb25fdGlsZXNfcHJvZC9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL3RlcnJhaW4tdGlsZXMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZWxldmF0aW9uX3RpbGVzX3Byb2QucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfZWxldmF0aW9uX3RpbGVzX3Byb2Qmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2VsZXZhdGlvbl90aWxlc19wcm9kIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2VuY29kZV9wdWJsaWMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19lbmNvZGVfcHVibGljLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2VuY29kZV9wdWJsaWMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBlbmNvZGUtcHVibGljIEJ1Y2tldDogRW5jeWNsb3BlZGlhIG9mIEROQSBFbGVtZW50cyAoRU5DT0RFKTogUmVsZWFzZWQgYW5kIGFyY2hpdmVkIEVOQ09ERSBkYXRhIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgZW5jb2RlLXB1YmxpYyBidWNrZXQgYXQgaHR0cHM6Ly9lbmNvZGUtcHVibGljLnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBFbmN5Y2xvcGVkaWEgb2YgRE5BIEVsZW1lbnRzIChFTkNPREUpXG5OYW1lMjogUmVsZWFzZWQgYW5kIGFyY2hpdmVkIEVOQ09ERSBkYXRhXG5EZXNjcmlwdGlvbjogVGhlIEVuY3ljbG9wZWRpYSBvZiBETkEgRWxlbWVudHMgKEVOQ09ERSkgQ29uc29ydGl1bSBpcyBhbiBpbnRlcm5hdGlvbmFsIGNvbGxhYm9yYXRpb24gb2YgcmVzZWFyY2ggZ3JvdXBzIGZ1bmRlZCBieSB0aGUgTmF0aW9uYWwgSHVtYW4gR2Vub21lIFJlc2VhcmNoIEluc3RpdHV0ZSAoTkhHUkkpLiBUaGUgZ29hbCBvZiBFTkNPREUgaXMgdG8gYnVpbGQgYSBjb21wcmVoZW5zaXZlIHBhcnRzIGxpc3Qgb2YgZnVuY3Rpb25hbCBlbGVtZW50cyBpbiB0aGUgaHVtYW4gZ2Vub21lLCBpbmNsdWRpbmcgZWxlbWVudHMgdGhhdCBhY3QgYXQgdGhlIHByb3RlaW4gYW5kIFJOQSBsZXZlbHMsIGFuZCByZWd1bGF0b3J5IGVsZW1lbnRzIHRoYXQgY29udHJvbCBjZWxscyBhbmQgY2lyY3Vtc3RhbmNlcyBpbiB3aGljaCBhIGdlbmUgaXMgYWN0aXZlLiBFTkNPREUgaW52ZXN0aWdhdG9ycyBlbXBsb3kgYSB2YXJpZXR5IG9mIGFzc2F5cyBhbmQgbWV0aG9kcyB0byBpZGVudGlmeSBmdW5jdGlvbmFsIGVsZW1lbnRzLiBUaGUgZGlzY292ZXJ5IGFuZCBhbm5vdGF0aW9uIG9mIGdlbmUgZWxlbWVudHMgaXMgYWNjb21wbGlzaGVkIHByaW1hcmlseSBieSBzZXF1ZW5jaW5nIGEgZGl2ZXJzZSByYW5nZSBvZiBSTkEgc291cmNlcywgY29tcGFyYXRpdmUgZ2Vub21pY3MsIGludGVncmF0aXZlIGJpb2luZm9ybWF0aWMgbWV0aG9kcywgYW5kIGh1bWFuIGN1cmF0aW9uLiBSZWd1bGF0b3J5IGVsZW1lbnRzIGFyZSB0eXBpY2FsbHkgaW52ZXN0aWdhdGVkIHRocm91Z2ggRE5BIGh5cGVyc2Vuc2l0aXZpdHkgYXNzYXlzLCBhc3NheXMgb2YgRE5BIG1ldGh5bGF0aW9uLCBhbmQgaW1tdW5vcHJlY2lwaXRhdGlvbiAoSVApIG9mIHByb3RlaW5zIHRoYXQgaW50ZXJhY3Qgd2l0aCBETkEgYW5kIFJOQSwgaS5lLiwgbW9kaWZpZWQgaGlzdG9uZXMsIHRyYW5zY3JpcHRpb24gZmFjdG9ycywgY2hyb21hdGluIHJlZ3VsYXRvcnMsIGFuZCBSTkEtYmluZGluZyBwcm90ZWlucywgZm9sbG93ZWQgYnkgc2VxdWVuY2luZy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly93d3cuZW5jb2RlcHJvamVjdC5vcmdcbkNvbnRhY3Q6IGVuY29kZS1oZWxwQGxpc3RzLnN0YW5mb3JkLmVkdVxuTWFuYWdlZEJ5OiBFTkNPREUgRGF0YSBDb29yZGluYXRpbmcgQ2VudGVyXG5VcGRhdGVGcmVxdWVuY3k6IERhaWx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZW5jb2RlX3B1YmxpYy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2VuY29kZS1wcm9qZWN0LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2VuY29kZV9wdWJsaWMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfZW5jb2RlX3B1YmxpYyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZW5jb2RlX3B1YmxpYyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19lcGFfcnNlaV9wZHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19lcGFfcnNlaV9wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZXBhX3JzZWlfcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgZXBhLXJzZWktcGRzIEJ1Y2tldDogRVBBIFJpc2stU2NyZWVuaW5nIEVudmlyb25tZW50YWwgSW5kaWNhdG9yczogUlNFSSBNaWNyb2RhdGEiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBlcGEtcnNlaS1wZHMgYnVja2V0IGF0IGh0dHBzOi8vZXBhLXJzZWktcGRzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBFUEEgUmlzay1TY3JlZW5pbmcgRW52aXJvbm1lbnRhbCBJbmRpY2F0b3JzXG5OYW1lMjogUlNFSSBNaWNyb2RhdGFcbkRlc2NyaXB0aW9uOiBEZXRhaWxlZCBhaXIgbW9kZWwgcmVzdWx0cyBmcm9tIEVQQVx1MjAxOXMgUmlzay1TY3JlZW5pbmcgRW52aXJvbm1lbnRhbCBJbmRpY2F0b3JzIChSU0VJKSBtb2RlbC5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLm9wZW5kYXRhLmF3cy9lcGEtcnNlaS1wZHMvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IGh0dHBzOi8vd3d3LmVwYS5nb3YvcnNlaS9mb3Jtcy9jb250YWN0LXVzLWFib3V0LXJzZWktbW9kZWxcblVwZGF0ZUZyZXF1ZW5jeTogVXBkYXRlZCBpbmZyZXF1ZW50bHlcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19lcGFfcnNlaV9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9lcGEtcnNlaS1wZHMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZXBhX3JzZWlfcGRzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2VwYV9yc2VpX3BkcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZXBhX3JzZWlfcGRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2VyYTVfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZXJhNV9wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZXJhNV9wZHMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBlcmE1LXBkcyBCdWNrZXQ6IEVDTVdGIEVSQTUgUmVhbmFseXNpczogRVJBNSBSZWFuYWx5c2lzIE5ldENERiA0IGZpbGVzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgZXJhNS1wZHMgYnVja2V0IGF0IGh0dHBzOi8vZXJhNS1wZHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IEVDTVdGIEVSQTUgUmVhbmFseXNpc1xuTmFtZTI6IEVSQTUgUmVhbmFseXNpcyBOZXRDREYgNCBmaWxlc1xuRGVzY3JpcHRpb246IEVSQTUgaXMgdGhlIGZpZnRoIGdlbmVyYXRpb24gb2YgRUNNV0YgYXRtb3NwaGVyaWMgcmVhbmFseXNlcyBvZiB0aGUgZ2xvYmFsIGNsaW1hdGUsIGFuZCB0aGUgZmlyc3QgcmVhbmFseXNpcyBwcm9kdWNlZCBhcyBhbiBvcGVyYXRpb25hbCBzZXJ2aWNlLiBJdCB1dGlsaXplcyB0aGUgYmVzdCBhdmFpbGFibGUgb2JzZXJ2YXRpb24gZGF0YSBmcm9tIHNhdGVsbGl0ZXMgYW5kIGluLXNpdHUgc3RhdGlvbnMsIHdoaWNoIGFyZSBhc3NpbWlsYXRlZCBhbmQgcHJvY2Vzc2VkIHVzaW5nIEVDTVdGJ3MgSW50ZWdyYXRlZCBGb3JlY2FzdCBTeXN0ZW0gKElGUykgQ3ljbGUgNDFyMi4gVGhlIGRhdGFzZXQgcHJvdmlkZXMgYWxsIGVzc2VudGlhbCBhdG1vc3BoZXJpYyBtZXRlb3JvbG9naWNhbCBwYXJhbWV0ZXJzIGxpa2UsIGJ1dCBub3QgbGltaXRlZCB0bywgYWlyIHRlbXBlcmF0dXJlLCBwcmVzc3VyZSBhbmQgd2luZCBhdCBkaWZmZXJlbnQgYWx0aXR1ZGVzLCBhbG9uZyB3aXRoIHN1cmZhY2UgcGFyYW1ldGVycyBsaWtlIHJhaW5mYWxsLCBzb2lsIG1vaXN0dXJlIGNvbnRlbnQgYW5kIHNlYSBwYXJhbWV0ZXJzIGxpa2Ugc2VhLXN1cmZhY2UgdGVtcGVyYXR1cmUgYW5kIHdhdmUgaGVpZ2h0LiBFUkE1IHByb3ZpZGVzIGRhdGEgYXQgYSBjb25zaWRlcmFibHkgaGlnaGVyIHNwYXRpYWwgYW5kIHRlbXBvcmFsIHJlc29sdXRpb24gdGhhbiBpdHMgbGVnYWN5IGNvdW50ZXJwYXJ0IEVSQS1JbnRlcmltLiBFUkE1IGNvbnNpc3RzIG9mIGhpZ2ggcmVzb2x1dGlvbiB2ZXJzaW9uIHdpdGggMzEga20gaG9yaXpvbnRhbCByZXNvbHV0aW9uLCBhbmQgYSByZWR1Y2VkIHJlc29sdXRpb24gZW5zZW1ibGUgdmVyc2lvbiB3aXRoIDEwIG1lbWJlcnMuIEl0IGlzIGN1cnJlbnRseSBhdmFpbGFibGUgc2luY2UgMjAwOCwgYnV0IHdpbGwgYmUgY29udGludW91c2x5IGV4dGVuZGVkIGJhY2t3YXJkcywgZmlyc3QgdW50aWwgMTk3OSBhbmQgdGhlbiB0byAxOTUwLiBMZWFybiBtb3JlIGFib3V0IEVSQTUgaW4gSm9uIE9sYXVzb24ncyBwYXBlciBbRVJBNTogVGhlIG5ldyBjaGFtcGlvbiBvZiB3aW5kIHBvd2VyIG1vZGVsbGluZz9dKGh0dHBzOi8vd3d3LnJlc2VhcmNoZ2F0ZS5uZXQvcHVibGljYXRpb24vMzIwMDg0MTE5X0VSQTVfVGhlX25ld19jaGFtcGlvbl9vZl93aW5kX3Bvd2VyX21vZGVsbGluZykuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZ2l0aHViLmNvbS9wbGFuZXQtb3Mvbm90ZWJvb2tzL2Jsb2IvbWFzdGVyL2F3cy9lcmE1LXBkcy5tZFxuQ29udGFjdDogZGF0YWh1YkBpbnRlcnRydXN0LmNvbVxuVXBkYXRlRnJlcXVlbmN5OiBNb250aGx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZXJhNV9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9lY213Zi1lcmE1LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2VyYTVfcGRzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2VyYTVfcGRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19lcmE1X3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19mYXN0X2FpX2NvY28iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19mYXN0X2FpX2NvY28uZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZmFzdF9haV9jb2NvLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgZmFzdC1haS1jb2NvIEJ1Y2tldDogQ09DTyAtIENvbW1vbiBPYmplY3RzIGluIENvbnRleHQgLSBmYXN0LmFpIGRhdGFzZXRzOiBEYXRhc2V0cyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGZhc3QtYWktY29jbyBidWNrZXQgYXQgaHR0cHM6Ly9mYXN0LWFpLWNvY28uczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IENPQ08gLSBDb21tb24gT2JqZWN0cyBpbiBDb250ZXh0IC0gZmFzdC5haSBkYXRhc2V0c1xuTmFtZTI6IERhdGFzZXRzXG5EZXNjcmlwdGlvbjogQ09DTyBpcyBhIGxhcmdlLXNjYWxlIG9iamVjdCBkZXRlY3Rpb24sIHNlZ21lbnRhdGlvbiwgYW5kIGNhcHRpb25pbmcgZGF0YXNldC4gVGhpcyBpcyBwYXJ0IG9mIHRoZSBmYXN0LmFpIGRhdGFzZXRzIGNvbGxlY3Rpb24gaG9zdGVkIGJ5IEFXUyBmb3IgY29udmVuaWVuY2Ugb2YgZmFzdC5haSBzdHVkZW50cy4gSWYgeW91IHVzZSB0aGlzIGRhdGFzZXQgaW4geW91ciByZXNlYXJjaCBwbGVhc2UgY2l0ZSBhclhpdjoxNDA1LjAzMTIgW2NzLkNWXS5cblxuRG9jdW1lbnRhdGlvbjogaHR0cDovL2NvdXJzZS5mYXN0LmFpL2RhdGFzZXRzXG5Db250YWN0OiBpbmZvQGZhc3QuYWlcbk1hbmFnZWRCeTogW2Zhc3QuYWldKGh0dHA6Ly93d3cuZmFzdC5haS8pXG5VcGRhdGVGcmVxdWVuY3k6IEFzIHJlcXVpcmVkXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZmFzdF9haV9jb2NvL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvZmFzdC1haS1jb2NvLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2Zhc3RfYWlfY29jby5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19mYXN0X2FpX2NvY28mc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2Zhc3RfYWlfY29jbyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19mYXN0X2FpX2ltYWdlY2xhcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2Zhc3RfYWlfaW1hZ2VjbGFzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2Zhc3RfYWlfaW1hZ2VjbGFzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgZmFzdC1haS1pbWFnZWNsYXMgQnVja2V0OiBJbWFnZSBjbGFzc2lmaWNhdGlvbiAtIGZhc3QuYWkgZGF0YXNldHM6IERhdGFzZXRzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgZmFzdC1haS1pbWFnZWNsYXMgYnVja2V0IGF0IGh0dHBzOi8vZmFzdC1haS1pbWFnZWNsYXMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IEltYWdlIGNsYXNzaWZpY2F0aW9uIC0gZmFzdC5haSBkYXRhc2V0c1xuTmFtZTI6IERhdGFzZXRzXG5EZXNjcmlwdGlvbjogU29tZSBvZiB0aGUgbW9zdCBpbXBvcnRhbnQgZGF0YXNldHMgZm9yIGltYWdlIGNsYXNzaWZpY2F0aW9uIHJlc2VhcmNoLCBpbmNsdWRpbmcgQ0lGQVIgMTAgYW5kIDEwMCwgQ2FsdGVjaCAxMDEsIE1OSVNULCBGb29kLTEwMSwgT3hmb3JkLTEwMi1GbG93ZXJzLCBPeGZvcmQtSUlJVC1QZXRzLCBhbmQgU3RhbmZvcmQtQ2Fycy4gIFRoaXMgaXMgcGFydCBvZiB0aGUgZmFzdC5haSBkYXRhc2V0cyBjb2xsZWN0aW9uIGhvc3RlZCBieSBBV1MgZm9yIGNvbnZlbmllbmNlIG9mIGZhc3QuYWkgc3R1ZGVudHMuIFNlZSBkb2N1bWVudGF0aW9uIGxpbmsgZm9yIGNpdGF0aW9uIGFuZCBsaWNlbnNlIGRldGFpbHMgZm9yIGVhY2ggZGF0YXNldC5cblxuRG9jdW1lbnRhdGlvbjogaHR0cDovL2NvdXJzZS5mYXN0LmFpL2RhdGFzZXRzXG5Db250YWN0OiBpbmZvQGZhc3QuYWlcbk1hbmFnZWRCeTogW2Zhc3QuYWldKGh0dHA6Ly93d3cuZmFzdC5haS8pXG5VcGRhdGVGcmVxdWVuY3k6IEFzIHJlcXVpcmVkXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZmFzdF9haV9pbWFnZWNsYXMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9mYXN0LWFpLWltYWdlY2xhcy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19mYXN0X2FpX2ltYWdlY2xhcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19mYXN0X2FpX2ltYWdlY2xhcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZmFzdF9haV9pbWFnZWNsYXMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZmFzdF9haV9pbWFnZWxvY2FsIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZmFzdF9haV9pbWFnZWxvY2FsLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2Zhc3RfYWlfaW1hZ2Vsb2NhbC8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGZhc3QtYWktaW1hZ2Vsb2NhbCBCdWNrZXQ6IEltYWdlIGxvY2FsaXphdGlvbiAgLSBmYXN0LmFpIGRhdGFzZXRzOiBEYXRhc2V0cyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGZhc3QtYWktaW1hZ2Vsb2NhbCBidWNrZXQgYXQgaHR0cHM6Ly9mYXN0LWFpLWltYWdlbG9jYWwuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IEltYWdlIGxvY2FsaXphdGlvbiAgLSBmYXN0LmFpIGRhdGFzZXRzXG5OYW1lMjogRGF0YXNldHNcbkRlc2NyaXB0aW9uOiBTb21lIG9mIHRoZSBtb3N0IGltcG9ydGFudCBkYXRhc2V0cyBmb3IgaW1hZ2UgbG9jYWxpemF0aW9uICByZXNlYXJjaCwgaW5jbHVkaW5nIENhbXZpZCBhbmQgUEFTQ0FMIFZPQyAoMjAwNyBhbmQgMjAxMikuIFRoaXMgaXMgcGFydCBvZiB0aGUgZmFzdC5haSBkYXRhc2V0cyBjb2xsZWN0aW9uIGhvc3RlZCBieSBBV1MgZm9yIGNvbnZlbmllbmNlIG9mIGZhc3QuYWkgc3R1ZGVudHMuIFNlZSBkb2N1bWVudGF0aW9uIGxpbmsgZm9yIGNpdGF0aW9uIGFuZCBsaWNlbnNlIGRldGFpbHMgZm9yIGVhY2ggZGF0YXNldC5cblxuRG9jdW1lbnRhdGlvbjogaHR0cDovL2NvdXJzZS5mYXN0LmFpL2RhdGFzZXRzXG5Db250YWN0OiBpbmZvQGZhc3QuYWlcbk1hbmFnZWRCeTogW2Zhc3QuYWldKGh0dHA6Ly93d3cuZmFzdC5haS8pXG5VcGRhdGVGcmVxdWVuY3k6IEFzIHJlcXVpcmVkXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZmFzdF9haV9pbWFnZWxvY2FsL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvZmFzdC1haS1pbWFnZWxvY2FsLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2Zhc3RfYWlfaW1hZ2Vsb2NhbC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19mYXN0X2FpX2ltYWdlbG9jYWwmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2Zhc3RfYWlfaW1hZ2Vsb2NhbCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19mYXN0X2FpX25scCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2Zhc3RfYWlfbmxwLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2Zhc3RfYWlfbmxwLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgZmFzdC1haS1ubHAgQnVja2V0OiBOTFAgLSBmYXN0LmFpIGRhdGFzZXRzOiBEYXRhc2V0cyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGZhc3QtYWktbmxwIGJ1Y2tldCBhdCBodHRwczovL2Zhc3QtYWktbmxwLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBOTFAgLSBmYXN0LmFpIGRhdGFzZXRzXG5OYW1lMjogRGF0YXNldHNcbkRlc2NyaXB0aW9uOiBTb21lIG9mIHRoZSBtb3N0IGltcG9ydGFudCBkYXRhc2V0cyBmb3IgTkxQLCB3aXRoIGEgZm9jdXMgb24gY2xhc3NpZmljYXRpb24sIGluY2x1ZGluZyBJTURiLCBBRy1OZXdzLCBBbWF6b24gUmV2aWV3cyAocG9sYXJpdHkgYW5kIGZ1bGwpLCBZZWxwIFJldmlld3MgKHBvbGFyaXR5IGFuZCBmdWxsKSwgRGJwZWRpYSwgU29nb3UgTmV3cyAoUGlueWluKSwgWWFob28gQW5zd2VycywgV2lraXRleHQgMiBhbmQgV2lraXRleHQgMTAzLCBhbmQgQUNMLTIwMTAgRnJlbmNoLUVuZ2xpc2ggMTBeOSBjb3JwdXMuICBUaGlzIGlzIHBhcnQgb2YgdGhlIGZhc3QuYWkgZGF0YXNldHMgY29sbGVjdGlvbiBob3N0ZWQgYnkgQVdTIGZvciBjb252ZW5pZW5jZSBvZiBmYXN0LmFpIHN0dWRlbnRzLiBTZWUgZG9jdW1lbnRhdGlvbiBsaW5rIGZvciBjaXRhdGlvbiBhbmQgbGljZW5zZSBkZXRhaWxzIGZvciBlYWNoIGRhdGFzZXQuXG5cbkRvY3VtZW50YXRpb246IGh0dHA6Ly9jb3Vyc2UuZmFzdC5haS9kYXRhc2V0c1xuQ29udGFjdDogaW5mb0BmYXN0LmFpXG5NYW5hZ2VkQnk6IFtmYXN0LmFpXShodHRwOi8vd3d3LmZhc3QuYWkvKVxuVXBkYXRlRnJlcXVlbmN5OiBBcyByZXF1aXJlZFxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2Zhc3RfYWlfbmxwL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvZmFzdC1haS1ubHAvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZmFzdF9haV9ubHAucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfZmFzdF9haV9ubHAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2Zhc3RfYWlfbmxwIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2ZtaV9vcGVuZGF0YV9yY3JoaXJsYW1fcHJlc3N1cmVfZ3JpYiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2ZtaV9vcGVuZGF0YV9yY3JoaXJsYW1fcHJlc3N1cmVfZ3JpYi5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19mbWlfb3BlbmRhdGFfcmNyaGlybGFtX3ByZXNzdXJlX2dyaWIvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBmbWktb3BlbmRhdGEtcmNyaGlybGFtLXByZXNzdXJlLWdyaWIgQnVja2V0OiBISVJMQU0gV2VhdGhlciBNb2RlbDogUHJlc3N1cmUgR1JJQiBmaWxlcyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGZtaS1vcGVuZGF0YS1yY3JoaXJsYW0tcHJlc3N1cmUtZ3JpYiBidWNrZXQgYXQgaHR0cHM6Ly9mbWktb3BlbmRhdGEtcmNyaGlybGFtLXByZXNzdXJlLWdyaWIuczMuZXUtd2VzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IEhJUkxBTSBXZWF0aGVyIE1vZGVsXG5OYW1lMjogUHJlc3N1cmUgR1JJQiBmaWxlc1xuRGVzY3JpcHRpb246IEhJUkxBTSAoSGlnaCBSZXNvbHV0aW9uIExpbWl0ZWQgQXJlYSBNb2RlbCkgaXMgYW4gb3BlcmF0aW9uYWwgc3lub3B0aWMgYW5kIG1lc29zY2FsZSB3ZWF0aGVyIHByZWRpY3Rpb24gbW9kZWwgbWFuYWdlZCBieSB0aGUgRmlubmlzaCBNZXRlb3JvbG9naWNhbCBJbnN0aXR1dGUuXG5cbkRvY3VtZW50YXRpb246IGh0dHA6Ly9lbi5pbG1hdGlldGVlbmxhaXRvcy5maS9vcGVuLWRhdGEtb24tYXdzLXMzXG5Db250YWN0OiBhdm9pbi1kYXRhQGZtaS5maVxuVXBkYXRlRnJlcXVlbmN5OiBUaGUgZGF0YSBpcyB1cGRhdGVkIGZvdXIgdGltZXMgYSBkYXkgd2l0aCBhbmFseXNpcyBob3VycyAwMCwgMDYsIDEyIGFuZCAxOC4gQ29ycmVzcG9uZGluZyBtb2RlbCBydW5zIGFyZSBhdmFpbGFibGUgcm91Z2hseSBmaXZlIGhvdXJzIGFmdGVyIGFuYWx5c2lzIHRpbWUgKH4gYWZ0ZXIgbW9kZWwgcnVuIGhhcyBzdGFydGVkKS5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19mbWlfb3BlbmRhdGFfcmNyaGlybGFtX3ByZXNzdXJlX2dyaWIvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9oaXJsYW0vIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZm1pX29wZW5kYXRhX3JjcmhpcmxhbV9wcmVzc3VyZV9ncmliLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2ZtaV9vcGVuZGF0YV9yY3JoaXJsYW1fcHJlc3N1cmVfZ3JpYiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZm1pX29wZW5kYXRhX3JjcmhpcmxhbV9wcmVzc3VyZV9ncmliIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2ZtaV9vcGVuZGF0YV9yY3JoaXJsYW1fc3VyZmFjZV9ncmliIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZm1pX29wZW5kYXRhX3JjcmhpcmxhbV9zdXJmYWNlX2dyaWIuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZm1pX29wZW5kYXRhX3JjcmhpcmxhbV9zdXJmYWNlX2dyaWIvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBmbWktb3BlbmRhdGEtcmNyaGlybGFtLXN1cmZhY2UtZ3JpYiBCdWNrZXQ6IEhJUkxBTSBXZWF0aGVyIE1vZGVsOiBTdXJmYWNlIEdSSUIgZmlsZXMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBmbWktb3BlbmRhdGEtcmNyaGlybGFtLXN1cmZhY2UtZ3JpYiBidWNrZXQgYXQgaHR0cHM6Ly9mbWktb3BlbmRhdGEtcmNyaGlybGFtLXN1cmZhY2UtZ3JpYi5zMy5ldS13ZXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogSElSTEFNIFdlYXRoZXIgTW9kZWxcbk5hbWUyOiBTdXJmYWNlIEdSSUIgZmlsZXNcbkRlc2NyaXB0aW9uOiBISVJMQU0gKEhpZ2ggUmVzb2x1dGlvbiBMaW1pdGVkIEFyZWEgTW9kZWwpIGlzIGFuIG9wZXJhdGlvbmFsIHN5bm9wdGljIGFuZCBtZXNvc2NhbGUgd2VhdGhlciBwcmVkaWN0aW9uIG1vZGVsIG1hbmFnZWQgYnkgdGhlIEZpbm5pc2ggTWV0ZW9yb2xvZ2ljYWwgSW5zdGl0dXRlLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwOi8vZW4uaWxtYXRpZXRlZW5sYWl0b3MuZmkvb3Blbi1kYXRhLW9uLWF3cy1zM1xuQ29udGFjdDogYXZvaW4tZGF0YUBmbWkuZmlcblVwZGF0ZUZyZXF1ZW5jeTogVGhlIGRhdGEgaXMgdXBkYXRlZCBmb3VyIHRpbWVzIGEgZGF5IHdpdGggYW5hbHlzaXMgaG91cnMgMDAsIDA2LCAxMiBhbmQgMTguIENvcnJlc3BvbmRpbmcgbW9kZWwgcnVucyBhcmUgYXZhaWxhYmxlIHJvdWdobHkgZml2ZSBob3VycyBhZnRlciBhbmFseXNpcyB0aW1lICh+IGFmdGVyIG1vZGVsIHJ1biBoYXMgc3RhcnRlZCkuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZm1pX29wZW5kYXRhX3JjcmhpcmxhbV9zdXJmYWNlX2dyaWIvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9oaXJsYW0vIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZm1pX29wZW5kYXRhX3JjcmhpcmxhbV9zdXJmYWNlX2dyaWIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfZm1pX29wZW5kYXRhX3JjcmhpcmxhbV9zdXJmYWNlX2dyaWImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2ZtaV9vcGVuZGF0YV9yY3JoaXJsYW1fc3VyZmFjZV9ncmliIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2dhdGtfdGVzdF9kYXRhIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZ2F0a190ZXN0X2RhdGEuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZ2F0a190ZXN0X2RhdGEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBnYXRrLXRlc3QtZGF0YSBCdWNrZXQ6IEdBVEsgVGVzdCBEYXRhOiBUaGUgY29udGVudHMgb2YgdGhpcyBkYXRhc2V0IGlzIG11bHRpLW1vZGFsIGFuZCBpbmNsdWRlcyB2YXJpb3VzIHR5cGVzIG9mIGdlbm9taWMgZGF0YSwgc3VjaCBhcyBDUkFNcy9CQU1zLCB3aG9sZS1nZW5vbWUgc2VxdWVuY2luZyAoV0dTKSBkYXRhLCBleG9tZSBkYXRhLCBSTkEgZGF0YSwgZXRjLiIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGdhdGstdGVzdC1kYXRhIGJ1Y2tldCBhdCBodHRwczovL2dhdGstdGVzdC1kYXRhLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBHQVRLIFRlc3QgRGF0YVxuTmFtZTI6IFRoZSBjb250ZW50cyBvZiB0aGlzIGRhdGFzZXQgaXMgbXVsdGktbW9kYWwgYW5kIGluY2x1ZGVzIHZhcmlvdXMgdHlwZXMgb2YgZ2Vub21pYyBkYXRhLCBzdWNoIGFzIENSQU1zL0JBTXMsIHdob2xlLWdlbm9tZSBzZXF1ZW5jaW5nIChXR1MpIGRhdGEsIGV4b21lIGRhdGEsIFJOQSBkYXRhLCBldGMuXG5EZXNjcmlwdGlvbjogVGhlIEdBVEsgdGVzdCBkYXRhIHJlc291cmNlIGJ1bmRsZSBpcyBhIGNvbGxlY3Rpb24gb2YgZmlsZXMgZm9yIHJlc2VxdWVuY2luZyBodW1hbiBnZW5vbWljIGRhdGEgd2l0aCB0aGUgQnJvYWQgSW5zdGl0dXRlJ3MgW0dlbm9tZSBBbmFseXNpcyBUb29sa2l0IChHQVRLKV0oaHR0cHM6Ly9zb2Z0d2FyZS5icm9hZGluc3RpdHV0ZS5vcmcvZ2F0ay8pLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL3MzLmFtYXpvbmF3cy5jb20vZ2F0ay10ZXN0LWRhdGEvZ2F0ay10ZXN0LWRhdGEtcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IGh0dHBzOi8vZ2F0a2ZvcnVtcy5icm9hZGluc3RpdHV0ZS5vcmcvZ2F0a1xuTWFuYWdlZEJ5OiBCcm9hZCBJbnN0aXR1dGVcblVwZGF0ZUZyZXF1ZW5jeTogRXZlcnkgMyBtb250aHNcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19nYXRrX3Rlc3RfZGF0YS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2dhdGstdGVzdC1kYXRhLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2dhdGtfdGVzdF9kYXRhLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2dhdGtfdGVzdF9kYXRhJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19nYXRrX3Rlc3RfZGF0YSJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19nZGVsdF9vcGVuX2RhdGEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19nZGVsdF9vcGVuX2RhdGEuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZ2RlbHRfb3Blbl9kYXRhLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgZ2RlbHQtb3Blbi1kYXRhIEJ1Y2tldDogR2xvYmFsIERhdGFiYXNlIG9mIEV2ZW50cywgTGFuZ3VhZ2UgYW5kIFRvbmUgKEdERUxUKTogUHJvamVjdCBkYXRhIGZpbGVzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgZ2RlbHQtb3Blbi1kYXRhIGJ1Y2tldCBhdCBodHRwczovL2dkZWx0LW9wZW4tZGF0YS5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogR2xvYmFsIERhdGFiYXNlIG9mIEV2ZW50cywgTGFuZ3VhZ2UgYW5kIFRvbmUgKEdERUxUKVxuTmFtZTI6IFByb2plY3QgZGF0YSBmaWxlc1xuRGVzY3JpcHRpb246IFRoaXMgcHJvamVjdCBtb25pdG9ycyB0aGUgd29ybGQncyBicm9hZGNhc3QsIHByaW50LCBhbmQgd2ViIG5ld3MgZnJvbSBuZWFybHkgZXZlcnkgY29ybmVyIG9mIGV2ZXJ5IGNvdW50cnkgaW4gb3ZlciAxMDAgbGFuZ3VhZ2VzIGFuZCBpZGVudGlmaWVzIHRoZSBwZW9wbGUsIGxvY2F0aW9ucywgb3JnYW5pemF0aW9ucywgY291bnRzLCB0aGVtZXMsIHNvdXJjZXMsIGVtb3Rpb25zLCBxdW90ZXMsIGltYWdlcyBhbmQgZXZlbnRzIGRyaXZpbmcgb3VyIGdsb2JhbCBzb2NpZXR5IGV2ZXJ5IHNlY29uZCBvZiBldmVyeSBkYXkuXG5cbkRvY3VtZW50YXRpb246IGh0dHA6Ly93d3cuZ2RlbHRwcm9qZWN0Lm9yZy9cbkNvbnRhY3Q6IGh0dHA6Ly93d3cuZ2RlbHRwcm9qZWN0Lm9yZy9hYm91dC5odG1sI2NvbnRhY3RcblVwZGF0ZUZyZXF1ZW5jeTogTm90IGN1cnJlbnRseSBiZWluZyB1cGRhdGVkXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZ2RlbHRfb3Blbl9kYXRhL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvZ2RlbHQvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZ2RlbHRfb3Blbl9kYXRhLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2dkZWx0X29wZW5fZGF0YSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZ2RlbHRfb3Blbl9kYXRhIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2dlbm9tZWFyayIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2dlbm9tZWFyay5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19nZW5vbWVhcmsvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBnZW5vbWVhcmsgQnVja2V0OiBHZW5vbWUgQXJrIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgZ2Vub21lYXJrIGJ1Y2tldCBhdCBodHRwczovL2dlbm9tZWFyay5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogR2Vub21lIEFya1xuTmFtZTI6IGh0dHBzOi8vdmdwLmdpdGh1Yi5pb1xuRGVzY3JpcHRpb246IFRoZSBHZW5vbWUgQXJrIGhvc3RzIGdlbm9taWMgaW5mb3JtYXRpb24gZm9yIHRoZSBWZXJ0ZWJyYXRlIEdlbm9tZXMgUHJvamVjdCAoVkdQKSBhbmQgb3RoZXIgcmVsYXRlZCBwcm9qZWN0cy4gVGhlIFZHUCBpcyBhbiBpbnRlcm5hdGlvbmFsIGNvbGxhYm9yYXRpb24gdGhhdCBhaW1zIHRvIGdlbmVyYXRlIGNvbXBsZXRlIGFuZCBuZWFyIGVycm9yLWZyZWUgcmVmZXJlbmNlIGdlbm9tZXMgZm9yIGFsbCBleHRhbnQgdmVydGVicmF0ZSBzcGVjaWVzLiBUaGVzZSBnZW5vbWVzIHdpbGwgYmUgdXNlZCB0byBhZGRyZXNzIGZ1bmRhbWVudGFsIHF1ZXN0aW9ucyBpbiBiaW9sb2d5IGFuZCBkaXNlYXNlLCB0byBpZGVudGlmeSBzcGVjaWVzIG1vc3QgZ2VuZXRpY2FsbHkgYXQgcmlzayBmb3IgZXh0aW5jdGlvbiwgYW5kIHRvIHByZXNlcnZlIGdlbmV0aWMgaW5mb3JtYXRpb24gb2YgbGlmZS5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly92ZXJ0ZWJyYXRlZ2Vub21lc3Byb2plY3Qub3JnXG5Db250YWN0OiBFcmljaCBKYXJ2aXMgPGVqYXJ2aXNAcm9ja2VmZWxsZXIuZWR1PlxuTWFuYWdlZEJ5OiBUaGUgR2Vub21lMTBLIGNvbW11bml0eSBvZiBzY2llbnRpc3RzXG5VcGRhdGVGcmVxdWVuY3k6IERhdGEgd2lsbCBiZSBjb250aW51YWxseSB1cGRhdGVkIGFzIGl0IGlzIGdlbmVyYXRlZC5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19nZW5vbWVhcmsvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9nZW5vbWVhcmsvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZ2Vub21lYXJrLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2dlbm9tZWFyayZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZ2Vub21lYXJrIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2dpYWIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19naWFiLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2dpYWIvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBnaWFiIEJ1Y2tldDogR2Vub21lIGluIGEgQm90dGxlIG9uIEFXUzogTGF0ZXN0IGRhdGEiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBnaWFiIGJ1Y2tldCBhdCBodHRwczovL2dpYWIuczMudXMtd2VzdC0yLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IEdlbm9tZSBpbiBhIEJvdHRsZSBvbiBBV1Ncbk5hbWUyOiBMYXRlc3QgZGF0YVxuRGVzY3JpcHRpb246IFNldmVyYWwgcmVmZXJlbmNlIGdlbm9tZXMgdG8gZW5hYmxlIHRyYW5zbGF0aW9uIG9mIHdob2xlIGh1bWFuIGdlbm9tZSBzZXF1ZW5jaW5nIHRvIGNsaW5pY2FsIHByYWN0aWNlLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL2dpYWIvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IGh0dHA6Ly9nZW5vbWVpbmFib3R0bGUub3JnL1xuVXBkYXRlRnJlcXVlbmN5OiBOZXcgZGF0YSBhcmUgYWRkZWQgYXMgc29vbiBhcyB0aGV5IGFyZSBhdmFpbGFibGUuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZ2lhYi9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2dpYWIvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZ2lhYi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19naWFiJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19naWFiIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2dtc2RhdGEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19nbXNkYXRhLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2dtc2RhdGEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBnbXNkYXRhIEJ1Y2tldDogVGhlIEdlbm9tZSBNb2RlbGluZyBTeXN0ZW0iLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBnbXNkYXRhIGJ1Y2tldCBhdCBodHRwczovL2dtc2RhdGEuczMudXMtd2VzdC0yLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IFRoZSBHZW5vbWUgTW9kZWxpbmcgU3lzdGVtXG5OYW1lMjogaHR0cHM6Ly9nbXNkYXRhLnMzLmFtYXpvbmF3cy5jb20vSU5ERVguaHRtbFxuRGVzY3JpcHRpb246IFRoZSBHZW5vbWUgSW5zdGl0dXRlIGF0IFdhc2hpbmd0b24gVW5pdmVyc2l0eSBoYXMgZGV2ZWxvcGVkIGEgaGlnaC10aHJvdWdocHV0LCBmYXVsdC10b2xlcmFudCBhbmFseXNpcyBpbmZvcm1hdGlvbiBtYW5hZ2VtZW50IHN5c3RlbSBjYWxsZWQgdGhlIEdlbm9tZSBNb2RlbGluZyBTeXN0ZW0gKEdNUyksIGNhcGFibGUgb2YgZXhlY3V0aW5nIGNvbXBsZXgsIGludGVyZGVwZW5kZW50LCBhbmQgYXV0b21hdGVkIGdlbm9tZSBhbmFseXNpcyBwaXBlbGluZXMgYXQgYSBtYXNzaXZlIHNjYWxlLiBUaGUgR01TIGZyYW1ld29yayBwcm92aWRlcyBkZXRhaWxlZCB0cmFja2luZyBvZiBzYW1wbGVzIGFuZCBkYXRhIGNvdXBsZWQgd2l0aCByZWxpYWJsZSBhbmQgcmVwZWF0YWJsZSBhbmFseXNpcyBwaXBlbGluZXMuIEdNUyBpbmNsdWRlcyBhIGZ1bGwgc3lzdGVtIGltYWdlIHdpdGggc29mdHdhcmUgYW5kIHNlcnZpY2VzLCBleHBhbmRhYmxlIGZyb20gb25lIHdvcmtzdGF0aW9uIHRvIGEgbGFyZ2UgY29tcHV0ZSBjbHVzdGVyLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2dpdGh1Yi5jb20vZ2Vub21lL2dtcy93aWtpXG5Db250YWN0OiBodHRwczovL2dpdGh1Yi5jb20vZ2Vub21lL2dtcy9pc3N1ZXNcblVwZGF0ZUZyZXF1ZW5jeTogTm90IHVwZGF0ZWRcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19nbXNkYXRhL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvZ21zZGF0YS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19nbXNkYXRhLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2dtc2RhdGEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2dtc2RhdGEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZ3JpbGxvX29wZW5lZXciLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ncmlsbG9fb3BlbmVldy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ncmlsbG9fb3BlbmVldy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGdyaWxsby1vcGVuZWV3IEJ1Y2tldDogT3BlbkVFVzogT3BlbkVFVyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGdyaWxsby1vcGVuZWV3IGJ1Y2tldCBhdCBodHRwczovL2dyaWxsby1vcGVuZWV3LnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBPcGVuRUVXXG5OYW1lMjogT3BlbkVFV1xuRGVzY3JpcHRpb246IEdyaWxsbyBoYXMgZGV2ZWxvcGVkIGFuIElvVC1iYXNlZCBlYXJ0aHF1YWtlIGVhcmx5LXdhcm5pbmcgc3lzdGVtIGluIE1leGljbyBhbmQgQ2hpbGUgYW5kIGlzIG5vdyBvcGVuaW5nIGl0cyBlbnRpcmUgYXJjaGl2ZSBvZiB1bnByb2Nlc3NlZCBhY2NlbGVyb21ldGVyIGRhdGEgdG8gdGhlIHdvcmxkIHRvIGVuY291cmFnZSB0aGUgZGV2ZWxvcG1lbnQgb2YgbmV3IGFsZ29yaXRobXMgY2FwYWJsZSBvZiByYXBpZGx5IGRldGVjdGluZyBhbmQgY2hhcmFjdGVyaXppbmcgZWFydGhxdWFrZXMgaW4gcmVhbCB0aW1lLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2dpdGh1Yi5jb20vZ3JpbGxvL29wZW5lZXdcbkNvbnRhY3Q6IG9wZW5lZXdAZ3JpbGxvLmlvXG5NYW5hZ2VkQnk6IFtHcmlsbG9dKGh0dHBzOi8vZ3JpbGxvLmlvLylcblVwZGF0ZUZyZXF1ZW5jeTogQXBwcm94aW1hdGVseSBldmVyeSAxMCBtaW51dGVzXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZ3JpbGxvX29wZW5lZXcvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9ncmlsbG8tb3BlbmVldy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19ncmlsbG9fb3BlbmVldy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ncmlsbG9fb3BlbmVldyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZ3JpbGxvX29wZW5lZXciXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfaHVtYW5fbWljcm9iaW9tZV9wcm9qZWN0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfaHVtYW5fbWljcm9iaW9tZV9wcm9qZWN0LmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2h1bWFuX21pY3JvYmlvbWVfcHJvamVjdC8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGh1bWFuLW1pY3JvYmlvbWUtcHJvamVjdCBCdWNrZXQ6IFRoZSBIdW1hbiBNaWNyb2Jpb21lIFByb2plY3QiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBodW1hbi1taWNyb2Jpb21lLXByb2plY3QgYnVja2V0IGF0IGh0dHBzOi8vaHVtYW4tbWljcm9iaW9tZS1wcm9qZWN0LnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBUaGUgSHVtYW4gTWljcm9iaW9tZSBQcm9qZWN0XG5OYW1lMjogaHR0cHM6Ly9hd3MuYW1hem9uLmNvbS9kYXRhc2V0cy9odW1hbi1taWNyb2Jpb21lLXByb2plY3QvXG5EZXNjcmlwdGlvbjogVGhlIE5JSC1mdW5kZWQgSHVtYW4gTWljcm9iaW9tZSBQcm9qZWN0IChITVApIGlzIGEgY29sbGFib3JhdGl2ZSBlZmZvcnQgb2Ygb3ZlciAzMDAgc2NpZW50aXN0cyBmcm9tIG1vcmUgdGhhbiA4MCBvcmdhbml6YXRpb25zIHRvIGNvbXByZWhlbnNpdmVseSBjaGFyYWN0ZXJpemUgdGhlIG1pY3JvYmlhbCBjb21tdW5pdGllcyBpbmhhYml0aW5nIHRoZSBodW1hbiBib2R5IGFuZCBlbHVjaWRhdGUgdGhlaXIgcm9sZSBpbiBodW1hbiBoZWFsdGggYW5kIGRpc2Vhc2UuIFRvIGFjY29tcGxpc2ggdGhpcyB0YXNrLCBtaWNyb2JpYWwgY29tbXVuaXR5IHNhbXBsZXMgd2VyZSBpc29sYXRlZCBmcm9tIGEgY29ob3J0IG9mIDMwMCBoZWFsdGh5IGFkdWx0IGh1bWFuIHN1YmplY3RzIGF0IDE4IHNwZWNpZmljIHNpdGVzIHdpdGhpbiBmaXZlIHJlZ2lvbnMgb2YgdGhlIGJvZHkgKG9yYWwgY2F2aXR5LCBhaXJ3YXlzLCB1cm9nZW5pdGFsIHRyYWNrLCBza2luLCBhbmQgZ3V0KS4gVGFyZ2V0ZWQgc2VxdWVuY2luZyBvZiB0aGUgMTZTIGJhY3RlcmlhbCBtYXJrZXIgZ2VuZSBhbmQvb3Igd2hvbGUgbWV0YWdlbm9tZSBzaG90Z3VuIHNlcXVlbmNpbmcgd2FzIHBlcmZvcm1lZCBmb3IgdGhvdXNhbmRzIG9mIHRoZXNlIHNhbXBsZXMuIEluIGFkZGl0aW9uLCB3aG9sZSBnZW5vbWUgc2VxdWVuY2VzIHdlcmUgZ2VuZXJhdGVkIGZvciBpc29sYXRlIHN0cmFpbnMgY29sbGVjdGVkIGZyb20gaHVtYW4gYm9keSBzaXRlcyB0byBhY3QgYXMgcmVmZXJlbmNlIG9yZ2FuaXNtcyBmb3IgYW5hbHlzaXMuIEZpbmFsbHksIDE2UyBtYXJrZXIgYW5kIHdob2xlIG1ldGFnZW5vbWUgc2VxdWVuY2luZyB3YXMgYWxzbyBkb25lIG9uIGFkZGl0aW9uYWwgc2FtcGxlcyBmcm9tIHBlb3BsZSBzdWZmZXJpbmcgZnJvbSBzZXZlcmFsIGRpc2Vhc2UgY29uZGl0aW9ucy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9jb21tb25mdW5kLm5paC5nb3YvaG1wXG5Db250YWN0OiBodHRwczovL2NvbW1vbmZ1bmQubmloLmdvdi9obXAvcmVsYXRlZF9hY3Rpdml0aWVzXG5VcGRhdGVGcmVxdWVuY3k6IFVuY2VydGFpblxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2h1bWFuX21pY3JvYmlvbWVfcHJvamVjdC9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2h1bWFuLW1pY3JvYmlvbWUtcHJvamVjdC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19odW1hbl9taWNyb2Jpb21lX3Byb2plY3QucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfaHVtYW5fbWljcm9iaW9tZV9wcm9qZWN0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19odW1hbl9taWNyb2Jpb21lX3Byb2plY3QiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfaHVtYW5fcGFuZ2Vub21pY3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19odW1hbl9wYW5nZW5vbWljcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19odW1hbl9wYW5nZW5vbWljcy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGh1bWFuLXBhbmdlbm9taWNzIEJ1Y2tldDogSHVtYW4gUGFuR2Vub21pY3MgUHJvamVjdDogSHVtYW4gUGFuR2Vub21pY3MgUHJvamVjdCIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGh1bWFuLXBhbmdlbm9taWNzIGJ1Y2tldCBhdCBodHRwczovL2h1bWFuLXBhbmdlbm9taWNzLnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBIdW1hbiBQYW5HZW5vbWljcyBQcm9qZWN0XG5OYW1lMjogSHVtYW4gUGFuR2Vub21pY3MgUHJvamVjdFxuRGVzY3JpcHRpb246IFRoaXMgZGF0YXNldCBpbmNsdWRlcyBzZXF1ZW5jaW5nIGRhdGEsIGFzc2VtYmxpZXMsIGFuZCBhbmFseXNlcyBmb3IgdGhlIG9mZnNwcmluZyBvZiB0ZW4gcGFyZW50LW9mZnNwcmluZyB0cmlvcy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9naXRodWIuY29tL2h1bWFuLXBhbmdlbm9taWNzL2hwZ3AtZGF0YVxuQ29udGFjdDogaHR0cHM6Ly9naXRodWIuY29tL2h1bWFuLXBhbmdlbm9taWNzL2hwZ3AtZGF0YS9pc3N1ZXNcblVwZGF0ZUZyZXF1ZW5jeTogRGF0YSB3aWxsIGJlIGFkZGVkIGFuZCB1cGRhdGVkIGFzIHRlY2hub2xvZ2llcyBpbXByb3ZlIG9yIG5ldyBkYXRhIHVzZXMgYXJlIGVuY291bnRlcmVkLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2h1bWFuX3Bhbmdlbm9taWNzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvaHBncC1kYXRhLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2h1bWFuX3Bhbmdlbm9taWNzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2h1bWFuX3Bhbmdlbm9taWNzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19odW1hbl9wYW5nZW5vbWljcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19pY2hhbmdlbXljaXR5X2phbmFhZ3JhaGFfY29tcGxhaW50c19kYXRhX2F3cyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2ljaGFuZ2VteWNpdHlfamFuYWFncmFoYV9jb21wbGFpbnRzX2RhdGFfYXdzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2ljaGFuZ2VteWNpdHlfamFuYWFncmFoYV9jb21wbGFpbnRzX2RhdGFfYXdzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgaWNoYW5nZW15Y2l0eS1qYW5hYWdyYWhhLWNvbXBsYWludHMtZGF0YS1hd3MgQnVja2V0OiBJQ2hhbmdlTXlDaXR5IENvbXBsYWludHMgRGF0YSBmcm9tIEphbmFhZ3JhaGE6IElDaGFuZ2VNeUNpdHkgQ29tcGxhaW50cyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGljaGFuZ2VteWNpdHktamFuYWFncmFoYS1jb21wbGFpbnRzLWRhdGEtYXdzIGJ1Y2tldCBhdCBodHRwczovL2ljaGFuZ2VteWNpdHktamFuYWFncmFoYS1jb21wbGFpbnRzLWRhdGEtYXdzLnMzLmFwLXNvdXRoLTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogSUNoYW5nZU15Q2l0eSBDb21wbGFpbnRzIERhdGEgZnJvbSBKYW5hYWdyYWhhXG5OYW1lMjogSUNoYW5nZU15Q2l0eSBDb21wbGFpbnRzXG5EZXNjcmlwdGlvbjogVGhlIFtJQ2hhbmdlTXlDaXR5XShodHRwczovL3d3dy5pY2hhbmdlbXljaXR5LmNvbSkgcHJvamVjdCBwcm92aWRlcyBpbnNpZ2h0IGludG8gdGhlIGNvbXBsYWludHMgcmFpc2VkIGJ5IGNpdGl6ZW5zIGZyb20gZGlmZmVudCBjaXRpZXMgb2YgSW5kaWEgcmVsYXRlZCB0byB0aGUgaXNzdWVzIGluIHRoZWlyIG5laWdoYm91cmhvb2RzIGFuZCB0aGUgcmVzb2x1dGlvbiBvZiB0aGUgc2FtZSBieSB0aGUgY2l2aWMgYm9kaWVzLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwOi8vaWNoYW5nZW15Y2l0eS1qYW5hYWdyYWhhLWNvbXBsYWludHMtZGF0YS1hd3MuczMuYXAtc291dGgtMS5hbWF6b25hd3MuY29tL3JlYWRtZS5odG1sXG5Db250YWN0OiBkYXRhQGphbmFhZ3JhaGEub3JnXG5VcGRhdGVGcmVxdWVuY3k6IERhaWx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfaWNoYW5nZW15Y2l0eV9qYW5hYWdyYWhhX2NvbXBsYWludHNfZGF0YV9hd3MvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9pY2hhbmdlbXljaXR5LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2ljaGFuZ2VteWNpdHlfamFuYWFncmFoYV9jb21wbGFpbnRzX2RhdGFfYXdzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2ljaGFuZ2VteWNpdHlfamFuYWFncmFoYV9jb21wbGFpbnRzX2RhdGFfYXdzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19pY2hhbmdlbXljaXR5X2phbmFhZ3JhaGFfY29tcGxhaW50c19kYXRhX2F3cyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19pcnNfOTkwX3NwcmVhZHNoZWV0cyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2lyc185OTBfc3ByZWFkc2hlZXRzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2lyc185OTBfc3ByZWFkc2hlZXRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgaXJzLTk5MC1zcHJlYWRzaGVldHMgQnVja2V0OiBJUlMgOTkwIEZpbGluZ3MgKFNwcmVhZHNoZWV0cyk6IEV4Y2VycHRzIG9mIGVsZWN0cm9uaWMgRm9ybSA5OTAgYW5kIDk5MC1FWiBmaWxpbmdzLCBjb252ZXJ0ZWQgdG8gc3ByZWFkc2hlZXQgZm9ybSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGlycy05OTAtc3ByZWFkc2hlZXRzIGJ1Y2tldCBhdCBodHRwczovL2lycy05OTAtc3ByZWFkc2hlZXRzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBJUlMgOTkwIEZpbGluZ3MgKFNwcmVhZHNoZWV0cylcbk5hbWUyOiBFeGNlcnB0cyBvZiBlbGVjdHJvbmljIEZvcm0gOTkwIGFuZCA5OTAtRVogZmlsaW5ncywgY29udmVydGVkIHRvIHNwcmVhZHNoZWV0IGZvcm1cbkRlc2NyaXB0aW9uOiBFeGNlcnB0cyBvZiBlbGVjdHJvbmljIEZvcm0gOTkwIGFuZCA5OTAtRVogZmlsaW5ncywgY29udmVydGVkIHRvIHNwcmVhZHNoZWV0IGZvcm0uIEFkZGl0aW9uYWwgZmllbGRzIGJlaW5nIGFkZGVkIHJlZ3VsYXJseS5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9hcHBsaWVkbm9ucHJvZml0cmVzZWFyY2guY29tL2RvY3VtZW50YXRpb24vaXJzLTk5MC1zcHJlYWRzaGVldHNcbkNvbnRhY3Q6IFtpbmZvQGFwcGxpZWRub25wcm9maXRyZXNlYXJjaC5jb21dKGluZm9AYXBwbGllZG5vbnByb2ZpdHJlc2VhcmNoLmNvbSlcbk1hbmFnZWRCeTogW0FwcGxpZWQgTm9ucHJvZml0IFJlc2VhcmNoLCBMTENdKGh0dHBzOi8vd3d3LmFwcGxpZWRub25wcm9maXRyZXNlYXJjaC5jb20vKVxuVXBkYXRlRnJlcXVlbmN5OiBRdWFydGVybHlcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19pcnNfOTkwX3NwcmVhZHNoZWV0cy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzLzk5MC1zcHJlYWRzaGVldHMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfaXJzXzk5MF9zcHJlYWRzaGVldHMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfaXJzXzk5MF9zcHJlYWRzaGVldHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2lyc185OTBfc3ByZWFkc2hlZXRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2xhYjQxb3BlbmF1ZGlvY29ycHVzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbGFiNDFvcGVuYXVkaW9jb3JwdXMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbGFiNDFvcGVuYXVkaW9jb3JwdXMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBsYWI0MW9wZW5hdWRpb2NvcnB1cyBCdWNrZXQ6IFZvaWNlcyBPYnNjdXJlZCBpbiBDb21wbGV4IEVudmlyb25tZW50YWwgU2V0dGluZ3MgKFZPaUNFUyk6IHdhdiBhdWRpbyBmaWxlcywgb3J0aG9ncmFwaGljIHRyYW5zY3JpcHRpb25zLCBhbmQgc3BlYWtlciBJRCIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGxhYjQxb3BlbmF1ZGlvY29ycHVzIGJ1Y2tldCBhdCBodHRwczovL2xhYjQxb3BlbmF1ZGlvY29ycHVzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBWb2ljZXMgT2JzY3VyZWQgaW4gQ29tcGxleCBFbnZpcm9ubWVudGFsIFNldHRpbmdzIChWT2lDRVMpXG5OYW1lMjogd2F2IGF1ZGlvIGZpbGVzLCBvcnRob2dyYXBoaWMgdHJhbnNjcmlwdGlvbnMsIGFuZCBzcGVha2VyIElEXG5EZXNjcmlwdGlvbjogVk9pQ0VTIGlzIGEgc3BlZWNoIGNvcnB1cyByZWNvcmRlZCBpbiBhY291c3RpY2FsbHkgY2hhbGxlbmdpbmcgc2V0dGluZ3MsIHVzaW5nIGRpc3RhbnQgbWljcm9waG9uZSByZWNvcmRpbmcuIFNwZWVjaCB3YXMgcmVjb3JkZWQgaW4gcmVhbCByb29tcyB3aXRoIHZhcmlvdXMgYWNvdXN0aWMgZmVhdHVyZXMgKHJldmVyYiwgZWNobywgSFZBQyBzeXN0ZW1zLCBvdXRzaWRlIG5vaXNlLCBldGMuKS4gQWR2ZXJzYXJpYWwgbm9pc2UsIGVpdGhlciB0ZWxldmlzaW9uLCBtdXNpYywgb3IgYmFiYmxlLCB3YXMgY29uY3VycmVudGx5IHBsYXllZCB3aXRoIGNsZWFuIHNwZWVjaC4gRGF0YSB3YXMgcmVjb3JkZWQgdXNpbmcgbXVsdGlwbGUgbWljcm9waG9uZXMgc3RyYXRlZ2ljYWxseSBwbGFjZWQgdGhyb3VnaG91dCB0aGUgcm9vbS4gVGhlIGNvcnB1cyBpbmNsdWRlcyBhdWRpbyByZWNvcmRpbmdzLCBvcnRob2dyYXBoaWMgdHJhbnNjcmlwdGlvbnMsIGFuZCBzcGVha2VyIGxhYmVscy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly92b2ljZXMxOC5naXRodWIuaW8vXG5Db250YWN0OiBodHRwczovL2dpdGh1Yi5jb20vdm9pY2VzMTgvdXRpbGl0aWVzL2lzc3Vlc1xuVXBkYXRlRnJlcXVlbmN5OiBEYXRhIGZyb20gdHdvIGFkZGl0aW9uYWwgcm9vbXMgd2lsbCBiZSBhZGRlZCB0byB0aGUgY29ycHVzIEZhbGwgMjAxOC5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19sYWI0MW9wZW5hdWRpb2NvcnB1cy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2xhYjQxLXNyaS12b2ljZXMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbGFiNDFvcGVuYXVkaW9jb3JwdXMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfbGFiNDFvcGVuYXVkaW9jb3JwdXMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2xhYjQxb3BlbmF1ZGlvY29ycHVzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2xhbmRzYXRfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbGFuZHNhdF9wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbGFuZHNhdF9wZHMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBsYW5kc2F0LXBkcyBCdWNrZXQ6IExhbmRzYXQgODogU2NlbmVzIGFuZCBtZXRhZGF0YSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGxhbmRzYXQtcGRzIGJ1Y2tldCBhdCBodHRwczovL2xhbmRzYXQtcGRzLnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBMYW5kc2F0IDhcbk5hbWUyOiBTY2VuZXMgYW5kIG1ldGFkYXRhXG5EZXNjcmlwdGlvbjogQW4gb25nb2luZyBjb2xsZWN0aW9uIG9mIHNhdGVsbGl0ZSBpbWFnZXJ5IG9mIGFsbCBsYW5kIG9uIEVhcnRoIHByb2R1Y2VkIGJ5IHRoZSBMYW5kc2F0IDggc2F0ZWxsaXRlLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL2xhbmRzYXQtcGRzL3JlYWRtZS5odG1sXG5Db250YWN0OiBodHRwczovL2xpc3RzLm9zZ2VvLm9yZy9tYWlsbWFuL2xpc3RpbmZvL2xhbmRzYXQtcGRzXG5NYW5hZ2VkQnk6IFtQbGFuZXRdKGh0dHBzOi8vd3d3LnBsYW5ldC5jb20vKVxuVXBkYXRlRnJlcXVlbmN5OiBOZXcgTGFuZHNhdCA4IHNjZW5lcyBhcmUgYWRkZWQgcmVndWxhcmx5IGFzIHNvb24gYXMgdGhleSBhcmUgYXZhaWxhYmxlLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2xhbmRzYXRfcGRzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvbGFuZHNhdC04LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2xhbmRzYXRfcGRzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2xhbmRzYXRfcGRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19sYW5kc2F0X3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19sYW5kc2F0X3Bkc19pbnZlbnRvcnkiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19sYW5kc2F0X3Bkc19pbnZlbnRvcnkuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbGFuZHNhdF9wZHNfaW52ZW50b3J5LyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbGFuZHNhdC1wZHMtaW52ZW50b3J5IEJ1Y2tldDogTGFuZHNhdCA4OiBbUzMgSW52ZW50b3J5XShodHRwczovL2RvY3MuYXdzLmFtYXpvbi5jb20vQW1hem9uUzMvbGF0ZXN0L2Rldi9zdG9yYWdlLWludmVudG9yeS5odG1sI3N0b3JhZ2UtaW52ZW50b3J5LWNvbnRlbnRzKSAoT1JDKSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGxhbmRzYXQtcGRzLWludmVudG9yeSBidWNrZXQgYXQgaHR0cHM6Ly9sYW5kc2F0LXBkcy1pbnZlbnRvcnkuczMudXMtd2VzdC0yLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IExhbmRzYXQgOFxuTmFtZTI6IFtTMyBJbnZlbnRvcnldKGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9BbWF6b25TMy9sYXRlc3QvZGV2L3N0b3JhZ2UtaW52ZW50b3J5Lmh0bWwjc3RvcmFnZS1pbnZlbnRvcnktY29udGVudHMpIChPUkMpXG5EZXNjcmlwdGlvbjogQW4gb25nb2luZyBjb2xsZWN0aW9uIG9mIHNhdGVsbGl0ZSBpbWFnZXJ5IG9mIGFsbCBsYW5kIG9uIEVhcnRoIHByb2R1Y2VkIGJ5IHRoZSBMYW5kc2F0IDggc2F0ZWxsaXRlLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL2xhbmRzYXQtcGRzL3JlYWRtZS5odG1sXG5Db250YWN0OiBodHRwczovL2xpc3RzLm9zZ2VvLm9yZy9tYWlsbWFuL2xpc3RpbmZvL2xhbmRzYXQtcGRzXG5NYW5hZ2VkQnk6IFtQbGFuZXRdKGh0dHBzOi8vd3d3LnBsYW5ldC5jb20vKVxuVXBkYXRlRnJlcXVlbmN5OiBOZXcgTGFuZHNhdCA4IHNjZW5lcyBhcmUgYWRkZWQgcmVndWxhcmx5IGFzIHNvb24gYXMgdGhleSBhcmUgYXZhaWxhYmxlLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2xhbmRzYXRfcGRzX2ludmVudG9yeS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2xhbmRzYXQtOC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19sYW5kc2F0X3Bkc19pbnZlbnRvcnkucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfbGFuZHNhdF9wZHNfaW52ZW50b3J5JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19sYW5kc2F0X3Bkc19pbnZlbnRvcnkiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbG9mYXJfZWxhaXNfbjEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19sb2Zhcl9lbGFpc19uMS5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19sb2Zhcl9lbGFpc19uMS8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGxvZmFyLWVsYWlzLW4xIEJ1Y2tldDogTE9GQVIgRUxBSVMtTjEgY3ljbGUgMiBvYnNlcnZhdGlvbnMgb24gQVdTOiBMT0ZBUiBFTEFJUy1OMSBjeWNsZSAyIG9ic2VydmF0aW9ucyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGxvZmFyLWVsYWlzLW4xIGJ1Y2tldCBhdCBodHRwczovL2xvZmFyLWVsYWlzLW4xLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBMT0ZBUiBFTEFJUy1OMSBjeWNsZSAyIG9ic2VydmF0aW9ucyBvbiBBV1Ncbk5hbWUyOiBMT0ZBUiBFTEFJUy1OMSBjeWNsZSAyIG9ic2VydmF0aW9uc1xuRGVzY3JpcHRpb246IFRoZXNlIGRhdGEgY29ycmVzcG9uZCB0byB0aGUgW0ludGVybmF0aW9uYWwgTE9GQVIgVGVsZXNjb3BlXShodHRwOi8vd3d3LmxvZmFyLm9yZy8pIG9ic2VydmF0aW9ucyBvZiB0aGUgc2t5IGZpZWxkIEVMQUlTLU4xICgxNjoxMDowMSArNTQ6MzA6MzYpIGR1cmluZyB0aGUgY3ljbGUgMiBvZiBvYnNlcnZhdGlvbnMuIFRoZXJlIGFyZSAxMSBydW5zIG9mIGFib3V0IDggaG91cnMgZWFjaCBwbHVzIHRoZSBjb3JyZXNwb25kaW5nIG9ic2VydmF0aW9uIG9mIHRoZSBjYWxpYnJhdGlvbiB0YXJnZXRzIGJlZm9yZSBhbmQgYWZ0ZXIgdGhlIHRhcmdldCBmaWVsZC4gVGhlIGRhdGEgYXJlIG1lYXN1cmVtZW50IHNldHMgKFtNU10oaHR0cHM6Ly9jYXNhLm5yYW8uZWR1L01lbW9zLzIyOS5odG1sKSkgY29udGFpbmluZyB0aGUgY3Jvc3MtY29ycmVsYXRlZCBkYXRhIGFuZCBtZXRhZGF0YSBkaXZpZGVkIGluIDM3MSBmcmVxdWVuY3kgc3ViLWJhbmRzIHBlciB0YXJnZXQgY2VudHJlZCBhdCB+MTUwIE1Iei5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly93d3cubG9mYXJjbG91ZC51ay9kYXRhLmh0bWxcbkNvbnRhY3Q6IGh0dHBzOi8vd3d3LmxvZmFyY2xvdWQudWsvXG5VcGRhdGVGcmVxdWVuY3k6IE5vdCB1cGRhdGVkXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbG9mYXJfZWxhaXNfbjEvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9sb2Zhci1lbGFpcy1uMS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19sb2Zhcl9lbGFpc19uMS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19sb2Zhcl9lbGFpc19uMSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbG9mYXJfZWxhaXNfbjEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbWZfbndwX21vZGVscyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX21mX253cF9tb2RlbHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbWZfbndwX21vZGVscy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG1mLW53cC1tb2RlbHMgQnVja2V0OiBBdG1vc3BoZXJpYyBNb2RlbHMgZnJvbSBNXHUwMGU5dFx1MDBlOW8tRnJhbmNlOiBBdG1vc3BoZXJpYyBNb2RlbHMgZnJvbSBNXHUwMGU5dFx1MDBlOW8tRnJhbmNlIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbWYtbndwLW1vZGVscyBidWNrZXQgYXQgaHR0cHM6Ly9tZi1ud3AtbW9kZWxzLnMzLmV1LXdlc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBBdG1vc3BoZXJpYyBNb2RlbHMgZnJvbSBNXHUwMGU5dFx1MDBlOW8tRnJhbmNlXG5OYW1lMjogQXRtb3NwaGVyaWMgTW9kZWxzIGZyb20gTVx1MDBlOXRcdTAwZTlvLUZyYW5jZVxuRGVzY3JpcHRpb246IEdsb2JhbCBhbmQgaGlnaC1yZXNvbHV0aW9uIHJlZ2lvbmFsIGF0bW9zcGhlcmljIG1vZGVscyBmcm9tIE1cdTAwZTl0XHUwMGU5by1GcmFuY2UuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vbWYtbW9kZWxzLW9uLWF3cy5vcmdcbkNvbnRhY3Q6IGNvbnRhY3RAb3Blbm1ldGVvZGF0YS5jb21cbk1hbmFnZWRCeTogW09wZW5NZXRlb0RhdGFdKGh0dHBzOi8vb3Blbm1ldGVvZGF0YS5jb20pXG5VcGRhdGVGcmVxdWVuY3k6IEV2ZXJ5IDYgaG91cnNcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19tZl9ud3BfbW9kZWxzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvbWV0ZW8tZnJhbmNlLW1vZGVscy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19tZl9ud3BfbW9kZWxzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX21mX253cF9tb2RlbHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX21mX253cF9tb2RlbHMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbW9kaXNfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbW9kaXNfcGRzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX21vZGlzX3Bkcy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG1vZGlzLXBkcyBCdWNrZXQ6IE1PRElTIG9uIEFXUzogSW1hZ2VyeSBhbmQgbWV0YWRhdGEiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBtb2Rpcy1wZHMgYnVja2V0IGF0IGh0dHBzOi8vbW9kaXMtcGRzLnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBNT0RJUyBvbiBBV1Ncbk5hbWUyOiBJbWFnZXJ5IGFuZCBtZXRhZGF0YVxuRGVzY3JpcHRpb246IFNlbGVjdCBwcm9kdWN0cyBmcm9tIHRoZSBNb2RlcmF0ZSBSZXNvbHV0aW9uIEltYWdpbmcgU3BlY3Ryb3JhZGlvbWV0ZXIgKE1PRElTKSBtYW5hZ2VkIGJ5IHRoZSBVLlMuIEdlb2xvZ2ljYWwgU3VydmV5IGFuZCBOQVNBLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL21vZGlzLXBkcy9yZWFkbWUuaHRtbFxuQ29udGFjdDogaHR0cHM6Ly9naXRodWIuY29tL0FzdHJvRGlnaXRhbC9tb2Rpcy1pbmdlc3Rvci9pc3N1ZXNcblVwZGF0ZUZyZXF1ZW5jeTogTmV3IE1PRElTIGRhdGEgaXMgYWRkZWQgcmVndWxhcmx5IGFzIHNvb24gYXMgdGhleSBhcmUgYXZhaWxhYmxlLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX21vZGlzX3Bkcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL21vZGlzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX21vZGlzX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19tb2Rpc19wZHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX21vZGlzX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19tdWx0aW1lZGlhX2NvbW1vbnMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19tdWx0aW1lZGlhX2NvbW1vbnMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbXVsdGltZWRpYV9jb21tb25zLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbXVsdGltZWRpYS1jb21tb25zIEJ1Y2tldDogTXVsdGltZWRpYSBDb21tb25zOiBUaGlzIGRpcmVjdG9yeSBoYXMgOTksMTcxLDY4OCBpbWFnZSBmaWxlcyBhbmQgNzg3LDQ3OSB2aWRlbyBmaWxlcy4gVGhlIHZpZGVvcyBhZGQgdXAgdG8gYXJvdW5kIDgsMDgxIGhvdXJzLCB3aXRoIGFuIGF2ZXJhZ2UgdmlkZW8gbGVuZ3RoIG9mIDM3cyBhbmQgYSBtZWRpYW4gbGVuZ3RoIG9mIDI4cy4iLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBtdWx0aW1lZGlhLWNvbW1vbnMgYnVja2V0IGF0IGh0dHBzOi8vbXVsdGltZWRpYS1jb21tb25zLnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBNdWx0aW1lZGlhIENvbW1vbnNcbk5hbWUyOiBUaGlzIGRpcmVjdG9yeSBoYXMgOTksMTcxLDY4OCBpbWFnZSBmaWxlcyBhbmQgNzg3LDQ3OSB2aWRlbyBmaWxlcy4gVGhlIHZpZGVvcyBhZGQgdXAgdG8gYXJvdW5kIDgsMDgxIGhvdXJzLCB3aXRoIGFuIGF2ZXJhZ2UgdmlkZW8gbGVuZ3RoIG9mIDM3cyBhbmQgYSBtZWRpYW4gbGVuZ3RoIG9mIDI4cy5cbkRlc2NyaXB0aW9uOiBUaGUgTXVsdGltZWRpYSBDb21tb25zIGlzIGEgY29sbGVjdGlvbiBvZiBhdWRpbyBhbmQgdmlzdWFsIGZlYXR1cmVzIGNvbXB1dGVkIGZvciB0aGUgbmVhcmx5IDEwMCBtaWxsaW9uIENyZWF0aXZlIENvbW1vbnMtbGljZW5zZWQgRmxpY2tyIGltYWdlcyBhbmQgdmlkZW9zIGluIHRoZSBZRkNDMTAwTSBkYXRhc2V0IGZyb20gWWFob28hIExhYnMsIGFsb25nIHdpdGggZ3JvdW5kLXRydXRoIGFubm90YXRpb25zIGZvciBzZWxlY3RlZCBzdWJzZXRzLiBUaGUgSW50ZXJuYXRpb25hbCBDb21wdXRlciBTY2llbmNlIEluc3RpdHV0ZSAoSUNTSSkgYW5kIExhd3JlbmNlIExpdmVybW9yZSBOYXRpb25hbCBMYWJvcmF0b3J5IGFyZSBwcm9kdWNpbmcgYW5kIGRpc3RyaWJ1dGluZyBhIGNvcmUgc2V0IG9mIGRlcml2ZWQgZmVhdHVyZSBzZXRzIGFuZCBhbm5vdGF0aW9ucyBhcyBwYXJ0IG9mIGFuIGVmZm9ydCB0byBlbmFibGUgbGFyZ2Utc2NhbGUgdmlkZW8gc2VhcmNoIGNhcGFiaWxpdGllcy4gVGhleSBoYXZlIHJlbGVhc2VkIHRoaXMgZmVhdHVyZSBjb3JwdXMgaW50byB0aGUgcHVibGljIGRvbWFpbiwgdW5kZXIgQ3JlYXRpdmUgQ29tbW9ucyBMaWNlbnNlIDAsIHNvIGl0IGlzIGZyZWUgZm9yIGFueW9uZSB0byB1c2UgZm9yIGFueSBwdXJwb3NlLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL211bHRpbWVkaWFjb21tb25zLndvcmRwcmVzcy5jb20veWZjYzEwMG0tY29yZS1kYXRhc2V0L1xuQ29udGFjdDogbXVsdGltZWRpYS1jb21tb25zQGljc2kuYmVya2VsZXkuZWR1XG5VcGRhdGVGcmVxdWVuY3k6IE5vdCB1cGRhdGVkLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX211bHRpbWVkaWFfY29tbW9ucy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL211bHRpbWVkaWEtY29tbW9ucy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19tdWx0aW1lZGlhX2NvbW1vbnMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfbXVsdGltZWRpYV9jb21tb25zJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19tdWx0aW1lZGlhX2NvbW1vbnMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbXdhcHVibGljIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbXdhcHVibGljLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX213YXB1YmxpYy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG13YXB1YmxpYyBCdWNrZXQ6IEVwb2NoIG9mIFJlaW9uaXphdGlvbiBEYXRhc2V0OiBTZWxlY3RlZCBNV0EgRW9SIGRhdGEgKHV2Zml0cyBmb3JtYXQpIGZyb20gMjAxMy0yMDE1IiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbXdhcHVibGljIGJ1Y2tldCBhdCBodHRwczovL213YXB1YmxpYy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogRXBvY2ggb2YgUmVpb25pemF0aW9uIERhdGFzZXRcbk5hbWUyOiBTZWxlY3RlZCBNV0EgRW9SIGRhdGEgKHV2Zml0cyBmb3JtYXQpIGZyb20gMjAxMy0yMDE1XG5EZXNjcmlwdGlvbjogVGhlIGRhdGEgYXJlIGZyb20gb2JzZXJ2YXRpb25zIHdpdGggdGhlIE11cmNoaXNvbiBXaWRlZmllbGQgQXJyYXkgKE1XQSkgd2hpY2ggaXMgYSBTcXVhcmUgS2lsb21ldGVyIEFycmF5IChTS0EpIHByZWN1cnNvciBpbiBXZXN0ZXJuIEF1c3RyYWxpYS4gIFRoaXMgcGFydGljdWxhciBkYXRhc2V0IGlzIGZyb20gdGhlIEVwb2NoIG9mIFJlaW9uaXphdGlvbiBwcm9qZWN0IHdoaWNoIGlzIGEga2V5IHNjaWVuY2UgZHJpdmVyIG9mIHRoZSBTS0EuIE5lYXJseSAyUEIgb2Ygc3VjaCBvYnNlcnZhdGlvbnMgaGF2ZSBiZWVuIHJlY29yZGVkIHRvIGRhdGUsIHRoaXMgaXMgYSBzbWFsbCBzdWJzZXQgb2YgdGhhdCB3aGljaCBoYXMgYmVlbiBleHBvcnRlZCBmcm9tIHRoZSBNV0EgZGF0YSBhcmNoaXZlIGluIFBlcnRoIGFuZCBtYWRlIGF2YWlsYWJsZSB0byB0aGUgcHVibGljIG9uIEFXUy4gIFRoZSBkYXRhIHdlcmUgdGFrZW4gdG8gZGV0ZWN0IHNpZ25hdHVyZXMgb2YgdGhlIGZpcnN0IHN0YXJzIGFuZCBnYWxheGllcyBmb3JtaW5nIGFuZCB0aGUgZWZmZWN0IG9mIHRoZXNlIGVhcmx5IHN0YXJzIGFuZCBnYWxheGllcyBvbiB0aGUgZXZvbHV0aW9uIG9mIHRoZSB1bml2ZXJzZS5cblxuRG9jdW1lbnRhdGlvbjogaHR0cDovL2RhbmllbGNqYWNvYnMuY29tL3Jlc2VhcmNoL2Vwb2NoLW9mLXJlaW9uaXphdGlvbi1hd3MtcHVibGljLWRhdGFzZXQvXG5Db250YWN0OiBicnluYWggKGF0KSBwaHlzLndhc2hpbmd0b24uZWR1XG5NYW5hZ2VkQnk6IFVuaXZlcnNpdHkgb2Ygd2FzaGluZ3RvbiBSYWRpbyBDb3Ntb2xvZ3kgR3JvdXBcblVwZGF0ZUZyZXF1ZW5jeTogSXJyZWd1bGFybHlcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19td2FwdWJsaWMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9lcG9jaC1vZi1yZWlvbml6YXRpb24vIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbXdhcHVibGljLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX213YXB1YmxpYyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbXdhcHVibGljIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25hbm9wb3JlX2h1bWFuX3dncyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25hbm9wb3JlX2h1bWFuX3dncy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19uYW5vcG9yZV9odW1hbl93Z3MvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBuYW5vcG9yZS1odW1hbi13Z3MgQnVja2V0OiBOYW5vcG9yZSBSZWZlcmVuY2UgSHVtYW4gR2Vub21lOiBOYW5vcG9yZSBSZWZlcmVuY2UgSHVtYW4gR2Vub21lIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbmFub3BvcmUtaHVtYW4td2dzIGJ1Y2tldCBhdCBodHRwczovL25hbm9wb3JlLWh1bWFuLXdncy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogTmFub3BvcmUgUmVmZXJlbmNlIEh1bWFuIEdlbm9tZVxuTmFtZTI6IE5hbm9wb3JlIFJlZmVyZW5jZSBIdW1hbiBHZW5vbWVcbkRlc2NyaXB0aW9uOiBUaGlzIGRhdGFzZXQgaW5jbHVkZXMgdGhlIHNlcXVlbmNpbmcgYW5kIGFzc2VtYmx5IG9mIGEgcmVmZXJlbmNlIHN0YW5kYXJkIGh1bWFuIGdlbm9tZSAoR00xMjg3OCkgdXNpbmcgdGhlIE1pbklPTiBuYW5vcG9yZSBzZXF1ZW5jaW5nIGluc3RydW1lbnQgd2l0aCB0aGUgUjkuNCAxRCBjaGVtaXN0cnkuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZ2l0aHViLmNvbS9uYW5vcG9yZS13Z3MtY29uc29ydGl1bS9OQTEyODc4XG5Db250YWN0OiBodHRwczovL2dpdGh1Yi5jb20vbmFub3BvcmUtd2dzLWNvbnNvcnRpdW0vTkExMjg3OC9pc3N1ZXNcblVwZGF0ZUZyZXF1ZW5jeTogRGF0YSB3aWxsIGJlIGFkZGVkIGFzIG1ldGhvZG9sb2d5IGltcHJvdmVzIG9yIG5ldyBkYXRhIHVzZXMgYXJlIGVuY291bnRlcmVkLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25hbm9wb3JlX2h1bWFuX3dncy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25hbm9wb3JlLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25hbm9wb3JlX2h1bWFuX3dncy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19uYW5vcG9yZV9odW1hbl93Z3Mmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25hbm9wb3JlX2h1bWFuX3dncyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19uYXNhbmV4X0xhbmRzYXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19uYXNhbmV4X0xhbmRzYXQuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbmFzYW5leF9MYW5kc2F0LyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbmFzYW5leCBCdWNrZXQgd2l0aCBwcmVmaXg9TGFuZHNhdC86IE5BU0EgTkVYOiBMYW5kc2F0IEdMUyAoR2xvYmFsIExhbmQgU3VydmV5KSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5hc2FuZXggYnVja2V0IGF0IGh0dHBzOi8vbmFzYW5leC5zMy51cy13ZXN0LTIuYW1hem9uYXdzLmNvbS8gd2l0aCBwcmVmaXg9TGFuZHNhdC8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogTkFTQSBORVhcbk5hbWUyOiBMYW5kc2F0IEdMUyAoR2xvYmFsIExhbmQgU3VydmV5KVxuRGVzY3JpcHRpb246IEEgY29sbGVjdGlvbiBvZiBFYXJ0aCBzY2llbmNlIGRhdGFzZXRzIG1haW50YWluZWQgYnkgTkFTQSwgaW5jbHVkaW5nIGNsaW1hdGUgY2hhbmdlIHByb2plY3Rpb25zIGFuZCBzYXRlbGxpdGUgaW1hZ2VzIG9mIHRoZSBFYXJ0aCdzIHN1cmZhY2UuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZG9jcy5vcGVuZGF0YS5hd3MvbmFzYS1uZXgvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IGh0dHBzOi8vbmV4Lm5hc2EuZ292L25leC9jb250YWN0dXMvXG5VcGRhdGVGcmVxdWVuY3k6IEluZnJlcXVlbnRseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25hc2FuZXhfTGFuZHNhdC9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25hc2FuZXgvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbmFzYW5leF9MYW5kc2F0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX25hc2FuZXhfTGFuZHNhdCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbmFzYW5leF9MYW5kc2F0Il0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25hc2FuZXhfTE9DQSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25hc2FuZXhfTE9DQS5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19uYXNhbmV4X0xPQ0EvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBuYXNhbmV4IEJ1Y2tldCB3aXRoIHByZWZpeD1MT0NBLzogTkFTQSBORVg6IExvY2FsaXplZCBDb25zdHJ1Y3RlZCBBbmFsb2dzIChMT0NBKSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5hc2FuZXggYnVja2V0IGF0IGh0dHBzOi8vbmFzYW5leC5zMy51cy13ZXN0LTIuYW1hem9uYXdzLmNvbS8gd2l0aCBwcmVmaXg9TE9DQS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogTkFTQSBORVhcbk5hbWUyOiBMb2NhbGl6ZWQgQ29uc3RydWN0ZWQgQW5hbG9ncyAoTE9DQSlcbkRlc2NyaXB0aW9uOiBBIGNvbGxlY3Rpb24gb2YgRWFydGggc2NpZW5jZSBkYXRhc2V0cyBtYWludGFpbmVkIGJ5IE5BU0EsIGluY2x1ZGluZyBjbGltYXRlIGNoYW5nZSBwcm9qZWN0aW9ucyBhbmQgc2F0ZWxsaXRlIGltYWdlcyBvZiB0aGUgRWFydGgncyBzdXJmYWNlLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL25hc2EtbmV4L3JlYWRtZS5odG1sXG5Db250YWN0OiBodHRwczovL25leC5uYXNhLmdvdi9uZXgvY29udGFjdHVzL1xuVXBkYXRlRnJlcXVlbmN5OiBJbmZyZXF1ZW50bHlcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19uYXNhbmV4X0xPQ0EvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9uYXNhbmV4LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25hc2FuZXhfTE9DQS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19uYXNhbmV4X0xPQ0Emc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25hc2FuZXhfTE9DQSJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19uYXNhbmV4X01PRElTIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbmFzYW5leF9NT0RJUy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19uYXNhbmV4X01PRElTLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbmFzYW5leCBCdWNrZXQgd2l0aCBwcmVmaXg9TU9ESVMvOiBOQVNBIE5FWDogTU9EMTNRMSAoVmVnZXRhdGlvbiBJbmRpY2VzIDE2LURheSBMMyBHbG9iYWwgMjUwbSkiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBuYXNhbmV4IGJ1Y2tldCBhdCBodHRwczovL25hc2FuZXguczMudXMtd2VzdC0yLmFtYXpvbmF3cy5jb20vIHdpdGggcHJlZml4PU1PRElTLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBOQVNBIE5FWFxuTmFtZTI6IE1PRDEzUTEgKFZlZ2V0YXRpb24gSW5kaWNlcyAxNi1EYXkgTDMgR2xvYmFsIDI1MG0pXG5EZXNjcmlwdGlvbjogQSBjb2xsZWN0aW9uIG9mIEVhcnRoIHNjaWVuY2UgZGF0YXNldHMgbWFpbnRhaW5lZCBieSBOQVNBLCBpbmNsdWRpbmcgY2xpbWF0ZSBjaGFuZ2UgcHJvamVjdGlvbnMgYW5kIHNhdGVsbGl0ZSBpbWFnZXMgb2YgdGhlIEVhcnRoJ3Mgc3VyZmFjZS5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLm9wZW5kYXRhLmF3cy9uYXNhLW5leC9yZWFkbWUuaHRtbFxuQ29udGFjdDogaHR0cHM6Ly9uZXgubmFzYS5nb3YvbmV4L2NvbnRhY3R1cy9cblVwZGF0ZUZyZXF1ZW5jeTogSW5mcmVxdWVudGx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbmFzYW5leF9NT0RJUy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25hc2FuZXgvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbmFzYW5leF9NT0RJUy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19uYXNhbmV4X01PRElTJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19uYXNhbmV4X01PRElTIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25hc2FuZXhfTkVYX0RDUDMwIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbmFzYW5leF9ORVhfRENQMzAuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbmFzYW5leF9ORVhfRENQMzAvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBuYXNhbmV4IEJ1Y2tldCB3aXRoIHByZWZpeD1ORVgtRENQMzAvOiBOQVNBIE5FWDogRG93bnNjYWxlZCBDbGltYXRlIFByb2plY3Rpb25zIChORVgtRENQMzApIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbmFzYW5leCBidWNrZXQgYXQgaHR0cHM6Ly9uYXNhbmV4LnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyB3aXRoIHByZWZpeD1ORVgtRENQMzAvIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5BU0EgTkVYXG5OYW1lMjogRG93bnNjYWxlZCBDbGltYXRlIFByb2plY3Rpb25zIChORVgtRENQMzApXG5EZXNjcmlwdGlvbjogQSBjb2xsZWN0aW9uIG9mIEVhcnRoIHNjaWVuY2UgZGF0YXNldHMgbWFpbnRhaW5lZCBieSBOQVNBLCBpbmNsdWRpbmcgY2xpbWF0ZSBjaGFuZ2UgcHJvamVjdGlvbnMgYW5kIHNhdGVsbGl0ZSBpbWFnZXMgb2YgdGhlIEVhcnRoJ3Mgc3VyZmFjZS5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLm9wZW5kYXRhLmF3cy9uYXNhLW5leC9yZWFkbWUuaHRtbFxuQ29udGFjdDogaHR0cHM6Ly9uZXgubmFzYS5nb3YvbmV4L2NvbnRhY3R1cy9cblVwZGF0ZUZyZXF1ZW5jeTogSW5mcmVxdWVudGx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbmFzYW5leF9ORVhfRENQMzAvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9uYXNhbmV4LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25hc2FuZXhfTkVYX0RDUDMwLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX25hc2FuZXhfTkVYX0RDUDMwJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19uYXNhbmV4X05FWF9EQ1AzMCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19uYXNhbmV4X05FWF9HRERQIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbmFzYW5leF9ORVhfR0REUC5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19uYXNhbmV4X05FWF9HRERQLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbmFzYW5leCBCdWNrZXQgd2l0aCBwcmVmaXg9TkVYLUdERFAvOiBOQVNBIE5FWDogR2xvYmFsIERhaWx5IERvd25zY2FsZWQgUHJvamVjdGlvbnMgKE5FWC1HRERQKSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5hc2FuZXggYnVja2V0IGF0IGh0dHBzOi8vbmFzYW5leC5zMy51cy13ZXN0LTIuYW1hem9uYXdzLmNvbS8gd2l0aCBwcmVmaXg9TkVYLUdERFAvIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5BU0EgTkVYXG5OYW1lMjogR2xvYmFsIERhaWx5IERvd25zY2FsZWQgUHJvamVjdGlvbnMgKE5FWC1HRERQKVxuRGVzY3JpcHRpb246IEEgY29sbGVjdGlvbiBvZiBFYXJ0aCBzY2llbmNlIGRhdGFzZXRzIG1haW50YWluZWQgYnkgTkFTQSwgaW5jbHVkaW5nIGNsaW1hdGUgY2hhbmdlIHByb2plY3Rpb25zIGFuZCBzYXRlbGxpdGUgaW1hZ2VzIG9mIHRoZSBFYXJ0aCdzIHN1cmZhY2UuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZG9jcy5vcGVuZGF0YS5hd3MvbmFzYS1uZXgvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IGh0dHBzOi8vbmV4Lm5hc2EuZ292L25leC9jb250YWN0dXMvXG5VcGRhdGVGcmVxdWVuY3k6IEluZnJlcXVlbnRseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25hc2FuZXhfTkVYX0dERFAvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9uYXNhbmV4LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25hc2FuZXhfTkVYX0dERFAucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfbmFzYW5leF9ORVhfR0REUCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbmFzYW5leF9ORVhfR0REUCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2dlZnNfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbm9hYV9nZWZzX3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ub2FhX2dlZnNfcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbm9hYS1nZWZzLXBkcyBCdWNrZXQ6IE5PQUEgR2xvYmFsIEVuc2VtYmxlIEZvcmVjYXN0IFN5c3RlbSAoR0VGUyk6IFByb2plY3QgZGF0YSBmaWxlcyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5vYWEtZ2Vmcy1wZHMgYnVja2V0IGF0IGh0dHBzOi8vbm9hYS1nZWZzLXBkcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogTk9BQSBHbG9iYWwgRW5zZW1ibGUgRm9yZWNhc3QgU3lzdGVtIChHRUZTKVxuTmFtZTI6IFByb2plY3QgZGF0YSBmaWxlc1xuRGVzY3JpcHRpb246IFRoZSBHbG9iYWwgRW5zZW1ibGUgRm9yZWNhc3QgU3lzdGVtIChHRUZTKSwgcHJldmlvdXNseSBrbm93biBhcyB0aGUgR0ZTIEdsb2JhbCBFTlNlbWJsZSAoR0VOUyksIGlzIGEgd2VhdGhlciBmb3JlY2FzdCBtb2RlbCBtYWRlIHVwIG9mIDIxIHNlcGFyYXRlIGZvcmVjYXN0cywgb3IgZW5zZW1ibGUgbWVtYmVycy4gIFRoZSBOYXRpb25hbCBDZW50ZXJzIGZvciBFbnZpcm9ubWVudGFsIFByZWRpY3Rpb24gKE5DRVApIHN0YXJ0ZWQgdGhlIEdFRlMgdG8gYWRkcmVzcyB0aGUgbmF0dXJlIG9mIHVuY2VydGFpbnR5IGluIHdlYXRoZXIgb2JzZXJ2YXRpb25zLCB3aGljaCBpcyB1c2VkIHRvIGluaXRpYWxpemUgd2VhdGhlciBmb3JlY2FzdCBtb2RlbHMuIFRoZSBHRUZTIGF0dGVtcHRzIHRvIHF1YW50aWZ5IHRoZSBhbW91bnQgb2YgdW5jZXJ0YWludHkgaW4gYSBmb3JlY2FzdCBieSBnZW5lcmF0aW5nIGFuIGVuc2VtYmxlIG9mIG11bHRpcGxlIGZvcmVjYXN0cywgZWFjaCBtaW51dGVseSBkaWZmZXJlbnQsIG9yIHBlcnR1cmJlZCwgZnJvbSB0aGUgb3JpZ2luYWwgb2JzZXJ2YXRpb25zLiBXaXRoIGdsb2JhbCBjb3ZlcmFnZSwgR0VGUyBpcyBwcm9kdWNlZCBmb3VyIHRpbWVzIGEgZGF5IHdpdGggd2VhdGhlciBmb3JlY2FzdHMgZ29pbmcgb3V0IHRvIDE2IGRheXMuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZG9jcy5vcGVuZGF0YS5hd3Mvbm9hYS1nZWZzLXBkcy9yZWFkbWUuaHRtbFxuQ29udGFjdDogRm9yIHF1ZXN0aW9ucyByZWdhcmRpbmcgZGF0YSBjb250ZW50IG9yIHF1YWxpdHksIHZpc2l0IFt0aGUgTk9BQSBHRUZTIHNpdGVdKGh0dHA6Ly93d3cuZW1jLm5jZXAubm9hYS5nb3YvaW5kZXgucGhwP2JyYW5jaD1HRUZTKS4gRm9yIGFueSBxdWVzdGlvbnMgcmVnYXJkaW5nIGRhdGEgZGVsaXZlcnkgbm90IGFzc29jaWF0ZWQgd2l0aCB0aGlzIHBsYXRmb3JtIG9yIGFueSBnZW5lcmFsIHF1ZXN0aW9ucyByZWdhcmRpbmcgdGhlIE5PQUEgQmlnIERhdGEgUHJvamVjdCwgZW1haWwgbm9hYS5iZHBAbm9hYS5nb3Zcbk1hbmFnZWRCeTogW05PQUFdKGh0dHBzOi8vd3d3Lm5vYWEuZ292LylcblVwZGF0ZUZyZXF1ZW5jeTogNCB0aW1lcyBhIGRheSwgZXZlcnkgNiBob3VycyBzdGFydGluZyBhdCBtaWRuaWdodC5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19ub2FhX2dlZnNfcGRzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvbm9hYS1nZWZzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25vYWFfZ2Vmc19wZHMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfbm9hYV9nZWZzX3BkcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbm9hYV9nZWZzX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2dmc19iZHBfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbm9hYV9nZnNfYmRwX3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ub2FhX2dmc19iZHBfcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbm9hYS1nZnMtYmRwLXBkcyBCdWNrZXQ6IE5PQUEgR2xvYmFsIEZvcmVjYXN0IFN5c3RlbSAoR0ZTKTogQSByb2xsaW5nIGZvdXItd2VlayBhcmNoaXZlIG9mIDAuMjUgR0ZTIGRhdGEiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBub2FhLWdmcy1iZHAtcGRzIGJ1Y2tldCBhdCBodHRwczovL25vYWEtZ2ZzLWJkcC1wZHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5PQUEgR2xvYmFsIEZvcmVjYXN0IFN5c3RlbSAoR0ZTKVxuTmFtZTI6IEEgcm9sbGluZyBmb3VyLXdlZWsgYXJjaGl2ZSBvZiAwLjI1IEdGUyBkYXRhXG5EZXNjcmlwdGlvbjogVGhlIEdsb2JhbCBGb3JlY2FzdCBTeXN0ZW0gKEdGUykgaXMgYSB3ZWF0aGVyIGZvcmVjYXN0IG1vZGVsIHByb2R1Y2VkIGJ5IHRoZSBOYXRpb25hbCBDZW50ZXJzIGZvciBFbnZpcm9ubWVudGFsIFByZWRpY3Rpb24gKE5DRVApLiBEb3plbnMgb2YgYXRtb3NwaGVyaWMgYW5kIGxhbmQtc29pbCB2YXJpYWJsZXMgYXJlIGF2YWlsYWJsZSB0aHJvdWdoIHRoaXMgZGF0YXNldCwgZnJvbSB0ZW1wZXJhdHVyZXMsIHdpbmRzLCBhbmQgcHJlY2lwaXRhdGlvbiB0byBzb2lsIG1vaXN0dXJlIGFuZCBhdG1vc3BoZXJpYyBvem9uZSBjb25jZW50cmF0aW9uLiBUaGUgZW50aXJlIGdsb2JlIGlzIGNvdmVyZWQgYnkgdGhlIEdGUyBhdCBhIGJhc2UgaG9yaXpvbnRhbCByZXNvbHV0aW9uIG9mIDE4IG1pbGVzICgyOCBraWxvbWV0ZXJzKSBiZXR3ZWVuIGdyaWQgcG9pbnRzLCB3aGljaCBpcyB1c2VkIGJ5IHRoZSBvcGVyYXRpb25hbCBmb3JlY2FzdGVycyB3aG8gcHJlZGljdCB3ZWF0aGVyIG91dCB0byAxNiBkYXlzIGluIHRoZSBmdXR1cmUuIEhvcml6b250YWwgcmVzb2x1dGlvbiBkcm9wcyB0byA0NCBtaWxlcyAoNzAga2lsb21ldGVycykgYmV0d2VlbiBncmlkIHBvaW50IGZvciBmb3JlY2FzdHMgYmV0d2VlbiBvbmUgd2VlayBhbmQgdHdvIHdlZWtzLiAqKkJvdGggdGhlIGN1cnJlbnQgdmVyc2lvbiBhbmQgdGhlIEZWMy1iYXNlZCBwYXJhbGxlbCB2ZXJzaW9uIG9mIHRoZSBHRlMgYmVpbmcgdGVzdGVkIHRvIGJlY29tZSB0aGUgbmV3IG9wZXJhdGlvbmFsIG1vZGVsIGF0IGEgZnV0dXJlIGRhdGUgYXJlIGF2YWlsYWJsZS4qKlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL3d3dy5uY2RjLm5vYWEuZ292L2RhdGEtYWNjZXNzL21vZGVsLWRhdGEvbW9kZWwtZGF0YXNldHMvZ2xvYmFsLWZvcmNhc3Qtc3lzdGVtLWdmc1xuQ29udGFjdDogRm9yIHF1ZXN0aW9ucyByZWdhcmRpbmcgZGF0YSBjb250ZW50IG9yIHF1YWxpdHksIHZpc2l0IFt0aGUgTk9BQSBHRlMgc2l0ZV0oaHR0cDovL3d3dy5lbWMubmNlcC5ub2FhLmdvdi9pbmRleC5waHA/YnJhbmNoPUdGUykuIEZvciBhbnkgcXVlc3Rpb25zIHJlZ2FyZGluZyBkYXRhIGRlbGl2ZXJ5IG5vdCBhc3NvY2lhdGVkIHdpdGggdGhpcyBwbGF0Zm9ybSBvciBhbnkgZ2VuZXJhbCBxdWVzdGlvbnMgcmVnYXJkaW5nIHRoZSBOT0FBIEJpZyBEYXRhIFByb2plY3QsIGVtYWlsIG5vYWEuYmRwQG5vYWEuZ292LlxuTWFuYWdlZEJ5OiBbTk9BQV0oaHR0cHM6Ly93d3cubm9hYS5nb3YvKVxuVXBkYXRlRnJlcXVlbmN5OiA0IHRpbWVzIGEgZGF5LCBldmVyeSA2IGhvdXJzIHN0YXJ0aW5nIGF0IG1pZG5pZ2h0XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbm9hYV9nZnNfYmRwX3Bkcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25vYWEtZ2ZzLWJkcC1wZHMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbm9hYV9nZnNfYmRwX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ub2FhX2dmc19iZHBfcGRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19ub2FhX2dmc19iZHBfcGRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25vYWFfZ2ZzX3BkcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25vYWFfZ2ZzX3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ub2FhX2dmc19wZHMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBub2FhLWdmcy1wZHMgQnVja2V0OiBVbmlkYXRhIE5PQUEgR2xvYmFsIEZvcmVjYXN0IFN5c3RlbSAoR0ZTKSBNb2RlbDogQSByb2xsaW5nIGZvdXItd2VlayBhcmNoaXZlIG9mIDAuMjUgZGVncmVlIEdGUyBkYXRhIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbm9hYS1nZnMtcGRzIGJ1Y2tldCBhdCBodHRwczovL25vYWEtZ2ZzLXBkcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogVW5pZGF0YSBOT0FBIEdsb2JhbCBGb3JlY2FzdCBTeXN0ZW0gKEdGUykgTW9kZWxcbk5hbWUyOiBBIHJvbGxpbmcgZm91ci13ZWVrIGFyY2hpdmUgb2YgMC4yNSBkZWdyZWUgR0ZTIGRhdGFcbkRlc2NyaXB0aW9uOiBUaGUgR2xvYmFsIEZvcmVjYXN0IFN5c3RlbSAoR0ZTKSBpcyBhIHdlYXRoZXIgZm9yZWNhc3QgbW9kZWwgcHJvZHVjZWQgYnkgdGhlIE5hdGlvbmFsIENlbnRlcnMgZm9yIEVudmlyb25tZW50YWwgUHJlZGljdGlvbiAoTkNFUCkuIERvemVucyBvZiBhdG1vc3BoZXJpYyBhbmQgbGFuZC1zb2lsIHZhcmlhYmxlcyBhcmUgYXZhaWxhYmxlIHRocm91Z2ggdGhpcyBkYXRhc2V0LCBmcm9tIHRlbXBlcmF0dXJlcywgd2luZHMsIGFuZCBwcmVjaXBpdGF0aW9uIHRvIHNvaWwgbW9pc3R1cmUgYW5kIGF0bW9zcGhlcmljIG96b25lIGNvbmNlbnRyYXRpb24uIFRoZSBlbnRpcmUgZ2xvYmUgaXMgY292ZXJlZCBieSB0aGUgR0ZTIGF0IGEgYmFzZSBob3Jpem9udGFsIHJlc29sdXRpb24gb2YgMTggbWlsZXMgKDI4IGtpbG9tZXRlcnMpIGJldHdlZW4gZ3JpZCBwb2ludHMsIHdoaWNoIGlzIHVzZWQgYnkgdGhlIG9wZXJhdGlvbmFsIGZvcmVjYXN0ZXJzIHdobyBwcmVkaWN0IHdlYXRoZXIgb3V0IHRvIDE2IGRheXMgaW4gdGhlIGZ1dHVyZS4gSG9yaXpvbnRhbCByZXNvbHV0aW9uIGRyb3BzIHRvIDQ0IG1pbGVzICg3MCBraWxvbWV0ZXJzKSBiZXR3ZWVuIGdyaWQgcG9pbnQgZm9yIGZvcmVjYXN0cyBiZXR3ZWVuIG9uZSB3ZWVrIGFuZCB0d28gd2Vla3MuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZG9jcy5vcGVuZGF0YS5hd3Mvbm9hYS1nZnMtcGRzL3JlYWRtZS5odG1sXG5Db250YWN0OiBodHRwczovL3d3dy5uY2RjLm5vYWEuZ292L2NvbnRhY3Rcbk1hbmFnZWRCeTogW1VuaWRhdGFdKGh0dHBzOi8vd3d3LnVuaWRhdGEudWNhci5lZHUvKVxuVXBkYXRlRnJlcXVlbmN5OiBFdmVyeSA2IGhvdXJzXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbm9hYV9nZnNfcGRzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvbm9hYS1nZnMtcGRzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25vYWFfZ2ZzX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ub2FhX2dmc19wZHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25vYWFfZ2ZzX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2dmc3BhcmFfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbm9hYV9nZnNwYXJhX3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ub2FhX2dmc3BhcmFfcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbm9hYS1nZnNwYXJhLXBkcyBCdWNrZXQ6IE5PQUEgR2xvYmFsIEZvcmVjYXN0IFN5c3RlbSAoR0ZTKTogQSByb2xsaW5nIGZvdXItd2VlayBhcmNoaXZlIG9mIDAuMjUgRlYzLWJhc2VkIHBhcmFsbGVsIHZlcnNpb24gb2YgdGhlIEdGUyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5vYWEtZ2ZzcGFyYS1wZHMgYnVja2V0IGF0IGh0dHBzOi8vbm9hYS1nZnNwYXJhLXBkcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogTk9BQSBHbG9iYWwgRm9yZWNhc3QgU3lzdGVtIChHRlMpXG5OYW1lMjogQSByb2xsaW5nIGZvdXItd2VlayBhcmNoaXZlIG9mIDAuMjUgRlYzLWJhc2VkIHBhcmFsbGVsIHZlcnNpb24gb2YgdGhlIEdGU1xuRGVzY3JpcHRpb246IFRoZSBHbG9iYWwgRm9yZWNhc3QgU3lzdGVtIChHRlMpIGlzIGEgd2VhdGhlciBmb3JlY2FzdCBtb2RlbCBwcm9kdWNlZCBieSB0aGUgTmF0aW9uYWwgQ2VudGVycyBmb3IgRW52aXJvbm1lbnRhbCBQcmVkaWN0aW9uIChOQ0VQKS4gRG96ZW5zIG9mIGF0bW9zcGhlcmljIGFuZCBsYW5kLXNvaWwgdmFyaWFibGVzIGFyZSBhdmFpbGFibGUgdGhyb3VnaCB0aGlzIGRhdGFzZXQsIGZyb20gdGVtcGVyYXR1cmVzLCB3aW5kcywgYW5kIHByZWNpcGl0YXRpb24gdG8gc29pbCBtb2lzdHVyZSBhbmQgYXRtb3NwaGVyaWMgb3pvbmUgY29uY2VudHJhdGlvbi4gVGhlIGVudGlyZSBnbG9iZSBpcyBjb3ZlcmVkIGJ5IHRoZSBHRlMgYXQgYSBiYXNlIGhvcml6b250YWwgcmVzb2x1dGlvbiBvZiAxOCBtaWxlcyAoMjgga2lsb21ldGVycykgYmV0d2VlbiBncmlkIHBvaW50cywgd2hpY2ggaXMgdXNlZCBieSB0aGUgb3BlcmF0aW9uYWwgZm9yZWNhc3RlcnMgd2hvIHByZWRpY3Qgd2VhdGhlciBvdXQgdG8gMTYgZGF5cyBpbiB0aGUgZnV0dXJlLiBIb3Jpem9udGFsIHJlc29sdXRpb24gZHJvcHMgdG8gNDQgbWlsZXMgKDcwIGtpbG9tZXRlcnMpIGJldHdlZW4gZ3JpZCBwb2ludCBmb3IgZm9yZWNhc3RzIGJldHdlZW4gb25lIHdlZWsgYW5kIHR3byB3ZWVrcy4gKipCb3RoIHRoZSBjdXJyZW50IHZlcnNpb24gYW5kIHRoZSBGVjMtYmFzZWQgcGFyYWxsZWwgdmVyc2lvbiBvZiB0aGUgR0ZTIGJlaW5nIHRlc3RlZCB0byBiZWNvbWUgdGhlIG5ldyBvcGVyYXRpb25hbCBtb2RlbCBhdCBhIGZ1dHVyZSBkYXRlIGFyZSBhdmFpbGFibGUuKipcblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly93d3cubmNkYy5ub2FhLmdvdi9kYXRhLWFjY2Vzcy9tb2RlbC1kYXRhL21vZGVsLWRhdGFzZXRzL2dsb2JhbC1mb3JjYXN0LXN5c3RlbS1nZnNcbkNvbnRhY3Q6IEZvciBxdWVzdGlvbnMgcmVnYXJkaW5nIGRhdGEgY29udGVudCBvciBxdWFsaXR5LCB2aXNpdCBbdGhlIE5PQUEgR0ZTIHNpdGVdKGh0dHA6Ly93d3cuZW1jLm5jZXAubm9hYS5nb3YvaW5kZXgucGhwP2JyYW5jaD1HRlMpLiBGb3IgYW55IHF1ZXN0aW9ucyByZWdhcmRpbmcgZGF0YSBkZWxpdmVyeSBub3QgYXNzb2NpYXRlZCB3aXRoIHRoaXMgcGxhdGZvcm0gb3IgYW55IGdlbmVyYWwgcXVlc3Rpb25zIHJlZ2FyZGluZyB0aGUgTk9BQSBCaWcgRGF0YSBQcm9qZWN0LCBlbWFpbCBub2FhLmJkcEBub2FhLmdvdi5cbk1hbmFnZWRCeTogW05PQUFdKGh0dHBzOi8vd3d3Lm5vYWEuZ292LylcblVwZGF0ZUZyZXF1ZW5jeTogNCB0aW1lcyBhIGRheSwgZXZlcnkgNiBob3VycyBzdGFydGluZyBhdCBtaWRuaWdodFxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25vYWFfZ2ZzcGFyYV9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9ub2FhLWdmcy1iZHAtcGRzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25vYWFfZ2ZzcGFyYV9wZHMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfbm9hYV9nZnNwYXJhX3BkcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbm9hYV9nZnNwYXJhX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2doY25fcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbm9hYV9naGNuX3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ub2FhX2doY25fcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbm9hYS1naGNuLXBkcyBCdWNrZXQ6IE5PQUEgR2xvYmFsIEhpc3RvcmljYWwgQ2xpbWF0b2xvZ3kgTmV0d29yayBEYWlseSAoR0hDTi1EKTogUHJvamVjdCBkYXRhIGZpbGVzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbm9hYS1naGNuLXBkcyBidWNrZXQgYXQgaHR0cHM6Ly9ub2FhLWdoY24tcGRzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBOT0FBIEdsb2JhbCBIaXN0b3JpY2FsIENsaW1hdG9sb2d5IE5ldHdvcmsgRGFpbHkgKEdIQ04tRClcbk5hbWUyOiBQcm9qZWN0IGRhdGEgZmlsZXNcbkRlc2NyaXB0aW9uOiBHbG9iYWwgSGlzdG9yaWNhbCBDbGltYXRvbG9neSBOZXR3b3JrIC0gRGFpbHkgaXMgYSBkYXRhc2V0IGZyb20gTk9BQSB0aGF0IGNvbnRhaW5zIGRhaWx5IG9ic2VydmF0aW9ucyBvdmVyIGdsb2JhbCBsYW5kIGFyZWFzLiBJdCBjb250YWlucyBzdGF0aW9uLWJhc2VkIG1lYXN1cmVtZW50cyBmcm9tIGxhbmQtYmFzZWQgc3RhdGlvbnMgd29ybGR3aWRlLCBhYm91dCB0d28gdGhpcmRzIG9mIHdoaWNoIGFyZSBmb3IgcHJlY2lwaXRhdGlvbiBtZWFzdXJlbWVudCBvbmx5LiBPdGhlciBtZXRlb3JvbG9naWNhbCBlbGVtZW50cyBpbmNsdWRlLCBidXQgYXJlIG5vdCBsaW1pdGVkIHRvLCBkYWlseSBtYXhpbXVtIGFuZCBtaW5pbXVtIHRlbXBlcmF0dXJlLCB0ZW1wZXJhdHVyZSBhdCB0aGUgdGltZSBvZiBvYnNlcnZhdGlvbiwgc25vd2ZhbGwgYW5kIHNub3cgZGVwdGguIEl0IGlzIGEgY29tcG9zaXRlIG9mIGNsaW1hdGUgcmVjb3JkcyBmcm9tIG51bWVyb3VzIHNvdXJjZXMgdGhhdCB3ZXJlIG1lcmdlZCB0b2dldGhlciBhbmQgc3ViamVjdGVkIHRvIGEgY29tbW9uIHN1aXRlIG9mIHF1YWxpdHkgYXNzdXJhbmNlIHJldmlld3MuICBTb21lIGRhdGEgYXJlIG1vcmUgdGhhbiAxNzUgeWVhcnMgb2xkLiBUaGUgZGF0YSBpcyBpbiBDU1YgZm9ybWF0LiBFYWNoIGZpbGUgY29ycmVzcG9uZHMgdG8gYSB5ZWFyIGZyb20gMTc2MyB0byBwcmVzZW50IGFuZCBpcyBuYW1lZCBhcyBzdWNoLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL25vYWEtZ2hjbi1wZHMvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IEZvciBxdWVzdGlvbnMgcmVnYXJkaW5nIGRhdGEgY29udGVudCBvciBxdWFsaXR5LCB2aXNpdCBbdGhlIE5PQUEgR0hDTiBzaXRlXShodHRwczovL3d3dy5uY2RjLm5vYWEuZ292L2doY24tZGFpbHktZGVzY3JpcHRpb24pLiBGb3IgYW55IHF1ZXN0aW9ucyByZWdhcmRpbmcgZGF0YSBkZWxpdmVyeSBub3QgYXNzb2NpYXRlZCB3aXRoIHRoaXMgcGxhdGZvcm0gb3IgYW55IGdlbmVyYWwgcXVlc3Rpb25zIHJlZ2FyZGluZyB0aGUgTk9BQSBCaWcgRGF0YSBQcm9qZWN0LCBlbWFpbCBub2FhLmJkcEBub2FhLmdvdlxuTWFuYWdlZEJ5OiBbTk9BQV0oaHR0cHM6Ly93d3cubm9hYS5nb3YvKVxuVXBkYXRlRnJlcXVlbmN5OiBEYWlseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25vYWFfZ2hjbl9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9ub2FhLWdoY24vIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbm9hYV9naGNuX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ub2FhX2doY25fcGRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19ub2FhX2doY25fcGRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25vYWFfZ2hlX3BkcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25vYWFfZ2hlX3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ub2FhX2doZV9wZHMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBub2FhLWdoZS1wZHMgQnVja2V0OiBOT0FBIEdsb2JhbCBIeWRybyBFc3RpbWF0b3IgKEdIRSk6IFByb2plY3QgZGF0YSBmaWxlcyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5vYWEtZ2hlLXBkcyBidWNrZXQgYXQgaHR0cHM6Ly9ub2FhLWdoZS1wZHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5PQUEgR2xvYmFsIEh5ZHJvIEVzdGltYXRvciAoR0hFKVxuTmFtZTI6IFByb2plY3QgZGF0YSBmaWxlc1xuRGVzY3JpcHRpb246IEdsb2JhbCBIeWRyby1Fc3RpbWF0b3IgcHJvdmlkZXMgYSBnbG9iYWwgbW9zYWljIGltYWdlcnkgb2YgcmFpbmZhbGwgZXN0aW1hdGVzIGZyb20gbXVsdGktZ2Vvc3RhdGlvbmFyeSBzYXRlbGxpdGVzLCB3aGljaCBjdXJyZW50bHkgaW5jbHVkZXMgR09FUy0xNiwgR09FUy0xNSwgTWV0ZW9zYXQtOCwgTWV0ZW9zYXQtMTEgYW5kIEhpbWF3YXJpLTguIFRoZSBHSEUgcHJvZHVjdHMgaW5jbHVkZTogSW5zdGFudGFuZW91cyByYWluIHJhdGUsIDEgaG91ciwgMyBob3VyLCA2IGhvdXIsIDI0IGhvdXIgYW5kIGFsc28gbXVsdGktZGF5IHJhaW5mYWxsIGFjY3VtdWxhdGlvbi5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly93d3cub3Nwby5ub2FhLmdvdi9Qcm9kdWN0cy9hdG1vc3BoZXJlL2doZS9pbmRleC5odG1sXG5Db250YWN0OiB8XG5NYW5hZ2VkQnk6IFtOT0FBXShodHRwczovL3d3dy5ub2FhLmdvdi8pXG5VcGRhdGVGcmVxdWVuY3k6IDE1IG1pbnV0ZS1pbnN0YW50YW5lb3VzXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbm9hYV9naGVfcGRzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvbm9hYS1naGUvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbm9hYV9naGVfcGRzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX25vYWFfZ2hlX3BkcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbm9hYV9naGVfcGRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25vYWFfZ2xvYmFsX2hvdXJseV9wZHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2dsb2JhbF9ob3VybHlfcGRzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX25vYWFfZ2xvYmFsX2hvdXJseV9wZHMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBub2FhLWdsb2JhbC1ob3VybHktcGRzIEJ1Y2tldDogTk9BQSBHbG9iYWwgSGlzdG9yaWNhbCBDbGltYXRvbG9neSBOZXR3b3JrIEhvdXJseSAoR0hDTi1IKTogUHJvamVjdCBkYXRhIGZpbGVzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbm9hYS1nbG9iYWwtaG91cmx5LXBkcyBidWNrZXQgYXQgaHR0cHM6Ly9ub2FhLWdsb2JhbC1ob3VybHktcGRzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBOT0FBIEdsb2JhbCBIaXN0b3JpY2FsIENsaW1hdG9sb2d5IE5ldHdvcmsgSG91cmx5IChHSENOLUgpXG5OYW1lMjogUHJvamVjdCBkYXRhIGZpbGVzXG5EZXNjcmlwdGlvbjogR2xvYmFsIEhpc3RvcmljYWwgQ2xpbWF0b2xvZ3kgTmV0d29yayAtIEhvdXJseSBpcyBhIGRhdGFzZXQgZnJvbSBOT0FBIHRoYXQgY29udGFpbnMgZGFpbHkgb2JzZXJ2YXRpb25zIG92ZXIgZ2xvYmFsIGxhbmQgYXJlYXMuIEl0IGNvbnRhaW5zIHN0YXRpb24tYmFzZWQgbWVhc3VyZW1lbnRzIGZyb20gbGFuZC1iYXNlZCBzdGF0aW9ucyB3b3JsZHdpZGUsIGFib3V0IHR3byB0aGlyZHMgb2Ygd2hpY2ggYXJlIGZvciBwcmVjaXBpdGF0aW9uIG1lYXN1cmVtZW50IG9ubHkuIE90aGVyIG1ldGVvcm9sb2dpY2FsIGVsZW1lbnRzIGluY2x1ZGUsIGJ1dCBhcmUgbm90IGxpbWl0ZWQgdG8sIGRhaWx5IG1heGltdW0gYW5kIG1pbmltdW0gdGVtcGVyYXR1cmUsIHRlbXBlcmF0dXJlIGF0IHRoZSB0aW1lIG9mIG9ic2VydmF0aW9uLCBzbm93ZmFsbCBhbmQgc25vdyBkZXB0aC4gSXQgaXMgYSBjb21wb3NpdGUgb2YgY2xpbWF0ZSByZWNvcmRzIGZyb20gbnVtZXJvdXMgc291cmNlcyB0aGF0IHdlcmUgbWVyZ2VkIHRvZ2V0aGVyIGFuZCBzdWJqZWN0ZWQgdG8gYSBjb21tb24gc3VpdGUgb2YgcXVhbGl0eSBhc3N1cmFuY2UgcmV2aWV3cy4gIFNvbWUgZGF0YSBhcmUgbW9yZSB0aGFuIDE3NSB5ZWFycyBvbGQuIFRoZSBkYXRhIGlzIGluIENTViBmb3JtYXQuIEVhY2ggZmlsZSBjb3JyZXNwb25kcyB0byBhIHllYXIgZnJvbSAxNzYzIHRvIHByZXNlbnQgYW5kIGlzIG5hbWVkIGFzIHN1Y2guXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vd3d3Lm5jZWkubm9hYS5nb3YvZGF0YS9nbG9iYWwtaG91cmx5L2RvYy9pc2QtZm9ybWF0LWRvY3VtZW50LnBkZlxuQ29udGFjdDogRm9yIHF1ZXN0aW9ucyByZWdhcmRpbmcgZGF0YSBjb250ZW50IG9yIHF1YWxpdHksIHZpc2l0IFt0aGUgTk9BQSBHSENOIHNpdGVdKGh0dHBzOi8vd3d3Lm5jZWkubm9hYS5nb3YvZGF0YS9nbG9iYWwtaG91cmx5L2RvYy9pc2QtZm9ybWF0LWRvY3VtZW50LnBkZikuIEZvciBhbnkgcXVlc3Rpb25zIHJlZ2FyZGluZyBkYXRhIGRlbGl2ZXJ5IG5vdCBhc3NvY2lhdGVkIHdpdGggdGhpcyBwbGF0Zm9ybSBvciBhbnkgZ2VuZXJhbCBxdWVzdGlvbnMgcmVnYXJkaW5nIHRoZSBOT0FBIEJpZyBEYXRhIFByb2plY3QsIGVtYWlsIG5vYWEuYmRwQG5vYWEuZ292XG5NYW5hZ2VkQnk6IFtOT0FBXShodHRwczovL3d3dy5ub2FhLmdvdi8pXG5VcGRhdGVGcmVxdWVuY3k6IGRhaWx5IChNYW51YWxseSlcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19ub2FhX2dsb2JhbF9ob3VybHlfcGRzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvbm9hYS1naGNuaC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19ub2FhX2dsb2JhbF9ob3VybHlfcGRzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX25vYWFfZ2xvYmFsX2hvdXJseV9wZHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25vYWFfZ2xvYmFsX2hvdXJseV9wZHMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzTm9hYUdvZXMxNiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM05vYWFHb2VzMTYuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzTm9hYUdvZXMxNi8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG5vYWEtZ29lczE2IEJ1Y2tldCIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5vYWEtZ29lczE2IGJ1Y2tldCBhdCBodHRwczovL25vYWEtZ29lczE2LnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIEdPRVMgc2F0ZWxsaXRlcyAoR09FUy0xNiAmIEdPRVMtMTcpIHByb3ZpZGUgY29udGludW91cyB3ZWF0aGVyIGltYWdlcnkgYW5kIG1vbml0b3Jpbmcgb2YgbWV0ZW9yb2xvZ2ljYWwgYW5kIHNwYWNlIGVudmlyb25tZW50IGRhdGEgYWNyb3NzIE5vcnRoIEFtZXJpY2EuIEdPRVMgc2F0ZWxsaXRlcyBwcm92aWRlIHRoZSBraW5kIG9mIGNvbnRpbnVvdXMgbW9uaXRvcmluZyBuZWNlc3NhcnkgZm9yIGludGVuc2l2ZSBkYXRhIGFuYWx5c2lzLiBUaGV5IGhvdmVyIGNvbnRpbnVvdXNseSBvdmVyIG9uZSBwb3NpdGlvbiBvbiB0aGUgc3VyZmFjZS4gVGhlIHNhdGVsbGl0ZXMgb3JiaXQgaGlnaCBlbm91Z2ggdG8gYWxsb3cgZm9yIGEgZnVsbC1kaXNjIHZpZXcgb2YgdGhlIEVhcnRoLiBCZWNhdXNlIHRoZXkgc3RheSBhYm92ZSBhIGZpeGVkIHNwb3Qgb24gdGhlIHN1cmZhY2UsIHRoZXkgcHJvdmlkZSBhIGNvbnN0YW50IHZpZ2lsIGZvciB0aGUgYXRtb3NwaGVyaWMgXCJ0cmlnZ2Vyc1wiIGZvciBzZXZlcmUgd2VhdGhlciBjb25kaXRpb25zIHN1Y2ggYXMgdG9ybmFkb2VzLCBmbGFzaCBmbG9vZHMsIGhhaWxzdG9ybXMsIGFuZCBodXJyaWNhbmVzLiBXaGVuIHRoZXNlIGNvbmRpdGlvbnMgZGV2ZWxvcCwgdGhlIEdPRVMgc2F0ZWxsaXRlcyBhcmUgYWJsZSB0byBtb25pdG9yIHN0b3JtIGRldmVsb3BtZW50IGFuZCB0cmFjayB0aGVpciBtb3ZlbWVudHMuXG5cblVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlciB0aGUgZmlsZXMgaW4gYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNOb2FhR29lczE2L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvbm9hYS1nb2VzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM05vYWFHb2VzMTYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzTm9hYUdvZXMxNiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIiwgImF3c1MzTm9hYUdvZXMxNiJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2dvZXMxNiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25vYWFfZ29lczE2LmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX25vYWFfZ29lczE2LyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbm9hYS1nb2VzMTYgQnVja2V0OiBHT0VTIG9uIEFXUzogR09FUy0xNiBpbWFnZXJ5IGFuZCBtZXRhZGF0YSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5vYWEtZ29lczE2IGJ1Y2tldCBhdCBodHRwczovL25vYWEtZ29lczE2LnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBHT0VTIG9uIEFXU1xuTmFtZTI6IEdPRVMtMTYgaW1hZ2VyeSBhbmQgbWV0YWRhdGFcbkRlc2NyaXB0aW9uOiBHT0VTIHNhdGVsbGl0ZXMgKEdPRVMtMTYgJiBHT0VTLTE3KSBwcm92aWRlIGNvbnRpbnVvdXMgd2VhdGhlciBpbWFnZXJ5IGFuZCBtb25pdG9yaW5nIG9mIG1ldGVvcm9sb2dpY2FsIGFuZCBzcGFjZSBlbnZpcm9ubWVudCBkYXRhIGFjcm9zcyBOb3J0aCBBbWVyaWNhLiBHT0VTIHNhdGVsbGl0ZXMgcHJvdmlkZSB0aGUga2luZCBvZiBjb250aW51b3VzIG1vbml0b3JpbmcgbmVjZXNzYXJ5IGZvciBpbnRlbnNpdmUgZGF0YSBhbmFseXNpcy4gVGhleSBob3ZlciBjb250aW51b3VzbHkgb3ZlciBvbmUgcG9zaXRpb24gb24gdGhlIHN1cmZhY2UuIFRoZSBzYXRlbGxpdGVzIG9yYml0IGhpZ2ggZW5vdWdoIHRvIGFsbG93IGZvciBhIGZ1bGwtZGlzYyB2aWV3IG9mIHRoZSBFYXJ0aC4gQmVjYXVzZSB0aGV5IHN0YXkgYWJvdmUgYSBmaXhlZCBzcG90IG9uIHRoZSBzdXJmYWNlLCB0aGV5IHByb3ZpZGUgYSBjb25zdGFudCB2aWdpbCBmb3IgdGhlIGF0bW9zcGhlcmljIFwidHJpZ2dlcnNcIiBmb3Igc2V2ZXJlIHdlYXRoZXIgY29uZGl0aW9ucyBzdWNoIGFzIHRvcm5hZG9lcywgZmxhc2ggZmxvb2RzLCBoYWlsc3Rvcm1zLCBhbmQgaHVycmljYW5lcy4gV2hlbiB0aGVzZSBjb25kaXRpb25zIGRldmVsb3AsIHRoZSBHT0VTIHNhdGVsbGl0ZXMgYXJlIGFibGUgdG8gbW9uaXRvciBzdG9ybSBkZXZlbG9wbWVudCBhbmQgdHJhY2sgdGhlaXIgbW92ZW1lbnRzLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL25vYWEtZ29lczE2L2NpY3MtcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IG5vYWEuYmRwQG5vYWEuZ292XG5NYW5hZ2VkQnk6IFtOT0FBXShodHRwczovL3d3dy5ub2FhLmdvdi8pXG5VcGRhdGVGcmVxdWVuY3k6IE5ldyBkYXRhIGlzIGFkZGVkIGFzIHNvb24gYXMgaXQncyBhdmFpbGFibGVcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19ub2FhX2dvZXMxNi9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25vYWEtZ29lcy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19ub2FhX2dvZXMxNi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ub2FhX2dvZXMxNiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbm9hYV9nb2VzMTYiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbm9hYV9nb2VzMTciLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2dvZXMxNy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ub2FhX2dvZXMxNy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG5vYWEtZ29lczE3IEJ1Y2tldDogR09FUyBvbiBBV1M6IEdPRVMtMTcgaW1hZ2VyeSBhbmQgbWV0YWRhdGEiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBub2FhLWdvZXMxNyBidWNrZXQgYXQgaHR0cHM6Ly9ub2FhLWdvZXMxNy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogR09FUyBvbiBBV1Ncbk5hbWUyOiBHT0VTLTE3IGltYWdlcnkgYW5kIG1ldGFkYXRhXG5EZXNjcmlwdGlvbjogR09FUyBzYXRlbGxpdGVzIChHT0VTLTE2ICYgR09FUy0xNykgcHJvdmlkZSBjb250aW51b3VzIHdlYXRoZXIgaW1hZ2VyeSBhbmQgbW9uaXRvcmluZyBvZiBtZXRlb3JvbG9naWNhbCBhbmQgc3BhY2UgZW52aXJvbm1lbnQgZGF0YSBhY3Jvc3MgTm9ydGggQW1lcmljYS4gR09FUyBzYXRlbGxpdGVzIHByb3ZpZGUgdGhlIGtpbmQgb2YgY29udGludW91cyBtb25pdG9yaW5nIG5lY2Vzc2FyeSBmb3IgaW50ZW5zaXZlIGRhdGEgYW5hbHlzaXMuIFRoZXkgaG92ZXIgY29udGludW91c2x5IG92ZXIgb25lIHBvc2l0aW9uIG9uIHRoZSBzdXJmYWNlLiBUaGUgc2F0ZWxsaXRlcyBvcmJpdCBoaWdoIGVub3VnaCB0byBhbGxvdyBmb3IgYSBmdWxsLWRpc2MgdmlldyBvZiB0aGUgRWFydGguIEJlY2F1c2UgdGhleSBzdGF5IGFib3ZlIGEgZml4ZWQgc3BvdCBvbiB0aGUgc3VyZmFjZSwgdGhleSBwcm92aWRlIGEgY29uc3RhbnQgdmlnaWwgZm9yIHRoZSBhdG1vc3BoZXJpYyBcInRyaWdnZXJzXCIgZm9yIHNldmVyZSB3ZWF0aGVyIGNvbmRpdGlvbnMgc3VjaCBhcyB0b3JuYWRvZXMsIGZsYXNoIGZsb29kcywgaGFpbHN0b3JtcywgYW5kIGh1cnJpY2FuZXMuIFdoZW4gdGhlc2UgY29uZGl0aW9ucyBkZXZlbG9wLCB0aGUgR09FUyBzYXRlbGxpdGVzIGFyZSBhYmxlIHRvIG1vbml0b3Igc3Rvcm0gZGV2ZWxvcG1lbnQgYW5kIHRyYWNrIHRoZWlyIG1vdmVtZW50cy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLm9wZW5kYXRhLmF3cy9ub2FhLWdvZXMxNi9jaWNzLXJlYWRtZS5odG1sXG5Db250YWN0OiBub2FhLmJkcEBub2FhLmdvdlxuTWFuYWdlZEJ5OiBbTk9BQV0oaHR0cHM6Ly93d3cubm9hYS5nb3YvKVxuVXBkYXRlRnJlcXVlbmN5OiBOZXcgZGF0YSBpcyBhZGRlZCBhcyBzb29uIGFzIGl0J3MgYXZhaWxhYmxlXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbm9hYV9nb2VzMTcvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9ub2FhLWdvZXMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbm9hYV9nb2VzMTcucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfbm9hYV9nb2VzMTcmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25vYWFfZ29lczE3Il0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25vYWFfaHJycl9wZHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2hycnJfcGRzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX25vYWFfaHJycl9wZHMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBub2FhLWhycnItcGRzIEJ1Y2tldDogTk9BQSBIaWdoLVJlc29sdXRpb24gUmFwaWQgUmVmcmVzaCAoSFJSUikgTW9kZWw6IEEgcm9sbGluZyBvbmUtd2VlayBhcmNoaXZlIG9mIEhSUlIgZGF0YS4iLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBub2FhLWhycnItcGRzIGJ1Y2tldCBhdCBodHRwczovL25vYWEtaHJyci1wZHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5PQUEgSGlnaC1SZXNvbHV0aW9uIFJhcGlkIFJlZnJlc2ggKEhSUlIpIE1vZGVsXG5OYW1lMjogQSByb2xsaW5nIG9uZS13ZWVrIGFyY2hpdmUgb2YgSFJSUiBkYXRhLlxuRGVzY3JpcHRpb246IFRoZSBIUlJSIGlzIGEgTk9BQSByZWFsLXRpbWUgMy1rbSByZXNvbHV0aW9uLCBob3VybHkgdXBkYXRlZCwgY2xvdWQtcmVzb2x2aW5nLCBjb252ZWN0aW9uLWFsbG93aW5nIGF0bW9zcGhlcmljIG1vZGVsLCBpbml0aWFsaXplZCBieSAza20gZ3JpZHMgd2l0aCAza20gcmFkYXIgYXNzaW1pbGF0aW9uLiBSYWRhciBkYXRhIGlzIGFzc2ltaWxhdGVkIGluIHRoZSBIUlJSIGV2ZXJ5IDE1IG1pbiBvdmVyIGEgMS1oIHBlcmlvZCBhZGRpbmcgZnVydGhlciBkZXRhaWwgdG8gdGhhdCBwcm92aWRlZCBieSB0aGUgaG91cmx5IGRhdGEgYXNzaW1pbGF0aW9uIGZyb20gdGhlIDEza20gcmFkYXItZW5oYW5jZWQgUmFwaWQgUmVmcmVzaC5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLm9wZW5kYXRhLmF3cy9ub2FhLWhycnItcGRzL3JlYWRtZS5odG1sXG5Db250YWN0OiBodHRwczovL3JhcGlkcmVmcmVzaC5ub2FhLmdvdi9ocnJyL1xuTWFuYWdlZEJ5OiBbVW5pZGF0YV0oaHR0cHM6Ly93d3cudW5pZGF0YS51Y2FyLmVkdS8pXG5VcGRhdGVGcmVxdWVuY3k6IEhvdXJseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25vYWFfaHJycl9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9ub2FhLWhycnItcGRzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25vYWFfaHJycl9wZHMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfbm9hYV9ocnJyX3BkcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbm9hYV9ocnJyX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2lzZF9wZHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2lzZF9wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbm9hYV9pc2RfcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbm9hYS1pc2QtcGRzIEJ1Y2tldDogTk9BQSBJbnRlZ3JhdGVkIFN1cmZhY2UgRGF0YWJhc2UgKElTRCk6IFByb2plY3QgZGF0YSBmaWxlcyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5vYWEtaXNkLXBkcyBidWNrZXQgYXQgaHR0cHM6Ly9ub2FhLWlzZC1wZHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5PQUEgSW50ZWdyYXRlZCBTdXJmYWNlIERhdGFiYXNlIChJU0QpXG5OYW1lMjogUHJvamVjdCBkYXRhIGZpbGVzXG5EZXNjcmlwdGlvbjogVGhlIEludGVncmF0ZWQgU3VyZmFjZSBEYXRhYmFzZSAoSVNEKSBjb25zaXN0cyBvZiBnbG9iYWwgaG91cmx5IGFuZCBzeW5vcHRpYyBvYnNlcnZhdGlvbnMgY29tcGlsZWQgZnJvbSBudW1lcm91cyBzb3VyY2VzIGludG8gYSBnemlwcGVkIGZpeGVkIHdpZHRoIGZvcm1hdC4gSVNEIHdhcyBkZXZlbG9wZWQgYXMgYSBqb2ludCBhY3Rpdml0eSB3aXRoaW4gQXNoZXZpbGxlJ3MgRmVkZXJhbCBDbGltYXRlIENvbXBsZXguIFRoZSBkYXRhYmFzZSBpbmNsdWRlcyBvdmVyIDM1LDAwMCBzdGF0aW9ucyB3b3JsZHdpZGUsIHdpdGggc29tZSBoYXZpbmcgZGF0YSBhcyBmYXIgYmFjayBhcyAxOTAxLCB0aG91Z2ggdGhlIGRhdGEgc2hvdyBhIHN1YnN0YW50aWFsIGluY3JlYXNlIGluIHZvbHVtZSBpbiB0aGUgMTk0MHMgYW5kIGFnYWluIGluIHRoZSBlYXJseSAxOTcwcy4gQ3VycmVudGx5LCB0aGVyZSBhcmUgb3ZlciAxNCwwMDAgXCJhY3RpdmVcIiBzdGF0aW9ucyB1cGRhdGVkIGRhaWx5IGluIHRoZSBkYXRhYmFzZS4gVGhlIHRvdGFsIHVuY29tcHJlc3NlZCBkYXRhIHZvbHVtZSBpcyBhcm91bmQgNjAwIGdpZ2FieXRlczsgaG93ZXZlciwgaXQgY29udGludWVzIHRvIGdyb3cgYXMgbW9yZSBkYXRhIGFyZSBhZGRlZC4gSVNEIGluY2x1ZGVzIG51bWVyb3VzIHBhcmFtZXRlcnMgc3VjaCBhcyB3aW5kIHNwZWVkIGFuZCBkaXJlY3Rpb24sIHdpbmQgZ3VzdCwgdGVtcGVyYXR1cmUsIGRldyBwb2ludCwgY2xvdWQgZGF0YSwgc2VhIGxldmVsIHByZXNzdXJlLCBhbHRpbWV0ZXIgc2V0dGluZywgc3RhdGlvbiBwcmVzc3VyZSwgcHJlc2VudCB3ZWF0aGVyLCB2aXNpYmlsaXR5LCBwcmVjaXBpdGF0aW9uIGFtb3VudHMgZm9yIHZhcmlvdXMgdGltZSBwZXJpb2RzLCBzbm93IGRlcHRoLCBhbmQgdmFyaW91cyBvdGhlciBlbGVtZW50cyBhcyBvYnNlcnZlZCBieSBlYWNoIHN0YXRpb24uXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vd3d3Lm5jZWkubm9hYS5nb3YvZGF0YS9nbG9iYWwtaG91cmx5L2RvYy9pc2QtZm9ybWF0LWRvY3VtZW50LnBkZlxuQ29udGFjdDogfFxuTWFuYWdlZEJ5OiBbTk9BQV0oaHR0cHM6Ly93d3cubm9hYS5nb3YvKVxuVXBkYXRlRnJlcXVlbmN5OiBEYWlseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25vYWFfaXNkX3Bkcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25vYWEtaXNkLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25vYWFfaXNkX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ub2FhX2lzZF9wZHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25vYWFfaXNkX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX25leHJhZF9sZXZlbDIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX25leHJhZF9sZXZlbDIuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbm9hYV9uZXhyYWRfbGV2ZWwyLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbm9hYS1uZXhyYWQtbGV2ZWwyIEJ1Y2tldDogTkVYUkFEIG9uIEFXUzogTkVYUkFEIExldmVsIElJIGFyY2hpdmUgZGF0YSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5vYWEtbmV4cmFkLWxldmVsMiBidWNrZXQgYXQgaHR0cHM6Ly9ub2FhLW5leHJhZC1sZXZlbDIuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5FWFJBRCBvbiBBV1Ncbk5hbWUyOiBORVhSQUQgTGV2ZWwgSUkgYXJjaGl2ZSBkYXRhXG5EZXNjcmlwdGlvbjogUmVhbC10aW1lIGFuZCBhcmNoaXZhbCBkYXRhIGZyb20gdGhlIE5leHQgR2VuZXJhdGlvbiBXZWF0aGVyIFJhZGFyIChORVhSQUQpIG5ldHdvcmsuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZG9jcy5vcGVuZGF0YS5hd3Mvbm9hYS1uZXhyYWQvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IG5vYWEuYmRwQG5vYWEuZ292XG5NYW5hZ2VkQnk6IFtOT0FBXShodHRwczovL3d3dy5ub2FhLmdvdi8pXG5VcGRhdGVGcmVxdWVuY3k6IE5ldyBMZXZlbCBJSSBkYXRhIGlzIGFkZGVkIGFzIHNvb24gYXMgaXQgaXMgYXZhaWxhYmxlLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25vYWFfbmV4cmFkX2xldmVsMi9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25vYWEtbmV4cmFkLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25vYWFfbmV4cmFkX2xldmVsMi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ub2FhX25leHJhZF9sZXZlbDImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25vYWFfbmV4cmFkX2xldmVsMiJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX253bV9wZHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX253bV9wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbm9hYV9ud21fcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbm9hYS1ud20tcGRzIEJ1Y2tldDogTk9BQSBOYXRpb25hbCBXYXRlciBNb2RlbCBTaG9ydC1SYW5nZSBGb3JlY2FzdDogQSByb2xsaW5nIGZvdXIgd2VlayBhcmNoaXZlIG9mIE5XTSBkYXRhLiIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5vYWEtbndtLXBkcyBidWNrZXQgYXQgaHR0cHM6Ly9ub2FhLW53bS1wZHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5PQUEgTmF0aW9uYWwgV2F0ZXIgTW9kZWwgU2hvcnQtUmFuZ2UgRm9yZWNhc3Rcbk5hbWUyOiBBIHJvbGxpbmcgZm91ciB3ZWVrIGFyY2hpdmUgb2YgTldNIGRhdGEuXG5EZXNjcmlwdGlvbjogVGhlIE5hdGlvbmFsIFdhdGVyIE1vZGVsIChOV00pIGlzIGEgd2F0ZXIgcmVzb3VyY2VzIG1vZGVsIHRoYXQgc2ltdWxhdGVzIGFuZCBmb3JlY2FzdHMgd2F0ZXIgYnVkZ2V0IHZhcmlhYmxlcywgaW5jbHVkaW5nIHNub3dwYWNrLCBldmFwb3RyYW5zcGlyYXRpb24sIHNvaWwgbW9pc3R1cmUgYW5kIHN0cmVhbWZsb3csIG92ZXIgdGhlIGVudGlyZSBjb250aW5lbnRhbCBVbml0ZWQgU3RhdGVzIChDT05VUykuIFRoZSBtb2RlbCwgbGF1bmNoZWQgaW4gQXVndXN0IDIwMTYsIGlzIGRlc2lnbmVkIHRvIGltcHJvdmUgdGhlIGFiaWxpdHkgb2YgTk9BQSB0byBtZWV0IHRoZSBuZWVkcyBvZiBpdHMgc3Rha2Vob2xkZXJzIChmb3JlY2FzdGVycywgZW1lcmdlbmN5IG1hbmFnZXJzLCByZXNlcnZvaXIgb3BlcmF0b3JzLCBmaXJzdCByZXNwb25kZXJzLCByZWNyZWF0aW9uaXN0cywgZmFybWVycywgYmFyZ2Ugb3BlcmF0b3JzLCBhbmQgZWNvc3lzdGVtIGFuZCBmbG9vZHBsYWluIG1hbmFnZXJzKSBieSBwcm92aWRpbmcgZXhwYW5kZWQgYWNjdXJhY3ksIGRldGFpbCwgYW5kIGZyZXF1ZW5jeSBvZiB3YXRlciBpbmZvcm1hdGlvbi4gSXQgaXMgb3BlcmF0ZWQgYnkgTk9BQVx1MjAxOXMgT2ZmaWNlIG9mIFdhdGVyIFByZWRpY3Rpb24uIFRoaXMgYnVja2V0IGNvbnRhaW5zIGEgZm91ci13ZWVrIHJvbGxvdmVyIG9mIHRoZSBTaG9ydCBSYW5nZSBGb3JlY2FzdCBtb2RlbCBvdXRwdXQgYW5kIHRoZSBjb3JyZXNwb25kaW5nIGZvcmNpbmcgZGF0YSBmb3IgdGhlIG1vZGVsLiBUaGUgbW9kZWwgaXMgZm9yY2VkIHdpdGggbWV0ZW9yb2xvZ2ljYWwgZGF0YSBmcm9tIHRoZSBIaWdoIFJlc29sdXRpb24gUmFwaWQgUmVmcmVzaCAoSFJSUikgYW5kIHRoZSBSYXBpZCBSZWZyZXNoIChSQVApIG1vZGVscy4gVGhlIFNob3J0IFJhbmdlIEZvcmVjYXN0IGNvbmZpZ3VyYXRpb24gY3ljbGVzIGhvdXJseSBhbmQgcHJvZHVjZXMgaG91cmx5IGRldGVybWluaXN0aWMgZm9yZWNhc3RzIG9mIHN0cmVhbWZsb3cgYW5kIGh5ZHJvbG9naWMgc3RhdGVzIG91dCB0byAxOCBob3Vycy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLm9wZW5kYXRhLmF3cy9ub2FhLW53bS1wZHMvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IHxcbk1hbmFnZWRCeTogW05PQUFdKGh0dHBzOi8vd3d3Lm5vYWEuZ292LylcblVwZGF0ZUZyZXF1ZW5jeTogRGFpbHlcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19ub2FhX253bV9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9ub2FhLW53bS1wZHMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbm9hYV9ud21fcGRzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX25vYWFfbndtX3BkcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbm9hYV9ud21fcGRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25vYWFfbndtX3JldHJvX3YyXzBfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbm9hYV9ud21fcmV0cm9fdjJfMF9wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbm9hYV9ud21fcmV0cm9fdjJfMF9wZHMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBub2FhLW53bS1yZXRyby12Mi4wLXBkcyBCdWNrZXQ6IE5PQUEgTmF0aW9uYWwgV2F0ZXIgTW9kZWwgUmVhbmFseXNpczogVGhlIGNvbXBsZXRlIGFyY2hpdmUgb2YgTldNIGRhdGEgdmVyc2lvbiAyLjAuIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbm9hYS1ud20tcmV0cm8tdjIuMC1wZHMgYnVja2V0IGF0IGh0dHBzOi8vbm9hYS1ud20tcmV0cm8tdjIuMC1wZHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5PQUEgTmF0aW9uYWwgV2F0ZXIgTW9kZWwgUmVhbmFseXNpc1xuTmFtZTI6IFRoZSBjb21wbGV0ZSBhcmNoaXZlIG9mIE5XTSBkYXRhIHZlcnNpb24gMi4wLlxuRGVzY3JpcHRpb246IFRoZSBOT0FBIE5hdGlvbmFsIFdhdGVyIE1vZGVsIFJlYW5hbHlzaXMgZGF0YXNldCBjb250YWlucyBvdXRwdXQgZnJvbSBtdWx0aS1kZWNhZGUgcmV0cm9zcGVjdGl2ZSBzaW11bGF0aW9ucy4gVGhlc2Ugc2ltdWxhdGlvbnMgdXNlZCBvYnNlcnZlZCByYWluZmFsbCBhcyBpbnB1dCBhbmQgaW5nZXN0ZWQgb3RoZXIgcmVxdWlyZWQgbWV0ZW9yb2xvZ2ljYWwgaW5wdXQgZmllbGRzIGZyb20gYSB3ZWF0aGVyIHJlYW5hbHlzaXMgZGF0YXNldC4gVGhlIG91dHB1dCBmcmVxdWVuY3kgYW5kIGZpZWxkcyBhdmFpbGFibGUgaW4gdGhpcyBoaXN0b3JpY2FsIE5XTSBkYXRhc2V0IGRpZmZlciBmcm9tIHRob3NlIGNvbnRhaW5lZCBpbiB0aGUgcmVhbC10aW1lIGZvcmVjYXN0IG1vZGVsLiBPbmUgYXBwbGljYXRpb24gb2YgdGhpcyBkYXRhc2V0IGlzIHRvIHByb3ZpZGUgaGlzdG9yaWNhbCBjb250ZXh0IHRvIGN1cnJlbnQgcmVhbC10aW1lIHN0cmVhbWZsb3csIHNvaWwgbW9pc3R1cmUgYW5kIHNub3dwYWNrIE5XTSBjb25kaXRpb25zLiBUaGUgcmVhbmFseXNpcyBkYXRhIGNhbiBiZSB1c2VkIHRvIGluZmVyIGZsb3cgZnJlcXVlbmNpZXMgYW5kIHBlcmZvcm0gdGVtcG9yYWwgYW5hbHlzZXMgd2l0aCBob3VybHkgc3RyZWFtZmxvdyBvdXRwdXQgYW5kIDMtaG91cmx5IGxhbmQgc3VyZmFjZSBvdXRwdXQuIFRoZSBsb25nLXRlcm0gZGF0YXNldCBjYW4gYWxzbyBiZSB1c2VkIGluIHRoZSBkZXZlbG9wbWVudCBvZiBlbmQgdXNlciBhcHBsaWNhdGlvbnMgd2hpY2ggcmVxdWlyZSBhIGxvbmcgYmFzZWxpbmUgb2YgZGF0YSBmb3Igc3lzdGVtIHRyYWluaW5nIG9yIHZlcmlmaWNhdGlvbiBwdXJwb3Nlcy4gVGhpcyBkYXRhc2V0IGNvbnRhaW5zIG91dHB1dCBmcm9tIHR3byByZXRyb3NwZWN0aXZlIHNpbXVsYXRpb25zLiAgQ3VycmVudGx5IHRoZXJlIGFyZSB0d28gdmVyc2lvbnMgb2YgdGhlIGRhdGFzZXQ6IEEgMjUteWVhciAoSmFudWFyeSAxOTkzIHRocm91Z2ggRGVjZW1iZXIgMjAxNykgcmV0cm9zcGVjdGl2ZSBzaW11bGF0aW9uIHVzaW5nIHZlcnNpb24gMS4yIG9mIHRoZSBOYXRpb25hbCBXYXRlciBNb2RlbCwgYW5kIGEgMjYteWVhciAoSmFudWFyeSAxOTkzIHRocm91Z2ggRGVjZW1iZXIgMjAxOCkgcmV0cm9zcGVjdGl2ZSBzaW11bGF0aW9uIHVzaW5nIHZlcnNpb24gMi4wIG9mIHRoZSBOYXRpb25hbCBXYXRlciBNb2RlbC5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLm9wZW5kYXRhLmF3cy9ud20tYXJjaGl2ZS9yZWFkbWUuaHRtbFxuQ29udGFjdDogfFxuTWFuYWdlZEJ5OiBbTk9BQV0oaHR0cHM6Ly93d3cubm9hYS5nb3YvKVxuVXBkYXRlRnJlcXVlbmN5OiBObyB1cGRhdGVzXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG4uLi4gKDQgbW9yZSB2YXJpYWJsZXMpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbm9hYV9ud21fcmV0cm9fdjJfMF9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9ud20tYXJjaGl2ZS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19ub2FhX253bV9yZXRyb192Ml8wX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ub2FhX253bV9yZXRyb192Ml8wX3BkcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbm9hYV9ud21fcmV0cm9fdjJfMF9wZHMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbm9hYV9vZnNfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbm9hYV9vZnNfcGRzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX25vYWFfb2ZzX3Bkcy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG5vYWEtb2ZzLXBkcyBCdWNrZXQ6IE5PQUEgT3BlcmF0aW9uYWwgRm9yZWNhc3QgU3lzdGVtIChPRlMpOiBQcm9qZWN0IGRhdGEgZmlsZXMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBub2FhLW9mcy1wZHMgYnVja2V0IGF0IGh0dHBzOi8vbm9hYS1vZnMtcGRzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBOT0FBIE9wZXJhdGlvbmFsIEZvcmVjYXN0IFN5c3RlbSAoT0ZTKVxuTmFtZTI6IFByb2plY3QgZGF0YSBmaWxlc1xuRGVzY3JpcHRpb246IFRoZSBPcGVyYXRpb25hbCBGb3JlY2FzdCBTeXN0ZW0gKE9GUykgaGFzIGJlZW4gZGV2ZWxvcGVkIHRvIHNlcnZlIHRoZSBtYXJpdGltZSB1c2VyIGNvbW11bml0eS4gT0ZTIHdhcyBkZXZlbG9wZWQgaW4gYSBqb2ludCBwcm9qZWN0IG9mIHRoZSBOT0FBL05hdGlvbmFsIE9jZWFuIFNlcnZpY2UgKE5PUykvT2ZmaWNlIG9mIENvYXN0IFN1cnZleSwgdGhlIE5PQUEvTk9TL0NlbnRlciBmb3IgT3BlcmF0aW9uYWwgT2NlYW5vZ3JhcGhpYyBQcm9kdWN0cyBhbmQgU2VydmljZXMgKENPLU9QUyksIGFuZCB0aGUgTk9BQS9OYXRpb25hbCBXZWF0aGVyIFNlcnZpY2UgKE5XUykvTmF0aW9uYWwgQ2VudGVycyBmb3IgRW52aXJvbm1lbnRhbCBQcmVkaWN0aW9uIChOQ0VQKSBDZW50cmFsIE9wZXJhdGlvbnMgKE5DTykuIE9GUyBnZW5lcmF0ZXMgd2F0ZXIgbGV2ZWwsIHdhdGVyIGN1cnJlbnQsIHdhdGVyIHRlbXBlcmF0dXJlLCB3YXRlciBzYWxpbml0eSAoZXhjZXB0IGZvciB0aGUgR3JlYXQgTGFrZXMpIGFuZCB3aW5kIGNvbmRpdGlvbnMgbm93Y2FzdCBhbmQgZm9yZWNhc3QgZ3VpZGFuY2UgZm91ciB0aW1lcyBwZXIgZGF5LlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL25vYWEtb2ZzLXBkcy9yZWFkbWUuaHRtbFxuQ29udGFjdDogRm9yIHF1ZXN0aW9ucyByZWdhcmRpbmcgZGF0YSBjb250ZW50IG9yIHF1YWxpdHksIHZpc2l0IFt0aGUgTk9BQSBPRlMgc2l0ZV0oaHR0cHM6Ly90aWRlc2FuZGN1cnJlbnRzLm5vYWEuZ292L21vZGVscy5odG1sKS4gRm9yIGFueSBxdWVzdGlvbnMgcmVnYXJkaW5nIGRhdGEgZGVsaXZlcnkgbm90IGFzc29jaWF0ZWQgd2l0aCB0aGlzIHBsYXRmb3JtIG9yIGFueSBnZW5lcmFsIHF1ZXN0aW9ucyByZWdhcmRpbmcgdGhlIE5PQUEgQmlnIERhdGEgUHJvamVjdCwgZW1haWwgbm9hYS5iZHBAbm9hYS5nb3Zcbk1hbmFnZWRCeTogW05PQUFdKGh0dHBzOi8vd3d3Lm5vYWEuZ292LylcblVwZGF0ZUZyZXF1ZW5jeTogNCB0aW1lcyBhIGRheSwgZXZlcnkgNiBob3VycyBzdGFydGluZyBhdCBtaWRuaWdodCBhbmQgZ2VuZXJhdGVzIDYtaG91ciBub3djYXN0cyBhbmQgNDgtaG91ciBmb3JlY2FzdCBndWlkYW5jZVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25vYWFfb2ZzX3Bkcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25vYWEtb2ZzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25vYWFfb2ZzX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ub2FhX29mc19wZHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25vYWFfb2ZzX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ucmVsX3Bkc193dGtfd3RrX3RlY2hub19lY29ub21pY19weXd0a19kYXRhIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbnJlbF9wZHNfd3RrX3d0a190ZWNobm9fZWNvbm9taWNfcHl3dGtfZGF0YS5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ucmVsX3Bkc193dGtfd3RrX3RlY2hub19lY29ub21pY19weXd0a19kYXRhLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbnJlbC1wZHMtd3RrIEJ1Y2tldCB3aXRoIHByZWZpeD13dGstdGVjaG5vLWVjb25vbWljL3B5d3RrLWRhdGEvOiBOUkVMIFdpbmQgSW50ZWdyYXRpb24gTmF0aW9uYWwgRGF0YXNldCBvbiBBV1M6IFRlY2hvLWVjb25vbWljIHNvdXJjZSBmaWxlcyBieSBsb2NhdGlvbiBpbiBbSERGNV0oaHR0cHM6Ly9wb3J0YWwuaGRmZ3JvdXAub3JnL2Rpc3BsYXkvSERGNSkgZm9ybWF0IiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbnJlbC1wZHMtd3RrIGJ1Y2tldCBhdCBodHRwczovL25yZWwtcGRzLXd0ay5zMy51cy13ZXN0LTIuYW1hem9uYXdzLmNvbS8gd2l0aCBwcmVmaXg9d3RrLXRlY2huby1lY29ub21pYy9weXd0ay1kYXRhLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBOUkVMIFdpbmQgSW50ZWdyYXRpb24gTmF0aW9uYWwgRGF0YXNldCBvbiBBV1Ncbk5hbWUyOiBUZWNoby1lY29ub21pYyBzb3VyY2UgZmlsZXMgYnkgbG9jYXRpb24gaW4gW0hERjVdKGh0dHBzOi8vcG9ydGFsLmhkZmdyb3VwLm9yZy9kaXNwbGF5L0hERjUpIGZvcm1hdFxuRGVzY3JpcHRpb246IFRoZSBbV2luZCBJbnRlZ3JhdGlvbiBOYXRpb25hbCBEYXRhc2V0IChXSU5EKV0oaHR0cHM6Ly93d3cubnJlbC5nb3YvZ3JpZC93aW5kLXRvb2xraXQuaHRtbCkgaXMgYW4gdXBkYXRlIGFuZCBleHBhbnNpb24gb2YgdGhlIEVhc3Rlcm4gV2luZCBJbnRlZ3JhdGlvbiBEYXRhIFNldCBhbmQgV2VzdGVybiBXaW5kIEludGVncmF0aW9uIERhdGEgU2V0LiBJdCBzdXBwb3J0cyB0aGUgbmV4dCBnZW5lcmF0aW9uIG9mIHdpbmQgaW50ZWdyYXRpb24gc3R1ZGllcy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly93d3cubnJlbC5nb3YvZ3JpZC93aW5kLXRvb2xraXQuaHRtbFxuQ29udGFjdDogd2luZC10b29sa2l0QG5yZWwuZ292XG5NYW5hZ2VkQnk6IFtOYXRpb25hbCBSZW5ld2FibGUgRW5lcmd5IExhYm9yYXRvcnldKGh0dHBzOi8vd3d3Lm5yZWwuZ292LylcblVwZGF0ZUZyZXF1ZW5jeTogQXMgTmVlZGVkXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbnJlbF9wZHNfd3RrX3d0a190ZWNobm9fZWNvbm9taWNfcHl3dGtfZGF0YS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25yZWwtcGRzLXd0ay8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19ucmVsX3Bkc193dGtfd3RrX3RlY2hub19lY29ub21pY19weXd0a19kYXRhLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX25yZWxfcGRzX3d0a193dGtfdGVjaG5vX2Vjb25vbWljX3B5d3RrX2RhdGEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25yZWxfcGRzX3d0a193dGtfdGVjaG5vX2Vjb25vbWljX3B5d3RrX2RhdGEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbndtX2FyY2hpdmUiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ud21fYXJjaGl2ZS5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ud21fYXJjaGl2ZS8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG53bS1hcmNoaXZlIEJ1Y2tldDogTk9BQSBOYXRpb25hbCBXYXRlciBNb2RlbCBSZWFuYWx5c2lzOiBUaGUgY29tcGxldGUgYXJjaGl2ZSBvZiBOV00gZGF0YSB2ZXJzaW9uIDEuMi4iLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBud20tYXJjaGl2ZSBidWNrZXQgYXQgaHR0cHM6Ly9ud20tYXJjaGl2ZS5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogTk9BQSBOYXRpb25hbCBXYXRlciBNb2RlbCBSZWFuYWx5c2lzXG5OYW1lMjogVGhlIGNvbXBsZXRlIGFyY2hpdmUgb2YgTldNIGRhdGEgdmVyc2lvbiAxLjIuXG5EZXNjcmlwdGlvbjogVGhlIE5PQUEgTmF0aW9uYWwgV2F0ZXIgTW9kZWwgUmVhbmFseXNpcyBkYXRhc2V0IGNvbnRhaW5zIG91dHB1dCBmcm9tIG11bHRpLWRlY2FkZSByZXRyb3NwZWN0aXZlIHNpbXVsYXRpb25zLiBUaGVzZSBzaW11bGF0aW9ucyB1c2VkIG9ic2VydmVkIHJhaW5mYWxsIGFzIGlucHV0IGFuZCBpbmdlc3RlZCBvdGhlciByZXF1aXJlZCBtZXRlb3JvbG9naWNhbCBpbnB1dCBmaWVsZHMgZnJvbSBhIHdlYXRoZXIgcmVhbmFseXNpcyBkYXRhc2V0LiBUaGUgb3V0cHV0IGZyZXF1ZW5jeSBhbmQgZmllbGRzIGF2YWlsYWJsZSBpbiB0aGlzIGhpc3RvcmljYWwgTldNIGRhdGFzZXQgZGlmZmVyIGZyb20gdGhvc2UgY29udGFpbmVkIGluIHRoZSByZWFsLXRpbWUgZm9yZWNhc3QgbW9kZWwuIE9uZSBhcHBsaWNhdGlvbiBvZiB0aGlzIGRhdGFzZXQgaXMgdG8gcHJvdmlkZSBoaXN0b3JpY2FsIGNvbnRleHQgdG8gY3VycmVudCByZWFsLXRpbWUgc3RyZWFtZmxvdywgc29pbCBtb2lzdHVyZSBhbmQgc25vd3BhY2sgTldNIGNvbmRpdGlvbnMuIFRoZSByZWFuYWx5c2lzIGRhdGEgY2FuIGJlIHVzZWQgdG8gaW5mZXIgZmxvdyBmcmVxdWVuY2llcyBhbmQgcGVyZm9ybSB0ZW1wb3JhbCBhbmFseXNlcyB3aXRoIGhvdXJseSBzdHJlYW1mbG93IG91dHB1dCBhbmQgMy1ob3VybHkgbGFuZCBzdXJmYWNlIG91dHB1dC4gVGhlIGxvbmctdGVybSBkYXRhc2V0IGNhbiBhbHNvIGJlIHVzZWQgaW4gdGhlIGRldmVsb3BtZW50IG9mIGVuZCB1c2VyIGFwcGxpY2F0aW9ucyB3aGljaCByZXF1aXJlIGEgbG9uZyBiYXNlbGluZSBvZiBkYXRhIGZvciBzeXN0ZW0gdHJhaW5pbmcgb3IgdmVyaWZpY2F0aW9uIHB1cnBvc2VzLiBUaGlzIGRhdGFzZXQgY29udGFpbnMgb3V0cHV0IGZyb20gdHdvIHJldHJvc3BlY3RpdmUgc2ltdWxhdGlvbnMuICBDdXJyZW50bHkgdGhlcmUgYXJlIHR3byB2ZXJzaW9ucyBvZiB0aGUgZGF0YXNldDogQSAyNS15ZWFyIChKYW51YXJ5IDE5OTMgdGhyb3VnaCBEZWNlbWJlciAyMDE3KSByZXRyb3NwZWN0aXZlIHNpbXVsYXRpb24gdXNpbmcgdmVyc2lvbiAxLjIgb2YgdGhlIE5hdGlvbmFsIFdhdGVyIE1vZGVsLCBhbmQgYSAyNi15ZWFyIChKYW51YXJ5IDE5OTMgdGhyb3VnaCBEZWNlbWJlciAyMDE4KSByZXRyb3NwZWN0aXZlIHNpbXVsYXRpb24gdXNpbmcgdmVyc2lvbiAyLjAgb2YgdGhlIE5hdGlvbmFsIFdhdGVyIE1vZGVsLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL253bS1hcmNoaXZlL3JlYWRtZS5odG1sXG5Db250YWN0OiB8XG5NYW5hZ2VkQnk6IFtOT0FBXShodHRwczovL3d3dy5ub2FhLmdvdi8pXG5VcGRhdGVGcmVxdWVuY3k6IE5vIHVwZGF0ZXNcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19ud21fYXJjaGl2ZS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL253bS1hcmNoaXZlLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX253bV9hcmNoaXZlLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX253bV9hcmNoaXZlJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19ud21fYXJjaGl2ZSJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ueWNfdGxjIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbnljX3RsYy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ueWNfdGxjLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbnljLXRsYyBCdWNrZXQ6IE5ldyBZb3JrIENpdHkgVGF4aSBhbmQgTGltb3VzaW5lIENvbW1pc3Npb24gKFRMQykgVHJpcCBSZWNvcmQgRGF0YTogQ1NWIGZpbGVzIGNvbnRhaW5pbmcgTllDIFRMQyB0cmlwIGRhdGEuIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbnljLXRsYyBidWNrZXQgYXQgaHR0cHM6Ly9ueWMtdGxjLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBOZXcgWW9yayBDaXR5IFRheGkgYW5kIExpbW91c2luZSBDb21taXNzaW9uIChUTEMpIFRyaXAgUmVjb3JkIERhdGFcbk5hbWUyOiBDU1YgZmlsZXMgY29udGFpbmluZyBOWUMgVExDIHRyaXAgZGF0YS5cbkRlc2NyaXB0aW9uOiBEYXRhIG9mIHRyaXBzIHRha2VuIGJ5IHRheGlzIGFuZCBmb3ItaGlyZSB2ZWhpY2xlcyBpbiBOZXcgWW9yayBDaXR5LlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwOi8vd3d3Lm55Yy5nb3YvaHRtbC90bGMvaHRtbC9hYm91dC90cmlwX3JlY29yZF9kYXRhLnNodG1sXG5Db250YWN0OiByZXNlYXJjaEB0bGMubnljLmdvdlxuVXBkYXRlRnJlcXVlbmN5OiBBcyBzb29uIGFzIG5ldyBkYXRhIGlzIGF2YWlsYWJsZSB0byBiZSBzaGFyZWQgcHVibGljbHkuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbnljX3RsYy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL255Yy10bGMtdHJpcC1yZWNvcmRzLXBkcy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19ueWNfdGxjLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX255Y190bGMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX255Y190bGMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfb2ljcl9pY2djX21ldGFfbWV0YWRhdGEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19vaWNyX2ljZ2NfbWV0YV9tZXRhZGF0YS5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19vaWNyX2ljZ2NfbWV0YV9tZXRhZGF0YS8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG9pY3IuaWNnYy5tZXRhIEJ1Y2tldCB3aXRoIHByZWZpeD1tZXRhZGF0YS86IElDR0Mgb24gQVdTOiBUaGlzIHB1YmxpYyBBbWF6b24gUzMgYnVja2V0IGNvbnRhaW5zIGFuYWx5c2lzIG1ldGFkYXRhIGluIFhNTCBmb3JtYXQgZm9yIGdlbm9tZSBhbmFseXNpcyByZXN1bHRzLiBNb3JlIGluZm9ybWF0aW9uIGF0IGh0dHA6Ly9vaWNyLmljZ2MubWV0YS5zMy5hbWF6b25hd3MuY29tL21ldGFkYXRhL1JFQURNRSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG9pY3IuaWNnYy5tZXRhIGJ1Y2tldCBhdCBodHRwczovL29pY3IuaWNnYy5tZXRhLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyB3aXRoIHByZWZpeD1tZXRhZGF0YS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogSUNHQyBvbiBBV1Ncbk5hbWUyOiBUaGlzIHB1YmxpYyBBbWF6b24gUzMgYnVja2V0IGNvbnRhaW5zIGFuYWx5c2lzIG1ldGFkYXRhIGluIFhNTCBmb3JtYXQgZm9yIGdlbm9tZSBhbmFseXNpcyByZXN1bHRzLiBNb3JlIGluZm9ybWF0aW9uIGF0IGh0dHA6Ly9vaWNyLmljZ2MubWV0YS5zMy5hbWF6b25hd3MuY29tL21ldGFkYXRhL1JFQURNRVxuRGVzY3JpcHRpb246IFRoZSBJbnRlcm5hdGlvbmFsIENhbmNlciBHZW5vbWUgQ29uc29ydGl1bSAoSUNHQykgY29vcmRpbmF0ZXMgcHJvamVjdHMgd2l0aCB0aGUgY29tbW9uIGFpbSBvZiBhY2NlbGVyYXRpbmcgcmVzZWFyY2ggaW50byB0aGUgY2F1c2VzIGFuZCBjb250cm9sIG9mIGNhbmNlci4gVGhlIFBhbkNhbmNlciBBbmFseXNpcyBvZiBXaG9sZSBHZW5vbWVzIChQQ0FXRykgc3R1ZHkgaXMgYW4gaW50ZXJuYXRpb25hbCBjb2xsYWJvcmF0aW9uIHRvIGlkZW50aWZ5IGNvbW1vbiBwYXR0ZXJucyBvZiBtdXRhdGlvbiBpbiB3aG9sZSBnZW5vbWVzIGZyb20gSUNHQy4gTW9yZSB0aGFuIDIsNDAwIGNvbnNpc3RlbnRseSBhbmFseXplZCBnZW5vbWVzIGNvcnJlc3BvbmRpbmcgdG8gb3ZlciAxLDEwMCB1bmlxdWUgSUNHQyBkb25vcnMgYXJlIG5vdyBmcmVlbHkgYXZhaWxhYmxlIG9uIEFtYXpvbiBTMyB0byBjcmVkZW50aWFsZWQgcmVzZWFyY2hlcnMgc3ViamVjdCB0byBJQ0dDIGRhdGEgc2hhcmluZyBwb2xpY2llcy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kY2MuaWNnYy5vcmcvaWNnYy1pbi10aGUtY2xvdWQvYXdzXG5Db250YWN0OiBkY2Mtc3VwcG9ydEBpY2djLm9yZ1xuVXBkYXRlRnJlcXVlbmN5OiBOZXcgZGF0YSBpcyBhZGRlZCBhcyBzb29uIGFzIGl0IGlzIGF2YWlsYWJsZS5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19vaWNyX2ljZ2NfbWV0YV9tZXRhZGF0YS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2ljZ2MvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfb2ljcl9pY2djX21ldGFfbWV0YWRhdGEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfb2ljcl9pY2djX21ldGFfbWV0YWRhdGEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX29pY3JfaWNnY19tZXRhX21ldGFkYXRhIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX29vbmlfZGF0YSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX29vbmlfZGF0YS5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19vb25pX2RhdGEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBvb25pLWRhdGEgQnVja2V0OiBPcGVuIE9ic2VydmF0b3J5IG9mIE5ldHdvcmsgSW50ZXJmZXJlbmNlOiBTMyBidWNrZXQgd2l0aCBkYXRhIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgb29uaS1kYXRhIGJ1Y2tldCBhdCBodHRwczovL29vbmktZGF0YS5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogT3BlbiBPYnNlcnZhdG9yeSBvZiBOZXR3b3JrIEludGVyZmVyZW5jZVxuTmFtZTI6IFMzIGJ1Y2tldCB3aXRoIGRhdGFcbkRlc2NyaXB0aW9uOiBBIGZyZWUgc29mdHdhcmUsIGdsb2JhbCBvYnNlcnZhdGlvbiBuZXR3b3JrIGZvciBkZXRlY3RpbmcgY2Vuc29yc2hpcCwgc3VydmVpbGxhbmNlIGFuZCB0cmFmZmljIG1hbmlwdWxhdGlvbiBvbiB0aGUgaW50ZXJuZXQuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vb29uaS50b3Jwcm9qZWN0Lm9yZy9hYm91dC9cbkNvbnRhY3Q6IGh0dHBzOi8vb29uaS50b3Jwcm9qZWN0Lm9yZy9nZXQtaW52b2x2ZWQvXG5VcGRhdGVGcmVxdWVuY3k6IERhaWx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfb29uaV9kYXRhL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvb29uaS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19vb25pX2RhdGEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfb29uaV9kYXRhJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19vb25pX2RhdGEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfb3BlbmFxX2ZldGNoZXMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19vcGVuYXFfZmV0Y2hlcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19vcGVuYXFfZmV0Y2hlcy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG9wZW5hcS1mZXRjaGVzIEJ1Y2tldDogT3BlbkFROiBNaW51dGVseSBDU1ZzIG9mIGdsb2JhbCBhaXIgcXVhbGl0eSBmZXRjaGVkIGZyb20gc291cmNlcyBhbGwgb3ZlciB0aGUgd29ybGQiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBvcGVuYXEtZmV0Y2hlcyBidWNrZXQgYXQgaHR0cHM6Ly9vcGVuYXEtZmV0Y2hlcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogT3BlbkFRXG5OYW1lMjogTWludXRlbHkgQ1NWcyBvZiBnbG9iYWwgYWlyIHF1YWxpdHkgZmV0Y2hlZCBmcm9tIHNvdXJjZXMgYWxsIG92ZXIgdGhlIHdvcmxkXG5EZXNjcmlwdGlvbjogR2xvYmFsLCBhZ2dyZWdhdGVkIHBoeXNpY2FsIGFpciBxdWFsaXR5IGRhdGEgZnJvbSBwdWJsaWMgZGF0YSBzb3VyY2VzIHByb3ZpZGVkIGJ5IGdvdmVybm1lbnQsIHJlc2VhcmNoLWdyYWRlIGFuZCBvdGhlciBzb3VyY2VzLiBUaGVzZSBhd2Vzb21lIGdyb3VwcyBkbyB0aGUgaGFyZCB3b3JrIG9mIG1lYXN1cmluZyB0aGVzZSBkYXRhIGFuZCBwdWJsaWNseSBzaGFyaW5nIHRoZW0sIGFuZCBvdXIgY29tbXVuaXR5IG1ha2VzIHRoZW0gbW9yZSB1bml2ZXJzYWxseS1hY2Nlc3NpYmxlIHRvIGJvdGggaHVtYW5zIGFuZCBtYWNoaW5lcy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9vcGVuYXEub3JnXG5Db250YWN0OiBpbmZvQG9wZW5hcS5vcmdcbk1hbmFnZWRCeTogW09wZW5BUV0oaHR0cHM6Ly9vcGVuYXEub3JnKVxuVXBkYXRlRnJlcXVlbmN5OiBNaW51dGVseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX29wZW5hcV9mZXRjaGVzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvb3BlbmFxLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX29wZW5hcV9mZXRjaGVzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX29wZW5hcV9mZXRjaGVzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19vcGVuYXFfZmV0Y2hlcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19vcGVuY2l0eW1vZGVsIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfb3BlbmNpdHltb2RlbC5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19vcGVuY2l0eW1vZGVsLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgb3BlbmNpdHltb2RlbCBCdWNrZXQ6IE9wZW4gQ2l0eSBNb2RlbCAoT0NNKTogUHJvamVjdCBkYXRhIGZpbGVzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgb3BlbmNpdHltb2RlbCBidWNrZXQgYXQgaHR0cHM6Ly9vcGVuY2l0eW1vZGVsLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBPcGVuIENpdHkgTW9kZWwgKE9DTSlcbk5hbWUyOiBQcm9qZWN0IGRhdGEgZmlsZXNcbkRlc2NyaXB0aW9uOiBPcGVuIENpdHkgTW9kZWwgaXMgYW4gaW5pdGlhdGl2ZSB0byBwcm92aWRlIGNpdHlHTUwgZGF0YSBmb3IgYWxsIHRoZSBidWlsZGluZ3MgaW4gdGhlIFVuaXRlZCBTdGF0ZXMuIEJ5IHVzaW5nIG90aGVyIG9wZW4gZGF0YXNldHMgaW4gY29uanVuY3Rpb24gd2l0aCBvdXIgb3duIGNvZGUgYW5kIGFsZ29yaXRobXMgaXQgaXMgb3VyIGdvYWwgdG8gcHJvdmlkZSAzRCBnZW9tZXRyaWVzIGZvciBldmVyeSBVUyBidWlsZGluZy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9naXRodWIuY29tL29wZW5jaXR5bW9kZWwvb3BlbmNpdHltb2RlbFxuQ29udGFjdDogaHR0cHM6Ly9naXRodWIuY29tL29wZW5jaXR5bW9kZWwvb3BlbmNpdHltb2RlbCNjb250YWN0XG5VcGRhdGVGcmVxdWVuY3k6IFF1YXJ0ZXJseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX29wZW5jaXR5bW9kZWwvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9vcGVuY2l0eW1vZGVsLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX29wZW5jaXR5bW9kZWwucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfb3BlbmNpdHltb2RlbCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfb3BlbmNpdHltb2RlbCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19vcGVubmV1cm9fb3JnIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfb3Blbm5ldXJvX29yZy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19vcGVubmV1cm9fb3JnLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgb3Blbm5ldXJvLm9yZyBCdWNrZXQ6IE9wZW5OZXVybzogQWxsIGRhdGFzZXRzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgb3Blbm5ldXJvLm9yZyBidWNrZXQgYXQgaHR0cHM6Ly9vcGVubmV1cm8ub3JnLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBPcGVuTmV1cm9cbk5hbWUyOiBBbGwgZGF0YXNldHNcbkRlc2NyaXB0aW9uOiBPcGVuTmV1cm8gaXMgYSBkYXRhYmFzZSBvZiBvcGVubHktYXZhaWxhYmxlIGJyYWluIGltYWdpbmcgZGF0YS4gVGhlIGRhdGEgYXJlIHNoYXJlZCBhY2NvcmRpbmcgdG8gYSBDcmVhdGl2ZSBDb21tb25zIENDMCBsaWNlbnNlLCBwcm92aWRpbmcgYSBicm9hZCByYW5nZSBvZiBicmFpbiBpbWFnaW5nIGRhdGEgdG8gcmVzZWFyY2hlcnMgYW5kIGNpdGl6ZW4gc2NpZW50aXN0cyBhbGlrZS4gVGhlIGRhdGFiYXNlIHByaW1hcmlseSBmb2N1c2VzIG9uIGZ1bmN0aW9uYWwgbWFnbmV0aWMgcmVzb25hbmNlIGltYWdpbmcgKGZNUkkpIGRhdGEsIGJ1dCBhbHNvIGluY2x1ZGVzIG90aGVyIGltYWdpbmcgbW9kYWxpdGllcyBpbmNsdWRpbmcgc3RydWN0dXJhbCBhbmQgZGlmZnVzaW9uIE1SSSwgZWxlY3Ryb2VuY2VwaGFsb2dyYXBoeSAoRUVHKSwgYW5kIG1hZ25ldG9lbmNlcGhhbG9ncmFweSAoTUVHKS4gT3BlbmZNUkkgaXMgYSBwcm9qZWN0IG9mIHRoZSBbQ2VudGVyIGZvciBSZXByb2R1Y2libGUgTmV1cm9zY2llbmNlIGF0IFN0YW5mb3JkIFVuaXZlcnNpdHldKGh0dHA6Ly9yZXByb2R1Y2liaWxpdHkuc3RhbmZvcmQuZWR1KS4gRGV2ZWxvcG1lbnQgb2YgdGhlIE9wZW5OZXVybyByZXNvdXJjZSBoYXMgYmVlbiBmdW5kZWQgYnkgdGhlIE5hdGlvbmFsIFNjaWVuY2UgRm91bmRhdGlvbiwgTmF0aW9uYWwgSW5zdGl0dXRlIG9mIE1lbnRhbCBIZWFsdGgsIE5hdGlvbmFsIEluc3RpdHV0ZSBvbiBEcnVnIEFidXNlLCBhbmQgdGhlIExhdXJhIGFuZCBKb2huIEFybm9sZCBGb3VuZGF0aW9uLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwOi8vb3Blbm5ldXJvLm9yZ1xuQ29udGFjdDogU3VwcG9ydCBmb3JtIGF0IGh0dHBzOi8vb3Blbm5ldXJvLm9yZ1xuVXBkYXRlRnJlcXVlbmN5OiBOZXcgZGF0YXNldHMgZGVwb3NpdGVkIGV2ZXJ5IDQtNiBkYXlzXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfb3Blbm5ldXJvX29yZy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL29wZW5uZXVyby8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19vcGVubmV1cm9fb3JnLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX29wZW5uZXVyb19vcmcmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX29wZW5uZXVyb19vcmciXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfb3NtX3BkcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX29zbV9wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfb3NtX3Bkcy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG9zbS1wZHMgQnVja2V0OiBPcGVuU3RyZWV0TWFwIG9uIEFXUzogSW1hZ2VyeSBhbmQgbWV0YWRhdGEiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBvc20tcGRzIGJ1Y2tldCBhdCBodHRwczovL29zbS1wZHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE9wZW5TdHJlZXRNYXAgb24gQVdTXG5OYW1lMjogSW1hZ2VyeSBhbmQgbWV0YWRhdGFcbkRlc2NyaXB0aW9uOiBPU00gaXMgYSBmcmVlLCBlZGl0YWJsZSBtYXAgb2YgdGhlIHdvcmxkLCBjcmVhdGVkIGFuZCBtYWludGFpbmVkIGJ5IHZvbHVudGVlcnMuIFJlZ3VsYXIgT1NNIGRhdGEgYXJjaGl2ZXMgYXJlIG1hZGUgYXZhaWxhYmxlIGluIEFtYXpvbiBTMy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLm9wZW5kYXRhLmF3cy9vc20tcGRzL3JlYWRtZS5odG1sXG5Db250YWN0OiBodHRwczovL2dpdGh1Yi5jb20vbW9qb2RuYS9vc20tcGRzLXBpcGVsaW5lcy9pc3N1ZXNcblVwZGF0ZUZyZXF1ZW5jeTogRGF0YSBpcyB1cGRhdGVkIHdlZWtseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX29zbV9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9vc20vIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfb3NtX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19vc21fcGRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19vc21fcGRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX29zbWxyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfb3NtbHIuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfb3NtbHIvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBvc21sciBCdWNrZXQ6IE9wZW5TdHJlZXRNYXAgTGluZWFyIFJlZmVyZW5jaW5nOiBNYW5pZmVzdCBhbmQgZGF0YSBmaWxlcyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG9zbWxyIGJ1Y2tldCBhdCBodHRwczovL29zbWxyLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBPcGVuU3RyZWV0TWFwIExpbmVhciBSZWZlcmVuY2luZ1xuTmFtZTI6IE1hbmlmZXN0IGFuZCBkYXRhIGZpbGVzXG5EZXNjcmlwdGlvbjogT1NNTFIgYSBsaW5lYXIgcmVmZXJlbmNpbmcgc3lzdGVtIGJ1aWx0IG9uIHRvcCBvZiBPcGVuU3RyZWV0TWFwLiBPU00gaGFzIGdyZWF0IGluZm9ybWF0aW9uIGFib3V0IHJvYWRzIGFyb3VuZCB0aGUgd29ybGQgYW5kIHRoZWlyIGludGVyY29ubmVjdGlvbnMsIGJ1dCBpdCBsYWNrcyB0aGUgbWVhbnMgdG8gZ2l2ZSBhIHN0YWJsZSBpZGVudGlmaWVyIHRvIGEgc3RyZXRjaCBvZiByb2Fkd2F5LiBPU01MUiBwcm92aWRlcyBhIHN0YWJsZSBzZXQgb2YgbnVtZXJpY2FsIElEcyBmb3IgZXZlcnkgMSBraWxvbWV0ZXIgc3RyZXRjaCBvZiByb2Fkd2F5IGFyb3VuZCB0aGUgd29ybGQuIEluIHVyYmFuIGFyZWFzLCBPU01MUiBJRHMgYXJlIGF0dGFjaGVkIHRvIGVhY2ggYmxvY2sgb2Ygcm9hZHdheXMgYmV0d2VlbiBzaWduaWZpY2FudCBpbnRlcnNlY3Rpb25zLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2dpdGh1Yi5jb20vb3BlbnRyYWZmaWMvb3NtbHIvYmxvYi9tYXN0ZXIvZG9jcy9pbnRyby5tZFxuQ29udGFjdDogaHR0cHM6Ly9naXRodWIuY29tL29wZW50cmFmZmljL29zbWxyL2lzc3Vlc1xuVXBkYXRlRnJlcXVlbmN5OiBOZXcgZGF0YSBpcyBhZGRlZCBiYXNlZCBvbiBjb21tdW5pdHkgZmVlZGJhY2tcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19vc21sci9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL29zbWxyLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX29zbWxyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX29zbWxyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19vc21sciJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19xaWltZTJfZGF0YSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3FpaW1lMl9kYXRhLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX3FpaW1lMl9kYXRhLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgcWlpbWUyLWRhdGEgQnVja2V0OiBRSUlNRSAyIFVzZXIgVHV0b3JpYWwgRGF0YXNldHM6IFJlbmRlcmVkIGRvY3MgYW5kIHR1dG9yaWFsIGRhdGEsIGFzIGdlbmVyYXRlZCBieSBodHRwczovL2dpdGh1Yi5jb20vcWlpbWUyL2RvY3MiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBxaWltZTItZGF0YSBidWNrZXQgYXQgaHR0cHM6Ly9xaWltZTItZGF0YS5zMy51cy13ZXN0LTIuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogUUlJTUUgMiBVc2VyIFR1dG9yaWFsIERhdGFzZXRzXG5OYW1lMjogUmVuZGVyZWQgZG9jcyBhbmQgdHV0b3JpYWwgZGF0YSwgYXMgZ2VuZXJhdGVkIGJ5IGh0dHBzOi8vZ2l0aHViLmNvbS9xaWltZTIvZG9jc1xuRGVzY3JpcHRpb246IFFJSU1FIDIgaXMgYSBwb3dlcmZ1bCwgZXh0ZW5zaWJsZSwgYW5kIGRlY2VudHJhbGl6ZWQgbWljcm9iaW9tZSBhbmFseXNpcyBwYWNrYWdlIHdpdGggYSBmb2N1cyBvbiBkYXRhIGFuZCBhbmFseXNpcyB0cmFuc3BhcmVuY3kuIFFJSU1FIDIgZW5hYmxlcyByZXNlYXJjaGVycyB0byBzdGFydCBhbiBhbmFseXNpcyB3aXRoIHJhdyBETkEgc2VxdWVuY2UgZGF0YSBhbmQgZmluaXNoIHdpdGggcHVibGljYXRpb24tcXVhbGl0eSBmaWd1cmVzIGFuZCBzdGF0aXN0aWNhbCByZXN1bHRzLiBUaGlzIGRhdGFzZXQgY29udGFpbnMgdGhlIHVzZXIgZG9jcyAoYW5kIHJlbGF0ZWQgZGF0YXNldHMpIGZvciBRSUlNRSAyLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3MucWlpbWUyLm9yZ1xuQ29udGFjdDogaHR0cHM6Ly9mb3J1bS5xaWltZTIub3JnXG5NYW5hZ2VkQnk6IFRoZSBRSUlNRSAyIERldmVsb3BtZW50IFRlYW1cblVwZGF0ZUZyZXF1ZW5jeTogUXVhcnRlcmx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfcWlpbWUyX2RhdGEvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9xaWltZTIvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfcWlpbWUyX2RhdGEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfcWlpbWUyX2RhdGEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX3FpaW1lMl9kYXRhIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3NhZmVjYXN0X29wZW5kYXRhX3B1YmxpY191c19lYXN0XzEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19zYWZlY2FzdF9vcGVuZGF0YV9wdWJsaWNfdXNfZWFzdF8xLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX3NhZmVjYXN0X29wZW5kYXRhX3B1YmxpY191c19lYXN0XzEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBzYWZlY2FzdC1vcGVuZGF0YS1wdWJsaWMtdXMtZWFzdC0xIEJ1Y2tldDogU2FmZWNhc3Q6IEJ1bGsgZXhwb3J0cyBvZiBhaXIgYW5kIHJhZGlhdGlvbiBtZWFzdXJlbWVudHMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBzYWZlY2FzdC1vcGVuZGF0YS1wdWJsaWMtdXMtZWFzdC0xIGJ1Y2tldCBhdCBodHRwczovL3NhZmVjYXN0LW9wZW5kYXRhLXB1YmxpYy11cy1lYXN0LTEuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IFNhZmVjYXN0XG5OYW1lMjogQnVsayBleHBvcnRzIG9mIGFpciBhbmQgcmFkaWF0aW9uIG1lYXN1cmVtZW50c1xuRGVzY3JpcHRpb246IEFuIG9uZ29pbmcgY29sbGVjdGlvbiBvZiByYWRpYXRpb24gYW5kIGFpciBxdWFsaXR5IG1lYXN1cmVtZW50cyB0YWtlbiBieSBkZXZpY2VzIGludm9sdmVkIGluIHRoZSBTYWZlY2FzdCBwcm9qZWN0LlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2dpdGh1Yi5jb20vU2FmZWNhc3Qvc2FmZWNhc3RhcGkvd2lraS9EYXRhLVNldHNcbkNvbnRhY3Q6IGh0dHBzOi8vZ3JvdXBzLmdvb2dsZS5jb20vZm9ydW0vIyFmb3J1bS9zYWZlY2FzdC1kZXZpY2VzXG5NYW5hZ2VkQnk6IFtTYWZlY2FzdF0oaHR0cHM6Ly9zYWZlY2FzdC5vcmcvKVxuVXBkYXRlRnJlcXVlbmN5OiBDb250aW51b3VzXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfc2FmZWNhc3Rfb3BlbmRhdGFfcHVibGljX3VzX2Vhc3RfMS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL3NhZmVjYXN0LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX3NhZmVjYXN0X29wZW5kYXRhX3B1YmxpY191c19lYXN0XzEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfc2FmZWNhc3Rfb3BlbmRhdGFfcHVibGljX3VzX2Vhc3RfMSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfc2FmZWNhc3Rfb3BlbmRhdGFfcHVibGljX3VzX2Vhc3RfMSJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczFfbDFjIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfc2VudGluZWxfaW52ZW50b3J5X3NlbnRpbmVsX3MxX2wxYy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczFfbDFjLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgc2VudGluZWwtaW52ZW50b3J5IEJ1Y2tldCB3aXRoIHByZWZpeD1zZW50aW5lbC1zMS1sMWMvOiBTZW50aW5lbC0xOiBbUzMgSW52ZW50b3J5XShodHRwczovL2RvY3MuYXdzLmFtYXpvbi5jb20vQW1hem9uUzMvbGF0ZXN0L2Rldi9zdG9yYWdlLWludmVudG9yeS5odG1sI3N0b3JhZ2UtaW52ZW50b3J5LWNvbnRlbnRzKSBmaWxlcyBmb3IgTDFDIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgc2VudGluZWwtaW52ZW50b3J5IGJ1Y2tldCBhdCBodHRwczovL3NlbnRpbmVsLWludmVudG9yeS5zMy5ldS1jZW50cmFsLTEuYW1hem9uYXdzLmNvbS8gd2l0aCBwcmVmaXg9c2VudGluZWwtczEtbDFjLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBTZW50aW5lbC0xXG5OYW1lMjogW1MzIEludmVudG9yeV0oaHR0cHM6Ly9kb2NzLmF3cy5hbWF6b24uY29tL0FtYXpvblMzL2xhdGVzdC9kZXYvc3RvcmFnZS1pbnZlbnRvcnkuaHRtbCNzdG9yYWdlLWludmVudG9yeS1jb250ZW50cykgZmlsZXMgZm9yIEwxQ1xuRGVzY3JpcHRpb246IFtTZW50aW5lbC0xXShodHRwczovL3NlbnRpbmVsLmVzYS5pbnQvd2ViL3NlbnRpbmVsL21pc3Npb25zL3NlbnRpbmVsLTEpIGlzIGEgcGFpciBvZiBFdXJvcGVhbiByYWRhciBpbWFnaW5nIChTQVIpIHNhdGVsbGl0ZXMgbGF1bmNoZWQgaW4gMjAxNCBhbmQgMjAxNi4gSXRzIDYgZGF5cyByZXZpc2l0IGN5Y2xlIGFuZCBhYmlsaXR5IHRvIG9ic2VydmUgdGhyb3VnaCBjbG91ZHMgbWFrZXMgaXQgcGVyZmVjdCBmb3Igc2VhIGFuZCBsYW5kIG1vbml0b3JpbmcsIGVtZXJnZW5jeSByZXNwb25zZSBkdWUgdG8gZW52aXJvbm1lbnRhbCBkaXNhc3RlcnMsIGFuZCBlY29ub21pYyBhcHBsaWNhdGlvbnMuIEdSRCBkYXRhIGlzIGF2YWlsYWJsZSBnbG9iYWxseSBzaW5jZSBKYW51YXJ5IDIwMTcuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vcm9kYS5zZW50aW5lbC1odWIuY29tL3NlbnRpbmVsLXMxLWwxYy9HUkQvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IGh0dHBzOi8vZm9ydW0uc2VudGluZWwtaHViLmNvbS9jL2F3cy1zZW50aW5lbFxuTWFuYWdlZEJ5OiBbU2luZXJnaXNlXShodHRwczovL3d3dy5zaW5lcmdpc2UuY29tLylcblVwZGF0ZUZyZXF1ZW5jeTogTmV3IFNlbnRpbmVsIGRhdGEgYXJlIGFkZGVkIHJlZ3VsYXJseSwgdXN1YWxseSB3aXRoaW4gZmV3IGhvdXJzIGFmdGVyIHRoZXkgYXJlIGF2YWlsYWJsZSBvbiBDb3Blcm5pY3VzIE9wZW5IdWIuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfc2VudGluZWxfaW52ZW50b3J5X3NlbnRpbmVsX3MxX2wxYy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL3NlbnRpbmVsLTEvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfc2VudGluZWxfaW52ZW50b3J5X3NlbnRpbmVsX3MxX2wxYy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczFfbDFjJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczFfbDFjIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3NlbnRpbmVsX2ludmVudG9yeV9zZW50aW5lbF9zMl9sMWMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczJfbDFjLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX3NlbnRpbmVsX2ludmVudG9yeV9zZW50aW5lbF9zMl9sMWMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBzZW50aW5lbC1pbnZlbnRvcnkgQnVja2V0IHdpdGggcHJlZml4PXNlbnRpbmVsLXMyLWwxYy86IFNlbnRpbmVsLTI6IFtTMyBJbnZlbnRvcnldKGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9BbWF6b25TMy9sYXRlc3QvZGV2L3N0b3JhZ2UtaW52ZW50b3J5Lmh0bWwjc3RvcmFnZS1pbnZlbnRvcnktY29udGVudHMpIGZpbGVzIGZvciBMMUMgKE9SQyBhbmQgQ1NWKSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIHNlbnRpbmVsLWludmVudG9yeSBidWNrZXQgYXQgaHR0cHM6Ly9zZW50aW5lbC1pbnZlbnRvcnkuczMuZXUtY2VudHJhbC0xLmFtYXpvbmF3cy5jb20vIHdpdGggcHJlZml4PXNlbnRpbmVsLXMyLWwxYy8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogU2VudGluZWwtMlxuTmFtZTI6IFtTMyBJbnZlbnRvcnldKGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9BbWF6b25TMy9sYXRlc3QvZGV2L3N0b3JhZ2UtaW52ZW50b3J5Lmh0bWwjc3RvcmFnZS1pbnZlbnRvcnktY29udGVudHMpIGZpbGVzIGZvciBMMUMgKE9SQyBhbmQgQ1NWKVxuRGVzY3JpcHRpb246IFRoZSBbU2VudGluZWwtMiBtaXNzaW9uXShodHRwczovL3NlbnRpbmVsLmVzYS5pbnQvd2ViL3NlbnRpbmVsL21pc3Npb25zL3NlbnRpbmVsLTIpIGlzIGEgbGFuZCBtb25pdG9yaW5nIGNvbnN0ZWxsYXRpb24gb2YgdHdvIHNhdGVsbGl0ZXMgdGhhdCBwcm92aWRlIGhpZ2ggcmVzb2x1dGlvbiBvcHRpY2FsIGltYWdlcnkgYW5kIHByb3ZpZGUgY29udGludWl0eSBmb3IgdGhlIGN1cnJlbnQgU1BPVCBhbmQgTGFuZHNhdCBtaXNzaW9ucy4gVGhlIG1pc3Npb24gcHJvdmlkZXMgYSBnbG9iYWwgY292ZXJhZ2Ugb2YgdGhlIEVhcnRoJ3MgbGFuZCBzdXJmYWNlIGV2ZXJ5IDUgZGF5cywgbWFraW5nIHRoZSBkYXRhIG9mIGdyZWF0IHVzZSBpbiBvbi1nb2luZyBzdHVkaWVzLiBMMUMgZGF0YSBhcmUgYXZhaWxhYmxlIGZyb20gSnVuZSAyMDE1IGdsb2JhbGx5LiBMMkEgZGF0YSBhcmUgYXZhaWxhYmxlIGZyb20gQXByaWwgMjAxNyBvdmVyIHdpZGVyIEV1cm9wZSByZWdpb24gYW5kIGdsb2JhbGx5IHNpbmNlIERlY2VtYmVyIDIwMTguXG5cbkRvY3VtZW50YXRpb246IERvY3VtZW50YXRpb24gaXMgYXZhaWxhYmxlIGZvciBbU2VudGluZWwtMiBMMUNdKGh0dHBzOi8vcm9kYS5zZW50aW5lbC1odWIuY29tL3NlbnRpbmVsLXMyLWwxYy9yZWFkbWUuaHRtbCkgYW5kIFtTZW50aW5lbC0yIEwyQV0oaHR0cHM6Ly9yb2RhLnNlbnRpbmVsLWh1Yi5jb20vc2VudGluZWwtczItbDJhL3JlYWRtZS5odG1sKS5cbkNvbnRhY3Q6IGh0dHBzOi8vZm9ydW0uc2VudGluZWwtaHViLmNvbS9jL2F3cy1zZW50aW5lbFxuTWFuYWdlZEJ5OiBbU2luZXJnaXNlXShodHRwczovL3d3dy5zaW5lcmdpc2UuY29tLylcblVwZGF0ZUZyZXF1ZW5jeTogTmV3IFNlbnRpbmVsIGRhdGEgYXJlIGFkZGVkIHJlZ3VsYXJseSwgdXN1YWxseSB3aXRoaW4gZmV3IGhvdXJzIGFmdGVyIHRoZXkgYXJlIGF2YWlsYWJsZSBvbiBDb3Blcm5pY3VzIE9wZW5IdWIuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfc2VudGluZWxfaW52ZW50b3J5X3NlbnRpbmVsX3MyX2wxYy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL3NlbnRpbmVsLTIvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfc2VudGluZWxfaW52ZW50b3J5X3NlbnRpbmVsX3MyX2wxYy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczJfbDFjJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczJfbDFjIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3NlbnRpbmVsX2ludmVudG9yeV9zZW50aW5lbF9zMl9sMmEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczJfbDJhLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX3NlbnRpbmVsX2ludmVudG9yeV9zZW50aW5lbF9zMl9sMmEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBzZW50aW5lbC1pbnZlbnRvcnkgQnVja2V0IHdpdGggcHJlZml4PXNlbnRpbmVsLXMyLWwyYS86IFNlbnRpbmVsLTI6IFtTMyBJbnZlbnRvcnldKGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9BbWF6b25TMy9sYXRlc3QvZGV2L3N0b3JhZ2UtaW52ZW50b3J5Lmh0bWwjc3RvcmFnZS1pbnZlbnRvcnktY29udGVudHMpIGZpbGVzIGZvciBMMkEgKE9SQyBhbmQgQ1NWKSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIHNlbnRpbmVsLWludmVudG9yeSBidWNrZXQgYXQgaHR0cHM6Ly9zZW50aW5lbC1pbnZlbnRvcnkuczMuZXUtY2VudHJhbC0xLmFtYXpvbmF3cy5jb20vIHdpdGggcHJlZml4PXNlbnRpbmVsLXMyLWwyYS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogU2VudGluZWwtMlxuTmFtZTI6IFtTMyBJbnZlbnRvcnldKGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9BbWF6b25TMy9sYXRlc3QvZGV2L3N0b3JhZ2UtaW52ZW50b3J5Lmh0bWwjc3RvcmFnZS1pbnZlbnRvcnktY29udGVudHMpIGZpbGVzIGZvciBMMkEgKE9SQyBhbmQgQ1NWKVxuRGVzY3JpcHRpb246IFRoZSBbU2VudGluZWwtMiBtaXNzaW9uXShodHRwczovL3NlbnRpbmVsLmVzYS5pbnQvd2ViL3NlbnRpbmVsL21pc3Npb25zL3NlbnRpbmVsLTIpIGlzIGEgbGFuZCBtb25pdG9yaW5nIGNvbnN0ZWxsYXRpb24gb2YgdHdvIHNhdGVsbGl0ZXMgdGhhdCBwcm92aWRlIGhpZ2ggcmVzb2x1dGlvbiBvcHRpY2FsIGltYWdlcnkgYW5kIHByb3ZpZGUgY29udGludWl0eSBmb3IgdGhlIGN1cnJlbnQgU1BPVCBhbmQgTGFuZHNhdCBtaXNzaW9ucy4gVGhlIG1pc3Npb24gcHJvdmlkZXMgYSBnbG9iYWwgY292ZXJhZ2Ugb2YgdGhlIEVhcnRoJ3MgbGFuZCBzdXJmYWNlIGV2ZXJ5IDUgZGF5cywgbWFraW5nIHRoZSBkYXRhIG9mIGdyZWF0IHVzZSBpbiBvbi1nb2luZyBzdHVkaWVzLiBMMUMgZGF0YSBhcmUgYXZhaWxhYmxlIGZyb20gSnVuZSAyMDE1IGdsb2JhbGx5LiBMMkEgZGF0YSBhcmUgYXZhaWxhYmxlIGZyb20gQXByaWwgMjAxNyBvdmVyIHdpZGVyIEV1cm9wZSByZWdpb24gYW5kIGdsb2JhbGx5IHNpbmNlIERlY2VtYmVyIDIwMTguXG5cbkRvY3VtZW50YXRpb246IERvY3VtZW50YXRpb24gaXMgYXZhaWxhYmxlIGZvciBbU2VudGluZWwtMiBMMUNdKGh0dHBzOi8vcm9kYS5zZW50aW5lbC1odWIuY29tL3NlbnRpbmVsLXMyLWwxYy9yZWFkbWUuaHRtbCkgYW5kIFtTZW50aW5lbC0yIEwyQV0oaHR0cHM6Ly9yb2RhLnNlbnRpbmVsLWh1Yi5jb20vc2VudGluZWwtczItbDJhL3JlYWRtZS5odG1sKS5cbkNvbnRhY3Q6IGh0dHBzOi8vZm9ydW0uc2VudGluZWwtaHViLmNvbS9jL2F3cy1zZW50aW5lbFxuTWFuYWdlZEJ5OiBbU2luZXJnaXNlXShodHRwczovL3d3dy5zaW5lcmdpc2UuY29tLylcblVwZGF0ZUZyZXF1ZW5jeTogTmV3IFNlbnRpbmVsIGRhdGEgYXJlIGFkZGVkIHJlZ3VsYXJseSwgdXN1YWxseSB3aXRoaW4gZmV3IGhvdXJzIGFmdGVyIHRoZXkgYXJlIGF2YWlsYWJsZSBvbiBDb3Blcm5pY3VzIE9wZW5IdWIuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfc2VudGluZWxfaW52ZW50b3J5X3NlbnRpbmVsX3MyX2wyYS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL3NlbnRpbmVsLTIvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfc2VudGluZWxfaW52ZW50b3J5X3NlbnRpbmVsX3MyX2wyYS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczJfbDJhJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczJfbDJhIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3NlbnRpbmVsMV9zbGNfc2Vhc2lhX3BkcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3NlbnRpbmVsMV9zbGNfc2Vhc2lhX3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19zZW50aW5lbDFfc2xjX3NlYXNpYV9wZHMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBzZW50aW5lbDEtc2xjLXNlYXNpYS1wZHMgQnVja2V0OiBTZW50aW5lbC0xIFNMQyBkYXRhc2V0IGZvciBTb3V0aCBhbmQgU291dGhlYXN0IEFzaWEsIFRhaXdhbiwgYW5kIEphcGFuOiBQdWJsaWMgYWNjZXNzIHRvIFNlbnRpbmVsLTEgU0xDIElXIHNjZW5lcyBvdmVyIFNvdXRoIGFuZCBTb3V0aGVhc3QgQXNpYSwgVGFpd2FuIGFuZCBKYXBhbiIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIHNlbnRpbmVsMS1zbGMtc2Vhc2lhLXBkcyBidWNrZXQgYXQgaHR0cHM6Ly9zZW50aW5lbDEtc2xjLXNlYXNpYS1wZHMuczMuYXAtc291dGhlYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogU2VudGluZWwtMSBTTEMgZGF0YXNldCBmb3IgU291dGggYW5kIFNvdXRoZWFzdCBBc2lhLCBUYWl3YW4sIGFuZCBKYXBhblxuTmFtZTI6IFB1YmxpYyBhY2Nlc3MgdG8gU2VudGluZWwtMSBTTEMgSVcgc2NlbmVzIG92ZXIgU291dGggYW5kIFNvdXRoZWFzdCBBc2lhLCBUYWl3YW4gYW5kIEphcGFuXG5EZXNjcmlwdGlvbjogVGhlIFMxIFNpbmdsZSBMb29rIENvbXBsZXggKFNMQykgZGF0YXNldCBjb250YWlucyBTeW50aGV0aWMgQXBlcnR1cmUgUmFkYXIgKFNBUikgZGF0YSBpbiB0aGUgQy1CYW5kIHdhdmVsZW5ndGguIFRoZSBTQVIgc2Vuc29ycyBhcmUgaW5zdGFsbGVkIG9uIGEgdHdvLXNhdGVsbGl0ZSAoU2VudGluZWwtMUEgYW5kIFNlbnRpbmVsLTFCKSBjb25zdGVsbGF0aW9uIG9yYml0aW5nIHRoZSBFYXJ0aCB3aXRoIGEgY29tYmluZWQgcmV2aXNpdCB0aW1lIG9mIHNpeCBkYXlzLCBvcGVyYXRlZCBieSB0aGUgRXVyb3BlYW4gU3BhY2UgQWdlbmN5LiBUaGUgUzEgU0xDIGRhdGEgYXJlIGEgTGV2ZWwtMSBwcm9kdWN0IHRoYXQgY29sbGVjdHMgcmFkYXIgYW1wbGl0dWRlIGFuZCBwaGFzZSBpbmZvcm1hdGlvbiBpbiBhbGwtd2VhdGhlciwgZGF5IG9yIG5pZ2h0IGNvbmRpdGlvbnMsIHdoaWNoIGlzIGlkZWFsIGZvciBzdHVkeWluZyBuYXR1cmFsIGhhemFyZHMgYW5kIGVtZXJnZW5jeSByZXNwb25zZSwgbGFuZCBhcHBsaWNhdGlvbnMsIG9pbCBzcGlsbCBtb25pdG9yaW5nLCBzZWEtaWNlIGNvbmRpdGlvbnMsIGFuZCBhc3NvY2lhdGVkIGNsaW1hdGUgY2hhbmdlIGVmZmVjdHMuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZ2l0aHViLmNvbS9lYXJ0aG9ic2VydmF0b3J5L3NlbnRpbmVsMS1vcGRzL1xuQ29udGFjdDogaHR0cHM6Ly9naXRodWIuY29tL2VhcnRob2JzZXJ2YXRvcnkvc2VudGluZWwxLW9wZHMvXG5NYW5hZ2VkQnk6IFtFYXJ0aCBPYnNlcnZhdG9yeSBvZiBTaW5nYXBvcmUsIE5hbnlhbmcgVGVjaG5vbG9naWNhbCBVbml2ZXJzaXR5XShodHRwczovL2VhcnRob2JzZXJ2YXRvcnkuc2cpXG5VcGRhdGVGcmVxdWVuY3k6IFMxIFNMQyBkYXRhIGZvciB0aGUgcmVnaW9uIG9mIGludGVyZXN0IHdpbGwgYmUgdXBkYXRlZCByZWd1bGFybHksIGFzIGl0IGJlY29tZXMgYXZhaWxhYmxlIG9uIHRoZSBBbGFza2EgU2F0ZWxsaXRlIEZhY2lsaXR5IGVuZHBvaW50LlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX3NlbnRpbmVsMV9zbGNfc2Vhc2lhX3Bkcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL3NlbnRpbmVsMS1zbGMtc2Vhc2lhLXBkcy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19zZW50aW5lbDFfc2xjX3NlYXNpYV9wZHMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfc2VudGluZWwxX3NsY19zZWFzaWFfcGRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19zZW50aW5lbDFfc2xjX3NlYXNpYV9wZHMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfc2lsb19vcGVuX2RhdGEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19zaWxvX29wZW5fZGF0YS5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19zaWxvX29wZW5fZGF0YS8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIHNpbG8tb3Blbi1kYXRhIEJ1Y2tldDogU0lMTyBjbGltYXRlIGRhdGEgb24gQVdTOiBTSUxPIG9wZW4gZGF0YSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIHNpbG8tb3Blbi1kYXRhIGJ1Y2tldCBhdCBodHRwczovL3NpbG8tb3Blbi1kYXRhLnMzLmFwLXNvdXRoZWFzdC0yLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IFNJTE8gY2xpbWF0ZSBkYXRhIG9uIEFXU1xuTmFtZTI6IFNJTE8gb3BlbiBkYXRhXG5EZXNjcmlwdGlvbjogW1NJTE9dKGh0dHBzOi8vd3d3LmxvbmdwYWRkb2NrLnFsZC5nb3YuYXUvc2lsbykgaXMgYSBkYXRhYmFzZSBvZiBBdXN0cmFsaWFuIFtjbGltYXRlIGRhdGFdKGh0dHBzOi8vd3d3LmxvbmdwYWRkb2NrLnFsZC5nb3YuYXUvc2lsby9hYm91dC9jbGltYXRlLXZhcmlhYmxlcykgZnJvbSAxODg5IHRvIHRoZSBwcmVzZW50LiBJdCBwcm92aWRlcyBjb250aW51b3VzLCBkYWlseSB0aW1lLXN0ZXAgW2RhdGEgcHJvZHVjdHNdKGh0dHBzOi8vd3d3LmxvbmdwYWRkb2NrLnFsZC5nb3YuYXUvc2lsby9hYm91dC9kYXRhLXByb2R1Y3RzKSBpbiByZWFkeS10by11c2UgW2Zvcm1hdHNdKGh0dHBzOi8vd3d3LmxvbmdwYWRkb2NrLnFsZC5nb3YuYXUvc2lsby9hYm91dC9maWxlLWZvcm1hdHMtYW5kLXNhbXBsZXMpIGZvciByZXNlYXJjaCBhbmQgb3BlcmF0aW9uYWwgYXBwbGljYXRpb25zLiBHcmlkZGVkIFNJTE8gZGF0YSBpbiBhbm51YWwgTmV0Q0RGIGZvcm1hdCBhcmUgb24gQVdTLiBQb2ludCBkYXRhIGFyZSBhdmFpbGFibGUgZnJvbSB0aGUgW1NJTE8gd2Vic2l0ZV0oaHR0cHM6Ly93d3cubG9uZ3BhZGRvY2sucWxkLmdvdi5hdS9zaWxvLykuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vd3d3LmxvbmdwYWRkb2NrLnFsZC5nb3YuYXUvc2lsby9ncmlkZGVkLWRhdGFcbkNvbnRhY3Q6IGh0dHBzOi8vd3d3LmxvbmdwYWRkb2NrLnFsZC5nb3YuYXUvc2lsby9jb250YWN0LXVzXG5NYW5hZ2VkQnk6IFF1ZWVuc2xhbmQgR292ZXJubWVudFxuVXBkYXRlRnJlcXVlbmN5OiBEYWlseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX3NpbG9fb3Blbl9kYXRhL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvc2lsby8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19zaWxvX29wZW5fZGF0YS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19zaWxvX29wZW5fZGF0YSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfc2lsb19vcGVuX2RhdGEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfc29mdHdhcmVoZXJpdGFnZSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3NvZnR3YXJlaGVyaXRhZ2UuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfc29mdHdhcmVoZXJpdGFnZS8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIHNvZnR3YXJlaGVyaXRhZ2UgQnVja2V0OiBTb2Z0d2FyZSBIZXJpdGFnZSBHcmFwaCBEYXRhc2V0OiBTb2Z0d2FyZSBIZXJpdGFnZSBHcmFwaCBEYXRhc2V0IiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgc29mdHdhcmVoZXJpdGFnZSBidWNrZXQgYXQgaHR0cHM6Ly9zb2Z0d2FyZWhlcml0YWdlLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBTb2Z0d2FyZSBIZXJpdGFnZSBHcmFwaCBEYXRhc2V0XG5OYW1lMjogU29mdHdhcmUgSGVyaXRhZ2UgR3JhcGggRGF0YXNldFxuRGVzY3JpcHRpb246IFtTb2Z0d2FyZSBIZXJpdGFnZV0oaHR0cHM6Ly93d3cuc29mdHdhcmVoZXJpdGFnZS5vcmcvKSBpcyB0aGUgbGFyZ2VzdCBleGlzdGluZyBwdWJsaWMgYXJjaGl2ZSBvZiBzb2Z0d2FyZSBzb3VyY2UgY29kZSBhbmQgYWNjb21wYW55aW5nIGRldmVsb3BtZW50IGhpc3RvcnkuIFRoZSBTb2Z0d2FyZSBIZXJpdGFnZSBHcmFwaCBEYXRhc2V0IGlzIGEgZnVsbHkgZGVkdXBsaWNhdGVkIE1lcmtsZSBEQUcgcmVwcmVzZW50YXRpb24gb2YgdGhlIFNvZnR3YXJlIEhlcml0YWdlIGFyY2hpdmUuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vd2lraS5zb2Z0d2FyZWhlcml0YWdlLm9yZy93aWtpL0dyYXBoX0RhdGFzZXRfb25fQW1hem9uX0F0aGVuYVxuQ29udGFjdDogc3doLWRldmVsQGlucmlhLmZyXG5VcGRhdGVGcmVxdWVuY3k6IERhdGEgaXMgdXBkYXRlZCB5ZWFybHlcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19zb2Z0d2FyZWhlcml0YWdlL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvc29mdHdhcmUtaGVyaXRhZ2UvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfc29mdHdhcmVoZXJpdGFnZS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19zb2Z0d2FyZWhlcml0YWdlJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19zb2Z0d2FyZWhlcml0YWdlIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3NwYWNlbmV0X2RhdGFzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19zcGFjZW5ldF9kYXRhc2V0LmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX3NwYWNlbmV0X2RhdGFzZXQvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBzcGFjZW5ldC1kYXRhc2V0IEJ1Y2tldDogU3BhY2VOZXQ6IEltYWdlcnkgYW5kIG1ldGFkYXRhIGluIGEgUzMgYnVja2V0IiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgc3BhY2VuZXQtZGF0YXNldCBidWNrZXQgYXQgaHR0cHM6Ly9zcGFjZW5ldC1kYXRhc2V0LnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBTcGFjZU5ldFxuTmFtZTI6IEltYWdlcnkgYW5kIG1ldGFkYXRhIGluIGEgUzMgYnVja2V0XG5EZXNjcmlwdGlvbjogU3BhY2VOZXQsIGxhdW5jaGVkIGluIEF1Z3VzdCAyMDE2IGFzIGFuIG9wZW4gaW5ub3ZhdGlvbiBwcm9qZWN0IG9mZmVyaW5nIGEgcmVwb3NpdG9yeSBvZiBmcmVlbHkgYXZhaWxhYmxlIGltYWdlcnkgd2l0aCBjby1yZWdpc3RlcmVkIG1hcCBmZWF0dXJlcy4gQmVmb3JlIFNwYWNlTmV0LCBjb21wdXRlciB2aXNpb24gcmVzZWFyY2hlcnMgaGFkICAgbWluaW1hbCBvcHRpb25zIHRvIG9idGFpbiBmcmVlLCBwcmVjaXNpb24tbGFiZWxlZCwgYW5kIGhpZ2gtcmVzb2x1dGlvbiBzYXRlbGxpdGUgaW1hZ2VyeS4gVG9kYXksIFNwYWNlTmV0IGhvc3RzIGRhdGFzZXRzIGRldmVsb3BlZCBieSBpdHMgb3duIHRlYW0sIGFsb25nIHdpdGggZGF0YSBzZXRzIGZyb20gcHJvamVjdHMgbGlrZSBJQVJQQVx1MjAxOXMgRnVuY3Rpb25hbCBNYXAgb2YgdGhlIFdvcmxkIChmTW9XKS5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9zcGFjZW5ldGNoYWxsZW5nZS5naXRodWIuaW9cbkNvbnRhY3Q6IGh0dHBzOi8vZ2l0aHViLmNvbS9TcGFjZU5ldENoYWxsZW5nZS91dGlsaXRpZXMvaXNzdWVzXG5NYW5hZ2VkQnk6IFtTcGFjZU5ldF0oaHR0cHM6Ly9zcGFjZW5ldC5haS8pXG5VcGRhdGVGcmVxdWVuY3k6IE5ldyBpbWFnZXJ5IGFuZCBmZWF0dXJlcyBhcmUgYWRkZWQgcXVhcnRlcmx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfc3BhY2VuZXRfZGF0YXNldC9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL3NwYWNlbmV0LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX3NwYWNlbmV0X2RhdGFzZXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfc3BhY2VuZXRfZGF0YXNldCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfc3BhY2VuZXRfZGF0YXNldCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc191bmlkYXRhX25leHJhZF9sZXZlbDJfY2h1bmtzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfdW5pZGF0YV9uZXhyYWRfbGV2ZWwyX2NodW5rcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc191bmlkYXRhX25leHJhZF9sZXZlbDJfY2h1bmtzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgdW5pZGF0YS1uZXhyYWQtbGV2ZWwyLWNodW5rcyBCdWNrZXQ6IE5FWFJBRCBvbiBBV1M6IE5FWFJBRCBMZXZlbCBJSSByZWFsLXRpbWUgZGF0YSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIHVuaWRhdGEtbmV4cmFkLWxldmVsMi1jaHVua3MgYnVja2V0IGF0IGh0dHBzOi8vdW5pZGF0YS1uZXhyYWQtbGV2ZWwyLWNodW5rcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogTkVYUkFEIG9uIEFXU1xuTmFtZTI6IE5FWFJBRCBMZXZlbCBJSSByZWFsLXRpbWUgZGF0YVxuRGVzY3JpcHRpb246IFJlYWwtdGltZSBhbmQgYXJjaGl2YWwgZGF0YSBmcm9tIHRoZSBOZXh0IEdlbmVyYXRpb24gV2VhdGhlciBSYWRhciAoTkVYUkFEKSBuZXR3b3JrLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL25vYWEtbmV4cmFkL3JlYWRtZS5odG1sXG5Db250YWN0OiBub2FhLmJkcEBub2FhLmdvdlxuTWFuYWdlZEJ5OiBbTk9BQV0oaHR0cHM6Ly93d3cubm9hYS5nb3YvKVxuVXBkYXRlRnJlcXVlbmN5OiBOZXcgTGV2ZWwgSUkgZGF0YSBpcyBhZGRlZCBhcyBzb29uIGFzIGl0IGlzIGF2YWlsYWJsZS5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc191bmlkYXRhX25leHJhZF9sZXZlbDJfY2h1bmtzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvbm9hYS1uZXhyYWQvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfdW5pZGF0YV9uZXhyYWRfbGV2ZWwyX2NodW5rcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc191bmlkYXRhX25leHJhZF9sZXZlbDJfY2h1bmtzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc191bmlkYXRhX25leHJhZF9sZXZlbDJfY2h1bmtzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3VzZ3NfbGlkYXJfcHVibGljIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfdXNnc19saWRhcl9wdWJsaWMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfdXNnc19saWRhcl9wdWJsaWMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyB1c2dzLWxpZGFyLXB1YmxpYyBCdWNrZXQ6IFVTR1MgM0RFUCBMaURBUiBQb2ludCBDbG91ZHM6IFB1YmxpYyBhY2Nlc3MgRW50d2luZSBQb2ludCBUaWxlcyBvZiBtb3N0IHJlc291cmNlcyBmcm9tIHRoZSBgYGFybjphd3M6czM6Ojp1c2dzLWxpZGFyYGAgYnVja2V0LiIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIHVzZ3MtbGlkYXItcHVibGljIGJ1Y2tldCBhdCBodHRwczovL3VzZ3MtbGlkYXItcHVibGljLnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBVU0dTIDNERVAgTGlEQVIgUG9pbnQgQ2xvdWRzXG5OYW1lMjogUHVibGljIGFjY2VzcyBFbnR3aW5lIFBvaW50IFRpbGVzIG9mIG1vc3QgcmVzb3VyY2VzIGZyb20gdGhlIGBgYXJuOmF3czpzMzo6OnVzZ3MtbGlkYXJgYCBidWNrZXQuXG5EZXNjcmlwdGlvbjogVGhlIGdvYWwgb2YgdGhlIFtVU0dTIDNEIEVsZXZhdGlvbiBQcm9ncmFtIF0oaHR0cHM6Ly93d3cudXNncy5nb3YvY29yZS1zY2llbmNlLXN5c3RlbXMvbmdwLzNkZXApICgzREVQKSBpcyB0byBjb2xsZWN0IGVsZXZhdGlvbiBkYXRhIGluIHRoZSBmb3JtIG9mIGxpZ2h0IGRldGVjdGlvbiBhbmQgcmFuZ2luZyAoTGlEQVIpIGRhdGEgb3ZlciB0aGUgY29udGVybWlub3VzIFVuaXRlZCBTdGF0ZXMsIEhhd2FpaSwgYW5kIHRoZSBVLlMuIHRlcnJpdG9yaWVzLCB3aXRoIGRhdGEgYWNxdWlyZWQgb3ZlciBhbiA4LXllYXIgcGVyaW9kLiBUaGlzIGRhdGFzZXQgcHJvdmlkZXMgdHdvIHJlYWxpemF0aW9ucyBvZiB0aGUgM0RFUCBwb2ludCBjbG91ZCBkYXRhLiBUaGUgZmlyc3QgcmVzb3VyY2UgaXMgYSBwdWJsaWMgYWNjZXNzIG9yZ2FuaXphdGlvbiBwcm92aWRlZCBpbiBbRW50d2luZSBQb2ludCBUaWxlc10oaHR0cHM6Ly9lbnR3aW5lLmlvL2VudHdpbmUtcG9pbnQtdGlsZS5odG1sKSBmb3JtYXQsIHdoaWNoIGEgbG9zc2xlc3MsIGZ1bGwtZGVuc2l0eSwgc3RyZWFtYWJsZSBvY3RyZWUgYmFzZWQgb24gW0xBU3ppcF0oaHR0cHM6Ly9sYXN6aXAub3JnKSAoTEFaKSBlbmNvZGluZy4gVGhlIHNlY29uZCByZXNvdXJjZSBpcyBhIFtSZXF1ZXN0ZXIgUGF5c10oaHR0cHM6Ly9kb2NzLmF3cy5hbWF6b24uY29tL0FtYXpvblMzL2xhdGVzdC9kZXYvUmVxdWVzdGVyUGF5c0J1Y2tldHMuaHRtbCkgb2YgdGhlIHNhbWUgZGF0YSBpbiBMQVogKENvbXByZXNzZWQgTEFTKSBmb3JtYXQuIFJlc291cmNlIG5hbWVzIGluIGJvdGggYnVja2V0cyBjb3JyZXNwb25kIHRvIHRoZSBVU0dTIHByb2plY3QgbmFtZXMuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZ2l0aHViLmNvbS9ob2J1L3VzZ3MtbGlkYXIvXG5Db250YWN0OiBodHRwczovL2dpdGh1Yi5jb20vaG9idS91c2dzLWxpZGFyXG5NYW5hZ2VkQnk6IFtIb2J1LCBJbmMuXShodHRwczovL2hvYnUuY28pXG5VcGRhdGVGcmVxdWVuY3k6IFBlcmlvZGljYWxseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX3VzZ3NfbGlkYXJfcHVibGljL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvdXNncy1saWRhci8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc191c2dzX2xpZGFyX3B1YmxpYy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc191c2dzX2xpZGFyX3B1YmxpYyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfdXNnc19saWRhcl9wdWJsaWMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfd2ViX2xhbmd1YWdlX21vZGVscyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3dlYl9sYW5ndWFnZV9tb2RlbHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfd2ViX2xhbmd1YWdlX21vZGVscy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIHdlYi1sYW5ndWFnZS1tb2RlbHMgQnVja2V0OiBQcm92aXNpb24gb2YgV2ViLVNjYWxlIFBhcmFsbGVsIENvcnBvcmEgZm9yIE9mZmljaWFsIEV1cm9wZWFuIExhbmd1YWdlcyAoUGFyYUNyYXdsKTogUGFyYWxsZWwgQ29ycG9yYSB0by9mcm9tIEVuZ2xpc2ggZm9yIGFsbCBvZmZpY2lhbCBFVSBsYW5ndWFnZXMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyB3ZWItbGFuZ3VhZ2UtbW9kZWxzIGJ1Y2tldCBhdCBodHRwczovL3dlYi1sYW5ndWFnZS1tb2RlbHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IFByb3Zpc2lvbiBvZiBXZWItU2NhbGUgUGFyYWxsZWwgQ29ycG9yYSBmb3IgT2ZmaWNpYWwgRXVyb3BlYW4gTGFuZ3VhZ2VzIChQYXJhQ3Jhd2wpXG5OYW1lMjogUGFyYWxsZWwgQ29ycG9yYSB0by9mcm9tIEVuZ2xpc2ggZm9yIGFsbCBvZmZpY2lhbCBFVSBsYW5ndWFnZXNcbkRlc2NyaXB0aW9uOiBQYXJhQ3Jhd2wgaXMgYSBzZXQgb2YgbGFyZ2UgcGFyYWxsZWwgY29ycG9yYSB0by9mcm9tIEVuZ2xpc2ggZm9yIGFsbCBvZmZpY2lhbCBFVSBsYW5ndWFnZXMgYnkgYSBicm9hZCB3ZWIgY3Jhd2xpbmcgZWZmb3J0LiBTdGF0ZS1vZi10aGUtYXJ0IG1ldGhvZHMgYXJlIGFwcGxpZWQgZm9yIHRoZSBlbnRpcmUgcHJvY2Vzc2luZyBjaGFpbiBmcm9tIGlkZW50aWZ5aW5nIHdlYiBzaXRlcyB3aXRoIHRyYW5zbGF0ZWQgdGV4dCBhbGwgdGhlIHdheSB0byBjb2xsZWN0aW5nLCBjbGVhbmluZyBhbmQgZGVsaXZlcmluZyBwYXJhbGxlbCBjb3Jwb3JhIHRoYXQgYXJlIHJlYWR5IGFzIHRyYWluaW5nIGRhdGEgZm9yIENFRi5BVCBhbmQgdHJhbnNsYXRpb24gbWVtb3JpZXMgZm9yIERHIFRyYW5zbGF0aW9uLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL3BhcmFjcmF3bC5ldS9yZWxlYXNlcy5odG1sXG5Db250YWN0OiBGb3IgcXVlc3Rpb25zIHJlZ2FyZGluZyB0aGUgZGF0YXNldHMgY29udGFjdCBLZW5uZXRoIEhlYWZpZWxkLCBlbWFpbCBraGVhZmllbEBpbmYuZWQuYWMudWsuIEZvciByZXBvcnRpbmcgYW55IGlzc3VlcyBhYm91dCBiaXRleHRvciBwaXBlbGluZSB2aXNpdCBodHRwczovL2dpdGh1Yi5jb20vYml0ZXh0b3IvYml0ZXh0b3IvaXNzdWVzLlxuTWFuYWdlZEJ5OiBbUGFyYUNyYXdsXShodHRwczovL3BhcmFjcmF3bC5ldSlcblVwZGF0ZUZyZXF1ZW5jeTogTmV3IGRhdGEgaXMgYWRkZWQgYWNjb3JkaW5nIHRvIFBhcmFDcmF3bCByZWxlYXNlIHNjaGVkdWxlLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX3dlYl9sYW5ndWFnZV9tb2RlbHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9wYXJhY3Jhd2wvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfd2ViX2xhbmd1YWdlX21vZGVscy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc193ZWJfbGFuZ3VhZ2VfbW9kZWxzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc193ZWJfbGFuZ3VhZ2VfbW9kZWxzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3hpcGhfbWVkaWEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc194aXBoX21lZGlhLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX3hpcGhfbWVkaWEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyB4aXBoLW1lZGlhIEJ1Y2tldDogWGlwaC5PcmcgVGVzdCBNZWRpYTogVmlkZW8gYW5kIGltYWdlcnkgZGF0YSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIHhpcGgtbWVkaWEgYnVja2V0IGF0IGh0dHBzOi8veGlwaC1tZWRpYS5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogWGlwaC5PcmcgVGVzdCBNZWRpYVxuTmFtZTI6IFZpZGVvIGFuZCBpbWFnZXJ5IGRhdGFcbkRlc2NyaXB0aW9uOiBVbmNvbXByZXNzZWQgdmlkZW8gdXNlZCBmb3IgdmlkZW8gY29tcHJlc3Npb24gYW5kIHZpZGVvIHByb2Nlc3NpbmcgcmVzZWFyY2guXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vbWVkaWEueGlwaC5vcmcvYXdzLmh0bWxcbkNvbnRhY3Q6IFRob21hcyBEYWVkZSB0ZGFlZGVAeGlwaC5vcmdcblVwZGF0ZUZyZXF1ZW5jeTogTmV3IHZpZGVvcyBhcmUgYWRkZWQgd2hlbiBjb250cmlidXRvcnMgc3VibWl0IHRoZW0uXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfeGlwaF9tZWRpYS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL3hpcGgtbWVkaWEvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfeGlwaF9tZWRpYS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc194aXBoX21lZGlhJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc194aXBoX21lZGlhIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3ljYl9iZW5jaG1hcmtzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfeWNiX2JlbmNobWFya3MuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfeWNiX2JlbmNobWFya3MvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyB5Y2ItYmVuY2htYXJrcyBCdWNrZXQ6IFlhbGUtQ01VLUJlcmtlbGV5IChZQ0IpIE9iamVjdCBhbmQgTW9kZWwgU2V0OiBQcm9qZWN0IGRhdGEgZmlsZXMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyB5Y2ItYmVuY2htYXJrcyBidWNrZXQgYXQgaHR0cHM6Ly95Y2ItYmVuY2htYXJrcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogWWFsZS1DTVUtQmVya2VsZXkgKFlDQikgT2JqZWN0IGFuZCBNb2RlbCBTZXRcbk5hbWUyOiBQcm9qZWN0IGRhdGEgZmlsZXNcbkRlc2NyaXB0aW9uOiBUaGlzIHByb2plY3QgcHJpbWFyaWx5IGFpbXMgdG8gZmFjaWxpdGF0ZSBwZXJmb3JtYW5jZSBiZW5jaG1hcmtpbmcgaW4gcm9ib3RpY3MgcmVzZWFyY2guIFRoZSBkYXRhc2V0IHByb3ZpZGVzIG1lc2ggbW9kZWxzLCBSR0IsIFJHQi1EIGFuZCBwb2ludCBjbG91ZCBpbWFnZXMgb2Ygb3ZlciA4MCBvYmplY3RzLiBUaGUgcGh5c2ljYWwgb2JqZWN0cyBhcmUgYWxzbyBhdmFpbGFibGUgdmlhIHRoZSBbWUNCIGJlbmNobWFya2luZyBwcm9qZWN0XShodHRwOi8vd3d3LnljYmJlbmNobWFya3MuY29tLykuIFRoZSBkYXRhIGFyZSBjb2xsZWN0ZWQgYnkgdHdvIHN0YXRlIG9mIHRoZSBhcnQgc3lzdGVtczogVUMgQmVya2xleSdzIHNjYW5uaW5nIHJpZyBhbmQgdGhlIEdvb2dsZSBzY2FubmVyLiBUaGUgVUMgQmVya2xleSdzIHNjYW5uaW5nIHJpZyBkYXRhIHByb3ZpZGUgbWVzaGVzIGdlbmVyYXRlZCB3aXRoIFBvaXNzb24gcmVjb25zdHJ1Y3Rpb24sIG1lc2hlcyBnZW5lcmF0ZWQgd2l0aCB2b2x1bWV0cmljIHJhbmdlIGltYWdlIGludGVncmF0aW9uLCB0ZXh0dXJlZCB2ZXJzaW9ucyBvZiBib3RoIG1lc2hlcywgS2luYm9keSBmaWxlcyBmb3IgdXNpbmcgdGhlIG1lc2hlcyB3aXRoIE9wZW5SQVZFLCA2MDAgSGlnaC1yZXNvbHV0aW9uIFJHQiBpbWFnZXMsIDYwMCBSR0ItRCBpbWFnZXMsIGFuZCA2MDAgcG9pbnQgY2xvdWQgaW1hZ2VzIGZvciBlYWNoIG9iamVjdC4gVGhlIEdvb2dsZSBzY2FubmVyIGRhdGEgcHJvdmlkZXMgMyBtZXNoZXMgd2l0aCBkaWZmZXJlbnQgcmVzb2x1dGlvbnMgKDE2aywgNjRrLCBhbmQgNTEyayBwb2x5Z29ucyksIHRleHR1cmVkIHZlcnNpb25zIG9mIGVhY2ggbWVzaCwgS2luYm9keSBmaWxlcyBmb3IgdXNpbmcgdGhlIG1lc2hlcyB3aXRoIE9wZW5SQVZFLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwOi8vd3d3LnljYmJlbmNobWFya3MuY29tL1xuQ29udGFjdDogYmNhbGxpQHdwaS5lZHVcblVwZGF0ZUZyZXF1ZW5jeTogWWVhcmx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfeWNiX2JlbmNobWFya3MvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy95Y2ItYmVuY2htYXJrcy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc195Y2JfYmVuY2htYXJrcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc195Y2JfYmVuY2htYXJrcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfeWNiX2JlbmNobWFya3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2NyaXBwc0dsaWRlcnMuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NjcmlwcHNHbGlkZXJzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NjcmlwcHNHbGlkZXJzLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkdsaWRlcnMsIFNjcmlwcHMgSW5zdGl0dXRpb24gb2YgT2NlYW5vZ3JhcGh5LCAyMDE0LXByZXNlbnQiLCAiU3ByYXkgZ2xpZGVyIGRhdGEgZnJvbSBTY3JpcHBzIEluc3RpdHV0aW9uIG9mIE9jZWFub2dyYXBoeSwgSW5zdHJ1bWVudCBEZXZlbG9wbWVudCBHcm91cC4gR2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgdXNlIGNoYW5nZXMgaW4gYnVveWFuY3kgdG8gbW92ZSB2ZXJ0aWNhbGx5IGFuZCBob3Jpem9udGFsbHkgdGhyb3VnaCB0aGUgd2F0ZXIgY29sdW1uIGluIGEgc2F3LXRvb3RoIHBhdHRlcm4uIFRoZXkgYXJlIGRlcGxveWVkIGZvciBkYXlzIHRvIHNldmVyYWwgbW9udGhzIGFuZCBnYXRoZXIgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsLCBjaGVtaWNhbCBhbmQgYmlvbG9naWNhbCBwcm9jZXNzZXMgb2YgdGhlIHdvcmxkJ3Mgb2NlYW5zLlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVByb2ZpbGVcblZBUklBQkxFUzpcbnRyYWplY3RvcnkgKFRyYWplY3RvcnkgTmFtZSlcbmluc3RpdHV0aW9uXG5wbGF0Zm9ybV9pZFxucGxhdGZvcm1fdHlwZVxud21vX2lkXG5jdGRfbWFrZV9tb2RlbCAoQ1REIE1ha2UgYW5kIE1vZGVsKVxuc2VnbWVudF9pZFxudGltZV91diAoRGVwdGgtYXZlcmFnZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdF91diAoRGVwdGgtYXZlcmFnZWQgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG5sb25fdXYgKERlcHRoLWF2ZXJhZ2VkIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxudSAoRGVwdGgtYXZlcmFnZWQgRWFzdHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBtIHMtMSlcbnYgKERlcHRoLWF2ZXJhZ2VkIE5vcnRod2FyZCBTZWEgV2F0ZXIgVmVsb2NpdHksIG0gcy0xKVxudXZfcWMgKHV2IFF1YWxpdHkgRmxhZylcbnByb2ZpbGVfaWRcbnByb2ZpbGVfcWMgKFByb2ZpbGUgdGltZSwgbGF0aXR1ZGUsIGxvbmdpdHVkZSBRdWFsaXR5IEZsYWcpXG50aW1lIChQcm9maWxlIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoUHJvZmlsZSBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoUHJvZmlsZSBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmRlcHRoIChtKVxuZF9xYyAoZGVwdGggcXVhbGl0eSBmbGFnKVxucHJlc3N1cmUgKFNlYSBXYXRlciBQcmVzc3VyZSwgZGJhcilcbnBfcWMgKHByZXNzdXJlIHF1YWxpdHkgZmxhZylcbnRlbXBlcmF0dXJlIChTZWEgV2F0ZXIgVGVtcGVyYXR1cmUsIENlbHNpdXMpXG4uLi4gKDExIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3NjcmlwcHNHbGlkZXJzX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9zY3JpcHBzR2xpZGVyc19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zY3JpcHBzR2xpZGVycy9pbmRleC5qc29uIiwgImh0dHBzOi8vc3ByYXkudWNzZC5lZHUiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvc2NyaXBwc0dsaWRlcnMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNjcmlwcHNHbGlkZXJzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlNjcmlwcHMgSW5zdGl0dXRpb24gb2YgT2NlYW5vZ3JhcGh5IiwgInNjcmlwcHNHbGlkZXJzIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEd0c3BwQmVzdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkR3RzcHBCZXN0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEd0c3BwQmVzdC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJHbG9iYWwgVGVtcGVyYXR1cmUgYW5kIFNhbGluaXR5IFByb2ZpbGUgUHJvZ3JhbW1lIChHVFNQUCkgRGF0YSwgMTk4NS1wcmVzZW50IiwgIlRoZSBHbG9iYWwgVGVtcGVyYXR1cmUtU2FsaW5pdHkgUHJvZmlsZSBQcm9ncmFtbWUgKEdUU1BQKSBkZXZlbG9wcyBhbmQgbWFpbnRhaW5zIGEgZ2xvYmFsIG9jZWFuIHRlbXBlcmF0dXJlIGFuZCBzYWxpbml0eSByZXNvdXJjZSB3aXRoIGRhdGEgdGhhdCBhcmUgYm90aCB1cC10by1kYXRlIGFuZCBvZiB0aGUgaGlnaGVzdCBxdWFsaXR5LiBJdCBpcyBhIGpvaW50IFdvcmxkIE1ldGVvcm9sb2dpY2FsIE9yZ2FuaXphdGlvbiAoV01PKSBhbmQgSW50ZXJnb3Zlcm5tZW50YWwgT2NlYW5vZ3JhcGhpYyBDb21taXNzaW9uIChJT0MpIHByb2dyYW0uICBJdCBpbmNsdWRlcyBkYXRhIGZyb20gWEJUcywgQ1REcywgbW9vcmVkIGFuZCBkcmlmdGluZyBidW95cywgYW5kIFBBTEFDRSBmbG9hdHMuIEZvciBpbmZvcm1hdGlvbiBhYm91dCBvcmdhbml6YXRpb25zIGNvbnRyaWJ1dGluZyBkYXRhIHRvIEdUU1BQLCBzZWUgaHR0cDovL2dvc2ljLm9yZy9nb29zL0dUU1BQLWRhdGEtZmxvdy5odG0gLiAgVGhlIFUuUy4gTmF0aW9uYWwgT2NlYW5vZ3JhcGhpYyBEYXRhIENlbnRlciAoTk9EQykgbWFpbnRhaW5zIHRoZSBHVFNQUCBDb250aW51b3VzbHkgTWFuYWdlZCBEYXRhIEJhc2UgYW5kIHJlbGVhc2VzIG5ldyAnYmVzdC1jb3B5JyBkYXRhIG9uY2UgcGVyIG1vbnRoLlxuXG5XQVJOSU5HOiBUaGlzIGRhdGFzZXQgaGFzIGEgKmxvdCogb2YgZGF0YS4gIElmIHlvdSByZXF1ZXN0IHRvbyBtdWNoIGRhdGEsIHlvdXIgcmVxdWVzdCB3aWxsIGZhaWwuXG4qIElmIHlvdSBkb24ndCBzcGVjaWZ5IGEgbG9uZ2l0dWRlIGFuZCBsYXRpdHVkZSBib3VuZGluZyBib3gsIGRvbid0IHJlcXVlc3QgbW9yZSB0aGFuIGEgbW9udGgncyBkYXRhIGF0IGEgdGltZS5cbiogSWYgeW91IGRvIHNwZWNpZnkgYSBsb25naXR1ZGUgYW5kIGxhdGl0dWRlIGJvdW5kaW5nIGJveCwgeW91IGNhbiByZXF1ZXN0IGRhdGEgZm9yIGEgcHJvcG9ydGlvbmFsbHkgbG9uZ2VyIHRpbWUgcGVyaW9kLlxuUmVxdWVzdGluZyBkYXRhIGZvciBhIHNwZWNpZmljIHN0YXRpb25faWQgbWF5IGJlIHNsb3csIGJ1dCBpdCB3b3Jrcy5cblxuKioqIFRoaXMgRVJEREFQIGRhdGFzZXQgaGFzIGRhdGEgZm9yIHRoZSBlbnRpcmUgd29ybGQgZm9yIGFsbCBhdmFpbGFibGUgdGltZXMgKGN1cnJlbnRseSwgdXAgdG8gYW5kIGluY2x1ZGluZyB0aGUgSnVuZSAyMDIwIGRhdGEpIGJ1dCBpcyBhIHN1YnNldCBvZiB0aGUgb3JpZ2luYWwgTk9EQyAnYmVzdC1jb3B5JyBkYXRhLiAgSXQgb25seSBpbmNsdWRlcyBkYXRhIHdoZXJlIHRoZSBxdWFsaXR5IGZsYWdzIGluZGljYXRlIHRoZSBkYXRhIGlzIDE9Q09SUkVDVCwgMj1QUk9CQUJMWSBHT09ELCBvciA1PU1PRElGSUVELiBJdCBkb2VzIG5vdCBpbmNsdWRlIHNvbWUgb2YgdGhlIG1ldGFkYXRhLCBhbnkgb2YgdGhlIGhpc3RvcnkgZGF0YSwgb3IgYW55IG9mIHRoZSBxdWFsaXR5IGZsYWcgZGF0YSBvZiB0aGUgb3JpZ2luYWwgZGF0YXNldC4gWW91IGNhbiBhbHdheXMgZ2V0IHRoZSBjb21wbGV0ZSwgdXAtdG8tZGF0ZSBkYXRhc2V0IChhbmQgYWRkaXRpb25hbCwgbmVhci1yZWFsLXRpbWUgZGF0YSkgZnJvbSB0aGUgc291cmNlOiBodHRwczovL3d3dy5ub2RjLm5vYWEuZ292L0dUU1BQLyAuICBTcGVjaWZpYyBkaWZmZXJlbmNlcyBhcmU6XG4qIFByb2ZpbGVzIHdpdGggYSBwb3NpdGlvbl9xdWFsaXR5X2ZsYWcgb3IgYSB0aW1lX3F1YWxpdHlfZmxhZyBvdGhlciB0aGFuIDF8Mnw1IHdlcmUgcmVtb3ZlZC5cbiogUm93cyB3aXRoIGEgZGVwdGggKHopIHZhbHVlIGxlc3MgdGhhbiAtMC40IG9yIGdyZWF0ZXIgdGhhbiAxMDAwMCBvciBhIHpfdmFyaWFibGVfcXVhbGl0eV9mbGFnIG90aGVyIHRoYW4gMXwyfDUgd2VyZSByZW1vdmVkLlxuKiBUZW1wZXJhdHVyZSB2YWx1ZXMgbGVzcyB0aGFuIC00IG9yIGdyZWF0ZXIgdGhhbiA0MCBvciB3aXRoIGEgdGVtcGVyYXR1cmVfcXVhbGl0eV9mbGFnIG90aGVyIHRoYW4gMXwyfDUgd2VyZSBzZXQgdG8gTmFOLlxuKiBTYWxpbml0eSB2YWx1ZXMgbGVzcyB0aGFuIDAgb3IgZ3JlYXRlciB0aGFuIDQxIG9yIHdpdGggYSBzYWxpbml0eV9xdWFsaXR5X2ZsYWcgb3RoZXIgdGhhbiAxfDJ8NSB3ZXJlIHNldCB0byBOYU4uXG4qIFRpbWUgdmFsdWVzIHdlcmUgY29udmVydGVkIGZyb20gXCJkYXlzIHNpbmNlIDE5MDAtMDEtMDEgMDA6MDA6MDBcIiB0byBcInNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFwiLlxuXG5TZWUgdGhlIFF1YWxpdHkgRmxhZyBkZWZpbml0aW9ucyBvbiBwYWdlIDUgYW5kIFwiVGFibGUgMi4xOiBHbG9iYWwgSW1wb3NzaWJsZSBQYXJhbWV0ZXIgVmFsdWVzXCIgb24gcGFnZSA2MSBvZlxuaHR0cHM6Ly93d3cubm9kYy5ub2FhLmdvdi9HVFNQUC9kb2N1bWVudC9xY21hbnMvR1RTUFBfUlRfUUNfTWFudWFsXzIwMDkwOTE2LnBkZiAuXG5UaGUgUXVhbGl0eSBGbGFnIGRlZmluaXRpb25zIGFyZSBhbHNvIGF0XG5odHRwczovL3d3dy5ub2RjLm5vYWEuZ292L0dUU1BQL2RvY3VtZW50L3FjbWFucy9xY2ZsYWdzLmh0bSAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUcmFqZWN0b3J5UHJvZmlsZVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeSAoVHJhamVjdG9yeSBJRClcbi4uLiAoMTEgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkR3RzcHBCZXN0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRHdHNwcEJlc3RfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkR3RzcHBCZXN0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cubm9kYy5ub2FhLmdvdi9HVFNQUC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkR3RzcHBCZXN0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRHdHNwcEJlc3Qmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOT0RDIiwgImVyZEd0c3BwQmVzdCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRHbG9iZWNNb2MxLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRHbG9iZWNNb2MxIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEdsb2JlY01vYzEuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiR0xPQkVDIE5FUCBNT0NORVNTIFBsYW5rdG9uIChNT0MxKSBEYXRhLCAyMDAwLTIwMDIiLCAiR0xPQkVDIChHTE9CYWwgT2NlYW4gRUNvc3lzdGVtcyBEeW5hbWljcykgTkVQIChOb3J0aGVhc3QgUGFjaWZpYykgQ2FsaWZvcm5pYSBDdXJyZW50IFByb2dyYW1cbk1PQ05FU1MgUGxhbmt0b24gKE1PQzEpIERhdGFcblRoZSBNT0NORVNTIGlzIGJhc2VkIG9uIHRoZSBUdWNrZXIgVHJhd2wgcHJpbmNpcGxlIChUdWNrZXIsIDE5NTEpLiBUaGUgTU9DTkVTUy0xIGhhcyBuaW5lIHJlY3Rhbmd1bGFyIG5ldHMgKDFtIHggMS40IG0pIHdoaWNoIGFyZSBvcGVuZWQgYW5kIGNsb3NlZCBzZXF1ZW50aWFsbHkgYnkgY29tbWFuZHMgdGhyb3VnaCBjb25kdWN0aW5nIGNhYmxlIGZyb20gdGhlIHN1cmZhY2UgKFdpZWJlIGV0IGFsLiwgMTk3NikuIEluIE1PQ05FU1Mgc3lzdGVtcywgXCJ0aGUgdW5kZXJ3YXRlciB1bml0IHNlbmRzIGEgZGF0YSBmcmFtZSwgY29tcHJpc2VkIG9mIHRlbXBlcmF0dXJlLCBkZXB0aCwgY29uZHVjdGl2aXR5LCBuZXQtZnJhbWUgYW5nbGUsIGZsb3cgY291bnQsIHRpbWUsIG51bWJlciBvZiBvcGVuIG5ldCwgYW5kIG5ldCBvcGVuaW5nL2Nsb3NpbmcsIHRvIHRoZSBkZWNrIHVuaXQgaW4gYSBjb21wcmVzc2VkIGhleGFkZWNpbWFsIGZvcm1hdCBldmVyeSAyIHNlY29uZHMgYW5kIGZyb20gdGhlIGRlY2sgdW5pdCB0byBhIG1pY3JvY29tcHV0ZXIgZXZlcnkgNCBzZWNvbmRzLi4uIFRlbXBlcmF0dXJlICh0byBhcHByb3hpbWF0ZWx5IDAuMDEgZGVnIEMpIGFuZCBjb25kdWN0aXZpdHkgYXJlIG1lYXN1cmVkIHdpdGggU0VBQklSRCBzZW5zb3JzLiBOb3JtYWxseSwgYSBtb2RpZmllZCBULlMuSy4tZmxvd21ldGVyIGlzIHVzZWQuLi4gQm90aCB0aGUgdGVtcGVyYXR1cmUgYW5kIGNvbmR1Y3Rpdml0eSBzZW5zb3JzIGFuZCB0aGUgZmxvd21ldGVyIGFyZSBtb3VudGVkIG9uIHRvcCBvZiB0aGUgZnJhbWUgc28gdGhhdCB0aGV5IGZhY2UgaG9yaXpvbnRhbGx5IHdoZW4gdGhlIGZyYW1lIGlzIGF0IGEgdG93aW5nIGFuZ2xlIG9mIDQ1ZGVnLi4uIENhbGN1bGF0aW9ucyBvZiBzYWxpbml0eSAodG8gYXBwcm94aW1hdGVseSAwLjAxIG8vb28gUyksIHBvdGVudGlhbCB0ZW1wZXJhdHVyZSAodGhldGEpLCBwb3RlbnRpYWwgZGVuc2l0eSAoc2lnbWEpLCB0aGUgb2JsaXF1ZSBhbmQgdmVydGljYWwgdmVsb2NpdGllcyBvZiB0aGUgbmV0LCBhbmQgdGhlIGFwcHJveGltYXRlIHZvbHVtZSBmaWx0ZXJlZCBieSBlYWNoIG5ldCBhcmUgbWFkZSBhZnRlciBlYWNoIHN0cmluZyBvZiBkYXRhIGhhcyBiZWVuIHJlY2VpdmVkIGJ5IHRoZSBjb21wdXRlci5cIiAoV2llYmUgZXQgYWwuLCAxOTg1KSBJbiBhZGRpdGlvbiwgZGVwZW5kaW5nIG9uIHRoZSBwYXJ0aWN1bGFyIGNvbmZpZ3VyYXRpb24gb2YgdGhlIE1PQ05FU1MtMSwgZGF0YSBtYXkgaGF2ZSBiZWVuIGNvbGxlY3RlZCBmcm9tIG90aGVyIHNlbnNvcnMgYXR0YWNoZWQgdG8gdGhlIGZyYW1lIDogKFRyYW5zbWlzc29tZXRlciwgRmx1b3JvbWV0ZXIsIERvd253ZWxsaW5nIGxpZ2h0IHNlbnNvciwgYW5kIHRoZSBPeHlnZW4gc2Vuc29yKS4gQSBTZWFCaXJkIHVuZGVyd2F0ZXIgcHVtcCB3YXMgYWxzbyBpbmNsdWRlZCBpbiB0aGUgc2Vuc29yIHN1aXQgZS5cbkFmdGVyIHJldHJpZXZhbCB0byBkZWNrLCB0aGUgY29udGVudHMgb2YgdGhlIG5ldHMgd2VyZSByaW5zZWQgaW50byB0aGUgY29kZW5kcyBhIG5kIHRyYW5zZmVycmVkIHRvIHN0b3JhZ2UgYm90dGxlcywgYW5kIGZpeGVkIGFuZCBwcmVzZXJ2ZWQgd2l0aCBmb3JtYWxpbi4gSW4gdGhlIHNob3JlIGxhYm9yYXRvcnksIHRoZSBjb250ZW50cyBvZiB0aGUgYm90dGxlcyB3ZXJlIHN1YnNhbXBsZWQgYW5kIGNvdW50cyBhbmQgYmlvbWFzcyBlc3RpbWF0ZXMgbWFkZSBmb3Igc2VsZWN0ZWQgdGF4YSAoc2VlIHRoZSBQcm9jX1Byb3RvY29sIGluZm8gYmVsb3cpLiBUaGlzIGRhdGEgb2JqZWN0IHJlcG9ydHMgb25seSB0aGUgY291bnQgaW5mb3JtYXRpb24uXG5cbkZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHA6Ly9jaXMud2hvaS5lZHUvc2NpZW5jZS9iY29kbW8vZGF0YXNldC5jZm0/aWQ9MTAxODImZmxhZz12aWV3XG5vclxuaHR0cDovL2dsb2JlYy53aG9pLmVkdS9qZy9pbmZvL2dsb2JlYy9uZXAvY2NzL01PQzElN0JkaXI9Z2xvYmVjLndob2kuZWR1L2pnL2Rpci9nbG9iZWMvbmVwL2Njcy8sZGF0YT1nbG9iZWMuY29hcy5vcmVnb25zdGF0ZS5lZHUvamcvc2Vydi9NT0MxLmh0bWwwJTdEXG5cbkFsbCBpbnF1aXJpZXMgYWJvdXQgdGhpcyBkYXRhIHNob3VsZCBiZSBkaXJlY3RlZCB0byBEci4gV2lsbGlhbSBQZXRlcnNvbiAoYmlsbC5wZXRlcnNvbkBub2FhLmdvdikuXG5JbnF1aXJpZXMgYWJvdXQgaG93IHRvIGFjY2VzcyB0aGlzIGRhdGEgc2hvdWxkIGJlIGRpcmVjdGVkIHRvIERyLiBIYWwgQmF0Y2hlbGRlciAoaGJhdGNoZWxkZXJAY29hcy5vcmVnb25zdGF0ZS5lZHUpLlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG4uLi4gKDIyIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZEdsb2JlY01vYzFfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZEdsb2JlY01vYzFfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkR2xvYmVjTW9jMS9pbmRleC5qc29uIiwgImh0dHBzOi8vZW4ud2lraXBlZGlhLm9yZy93aWtpL0dsb2JhbF9PY2Vhbl9FY29zeXN0ZW1fRHluYW1pY3MiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkR2xvYmVjTW9jMS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkR2xvYmVjTW9jMSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJHTE9CRUMiLCAiZXJkR2xvYmVjTW9jMSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRHbG9iZWNCaXJkcy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkR2xvYmVjQmlyZHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkR2xvYmVjQmlyZHMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiR0xPQkVDIE5FUCBOb3J0aGVybiBDYWxpZm9ybmlhIEN1cnJlbnQgQmlyZCBEYXRhIE5IMDAwNSwgMjAwMC0yMDAwLCAwMDA3IiwgIkdMT0JFQyAoR0xPQmFsIE9jZWFuIEVDb3N5c3RlbXMgRHluYW1pY3MpIE5FUCAoTm9ydGhlYXN0IFBhY2lmaWMpXG5Ob3J0aGVybiBDYWxpZm9ybmlhIEN1cnJlbnQgQmlyZCBEYXRhIGZyb20gUi9WIE5ldyBIb3Jpem9uIGNydWlzZXMgTkgwMDA1IGFuZCAwMDA3LlxuXG5BcyBhIHBhcnQgb2YgdGhlIEdMT0JFQy1Ob3J0aGVhc3QgUGFjaWZpYyBwcm9qZWN0LCB3ZSBpbnZlc3RpZ2F0ZWQgdmFyaWF0aW9uIGluIHRoZSBhYnVuZGFuY2Ugb2YgbWFyaW5lIGJpcmRzIGluIHRoZSBjb250ZXh0IG9mIGJpb2xvZ2ljYWwgYW5kIHBoeXNpY2FsIGhhYml0YXQgY29uZGl0aW9ucyBpbiB0aGUgbm9ydGhlcm4gcG9ydGlvbiBvZiB0aGUgQ2FsaWZvcm5pYSBDdXJyZW50IFN5c3RlbSAoQ0NTKSBkdXJpbmcgY3J1aXNlcyBkdXJpbmcgdGhlIHVwd2VsbGluZyBzZWFzb24gMjAwMC4gQ29udGludW91cyBzdXJ2ZXlzIG9mIHNlYWJpcmRzIHdlcmUgY29uZHVjdGVkIHNpbXVsdGFuZW91c2x5IGluIEp1bmUgKG9uc2V0IG9mIHVwd2VsbGluZykgYW5kIEF1Z3VzdCAobWF0dXJlIHBoYXNlIG9mIHVwd2VsbGluZykuXG5cblNlYWJpcmQgc3VydmV5cyB3ZXJlIGNvbmR1Y3RlZCBjb250aW51b3VzbHkgZHVyaW5nIGRheWxpZ2h0LCB1c2luZyBhIDMwMC1tLXdpZGUgdHJhbnNlY3Qgc3RyaXAuIFdpdGhpbiB0aGF0IHN0cmlwLCBiaXJkcyB3ZXJlIGNvdW50ZWQgdGhhdCBvY2N1cnJlZCB3aXRoaW4gdGhlIDkwIGRlZ3JlZSBxdWFkcmFudCBvZmYgdGhlIHNoaXAncyBib3cgdGhhdCBvZmZlcmVkIHRoZSBiZXN0IG9ic2VydmF0aW9uIGNvbmRpdGlvbnMuXG5cbk9ic2VydmVkIGNvdW50cyBvZiBzZWFiaXJkcyByZWNvcmRlZCBhcyBmbHlpbmcgaW4gYSBzdGVhZHkgZGlyZWN0aW9uIHdlcmUgYWRqdXN0ZWQgZm9yIHRoZSBlZmZlY3Qgb2YgZmxpZ2h0IHNwZWVkIGFuZCBkaXJlY3Rpb24gcmVsYXRpdmUgdG8gdGhhdCBvZiB0aGUgc2hpcCAoU3BlYXIgZXQgYWwuLCAxOTkyOyBTcGVhciBhbmQgQWlubGV5LCAxOTk3YikuIFRoZSBlZmZlY3Qgb2Ygc3VjaCBmbHV4IGlzIHRoZSBtb3N0IHNlcmlvdXMgYmlhcyBlbmNvdW50ZXJlZCBkdXJpbmcgc2VhYmlyZCBzdXJ2ZXlzIGF0IHNlYSAoU3BlYXIgZXQgYWwuLCAyMDA1KS4gS25vd24gYXMgcmFuZG9tIGRpcmVjdGlvbmFsIG1vdmVtZW50IChhcyBvcHBvc2VkIHRvIG5vbnJhbmRvbSBkaXJlY3Rpb25hbCBtb3ZlbWVudCwgd2hpY2ggb2NjdXJzIHdoZW4gYmlyZHMgYXJlIGF0dHJhY3RlZCBvciByZXBlbGxlZCBmcm9tIHRoZSBzdXJ2ZXkgdmVzc2VsKSwgdGhpcyBwcm9ibGVtIHVzdWFsbHkgcmVzdWx0cyBpbiBkZW5zaXR5IG92ZXJlc3RpbWF0aW9uIGJlY2F1c2UgbW9zdCBzcGVjaWVzIGZseSBmYXN0ZXIgdGhhbiBzdXJ2ZXkgdmVzc2VsczsgZGVuc2l0aWVzIG9mIGJpcmRzIHRoYXQgZmx5IHNsb3dlciBvciBhdCBhIHNpbWlsYXIgc3BlZWQgYXMgdGhlIHN1cnZleSB2ZXNzZWwgKGUuZy4sIHN0b3JtLXBldHJlbHMpLCBvciBhcmUgZmx5aW5nIGluIHRoZSBzYW1lIGRpcmVjdGlvbiwgYXJlIHVzdWFsbHkgdW5kZXJlc3RpbWF0ZWQgKFNwZWFyIGV0IGFsLiwgMTk5MilcblxuKGV4dHJhY3RlZCBmcm9tOiBEYXZpZCBHLiBBaW5sZXksIExhcnJ5IEIuIFNwZWFyLCBDeW50aGlhIFQuIFR5bmFuLCBKb2huIEEuIEJhcnRoLCBTdGVwaGVuIEQuIFBpZXJjZSwgUi4gR2xlbm4gRm9yZCBhbmQgVGltb3RoeSBKLiBDb3dsZXMsIDIwMDUuIFBoeXNpY2FsIGFuZCBiaW9sb2dpY2FsIHZhcmlhYmxlcyBhZmZlY3Rpbmcgc2VhYmlyZCBkaXN0cmlidXRpb25zIGR1cmluZyB0aGUgdXB3ZWxsaW5nIHNlYXNvbiBvZiB0aGUgbm9ydGhlcm4gQ2FsaWZvcm5pYSBDdXJyZW50LiBEZWVwIFNlYSBSZXNlYXJjaCBQYXJ0IElJOiBUb3BpY2FsIFN0dWRpZXMgaW4gT2NlYW5vZ3JhcGh5LCBWb2x1bWUgNTIsIElzc3VlcyAxLTIsIEphbnVhcnkgMjAwNSwgUGFnZXMgMTIzLTE0MylcblxuRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cDovL2Npcy53aG9pLmVkdS9zY2llbmNlL2Jjb2Rtby9kYXRhc2V0LmNmbT9pZD0xMDA1MyZmbGFnPXZpZXdcbm9yXG5odHRwOi8vZ2xvYmVjLndob2kuZWR1L2pnL2luZm8vZ2xvYmVjL25lcC9jY3MvYmlyZHMlN0JkaXI9Z2xvYmVjLndob2kuZWR1L2pnL2Rpci9nbG9iZWMvbmVwL2Njcy8sZGF0YT1nbG9iZWMud2hvaS5lZHUvamcvc2Vydi9nbG9iZWMvbmVwL2Njcy9iaXJkcy5odG1sMCU3RFxuXG5Db250YWN0OlxuQ3ludGhpYSBULiBUeW5hbiwgY3R5bmFuQHdob2kuZWR1LCBXb29kcyBIb2xlIE9jZWFub2dyYXBoaWMgSW5zdGl0dXRpb25cbkRhdmlkIEcuIEFpbmxleSwgZGFpbmxleUBwZW5ndWluc2NpZW5jZS5jb20sIEguVC4gSGFydmV5ICYgQXNzb2NpYXRlc1xuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhbnNfbm8gKFRyYW5zZWN0IE51bWJlcilcbi4uLiAoMTIgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkR2xvYmVjQmlyZHNfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZEdsb2JlY0JpcmRzX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZEdsb2JlY0JpcmRzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvR2xvYmFsX09jZWFuX0Vjb3N5c3RlbV9EeW5hbWljcyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRHbG9iZWNCaXJkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkR2xvYmVjQmlyZHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiR0xPQkVDIiwgImVyZEdsb2JlY0JpcmRzIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEdsb2JlY0NldGFjZWFucy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkR2xvYmVjQ2V0YWNlYW5zIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEdsb2JlY0NldGFjZWFucy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJHTE9CRUMgTkVQIE5vcnRoZXJuIENhbGlmb3JuaWEgQ3VycmVudCBDZXRhY2VhbiBTdXJ2ZXkgRGF0YSwgTkgwMDA1LCAyMDAwLTIwMDAsIDAwMDciLCAiR0xPQkVDIChHTE9CYWwgT2NlYW4gRUNvc3lzdGVtcyBEeW5hbWljcykgTkVQIChOb3J0aGVhc3QgUGFjaWZpYylcbk5vcnRoZXJuIENhbGlmb3JuaWEgQ3VycmVudCBDZXRhY2VhbiBTdXJ2ZXkgRGF0YSBmcm9tIFIvViBOZXcgSG9yaXpvbiBjcnVpc2VzIE5IMDAwNSBhbmQgMDAwNy5cblxuTGluZS10cmFuc2VjdCBzdXJ2ZXlzIG9mIGNldGFjZWFucyB3ZXJlIGNvbmR1Y3RlZCBkdXJpbmcgdHdvIGNydWlzZXMgb2YgdGhlIEdMT0JFQyBOb3J0aGVhc3QgUGFjaWZpYyBOb3J0aGVybiBDYWxpZm9ybmlhIEN1cnJlbnQgKE5DQykgcHJvZ3JhbSBpbiAyMDAwOiBNYXkgMjkgLUp1bmUgMTMgYW5kIEp1bHkgMjcgLSBBdWd1c3QgMTIuICAgU3VydmV5cyB3ZXJlIGNvbmR1Y3RlZCBhY3Jvc3MgdGhlIHNoZWxmIGFuZCBzbG9wZSBvZmYgT3JlZ29uIGFuZCBub3J0aGVybiBDYWxpZm9ybmlhICg0MS45IC0gNDQuNjVOKSBmcm9tIHRoZSBjb2FzdCB0byB+MTI1LjVXLiAgIFN1cnZleXMgd2VyZSBjb25kdWN0ZWQgaW4gcGFzc2luZyBtb2RlIHdoaWxlIHRoZSBSL1YgTmV3IEhvcml6b24gd2FzIGluIHRyYW5zaXQgYmV0d2VlbiBzdGF0aW9ucyBmb3IgaHlkcm9ncmFwaGljIGFuZCB6b29wbGFua3RvbiBzYW1wbGluZy4gICBPYnNlcnZhdGlvbnMgd2VyZSBjb25kdWN0ZWQgZnJvbSB0aGUgZmx5aW5nIGJyaWRnZSBkdXJpbmcgZGF5bGlnaHQgKH4wNjAwIHRvIDIwMzApIHdoZW5ldmVyIHN1ZmZpY2llbnQgdmlzaWJpbGl0eSAoaS5lLiwgPiAyIG5tKSBhbmQgd2VhdGhlciAoaS5lLiwgPCBCZWF1Zm9ydCA2KSBhbGxvd2VkLiAgIFR3byBvYnNlcnZlcnMgc2ltdWx0YW5lb3VzbHkgc3VydmV5ZWQgdG8gdGhlIGhvcml6b24gd2l0aCAyNSB4IDE1MCBiaW5vY3VsYXJzLCBlcXVpcHBlZCB3aXRoIGNvbXBhc3MgYW5kIHJldGljbGUuICAgRWFjaCBvYnNlcnZlciBzdXJ2ZXllZCBhIDEwMCBkZWdyZWUgYXJjIGZyb20gMTAgZGVncmVlcyBvZmYgdGhlIGJvdyAob3Bwb3NpdGUgc2lkZSkgdG8gOTAgZGVncmVlcyBvbiB0aGVpciBzaWRlIG9mIHRoZSBzaGlwLiAgIEEgdGhpcmQgb2JzZXJ2ZXIgZm9jdXNlZCBvbiB0aGUgdHJhY2stbGluZSBieSBleWUsIGFpZGVkIHdpdGggNyB4IDUwIGhhbmQtaGVsZCBiaW5vY3VsYXJzLiAgIFNpZ2h0aW5ncyB3ZXJlIGVudGVyZWQgaW1tZWRpYXRlbHkgb24gYSBsYXB0b3AgY29tcHV0ZXIgY29ubmVjdGVkIHRvIHRoZSBzaGlwJ3MgR1BTIHN5c3RlbS4gICBQb3NpdGlvbnMgb2YgYWxsIHNpZ2h0aW5ncyB3ZXJlIGNvcnJlY3RlZCB0byByZWZsZWN0IHRoZSBhY3R1YWwgbG9jYXRpb24gb2YgdGhlIGNldGFjZWFucywgcmF0aGVyIHRoYW4gdGhlIHNoaXAncyBwb3NpdGlvbi4gICBUaGUgaGVpZ2h0IGZyb20gdGhlIHN1cmZhY2Ugb2YgdGhlIHdhdGVyIHRvIHRoZSBleWVzIG9mIG9ic2VydmVycyBvbiB0aGUgMjUgeCAxNTAgYmlub2N1bGFycyB3YXMgMTAuODcgbS5cblxuRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZTpcbmh0dHA6Ly9jaXMud2hvaS5lZHUvc2NpZW5jZS9iY29kbW8vZGF0YXNldC5jZm0/aWQ9MTAwNTUmZmxhZz12aWV3XG5vclxuaHR0cDovL2dsb2JlYy53aG9pLmVkdS9qZy9pbmZvL2dsb2JlYy9uZXAvY2NzL2NldGFjZWFucyU3QmRpcj1nbG9iZWMud2hvaS5lZHUvamcvZGlyL2dsb2JlYy9uZXAvY2NzLyxkYXRhPWdsb2JlYy53aG9pLmVkdS9qZy9zZXJ2L2dsb2JlYy9uZXAvY2NzL2NldGFjZWFucy5odG1sMCU3RFxuXG5Db250YWN0IFBJczpcbkN5bnRoaWEgVC4gVHluYW4sIGN0eW5hbkB3aG9pLmVkdSwgV29vZHMgSG9sZSBPY2Vhbm9ncmFwaGljIEluc3RpdHV0aW9uXG5EYXZpZCBHLiBBaW5sZXksIGRhaW5sZXlAcGVuZ3VpbnNjaWVuY2UuY29tLCBILlQuIEhhcnZleSAmIEFzc29jaWF0ZXNcblxuY2RtX2RhdGFfdHlwZSA9IFRyYWplY3RvcnlcblZBUklBQkxFUzpcbmNydWlzZV9pZFxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDcgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkR2xvYmVjQ2V0YWNlYW5zX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRHbG9iZWNDZXRhY2VhbnNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkR2xvYmVjQ2V0YWNlYW5zL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvR2xvYmFsX09jZWFuX0Vjb3N5c3RlbV9EeW5hbWljcyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRHbG9iZWNDZXRhY2VhbnMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZEdsb2JlY0NldGFjZWFucyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJHTE9CRUMiLCAiZXJkR2xvYmVjQ2V0YWNlYW5zIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEdsb2JlY0JvdHRsZS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkR2xvYmVjQm90dGxlIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEdsb2JlY0JvdHRsZS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJHTE9CRUMgTkVQIFJvc2V0dGUgQm90dGxlIERhdGEgKDIwMDIpIiwgIkdMT0JFQyAoR0xPQmFsIE9jZWFuIEVDb3N5c3RlbXMgRHluYW1pY3MpIE5FUCAoTm9ydGhlYXN0IFBhY2lmaWMpXG5Sb3NldHRlIEJvdHRsZSBEYXRhIGZyb20gTmV3IEhvcml6b24gQ3J1aXNlIChOSDAyMDc6IDEtMTkgQXVndXN0IDIwMDIpLlxuTm90ZXM6XG5QaHlzaWNhbCBkYXRhIHByb2Nlc3NlZCBieSBKYW5lIEZsZWlzY2hiZWluIChPU1UpLlxuQ2hsb3JvcGh5bGwgcmVhZGluZ3MgZG9uZSBieSBMZWFoIEZlaW5iZXJnIChPU1UpLlxuTnV0cmllbnQgYW5hbHlzaXMgZG9uZSBieSBCdXJrZSBIYWxlcyAoT1NVKS5cblNhbDAwIC0gc2FsaW5pdHkgY2FsY3VsYXRlZCBmcm9tIHByaW1hcnkgc2Vuc29ycyAoQzAsVDApLlxuU2FsMTEgLSBzYWxpbml0eSBjYWxjdWxhdGVkIGZyb20gc2Vjb25kYXJ5IHNlbnNvcnMgKEMxLFQxKS5cbnNlY29uZGFyeSBzZW5zb3IgcGFpciB3YXMgdXNlZCBpbiBmaW5hbCBwcm9jZXNzaW5nIG9mIENURCBkYXRhIGZvclxubW9zdCBzdGF0aW9ucyBiZWNhdXNlIHRoZSBwcmltYXJ5IGhhZCBtb3JlIG5vaXNlIGFuZCBzcGlrZXMuIFRoZVxucHJpbWFyeSBwYWlyIHdlcmUgdXNlZCBmb3IgY2FzdCAjOSwgMjQsIDQ4LCAxMTEgYW5kIDE1MCBkdWUgdG9cbm11bHRpcGxlIHNwaWtlcyBvciBvZmZzZXRzIGluIHRoZSBzZWNvbmRhcnkgcGFpci5cbk51dHJpZW50IHNhbXBsZXMgd2VyZSBjb2xsZWN0ZWQgZnJvbSBtb3N0IGJvdHRsZXM7IGFsbCBudXRyaWVudCBkYXRhXG5kZXZlbG9wZWQgZnJvbSBzYW1wbGVzIGZyb3plbiBkdXJpbmcgdGhlIGNydWlzZSBhbmQgYW5hbHl6ZWQgYXNob3JlO1xuZGF0YSBkZXZlbG9wZWQgYnkgQnVya2UgSGFsZXMgKE9TVSkuXG5PcGVyYXRpb24gRGV0ZWN0aW9uIExpbWl0cyBmb3IgTnV0cmllbnQgQ29uY2VudHJhdGlvbnNcbk51dHJpZW50ICBSYW5nZSAgICAgICAgIE1lYW4gICAgVmFyaWFibGUgICAgICAgICBVbml0c1xuUE80ICAgICAgIDAuMDAzLTAuMDA0ICAgMC4wMDQgICBQaG9zcGhhdGUgICAgICAgIG1pY3JvbW9sZXMgcGVyIGxpdGVyXG5OK04gICAgICAgMC4wNC0wLjA4ICAgICAwLjA2ICAgIE5pdHJhdGUrTml0cml0ZSAgbWljcm9tb2xlcyBwZXIgbGl0ZXJcblNpICAgICAgICAwLjEzLTAuMjQgICAgIDAuMTYgICAgU2lsaWNhdGUgICAgICAgICBtaWNyb21vbGVzIHBlciBsaXRlclxuTk8yICAgICAgIDAuMDAzLTAuMDA0ICAgMC4wMDMgICBOaXRyaXRlICAgICAgICAgIG1pY3JvbW9sZXMgcGVyIGxpdGVyXG5EYXRlcyBhbmQgVGltZXMgYXJlIFVUQy5cblxuRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZSBodHRwczovL3d3dy5iY28tZG1vLm9yZy9kYXRhc2V0LzI0NTJcblxuSW5xdWlyaWVzIGFib3V0IGhvdyB0byBhY2Nlc3MgdGhpcyBkYXRhIHNob3VsZCBiZSBkaXJlY3RlZCB0b1xuRHIuIEhhbCBCYXRjaGVsZGVyIChoYmF0Y2hlbGRlckBjb2FzLm9yZWdvbnN0YXRlLmVkdSkuXG5cbmNkbV9kYXRhX3R5cGUgPSBUcmFqZWN0b3J5UHJvZmlsZVxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG4uLi4gKDI0IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZEdsb2JlY0JvdHRsZV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkR2xvYmVjQm90dGxlX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZEdsb2JlY0JvdHRsZS9pbmRleC5qc29uIiwgImh0dHBzOi8vZW4ud2lraXBlZGlhLm9yZy93aWtpL0dsb2JhbF9PY2Vhbl9FY29zeXN0ZW1fRHluYW1pY3MiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkR2xvYmVjQm90dGxlLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRHbG9iZWNCb3R0bGUmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiR0xPQkVDIiwgImVyZEdsb2JlY0JvdHRsZSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRHbG9iZWNWcHQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEdsb2JlY1ZwdCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRHbG9iZWNWcHQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiR0xPQkVDIE5FUCBWZXJ0aWNhbCBQbGFua3RvbiBUb3cgKFZQVCkgRGF0YSwgMTk5Ny0yMDAxIiwgIkdMT0JFQyAoR0xPQmFsIE9jZWFuIEVDb3N5c3RlbXMgRHluYW1pY3MpIE5FUCAoTm9ydGhlYXN0IFBhY2lmaWMpXG5DYWxpZm9ybmlhIEN1cnJlbnQgUHJvZ3JhbVxuVmVydGljYWwgUGxhbmt0b24gVG93IChWUFQpIERhdGFcblxuRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cDovL2Npcy53aG9pLmVkdS9zY2llbmNlL2Jjb2Rtby9kYXRhc2V0LmNmbT9pZD0xMDE4MSZmbGFnPXZpZXdcbm9yXG5odHRwOi8vZ2xvYmVjLndob2kuZWR1L2pnL2luZm8vZ2xvYmVjL25lcC9jY3MvdnB0JTdCZGlyPWdsb2JlYy53aG9pLmVkdS9qZy9kaXIvZ2xvYmVjL25lcC9jY3MvLGRhdGE9Z2xvYmVjLmNvYXMub3JlZ29uc3RhdGUuZWR1L2pnL3NlcnYvdnB0Lmh0bWwwJTdEXG5cbkFsbCBpbnF1aXJpZXMgYWJvdXQgdGhpcyBkYXRhIHNob3VsZCBiZSBkaXJlY3RlZCB0byBEci4gV2lsbGlhbSBQZXRlcnNvbiAoYmlsbC5wZXRlcnNvbkBub2FhLmdvdikuXG5JbnF1aXJpZXMgYWJvdXQgaG93IHRvIGFjY2VzcyB0aGlzIGRhdGEgc2hvdWxkIGJlIGRpcmVjdGVkIHRvIERyLiBIYWwgQmF0Y2hlbGRlciAoaGJhdGNoZWxkZXJAY29hcy5vcmVnb25zdGF0ZS5lZHUpLlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmNhc3Rfbm8gKENhc3QgTnVtYmVyIFdpdGhpbiB0aGUgQ3J1aXNlKVxuc3RhdGlvbl9pZFxuYWJ1bmRfbTMgKEFidW5kYW5jZSwgY291bnQgbS0zKVxuY29tbWVudHNcbmNvdW50ZXJfaWRcbmRfbl9mbGFnIChEYXkvTmlnaHQgRmxhZylcbmdlYXJfYXJlYSAoTW91dGggQXJlYSBvZiBOZXQsIG0yKVxuZ2Vhcl9tZXNoIChOZXQncyBNZXNoIFNpemUsIG1tKVxuZ2Vhcl90eXBlXG5nZW51c19zcGVjaWVzXG5saWZlX3N0YWdlXG5sb2NhbF9jb2RlXG4uLi4gKDggbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkR2xvYmVjVnB0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRHbG9iZWNWcHRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkR2xvYmVjVnB0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvR2xvYmFsX09jZWFuX0Vjb3N5c3RlbV9EeW5hbWljcyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRHbG9iZWNWcHQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZEdsb2JlY1ZwdCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJHTE9CRUMiLCAiZXJkR2xvYmVjVnB0Il0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRHb2RhZVNmY29icyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRHb2RhZVNmY29icy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJHT0RBRSwgU0ZDT0JTIC0gU3VyZmFjZSBUZW1wZXJhdHVyZSBPYnNlcnZhdGlvbnMsIDE5OTgtcHJlc2VudCIsICJHT0RBRSwgU0ZDT0JTIC0gU3VyZmFjZSBUZW1wZXJhdHVyZSBPYnNlcnZhdGlvbnM6IFNoaXAsIGZpeGVkL2RyaWZ0aW5nIGJ1b3ksIGFuZCBDTUFOIGluLXNpdHUgc3VyZmFjZSB0ZW1wZXJhdHVyZS4gIEdsb2JhbCBUZWxlY29tbXVuaWNhdGlvbiBTeXN0ZW0gKEdUUykgRGF0YS5cbiAgICAgICAgXG5UaGUgR2xvYmFsIE9jZWFuIERhdGEgQXNzaW1pbGF0aW9uIEV4cGVyaW1lbnQgKEdPREFFKSBpcyBhIHByYWN0aWNhbCBkZW1vbnN0cmF0aW9uIG9mIG5lYXItcmVhbC10aW1lLCBnbG9iYWwgb2NlYW4gZGF0YSBhc3NpbWlsYXRpb24gdGhhdCBwcm92aWRlcywgcmVndWxhciwgY29tcGxldGUgZGVzY3JpcHRpb25zIG9mIHRoZSB0ZW1wZXJhdHVyZSwgc2FsaW5pdHkgYW5kIHZlbG9jaXR5IHN0cnVjdHVyZXMgb2YgdGhlIG9jZWFuIGluIHN1cHBvcnQgb2Ygb3BlcmF0aW9uYWwgb2NlYW5vZ3JhcGh5LCBzZWFzb25hbC10by1kZWNhZGFsIGNsaW1hdGUgZm9yZWNhc3RzIGFuZCBhbmFseXNlcywgYW5kIG9jZWFub2dyYXBoaWMgcmVzZWFyY2guIFRoZSBHT0RBRSBNb250ZXJleSBTZXJ2ZXIsIHNwb25zb3JlZCBtYWlubHkgYnkgdGhlIE9mZmljZSBvZiBOYXZhbCBSZXNlYXJjaCAoT05SKSwgaXMgaW50ZW5kZWQgdG8gYmUgYSBwcmluY2lwYWwgbm9kZSBpbiB0aGUgR09EQUUgYXJjaGl0ZWN0dXJlLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG50aW1lIChPYnNlcnZhdGlvbiBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxub2JfY2xtIChHREVNIENsaW1hdG9sb2dpY2FsIFNTVCwgZGVncmVlX0MpXG5vYl9jc2dtIChHREVNIFNTVCBDbGltYXRvbG9naWNhbCBWYXJpYWJpbGl0eSwgZGVncmVlX0MpXG5vYl9nbGIgKEdsb2JhbCBBbmFseXNpcyBTU1QgRXN0aW1hdGUsIGRlZ3JlZV9DKVxub2JfZ3NnbSAoR2xvYmFsIEFuYWx5c2lzIFNTVCBWYXJpYWJpbGl0eSBFc3RpbWF0ZSwgZGVncmVlX0MpXG5vYl9xYyAoUHJvYmFiaWxpdHkgb2YgZ3Jvc3MgZXJyb3IgaW4gU1NUKVxub2JfcmNwdCAoU1NUIG9ic2VydmF0aW9uIHJlY2VpcHQgdGltZSBhdCBGTk1PQywgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbm9iX3JnbiAoUmVnaW9uYWwgQW5hbHlzaXMgU1NUIEVzdGltYXRlLCBkZWdyZWVfQylcbm9iX3JzZ20gKFJlZ2lvbmFsIEFuYWx5c2lzIFNTVCBWYXJpYWJpbGl0eSBFc3RpbWF0ZSwgZGVncmVlX0MpXG5vYl9zaWduIChTU1Qgb2JzZXJ2YXRpb24gY2FsbCBzaWduKVxub2Jfc3N0IChTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5vYl90eXAgKFNTVCBvYnNlcmF0aW9uIGRhdGEgdHlwZSlcbm9iX3dtIChTU1Qgd2F0ZXIgbWFzcyBpbmRpY2F0b3IpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkR29kYWVTZmNvYnNfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZEdvZGFlU2Zjb2JzX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZEdvZGFlU2Zjb2JzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly91c2dvZGFlLm9yZy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkR29kYWVTZmNvYnMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZEdvZGFlU2Zjb2JzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZOTU9DIEdPREFFIiwgImVyZEdvZGFlU2Zjb2JzIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2N3Yl93YXRlcl9xdWFsaXR5LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9jd2Jfd2F0ZXJfcXVhbGl0eSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9jd2Jfd2F0ZXJfcXVhbGl0eS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJIYXdhaWkgQ2xlYW4gV2F0ZXIgQnJhbmNoIChDV0IpIEJlYWNoIFdhdGVyIFF1YWxpdHkgRGF0YSIsICJFeHBvc3VyZSB0byBzZXdhZ2UgY29udGFtaW5hdGVkIHJlY3JlYXRpb25hbCB3YXRlcnMgbWF5IGNhdXNlIGdhc3Ryb2ludGVzdGluYWwgaWxsbmVzc2VzIGluIHN3aW1tZXJzLiBUaGUgU3RhdGUgb2YgSGF3YWlpIERlcGFydG1lbnQgb2YgSGVhbHRoIChISURPSCkgQ2xlYW4gV2F0ZXIgQnJhbmNoIChDV0IpIG1vbml0b3JzIHRoZSB3YXRlcnMgb2YgSGF3YWlpJ3MgYmVhY2hlcyBmb3IgY29uY2VudHJhdGlvbnMgb2YgRW50ZXJvY29jY3VzLCB3aGljaCBhY3RzIGFzIGFuIGluZGljYXRvciBvZiBwYXRob2dlbnMuIFRoZSBDV0IgYWxzbyB1c2VzIENsb3N0cmlkaXVtIHBlcmZyaW5nZW5zIGFzIGEgc2Vjb25kYXJ5IHRyYWNlciBvZiBzZXdhZ2UgY29udGFtaW5hdGlvbi4gUmVzdWx0cyBvZiB0aGlzIG1vbml0b3JpbmcgYXJlIGV2YWx1YXRlZCB1c2luZyBhIGRlY2lzaW9uIHJ1bGUgdG8gZGV0ZXJtaW5lIHdoZXRoZXIgYSBiZWFjaCBpcyBzYWZlIChcIkNvbXBsaWFudFwiKSBvciBub3Qgc2FmZSAob24gXCJBbGVydFwiKSBmb3Igc3dpbW1pbmcgYW5kIG90aGVyIHdhdGVyIGNvbnRhY3QgYWN0aXZpdGllcy4gSWYgYSBiZWFjaCBpcyBmb3VuZCB0byBiZSBvbiBcIkFsZXJ0XCIgZHVlIHRvIGVsZXZhdGVkIGluZGljYXRvciBiYWN0ZXJpYSBsZXZlbHMsIHRoZSBDV0IgaXNzdWVzIHB1YmxpYyB3YXJuaW5ncyBhbmQgYWxlcnRzIGFuZCBkZXRlcm1pbmVzIHdoZXRoZXIgcmVzYW1wbGluZyBvZiB0aGUgYXJlYSBpcyBuZWNlc3NhcnkuXG5cblVuZGVyIHRoZSBVLlMuIEJFQUNIIEFjdCwgdGhlIFN0YXRlIG9mIEhhd2FpaSByZWNlaXZlcyBhbiBhbm51YWwgZ3JhbnQgdG8gaW1wbGVtZW50IGl0cyBiZWFjaCBtb25pdG9yaW5nIHByb2dyYW0uIFRoaXMgcmVxdWlyZXMgdGhlIFN0YXRlIHRvIGNvbmR1Y3QgYSBtb25pdG9yaW5nIGFuZCBub3RpZmljYXRpb24gcHJvZ3JhbSB0aGF0IGlzIGNvbnNpc3RlbnQgd2l0aCBwZXJmb3JtYW5jZSBjcml0ZXJpYSBwdWJsaXNoZWQgYnkgdGhlIFUuUy4gRW52aXJvbm1lbnRhbCBQcm90ZWN0aW9uIEFnZW5jeSAoRVBBKSBpbiAyMDAyLiBJbiBNYXJjaCAyMDEwLCB0aGUgRVBBIGFwcHJvdmVkIGFtZW5kbWVudHMgdG8gdGhlIEhhd2FpaSBBZG1pbmlzdHJhdGl2ZSBSdWxlcyAoSEFSKSwgQ2hhcHRlciAxMS01NCwgV2F0ZXIgUXVhbGl0eSBTdGFuZGFyZHMgKENXQiBRQVByZ1AsIEhJRE9IIDIwMTEsIEFwcGVuZGl4IEQpLCB3aGljaCByZXZpc2VkIHRoZSBwcmV2aW91cyBTdGF0ZSBFbnRlcm9jb2NjdXMgY3JpdGVyaWEgb2YgYSBnZW9tZXRyaWMgbWVhbiAoR00pIG9mIDcgY29sb255LWZvcm1pbmcgdW5pdHMgKENGVSkgcGVyIDEwMCBtTCBhbmQgYSBzaW5nbGUgc2FtcGxlIG1heGltdW0gKFNTTSkgb2YgMTAwIENGVS8xMDAgbUwgdG8gbWVldCBjdXJyZW50IEVQQSBndWlkZWxpbmVzLiBUaGUgU3RhdGUgb2YgSGF3YWlpIG5vdyB1c2VzIHRoZSBFUEEgcmVjb21tZW5kZWQgRW50ZXJvY29jY3VzIEdNIGFuZCBTU00gZm9yIHJlY3JlYXRpb25hbCB3YXRlcnMgY29uc2lzdGVudCBpbiB0aGUgMTk4NiBBbWJpZW50IFdhdGVyIFF1YWxpdHkgQ3JpdGVyaWEgZm9yIEJhY3RlcmlhLiBUaGUgY3JpdGVyaW9uIGxpc3RzIHRoZSBHTSBhbmQgU1NNIGZvciBtYXJpbmUgd2F0ZXJzIGFzIDM1IENGVS8xMDAgbUwgYW5kIDEwNCBDRlUvMTAwIG1MLCByZXNwZWN0aXZlbHkuXG5cblRoZSBDV0IgdXRpbGl6ZXMgQ2xvc3RyaWRpdW0gcGVyZnJpbmdlbnMgYXMgYSBzZWNvbmRhcnkgdHJhY2VyIGluIGFkZGl0aW9uIHRvIHRoZSBFbnRlcm9jb2NjdXMgaW5kaWNhdG9yIHRvIGhlbHAgZGlzdGluZ3Vpc2ggYmV0d2VlbiBzZXdhZ2UgYW5kIG5vbi1zZXdhZ2Ugc291cmNlcyBvZiBlbGV2YXRlZCBFbnRlcm9jb2NjdXMgbGV2ZWxzIGluIG1hcmluZSBjb2FzdGFsIHdhdGVycy4gVGhlIHJlbGlhYmlsaXR5IG9mIEVudGVyb2NvY2N1cyBhcyBhbiBpbmRpY2F0b3Igb3JnYW5pc20gaW4gdHJvcGljYWwgZW52aXJvbm1lbnRzIGhhcyBiZWVuIHF1ZXN0aW9uZWQuIFRoaXMgaXNzdWUgd2FzIGZvcm1hbGx5IGRvY3VtZW50ZWQgaW4gdGhlIHJlcG9ydCwgVHJvcGljYWwgV2F0ZXIgUXVhbGl0eSBJbmRpY2F0b3IgV29ya3Nob3AgKEZ1amlva2EgYW5kIEJ5YXBwYW5haGFsbGksIDIwMDMpLlxuXG5PbmUgb2YgdGhlIGxpbWl0YXRpb25zIG9mIGFsbCBhdmFpbGFibGUgYW5kIEVQQS1hcHByb3ZlZCB0ZXN0IG1ldGhvZHMgaXMgdGhhdCB0aGUgc2FtcGxlIG11c3QgYmUgaW5jdWJhdGVkIGZvciBhYm91dCAyNCBob3Vycy4gQXMgYSByZXN1bHQsIHRoZSBwdWJsaWMgZmluZHMgb3V0IHRvZGF5IHdoZW4gdGhleSBzaG91bGRuJ3QgaGF2ZSBnb25lIGluIHRoZSB3YXRlciB5ZXN0ZXJkYXkuIEFzIGEgcmVzdWx0LCB3YXJuaW5nIHNpZ25zIG9uIHRoZSBiZWFjaCBtYXkgb3IgbWF5IG5vdCBiZSByZWZsZWN0aXZlIG9mIGFjdHVhbCB3YXRlciBxdWFsaXR5IGJlY2F1c2UgdGhleSBhcmUgYmFzZWQgb24gdGVzdHMgcGVyZm9ybWVkIG9uZSBvciBtb3JlIGRheXMgYWdvLlxuXG5CZWFjaCBNb25pdG9yaW5nIFF1YWxpdHkgQXNzdXJhbmNlIFByb2plY3QgUGxhbiAoQ1dCTU9OUUFQUDAwMik6XG5odHRwczovL3d3dy5wYWNpb29zLmhhd2FpaS5lZHUvd3AtY29udGVudC91cGxvYWRzLzIwMTYvMDgvQmVhY2hfTW9uaXRvcmluZ19RQVBQX0NXQk1PTlFBUFAwMDJfMTIwNTA3LnBkZlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG4uLi4gKDEyIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2N3Yl93YXRlcl9xdWFsaXR5X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9jd2Jfd2F0ZXJfcXVhbGl0eV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9jd2Jfd2F0ZXJfcXVhbGl0eS9pbmRleC5qc29uIiwgImh0dHA6Ly93d3cuYmVhY2hhcGVkaWEub3JnL1N0YXRlX29mX3RoZV9CZWFjaC9TdGF0ZV9SZXBvcnRzL0hJL1dhdGVyX1F1YWxpdHkiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvY3diX3dhdGVyX3F1YWxpdHkucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWN3Yl93YXRlcl9xdWFsaXR5JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlN0YXRlIG9mIEhhd2FpaSBDbGVhbiBXYXRlciBCcmFuY2ggKENXQikiLCAiY3diX3dhdGVyX3F1YWxpdHkiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvQVdTLUhJTUIuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0FXUy1ISU1CIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0FXUy1ISU1CLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkhJTUIgV2VhdGhlciBTdGF0aW9uOiBNb2t1IG8gTG9lIChDb2NvbnV0IElzbGFuZCksIE9haHUsIEhhd2FpaSIsICJUaGUgSGF3YWlpIEluc3RpdHV0ZSBvZiBNYXJpbmUgQmlvbG9neSAoSElNQikgYXV0b21hdGljIHdlYXRoZXIgc3RhdGlvbiAoQVdTKSByZWNvcmRzIGhvdXJseSBtZWFzdXJlbWVudHMgb2YgcHJlY2lwaXRhdGlvbiwgYWlyIHRlbXBlcmF0dXJlLCB3aW5kIHNwZWVkIGFuZCBkaXJlY3Rpb24sIGFuZCBpcnJhZGlhbmNlLiBTZW5zb3JzIGluY2x1ZGUgYW4gRXBwbGV5IDI5NS0zODUgbm0gdWx0cmF2aW9sZXQgKFVWKSByYWRpb21ldGVyLCBhIExpQ29yIDIwMFNaIFB5cmFub21ldGVyLCBhbmQgYSBMaUNvciBRdWFudGFtZXRlciAoNDAwLTcwMCBubSkuIFRoZSBzZW5zb3JzIGFyZSBsb2NhdGVkIG9uIHRoZSByb29mIG9mIEhJTUIncyBDb3JhbCBSZWVmIEVjb2xvZ3kgTGFib3JhdG9yeSAoUG9pbnQgTGFiKSBvbiBNb2t1IG8gTG9lIChDb2NvbnV0IElzbGFuZCkgaW4gS2FuZW9oZSBCYXkgb24gdGhlIHdpbmR3YXJkIChlYXN0ZXJuKSBjb2FzdCBvZiBPYWh1IGluIEhhd2FpaS4gQW4gYWNjb21wYW55aW5nIHNlYSB3YXRlciB0ZW1wZXJhdHVyZSBzZW5zb3IgaXMgbG9jYXRlZCBsZXNzIHRoYW4gMTAgbSBvZmZzaG9yZSBvZiB0aGUgd2VhdGhlciBzdGF0aW9uIGF0IGEgc2hhbGxvdyBkZXB0aCBvZiBhcHByb3hpbWF0ZWx5IDEgbS5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWx0aXR1ZGUgKERpc3RhbmNlIGFib3ZlIG1lYW4gc2VhIGxldmVsLCBtKVxuc3RhdGlvbl9uYW1lIChBV1MtSElNQjogSElNQiBXZWF0aGVyIFN0YXRpb246IE1va3UgbyBMb2UgKENvY29udXQgSXNsYW5kKSwgT2FodSwgSGF3YWlpKVxuYWlyX3RlbXBlcmF0dXJlIChhaXIgdGVtcGVyYXR1cmUgKHByb2Nlc3NlZCksIENlbHNpdXMpXG5zZWFfd2F0ZXJfdGVtcGVyYXR1cmUgKHdhdGVyIHRlbXBlcmF0dXJlIChwcm9jZXNzZWQpLCBDZWxzaXVzKVxud2luZF9zcGVlZCAod2luZCBzcGVlZCAocHJvY2Vzc2VkKSwgbS9zKVxuZ3VzdF9zcGVlZCAoZ3VzdCBzcGVlZCAocHJvY2Vzc2VkKSwgbS9zKVxud2luZF9mcm9tX2RpcmVjdGlvbiAod2luZCBkaXJlY3Rpb24gKHByb2Nlc3NlZCksIGRlZ3JlZXMpXG53aW5kX2Zyb21fZGlyZWN0aW9uX3N0ZCAoc3RhbmRhcmQgZGV2aWF0aW9uIG9mIHdpbmQgZGlyZWN0aW9uIChwcm9jZXNzZWQpLCBkZWdyZWVzKVxucmFpbmZhbGxfYW1vdW50ICh0b3RhbCByYWluZmFsbCAocHJvY2Vzc2VkKSwgbW0pXG5zaG9ydHdhdmVfcmFkaWF0aW9uIChkb3dud2VsbGluZyBzaG9ydHdhdmUgcmFkaWF0aW9uIChwcm9jZXNzZWQpLCBXL20yKVxudWx0cmF2aW9sZXRfcmFkaWF0aW9uICh1bHRyYXZpb2xldCByYWRpYXRpb24gKHByb2Nlc3NlZCksIFcvbTIpXG5waG90b3N5bnRoZXRpY19yYWRpYXRpb24gKHBob3Rvc3ludGhldGljYWxseSBhY3RpdmUgcmFkaWF0aW9uIChwcm9jZXNzZWQpLCB1bW9sIG0tMiBzLTEpXG5haXJfdGVtcGVyYXR1cmVfcmF3IChhaXIgdGVtcGVyYXR1cmUgKHJhdyksIENlbHNpdXMpXG5haXJfdGVtcGVyYXR1cmVfZG1fcWQgKGFpciB0ZW1wZXJhdHVyZSBkZWxheWVkLW1vZGUgcXVhbGl0eSBkZXNjcmlwdG9yLCAwKVxuYWlyX3RlbXBlcmF0dXJlX3FjX2FnZyAoUUFSVE9EIEFnZ3JlZ2F0ZS9Sb2xsdXAgVGVzdCAocHJvY2Vzc2VkKSwgMClcbmFpcl90ZW1wZXJhdHVyZV9xY19hdG4gKFFBUlRPRCBBdHRlbnVhdGVkIFNpZ25hbCBUZXN0IChwcm9jZXNzZWQpLCAwKVxuYWlyX3RlbXBlcmF0dXJlX3FjX2NsbSAoUUFSVE9EIENsaW1hdG9sb2d5IFRlc3QgKHByb2Nlc3NlZCksIDApXG5haXJfdGVtcGVyYXR1cmVfcWNfZmx0IChRQVJUT0QgRmxhdCBMaW5lIFRlc3QgKHByb2Nlc3NlZCksIDApXG4uLi4gKDEzOSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9BV1MtSElNQl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvQVdTLUhJTUJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vQVdTLUhJTUIvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wYWNpb29zLmhhd2FpaS5lZHUvd2VhdGhlci9vYnMtbW9rdW9sb2UvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL0FXUy1ISU1CLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1BV1MtSElNQiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJIYXdhaWkgSW5zdGl0dXRlIG9mIE1hcmluZSBCaW9sb2d5IChISU1CKSIsICJBV1MtSElNQiJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZWFydGhDdWJlTGlzaXJkSGlzdFRzaSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lYXJ0aEN1YmVMaXNpcmRIaXN0VHNpLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkhpc3RvcmljYWwgVG90YWwgU29sYXIgSXJyYWRpYW5jZSBSZWNvbnN0cnVjdGlvbiIsICJIaXN0b3JpY2FsIFRvdGFsIFNvbGFyIElycmFkaWFuY2UgKFRTSSkgUmVjb25zdHJ1Y3Rpb24gZWNvbnN0cnVjdGlvbiBmcm9tIFdhbmcsIExlYW4sIFNoZWVsZXkgKEFwSiwgMjAwNSkuICBPZmZzZXQgLTQuODE3OCBXL21eMiB0byBtYXRjaCBTT1JDRS9USU0gYWJzb2x1dGUgdmFsdWUgZnJvbSBLb3BwLCBMYXdyZW5jZSwgYW5kIFJvdHRtYW4gKFNvbGFyIFBoeXMsIDIwMDUpLiBFeHRlbmRlZCB1c2luZyBTT1JDRS9USU0gYW5udWFsIGF2ZXJhZ2VzIGZyb20gMjAwMyBvbndhcmQuIENvbXB1dGVkIGJ5IEdyZWcgS29wcC4gIEZyb20gdGhlIExBU1AgSW50ZXJhY3RpdmUgU29sYXIgSXJyYWRpYW5jZSBEYXRhIChMSVNJUkQpIENlbnRlclxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnllYXJcbmlycmFkaWFuY2UgKFRvdGFsIFNvbGFyIElycmFkaWFuY2UsIFcvbV4yKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lYXJ0aEN1YmVMaXNpcmRIaXN0VHNpL2luZGV4Lmpzb24iLCAiaHR0cDovL2xhc3AuY29sb3JhZG8uZWR1L2xpc2lyZC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZWFydGhDdWJlTGlzaXJkSGlzdFRzaS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZWFydGhDdWJlTGlzaXJkSGlzdFRzaSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJMSVNJUkQiLCAiZWFydGhDdWJlTGlzaXJkSGlzdFRzaSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9odWlfd2F0ZXJfcXVhbGl0eS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvaHVpX3dhdGVyX3F1YWxpdHkiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvaHVpX3dhdGVyX3F1YWxpdHkuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiSHVpIE8gS2EgV2FpIE9sYSBXYXRlciBRdWFsaXR5IERhdGEiLCAiVGhlIGdvYWwgb2YgdGhlIEh1aSBPIEthIFdhaSBPbGEgKEFzc29jaWF0aW9uIE9mIFRoZSBMaXZpbmcgV2F0ZXJzKSBjaXRpemVuLXNjaWVuY2UgYmFzZWQgd2F0ZXIgcXVhbGl0eSBwcm9ncmFtIGlzIHRvIGluY3JlYXNlIHRoZSBjYXBhY2l0eSBmb3IgbW9uaXRvcmluZyB3YXRlciBxdWFsaXR5IGluIE1hdWkgY29hc3RhbCB3YXRlcnMgYnkgZ2VuZXJhdGluZyByZWxpYWJsZSBkYXRhIHRvIGFzc2VzcyBsb25nLXRlcm0gd2F0ZXItcXVhbGl0eSBjb25kaXRpb25zIGFuZCBkZXRlY3QgdGVtcG9yYWwgdHJlbmRzLiBUaGVzZSBkYXRhIGF1Z21lbnQgdGhlIGRhdGEgcHJvZHVjZWQgYnkgdGhlIEhhd2FpaSBEZXBhcnRtZW50IG9mIEhlYWx0aCAoRE9IKSBDbGVhbiBXYXRlciBCcmFuY2ggKENXQikgYmVhY2ggbW9uaXRvcmluZyBwcm9ncmFtIG9uIE1hdWkuXG4gICAgXG5EYXRhIGFyZSBjb2xsZWN0ZWQgYW5kIGFuYWx5emVkIGV2ZXJ5IHR3byBvciB0aHJlZSB3ZWVrcyBmb3IgcGh5c2ljYWwgYW5kIGNoZW1pY2FsIHBhcmFtZXRlcnMsIGluY2x1ZGluZyBvY2VhbiBzYWxpbml0eSwgcEgsIHRlbXBlcmF0dXJlLCBvcmdhbmljIG51dHJpZW50cyAobml0cm9nZW4gYW5kIHBob3NwaG9yb3VzIGNvbXBvdW5kcyksIGRpc3NvbHZlZCBveHlnZW4gKERPKSwgYW5kIHRvdGFsIHN1c3BlbmRlZCBzZWRpbWVudCAoVFNTKS4gU29tZSB3YXRlciBzYW1wbGVzIGFyZSBpbW1lZGlhdGVseSB0ZXN0ZWQgYXQgbW9iaWxlIGxhYnMgd2hpbGUgb3RoZXJzIGFyZSBwcm9jZXNzZWQgZm9yIHRlc3RpbmcgYXQgVW5pdmVyc2l0eSBvZiBIYXdhaWkgYW5kL29yIG90aGVyIGxhYnMuXG4gICAgXG5Vc2VycyBvZiB0aGVzZSBkYXRhIHNob3VsZCBjaXRlIHRoZSBmb2xsb3dpbmcgcHVibGljYXRpb246XG4gICAgXG5GYWxpbnNraSwgS2ltLCBEYW5hIFJlZWQsIFRvdmEgQ2FsbGVuZGVyLCBFbWlseSBGaWVsZGluZywgUm9iaW4gTmV3Ym9sZCwgYW5kIEFsYW5hIFl1cmthbmluLiAoMjAxOCkuIEh1aSBPIEthIFdhaSBPbGEgV2F0ZXIgUXVhbGl0eSBEYXRhIFtEYXRhIHNldF0uIFplbm9kby4gXCJodHRwOi8vZG9pLm9yZy8xMC41MjgxL3plbm9kby4xMTczNzE3XCJcbiAgICBcbkZvciBmdXJ0aGVyIGluZm9ybWF0aW9uLCBwbGVhc2UgdmlzaXQ6XG5odHRwczovL3d3dy5odWlva2F3YWlvbGEuY29tXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sb2NhdGlvbl9pZCAoc2FtcGxpbmcgc2l0ZSBpZGVudGlmaWVyKVxubG9jYXRpb25fbmFtZVxuc2FtcGxlX2lkIChzYW1wbGUgaWRlbnRpZmllcilcbnNlc3Npb25faWQgKHNhbXBsaW5nIHNlc3Npb24gaWRlbnRpZmllcilcbndhdGVyX3RlbXBlcmF0dXJlIChDZWxzaXVzKVxuLi4uICgxMiBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9odWlfd2F0ZXJfcXVhbGl0eV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvaHVpX3dhdGVyX3F1YWxpdHlfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vaHVpX3dhdGVyX3F1YWxpdHkvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5odWlva2F3YWlvbGEuY29tIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2h1aV93YXRlcl9xdWFsaXR5LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1odWlfd2F0ZXJfcXVhbGl0eSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJIdWkgTyBLYSBXYWkgT2xhIiwgImh1aV93YXRlcl9xdWFsaXR5Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X2Fpcy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvTGlxdWlkUl9IQkczXzIwMTVfYWlzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X2Fpcy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJMaXF1aWQgUm9ib3RpY3MgV2F2ZSBHbGlkZXIsIEhvbmV5IEJhZGdlciAoRzMpLCAyMDE1LCBBSVMiLCAiTGlxdWlkIFJvYm90aWNzIFdhdmUgR2xpZGVyLCBIb25leSBCYWRnZXIgKEczKSwgMjAxNSwgQUlTLiBUaGUgTUFHSSBtaXNzaW9uIGlzIHRvIHVzZSB0aGUgV2F2ZSBHbGlkZXIgdG8gc2FtcGxlIHRoZSBsYXRlIHN1bW1lciBjaGxvcm9waHlsbCBibG9vbSB0aGF0IGRldmVsb3BzIG5lYXIgMzBcdTAwYjBOLCB3aXRoIHRoZSBnb2FsIG9mIHVzaW5nIHRoZSBjYW1lcmEgYW5kIExJU1NULUhvbG8gdG8gdHJ5IHRvIGlkZW50aWZ5IHNwZWNpZXMgaW4gdGhlIGJsb29tcyBhbmQgdGhlbiBmb2xsb3cgdGhlIGRldmVsb3BtZW50IG9mIHBoeXRvcGxhbmt0b24gYWdncmVnYXRlcy4gVGhlc2UgYWdncmVnYXRlcyBoYXZlIHJlY2VudGx5IGJlZW4gc2hvd24gdG8gYmUgYSBzaWduaWZpY2FudCBwYXJ0IG9mIHRoZSB0b3RhbCBhbW91bnQgb2YgY2FyYm9uIHRoYXQgc2lua3MgdG8gdGhlIGRlZXAgc2VhLiBLYXJsIGV0IGFsICgyMDEyKSBmb3VuZCB0aGF0IGluIGVhY2ggb2YgdGhlIHBhc3QgMTMgeWVhcnMsIHRoZXJlIHdhcyBhIGZsdXggb2YgbWF0ZXJpYWwgdG8gNCwwMDAgbSAodGhlIHN1bW1lciBleHBvcnQgcHVsc2UpIHRoYXQgcmVwcmVzZW50ZWQgfjIwJSBvZiB0aGUgdG90YWwgYW5udWFsIGZsdXguIFdvcmsgYmFzZWQgb24gc2F0ZWxsaXRlIG9jZWFuIGNvbG9yIGRhdGEgb3ZlciB0aGUgcGFzdCBkZWNhZGUgaGFzIHJldmVhbGVkIHRoZSBleGlzdGVuY2Ugb2YgbGFyZ2UgcGh5dG9wbGFua3RvbiBibG9vbXMgaW4gdGhlIFBhY2lmaWMgT2NlYW4gdGhhdCBjb3ZlciB0aG91c2FuZHMgb2Yga20yLCBwZXJzaXN0IGZvciB3ZWVrcyBvciBsb25nZXIsIGFuZCBhcmUgb2Z0ZW4gZG9taW5hdGVkIGJ5IG5pdHJvZ2VuLWZpeGluZyBkaWF0b20gc3ltYmlvc2VzIChXaWxzb24gZXQgYWwuIDIwMDgpLiBXZSBob3BlIHRvIGJlIGFibGUgdG8gZXhhbWluZSB3aGV0aGVyIHRoaXMgYWdncmVnYXRpb24gaXMgb2NjdXJyaW5nIGluIHRoZSB2YXN0IG9jZWFuaWMgcmVnaW9ucyBub3J0aCBhbmQgZWFzdCBvZiBIYXdhaSdpIGFuZCBwcm92aWRlIGEgYmFzaW4tc2NhbGUgY29udGV4dCBmb3IgdGhlIEFMT0hBIG9ic2VydmF0aW9ucy4gVGhlc2UgZXZlbnRzIGhhdmUgcHJvdmVuIGRpZmZpY3VsdCB0byBzdHVkeSBvdXRzaWRlIG9mIHRoZSB0aW1lIHNlcmllcyBzdGF0aW9uIEFMT0hBIGF0IEhhd2FpJ2kuXG5cbmNkbV9kYXRhX3R5cGUgPSBUcmFqZWN0b3J5XG5WQVJJQUJMRVM6XG52ZWhpY2xlTmFtZSAoVmVoaWNsZSBOYW1lKVxuYWlzXG5mZWVkX3ZlcnNpb25cbnRpbWUgKERhdGV0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbk1NU0kgKE1hcml0aW1lIE1vYmlsZSBTZXJ2aWNlIElkZW50aXR5KVxuQ09HIChDb3Vyc2UgT3ZlciBHcm91bmQsIGRlZ3JlZXNfdHJ1ZSlcblNPRyAoU3BlZWQgT3ZlciBHcm91bmQsIGtub3RzKVxuUk9UIChSYXRlIE9mIFR1cm4sIGRlZ3JlZXMvbWluKVxuSGVhZGluZyAoZGVncmVlc190cnVlKVxuTmF2aWdhdGlvblN0YXR1cyAoTmF2aWdhdGlvbiBTdGF0dXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvTGlxdWlkUl9IQkczXzIwMTVfYWlzX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9MaXF1aWRSX0hCRzNfMjAxNV9haXNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vTGlxdWlkUl9IQkczXzIwMTVfYWlzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9NQUdJLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9MaXF1aWRSX0hCRzNfMjAxNV9haXMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPUxpcXVpZFJfSEJHM18yMDE1X2FpcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJMaXF1aWQgUm9ib3RpY3MsIFVUIEF1c3RpbiwgTk9BQSBOTUZTIFNXRlNDIEVSRCIsICJMaXF1aWRSX0hCRzNfMjAxNV9haXMiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvTGlxdWlkUl9IQkczXzIwMTVfYzMuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X2MzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X2MzLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkxpcXVpZCBSb2JvdGljcyBXYXZlIEdsaWRlciwgSG9uZXkgQmFkZ2VyIChHMyksIDIwMTUsIEMzIiwgIkxpcXVpZCBSb2JvdGljcyBXYXZlIEdsaWRlciwgSG9uZXkgQmFkZ2VyIChHMyksIDIwMTUsIEMzLlxuQzMgYm9hcmQgbnVtYmVyIDgyMTUgKG5vdCBjb2F0ZWQpIGFwcGVhcnMgYXMgYm9hcmRfaWQ9MzIsIHRhc2tfaWQ9MjMuXG5DMyBib2FyZCBudW1iZXIgNzcxIChjb2F0ZWQpIGFwcGVhcnMgYXMgYm9hcmRfaWQ9MywgdGFza19pZD0zLiBUaGUgTUFHSSBtaXNzaW9uIGlzIHRvIHVzZSB0aGUgV2F2ZSBHbGlkZXIgdG8gc2FtcGxlIHRoZSBsYXRlIHN1bW1lciBjaGxvcm9waHlsbCBibG9vbSB0aGF0IGRldmVsb3BzIG5lYXIgMzBcdTAwYjBOLCB3aXRoIHRoZSBnb2FsIG9mIHVzaW5nIHRoZSBjYW1lcmEgYW5kIExJU1NULUhvbG8gdG8gdHJ5IHRvIGlkZW50aWZ5IHNwZWNpZXMgaW4gdGhlIGJsb29tcyBhbmQgdGhlbiBmb2xsb3cgdGhlIGRldmVsb3BtZW50IG9mIHBoeXRvcGxhbmt0b24gYWdncmVnYXRlcy4gVGhlc2UgYWdncmVnYXRlcyBoYXZlIHJlY2VudGx5IGJlZW4gc2hvd24gdG8gYmUgYSBzaWduaWZpY2FudCBwYXJ0IG9mIHRoZSB0b3RhbCBhbW91bnQgb2YgY2FyYm9uIHRoYXQgc2lua3MgdG8gdGhlIGRlZXAgc2VhLiBLYXJsIGV0IGFsICgyMDEyKSBmb3VuZCB0aGF0IGluIGVhY2ggb2YgdGhlIHBhc3QgMTMgeWVhcnMsIHRoZXJlIHdhcyBhIGZsdXggb2YgbWF0ZXJpYWwgdG8gNCwwMDAgbSAodGhlIHN1bW1lciBleHBvcnQgcHVsc2UpIHRoYXQgcmVwcmVzZW50ZWQgfjIwJSBvZiB0aGUgdG90YWwgYW5udWFsIGZsdXguIFdvcmsgYmFzZWQgb24gc2F0ZWxsaXRlIG9jZWFuIGNvbG9yIGRhdGEgb3ZlciB0aGUgcGFzdCBkZWNhZGUgaGFzIHJldmVhbGVkIHRoZSBleGlzdGVuY2Ugb2YgbGFyZ2UgcGh5dG9wbGFua3RvbiBibG9vbXMgaW4gdGhlIFBhY2lmaWMgT2NlYW4gdGhhdCBjb3ZlciB0aG91c2FuZHMgb2Yga20yLCBwZXJzaXN0IGZvciB3ZWVrcyBvciBsb25nZXIsIGFuZCBhcmUgb2Z0ZW4gZG9taW5hdGVkIGJ5IG5pdHJvZ2VuLWZpeGluZyBkaWF0b20gc3ltYmlvc2VzIChXaWxzb24gZXQgYWwuIDIwMDgpLiBXZSBob3BlIHRvIGJlIGFibGUgdG8gZXhhbWluZSB3aGV0aGVyIHRoaXMgYWdncmVnYXRpb24gaXMgb2NjdXJyaW5nIGluIHRoZSB2YXN0IG9jZWFuaWMgcmVnaW9ucyBub3J0aCBhbmQgZWFzdCBvZiBIYXdhaSdpIGFuZCBwcm92aWRlIGEgYmFzaW4tc2NhbGUgY29udGV4dCBmb3IgdGhlIEFMT0hBIG9ic2VydmF0aW9ucy4gVGhlc2UgZXZlbnRzIGhhdmUgcHJvdmVuIGRpZmZpY3VsdCB0byBzdHVkeSBvdXRzaWRlIG9mIHRoZSB0aW1lIHNlcmllcyBzdGF0aW9uIEFMT0hBIGF0IEhhd2FpJ2kuXG5cbmNkbV9kYXRhX3R5cGUgPSBUcmFqZWN0b3J5XG5WQVJJQUJMRVM6XG52ZWhpY2xlTmFtZSAoVmVoaWNsZSBOYW1lKVxuYm9hcmRfaWRcbnRhc2tfaWRcbmMzXyAoQzMpXG5mZWVkX3ZlcnNpb25cbnRpbWUgKERhdGV0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnVuaXhfdGltZXN0YW1wIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuYzFfY2hsb3JvcGh5bGwgKENoYW5uZWwgMTogQ2hsb3JvcGh5bGwsIFJGVSlcbmMyX0NET00gKENoYW5uZWwgMjogQ0RPTSwgUkZVKVxuYzNfcGh5Y29lcnl0aHJpbiAoQ2hhbm5lbCAzOiBQaHljb2VyeXRocmluLCBSRlUpXG5wcmVzc3VyZSAoPylcbnRlbXBlcmF0dXJlIChkZWdyZWVfQylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9MaXF1aWRSX0hCRzNfMjAxNV9jM19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvTGlxdWlkUl9IQkczXzIwMTVfYzNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vTGlxdWlkUl9IQkczXzIwMTVfYzMvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L01BR0kvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL0xpcXVpZFJfSEJHM18yMDE1X2MzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1MaXF1aWRSX0hCRzNfMjAxNV9jMyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJMaXF1aWQgUm9ib3RpY3MsIFVUIEF1c3RpbiwgTk9BQSBOTUZTIFNXRlNDIEVSRCIsICJMaXF1aWRSX0hCRzNfMjAxNV9jMyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9MaXF1aWRSX0hCRzNfMjAxNV9jdGQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X2N0ZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9MaXF1aWRSX0hCRzNfMjAxNV9jdGQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTGlxdWlkIFJvYm90aWNzIFdhdmUgR2xpZGVyLCBIb25leSBCYWRnZXIgKEczKSwgMjAxNSwgQ1REIiwgIkxpcXVpZCBSb2JvdGljcyBXYXZlIEdsaWRlciwgSG9uZXkgQmFkZ2VyIChHMyksIDIwMTUsIENURC4gVGhlIE1BR0kgbWlzc2lvbiBpcyB0byB1c2UgdGhlIFdhdmUgR2xpZGVyIHRvIHNhbXBsZSB0aGUgbGF0ZSBzdW1tZXIgY2hsb3JvcGh5bGwgYmxvb20gdGhhdCBkZXZlbG9wcyBuZWFyIDMwXHUwMGIwTiwgd2l0aCB0aGUgZ29hbCBvZiB1c2luZyB0aGUgY2FtZXJhIGFuZCBMSVNTVC1Ib2xvIHRvIHRyeSB0byBpZGVudGlmeSBzcGVjaWVzIGluIHRoZSBibG9vbXMgYW5kIHRoZW4gZm9sbG93IHRoZSBkZXZlbG9wbWVudCBvZiBwaHl0b3BsYW5rdG9uIGFnZ3JlZ2F0ZXMuIFRoZXNlIGFnZ3JlZ2F0ZXMgaGF2ZSByZWNlbnRseSBiZWVuIHNob3duIHRvIGJlIGEgc2lnbmlmaWNhbnQgcGFydCBvZiB0aGUgdG90YWwgYW1vdW50IG9mIGNhcmJvbiB0aGF0IHNpbmtzIHRvIHRoZSBkZWVwIHNlYS4gS2FybCBldCBhbCAoMjAxMikgZm91bmQgdGhhdCBpbiBlYWNoIG9mIHRoZSBwYXN0IDEzIHllYXJzLCB0aGVyZSB3YXMgYSBmbHV4IG9mIG1hdGVyaWFsIHRvIDQsMDAwIG0gKHRoZSBzdW1tZXIgZXhwb3J0IHB1bHNlKSB0aGF0IHJlcHJlc2VudGVkIH4yMCUgb2YgdGhlIHRvdGFsIGFubnVhbCBmbHV4LiBXb3JrIGJhc2VkIG9uIHNhdGVsbGl0ZSBvY2VhbiBjb2xvciBkYXRhIG92ZXIgdGhlIHBhc3QgZGVjYWRlIGhhcyByZXZlYWxlZCB0aGUgZXhpc3RlbmNlIG9mIGxhcmdlIHBoeXRvcGxhbmt0b24gYmxvb21zIGluIHRoZSBQYWNpZmljIE9jZWFuIHRoYXQgY292ZXIgdGhvdXNhbmRzIG9mIGttMiwgcGVyc2lzdCBmb3Igd2Vla3Mgb3IgbG9uZ2VyLCBhbmQgYXJlIG9mdGVuIGRvbWluYXRlZCBieSBuaXRyb2dlbi1maXhpbmcgZGlhdG9tIHN5bWJpb3NlcyAoV2lsc29uIGV0IGFsLiAyMDA4KS4gV2UgaG9wZSB0byBiZSBhYmxlIHRvIGV4YW1pbmUgd2hldGhlciB0aGlzIGFnZ3JlZ2F0aW9uIGlzIG9jY3VycmluZyBpbiB0aGUgdmFzdCBvY2VhbmljIHJlZ2lvbnMgbm9ydGggYW5kIGVhc3Qgb2YgSGF3YWknaSBhbmQgcHJvdmlkZSBhIGJhc2luLXNjYWxlIGNvbnRleHQgZm9yIHRoZSBBTE9IQSBvYnNlcnZhdGlvbnMuIFRoZXNlIGV2ZW50cyBoYXZlIHByb3ZlbiBkaWZmaWN1bHQgdG8gc3R1ZHkgb3V0c2lkZSBvZiB0aGUgdGltZSBzZXJpZXMgc3RhdGlvbiBBTE9IQSBhdCBIYXdhaSdpLlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudmVoaWNsZU5hbWUgKFZlaGljbGUgTmFtZSlcbmJvYXJkX2lkXG50YXNrX2lkXG5jdGRcbmZlZWRfdmVyc2lvblxudGltZSAoRGF0ZXRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxudW5peF90aW1lc3RhbXAgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG50ZW1wZXJhdHVyZSAoZGVncmVlX0MpXG5wcmVzc3VyZSAoZEJhcilcbmNvbmR1Y3Rpdml0eSAoU2VhIFdhdGVyIEVsZWN0cmljYWwgQ29uZHVjdGl2aXR5LCBTL20pXG5kaXNzb2x2ZWRfT191bmNhbGlicmF0ZWQgKEh6KVxucHJhY3RpY2FsX3NhbGluaXR5IChTZWEgV2F0ZXIgUHJhY3RpY2FsIFNhbGluaXR5LCBQU1UpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvTGlxdWlkUl9IQkczXzIwMTVfY3RkX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9MaXF1aWRSX0hCRzNfMjAxNV9jdGRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vTGlxdWlkUl9IQkczXzIwMTVfY3RkL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9NQUdJLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9MaXF1aWRSX0hCRzNfMjAxNV9jdGQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPUxpcXVpZFJfSEJHM18yMDE1X2N0ZCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJMaXF1aWQgUm9ib3RpY3MsIFVUIEF1c3RpbiwgTk9BQSBOTUZTIFNXRlNDIEVSRCIsICJMaXF1aWRSX0hCRzNfMjAxNV9jdGQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvTGlxdWlkUl9IQkczXzIwMTVfbW9zZS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvTGlxdWlkUl9IQkczXzIwMTVfbW9zZSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9MaXF1aWRSX0hCRzNfMjAxNV9tb3NlLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkxpcXVpZCBSb2JvdGljcyBXYXZlIEdsaWRlciwgSG9uZXkgQmFkZ2VyIChHMyksIDIwMTUsIE1PU0UiLCAiTGlxdWlkIFJvYm90aWNzIFdhdmUgR2xpZGVyLCBIb25leSBCYWRnZXIgKEczKSwgMjAxNSwgTU9TRS4gVGhlIE1BR0kgbWlzc2lvbiBpcyB0byB1c2UgdGhlIFdhdmUgR2xpZGVyIHRvIHNhbXBsZSB0aGUgbGF0ZSBzdW1tZXIgY2hsb3JvcGh5bGwgYmxvb20gdGhhdCBkZXZlbG9wcyBuZWFyIDMwXHUwMGIwTiwgd2l0aCB0aGUgZ29hbCBvZiB1c2luZyB0aGUgY2FtZXJhIGFuZCBMSVNTVC1Ib2xvIHRvIHRyeSB0byBpZGVudGlmeSBzcGVjaWVzIGluIHRoZSBibG9vbXMgYW5kIHRoZW4gZm9sbG93IHRoZSBkZXZlbG9wbWVudCBvZiBwaHl0b3BsYW5rdG9uIGFnZ3JlZ2F0ZXMuIFRoZXNlIGFnZ3JlZ2F0ZXMgaGF2ZSByZWNlbnRseSBiZWVuIHNob3duIHRvIGJlIGEgc2lnbmlmaWNhbnQgcGFydCBvZiB0aGUgdG90YWwgYW1vdW50IG9mIGNhcmJvbiB0aGF0IHNpbmtzIHRvIHRoZSBkZWVwIHNlYS4gS2FybCBldCBhbCAoMjAxMikgZm91bmQgdGhhdCBpbiBlYWNoIG9mIHRoZSBwYXN0IDEzIHllYXJzLCB0aGVyZSB3YXMgYSBmbHV4IG9mIG1hdGVyaWFsIHRvIDQsMDAwIG0gKHRoZSBzdW1tZXIgZXhwb3J0IHB1bHNlKSB0aGF0IHJlcHJlc2VudGVkIH4yMCUgb2YgdGhlIHRvdGFsIGFubnVhbCBmbHV4LiBXb3JrIGJhc2VkIG9uIHNhdGVsbGl0ZSBvY2VhbiBjb2xvciBkYXRhIG92ZXIgdGhlIHBhc3QgZGVjYWRlIGhhcyByZXZlYWxlZCB0aGUgZXhpc3RlbmNlIG9mIGxhcmdlIHBoeXRvcGxhbmt0b24gYmxvb21zIGluIHRoZSBQYWNpZmljIE9jZWFuIHRoYXQgY292ZXIgdGhvdXNhbmRzIG9mIGttMiwgcGVyc2lzdCBmb3Igd2Vla3Mgb3IgbG9uZ2VyLCBhbmQgYXJlIG9mdGVuIGRvbWluYXRlZCBieSBuaXRyb2dlbi1maXhpbmcgZGlhdG9tIHN5bWJpb3NlcyAoV2lsc29uIGV0IGFsLiAyMDA4KS4gV2UgaG9wZSB0byBiZSBhYmxlIHRvIGV4YW1pbmUgd2hldGhlciB0aGlzIGFnZ3JlZ2F0aW9uIGlzIG9jY3VycmluZyBpbiB0aGUgdmFzdCBvY2VhbmljIHJlZ2lvbnMgbm9ydGggYW5kIGVhc3Qgb2YgSGF3YWknaSBhbmQgcHJvdmlkZSBhIGJhc2luLXNjYWxlIGNvbnRleHQgZm9yIHRoZSBBTE9IQSBvYnNlcnZhdGlvbnMuIFRoZXNlIGV2ZW50cyBoYXZlIHByb3ZlbiBkaWZmaWN1bHQgdG8gc3R1ZHkgb3V0c2lkZSBvZiB0aGUgdGltZSBzZXJpZXMgc3RhdGlvbiBBTE9IQSBhdCBIYXdhaSdpLlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudmVoaWNsZU5hbWUgKFZlaGljbGUgTmFtZSlcbmJvYXJkX2lkXG50YXNrX2lkXG5tb3NlXG5mZWVkX3ZlcnNpb25cbnRpbWUgKERhdGV0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnVuaXhfdGltZXN0YW1wIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2lnbmlmaWNhbnRfd2F2ZV9oZWlnaHQgKFNlYSBTdXJmYWNlIFdhdmUgU2lnbmlmaWNhbnQgSGVpZ2h0LCBtKVxuYXZlcmFnZV9wZXJpb2RfYWxsX3dhdmVzIChTZWEgU3VyZmFjZSBTd2VsbCBXYXZlIFBlcmlvZCwgcylcbnBlcmlvZF9iZXR3ZWVuX3NpZ25pZmljYW50X3dhdmVzIChTZWEgU3VyZmFjZSBTd2VsbCBXYXZlIFBlcmlvZCwgcylcbmRpcmVjdGlvbl9vZl9zaWduaWZpY2FudF93YXZlcyAoU2VhIFN1cmZhY2UgV2F2ZSBUbyBEaXJlY3Rpb24sIGRlZ3JlZXNfdHJ1ZSlcbm51bWJlcl9hdmVyYWdlZF9zcGVjdHJhXG5udW1iZXJfc2FtcGxlc19wZXJfc3BlY3RydW1cbm51bWJlcl9zYW1wbGVfZ2Fwc1xuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL0xpcXVpZFJfSEJHM18yMDE1X21vc2VfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL0xpcXVpZFJfSEJHM18yMDE1X21vc2VfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vTGlxdWlkUl9IQkczXzIwMTVfbW9zZS9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTUFHSS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvTGlxdWlkUl9IQkczXzIwMTVfbW9zZS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9TGlxdWlkUl9IQkczXzIwMTVfbW9zZSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJMaXF1aWQgUm9ib3RpY3MsIFVUIEF1c3RpbiwgTk9BQSBOTUZTIFNXRlNDIEVSRCIsICJMaXF1aWRSX0hCRzNfMjAxNV9tb3NlIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X3BoeXRvZmxhc2guc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X3BoeXRvZmxhc2giLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvTGlxdWlkUl9IQkczXzIwMTVfcGh5dG9mbGFzaC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJMaXF1aWQgUm9ib3RpY3MgV2F2ZSBHbGlkZXIsIEhvbmV5IEJhZGdlciAoRzMpLCAyMDE1LCBQaHl0b2ZsYXNoIiwgIkxpcXVpZCBSb2JvdGljcyBXYXZlIEdsaWRlciwgSG9uZXkgQmFkZ2VyIChHMyksIDIwMTUsIFBoeXRvZmxhc2guIFRoZSBNQUdJIG1pc3Npb24gaXMgdG8gdXNlIHRoZSBXYXZlIEdsaWRlciB0byBzYW1wbGUgdGhlIGxhdGUgc3VtbWVyIGNobG9yb3BoeWxsIGJsb29tIHRoYXQgZGV2ZWxvcHMgbmVhciAzMFx1MDBiME4sIHdpdGggdGhlIGdvYWwgb2YgdXNpbmcgdGhlIGNhbWVyYSBhbmQgTElTU1QtSG9sbyB0byB0cnkgdG8gaWRlbnRpZnkgc3BlY2llcyBpbiB0aGUgYmxvb21zIGFuZCB0aGVuIGZvbGxvdyB0aGUgZGV2ZWxvcG1lbnQgb2YgcGh5dG9wbGFua3RvbiBhZ2dyZWdhdGVzLiBUaGVzZSBhZ2dyZWdhdGVzIGhhdmUgcmVjZW50bHkgYmVlbiBzaG93biB0byBiZSBhIHNpZ25pZmljYW50IHBhcnQgb2YgdGhlIHRvdGFsIGFtb3VudCBvZiBjYXJib24gdGhhdCBzaW5rcyB0byB0aGUgZGVlcCBzZWEuIEthcmwgZXQgYWwgKDIwMTIpIGZvdW5kIHRoYXQgaW4gZWFjaCBvZiB0aGUgcGFzdCAxMyB5ZWFycywgdGhlcmUgd2FzIGEgZmx1eCBvZiBtYXRlcmlhbCB0byA0LDAwMCBtICh0aGUgc3VtbWVyIGV4cG9ydCBwdWxzZSkgdGhhdCByZXByZXNlbnRlZCB+MjAlIG9mIHRoZSB0b3RhbCBhbm51YWwgZmx1eC4gV29yayBiYXNlZCBvbiBzYXRlbGxpdGUgb2NlYW4gY29sb3IgZGF0YSBvdmVyIHRoZSBwYXN0IGRlY2FkZSBoYXMgcmV2ZWFsZWQgdGhlIGV4aXN0ZW5jZSBvZiBsYXJnZSBwaHl0b3BsYW5rdG9uIGJsb29tcyBpbiB0aGUgUGFjaWZpYyBPY2VhbiB0aGF0IGNvdmVyIHRob3VzYW5kcyBvZiBrbTIsIHBlcnNpc3QgZm9yIHdlZWtzIG9yIGxvbmdlciwgYW5kIGFyZSBvZnRlbiBkb21pbmF0ZWQgYnkgbml0cm9nZW4tZml4aW5nIGRpYXRvbSBzeW1iaW9zZXMgKFdpbHNvbiBldCBhbC4gMjAwOCkuIFdlIGhvcGUgdG8gYmUgYWJsZSB0byBleGFtaW5lIHdoZXRoZXIgdGhpcyBhZ2dyZWdhdGlvbiBpcyBvY2N1cnJpbmcgaW4gdGhlIHZhc3Qgb2NlYW5pYyByZWdpb25zIG5vcnRoIGFuZCBlYXN0IG9mIEhhd2FpJ2kgYW5kIHByb3ZpZGUgYSBiYXNpbi1zY2FsZSBjb250ZXh0IGZvciB0aGUgQUxPSEEgb2JzZXJ2YXRpb25zLiBUaGVzZSBldmVudHMgaGF2ZSBwcm92ZW4gZGlmZmljdWx0IHRvIHN0dWR5IG91dHNpZGUgb2YgdGhlIHRpbWUgc2VyaWVzIHN0YXRpb24gQUxPSEEgYXQgSGF3YWknaS5cblxuY2RtX2RhdGFfdHlwZSA9IFRyYWplY3RvcnlcblZBUklBQkxFUzpcbnZlaGljbGVOYW1lIChWZWhpY2xlIE5hbWUpXG5ib2FyZF9pZFxudGFza19pZFxucGh5dG9mbGFzaFxuZmVlZF92ZXJzaW9uXG50aW1lIChEYXRldGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG51bml4X3RpbWVzdGFtcCAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbkZvXG5GbVxuQmxhbmtcbkZ2XG5ZaWVsZFxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL0xpcXVpZFJfSEJHM18yMDE1X3BoeXRvZmxhc2hfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL0xpcXVpZFJfSEJHM18yMDE1X3BoeXRvZmxhc2hfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vTGlxdWlkUl9IQkczXzIwMTVfcGh5dG9mbGFzaC9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTUFHSS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvTGlxdWlkUl9IQkczXzIwMTVfcGh5dG9mbGFzaC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9TGlxdWlkUl9IQkczXzIwMTVfcGh5dG9mbGFzaCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJMaXF1aWQgUm9ib3RpY3MsIFVUIEF1c3RpbiwgTk9BQSBOTUZTIFNXRlNDIEVSRCIsICJMaXF1aWRSX0hCRzNfMjAxNV9waHl0b2ZsYXNoIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X3RlbGVtZXRyeS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvTGlxdWlkUl9IQkczXzIwMTVfdGVsZW1ldHJ5IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X3RlbGVtZXRyeS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJMaXF1aWQgUm9ib3RpY3MgV2F2ZSBHbGlkZXIsIEhvbmV5IEJhZGdlciAoRzMpLCAyMDE1LCBUZWxlbWV0cnkiLCAiTGlxdWlkIFJvYm90aWNzIFdhdmUgR2xpZGVyLCBIb25leSBCYWRnZXIgKEczKSwgMjAxNSwgVGVsZW1ldHJ5LiBUaGUgTUFHSSBtaXNzaW9uIGlzIHRvIHVzZSB0aGUgV2F2ZSBHbGlkZXIgdG8gc2FtcGxlIHRoZSBsYXRlIHN1bW1lciBjaGxvcm9waHlsbCBibG9vbSB0aGF0IGRldmVsb3BzIG5lYXIgMzBcdTAwYjBOLCB3aXRoIHRoZSBnb2FsIG9mIHVzaW5nIHRoZSBjYW1lcmEgYW5kIExJU1NULUhvbG8gdG8gdHJ5IHRvIGlkZW50aWZ5IHNwZWNpZXMgaW4gdGhlIGJsb29tcyBhbmQgdGhlbiBmb2xsb3cgdGhlIGRldmVsb3BtZW50IG9mIHBoeXRvcGxhbmt0b24gYWdncmVnYXRlcy4gVGhlc2UgYWdncmVnYXRlcyBoYXZlIHJlY2VudGx5IGJlZW4gc2hvd24gdG8gYmUgYSBzaWduaWZpY2FudCBwYXJ0IG9mIHRoZSB0b3RhbCBhbW91bnQgb2YgY2FyYm9uIHRoYXQgc2lua3MgdG8gdGhlIGRlZXAgc2VhLiBLYXJsIGV0IGFsICgyMDEyKSBmb3VuZCB0aGF0IGluIGVhY2ggb2YgdGhlIHBhc3QgMTMgeWVhcnMsIHRoZXJlIHdhcyBhIGZsdXggb2YgbWF0ZXJpYWwgdG8gNCwwMDAgbSAodGhlIHN1bW1lciBleHBvcnQgcHVsc2UpIHRoYXQgcmVwcmVzZW50ZWQgfjIwJSBvZiB0aGUgdG90YWwgYW5udWFsIGZsdXguIFdvcmsgYmFzZWQgb24gc2F0ZWxsaXRlIG9jZWFuIGNvbG9yIGRhdGEgb3ZlciB0aGUgcGFzdCBkZWNhZGUgaGFzIHJldmVhbGVkIHRoZSBleGlzdGVuY2Ugb2YgbGFyZ2UgcGh5dG9wbGFua3RvbiBibG9vbXMgaW4gdGhlIFBhY2lmaWMgT2NlYW4gdGhhdCBjb3ZlciB0aG91c2FuZHMgb2Yga20yLCBwZXJzaXN0IGZvciB3ZWVrcyBvciBsb25nZXIsIGFuZCBhcmUgb2Z0ZW4gZG9taW5hdGVkIGJ5IG5pdHJvZ2VuLWZpeGluZyBkaWF0b20gc3ltYmlvc2VzIChXaWxzb24gZXQgYWwuIDIwMDgpLiBXZSBob3BlIHRvIGJlIGFibGUgdG8gZXhhbWluZSB3aGV0aGVyIHRoaXMgYWdncmVnYXRpb24gaXMgb2NjdXJyaW5nIGluIHRoZSB2YXN0IG9jZWFuaWMgcmVnaW9ucyBub3J0aCBhbmQgZWFzdCBvZiBIYXdhaSdpIGFuZCBwcm92aWRlIGEgYmFzaW4tc2NhbGUgY29udGV4dCBmb3IgdGhlIEFMT0hBIG9ic2VydmF0aW9ucy4gVGhlc2UgZXZlbnRzIGhhdmUgcHJvdmVuIGRpZmZpY3VsdCB0byBzdHVkeSBvdXRzaWRlIG9mIHRoZSB0aW1lIHNlcmllcyBzdGF0aW9uIEFMT0hBIGF0IEhhd2FpJ2kuXG5cbmNkbV9kYXRhX3R5cGUgPSBUcmFqZWN0b3J5XG5WQVJJQUJMRVM6XG52ZWhpY2xlTmFtZSAoVmVoaWNsZSBOYW1lKVxudGVsZW1ldHJ5XG5mZWVkX3ZlcnNpb25cbnRpbWUgKERhdGV0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmRpc3RhbmNlX292ZXJfZ3JvdW5kIChtKVxuZGVzaXJlZF9oZWFkaW5nIChkZWdyZWVzKVxuc3ViX2hlYWRpbmcgKGRlZ3JlZXMpXG50YXJnZXRfd2F5cG9pbnRcbnN1Yl90ZW1wZXJhdHVyZSAoZGVncmVlX0MpXG50b3RhbF9wb3dlciAobVdoKVxud2F0ZXJfc3BlZWQgKGtub3RzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL0xpcXVpZFJfSEJHM18yMDE1X3RlbGVtZXRyeV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvTGlxdWlkUl9IQkczXzIwMTVfdGVsZW1ldHJ5X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL0xpcXVpZFJfSEJHM18yMDE1X3RlbGVtZXRyeS9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTUFHSS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvTGlxdWlkUl9IQkczXzIwMTVfdGVsZW1ldHJ5LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1MaXF1aWRSX0hCRzNfMjAxNV90ZWxlbWV0cnkmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTGlxdWlkIFJvYm90aWNzLCBVVCBBdXN0aW4sIE5PQUEgTk1GUyBTV0ZTQyBFUkQiLCAiTGlxdWlkUl9IQkczXzIwMTVfdGVsZW1ldHJ5Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X3dlYXRoZXIuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X3dlYXRoZXIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvTGlxdWlkUl9IQkczXzIwMTVfd2VhdGhlci5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJMaXF1aWQgUm9ib3RpY3MgV2F2ZSBHbGlkZXIsIEhvbmV5IEJhZGdlciAoRzMpLCAyMDE1LCBXZWF0aGVyIiwgIkxpcXVpZCBSb2JvdGljcyBXYXZlIEdsaWRlciwgSG9uZXkgQmFkZ2VyIChHMyksIDIwMTUsIFdlYXRoZXIuIFRoZSBNQUdJIG1pc3Npb24gaXMgdG8gdXNlIHRoZSBXYXZlIEdsaWRlciB0byBzYW1wbGUgdGhlIGxhdGUgc3VtbWVyIGNobG9yb3BoeWxsIGJsb29tIHRoYXQgZGV2ZWxvcHMgbmVhciAzMFx1MDBiME4sIHdpdGggdGhlIGdvYWwgb2YgdXNpbmcgdGhlIGNhbWVyYSBhbmQgTElTU1QtSG9sbyB0byB0cnkgdG8gaWRlbnRpZnkgc3BlY2llcyBpbiB0aGUgYmxvb21zIGFuZCB0aGVuIGZvbGxvdyB0aGUgZGV2ZWxvcG1lbnQgb2YgcGh5dG9wbGFua3RvbiBhZ2dyZWdhdGVzLiBUaGVzZSBhZ2dyZWdhdGVzIGhhdmUgcmVjZW50bHkgYmVlbiBzaG93biB0byBiZSBhIHNpZ25pZmljYW50IHBhcnQgb2YgdGhlIHRvdGFsIGFtb3VudCBvZiBjYXJib24gdGhhdCBzaW5rcyB0byB0aGUgZGVlcCBzZWEuIEthcmwgZXQgYWwgKDIwMTIpIGZvdW5kIHRoYXQgaW4gZWFjaCBvZiB0aGUgcGFzdCAxMyB5ZWFycywgdGhlcmUgd2FzIGEgZmx1eCBvZiBtYXRlcmlhbCB0byA0LDAwMCBtICh0aGUgc3VtbWVyIGV4cG9ydCBwdWxzZSkgdGhhdCByZXByZXNlbnRlZCB+MjAlIG9mIHRoZSB0b3RhbCBhbm51YWwgZmx1eC4gV29yayBiYXNlZCBvbiBzYXRlbGxpdGUgb2NlYW4gY29sb3IgZGF0YSBvdmVyIHRoZSBwYXN0IGRlY2FkZSBoYXMgcmV2ZWFsZWQgdGhlIGV4aXN0ZW5jZSBvZiBsYXJnZSBwaHl0b3BsYW5rdG9uIGJsb29tcyBpbiB0aGUgUGFjaWZpYyBPY2VhbiB0aGF0IGNvdmVyIHRob3VzYW5kcyBvZiBrbTIsIHBlcnNpc3QgZm9yIHdlZWtzIG9yIGxvbmdlciwgYW5kIGFyZSBvZnRlbiBkb21pbmF0ZWQgYnkgbml0cm9nZW4tZml4aW5nIGRpYXRvbSBzeW1iaW9zZXMgKFdpbHNvbiBldCBhbC4gMjAwOCkuIFdlIGhvcGUgdG8gYmUgYWJsZSB0byBleGFtaW5lIHdoZXRoZXIgdGhpcyBhZ2dyZWdhdGlvbiBpcyBvY2N1cnJpbmcgaW4gdGhlIHZhc3Qgb2NlYW5pYyByZWdpb25zIG5vcnRoIGFuZCBlYXN0IG9mIEhhd2FpJ2kgYW5kIHByb3ZpZGUgYSBiYXNpbi1zY2FsZSBjb250ZXh0IGZvciB0aGUgQUxPSEEgb2JzZXJ2YXRpb25zLiBUaGVzZSBldmVudHMgaGF2ZSBwcm92ZW4gZGlmZmljdWx0IHRvIHN0dWR5IG91dHNpZGUgb2YgdGhlIHRpbWUgc2VyaWVzIHN0YXRpb24gQUxPSEEgYXQgSGF3YWknaS5cblxuY2RtX2RhdGFfdHlwZSA9IFRyYWplY3RvcnlcblZBUklBQkxFUzpcbnZlaGljbGVOYW1lIChWZWhpY2xlIE5hbWUpXG53ZWF0aGVyXG5mZWVkX3ZlcnNpb25cbnRpbWUgKERhdGV0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChkZWdyZWVfQylcbnByZXNzdXJlIChtQmFyKVxuYXZnX3dpbmRfc3BlZWQgKFdpbmQgU3BlZWQsIGtub3RzKVxuc3RkX2Rldl93aW5kX3NwZWVkIChXaW5kIFNwZWVkLCBrbm90cylcbmF2Z193aW5kX2RpcmVjdGlvbiAoV2luZCBGcm9tIERpcmVjdGlvbiwgZGVncmVlc190cnVlKVxuc3RkX2Rldl93aW5kX2RpcmVjdGlvbiAoV2luZCBGcm9tIERpcmVjdGlvbiwgZGVncmVlc190cnVlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL0xpcXVpZFJfSEJHM18yMDE1X3dlYXRoZXJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL0xpcXVpZFJfSEJHM18yMDE1X3dlYXRoZXJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vTGlxdWlkUl9IQkczXzIwMTVfd2VhdGhlci9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTUFHSS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvTGlxdWlkUl9IQkczXzIwMTVfd2VhdGhlci5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9TGlxdWlkUl9IQkczXzIwMTVfd2VhdGhlciZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJMaXF1aWQgUm9ib3RpY3MsIFVUIEF1c3RpbiwgTk9BQSBOTUZTIFNXRlNDIEVSRCIsICJMaXF1aWRSX0hCRzNfMjAxNV93ZWF0aGVyIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL21hdWlfd2F0ZXJfcXVhbGl0eS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbWF1aV93YXRlcl9xdWFsaXR5IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL21hdWlfd2F0ZXJfcXVhbGl0eS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJNYXVpIENpdGl6ZW4gU2NpZW5jZSBDb2FzdGFsIFdhdGVyIFF1YWxpdHkgRGF0YSIsICJBIG5ldHdvcmsgb2YgY2l0aXplbiBzY2llbmNlIHZvbHVudGVlcnMgcGVyaW9kaWNhbGx5IG1vbml0b3JlZCB3YXRlciBxdWFsaXR5IGF0IHNldmVyYWwgYmVhY2hlcyBhY3Jvc3MgdGhlIGlzbGFuZCBvZiBNYXVpIGluIHRoZSBTdGF0ZSBvZiBIYXdhaWkgZHVyaW5nIHRoZSB5ZWFycyAyMDEwLTIwMTYuIFRoaXMgY29tbXVuaXR5LWJhc2VkIG1vbml0b3JpbmcgZWZmb3J0IHByb3ZpZGVkIHZhbHVhYmxlIGRhdGEgZm9yIHJlc291cmNlIG1hbmFnZW1lbnQgcHVycG9zZXMuIEluZm9ybWVkIHZvbHVudGVlciBuZXR3b3JrcyBjYW4gc2VydmUgYXMgYSBjb21tdW5pdHkncyBcImV5ZXMgYW5kIGVhcnNcIiBhbmQgd2lsbCBvZnRlbiBwcm92aWRlIHRoZSBmaXJzdCBpbmRpY2F0aW9ucyBvZiBjaGFuZ2VzIHRvIGEgc3lzdGVtLiBJbiBhZGRpdGlvbiB0byB0aGUgdmFsdWUgb2YgZWFybHkgZGV0ZWN0aW9uLCBpdCBpcyBpbXBvcnRhbnQgdG8gbWFpbnRhaW4gb25nb2luZyBtb25pdG9yaW5nIGVmZm9ydHMgdG8gY29tcGlsZSBkYXRhIGFuZCBkb2N1bWVudCByZXNvdXJjZSBjb25kaXRpb25zLlxuXG5JbiBhZGRpdGlvbiB0byB3YXRlciB0ZW1wZXJhdHVyZSwgc2FsaW5pdHksIHR1cmJpZGl0eSAod2F0ZXIgY2xhcml0eSksIGFuZCBwSCwgc2FtcGxpbmcgc2l0ZXMgd2VyZSBhbHNvIG1vbml0b3JlZCBmb3IgaGFybWZ1bCBiYWN0ZXJpYSBsZXZlbHMgb2YgRW50ZXJvY29jY3VzIHRocm91Z2ggMjAxNC0wNi0yNi4gVGhpcyBpbmRpY2F0b3IgYmFjdGVyaWEgaGFzIGJlZW4gY29ycmVsYXRlZCB3aXRoIHRoZSBwcmVzZW5jZSBvZiBodW1hbiBwYXRob2dlbnMgKGRpc2Vhc2UtY2F1c2luZyBvcmdhbmlzbXMpIGFuZCB0aGVyZWZvcmUgd2l0aCBodW1hbiBpbGxuZXNzZXMgc3VjaCBhcyBnYXN0cm9lbnRlcml0aXMsIGRpYXJyaGVhLCBhbmQgdmFyaW91cyBpbmZlY3Rpb25zIGluIGVwaWRlbWlvbG9naWNhbCBzdHVkaWVzLiBBcyBzdWNoLCBpdCBpcyBjb21tb25seSBtZWFzdXJlZCBpbiBiZWFjaCB3YXRlciBxdWFsaXR5IG1vbml0b3JpbmcgcHJvZ3JhbXMuIEZvciByZWZlcmVuY2UsIHRoZSBVLlMuIEVudmlyb25tZW50YWwgUHJvdGVjdGlvbiBBZ2VuY3kgKEVQQSkgMTk4NiBBbWJpZW50IFdhdGVyIFF1YWxpdHkgQ3JpdGVyaWEgZm9yIEJhY3RlcmlhIHJlY29tbWVuZHMgdGhhdCBhIHdhdGVyIHF1YWxpdHkgYWxlcnQgaXMgcG9zdGVkIGlmIGVpdGhlcjogKGEuKSB0aGUgbGF0ZXN0IHdhdGVyIHNhbXBsZSBleGNlZWRzIDEwNCBDRlUvMTAwIG1MIG9mIEVudGVyb2NvY2N1cywgb3IgKGIuKSB0aGUgZ2VvbWV0cmljIG1lYW4gb2YgdGhlIHBhc3QgMzAgZGF5cyBvZiB3YXRlciBzYW1wbGVzIGV4Y2VlZHMgMzUgQ0ZVLzEwMCBtTC4gT25lIG9mIHRoZSBsaW1pdGF0aW9ucyBvZiBhbGwgYXZhaWxhYmxlIGFuZCBFUEEtYXBwcm92ZWQgdGVzdCBtZXRob2RzIGlzIHRoYXQgdGhlIHNhbXBsZSBtdXN0IGJlIGluY3ViYXRlZCBmb3IgYWJvdXQgMjQgaG91cnMuXG5cbkRhdGEgd2VyZSBtYW5hZ2VkIHRocm91Z2ggYW4gb25saW5lIHJlcG9zaXRvcnksIHRoZSBDb3JhbCBSZWVmIE1vbml0b3JpbmcgRGF0YSBQb3J0YWwgKG5vdyBkZWZ1bmN0KSwgZGV2ZWxvcGVkIGFuZCBjb29yZGluYXRlZCBieSB0aGUgQ29yYWwgUmVlZiBBbGxpYW5jZSAoQ09SQUwpIGFuZCBpdHMgcGFydG5lcnMgd2l0aCBmdW5kaW5nIHByb3ZpZGVkIGJ5IHRoZSBIYXdhaWkgVG91cmlzbSBBdXRob3JpdHkgKEhUQSkgYW5kIHRoZSBOYXRpb25hbCBPY2VhbmljIGFuZCBBdG1vc3BoZXJpYyBBZG1pbmlzdHJhdGlvbiAoTk9BQSkuIERhdGEgY29sbGVjdGlvbiB3YXMgY29vcmRpbmF0ZWQgYnkgdGhlIEhhd2FpaSBEaXZpc2lvbiBvZiBBcXVhdGljIFJlc291cmNlcyAoREFSKSwgdGhlIEhhd2FpaWFuIElzbGFuZHMgSHVtcGJhY2sgV2hhbGUgTmF0aW9uYWwgTWFyaW5lIFNhbmN0dWFyeSAoSElIV05NUyksIEFxdWFuaW1pdHkgTm93LCB0aGUgRGlnaXRhbCBCdXMsIFNhdmUgSG9ub2x1YSBDb2FsaXRpb24sIFByb2plY3QgUy5FLkEuLUxpbmssIGFuZCBvdGhlciBsb2NhbCBvcmdhbml6YXRpb25zIGFuZCBhZ2VuY2llcy4gRGF0YSBhcmUgcHVibGljbHkgZGlzdHJpYnV0ZWQgYnkgdGhlIFBhY2lmaWMgSXNsYW5kcyBPY2VhbiBPYnNlcnZpbmcgU3lzdGVtIChQYWNJT09TKS5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbi4uLiAoOSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9tYXVpX3dhdGVyX3F1YWxpdHlfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL21hdWlfd2F0ZXJfcXVhbGl0eV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9tYXVpX3dhdGVyX3F1YWxpdHkvaW5kZXguanNvbiIsICJodHRwczovL2NvcmFsLm9yZy9tYXVpLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9tYXVpX3dhdGVyX3F1YWxpdHkucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPW1hdWlfd2F0ZXJfcXVhbGl0eSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJDb3JhbCBSZWVmIEFsbGlhbmNlIChDT1JBTCkiLCAibWF1aV93YXRlcl9xdWFsaXR5Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2N3d2NOREJDTWV0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9jd3djTkRCQ01ldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9jd3djTkRCQ01ldC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOREJDIFN0YW5kYXJkIE1ldGVvcm9sb2dpY2FsIEJ1b3kgRGF0YSwgMTk3MC1wcmVzZW50IiwgIlRoZSBOYXRpb25hbCBEYXRhIEJ1b3kgQ2VudGVyIChOREJDKSBkaXN0cmlidXRlcyBtZXRlb3JvbG9naWNhbCBkYXRhIGZyb21cbm1vb3JlZCBidW95cyBtYWludGFpbmVkIGJ5IE5EQkMgYW5kIG90aGVycy4gTW9vcmVkIGJ1b3lzIGFyZSB0aGUgd2VhdGhlclxuc2VudGluZWxzIG9mIHRoZSBzZWEuIFRoZXkgYXJlIGRlcGxveWVkIGluIHRoZSBjb2FzdGFsIGFuZCBvZmZzaG9yZSB3YXRlcnNcbmZyb20gdGhlIHdlc3Rlcm4gQXRsYW50aWMgdG8gdGhlIFBhY2lmaWMgT2NlYW4gYXJvdW5kIEhhd2FpaSwgYW5kIGZyb20gdGhlXG5CZXJpbmcgU2VhIHRvIHRoZSBTb3V0aCBQYWNpZmljLiBOREJDJ3MgbW9vcmVkIGJ1b3lzIG1lYXN1cmUgYW5kIHRyYW5zbWl0XG5iYXJvbWV0cmljIHByZXNzdXJlOyB3aW5kIGRpcmVjdGlvbiwgc3BlZWQsIGFuZCBndXN0OyBhaXIgYW5kIHNlYVxudGVtcGVyYXR1cmU7IGFuZCB3YXZlIGVuZXJneSBzcGVjdHJhIGZyb20gd2hpY2ggc2lnbmlmaWNhbnQgd2F2ZSBoZWlnaHQsXG5kb21pbmFudCB3YXZlIHBlcmlvZCwgYW5kIGF2ZXJhZ2Ugd2F2ZSBwZXJpb2QgYXJlIGRlcml2ZWQuIEV2ZW4gdGhlXG5kaXJlY3Rpb24gb2Ygd2F2ZSBwcm9wYWdhdGlvbiBpcyBtZWFzdXJlZCBvbiBtYW55IG1vb3JlZCBidW95cy4gU2VlXG5odHRwczovL3d3dy5uZGJjLm5vYWEuZ292L21lYXNkZXMuc2h0bWwgZm9yIGEgZGVzY3JpcHRpb24gb2YgdGhlIG1lYXN1cmVtZW50cy5cblxuVGhlIHNvdXJjZSBkYXRhIGZyb20gTk9BQSBOREJDIGhhcyBkaWZmZXJlbnQgY29sdW1uIG5hbWVzLCBkaWZmZXJlbnQgdW5pdHMsXG5hbmQgZGlmZmVyZW50IG1pc3NpbmcgdmFsdWVzIGluIGRpZmZlcmVudCBmaWxlcywgYW5kIG90aGVyIHByb2JsZW1zXG4obm90YWJseSwgbG90cyBvZiByb3dzIHdpdGggZHVwbGljYXRlIG9yIGRpZmZlcmVudCB2YWx1ZXMgZm9yIHRoZSBzYW1lIHRpbWVcbnBvaW50KS4gVGhpcyBkYXRhc2V0IGlzIGEgc3RhbmRhcmRpemVkLCByZWZvcm1hdHRlZCwgYW5kIGxpZ2h0bHkgZWRpdGVkXG52ZXJzaW9uIG9mIHRoYXQgc291cmNlIGRhdGEsIGNyZWF0ZWQgYnkgTk9BQSBOTUZTIFNXRlNDIEVSRCAoZW1haWw6XG5lcmQuZGF0YSBhdCBub2FhLmdvdikuIEJlZm9yZSAyMDIwLTAxLTI5LCB0aGlzIGRhdGFzZXQgb25seSBoYWQgdGhlIGRhdGFcbnRoYXQgd2FzIGNsb3Nlc3QgdG8gYSBnaXZlbiBob3VyLCByb3VuZGVkIHRvIHRoZSBuZWFyZXN0IGhvdXIuIE5vdywgdGhpc1xuZGF0YXNldCBoYXMgYWxsIG9mIHRoZSBkYXRhIGF2YWlsYWJsZSBmcm9tIE5EQkMgd2l0aCB0aGUgb3JpZ2luYWwgdGltZVxudmFsdWVzLiBJZiB0aGVyZSBhcmUgbXVsdGlwbGUgc291cmNlIHJvd3MgZm9yIGEgZ2l2ZW4gYnVveSBmb3IgYSBnaXZlblxudGltZSwgb25seSB0aGUgcm93IHdpdGggdGhlIG1vc3Qgbm9uLU5hTiBkYXRhIHZhbHVlcyBpcyBrZXB0LiBJZiB0aGVyZSBpc1xuYSBnYXAgaW4gdGhlIGRhdGEsIGEgcm93IG9mIG1pc3NpbmcgdmFsdWVzIGlzIGluc2VydGVkICh3aGljaCBjYXVzZXMgYSBuaWNlXG5nYXAgd2hlbiB0aGUgZGF0YSBpcyBncmFwaGVkKS4gQWxzbywgc29tZSBpbXBvc3NpYmxlIGRhdGEgdmFsdWVzIGFyZVxucmVtb3ZlZCwgYnV0IHRoaXMgZGF0YSBpcyBub3QgcGVyZmVjdGx5IGNsZWFuLiBUaGlzIGRhdGFzZXQgaXMgbm93IHVwZGF0ZWRcbmV2ZXJ5IDUgbWludXRlcy5cblxuVGhpcyBkYXRhc2V0IGhhcyBib3RoIGhpc3RvcmljYWwgZGF0YSAocXVhbGl0eSBjb250cm9sbGVkLCBiZWZvcmVcbjIwMjAtMDYtMDFUMDA6MDA6MDBaKSBhbmQgbmVhciByZWFsIHRpbWUgZGF0YSAobGVzcyBxdWFsaXR5IGNvbnRyb2xsZWQsXG53aGljaCBtYXkgY2hhbmdlIGF0IGFueSB0aW1lLCBmcm9tIDIwMjAtMDYtMDFUMDA6MDA6MDBaIG9uKS5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb24gKFN0YXRpb24gSWRlbnRpZmllcilcbi4uLiAoMTkgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvY3d3Y05EQkNNZXRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2N3d2NOREJDTWV0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2N3d2NOREJDTWV0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cubmRiYy5ub2FhLmdvdi8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvY3d3Y05EQkNNZXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWN3d2NOREJDTWV0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTkRCQywgTk9BQSBOTUZTIFNXRlNDIEVSRCIsICJjd3djTkRCQ01ldCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC93b2NlY3ByLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC93b2NlY3ByIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3dvY2VjcHIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTkVGU0MgQ29udGludW91cyBQbGFua3RvbiBSZWNvcmRlciIsICJBIHN1bW1hcnkgZm9yIHRoZSBkYXRhXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmNydWlzZVxuc2FtcGxlXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxucGh5dG9fY29sb3JfaW5keCAoUGh5dG9wbGFua3RvbiBDb2xvciBJbmRleClcbm1hcm1hcF90YXhfY29kZSAoTWFybWFwIFRheG9ub21pYyBDb2RlKVxubWFybWFwX3N0YWdlX2NvZGVcbmFidW5kYW5jZSAocGVyIDEwMCBjdWJpYyBtZXRlcnMpXG5saWZlX3N0YWdlXG50YXhvbm9taWNfbmFtZVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3dvY2VjcHJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3dvY2VjcHJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vd29jZWNwci9pbmRleC5qc29uIiwgImh0dHBzOi8vY29hc3R3YXRjaC5wZmVnLm5vYWEuZ292L2VyZGRhcCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy93b2NlY3ByLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD13b2NlY3ByJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5FRlNDIiwgIndvY2VjcHIiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkTmV3cG9ydEN0ZC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkTmV3cG9ydEN0ZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmROZXdwb3J0Q3RkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5ld3BvcnQgTGFiIENURCBDYXN0cywgMTk5Ny0yMDA4IiwgIlRoZSBOZXdwb3J0IEh5ZHJvZ3JhcGhpYyAoTkgpIExpbmUgYWxvbmcgNDQuNjVcdTAwYjBOIG9mZiBjZW50cmFsIE9yZWdvbiB3YXMgc2FtcGxlZCBzZWFzb25hbGx5IGR1cmluZyB0d28gZXBvY2hzOiAxOTYxLTE5NzEgdGhyb3VnaCB0aGUgVEVOT0MgcHJvZ3JhbSBhbmQgMTk5Ny0yMDAzIHRocm91Z2ggdGhlIEdMT0JFQyBOb3J0aGVhc3QgUGFjaWZpYyBMb25nIFRlcm0gT2JzZXJ2YXRpb25zIFByb2dyYW0gKExUT1ApOyBzb21lIG9ic2VydmF0aW9ucyBhcmUgYXZhaWxhYmxlIGZvciAyMDA0IGFuZCAyMDA1LiBEdXJpbmcgVEVOT0MsIHRoZSBsaW5lIGV4dGVuZGVkIDMwNSBrbSBvZmZzaG9yZSB0byAxMjhcdTAwYjBXLCB3aXRoIHN0YXRpb25zIDE4IGttIGFwYXJ0IG92ZXIgdGhlIGNvbnRpbmVudGFsIHNoZWxmIGFuZCAzNiBrbSBvZmZzaG9yZS4gRHVyaW5nIExUT1AsIHRoZSBsaW5lIHdhcyBzaG9ydGVyICh0byAxMjZcdTAwYjBXKSB3aXRoIGNsb3NlciBzdGF0aW9uIHNwYWNpbmcgb3ZlciB0aGUgY29udGluZW50YWwgc2hlbGYgKDkga20gYXBhcnQpIGFuZCBzbG9wZSAoMTgga20gYXBhcnQpLiBMVE9QIGNydWlzZXMgaW5jbHVkZWQgYmlvY2hlbWljYWwgc2FtcGxpbmcgYW5kIHVuZGVyd2F5IGN1cnJlbnQgbWVhc3VyZW1lbnRzLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1Byb2ZpbGVcblZBUklBQkxFUzpcbmxpbmVcbnRyYW5zZWN0XG5zdGF0aW9uXG5wbGFpbl9zdGF0aW9uXG5wcm9qZWN0XG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxuc3RhdGlvbl9jb2RlIChDVEQgU3RhdGlvbiBDb2RlKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuZGVuc2l0eSAoc2lnbWEpXG5mbHVvcmVzY2VuY2UgKHZvbHRzKVxuc2FsaW5pdHkgKFNlYSBXYXRlciBQcmFjdGljYWwgU2FsaW5pdHksIFBTVSlcbnRlbXBlcmF0dXJlIChkZWdyZWVfQylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmROZXdwb3J0Q3RkX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmROZXdwb3J0Q3RkX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZE5ld3BvcnRDdGQvaW5kZXguanNvbiIsICJodHRwOi8vbGlua2luZ2h1Yi5lbHNldmllci5jb20vcmV0cmlldmUvcGlpL1MwMDc5NjYxMTA3MDAxNDc0IiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZE5ld3BvcnRDdGQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZE5ld3BvcnRDdGQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTldGU0MiLCAiZXJkTmV3cG9ydEN0ZCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbmNlcE5pbm9TU1R3ayIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9uY2VwTmlub1NTVHdrLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5pbm8gUmVnaW9uIFdlZWtseSBTU1QgT0lTU1QudjIiLCAiV2Vla2x5IE9JU1NULnYyICgxOTgxLTIwMTAgYmFzZSBwZXJpb2QpIE5pXHUwMGYxbyAxKzIgKDAtMTBcdTAwYjBTb3V0aCkoOTBcdTAwYjBXZXN0LTgwXHUwMGIwV2VzdCkgTmlcdTAwZjFvIDMgKDVcdTAwYjBOb3J0aC01XHUwMGIwU291dGgpKDE1MFx1MDBiMFdlc3QtOTBcdTAwYjBXZXN0KSBOaVx1MDBmMW8gNCAoNVx1MDBiME5vcnRoLTVcdTAwYjBTb3V0aCkgKDE2MFx1MDBiMEVhc3QtMTUwXHUwMGIwV2VzdCkgTmlcdTAwZjFvIDMuNCAoNVx1MDBiME5vcnRoLTVcdTAwYjBTb3V0aCkoMTcwLTEyMFx1MDBiMFdlc3QpXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbk5pbm8xXzJfc3N0IChkZWdyZWVzIEMpXG5OaW5vMV8yX3NzdGEgKE5pbm8xKzIgU1NUIEFub21hbHksIGRlZ3JlZXMgQylcbk5pbm8zX3NzdCAoZGVncmVlcyBDKVxuTmlubzNfc3N0YSAoTmlubzMgU1NUIEFub21hbHksIGRlZ3JlZXMgQylcbk5pbm8zNF9zc3QgKE5pbm8zLjQgU1NULCBkZWdyZWVzIEMpXG5OaW5vMzRfc3N0YSAoTmlubzMuNCBTU1QgQW5vbWFseSwgZGVncmVlcyBDKVxuTmlubzRfc3N0IChkZWdyZWVzIEMpXG5OaW5vNF9zc3RhIChOaW5vNCBTU1QgQW5vbWFseSwgZGVncmVlcyBDKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9uY2VwTmlub1NTVHdrL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cuY3BjLm5jZXAubm9hYS5nb3YvZGF0YS9pbmRpY2VzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9uY2VwTmlub1NTVHdrLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1uY2VwTmlub1NTVHdrJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5DRVAiLCAibmNlcE5pbm9TU1R3ayJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NTb3NBVGVtcC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zQVRlbXAiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zQVRlbXAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBOT1MgU09TLCBFWFBFUklNRU5UQUwsIDE4NTMtcHJlc2VudCwgQWlyIFRlbXBlcmF0dXJlIiwgIlRoZSBOT0FBIE5PUyBTT1Mgc2VydmVyIGlzIHBhcnQgb2YgdGhlIElPT1MgRElGIFNPUyBQcm9qZWN0LiAgVGhlIHN0YXRpb25zIGluIHRoaXMgZGF0YXNldCBoYXZlIGFpciB0ZW1wZXJhdHVyZSBkYXRhLiAgKioqKlRoZXNlIHNlcnZpY2VzIGFyZSBmb3IgdGVzdGluZyBhbmQgZXZhbHVhdGlvbiB1c2Ugb25seSoqKipcblxuQmVjYXVzZSBvZiB0aGUgbmF0dXJlIG9mIFNPUyByZXF1ZXN0cywgcmVxdWVzdHMgZm9yIGRhdGEgTVVTVCBpbmNsdWRlIGNvbnN0cmFpbnRzIGZvciB0aGUgbG9uZ2l0dWRlLCBsYXRpdHVkZSwgdGltZSwgYW5kL29yIHN0YXRpb25faWQgdmFyaWFibGVzLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbnN0YXRpb25faWRcbmFsdGl0dWRlIChtKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNlbnNvcl9pZFxuYWlyX3RlbXBlcmF0dXJlIChkZWdyZWVfQylcbnF1YWxpdHlfZmxhZ3NcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NTb3NBVGVtcF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zU29zQVRlbXBfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm9zU29zQVRlbXAvaW5kZXguanNvbiIsICJodHRwczovL29wZW5kYXAuY28tb3BzLm5vcy5ub2FhLmdvdi9pb29zLWRpZi1zb3MvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc1Nvc0FUZW1wLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NTb3NBVGVtcCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyIsICJub3NTb3NBVGVtcCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NTb3NCUHJlcy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zQlByZXMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zQlByZXMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBOT1MgU09TLCBFWFBFUklNRU5UQUwsIDE4NTMtcHJlc2VudCwgQmFyb21ldHJpYyBQcmVzc3VyZSIsICJUaGUgTk9BQSBOT1MgU09TIHNlcnZlciBpcyBwYXJ0IG9mIHRoZSBJT09TIERJRiBTT1MgUHJvamVjdC4gIFRoZSBzdGF0aW9ucyBpbiB0aGlzIGRhdGFzZXQgaGF2ZSBiYXJvbWV0cmljIHByZXNzdXJlIGRhdGEuICAqKioqVGhlc2Ugc2VydmljZXMgYXJlIGZvciB0ZXN0aW5nIGFuZCBldmFsdWF0aW9uIHVzZSBvbmx5KioqKlxuXG5CZWNhdXNlIG9mIHRoZSBuYXR1cmUgb2YgU09TIHJlcXVlc3RzLCByZXF1ZXN0cyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgY29uc3RyYWludHMgZm9yIHRoZSBsb25naXR1ZGUsIGxhdGl0dWRlLCB0aW1lLCBhbmQvb3Igc3RhdGlvbl9pZCB2YXJpYWJsZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxuc3RhdGlvbl9pZFxuYWx0aXR1ZGUgKG0pXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2Vuc29yX2lkXG5haXJfcHJlc3N1cmUgKEJhcm9tZXRyaWMgUHJlc3N1cmUsIG1pbGxpYmFycylcbnF1YWxpdHlfZmxhZ3NcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NTb3NCUHJlc19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zU29zQlByZXNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm9zU29zQlByZXMvaW5kZXguanNvbiIsICJodHRwczovL29wZW5kYXAuY28tb3BzLm5vcy5ub2FhLmdvdi9pb29zLWRpZi1zb3MvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc1Nvc0JQcmVzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NTb3NCUHJlcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyIsICJub3NTb3NCUHJlcyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NTb3NXTGV2ZWwuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc1Nvc1dMZXZlbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NTb3NXTGV2ZWwuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBOT1MgU09TLCBFWFBFUklNRU5UQUwsIDE4NTMtcHJlc2VudCwgV2F0ZXIgTGV2ZWwiLCAiVGhlIE5PQUEgTk9TIFNPUyBzZXJ2ZXIgaXMgcGFydCBvZiB0aGUgSU9PUyBESUYgU09TIFByb2plY3QuICBUaGUgc3RhdGlvbnMgaW4gdGhpcyBkYXRhc2V0IGhhdmUgd2F0ZXIgc3VyZmFjZSBoZWlnaHQgYWJvdmUgYSByZWZlcmVuY2UgZGF0dW0uICAqKioqVGhlc2Ugc2VydmljZXMgYXJlIGZvciB0ZXN0aW5nIGFuZCBldmFsdWF0aW9uIHVzZSBvbmx5KioqKlxuXG5CZWNhdXNlIG9mIHRoZSBuYXR1cmUgb2YgU09TIHJlcXVlc3RzLCByZXF1ZXN0cyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgY29uc3RyYWludHMgZm9yIHRoZSBsb25naXR1ZGUsIGxhdGl0dWRlLCB0aW1lLCBhbmQvb3Igc3RhdGlvbl9pZCB2YXJpYWJsZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxuc3RhdGlvbl9pZFxuYWx0aXR1ZGUgKG0pXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2Vuc29yX2lkXG53YXRlcl9sZXZlbCAod2F0ZXJfc3VyZmFjZV9oZWlnaHRfYWJvdmVfcmVmZXJlbmNlX2RhdHVtLCBtKVxuZGF0dW1faWRcbnZlcnRpY2FsX3Bvc2l0aW9uIChtKVxuc2lnbWFcbnF1YWxpdHlfZmxhZ3NcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NTb3NXTGV2ZWxfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc1Nvc1dMZXZlbF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub3NTb3NXTGV2ZWwvaW5kZXguanNvbiIsICJodHRwczovL29wZW5kYXAuY28tb3BzLm5vcy5ub2FhLmdvdi9pb29zLWRpZi1zb3MvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc1Nvc1dMZXZlbC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bm9zU29zV0xldmVsJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk9TIiwgIm5vc1Nvc1dMZXZlbCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NTb3NXVGVtcC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zV1RlbXAiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zV1RlbXAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBOT1MgU09TLCBFWFBFUklNRU5UQUwsIDE4NTMtcHJlc2VudCwgV2F0ZXIgVGVtcGVyYXR1cmUiLCAiVGhlIE5PQUEgTk9TIFNPUyBzZXJ2ZXIgaXMgcGFydCBvZiB0aGUgSU9PUyBESUYgU09TIFByb2plY3QuICBUaGUgc3RhdGlvbnMgaW4gdGhpcyBkYXRhc2V0IGhhdmUgd2F0ZXIgdGVtcGVyYXR1cmUgZGF0YS4gICoqKipUaGVzZSBzZXJ2aWNlcyBhcmUgZm9yIHRlc3RpbmcgYW5kIGV2YWx1YXRpb24gdXNlIG9ubHkqKioqXG5cbkJlY2F1c2Ugb2YgdGhlIG5hdHVyZSBvZiBTT1MgcmVxdWVzdHMsIHJlcXVlc3RzIGZvciBkYXRhIE1VU1QgaW5jbHVkZSBjb25zdHJhaW50cyBmb3IgdGhlIGxvbmdpdHVkZSwgbGF0aXR1ZGUsIHRpbWUsIGFuZC9vciBzdGF0aW9uX2lkIHZhcmlhYmxlcy5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5zdGF0aW9uX2lkXG5hbHRpdHVkZSAobSlcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zZW5zb3JfaWRcbnNlYV93YXRlcl90ZW1wZXJhdHVyZSAoZGVncmVlX0MpXG5xdWFsaXR5X2ZsYWdzXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm9zU29zV1RlbXBfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc1Nvc1dUZW1wX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL25vc1Nvc1dUZW1wL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vcGVuZGFwLmNvLW9wcy5ub3Mubm9hYS5nb3YvaW9vcy1kaWYtc29zLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9ub3NTb3NXVGVtcC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bm9zU29zV1RlbXAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOT1MiLCAibm9zU29zV1RlbXAiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zQ29uZC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zQ29uZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NTb3NDb25kLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgTk9TIFNPUywgRVhQRVJJTUVOVEFMLCAxOTAyLXByZXNlbnQsIENvbmR1Y3Rpdml0eSIsICJUaGUgTk9BQSBOT1MgU09TIHNlcnZlciBpcyBwYXJ0IG9mIHRoZSBJT09TIERJRiBTT1MgUHJvamVjdC4gIFRoZSBzdGF0aW9ucyBpbiB0aGlzIGRhdGFzZXQgaGF2ZSBjb25kdWN0aXZpdHkgZGF0YS4gICoqKipUaGVzZSBzZXJ2aWNlcyBhcmUgZm9yIHRlc3RpbmcgYW5kIGV2YWx1YXRpb24gdXNlIG9ubHkqKioqXG5cbkJlY2F1c2Ugb2YgdGhlIG5hdHVyZSBvZiBTT1MgcmVxdWVzdHMsIHJlcXVlc3RzIGZvciBkYXRhIE1VU1QgaW5jbHVkZSBjb25zdHJhaW50cyBmb3IgdGhlIGxvbmdpdHVkZSwgbGF0aXR1ZGUsIHRpbWUsIGFuZC9vciBzdGF0aW9uX2lkIHZhcmlhYmxlcy5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5zdGF0aW9uX2lkXG5hbHRpdHVkZSAobSlcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zZW5zb3JfaWRcbmNvbmR1Y3Rpdml0eSAoRWxlY3RyaWNhbCBDb25kdWN0aXZpdHksIG1TIGNtLTEpXG5xdWFsaXR5X2ZsYWdzXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm9zU29zQ29uZF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zU29zQ29uZF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub3NTb3NDb25kL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vcGVuZGFwLmNvLW9wcy5ub3Mubm9hYS5nb3YvaW9vcy1kaWYtc29zLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9ub3NTb3NDb25kLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NTb3NDb25kJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk9TIiwgIm5vc1Nvc0NvbmQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zU2FsaW5pdHkuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc1Nvc1NhbGluaXR5IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc1Nvc1NhbGluaXR5LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgTk9TIFNPUywgRVhQRVJJTUVOVEFMLCAxOTAyLXByZXNlbnQsIFNhbGluaXR5IiwgIlRoZSBOT0FBIE5PUyBTT1Mgc2VydmVyIGlzIHBhcnQgb2YgdGhlIElPT1MgRElGIFNPUyBQcm9qZWN0LiAgVGhlIHN0YXRpb25zIGluIHRoaXMgZGF0YXNldCBoYXZlIHNhbGluaXR5IGRhdGEuICAqKioqVGhlc2Ugc2VydmljZXMgYXJlIGZvciB0ZXN0aW5nIGFuZCBldmFsdWF0aW9uIHVzZSBvbmx5KioqKlxuXG5CZWNhdXNlIG9mIHRoZSBuYXR1cmUgb2YgU09TIHJlcXVlc3RzLCByZXF1ZXN0cyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgY29uc3RyYWludHMgZm9yIHRoZSBsb25naXR1ZGUsIGxhdGl0dWRlLCB0aW1lLCBhbmQvb3Igc3RhdGlvbl9pZCB2YXJpYWJsZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxuc3RhdGlvbl9pZFxuYWx0aXR1ZGUgKG0pXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2Vuc29yX2lkXG5zZWFfd2F0ZXJfc2FsaW5pdHkgKFNlYSBXYXRlciBQcmFjdGljYWwgU2FsaW5pdHksIFBTVSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NTb3NTYWxpbml0eV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zU29zU2FsaW5pdHlfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm9zU29zU2FsaW5pdHkvaW5kZXguanNvbiIsICJodHRwczovL29wZW5kYXAuY28tb3BzLm5vcy5ub2FhLmdvdi9pb29zLWRpZi1zb3MvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc1Nvc1NhbGluaXR5LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NTb3NTYWxpbml0eSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyIsICJub3NTb3NTYWxpbml0eSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURURucnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFRG5ydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURURucnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBTaGlwIEJlbGwgTS4gU2hpbWFkYSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBOZWFyIFJlYWwgVGltZSIsICJOT0FBIFNoaXAgQmVsbCBNLiBTaGltYWRhIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKE5lYXIgUmVhbCBUaW1lLCB1cGRhdGVkIGRhaWx5KSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS4gIFxuXCI9flwiIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLiBcblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLiAgXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuICBcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5haXJQcmVzc3VyZSAoQXRtb3NwaGVyaWMgUHJlc3N1cmUsIG1pbGxpYmFyKVxuLi4uICgxOSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VOb2FhU2hpcFdURURucnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdU5vYWFTaGlwV1RFRG5ydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VOb2FhU2hpcFdURURucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1Tm9hYVNoaXBXVEVEbnJ0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VOb2FhU2hpcFdURURucnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdU5vYWFTaGlwV1RFRG5ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURUQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFRCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURUQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBTaGlwIEJlbGwgTS4gU2hpbWFkYSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiTk9BQSBTaGlwIEJlbGwgTS4gU2hpbWFkYSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDE5IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFRF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVEX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFRC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURUQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFRCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVEIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RESy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVERLIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RESy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgRGF2aWQgU3RhcnIgSm9yZGFuIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJOT0FBIFNoaXAgRGF2aWQgU3RhcnIgSm9yZGFuIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVERLX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdUREtfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVERLL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RESy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVERLJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdUREsiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBLTkJELnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcEtOQkQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBLTkJELmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBEZWxhd2FyZSBJSSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiTk9BQSBTaGlwIERlbGF3YXJlIElJIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBLTkJEX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcEtOQkRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBLTkJEL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwS05CRC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBLTkJEJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcEtOQkQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVCbnJ0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURUJucnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVCbnJ0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBGYWlyd2VhdGhlciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBOZWFyIFJlYWwgVGltZSIsICJOT0FBIFNoaXAgRmFpcndlYXRoZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoTmVhciBSZWFsIFRpbWUsIHVwZGF0ZWQgZGFpbHkpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFQm5ydF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVCbnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFQm5ydC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURUJucnQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFQm5ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVCbnJ0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFQi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVCIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFQi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgRmFpcndlYXRoZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUXVhbGl0eSBDb250cm9sbGVkIiwgIk5PQUEgU2hpcCBGYWlyd2VhdGhlciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFQl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVCX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFQi9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURUIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFQiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVCIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFT25ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVPbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFT25ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgR29yZG9uIEd1bnRlciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBOZWFyIFJlYWwgVGltZSIsICJOT0FBIFNoaXAgR29yZG9uIEd1bnRlciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChOZWFyIFJlYWwgVGltZSwgdXBkYXRlZCBkYWlseSkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVEVPbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdURU9ucnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVEVPbnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RFT25ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVEVPbnJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdURU9ucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVPLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURU8iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVPLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBHb3Jkb24gR3VudGVyIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJOT0FBIFNoaXAgR29yZG9uIEd1bnRlciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFT19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVPX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFTy9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURU8ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFTyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVPIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RERm5ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVERGbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RERm5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgSGVucnkgQi4gQmlnZWxvdyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBOZWFyIFJlYWwgVGltZSIsICJOT0FBIFNoaXAgSGVucnkgQi4gQmlnZWxvdyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChOZWFyIFJlYWwgVGltZSwgdXBkYXRlZCBkYWlseSkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVERGbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdUREZucnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVERGbnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RERm5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVERGbnJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdUREZucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVERGLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdUREYiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVERGLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBIZW5yeSBCLiBCaWdlbG93IFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJOT0FBIFNoaXAgSGVucnkgQi4gQmlnZWxvdyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RERl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVERGX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RERi9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdUREYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RERiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVERGIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFWW5ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVZbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFWW5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgSGknaWFsYWthaSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBOZWFyIFJlYWwgVGltZSIsICJOT0FBIFNoaXAgSGknaWFsYWthaSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChOZWFyIFJlYWwgVGltZSwgdXBkYXRlZCBkYWlseSkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVEVZbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdURVlucnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVEVZbnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RFWW5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVEVZbnJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdURVlucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVZLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURVkiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVZLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBIaSdpYWxha2FpIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJOT0FBIFNoaXAgSGknaWFsYWthaSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFWV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVZX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFWS9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURVkucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFWSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVZIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFVS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVVIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFVS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgS2EnaW1pbW9hbmEgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUXVhbGl0eSBDb250cm9sbGVkIiwgIk5PQUEgU2hpcCBLYSdpbWltb2FuYSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDE2IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFVV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVVX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFVS9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURVUucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFVSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVVIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFSi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVKIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFSi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgTWNBcnRodXJJSSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiTk9BQSBTaGlwIE1jQXJ0aHVyIElJIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVEVKX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdURUpfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVEVKL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RFSi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVEVKJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdURUoiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVERNLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURE0iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVERNLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBNaWxsZXIgRnJlZW1hbiBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiTk9BQSBTaGlwIE1pbGxlciBGcmVlbWFuIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVERNX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdURE1faXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVERNL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RETS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVERNJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdURE0iXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVSbnJ0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURVJucnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVSbnJ0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBOYW5jeSBGb3N0ZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgTmVhciBSZWFsIFRpbWUiLCAiTk9BQSBTaGlwIE5hbmN5IEZvc3RlciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChOZWFyIFJlYWwgVGltZSwgdXBkYXRlZCBkYWlseSkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTQgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVEVSbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdURVJucnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVEVSbnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RFUm5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVEVSbnJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdURVJucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVSLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURVIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVSLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBOYW5jeSBGb3N0ZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUXVhbGl0eSBDb250cm9sbGVkIiwgIk5PQUEgU2hpcCBOYW5jeSBGb3N0ZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS4gIFxuXCI9flwiIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLiBcblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLiAgXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuICBcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5haXJQcmVzc3VyZSAoQXRtb3NwaGVyaWMgUHJlc3N1cmUsIG1pbGxpYmFyKVxuLi4uICgxNCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VOb2FhU2hpcFdURVJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdU5vYWFTaGlwV1RFUl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VOb2FhU2hpcFdURVIvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1Tm9hYVNoaXBXVEVSLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VOb2FhU2hpcFdURVImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdU5vYWFTaGlwV1RFUiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdUREhucnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RESG5ydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdUREhucnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBTaGlwIE9rZWFub3MgRXhwbG9yZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgTmVhciBSZWFsIFRpbWUiLCAiTk9BQSBTaGlwIE9rZWFub3MgRXhwbG9yZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoTmVhciBSZWFsIFRpbWUsIHVwZGF0ZWQgZGFpbHkpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RESG5ydF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVERIbnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RESG5ydC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdUREhucnQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RESG5ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVERIbnJ0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RESC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVERIIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RESC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgT2tlYW5vcyBFeHBsb3JlciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiTk9BQSBTaGlwIE9rZWFub3MgRXhwbG9yZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS4gIFxuXCI9flwiIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLiBcblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLiAgXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuICBcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5haXJQcmVzc3VyZSAoQXRtb3NwaGVyaWMgUHJlc3N1cmUsIG1pbGxpYmFyKVxuLi4uICgxMyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VOb2FhU2hpcFdUREhfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdU5vYWFTaGlwV1RESF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VOb2FhU2hpcFdUREgvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1Tm9hYVNoaXBXVERILnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VOb2FhU2hpcFdUREgmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdU5vYWFTaGlwV1RESCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURE9ucnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RET25ydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURE9ucnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBTaGlwIE9yZWdvbiBJSSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBOZWFyIFJlYWwgVGltZSIsICJOT0FBIFNoaXAgT3JlZ29uIElJIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKE5lYXIgUmVhbCBUaW1lLCB1cGRhdGVkIGRhaWx5KSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS4gIFxuXCI9flwiIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLiBcblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLiAgXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuICBcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5haXJQcmVzc3VyZSAoQXRtb3NwaGVyaWMgUHJlc3N1cmUsIG1pbGxpYmFyKVxuLi4uICgxMyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VOb2FhU2hpcFdURE9ucnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdU5vYWFTaGlwV1RET25ydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VOb2FhU2hpcFdURE9ucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1Tm9hYVNoaXBXVERPbnJ0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VOb2FhU2hpcFdURE9ucnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdU5vYWFTaGlwV1RET25ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURE8uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RETyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURE8uZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBTaGlwIE9yZWdvbiBJSSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiTk9BQSBTaGlwIE9yZWdvbiBJSSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RET19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVERPX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RETy9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURE8ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RETyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVERPIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFUG5ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVQbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFUG5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgT3NjYXIgRHlzb24gVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgTmVhciBSZWFsIFRpbWUiLCAiTk9BQSBTaGlwIE9zY2FyIER5c29uIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKE5lYXIgUmVhbCBUaW1lLCB1cGRhdGVkIGRhaWx5KSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS5cbic9ficgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci5cblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy5cbihEb24ndCBpbmNsdWRlIGJhY2tzbGFzaGVzIGluIHlvdXIgcXVlcnkuKVxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbi4uLiAoMTQgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVEVQbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdURVBucnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVEVQbnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RFUG5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVEVQbnJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdURVBucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVQLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURVAiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVQLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBPc2NhciBEeXNvbiBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiTk9BQSBTaGlwIE9zY2FyIER5c29uIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuXG4nPX4nIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLlxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuXG4oRG9uJ3QgaW5jbHVkZSBiYWNrc2xhc2hlcyBpbiB5b3VyIHF1ZXJ5LilcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDE0IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFUF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVQX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFUC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURVAucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFUCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVQIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFRW5ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVFbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFRW5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgT3NjYXIgRWx0b24gU2V0dGUgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgTmVhciBSZWFsIFRpbWUiLCAiTk9BQSBTaGlwIE9zY2FyIEVsdG9uIFNldHRlIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKE5lYXIgUmVhbCBUaW1lLCB1cGRhdGVkIGRhaWx5KSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS4gIFxuXCI9flwiIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLiBcblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLiAgXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuICBcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5haXJQcmVzc3VyZSAoQXRtb3NwaGVyaWMgUHJlc3N1cmUsIG1pbGxpYmFyKVxuLi4uICgxMyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VOb2FhU2hpcFdURUVucnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdU5vYWFTaGlwV1RFRW5ydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VOb2FhU2hpcFdURUVucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1Tm9hYVNoaXBXVEVFbnJ0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VOb2FhU2hpcFdURUVucnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdU5vYWFTaGlwV1RFRW5ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURUUuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFRSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURUUuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBTaGlwIE9zY2FyIEVsdG9uIFNldHRlIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJOT0FBIFNoaXAgT3NjYXIgRWx0b24gU2V0dGUgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS4gIFxuXCI9flwiIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLiBcblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLiAgXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuICBcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5haXJQcmVzc3VyZSAoQXRtb3NwaGVyaWMgUHJlc3N1cmUsIG1pbGxpYmFyKVxuLi4uICgxMyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VOb2FhU2hpcFdURUVfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdU5vYWFTaGlwV1RFRV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VOb2FhU2hpcFdURUUvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1Tm9hYVNoaXBXVEVFLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VOb2FhU2hpcFdURUUmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdU5vYWFTaGlwV1RFRSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURExucnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RETG5ydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURExucnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBTaGlwIFBpc2NlcyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBOZWFyIFJlYWwgVGltZSIsICJOT0FBIFNoaXAgUGlzY2VzIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKE5lYXIgUmVhbCBUaW1lLCB1cGRhdGVkIGRhaWx5KSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS4gIFxuXCI9flwiIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLiBcblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLiAgXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuICBcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5haXJQcmVzc3VyZSAoQXRtb3NwaGVyaWMgUHJlc3N1cmUsIG1pbGxpYmFyKVxuLi4uICgxMyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VOb2FhU2hpcFdURExucnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdU5vYWFTaGlwV1RETG5ydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VOb2FhU2hpcFdURExucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1Tm9hYVNoaXBXVERMbnJ0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VOb2FhU2hpcFdURExucnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdU5vYWFTaGlwV1RETG5ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdUREwuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RETCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdUREwuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBTaGlwIFBpc2NlcyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiTk9BQSBTaGlwIFBpc2NlcyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RETF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVERMX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RETC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdUREwucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RETCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVERMIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFRm5ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVGbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFRm5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgUmFpbmllciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBOZWFyIFJlYWwgVGltZSIsICJOT0FBIFNoaXAgUmFpbmllciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChOZWFyIFJlYWwgVGltZSwgdXBkYXRlZCBkYWlseSkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVEVGbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdURUZucnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVEVGbnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RFRm5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVEVGbnJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdURUZucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVGLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURUYiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVGLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBSYWluaWVyIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJOT0FBIFNoaXAgUmFpbmllciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFRl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVGX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFRi9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURUYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFRiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVGIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFQ25ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVDbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFQ25ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgUm9uYWxkIEJyb3duIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIE5lYXIgUmVhbCBUaW1lIiwgIk5PQUEgU2hpcCBSb25hbGQgQnJvd24gVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoTmVhciBSZWFsIFRpbWUsIHVwZGF0ZWQgZGFpbHkpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDE0IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFQ25ydF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVDbnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFQ25ydC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURUNucnQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFQ25ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVDbnJ0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFQy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVDIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFQy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgUm9uYWxkIEJyb3duIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJOT0FBIFNoaXAgUm9uYWxkIEJyb3duIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTQgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVEVDX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdURUNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVEVDL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RFQy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVEVDJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdURUMiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkTnBoLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmROcGgiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkTnBoLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5vcnRoIFBhY2lmaWMgSGlnaCwgMTk2NyAtIHByZXNlbnQiLCAiVmFyaWF0aW9ucyBpbiBsYXJnZS1zY2FsZSBhdG1vc3BoZXJpYyBmb3JjaW5nIGluZmx1ZW5jZSB1cHdlbGxpbmcgZHluYW1pY3MgYW5kIGVjb3N5c3RlbSBwcm9kdWN0aXZpdHkgaW4gdGhlIENhbGlmb3JuaWEgQ3VycmVudCBTeXN0ZW0gKENDUykuIEluIHRoaXMgcGFwZXIsIHdlIGNoYXJhY3Rlcml6ZSBpbnRlcmFubnVhbCB2YXJpYWJpbGl0eSBvZiB0aGUgTm9ydGggUGFjaWZpYyBIaWdoIG92ZXIgNDAgeWVhcnMgYW5kIGludmVzdGlnYXRlIGhvdyB2YXJpYXRpb24gaW4gaXRzIGFtcGxpdHVkZSBhbmQgcG9zaXRpb24gYWZmZWN0IHVwd2VsbGluZyBhbmQgYmlvbG9neS4gV2UgZGV2ZWxvcCBhIHdpbnRlciB1cHdlbGxpbmcgXCJwcmUtY29uZGl0aW9uaW5nXCIgaW5kZXggYW5kIGRlbW9uc3RyYXRlIGl0cyB1dGlsaXR5IHRvIHVuZGVyc3RhbmRpbmcgYmlvbG9naWNhbCBwcm9jZXNzZXMuIFZhcmlhdGlvbiBpbiB0aGUgd2ludGVyIE5QSCBjYW4gYmUgd2VsbCBkZXNjcmliZWQgYnkgaXRzIGFyZWFsIGV4dGVudCBhbmQgbWF4aW11bSBwcmVzc3VyZSwgd2hpY2ggaW4gdHVybiBpcyBwcmVkaWN0aXZlIG9mIHdpbnRlciB1cHdlbGxpbmcuIE91ciB3aW50ZXIgcHJlLWNvbmRpdGlvbmluZyBpbmRleCBleHBsYWluZWQgNjQlIG9mIHRoZSB2YXJpYXRpb24gaW4gYmlvbG9naWNhbCByZXNwb25zZXMgKGZpc2ggYW5kIHNlYWJpcmRzKS4gVW5kZXJzdGFuZGluZyBjaGFyYWN0ZXJpc3RpY3Mgb2YgdGhlIE5QSCBpbiB3aW50ZXIgaXMgdGhlcmVmb3JlIGNyaXRpY2FsIHRvIHByZWRpY3RpbmcgYmlvbG9naWNhbCByZXNwb25zZXMgaW4gdGhlIENDUy5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxueWVhclxubW9udGggKE1vbnRoICgxIC0gMTIpKVxubG9uZ2l0dWRlIChMb25naXR1ZGUgb2YgdGhlIENlbnRlciBvZiB0aGUgTlBILCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTGF0aXR1ZGUgb2YgdGhlIENlbnRlciBvZiB0aGUgTlBILCBkZWdyZWVzX25vcnRoKVxuYXJlYSAoQXJlYWwgRXh0ZW50IG9mIHRoZSAxMDIwIGhQYSBDb250b3VyLCBrbTIpXG5tYXhTTFAgKE1heGltdW0gU2VhIExldmVsIFByZXNzdXJlLCBoUGEpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkTnBoX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmROcGhfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkTnBoL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vbmxpbmVsaWJyYXJ5LndpbGV5LmNvbS9kb2kvMTAuMTAwMi9ncmwuNTAxMDAvYWJzdHJhY3QiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkTnBoLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmROcGgmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBFUkQiLCAiZXJkTnBoIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRQY3VpIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFBjdWkuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTm9ydGggUGFjaWZpYyBIaWdoLCBQcmUtY29uZGl0aW9uaW5nIEN1bXVsYXRpdmUgVXB3ZWxsaW5nIEluZGV4LCAxOTY3IC0gcHJlc2VudCIsICJWYXJpYXRpb25zIGluIGxhcmdlLXNjYWxlIGF0bW9zcGhlcmljIGZvcmNpbmcgaW5mbHVlbmNlIHVwd2VsbGluZyBkeW5hbWljcyBhbmQgZWNvc3lzdGVtIHByb2R1Y3Rpdml0eSBpbiB0aGUgQ2FsaWZvcm5pYSBDdXJyZW50IFN5c3RlbSAoQ0NTKS4gSW4gdGhpcyBwYXBlciwgd2UgY2hhcmFjdGVyaXplIGludGVyYW5udWFsIHZhcmlhYmlsaXR5IG9mIHRoZSBOb3J0aCBQYWNpZmljIEhpZ2ggb3ZlciA0MCB5ZWFycyBhbmQgaW52ZXN0aWdhdGUgaG93IHZhcmlhdGlvbiBpbiBpdHMgYW1wbGl0dWRlIGFuZCBwb3NpdGlvbiBhZmZlY3QgdXB3ZWxsaW5nIGFuZCBiaW9sb2d5LiBXZSBkZXZlbG9wIGEgd2ludGVyIHVwd2VsbGluZyBcInByZS1jb25kaXRpb25pbmdcIiBpbmRleCBhbmQgZGVtb25zdHJhdGUgaXRzIHV0aWxpdHkgdG8gdW5kZXJzdGFuZGluZyBiaW9sb2dpY2FsIHByb2Nlc3Nlcy4gVmFyaWF0aW9uIGluIHRoZSB3aW50ZXIgTlBIIGNhbiBiZSB3ZWxsIGRlc2NyaWJlZCBieSBpdHMgYXJlYWwgZXh0ZW50IGFuZCBtYXhpbXVtIHByZXNzdXJlLCB3aGljaCBpbiB0dXJuIGlzIHByZWRpY3RpdmUgb2Ygd2ludGVyIHVwd2VsbGluZy4gT3VyIHdpbnRlciBwcmUtY29uZGl0aW9uaW5nIGluZGV4IGV4cGxhaW5lZCA2NCUgb2YgdGhlIHZhcmlhdGlvbiBpbiBiaW9sb2dpY2FsIHJlc3BvbnNlcyAoZmlzaCBhbmQgc2VhYmlyZHMpLiBVbmRlcnN0YW5kaW5nIGNoYXJhY3RlcmlzdGljcyBvZiB0aGUgTlBIIGluIHdpbnRlciBpcyB0aGVyZWZvcmUgY3JpdGljYWwgdG8gcHJlZGljdGluZyBiaW9sb2dpY2FsIHJlc3BvbnNlcyBpbiB0aGUgQ0NTLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5wY3VpMzNOIChQQ1VJIGF0IDMzTiwgbV4zIHNeLTEgMTAwbV4tMSlcbnBjdWkzNk4gKFBDVUkgYXQgMzZOLCBtXjMgc14tMSAxMDBtXi0xKVxucGN1aTM5TiAoUENVSSBhdCAzOU4sIG1eMyBzXi0xIDEwMG1eLTEpXG5wY3VpNDJOIChQQ1VJIGF0IDQyTiwgbV4zIHNeLTEgMTAwbV4tMSlcbnBjdWk0NU4gKFBDVUkgYXQgNDVOLCBtXjMgc14tMSAxMDBtXi0xKVxucGN1aTQ4TiAoUENVSSBhdCA0OE4sIG1eMyBzXi0xIDEwMG1eLTEpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZFBjdWkvaW5kZXguanNvbiIsICJodHRwczovL29ubGluZWxpYnJhcnkud2lsZXkuY29tL2RvaS8xMC4xMDAyL2dybC41MDEwMC9hYnN0cmFjdCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRQY3VpLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRQY3VpJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgRVJEIiwgImVyZFBjdWkiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNDQS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNDQSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc0NBLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PUyBDTy1PUFMgQWN0aXZlIEN1cnJlbnRzIERhdGEsIDYtTWludXRlIiwgIlRoaXMgZGF0YXNldCBoYXMgc3VyZmFjZSBBY3RpdmUgQ3VycmVudHMgZGF0YSBmcm9tIE5PQUEgTk9TIENlbnRlciBmb3Jcbk9wZXJhdGlvbmFsIE9jZWFub2dyYXBoaWMgUHJvZHVjdHMgYW5kIFNlcnZpY2VzIChDTy1PUFMpLlxuXG5XQVJOSU5HOiBUaGVzZSByYXcgZGF0YSBoYXZlIG5vdCBiZWVuIHN1YmplY3RlZCB0byB0aGUgTmF0aW9uYWwgT2NlYW4gU2VydmljZXNcbihOT1MpIFF1YWxpdHkgQ29udHJvbCBwcm9jZWR1cmVzLCBhbmQgZG8gbm90IG5lY2Vzc2FyaWx5IG1lZXQgdGhlIGNyaXRlcmlhIGFuZFxuc3RhbmRhcmRzIG9mIG9mZmljaWFsIE5PUyBkYXRhLiBUaGV5IGFyZSByZWxlYXNlZCBmb3IgbGltaXRlZCBwdWJsaWMgdXNlIHdpdGhcbmFwcHJvcHJpYXRlIGNhdXRpb24uXG5cbldBUk5JTkc6XG4qIFF1ZXJpZXMgZm9yIGRhdGEgTVVTVCBpbmNsdWRlIHN0YXRpb25JRD0gYW5kIHRpbWU+PS5cbiogUXVlcmllcyBVU1VBTExZIGluY2x1ZGUgdGltZTw9ICh0aGUgZGVmYXVsdCBlbmQgdGltZSBjb3JyZXNwb25kcyB0byAnbm93JykuXG4qIFF1ZXJpZXMgTVVTVCBiZSBmb3IgbGVzcyB0aGFuIDMwIGRheXMgd29ydGggb2YgZGF0YS5cbiogVGhlIGRhdGEgc291cmNlIGlzbid0IGNvbXBsZXRlbHkgcmVsaWFibGUuIElmIHlvdXIgcmVxdWVzdCByZXR1cm5zIG5vIGRhdGFcbiAgd2hlbiB5b3UgdGhpbmsgaXQgc2hvdWxkOlxuICAqIFRyeSByZXZpc2luZyB0aGUgcmVxdWVzdCAoZS5nLiwgYSBkaWZmZXJlbnQgdGltZSByYW5nZSkuXG4gICogVGhlIGxpc3Qgb2Ygc3RhdGlvbnMgb2ZmZXJpbmcgdGhpcyBkYXRhIG1heSBiZSBpbmNvcnJlY3QuXG4gICogU29tZXRpbWVzIGEgc3RhdGlvbiBvciB0aGUgZW50aXJlIGRhdGEgc2VydmljZSBpcyB1bmF2YWlsYWJsZS5cbiAgICBXYWl0IGEgd2hpbGUgYW5kIHRyeSBhZ2Fpbi5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb25JRCAoU3RhdGlvbiBJRClcbnN0YXRpb25OYW1lIChTdGF0aW9uIE5hbWUpXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbkNTIChDdXJyZW50IFNwZWVkLCBrbm90cylcbkNEIChDdXJyZW50IERpcmVjdGlvbiwgZGVncmVlc190cnVlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL25vc0Nvb3BzQ0FfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc0Nvb3BzQ0FfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm9zQ29vcHNDQS9pbmRleC5qc29uIiwgImh0dHA6Ly90aWRlc2FuZGN1cnJlbnRzLm5vYWEuZ292LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9ub3NDb29wc0NBLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NDb29wc0NBJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk9TIENPLU9QUyIsICJub3NDb29wc0NBIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzTUFULnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01BVCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01BVC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT1MgQ08tT1BTIE1ldGVvcm9sb2dpY2FsIERhdGEsIEFpciBUZW1wZXJhdHVyZSwgNi1NaW51dGUiLCAiVGhpcyBkYXRhc2V0IGhhcyBBaXIgVGVtcGVyYXR1cmUgZGF0YSBmcm9tIE5PQUEgTk9TIENlbnRlciBmb3IgT3BlcmF0aW9uYWxcbk9jZWFub2dyYXBoaWMgUHJvZHVjdHMgYW5kIFNlcnZpY2VzIChDTy1PUFMpLlxuXG5XQVJOSU5HOiBUaGVzZSBwcmVsaW1pbmFyeSBkYXRhIGhhdmUgbm90IGJlZW4gc3ViamVjdGVkIHRvIHRoZSBOYXRpb25hbCBPY2VhblxuU2VydmljZXMgKE5PUykgUXVhbGl0eSBDb250cm9sIHByb2NlZHVyZXMsIGFuZCBkbyBub3QgbmVjZXNzYXJpbHkgbWVldCB0aGVcbmNyaXRlcmlhIGFuZCBzdGFuZGFyZHMgb2Ygb2ZmaWNpYWwgTk9TIGRhdGEuIFRoZXkgYXJlIHJlbGVhc2VkIGZvciBsaW1pdGVkXG5wdWJsaWMgdXNlIHdpdGggYXBwcm9wcmlhdGUgY2F1dGlvbi5cblxuV0FSTklORzpcbiogUXVlcmllcyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgc3RhdGlvbklEPSBhbmQgdGltZT49LlxuKiBRdWVyaWVzIFVTVUFMTFkgaW5jbHVkZSB0aW1lPD0gKHRoZSBkZWZhdWx0IGVuZCB0aW1lIGNvcnJlc3BvbmRzIHRvICdub3cnKS5cbiogUXVlcmllcyBNVVNUIGJlIGZvciBsZXNzIHRoYW4gMzAgZGF5cyB3b3J0aCBvZiBkYXRhLlxuKiBUaGUgZGF0YSBzb3VyY2UgaXNuJ3QgY29tcGxldGVseSByZWxpYWJsZS4gSWYgeW91ciByZXF1ZXN0IHJldHVybnMgbm8gZGF0YVxuICB3aGVuIHlvdSB0aGluayBpdCBzaG91bGQ6XG4gICogVHJ5IHJldmlzaW5nIHRoZSByZXF1ZXN0IChlLmcuLCBhIGRpZmZlcmVudCB0aW1lIHJhbmdlKS5cbiAgKiBUaGUgbGlzdCBvZiBzdGF0aW9ucyBvZmZlcmluZyB0aGlzIGRhdGEgbWF5IGJlIGluY29ycmVjdC5cbiAgKiBTb21ldGltZXMgYSBzdGF0aW9uIG9yIHRoZSBlbnRpcmUgZGF0YSBzZXJ2aWNlIGlzIHVuYXZhaWxhYmxlLlxuICAgIFdhaXQgYSB3aGlsZSBhbmQgdHJ5IGFnYWluLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvbklEIChTdGF0aW9uIElEKVxuc3RhdGlvbk5hbWUgKFN0YXRpb24gTmFtZSlcbnN0YXRlXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaGVmSUQgKFNIRUYgSUQpXG5kZXBsb3ltZW50IChEZXBsb3ltZW50IERlc2lnbmF0aW9uKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kY3AgKERhdGEgQ29sbGVjdGlvbiBQbGF0Zm9ybSlcbi4uLiAoNSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NDb29wc01BVF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zQ29vcHNNQVRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm9zQ29vcHNNQVQvaW5kZXguanNvbiIsICJodHRwOi8vdGlkZXNhbmRjdXJyZW50cy5ub2FhLmdvdi8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm9zQ29vcHNNQVQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPW5vc0Nvb3BzTUFUJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk9TIENPLU9QUyIsICJub3NDb29wc01BVCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01CUC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNNQlAiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNNQlAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9TIENPLU9QUyBNZXRlb3JvbG9naWNhbCBEYXRhLCBCYXJvbWV0cmljIFByZXNzdXJlLCA2LU1pbnV0ZSIsICJUaGlzIGRhdGFzZXQgaGFzIEJhcm9tZXRyaWMgUHJlc3N1cmUgZGF0YSBmcm9tIE5PQUEgTk9TIENlbnRlciBmb3IgT3BlcmF0aW9uYWxcbk9jZWFub2dyYXBoaWMgUHJvZHVjdHMgYW5kIFNlcnZpY2VzIChDTy1PUFMpLlxuXG5XQVJOSU5HOiBUaGVzZSBwcmVsaW1pbmFyeSBkYXRhIGhhdmUgbm90IGJlZW4gc3ViamVjdGVkIHRvIHRoZSBOYXRpb25hbCBPY2VhblxuU2VydmljZXMgKE5PUykgUXVhbGl0eSBDb250cm9sIHByb2NlZHVyZXMsIGFuZCBkbyBub3QgbmVjZXNzYXJpbHkgbWVldCB0aGVcbmNyaXRlcmlhIGFuZCBzdGFuZGFyZHMgb2Ygb2ZmaWNpYWwgTk9TIGRhdGEuIFRoZXkgYXJlIHJlbGVhc2VkIGZvciBsaW1pdGVkXG5wdWJsaWMgdXNlIHdpdGggYXBwcm9wcmlhdGUgY2F1dGlvbi5cblxuV0FSTklORzpcbiogUXVlcmllcyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgc3RhdGlvbklEPSBhbmQgdGltZT49LlxuKiBRdWVyaWVzIFVTVUFMTFkgaW5jbHVkZSB0aW1lPD0gKHRoZSBkZWZhdWx0IGVuZCB0aW1lIGNvcnJlc3BvbmRzIHRvICdub3cnKS5cbiogUXVlcmllcyBNVVNUIGJlIGZvciBsZXNzIHRoYW4gMzAgZGF5cyB3b3J0aCBvZiBkYXRhLlxuKiBUaGUgZGF0YSBzb3VyY2UgaXNuJ3QgY29tcGxldGVseSByZWxpYWJsZS4gSWYgeW91ciByZXF1ZXN0IHJldHVybnMgbm8gZGF0YVxuICB3aGVuIHlvdSB0aGluayBpdCBzaG91bGQ6XG4gICogVHJ5IHJldmlzaW5nIHRoZSByZXF1ZXN0IChlLmcuLCBhIGRpZmZlcmVudCB0aW1lIHJhbmdlKS5cbiAgKiBUaGUgbGlzdCBvZiBzdGF0aW9ucyBvZmZlcmluZyB0aGlzIGRhdGEgbWF5IGJlIGluY29ycmVjdC5cbiAgKiBTb21ldGltZXMgYSBzdGF0aW9uIG9yIHRoZSBlbnRpcmUgZGF0YSBzZXJ2aWNlIGlzIHVuYXZhaWxhYmxlLlxuICAgIFdhaXQgYSB3aGlsZSBhbmQgdHJ5IGFnYWluLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvbklEIChTdGF0aW9uIElEKVxuc3RhdGlvbk5hbWUgKFN0YXRpb24gTmFtZSlcbnN0YXRlXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaGVmSUQgKFNIRUYgSUQpXG5kZXBsb3ltZW50IChEZXBsb3ltZW50IERlc2lnbmF0aW9uKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kY3AgKERhdGEgQ29sbGVjdGlvbiBQbGF0Zm9ybSlcbi4uLiAoNSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NDb29wc01CUF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zQ29vcHNNQlBfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm9zQ29vcHNNQlAvaW5kZXguanNvbiIsICJodHRwOi8vdGlkZXNhbmRjdXJyZW50cy5ub2FhLmdvdi8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm9zQ29vcHNNQlAucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPW5vc0Nvb3BzTUJQJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk9TIENPLU9QUyIsICJub3NDb29wc01CUCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01DLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01DIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzTUMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9TIENPLU9QUyBNZXRlb3JvbG9naWNhbCBEYXRhLCBDb25kdWN0aXZpdHksIDYtTWludXRlIiwgIlRoaXMgZGF0YXNldCBoYXMgQ29uZHVjdGl2aXR5IGRhdGEgZnJvbSBOT0FBIE5PUyBDZW50ZXIgZm9yIE9wZXJhdGlvbmFsXG5PY2Vhbm9ncmFwaGljIFByb2R1Y3RzIGFuZCBTZXJ2aWNlcyAoQ08tT1BTKS5cblxuV0FSTklORzogVGhlc2UgcHJlbGltaW5hcnkgZGF0YSBoYXZlIG5vdCBiZWVuIHN1YmplY3RlZCB0byB0aGUgTmF0aW9uYWwgT2NlYW5cblNlcnZpY2VzIChOT1MpIFF1YWxpdHkgQ29udHJvbCBwcm9jZWR1cmVzLCBhbmQgZG8gbm90IG5lY2Vzc2FyaWx5IG1lZXQgdGhlXG5jcml0ZXJpYSBhbmQgc3RhbmRhcmRzIG9mIG9mZmljaWFsIE5PUyBkYXRhLiBUaGV5IGFyZSByZWxlYXNlZCBmb3IgbGltaXRlZFxucHVibGljIHVzZSB3aXRoIGFwcHJvcHJpYXRlIGNhdXRpb24uXG5cbldBUk5JTkc6XG4qIFF1ZXJpZXMgZm9yIGRhdGEgTVVTVCBpbmNsdWRlIHN0YXRpb25JRD0gYW5kIHRpbWU+PS5cbiogUXVlcmllcyBVU1VBTExZIGluY2x1ZGUgdGltZTw9ICh0aGUgZGVmYXVsdCBlbmQgdGltZSBjb3JyZXNwb25kcyB0byAnbm93JykuXG4qIFF1ZXJpZXMgTVVTVCBiZSBmb3IgbGVzcyB0aGFuIDMwIGRheXMgd29ydGggb2YgZGF0YS5cbiogVGhlIGRhdGEgc291cmNlIGlzbid0IGNvbXBsZXRlbHkgcmVsaWFibGUuIElmIHlvdXIgcmVxdWVzdCByZXR1cm5zIG5vIGRhdGFcbiAgd2hlbiB5b3UgdGhpbmsgaXQgc2hvdWxkOlxuICAqIFRyeSByZXZpc2luZyB0aGUgcmVxdWVzdCAoZS5nLiwgYSBkaWZmZXJlbnQgdGltZSByYW5nZSkuXG4gICogVGhlIGxpc3Qgb2Ygc3RhdGlvbnMgb2ZmZXJpbmcgdGhpcyBkYXRhIG1heSBiZSBpbmNvcnJlY3QuXG4gICogU29tZXRpbWVzIGEgc3RhdGlvbiBvciB0aGUgZW50aXJlIGRhdGEgc2VydmljZSBpcyB1bmF2YWlsYWJsZS5cbiAgICBXYWl0IGEgd2hpbGUgYW5kIHRyeSBhZ2Fpbi5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb25JRCAoU3RhdGlvbiBJRClcbnN0YXRpb25OYW1lIChTdGF0aW9uIE5hbWUpXG5zdGF0ZVxuZGF0ZUVzdGFibGlzaGVkIChEYXRlIEVzdGFibGlzaGVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2hlZklEIChTSEVGIElEKVxuZGVwbG95bWVudCAoRGVwbG95bWVudCBEZXNpZ25hdGlvbilcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGNwIChEYXRhIENvbGxlY3Rpb24gUGxhdGZvcm0pXG4uLi4gKDUgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm9zQ29vcHNNQ19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zQ29vcHNNQ19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub3NDb29wc01DL2luZGV4Lmpzb24iLCAiaHR0cDovL3RpZGVzYW5kY3VycmVudHMubm9hYS5nb3YvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc0Nvb3BzTUMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPW5vc0Nvb3BzTUMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOT1MgQ08tT1BTIiwgIm5vc0Nvb3BzTUMiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNNUkYuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzTVJGIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzTVJGLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PUyBDTy1PUFMgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUmFpbiBGYWxsLCA2LU1pbnV0ZSIsICJUaGlzIGRhdGFzZXQgaGFzIFJhaW4gRmFsbCBkYXRhIGZyb20gTk9BQSBOT1MgQ2VudGVyIGZvciBPcGVyYXRpb25hbFxuT2NlYW5vZ3JhcGhpYyBQcm9kdWN0cyBhbmQgU2VydmljZXMgKENPLU9QUykuXG5cbldBUk5JTkc6IFRoZXNlIHByZWxpbWluYXJ5IGRhdGEgaGF2ZSBub3QgYmVlbiBzdWJqZWN0ZWQgdG8gdGhlIE5hdGlvbmFsIE9jZWFuXG5TZXJ2aWNlcyAoTk9TKSBRdWFsaXR5IENvbnRyb2wgcHJvY2VkdXJlcywgYW5kIGRvIG5vdCBuZWNlc3NhcmlseSBtZWV0IHRoZVxuY3JpdGVyaWEgYW5kIHN0YW5kYXJkcyBvZiBvZmZpY2lhbCBOT1MgZGF0YS4gVGhleSBhcmUgcmVsZWFzZWQgZm9yIGxpbWl0ZWRcbnB1YmxpYyB1c2Ugd2l0aCBhcHByb3ByaWF0ZSBjYXV0aW9uLlxuXG5XQVJOSU5HOlxuKiBRdWVyaWVzIGZvciBkYXRhIE1VU1QgaW5jbHVkZSBzdGF0aW9uSUQ9IGFuZCB0aW1lPj0uXG4qIFF1ZXJpZXMgVVNVQUxMWSBpbmNsdWRlIHRpbWU8PSAodGhlIGRlZmF1bHQgZW5kIHRpbWUgY29ycmVzcG9uZHMgdG8gJ25vdycpLlxuKiBRdWVyaWVzIE1VU1QgYmUgZm9yIGxlc3MgdGhhbiAzMCBkYXlzIHdvcnRoIG9mIGRhdGEuXG4qIFRoZSBkYXRhIHNvdXJjZSBpc24ndCBjb21wbGV0ZWx5IHJlbGlhYmxlLiBJZiB5b3VyIHJlcXVlc3QgcmV0dXJucyBubyBkYXRhXG4gIHdoZW4geW91IHRoaW5rIGl0IHNob3VsZDpcbiAgKiBUcnkgcmV2aXNpbmcgdGhlIHJlcXVlc3QgKGUuZy4sIGEgZGlmZmVyZW50IHRpbWUgcmFuZ2UpLlxuICAqIFRoZSBsaXN0IG9mIHN0YXRpb25zIG9mZmVyaW5nIHRoaXMgZGF0YSBtYXkgYmUgaW5jb3JyZWN0LlxuICAqIFNvbWV0aW1lcyBhIHN0YXRpb24gb3IgdGhlIGVudGlyZSBkYXRhIHNlcnZpY2UgaXMgdW5hdmFpbGFibGUuXG4gICAgV2FpdCBhIHdoaWxlIGFuZCB0cnkgYWdhaW4uXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5zdGF0aW9uSUQgKFN0YXRpb24gSUQpXG5zdGF0aW9uTmFtZSAoU3RhdGlvbiBOYW1lKVxuc3RhdGVcbmRhdGVFc3RhYmxpc2hlZCAoRGF0ZSBFc3RhYmxpc2hlZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNoZWZJRCAoU0hFRiBJRClcbmRlcGxveW1lbnQgKERlcGxveW1lbnQgRGVzaWduYXRpb24pXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRjcCAoRGF0YSBDb2xsZWN0aW9uIFBsYXRmb3JtKVxuLi4uICg0IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL25vc0Nvb3BzTVJGX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9ub3NDb29wc01SRl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub3NDb29wc01SRi9pbmRleC5qc29uIiwgImh0dHA6Ly90aWRlc2FuZGN1cnJlbnRzLm5vYWEuZ292LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9ub3NDb29wc01SRi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bm9zQ29vcHNNUkYmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOT1MgQ08tT1BTIiwgIm5vc0Nvb3BzTVJGIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzTVJILnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01SSCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01SSC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT1MgQ08tT1BTIE1ldGVvcm9sb2dpY2FsIERhdGEsIFJlbGF0aXZlIEh1bWlkaXR5LCA2LU1pbnV0ZSIsICJUaGlzIGRhdGFzZXQgaGFzIFJlbGF0aXZlIEh1bWlkaXR5IGRhdGEgZnJvbSBOT0FBIE5PUyBDZW50ZXIgZm9yIE9wZXJhdGlvbmFsXG5PY2Vhbm9ncmFwaGljIFByb2R1Y3RzIGFuZCBTZXJ2aWNlcyAoQ08tT1BTKS5cblxuV0FSTklORzogVGhlc2UgcHJlbGltaW5hcnkgZGF0YSBoYXZlIG5vdCBiZWVuIHN1YmplY3RlZCB0byB0aGUgTmF0aW9uYWwgT2NlYW5cblNlcnZpY2VzIChOT1MpIFF1YWxpdHkgQ29udHJvbCBwcm9jZWR1cmVzLCBhbmQgZG8gbm90IG5lY2Vzc2FyaWx5IG1lZXQgdGhlXG5jcml0ZXJpYSBhbmQgc3RhbmRhcmRzIG9mIG9mZmljaWFsIE5PUyBkYXRhLiBUaGV5IGFyZSByZWxlYXNlZCBmb3IgbGltaXRlZFxucHVibGljIHVzZSB3aXRoIGFwcHJvcHJpYXRlIGNhdXRpb24uXG5cbldBUk5JTkc6XG4qIFF1ZXJpZXMgZm9yIGRhdGEgTVVTVCBpbmNsdWRlIHN0YXRpb25JRD0gYW5kIHRpbWU+PS5cbiogUXVlcmllcyBVU1VBTExZIGluY2x1ZGUgdGltZTw9ICh0aGUgZGVmYXVsdCBlbmQgdGltZSBjb3JyZXNwb25kcyB0byAnbm93JykuXG4qIFF1ZXJpZXMgTVVTVCBiZSBmb3IgbGVzcyB0aGFuIDMwIGRheXMgd29ydGggb2YgZGF0YS5cbiogVGhlIGRhdGEgc291cmNlIGlzbid0IGNvbXBsZXRlbHkgcmVsaWFibGUuIElmIHlvdXIgcmVxdWVzdCByZXR1cm5zIG5vIGRhdGFcbiAgd2hlbiB5b3UgdGhpbmsgaXQgc2hvdWxkOlxuICAqIFRyeSByZXZpc2luZyB0aGUgcmVxdWVzdCAoZS5nLiwgYSBkaWZmZXJlbnQgdGltZSByYW5nZSkuXG4gICogVGhlIGxpc3Qgb2Ygc3RhdGlvbnMgb2ZmZXJpbmcgdGhpcyBkYXRhIG1heSBiZSBpbmNvcnJlY3QuXG4gICogU29tZXRpbWVzIGEgc3RhdGlvbiBvciB0aGUgZW50aXJlIGRhdGEgc2VydmljZSBpcyB1bmF2YWlsYWJsZS5cbiAgICBXYWl0IGEgd2hpbGUgYW5kIHRyeSBhZ2Fpbi5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb25JRCAoU3RhdGlvbiBJRClcbnN0YXRpb25OYW1lIChTdGF0aW9uIE5hbWUpXG5zdGF0ZVxuZGF0ZUVzdGFibGlzaGVkIChEYXRlIEVzdGFibGlzaGVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2hlZklEIChTSEVGIElEKVxuZGVwbG95bWVudCAoRGVwbG95bWVudCBEZXNpZ25hdGlvbilcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGNwIChEYXRhIENvbGxlY3Rpb24gUGxhdGZvcm0pXG4uLi4gKDUgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm9zQ29vcHNNUkhfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc0Nvb3BzTVJIX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL25vc0Nvb3BzTVJIL2luZGV4Lmpzb24iLCAiaHR0cDovL3RpZGVzYW5kY3VycmVudHMubm9hYS5nb3YvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc0Nvb3BzTVJILnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NDb29wc01SSCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyBDTy1PUFMiLCAibm9zQ29vcHNNUkgiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNNVi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNNViIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01WLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PUyBDTy1PUFMgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgVmlzaWJpbGl0eSwgNi1NaW51dGUiLCAiVGhpcyBkYXRhc2V0IGhhcyBWaXNpYmlsaXR5IGRhdGEgZnJvbSBOT0FBIE5PUyBDZW50ZXIgZm9yIE9wZXJhdGlvbmFsXG5PY2Vhbm9ncmFwaGljIFByb2R1Y3RzIGFuZCBTZXJ2aWNlcyAoQ08tT1BTKS5cblxuV0FSTklORzogVGhlc2UgcHJlbGltaW5hcnkgZGF0YSBoYXZlIG5vdCBiZWVuIHN1YmplY3RlZCB0byB0aGUgTmF0aW9uYWwgT2NlYW5cblNlcnZpY2VzIChOT1MpIFF1YWxpdHkgQ29udHJvbCBwcm9jZWR1cmVzLCBhbmQgZG8gbm90IG5lY2Vzc2FyaWx5IG1lZXQgdGhlXG5jcml0ZXJpYSBhbmQgc3RhbmRhcmRzIG9mIG9mZmljaWFsIE5PUyBkYXRhLiBUaGV5IGFyZSByZWxlYXNlZCBmb3IgbGltaXRlZFxucHVibGljIHVzZSB3aXRoIGFwcHJvcHJpYXRlIGNhdXRpb24uXG5cbldBUk5JTkc6XG4qIFF1ZXJpZXMgZm9yIGRhdGEgTVVTVCBpbmNsdWRlIHN0YXRpb25JRD0gYW5kIHRpbWU+PS5cbiogUXVlcmllcyBVU1VBTExZIGluY2x1ZGUgdGltZTw9ICh0aGUgZGVmYXVsdCBlbmQgdGltZSBjb3JyZXNwb25kcyB0byAnbm93JykuXG4qIFF1ZXJpZXMgTVVTVCBiZSBmb3IgbGVzcyB0aGFuIDMwIGRheXMgd29ydGggb2YgZGF0YS5cbiogVGhlIGRhdGEgc291cmNlIGlzbid0IGNvbXBsZXRlbHkgcmVsaWFibGUuIElmIHlvdXIgcmVxdWVzdCByZXR1cm5zIG5vIGRhdGFcbiAgd2hlbiB5b3UgdGhpbmsgaXQgc2hvdWxkOlxuICAqIFRyeSByZXZpc2luZyB0aGUgcmVxdWVzdCAoZS5nLiwgYSBkaWZmZXJlbnQgdGltZSByYW5nZSkuXG4gICogVGhlIGxpc3Qgb2Ygc3RhdGlvbnMgb2ZmZXJpbmcgdGhpcyBkYXRhIG1heSBiZSBpbmNvcnJlY3QuXG4gICogU29tZXRpbWVzIGEgc3RhdGlvbiBvciB0aGUgZW50aXJlIGRhdGEgc2VydmljZSBpcyB1bmF2YWlsYWJsZS5cbiAgICBXYWl0IGEgd2hpbGUgYW5kIHRyeSBhZ2Fpbi5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb25JRCAoU3RhdGlvbiBJRClcbnN0YXRpb25OYW1lIChTdGF0aW9uIE5hbWUpXG5zdGF0ZVxuZGF0ZUVzdGFibGlzaGVkIChEYXRlIEVzdGFibGlzaGVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2hlZklEIChTSEVGIElEKVxuZGVwbG95bWVudCAoRGVwbG95bWVudCBEZXNpZ25hdGlvbilcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuVmlzIChWaXNpYmlsaXR5IGluIEFpciwgbmF1dGljYWxfbWlsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm9zQ29vcHNNVl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zQ29vcHNNVl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub3NDb29wc01WL2luZGV4Lmpzb24iLCAiaHR0cDovL3RpZGVzYW5kY3VycmVudHMubm9hYS5nb3YvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc0Nvb3BzTVYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPW5vc0Nvb3BzTVYmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOT1MgQ08tT1BTIiwgIm5vc0Nvb3BzTVYiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNNV1Quc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzTVdUIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzTVdULmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PUyBDTy1PUFMgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgV2F0ZXIgVGVtcGVyYXR1cmUsIDYtTWludXRlIiwgIlRoaXMgZGF0YXNldCBoYXMgV2F0ZXIgVGVtcGVyYXR1cmUgZGF0YSBmcm9tIE5PQUEgTk9TIENlbnRlciBmb3IgT3BlcmF0aW9uYWxcbk9jZWFub2dyYXBoaWMgUHJvZHVjdHMgYW5kIFNlcnZpY2VzIChDTy1PUFMpLlxuXG5XQVJOSU5HOiBUaGVzZSBwcmVsaW1pbmFyeSBkYXRhIGhhdmUgbm90IGJlZW4gc3ViamVjdGVkIHRvIHRoZSBOYXRpb25hbCBPY2VhblxuU2VydmljZXMgKE5PUykgUXVhbGl0eSBDb250cm9sIHByb2NlZHVyZXMsIGFuZCBkbyBub3QgbmVjZXNzYXJpbHkgbWVldCB0aGVcbmNyaXRlcmlhIGFuZCBzdGFuZGFyZHMgb2Ygb2ZmaWNpYWwgTk9TIGRhdGEuIFRoZXkgYXJlIHJlbGVhc2VkIGZvciBsaW1pdGVkXG5wdWJsaWMgdXNlIHdpdGggYXBwcm9wcmlhdGUgY2F1dGlvbi5cblxuV0FSTklORzpcbiogUXVlcmllcyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgc3RhdGlvbklEPSBhbmQgdGltZT49LlxuKiBRdWVyaWVzIFVTVUFMTFkgaW5jbHVkZSB0aW1lPD0gKHRoZSBkZWZhdWx0IGVuZCB0aW1lIGNvcnJlc3BvbmRzIHRvICdub3cnKS5cbiogUXVlcmllcyBNVVNUIGJlIGZvciBsZXNzIHRoYW4gMzAgZGF5cyB3b3J0aCBvZiBkYXRhLlxuKiBUaGUgZGF0YSBzb3VyY2UgaXNuJ3QgY29tcGxldGVseSByZWxpYWJsZS4gSWYgeW91ciByZXF1ZXN0IHJldHVybnMgbm8gZGF0YVxuICB3aGVuIHlvdSB0aGluayBpdCBzaG91bGQ6XG4gICogVHJ5IHJldmlzaW5nIHRoZSByZXF1ZXN0IChlLmcuLCBhIGRpZmZlcmVudCB0aW1lIHJhbmdlKS5cbiAgKiBUaGUgbGlzdCBvZiBzdGF0aW9ucyBvZmZlcmluZyB0aGlzIGRhdGEgbWF5IGJlIGluY29ycmVjdC5cbiAgKiBTb21ldGltZXMgYSBzdGF0aW9uIG9yIHRoZSBlbnRpcmUgZGF0YSBzZXJ2aWNlIGlzIHVuYXZhaWxhYmxlLlxuICAgIFdhaXQgYSB3aGlsZSBhbmQgdHJ5IGFnYWluLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvbklEIChTdGF0aW9uIElEKVxuc3RhdGlvbk5hbWUgKFN0YXRpb24gTmFtZSlcbnN0YXRlXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaGVmSUQgKFNIRUYgSUQpXG5kZXBsb3ltZW50IChEZXBsb3ltZW50IERlc2lnbmF0aW9uKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kY3AgKERhdGEgQ29sbGVjdGlvbiBQbGF0Zm9ybSlcbi4uLiAoNSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NDb29wc01XVF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zQ29vcHNNV1RfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm9zQ29vcHNNV1QvaW5kZXguanNvbiIsICJodHRwOi8vdGlkZXNhbmRjdXJyZW50cy5ub2FhLmdvdi8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm9zQ29vcHNNV1QucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPW5vc0Nvb3BzTVdUJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk9TIENPLU9QUyIsICJub3NDb29wc01XVCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01XLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01XIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzTVcuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9TIENPLU9QUyBNZXRlb3JvbG9naWNhbCBEYXRhLCBXaW5kLCA2LU1pbnV0ZSIsICJUaGlzIGRhdGFzZXQgaGFzIFdpbmQgZGF0YSBmcm9tIE5PQUEgTk9TIENlbnRlciBmb3IgT3BlcmF0aW9uYWwgT2NlYW5vZ3JhcGhpY1xuUHJvZHVjdHMgYW5kIFNlcnZpY2VzIChDTy1PUFMpLlxuXG5XQVJOSU5HOiBUaGVzZSBwcmVsaW1pbmFyeSBkYXRhIGhhdmUgbm90IGJlZW4gc3ViamVjdGVkIHRvIHRoZSBOYXRpb25hbCBPY2VhblxuU2VydmljZXMgKE5PUykgUXVhbGl0eSBDb250cm9sIHByb2NlZHVyZXMsIGFuZCBkbyBub3QgbmVjZXNzYXJpbHkgbWVldCB0aGVcbmNyaXRlcmlhIGFuZCBzdGFuZGFyZHMgb2Ygb2ZmaWNpYWwgTk9TIGRhdGEuIFRoZXkgYXJlIHJlbGVhc2VkIGZvciBsaW1pdGVkXG5wdWJsaWMgdXNlIHdpdGggYXBwcm9wcmlhdGUgY2F1dGlvbi5cblxuV0FSTklORzpcbiogUXVlcmllcyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgc3RhdGlvbklEPSBhbmQgdGltZT49LlxuKiBRdWVyaWVzIFVTVUFMTFkgaW5jbHVkZSB0aW1lPD0gKHRoZSBkZWZhdWx0IGVuZCB0aW1lIGNvcnJlc3BvbmRzIHRvICdub3cnKS5cbiogUXVlcmllcyBNVVNUIGJlIGZvciBsZXNzIHRoYW4gMzAgZGF5cyB3b3J0aCBvZiBkYXRhLlxuKiBUaGUgZGF0YSBzb3VyY2UgaXNuJ3QgY29tcGxldGVseSByZWxpYWJsZS4gSWYgeW91ciByZXF1ZXN0IHJldHVybnMgbm8gZGF0YVxuICB3aGVuIHlvdSB0aGluayBpdCBzaG91bGQ6XG4gICogVHJ5IHJldmlzaW5nIHRoZSByZXF1ZXN0IChlLmcuLCBhIGRpZmZlcmVudCB0aW1lIHJhbmdlKS5cbiAgKiBUaGUgbGlzdCBvZiBzdGF0aW9ucyBvZmZlcmluZyB0aGlzIGRhdGEgbWF5IGJlIGluY29ycmVjdC5cbiAgKiBTb21ldGltZXMgYSBzdGF0aW9uIG9yIHRoZSBlbnRpcmUgZGF0YSBzZXJ2aWNlIGlzIHVuYXZhaWxhYmxlLlxuICAgIFdhaXQgYSB3aGlsZSBhbmQgdHJ5IGFnYWluLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvbklEIChTdGF0aW9uIElEKVxuc3RhdGlvbk5hbWUgKFN0YXRpb24gTmFtZSlcbnN0YXRlXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaGVmSUQgKFNIRUYgSUQpXG5kZXBsb3ltZW50IChEZXBsb3ltZW50IERlc2lnbmF0aW9uKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kY3AgKERhdGEgQ29sbGVjdGlvbiBQbGF0Zm9ybSlcbi4uLiAoNiBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NDb29wc01XX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9ub3NDb29wc01XX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL25vc0Nvb3BzTVcvaW5kZXguanNvbiIsICJodHRwOi8vdGlkZXNhbmRjdXJyZW50cy5ub2FhLmdvdi8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm9zQ29vcHNNVy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bm9zQ29vcHNNVyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyBDTy1PUFMiLCAibm9zQ29vcHNNVyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc1dMVFBITC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFRQSEwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFRQSEwuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9TIENPLU9QUyBXYXRlciBMZXZlbCBEYXRhLCBIaWdoIExvdyBUaWRlIFByZWRpY3Rpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBIaWdoIExvdyBUaWRlIFByZWRpY3Rpb25zIGZyb20gTk9BQSBOT1MgQ2VudGVyIGZvciBPcGVyYXRpb25hbFxuT2NlYW5vZ3JhcGhpYyBQcm9kdWN0cyBhbmQgU2VydmljZXMgKENPLU9QUykuXG5cblRoZSBvZmZpY2lhbCBUaWRlIGFuZCBUaWRhbCBDdXJyZW50IHByZWRpY3Rpb24gdGFibGVzIGFyZSBwdWJsaXNoZWQgYW5udWFsbHkgb25cbk9jdG9iZXIgMSwgZm9yIHRoZSBmb2xsb3dpbmcgY2FsZW5kYXIgeWVhci4gVGlkZSBhbmQgVGlkYWwgQ3VycmVudCBwcmVkaWN0aW9uc1xuZ2VuZXJhdGVkIHByaW9yIHRvIHRoZSBwdWJsaXNoaW5nIGRhdGUgb2YgdGhlIG9mZmljaWFsIHRhYmxlcyBhcmUgc3ViamVjdCB0b1xuY2hhbmdlLiBUaGUgZW5jbG9zZWQgZGF0YSBhcmUgYmFzZWQgdXBvbiB0aGUgbGF0ZXN0IGluZm9ybWF0aW9uIGF2YWlsYWJsZSBhcyBvZlxudGhlIGRhdGUgb2YgeW91ciByZXF1ZXN0LiBUaWRlIGFuZCBUaWRhbCBDdXJyZW50IHByZWRpY3Rpb25zIGdlbmVyYXRlZCBtYXlcbmRpZmZlciBmcm9tIHRoZSBvZmZpY2lhbCBwcmVkaWN0aW9ucyBpZiBpbmZvcm1hdGlvbiBmb3IgdGhlIHN0YXRpb24gcmVxdWVzdGVkXG5oYXMgYmVlbiB1cGRhdGVkIHNpbmNlIHRoZSBwdWJsaXNoaW5nIGRhdGUgb2YgdGhlIG9mZmljaWFsIHRhYmxlcy5cblxuV0FSTklORzpcbiogUXVlcmllcyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgc3RhdGlvbklEPSwgdGltZT49IGFuZCB0aW1lPD0uXG4gIFF1ZXJpZXMgTVVTVCBiZSBmb3IgbGVzcyB0aGFuIDMwIGRheXMgd29ydGggb2YgZGF0YS5cbiogVGhpcyBkYXRhc2V0IG9ubHkgcmV0dXJucyBkYXRhIGZvciB0aGUgTUxMVyAoTWVhbiBMb3dlci1Mb3cgV2F0ZXIpIGRhdHVtLlxuKiBUaGUgZGF0YSBzb3VyY2UgaXNuJ3QgY29tcGxldGVseSByZWxpYWJsZS4gSWYgeW91ciByZXF1ZXN0IHJldHVybnMgbm8gZGF0YVxuICB3aGVuIHlvdSB0aGluayBpdCBzaG91bGQ6XG4gICogVHJ5IHJldmlzaW5nIHRoZSByZXF1ZXN0IChlLmcuLCBhIGRpZmZlcmVudCB0aW1lIHJhbmdlKS5cbiAgKiBUaGUgbGlzdCBvZiBzdGF0aW9ucyBvZmZlcmluZyB0aGlzIGRhdGEgbWF5IGJlIGluY29ycmVjdC5cbiAgKiBTb21ldGltZXMgYSBzdGF0aW9uIG9yIHRoZSBlbnRpcmUgZGF0YSBzZXJ2aWNlIGlzIHVuYXZhaWxhYmxlLlxuICAgIFdhaXQgYSB3aGlsZSBhbmQgdHJ5IGFnYWluLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvbklEIChTdGF0aW9uIElEKVxuc3RhdGlvbk5hbWUgKFN0YXRpb24gTmFtZSlcbnN0YXRlXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaGVmSUQgKFNIRUYgSUQpXG5kZXBsb3ltZW50IChEZXBsb3ltZW50IERlc2lnbmF0aW9uKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDUgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm9zQ29vcHNXTFRQSExfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc0Nvb3BzV0xUUEhMX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL25vc0Nvb3BzV0xUUEhML2luZGV4Lmpzb24iLCAiaHR0cDovL3RpZGVzYW5kY3VycmVudHMubm9hYS5nb3YvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc0Nvb3BzV0xUUEhMLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NDb29wc1dMVFBITCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyBDTy1PUFMiLCAibm9zQ29vcHNXTFRQSEwiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFIxLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc1dMUjEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFIxLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PUyBDTy1PUFMgV2F0ZXIgTGV2ZWwgRGF0YSwgUHJlbGltaW5hcnksIDEtTWludXRlIiwgIlRoaXMgZGF0YXNldCBoYXMgcmVjZW50LCBwcmVsaW1pbmFyeSAobm90IHF1YWxpdHktY29udHJvbGxlZCksIDEtbWludXRlLCB3YXRlciBsZXZlbFxuKHRpZGUpIGRhdGEgZnJvbSBOT0FBIE5PUyBDZW50ZXIgZm9yIE9wZXJhdGlvbmFsIE9jZWFub2dyYXBoaWMgUHJvZHVjdHMgYW5kIFNlcnZpY2VzXG4oQ08tT1BTKS5cblxuV0FSTklORzogVGhlc2UgcmF3IGRhdGEgaGF2ZSBub3QgYmVlbiBzdWJqZWN0ZWQgdG8gdGhlIE5hdGlvbmFsIE9jZWFuIFNlcnZpY2Unc1xucXVhbGl0eSBjb250cm9sIG9yIHF1YWxpdHkgYXNzdXJhbmNlIHByb2NlZHVyZXMgYW5kIGRvIG5vdCBtZWV0IHRoZSBjcml0ZXJpYSBhbmRcbnN0YW5kYXJkcyBvZiBvZmZpY2lhbCBOYXRpb25hbCBPY2VhbiBTZXJ2aWNlIGRhdGEuIFRoZXkgYXJlIHJlbGVhc2VkIGZvciBsaW1pdGVkXG5wdWJsaWMgdXNlIGFzIHByZWxpbWluYXJ5IGRhdGEgdG8gYmUgdXNlZCBvbmx5IHdpdGggYXBwcm9wcmlhdGUgY2F1dGlvbi5cblxuV0FSTklORzpcbiogUXVlcmllcyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgc3RhdGlvbklEPSwgZGF0dW09LCBhbmQgdGltZT49LlxuKiBRdWVyaWVzIGZvciBkYXRhIFVTVUFMTFkgaW5jbHVkZSB0aW1lPD0uXG4qIFF1ZXJpZXMgTVVTVCBiZSBmb3IgbGVzcyB0aGFuIDMwIGRheXMgd29ydGggb2YgZGF0YS5cbiAgVGhlIGRlZmF1bHQgdGltZTw9IHZhbHVlIGNvcnJlc3BvbmRzIHRvICdub3cnLlxuKiBEaWZmZXJlbnQgc3RhdGlvbnMgc3VwcG9ydCBkaWZmZXJlbnQgZGF0dW1zLlxuICBVc2UgRVJEREFQJ3MgU3Vic2V0IHdlYiBwYWdlIHRvIGZpbmQgb3V0IHdoaWNoIGRhdHVtcyBhIGdpdmVuIHN0YXRpb24gc3VwcG9ydHMuXG4qIFRoZSBkYXRhIHNvdXJjZSBpc24ndCBjb21wbGV0ZWx5IHJlbGlhYmxlLiBJZiB5b3VyIHJlcXVlc3QgcmV0dXJucyBubyBkYXRhXG4gIHdoZW4geW91IHRoaW5rIGl0IHNob3VsZDpcbiAgKiBNYWtlIHN1cmUgdGhlIHN0YXRpb24geW91IHNwZWNpZmllZCBzdXBwb3J0cyB0aGUgZGF0dW0geW91IHNwZWNpZmllZC5cbiAgKiBUcnkgcmV2aXNpbmcgdGhlIHJlcXVlc3QgKGUuZy4sIGEgZGlmZmVyZW50IGRhdHVtIG9yIGEgZGlmZmVyZW50IHRpbWUgcmFuZ2UpLlxuICAqIFRoZSBsaXN0IG9mIHN0YXRpb25zIG9mZmVyaW5nIHRoaXMgZGF0YSAob3IgdGhlIGxpc3Qgb2YgZGF0dW1zKSBtYXkgYmUgaW5jb3JyZWN0LlxuICAqIFNvbWV0aW1lcyBhIHN0YXRpb24gb3IgdGhlIGVudGlyZSBkYXRhIHNlcnZpY2UgaXMgdW5hdmFpbGFibGUuXG4gICAgV2FpdCBhIHdoaWxlIGFuZCB0cnkgYWdhaW4uXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5zdGF0aW9uSUQgKFN0YXRpb24gSUQpXG5zdGF0aW9uTmFtZSAoU3RhdGlvbiBOYW1lKVxuc3RhdGVcbmRhdGVFc3RhYmxpc2hlZCAoRGF0ZSBFc3RhYmxpc2hlZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNoZWZJRCAoU0hFRiBJRClcbi4uLiAoOCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NDb29wc1dMUjFfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc0Nvb3BzV0xSMV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub3NDb29wc1dMUjEvaW5kZXguanNvbiIsICJodHRwOi8vdGlkZXNhbmRjdXJyZW50cy5ub2FhLmdvdi8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm9zQ29vcHNXTFIxLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NDb29wc1dMUjEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOT1MgQ08tT1BTIiwgIm5vc0Nvb3BzV0xSMSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc1dMUjYuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzV0xSNiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc1dMUjYuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9TIENPLU9QUyBXYXRlciBMZXZlbCBEYXRhLCBQcmVsaW1pbmFyeSwgNi1NaW51dGUiLCAiVGhpcyBkYXRhc2V0IGhhcyByZWNlbnQsIHByZWxpbWluYXJ5IChub3QgcXVhbGl0eS1jb250cm9sbGVkKSwgNi1taW51dGUsIHdhdGVyIGxldmVsXG4odGlkZSkgZGF0YSBmcm9tIE5PQUEgTk9TIENlbnRlciBmb3IgT3BlcmF0aW9uYWwgT2NlYW5vZ3JhcGhpYyBQcm9kdWN0cyBhbmQgU2VydmljZXNcbihDTy1PUFMpLlxuXG5XQVJOSU5HOiBUaGVzZSByYXcgZGF0YSBoYXZlIG5vdCBiZWVuIHN1YmplY3RlZCB0byB0aGUgTmF0aW9uYWwgT2NlYW4gU2VydmljZSdzXG5xdWFsaXR5IGNvbnRyb2wgb3IgcXVhbGl0eSBhc3N1cmFuY2UgcHJvY2VkdXJlcyBhbmQgZG8gbm90IG1lZXQgdGhlIGNyaXRlcmlhIGFuZFxuc3RhbmRhcmRzIG9mIG9mZmljaWFsIE5hdGlvbmFsIE9jZWFuIFNlcnZpY2UgZGF0YS4gVGhleSBhcmUgcmVsZWFzZWQgZm9yIGxpbWl0ZWRcbnB1YmxpYyB1c2UgYXMgcHJlbGltaW5hcnkgZGF0YSB0byBiZSB1c2VkIG9ubHkgd2l0aCBhcHByb3ByaWF0ZSBjYXV0aW9uLlxuXG5XQVJOSU5HOlxuKiBRdWVyaWVzIGZvciBkYXRhIE1VU1QgaW5jbHVkZSBzdGF0aW9uSUQ9LCBkYXR1bT0sIHRpbWU+PS5cbiogUXVlcmllcyBmb3IgZGF0YSBVU1VBTExZIGluY2x1ZGUgdGltZTw9LlxuKiBRdWVyaWVzIE1VU1QgYmUgZm9yIGxlc3MgdGhhbiAzMCBkYXlzIHdvcnRoIG9mIGRhdGEuXG4gIFRoZSBkZWZhdWx0IHRpbWU8PSB2YWx1ZSBjb3JyZXNwb25kcyB0byAnbm93Jy5cbiogRGlmZmVyZW50IHN0YXRpb25zIHN1cHBvcnQgZGlmZmVyZW50IGRhdHVtcy5cbiAgVXNlIEVSRERBUCdzIFN1YnNldCB3ZWIgcGFnZSB0byBmaW5kIG91dCB3aGljaCBkYXR1bXMgYSBnaXZlbiBzdGF0aW9uIHN1cHBvcnRzLlxuKiBUaGUgZGF0YSBzb3VyY2UgaXNuJ3QgY29tcGxldGVseSByZWxpYWJsZS4gSWYgeW91ciByZXF1ZXN0IHJldHVybnMgbm8gZGF0YVxuICB3aGVuIHlvdSB0aGluayBpdCBzaG91bGQ6XG4gICogTWFrZSBzdXJlIHRoZSBzdGF0aW9uIHlvdSBzcGVjaWZpZWQgc3VwcG9ydHMgdGhlIGRhdHVtIHlvdSBzcGVjaWZpZWQuXG4gICogVHJ5IHJldmlzaW5nIHRoZSByZXF1ZXN0IChlLmcuLCBhIGRpZmZlcmVudCBkYXR1bSBvciBhIGRpZmZlcmVudCB0aW1lIHJhbmdlKS5cbiAgKiBUaGUgbGlzdCBvZiBzdGF0aW9ucyBvZmZlcmluZyB0aGlzIGRhdGEgKG9yIHRoZSBsaXN0IG9mIGRhdHVtcykgbWF5IGJlIGluY29ycmVjdC5cbiAgKiBTb21ldGltZXMgYSBzdGF0aW9uIG9yIHRoZSBlbnRpcmUgZGF0YSBzZXJ2aWNlIGlzIHVuYXZhaWxhYmxlLlxuICAgIFdhaXQgYSB3aGlsZSBhbmQgdHJ5IGFnYWluLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvbklEIChTdGF0aW9uIElEKVxuc3RhdGlvbk5hbWUgKFN0YXRpb24gTmFtZSlcbnN0YXRlXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaGVmSUQgKFNIRUYgSUQpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL25vc0Nvb3BzV0xSNl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zQ29vcHNXTFI2X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL25vc0Nvb3BzV0xSNi9pbmRleC5qc29uIiwgImh0dHA6Ly90aWRlc2FuZGN1cnJlbnRzLm5vYWEuZ292LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9ub3NDb29wc1dMUjYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPW5vc0Nvb3BzV0xSNiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyBDTy1PUFMiLCAibm9zQ29vcHNXTFI2Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzV0xUUDYuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzV0xUUDYiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFRQNi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT1MgQ08tT1BTIFdhdGVyIExldmVsIERhdGEsIFRpZGUgUHJlZGljdGlvbiwgNi1NaW51dGUiLCAiVGhpcyBkYXRhc2V0IGhhcyBIaWdoIExvdyBUaWRlIFByZWRpY3Rpb25zIGZyb20gTk9BQSBOT1MgQ2VudGVyIGZvciBPcGVyYXRpb25hbFxuT2NlYW5vZ3JhcGhpYyBQcm9kdWN0cyBhbmQgU2VydmljZXMgKENPLU9QUykuXG5cblRoZSBvZmZpY2lhbCBUaWRlIGFuZCBUaWRhbCBDdXJyZW50IHByZWRpY3Rpb24gdGFibGVzIGFyZSBwdWJsaXNoZWQgYW5udWFsbHkgb25cbk9jdG9iZXIgMSwgZm9yIHRoZSBmb2xsb3dpbmcgY2FsZW5kYXIgeWVhci4gVGlkZSBhbmQgVGlkYWwgQ3VycmVudCBwcmVkaWN0aW9uc1xuZ2VuZXJhdGVkIHByaW9yIHRvIHRoZSBwdWJsaXNoaW5nIGRhdGUgb2YgdGhlIG9mZmljaWFsIHRhYmxlcyBhcmUgc3ViamVjdCB0b1xuY2hhbmdlLiBUaGUgZW5jbG9zZWQgZGF0YSBhcmUgYmFzZWQgdXBvbiB0aGUgbGF0ZXN0IGluZm9ybWF0aW9uIGF2YWlsYWJsZSBhcyBvZlxudGhlIGRhdGUgb2YgeW91ciByZXF1ZXN0LiBUaWRlIGFuZCBUaWRhbCBDdXJyZW50IHByZWRpY3Rpb25zIGdlbmVyYXRlZCBtYXlcbmRpZmZlciBmcm9tIHRoZSBvZmZpY2lhbCBwcmVkaWN0aW9ucyBpZiBpbmZvcm1hdGlvbiBmb3IgdGhlIHN0YXRpb24gcmVxdWVzdGVkXG5oYXMgYmVlbiB1cGRhdGVkIHNpbmNlIHRoZSBwdWJsaXNoaW5nIGRhdGUgb2YgdGhlIG9mZmljaWFsIHRhYmxlcy5cblxuV0FSTklORzpcbiogUXVlcmllcyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgc3RhdGlvbklEPSwgdGltZT49IGFuZCB0aW1lPD0uXG4gIFF1ZXJpZXMgTVVTVCBiZSBmb3IgbGVzcyB0aGFuIDMwIGRheXMgd29ydGggb2YgZGF0YS5cbiogVGhpcyBkYXRhc2V0IG9ubHkgcmV0dXJucyBkYXRhIGZvciB0aGUgTUxMVyAoTWVhbiBMb3dlci1Mb3cgV2F0ZXIpIGRhdHVtLlxuKiBUaGUgZGF0YSBzb3VyY2UgaXNuJ3QgY29tcGxldGVseSByZWxpYWJsZS4gSWYgeW91ciByZXF1ZXN0IHJldHVybnMgbm8gZGF0YVxuICB3aGVuIHlvdSB0aGluayBpdCBzaG91bGQ6XG4gICogVHJ5IHJldmlzaW5nIHRoZSByZXF1ZXN0IChlLmcuLCBhIGRpZmZlcmVudCB0aW1lIHJhbmdlKS5cbiAgKiBUaGUgbGlzdCBvZiBzdGF0aW9ucyBvZmZlcmluZyB0aGlzIGRhdGEgbWF5IGJlIGluY29ycmVjdC5cbiAgKiBTb21ldGltZXMgYSBzdGF0aW9uIG9yIHRoZSBlbnRpcmUgZGF0YSBzZXJ2aWNlIGlzIHVuYXZhaWxhYmxlLlxuICAgIFdhaXQgYSB3aGlsZSBhbmQgdHJ5IGFnYWluLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvbklEIChTdGF0aW9uIElEKVxuc3RhdGlvbk5hbWUgKFN0YXRpb24gTmFtZSlcbnN0YXRlXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaGVmSUQgKFNIRUYgSUQpXG5kZXBsb3ltZW50IChEZXBsb3ltZW50IERlc2lnbmF0aW9uKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDQgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm9zQ29vcHNXTFRQNl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zQ29vcHNXTFRQNl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub3NDb29wc1dMVFA2L2luZGV4Lmpzb24iLCAiaHR0cDovL3RpZGVzYW5kY3VycmVudHMubm9hYS5nb3YvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc0Nvb3BzV0xUUDYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPW5vc0Nvb3BzV0xUUDYmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOT1MgQ08tT1BTIiwgIm5vc0Nvb3BzV0xUUDYiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFRQNjAuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzV0xUUDYwIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzV0xUUDYwLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PUyBDTy1PUFMgV2F0ZXIgTGV2ZWwgRGF0YSwgVGlkZSBQcmVkaWN0aW9uLCA2MC1NaW51dGUiLCAiVGhpcyBkYXRhc2V0IGhhcyBIaWdoIExvdyBUaWRlIFByZWRpY3Rpb25zIGZyb20gTk9BQSBOT1MgQ2VudGVyIGZvciBPcGVyYXRpb25hbFxuT2NlYW5vZ3JhcGhpYyBQcm9kdWN0cyBhbmQgU2VydmljZXMgKENPLU9QUykuXG5cblRoZSBvZmZpY2lhbCBUaWRlIGFuZCBUaWRhbCBDdXJyZW50IHByZWRpY3Rpb24gdGFibGVzIGFyZSBwdWJsaXNoZWQgYW5udWFsbHkgb25cbk9jdG9iZXIgMSwgZm9yIHRoZSBmb2xsb3dpbmcgY2FsZW5kYXIgeWVhci4gVGlkZSBhbmQgVGlkYWwgQ3VycmVudCBwcmVkaWN0aW9uc1xuZ2VuZXJhdGVkIHByaW9yIHRvIHRoZSBwdWJsaXNoaW5nIGRhdGUgb2YgdGhlIG9mZmljaWFsIHRhYmxlcyBhcmUgc3ViamVjdCB0b1xuY2hhbmdlLiBUaGUgZW5jbG9zZWQgZGF0YSBhcmUgYmFzZWQgdXBvbiB0aGUgbGF0ZXN0IGluZm9ybWF0aW9uIGF2YWlsYWJsZSBhcyBvZlxudGhlIGRhdGUgb2YgeW91ciByZXF1ZXN0LiBUaWRlIGFuZCBUaWRhbCBDdXJyZW50IHByZWRpY3Rpb25zIGdlbmVyYXRlZCBtYXlcbmRpZmZlciBmcm9tIHRoZSBvZmZpY2lhbCBwcmVkaWN0aW9ucyBpZiBpbmZvcm1hdGlvbiBmb3IgdGhlIHN0YXRpb24gcmVxdWVzdGVkXG5oYXMgYmVlbiB1cGRhdGVkIHNpbmNlIHRoZSBwdWJsaXNoaW5nIGRhdGUgb2YgdGhlIG9mZmljaWFsIHRhYmxlcy5cblxuV0FSTklORzpcbiogUXVlcmllcyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgc3RhdGlvbklEPSwgdGltZT49IGFuZCB0aW1lPD0uXG4gIFF1ZXJpZXMgTVVTVCBiZSBmb3IgbGVzcyB0aGFuIDMwIGRheXMgd29ydGggb2YgZGF0YS5cbiogVGhpcyBkYXRhc2V0IG9ubHkgcmV0dXJucyBkYXRhIGZvciB0aGUgTUxMVyAoTWVhbiBMb3dlci1Mb3cgV2F0ZXIpIGRhdHVtLlxuKiBUaGUgZGF0YSBzb3VyY2UgaXNuJ3QgY29tcGxldGVseSByZWxpYWJsZS4gSWYgeW91ciByZXF1ZXN0IHJldHVybnMgbm8gZGF0YVxuICB3aGVuIHlvdSB0aGluayBpdCBzaG91bGQ6XG4gICogVHJ5IHJldmlzaW5nIHRoZSByZXF1ZXN0IChlLmcuLCBhIGRpZmZlcmVudCB0aW1lIHJhbmdlKS5cbiAgKiBUaGUgbGlzdCBvZiBzdGF0aW9ucyBvZmZlcmluZyB0aGlzIGRhdGEgbWF5IGJlIGluY29ycmVjdC5cbiAgKiBTb21ldGltZXMgYSBzdGF0aW9uIG9yIHRoZSBlbnRpcmUgZGF0YSBzZXJ2aWNlIGlzIHVuYXZhaWxhYmxlLlxuICAgIFdhaXQgYSB3aGlsZSBhbmQgdHJ5IGFnYWluLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvbklEIChTdGF0aW9uIElEKVxuc3RhdGlvbk5hbWUgKFN0YXRpb24gTmFtZSlcbnN0YXRlXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaGVmSUQgKFNIRUYgSUQpXG5kZXBsb3ltZW50IChEZXBsb3ltZW50IERlc2lnbmF0aW9uKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDQgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm9zQ29vcHNXTFRQNjBfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc0Nvb3BzV0xUUDYwX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL25vc0Nvb3BzV0xUUDYwL2luZGV4Lmpzb24iLCAiaHR0cDovL3RpZGVzYW5kY3VycmVudHMubm9hYS5nb3YvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc0Nvb3BzV0xUUDYwLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NDb29wc1dMVFA2MCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyBDTy1PUFMiLCAibm9zQ29vcHNXTFRQNjAiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFY2LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc1dMVjYiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFY2LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PUyBDTy1PUFMgV2F0ZXIgTGV2ZWwgRGF0YSwgVmVyaWZpZWQsIDYtTWludXRlIiwgIlRoaXMgZGF0YXNldCBoYXMgdmVyaWZpZWQgKHF1YWxpdHktY29udHJvbGxlZCksIDYtbWludXRlLCB3YXRlciBsZXZlbCAodGlkZSlcbmRhdGEgZnJvbSBOT0FBIE5PUyBDZW50ZXIgZm9yIE9wZXJhdGlvbmFsIE9jZWFub2dyYXBoaWMgUHJvZHVjdHMgYW5kIFNlcnZpY2VzXG4oQ08tT1BTKS4gIFRoaXMgaXMgYSBkZWxheWVkIGRhdGFzZXQsIG5vdCBhIG5lYXItcmVhbC10aW1lIGRhdGFzZXQuXG5cbldBUk5JTkc6XG4qIFF1ZXJpZXMgZm9yIGRhdGEgTVVTVCBpbmNsdWRlIHN0YXRpb25JRD0sIGRhdHVtPSwgdGltZT49LCBhbmQgdGltZTw9LlxuKiBRdWVyaWVzIE1VU1QgYmUgZm9yIGxlc3MgdGhhbiAzMCBkYXlzIHdvcnRoIG9mIGRhdGEuXG4qIERpZmZlcmVudCBzdGF0aW9ucyBzdXBwb3J0IGRpZmZlcmVudCBkYXR1bXMuXG4gIFVzZSBFUkREQVAncyBTdWJzZXQgd2ViIHBhZ2UgdG8gZmluZCBvdXQgd2hpY2ggZGF0dW1zIGEgZ2l2ZW4gc3RhdGlvbiBzdXBwb3J0cy5cbiogVGhlIGRhdGEgc291cmNlIGlzbid0IGNvbXBsZXRlbHkgcmVsaWFibGUuIElmIHlvdXIgcmVxdWVzdCByZXR1cm5zIG5vIGRhdGFcbiAgd2hlbiB5b3UgdGhpbmsgaXQgc2hvdWxkOlxuICAqIE1ha2Ugc3VyZSB0aGUgc3RhdGlvbiB5b3Ugc3BlY2lmaWVkIHN1cHBvcnRzIHRoZSBkYXR1bSB5b3Ugc3BlY2lmaWVkLlxuICAqIFRyeSByZXZpc2luZyB0aGUgcmVxdWVzdCAoZS5nLiwgYSBkaWZmZXJlbnQgZGF0dW0gb3IgYSBkaWZmZXJlbnQgdGltZSByYW5nZSkuXG4gICogVGhlIGxpc3Qgb2Ygc3RhdGlvbnMgb2ZmZXJpbmcgdGhpcyBkYXRhIChvciB0aGUgbGlzdCBvZiBkYXR1bXMpIG1heSBiZSBpbmNvcnJlY3QuXG4gICogU29tZXRpbWVzIGEgc3RhdGlvbiBvciB0aGUgZW50aXJlIGRhdGEgc2VydmljZSBpcyB1bmF2YWlsYWJsZS5cbiAgICBXYWl0IGEgd2hpbGUgYW5kIHRyeSBhZ2Fpbi5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb25JRCAoU3RhdGlvbiBJRClcbnN0YXRpb25OYW1lIChTdGF0aW9uIE5hbWUpXG5zdGF0ZVxuZGF0ZUVzdGFibGlzaGVkIChEYXRlIEVzdGFibGlzaGVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2hlZklEIChTSEVGIElEKVxuZGVwbG95bWVudCAoRGVwbG95bWVudCBEZXNpZ25hdGlvbilcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGF0dW1cbndhdGVyTGV2ZWwgKFdhdGVyIExldmVsLCBtKVxuc2lnbWEgKFN0YW5kYXJkIERldmlhdGlvbiBvZiBXYXRlciBMZXZlbCwgbSlcbi4uLiAoNCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NDb29wc1dMVjZfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc0Nvb3BzV0xWNl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub3NDb29wc1dMVjYvaW5kZXguanNvbiIsICJodHRwOi8vdGlkZXNhbmRjdXJyZW50cy5ub2FhLmdvdi8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm9zQ29vcHNXTFY2LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NDb29wc1dMVjYmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOT1MgQ08tT1BTIiwgIm5vc0Nvb3BzV0xWNiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc1dMVkhMLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc1dMVkhMIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzV0xWSEwuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9TIENPLU9QUyBXYXRlciBMZXZlbCBEYXRhLCBWZXJpZmllZCwgSGlnaCBMb3ciLCAiVGhpcyBkYXRhc2V0IGhhcyB2ZXJpZmllZCAocXVhbGl0eS1jb250cm9sbGVkKSwgZGFpbHksIGhpZ2ggbG93IHdhdGVyIGxldmVsXG4odGlkZSkgZGF0YSBmcm9tIE5PQUEgTk9TIENlbnRlciBmb3IgT3BlcmF0aW9uYWwgT2NlYW5vZ3JhcGhpYyBQcm9kdWN0cyBhbmRcblNlcnZpY2VzIChDTy1PUFMpLiBUaGlzIGlzIGEgZGVsYXllZCBkYXRhc2V0LCBub3QgYSBuZWFyLXJlYWwtdGltZSBkYXRhc2V0LlxuXG5XQVJOSU5HOlxuKiBRdWVyaWVzIGZvciBkYXRhIE1VU1QgaW5jbHVkZSBzdGF0aW9uSUQ9LCBkYXR1bT0sIHRpbWU+PSwgYW5kIHRpbWU8PS5cbiogUXVlcmllcyBNVVNUIGJlIGZvciBsZXNzIHRoYW4gMzAgZGF5cyB3b3J0aCBvZiBkYXRhLlxuKiBEaWZmZXJlbnQgc3RhdGlvbnMgc3VwcG9ydCBkaWZmZXJlbnQgZGF0dW1zLlxuICBVc2UgRVJEREFQJ3MgU3Vic2V0IHdlYiBwYWdlIHRvIGZpbmQgb3V0IHdoaWNoIGRhdHVtcyBhIGdpdmVuIHN0YXRpb24gc3VwcG9ydHMuXG4qIFRoZSBkYXRhIHNvdXJjZSBpc24ndCBjb21wbGV0ZWx5IHJlbGlhYmxlLiBJZiB5b3VyIHJlcXVlc3QgcmV0dXJucyBubyBkYXRhXG4gIHdoZW4geW91IHRoaW5rIGl0IHNob3VsZDpcbiAgKiBNYWtlIHN1cmUgdGhlIHN0YXRpb24geW91IHNwZWNpZmllZCBzdXBwb3J0cyB0aGUgZGF0dW0geW91IHNwZWNpZmllZC5cbiAgKiBUcnkgcmV2aXNpbmcgdGhlIHJlcXVlc3QgKGUuZy4sIGEgZGlmZmVyZW50IGRhdHVtIG9yIGEgZGlmZmVyZW50IHRpbWUgcmFuZ2UpLlxuICAqIFRoZSBsaXN0IG9mIHN0YXRpb25zIG9mZmVyaW5nIHRoaXMgZGF0YSAob3IgdGhlIGxpc3Qgb2YgZGF0dW1zKSBtYXkgYmUgaW5jb3JyZWN0LlxuICAqIFNvbWV0aW1lcyBhIHN0YXRpb24gb3IgdGhlIGVudGlyZSBkYXRhIHNlcnZpY2UgaXMgdW5hdmFpbGFibGUuXG4gICAgV2FpdCBhIHdoaWxlIGFuZCB0cnkgYWdhaW4uXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5zdGF0aW9uSUQgKFN0YXRpb24gSUQpXG5zdGF0aW9uTmFtZSAoU3RhdGlvbiBOYW1lKVxuc3RhdGVcbmRhdGVFc3RhYmxpc2hlZCAoRGF0ZSBFc3RhYmxpc2hlZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNoZWZJRCAoU0hFRiBJRClcbmRlcGxveW1lbnQgKERlcGxveW1lbnQgRGVzaWduYXRpb24pXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRhdHVtXG53YXRlckxldmVsIChXYXRlciBMZXZlbCwgbSlcbnR5cGUgKERlc2lnbmF0aW9uIG9mIFdhdGVyIGxldmVsIEhlaWdodClcbkkgKEluZmVycmVkIEZsYWcpXG5MIChMaW1pdCBGbGFnKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL25vc0Nvb3BzV0xWSExfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc0Nvb3BzV0xWSExfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm9zQ29vcHNXTFZITC9pbmRleC5qc29uIiwgImh0dHA6Ly90aWRlc2FuZGN1cnJlbnRzLm5vYWEuZ292LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9ub3NDb29wc1dMVkhMLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NDb29wc1dMVkhMJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk9TIENPLU9QUyIsICJub3NDb29wc1dMVkhMIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzV0xWNjAuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzV0xWNjAiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFY2MC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT1MgQ08tT1BTIFdhdGVyIExldmVsIERhdGEsIFZlcmlmaWVkLCBIb3VybHkiLCAiVGhpcyBkYXRhc2V0IGhhcyB2ZXJpZmllZCAocXVhbGl0eS1jb250cm9sbGVkKSwgaG91cmx5LCB3YXRlciBsZXZlbCAodGlkZSkgZGF0YVxuZnJvbSBOT0FBIE5PUyBDZW50ZXIgZm9yIE9wZXJhdGlvbmFsIE9jZWFub2dyYXBoaWMgUHJvZHVjdHMgYW5kIFNlcnZpY2VzXG4oQ08tT1BTKS4gICBUaGlzIGlzIGEgZGVsYXllZCBkYXRhc2V0LCBub3QgYSBuZWFyLXJlYWwtdGltZSBkYXRhc2V0LlxuXG5XQVJOSU5HOlxuKiBRdWVyaWVzIGZvciBkYXRhIE1VU1QgaW5jbHVkZSBzdGF0aW9uSUQ9LCBkYXR1bT0sIHRpbWU+PSwgYW5kIHRpbWU8PS5cbiogUXVlcmllcyBNVVNUIGJlIGZvciBsZXNzIHRoYW4gMzAgZGF5cyB3b3J0aCBvZiBkYXRhLlxuKiBEaWZmZXJlbnQgc3RhdGlvbnMgc3VwcG9ydCBkaWZmZXJlbnQgZGF0dW1zLlxuICBVc2UgRVJEREFQJ3MgU3Vic2V0IHdlYiBwYWdlIHRvIGZpbmQgb3V0IHdoaWNoIGRhdHVtcyBhIGdpdmVuIHN0YXRpb24gc3VwcG9ydHMuXG4qIFRoZSBkYXRhIHNvdXJjZSBpc24ndCBjb21wbGV0ZWx5IHJlbGlhYmxlLiBJZiB5b3VyIHJlcXVlc3QgcmV0dXJucyBubyBkYXRhXG4gIHdoZW4geW91IHRoaW5rIGl0IHNob3VsZDpcbiAgKiBNYWtlIHN1cmUgdGhlIHN0YXRpb24geW91IHNwZWNpZmllZCBzdXBwb3J0cyB0aGUgZGF0dW0geW91IHNwZWNpZmllZC5cbiAgKiBUcnkgcmV2aXNpbmcgdGhlIHJlcXVlc3QgKGUuZy4sIGEgZGlmZmVyZW50IGRhdHVtIG9yIGEgZGlmZmVyZW50IHRpbWUgcmFuZ2UpLlxuICAqIFRoZSBsaXN0IG9mIHN0YXRpb25zIG9mZmVyaW5nIHRoaXMgZGF0YSAob3IgdGhlIGxpc3Qgb2YgZGF0dW1zKSBtYXkgYmUgaW5jb3JyZWN0LlxuICAqIFNvbWV0aW1lcyBhIHN0YXRpb24gb3IgdGhlIGVudGlyZSBkYXRhIHNlcnZpY2UgaXMgdW5hdmFpbGFibGUuXG4gICAgV2FpdCBhIHdoaWxlIGFuZCB0cnkgYWdhaW4uXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5zdGF0aW9uSUQgKFN0YXRpb24gSUQpXG5zdGF0aW9uTmFtZSAoU3RhdGlvbiBOYW1lKVxuc3RhdGVcbmRhdGVFc3RhYmxpc2hlZCAoRGF0ZSBFc3RhYmxpc2hlZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNoZWZJRCAoU0hFRiBJRClcbmRlcGxveW1lbnQgKERlcGxveW1lbnQgRGVzaWduYXRpb24pXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRhdHVtXG53YXRlckxldmVsIChXYXRlciBMZXZlbCwgbSlcbnNpZ21hIChTdGFuZGFyZCBEZXZpYXRpb24gb2YgV2F0ZXIgTGV2ZWwsIG0pXG5JIChJbmZlcnJlZCBGbGFnKVxuTCAoTGltaXQgRmxhZylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NDb29wc1dMVjYwX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9ub3NDb29wc1dMVjYwX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL25vc0Nvb3BzV0xWNjAvaW5kZXguanNvbiIsICJodHRwOi8vdGlkZXNhbmRjdXJyZW50cy5ub2FhLmdvdi8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm9zQ29vcHNXTFY2MC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bm9zQ29vcHNXTFY2MCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyBDTy1PUFMiLCAibm9zQ29vcHNXTFY2MCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9udGFzX2ZsdXhfNjJmY185YTIwXzE0MzIuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL250YXNfZmx1eF82MmZjXzlhMjBfMTQzMiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9udGFzX2ZsdXhfNjJmY185YTIwXzE0MzIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiT2NlYW5TSVRFUyBOVEFTIHN1cmZhY2UgbW9vcmluZyBmbHV4ZXMgY2FsY3VsYXRlZCB3aXRoIENvYXJlIDMuMCBhbGdvcml0aG0iLCAiT2NlYW5TaXRlcyB0aW1lLXNlcmllcyBGTFVYICBkYXRhIGZyb20gTlRBUyBzdGF0aW9uXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuUUIgKHNlbnNpYmxlIGhlYXQgZmx1eCwgVy9tMilcblFIIChsYXRlbnQgaGVhdCBmbHV4LCBXL20yKVxuUU4gKG5ldCBoZWF0IGZsdXgsIFcvbTIpXG5RTCAobmV0IGxvbmd3YXZlLCBXL20yKVxuUVMgKG5ldCBzaG9ydHdhdmUsIFcvbTIpXG5UQVVESVIgKHdpbmQgc3RyZXNzIGRpcmVjdGlvbiwgZGVncmVlIE4pXG5UQVVNQUcgKHdpbmQgc3RyZXNzIG1hZ25pdHVkZSwgTi9tXjIpXG5UU0tJTiAoU1NUIGFkanVzdGVkIHRvIHNraW4sIGRlZ3JlZSlcbldTX0ggKHdpbmQgc3BlZWQgYWRqdXN0ZWQgdG8gMTBtLCBtL3MpXG5RUV9IIChzcGVjaWZpYyBodW1pZGl0eSBhZGp1c3RlZCB0byAybSwgZy9rZylcblRBX0ggKGFpciB0ZW1wZXJhdHVyZSBhZGp1c3RlZCB0byAybSwgZGVncmVlX0MpXG5UQVVFIChlYXN0IHdpbmQgc3RyZXNzLCBOL21eMilcblRBVU4gKG5vcnRoIHdpbmQgc3RyZXNzLCBOL21eMilcblNUQUJJTElUWSAoc3RhYmlsaXR5IHBhcmFtZXRlciwgMSlcbmRlcHRoIChkZXB0aCBjb29yZGluYXRlIG9mIHRza2luLCBtKVxud21vX3BsYXRmb3JtX2NvZGVcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbnRhc19mbHV4XzYyZmNfOWEyMF8xNDMyX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9udGFzX2ZsdXhfNjJmY185YTIwXzE0MzJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbnRhc19mbHV4XzYyZmNfOWEyMF8xNDMyL2luZGV4Lmpzb24iLCAiaHR0cDovL3VvcC53aG9pLmVkdS9wcm9qZWN0cy9zdHJhdHVzIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL250YXNfZmx1eF82MmZjXzlhMjBfMTQzMi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bnRhc19mbHV4XzYyZmNfOWEyMF8xNDMyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIldIT0kiLCAibnRhc19mbHV4XzYyZmNfOWEyMF8xNDMyIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL250YXNfbWV0XzhkNzNfMWJjMV9lYzhhLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9udGFzX21ldF84ZDczXzFiYzFfZWM4YSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9udGFzX21ldF84ZDczXzFiYzFfZWM4YS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJPY2VhblNJVEVTIE5UQVMgc3VyZmFjZSBtb29yaW5nIE1FVCBkYXRhIiwgIk9jZWFuU2l0ZXMgdGltZS1zZXJpZXMgTUVUIGRhdGEgZnJvbSBOVEFTIHN0YXRpb25cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5BSVJUIChhaXIgdGVtcGVyYXR1cmUsIGRlZ3JlZV9DKVxuUkVMSCAocmVsYXRpdmUgaHVtaWRpdHksIHBlcmNlbnQpXG5BVE1TIChiYXJvbWV0cmljIHByZXNzdXJlLCBtaWxsaWJhcnMpXG5MVyAoc3VyZmFjZSBkb3dud2VsbGluZyBsb25nd2F2ZSByYWRpYXRpb24sIFcgbS0yKVxuU1cgKHNob3J0d2F2ZSByYWRpYXRpb24sIFcgbS0yKVxuUkFJTiAocHJlY2lwaXRhdGlvbiByYXRlLCBtbS9ob3VyKVxuVVdORCAoV2luZCBWZWxvY2l0eSBFYXN0LCBtZXRlcnMvc2Vjb25kKVxuVldORCAod2luZCB2ZWxvY2l0eSBub3J0aCwgbWV0ZXJzL3NlY29uZClcblRFTVAgKHNlYSB0ZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5QU0FMIChzZWEgd2F0ZXIgcHJhY3RpY2FsIHNhbGluaXR5LCAxKVxuQ05EQyAoY29uZHVjdGl2aXR5LCBTIG0tMSlcblVDVVIgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgUyBtLTEpXG5WQ1VSIChOb3J0aHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBTIG0tMSlcbmxhdGl0dWRlIChhcHByb3hpbWF0ZSBsYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoYXBwcm94aW1hdGUgbG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG53bW9fcGxhdGZvcm1fY29kZVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL250YXNfbWV0XzhkNzNfMWJjMV9lYzhhX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9udGFzX21ldF84ZDczXzFiYzFfZWM4YV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9udGFzX21ldF84ZDczXzFiYzFfZWM4YS9pbmRleC5qc29uIiwgImh0dHA6Ly91b3Aud2hvaS5lZHUvcHJvamVjdHMvc3RyYXR1cyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9udGFzX21ldF84ZDczXzFiYzFfZWM4YS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bnRhc19tZXRfOGQ3M18xYmMxX2VjOGEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiV0hPSSIsICJudGFzX21ldF84ZDczXzFiYzFfZWM4YSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9yYW1hXzNjMTVfMzQxMF83ODBhLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9yYW1hXzNjMTVfMzQxMF83ODBhIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3JhbWFfM2MxNV8zNDEwXzc4MGEuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiT2NlYW5TSVRFUyBSQU1BIGRhaWx5IGluLXNpdHUgZGF0YSIsICJPY2VhblNJVEVTIGRhaWx5IGluLXNpdHUgZGF0YS4gT2NlYW5TSVRFUyBHbG9iYWwgVHJvcGljYWwgTW9vcmVkIEJ1b3kgQXJyYXkgUmVzZWFyY2ggTW9vcmVkIEFycmF5IGZvciBBZnJpY2FuLUFzaWFuLUF1c3RyYWxpYW4gTW9uc29vbiBBbmFseXNpcyBhbmQgUHJlZGljdGlvbiAoUkFNQSkgZGF0YSBmcm9tIFBhY2lmaWMgTWFyaW5lIEVudmlyb25tZW50YWwgTGFib3JhdG9yeSAoUE1FTClcblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbndtb19wbGF0Zm9ybV9jb2RlXG5zaXRlX2NvZGVcbnNpdGVfaWQgKE9jZWFuU0lURVMgc3RhdGlvbiBJRClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoTGF0aXR1ZGUgb2YgZWFjaCBsb2NhdGlvbiwgZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoTG9uZ2l0dWRlIG9mIGVhY2ggbG9jYXRpb24sIGRlZ3JlZXNfZWFzdClcbmRlcGN1ciAoRGVwdGggb2YgZWFjaCBtZWFzdXJlbWVudCwgbWV0ZXJzKVxuVUNVUiAoem9uYWwgY3VycmVudCwgY20vcylcblZDVVIgKG1lcmlkaW9uYWwgY3VycmVudCwgY20vcylcbkNTUEQgKGN1cnJlbnQgc3BlZWQsIGNtL3MpXG5DU1BEX1FDIChxdWFsaXR5IGZsYWcpXG5DU1BEX0RNIChtZXRob2Qgb2YgZGF0YSBwcm9jZXNzaW5nKVxuQ0RJUiAoY3VycmVudCBkaXJlY3Rpb24gKG9jZWFub2dyYXBoaWMgY29udmVudGlvbiwgZmxvd2luZyB0byksIGRlZ3JlZSlcbkNESVJfUUMgKHF1YWxpdHkgZmxhZylcbkNESVJfRE0gKG1ldGhvZCBvZiBkYXRhIHByb2Nlc3NpbmcpXG5URU1QICh0ZW1wZXJhdHVyZSwgZGVncmVlX0NlbHNpdXMpXG5URU1QX1FDIChxdWFsaXR5IGZsYWcpXG5kZXB0aCAoRGVwdGggb2YgZWFjaCBtZWFzdXJlbWVudCwgbSlcbmRlcHBzYWwgKERlcHRoIG9mIGVhY2ggbWVhc3VyZW1lbnQsIG1ldGVycylcblBTQUwgKHNhbGluaXR5LCBQU1UpXG5QU0FMX1FDIChxdWFsaXR5IGZsYWcpXG5QU0FMX0RNIChtZXRob2Qgb2YgZGF0YSBwcm9jZXNzaW5nKVxuZGVwZGVuIChEZXB0aCBvZiBlYWNoIG1lYXN1cmVtZW50LCBtZXRlcnMpXG5ERU4gKHNpZ21hLXRoZXRhIChwb3RlbnRpYWwgZGVuc2l0eSksIGtnL20qKjMpXG5ERU5fUUMgKHF1YWxpdHkgZmxhZylcbi4uLiAoMzcgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcmFtYV8zYzE1XzM0MTBfNzgwYV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcmFtYV8zYzE1XzM0MTBfNzgwYV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9yYW1hXzNjMTVfMzQxMF83ODBhL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcmFtYV8zYzE1XzM0MTBfNzgwYS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cmFtYV8zYzE1XzM0MTBfNzgwYSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJQTUVMIEdsb2JhbCBUcm9waWNhbCBNb29yZWQgQnVveSBBcnJheSIsICJyYW1hXzNjMTVfMzQxMF83ODBhIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3N0cmF0dXNfZmx1eF85NzcwXzdmMThfYjMxNC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc3RyYXR1c19mbHV4Xzk3NzBfN2YxOF9iMzE0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3N0cmF0dXNfZmx1eF85NzcwXzdmMThfYjMxNC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJPY2VhblNJVEVTIFN0cmF0dXMgc3VyZmFjZSBtb29yaW5nIGZsdXhlcyBjYWxjdWxhdGVkIHdpdGggQ29hcmUgMy4wIGFsZ29yaXRobSIsICJPY2VhblNpdGVzIHRpbWUtc2VyaWVzIGZsdXggZGF0YSBmcm9tIFN0cmF0dXMgc3RhdGlvblxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcblFCIChzZW5zaWJsZSBoZWF0IGZsdXgsIFcvbTIpXG5RSCAobGF0ZW50IGhlYXQgZmx1eCwgVy9tMilcblFOIChuZXQgaGVhdCBmbHV4LCBXL20yKVxuUUwgKG5ldCBsb25nd2F2ZSwgVy9tMilcblFTIChuZXQgc2hvcnR3YXZlLCBXL20yKVxuVEFVRElSICh3aW5kIHN0cmVzcyBkaXJlY3Rpb24sIGRlZ3JlZSBOKVxuVEFVTUFHICh3aW5kIHN0cmVzcyBtYWduaXR1ZGUsIE4vbV4yKVxuVFNLSU4gKFNTVCBhZGp1c3RlZCB0byBza2luLCBkZWdyZWUpXG5XU19IICh3aW5kIHNwZWVkIGFkanVzdGVkIHRvIDEwbSwgbS9zKVxuUVFfSCAoc3BlY2lmaWMgaHVtaWRpdHkgYWRqdXN0ZWQgdG8gMm0sIGcva2cpXG5UQV9IIChhaXIgdGVtcGVyYXR1cmUgYWRqdXN0ZWQgdG8gMm0sIGRlZ3JlZV9DKVxuVEFVRSAoZWFzdCB3aW5kIHN0cmVzcywgTi9tXjIpXG5UQVVOIChub3J0aCB3aW5kIHN0cmVzcywgTi9tXjIpXG5TVEFCSUxJVFkgKHN0YWJpbGl0eSBwYXJhbWV0ZXIsIDEpXG5kZXB0aCAoZGVwdGggY29vcmRpbmF0ZSBvZiB0c2tpbiwgbSlcbndtb19wbGF0Zm9ybV9jb2RlXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3N0cmF0dXNfZmx1eF85NzcwXzdmMThfYjMxNF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc3RyYXR1c19mbHV4Xzk3NzBfN2YxOF9iMzE0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3N0cmF0dXNfZmx1eF85NzcwXzdmMThfYjMxNC9pbmRleC5qc29uIiwgImh0dHA6Ly91b3Aud2hvaS5lZHUvcHJvamVjdHMvc3RyYXR1cyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9zdHJhdHVzX2ZsdXhfOTc3MF83ZjE4X2IzMTQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXN0cmF0dXNfZmx1eF85NzcwXzdmMThfYjMxNCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJXSE9JIiwgInN0cmF0dXNfZmx1eF85NzcwXzdmMThfYjMxNCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9zdHJhdHVzX21ldF9hYjQzX2U2MmFfNTQ5NC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc3RyYXR1c19tZXRfYWI0M19lNjJhXzU0OTQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc3RyYXR1c19tZXRfYWI0M19lNjJhXzU0OTQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiT2NlYW5TSVRFUyBTdHJhdHVzIHN1cmZhY2UgbW9vcmluZyBNRVQgZGF0YSIsICJPY2VhblNpdGVzIHRpbWUtc2VyaWVzIGRhdGEgZnJvbSBTdHJhdHVzIHN0YXRpb25cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5BSVJUIChhaXIgdGVtcGVyYXR1cmUsIGRlZ3JlZV9DKVxuUkVMSCAocmVsYXRpdmUgaHVtaWRpdHksIHBlcmNlbnQpXG5BVE1TIChiYXJvbWV0cmljIHByZXNzdXJlLCBtaWxsaWJhcnMpXG5MVyAoc3VyZmFjZSBkb3dud2VsbGluZyBsb25nd2F2ZSByYWRpYXRpb24sIFcgbS0yKVxuU1cgKHNob3J0d2F2ZSByYWRpYXRpb24sIFcgbS0yKVxuUkFJTiAocHJlY2lwaXRhdGlvbiByYXRlLCBtbS9ob3VyKVxuVVdORCAoV2luZCBWZWxvY2l0eSBFYXN0LCBtZXRlcnMvc2Vjb25kKVxuVldORCAod2luZCB2ZWxvY2l0eSBub3J0aCwgbWV0ZXJzL3NlY29uZClcblRFTVAgKHNlYSB0ZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5QU0FMIChzZWEgd2F0ZXIgcHJhY3RpY2FsIHNhbGluaXR5LCAuMDAxKVxuQ05EQyAoY29uZHVjdGl2aXR5LCBTIG0tMSlcblVDVVIgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgUyBtLTEpXG5WQ1VSIChOb3J0aHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBTIG0tMSlcbmxhdGl0dWRlIChhcHByb3hpbWF0ZSBsYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoYXBwcm94aW1hdGUgbG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG53bW9fcGxhdGZvcm1fY29kZVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3N0cmF0dXNfbWV0X2FiNDNfZTYyYV81NDk0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9zdHJhdHVzX21ldF9hYjQzX2U2MmFfNTQ5NF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zdHJhdHVzX21ldF9hYjQzX2U2MmFfNTQ5NC9pbmRleC5qc29uIiwgImh0dHA6Ly91b3Aud2hvaS5lZHUvcHJvamVjdHMvc3RyYXR1cyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9zdHJhdHVzX21ldF9hYjQzX2U2MmFfNTQ5NC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9c3RyYXR1c19tZXRfYWI0M19lNjJhXzU0OTQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiV0hPSSIsICJzdHJhdHVzX21ldF9hYjQzX2U2MmFfNTQ5NCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC93aG90c19mbHV4X2Y4MmZfNDY4NF9hNzRmLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC93aG90c19mbHV4X2Y4MmZfNDY4NF9hNzRmIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3dob3RzX2ZsdXhfZjgyZl80Njg0X2E3NGYuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiT2NlYW5TSVRFUyBXSE9UUyBzdXJmYWNlIG1vb3JpbmcgZmx1eGVzIGNhbGN1bGF0ZWQgd2l0aCBDb2FyZSAzLjAgYWxnb3JpdGhtIiwgIk9jZWFuU2l0ZXMgdGltZS1zZXJpZXMgRkxVWCAgZGF0YSBmcm9tIFdIT1RTIHN0YXRpb25cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5RQiAoc2Vuc2libGUgaGVhdCBmbHV4LCBXL20yKVxuUUggKGxhdGVudCBoZWF0IGZsdXgsIFcvbTIpXG5RTiAobmV0IGhlYXQgZmx1eCwgVy9tMilcblFMIChuZXQgbG9uZ3dhdmUsIFcvbTIpXG5RUyAobmV0IHNob3J0d2F2ZSwgVy9tMilcblRBVURJUiAod2luZCBzdHJlc3MgZGlyZWN0aW9uLCBkZWdyZWUgTilcblRBVU1BRyAod2luZCBzdHJlc3MgbWFnbml0dWRlLCBOL21eMilcblRTS0lOIChTU1QgYWRqdXN0ZWQgdG8gc2tpbiwgZGVncmVlKVxuV1NfSCAod2luZCBzcGVlZCBhZGp1c3RlZCB0byAxMG0sIG0vcylcblFRX0ggKHNwZWNpZmljIGh1bWlkaXR5IGFkanVzdGVkIHRvIDJtLCBnL2tnKVxuVEFfSCAoYWlyIHRlbXBlcmF0dXJlIGFkanVzdGVkIHRvIDJtLCBkZWdyZWVfQylcblRBVUUgKGVhc3Qgd2luZCBzdHJlc3MsIE4vbV4yKVxuVEFVTiAobm9ydGggd2luZCBzdHJlc3MsIE4vbV4yKVxuU1RBQklMSVRZIChzdGFiaWxpdHkgcGFyYW1ldGVyLCAxKVxuZGVwdGggKGRlcHRoIGNvb3JkaW5hdGUgb2YgdHNraW4sIG0pXG53bW9fcGxhdGZvcm1fY29kZVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC93aG90c19mbHV4X2Y4MmZfNDY4NF9hNzRmX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC93aG90c19mbHV4X2Y4MmZfNDY4NF9hNzRmX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3dob3RzX2ZsdXhfZjgyZl80Njg0X2E3NGYvaW5kZXguanNvbiIsICJodHRwOi8vdW9wLndob2kuZWR1L3Byb2plY3RzL3N0cmF0dXMiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvd2hvdHNfZmx1eF9mODJmXzQ2ODRfYTc0Zi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9d2hvdHNfZmx1eF9mODJmXzQ2ODRfYTc0ZiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJXSE9JIiwgIndob3RzX2ZsdXhfZjgyZl80Njg0X2E3NGYiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvd2hvdHNfbWV0X2YxODNfZWUwNl84YjYzLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC93aG90c19tZXRfZjE4M19lZTA2XzhiNjMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvd2hvdHNfbWV0X2YxODNfZWUwNl84YjYzLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk9jZWFuU0lURVMgV0hPVFMgc3VyZmFjZSBtb29yaW5nIE1FVCBkYXRhIiwgIk9jZWFuU2l0ZXMgdGltZS1zZXJpZXMgTUVUICBkYXRhIGZyb20gV0hPVFMgc3RhdGlvblxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbkFJUlQgKGFpciB0ZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5SRUxIIChyZWxhdGl2ZSBodW1pZGl0eSwgcGVyY2VudClcbkFUTVMgKGJhcm9tZXRyaWMgcHJlc3N1cmUsIG1pbGxpYmFycylcbkxXIChzdXJmYWNlIGRvd253ZWxsaW5nIGxvbmd3YXZlIHJhZGlhdGlvbiwgVyBtLTIpXG5TVyAoc2hvcnR3YXZlIHJhZGlhdGlvbiwgVyBtLTIpXG5SQUlOIChwcmVjaXBpdGF0aW9uIHJhdGUsIG1tL2hvdXIpXG5VV05EIChXaW5kIFZlbG9jaXR5IEVhc3QsIG1ldGVycy9zZWNvbmQpXG5WV05EICh3aW5kIHZlbG9jaXR5IG5vcnRoLCBtZXRlcnMvc2Vjb25kKVxuVEVNUCAoc2VhIHRlbXBlcmF0dXJlLCBkZWdyZWVfQylcblBTQUwgKHNlYSB3YXRlciBwcmFjdGljYWwgc2FsaW5pdHksIC4wMDEpXG5DTkRDIChjb25kdWN0aXZpdHksIFMgbS0xKVxuVUNVUiAoRWFzdHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBTIG0tMSlcblZDVVIgKE5vcnRod2FyZCBTZWEgV2F0ZXIgVmVsb2NpdHksIFMgbS0xKVxubGF0aXR1ZGUgKGFwcHJveGltYXRlIGxhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChhcHByb3hpbWF0ZSBsb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbndtb19wbGF0Zm9ybV9jb2RlXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvd2hvdHNfbWV0X2YxODNfZWUwNl84YjYzX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC93aG90c19tZXRfZjE4M19lZTA2XzhiNjNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vd2hvdHNfbWV0X2YxODNfZWUwNl84YjYzL2luZGV4Lmpzb24iLCAiaHR0cDovL3VvcC53aG9pLmVkdS9wcm9qZWN0cy9zdHJhdHVzIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3dob3RzX21ldF9mMTgzX2VlMDZfOGI2My5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9d2hvdHNfbWV0X2YxODNfZWUwNl84YjYzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIldIT0kiLCAid2hvdHNfbWV0X2YxODNfZWUwNl84YjYzIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL09TTUNfUFJPRklMRVJTLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DX1BST0ZJTEVSUyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DX1BST0ZJTEVSUy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJPU01DIEFyZ28gUHJvZmlsZSBkYXRhIiwgIk9TTUMgQXJnbyBQcm9maWxlIGRhdGFcblxuY2RtX2RhdGFfdHlwZSA9IFByb2ZpbGVcblZBUklBQkxFUzpcbnBsYXRmb3JtX2NvZGVcbm9yZ2FuaXphdGlvbl9uYW1lXG5jb3VudHJ5X25hbWVcbnBsYXRmb3JtX3R5cGVfbmFtZVxudGltZSAoT0JTRVJWQVRJT04gREFURSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnBhcmFtZXRlcl9uYW1lXG5kYWlseV9vYnNfY291bnRcbm9ic2VydmF0aW9uX2RlcHRoXG5vYnNlcnZhdGlvbl92YWx1ZVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9PU01DX1BST0ZJTEVSU19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvT1NNQ19QUk9GSUxFUlNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vT1NNQ19QUk9GSUxFUlMvaW5kZXguanNvbiIsICJ3d3cub3NtYy5ub2FhLmdvdiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9PU01DX1BST0ZJTEVSUy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9T1NNQ19QUk9GSUxFUlMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiT1NNQyIsICJPU01DX1BST0ZJTEVSUyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DX2ZsYXR0ZW5lZC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvT1NNQ19mbGF0dGVuZWQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvT1NNQ19mbGF0dGVuZWQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiT1NNQyBmbGF0dGVuZWQgb2JzZXJ2YXRpb25zIGZyb20gR1RTIiwgIk9TTUMgZmxhdHRlbmVkIG9ic2VydmF0aW9ucyBmcm9tIEdUUywgcHJvdmlkaW5nIHR1cGxlZCBkYXRhIGF2YWlsYWJpbGl0eVxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbnBsYXRmb3JtX2lkXG5wbGF0Zm9ybV9jb2RlXG5wbGF0Zm9ybV90eXBlXG5jb3VudHJ5XG50aW1lIChvYnNlcnZhdGlvbiBkYXRlLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbm9ic2VydmF0aW9uX2RlcHRoXG5zc3QgKHNlYSBzdXJmYWNlIHRlbXBlcmF0dXJlLCBEZWcgQylcbmF0bXAgKGFpciB0ZW1wZXJhdHVyZSwgRGVnIEMpXG5wcmVjaXAgKHByZWNpcGl0YXRpb24sIG1tKVxuenRtcCAocHJvZmlsZSB3YXRlciB0ZW1wZXJhdHVyZSwgRGVnIEMpXG56c2FsIChwcm9maWxlIHNhbGluaXR5KVxuc2xwIChzZWEgbGV2ZWwgcHJlc3N1cmUsIGhQYSlcbndpbmRzcGQgKHdpbmQgc3BlZWQsIG0vcylcbndpbmRkaXIgKHdpbmQgZnJvbSBkaXJlY3Rpb24sIERlZyB0cnVlKVxud3ZodCAoc2VhIHN1cmZhY2Ugd2F2ZSBzaWduaWZpY2FudCBoZWlnaHQsIG0pXG53YXRlcmxldmVsIChtKVxuY2xvdWRzIChjbG91ZCBjb3Zlciwgb2t0YXMpXG5kZXdwb2ludCAoZGV3IHBvaW50IHRlbXBlcmF0dXJlLCBEZWcgQylcbnVvIChlYXN0d2FyZCBzZWEgd2F0ZXIgdmVsb2NpdHksIG0gcy0xKVxudm8gKG5vcnRod2FyZCBzZWEgd2F0ZXIgdmVsb2NpdHksIG0gcy0xKVxud28gKHVwd2FyZCBzZWEgd2F0ZXIgdmVsb2NpdHksIG0gcy0xKVxucmFpbmZhbGxfcmF0ZSAobSBzLTEpXG5odXIgKHJlbGF0aXZlIGh1bWlkaXR5KVxuc2VhX3dhdGVyX2VsZWNfY29uZHVjdGl2aXR5IChzZWEgd2F0ZXIgZWxlY3RyaWNhbCBjb25kdWN0aXZpdHksIFMgbS0xKVxuc2VhX3dhdGVyX3ByZXNzdXJlIChkYmFyKVxuLi4uICg3IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL09TTUNfZmxhdHRlbmVkX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9PU01DX2ZsYXR0ZW5lZF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9PU01DX2ZsYXR0ZW5lZC9pbmRleC5qc29uIiwgInd3dy5vc21jLm5vYWEuZ292IiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL09TTUNfZmxhdHRlbmVkLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1PU01DX2ZsYXR0ZW5lZCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJPU01DIiwgIk9TTUNfZmxhdHRlbmVkIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL09TTUNfUG9pbnRzLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DX1BvaW50cyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DX1BvaW50cy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJPU01DIG5vcm1hbGl6ZWQgb2JzZXJ2YXRpb25zIGZyb20gR1RTIiwgIk9TTUMgbm9ybWFsaXplZCBJbi1zaXR1IFJlYWwgdGltZSBHVFMgZGF0YVxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcblBMQVRGT1JNX0NPREUgKFN0YXRpb24gSUQpXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnBsYXRmb3JtXG5wYXJhbWV0ZXJcbk9CU0VSVkFUSU9OX1ZBTFVFXG5PQlNFUlZBVElPTl9ERVBUSFxuQ09VTlRSWV9OQU1FXG5vcmdhbml6YXRpb25fbmFtZVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL09TTUNfUG9pbnRzX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9PU01DX1BvaW50c19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9PU01DX1BvaW50cy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3Lm9zbWMubm9hYS5nb3YiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvT1NNQ19Qb2ludHMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPU9TTUNfUG9pbnRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk9TTUMiLCAiT1NNQ19Qb2ludHMiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvT1NNQ1Y0X0RVT19QUk9GSUxFUy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvT1NNQ1Y0X0RVT19QUk9GSUxFUyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DVjRfRFVPX1BST0ZJTEVTLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk9TTUMgUHJvZmlsZXMiLCAiT1NNQyBwcm9maWxlcyBmcm9tIEdUU1xuXG5jZG1fZGF0YV90eXBlID0gUHJvZmlsZVxuVkFSSUFCTEVTOlxucGxhdGZvcm1fY29kZVxucGxhdGZvcm1fdHlwZVxuY291bnRyeVxudGltZSAoT0JTRVJWQVRJT04gREFURSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5kZXB0aCAoT0JTRVJWQVRJT04gREVQVEgsIG0pXG56dG1wIChwcm9maWxlIHdhdGVyIHRlbXBlcmF0dXJlLCBEZWcgQylcbnpzYWwgKFNlYSBXYXRlciBTYWxpbml0eSlcbnNlYV93YXRlcl9lbGVjX2NvbmR1Y3Rpdml0eSAoU2VhIFdhdGVyIEVsZWN0cmljYWwgQ29uZHVjdGl2aXR5LCBTIG0tMSlcbnNlYV93YXRlcl9wcmVzc3VyZSAoZGJhcilcbm5vcnRod2FyZF9zZWFfd2F0ZXJfdmVsb2NpdHkgKG0gcy0xKVxuZWFzdHdhcmRfc2VhX3dhdGVyX3ZlbG9jaXR5IChtIHMtMSlcbnVwd2FyZF9zZWFfd2F0ZXJfdmVsb2NpdHkgKG0gcy0xKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL09TTUNWNF9EVU9fUFJPRklMRVNfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL09TTUNWNF9EVU9fUFJPRklMRVNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vT1NNQ1Y0X0RVT19QUk9GSUxFUy9pbmRleC5qc29uIiwgInd3dy5vc21jLm5vYWEuZ292IiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL09TTUNWNF9EVU9fUFJPRklMRVMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPU9TTUNWNF9EVU9fUFJPRklMRVMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiT1NNQyIsICJPU01DVjRfRFVPX1BST0ZJTEVTIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL09TTUNWNF9EVU9fU1VSRkFDRV9UUkFKRUNUT1JZLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DVjRfRFVPX1NVUkZBQ0VfVFJBSkVDVE9SWSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DVjRfRFVPX1NVUkZBQ0VfVFJBSkVDVE9SWS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJPU01DIHN1cmZhY2UgdHJhamVjdG9yeSBkYXRhIiwgIlN1cmZhY2UgdHJhamVjdG9yeSBkYXRhIGZyb20gR1RTXG5cbmNkbV9kYXRhX3R5cGUgPSBUcmFqZWN0b3J5XG5WQVJJQUJMRVM6XG5wbGF0Zm9ybV9pZFxucGxhdGZvcm1fY29kZVxucGxhdGZvcm1fdHlwZVxuY291bnRyeVxudGltZSAoT0JTRVJWQVRJT04gREFURSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5vYnNlcnZhdGlvbl9kZXB0aFxuc3N0IChzZWEgc3VyZmFjZSB0ZW1wZXJhdHVyZSwgRGVnIEMpXG5hdG1wIChhaXIgdGVtcGVyYXR1cmUsIERlZyBDKVxucHJlY2lwIChwcmVjaXBpdGF0aW9uLCBtbSlcbnp0bXAgKHByb2ZpbGUgd2F0ZXIgdGVtcGVyYXR1cmUsIERlZyBDKVxuenNhbCAocHJvZmlsZSBzYWxpbml0eSlcbnNzc1xuc2xwIChzZWEgbGV2ZWwgcHJlc3N1cmUsIGhQYSlcbndpbmRzcGQgKHdpbmQgc3BlZWQsIG0vcylcbndpbmRkaXIgKFdpbmQgRnJvbSBEaXJlY3Rpb24sIERlZyB0cnVlKVxud3ZodCAoU2VhIFN1cmZhY2UgV2F2ZSBTaWduaWZpY2FudCBIZWlnaHQsIG0pXG53YXRlcmxldmVsIChtKVxuY2xvdWRzIChjbG91ZCBjb3Zlciwgb2t0YXMpXG5kZXdwb2ludCAoZGV3IHBvaW50IHRlbXBlcmF0dXJlLCBEZWcgQylcbmVhc3R3YXJkX3NlYV93YXRlcl92ZWxvY2l0eSAobSBzLTEpXG5ub3J0aHdhcmRfc2VhX3dhdGVyX3ZlbG9jaXR5IChtIHMtMSlcbnVwd2FyZF9zZWFfd2F0ZXJfdmVsb2NpdHkgKG0gcy0xKVxucmFpbmZhbGxfcmF0ZSAobSBzLTEpXG5yZWxhdGl2ZV9odW1pZGl0eVxuc2VhX3dhdGVyX2VsZWN0cmljYWxfY29uZCAoc2VhIHdhdGVyIGVsZWN0cmljYWwgY29uZHVjdGl2aXR5LCBTIG0tMSlcbi4uLiAoOCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9PU01DVjRfRFVPX1NVUkZBQ0VfVFJBSkVDVE9SWV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvT1NNQ1Y0X0RVT19TVVJGQUNFX1RSQUpFQ1RPUllfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vT1NNQ1Y0X0RVT19TVVJGQUNFX1RSQUpFQ1RPUlkvaW5kZXguanNvbiIsICJ3d3cub3NtYy5ub2FhLmdvdiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9PU01DVjRfRFVPX1NVUkZBQ0VfVFJBSkVDVE9SWS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9T1NNQ1Y0X0RVT19TVVJGQUNFX1RSQUpFQ1RPUlkmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiT1NNQyIsICJPU01DVjRfRFVPX1NVUkZBQ0VfVFJBSkVDVE9SWSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DVjRfRFVPX1RJTUVfU0VSSUVTLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DVjRfRFVPX1RJTUVfU0VSSUVTIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL09TTUNWNF9EVU9fVElNRV9TRVJJRVMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiT1NNQyBUaW1lU2VyaWVzIGRhdGEiLCAiT1NNQyBUaW1lU2VyaWVzIGRhdGFcblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnBsYXRmb3JtX2lkXG5wbGF0Zm9ybV9jb2RlXG5wbGF0Zm9ybV90eXBlIChQTEFURk9SIFRZUEUpXG5jb3VudHJ5XG50aW1lIChPQlNFUlZBVElPTiBEQVRFLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxub2JzZXJ2YXRpb25fZGVwdGhcbnNzdFxuYXRtcFxucHJlY2lwXG56dG1wXG56c2FsIChTZWEgV2F0ZXIgU2FsaW5pdHkpXG5zc3MgKFNlYSBXYXRlciBTYWxpbml0eSlcbnNscCAoU3VyZmFjZSBBaXIgUHJlc3N1cmUpXG53aW5kc3BkXG53aW5kZGlyIChXaW5kIEZyb20gRGlyZWN0aW9uKVxud3ZodCAoU2VhIFN1cmZhY2UgV2F2ZSBTaWduaWZpY2FudCBIZWlnaHQpXG53YXRlcmxldmVsXG5jbG91ZHNcbmRld3BvaW50XG5lYXN0d2FyZF9zZWFfd2F0ZXJfdmVsXG5ub3J0aHdhcmRfc2VhX3dhdGVyX3ZlbFxudXB3YXJkX3NlYV93YXRlcl92ZWxcbnJhaW5mYWxsX3JhdGVcbnJlbGF0aXZlX2h1bWlkaXR5XG5zZWFfd2F0ZXJfZWxlY3RyaWNhbF9jb25kXG5zZWFfd2F0ZXJfcHJlc3N1cmVcbnN1cmZhY2VfZHdud2VsbGluZ19sbmd3YXZlXG4uLi4gKDcgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvT1NNQ1Y0X0RVT19USU1FX1NFUklFU19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvT1NNQ1Y0X0RVT19USU1FX1NFUklFU19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9PU01DVjRfRFVPX1RJTUVfU0VSSUVTL2luZGV4Lmpzb24iLCAid3d3Lm9zbWMubm9hYS5nb3YiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvT1NNQ1Y0X0RVT19USU1FX1NFUklFUy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9T1NNQ1Y0X0RVT19USU1FX1NFUklFUyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJPU01DIiwgIk9TTUNWNF9EVU9fVElNRV9TRVJJRVMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0JFQUNIQ0FNLTAwMSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9CRUFDSENBTS0wMDEuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUGFjSU9PUyBCZWFjaCBDYW1lcmEgMDAxOiBXYWlraWtpLCBPYWh1LCBIYXdhaWkiLCAiQSBkaWdpdGFsIGNhbWVyYSBvbiB0b3Agb2YgdGhlIFNoZXJhdG9uIFdhaWtpa2kgaG90ZWwgd2FzIHVzZWQgdG8gcGhvdG9ncmFwaCB0aGUgc2hvcmVsaW5lIG9mIFdhaWtpa2kgYmVhY2ggYWxvbmcgdGhlIFNvdXRoIFNob3JlIG9mIHRoZSBpc2xhbmQgb2YgT2FodSBpbiB0aGUgU3RhdGUgb2YgSGF3YWlpLiBUaGUgb2JsaXF1ZSBjYW1lcmEgdmlldyBwcmVzZW50ZWQgaGVyZSBjYXB0dXJlcyB0aGUgc2hvcmVsaW5lIGxlYWRpbmcgc291dGhlYXN0IHRvd2FyZHMgRGlhbW9uZCBIZWFkIGNyYXRlci4gSXQgb3BlcmF0ZWQgZm9yIG92ZXIgNC41IHllYXJzIGJldHdlZW4gRmVicnVhcnkgNSwgMjAwOSBhbmQgT2N0b2JlciAxMywgMjAxMy4gQ2FwdHVyaW5nIGhvdXJseSBzbmFwc2hvdHMgYXQgYSBzZXQgdmFudGFnZSBwb2ludCBkdXJpbmcgdGhlIGxvY2FsIGRheXRpbWUgaG91cnMgb2YgNjowMCBBTSBvciA3OjAwIEFNIHRvIDU6MDAgUE0sIHRoZXNlIGltYWdlcyBhcmUgdXNlZnVsIGZvciB0cmFja2luZyBiZWFjaCBkeW5hbWljcyBzdWNoIGFzIHdhdmUgcnVuLXVwLCBzYW5kIG1vdmVtZW50LCBhbmQgdHVyYmlkaXR5IHBsdW1lcyBvdmVyIHRpbWUuIFRoZSBjYW1lcmEgd2FzIG1vdW50ZWQgb24gdG9wIG9mIGEgMyBtZXRlciB3YWxsIGV4dGVuZGluZyBhYm92ZSB0aGUgcm9vZiBzdXJmYWNlIGZvciBhIHRvdGFsIGhlaWdodCBvZiA5MyBtZXRlcnMgYWJvdmUgZ3JvdW5kIGxldmVsIG9yIDk2IG1ldGVycyBhYm92ZSBtZWFuIHNlYSBsZXZlbC4gU2VlIGFsc28gQkVBQ0hDQU0tMDAyIGZvciBhbiBhbHRlcm5hdGUgY2FtZXJhIHZpZXcgZnJvbSB0aGUgc2FtZSBsb2NhdGlvbiBwb2ludGluZyBkaXJlY3RseSBkb3dud2FyZHMuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5hbHRpdHVkZSAobSlcbmFib3ZlR3JvdW5kIChIZWlnaHQsIG0pXG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9CRUFDSENBTS0wMDFfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL0JFQUNIQ0FNLTAwMV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9CRUFDSENBTS0wMDEvaW5kZXguanNvbiIsICJodHRwOi8vd3d3LnBhY2lvb3MuaGF3YWlpLmVkdSIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9CRUFDSENBTS0wMDEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPUJFQUNIQ0FNLTAwMSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJVbml2ZXJzaXR5IG9mIEhhd2FpaSIsICJCRUFDSENBTS0wMDEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTE0XzMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMTRfMy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMTQ6IE1pc3Npb24gMyIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gMyBvZiBTZWFHbGlkZXIgMTE0LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMTRfM19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMTRfM19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzExNF8zL2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTE0XzMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTE0XzMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTE0XzMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTE0XzQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMTRfNC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMTQ6IE1pc3Npb24gNCIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gNCBvZiBTZWFHbGlkZXIgMTE0LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMTRfNF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMTRfNF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzExNF80L2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTE0XzQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTE0XzQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTE0XzQiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTM5XzEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMzlfMS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMzk6IE1pc3Npb24gMSIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gMSBvZiBTZWFHbGlkZXIgMTM5LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMzlfMV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMzlfMV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzEzOV8xL2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTM5XzEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTM5XzEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTM5XzEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTM5XzIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMzlfMi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMzk6IE1pc3Npb24gMiIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gMiBvZiBTZWFHbGlkZXIgMTM5LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMzlfMl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMzlfMl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzEzOV8yL2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTM5XzIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTM5XzImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTM5XzIiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTM5XzMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMzlfMy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMzk6IE1pc3Npb24gMyIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gMyBvZiBTZWFHbGlkZXIgMTM5LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMzlfM19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMzlfM19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzEzOV8zL2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTM5XzMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTM5XzMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTM5XzMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTM5XzYiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMzlfNi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMzk6IE1pc3Npb24gNiIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gNiBvZiBTZWFHbGlkZXIgMTM5LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMzlfNl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMzlfNl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzEzOV82L2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTM5XzYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTM5XzYmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTM5XzYiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTM5XzciLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMzlfNy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMzk6IE1pc3Npb24gNyIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gNyBvZiBTZWFHbGlkZXIgMTM5LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMzlfN19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMzlfN19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzEzOV83L2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTM5XzcucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTM5Xzcmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTM5XzciXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTM5XzgiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMzlfOC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMzk6IE1pc3Npb24gOCIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gOCBvZiBTZWFHbGlkZXIgMTM5LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMzlfOF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMzlfOF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzEzOV84L2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTM5XzgucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTM5Xzgmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTM5XzgiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTM5XzkiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMzlfOS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMzk6IE1pc3Npb24gOSIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gOSBvZiBTZWFHbGlkZXIgMTM5LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMzlfOV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMzlfOV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzEzOV85L2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTM5XzkucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTM5Xzkmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTM5XzkiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnNTIzXzEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2c1MjNfMS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciA1MjM6IE1pc3Npb24gMSIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gMSBvZiBTZWFHbGlkZXIgNTIzLlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2c1MjNfMV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2c1MjNfMV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzUyM18xL2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnNTIzXzEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnNTIzXzEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnNTIzXzEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnNTIzXzMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2c1MjNfMy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciA1MjM6IE1pc3Npb24gMyIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gMyBvZiBTZWFHbGlkZXIgNTIzLlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2c1MjNfM19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2c1MjNfM19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzUyM18zL2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnNTIzXzMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnNTIzXzMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnNTIzXzMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnNTIzXzQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2c1MjNfNC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciA1MjM6IE1pc3Npb24gNCIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gNCBvZiBTZWFHbGlkZXIgNTIzLlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2c1MjNfNF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2c1MjNfNF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzUyM180L2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnNTIzXzQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnNTIzXzQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnNTIzXzQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvV1FCLTA0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9XUUItMDQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvV1FCLTA0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlBhY0lPT1MgV2F0ZXIgUXVhbGl0eSBCdW95IDA0OiBIaWxvIEJheSwgQmlnIElzbGFuZCwgSGF3YWlpIiwgIlRoZSB3YXRlciBxdWFsaXR5IGJ1b3lzIGFyZSBwYXJ0IG9mIHRoZSBQYWNpZmljIElzbGFuZHMgT2NlYW4gT2JzZXJ2aW5nIFN5c3RlbSAoUGFjSU9PUykgYW5kIGFyZSBkZXNpZ25lZCB0byBtZWFzdXJlIGEgdmFyaWV0eSBvZiBvY2VhbiBwYXJhbWV0ZXJzIGF0IGZpeGVkIHBvaW50cy4gV1FCLTA0IGlzIGxvY2F0ZWQgaW4gSGlsbyBCYXkgb24gdGhlIGVhc3Qgc2lkZSBvZiB0aGUgQmlnIElzbGFuZC4gQ29udGludW91cyBzYW1wbGluZyBvZiB0aGlzIGFyZWEgcHJvdmlkZXMgYSByZWNvcmQgb2YgYmFzZWxpbmUgY29uZGl0aW9ucyBvZiB0aGUgY2hlbWljYWwgYW5kIGJpb2xvZ2ljYWwgZW52aXJvbm1lbnQgZm9yIGNvbXBhcmlzb24gd2hlbiB0aGVyZSBhcmUgcG9sbHV0aW9uIGV2ZW50cyBzdWNoIGFzIHN0b3JtIHJ1bm9mZiBvciBhIHNld2FnZSBzcGlsbC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuZGVwdGggKERpc3RhbmNlIGJlbG93IG1lYW4gc2VhIGxldmVsLCBtKVxuc3RhdGlvbl9uYW1lIChXUUItMDQ6IFBhY0lPT1MgV2F0ZXIgUXVhbGl0eSBCdW95IDA0OiBIaWxvIEJheSwgQmlnIElzbGFuZCwgSGF3YWlpKVxudGVtcGVyYXR1cmUgKHdhdGVyIHRlbXBlcmF0dXJlIChwcm9jZXNzZWQpLCBDZWxzaXVzKVxuc2FsaW5pdHkgKHNhbGluaXR5IFBTVSAocHJvY2Vzc2VkKSwgMSlcbnR1cmJpZGl0eSAodHVyYmlkaXR5IE5UVSAocHJvY2Vzc2VkKSwgMSlcbmNobG9yb3BoeWxsIChjaGxvcm9waHlsbCAocHJvY2Vzc2VkKSwgdWcvTClcbm94eWdlbiAoZGlzc29sdmVkIG94eWdlbiBjb25jZW50cmF0aW9uIChwcm9jZXNzZWQpLCBtZy9MKVxub3h5Z2VuX3NhdHVyYXRpb24gKGRpc3NvbHZlZCBveHlnZW4gc2F0dXJhdGlvbiAocHJvY2Vzc2VkKSwgJSlcbnBoIChwSCAocHJvY2Vzc2VkKSwgMSlcbnRlbXBlcmF0dXJlX3JhdyAod2F0ZXIgdGVtcGVyYXR1cmUgKHJhdyksIENlbHNpdXMpXG50ZW1wZXJhdHVyZV9kbV9xZCAod2F0ZXIgdGVtcGVyYXR1cmUgZGVsYXllZC1tb2RlIHF1YWxpdHkgZGVzY3JpcHRvciwgMClcbnRlbXBlcmF0dXJlX3FjX2FnZyAoUUFSVE9EIEFnZ3JlZ2F0ZS9Sb2xsdXAgVGVzdCAocHJvY2Vzc2VkKSwgMClcbnRlbXBlcmF0dXJlX3FjX2dhcCAoUUFSVE9EIEdhcCBUZXN0IChwcm9jZXNzZWQpLCAwKVxudGVtcGVyYXR1cmVfcWNfc3luIChRQVJUT0QgU3ludGF4IFRlc3QgKHByb2Nlc3NlZCksIDApXG50ZW1wZXJhdHVyZV9xY19sb2MgKFFBUlRPRCBMb2NhdGlvbiBUZXN0IChwcm9jZXNzZWQpLCAwKVxudGVtcGVyYXR1cmVfcWNfcm5nIChRQVJUT0QgR3Jvc3MgUmFuZ2UgVGVzdCAocHJvY2Vzc2VkKSwgMClcbnRlbXBlcmF0dXJlX3FjX2NsbSAoUUFSVE9EIENsaW1hdG9sb2d5IFRlc3QgKHByb2Nlc3NlZCksIDApXG50ZW1wZXJhdHVyZV9xY19zcGsgKFFBUlRPRCBTcGlrZSBUZXN0IChwcm9jZXNzZWQpLCAwKVxudGVtcGVyYXR1cmVfcWNfcnRjIChRQVJUT0QgUmF0ZSBvZiBDaGFuZ2UgVGVzdCAocHJvY2Vzc2VkKSwgMClcbnRlbXBlcmF0dXJlX3FjX2ZsdCAoUUFSVE9EIEZsYXQgTGluZSBUZXN0IChwcm9jZXNzZWQpLCAwKVxuLi4uICg5NCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9XUUItMDRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL1dRQi0wNF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9XUUItMDQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wYWNpb29zLmhhd2FpaS5lZHUvd2F0ZXIvd3FidW95LWhpbG8vIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL1dRQi0wNC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9V1FCLTA0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlBhY2lmaWMgSXNsYW5kcyBPY2VhbiBPYnNlcnZpbmcgU3lzdGVtIChQYWNJT09TKSIsICJXUUItMDQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvV1FCLTA1LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9XUUItMDUiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvV1FCLTA1LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlBhY0lPT1MgV2F0ZXIgUXVhbGl0eSBCdW95IDA1OiBQZWxla2FuZSBCYXksIEJpZyBJc2xhbmQsIEhhd2FpaSIsICJUaGUgd2F0ZXIgcXVhbGl0eSBidW95cyBhcmUgcGFydCBvZiB0aGUgUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIGFuZCBhcmUgZGVzaWduZWQgdG8gbWVhc3VyZSBhIHZhcmlldHkgb2Ygb2NlYW4gcGFyYW1ldGVycyBhdCBmaXhlZCBwb2ludHMuIFdRQi0wNSBpcyBsb2NhdGVkIGluIFBlbGVrYW5lIEJheSBuZWFyIEthd2FpaGFlIEhhcmJvciBvbiB0aGUgd2VzdCBzaWRlIG9mIHRoZSBCaWcgSXNsYW5kLiBDb250aW51b3VzIHNhbXBsaW5nIG9mIHRoaXMgYXJlYSBwcm92aWRlcyBhIHJlY29yZCBvZiBiYXNlbGluZSBjb25kaXRpb25zIG9mIHRoZSBjaGVtaWNhbCBhbmQgYmlvbG9naWNhbCBlbnZpcm9ubWVudCBmb3IgY29tcGFyaXNvbiB3aGVuIHRoZXJlIGFyZSBwb2xsdXRpb24gZXZlbnRzIHN1Y2ggYXMgc3Rvcm0gcnVub2ZmIG9yIGEgc2V3YWdlIHNwaWxsLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5kZXB0aCAoRGlzdGFuY2UgYmVsb3cgbWVhbiBzZWEgbGV2ZWwsIG0pXG5zdGF0aW9uX25hbWUgKFdRQi0wNTogUGFjSU9PUyBXYXRlciBRdWFsaXR5IEJ1b3kgMDU6IFBlbGVrYW5lIEJheSwgQmlnIElzbGFuZCwgSGF3YWlpKVxudGVtcGVyYXR1cmUgKHdhdGVyIHRlbXBlcmF0dXJlIChwcm9jZXNzZWQpLCBDZWxzaXVzKVxuc2FsaW5pdHkgKHNhbGluaXR5IFBTVSAocHJvY2Vzc2VkKSwgMSlcbnR1cmJpZGl0eSAodHVyYmlkaXR5IE5UVSAocHJvY2Vzc2VkKSwgMSlcbmNobG9yb3BoeWxsIChjaGxvcm9waHlsbCAocHJvY2Vzc2VkKSwgdWcvTClcbm94eWdlbiAoZGlzc29sdmVkIG94eWdlbiBjb25jZW50cmF0aW9uIChwcm9jZXNzZWQpLCBtZy9MKVxub3h5Z2VuX3NhdHVyYXRpb24gKGRpc3NvbHZlZCBveHlnZW4gc2F0dXJhdGlvbiAocHJvY2Vzc2VkKSwgJSlcbnBoIChwSCAocHJvY2Vzc2VkKSwgMSlcbnRlbXBlcmF0dXJlX3JhdyAod2F0ZXIgdGVtcGVyYXR1cmUgKHJhdyksIENlbHNpdXMpXG50ZW1wZXJhdHVyZV9kbV9xZCAod2F0ZXIgdGVtcGVyYXR1cmUgZGVsYXllZC1tb2RlIHF1YWxpdHkgZGVzY3JpcHRvciwgMClcbnRlbXBlcmF0dXJlX3FjX2FnZyAoUUFSVE9EIEFnZ3JlZ2F0ZS9Sb2xsdXAgVGVzdCAocHJvY2Vzc2VkKSwgMClcbnRlbXBlcmF0dXJlX3FjX2dhcCAoUUFSVE9EIEdhcCBUZXN0IChwcm9jZXNzZWQpLCAwKVxudGVtcGVyYXR1cmVfcWNfc3luIChRQVJUT0QgU3ludGF4IFRlc3QgKHByb2Nlc3NlZCksIDApXG50ZW1wZXJhdHVyZV9xY19sb2MgKFFBUlRPRCBMb2NhdGlvbiBUZXN0IChwcm9jZXNzZWQpLCAwKVxudGVtcGVyYXR1cmVfcWNfcm5nIChRQVJUT0QgR3Jvc3MgUmFuZ2UgVGVzdCAocHJvY2Vzc2VkKSwgMClcbnRlbXBlcmF0dXJlX3FjX2NsbSAoUUFSVE9EIENsaW1hdG9sb2d5IFRlc3QgKHByb2Nlc3NlZCksIDApXG50ZW1wZXJhdHVyZV9xY19zcGsgKFFBUlRPRCBTcGlrZSBUZXN0IChwcm9jZXNzZWQpLCAwKVxudGVtcGVyYXR1cmVfcWNfcnRjIChRQVJUT0QgUmF0ZSBvZiBDaGFuZ2UgVGVzdCAocHJvY2Vzc2VkKSwgMClcbnRlbXBlcmF0dXJlX3FjX2ZsdCAoUUFSVE9EIEZsYXQgTGluZSBUZXN0IChwcm9jZXNzZWQpLCAwKVxuLi4uICg5NCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9XUUItMDVfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL1dRQi0wNV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9XUUItMDUvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wYWNpb29zLmhhd2FpaS5lZHUvd2F0ZXIvd3FidW95LXBlbGVrYW5lLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9XUUItMDUucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPVdRQi0wNSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJQYWNpZmljIElzbGFuZHMgT2NlYW4gT2JzZXJ2aW5nIFN5c3RlbSAoUGFjSU9PUykiLCAiV1FCLTA1Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0FXUy1ITkxQaWVyMS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvQVdTLUhOTFBpZXIxIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0FXUy1ITkxQaWVyMS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIFdlYXRoZXIgU3RhdGlvbjogSG9ub2x1bHUgSGFyYm9yIEVudHJhbmNlLCBPYWh1LCBIYXdhaWkiLCAiVGhlIFBhY2lmaWMgSXNsYW5kcyBPY2VhbiBPYnNlcnZpbmcgU3lzdGVtIChQYWNJT09TKSBvcGVyYXRlcyBhIERhdmlzIEluc3RydW1lbnRzIGF1dG9tYXRpYyB3ZWF0aGVyIHN0YXRpb24gKEFXUykgbmVhciB0aGUgZW50cmFuY2UgdG8gSG9ub2x1bHUgSGFyYm9yIG9uIHRoZSBsZWV3YXJkICh3ZXN0ZXJuKSBjb2FzdCBvZiBPYWh1IGluIEhhd2FpaSB0byBhaWQgd2l0aCBuYXZpZ2F0aW9uLiBUaGUgc3RhdGlvbiByZWNvcmRzIG1lYXN1cmVtZW50cyBldmVyeSA1IG1pbnV0ZXMgb2YgYWlyIHRlbXBlcmF0dXJlLCB3aW5kIHNwZWVkIGFuZCBkaXJlY3Rpb24sIHByZWNpcGl0YXRpb24sIHJlbGF0aXZlIGh1bWlkaXR5LCBhbmQgYWlyIHByZXNzdXJlLiBTZW5zb3JzIGFyZSBsb2NhdGVkIGF0IFBpZXIgMSwgaW5zdGFsbGVkIG9uIGEgdG93ZXIgYXQgYW4gZWxldmF0aW9uIG9mIDY0IGZlZXQgKDE5LjUgbWV0ZXJzKSBhYm92ZSBzZWEgbGV2ZWwuIFRoZSBzdGF0aW9uIGlzIG93bmVkIGJ5IHRoZSBIYXdhaWkgUGlsb3RzIEFzc29jaWF0aW9uIChIUEEpLiBQYWNJT09TIG1haW50YWlucyB0aGUgc3RhdGlvbiBhbmQgcHJvdmlkZXMgZGF0YSBhY2Nlc3MuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFsdGl0dWRlIChEaXN0YW5jZSBhYm92ZSBtZWFuIHNlYSBsZXZlbCwgbSlcbnN0YXRpb25fbmFtZSAoQVdTLUhOTFBpZXIxOiBQYWNJT09TIFdlYXRoZXIgU3RhdGlvbjogSG9ub2x1bHUgSGFyYm9yIEVudHJhbmNlLCBPYWh1LCBIYXdhaWkpXG5haXJfdGVtcGVyYXR1cmUgKGFpciB0ZW1wZXJhdHVyZSAocHJvY2Vzc2VkKSwgQ2Vsc2l1cylcbndpbmRfc3BlZWQgKHdpbmQgc3BlZWQgKHByb2Nlc3NlZCksIG0vcylcbmd1c3Rfc3BlZWQgKGd1c3Qgc3BlZWQgKHByb2Nlc3NlZCksIG0vcylcbndpbmRfZnJvbV9kaXJlY3Rpb24gKHdpbmQgZGlyZWN0aW9uIChwcm9jZXNzZWQpLCBkZWdyZWVzKVxucmFpbmZhbGxfcmF0ZSAocmFpbiByYXRlIChwcm9jZXNzZWQpLCBtbS9oKVxucmVsYXRpdmVfaHVtaWRpdHkgKHJlbGF0aXZlIGh1bWlkaXR5IChwcm9jZXNzZWQpLCAlKVxuYWlyX3ByZXNzdXJlIChhaXIgcHJlc3N1cmUgKHByb2Nlc3NlZCksIG1pbGxpYmFycylcbmFpcl90ZW1wZXJhdHVyZV9yYXcgKGFpciB0ZW1wZXJhdHVyZSAocmF3KSwgQ2Vsc2l1cylcbmFpcl90ZW1wZXJhdHVyZV9kbV9xZCAoYWlyIHRlbXBlcmF0dXJlIGRlbGF5ZWQtbW9kZSBxdWFsaXR5IGRlc2NyaXB0b3IsIDApXG5haXJfdGVtcGVyYXR1cmVfcWNfYWdnIChRQVJUT0QgQWdncmVnYXRlL1JvbGx1cCBUZXN0IChwcm9jZXNzZWQpLCAwKVxuYWlyX3RlbXBlcmF0dXJlX3FjX2dhcCAoUUFSVE9EIEdhcCBUZXN0IChwcm9jZXNzZWQpLCAwKVxuYWlyX3RlbXBlcmF0dXJlX3FjX3N5biAoUUFSVE9EIFN5bnRheCBUZXN0IChwcm9jZXNzZWQpLCAwKVxuYWlyX3RlbXBlcmF0dXJlX3FjX2xvYyAoUUFSVE9EIExvY2F0aW9uIFRlc3QgKHByb2Nlc3NlZCksIDApXG5haXJfdGVtcGVyYXR1cmVfcWNfcm5nIChRQVJUT0QgR3Jvc3MgUmFuZ2UgVGVzdCAocHJvY2Vzc2VkKSwgMClcbmFpcl90ZW1wZXJhdHVyZV9xY19jbG0gKFFBUlRPRCBDbGltYXRvbG9neSBUZXN0IChwcm9jZXNzZWQpLCAwKVxuYWlyX3RlbXBlcmF0dXJlX3FjX3NwayAoUUFSVE9EIFNwaWtlIFRlc3QgKHByb2Nlc3NlZCksIDApXG4uLi4gKDkyIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL0FXUy1ITkxQaWVyMV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvQVdTLUhOTFBpZXIxX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL0FXUy1ITkxQaWVyMS9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBhY2lvb3MuaGF3YWlpLmVkdS93ZWF0aGVyL29icy1ob25vbHVsdS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvQVdTLUhOTFBpZXIxLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1BV1MtSE5MUGllcjEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgIkFXUy1ITkxQaWVyMSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9DaHVrY2hpU2VhXzQ1NGFfMDM3YV9mY2Y0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9DaHVrY2hpU2VhXzQ1NGFfMDM3YV9mY2Y0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0NodWtjaGlTZWFfNDU0YV8wMzdhX2ZjZjQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUE1FTCBFY29GT0NJIENodWtjaGkgU2VhIHByb2ZpbGUgZGF0YSwgMjAxMC0yMDEyIiwgIlBhY2lmaWMgTWFyaW5lIEVudmlyb25tZW50YWwgTGFib3JhdG9yeSAoUE1FTCkgRmlzaGVyaWVzLU9jZWFub2dyYXBoeSBDb29wZXJhdGl2ZSBJbnZlc3RpZ2F0aW9ucyAoRk9DSSkgQ2h1a2NoaSBTZWEuIFBNRUwgRWNvRk9DSSBkYXRhIGZyb20gYSBsb2NhbCBzb3VyY2UuXG5cbmNkbV9kYXRhX3R5cGUgPSBQcm9maWxlXG5WQVJJQUJMRVM6XG5wcm9mXG5pZCAocHJvZmlsZSBpZClcbmNhc3QgKGNhc3QgbnVtYmVyKVxuY3J1aXNlIChDcnVpc2UgbmFtZSlcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sb25naXR1ZGUgKHN0YXRpb24gbG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sb24zNjAgKHN0YXRpb24gbG9uZ2l0dWRlIDM2MCwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKHN0YXRpb24gbGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG5kZXB0aCAobSlcbm9jZWFuX3RlbXBlcmF0dXJlXzEgKFRlbXBlcmF0dXJlIDFcciwgRGVncmVlX0MpXG5vY2Vhbl90ZW1wZXJhdHVyZV8yIChUZW1wZXJhdHVyZSAyXHIsIERlZ3JlZV9DKVxub2NlYW5fZGlzc29sdmVkX294eWdlbl9jb25jZW50cmF0aW9uXzFfbUxwZXJMIChkaXNzb2x2ZWQgb3h5Z2VuIGNvbmNlbnRyYXRpb24gMSBtTC9MXHIsIG1ML0wpXG5vY2Vhbl9kaXNzb2x2ZWRfb3h5Z2VuX2NvbmNlbnRyYXRpb25fMl9tTHBlckwgKGRpc3NvbHZlZCBveHlnZW4gY29uY2VudHJhdGlvbiAyIG1ML0xcciwgbUwvTClcbnBob3Rvc3ludGhldGljYWxseV9hY3RpdmVfcmFkaWF0aW9uIChQaG90b3N5bnRoZXRpY2FsbHkgQWN0aXZlIFJhZGlhdGlvblxyLCBtaWNyb0VpbiBjbS0yIHMtMSlcbm9jZWFuX2NobG9yb3BoeWxsX2FfY29uY2VudHJhdGlvbl9mYWN0b3J5Q2FsIChDaGxvcm9waHlsbCBhIENvbmNlbnRyYXRpb24gKEZhY3RvcnkgQ2FsaWJyYXRpb24pXHIsIG1pY3JvZ3JhbXMvTClcbm9jZWFuX2NobG9yb3BoeWxsX2ZsdW9yZXNjZW5jZV9yYXcgKFJhdyBDaGxvcm9waHlsbCBGbG91cmVzY2VuY2Vcciwgdm9sdHMpXG5vY2Vhbl9wcmFjdGljYWxfc2FsaW5pdHlfMSAoU2FsaW5pdHkgMSAoUFNVIFBTUy03OClcciwgUFNVKVxub2NlYW5fcHJhY3RpY2FsX3NhbGluaXR5XzIgKFNhbGluaXR5IDIgKFBTVSBQU1MtNzgpXHIsIFBTVSlcbm9jZWFuX3NpZ21hX3QgKFNpZ21hLVQsIGtnIG0tMylcbnNlYV93YXRlcl9udXRyaWVudF9ib3R0bGVfbnVtYmVyIChOdXRyaWVudHMgTmlza2luIEJvdHRsZSBOdW1iZXJcciwgbnVtYmVyKVxuc2VhX3dhdGVyX3Bob3NwaGF0ZV9jb25jZW50cmF0aW9uIChQTzQsIG1pY3JvbW9sZXMva2cpXG5zZWFfd2F0ZXJfc2lsaWNhdGVfY29uY2VudHJhdGlvbiAoU0ksIG1pY3JvbW9sZXMva2cpXG5zZWFfd2F0ZXJfbml0cmF0ZV9jb25jZW50cmF0aW9uIChOTzMsIG1pY3JvbW9sZXMva2cpXG5zZWFfd2F0ZXJfbml0cml0ZV9jb25jZW50cmF0aW9uIChOTzIsIG1pY3JvbW9sZXMva2cpXG5zZWFfd2F0ZXJfYW1tb25pdW1fY29uY2VudHJhdGlvbiAoTkg0LCBtaWNyb21vbGVzL2tnKVxub2NlYW5fZGlzc29sdmVkX294eWdlbl9jb25jZW50cmF0aW9uXzFfbU1wZXJrZyAoRGlzc29sdmVkIE94eWdlbiBDb25jZW50cmF0aW9uIDEgbU1vbGVzL2tnXHIsIG1pY3JvbW9sZXMva2cpXG5vY2Vhbl9kaXNzb2x2ZWRfb3h5Z2VuX2NvbmNlbnRyYXRpb25fMl9tTXBlcmtnIChEaXNzb2x2ZWQgT3h5Z2VuIENvbmNlbnRyYXRpb24gMiBtTW9sZXMva2dcciwgbWljcm9tb2xlcy9rZylcbm9jZWFuX294eWdlbl9zYXR1cmF0aW9uXzEgKE94eWdlbiBQZXJjZW50IFNhdHVyYXRpb24gMVxyLCBwZXJjZW50IHNhdHVyYXRpb24pXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvQ2h1a2NoaVNlYV80NTRhXzAzN2FfZmNmNF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvQ2h1a2NoaVNlYV80NTRhXzAzN2FfZmNmNF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9DaHVrY2hpU2VhXzQ1NGFfMDM3YV9mY2Y0L2luZGV4Lmpzb24iLCAid3d3LmVjb2ZvY2kubm9hYS5nb3YiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvQ2h1a2NoaVNlYV80NTRhXzAzN2FfZmNmNC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9Q2h1a2NoaVNlYV80NTRhXzAzN2FfZmNmNCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJQTUVMIEVjb0ZPQ0kiLCAiQ2h1a2NoaVNlYV80NTRhXzAzN2FfZmNmNCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hcmN0aWNSZXNjdWVEYXRhX2U1YmZfY2VmOF8zZjcyLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hcmN0aWNSZXNjdWVEYXRhX2U1YmZfY2VmOF8zZjcyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2FyY3RpY1Jlc2N1ZURhdGFfZTViZl9jZWY4XzNmNzIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUE1FTCBFY29GT0NJIEVhcmx5IEFyY3RpYyBEYXRhLCAxOTg2LTE5OTEiLCAiUGFjaWZpYyBNYXJpbmUgRW52aXJvbm1lbnRhbCBMYWJvcmF0b3J5IChQTUVMKSBGaXNoZXJpZXMtT2NlYW5vZ3JhcGh5IENvb3BlcmF0aXZlIEludmVzdGlnYXRpb25zIChGT0NJKSBFYXJseSBBcmN0aWMgRGF0YSwgMTk4NyAtIDE5OTFcblxuY2RtX2RhdGFfdHlwZSA9IFByb2ZpbGVcblZBUklBQkxFUzpcbnByb2ZcbmlkIChwcm9maWxlIGlkKVxuY2FzdCAoY2FzdCBudW1iZXIpXG5jcnVpc2UgKENydWlzZSBuYW1lKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxvbmdpdHVkZSAoc3RhdGlvbiBsb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxvbjM2MCAoc3RhdGlvbiBsb25naXR1ZGUgMzYwLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoc3RhdGlvbiBsYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbmRlcHRoIChtKVxub2NlYW5fdGVtcGVyYXR1cmVfMSAoVGVtcGVyYXR1cmUgMVxyLCBEZWdyZWVfQylcbm9jZWFuX2NveF9zYWxpbml0eV8xIChzZWFfd2F0ZXJfcHJhY3RpY2FsX3NhbGluaXR5LCBQU1UpXG5vY2Vhbl9wcmFjdGljYWxfc2FsaW5pdHlfMSAoU2FsaW5pdHkgMSAoUFNVIFBTUy03OClcciwgUFNVKVxub2NlYW5fc2lnbWFfdCAoU2lnbWEtVCwga2cgbS0zKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2FyY3RpY1Jlc2N1ZURhdGFfZTViZl9jZWY4XzNmNzJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2FyY3RpY1Jlc2N1ZURhdGFfZTViZl9jZWY4XzNmNzJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXJjdGljUmVzY3VlRGF0YV9lNWJmX2NlZjhfM2Y3Mi9pbmRleC5qc29uIiwgInd3dy5lY29mb2NpLm5vYWEuZ292IiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2FyY3RpY1Jlc2N1ZURhdGFfZTViZl9jZWY4XzNmNzIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWFyY3RpY1Jlc2N1ZURhdGFfZTViZl9jZWY4XzNmNzImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUE1FTCBFY29GT0NJIiwgImFyY3RpY1Jlc2N1ZURhdGFfZTViZl9jZWY4XzNmNzIiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvU2hlbGlrb2ZfbGluZThfMzY5NV8wYWRhX2QwNjYuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL1NoZWxpa29mX2xpbmU4XzM2OTVfMGFkYV9kMDY2IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL1NoZWxpa29mX2xpbmU4XzM2OTVfMGFkYV9kMDY2LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlBNRUwgRWNvRk9DSSBTaGVsaWtvZiBMaW5lIDggRGF0YSwgMTk4MS1vcGVuIiwgIlBhY2lmaWMgTWFyaW5lIEVudmlyb25tZW50YWwgTGFib3JhdG9yeSAoUE1FTCkgRmlzaGVyaWVzLU9jZWFub2dyYXBoeSBDb29wZXJhdGl2ZSBJbnZlc3RpZ2F0aW9ucyAoRk9DSSkgU2hlbGlrb2YgTGluZSA4IERhdGFcblxuY2RtX2RhdGFfdHlwZSA9IFByb2ZpbGVcblZBUklBQkxFUzpcbnByb2ZcbmlkIChwcm9maWxlIGlkKVxuY2FzdCAoY2FzdCBudW1iZXIpXG5jcnVpc2UgKENydWlzZSBuYW1lKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxvbmdpdHVkZSAoc3RhdGlvbiBsb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxvbjM2MCAoc3RhdGlvbiBsb25naXR1ZGUgMzYwLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoc3RhdGlvbiBsYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbmRlcHRoIChtKVxub2NlYW5fdGVtcGVyYXR1cmVfMSAoVGVtcGVyYXR1cmUgMVxyLCBEZWdyZWVfQylcbm9jZWFuX2NveF9zYWxpbml0eV8xIChzZWFfd2F0ZXJfcHJhY3RpY2FsX3NhbGluaXR5LCBQU1UpXG5vY2Vhbl9jaGxvcm9waHlsbF9mbHVvcmVzY2VuY2VfcmF3IChSYXcgQ2hsb3JvcGh5bGwgRmxvdXJlc2NlbmNlXHIsIHZvbHRzKVxucGhvdG9zeW50aGV0aWNhbGx5X2FjdGl2ZV9yYWRpYXRpb24gKFBob3Rvc3ludGhldGljYWxseSBBY3RpdmUgUmFkaWF0aW9uXHIsIG1pY3JvRWluIGNtLTIgcy0xKVxub2NlYW5fc2lnbWFfdCAoU2lnbWEtVCwga2cgbS0zKVxub2NlYW5fY2hsb3JvcGh5bGxfYV9jb25jZW50cmF0aW9uX2ZhY3RvcnlDYWwgKENobG9yb3BoeWxsIGEgQ29uY2VudHJhdGlvbiAoRmFjdG9yeSBDYWxpYnJhdGlvbilcciwgbWljcm9ncmFtcy9MKVxub2NlYW5fZGlzc29sdmVkX294eWdlbl9jb25jZW50cmF0aW9uXzFfbU1wZXJrZyAoRGlzc29sdmVkIE94eWdlbiBDb25jZW50cmF0aW9uIDEgbU1vbGVzL2tnXHIsIG1pY3JvbW9sZXMva2cpXG5vY2Vhbl9kaXNzb2x2ZWRfb3h5Z2VuX2NvbmNlbnRyYXRpb25fMl9tTXBlcmtnIChtb2xlX2NvbmNlbnRyYXRpb25fb2ZfZGlzc29sdmVkX21vbGVjdWxhcl9veHlnZW5faW5fc2VhX3dhdGVyLCBtaWNyb21vbGVzL2tnKVxub2NlYW5fZHluYW1pY19oZWlnaHQgKER5bmFtaWMgSGVpZ2h0LCBkeW5hbWljIG1ldGVycylcbm9jZWFuX294eWdlbl9zYXR1cmF0aW9uXzEgKE94eWdlbiBQZXJjZW50IFNhdHVyYXRpb24gMVxyLCBwZXJjZW50IHNhdHVyYXRpb24pXG5vY2Vhbl9wcmFjdGljYWxfc2FsaW5pdHlfMSAoU2FsaW5pdHkgMSAoUFNVIFBTUy03OClcciwgUFNVKVxub2NlYW5fcHJhY3RpY2FsX3NhbGluaXR5XzIgKFNhbGluaXR5IDIgKFBTVSBQU1MtNzgpXHIsIFBTVSlcbm9jZWFuX3RlbXBlcmF0dXJlXzIgKFRlbXBlcmF0dXJlIDJcciwgRGVncmVlX0MpXG5waG90b3N5bnRoZXRpY2FsbHlfYWN0aXZlX3JhZGlhdGlvbl9yYXcgKFJhdyBQaG90b3N5bnRoZXRpY2FsbHkgQWN0aXZlIFJhZGlhdGlvblxyLCB2b2x0cylcbnRyYW5zbWl0dGFuY2VfcGVyY2VudGFnZSAoUGVyY2VudCBMaWdodCBUcmFuc21pdHRhbmNlLCBwZXJjZW50KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL1NoZWxpa29mX2xpbmU4XzM2OTVfMGFkYV9kMDY2X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9TaGVsaWtvZl9saW5lOF8zNjk1XzBhZGFfZDA2Nl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9TaGVsaWtvZl9saW5lOF8zNjk1XzBhZGFfZDA2Ni9pbmRleC5qc29uIiwgInd3dy5lY29mb2NpLm5vYWEuZ292IiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL1NoZWxpa29mX2xpbmU4XzM2OTVfMGFkYV9kMDY2LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1TaGVsaWtvZl9saW5lOF8zNjk1XzBhZGFfZDA2NiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJQTUVMIEVjb0ZPQ0kiLCAiU2hlbGlrb2ZfbGluZThfMzY5NV8wYWRhX2QwNjYiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwV0RDOTQxN25ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwV0RDOTQxN25ydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXREM5NDE3bnJ0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlJlc2VhcmNoIFNoaXAgQXRsYW50aWMgRXhwbG9yZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUXVhbGl0eSBDb250cm9sbGVkIiwgIlJlc2VhcmNoIFNoaXAgQXRsYW50aWMgRXhwbG9yZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LlxuJz1+JyBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS5cblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLlxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLlxuKERvbid0IGluY2x1ZGUgYmFja3NsYXNoZXMgaW4geW91ciBxdWVyeS4pXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgxOSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBXREM5NDE3bnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBXREM5NDE3bnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcFdEQzk0MTducnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwV0RDOTQxN25ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwV0RDOTQxN25ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwV0RDOTQxN25ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBLQVFQLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBLQVFQIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcEtBUVAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUmVzZWFyY2ggU2hpcCBBdGxhbnRpcyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiUmVzZWFyY2ggU2hpcCBBdGxhbnRpcyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuXG4nPX4nIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLlxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuXG4oRG9uJ3QgaW5jbHVkZSBiYWNrc2xhc2hlcyBpbiB5b3VyIHF1ZXJ5LilcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDMzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdVJlc2VhcmNoU2hpcEtBUVBfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdVJlc2VhcmNoU2hpcEtBUVBfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1UmVzZWFyY2hTaGlwS0FRUC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VSZXNlYXJjaFNoaXBLQVFQLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VSZXNlYXJjaFNoaXBLQVFQJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VSZXNlYXJjaFNoaXBLQVFQIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcEtBUVBucnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcEtBUVBucnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwS0FRUG5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJSZXNlYXJjaCBTaGlwIEF0bGFudGlzIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJSZXNlYXJjaCBTaGlwIEF0bGFudGlzIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS5cbic9ficgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci5cblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy5cbihEb24ndCBpbmNsdWRlIGJhY2tzbGFzaGVzIGluIHlvdXIgcXVlcnkuKVxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbi4uLiAoMzMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1UmVzZWFyY2hTaGlwS0FRUG5ydF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1UmVzZWFyY2hTaGlwS0FRUG5ydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VSZXNlYXJjaFNoaXBLQVFQbnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdVJlc2VhcmNoU2hpcEtBUVBucnQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdVJlc2VhcmNoU2hpcEtBUVBucnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdVJlc2VhcmNoU2hpcEtBUVBucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwTkVQUC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwTkVQUCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBORVBQLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlJlc2VhcmNoIFNoaXAgSGVhbHkgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUXVhbGl0eSBDb250cm9sbGVkIiwgIlJlc2VhcmNoIFNoaXAgSGVhbHkgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LlxuJz1+JyBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS5cblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLlxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLlxuKERvbid0IGluY2x1ZGUgYmFja3NsYXNoZXMgaW4geW91ciBxdWVyeS4pXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgyMiBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBORVBQX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBORVBQX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcE5FUFAvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwTkVQUC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwTkVQUCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwTkVQUCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXREE3ODI3bnJ0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXREE3ODI3bnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdEQTc4MjducnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUmVzZWFyY2ggU2hpcCBLaWxvIE1vYW5hIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJSZXNlYXJjaCBTaGlwIEtpbG8gTW9hbmEgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LlxuJz1+JyBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS5cblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLlxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLlxuKERvbid0IGluY2x1ZGUgYmFja3NsYXNoZXMgaW4geW91ciBxdWVyeS4pXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgyMCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBXREE3ODI3bnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBXREE3ODI3bnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcFdEQTc4MjducnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwV0RBNzgyN25ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwV0RBNzgyN25ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwV0RBNzgyN25ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBLQ0VKLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBLQ0VKIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcEtDRUouZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUmVzZWFyY2ggU2hpcCBLbm9yciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiUmVzZWFyY2ggU2hpcCBLbm9yciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuXG4nPX4nIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLlxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuXG4oRG9uJ3QgaW5jbHVkZSBiYWNrc2xhc2hlcyBpbiB5b3VyIHF1ZXJ5LilcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDMzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdVJlc2VhcmNoU2hpcEtDRUpfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdVJlc2VhcmNoU2hpcEtDRUpfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1UmVzZWFyY2hTaGlwS0NFSi9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VSZXNlYXJjaFNoaXBLQ0VKLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VSZXNlYXJjaFNoaXBLQ0VKJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VSZXNlYXJjaFNoaXBLQ0VKIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdDWDc0NDVucnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdDWDc0NDVucnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwV0NYNzQ0NW5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJSZXNlYXJjaCBTaGlwIExhdXJlbmNlIE0uIEdvdWxkIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJSZXNlYXJjaCBTaGlwIExhdXJlbmNlIE0uIEdvdWxkIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS5cbic9ficgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci5cblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy5cbihEb24ndCBpbmNsdWRlIGJhY2tzbGFzaGVzIGluIHlvdXIgcXVlcnkuKVxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbi4uLiAoMjEgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1UmVzZWFyY2hTaGlwV0NYNzQ0NW5ydF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1UmVzZWFyY2hTaGlwV0NYNzQ0NW5ydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VSZXNlYXJjaFNoaXBXQ1g3NDQ1bnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdVJlc2VhcmNoU2hpcFdDWDc0NDVucnQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdVJlc2VhcmNoU2hpcFdDWDc0NDVucnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdVJlc2VhcmNoU2hpcFdDWDc0NDVucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwV0VDQm5ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwV0VDQm5ydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXRUNCbnJ0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlJlc2VhcmNoIFNoaXAgTWVsdmlsbGUgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUXVhbGl0eSBDb250cm9sbGVkIiwgIlJlc2VhcmNoIFNoaXAgTWVsdmlsbGUgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LlxuJz1+JyBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS5cblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLlxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLlxuKERvbid0IGluY2x1ZGUgYmFja3NsYXNoZXMgaW4geW91ciBxdWVyeS4pXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgxOSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBXRUNCbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBXRUNCbnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcFdFQ0JucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwV0VDQm5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwV0VDQm5ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwV0VDQm5ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXQlAzMjEwLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXQlAzMjEwIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdCUDMyMTAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUmVzZWFyY2ggU2hpcCBOYXRoYW5pZWwgQi4gUGFsbWVyIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJSZXNlYXJjaCBTaGlwIE5hdGhhbmllbCBCLiBQYWxtZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LlxuJz1+JyBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS5cblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLlxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLlxuKERvbid0IGluY2x1ZGUgYmFja3NsYXNoZXMgaW4geW91ciBxdWVyeS4pXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgxOCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBXQlAzMjEwX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBXQlAzMjEwX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcFdCUDMyMTAvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwV0JQMzIxMC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwV0JQMzIxMCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwV0JQMzIxMCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXQlAzMjEwbnJ0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXQlAzMjEwbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdCUDMyMTBucnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUmVzZWFyY2ggU2hpcCBOYXRoYW5pZWwgQi4gUGFsbWVyIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJSZXNlYXJjaCBTaGlwIE5hdGhhbmllbCBCLiBQYWxtZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LlxuJz1+JyBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS5cblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLlxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLlxuKERvbid0IGluY2x1ZGUgYmFja3NsYXNoZXMgaW4geW91ciBxdWVyeS4pXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgxOCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBXQlAzMjEwbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBXQlAzMjEwbnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcFdCUDMyMTBucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwV0JQMzIxMG5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwV0JQMzIxMG5ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwV0JQMzIxMG5ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXS1dCbnJ0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXS1dCbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdLV0JucnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUmVzZWFyY2ggU2hpcCBOZXcgSG9yaXpvbiBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiUmVzZWFyY2ggU2hpcCBOZXcgSG9yaXpvbiBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuXG4nPX4nIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLlxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuXG4oRG9uJ3QgaW5jbHVkZSBiYWNrc2xhc2hlcyBpbiB5b3VyIHF1ZXJ5LilcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDI1IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdVJlc2VhcmNoU2hpcFdLV0JucnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdVJlc2VhcmNoU2hpcFdLV0JucnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1UmVzZWFyY2hTaGlwV0tXQm5ydC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VSZXNlYXJjaFNoaXBXS1dCbnJ0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VSZXNlYXJjaFNoaXBXS1dCbnJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VSZXNlYXJjaFNoaXBXS1dCbnJ0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdYQVEuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdYQVEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwV1hBUS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJSZXNlYXJjaCBTaGlwIE9jZWFudXMgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUXVhbGl0eSBDb250cm9sbGVkIiwgIlJlc2VhcmNoIFNoaXAgT2NlYW51cyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuXG4nPX4nIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLlxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuXG4oRG9uJ3QgaW5jbHVkZSBiYWNrc2xhc2hlcyBpbiB5b3VyIHF1ZXJ5LilcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDI5IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdVJlc2VhcmNoU2hpcFdYQVFfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdVJlc2VhcmNoU2hpcFdYQVFfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1UmVzZWFyY2hTaGlwV1hBUS9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VSZXNlYXJjaFNoaXBXWEFRLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VSZXNlYXJjaFNoaXBXWEFRJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VSZXNlYXJjaFNoaXBXWEFRIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdTUTI2NzRucnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdTUTI2NzRucnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwV1NRMjY3NG5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJSZXNlYXJjaCBTaGlwIFJvYmVydCBHb3Jkb24gU3Byb3VsIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJSZXNlYXJjaCBTaGlwIFJvYmVydCBHb3Jkb24gU3Byb3VsIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS5cbic9ficgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci5cblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy5cbihEb24ndCBpbmNsdWRlIGJhY2tzbGFzaGVzIGluIHlvdXIgcXVlcnkuKVxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbi4uLiAoNyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBXU1EyNjc0bnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBXU1EyNjc0bnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcFdTUTI2NzRucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwV1NRMjY3NG5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwV1NRMjY3NG5ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwV1NRMjY3NG5ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBLQU9VbnJ0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBLQU9VbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcEtBT1VucnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUmVzZWFyY2ggU2hpcCBSb2dlciBSZXZlbGxlIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJSZXNlYXJjaCBTaGlwIFJvZ2VyIFJldmVsbGUgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LlxuJz1+JyBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS5cblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLlxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLlxuKERvbid0IGluY2x1ZGUgYmFja3NsYXNoZXMgaW4geW91ciBxdWVyeS4pXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgyMCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBLQU9VbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBLQU9VbnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcEtBT1VucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwS0FPVW5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwS0FPVW5ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwS0FPVW5ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBWTEhKLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBWTEhKIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFZMSEouZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUmVzZWFyY2ggU2hpcCBTb3V0aGVybiBTdXJ2ZXlvciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiUmVzZWFyY2ggU2hpcCBTb3V0aGVybiBTdXJ2ZXlvciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuXG4nPX4nIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLlxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuXG4oRG9uJ3QgaW5jbHVkZSBiYWNrc2xhc2hlcyBpbiB5b3VyIHF1ZXJ5LilcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDI3IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdVJlc2VhcmNoU2hpcFZMSEpfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdVJlc2VhcmNoU2hpcFZMSEpfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1UmVzZWFyY2hTaGlwVkxISi9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VSZXNlYXJjaFNoaXBWTEhKLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VSZXNlYXJjaFNoaXBWTEhKJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VSZXNlYXJjaFNoaXBWTEhKIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcEtURFFucnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcEtURFFucnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwS1REUW5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJSZXNlYXJjaCBTaGlwIFQuIEcuIFRob21wc29uIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJSZXNlYXJjaCBTaGlwIFQuIEcuIFRob21wc29uIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS5cbic9ficgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci5cblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy5cbihEb24ndCBpbmNsdWRlIGJhY2tzbGFzaGVzIGluIHlvdXIgcXVlcnkuKVxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbi4uLiAoMTcgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1UmVzZWFyY2hTaGlwS1REUW5ydF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1UmVzZWFyY2hTaGlwS1REUW5ydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VSZXNlYXJjaFNoaXBLVERRbnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdVJlc2VhcmNoU2hpcEtURFFucnQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdVJlc2VhcmNoU2hpcEtURFFucnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdVJlc2VhcmNoU2hpcEtURFFucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwWk1GUm5ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwWk1GUm5ydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBaTUZSbnJ0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlJlc2VhcmNoIFNoaXAgVGFuZ2Fyb2EgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUXVhbGl0eSBDb250cm9sbGVkIiwgIlJlc2VhcmNoIFNoaXAgVGFuZ2Fyb2EgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LlxuJz1+JyBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS5cblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLlxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLlxuKERvbid0IGluY2x1ZGUgYmFja3NsYXNoZXMgaW4geW91ciBxdWVyeS4pXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgxNyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBaTUZSbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBaTUZSbnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcFpNRlJucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwWk1GUm5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwWk1GUm5ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwWk1GUm5ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9GRURfUm9ja2Zpc2hfQ2F0Y2guc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0ZFRF9Sb2NrZmlzaF9DYXRjaCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9GRURfUm9ja2Zpc2hfQ2F0Y2guZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUm9ja2Zpc2ggUmVjcnVpdG1lbnQgYW5kIEVjb3N5c3RlbSBBc3Nlc3NtZW50IFN1cnZleSwgQ2F0Y2ggRGF0YSIsICJUaGUgRmlzaGVyaWVzIEVjb2xvZ3kgRGl2aXNpb24gKEZFRCwgaHR0cHM6Ly9zd2ZzYy5ub2FhLmdvdi9Hcm91bmRmaXNoQW5hbHlzaXMvKSBvZiB0aGUgU291dGh3ZXN0IEZpc2hlcmllcyBTY2llbmNlIENlbnRlciAoU1dGU0MpIGhhcyBjb25kdWN0ZWQgYSBtaWR3YXRlciB0cmF3bCBzdXJ2ZXkgb2ZmIGNlbnRyYWwgQ2FsaWZvcm5pYSBzaW5jZSAxOTgzIHdpdGggdGhlIHByaW1hcnkgZ29hbCBvZiBkZXZlbG9waW5nIHByZS1yZWNydWl0IGluZGljZXMgZm9yIHlvdW5nLW9mLXRoZS15ZWFyIChZT1kpIHJvY2tmaXNoIChTZWJhc3RlcyBzcHAuKS4gVGhlIHN1cnZleSBhbHNvIHNhbXBsZXMgbnVtZXJvdXMgb3RoZXIgY29tcG9uZW50cyBvZiB0aGUgZXBpcGVsYWdpYyBtaWNyb25la3RvbiwgaW5jbHVkaW5nIG90aGVyIFlPWSBncm91bmRmaXNoIChzdWNoIGFzIFBhY2lmaWMgaGFrZSwgTWVybHVjY2l1cyBwcm9kdWN0dXMsIGFuZCBzYW5kZGFiLCBDaXRoYXJpY2h0aHlzIHNwcCApLCBjb2FzdGFsIHBlbGFnaWMgZmlzaGVzIChzdWNoIGFzIFBhY2lmaWMgc2FyZGluZSwgU2FyZGlub3BzIHNhZ2F4LCBhbmQgbm9ydGhlcm4gYW5jaG92eSwgRW5ncmF1bGlzIG1vcmRheCkgYW5kIG90aGVyIGZvcmFnZSBzcGVjaWVzLiAgQWRkaXRpb25hbCBkZXRhaWxzIHJlZ2FyZGluZyB0aGUgc3VydmV5IG1ldGhvZHMgYW5kIHJlc3VsdHMgYXJlIGRlc2NyaWJlZCBpbiBSYWxzdG9uIGV0IGFsLiAoMjAxNSkgYW5kIFNha3VtYSBldCBhbC4gKGh0dHA6Ly9jYWxjb2ZpLm9yZy9wdWJsaWNhdGlvbnMvY2FsY29maXJlcG9ydHMvdjU3L1ZvbDU3LVNha3VtYV9wYWdlcy4xNjMtMTgzLnBkZikuIFJhbHN0b24sIFMuLCBKLkMuIEZpZWxkIGFuZCBLLlMuIFNha3VtYS4gMjAxNS4gTG9uZ3Rlcm0gdmFyaWF0aW9uIGluIGEgY2VudHJhbCBDYWxpZm9ybmlhIHBlbGFnaWMgZm9yYWdlIGFzc2VtYmxhZ2UuIEpvdXJuYWwgb2YgTWFyaW5lIFN5c3RlbXMgMTQ2OiAyNi0zNy4gaHR0cHM6Ly9keC5kb2kub3JnLzEwLjEwMTYvai5qbWFyc3lzLjIwMTQuMDYuMDEzLiBTYWt1bWEsIEsuTS4sIEouQy4gRmllbGQsIEIuQi4gTWFyaW5vdmljLCBDLk4uIENhcnJpb24sIE4uSi4gTWFudHVhIGFuZCBTLiBSYWxzdG9uLiBJbiByZXZpc2lvbi4gQW5vbWFsb3VzIGVwaXBlbGFnaWMgbWljcm9uZWt0b24gYXNzZW1ibGFnZSBwYXR0ZXJucyBpbiB0aGUgbmVyaXRpYyB3YXRlcnMgb2YgdGhlIENhbGlmb3JuaWEgQ3VycmVudCBpbiBzcHJpbmcgMjAxNSBkdXJpbmcgYSBwZXJpb2Qgb2YgZXh0cmVtZSBvY2VhbiBjb25kaXRpb25zLiBDYWxDT0ZJIFJlcG9ydHMuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxudGltZSAoTmV0LWluIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoTmV0LWluIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChOZXQtaW4gTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5jcnVpc2VcbmhhdWxfbm8gKEhhdWwgTnVtYmVyKVxudmVzc2VsXG5zdGF0aW9uIChTdGF0aW9uIE51bWJlcilcbmNhdGNoXG5zcGVjaWVzX2NvZGVcbmNvbW1vbl9uYW1lXG5zY2lfbmFtZSAoU2NpZW50aWZpYyBuYW1lKVxuc3BlY2llc19ncm91cFxubWF0dXJpdHlcbnNwZWNpZXNfbm90ZXNcbi4uLiAoMTQgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvRkVEX1JvY2tmaXNoX0NhdGNoX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9GRURfUm9ja2Zpc2hfQ2F0Y2hfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vRkVEX1JvY2tmaXNoX0NhdGNoL2luZGV4Lmpzb24iLCAiaHR0cDovL2NhbGNvZmkub3JnL3B1YmxpY2F0aW9ucy9jYWxjb2ZpcmVwb3J0cy92NTcvVm9sNTctU2FrdW1hX3BhZ2VzLjE2My0xODMucGRmIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL0ZFRF9Sb2NrZmlzaF9DYXRjaC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9RkVEX1JvY2tmaXNoX0NhdGNoJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk1GUyBTV0ZTQyBGRUQiLCAiRkVEX1JvY2tmaXNoX0NhdGNoIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ydGNjdGRDTUF5c2kiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcnRjY3RkQ01BeXNpLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlJUQyBDYXJxaW5leiBZU0kgQXJjaGl2ZWQgZGF0YSIsICJBcmNoaXZlZCBDTUEgZGF0YSAtIHVuZWRpdGVkIHZhcmlhYmxlIG5hbWVzXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxudGVtcGVyYXR1cmUgKFdhdGVyIFRlbXBlcmF0dXJlLCBkZWdyZWVzIEMpXG5zcGNvbmQgKHVTL2NtKVxuY29uZCAodVMvY20pXG5yZXNpc3QgKE9obSpjbSlcblREUyAoZy9MKVxuc2FsaW5pdHkgKHBwdClcbnByZXNzdXJlIChwc2lyKVxuZGVwdGggKG0pXG5waFxucGhtdiAocEgsIG1WKVxuY2hsICh1Zy9MKVxuY2hscmZ1IChjaGwsIFJGVSlcbnR1cmJpZCAoVHVyYmlkKywgTlRVKVxub2Rvc2F0ICglKVxub2RvIChtZy9MKVxuYmF0dCAoYmF0dGVyeSwgdm9sdHMpXG5zdGF0aW9uX2lkXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3J0Y2N0ZENNQXlzaV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcnRjY3RkQ01BeXNpX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3J0Y2N0ZENNQXlzaS9pbmRleC5qc29uIiwgImh0dHBzOi8vc2ZiZWFtcy5zZnN1LmVkdS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcnRjY3RkQ01BeXNpLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ydGNjdGRDTUF5c2kmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUlRDIiwgInJ0Y2N0ZENNQXlzaSJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcnRjY3RkQ01BeXNpcnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcnRjY3RkQ01BeXNpcnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUlRDIENhcnFpbmV6IFlTSSBSYXcgZGF0YSIsICJUZXN0IG9mIGluc3RhbGxpbmcgRVJEREFQIG9uIHRvcCBvZiBZU0kgb3V0cHV0LlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnRlbXBlcmF0dXJlIChXYXRlciBUZW1wZXJhdHVyZSwgZGVncmVlcyBDKVxuc3Bjb25kICh1Uy9jbSlcbmNvbmQgKHVTL2NtKVxucmVzaXN0IChPaG0qY20pXG5URFMgKGcvTClcbnNhbGluaXR5IChwcHQpXG5wcmVzc3VyZSAocHNpcilcbmRlcHRoIChtKVxucGhcbnBobXYgKHBILCBtVilcbmNobCAodWcvTClcbmNobHJmdSAoY2hsLCBSRlUpXG50dXJiaWQgKFR1cmJpZCssIE5UVSlcbm9kb3NhdCAoJSlcbm9kbyAobWcvTClcbmJhdHQgKGJhdHRlcnksIHZvbHRzKVxuc3RhdGlvbl9pZFxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ydGNjdGRDTUF5c2lydF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcnRjY3RkQ01BeXNpcnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcnRjY3RkQ01BeXNpcnQvaW5kZXguanNvbiIsICJodHRwczovL3NmYmVhbXMuc2ZzdS5lZHUvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3J0Y2N0ZENNQXlzaXJ0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ydGNjdGRDTUF5c2lydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJSVEMiLCAicnRjY3RkQ01BeXNpcnQiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3J0Y21ldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ydGNtZXQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUlRDIE1ldFN0YXRpb24gQXJjaGl2ZWQgZGF0YSIsICJBcmNoaXZlZCBSVEMgTWV0IGRhdGEgLSB1bmVkaXRlZCB2YXJpYWJsZSBuYW1lc1xuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbkFpclRfQVZHIChBaXIgVGVtcGVyYXR1cmUsIGRlZ3JlZXMgQylcblJIIChSZWxhdGl2ZSBIdW1pZGl0eSwgJSlcbkJQX0FWRyAoQmFyb21ldHJpYyBQcmVzc3VyZSwgbWJhcilcblNscldfQVZHICh3YXR0cyBzLTFtLTIpXG5QQVJfRGVuX0FWRyAoXHUwMGMyXHUwMGI1bW9sIHMtMW0tMilcblJhaW5fVE9UIChtbSlcbldTX1NfV1ZUIChtL3MpXG5XU19VX1dWVCAobS9zKVxuV2luZERpcl9EVV9XVlQgKGRlZylcbldpbmREaXJfU0RVX1dWVCAoZGVnKVxuV1NfTUFYIChtL3MpXG5QQVJfRGVuXzJfQVZHIChcdTAwYzJcdTAwYjVtb2wgcy0xbS0yKVxuc3RhdGlvbl9pZFxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ydGNtZXRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3J0Y21ldF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ydGNtZXQvaW5kZXguanNvbiIsICJodHRwczovL3NmYmVhbXMuc2ZzdS5lZHUvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3J0Y21ldC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cnRjbWV0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlJUQyIsICJydGNtZXQiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3J0Y21ldHJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3J0Y21ldHJ0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlJUQyBNZXRTdGF0aW9uIHJlYWwgdGltZSBkYXRhIiwgIlJlYWwgVGltZSBSVEMgTWV0IGRhdGEgLSB1bmVkaXRlZCB2YXJpYWJsZSBuYW1lc1xuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbkFpclRfQVZHIChBaXIgVGVtcGVyYXR1cmUsIGRlZ3JlZXMgQylcblJIIChSZWxhdGl2ZSBIdW1pZGl0eSwgJSlcbkJQX0FWRyAoQmFyb21ldHJpYyBQcmVzc3VyZSwgbWJhcilcblNscldfQVZHICh3YXR0cyBzLTFtLTIpXG5QQVJfRGVuX0FWRyAoXHUwMGI1bW9sIHMtMW0tMilcblJhaW5fVE9UIChtbSlcbldTX1NfV1ZUIChtL3MpXG5XU19VX1dWVCAobS9zKVxuV2luZERpcl9EVV9XVlQgKGRlZylcbldpbmREaXJfU0RVX1dWVCAoZGVnKVxuV1NfTUFYIChtL3MpXG5zdGF0aW9uX2lkXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3J0Y21ldHJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9ydGNtZXRydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ydGNtZXRydC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2ZiZWFtcy5zZnN1LmVkdS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcnRjbWV0cnQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXJ0Y21ldHJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlJUQyIsICJydGNtZXRydCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcnRjY3RkU2VhYmlyZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ydGNjdGRTZWFiaXJkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlJUQyBTZWFiaXJkIEFyY2hpdmVkIGRhdGEiLCAiQXJjaGl2ZWQgUlRDIFNlYWJpcmQgZGF0YSAtIHVuZWRpdGVkIHZhcmlhYmxlIG5hbWVzXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxudGVtcGVyYXR1cmUgKFdhdGVyIFRlbXBlcmF0dXJlLCBkZWdyZWVzIEMpXG5jb25kICh1Uy9jbSlcbnByZXNzdXJlIChwc2lyKVxuc2t1ZmExIChWKVxuc2t1ZmEyIChWKVxueG1pcyAoJSlcbnBhciAobWljcm9Nb2wqbS0yKnMtMSlcbnNhbGluaXR5IChwc3MpXG5zaWdtYSAoa2cvbTMpXG5pbnN0X1NOIChJbnN0cnVtZW50IFNlcmlhbCBOdW1iZXIpXG5zdGF0aW9uX2lkXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3J0Y2N0ZFNlYWJpcmRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3J0Y2N0ZFNlYWJpcmRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcnRjY3RkU2VhYmlyZC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2ZiZWFtcy5zZnN1LmVkdS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcnRjY3RkU2VhYmlyZC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cnRjY3RkU2VhYmlyZCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJSVEMiLCAicnRjY3RkU2VhYmlyZCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcnRjY3RkUlRDeXNpIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3J0Y2N0ZFJUQ3lzaS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJSVEMgWVNJIEFyY2hpdmVkIGRhdGEiLCAiQXJjaGl2ZWQgUlRDIGRhdGEgLSB1bmVkaXRlZCB2YXJpYWJsZSBuYW1lc1xuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnRlbXBlcmF0dXJlIChXYXRlciBUZW1wZXJhdHVyZSwgZGVncmVlcyBDKVxuc3Bjb25kICh1Uy9jbSlcbmNvbmQgKHVTL2NtKVxucmVzaXN0IChPaG0qY20pXG5URFMgKGcvTClcbnNhbGluaXR5IChwcHQpXG5wcmVzc3VyZSAocHNpcilcbmRlcHRoIChtKVxucGhcbnBobXYgKHBILCBtVilcbmNobCAodWcvTClcbmNobHJmdSAoY2hsLCBSRlUpXG50dXJiaWQgKFR1cmJpZCssIE5UVSlcbm9kb3NhdCAoJSlcbm9kbyAobWcvTClcbmJhdHQgKGJhdHRlcnksIHZvbHRzKVxuc3RhdGlvbl9pZFxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ydGNjdGRSVEN5c2lfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3J0Y2N0ZFJUQ3lzaV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ydGNjdGRSVEN5c2kvaW5kZXguanNvbiIsICJodHRwczovL3NmYmVhbXMuc2ZzdS5lZHUvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3J0Y2N0ZFJUQ3lzaS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cnRjY3RkUlRDeXNpJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlJUQyIsICJydGNjdGRSVEN5c2kiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3J0Y2N0ZFJUQ3lzaXJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3J0Y2N0ZFJUQ3lzaXJ0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlJUQyBZU0kgUmF3IGRhdGEiLCAiVGVzdCBvZiBpbnN0YWxsaW5nIEVSRERBUCBvbiB0b3Agb2YgWVNJIG91dHB1dC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG50ZW1wZXJhdHVyZSAoV2F0ZXIgVGVtcGVyYXR1cmUsIGRlZ3JlZXMgQylcbnNwY29uZCAodVMvY20pXG5jb25kICh1Uy9jbSlcbnJlc2lzdCAoT2htKmNtKVxuVERTIChnL0wpXG5zYWxpbml0eSAocHB0KVxucHJlc3N1cmUgKHBzaXIpXG5kZXB0aCAobSlcbnBoXG5waG12IChwSCwgbVYpXG5jaGwgKHVnL0wpXG5jaGxyZnUgKGNobCwgUkZVKVxudHVyYmlkIChUdXJiaWQrLCBOVFUpXG5vZG9zYXQgKCUpXG5vZG8gKG1nL0wpXG5iYXR0IChiYXR0ZXJ5LCB2b2x0cylcbnN0YXRpb25faWRcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcnRjY3RkUlRDeXNpcnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3J0Y2N0ZFJUQ3lzaXJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3J0Y2N0ZFJUQ3lzaXJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zZmJlYW1zLnNmc3UuZWR1LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9ydGNjdGRSVEN5c2lydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cnRjY3RkUlRDeXNpcnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUlRDIiwgInJ0Y2N0ZFJUQ3lzaXJ0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2dvbW9vc0J1b3kuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2dvbW9vc0J1b3kiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZ29tb29zQnVveS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJTZW5zb3IgRGF0YSBmcm9tIHRoZSBHb01PT1MgU09TIFNlcnZlciwgMjAwMC1wcmVzZW50IiwgIlRoZSBPQ0VBTlMgSUUgLS0gZm9ybWFsbHkgYXBwcm92ZWQgYXMgYW4gT0dDIEludGVyb3BlcmFiaWxpdHlcbkV4cGVyaW1lbnQgaW4gRGVjZW1iZXIgMjAwNiAtLSBlbmdhZ2VzIGRhdGEgbWFuYWdlcnMgYW5kIHNjaWVudGlzdHNcbmluIHRoZSBPY2Vhbi1PYnNlcnZpbmcgY29tbXVuaXR5IHRvIGFkdmFuY2UgdGhlaXIgdW5kZXJzdGFuZGluZyBhbmRcbmFwcGxpY2F0aW9uIG9mIHZhcmlvdXMgT0dDIHNwZWNpZmljYXRpb25zLCBzb2xpZGlmeSBkZW1vbnN0cmF0aW9uc1xuZm9yIE9jZWFuIFNjaWVuY2UgYXBwbGljYXRpb24gYXJlYXMsIGhhcmRlbiBzb2Z0d2FyZVxuaW1wbGVtZW50YXRpb25zLCBhbmQgcHJvZHVjZSBjYW5kaWRhdGUgT0dDIEJlc3QgUHJhY3RpY2VzIGRvY3VtZW50c1xudGhhdCBjYW4gYmUgdXNlZCB0byBpbmZvcm0gdGhlIGJyb2FkZXIgb2NlYW4tb2JzZXJ2aW5nIGNvbW11bml0eS5cblxuQmVjYXVzZSBvZiB0aGUgbmF0dXJlIG9mIFNPUyByZXF1ZXN0cywgcmVxdWVzdHMgZm9yIGRhdGEgTVVTVFxuaW5jbHVkZSBjb25zdHJhaW50cyBmb3IgdGhlIGxvbmdpdHVkZSwgbGF0aXR1ZGUsIHRpbWUsIGFuZC9vclxuc3RhdGlvbl9pZCB2YXJpYWJsZXMuXG5cbkluaXRpYXRvcnM6IFNVUkEgKGxlYWQpLCBUZXhhcyBBJk0gVW5pdmVyc2l0eSwgTUJBUkksIEdvTU9PUyBhbmRcblVuaWRhdGEuXG5cblNwZWNpZmljIGdvYWxzOlxuKiBDb21wYXJlIFNlbnNvciBPYnNlcnZhdGlvbiBTZXJ2aWNlIChTT1MpIGZyb20gdGhlIE9HQydzIFNlbnNvclxuICBXZWIgRW5hYmxlbWVudCAoU1dFKSBpbml0aWF0aXZlIHRvIHRoZSBXZWIgRmVhdHVyZSBTZXJ2aWNlIChXRlMpXG4gIGFzIGFwcGxpZWQgdG8gb2NlYW4gZGF0YSBpbiBhIHZhcmlldHkgb2YgZGF0YSBmb3JtYXRzIGluY2x1ZGluZ1xuICB0ZXh0IGZpbGVzLCBuZXRDREYgZmlsZXMsIHJlbGF0aW9uYWwgZGF0YWJhc2VzLCBhbmQgcG9zc2libHlcbiAgbmF0aXZlIHNlbnNvciBvdXRwdXQ7IChzZWUgRXhwZXJpbWVudCAjMSBmb3IgZGV0YWlscylcbiogTWFrZSB1c2Ugb2Ygc2VtYW50aWMgbWVkaWF0aW9uIHZpYSBTZW1hbnRpYyBXZWIgdGVjaG5vbG9naWVzIHRvXG4gIGFsbG93IHBsdXJhbGl0eSBvZiBpZGVudGlmaWNhdGlvbiBmb3Igc291cmNlIHR5cGVzIChwbGF0Zm9ybXNcbiAgYW5kIHNlbnNvcnMpIGFuZCBwaGVub21lbmEgdHlwZXM7XG4qIFRlc3QgYWdncmVnYXRpb24gc2VydmljZXMgYW5kIGNhY2hpbmcgc3RyYXRlZ2llcyB0byBwcm92aWRlXG4gIGVmZmljaWVudCBxdWVyaWVzO1xuKiBFeHBsb3JlIHBvc3NpYmxlIGVuaGFuY2VtZW50cyBvZiBUSFJFRERTIHNlcnZlciwgc28gdGhhdCBUSFJFRERTXG4gIHJlc2lkZW50IGRhdGEgc291cmNlcyBtaWdodCBiZSBtYWRlIGF2YWlsYWJsZSB2aWEgU09TIG9yIFdGUztcblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgxOSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9nb21vb3NCdW95X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9nb21vb3NCdW95X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2dvbW9vc0J1b3kvaW5kZXguanNvbiIsICJodHRwczovL3RpZGVzYW5kY3VycmVudHMubm9hYS5nb3YvZ29tb29zLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZ29tb29zQnVveS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9Z29tb29zQnVveSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJHb01PT1MiLCAiZ29tb29zQnVveSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9uZXJhY29vc1Nvcy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbmVyYWNvb3NTb3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbmVyYWNvb3NTb3MuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiU2Vuc29yIERhdGEgZnJvbSB0aGUgTkVSQUNPT1MgU09TIFNlcnZlciwgMjAwMC1wcmVzZW50IiwgIk5vcnRoZWFzdGVybiBSZWdpb25hbCBBc3NvY2lhdGlvbiBvZiBDb2FzdGFsIE9jZWFuXG4gICAgICAgIE9ic2VydmluZyBTeXN0ZW1zIChORVJBQ09PUykgU2Vuc29yIE9ic2VydmF0aW9uIFNlcnZpY2UgKFNPUylcbiAgICAgICAgVGhlIE9DRUFOUyBJRSAtLSBmb3JtYWxseSBhcHByb3ZlZCBhcyBhbiBPR0MgSW50ZXJvcGVyYWJpbGl0eVxuRXhwZXJpbWVudCBpbiBEZWNlbWJlciAyMDA2IC0tIGVuZ2FnZXMgZGF0YSBtYW5hZ2VycyBhbmQgc2NpZW50aXN0c1xuaW4gdGhlIE9jZWFuLU9ic2VydmluZyBjb21tdW5pdHkgdG8gYWR2YW5jZSB0aGVpciB1bmRlcnN0YW5kaW5nIGFuZFxuYXBwbGljYXRpb24gb2YgdmFyaW91cyBPR0Mgc3BlY2lmaWNhdGlvbnMsIHNvbGlkaWZ5IGRlbW9uc3RyYXRpb25zXG5mb3IgT2NlYW4gU2NpZW5jZSBhcHBsaWNhdGlvbiBhcmVhcywgaGFyZGVuIHNvZnR3YXJlXG5pbXBsZW1lbnRhdGlvbnMsIGFuZCBwcm9kdWNlIGNhbmRpZGF0ZSBPR0MgQmVzdCBQcmFjdGljZXMgZG9jdW1lbnRzXG50aGF0IGNhbiBiZSB1c2VkIHRvIGluZm9ybSB0aGUgYnJvYWRlciBvY2Vhbi1vYnNlcnZpbmcgY29tbXVuaXR5LlxuXG5CZWNhdXNlIG9mIHRoZSBuYXR1cmUgb2YgU09TIHJlcXVlc3RzLCByZXF1ZXN0cyBmb3IgZGF0YSBNVVNUXG5pbmNsdWRlIGNvbnN0cmFpbnRzIGZvciB0aGUgbG9uZ2l0dWRlLCBsYXRpdHVkZSwgdGltZSwgYW5kL29yXG5zdGF0aW9uX2lkIHZhcmlhYmxlcy5cblxuSW5pdGlhdG9yczogU1VSQSAobGVhZCksIFRleGFzIEEmTSBVbml2ZXJzaXR5LCBNQkFSSSwgR29NT09TIGFuZFxuVW5pZGF0YS5cblxuU3BlY2lmaWMgZ29hbHM6XG4qIENvbXBhcmUgU2Vuc29yIE9ic2VydmF0aW9uIFNlcnZpY2UgKFNPUykgZnJvbSB0aGUgT0dDJ3MgU2Vuc29yXG4gIFdlYiBFbmFibGVtZW50IChTV0UpIGluaXRpYXRpdmUgdG8gdGhlIFdlYiBGZWF0dXJlIFNlcnZpY2UgKFdGUylcbiAgYXMgYXBwbGllZCB0byBvY2VhbiBkYXRhIGluIGEgdmFyaWV0eSBvZiBkYXRhIGZvcm1hdHMgaW5jbHVkaW5nXG4gIHRleHQgZmlsZXMsIG5ldENERiBmaWxlcywgcmVsYXRpb25hbCBkYXRhYmFzZXMsIGFuZCBwb3NzaWJseVxuICBuYXRpdmUgc2Vuc29yIG91dHB1dDsgKHNlZSBFeHBlcmltZW50ICMxIGZvciBkZXRhaWxzKVxuKiBNYWtlIHVzZSBvZiBzZW1hbnRpYyBtZWRpYXRpb24gdmlhIFNlbWFudGljIFdlYiB0ZWNobm9sb2dpZXMgdG9cbiAgYWxsb3cgcGx1cmFsaXR5IG9mIGlkZW50aWZpY2F0aW9uIGZvciBzb3VyY2UgdHlwZXMgKHBsYXRmb3Jtc1xuICBhbmQgc2Vuc29ycykgYW5kIHBoZW5vbWVuYSB0eXBlcztcbiogVGVzdCBhZ2dyZWdhdGlvbiBzZXJ2aWNlcyBhbmQgY2FjaGluZyBzdHJhdGVnaWVzIHRvIHByb3ZpZGVcbiAgZWZmaWNpZW50IHF1ZXJpZXM7XG4qIEV4cGxvcmUgcG9zc2libGUgZW5oYW5jZW1lbnRzIG9mIFRIUkVERFMgc2VydmVyLCBzbyB0aGF0IFRIUkVERFNcbiAgcmVzaWRlbnQgZGF0YSBzb3VyY2VzIG1pZ2h0IGJlIG1hZGUgYXZhaWxhYmxlIHZpYSBTT1Mgb3IgV0ZTO1xuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDE5IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL25lcmFjb29zU29zX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9uZXJhY29vc1Nvc19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9uZXJhY29vc1Nvcy9pbmRleC5qc29uIiwgImh0dHA6Ly93d3cubmVyYWNvb3Mub3JnLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9uZXJhY29vc1Nvcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bmVyYWNvb3NTb3Mmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTkVSQUNPT1MiLCAibmVyYWNvb3NTb3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkRmVkUm9ja2Zpc2hDdGQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEZlZFJvY2tmaXNoQ3RkIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEZlZFJvY2tmaXNoQ3RkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlNXRlNDIEZFRCBNaWQgV2F0ZXIgVHJhd2wgSnV2ZW5pbGUgUm9ja2Zpc2ggU3VydmV5LCBDVEQgRGF0YSwgMTk4Ny0yMDE1IiwgIlNXRlNDIEZFRCBNaWQgV2F0ZXIgVHJhd2wgSnV2ZW5pbGUgUm9ja2Zpc2ggU3VydmV5OiBDVEQgRGF0YS5cblN1cnZleXMgaGF2ZSBiZWVuIGNvbmR1Y3RlZCBhbG9uZyB0aGUgY2VudHJhbCBDYWxpZm9ybmlhIGNvYXN0IGluIE1heS9KdW5lIFxuZXZlcnkgeWVhciBzaW5jZSAxOTgzLiBJbiAyMDA0IHRoZSBzdXJ2ZXkgYXJlYSB3YXMgZXhwYW5kZWQgdG8gY292ZXIgdGhlIFxuZW50aXJlIGNvYXN0IGZyb20gU2FuIERpZWdvIHRvIENhcGUgTWVuZG9jaW5vLiAgVGhlIHN1cnZleSBzYW1wbGVzIGEgc2VyaWVzIFxub2YgZml4ZWQgdHJhd2wgc3RhdGlvbnMgdXNpbmcgYSBtaWR3YXRlciB0cmF3bC4gVGhlIG1pZHdhdGVyIHRyYXdsIHN1cnZleSBcbmdlYXIgY2FwdHVyZXMgc2lnbmlmaWNhbnQgbnVtYmVycyBvZiBhcHByb3hpbWF0ZWx5IDEwIHJvY2tmaXNoIHNwZWNpZXMgZHVyaW5nXG50aGVpciBwZWxhZ2ljIGp1dmVuaWxlIHN0YWdlIChpLmUuLCA1MC0xNTAgZGF5cyBvbGQpLCBieSB3aGljaCB0aW1lIGFubnVhbFxucmVwcm9kdWN0aXZlIHN1Y2Nlc3MgaGFzIGJlZW4gZXN0YWJsaXNoZWQuIENhdGNoLXBlci11bml0LWVmZm9ydCBkYXRhIGZyb21cbnRoZSBzdXJ2ZXkgYXJlIGFuYWx5emVkIGFuZCBzZXJ2ZSBhcyB0aGUgYmFzaXMgZm9yIHByZWRpY3RpbmcgZnV0dXJlIFxucmVjcnVpdG1lbnQgdG8gcm9ja2Zpc2ggZmlzaGVyaWVzLiBSZXN1bHRzIGZvciBzZXZlcmFsIHNwZWNpZXMgKGUuZy4sIFxuYm9jYWNjaW8sIGNoaWxpcGVwcGVyIFtTLiBnb29kZWldLCBhbmQgd2lkb3cgcm9ja2Zpc2ggW1MuIGVudG9tZWxhc10pIGhhdmVcbnNob3duIHRoYXQgdGhlIHN1cnZleSBkYXRhIGNhbiBiZSB1c2VmdWwgaW4gcHJlZGljdGluZyB5ZWFyLWNsYXNzIHN0cmVuZ3RoXG5pbiBhZ2UtYmFzZWQgc3RvY2sgYXNzZXNzbWVudHMuXG5cblRoZSBzdXJ2ZXkncyBkYXRhIG9uIFlPWSBQYWNpZmljIHdoaXRpbmcgaGFzIGFsc28gYmVlbiB1c2VkIGluIHRoZSBzdG9ja1xuYXNzZXNzbWVudCBwcm9jZXNzLiBUbyBhc3Npc3QgaW4gb2J0YWluaW5nIGFkZGl0aW9uYWwgbm9ydGh3YXJkIHNwYXRpYWxcbmNvdmVyYWdlIG9mIFlPWSBQYWNpZmljIHdoaXRpbmcgb2ZmIE9yZWdvbiBhbmQgV2FzaGluZ3RvbiwgaW4gMjAwMSB0aGVcblBhY2lmaWMgV2hpdGluZyBDb25zZXJ2YXRpb24gQ29vcGVyYXRpdmUgaW4gY29vcGVyYXRpb24gd2l0aCB0aGUgTk9BQSBOTUZTXG5Ob3J0aHdlc3QgRmlzaGVyaWVzIFNjaWVuY2UgQ2VudGVyIGJlZ2FuIGEgbWlkd2F0ZXIgdHJhd2wgc3VydmV5IHBhdHRlcm5lZFxuYWZ0ZXIgdGhlIE5PQUEgTk1GUyBTV0ZTQyBGaXNoZXJpZXMgRWNvbG9neSBEaXZpc2lvbidzIChGRUQpIGV4aXN0aW5nIHN1cnZleS4gXG5Cb3RoIHN1cnZleXMgd29yayBjb29wZXJhdGl2ZWx5IHRvZ2V0aGVyIGVhY2ggeWVhciBpbiBvcmRlciB0byByZXNvbHZlIFxuaW50ZXJhbm51YWwgYWJ1bmRhbmNlIHBhdHRlcm5zIG9mIFlPWSByb2NrZmlzaCBhbmQgUGFjaWZpYyB3aGl0aW5nIG9uIGEgXG5jb2FzdHdpZGUgYmFzaXMsIHdoaWNoIHByb3ZpZGVzIGV4cGVkaWVudCwgY3JpdGljYWwgaW5mb3JtYXRpb24gdGhhdCBjYW4gYmUgXG51c2VkIGluIHRoZSBmaXNoZXJpZXMgbWFuYWdlbWVudCBwcm9jZXNzLlxuXG5UaGUgbGFyZ2UgcXVhbnRpdHkgb2YgcGh5c2ljYWwgZGF0YSBjb2xsZWN0ZWQgZHVyaW5nIHRoZSBzdXJ2ZXlzIChlLmcuLCBDVERcbndpdGggYXR0YWNoZWQgdHJhbnNpbWlzc29tZXRlciBhbmQgZmx1b3JvbWV0ZXIsIHRoZXJtb3NhbGlub21ldGVyLCBhbmQgQURDUClcbmhhdmUgcHJvdmlkZWQgYSBiZXR0ZXIgdW5kZXJzdGFuZGluZyBvZiB0aGUgaHlkcm9ncmFwaGljIGNvbmRpdGlvbnMgb2ZmIHRoZVxuQ2FsaWZvcm5pYSBjb2FzdCBhbmQgYW5hbHlzaXMgb2YgdGhlc2UgZGF0YSBoYXZlIGJlZW4gZGlzdHJpYnV0ZWQgdGhyb3VnaCB0aGVcbnB1YmxpY2F0aW9uIG9mIE5PQUEgTk1GUyBUZWNobmljYWwgTWVtb3JhbmRhLlxuXG5Gb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlIGh0dHBzOi8vc3dmc2Mubm9hYS5nb3YvR3JvdW5kZmlzaEFuYWx5c2lzLyBhbmRcbmh0dHA6Ly93d3cuc2FuY3R1YXJ5c2ltb24ub3JnL3Byb2plY3RzL3Byb2plY3RfaW5mby5waHA/cHJvamVjdElEPTEwMDExOFxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVByb2ZpbGVcblZBUklBQkxFUzpcbmNydWlzZVxuLi4uICgxNyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRGZWRSb2NrZmlzaEN0ZF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkRmVkUm9ja2Zpc2hDdGRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkRmVkUm9ja2Zpc2hDdGQvaW5kZXguanNvbiIsICJodHRwczovL3N3ZnNjLm5vYWEuZ292L0dyb3VuZGZpc2hBbmFseXNpcy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkRmVkUm9ja2Zpc2hDdGQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZEZlZFJvY2tmaXNoQ3RkJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MgRkVEIiwgImVyZEZlZFJvY2tmaXNoQ3RkIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEZlZFJvY2tmaXNoU3RhdGlvbi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkRmVkUm9ja2Zpc2hTdGF0aW9uIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEZlZFJvY2tmaXNoU3RhdGlvbi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJTV0ZTQyBGRUQgTWlkIFdhdGVyIFRyYXdsIEp1dmVuaWxlIFJvY2tmaXNoIFN1cnZleSwgU3VyZmFjZSBEYXRhLCAxOTg3LTIwMTUiLCAiU1dGU0MgRkVEIE1pZCBXYXRlciBUcmF3bCBKdXZlbmlsZSBSb2NrZmlzaCBTdXJ2ZXk6IFN0YXRpb24gSW5mb3JtYXRpb24gYW5kIFN1cmZhY2UgRGF0YS5cblN1cnZleXMgaGF2ZSBiZWVuIGNvbmR1Y3RlZCBhbG9uZyB0aGUgY2VudHJhbCBDYWxpZm9ybmlhIGNvYXN0IGluIE1heS9KdW5lIFxuZXZlcnkgeWVhciBzaW5jZSAxOTgzLiBJbiAyMDA0IHRoZSBzdXJ2ZXkgYXJlYSB3YXMgZXhwYW5kZWQgdG8gY292ZXIgdGhlIFxuZW50aXJlIGNvYXN0IGZyb20gU2FuIERpZWdvIHRvIENhcGUgTWVuZG9jaW5vLiAgVGhlIHN1cnZleSBzYW1wbGVzIGEgc2VyaWVzIFxub2YgZml4ZWQgdHJhd2wgc3RhdGlvbnMgdXNpbmcgYSBtaWR3YXRlciB0cmF3bC4gVGhlIG1pZHdhdGVyIHRyYXdsIHN1cnZleSBcbmdlYXIgY2FwdHVyZXMgc2lnbmlmaWNhbnQgbnVtYmVycyBvZiBhcHByb3hpbWF0ZWx5IDEwIHJvY2tmaXNoIHNwZWNpZXMgZHVyaW5nXG50aGVpciBwZWxhZ2ljIGp1dmVuaWxlIHN0YWdlIChpLmUuLCA1MC0xNTAgZGF5cyBvbGQpLCBieSB3aGljaCB0aW1lIGFubnVhbFxucmVwcm9kdWN0aXZlIHN1Y2Nlc3MgaGFzIGJlZW4gZXN0YWJsaXNoZWQuIENhdGNoLXBlci11bml0LWVmZm9ydCBkYXRhIGZyb21cbnRoZSBzdXJ2ZXkgYXJlIGFuYWx5emVkIGFuZCBzZXJ2ZSBhcyB0aGUgYmFzaXMgZm9yIHByZWRpY3RpbmcgZnV0dXJlIFxucmVjcnVpdG1lbnQgdG8gcm9ja2Zpc2ggZmlzaGVyaWVzLiBSZXN1bHRzIGZvciBzZXZlcmFsIHNwZWNpZXMgKGUuZy4sIFxuYm9jYWNjaW8sIGNoaWxpcGVwcGVyIFtTLiBnb29kZWldLCBhbmQgd2lkb3cgcm9ja2Zpc2ggW1MuIGVudG9tZWxhc10pIGhhdmVcbnNob3duIHRoYXQgdGhlIHN1cnZleSBkYXRhIGNhbiBiZSB1c2VmdWwgaW4gcHJlZGljdGluZyB5ZWFyLWNsYXNzIHN0cmVuZ3RoXG5pbiBhZ2UtYmFzZWQgc3RvY2sgYXNzZXNzbWVudHMuXG5cblRoZSBzdXJ2ZXkncyBkYXRhIG9uIFlPWSBQYWNpZmljIHdoaXRpbmcgaGFzIGFsc28gYmVlbiB1c2VkIGluIHRoZSBzdG9ja1xuYXNzZXNzbWVudCBwcm9jZXNzLiBUbyBhc3Npc3QgaW4gb2J0YWluaW5nIGFkZGl0aW9uYWwgbm9ydGh3YXJkIHNwYXRpYWxcbmNvdmVyYWdlIG9mIFlPWSBQYWNpZmljIHdoaXRpbmcgb2ZmIE9yZWdvbiBhbmQgV2FzaGluZ3RvbiwgaW4gMjAwMSB0aGVcblBhY2lmaWMgV2hpdGluZyBDb25zZXJ2YXRpb24gQ29vcGVyYXRpdmUgaW4gY29vcGVyYXRpb24gd2l0aCB0aGUgTk9BQSBOTUZTXG5Ob3J0aHdlc3QgRmlzaGVyaWVzIFNjaWVuY2UgQ2VudGVyIGJlZ2FuIGEgbWlkd2F0ZXIgdHJhd2wgc3VydmV5IHBhdHRlcm5lZFxuYWZ0ZXIgdGhlIE5PQUEgTk1GUyBTV0ZTQyBGaXNoZXJpZXMgRWNvbG9neSBEaXZpc2lvbidzIChGRUQpIGV4aXN0aW5nIHN1cnZleS4gXG5Cb3RoIHN1cnZleXMgd29yayBjb29wZXJhdGl2ZWx5IHRvZ2V0aGVyIGVhY2ggeWVhciBpbiBvcmRlciB0byByZXNvbHZlIFxuaW50ZXJhbm51YWwgYWJ1bmRhbmNlIHBhdHRlcm5zIG9mIFlPWSByb2NrZmlzaCBhbmQgUGFjaWZpYyB3aGl0aW5nIG9uIGEgXG5jb2FzdHdpZGUgYmFzaXMsIHdoaWNoIHByb3ZpZGVzIGV4cGVkaWVudCwgY3JpdGljYWwgaW5mb3JtYXRpb24gdGhhdCBjYW4gYmUgXG51c2VkIGluIHRoZSBmaXNoZXJpZXMgbWFuYWdlbWVudCBwcm9jZXNzLlxuXG5UaGUgbGFyZ2UgcXVhbnRpdHkgb2YgcGh5c2ljYWwgZGF0YSBjb2xsZWN0ZWQgZHVyaW5nIHRoZSBzdXJ2ZXlzIChlLmcuLCBDVERcbndpdGggYXR0YWNoZWQgdHJhbnNpbWlzc29tZXRlciBhbmQgZmx1b3JvbWV0ZXIsIHRoZXJtb3NhbGlub21ldGVyLCBhbmQgQURDUClcbmhhdmUgcHJvdmlkZWQgYSBiZXR0ZXIgdW5kZXJzdGFuZGluZyBvZiB0aGUgaHlkcm9ncmFwaGljIGNvbmRpdGlvbnMgb2ZmIHRoZVxuQ2FsaWZvcm5pYSBjb2FzdCBhbmQgYW5hbHlzaXMgb2YgdGhlc2UgZGF0YSBoYXZlIGJlZW4gZGlzdHJpYnV0ZWQgdGhyb3VnaCB0aGVcbnB1YmxpY2F0aW9uIG9mIE5PQUEgTk1GUyBUZWNobmljYWwgTWVtb3JhbmRhLlxuXG5Gb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlIGh0dHBzOi8vc3dmc2Mubm9hYS5nb3YvR3JvdW5kZmlzaEFuYWx5c2lzLyBhbmRcbmh0dHA6Ly93d3cuc2FuY3R1YXJ5c2ltb24ub3JnL3Byb2plY3RzL3Byb2plY3RfaW5mby5waHA/cHJvamVjdElEPTEwMDExOFxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxuY3J1aXNlXG4uLi4gKDExIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZEZlZFJvY2tmaXNoU3RhdGlvbl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkRmVkUm9ja2Zpc2hTdGF0aW9uX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZEZlZFJvY2tmaXNoU3RhdGlvbi9pbmRleC5qc29uIiwgImh0dHBzOi8vc3dmc2Mubm9hYS5nb3YvR3JvdW5kZmlzaEFuYWx5c2lzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRGZWRSb2NrZmlzaFN0YXRpb24ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZEZlZFJvY2tmaXNoU3RhdGlvbiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIEZFRCIsICJlcmRGZWRSb2NrZmlzaFN0YXRpb24iXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkUHJkQ3RkLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRQcmRDdGQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkUHJkQ3RkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlNXRlNDIFByb3RlY3RlZCBSZXNvdXJjZXMgRGl2aXNpb24gQ1REIERhdGEiLCAiRGF0YSBmcm9tIE5PQUEgU1dGU0MgUHJvdGVjdGVkIFJlc291cmNlcyBEaXZpc2lvbiAoUFJEKS5cblxuY2RtX2RhdGFfdHlwZSA9IFRyYWplY3RvcnlcblZBUklBQkxFUzpcbnRyYWplY3RvcnlcbnNoaXBfc3RhdGlvbiAoU2hpcCBhbmQgU3RhdGlvbilcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuY2hsb3JvIChTdXJmYWNlIENobG9yb3BoeWxsLCB1ZyBMLTEpXG5waGFlbyAoU3VyZmFjZSBQaGFlb3BoeXRpbiwgdWcgTC0xKVxucHJvZHVjdGl2aXR5IChJbnRlZ3JhdGVkIEV1cGhvdGljIFpvbmUgUHJvZHVjdGl2aXR5LCBtZyBDYXJib24gbS0yIGRheS0xKVxuc3N0IChTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkUHJkQ3RkX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRQcmRDdGRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkUHJkQ3RkL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zd2ZzYy5ub2FhLmdvdi9tYWluLmFzcHg/RGl2aXNpb249UFJEJlBhcmVudE1lbnVJZD0xNDcmaWQ9MTIyMSIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRQcmRDdGQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZFByZEN0ZCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIFBSRCIsICJlcmRQcmRDdGQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlJc28uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5SXNvIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5SXNvLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTc3LXByZXNlbnQsIDIwQyBJc290aGVybSBEZXB0aCIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IDIwQyBJc290aGVybSBEZXB0aCBkYXRhICh0aGUgZGVwdGggYXQgd2hpY2ggdGhlIG9jZWFuIHRlbXBlcmF0dXJlIGlzIDIwQykgZnJvbSB0aGUgXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbklTT182ICgyMEMgSXNvdGhlcm0gRGVwdGgsIG0pXG5RSV81MDA2ICgyMEMgRGVwdGggUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheUlzb19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlJc29faXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlJc28vaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlJc28ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5SXNvJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5SXNvIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5QWlydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlBaXJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5QWlydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk3Ny1wcmVzZW50LCBBaXIgVGVtcGVyYXR1cmUiLCAiVGhpcyBkYXRhc2V0IGhhcyA1LWRheSBBaXIgVGVtcGVyYXR1cmUgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5BVF8yMSAoQWlyIFRlbXBlcmF0dXJlLCBkZWdyZWVfQylcblFBVF81MDIxIChBaXIgVGVtcGVyYXR1cmUgUXVhbGl0eSlcblNBVF82MDIxIChBaXIgVGVtcGVyYXR1cmUgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5QWlydF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlBaXJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW81ZGF5QWlydC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheUFpcnQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5QWlydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvNWRheUFpcnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlDdXIuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5Q3VyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5Q3VyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTc3LXByZXNlbnQsIEN1cnJlbnRzIiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgQ3VycmVudHMgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5VXzMyMCAoRWFzdHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBjbSBzLTEpXG5WXzMyMSAoTm9ydGh3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgY20gcy0xKVxuQ1NfMzAwIChTZWEgV2F0ZXIgVmVsb2NpdHksIGNtIHMtMSlcbkNEXzMxMCAoRGlyZWN0aW9uIG9mIFNlYSBXYXRlciBWZWxvY2l0eSwgZGVncmVlc190cnVlKVxuUUNTXzUzMDAgKEN1cnJlbnQgU3BlZWQgUXVhbGl0eSlcblFDRF81MzEwIChDdXJyZW50IERpcmVjdGlvbiBRdWFsaXR5KVxuU0NTXzYzMDAgKEN1cnJlbnQgU3BlZWQgU291cmNlKVxuQ0lDXzczMDAgKEN1cnJlbnQgSW5zdHJ1bWVudCBDb2RlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5Q3VyX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvNWRheUN1cl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheUN1ci9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheUN1ci5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhbzVkYXlDdXImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlDdXIiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlTc3Quc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5U3N0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5U3N0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTc3LXByZXNlbnQsIFNlYSBTdXJmYWNlIFRlbXBlcmF0dXJlIiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgU2VhIFN1cmZhY2UgVGVtcGVyYXR1cmUgKFNTVCkgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5UXzI1IChTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5RVF81MDI1IChTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSBRdWFsaXR5KVxuU1RfNjAyNSAoU2VhIFN1cmZhY2UgVGVtcGVyYXR1cmUgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5U3N0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvNWRheVNzdF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheVNzdC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheVNzdC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhbzVkYXlTc3Qmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlTc3QiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlULnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlULmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTc3LXByZXNlbnQsIFRlbXBlcmF0dXJlIiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgVGVtcGVyYXR1cmUgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5UXzIwIChTZWEgV2F0ZXIgVGVtcGVyYXR1cmUsIGRlZ3JlZV9DKVxuUVRfNTAyMCAoVGVtcGVyYXR1cmUgUXVhbGl0eSlcblNUXzYwMjAgKFRlbXBlcmF0dXJlIFNvdXJjZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5VF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheVQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlULnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheVQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlUIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5Vy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlXIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5Vy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk3Ny1wcmVzZW50LCBXaW5kIiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgV2luZCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbldVXzQyMiAoWm9uYWwgV2luZCwgbSBzLTEpXG5XVl80MjMgKE1lcmlkaW9uYWwgV2luZCwgbSBzLTEpXG5XU180MDEgKFdpbmQgU3BlZWQsIG0gcy0xKVxuUVdTXzU0MDEgKFdpbmQgU3BlZWQgUXVhbGl0eSlcblNXU182NDAxIChXaW5kIFNwZWVkIFNvdXJjZSlcbldEXzQxMCAoV2luZCBEaXJlY3Rpb24sIGRlZ3JlZXNfdHJ1ZSlcblFXRF81NDEwIChXaW5kIERpcmVjdGlvbiBRdWFsaXR5KVxuU1dEXzY0MTAgKFdpbmQgRGlyZWN0aW9uIFNvdXJjZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVdfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5V19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheVcvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlXLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheVcmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlXIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5RHluLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUR5biIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUR5bi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk4MC1wcmVzZW50LCBEeW5hbWljIEhlaWdodCIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IER5bmFtaWMgSGVpZ2h0IGRhdGEgKGEgbWVhc3VyZSBvZiB0aGUgZWxldmF0aW9uIG9mIHRoZSBzZWEgbGV2ZWwsIGNhbGN1bGF0ZWQgYnkgaW50ZWdyYXRpbmcgdGhlIHNwZWNpZmljIHZvbHVtZSBhbm9tYWx5IG9mIHRoZSBzZWEgd2F0ZXIgYmV0d2VlbiB0aGUgc2VhIHN1cmZhY2UgYW5kIDUwMCBtIGRlcHRoKSBmcm9tIHRoZSBcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgNS1kYXkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGNvbnNlY3V0aXZlIGZpdmUgZGF5IGludGVydmFscy4gIEEgbWluaW11bSBvZiAyIGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIDUtZGF5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuRFlOXzEzIChEeW5hbWljIEhlaWdodCwgZHluLWNtKVxuUURfNTAxMyAoRHluYW1pYyBIZWlnaHQgUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheUR5bl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlEeW5faXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlEeW4vaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlEeW4ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5RHluJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5RHluIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5SGVhdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlIZWF0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5SGVhdC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk4MC1wcmVzZW50LCBIZWF0IENvbnRlbnQiLCAiVGhpcyBkYXRhc2V0IGhhcyA1LWRheSBIZWF0IENvbnRlbnQgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5IVENfMTMwIChIZWF0IENvbnRlbnQsIDEwKioxMCBKIG0tMilcbkhUQ181MTMwIChIZWF0IENvbnRlbnQgUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheUhlYXRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5SGVhdF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheUhlYXQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlIZWF0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheUhlYXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlIZWF0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5UG9zLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVBvcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVBvcy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk4MC1wcmVzZW50LCBQb3NpdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IFBvc2l0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgNS1kYXkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGNvbnNlY3V0aXZlIGZpdmUgZGF5IGludGVydmFscy4gIEEgbWluaW11bSBvZiAyIGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIDUtZGF5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuTE9OXzUwMiAoUHJlY2lzZSBMb25naXR1ZGUsIGRlZ3JlZV9lYXN0KVxuUVhfNTUwMiAoTG9uZ2l0dWRlIFF1YWxpdHkpXG5MQVRfNTAwIChQcmVjaXNlIExhdGl0dWRlLCBkZWdyZWVfbm9ydGgpXG5RWV81NTAwIChMYXRpdHVkZSBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5UG9zX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvNWRheVBvc19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheVBvcy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheVBvcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhbzVkYXlQb3Mmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlQb3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlELnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlELmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTg3LXByZXNlbnQsIFBvdGVudGlhbCBEZW5zaXR5IEFub21hbHkiLCAiVGhpcyBkYXRhc2V0IGhhcyA1LWRheSBQb3RlbnRpYWwgRGVuc2l0eSBBbm9tYWx5IChzaWdtYS10aGV0YSkgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5TVEhfNzEgKFNpZ21hLVRoZXRhLCBrZyBtLTMpXG5RU1RfNTA3MSAoU2lnbWEtVGhldGEgUXVhbGl0eSlcblNTVF82MDcxIChTaWdtYS1UaGV0YSBTb3VyY2UpXG5ESUNfNzA3MSAoU2lnbWEtVGhldGEgSW5zdHJ1bWVudCBDb2RlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5RF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlEX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW81ZGF5RC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheUQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5RCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvNWRheUQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlTLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlTLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTg3LXByZXNlbnQsIFNhbGluaXR5IiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgU2FsaW5pdHkgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5TXzQxIChTZWEgV2F0ZXIgUHJhY3RpY2FsIFNhbGluaXR5LCBQU1UpXG5RU181MDQxIChTYWxpbml0eSBRdWFsaXR5KVxuU1NfNjA0MSAoU2FsaW5pdHkgU291cmNlKVxuU0lDXzgwNDEgKFNhbGluaXR5IEluc3RydW1lbnQgQ29kZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVNfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5U19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheVMvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlTLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheVMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlTIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5QWRjcC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlBZGNwIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5QWRjcC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk4OC0yMDE3LCBBRENQIiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgQWNvdXN0aWMgRG9wcGxlciBDdXJyZW50IFByb2ZpbGVyIChBRENQKSB3YXRlciBjdXJyZW50cyBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgQURDUCBkYXRhIGFyZSBhdmFpbGFibGUgb25seSBhZnRlciBtb29yaW5nIHJlY292ZXJpZXMsIHdoaWNoIGFyZSBzY2hlZHVsZWQgb24gYW4gYW5udWFsIGJhc2lzLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG51XzEyMDUgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgY20vcylcblFVXzUyMDUgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSBRdWFsaXR5KVxudl8xMjA2IChOb3J0aHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBjbS9zKVxuUVZfNTIwNiAoTm9ydGh3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5QWRjcF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlBZGNwX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW81ZGF5QWRjcC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheUFkY3AucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5QWRjcCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvNWRheUFkY3AiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlFdmFwLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUV2YXAiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlFdmFwLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTg5LXByZXNlbnQsIEV2YXBvcmF0aW9uIiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgRXZhcG9yYXRpb24gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5FXzI1MCAoRXZhcG9yYXRpb24sIE1NL0hSKVxuUUVfNTI1MCAoRXZhcG9yYXRpb24gUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheUV2YXBfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5RXZhcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheUV2YXAvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlFdmFwLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheUV2YXAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlFdmFwIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5UWxhdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlRbGF0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5UWxhdC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk4OS1wcmVzZW50LCBMYXRlbnQgSGVhdCBGbHV4IiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgTGF0ZW50IEhlYXQgRmx1eCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFMXzEzNyAoTGF0ZW50IEhlYXQgRmx1eCwgVyBtLTIpXG5RUUxfNTEzNyAoTGF0ZW50IEhlYXQgRmx1eCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5UWxhdF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlRbGF0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW81ZGF5UWxhdC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheVFsYXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5UWxhdCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvNWRheVFsYXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlSaC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlSaCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVJoLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTg5LXByZXNlbnQsIFJlbGF0aXZlIEh1bWlkaXR5IiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgUmVsYXRpdmUgSHVtaWRpdHkgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5SSF85MTAgKFJlbGF0aXZlIEh1bWlkaXR5LCBwZXJjZW50KVxuUVJIXzU5MTAgKFJlbGF0aXZlIEh1bWlkaXR5IFF1YWxpdHkpXG5TUkhfNjkxMCAoUmVsYXRpdmUgSHVtaWRpdHkgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5UmhfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5UmhfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlSaC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheVJoLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheVJoJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5UmgiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlRc2VuLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVFzZW4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlRc2VuLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTg5LXByZXNlbnQsIFNlbnNpYmxlIEhlYXQgRmx1eCIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IFNlbnNpYmxlIEhlYXQgRmx1eCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFTXzEzOCAoU2Vuc2libGUgSGVhdCBGbHV4LCBXIG0tMilcblFRU181MTM4IChTZW5zaWJsZSBIZWF0IEZsdXggUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVFzZW5fZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5UXNlbl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheVFzZW4vaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlRc2VuLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheVFzZW4mc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlRc2VuIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5VGF1LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVRhdSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVRhdS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk4OS1wcmVzZW50LCBXaW5kIFN0cmVzcyIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IFdpbmQgU3RyZXNzIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgNS1kYXkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGNvbnNlY3V0aXZlIGZpdmUgZGF5IGludGVydmFscy4gIEEgbWluaW11bSBvZiAyIGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIDUtZGF5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuVFhfNDQyIChab25hbCBXaW5kIFN0cmVzcywgTi9tMilcblRZXzQ0MyAoTWVyaWRpb25hbCBXaW5kIFN0cmVzcywgTi9tMilcblRBVV80NDAgKFdpbmQgU3RyZXNzLCBOL20yKVxuVERfNDQ1IChXaW5kIFN0cmVzcyBEaXJlY3Rpb24sIGRlZ3JlZXNfdHJ1ZSlcblFUQVVfNTQ0MCAoV2luZCBTdHJlc3MgUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVRhdV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlUYXVfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlUYXUvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlUYXUucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5VGF1JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5VGF1Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5UmFkLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVJhZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVJhZC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk5MS1wcmVzZW50LCBEb3duZ29pbmcgU2hvcnR3YXZlIFJhZGlhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IERvd25nb2luZyBTaG9ydHdhdmUgUmFkaWF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgNS1kYXkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGNvbnNlY3V0aXZlIGZpdmUgZGF5IGludGVydmFscy4gIEEgbWluaW11bSBvZiAyIGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIDUtZGF5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUkRfNDk1IChEb3duZ29pbmcgU2hvcnR3YXZlIFJhZGlhdGlvbiwgVy9NKioyKVxuUVNXXzU0OTUgKFNob3J0d2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNTV182NDk1IChTaG9ydHdhdmUgUmFkaWF0aW9uIFNvdXJjZSlcblJEU180OTYgKFNob3J0d2F2ZSBSYWRpYXRpb24gU3RhbmRhcmQgRGV2aWF0aW9uLCBXL00qKjIpXG5SRFBfNDk3IChTaG9ydHdhdmUgUmFkaWF0aW9uIFBlYWssIFcvTSoqMilcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVJhZF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlSYWRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlSYWQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlSYWQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5UmFkJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5UmFkIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5U3duZXQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5U3duZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlTd25ldC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk5MS1wcmVzZW50LCBOZXQgU2hvcnR3YXZlIFJhZGlhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IE5ldCBTaG9ydHdhdmUgUmFkaWF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgNS1kYXkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGNvbnNlY3V0aXZlIGZpdmUgZGF5IGludGVydmFscy4gIEEgbWluaW11bSBvZiAyIGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIDUtZGF5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuU1dOXzE0OTUgKE5ldCBTaG9ydHdhdmUgUmFkaWF0aW9uLCBXL00qKjIpXG5RU1dfNTQ5NSAoU2hvcnR3YXZlIFJhZGlhdGlvbiBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5U3duZXRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5U3duZXRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlTd25ldC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheVN3bmV0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheVN3bmV0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5U3duZXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlTc3Muc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5U3NzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5U3NzLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTkyLXByZXNlbnQsIFNlYSBTdXJmYWNlIFNhbGluaXR5IiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgU2VhIFN1cmZhY2UgU2FsaW5pdHkgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5TXzQxIChTZWEgV2F0ZXIgUHJhY3RpY2FsIFNhbGluaXR5LCBQU1UpXG5RU181MDQxIChTYWxpbml0eSBRdWFsaXR5KVxuU1NfNjA0MSAoU2FsaW5pdHkgU291cmNlKVxuU0lDXzcwNDEgKFNhbGluaXR5IEluc3RydW1lbnQgQ29kZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVNzc19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlTc3NfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlTc3MvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlTc3MucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5U3NzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5U3NzIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5U3NkLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVNzZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVNzZC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk5Mi1wcmVzZW50LCBTaWdtYS1UaGV0YSIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IFNpZ21hLVRoZXRhIChQb3RlbnRpYWwgRGVuc2l0eSBBbm9tYWx5KSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNUSF83MSAoU2lnbWEtVGhldGEsIGtnIG0tMylcblFTVF81MDcxIChTaWdtYS1UaGV0YSBRdWFsaXR5KVxuU1NUXzYwNzEgKFNpZ21hLVRoZXRhIFNvdXJjZSlcbkRJQ183MDcxIChTaWdtYS1UaGV0YSBJbnN0cnVtZW50IENvZGUpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhbzVkYXlTc2RfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5U3NkX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW81ZGF5U3NkL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW81ZGF5U3NkLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheVNzZCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvNWRheVNzZCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUVtcC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlFbXAiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlFbXAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgNS1EYXksIDE5OTctcHJlc2VudCwgRXZhcG9yYXRpb24gTWludXMgUHJlY2lwaXRhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IEV2YXBvcmF0aW9uIE1pbnVzIFByZWNpcGl0YXRpb24gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5FTVBfMjUxIChFdmFwb3JhdGlvbiBNaW51cyBQcmVjaXBpdGF0aW9uLCBtbS9ocilcblFFTVBfNTI1MSAoRXZhcG9yYXRpb24gTWludXMgUHJlY2lwaXRhdGlvbiBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5RW1wX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvNWRheUVtcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheUVtcC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheUVtcC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhbzVkYXlFbXAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlFbXAiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlSZi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlSZiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVJmLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTk3LXByZXNlbnQsIEhlYXQgRmx1eCBEdWUgVG8gUmFpbiIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IEhlYXQgRmx1eCBEdWUgVG8gUmFpbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFSXzEzOSAoSGVhdCBGbHV4IER1ZSBUbyBSYWluLCBXIG0tMilcblFRUl81MTM5IChIZWF0IEZsdXggRHVlIFRvIFJhaW4gUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVJmX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvNWRheVJmX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW81ZGF5UmYvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlSZi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhbzVkYXlSZiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvNWRheVJmIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5UmFpbi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlSYWluIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5UmFpbi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk5Ny1wcmVzZW50LCBQcmVjaXBpdGF0aW9uIiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgUHJlY2lwaXRhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblJOXzQ4NSAoUHJlY2lwaXRhdGlvbiwgTU0vSFIpXG5RUk5fNTQ4NSAoUHJlY2lwaXRhdGlvbiBRdWFsaXR5KVxuU1JOXzY0ODUgKFByZWNpcGl0YXRpb24gU291cmNlKVxuUk5TXzQ4NiAoUHJlY2lwaXRhdGlvbiBTdGFuZGFyZCBEZXZpYXRpb24sIE1NL0hSKVxuUk5QXzQ4NyAoUGVyY2VudCBUaW1lIFJhaW5pbmcsIHBlcmNlbnQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhbzVkYXlSYWluX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvNWRheVJhaW5faXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlSYWluL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW81ZGF5UmFpbi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhbzVkYXlSYWluJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5UmFpbiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUJwLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUJwIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5QnAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgNS1EYXksIDE5OTgtcHJlc2VudCwgQmFyb21ldHJpYyAoQWlyKSBQcmVzc3VyZSIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IEJhcm9tZXRyaWMgKEFpcikgUHJlc3N1cmUgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5CUF85MTUgKEJhcm9tZXRyaWMgKEFpcikgUHJlc3N1cmUsIGhQYSlcblFCUF81OTE1IChCYXJvbWV0cmljIChBaXIpIFByZXNzdXJlIFF1YWxpdHkpXG5TQlBfNjkxNSAoQmFyb21ldHJpYyAoQWlyKSBQcmVzc3VyZSBTb3VyY2UpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhbzVkYXlCcF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlCcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheUJwL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW81ZGF5QnAucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5QnAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlCcCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUJmLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUJmIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5QmYuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgNS1EYXksIDIwMDAtcHJlc2VudCwgQnVveWFuY3kgRmx1eCIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IEJ1b3lhbmN5IEZsdXggZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5CRl8xOTEgKEJ1b3lhbmN5IEZsdXgsIDEwKio2IGtnIG0tMiBzLTEpXG5RQkZfNTE5MSAoQnVveWFuY3kgRmx1eCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5QmZfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5QmZfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlCZi9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheUJmLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheUJmJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5QmYiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlMdy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlMdyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUx3LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAyMDAwLXByZXNlbnQsIExvbmd3YXZlIFJhZGlhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IEluY29taW5nIExvbmd3YXZlIFJhZGlhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFsXzEzNiAoSW5jb21pbmcgTG9uZ3dhdmUgUmFkaWF0aW9uLCBXIG0tMilcblFMV181MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNMV182MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5THdfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5THdfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlMdy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheUx3LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheUx3JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5THciXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlMd25ldC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlMd25ldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUx3bmV0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAyMDAwLXByZXNlbnQsIE5ldCBMb25nd2F2ZSBSYWRpYXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyA1LWRheSBOZXQgTG9uZ3dhdmUgUmFkaWF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgNS1kYXkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGNvbnNlY3V0aXZlIGZpdmUgZGF5IGludGVydmFscy4gIEEgbWluaW11bSBvZiAyIGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIDUtZGF5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuTFdOXzExMzYgKE5ldCBMb25nd2F2ZSBSYWRpYXRpb24sIFcgbS0yKVxuUUxXXzUxMzYgKExvbmd3YXZlIFJhZGlhdGlvbiBRdWFsaXR5KVxuU0xXXzYxMzYgKExvbmd3YXZlIFJhZGlhdGlvbiBTb3VyY2UpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhbzVkYXlMd25ldF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlMd25ldF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheUx3bmV0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW81ZGF5THduZXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5THduZXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlMd25ldCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVFuZXQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5UW5ldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVFuZXQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgNS1EYXksIDIwMDAtcHJlc2VudCwgVG90YWwgSGVhdCBGbHV4IiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgVG90YWwgSGVhdCBGbHV4IGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgNS1kYXkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGNvbnNlY3V0aXZlIGZpdmUgZGF5IGludGVydmFscy4gIEEgbWluaW11bSBvZiAyIGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIDUtZGF5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUVRfMjEwIChUb3RhbCBIZWF0IEZsdXgsIFcvTSoqMilcblFRMF81MjEwIChUb3RhbCBIZWF0IEZsdXggUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVFuZXRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5UW5ldF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheVFuZXQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlRbmV0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheVFuZXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlRbmV0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUlzby5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5SXNvIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUlzby5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk3Ny1wcmVzZW50LCAyMEMgSXNvdGhlcm0gRGVwdGgiLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSAyMEMgSXNvdGhlcm0gRGVwdGggZGF0YSAodGhlIGRlcHRoIGF0IHdoaWNoIHRoZSBvY2VhbiB0ZW1wZXJhdHVyZSBpcyAyMEMpIGZyb20gdGhlIFxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBEYWlseSBhdmVyYWdlcyBhcmUgY29tcHV0ZWQgc3RhcnRpbmcgYXQgMDA6MDBaIGFuZCBhcmUgYXNzaWduZWQgYW4gb2JzZXJ2YXRpb24gJ3RpbWUnIG9mIDEyOjAwWi4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuSVNPXzYgKDIwQyBJc290aGVybSBEZXB0aCwgbSlcblFJXzUwMDYgKDIwQyBEZXB0aCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeUlzb19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5SXNvX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9EeUlzby9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlJc28ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeUlzbyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvRHlJc28iXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5QWlydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5QWlydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlBaXJ0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAxOTc3LXByZXNlbnQsIEFpciBUZW1wZXJhdHVyZSIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IEFpciBUZW1wZXJhdHVyZSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5BVF8yMSAoQWlyIFRlbXBlcmF0dXJlLCBkZWdyZWVfQylcblFBVF81MDIxIChBaXIgVGVtcGVyYXR1cmUgUXVhbGl0eSlcblNBVF82MDIxIChBaXIgVGVtcGVyYXR1cmUgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeUFpcnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9EeUFpcnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb0R5QWlydC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlBaXJ0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvRHlBaXJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9EeUFpcnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5Q3VyLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlDdXIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5Q3VyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAxOTc3LXByZXNlbnQsIEN1cnJlbnRzIiwgIlRoaXMgZGF0YXNldCBoYXMgZGFpbHkgQ3VycmVudHMgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBEYWlseSBhdmVyYWdlcyBhcmUgY29tcHV0ZWQgc3RhcnRpbmcgYXQgMDA6MDBaIGFuZCBhcmUgYXNzaWduZWQgYW4gb2JzZXJ2YXRpb24gJ3RpbWUnIG9mIDEyOjAwWi4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuVV8zMjAgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgY20gcy0xKVxuVl8zMjEgKE5vcnRod2FyZCBTZWEgV2F0ZXIgVmVsb2NpdHksIGNtIHMtMSlcbkNTXzMwMCAoU2VhIFdhdGVyIFZlbG9jaXR5LCBjbSBzLTEpXG5DRF8zMTAgKERpcmVjdGlvbiBvZiBTZWEgV2F0ZXIgVmVsb2NpdHksIGRlZ3JlZXNfdHJ1ZSlcblFDU181MzAwIChDdXJyZW50IFNwZWVkIFF1YWxpdHkpXG5RQ0RfNTMxMCAoQ3VycmVudCBEaXJlY3Rpb24gUXVhbGl0eSlcblNDU182MzAwIChDdXJyZW50IFNwZWVkIFNvdXJjZSlcbkNJQ183MzAwIChDdXJyZW50IEluc3RydW1lbnQgQ29kZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvRHlDdXJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9EeUN1cl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlDdXIvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb0R5Q3VyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvRHlDdXImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5Q3VyIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVNzdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5U3N0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVNzdC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk3Ny1wcmVzZW50LCBTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IFNlYSBTdXJmYWNlIFRlbXBlcmF0dXJlIChTU1QpIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblRfMjUgKFNlYSBTdXJmYWNlIFRlbXBlcmF0dXJlLCBkZWdyZWVfQylcblFUXzUwMjUgKFNlYSBTdXJmYWNlIFRlbXBlcmF0dXJlIFF1YWxpdHkpXG5TVF82MDI1IChTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSBTb3VyY2UpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5U3N0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlTc3RfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb0R5U3N0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeVNzdC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5U3N0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9EeVNzdCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlULnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlUIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDE5NzctcHJlc2VudCwgVGVtcGVyYXR1cmUiLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBUZW1wZXJhdHVyZSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5UXzIwIChTZWEgV2F0ZXIgVGVtcGVyYXR1cmUsIGRlZ3JlZV9DKVxuUVRfNTAyMCAoVGVtcGVyYXR1cmUgUXVhbGl0eSlcblNUXzYwMjAgKFRlbXBlcmF0dXJlIFNvdXJjZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvRHlUX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlUX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9EeVQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb0R5VC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5VCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvRHlUIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVcuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVciLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5Vy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk3Ny1wcmVzZW50LCBXaW5kIiwgIlRoaXMgZGF0YXNldCBoYXMgZGFpbHkgV2luZCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5XVV80MjIgKFpvbmFsIFdpbmQsIG0gcy0xKVxuV1ZfNDIzIChNZXJpZGlvbmFsIFdpbmQsIG0gcy0xKVxuV1NfNDAxIChXaW5kIFNwZWVkLCBtIHMtMSlcblFXU181NDAxIChXaW5kIFNwZWVkIFF1YWxpdHkpXG5TV1NfNjQwMSAoV2luZCBTcGVlZCBTb3VyY2UpXG5XRF80MTAgKFdpbmQgRGlyZWN0aW9uLCBkZWdyZWVzX3RydWUpXG5RV0RfNTQxMCAoV2luZCBEaXJlY3Rpb24gUXVhbGl0eSlcblNXRF82NDEwIChXaW5kIERpcmVjdGlvbiBTb3VyY2UpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5V19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5V19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlXL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeVcucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeVcmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5VyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlEeW4uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUR5biIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlEeW4uZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDE5ODAtcHJlc2VudCwgRHluYW1pYyBIZWlnaHQiLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBEeW5hbWljIEhlaWdodCBkYXRhIChhIG1lYXN1cmUgb2YgdGhlIGVsZXZhdGlvbiBvZiB0aGUgc2VhIGxldmVsLCBjYWxjdWxhdGVkIGJ5IGludGVncmF0aW5nIHRoZSBzcGVjaWZpYyB2b2x1bWUgYW5vbWFseSBvZiB0aGUgc2VhIHdhdGVyIGJldHdlZW4gdGhlIHNlYSBzdXJmYWNlIGFuZCA1MDAgbSBkZXB0aCkgZnJvbSB0aGUgXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5EWU5fMTMgKER5bmFtaWMgSGVpZ2h0LCBkeW4tY20pXG5RRF81MDEzIChEeW5hbWljIEhlaWdodCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeUR5bl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5RHluX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9EeUR5bi9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlEeW4ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeUR5biZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvRHlEeW4iXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5SGVhdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5SGVhdCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlIZWF0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAxOTgwLXByZXNlbnQsIEhlYXQgQ29udGVudCIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IEhlYXQgQ29udGVudCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5IVENfMTMwIChIZWF0IENvbnRlbnQsIDEwKioxMCBKIG0tMilcbkhUQ181MTMwIChIZWF0IENvbnRlbnQgUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvRHlIZWF0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlIZWF0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9EeUhlYXQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb0R5SGVhdC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5SGVhdCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvRHlIZWF0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVBvcy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UG9zIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVBvcy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk4MC1wcmVzZW50LCBQb3NpdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IFBvc2l0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkxPTl81MDIgKFByZWNpc2UgTG9uZ2l0dWRlLCBkZWdyZWVfZWFzdClcblFYXzU1MDIgKExvbmdpdHVkZSBRdWFsaXR5KVxuTEFUXzUwMCAoUHJlY2lzZSBMYXRpdHVkZSwgZGVncmVlX25vcnRoKVxuUVlfNTUwMCAoTGF0aXR1ZGUgUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvRHlQb3NfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9EeVBvc19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlQb3MvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb0R5UG9zLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvRHlQb3Mmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5UG9zIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5RC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk4Ny1wcmVzZW50LCBQb3RlbnRpYWwgRGVuc2l0eSBBbm9tYWx5IiwgIlRoaXMgZGF0YXNldCBoYXMgZGFpbHkgUG90ZW50aWFsIERlbnNpdHkgQW5vbWFseSAoc2lnbWEtdGhldGEpIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNUSF83MSAoU2lnbWEtVGhldGEsIGtnIG0tMylcblFTVF81MDcxIChTaWdtYS1UaGV0YSBRdWFsaXR5KVxuU1NUXzYwNzEgKFNpZ21hLVRoZXRhIFNvdXJjZSlcbkRJQ183MDcxIChTaWdtYS1UaGV0YSBJbnN0cnVtZW50IENvZGUpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5RF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5RF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlEL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeUQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeUQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5RCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlTLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlTIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDE5ODctcHJlc2VudCwgU2FsaW5pdHkiLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBTYWxpbml0eSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5TXzQxIChTZWEgV2F0ZXIgUHJhY3RpY2FsIFNhbGluaXR5LCBQU1UpXG5RU181MDQxIChTYWxpbml0eSBRdWFsaXR5KVxuU1NfNjA0MSAoU2FsaW5pdHkgU291cmNlKVxuU0lDXzgwNDEgKFNhbGluaXR5IEluc3RydW1lbnQgQ29kZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvRHlTX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlTX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9EeVMvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb0R5Uy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5UyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvRHlTIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUFkY3Auc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUFkY3AiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5QWRjcC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk4OC0yMDE3LCBBRENQIiwgIlRoaXMgZGF0YXNldCBoYXMgZGFpbHkgQWNvdXN0aWMgRG9wcGxlciBDdXJyZW50IFByb2ZpbGVyIChBRENQKSB3YXRlciBjdXJyZW50cyBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgQURDUCBkYXRhIGFyZSBhdmFpbGFibGUgb25seSBhZnRlciBtb29yaW5nIHJlY292ZXJpZXMsIHdoaWNoIGFyZSBzY2hlZHVsZWQgb24gYW4gYW5udWFsIGJhc2lzLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG51XzEyMDUgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgY20vcylcblFVXzUyMDUgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSBRdWFsaXR5KVxudl8xMjA2IChOb3J0aHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBjbS9zKVxuUVZfNTIwNiAoTm9ydGh3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeUFkY3BfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9EeUFkY3BfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb0R5QWRjcC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlBZGNwLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvRHlBZGNwJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9EeUFkY3AiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5RXZhcC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5RXZhcCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlFdmFwLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAxOTg5LXByZXNlbnQsIEV2YXBvcmF0aW9uIiwgIlRoaXMgZGF0YXNldCBoYXMgZGFpbHkgRXZhcG9yYXRpb24gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBEYWlseSBhdmVyYWdlcyBhcmUgY29tcHV0ZWQgc3RhcnRpbmcgYXQgMDA6MDBaIGFuZCBhcmUgYXNzaWduZWQgYW4gb2JzZXJ2YXRpb24gJ3RpbWUnIG9mIDEyOjAwWi4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuRV8yNTAgKEV2YXBvcmF0aW9uLCBNTS9IUilcblFFXzUyNTAgKEV2YXBvcmF0aW9uIFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5RXZhcF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5RXZhcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlFdmFwL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeUV2YXAucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeUV2YXAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5RXZhcCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlRbGF0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlRbGF0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVFsYXQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDE5ODktcHJlc2VudCwgTGF0ZW50IEhlYXQgRmx1eCIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IExhdGVudCBIZWF0IEZsdXggZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBEYWlseSBhdmVyYWdlcyBhcmUgY29tcHV0ZWQgc3RhcnRpbmcgYXQgMDA6MDBaIGFuZCBhcmUgYXNzaWduZWQgYW4gb2JzZXJ2YXRpb24gJ3RpbWUnIG9mIDEyOjAwWi4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUUxfMTM3IChMYXRlbnQgSGVhdCBGbHV4LCBXIG0tMilcblFRTF81MTM3IChMYXRlbnQgSGVhdCBGbHV4IFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5UWxhdF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5UWxhdF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlRbGF0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeVFsYXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeVFsYXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5UWxhdCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlSaC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UmgiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UmguZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDE5ODktcHJlc2VudCwgUmVsYXRpdmUgSHVtaWRpdHkiLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBSZWxhdGl2ZSBIdW1pZGl0eSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5SSF85MTAgKFJlbGF0aXZlIEh1bWlkaXR5LCBwZXJjZW50KVxuUVJIXzU5MTAgKFJlbGF0aXZlIEh1bWlkaXR5IFF1YWxpdHkpXG5TUkhfNjkxMCAoUmVsYXRpdmUgSHVtaWRpdHkgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeVJoX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlSaF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlSaC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlSaC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5Umgmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5UmgiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UXNlbi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UXNlbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlRc2VuLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAxOTg5LXByZXNlbnQsIFNlbnNpYmxlIEhlYXQgRmx1eCIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IFNlbnNpYmxlIEhlYXQgRmx1eCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5RU18xMzggKFNlbnNpYmxlIEhlYXQgRmx1eCwgVyBtLTIpXG5RUVNfNTEzOCAoU2Vuc2libGUgSGVhdCBGbHV4IFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5UXNlbl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5UXNlbl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlRc2VuL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeVFzZW4ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeVFzZW4mc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5UXNlbiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlUYXUuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVRhdSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlUYXUuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDE5ODktcHJlc2VudCwgV2luZCBTdHJlc3MiLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBXaW5kIFN0cmVzcyBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5UWF80NDIgKFpvbmFsIFdpbmQgU3RyZXNzLCBOL20yKVxuVFlfNDQzIChNZXJpZGlvbmFsIFdpbmQgU3RyZXNzLCBOL20yKVxuVEFVXzQ0MCAoV2luZCBTdHJlc3MsIE4vbTIpXG5URF80NDUgKFdpbmQgU3RyZXNzIERpcmVjdGlvbiwgZGVncmVlc190cnVlKVxuUVRBVV81NDQwIChXaW5kIFN0cmVzcyBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeVRhdV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5VGF1X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9EeVRhdS9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlUYXUucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeVRhdSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvRHlUYXUiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UmFkLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlSYWQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UmFkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAxOTkxLXByZXNlbnQsIERvd25nb2luZyBTaG9ydHdhdmUgUmFkaWF0aW9uIiwgIlRoaXMgZGF0YXNldCBoYXMgZGFpbHkgRG93bmdvaW5nIFNob3J0d2F2ZSBSYWRpYXRpb24gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBEYWlseSBhdmVyYWdlcyBhcmUgY29tcHV0ZWQgc3RhcnRpbmcgYXQgMDA6MDBaIGFuZCBhcmUgYXNzaWduZWQgYW4gb2JzZXJ2YXRpb24gJ3RpbWUnIG9mIDEyOjAwWi4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUkRfNDk1IChEb3duZ29pbmcgU2hvcnR3YXZlIFJhZGlhdGlvbiwgVy9NKioyKVxuUVNXXzU0OTUgKFNob3J0d2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNTV182NDk1IChTaG9ydHdhdmUgUmFkaWF0aW9uIFNvdXJjZSlcblJEU180OTYgKFNob3J0d2F2ZSBSYWRpYXRpb24gU3RhbmRhcmQgRGV2aWF0aW9uLCBXL00qKjIpXG5SRFBfNDk3IChTaG9ydHdhdmUgUmFkaWF0aW9uIFBlYWssIFcvTSoqMilcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvRHlSYWRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9EeVJhZF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlSYWQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb0R5UmFkLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvRHlSYWQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5UmFkIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVN3bmV0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlTd25ldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlTd25ldC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk5MS1wcmVzZW50LCBOZXQgU2hvcnR3YXZlIFJhZGlhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IE5ldCBTaG9ydHdhdmUgUmFkaWF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNXTl8xNDk1IChOZXQgU2hvcnR3YXZlIFJhZGlhdGlvbiwgVy9NKioyKVxuUVNXXzU0OTUgKFNob3J0d2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvRHlTd25ldF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5U3duZXRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb0R5U3duZXQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb0R5U3duZXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeVN3bmV0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9EeVN3bmV0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVNzcy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5U3NzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVNzcy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk5Mi1wcmVzZW50LCBTZWEgU3VyZmFjZSBTYWxpbml0eSIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IFNlYSBTdXJmYWNlIFNhbGluaXR5IGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNfNDEgKFNlYSBXYXRlciBQcmFjdGljYWwgU2FsaW5pdHksIFBTVSlcblFTXzUwNDEgKFNhbGluaXR5IFF1YWxpdHkpXG5TU182MDQxIChTYWxpbml0eSBTb3VyY2UpXG5TSUNfNzA0MSAoU2FsaW5pdHkgSW5zdHJ1bWVudCBDb2RlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeVNzc19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5U3NzX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9EeVNzcy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlTc3MucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeVNzcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvRHlTc3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5U3NkLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlTc2QiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5U3NkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAxOTkyLXByZXNlbnQsIFNpZ21hLVRoZXRhIiwgIlRoaXMgZGF0YXNldCBoYXMgZGFpbHkgU2lnbWEtVGhldGEgKFBvdGVudGlhbCBEZW5zaXR5IEFub21hbHkpIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNUSF83MSAoU2lnbWEtVGhldGEsIGtnIG0tMylcblFTVF81MDcxIChTaWdtYS1UaGV0YSBRdWFsaXR5KVxuU1NUXzYwNzEgKFNpZ21hLVRoZXRhIFNvdXJjZSlcbkRJQ183MDcxIChTaWdtYS1UaGV0YSBJbnN0cnVtZW50IENvZGUpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5U3NkX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlTc2RfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb0R5U3NkL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeVNzZC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5U3NkJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9EeVNzZCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlFbXAuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUVtcCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlFbXAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDE5OTctcHJlc2VudCwgRXZhcG9yYXRpb24gTWludXMgUHJlY2lwaXRhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IEV2YXBvcmF0aW9uIE1pbnVzIFByZWNpcGl0YXRpb24gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBEYWlseSBhdmVyYWdlcyBhcmUgY29tcHV0ZWQgc3RhcnRpbmcgYXQgMDA6MDBaIGFuZCBhcmUgYXNzaWduZWQgYW4gb2JzZXJ2YXRpb24gJ3RpbWUnIG9mIDEyOjAwWi4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuRU1QXzI1MSAoRXZhcG9yYXRpb24gTWludXMgUHJlY2lwaXRhdGlvbiwgbW0vaHIpXG5RRU1QXzUyNTEgKEV2YXBvcmF0aW9uIE1pbnVzIFByZWNpcGl0YXRpb24gUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvRHlFbXBfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9EeUVtcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlFbXAvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb0R5RW1wLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvRHlFbXAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5RW1wIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVJmLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlSZiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlSZi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk5Ny1wcmVzZW50LCBIZWF0IEZsdXggRHVlIFRvIFJhaW4iLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBIZWF0IEZsdXggRHVlIFRvIFJhaW4gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBEYWlseSBhdmVyYWdlcyBhcmUgY29tcHV0ZWQgc3RhcnRpbmcgYXQgMDA6MDBaIGFuZCBhcmUgYXNzaWduZWQgYW4gb2JzZXJ2YXRpb24gJ3RpbWUnIG9mIDEyOjAwWi4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUVJfMTM5IChIZWF0IEZsdXggRHVlIFRvIFJhaW4sIFcgbS0yKVxuUVFSXzUxMzkgKEhlYXQgRmx1eCBEdWUgVG8gUmFpbiBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeVJmX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlSZl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlSZi9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlSZi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5UmYmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5UmYiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UmFpbi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UmFpbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlSYWluLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAxOTk3LXByZXNlbnQsIFByZWNpcGl0YXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBQcmVjaXBpdGF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblJOXzQ4NSAoUHJlY2lwaXRhdGlvbiwgTU0vSFIpXG5RUk5fNTQ4NSAoUHJlY2lwaXRhdGlvbiBRdWFsaXR5KVxuU1JOXzY0ODUgKFByZWNpcGl0YXRpb24gU291cmNlKVxuUk5TXzQ4NiAoUHJlY2lwaXRhdGlvbiBTdGFuZGFyZCBEZXZpYXRpb24sIE1NL0hSKVxuUk5QXzQ4NyAoUGVyY2VudCBUaW1lIFJhaW5pbmcsIHBlcmNlbnQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5UmFpbl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5UmFpbl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlSYWluL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeVJhaW4ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeVJhaW4mc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5UmFpbiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlCcC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5QnAiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5QnAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDE5OTgtcHJlc2VudCwgQmFyb21ldHJpYyAoQWlyKSBQcmVzc3VyZSIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IEJhcm9tZXRyaWMgKEFpcikgUHJlc3N1cmUgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBEYWlseSBhdmVyYWdlcyBhcmUgY29tcHV0ZWQgc3RhcnRpbmcgYXQgMDA6MDBaIGFuZCBhcmUgYXNzaWduZWQgYW4gb2JzZXJ2YXRpb24gJ3RpbWUnIG9mIDEyOjAwWi4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuQlBfOTE1IChCYXJvbWV0cmljIChBaXIpIFByZXNzdXJlLCBoUGEpXG5RQlBfNTkxNSAoQmFyb21ldHJpYyAoQWlyKSBQcmVzc3VyZSBRdWFsaXR5KVxuU0JQXzY5MTUgKEJhcm9tZXRyaWMgKEFpcikgUHJlc3N1cmUgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeUJwX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlCcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlCcC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlCcC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5QnAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5QnAiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5QmYuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUJmIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUJmLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAyMDAwLXByZXNlbnQsIEJ1b3lhbmN5IEZsdXgiLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBCdW95YW5jeSBGbHV4IGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkJGXzE5MSAoQnVveWFuY3kgRmx1eCwgMTAqKjYga2cgbS0yIHMtMSlcblFCRl81MTkxIChCdW95YW5jeSBGbHV4IFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5QmZfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9EeUJmX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9EeUJmL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeUJmLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvRHlCZiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvRHlCZiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlMdy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5THciLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5THcuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDIwMDAtcHJlc2VudCwgTG9uZ3dhdmUgUmFkaWF0aW9uIiwgIlRoaXMgZGF0YXNldCBoYXMgZGFpbHkgSW5jb21pbmcgTG9uZ3dhdmUgUmFkaWF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFsXzEzNiAoSW5jb21pbmcgTG9uZ3dhdmUgUmFkaWF0aW9uLCBXIG0tMilcblFMV181MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNMV182MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeUx3X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlMd19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlMdy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlMdy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5THcmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5THciXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5THduZXQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUx3bmV0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUx3bmV0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAyMDAwLXByZXNlbnQsIE5ldCBMb25nd2F2ZSBSYWRpYXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBOZXQgTG9uZ3dhdmUgUmFkaWF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkxXTl8xMTM2IChOZXQgTG9uZ3dhdmUgUmFkaWF0aW9uLCBXIG0tMilcblFMV181MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNMV182MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeUx3bmV0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlMd25ldF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlMd25ldC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlMd25ldC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5THduZXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5THduZXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UW5ldC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UW5ldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlRbmV0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAyMDAwLXByZXNlbnQsIFRvdGFsIEhlYXQgRmx1eCIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IFRvdGFsIEhlYXQgRmx1eCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5RVF8yMTAgKFRvdGFsIEhlYXQgRmx1eCwgVy9NKioyKVxuUVEwXzUyMTAgKFRvdGFsIEhlYXQgRmx1eCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeVFuZXRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9EeVFuZXRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb0R5UW5ldC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlRbmV0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvRHlRbmV0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9EeVFuZXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbklzby5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbklzbyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uSXNvLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5NzctcHJlc2VudCwgMjBDIElzb3RoZXJtIERlcHRoIiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSAyMEMgSXNvdGhlcm0gRGVwdGggZGF0YSAodGhlIGRlcHRoIGF0IHdoaWNoIHRoZSBvY2VhbiB0ZW1wZXJhdHVyZSBpcyAyMEMpIGZyb20gdGhlIFxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBNb250aGx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIG1vbnRoLiAgQSBtaW5pbXVtIG9mIDE1IGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIG1vbnRobHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5JU09fNiAoMjBDIElzb3RoZXJtIERlcHRoLCBtKVxuUUlfNTAwNiAoMjBDIERlcHRoIFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vbklzb19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vbklzb19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uSXNvL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25Jc28ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25Jc28mc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vbklzbyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uQWlydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkFpcnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkFpcnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMTk3Ny1wcmVzZW50LCBBaXIgVGVtcGVyYXR1cmUiLCAiVGhpcyBkYXRhc2V0IGhhcyBtb250aGx5IEFpciBUZW1wZXJhdHVyZSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkFUXzIxIChBaXIgVGVtcGVyYXR1cmUsIGRlZ3JlZV9DKVxuUUFUXzUwMjEgKEFpciBUZW1wZXJhdHVyZSBRdWFsaXR5KVxuU0FUXzYwMjEgKEFpciBUZW1wZXJhdHVyZSBTb3VyY2UpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vbkFpcnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25BaXJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25BaXJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25BaXJ0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uQWlydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uQWlydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uQ3VyLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uQ3VyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25DdXIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMTk3Ny1wcmVzZW50LCBDdXJyZW50cyIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgQ3VycmVudHMgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBNb250aGx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIG1vbnRoLiAgQSBtaW5pbXVtIG9mIDE1IGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIG1vbnRobHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5VXzMyMCAoRWFzdHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBjbSBzLTEpXG5WXzMyMSAoTm9ydGh3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgY20gcy0xKVxuQ1NfMzAwIChTZWEgV2F0ZXIgVmVsb2NpdHksIGNtIHMtMSlcbkNEXzMxMCAoRGlyZWN0aW9uIG9mIFNlYSBXYXRlciBWZWxvY2l0eSwgZGVncmVlc190cnVlKVxuUUNTXzUzMDAgKEN1cnJlbnQgU3BlZWQgUXVhbGl0eSlcblFDRF81MzEwIChDdXJyZW50IERpcmVjdGlvbiBRdWFsaXR5KVxuU0NTXzYzMDAgKEN1cnJlbnQgU3BlZWQgU291cmNlKVxuQ0lDXzczMDAgKEN1cnJlbnQgSW5zdHJ1bWVudCBDb2RlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25DdXJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25DdXJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb01vbkN1ci9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uQ3VyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uQ3VyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9Nb25DdXIiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblNzdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblNzdCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uU3N0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5NzctcHJlc2VudCwgU2VhIFN1cmZhY2UgVGVtcGVyYXR1cmUiLCAiVGhpcyBkYXRhc2V0IGhhcyBtb250aGx5IFNlYSBTdXJmYWNlIFRlbXBlcmF0dXJlIChTU1QpIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuVF8yNSAoU2VhIFN1cmZhY2UgVGVtcGVyYXR1cmUsIGRlZ3JlZV9DKVxuUVRfNTAyNSAoU2VhIFN1cmZhY2UgVGVtcGVyYXR1cmUgUXVhbGl0eSlcblNUXzYwMjUgKFNlYSBTdXJmYWNlIFRlbXBlcmF0dXJlIFNvdXJjZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvTW9uU3N0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uU3N0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25Tc3QvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb01vblNzdC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vblNzdCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uU3N0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25ULnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uVCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uVC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBNb250aGx5LCAxOTc3LXByZXNlbnQsIFRlbXBlcmF0dXJlIiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBUZW1wZXJhdHVyZSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblRfMjAgKFNlYSBXYXRlciBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5RVF81MDIwIChUZW1wZXJhdHVyZSBRdWFsaXR5KVxuU1RfNjAyMCAoVGVtcGVyYXR1cmUgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25UX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uVF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uVC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uVC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vblQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vblQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblcuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25XIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25XLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5NzctcHJlc2VudCwgV2luZCIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgV2luZCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbldVXzQyMiAoWm9uYWwgV2luZCwgbSBzLTEpXG5XVl80MjMgKE1lcmlkaW9uYWwgV2luZCwgbSBzLTEpXG5XU180MDEgKFdpbmQgU3BlZWQsIG0gcy0xKVxuUVdTXzU0MDEgKFdpbmQgU3BlZWQgUXVhbGl0eSlcblNXU182NDAxIChXaW5kIFNwZWVkIFNvdXJjZSlcbldEXzQxMCAoV2luZCBEaXJlY3Rpb24sIGRlZ3JlZXNfdHJ1ZSlcblFXRF81NDEwIChXaW5kIERpcmVjdGlvbiBRdWFsaXR5KVxuU1dEXzY0MTAgKFdpbmQgRGlyZWN0aW9uIFNvdXJjZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvTW9uV19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vbldfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb01vblcvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb01vblcucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25XJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9Nb25XIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25EeW4uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25EeW4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkR5bi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBNb250aGx5LCAxOTgwLXByZXNlbnQsIER5bmFtaWMgSGVpZ2h0IiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBEeW5hbWljIEhlaWdodCBkYXRhIChhIG1lYXN1cmUgb2YgdGhlIGVsZXZhdGlvbiBvZiB0aGUgc2VhIGxldmVsLCBjYWxjdWxhdGVkIGJ5IGludGVncmF0aW5nIHRoZSBzcGVjaWZpYyB2b2x1bWUgYW5vbWFseSBvZiB0aGUgc2VhIHdhdGVyIGJldHdlZW4gdGhlIHNlYSBzdXJmYWNlIGFuZCA1MDAgbSBkZXB0aCkgZnJvbSB0aGUgXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkRZTl8xMyAoRHluYW1pYyBIZWlnaHQsIGR5bi1jbSlcblFEXzUwMTMgKER5bmFtaWMgSGVpZ2h0IFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vbkR5bl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vbkR5bl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uRHluL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25EeW4ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25EeW4mc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vbkR5biJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uSGVhdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkhlYXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkhlYXQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMTk4MC1wcmVzZW50LCBIZWF0IENvbnRlbnQiLCAiVGhpcyBkYXRhc2V0IGhhcyBtb250aGx5IEhlYXQgQ29udGVudCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkhUQ18xMzAgKEhlYXQgQ29udGVudCwgMTAqKjEwIEogbS0yKVxuSFRDXzUxMzAgKEhlYXQgQ29udGVudCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25IZWF0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uSGVhdF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uSGVhdC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uSGVhdC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vbkhlYXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vbkhlYXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblBvcy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblBvcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uUG9zLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5ODAtcHJlc2VudCwgUG9zaXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBtb250aGx5IFBvc2l0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuTE9OXzUwMiAoUHJlY2lzZSBMb25naXR1ZGUsIGRlZ3JlZV9lYXN0KVxuUVhfNTUwMiAoTG9uZ2l0dWRlIFF1YWxpdHkpXG5MQVRfNTAwIChQcmVjaXNlIExhdGl0dWRlLCBkZWdyZWVfbm9ydGgpXG5RWV81NTAwIChMYXRpdHVkZSBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25Qb3NfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25Qb3NfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb01vblBvcy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uUG9zLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uUG9zJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9Nb25Qb3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25EIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25ELmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5ODctcHJlc2VudCwgUG90ZW50aWFsIERlbnNpdHkgQW5vbWFseSIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgUG90ZW50aWFsIERlbnNpdHkgQW5vbWFseSAoc2lnbWEtdGhldGEpIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuU1RIXzcxIChTaWdtYS1UaGV0YSwga2cgbS0zKVxuUVNUXzUwNzEgKFNpZ21hLVRoZXRhIFF1YWxpdHkpXG5TU1RfNjA3MSAoU2lnbWEtVGhldGEgU291cmNlKVxuRElDXzcwNzEgKFNpZ21hLVRoZXRhIEluc3RydW1lbnQgQ29kZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvTW9uRF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vbkRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb01vbkQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb01vbkQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25EJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9Nb25EIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25TLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uUyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uUy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBNb250aGx5LCAxOTg3LXByZXNlbnQsIFNhbGluaXR5IiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBTYWxpbml0eSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNfNDEgKFNlYSBXYXRlciBQcmFjdGljYWwgU2FsaW5pdHksIFBTVSlcblFTXzUwNDEgKFNhbGluaXR5IFF1YWxpdHkpXG5TU182MDQxIChTYWxpbml0eSBTb3VyY2UpXG5TSUNfODA0MSAoU2FsaW5pdHkgSW5zdHJ1bWVudCBDb2RlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25TX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uU19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uUy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uUy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vblMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vblMiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkFkY3Auc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25BZGNwIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25BZGNwLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5ODgtMjAxNywgQURDUCIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgQWNvdXN0aWMgRG9wcGxlciBDdXJyZW50IFByb2ZpbGVyIChBRENQKSB3YXRlciBjdXJyZW50cyBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgQURDUCBkYXRhIGFyZSBhdmFpbGFibGUgb25seSBhZnRlciBtb29yaW5nIHJlY292ZXJpZXMsIHdoaWNoIGFyZSBzY2hlZHVsZWQgb24gYW4gYW5udWFsIGJhc2lzLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG51XzEyMDUgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgY20vcylcblFVXzUyMDUgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSBRdWFsaXR5KVxudl8xMjA2IChOb3J0aHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBjbS9zKVxuUVZfNTIwNiAoTm9ydGh3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25BZGNwX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uQWRjcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uQWRjcC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uQWRjcC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vbkFkY3Amc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vbkFkY3AiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkV2YXAuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25FdmFwIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25FdmFwLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5ODktcHJlc2VudCwgRXZhcG9yYXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBtb250aGx5IEV2YXBvcmF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuRV8yNTAgKEV2YXBvcmF0aW9uLCBNTS9IUilcblFFXzUyNTAgKEV2YXBvcmF0aW9uIFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vbkV2YXBfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25FdmFwX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25FdmFwL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25FdmFwLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uRXZhcCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uRXZhcCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uUWxhdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblFsYXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblFsYXQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMTk4OS1wcmVzZW50LCBMYXRlbnQgSGVhdCBGbHV4IiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBMYXRlbnQgSGVhdCBGbHV4IGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUUxfMTM3IChMYXRlbnQgSGVhdCBGbHV4LCBXIG0tMilcblFRTF81MTM3IChMYXRlbnQgSGVhdCBGbHV4IFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vblFsYXRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25RbGF0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25RbGF0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25RbGF0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uUWxhdCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uUWxhdCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uUmguc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25SaCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uUmguZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMTk4OS1wcmVzZW50LCBSZWxhdGl2ZSBIdW1pZGl0eSIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgUmVsYXRpdmUgSHVtaWRpdHkgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBNb250aGx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIG1vbnRoLiAgQSBtaW5pbXVtIG9mIDE1IGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIG1vbnRobHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5SSF85MTAgKFJlbGF0aXZlIEh1bWlkaXR5LCBwZXJjZW50KVxuUVJIXzU5MTAgKFJlbGF0aXZlIEh1bWlkaXR5IFF1YWxpdHkpXG5TUkhfNjkxMCAoUmVsYXRpdmUgSHVtaWRpdHkgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25SaF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vblJoX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25SaC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uUmgucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25SaCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uUmgiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblFzZW4uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25Rc2VuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25Rc2VuLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5ODktcHJlc2VudCwgU2Vuc2libGUgSGVhdCBGbHV4IiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBTZW5zaWJsZSBIZWF0IEZsdXggZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBNb250aGx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIG1vbnRoLiAgQSBtaW5pbXVtIG9mIDE1IGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIG1vbnRobHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5RU18xMzggKFNlbnNpYmxlIEhlYXQgRmx1eCwgVyBtLTIpXG5RUVNfNTEzOCAoU2Vuc2libGUgSGVhdCBGbHV4IFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vblFzZW5fZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25Rc2VuX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25Rc2VuL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25Rc2VuLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uUXNlbiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uUXNlbiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uVGF1LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uVGF1IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25UYXUuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMTk4OS1wcmVzZW50LCBXaW5kIFN0cmVzcyIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgV2luZCBTdHJlc3MgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBNb250aGx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIG1vbnRoLiAgQSBtaW5pbXVtIG9mIDE1IGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIG1vbnRobHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5UWF80NDIgKFpvbmFsIFdpbmQgU3RyZXNzLCBOL20yKVxuVFlfNDQzIChNZXJpZGlvbmFsIFdpbmQgU3RyZXNzLCBOL20yKVxuVEFVXzQ0MCAoV2luZCBTdHJlc3MsIE4vbTIpXG5URF80NDUgKFdpbmQgU3RyZXNzIERpcmVjdGlvbiwgZGVncmVlc190cnVlKVxuUVRBVV81NDQwIChXaW5kIFN0cmVzcyBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25UYXVfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25UYXVfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb01vblRhdS9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uVGF1LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uVGF1JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9Nb25UYXUiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblJhZC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblJhZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uUmFkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5OTEtcHJlc2VudCwgRG93bmdvaW5nIFNob3J0d2F2ZSBSYWRpYXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBtb250aGx5IERvd25nb2luZyBTaG9ydHdhdmUgUmFkaWF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUkRfNDk1IChEb3duZ29pbmcgU2hvcnR3YXZlIFJhZGlhdGlvbiwgVy9NKioyKVxuUVNXXzU0OTUgKFNob3J0d2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNTV182NDk1IChTaG9ydHdhdmUgUmFkaWF0aW9uIFNvdXJjZSlcblJEU180OTYgKFNob3J0d2F2ZSBSYWRpYXRpb24gU3RhbmRhcmQgRGV2aWF0aW9uLCBXL00qKjIpXG5SRFBfNDk3IChTaG9ydHdhdmUgUmFkaWF0aW9uIFBlYWssIFcvTSoqMilcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvTW9uUmFkX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uUmFkX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25SYWQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb01vblJhZC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vblJhZCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uUmFkIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25Td25ldC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblN3bmV0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25Td25ldC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBNb250aGx5LCAxOTkxLXByZXNlbnQsIE5ldCBTaG9ydHdhdmUgUmFkaWF0aW9uIiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBOZXQgU2hvcnR3YXZlIFJhZGlhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNXTl8xNDk1IChOZXQgU2hvcnR3YXZlIFJhZGlhdGlvbiwgVy9NKioyKVxuUVNXXzU0OTUgKFNob3J0d2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvTW9uU3duZXRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25Td25ldF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uU3duZXQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb01vblN3bmV0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uU3duZXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vblN3bmV0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25Tc3Muc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25Tc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblNzcy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBNb250aGx5LCAxOTkyLXByZXNlbnQsIFNlYSBTdXJmYWNlIFNhbGluaXR5IiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBTZWEgU3VyZmFjZSBTYWxpbml0eSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNfNDEgKFNlYSBXYXRlciBQcmFjdGljYWwgU2FsaW5pdHksIFBTVSlcblFTXzUwNDEgKFNhbGluaXR5IFF1YWxpdHkpXG5TU182MDQxIChTYWxpbml0eSBTb3VyY2UpXG5TSUNfNzA0MSAoU2FsaW5pdHkgSW5zdHJ1bWVudCBDb2RlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25Tc3NfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25Tc3NfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb01vblNzcy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uU3NzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uU3NzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9Nb25Tc3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblNzZC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblNzZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uU3NkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5OTItcHJlc2VudCwgU2lnbWEtVGhldGEiLCAiVGhpcyBkYXRhc2V0IGhhcyBtb250aGx5IFNpZ21hLVRoZXRhIChQb3RlbnRpYWwgRGVuc2l0eSBBbm9tYWx5KSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNUSF83MSAoU2lnbWEtVGhldGEsIGtnIG0tMylcblFTVF81MDcxIChTaWdtYS1UaGV0YSBRdWFsaXR5KVxuU1NUXzYwNzEgKFNpZ21hLVRoZXRhIFNvdXJjZSlcbkRJQ183MDcxIChTaWdtYS1UaGV0YSBJbnN0cnVtZW50IENvZGUpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vblNzZF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vblNzZF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uU3NkL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25Tc2QucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25Tc2Qmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vblNzZCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uRW1wLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uRW1wIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25FbXAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMTk5Ny1wcmVzZW50LCBFdmFwb3JhdGlvbiBNaW51cyBQcmVjaXBpdGF0aW9uIiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBFdmFwb3JhdGlvbiBNaW51cyBQcmVjaXBpdGF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuRU1QXzI1MSAoRXZhcG9yYXRpb24gTWludXMgUHJlY2lwaXRhdGlvbiwgbW0vaHIpXG5RRU1QXzUyNTEgKEV2YXBvcmF0aW9uIE1pbnVzIFByZWNpcGl0YXRpb24gUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvTW9uRW1wX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uRW1wX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25FbXAvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb01vbkVtcC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vbkVtcCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uRW1wIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25SZi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblJmIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25SZi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBNb250aGx5LCAxOTk3LXByZXNlbnQsIEhlYXQgRmx1eCBEdWUgVG8gUmFpbiIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgSGVhdCBGbHV4IER1ZSBUbyBSYWluIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUVJfMTM5IChIZWF0IEZsdXggRHVlIFRvIFJhaW4sIFcgbS0yKVxuUVFSXzUxMzkgKEhlYXQgRmx1eCBEdWUgVG8gUmFpbiBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25SZl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vblJmX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25SZi9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uUmYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25SZiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uUmYiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblJhaW4uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25SYWluIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25SYWluLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5OTctcHJlc2VudCwgUHJlY2lwaXRhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgUHJlY2lwaXRhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblJOXzQ4NSAoUHJlY2lwaXRhdGlvbiwgTU0vSFIpXG5RUk5fNTQ4NSAoUHJlY2lwaXRhdGlvbiBRdWFsaXR5KVxuU1JOXzY0ODUgKFByZWNpcGl0YXRpb24gU291cmNlKVxuUk5TXzQ4NiAoUHJlY2lwaXRhdGlvbiBTdGFuZGFyZCBEZXZpYXRpb24sIE1NL0hSKVxuUk5QXzQ4NyAoUGVyY2VudCBUaW1lIFJhaW5pbmcsIHBlcmNlbnQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vblJhaW5fZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25SYWluX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25SYWluL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25SYWluLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uUmFpbiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uUmFpbiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uQnAuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25CcCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uQnAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMTk5OC1wcmVzZW50LCBCYXJvbWV0cmljIChBaXIpIFByZXNzdXJlIiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBCYXJvbWV0cmljIChBaXIpIFByZXNzdXJlIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuQlBfOTE1IChCYXJvbWV0cmljIChBaXIpIFByZXNzdXJlLCBoUGEpXG5RQlBfNTkxNSAoQmFyb21ldHJpYyAoQWlyKSBQcmVzc3VyZSBRdWFsaXR5KVxuU0JQXzY5MTUgKEJhcm9tZXRyaWMgKEFpcikgUHJlc3N1cmUgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25CcF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vbkJwX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25CcC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uQnAucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25CcCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uQnAiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkJmLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uQmYiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkJmLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDIwMDAtcHJlc2VudCwgQnVveWFuY3kgRmx1eCIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgQnVveWFuY3kgRmx1eCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkJGXzE5MSAoQnVveWFuY3kgRmx1eCwgMTAqKjYga2cgbS0yIHMtMSlcblFCRl81MTkxIChCdW95YW5jeSBGbHV4IFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vbkJmX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uQmZfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb01vbkJmL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25CZi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vbkJmJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9Nb25CZiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uTHcuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25MdyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uTHcuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMjAwMC1wcmVzZW50LCBMb25nd2F2ZSBSYWRpYXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBtb250aGx5IEluY29taW5nIExvbmd3YXZlIFJhZGlhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFsXzEzNiAoSW5jb21pbmcgTG9uZ3dhdmUgUmFkaWF0aW9uLCBXIG0tMilcblFMV181MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNMV182MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25Md19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vbkx3X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25Mdy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uTHcucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25MdyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uTHciXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkx3bmV0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uTHduZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkx3bmV0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDIwMDAtcHJlc2VudCwgTmV0IExvbmd3YXZlIFJhZGlhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgTmV0IExvbmd3YXZlIFJhZGlhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkxXTl8xMTM2IChOZXQgTG9uZ3dhdmUgUmFkaWF0aW9uLCBXIG0tMilcblFMV181MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNMV182MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25Md25ldF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vbkx3bmV0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25Md25ldC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uTHduZXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25Md25ldCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uTHduZXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblFuZXQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25RbmV0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25RbmV0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDIwMDAtcHJlc2VudCwgVG90YWwgSGVhdCBGbHV4IiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBUb3RhbCBIZWF0IEZsdXggZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBNb250aGx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIG1vbnRoLiAgQSBtaW5pbXVtIG9mIDE1IGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIG1vbnRobHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5RVF8yMTAgKFRvdGFsIEhlYXQgRmx1eCwgVy9NKioyKVxuUVEwXzUyMTAgKFRvdGFsIEhlYXQgRmx1eCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25RbmV0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uUW5ldF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uUW5ldC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uUW5ldC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vblFuZXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vblFuZXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFJhZC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFJhZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0UmFkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTkwMS1wcmVzZW50LCBEb3duZ29pbmcgU2hvcnR3YXZlIFJhZGlhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBEb3duZ29pbmcgU2hvcnR3YXZlIFJhZGlhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5SRF80OTUgKERvd25nb2luZyBTaG9ydHdhdmUgUmFkaWF0aW9uLCBXL00qKjIpXG5RU1dfNTQ5NSAoU2hvcnR3YXZlIFJhZGlhdGlvbiBRdWFsaXR5KVxuU1NXXzY0OTUgKFNob3J0d2F2ZSBSYWRpYXRpb24gU291cmNlKVxuUkRTXzQ5NiAoU2hvcnR3YXZlIFJhZGlhdGlvbiBTdGFuZGFyZCBEZXZpYXRpb24sIFcvTSoqMilcblJEUF80OTcgKFNob3J0d2F2ZSBSYWRpYXRpb24gUGVhaywgVy9NKioyKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRSYWRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9RcnRSYWRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydFJhZC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0UmFkLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvUXJ0UmFkJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRSYWQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydElzby5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydElzbyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0SXNvLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk3Ny1wcmVzZW50LCAyMEMgSXNvdGhlcm0gRGVwdGgiLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgMjBDIElzb3RoZXJtIERlcHRoIGRhdGEgKHRoZSBkZXB0aCBhdCB3aGljaCB0aGUgb2NlYW4gdGVtcGVyYXR1cmUgaXMgMjBDKSBmcm9tIHRoZSBcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbklTT182ICgyMEMgSXNvdGhlcm0gRGVwdGgsIG0pXG5RSV81MDA2ICgyMEMgRGVwdGggUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0SXNvX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0SXNvX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnRJc28vaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydElzby5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydElzbyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0SXNvIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRBaXJ0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0QWlydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0QWlydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5NzctcHJlc2VudCwgQWlyIFRlbXBlcmF0dXJlIiwgIlRoaXMgZGF0YXNldCBoYXMgcXVhcnRlcmx5IEFpciBUZW1wZXJhdHVyZSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5BVF8yMSAoQWlyIFRlbXBlcmF0dXJlLCBkZWdyZWVfQylcblFBVF81MDIxIChBaXIgVGVtcGVyYXR1cmUgUXVhbGl0eSlcblNBVF82MDIxIChBaXIgVGVtcGVyYXR1cmUgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRBaXJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0QWlydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvUXJ0QWlydC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0QWlydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydEFpcnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb1FydEFpcnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydEN1ci5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydEN1ciIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0Q3VyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk3Ny1wcmVzZW50LCBDdXJyZW50cyIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBDdXJyZW50cyBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5VXzMyMCAoRWFzdHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBjbSBzLTEpXG5WXzMyMSAoTm9ydGh3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgY20gcy0xKVxuQ1NfMzAwIChTZWEgV2F0ZXIgVmVsb2NpdHksIGNtIHMtMSlcbkNEXzMxMCAoRGlyZWN0aW9uIG9mIFNlYSBXYXRlciBWZWxvY2l0eSwgZGVncmVlc190cnVlKVxuUUNTXzUzMDAgKEN1cnJlbnQgU3BlZWQgUXVhbGl0eSlcblFDRF81MzEwIChDdXJyZW50IERpcmVjdGlvbiBRdWFsaXR5KVxuU0NTXzYzMDAgKEN1cnJlbnQgU3BlZWQgU291cmNlKVxuQ0lDXzczMDAgKEN1cnJlbnQgSW5zdHJ1bWVudCBDb2RlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRDdXJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9RcnRDdXJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydEN1ci9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0Q3VyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvUXJ0Q3VyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRDdXIiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFNzdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFNzdCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0U3N0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk3Ny1wcmVzZW50LCBTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSAoU1NUKSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5UXzI1IChTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5RVF81MDI1IChTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSBRdWFsaXR5KVxuU1RfNjAyNSAoU2VhIFN1cmZhY2UgVGVtcGVyYXR1cmUgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRTc3RfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9RcnRTc3RfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydFNzdC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0U3N0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvUXJ0U3N0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRTc3QiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRUIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRULmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk3Ny1wcmVzZW50LCBUZW1wZXJhdHVyZSIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBUZW1wZXJhdHVyZSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5UXzIwIChTZWEgV2F0ZXIgVGVtcGVyYXR1cmUsIGRlZ3JlZV9DKVxuUVRfNTAyMCAoVGVtcGVyYXR1cmUgUXVhbGl0eSlcblNUXzYwMjAgKFRlbXBlcmF0dXJlIFNvdXJjZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0VF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydFRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydFQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydFQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRUJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRUIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRXLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0VyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0Vy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5NzctcHJlc2VudCwgV2luZCIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBXaW5kIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbldVXzQyMiAoWm9uYWwgV2luZCwgbSBzLTEpXG5XVl80MjMgKE1lcmlkaW9uYWwgV2luZCwgbSBzLTEpXG5XU180MDEgKFdpbmQgU3BlZWQsIG0gcy0xKVxuUVdTXzU0MDEgKFdpbmQgU3BlZWQgUXVhbGl0eSlcblNXU182NDAxIChXaW5kIFNwZWVkIFNvdXJjZSlcbldEXzQxMCAoV2luZCBEaXJlY3Rpb24sIGRlZ3JlZXNfdHJ1ZSlcblFXRF81NDEwIChXaW5kIERpcmVjdGlvbiBRdWFsaXR5KVxuU1dEXzY0MTAgKFdpbmQgRGlyZWN0aW9uIFNvdXJjZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0V19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydFdfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydFcvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydFcucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRXJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRXIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnREeW4uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnREeW4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydER5bi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5ODAtcHJlc2VudCwgRHluYW1pYyBIZWlnaHQiLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgRHluYW1pYyBIZWlnaHQgZGF0YSAoYSBtZWFzdXJlIG9mIHRoZSBlbGV2YXRpb24gb2YgdGhlIHNlYSBsZXZlbCwgY2FsY3VsYXRlZCBieSBpbnRlZ3JhdGluZyB0aGUgc3BlY2lmaWMgdm9sdW1lIGFub21hbHkgb2YgdGhlIHNlYSB3YXRlciBiZXR3ZWVuIHRoZSBzZWEgc3VyZmFjZSBhbmQgNTAwIG0gZGVwdGgpIGZyb20gdGhlIFxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBRdWFydGVybHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIG1vbnRobHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSAzIG1vbnRoIHBlcmlvZC4gIEEgbWluaW11bSBvZiAyIG1vbnRobHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgcXVhcnRlcmx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuRFlOXzEzIChEeW5hbWljIEhlaWdodCwgZHluLWNtKVxuUURfNTAxMyAoRHluYW1pYyBIZWlnaHQgUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0RHluX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0RHluX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnREeW4vaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydER5bi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydER5biZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0RHluIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRIZWF0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0SGVhdCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0SGVhdC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5ODAtcHJlc2VudCwgSGVhdCBDb250ZW50IiwgIlRoaXMgZGF0YXNldCBoYXMgcXVhcnRlcmx5IEhlYXQgQ29udGVudCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5IVENfMTMwIChIZWF0IENvbnRlbnQsIDEwKioxMCBKIG0tMilcbkhUQ181MTMwIChIZWF0IENvbnRlbnQgUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0SGVhdF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydEhlYXRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydEhlYXQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydEhlYXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRIZWF0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRIZWF0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRQb3Muc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRQb3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFBvcy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5ODAtcHJlc2VudCwgUG9zaXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgUG9zaXRpb24gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBRdWFydGVybHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIG1vbnRobHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSAzIG1vbnRoIHBlcmlvZC4gIEEgbWluaW11bSBvZiAyIG1vbnRobHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgcXVhcnRlcmx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuTE9OXzUwMiAoUHJlY2lzZSBMb25naXR1ZGUsIGRlZ3JlZV9lYXN0KVxuUVhfNTUwMiAoTG9uZ2l0dWRlIFF1YWxpdHkpXG5MQVRfNTAwIChQcmVjaXNlIExhdGl0dWRlLCBkZWdyZWVfbm9ydGgpXG5RWV81NTAwIChMYXRpdHVkZSBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRQb3NfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9RcnRQb3NfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydFBvcy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0UG9zLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvUXJ0UG9zJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRQb3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydEQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnREIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRELmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk4Ny1wcmVzZW50LCBQb3RlbnRpYWwgRGVuc2l0eSBBbm9tYWx5IiwgIlRoaXMgZGF0YXNldCBoYXMgcXVhcnRlcmx5IFBvdGVudGlhbCBEZW5zaXR5IEFub21hbHkgKHNpZ21hLXRoZXRhKSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5TVEhfNzEgKFNpZ21hLVRoZXRhLCBrZyBtLTMpXG5RU1RfNTA3MSAoU2lnbWEtVGhldGEgUXVhbGl0eSlcblNTVF82MDcxIChTaWdtYS1UaGV0YSBTb3VyY2UpXG5ESUNfNzA3MSAoU2lnbWEtVGhldGEgSW5zdHJ1bWVudCBDb2RlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnREX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0RF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvUXJ0RC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0RC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydEQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb1FydEQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFMuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRTIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRTLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk4Ny1wcmVzZW50LCBTYWxpbml0eSIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBTYWxpbml0eSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5TXzQxIChTZWEgV2F0ZXIgUHJhY3RpY2FsIFNhbGluaXR5LCBQU1UpXG5RU181MDQxIChTYWxpbml0eSBRdWFsaXR5KVxuU1NfNjA0MSAoU2FsaW5pdHkgU291cmNlKVxuU0lDXzgwNDEgKFNhbGluaXR5IEluc3RydW1lbnQgQ29kZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0U19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydFNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydFMvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydFMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRTJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRTIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRBZGNwLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0QWRjcCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0QWRjcC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5ODgtMjAxNywgQURDUCIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBBY291c3RpYyBEb3BwbGVyIEN1cnJlbnQgUHJvZmlsZXIgKEFEQ1ApIHdhdGVyIGN1cnJlbnRzIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgQURDUCBkYXRhIGFyZSBhdmFpbGFibGUgb25seSBhZnRlciBtb29yaW5nIHJlY292ZXJpZXMsIHdoaWNoIGFyZSBzY2hlZHVsZWQgb24gYW4gYW5udWFsIGJhc2lzLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG51XzEyMDUgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgY20vcylcblFVXzUyMDUgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSBRdWFsaXR5KVxudl8xMjA2IChOb3J0aHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBjbS9zKVxuUVZfNTIwNiAoTm9ydGh3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRBZGNwX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0QWRjcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvUXJ0QWRjcC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0QWRjcC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydEFkY3Amc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb1FydEFkY3AiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydEV2YXAuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRFdmFwIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRFdmFwLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk4OS1wcmVzZW50LCBFdmFwb3JhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBFdmFwb3JhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5FXzI1MCAoRXZhcG9yYXRpb24sIE1NL0hSKVxuUUVfNTI1MCAoRXZhcG9yYXRpb24gUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0RXZhcF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydEV2YXBfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydEV2YXAvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydEV2YXAucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRFdmFwJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRFdmFwIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRRbGF0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0UWxhdCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0UWxhdC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5ODktcHJlc2VudCwgTGF0ZW50IEhlYXQgRmx1eCIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBMYXRlbnQgSGVhdCBGbHV4IGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFMXzEzNyAoTGF0ZW50IEhlYXQgRmx1eCwgVyBtLTIpXG5RUUxfNTEzNyAoTGF0ZW50IEhlYXQgRmx1eCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRRbGF0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0UWxhdF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvUXJ0UWxhdC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0UWxhdC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydFFsYXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb1FydFFsYXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFJoLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0UmgiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFJoLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk4OS1wcmVzZW50LCBSZWxhdGl2ZSBIdW1pZGl0eSIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBSZWxhdGl2ZSBIdW1pZGl0eSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5SSF85MTAgKFJlbGF0aXZlIEh1bWlkaXR5LCBwZXJjZW50KVxuUVJIXzU5MTAgKFJlbGF0aXZlIEh1bWlkaXR5IFF1YWxpdHkpXG5TUkhfNjkxMCAoUmVsYXRpdmUgSHVtaWRpdHkgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRSaF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydFJoX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnRSaC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0UmgucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRSaCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0UmgiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFFzZW4uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRRc2VuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRRc2VuLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk4OS1wcmVzZW50LCBTZW5zaWJsZSBIZWF0IEZsdXgiLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgU2Vuc2libGUgSGVhdCBGbHV4IGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFTXzEzOCAoU2Vuc2libGUgSGVhdCBGbHV4LCBXIG0tMilcblFRU181MTM4IChTZW5zaWJsZSBIZWF0IEZsdXggUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0UXNlbl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydFFzZW5faXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydFFzZW4vaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydFFzZW4ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRRc2VuJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRRc2VuIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRUYXUuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRUYXUiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFRhdS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5ODktcHJlc2VudCwgV2luZCBTdHJlc3MiLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgV2luZCBTdHJlc3MgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBRdWFydGVybHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIG1vbnRobHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSAzIG1vbnRoIHBlcmlvZC4gIEEgbWluaW11bSBvZiAyIG1vbnRobHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgcXVhcnRlcmx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuVFhfNDQyIChab25hbCBXaW5kIFN0cmVzcywgTi9tMilcblRZXzQ0MyAoTWVyaWRpb25hbCBXaW5kIFN0cmVzcywgTi9tMilcblRBVV80NDAgKFdpbmQgU3RyZXNzLCBOL20yKVxuVERfNDQ1IChXaW5kIFN0cmVzcyBEaXJlY3Rpb24sIGRlZ3JlZXNfdHJ1ZSlcblFUQVVfNTQ0MCAoV2luZCBTdHJlc3MgUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0VGF1X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0VGF1X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnRUYXUvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydFRhdS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydFRhdSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0VGF1Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRTd25ldC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFN3bmV0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRTd25ldC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5OTEtcHJlc2VudCwgTmV0IFNob3J0d2F2ZSBSYWRpYXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgTmV0IFNob3J0d2F2ZSBSYWRpYXRpb24gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBRdWFydGVybHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIG1vbnRobHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSAzIG1vbnRoIHBlcmlvZC4gIEEgbWluaW11bSBvZiAyIG1vbnRobHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgcXVhcnRlcmx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuU1dOXzE0OTUgKE5ldCBTaG9ydHdhdmUgUmFkaWF0aW9uLCBXL00qKjIpXG5RU1dfNTQ5NSAoU2hvcnR3YXZlIFJhZGlhdGlvbiBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRTd25ldF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydFN3bmV0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnRTd25ldC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0U3duZXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRTd25ldCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0U3duZXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFNzcy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFNzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0U3NzLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk5Mi1wcmVzZW50LCBTZWEgU3VyZmFjZSBTYWxpbml0eSIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBTZWEgU3VyZmFjZSBTYWxpbml0eSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5TXzQxIChTZWEgV2F0ZXIgUHJhY3RpY2FsIFNhbGluaXR5LCBQU1UpXG5RU181MDQxIChTYWxpbml0eSBRdWFsaXR5KVxuU1NfNjA0MSAoU2FsaW5pdHkgU291cmNlKVxuU0lDXzcwNDEgKFNhbGluaXR5IEluc3RydW1lbnQgQ29kZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0U3NzX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0U3NzX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnRTc3MvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydFNzcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydFNzcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0U3NzIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRTc2Quc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRTc2QiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFNzZC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5OTItcHJlc2VudCwgU2lnbWEtVGhldGEiLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgU2lnbWEtVGhldGEgKFBvdGVudGlhbCBEZW5zaXR5IEFub21hbHkpIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNUSF83MSAoU2lnbWEtVGhldGEsIGtnIG0tMylcblFTVF81MDcxIChTaWdtYS1UaGV0YSBRdWFsaXR5KVxuU1NUXzYwNzEgKFNpZ21hLVRoZXRhIFNvdXJjZSlcbkRJQ183MDcxIChTaWdtYS1UaGV0YSBJbnN0cnVtZW50IENvZGUpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb1FydFNzZF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydFNzZF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvUXJ0U3NkL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9RcnRTc2QucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRTc2Qmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb1FydFNzZCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0RW1wLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0RW1wIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRFbXAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgUXVhcnRlcmx5LCAxOTk3LXByZXNlbnQsIEV2YXBvcmF0aW9uIE1pbnVzIFByZWNpcGl0YXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgRXZhcG9yYXRpb24gTWludXMgUHJlY2lwaXRhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5FTVBfMjUxIChFdmFwb3JhdGlvbiBNaW51cyBQcmVjaXBpdGF0aW9uLCBtbS9ocilcblFFTVBfNTI1MSAoRXZhcG9yYXRpb24gTWludXMgUHJlY2lwaXRhdGlvbiBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRFbXBfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9RcnRFbXBfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydEVtcC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0RW1wLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvUXJ0RW1wJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRFbXAiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFJmLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0UmYiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFJmLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk5Ny1wcmVzZW50LCBIZWF0IEZsdXggRHVlIFRvIFJhaW4iLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgSGVhdCBGbHV4IER1ZSBUbyBSYWluIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFSXzEzOSAoSGVhdCBGbHV4IER1ZSBUbyBSYWluLCBXIG0tMilcblFRUl81MTM5IChIZWF0IEZsdXggRHVlIFRvIFJhaW4gUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0UmZfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9RcnRSZl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvUXJ0UmYvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydFJmLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvUXJ0UmYmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb1FydFJmIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRSYWluLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0UmFpbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0UmFpbi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5OTctcHJlc2VudCwgUHJlY2lwaXRhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBQcmVjaXBpdGF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblJOXzQ4NSAoUHJlY2lwaXRhdGlvbiwgTU0vSFIpXG5RUk5fNTQ4NSAoUHJlY2lwaXRhdGlvbiBRdWFsaXR5KVxuU1JOXzY0ODUgKFByZWNpcGl0YXRpb24gU291cmNlKVxuUk5TXzQ4NiAoUHJlY2lwaXRhdGlvbiBTdGFuZGFyZCBEZXZpYXRpb24sIE1NL0hSKVxuUk5QXzQ4NyAoUGVyY2VudCBUaW1lIFJhaW5pbmcsIHBlcmNlbnQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb1FydFJhaW5fZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9RcnRSYWluX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnRSYWluL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9RcnRSYWluLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvUXJ0UmFpbiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0UmFpbiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0QnAuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRCcCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0QnAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgUXVhcnRlcmx5LCAxOTk4LXByZXNlbnQsIEJhcm9tZXRyaWMgKEFpcikgUHJlc3N1cmUiLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgQmFyb21ldHJpYyAoQWlyKSBQcmVzc3VyZSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5CUF85MTUgKEJhcm9tZXRyaWMgKEFpcikgUHJlc3N1cmUsIGhQYSlcblFCUF81OTE1IChCYXJvbWV0cmljIChBaXIpIFByZXNzdXJlIFF1YWxpdHkpXG5TQlBfNjkxNSAoQmFyb21ldHJpYyAoQWlyKSBQcmVzc3VyZSBTb3VyY2UpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb1FydEJwX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0QnBfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydEJwL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9RcnRCcC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydEJwJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRCcCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0QmYuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRCZiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0QmYuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgUXVhcnRlcmx5LCAyMDAwLXByZXNlbnQsIEJ1b3lhbmN5IEZsdXgiLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgQnVveWFuY3kgRmx1eCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5CRl8xOTEgKEJ1b3lhbmN5IEZsdXgsIDEwKio2IGtnIG0tMiBzLTEpXG5RQkZfNTE5MSAoQnVveWFuY3kgRmx1eCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRCZl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydEJmX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnRCZi9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0QmYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRCZiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0QmYiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydEx3LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0THciLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydEx3LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMjAwMC1wcmVzZW50LCBMb25nd2F2ZSBSYWRpYXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgSW5jb21pbmcgTG9uZ3dhdmUgUmFkaWF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFsXzEzNiAoSW5jb21pbmcgTG9uZ3dhdmUgUmFkaWF0aW9uLCBXIG0tMilcblFMV181MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNMV182MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRMd19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydEx3X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnRMdy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0THcucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRMdyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0THciXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydEx3bmV0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0THduZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydEx3bmV0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMjAwMC1wcmVzZW50LCBOZXQgTG9uZ3dhdmUgUmFkaWF0aW9uIiwgIlRoaXMgZGF0YXNldCBoYXMgcXVhcnRlcmx5IE5ldCBMb25nd2F2ZSBSYWRpYXRpb24gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBRdWFydGVybHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIG1vbnRobHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSAzIG1vbnRoIHBlcmlvZC4gIEEgbWluaW11bSBvZiAyIG1vbnRobHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgcXVhcnRlcmx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuTFdOXzExMzYgKE5ldCBMb25nd2F2ZSBSYWRpYXRpb24sIFcgbS0yKVxuUUxXXzUxMzYgKExvbmd3YXZlIFJhZGlhdGlvbiBRdWFsaXR5KVxuU0xXXzYxMzYgKExvbmd3YXZlIFJhZGlhdGlvbiBTb3VyY2UpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb1FydEx3bmV0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0THduZXRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydEx3bmV0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9RcnRMd25ldC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydEx3bmV0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRMd25ldCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0UW5ldC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFFuZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFFuZXQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgUXVhcnRlcmx5LCAyMDAwLXByZXNlbnQsIFRvdGFsIEhlYXQgRmx1eCIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBUb3RhbCBIZWF0IEZsdXggZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBRdWFydGVybHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIG1vbnRobHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSAzIG1vbnRoIHBlcmlvZC4gIEEgbWluaW11bSBvZiAyIG1vbnRobHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgcXVhcnRlcmx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUVRfMjEwIChUb3RhbCBIZWF0IEZsdXgsIFcvTSoqMilcblFRMF81MjEwIChUb3RhbCBIZWF0IEZsdXggUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0UW5ldF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydFFuZXRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydFFuZXQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydFFuZXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRRbmV0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRRbmV0Il0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTIxNmhyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJMjE2aHIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVXB3ZWxsaW5nIEluZGV4LCAyMU4gMTA3VywgNi1ob3VybHkiLCAiVXB3ZWxsaW5nIGluZGV4IGNvbXB1dGVkIGZyb20gMS1kZWdyZWUgRk5NT0Mgc2VhIGxldmVsIHByZXNzdXJlIGZvciAxNSBsb2NhdGlvbnMgb2ZmIHRoZSBOb3J0aCBBbWVyaWNhbiBXZXN0IENvYXN0IGF0IGVhY2ggMyBkZWdyZWVzIG9mIGxhdGl0dWRlIGZyb20gMjFOIHRvIDYwTi4gVGhlIGNvYXN0YWwgVXB3ZWxsaW5nIEluZGV4IGlzIGFuIGluZGV4IG9mIHRoZSBzdHJlbmd0aCBvZiB0aGUgd2luZCBmb3JjaW5nIG9uIHRoZSBvY2VhbiB3aGljaCBoYXMgYmVlbiB1c2VkIGluIG1hbnkgc3R1ZGllcyBvZiB0aGUgZWZmZWN0cyBvZiBvY2VhbiB2YXJpYWJpbGl0eSBvbiB0aGUgcmVwcm9kdWN0aXZlIGFuZCByZWNydWl0bWVudCBzdWNjZXNzIG9mIG1hbnkgZmlzaCBhbmQgaW52ZXJ0ZWJyYXRlIHNwZWNpZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChyZWZlcmVuY2UgdGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnVwd2VsbGluZ19pbmRleFxuc3RhdGlvbl9pZFxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRVSTIxNmhyX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRVSTIxNmhyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZFVJMjE2aHIvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0xBUy9kb2NzL3dpbmRfZnJvbV9wcmVzc3VyZS5uYy5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZFVJMjE2aHIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZFVJMjE2aHImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQS9TV0ZTQyBFbnZpcm9ubWVudGFsIFJlc2VhcmNoIERpdmlzaW9uIiwgImVyZFVJMjE2aHIiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJMjQ2aHIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUkyNDZoci5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJVcHdlbGxpbmcgSW5kZXgsIDI0TiAxMTNXLCA2LWhvdXJseSIsICJVcHdlbGxpbmcgaW5kZXggY29tcHV0ZWQgZnJvbSAxLWRlZ3JlZSBGTk1PQyBzZWEgbGV2ZWwgcHJlc3N1cmUgZm9yIDE1IGxvY2F0aW9ucyBvZmYgdGhlIE5vcnRoIEFtZXJpY2FuIFdlc3QgQ29hc3QgYXQgZWFjaCAzIGRlZ3JlZXMgb2YgbGF0aXR1ZGUgZnJvbSAyMU4gdG8gNjBOLiBUaGUgY29hc3RhbCBVcHdlbGxpbmcgSW5kZXggaXMgYW4gaW5kZXggb2YgdGhlIHN0cmVuZ3RoIG9mIHRoZSB3aW5kIGZvcmNpbmcgb24gdGhlIG9jZWFuIHdoaWNoIGhhcyBiZWVuIHVzZWQgaW4gbWFueSBzdHVkaWVzIG9mIHRoZSBlZmZlY3RzIG9mIG9jZWFuIHZhcmlhYmlsaXR5IG9uIHRoZSByZXByb2R1Y3RpdmUgYW5kIHJlY3J1aXRtZW50IHN1Y2Nlc3Mgb2YgbWFueSBmaXNoIGFuZCBpbnZlcnRlYnJhdGUgc3BlY2llcy5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHJlZmVyZW5jZSB0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxudXB3ZWxsaW5nX2luZGV4XG5zdGF0aW9uX2lkXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZFVJMjQ2aHJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZFVJMjQ2aHJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkVUkyNDZoci9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTEFTL2RvY3Mvd2luZF9mcm9tX3ByZXNzdXJlLm5jLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkVUkyNDZoci5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkVUkyNDZociZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBL1NXRlNDIEVudmlyb25tZW50YWwgUmVzZWFyY2ggRGl2aXNpb24iLCAiZXJkVUkyNDZociJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUkyNzZociIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTI3NmhyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlVwd2VsbGluZyBJbmRleCwgMjdOIDExNlcsIDYtaG91cmx5IiwgIlVwd2VsbGluZyBpbmRleCBjb21wdXRlZCBmcm9tIDEtZGVncmVlIEZOTU9DIHNlYSBsZXZlbCBwcmVzc3VyZSBmb3IgMTUgbG9jYXRpb25zIG9mZiB0aGUgTm9ydGggQW1lcmljYW4gV2VzdCBDb2FzdCBhdCBlYWNoIDMgZGVncmVlcyBvZiBsYXRpdHVkZSBmcm9tIDIxTiB0byA2ME4uIFRoZSBjb2FzdGFsIFVwd2VsbGluZyBJbmRleCBpcyBhbiBpbmRleCBvZiB0aGUgc3RyZW5ndGggb2YgdGhlIHdpbmQgZm9yY2luZyBvbiB0aGUgb2NlYW4gd2hpY2ggaGFzIGJlZW4gdXNlZCBpbiBtYW55IHN0dWRpZXMgb2YgdGhlIGVmZmVjdHMgb2Ygb2NlYW4gdmFyaWFiaWxpdHkgb24gdGhlIHJlcHJvZHVjdGl2ZSBhbmQgcmVjcnVpdG1lbnQgc3VjY2VzcyBvZiBtYW55IGZpc2ggYW5kIGludmVydGVicmF0ZSBzcGVjaWVzLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAocmVmZXJlbmNlIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG51cHdlbGxpbmdfaW5kZXhcbnN0YXRpb25faWRcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkVUkyNzZocl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkVUkyNzZocl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRVSTI3NmhyL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9MQVMvZG9jcy93aW5kX2Zyb21fcHJlc3N1cmUubmMuaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRVSTI3NmhyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRVSTI3NmhyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEvU1dGU0MgRW52aXJvbm1lbnRhbCBSZXNlYXJjaCBEaXZpc2lvbiIsICJlcmRVSTI3NmhyIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTMwNmhyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJMzA2aHIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVXB3ZWxsaW5nIEluZGV4LCAzME4gMTE5VywgNi1ob3VybHkiLCAiVXB3ZWxsaW5nIGluZGV4IGNvbXB1dGVkIGZyb20gMS1kZWdyZWUgRk5NT0Mgc2VhIGxldmVsIHByZXNzdXJlIGZvciAxNSBsb2NhdGlvbnMgb2ZmIHRoZSBOb3J0aCBBbWVyaWNhbiBXZXN0IENvYXN0IGF0IGVhY2ggMyBkZWdyZWVzIG9mIGxhdGl0dWRlIGZyb20gMjFOIHRvIDYwTi4gVGhlIGNvYXN0YWwgVXB3ZWxsaW5nIEluZGV4IGlzIGFuIGluZGV4IG9mIHRoZSBzdHJlbmd0aCBvZiB0aGUgd2luZCBmb3JjaW5nIG9uIHRoZSBvY2VhbiB3aGljaCBoYXMgYmVlbiB1c2VkIGluIG1hbnkgc3R1ZGllcyBvZiB0aGUgZWZmZWN0cyBvZiBvY2VhbiB2YXJpYWJpbGl0eSBvbiB0aGUgcmVwcm9kdWN0aXZlIGFuZCByZWNydWl0bWVudCBzdWNjZXNzIG9mIG1hbnkgZmlzaCBhbmQgaW52ZXJ0ZWJyYXRlIHNwZWNpZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChyZWZlcmVuY2UgdGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnVwd2VsbGluZ19pbmRleFxuc3RhdGlvbl9pZFxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRVSTMwNmhyX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRVSTMwNmhyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZFVJMzA2aHIvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0xBUy9kb2NzL3dpbmRfZnJvbV9wcmVzc3VyZS5uYy5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZFVJMzA2aHIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZFVJMzA2aHImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQS9TV0ZTQyBFbnZpcm9ubWVudGFsIFJlc2VhcmNoIERpdmlzaW9uIiwgImVyZFVJMzA2aHIiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJMzM2aHIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUkzMzZoci5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJVcHdlbGxpbmcgSW5kZXgsIDMzTiAxMTlXLCA2LWhvdXJseSIsICJVcHdlbGxpbmcgaW5kZXggY29tcHV0ZWQgZnJvbSAxLWRlZ3JlZSBGTk1PQyBzZWEgbGV2ZWwgcHJlc3N1cmUgZm9yIDE1IGxvY2F0aW9ucyBvZmYgdGhlIE5vcnRoIEFtZXJpY2FuIFdlc3QgQ29hc3QgYXQgZWFjaCAzIGRlZ3JlZXMgb2YgbGF0aXR1ZGUgZnJvbSAyMU4gdG8gNjBOLiBUaGUgY29hc3RhbCBVcHdlbGxpbmcgSW5kZXggaXMgYW4gaW5kZXggb2YgdGhlIHN0cmVuZ3RoIG9mIHRoZSB3aW5kIGZvcmNpbmcgb24gdGhlIG9jZWFuIHdoaWNoIGhhcyBiZWVuIHVzZWQgaW4gbWFueSBzdHVkaWVzIG9mIHRoZSBlZmZlY3RzIG9mIG9jZWFuIHZhcmlhYmlsaXR5IG9uIHRoZSByZXByb2R1Y3RpdmUgYW5kIHJlY3J1aXRtZW50IHN1Y2Nlc3Mgb2YgbWFueSBmaXNoIGFuZCBpbnZlcnRlYnJhdGUgc3BlY2llcy5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHJlZmVyZW5jZSB0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxudXB3ZWxsaW5nX2luZGV4XG5zdGF0aW9uX2lkXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZFVJMzM2aHJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZFVJMzM2aHJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkVUkzMzZoci9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTEFTL2RvY3Mvd2luZF9mcm9tX3ByZXNzdXJlLm5jLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkVUkzMzZoci5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkVUkzMzZociZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBL1NXRlNDIEVudmlyb25tZW50YWwgUmVzZWFyY2ggRGl2aXNpb24iLCAiZXJkVUkzMzZociJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUkzNjZociIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTM2NmhyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlVwd2VsbGluZyBJbmRleCwgMzZOIDEyMlcsIDYtaG91cmx5IiwgIlVwd2VsbGluZyBpbmRleCBjb21wdXRlZCBmcm9tIDEtZGVncmVlIEZOTU9DIHNlYSBsZXZlbCBwcmVzc3VyZSBmb3IgMTUgbG9jYXRpb25zIG9mZiB0aGUgTm9ydGggQW1lcmljYW4gV2VzdCBDb2FzdCBhdCBlYWNoIDMgZGVncmVlcyBvZiBsYXRpdHVkZSBmcm9tIDIxTiB0byA2ME4uIFRoZSBjb2FzdGFsIFVwd2VsbGluZyBJbmRleCBpcyBhbiBpbmRleCBvZiB0aGUgc3RyZW5ndGggb2YgdGhlIHdpbmQgZm9yY2luZyBvbiB0aGUgb2NlYW4gd2hpY2ggaGFzIGJlZW4gdXNlZCBpbiBtYW55IHN0dWRpZXMgb2YgdGhlIGVmZmVjdHMgb2Ygb2NlYW4gdmFyaWFiaWxpdHkgb24gdGhlIHJlcHJvZHVjdGl2ZSBhbmQgcmVjcnVpdG1lbnQgc3VjY2VzcyBvZiBtYW55IGZpc2ggYW5kIGludmVydGVicmF0ZSBzcGVjaWVzLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAocmVmZXJlbmNlIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG51cHdlbGxpbmdfaW5kZXhcbnN0YXRpb25faWRcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkVUkzNjZocl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkVUkzNjZocl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRVSTM2NmhyL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9MQVMvZG9jcy93aW5kX2Zyb21fcHJlc3N1cmUubmMuaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRVSTM2NmhyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRVSTM2NmhyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEvU1dGU0MgRW52aXJvbm1lbnRhbCBSZXNlYXJjaCBEaXZpc2lvbiIsICJlcmRVSTM2NmhyIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTM5NmhyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJMzk2aHIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVXB3ZWxsaW5nIEluZGV4LCAzOU4gMTI1VywgNi1ob3VybHkiLCAiVXB3ZWxsaW5nIGluZGV4IGNvbXB1dGVkIGZyb20gMS1kZWdyZWUgRk5NT0Mgc2VhIGxldmVsIHByZXNzdXJlIGZvciAxNSBsb2NhdGlvbnMgb2ZmIHRoZSBOb3J0aCBBbWVyaWNhbiBXZXN0IENvYXN0IGF0IGVhY2ggMyBkZWdyZWVzIG9mIGxhdGl0dWRlIGZyb20gMjFOIHRvIDYwTi4gVGhlIGNvYXN0YWwgVXB3ZWxsaW5nIEluZGV4IGlzIGFuIGluZGV4IG9mIHRoZSBzdHJlbmd0aCBvZiB0aGUgd2luZCBmb3JjaW5nIG9uIHRoZSBvY2VhbiB3aGljaCBoYXMgYmVlbiB1c2VkIGluIG1hbnkgc3R1ZGllcyBvZiB0aGUgZWZmZWN0cyBvZiBvY2VhbiB2YXJpYWJpbGl0eSBvbiB0aGUgcmVwcm9kdWN0aXZlIGFuZCByZWNydWl0bWVudCBzdWNjZXNzIG9mIG1hbnkgZmlzaCBhbmQgaW52ZXJ0ZWJyYXRlIHNwZWNpZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChyZWZlcmVuY2UgdGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnVwd2VsbGluZ19pbmRleFxuc3RhdGlvbl9pZFxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRVSTM5NmhyX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRVSTM5NmhyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZFVJMzk2aHIvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0xBUy9kb2NzL3dpbmRfZnJvbV9wcmVzc3VyZS5uYy5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZFVJMzk2aHIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZFVJMzk2aHImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQS9TV0ZTQyBFbnZpcm9ubWVudGFsIFJlc2VhcmNoIERpdmlzaW9uIiwgImVyZFVJMzk2aHIiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJNDI2aHIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUk0MjZoci5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJVcHdlbGxpbmcgSW5kZXgsIDQyTiAxMjVXLCA2LWhvdXJseSIsICJVcHdlbGxpbmcgaW5kZXggY29tcHV0ZWQgZnJvbSAxLWRlZ3JlZSBGTk1PQyBzZWEgbGV2ZWwgcHJlc3N1cmUgZm9yIDE1IGxvY2F0aW9ucyBvZmYgdGhlIE5vcnRoIEFtZXJpY2FuIFdlc3QgQ29hc3QgYXQgZWFjaCAzIGRlZ3JlZXMgb2YgbGF0aXR1ZGUgZnJvbSAyMU4gdG8gNjBOLiBUaGUgY29hc3RhbCBVcHdlbGxpbmcgSW5kZXggaXMgYW4gaW5kZXggb2YgdGhlIHN0cmVuZ3RoIG9mIHRoZSB3aW5kIGZvcmNpbmcgb24gdGhlIG9jZWFuIHdoaWNoIGhhcyBiZWVuIHVzZWQgaW4gbWFueSBzdHVkaWVzIG9mIHRoZSBlZmZlY3RzIG9mIG9jZWFuIHZhcmlhYmlsaXR5IG9uIHRoZSByZXByb2R1Y3RpdmUgYW5kIHJlY3J1aXRtZW50IHN1Y2Nlc3Mgb2YgbWFueSBmaXNoIGFuZCBpbnZlcnRlYnJhdGUgc3BlY2llcy5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHJlZmVyZW5jZSB0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxudXB3ZWxsaW5nX2luZGV4XG5zdGF0aW9uX2lkXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZFVJNDI2aHJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZFVJNDI2aHJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkVUk0MjZoci9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTEFTL2RvY3Mvd2luZF9mcm9tX3ByZXNzdXJlLm5jLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkVUk0MjZoci5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkVUk0MjZociZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBL1NXRlNDIEVudmlyb25tZW50YWwgUmVzZWFyY2ggRGl2aXNpb24iLCAiZXJkVUk0MjZociJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUk0NTZociIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTQ1NmhyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlVwd2VsbGluZyBJbmRleCwgNDVOIDEyNVcsIDYtaG91cmx5IiwgIlVwd2VsbGluZyBpbmRleCBjb21wdXRlZCBmcm9tIDEtZGVncmVlIEZOTU9DIHNlYSBsZXZlbCBwcmVzc3VyZSBmb3IgMTUgbG9jYXRpb25zIG9mZiB0aGUgTm9ydGggQW1lcmljYW4gV2VzdCBDb2FzdCBhdCBlYWNoIDMgZGVncmVlcyBvZiBsYXRpdHVkZSBmcm9tIDIxTiB0byA2ME4uIFRoZSBjb2FzdGFsIFVwd2VsbGluZyBJbmRleCBpcyBhbiBpbmRleCBvZiB0aGUgc3RyZW5ndGggb2YgdGhlIHdpbmQgZm9yY2luZyBvbiB0aGUgb2NlYW4gd2hpY2ggaGFzIGJlZW4gdXNlZCBpbiBtYW55IHN0dWRpZXMgb2YgdGhlIGVmZmVjdHMgb2Ygb2NlYW4gdmFyaWFiaWxpdHkgb24gdGhlIHJlcHJvZHVjdGl2ZSBhbmQgcmVjcnVpdG1lbnQgc3VjY2VzcyBvZiBtYW55IGZpc2ggYW5kIGludmVydGVicmF0ZSBzcGVjaWVzLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAocmVmZXJlbmNlIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG51cHdlbGxpbmdfaW5kZXhcbnN0YXRpb25faWRcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkVUk0NTZocl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkVUk0NTZocl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRVSTQ1NmhyL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9MQVMvZG9jcy93aW5kX2Zyb21fcHJlc3N1cmUubmMuaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRVSTQ1NmhyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRVSTQ1NmhyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEvU1dGU0MgRW52aXJvbm1lbnRhbCBSZXNlYXJjaCBEaXZpc2lvbiIsICJlcmRVSTQ1NmhyIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTQ4NmhyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJNDg2aHIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVXB3ZWxsaW5nIEluZGV4LCA0OE4gMTI1VywgNi1ob3VybHkiLCAiVXB3ZWxsaW5nIGluZGV4IGNvbXB1dGVkIGZyb20gMS1kZWdyZWUgRk5NT0Mgc2VhIGxldmVsIHByZXNzdXJlIGZvciAxNSBsb2NhdGlvbnMgb2ZmIHRoZSBOb3J0aCBBbWVyaWNhbiBXZXN0IENvYXN0IGF0IGVhY2ggMyBkZWdyZWVzIG9mIGxhdGl0dWRlIGZyb20gMjFOIHRvIDYwTi4gVGhlIGNvYXN0YWwgVXB3ZWxsaW5nIEluZGV4IGlzIGFuIGluZGV4IG9mIHRoZSBzdHJlbmd0aCBvZiB0aGUgd2luZCBmb3JjaW5nIG9uIHRoZSBvY2VhbiB3aGljaCBoYXMgYmVlbiB1c2VkIGluIG1hbnkgc3R1ZGllcyBvZiB0aGUgZWZmZWN0cyBvZiBvY2VhbiB2YXJpYWJpbGl0eSBvbiB0aGUgcmVwcm9kdWN0aXZlIGFuZCByZWNydWl0bWVudCBzdWNjZXNzIG9mIG1hbnkgZmlzaCBhbmQgaW52ZXJ0ZWJyYXRlIHNwZWNpZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChyZWZlcmVuY2UgdGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnVwd2VsbGluZ19pbmRleFxuc3RhdGlvbl9pZFxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRVSTQ4NmhyX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRVSTQ4NmhyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZFVJNDg2aHIvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0xBUy9kb2NzL3dpbmRfZnJvbV9wcmVzc3VyZS5uYy5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZFVJNDg2aHIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZFVJNDg2aHImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQS9TV0ZTQyBFbnZpcm9ubWVudGFsIFJlc2VhcmNoIERpdmlzaW9uIiwgImVyZFVJNDg2aHIiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJNTE2aHIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUk1MTZoci5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJVcHdlbGxpbmcgSW5kZXgsIDUxTiAxMzFXLCA2LWhvdXJseSIsICJVcHdlbGxpbmcgaW5kZXggY29tcHV0ZWQgZnJvbSAxLWRlZ3JlZSBGTk1PQyBzZWEgbGV2ZWwgcHJlc3N1cmUgZm9yIDE1IGxvY2F0aW9ucyBvZmYgdGhlIE5vcnRoIEFtZXJpY2FuIFdlc3QgQ29hc3QgYXQgZWFjaCAzIGRlZ3JlZXMgb2YgbGF0aXR1ZGUgZnJvbSAyMU4gdG8gNjBOLiBUaGUgY29hc3RhbCBVcHdlbGxpbmcgSW5kZXggaXMgYW4gaW5kZXggb2YgdGhlIHN0cmVuZ3RoIG9mIHRoZSB3aW5kIGZvcmNpbmcgb24gdGhlIG9jZWFuIHdoaWNoIGhhcyBiZWVuIHVzZWQgaW4gbWFueSBzdHVkaWVzIG9mIHRoZSBlZmZlY3RzIG9mIG9jZWFuIHZhcmlhYmlsaXR5IG9uIHRoZSByZXByb2R1Y3RpdmUgYW5kIHJlY3J1aXRtZW50IHN1Y2Nlc3Mgb2YgbWFueSBmaXNoIGFuZCBpbnZlcnRlYnJhdGUgc3BlY2llcy5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHJlZmVyZW5jZSB0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxudXB3ZWxsaW5nX2luZGV4XG5zdGF0aW9uX2lkXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZFVJNTE2aHJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZFVJNTE2aHJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkVUk1MTZoci9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTEFTL2RvY3Mvd2luZF9mcm9tX3ByZXNzdXJlLm5jLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkVUk1MTZoci5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkVUk1MTZociZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBL1NXRlNDIEVudmlyb25tZW50YWwgUmVzZWFyY2ggRGl2aXNpb24iLCAiZXJkVUk1MTZociJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUk1NDZociIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTU0NmhyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlVwd2VsbGluZyBJbmRleCwgNTROIDEzNFcsIDYtaG91cmx5IiwgIlVwd2VsbGluZyBpbmRleCBjb21wdXRlZCBmcm9tIDEtZGVncmVlIEZOTU9DIHNlYSBsZXZlbCBwcmVzc3VyZSBmb3IgMTUgbG9jYXRpb25zIG9mZiB0aGUgTm9ydGggQW1lcmljYW4gV2VzdCBDb2FzdCBhdCBlYWNoIDMgZGVncmVlcyBvZiBsYXRpdHVkZSBmcm9tIDIxTiB0byA2ME4uIFRoZSBjb2FzdGFsIFVwd2VsbGluZyBJbmRleCBpcyBhbiBpbmRleCBvZiB0aGUgc3RyZW5ndGggb2YgdGhlIHdpbmQgZm9yY2luZyBvbiB0aGUgb2NlYW4gd2hpY2ggaGFzIGJlZW4gdXNlZCBpbiBtYW55IHN0dWRpZXMgb2YgdGhlIGVmZmVjdHMgb2Ygb2NlYW4gdmFyaWFiaWxpdHkgb24gdGhlIHJlcHJvZHVjdGl2ZSBhbmQgcmVjcnVpdG1lbnQgc3VjY2VzcyBvZiBtYW55IGZpc2ggYW5kIGludmVydGVicmF0ZSBzcGVjaWVzLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAocmVmZXJlbmNlIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG51cHdlbGxpbmdfaW5kZXhcbnN0YXRpb25faWRcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkVUk1NDZocl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkVUk1NDZocl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRVSTU0NmhyL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9MQVMvZG9jcy93aW5kX2Zyb21fcHJlc3N1cmUubmMuaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRVSTU0NmhyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRVSTU0NmhyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEvU1dGU0MgRW52aXJvbm1lbnRhbCBSZXNlYXJjaCBEaXZpc2lvbiIsICJlcmRVSTU0NmhyIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTU3NmhyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJNTc2aHIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVXB3ZWxsaW5nIEluZGV4LCA1N04gMTM3VywgNi1ob3VybHkiLCAiVXB3ZWxsaW5nIGluZGV4IGNvbXB1dGVkIGZyb20gMS1kZWdyZWUgRk5NT0Mgc2VhIGxldmVsIHByZXNzdXJlIGZvciAxNSBsb2NhdGlvbnMgb2ZmIHRoZSBOb3J0aCBBbWVyaWNhbiBXZXN0IENvYXN0IGF0IGVhY2ggMyBkZWdyZWVzIG9mIGxhdGl0dWRlIGZyb20gMjFOIHRvIDYwTi4gVGhlIGNvYXN0YWwgVXB3ZWxsaW5nIEluZGV4IGlzIGFuIGluZGV4IG9mIHRoZSBzdHJlbmd0aCBvZiB0aGUgd2luZCBmb3JjaW5nIG9uIHRoZSBvY2VhbiB3aGljaCBoYXMgYmVlbiB1c2VkIGluIG1hbnkgc3R1ZGllcyBvZiB0aGUgZWZmZWN0cyBvZiBvY2VhbiB2YXJpYWJpbGl0eSBvbiB0aGUgcmVwcm9kdWN0aXZlIGFuZCByZWNydWl0bWVudCBzdWNjZXNzIG9mIG1hbnkgZmlzaCBhbmQgaW52ZXJ0ZWJyYXRlIHNwZWNpZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChyZWZlcmVuY2UgdGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnVwd2VsbGluZ19pbmRleFxuc3RhdGlvbl9pZFxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRVSTU3NmhyX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRVSTU3NmhyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZFVJNTc2aHIvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0xBUy9kb2NzL3dpbmRfZnJvbV9wcmVzc3VyZS5uYy5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZFVJNTc2aHIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZFVJNTc2aHImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQS9TV0ZTQyBFbnZpcm9ubWVudGFsIFJlc2VhcmNoIERpdmlzaW9uIiwgImVyZFVJNTc2aHIiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJNjA2aHIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUk2MDZoci5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJVcHdlbGxpbmcgSW5kZXgsIDYwTiAxNDZXLCA2LWhvdXJseSIsICJVcHdlbGxpbmcgaW5kZXggY29tcHV0ZWQgZnJvbSAxLWRlZ3JlZSBGTk1PQyBzZWEgbGV2ZWwgcHJlc3N1cmUgZm9yIDE1IGxvY2F0aW9ucyBvZmYgdGhlIE5vcnRoIEFtZXJpY2FuIFdlc3QgQ29hc3QgYXQgZWFjaCAzIGRlZ3JlZXMgb2YgbGF0aXR1ZGUgZnJvbSAyMU4gdG8gNjBOLiBUaGUgY29hc3RhbCBVcHdlbGxpbmcgSW5kZXggaXMgYW4gaW5kZXggb2YgdGhlIHN0cmVuZ3RoIG9mIHRoZSB3aW5kIGZvcmNpbmcgb24gdGhlIG9jZWFuIHdoaWNoIGhhcyBiZWVuIHVzZWQgaW4gbWFueSBzdHVkaWVzIG9mIHRoZSBlZmZlY3RzIG9mIG9jZWFuIHZhcmlhYmlsaXR5IG9uIHRoZSByZXByb2R1Y3RpdmUgYW5kIHJlY3J1aXRtZW50IHN1Y2Nlc3Mgb2YgbWFueSBmaXNoIGFuZCBpbnZlcnRlYnJhdGUgc3BlY2llcy5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHJlZmVyZW5jZSB0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxudXB3ZWxsaW5nX2luZGV4XG5zdGF0aW9uX2lkXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZFVJNjA2aHJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZFVJNjA2aHJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkVUk2MDZoci9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTEFTL2RvY3Mvd2luZF9mcm9tX3ByZXNzdXJlLm5jLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkVUk2MDZoci5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkVUk2MDZociZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBL1NXRlNDIEVudmlyb25tZW50YWwgUmVzZWFyY2ggRGl2aXNpb24iLCAiZXJkVUk2MDZociJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUk2MTZociIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTYxNmhyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlVwd2VsbGluZyBJbmRleCwgNjBOIDE0OVcsIDYtaG91cmx5IiwgIlVwd2VsbGluZyBpbmRleCBjb21wdXRlZCBmcm9tIDEtZGVncmVlIEZOTU9DIHNlYSBsZXZlbCBwcmVzc3VyZSBmb3IgMTUgbG9jYXRpb25zIG9mZiB0aGUgTm9ydGggQW1lcmljYW4gV2VzdCBDb2FzdCBhdCBlYWNoIDMgZGVncmVlcyBvZiBsYXRpdHVkZSBmcm9tIDIxTiB0byA2ME4uIFRoZSBjb2FzdGFsIFVwd2VsbGluZyBJbmRleCBpcyBhbiBpbmRleCBvZiB0aGUgc3RyZW5ndGggb2YgdGhlIHdpbmQgZm9yY2luZyBvbiB0aGUgb2NlYW4gd2hpY2ggaGFzIGJlZW4gdXNlZCBpbiBtYW55IHN0dWRpZXMgb2YgdGhlIGVmZmVjdHMgb2Ygb2NlYW4gdmFyaWFiaWxpdHkgb24gdGhlIHJlcHJvZHVjdGl2ZSBhbmQgcmVjcnVpdG1lbnQgc3VjY2VzcyBvZiBtYW55IGZpc2ggYW5kIGludmVydGVicmF0ZSBzcGVjaWVzLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAocmVmZXJlbmNlIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG51cHdlbGxpbmdfaW5kZXhcbnN0YXRpb25faWRcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkVUk2MTZocl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkVUk2MTZocl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRVSTYxNmhyL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9MQVMvZG9jcy93aW5kX2Zyb21fcHJlc3N1cmUubmMuaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRVSTYxNmhyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRVSTYxNmhyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEvU1dGU0MgRW52aXJvbm1lbnRhbCBSZXNlYXJjaCBEaXZpc2lvbiIsICJlcmRVSTYxNmhyIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25tc3BXY29zQWRjcEQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25tc3BXY29zQWRjcEQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm1zcFdjb3NBZGNwRC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJXZXN0IENvYXN0IE9ic2VydmluZyBTeXN0ZW0gKFdDT1MpIEFEQ1AgQ3VycmVudHMgRGF0YSwgMjAwNC0yMDA4IiwgIlRoZSBXZXN0IENvYXN0IE9ic2VydmluZyBTeXN0ZW0gKFdDT1MpIHByb2plY3QgcHJvdmlkZXMgYWNjZXNzIHRvIHRlbXBlcmF0dXJlIGFuZCBjdXJyZW50cyBkYXRhIGNvbGxlY3RlZCBhdCBmb3VyIG9mIHRoZSBmaXZlIE5hdGlvbmFsIE1hcmluZSBTYW5jdHVhcnkgc2l0ZXMsIGluY2x1ZGluZyBPbHltcGljIENvYXN0LCBHdWxmIG9mIHRoZSBGYXJhbGxvbmVzLCBNb250ZXJleSBCYXksIGFuZCBDaGFubmVsIElzbGFuZHMuIEEgc2VtaS1hdXRvbWF0ZWQgZW5kLXRvLWVuZCBkYXRhIG1hbmFnZW1lbnQgc3lzdGVtIHRyYW5zcG9ydHMgYW5kIHRyYW5zZm9ybXMgdGhlIGRhdGEgZnJvbSBzb3VyY2UgdG8gYXJjaGl2ZSwgbWFraW5nIHRoZSBkYXRhIGFjZXNzaWJsZSBmb3IgZGlzY292ZXJ5LCBhY2Nlc3MgYW5kIGFuYWx5c2lzIGZyb20gbXVsdGlwbGUgSW50ZXJuZXQgcG9pbnRzIG9mIGVudHJ5LlxuXG5UaGUgc3RhdGlvbnMgKGFuZCB0aGVpciBjb2RlIG5hbWVzKSBhcmUgU2FuIE1pZ3VlbCBOb3J0aCAoQkFZKSwgU2FudGEgUm9zYSBOb3J0aCAoQkVBKSwgQ3V5bGVyIEhhcmJvciAoQ1VZKSwgUGVsaWNhbi9Qcmlzb25lcnMgQXJlYSAoUEVMKSwgU2FuIE1pZ3VlbCBTb3V0aCAoU01TKSwgU2FudGEgUm9zYSBTb3V0aCAoU1JTKSwgVmFsbGV5IEFuY2ggKFZBTCkuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzUHJvZmlsZVxuVkFSSUFCTEVTOlxuc3RhdGlvblxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkRhdGFRdWFsaXR5IChEYXRhIFF1YWxpdHksIHBlcmNlbnQpXG5EYXRhUXVhbGl0eV9mbGFnIChEYXRhIFF1YWxpdHkgRmxhZylcbkVhc3R3YXJkIChFYXN0d2FyZCBDdXJyZW50LCBtIHMtMSlcbkVhc3R3YXJkX2ZsYWdcbkVycm9yVmVsb2NpdHkgKEVycm9yIFZlbG9jaXR5LCBtIHMtMSlcbkVycm9yVmVsb2NpdHlfZmxhZyAoRXJyb3IgVmVsb2NpdHkgRmxhZylcbkludGVuc2l0eSAoY291bnQpXG5JbnRlbnNpdHlfZmxhZ1xuTm9ydGh3YXJkIChOb3J0aHdhcmQgQ3VycmVudCwgbSBzLTEpXG5Ob3J0aHdhcmRfZmxhZ1xuVXB3YXJkcyAoVXB3YXJkIEN1cnJlbnQsIG0gcy0xKVxuVXB3YXJkc19mbGFnXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm1zcFdjb3NBZGNwRF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm1zcFdjb3NBZGNwRF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ubXNwV2Nvc0FkY3BEL2luZGV4Lmpzb24iLCAiZnRwOi8vZnRwLm5vZGMubm9hYS5nb3Yvbm9kYy9hcmNoaXZlL2FyYzAwMDYvMDAwMjAzOS8xLjEvYWJvdXQvV0NPU19wcm9qZWN0X2RvY3VtZW50X3BoYXNlSV8yMDA2MDMxNy5wZGYiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm1zcFdjb3NBZGNwRC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bm1zcFdjb3NBZGNwRCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5NU1AiLCAibm1zcFdjb3NBZGNwRCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ubXNwV2Nvc0FkY3BTLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ubXNwV2Nvc0FkY3BTIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25tc3BXY29zQWRjcFMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiV2VzdCBDb2FzdCBPYnNlcnZpbmcgU3lzdGVtIChXQ09TKSBBRENQIFN0YXRpb24gRGF0YSwgMjAwNC0yMDA4IiwgIlRoZSBXZXN0IENvYXN0IE9ic2VydmluZyBTeXN0ZW0gKFdDT1MpIHByb2plY3QgcHJvdmlkZXMgYWNjZXNzIHRvIHRlbXBlcmF0dXJlIGFuZCBjdXJyZW50cyBkYXRhIGNvbGxlY3RlZCBhdCBmb3VyIG9mIHRoZSBmaXZlIE5hdGlvbmFsIE1hcmluZSBTYW5jdHVhcnkgc2l0ZXMsIGluY2x1ZGluZyBPbHltcGljIENvYXN0LCBHdWxmIG9mIHRoZSBGYXJhbGxvbmVzLCBNb250ZXJleSBCYXksIGFuZCBDaGFubmVsIElzbGFuZHMuIEEgc2VtaS1hdXRvbWF0ZWQgZW5kLXRvLWVuZCBkYXRhIG1hbmFnZW1lbnQgc3lzdGVtIHRyYW5zcG9ydHMgYW5kIHRyYW5zZm9ybXMgdGhlIGRhdGEgZnJvbSBzb3VyY2UgdG8gYXJjaGl2ZSwgbWFraW5nIHRoZSBkYXRhIGFjZXNzaWJsZSBmb3IgZGlzY292ZXJ5LCBhY2Nlc3MgYW5kIGFuYWx5c2lzIGZyb20gbXVsdGlwbGUgSW50ZXJuZXQgcG9pbnRzIG9mIGVudHJ5LlxuXG5UaGUgc3RhdGlvbnMgKGFuZCB0aGVpciBjb2RlIG5hbWVzKSBhcmUgU2FuIE1pZ3VlbCBOb3J0aCAoQkFZKSwgU2FudGEgUm9zYSBOb3J0aCAoQkVBKSwgQ3V5bGVyIEhhcmJvciAoQ1VZKSwgUGVsaWNhbi9Qcmlzb25lcnMgQXJlYSAoUEVMKSwgU2FuIE1pZ3VlbCBTb3V0aCAoU01TKSwgU2FudGEgUm9zYSBTb3V0aCAoU1JTKSwgVmFsbGV5IEFuY2ggKFZBTCkuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzUHJvZmlsZVxuVkFSSUFCTEVTOlxuc3RhdGlvblxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5QcmVzc3VyZSAoU2VhIFdhdGVyIFByZXNzdXJlLCBkYmFyKVxuUHJlc3N1cmVfZmxhZ1xuVGVtcGVyYXR1cmUgKFNlYSBXYXRlciBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5UZW1wZXJhdHVyZV9mbGFnXG5XYXRlckRlcHRoIChXYXRlciBEZXB0aCwgbSlcbldhdGVyRGVwdGhfZmxhZyAoV2F0ZXIgRGVwdGggRmxhZylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ubXNwV2Nvc0FkY3BTX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9ubXNwV2Nvc0FkY3BTX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL25tc3BXY29zQWRjcFMvaW5kZXguanNvbiIsICJmdHA6Ly9mdHAubm9kYy5ub2FhLmdvdi9ub2RjL2FyY2hpdmUvYXJjMDAwNi8wMDAyMDM5LzEuMS9hYm91dC9XQ09TX3Byb2plY3RfZG9jdW1lbnRfcGhhc2VJXzIwMDYwMzE3LnBkZiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9ubXNwV2Nvc0FkY3BTLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ubXNwV2Nvc0FkY3BTJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk1TUCIsICJubXNwV2Nvc0FkY3BTIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25tc3BXY29zVGVtcC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm1zcFdjb3NUZW1wIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25tc3BXY29zVGVtcC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJXZXN0IENvYXN0IE9ic2VydmluZyBTeXN0ZW0gKFdDT1MpIFRlbXBlcmF0dXJlIERhdGEsIDIwMDQtMjAxMSIsICJUaGUgV2VzdCBDb2FzdCBPYnNlcnZpbmcgU3lzdGVtIChXQ09TKSBwcm9qZWN0IHByb3ZpZGVzIGFjY2VzcyB0byB0ZW1wZXJhdHVyZSBhbmQgY3VycmVudHMgZGF0YSBjb2xsZWN0ZWQgYXQgZm91ciBvZiB0aGUgZml2ZSBOYXRpb25hbCBNYXJpbmUgU2FuY3R1YXJ5IHNpdGVzLCBpbmNsdWRpbmcgT2x5bXBpYyBDb2FzdCwgR3VsZiBvZiB0aGUgRmFyYWxsb25lcywgTW9udGVyZXkgQmF5LCBhbmQgQ2hhbm5lbCBJc2xhbmRzLiBBIHNlbWktYXV0b21hdGVkIGVuZC10by1lbmQgZGF0YSBtYW5hZ2VtZW50IHN5c3RlbSB0cmFuc3BvcnRzIGFuZCB0cmFuc2Zvcm1zIHRoZSBkYXRhIGZyb20gc291cmNlIHRvIGFyY2hpdmUsIG1ha2luZyB0aGUgZGF0YSBhY2Vzc2libGUgZm9yIGRpc2NvdmVyeSwgYWNjZXNzIGFuZCBhbmFseXNpcyBmcm9tIG11bHRpcGxlIEludGVybmV0IHBvaW50cyBvZiBlbnRyeS5cblxuVGhlIHN0YXRpb25zIChhbmQgdGhlaXIgY29kZSBuYW1lcykgYXJlIEFubyBOdWV2byAoQU5PMDAxKSwgU2FuIE1pZ3VlbCBOb3J0aCAoQkFZKSwgU2FudGEgUm9zYSBOb3J0aCAoQkVBKSwgQmlnIENyZWVrIChCSUcwMDEpLCBCb2RlZ2EgSGVhZCAoQk9EMDAxKSwgQ2FwZSBBbGF2YSAxNU0gKENBMDE1KSwgQ2FwZSBBbGF2YSA0Mk0gKENBMDQyKSwgQ2FwZSBBbGF2YSA2NU0gKENBMDY1KSwgQ2FwZSBBbGF2YSAxMDBNIChDQTEwMCksIENhbm5lcnkgUm93IChDQU4wMDEpLCBDYXBlIEVsaXphYmV0aCAxNU0gKENFMDE1KSwgQ2FwZSBFbGl6YWJldGggNDJNIChDRTA0MiksIENhcGUgRWxpemFiZXRoIDY1TSAoQ0UwNjUpLCBDYXBlIEVsaXphYmV0aCAxMDBNIChDRTEwMCksIEN1eWxlciBIYXJib3IgKENVWSksIEVzYWxlbiAoRVNBMDAxKSwgUG9pbnQgSm9lIChKT0UwMDEpLCBLYWxhbG9jaCAxNU0gKEtMMDE1KSwgS2FsYWxvY2ggMjdNIChLTDAyNyksIExhIENydXogUm9jayAoTEFDMDAxKSwgTG9wZXogUm9jayAoTE9QMDAxKSwgTWFrYWggQmF5IDE1TSAoTUIwMTUpLCBNYWthaCBCYXkgNDJNIChNQjA0MiksIFBlbGljYW4vUHJpc29uZXJzIEFyZWEgKFBFTCksIFBpZ2VvbiBQb2ludCAoUElHMDAxKSwgUGxhc2tldHQgUm9jayAoUExBMDAxKSwgU291dGhlYXN0IEZhcmFsbG9uIElzbGFuZCAoU0VGMDAxKSwgU2FuIE1pZ3VlbCBTb3V0aCAoU01TKSwgU2FudGEgUm9zYSBTb3V0aCAoU1JTKSwgU3Vuc2V0IFBvaW50IChTVU4wMDEpLCBUZWF3aGl0IEhlYWQgMTVNIChUSDAxNSksIFRlYXdoaXQgSGVhZCAzMU0gKFRIMDMxKSwgVGVhd2hpdCBIZWFkIDQyTSAoVEgwNDIpLCBUZXJyYWNlIFBvaW50IDcgKFRQVDAwNyksIFRlcnJhY2UgUG9pbnQgOCAoVFBUMDA4KSwgVmFsbGV5IEFuY2ggKFZBTCksIFdlc3RvbiBCZWFjaCAoV0VTMDAxKS5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNQcm9maWxlXG5WQVJJQUJMRVM6XG5zdGF0aW9uXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuVGVtcGVyYXR1cmUgKFNlYSBXYXRlciBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5UZW1wZXJhdHVyZV9mbGFnXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm1zcFdjb3NUZW1wX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9ubXNwV2Nvc1RlbXBfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm1zcFdjb3NUZW1wL2luZGV4Lmpzb24iLCAiZnRwOi8vZnRwLm5vZGMubm9hYS5nb3Yvbm9kYy9hcmNoaXZlL2FyYzAwMDYvMDAwMjAzOS8xLjEvYWJvdXQvV0NPU19wcm9qZWN0X2RvY3VtZW50X3BoYXNlSV8yMDA2MDMxNy5wZGYiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm1zcFdjb3NUZW1wLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ubXNwV2Nvc1RlbXAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOTVNQIiwgIm5tc3BXY29zVGVtcCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lYXJ0aEN1YmVLZ3NCb3JlVGVtcFdWLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lYXJ0aEN1YmVLZ3NCb3JlVGVtcFdWIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VhcnRoQ3ViZUtnc0JvcmVUZW1wV1YuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiV2VzdCBWaXJnaW5pYSBCb3JlaG9sZSBUZW1wZXJhdHVyZXMsIEFBU0cgU3RhdGUgR2VvdGhlcm1hbCBEYXRhLCAxOTM2LTIwMTAiLCAiQm9yZWhvbGUgdGVtcGVyYXR1cmUgbWVhc3VyZW1lbnRzIGluIFdlc3QgVmlyZ2luaWFcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5PYnNlcnZhdGlvblVSSSAoT2JzZXJ2YXRpb24gVVJJKVxuV2VsbE5hbWUgKFdlbGwgTmFtZSlcbkFQSU5vXG5IZWFkZXJVUkkgKEhlYWRlciBVUkkpXG5MYWJlbFxuT3BlcmF0b3JcblNwdWREYXRlIChTcHVkIERhdGUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG50aW1lIChFbmRlZCBEcmlsbGluZyBEYXRlLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuV2VsbFR5cGUgKFdlbGwgVHlwZSlcbkZpZWxkXG5Db3VudHlcblN0YXRlXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuRHJpbGxlclRvdGFsRGVwdGggKERyaWxsZXIgVG90YWwgRGVwdGgsIGZ0KVxuRGVwdGhSZWZlcmVuY2VQb2ludCAoRGVwdGggUmVmZXJlbmNlIFBvaW50KVxuV2VsbEJvcmVTaGFwZSAoV2VsbCBCb3JlIFNoYXBlKVxuVHJ1ZVZlcnRpY2FsRGVwdGggKFRydWUgVmVydGljYWwgRGVwdGgsIGZ0KVxuRWxldmF0aW9uR0wgKEVsZXZhdGlvbiBHTCwgZnQpXG5Gb3JtYXRpb25URCAoRm9ybWF0aW9uIFREKVxuTWVhc3VyZWRUZW1wZXJhdHVyZSAoTWVhc3VyZWQgVGVtcGVyYXR1cmUsIGRlZ3JlZV9GKVxuRGVwdGhPZk1lYXN1cmVtZW50IChEZXB0aCBPZiBNZWFzdXJlbWVudCwgZnQpXG5NZWFzdXJlbWVudEZvcm1hdGlvbiAoTWVhc3VyZW1lbnQgRm9ybWF0aW9uKVxuUmVsYXRlZFJlc291cmNlIChSZWxhdGVkIFJlc291cmNlKVxuVGltZVNpbmNlQ2lyY3VsYXRpb24gKFRpbWUgU2luY2UgQ2lyY3VsYXRpb24sID8pXG5PdGhlck5hbWUgKE90aGVyIE5hbWUpXG5MZWFzZU5hbWUgKExlYXNlIE5hbWUpXG5Ob3Rlc1xuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VhcnRoQ3ViZUtnc0JvcmVUZW1wV1ZfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VhcnRoQ3ViZUtnc0JvcmVUZW1wV1ZfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZWFydGhDdWJlS2dzQm9yZVRlbXBXVi9pbmRleC5qc29uIiwgImh0dHA6Ly93d3cud3Zncy53dm5ldC5lZHUvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VhcnRoQ3ViZUtnc0JvcmVUZW1wV1YucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVhcnRoQ3ViZUtnc0JvcmVUZW1wV1Ymc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiV2VzdCBWaXJnaW5pYSBHZW9sb2dpY2FsIGFuZCBFY29ub21pYyBTdXJ2ZXkiLCAiZWFydGhDdWJlS2dzQm9yZVRlbXBXViJdCiAgICBdCiAgfQp9Cg== + recorded_at: 2020-07-15 22:22:40 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.csv?&orderBy%28%22things%22%29 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '400' + message: Bad Request + explanation: Bad request syntax or unsupported method + headers: + status: 'HTTP/1.1 400 ' + date: Wed, 15 Jul 2020 22:22:40 GMT + x-frame-options: SAMEORIGIN + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:22:40 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-description: dods-error + content-encoding: gzip + vary: accept-encoding + content-type: text/plain;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: ASCII-8BIT + file: no + string: RXJyb3IgewogICAgY29kZT00MDA7CiAgICBtZXNzYWdlPSJCYWQgUmVxdWVzdDogUXVlcnkgZXJyb3I6ICdvcmRlckJ5JyB2YXJpYWJsZT10aGluZ3MgaXNuJ3QgaW4gdGhlIGRhdGFzZXQuIjsKfQo= + recorded_at: 2020-07-15 22:22:40 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 diff --git a/tests/vcr_cassettes/tabledap_fields_fails_well.yml b/tests/vcr_cassettes/tabledap_fields_fails_well.yml new file mode 100644 index 0000000..83d9905 --- /dev/null +++ b/tests/vcr_cassettes/tabledap_fields_fails_well.yml @@ -0,0 +1,718 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:43 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=erdCalCOFIlrvcntHBtoHI_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "acknowledgment", "String", "National Oceanic and Atmospheric Administration, California Department of Fish and Wildlife, University of California, San Diego Scripps Institution"], + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "Point"], + ["attribute", "NC_GLOBAL", "Conventions", "String", "COARDS, CF-1.0, Unidata Dataset Discovery v1.0, NCCSV-1.0"], + ["attribute", "NC_GLOBAL", "date_issued", "String", "2016-05-24"], + ["attribute", "NC_GLOBAL", "date_modified", "String", "2016-05-24"], + ["attribute", "NC_GLOBAL", "defaultGraphQuery", "String", "longitude,latitude,larvae_count&cruise=\"201504\"&.colorBar=|||0|10|"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "-77.228"], + ["attribute", "NC_GLOBAL", "featureType", "String", "Point"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "54.3"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "0.002"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "-77.228"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "-179.822"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html"], + ["attribute", "NC_GLOBAL", "institution", "String", "NOAA SWFSC"], + ["attribute", "NC_GLOBAL", "license", "String", "The data may be used and redistributed for free but is not intended\nfor legal use, since it may contain inaccuracies. Neither the data\nContributor, ERD, NOAA, nor the United States Government, nor any\nof their employees or contractors, makes any warranty, express or\nimplied, including warranties of merchantability and fitness for a\nparticular purpose, or assumes any legal liability for the accuracy,\ncompleteness, or usefulness, of this information."], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "54.3"], + ["attribute", "NC_GLOBAL", "project", "String", "CalCOFI"], + ["attribute", "NC_GLOBAL", "publisher_email", "String", "ed.weber@noaa.gov"], + ["attribute", "NC_GLOBAL", "publisher_name", "String", "Ed Weber"], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "(source database)"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "0.002"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF-11"], + ["attribute", "NC_GLOBAL", "subsetVariables", "String", "cruise, station, line, tow_type,net_type,net_location, tow_number, calcofi_species_code,common_name,scientific_name"], + ["attribute", "NC_GLOBAL", "summary", "String", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user."], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2018-04-26T20:43:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "1951-01-09T18:16:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "CalCOFI Larvae Counts, Scientific Names HB to HI"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "-179.822"], + ["variable", "cruise", "", "String", ""], + ["attribute", "cruise", "description", "String", "Six-digit cruise code (YYYYMM)"], + ["attribute", "cruise", "ioos_category", "String", "Identifier"], + ["attribute", "cruise", "long_name", "String", "Cruise Code"], + ["variable", "ship", "", "String", ""], + ["attribute", "ship", "ioos_category", "String", "Identifier"], + ["attribute", "ship", "long_name", "String", "Ship Name"], + ["variable", "ship_code", "", "String", ""], + ["attribute", "ship_code", "description", "String", "Two-digit CalCOFI ship code"], + ["attribute", "ship_code", "ioos_category", "String", "Identifier"], + ["attribute", "ship_code", "long_name", "String", "Ship Code"], + ["variable", "order_occupied", "", "int", ""], + ["attribute", "order_occupied", "description", "String", "Ordinal number in which the station was sampled for the cruise and ship"], + ["attribute", "order_occupied", "ioos_category", "String", "Identifier"], + ["attribute", "order_occupied", "long_name", "String", "Order Occupied"], + ["variable", "tow_type", "", "String", ""], + ["attribute", "tow_type", "description", "String", "Type of gear used to sample manta, mocness_1m, mocness_10m, oblique (C1 and CB nets), or vertical (CV and PV nets)."], + ["attribute", "tow_type", "ioos_category", "String", "Identifier"], + ["attribute", "tow_type", "long_name", "String", "Tow Type"], + ["variable", "net_type", "", "String", ""], + ["attribute", "net_type", "description", "String", "Gear type. See CalCOFI Tow Types table"], + ["attribute", "net_type", "ioos_category", "String", "Identifier"], + ["attribute", "net_type", "long_name", "String", "Net Type"], + ["variable", "tow_number", "", "int", ""], + ["attribute", "tow_number", "actual_range", "int", "1, 30"], + ["attribute", "tow_number", "description", "String", "Replicate tow number for the station, net type, and location"], + ["attribute", "tow_number", "ioos_category", "String", "Identifier"], + ["attribute", "tow_number", "long_name", "String", "Tow Number"], + ["variable", "net_location", "", "String", ""], + ["attribute", "net_location", "description", "String", "Port or Starboard location of tow"], + ["attribute", "net_location", "ioos_category", "String", "Identifier"], + ["attribute", "net_location", "long_name", "String", "Net Location"], + ["variable", "standard_haul_factor", "", "float", ""], + ["attribute", "standard_haul_factor", "description", "String", "Number used to standardize oblique tows to catch per 10 meters squared of sea surface. See Kramer and Smith and Richardson references on the infosheet url for details."], + ["attribute", "standard_haul_factor", "ioos_category", "String", "Other"], + ["attribute", "standard_haul_factor", "long_name", "String", "Standard Haul Factor"], + ["variable", "volume_sampled", "", "float", ""], + ["attribute", "volume_sampled", "description", "String", "Volume of water sampled by the net"], + ["attribute", "volume_sampled", "ioos_category", "String", "Other"], + ["attribute", "volume_sampled", "long_name", "String", "Volume Sampled"], + ["attribute", "volume_sampled", "units", "String", "cubic meters"], + ["variable", "percent_sorted", "", "float", ""], + ["attribute", "percent_sorted", "description", "String", "Proportion of the sample jar that was sorted in the laboratory"], + ["attribute", "percent_sorted", "ioos_category", "String", "Other"], + ["attribute", "percent_sorted", "long_name", "String", "Percent Sorted"], + ["attribute", "percent_sorted", "units", "String", "%/100"], + ["variable", "sample_quality", "", "float", ""], + ["attribute", "sample_quality", "description", "String", "Qualitative estimate of net performance on a scale of 0 (worst) to 5"], + ["attribute", "sample_quality", "ioos_category", "String", "Identifier"], + ["attribute", "sample_quality", "long_name", "String", "Sample Quality"], + ["variable", "latitude", "", "float", ""], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "float", "0.002, 54.3"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["variable", "longitude", "", "float", ""], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "float", "-179.822, -77.228"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "line", "", "float", ""], + ["attribute", "line", "actual_range", "float", "-29.5, 388.3"], + ["attribute", "line", "description", "String", "CalCOFI line number"], + ["attribute", "line", "ioos_category", "String", "Identifier"], + ["attribute", "line", "long_name", "String", "Line"], + ["variable", "station", "", "float", ""], + ["attribute", "station", "actual_range", "float", "-283.0, 815.5"], + ["attribute", "station", "description", "String", "CalCOFI station number"], + ["attribute", "station", "ioos_category", "String", "Identifier"], + ["attribute", "station", "long_name", "String", "Station"], + ["variable", "time", "", "double", ""], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "-5.9885904E8, 1.52477538E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "description", "String", "Start of tow"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Start Time"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["variable", "scientific_name", "", "String", ""], + ["attribute", "scientific_name", "ioos_category", "String", "Other"], + ["attribute", "scientific_name", "long_name", "String", "Scientific Name"], + ["variable", "common_name", "", "String", ""], + ["attribute", "common_name", "ioos_category", "String", "Other"], + ["attribute", "common_name", "long_name", "String", "Common Name"], + ["variable", "itis_tsn", "", "int", ""], + ["attribute", "itis_tsn", "description", "String", "Integrated taxonomic information system taxonomic serial number. https://www.itis.gov/"], + ["attribute", "itis_tsn", "ioos_category", "String", "Other"], + ["attribute", "itis_tsn", "long_name", "String", "Intergrated Taxomomic Information System Taxonomic Serial Number"], + ["variable", "calcofi_species_code", "", "int", ""], + ["attribute", "calcofi_species_code", "actual_range", "int", "170, 1520"], + ["attribute", "calcofi_species_code", "ioos_category", "String", "Other"], + ["attribute", "calcofi_species_code", "long_name", "String", "CalCOFI Species Code"], + ["variable", "larvae_count", "", "float", ""], + ["attribute", "larvae_count", "ioos_category", "String", "Other"], + ["attribute", "larvae_count", "long_name", "String", "Raw count of larvae"], + ["variable", "larvae_10m2", "", "float", ""], + ["attribute", "larvae_10m2", "ioos_category", "String", "Other"], + ["attribute", "larvae_10m2", "long_name", "String", "Standardized count of larvae for oblique tows"], + ["attribute", "larvae_10m2", "units", "String", "Fish larvae per ten meters squared of water sampled"], + ["variable", "larvae_1000m3", "", "float", ""], + ["attribute", "larvae_1000m3", "ioos_category", "String", "Other"], + ["attribute", "larvae_1000m3", "long_name", "String", "Standardized count of larvae for manta tows"], + ["attribute", "larvae_1000m3", "units", "String", "Fish larvae per 1,000 cubic meters of water sampled"] + ] + } + } + recorded_at: 2020-07-15 22:22:32 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:43 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:22:43 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://upwell.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012.graph", "", "", "public", "AIS Ship Traffic: Hawaii: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_hi_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_hi_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_hi_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_hi_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_hi_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_hi_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012.graph", "", "", "public", "AIS Ship Traffic: Johnston Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Johnston Atoll. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_john_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_john_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_john_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_john_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_john_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_john_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012.graph", "", "", "public", "AIS Ship Traffic: Mariana and Wake: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Mariana Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_mari_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_mari_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_mari_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_mari_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_mari_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_mari_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012.graph", "", "", "public", "AIS Ship Traffic: Rose Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Rose Atoll in American Samoa. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_rose_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_rose_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_rose_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_rose_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_rose_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_rose_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom for the most recent 7 days.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_temp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_temp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_temp/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_temp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_temp&showErrors=false&email=", "University of Hawaii", "aco_adcp_temp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Velocity", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean current velocity at the ACO from a 250 kHz SonTek acoustic doppler current profiler (ADCP) at 1.83 m above the ocean bottom for the most recent 7 days. Velocities are flagged bad if the amplitude is excessively low or high. An amplitude is high if it exceeds the average of the ping before and the ping after by 20 counts. An amplitude is low if less than 6 counts. After this the velocities are flagged bad if the absolute deviation of the vertical velocity from its ensemble median exceeds 0.15 m/s or if its value is less than -0.25 m/s.\n\ncdm_data_type = Profile\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each location, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\neastward_sea_water_velocity (current east component, meters/second)\nnorthward_sea_water_velocity (current north component, meters/second)\nupward_sea_water_velocity (current upward component, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_vel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_vel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_vel/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_vel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_vel&showErrors=false&email=", "University of Hawaii", "aco_adcp_vel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://upwell.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF.graph", "", "", "public", "CRRF Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-CRRF: CRRF Weather Station: Palau: Koror: Ngeanges Island)\nair_temperature (Celsius)\nair_temperature_max (maximum air temperature, Celsius)\nair_temperature_max_time (maximum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (minimum air temperature, Celsius)\nair_temperature_min_time (minimum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_std (air temperature standard deviation, Celsius)\nwind_speed (m/s)\nwind_speed_max (gust speed, m/s)\nwind_speed_max_time (gust speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (minimum wind speed, m/s)\nwind_speed_min_time (minimum wind speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_std (wind speed standard deviation, m/s)\nwind_from_direction (wind direction, degrees)\nwind_from_direction_std (wind direction standard deviation, degrees)\nrainfall_amount (total rainfall, mm)\n... (23 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-CRRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-CRRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-CRRF/index.json", "https://www.pacioos.hawaii.edu/weather/obs-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-CRRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-CRRF&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "AWS-CRRF"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_1000genomes/", "public", "File Names from the AWS S3 1000genomes Bucket: 1000 Genomes", "This dataset has file information from the AWS S3 1000genomes bucket at https://1000genomes.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 1000 Genomes\nName2: http://www.internationalgenome.org/formats\nDescription: The 1000 Genomes Project is an international collaboration which has established the most detailed catalogue of human genetic variation, including SNPs, structural variants, and their haplotype context. The final phase of the project sequenced more than 2500 individuals from 26 different populations around the world and produced an integrated set of phased haplotypes with more than 80 million variants for these individuals.\n\nDocumentation: https://docs.opendata.aws/1000genomes/readme.html\nContact: http://www.internationalgenome.org/contact\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_1000genomes/index.json", "https://registry.opendata.aws/1000-genomes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_1000genomes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_1000genomes&showErrors=false&email=", "Amazon Web Services", "awsS3Files_1000genomes"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_3kricegenome/", "public", "File Names from the AWS S3 3kricegenome Bucket: 3000 Rice Genomes Project", "This dataset has file information from the AWS S3 3kricegenome bucket at https://3kricegenome.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 3000 Rice Genomes Project\nName2: http://s3.amazonaws.com/3kricegenome/README-snp_pipeline.txt\nDescription: The 3000 Rice Genome Project is an international effort to sequence the genomes of 3,024 rice varieties from 89 countries.\n\nDocumentation: https://docs.opendata.aws/3kricegenome/readme.html\nContact: http://iric.irri.org/contact-us\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_3kricegenome/index.json", "https://registry.opendata.aws/3kricegenome/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_3kricegenome.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_3kricegenome&showErrors=false&email=", "Amazon Web Services", "awsS3Files_3kricegenome"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aft_vbi_pds/", "public", "File Names from the AWS S3 aft-vbi-pds Bucket: Amazon Bin Image Dataset: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.", "This dataset has file information from the AWS S3 aft-vbi-pds bucket at https://aft-vbi-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Bin Image Dataset\nName2: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.\nDescription: The Amazon Bin Image Dataset contains over 500,000 images and metadata from bins of a pod in an operating Amazon Fulfillment Center. The bin images in this dataset are captured as robot units carry pods as part of normal Amazon Fulfillment Center operations.\n\nDocumentation: https://docs.opendata.aws/aft-vbi-pds/readme.html\nContact: amazon-bin-images@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aft_vbi_pds/index.json", "https://registry.opendata.aws/amazon-bin-imagery/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aft_vbi_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aft_vbi_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aft_vbi_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory/", "public", "File Names from the AWS S3 allen-brain-observatory Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: Project data files in a public bucket", "This dataset has file information from the AWS S3 allen-brain-observatory bucket at https://allen-brain-observatory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: Project data files in a public bucket\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory_templates/", "public", "File Names from the AWS S3 allen-brain-observatory-templates Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: SageMaker launch template with s3fs bucket mounts", "This dataset has file information from the AWS S3 allen-brain-observatory-templates bucket at https://allen-brain-observatory-templates.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: SageMaker launch template with s3fs bucket mounts\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory_templates/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory_templates.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory_templates&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory_templates"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_amazon_reviews_pds/", "public", "File Names from the AWS S3 amazon-reviews-pds Bucket: Amazon Customer Reviews Dataset: TSV files of reviews", "This dataset has file information from the AWS S3 amazon-reviews-pds bucket at https://amazon-reviews-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Customer Reviews Dataset\nName2: TSV files of reviews\nDescription: Amazon Customer Reviews (a.k.a. Product Reviews) is one of Amazon\u2019s iconic products. In a period of over two decades since the first review in 1995, millions of Amazon customers have contributed over a hundred million reviews to express opinions and describe their experiences regarding products on the Amazon.com website. Over 130+ million customer reviews are available to researchers as part of this dataset.\n\nDocumentation: https://s3.amazonaws.com/amazon-reviews-pds/readme.html\nContact: customer-review-dataset@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not defined\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_amazon_reviews_pds/index.json", "https://registry.opendata.aws/amazon-reviews/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_amazon_reviews_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_amazon_reviews_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_amazon_reviews_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_avg_kitti/", "public", "File Names from the AWS S3 avg-kitti Bucket: KITTI Vision Benchmark Suite", "This dataset has file information from the AWS S3 avg-kitti bucket at https://avg-kitti.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: KITTI Vision Benchmark Suite\nName2: http://www.cvlibs.net/datasets/kitti/raw_data.php\nDescription: Dataset and benchmarks for computer vision research in the context of autonomous driving. The dataset has been recorded in and around the city of Karlsruhe, Germany using the mobile platform AnnieWay (VW station wagon) which has been equipped with several RGB and monochrome cameras, a Velodyne HDL 64 laser scanner as well as an accurate RTK corrected GPS/IMU localization unit. The dataset has been created for computer vision and machine learning research on stereo, optical flow, visual odometry, semantic segmentation, semantic instance segmentation, road segmentation, single image depth prediction, depth map completion, 2D and 3D object detection and object tracking. In addition, several raw data recordings are provided. The datasets are captured by driving around the mid-size city of Karlsruhe, in rural areas and on highways. Up to 15 cars and 30 pedestrians are visible per image.\n\nDocumentation: http://www.cvlibs.net/datasets/kitti/\nContact: http://www.cvlibs.net/people.php\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_avg_kitti/index.json", "https://registry.opendata.aws/kitti/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_avg_kitti.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_avg_kitti&showErrors=false&email=", "Amazon Web Services", "awsS3Files_avg_kitti"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/", "public", "File Names from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd Bucket: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)", "This dataset has file information from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd bucket at https://aws-earth-mo-atmospheric-mogreps-g-prd.s3.eu-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts\nName2: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)\nDescription: Meteorological data reusers now have an exciting opportunity to sample, experiment and evaluate Met Office atmospheric model data, whilst also experiencing a transformative method of requesting data via Restful APIs on AWS. All ahead of Met Office\u2019s own operationally supported API platform that will be launched in late 2019.\n\nDocumentation: https://github.com/MetOffice/aws-earth-examples\nContact: https://www.metoffice.gov.uk/about-us/contact\nUpdateFrequency: Daily (with 24 hour delay)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/index.json", "https://registry.opendata.aws/uk-met-office/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_gsod/", "public", "File Names from the AWS S3 aws-gsod Bucket: Global Surface Summary of Day: Measurements and metadata", "This dataset has file information from the AWS S3 aws-gsod bucket at https://aws-gsod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Surface Summary of Day\nName2: Measurements and metadata\nDescription: GSOD is a collection of daily weather measurements (temperature, wind speed, humidity, pressure, and more) from 9000+ weather stations around the world.\n\nDocumentation: https://www.ncdc.noaa.gov/\nContact: https://www.ncdc.noaa.gov/\nUpdateFrequency: Currently updated infrequently. Last updated on September 13, 2016.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_gsod/index.json", "https://registry.opendata.aws/noaa-gsod/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_gsod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_gsod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_gsod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_broad_references/", "public", "File Names from the AWS S3 broad-references Bucket: Broad Genome References: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.", "This dataset has file information from the AWS S3 broad-references bucket at https://broad-references.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Broad Genome References\nName2: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.\nDescription: Broad maintained human genome reference builds hg19/hg38 and decoy references.\n\nDocumentation: https://s3.amazonaws.com/broad-references/broad-references-readme.html\nContact: hensonc@broadinstitute.org\nManagedBy: Broad Institute\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_broad_references/index.json", "https://registry.opendata.aws/broad-references/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_broad_references.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_broad_references&showErrors=false&email=", "Amazon Web Services", "awsS3Files_broad_references"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cbers_meta_pds/", "public", "File Names from the AWS S3 cbers-meta-pds Bucket: CBERS on AWS: CBERS metadata (Quicklooks, metadata)", "This dataset has file information from the AWS S3 cbers-meta-pds bucket at https://cbers-meta-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CBERS on AWS\nName2: CBERS metadata (Quicklooks, metadata)\nDescription: This project creates a S3 repository with imagery acquired by the China-Brazil Earth Resources Satellite (CBERS). The image files are recorded and processed by Instituto Nacional de Pesquisa Espaciais (INPE) and are converted to Cloud Optimized Geotiff format in order to optimize its use for cloud based applications. The repository contains all CBERS-4 MUX, AWFI, PAN5M and PAN10M scenes acquired since the start of the satellite mission and is daily updated with new scenes.\n\nDocumentation: https://github.com/fredliporace/cbers-on-aws\nContact: https://lists.osgeo.org/mailman/listinfo/cbers-pds\nManagedBy: [AMS Kepler](https://amskepler.com/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cbers_meta_pds/index.json", "https://registry.opendata.aws/cbers/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cbers_meta_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cbers_meta_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cbers_meta_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cgiardata/", "public", "File Names from the AWS S3 cgiardata Bucket: CCAFS-Climate Data: ARC GRID, and ARC ASCII format compressed", "This dataset has file information from the AWS S3 cgiardata bucket at https://cgiardata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CCAFS-Climate Data\nName2: ARC GRID, and ARC ASCII format compressed\nDescription: High resolution climate data to help assess the impacts of climate change primarily on agriculture. These open access datasets of climate projections will help researchers make climate change impact assessments.\n\nDocumentation: http://www.ccafs-climate.org\nContact: http://www.ccafs-climate.org/contact/\nUpdateFrequency: Every three months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cgiardata/index.json", "https://registry.opendata.aws/cgiardata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cgiardata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cgiardata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cgiardata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_commoncrawl/", "public", "File Names from the AWS S3 commoncrawl Bucket: Common Crawl: Crawl data (WARC and ARC format)", "This dataset has file information from the AWS S3 commoncrawl bucket at https://commoncrawl.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Common Crawl\nName2: Crawl data (WARC and ARC format)\nDescription: A corpus of web crawl data composed of over 25 billion web pages.\n\nDocumentation: http://commoncrawl.org/the-data/get-started/\nContact: http://commoncrawl.org/connect/contact-us/\nManagedBy: [Common Crawl](http://commoncrawl.org/)\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_commoncrawl/index.json", "https://registry.opendata.aws/commoncrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_commoncrawl.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_commoncrawl&showErrors=false&email=", "Amazon Web Services", "awsS3Files_commoncrawl"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cornell_eas_data_lake/", "public", "File Names from the AWS S3 cornell-eas-data-lake Bucket: Cornell EAS Data Lake: Cornell EAS Data Lake", "This dataset has file information from the AWS S3 cornell-eas-data-lake bucket at https://cornell-eas-data-lake.s3.us-east-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cornell EAS Data Lake\nName2: Cornell EAS Data Lake\nDescription: Earth & Atmospheric Sciences at Cornell University has created a public data lake of climate data. The data is stored in columnar storage formats (ORC) to make it straightforward to query using standard tools like Amazon Athena or Apache Spark. The data itself is originally intended to be used for building decision support tools for farmers and digital agriculture. The first dataset is the historical NDFD / NDGD data distributed by NCEP / NOAA / NWS. The NDFD (National Digital Forecast Database) and NDGD (National Digital Guidance Database) contain gridded forecasts and observations at 2.5km resolution for the Contiguous United States (CONUS). There are also 5km grids for several smaller US regions and non-continguous territories, such as Hawaii, Guam, Puerto Rico and Alaska. NOAA distributes archives of the NDFD/NDGD via its NOAA Operational Model Archive and Distribution System (NOMADS) in Grib2 format. The data has been converted to ORC to optimize storage space and to, more importantly, simplify data access via standard data analytics tools.\n\nDocumentation: https://datalake.eas.cornell.edu/\nContact: digitalag@cornell.edu\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cornell_eas_data_lake/index.json", "https://registry.opendata.aws/cornell-eas-data-lake/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cornell_eas_data_lake.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cornell_eas_data_lake&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cornell_eas_data_lake"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cse_cic_ids2018/", "public", "File Names from the AWS S3 cse-cic-ids2018 Bucket: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018): Network traffic and log files", "This dataset has file information from the AWS S3 cse-cic-ids2018 bucket at https://cse-cic-ids2018.s3.ca-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018)\nName2: Network traffic and log files\nDescription: This dataset is the result of a collaborative project between the Communications Security Establishment (CSE) and The Canadian Institute for Cybersecurity (CIC) that use the notion of profiles to generate cybersecurity dataset in a systematic manner. It incluides a detailed description of intrusions along with abstract distribution models for applications, protocols, or lower level network entities. The dataset includes seven different attack scenarios, namely Brute-force, Heartbleed, Botnet, DoS, DDoS, Web attacks, and infiltration of the network from inside. The attacking infrastructure includes 50 machines and the victim organization has 5 departments includes 420 PCs and 30 servers. This dataset includes the network traffic and log files of each machine from the victim side, along with 80 network traffic features extracted from captured traffic using CICFlowMeter-V3. For more information on the creation of this dataset, see this paper by researchers at the Canadian Institute for Cybersecurity (CIC) and the University of New Brunswick (UNB): [Toward Generating a New Intrusion Detection Dataset and Intrusion Traffic Characterization](http://www.scitepress.org/Papers/2018/66398/66398.pdf).\n\nDocumentation: http://www.unb.ca/cic/datasets/ids-2018.html\nContact: CIC@unb.ca\nUpdateFrequency: Annualy\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cse_cic_ids2018/index.json", "https://registry.opendata.aws/cse-cic-ids2018/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cse_cic_ids2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cse_cic_ids2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cse_cic_ids2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cytodata/", "public", "File Names from the AWS S3 cytodata Bucket: Cell Painting Image Collection: Images, extracted features and aggregated profiles are available as a S3 bucket", "This dataset has file information from the AWS S3 cytodata bucket at https://cytodata.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cell Painting Image Collection\nName2: Images, extracted features and aggregated profiles are available as a S3 bucket\nDescription: The Cell Painting Image Collection is a collection of freely downloadable microscopy image sets. Cell Painting is an unbiased high throughput imaging assay used to analyze perturbations in cell models. In addition to the images themselves, each set includes a description of the biological application and some type of \"ground truth\" (expected results). Researchers are encouraged to use these image sets as reference points when developing, testing, and publishing new image analysis algorithms for the life sciences. We hope that the this data set will lead to a better understanding of which methods are best for various biological image analysis applications.\n\nDocumentation: https://github.com/cytodata/cytodata-hackathon-2018\nContact: Post on https://forum.image.sc/ and tag with \"cellpainting\"\nUpdateFrequency: irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cytodata/index.json", "https://registry.opendata.aws/cell-painting-image-collection/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cytodata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cytodata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cytodata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_czb_tabula_muris/", "public", "File Names from the AWS S3 czb-tabula-muris Bucket: Tabula Muris", "This dataset has file information from the AWS S3 czb-tabula-muris bucket at https://czb-tabula-muris.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Tabula Muris\nName2: https://github.com/czbiohub/tabula-muris\nDescription: Tabula Muris is a compendium of single cell transcriptomic data from the model organism *Mus musculus* comprising more than 100,000 cells from 20 organs and tissues. These data represent a new resource for cell biology, reveal gene expression in poorly characterized cell populations, and allow for direct and controlled comparison of gene expression in cell types shared between tissues, such as T-lymphocytes and endothelial cells from different anatomical locations. Two distinct technical approaches were used for most organs: one approach, microfluidic droplet-based 3\u2019-end counting, enabled the survey of thousands of cells at relatively low coverage, while the other, FACS-based full length transcript analysis, enabled characterization of cell types with high sensitivity and coverage. The cumulative data provide the foundation for an atlas of transcriptomic cell biology. See: https://www.nature.com/articles/s41586-018-0590-4\n\nDocumentation: https://github.com/czbiohub/tabula-muris/blob/master/tabula-muris-on-aws.md\nContact: If you have questions about the data, you can create an Issue at https://github.com/czbiohub/tabula-muris.\nManagedBy: [Chan Zuckerberg Biohub](https://www.czbiohub.org/)\nUpdateFrequency: This is the final version of the dataset, it will not be updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_czb_tabula_muris/index.json", "https://registry.opendata.aws/tabula-muris/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_czb_tabula_muris.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_czb_tabula_muris&showErrors=false&email=", "Amazon Web Services", "awsS3Files_czb_tabula_muris"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataforgood_fb_data/", "public", "File Names from the AWS S3 dataforgood-fb-data Bucket: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook: CSV and Cloud-optimized GeoTIFF files", "This dataset has file information from the AWS S3 dataforgood-fb-data bucket at https://dataforgood-fb-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook\nName2: CSV and Cloud-optimized GeoTIFF files\nDescription: Population data for a selection of countries, allocated to 1 arcsecond blocks and provided in a combination of CSV and Cloud-optimized GeoTIFF files. This refines [CIESIN\u2019s Gridded Population of the World](https://sedac.ciesin.columbia.edu/data/collection/gpw-v4) using machine learning models on high-resolution worldwide Digital Globe satellite imagery. CIESIN population counts aggregated from worldwide census data are allocated to blocks where imagery appears to contain buildings.\n\nDocumentation: [Project overview](https://dataforgood.fb.com/population-density-maps-documentation/) and [dataset description](https://docs.opendata.aws/dataforgood-fb-data/readme.html)\nContact: disastermaps@fb.com\nManagedBy: |\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataforgood_fb_data/index.json", "https://registry.opendata.aws/dataforgood-fb-hrsl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataforgood_fb_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataforgood_fb_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataforgood_fb_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_datasets_elasticmapreduce_ngrams_books/", "public", "File Names from the AWS S3 datasets.elasticmapreduce Bucket with prefix=ngrams/books/: Google Books Ngrams: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.", "This dataset has file information from the AWS S3 datasets.elasticmapreduce bucket at https://datasets.elasticmapreduce.s3.us-east-1.amazonaws.com/ with prefix=ngrams/books/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Google Books Ngrams\nName2: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.\nDescription: N-grams are fixed size tuples of items. In this case the items are words extracted from the Google Books corpus. The n specifies the number of elements in the tuple, so a 5-gram contains five words or characters. The n-grams in this dataset were produced by passing a sliding window of the text of books and outputting a record for each new token.\n\nDocumentation: http://books.google.com/ngrams/\nContact: https://books.google.com/ngrams\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_datasets_elasticmapreduce_ngrams_books/index.json", "https://registry.opendata.aws/google-ngrams/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_datasets_elasticmapreduce_ngrams_books.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_datasets_elasticmapreduce_ngrams_books&showErrors=false&email=", "Amazon Web Services", "awsS3Files_datasets_elasticmapreduce_ngrams_books"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataworld_linked_acs/", "public", "File Names from the AWS S3 dataworld-linked-acs Bucket: U.S. Census ACS PUMS: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.", "This dataset has file information from the AWS S3 dataworld-linked-acs bucket at https://dataworld-linked-acs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: U.S. Census ACS PUMS\nName2: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.\nDescription: U.S. Census Bureau American Community Survey (ACS) Public Use Microdata Sample (PUMS) available in a linked data format using the Resource Description Framework (RDF) data model.\n\nDocumentation: https://docs.data.world/uscensus/#american-community-survey-linked-open-data\nContact: https://docs.data.world/uscensus/#60---contact\nUpdateFrequency: Yearly, after ACS 1-year PUMS raw data are released\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataworld_linked_acs/index.json", "https://registry.opendata.aws/census-dataworld-pums/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataworld_linked_acs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataworld_linked_acs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataworld_linked_acs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2015/", "public", "File Names from the AWS S3 dc-lidar-2015 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML, SHP", "This dataset has file information from the AWS S3 dc-lidar-2015 bucket at https://dc-lidar-2015.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML, SHP\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2015/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2015.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2015&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2015"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2018/", "public", "File Names from the AWS S3 dc-lidar-2018 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML", "This dataset has file information from the AWS S3 dc-lidar-2018 bucket at https://dc-lidar-2018.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2018/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_eurex_pds/", "public", "File Names from the AWS S3 deutsche-boerse-eurex-pds Bucket: Deutsche B\u00f6rse Public Dataset: Eurex PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-eurex-pds bucket at https://deutsche-boerse-eurex-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Eurex PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_eurex_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_eurex_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_eurex_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_eurex_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_xetra_pds/", "public", "File Names from the AWS S3 deutsche-boerse-xetra-pds Bucket: Deutsche B\u00f6rse Public Dataset: Xetra PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-xetra-pds bucket at https://deutsche-boerse-xetra-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Xetra PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_xetra_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_xetra_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_xetra_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_xetra_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ebirdst_data/", "public", "File Names from the AWS S3 ebirdst-data Bucket: eBird Status and Trends Model Results: Species results files", "This dataset has file information from the AWS S3 ebirdst-data bucket at https://ebirdst-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: eBird Status and Trends Model Results\nName2: Species results files\nDescription: The eBird Status and Trends project generates estimates of bird occurrence and abundance at a high spatiotemporal resolution. This dataset represents the primary modeled results from the analysis workflow and are designed for further analysis, synthesis, visualization, and exploration.\n\nDocumentation: https://cornelllabofornithology.github.io/ebirdst/articles/ebirdst-introduction.html\nContact: https://help.ebird.org/customer/en/portal/emails/new\nManagedBy: [Cornell Lab of Ornithology](https://www.birds.cornell.edu/home/)\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ebirdst_data/index.json", "https://registry.opendata.aws/ebirdst/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ebirdst_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ebirdst_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ebirdst_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_elevation_tiles_prod/", "public", "File Names from the AWS S3 elevation-tiles-prod Bucket: Terrain Tiles: Gridded elevation tiles", "This dataset has file information from the AWS S3 elevation-tiles-prod bucket at https://elevation-tiles-prod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Terrain Tiles\nName2: Gridded elevation tiles\nDescription: A global dataset providing bare-earth terrain heights, tiled for easy usage and provided on S3.\n\nDocumentation: https://mapzen.com/documentation/terrain-tiles/\nContact: https://github.com/tilezen/joerd/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_elevation_tiles_prod/index.json", "https://registry.opendata.aws/terrain-tiles/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_elevation_tiles_prod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_elevation_tiles_prod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_elevation_tiles_prod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_encode_public/", "public", "File Names from the AWS S3 encode-public Bucket: Encyclopedia of DNA Elements (ENCODE): Released and archived ENCODE data", "This dataset has file information from the AWS S3 encode-public bucket at https://encode-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Encyclopedia of DNA Elements (ENCODE)\nName2: Released and archived ENCODE data\nDescription: The Encyclopedia of DNA Elements (ENCODE) Consortium is an international collaboration of research groups funded by the National Human Genome Research Institute (NHGRI). The goal of ENCODE is to build a comprehensive parts list of functional elements in the human genome, including elements that act at the protein and RNA levels, and regulatory elements that control cells and circumstances in which a gene is active. ENCODE investigators employ a variety of assays and methods to identify functional elements. The discovery and annotation of gene elements is accomplished primarily by sequencing a diverse range of RNA sources, comparative genomics, integrative bioinformatic methods, and human curation. Regulatory elements are typically investigated through DNA hypersensitivity assays, assays of DNA methylation, and immunoprecipitation (IP) of proteins that interact with DNA and RNA, i.e., modified histones, transcription factors, chromatin regulators, and RNA-binding proteins, followed by sequencing.\n\nDocumentation: https://www.encodeproject.org\nContact: encode-help@lists.stanford.edu\nManagedBy: ENCODE Data Coordinating Center\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_encode_public/index.json", "https://registry.opendata.aws/encode-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_encode_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_encode_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_encode_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_epa_rsei_pds/", "public", "File Names from the AWS S3 epa-rsei-pds Bucket: EPA Risk-Screening Environmental Indicators: RSEI Microdata", "This dataset has file information from the AWS S3 epa-rsei-pds bucket at https://epa-rsei-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: EPA Risk-Screening Environmental Indicators\nName2: RSEI Microdata\nDescription: Detailed air model results from EPA\u2019s Risk-Screening Environmental Indicators (RSEI) model.\n\nDocumentation: https://docs.opendata.aws/epa-rsei-pds/readme.html\nContact: https://www.epa.gov/rsei/forms/contact-us-about-rsei-model\nUpdateFrequency: Updated infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_epa_rsei_pds/index.json", "https://registry.opendata.aws/epa-rsei-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_epa_rsei_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_epa_rsei_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_epa_rsei_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_era5_pds/", "public", "File Names from the AWS S3 era5-pds Bucket: ECMWF ERA5 Reanalysis: ERA5 Reanalysis NetCDF 4 files", "This dataset has file information from the AWS S3 era5-pds bucket at https://era5-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ECMWF ERA5 Reanalysis\nName2: ERA5 Reanalysis NetCDF 4 files\nDescription: ERA5 is the fifth generation of ECMWF atmospheric reanalyses of the global climate, and the first reanalysis produced as an operational service. It utilizes the best available observation data from satellites and in-situ stations, which are assimilated and processed using ECMWF's Integrated Forecast System (IFS) Cycle 41r2. The dataset provides all essential atmospheric meteorological parameters like, but not limited to, air temperature, pressure and wind at different altitudes, along with surface parameters like rainfall, soil moisture content and sea parameters like sea-surface temperature and wave height. ERA5 provides data at a considerably higher spatial and temporal resolution than its legacy counterpart ERA-Interim. ERA5 consists of high resolution version with 31 km horizontal resolution, and a reduced resolution ensemble version with 10 members. It is currently available since 2008, but will be continuously extended backwards, first until 1979 and then to 1950. Learn more about ERA5 in Jon Olauson's paper [ERA5: The new champion of wind power modelling?](https://www.researchgate.net/publication/320084119_ERA5_The_new_champion_of_wind_power_modelling).\n\nDocumentation: https://github.com/planet-os/notebooks/blob/master/aws/era5-pds.md\nContact: datahub@intertrust.com\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_era5_pds/index.json", "https://registry.opendata.aws/ecmwf-era5/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_era5_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_era5_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_era5_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_coco/", "public", "File Names from the AWS S3 fast-ai-coco Bucket: COCO - Common Objects in Context - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-coco bucket at https://fast-ai-coco.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: COCO - Common Objects in Context - fast.ai datasets\nName2: Datasets\nDescription: COCO is a large-scale object detection, segmentation, and captioning dataset. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. If you use this dataset in your research please cite arXiv:1405.0312 [cs.CV].\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_coco/index.json", "https://registry.opendata.aws/fast-ai-coco/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_coco.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_coco&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_coco"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imageclas/", "public", "File Names from the AWS S3 fast-ai-imageclas Bucket: Image classification - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imageclas bucket at https://fast-ai-imageclas.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image classification - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image classification research, including CIFAR 10 and 100, Caltech 101, MNIST, Food-101, Oxford-102-Flowers, Oxford-IIIT-Pets, and Stanford-Cars. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imageclas/index.json", "https://registry.opendata.aws/fast-ai-imageclas/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imageclas.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imageclas&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imageclas"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imagelocal/", "public", "File Names from the AWS S3 fast-ai-imagelocal Bucket: Image localization - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imagelocal bucket at https://fast-ai-imagelocal.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image localization - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image localization research, including Camvid and PASCAL VOC (2007 and 2012). This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imagelocal/index.json", "https://registry.opendata.aws/fast-ai-imagelocal/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imagelocal.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imagelocal&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imagelocal"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_nlp/", "public", "File Names from the AWS S3 fast-ai-nlp Bucket: NLP - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-nlp bucket at https://fast-ai-nlp.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NLP - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for NLP, with a focus on classification, including IMDb, AG-News, Amazon Reviews (polarity and full), Yelp Reviews (polarity and full), Dbpedia, Sogou News (Pinyin), Yahoo Answers, Wikitext 2 and Wikitext 103, and ACL-2010 French-English 10^9 corpus. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_nlp/index.json", "https://registry.opendata.aws/fast-ai-nlp/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_nlp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_nlp&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_nlp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib Bucket: HIRLAM Weather Model: Pressure GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib bucket at https://fmi-opendata-rcrhirlam-pressure-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Pressure GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_pressure_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_pressure_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-surface-grib Bucket: HIRLAM Weather Model: Surface GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-surface-grib bucket at https://fmi-opendata-rcrhirlam-surface-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Surface GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_surface_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_surface_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gatk_test_data/", "public", "File Names from the AWS S3 gatk-test-data Bucket: GATK Test Data: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.", "This dataset has file information from the AWS S3 gatk-test-data bucket at https://gatk-test-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GATK Test Data\nName2: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.\nDescription: The GATK test data resource bundle is a collection of files for resequencing human genomic data with the Broad Institute's [Genome Analysis Toolkit (GATK)](https://software.broadinstitute.org/gatk/).\n\nDocumentation: https://s3.amazonaws.com/gatk-test-data/gatk-test-data-readme.html\nContact: https://gatkforums.broadinstitute.org/gatk\nManagedBy: Broad Institute\nUpdateFrequency: Every 3 months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gatk_test_data/index.json", "https://registry.opendata.aws/gatk-test-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gatk_test_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gatk_test_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gatk_test_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gdelt_open_data/", "public", "File Names from the AWS S3 gdelt-open-data Bucket: Global Database of Events, Language and Tone (GDELT): Project data files", "This dataset has file information from the AWS S3 gdelt-open-data bucket at https://gdelt-open-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Database of Events, Language and Tone (GDELT)\nName2: Project data files\nDescription: This project monitors the world's broadcast, print, and web news from nearly every corner of every country in over 100 languages and identifies the people, locations, organizations, counts, themes, sources, emotions, quotes, images and events driving our global society every second of every day.\n\nDocumentation: http://www.gdeltproject.org/\nContact: http://www.gdeltproject.org/about.html#contact\nUpdateFrequency: Not currently being updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gdelt_open_data/index.json", "https://registry.opendata.aws/gdelt/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gdelt_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gdelt_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gdelt_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_genomeark/", "public", "File Names from the AWS S3 genomeark Bucket: Genome Ark", "This dataset has file information from the AWS S3 genomeark bucket at https://genomeark.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome Ark\nName2: https://vgp.github.io\nDescription: The Genome Ark hosts genomic information for the Vertebrate Genomes Project (VGP) and other related projects. The VGP is an international collaboration that aims to generate complete and near error-free reference genomes for all extant vertebrate species. These genomes will be used to address fundamental questions in biology and disease, to identify species most genetically at risk for extinction, and to preserve genetic information of life.\n\nDocumentation: https://vertebrategenomesproject.org\nContact: Erich Jarvis \nManagedBy: The Genome10K community of scientists\nUpdateFrequency: Data will be continually updated as it is generated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_genomeark/index.json", "https://registry.opendata.aws/genomeark/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_genomeark.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_genomeark&showErrors=false&email=", "Amazon Web Services", "awsS3Files_genomeark"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_giab/", "public", "File Names from the AWS S3 giab Bucket: Genome in a Bottle on AWS: Latest data", "This dataset has file information from the AWS S3 giab bucket at https://giab.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome in a Bottle on AWS\nName2: Latest data\nDescription: Several reference genomes to enable translation of whole human genome sequencing to clinical practice.\n\nDocumentation: https://docs.opendata.aws/giab/readme.html\nContact: http://genomeinabottle.org/\nUpdateFrequency: New data are added as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_giab/index.json", "https://registry.opendata.aws/giab/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_giab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_giab&showErrors=false&email=", "Amazon Web Services", "awsS3Files_giab"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gmsdata/", "public", "File Names from the AWS S3 gmsdata Bucket: The Genome Modeling System", "This dataset has file information from the AWS S3 gmsdata bucket at https://gmsdata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Genome Modeling System\nName2: https://gmsdata.s3.amazonaws.com/INDEX.html\nDescription: The Genome Institute at Washington University has developed a high-throughput, fault-tolerant analysis information management system called the Genome Modeling System (GMS), capable of executing complex, interdependent, and automated genome analysis pipelines at a massive scale. The GMS framework provides detailed tracking of samples and data coupled with reliable and repeatable analysis pipelines. GMS includes a full system image with software and services, expandable from one workstation to a large compute cluster.\n\nDocumentation: https://github.com/genome/gms/wiki\nContact: https://github.com/genome/gms/issues\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gmsdata/index.json", "https://registry.opendata.aws/gmsdata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gmsdata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gmsdata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gmsdata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_grillo_openeew/", "public", "File Names from the AWS S3 grillo-openeew Bucket: OpenEEW: OpenEEW", "This dataset has file information from the AWS S3 grillo-openeew bucket at https://grillo-openeew.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenEEW\nName2: OpenEEW\nDescription: Grillo has developed an IoT-based earthquake early-warning system in Mexico and Chile and is now opening its entire archive of unprocessed accelerometer data to the world to encourage the development of new algorithms capable of rapidly detecting and characterizing earthquakes in real time.\n\nDocumentation: https://github.com/grillo/openeew\nContact: openeew@grillo.io\nManagedBy: [Grillo](https://grillo.io/)\nUpdateFrequency: Approximately every 10 minutes\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_grillo_openeew/index.json", "https://registry.opendata.aws/grillo-openeew/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_grillo_openeew.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_grillo_openeew&showErrors=false&email=", "Amazon Web Services", "awsS3Files_grillo_openeew"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_microbiome_project/", "public", "File Names from the AWS S3 human-microbiome-project Bucket: The Human Microbiome Project", "This dataset has file information from the AWS S3 human-microbiome-project bucket at https://human-microbiome-project.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Human Microbiome Project\nName2: https://aws.amazon.com/datasets/human-microbiome-project/\nDescription: The NIH-funded Human Microbiome Project (HMP) is a collaborative effort of over 300 scientists from more than 80 organizations to comprehensively characterize the microbial communities inhabiting the human body and elucidate their role in human health and disease. To accomplish this task, microbial community samples were isolated from a cohort of 300 healthy adult human subjects at 18 specific sites within five regions of the body (oral cavity, airways, urogenital track, skin, and gut). Targeted sequencing of the 16S bacterial marker gene and/or whole metagenome shotgun sequencing was performed for thousands of these samples. In addition, whole genome sequences were generated for isolate strains collected from human body sites to act as reference organisms for analysis. Finally, 16S marker and whole metagenome sequencing was also done on additional samples from people suffering from several disease conditions.\n\nDocumentation: https://commonfund.nih.gov/hmp\nContact: https://commonfund.nih.gov/hmp/related_activities\nUpdateFrequency: Uncertain\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_microbiome_project/index.json", "https://registry.opendata.aws/human-microbiome-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_microbiome_project.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_microbiome_project&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_microbiome_project"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_pangenomics/", "public", "File Names from the AWS S3 human-pangenomics Bucket: Human PanGenomics Project: Human PanGenomics Project", "This dataset has file information from the AWS S3 human-pangenomics bucket at https://human-pangenomics.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Human PanGenomics Project\nName2: Human PanGenomics Project\nDescription: This dataset includes sequencing data, assemblies, and analyses for the offspring of ten parent-offspring trios.\n\nDocumentation: https://github.com/human-pangenomics/hpgp-data\nContact: https://github.com/human-pangenomics/hpgp-data/issues\nUpdateFrequency: Data will be added and updated as technologies improve or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_pangenomics/index.json", "https://registry.opendata.aws/hpgp-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_pangenomics.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_pangenomics&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_pangenomics"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/", "public", "File Names from the AWS S3 ichangemycity-janaagraha-complaints-data-aws Bucket: IChangeMyCity Complaints Data from Janaagraha: IChangeMyCity Complaints", "This dataset has file information from the AWS S3 ichangemycity-janaagraha-complaints-data-aws bucket at https://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IChangeMyCity Complaints Data from Janaagraha\nName2: IChangeMyCity Complaints\nDescription: The [IChangeMyCity](https://www.ichangemycity.com) project provides insight into the complaints raised by citizens from diffent cities of India related to the issues in their neighbourhoods and the resolution of the same by the civic bodies.\n\nDocumentation: http://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/readme.html\nContact: data@janaagraha.org\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/index.json", "https://registry.opendata.aws/ichangemycity/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ichangemycity_janaagraha_complaints_data_aws&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ichangemycity_janaagraha_complaints_data_aws"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_irs_990_spreadsheets/", "public", "File Names from the AWS S3 irs-990-spreadsheets Bucket: IRS 990 Filings (Spreadsheets): Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form", "This dataset has file information from the AWS S3 irs-990-spreadsheets bucket at https://irs-990-spreadsheets.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IRS 990 Filings (Spreadsheets)\nName2: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form\nDescription: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form. Additional fields being added regularly.\n\nDocumentation: https://appliednonprofitresearch.com/documentation/irs-990-spreadsheets\nContact: [info@appliednonprofitresearch.com](info@appliednonprofitresearch.com)\nManagedBy: [Applied Nonprofit Research, LLC](https://www.appliednonprofitresearch.com/)\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_irs_990_spreadsheets/index.json", "https://registry.opendata.aws/990-spreadsheets/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_irs_990_spreadsheets.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_irs_990_spreadsheets&showErrors=false&email=", "Amazon Web Services", "awsS3Files_irs_990_spreadsheets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lab41openaudiocorpus/", "public", "File Names from the AWS S3 lab41openaudiocorpus Bucket: Voices Obscured in Complex Environmental Settings (VOiCES): wav audio files, orthographic transcriptions, and speaker ID", "This dataset has file information from the AWS S3 lab41openaudiocorpus bucket at https://lab41openaudiocorpus.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Voices Obscured in Complex Environmental Settings (VOiCES)\nName2: wav audio files, orthographic transcriptions, and speaker ID\nDescription: VOiCES is a speech corpus recorded in acoustically challenging settings, using distant microphone recording. Speech was recorded in real rooms with various acoustic features (reverb, echo, HVAC systems, outside noise, etc.). Adversarial noise, either television, music, or babble, was concurrently played with clean speech. Data was recorded using multiple microphones strategically placed throughout the room. The corpus includes audio recordings, orthographic transcriptions, and speaker labels.\n\nDocumentation: https://voices18.github.io/\nContact: https://github.com/voices18/utilities/issues\nUpdateFrequency: Data from two additional rooms will be added to the corpus Fall 2018.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lab41openaudiocorpus/index.json", "https://registry.opendata.aws/lab41-sri-voices/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lab41openaudiocorpus.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lab41openaudiocorpus&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lab41openaudiocorpus"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds/", "public", "File Names from the AWS S3 landsat-pds Bucket: Landsat 8: Scenes and metadata", "This dataset has file information from the AWS S3 landsat-pds bucket at https://landsat-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: Scenes and metadata\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds_inventory/", "public", "File Names from the AWS S3 landsat-pds-inventory Bucket: Landsat 8: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)", "This dataset has file information from the AWS S3 landsat-pds-inventory bucket at https://landsat-pds-inventory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds_inventory/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds_inventory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds_inventory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds_inventory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lofar_elais_n1/", "public", "File Names from the AWS S3 lofar-elais-n1 Bucket: LOFAR ELAIS-N1 cycle 2 observations on AWS: LOFAR ELAIS-N1 cycle 2 observations", "This dataset has file information from the AWS S3 lofar-elais-n1 bucket at https://lofar-elais-n1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: LOFAR ELAIS-N1 cycle 2 observations on AWS\nName2: LOFAR ELAIS-N1 cycle 2 observations\nDescription: These data correspond to the [International LOFAR Telescope](http://www.lofar.org/) observations of the sky field ELAIS-N1 (16:10:01 +54:30:36) during the cycle 2 of observations. There are 11 runs of about 8 hours each plus the corresponding observation of the calibration targets before and after the target field. The data are measurement sets ([MS](https://casa.nrao.edu/Memos/229.html)) containing the cross-correlated data and metadata divided in 371 frequency sub-bands per target centred at ~150 MHz.\n\nDocumentation: https://www.lofarcloud.uk/data.html\nContact: https://www.lofarcloud.uk/\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lofar_elais_n1/index.json", "https://registry.opendata.aws/lofar-elais-n1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lofar_elais_n1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lofar_elais_n1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lofar_elais_n1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mf_nwp_models/", "public", "File Names from the AWS S3 mf-nwp-models Bucket: Atmospheric Models from M\u00e9t\u00e9o-France: Atmospheric Models from M\u00e9t\u00e9o-France", "This dataset has file information from the AWS S3 mf-nwp-models bucket at https://mf-nwp-models.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Atmospheric Models from M\u00e9t\u00e9o-France\nName2: Atmospheric Models from M\u00e9t\u00e9o-France\nDescription: Global and high-resolution regional atmospheric models from M\u00e9t\u00e9o-France.\n\nDocumentation: https://mf-models-on-aws.org\nContact: contact@openmeteodata.com\nManagedBy: [OpenMeteoData](https://openmeteodata.com)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mf_nwp_models/index.json", "https://registry.opendata.aws/meteo-france-models/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mf_nwp_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mf_nwp_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mf_nwp_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_modis_pds/", "public", "File Names from the AWS S3 modis-pds Bucket: MODIS on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 modis-pds bucket at https://modis-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: MODIS on AWS\nName2: Imagery and metadata\nDescription: Select products from the Moderate Resolution Imaging Spectroradiometer (MODIS) managed by the U.S. Geological Survey and NASA.\n\nDocumentation: https://docs.opendata.aws/modis-pds/readme.html\nContact: https://github.com/AstroDigital/modis-ingestor/issues\nUpdateFrequency: New MODIS data is added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_modis_pds/index.json", "https://registry.opendata.aws/modis/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_modis_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_modis_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_modis_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_multimedia_commons/", "public", "File Names from the AWS S3 multimedia-commons Bucket: Multimedia Commons: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.", "This dataset has file information from the AWS S3 multimedia-commons bucket at https://multimedia-commons.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Multimedia Commons\nName2: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.\nDescription: The Multimedia Commons is a collection of audio and visual features computed for the nearly 100 million Creative Commons-licensed Flickr images and videos in the YFCC100M dataset from Yahoo! Labs, along with ground-truth annotations for selected subsets. The International Computer Science Institute (ICSI) and Lawrence Livermore National Laboratory are producing and distributing a core set of derived feature sets and annotations as part of an effort to enable large-scale video search capabilities. They have released this feature corpus into the public domain, under Creative Commons License 0, so it is free for anyone to use for any purpose.\n\nDocumentation: https://multimediacommons.wordpress.com/yfcc100m-core-dataset/\nContact: multimedia-commons@icsi.berkeley.edu\nUpdateFrequency: Not updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_multimedia_commons/index.json", "https://registry.opendata.aws/multimedia-commons/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_multimedia_commons.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_multimedia_commons&showErrors=false&email=", "Amazon Web Services", "awsS3Files_multimedia_commons"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mwapublic/", "public", "File Names from the AWS S3 mwapublic Bucket: Epoch of Reionization Dataset: Selected MWA EoR data (uvfits format) from 2013-2015", "This dataset has file information from the AWS S3 mwapublic bucket at https://mwapublic.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Epoch of Reionization Dataset\nName2: Selected MWA EoR data (uvfits format) from 2013-2015\nDescription: The data are from observations with the Murchison Widefield Array (MWA) which is a Square Kilometer Array (SKA) precursor in Western Australia. This particular dataset is from the Epoch of Reionization project which is a key science driver of the SKA. Nearly 2PB of such observations have been recorded to date, this is a small subset of that which has been exported from the MWA data archive in Perth and made available to the public on AWS. The data were taken to detect signatures of the first stars and galaxies forming and the effect of these early stars and galaxies on the evolution of the universe.\n\nDocumentation: http://danielcjacobs.com/research/epoch-of-reionization-aws-public-dataset/\nContact: brynah (at) phys.washington.edu\nManagedBy: University of washington Radio Cosmology Group\nUpdateFrequency: Irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mwapublic/index.json", "https://registry.opendata.aws/epoch-of-reionization/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mwapublic.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mwapublic&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mwapublic"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nanopore_human_wgs/", "public", "File Names from the AWS S3 nanopore-human-wgs Bucket: Nanopore Reference Human Genome: Nanopore Reference Human Genome", "This dataset has file information from the AWS S3 nanopore-human-wgs bucket at https://nanopore-human-wgs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Nanopore Reference Human Genome\nName2: Nanopore Reference Human Genome\nDescription: This dataset includes the sequencing and assembly of a reference standard human genome (GM12878) using the MinION nanopore sequencing instrument with the R9.4 1D chemistry.\n\nDocumentation: https://github.com/nanopore-wgs-consortium/NA12878\nContact: https://github.com/nanopore-wgs-consortium/NA12878/issues\nUpdateFrequency: Data will be added as methodology improves or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nanopore_human_wgs/index.json", "https://registry.opendata.aws/nanopore/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nanopore_human_wgs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nanopore_human_wgs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nanopore_human_wgs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_Landsat/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=Landsat/: NASA NEX: Landsat GLS (Global Land Survey)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=Landsat/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Landsat GLS (Global Land Survey)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_Landsat/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_Landsat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_Landsat&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_Landsat"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_LOCA/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=LOCA/: NASA NEX: Localized Constructed Analogs (LOCA)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=LOCA/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Localized Constructed Analogs (LOCA)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_LOCA/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_LOCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_LOCA&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_LOCA"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_MODIS/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=MODIS/: NASA NEX: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=MODIS/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_MODIS/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_MODIS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_MODIS&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_MODIS"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_DCP30/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-DCP30/: NASA NEX: Downscaled Climate Projections (NEX-DCP30)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-DCP30/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Downscaled Climate Projections (NEX-DCP30)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_DCP30/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_DCP30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_DCP30&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_DCP30"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_GDDP/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-GDDP/: NASA NEX: Global Daily Downscaled Projections (NEX-GDDP)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-GDDP/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Global Daily Downscaled Projections (NEX-GDDP)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_GDDP/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_GDDP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_GDDP&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_GDDP"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gefs_pds/", "public", "File Names from the AWS S3 noaa-gefs-pds Bucket: NOAA Global Ensemble Forecast System (GEFS): Project data files", "This dataset has file information from the AWS S3 noaa-gefs-pds bucket at https://noaa-gefs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Ensemble Forecast System (GEFS)\nName2: Project data files\nDescription: The Global Ensemble Forecast System (GEFS), previously known as the GFS Global ENSemble (GENS), is a weather forecast model made up of 21 separate forecasts, or ensemble members. The National Centers for Environmental Prediction (NCEP) started the GEFS to address the nature of uncertainty in weather observations, which is used to initialize weather forecast models. The GEFS attempts to quantify the amount of uncertainty in a forecast by generating an ensemble of multiple forecasts, each minutely different, or perturbed, from the original observations. With global coverage, GEFS is produced four times a day with weather forecasts going out to 16 days.\n\nDocumentation: https://docs.opendata.aws/noaa-gefs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GEFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GEFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gefs_pds/index.json", "https://registry.opendata.aws/noaa-gefs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gefs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gefs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gefs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_bdp_pds/", "public", "File Names from the AWS S3 noaa-gfs-bdp-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 GFS data", "This dataset has file information from the AWS S3 noaa-gfs-bdp-pds bucket at https://noaa-gfs-bdp-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_bdp_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_bdp_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_bdp_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_bdp_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_pds/", "public", "File Names from the AWS S3 noaa-gfs-pds Bucket: Unidata NOAA Global Forecast System (GFS) Model: A rolling four-week archive of 0.25 degree GFS data", "This dataset has file information from the AWS S3 noaa-gfs-pds bucket at https://noaa-gfs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Unidata NOAA Global Forecast System (GFS) Model\nName2: A rolling four-week archive of 0.25 degree GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks.\n\nDocumentation: https://docs.opendata.aws/noaa-gfs-pds/readme.html\nContact: https://www.ncdc.noaa.gov/contact\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_pds/index.json", "https://registry.opendata.aws/noaa-gfs-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfspara_pds/", "public", "File Names from the AWS S3 noaa-gfspara-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 FV3-based parallel version of the GFS", "This dataset has file information from the AWS S3 noaa-gfspara-pds bucket at https://noaa-gfspara-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 FV3-based parallel version of the GFS\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfspara_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfspara_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfspara_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfspara_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghcn_pds/", "public", "File Names from the AWS S3 noaa-ghcn-pds Bucket: NOAA Global Historical Climatology Network Daily (GHCN-D): Project data files", "This dataset has file information from the AWS S3 noaa-ghcn-pds bucket at https://noaa-ghcn-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Daily (GHCN-D)\nName2: Project data files\nDescription: Global Historical Climatology Network - Daily is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://docs.opendata.aws/noaa-ghcn-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncdc.noaa.gov/ghcn-daily-description). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghcn_pds/index.json", "https://registry.opendata.aws/noaa-ghcn/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghcn_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghcn_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghcn_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghe_pds/", "public", "File Names from the AWS S3 noaa-ghe-pds Bucket: NOAA Global Hydro Estimator (GHE): Project data files", "This dataset has file information from the AWS S3 noaa-ghe-pds bucket at https://noaa-ghe-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Hydro Estimator (GHE)\nName2: Project data files\nDescription: Global Hydro-Estimator provides a global mosaic imagery of rainfall estimates from multi-geostationary satellites, which currently includes GOES-16, GOES-15, Meteosat-8, Meteosat-11 and Himawari-8. The GHE products include: Instantaneous rain rate, 1 hour, 3 hour, 6 hour, 24 hour and also multi-day rainfall accumulation.\n\nDocumentation: https://www.ospo.noaa.gov/Products/atmosphere/ghe/index.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 15 minute-instantaneous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghe_pds/index.json", "https://registry.opendata.aws/noaa-ghe/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghe_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghe_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghe_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_global_hourly_pds/", "public", "File Names from the AWS S3 noaa-global-hourly-pds Bucket: NOAA Global Historical Climatology Network Hourly (GHCN-H): Project data files", "This dataset has file information from the AWS S3 noaa-global-hourly-pds bucket at https://noaa-global-hourly-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Hourly (GHCN-H)\nName2: Project data files\nDescription: Global Historical Climatology Network - Hourly is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: daily (Manually)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_global_hourly_pds/index.json", "https://registry.opendata.aws/noaa-ghcnh/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_global_hourly_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_global_hourly_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_global_hourly_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3NoaaGoes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nUse ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browser the files in buckets. This dataset is a solution to that problem for this bucket.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3NoaaGoes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3NoaaGoes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3NoaaGoes16&showErrors=false&email=", "NOAA", "awsS3NoaaGoes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket: GOES on AWS: GOES-16 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-16 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes16&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes17/", "public", "File Names from the AWS S3 noaa-goes17 Bucket: GOES on AWS: GOES-17 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes17 bucket at https://noaa-goes17.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-17 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes17/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes17&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes17"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_hrrr_pds/", "public", "File Names from the AWS S3 noaa-hrrr-pds Bucket: NOAA High-Resolution Rapid Refresh (HRRR) Model: A rolling one-week archive of HRRR data.", "This dataset has file information from the AWS S3 noaa-hrrr-pds bucket at https://noaa-hrrr-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA High-Resolution Rapid Refresh (HRRR) Model\nName2: A rolling one-week archive of HRRR data.\nDescription: The HRRR is a NOAA real-time 3-km resolution, hourly updated, cloud-resolving, convection-allowing atmospheric model, initialized by 3km grids with 3km radar assimilation. Radar data is assimilated in the HRRR every 15 min over a 1-h period adding further detail to that provided by the hourly data assimilation from the 13km radar-enhanced Rapid Refresh.\n\nDocumentation: https://docs.opendata.aws/noaa-hrrr-pds/readme.html\nContact: https://rapidrefresh.noaa.gov/hrrr/\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_hrrr_pds/index.json", "https://registry.opendata.aws/noaa-hrrr-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_hrrr_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_hrrr_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_hrrr_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_isd_pds/", "public", "File Names from the AWS S3 noaa-isd-pds Bucket: NOAA Integrated Surface Database (ISD): Project data files", "This dataset has file information from the AWS S3 noaa-isd-pds bucket at https://noaa-isd-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Integrated Surface Database (ISD)\nName2: Project data files\nDescription: The Integrated Surface Database (ISD) consists of global hourly and synoptic observations compiled from numerous sources into a gzipped fixed width format. ISD was developed as a joint activity within Asheville's Federal Climate Complex. The database includes over 35,000 stations worldwide, with some having data as far back as 1901, though the data show a substantial increase in volume in the 1940s and again in the early 1970s. Currently, there are over 14,000 \"active\" stations updated daily in the database. The total uncompressed data volume is around 600 gigabytes; however, it continues to grow as more data are added. ISD includes numerous parameters such as wind speed and direction, wind gust, temperature, dew point, cloud data, sea level pressure, altimeter setting, station pressure, present weather, visibility, precipitation amounts for various time periods, snow depth, and various other elements as observed by each station.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_isd_pds/index.json", "https://registry.opendata.aws/noaa-isd/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_isd_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_isd_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_isd_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nexrad_level2/", "public", "File Names from the AWS S3 noaa-nexrad-level2 Bucket: NEXRAD on AWS: NEXRAD Level II archive data", "This dataset has file information from the AWS S3 noaa-nexrad-level2 bucket at https://noaa-nexrad-level2.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II archive data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nexrad_level2/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nexrad_level2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nexrad_level2&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nexrad_level2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_pds/", "public", "File Names from the AWS S3 noaa-nwm-pds Bucket: NOAA National Water Model Short-Range Forecast: A rolling four week archive of NWM data.", "This dataset has file information from the AWS S3 noaa-nwm-pds bucket at https://noaa-nwm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Short-Range Forecast\nName2: A rolling four week archive of NWM data.\nDescription: The National Water Model (NWM) is a water resources model that simulates and forecasts water budget variables, including snowpack, evapotranspiration, soil moisture and streamflow, over the entire continental United States (CONUS). The model, launched in August 2016, is designed to improve the ability of NOAA to meet the needs of its stakeholders (forecasters, emergency managers, reservoir operators, first responders, recreationists, farmers, barge operators, and ecosystem and floodplain managers) by providing expanded accuracy, detail, and frequency of water information. It is operated by NOAA\u2019s Office of Water Prediction. This bucket contains a four-week rollover of the Short Range Forecast model output and the corresponding forcing data for the model. The model is forced with meteorological data from the High Resolution Rapid Refresh (HRRR) and the Rapid Refresh (RAP) models. The Short Range Forecast configuration cycles hourly and produces hourly deterministic forecasts of streamflow and hydrologic states out to 18 hours.\n\nDocumentation: https://docs.opendata.aws/noaa-nwm-pds/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_pds/index.json", "https://registry.opendata.aws/noaa-nwm-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_retro_v2_0_pds/", "public", "File Names from the AWS S3 noaa-nwm-retro-v2.0-pds Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 2.0.", "This dataset has file information from the AWS S3 noaa-nwm-retro-v2.0-pds bucket at https://noaa-nwm-retro-v2.0-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 2.0.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\n... (4 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_retro_v2_0_pds/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_retro_v2_0_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_retro_v2_0_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_retro_v2_0_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ofs_pds/", "public", "File Names from the AWS S3 noaa-ofs-pds Bucket: NOAA Operational Forecast System (OFS): Project data files", "This dataset has file information from the AWS S3 noaa-ofs-pds bucket at https://noaa-ofs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Operational Forecast System (OFS)\nName2: Project data files\nDescription: The Operational Forecast System (OFS) has been developed to serve the maritime user community. OFS was developed in a joint project of the NOAA/National Ocean Service (NOS)/Office of Coast Survey, the NOAA/NOS/Center for Operational Oceanographic Products and Services (CO-OPS), and the NOAA/National Weather Service (NWS)/National Centers for Environmental Prediction (NCEP) Central Operations (NCO). OFS generates water level, water current, water temperature, water salinity (except for the Great Lakes) and wind conditions nowcast and forecast guidance four times per day.\n\nDocumentation: https://docs.opendata.aws/noaa-ofs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA OFS site](https://tidesandcurrents.noaa.gov/models.html). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight and generates 6-hour nowcasts and 48-hour forecast guidance\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ofs_pds/index.json", "https://registry.opendata.aws/noaa-ofs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ofs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ofs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ofs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/", "public", "File Names from the AWS S3 nrel-pds-wtk Bucket with prefix=wtk-techno-economic/pywtk-data/: NREL Wind Integration National Dataset on AWS: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format", "This dataset has file information from the AWS S3 nrel-pds-wtk bucket at https://nrel-pds-wtk.s3.us-west-2.amazonaws.com/ with prefix=wtk-techno-economic/pywtk-data/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NREL Wind Integration National Dataset on AWS\nName2: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format\nDescription: The [Wind Integration National Dataset (WIND)](https://www.nrel.gov/grid/wind-toolkit.html) is an update and expansion of the Eastern Wind Integration Data Set and Western Wind Integration Data Set. It supports the next generation of wind integration studies.\n\nDocumentation: https://www.nrel.gov/grid/wind-toolkit.html\nContact: wind-toolkit@nrel.gov\nManagedBy: [National Renewable Energy Laboratory](https://www.nrel.gov/)\nUpdateFrequency: As Needed\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/index.json", "https://registry.opendata.aws/nrel-pds-wtk/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nwm_archive/", "public", "File Names from the AWS S3 nwm-archive Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 1.2.", "This dataset has file information from the AWS S3 nwm-archive bucket at https://nwm-archive.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 1.2.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nwm_archive/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nwm_archive.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nwm_archive&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nwm_archive"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nyc_tlc/", "public", "File Names from the AWS S3 nyc-tlc Bucket: New York City Taxi and Limousine Commission (TLC) Trip Record Data: CSV files containing NYC TLC trip data.", "This dataset has file information from the AWS S3 nyc-tlc bucket at https://nyc-tlc.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: New York City Taxi and Limousine Commission (TLC) Trip Record Data\nName2: CSV files containing NYC TLC trip data.\nDescription: Data of trips taken by taxis and for-hire vehicles in New York City.\n\nDocumentation: http://www.nyc.gov/html/tlc/html/about/trip_record_data.shtml\nContact: research@tlc.nyc.gov\nUpdateFrequency: As soon as new data is available to be shared publicly.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nyc_tlc/index.json", "https://registry.opendata.aws/nyc-tlc-trip-records-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nyc_tlc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nyc_tlc&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nyc_tlc"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_oicr_icgc_meta_metadata/", "public", "File Names from the AWS S3 oicr.icgc.meta Bucket with prefix=metadata/: ICGC on AWS: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README", "This dataset has file information from the AWS S3 oicr.icgc.meta bucket at https://oicr.icgc.meta.s3.us-east-1.amazonaws.com/ with prefix=metadata/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ICGC on AWS\nName2: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README\nDescription: The International Cancer Genome Consortium (ICGC) coordinates projects with the common aim of accelerating research into the causes and control of cancer. The PanCancer Analysis of Whole Genomes (PCAWG) study is an international collaboration to identify common patterns of mutation in whole genomes from ICGC. More than 2,400 consistently analyzed genomes corresponding to over 1,100 unique ICGC donors are now freely available on Amazon S3 to credentialed researchers subject to ICGC data sharing policies.\n\nDocumentation: https://dcc.icgc.org/icgc-in-the-cloud/aws\nContact: dcc-support@icgc.org\nUpdateFrequency: New data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_oicr_icgc_meta_metadata/index.json", "https://registry.opendata.aws/icgc/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_oicr_icgc_meta_metadata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_oicr_icgc_meta_metadata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_oicr_icgc_meta_metadata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ooni_data/", "public", "File Names from the AWS S3 ooni-data Bucket: Open Observatory of Network Interference: S3 bucket with data", "This dataset has file information from the AWS S3 ooni-data bucket at https://ooni-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open Observatory of Network Interference\nName2: S3 bucket with data\nDescription: A free software, global observation network for detecting censorship, surveillance and traffic manipulation on the internet.\n\nDocumentation: https://ooni.torproject.org/about/\nContact: https://ooni.torproject.org/get-involved/\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ooni_data/index.json", "https://registry.opendata.aws/ooni/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ooni_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ooni_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ooni_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openaq_fetches/", "public", "File Names from the AWS S3 openaq-fetches Bucket: OpenAQ: Minutely CSVs of global air quality fetched from sources all over the world", "This dataset has file information from the AWS S3 openaq-fetches bucket at https://openaq-fetches.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenAQ\nName2: Minutely CSVs of global air quality fetched from sources all over the world\nDescription: Global, aggregated physical air quality data from public data sources provided by government, research-grade and other sources. These awesome groups do the hard work of measuring these data and publicly sharing them, and our community makes them more universally-accessible to both humans and machines.\n\nDocumentation: https://openaq.org\nContact: info@openaq.org\nManagedBy: [OpenAQ](https://openaq.org)\nUpdateFrequency: Minutely\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openaq_fetches/index.json", "https://registry.opendata.aws/openaq/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openaq_fetches.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openaq_fetches&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openaq_fetches"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_opencitymodel/", "public", "File Names from the AWS S3 opencitymodel Bucket: Open City Model (OCM): Project data files", "This dataset has file information from the AWS S3 opencitymodel bucket at https://opencitymodel.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open City Model (OCM)\nName2: Project data files\nDescription: Open City Model is an initiative to provide cityGML data for all the buildings in the United States. By using other open datasets in conjunction with our own code and algorithms it is our goal to provide 3D geometries for every US building.\n\nDocumentation: https://github.com/opencitymodel/opencitymodel\nContact: https://github.com/opencitymodel/opencitymodel#contact\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_opencitymodel/index.json", "https://registry.opendata.aws/opencitymodel/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_opencitymodel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_opencitymodel&showErrors=false&email=", "Amazon Web Services", "awsS3Files_opencitymodel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openneuro_org/", "public", "File Names from the AWS S3 openneuro.org Bucket: OpenNeuro: All datasets", "This dataset has file information from the AWS S3 openneuro.org bucket at https://openneuro.org.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenNeuro\nName2: All datasets\nDescription: OpenNeuro is a database of openly-available brain imaging data. The data are shared according to a Creative Commons CC0 license, providing a broad range of brain imaging data to researchers and citizen scientists alike. The database primarily focuses on functional magnetic resonance imaging (fMRI) data, but also includes other imaging modalities including structural and diffusion MRI, electroencephalography (EEG), and magnetoencephalograpy (MEG). OpenfMRI is a project of the [Center for Reproducible Neuroscience at Stanford University](http://reproducibility.stanford.edu). Development of the OpenNeuro resource has been funded by the National Science Foundation, National Institute of Mental Health, National Institute on Drug Abuse, and the Laura and John Arnold Foundation.\n\nDocumentation: http://openneuro.org\nContact: Support form at https://openneuro.org\nUpdateFrequency: New datasets deposited every 4-6 days\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openneuro_org/index.json", "https://registry.opendata.aws/openneuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openneuro_org.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openneuro_org&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openneuro_org"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osm_pds/", "public", "File Names from the AWS S3 osm-pds Bucket: OpenStreetMap on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 osm-pds bucket at https://osm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap on AWS\nName2: Imagery and metadata\nDescription: OSM is a free, editable map of the world, created and maintained by volunteers. Regular OSM data archives are made available in Amazon S3.\n\nDocumentation: https://docs.opendata.aws/osm-pds/readme.html\nContact: https://github.com/mojodna/osm-pds-pipelines/issues\nUpdateFrequency: Data is updated weekly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osm_pds/index.json", "https://registry.opendata.aws/osm/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osmlr/", "public", "File Names from the AWS S3 osmlr Bucket: OpenStreetMap Linear Referencing: Manifest and data files", "This dataset has file information from the AWS S3 osmlr bucket at https://osmlr.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap Linear Referencing\nName2: Manifest and data files\nDescription: OSMLR a linear referencing system built on top of OpenStreetMap. OSM has great information about roads around the world and their interconnections, but it lacks the means to give a stable identifier to a stretch of roadway. OSMLR provides a stable set of numerical IDs for every 1 kilometer stretch of roadway around the world. In urban areas, OSMLR IDs are attached to each block of roadways between significant intersections.\n\nDocumentation: https://github.com/opentraffic/osmlr/blob/master/docs/intro.md\nContact: https://github.com/opentraffic/osmlr/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osmlr/index.json", "https://registry.opendata.aws/osmlr/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osmlr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osmlr&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osmlr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_qiime2_data/", "public", "File Names from the AWS S3 qiime2-data Bucket: QIIME 2 User Tutorial Datasets: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs", "This dataset has file information from the AWS S3 qiime2-data bucket at https://qiime2-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: QIIME 2 User Tutorial Datasets\nName2: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs\nDescription: QIIME 2 is a powerful, extensible, and decentralized microbiome analysis package with a focus on data and analysis transparency. QIIME 2 enables researchers to start an analysis with raw DNA sequence data and finish with publication-quality figures and statistical results. This dataset contains the user docs (and related datasets) for QIIME 2.\n\nDocumentation: https://docs.qiime2.org\nContact: https://forum.qiime2.org\nManagedBy: The QIIME 2 Development Team\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_qiime2_data/index.json", "https://registry.opendata.aws/qiime2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_qiime2_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_qiime2_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_qiime2_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_safecast_opendata_public_us_east_1/", "public", "File Names from the AWS S3 safecast-opendata-public-us-east-1 Bucket: Safecast: Bulk exports of air and radiation measurements", "This dataset has file information from the AWS S3 safecast-opendata-public-us-east-1 bucket at https://safecast-opendata-public-us-east-1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Safecast\nName2: Bulk exports of air and radiation measurements\nDescription: An ongoing collection of radiation and air quality measurements taken by devices involved in the Safecast project.\n\nDocumentation: https://github.com/Safecast/safecastapi/wiki/Data-Sets\nContact: https://groups.google.com/forum/#!forum/safecast-devices\nManagedBy: [Safecast](https://safecast.org/)\nUpdateFrequency: Continuous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_safecast_opendata_public_us_east_1/index.json", "https://registry.opendata.aws/safecast/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_safecast_opendata_public_us_east_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_safecast_opendata_public_us_east_1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_safecast_opendata_public_us_east_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s1_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s1-l1c/: Sentinel-1: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s1-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C\nDescription: [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1) is a pair of European radar imaging (SAR) satellites launched in 2014 and 2016. Its 6 days revisit cycle and ability to observe through clouds makes it perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. GRD data is available globally since January 2017.\n\nDocumentation: https://roda.sentinel-hub.com/sentinel-s1-l1c/GRD/readme.html\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s1_l1c/index.json", "https://registry.opendata.aws/sentinel-1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s1_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s1_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s1_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l1c/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l1c/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l2a/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l2a/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l2a/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l2a/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l2a&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l2a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel1_slc_seasia_pds/", "public", "File Names from the AWS S3 sentinel1-slc-seasia-pds Bucket: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan", "This dataset has file information from the AWS S3 sentinel1-slc-seasia-pds bucket at https://sentinel1-slc-seasia-pds.s3.ap-southeast-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan\nName2: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan\nDescription: The S1 Single Look Complex (SLC) dataset contains Synthetic Aperture Radar (SAR) data in the C-Band wavelength. The SAR sensors are installed on a two-satellite (Sentinel-1A and Sentinel-1B) constellation orbiting the Earth with a combined revisit time of six days, operated by the European Space Agency. The S1 SLC data are a Level-1 product that collects radar amplitude and phase information in all-weather, day or night conditions, which is ideal for studying natural hazards and emergency response, land applications, oil spill monitoring, sea-ice conditions, and associated climate change effects.\n\nDocumentation: https://github.com/earthobservatory/sentinel1-opds/\nContact: https://github.com/earthobservatory/sentinel1-opds/\nManagedBy: [Earth Observatory of Singapore, Nanyang Technological University](https://earthobservatory.sg)\nUpdateFrequency: S1 SLC data for the region of interest will be updated regularly, as it becomes available on the Alaska Satellite Facility endpoint.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel1_slc_seasia_pds/index.json", "https://registry.opendata.aws/sentinel1-slc-seasia-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel1_slc_seasia_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel1_slc_seasia_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel1_slc_seasia_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_silo_open_data/", "public", "File Names from the AWS S3 silo-open-data Bucket: SILO climate data on AWS: SILO open data", "This dataset has file information from the AWS S3 silo-open-data bucket at https://silo-open-data.s3.ap-southeast-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SILO climate data on AWS\nName2: SILO open data\nDescription: [SILO](https://www.longpaddock.qld.gov.au/silo) is a database of Australian [climate data](https://www.longpaddock.qld.gov.au/silo/about/climate-variables) from 1889 to the present. It provides continuous, daily time-step [data products](https://www.longpaddock.qld.gov.au/silo/about/data-products) in ready-to-use [formats](https://www.longpaddock.qld.gov.au/silo/about/file-formats-and-samples) for research and operational applications. Gridded SILO data in annual NetCDF format are on AWS. Point data are available from the [SILO website](https://www.longpaddock.qld.gov.au/silo/).\n\nDocumentation: https://www.longpaddock.qld.gov.au/silo/gridded-data\nContact: https://www.longpaddock.qld.gov.au/silo/contact-us\nManagedBy: Queensland Government\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_silo_open_data/index.json", "https://registry.opendata.aws/silo/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_silo_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_silo_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_silo_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_softwareheritage/", "public", "File Names from the AWS S3 softwareheritage Bucket: Software Heritage Graph Dataset: Software Heritage Graph Dataset", "This dataset has file information from the AWS S3 softwareheritage bucket at https://softwareheritage.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Software Heritage Graph Dataset\nName2: Software Heritage Graph Dataset\nDescription: [Software Heritage](https://www.softwareheritage.org/) is the largest existing public archive of software source code and accompanying development history. The Software Heritage Graph Dataset is a fully deduplicated Merkle DAG representation of the Software Heritage archive.\n\nDocumentation: https://wiki.softwareheritage.org/wiki/Graph_Dataset_on_Amazon_Athena\nContact: swh-devel@inria.fr\nUpdateFrequency: Data is updated yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_softwareheritage/index.json", "https://registry.opendata.aws/software-heritage/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_softwareheritage.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_softwareheritage&showErrors=false&email=", "Amazon Web Services", "awsS3Files_softwareheritage"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_spacenet_dataset/", "public", "File Names from the AWS S3 spacenet-dataset Bucket: SpaceNet: Imagery and metadata in a S3 bucket", "This dataset has file information from the AWS S3 spacenet-dataset bucket at https://spacenet-dataset.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SpaceNet\nName2: Imagery and metadata in a S3 bucket\nDescription: SpaceNet, launched in August 2016 as an open innovation project offering a repository of freely available imagery with co-registered map features. Before SpaceNet, computer vision researchers had minimal options to obtain free, precision-labeled, and high-resolution satellite imagery. Today, SpaceNet hosts datasets developed by its own team, along with data sets from projects like IARPA\u2019s Functional Map of the World (fMoW).\n\nDocumentation: https://spacenetchallenge.github.io\nContact: https://github.com/SpaceNetChallenge/utilities/issues\nManagedBy: [SpaceNet](https://spacenet.ai/)\nUpdateFrequency: New imagery and features are added quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_spacenet_dataset/index.json", "https://registry.opendata.aws/spacenet/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_spacenet_dataset.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_spacenet_dataset&showErrors=false&email=", "Amazon Web Services", "awsS3Files_spacenet_dataset"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_unidata_nexrad_level2_chunks/", "public", "File Names from the AWS S3 unidata-nexrad-level2-chunks Bucket: NEXRAD on AWS: NEXRAD Level II real-time data", "This dataset has file information from the AWS S3 unidata-nexrad-level2-chunks bucket at https://unidata-nexrad-level2-chunks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II real-time data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_unidata_nexrad_level2_chunks/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_unidata_nexrad_level2_chunks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_unidata_nexrad_level2_chunks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_unidata_nexrad_level2_chunks"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_usgs_lidar_public/", "public", "File Names from the AWS S3 usgs-lidar-public Bucket: USGS 3DEP LiDAR Point Clouds: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.", "This dataset has file information from the AWS S3 usgs-lidar-public bucket at https://usgs-lidar-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: USGS 3DEP LiDAR Point Clouds\nName2: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.\nDescription: The goal of the [USGS 3D Elevation Program ](https://www.usgs.gov/core-science-systems/ngp/3dep) (3DEP) is to collect elevation data in the form of light detection and ranging (LiDAR) data over the conterminous United States, Hawaii, and the U.S. territories, with data acquired over an 8-year period. This dataset provides two realizations of the 3DEP point cloud data. The first resource is a public access organization provided in [Entwine Point Tiles](https://entwine.io/entwine-point-tile.html) format, which a lossless, full-density, streamable octree based on [LASzip](https://laszip.org) (LAZ) encoding. The second resource is a [Requester Pays](https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html) of the same data in LAZ (Compressed LAS) format. Resource names in both buckets correspond to the USGS project names.\n\nDocumentation: https://github.com/hobu/usgs-lidar/\nContact: https://github.com/hobu/usgs-lidar\nManagedBy: [Hobu, Inc.](https://hobu.co)\nUpdateFrequency: Periodically\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_usgs_lidar_public/index.json", "https://registry.opendata.aws/usgs-lidar/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_usgs_lidar_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_usgs_lidar_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_usgs_lidar_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_web_language_models/", "public", "File Names from the AWS S3 web-language-models Bucket: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl): Parallel Corpora to/from English for all official EU languages", "This dataset has file information from the AWS S3 web-language-models bucket at https://web-language-models.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl)\nName2: Parallel Corpora to/from English for all official EU languages\nDescription: ParaCrawl is a set of large parallel corpora to/from English for all official EU languages by a broad web crawling effort. State-of-the-art methods are applied for the entire processing chain from identifying web sites with translated text all the way to collecting, cleaning and delivering parallel corpora that are ready as training data for CEF.AT and translation memories for DG Translation.\n\nDocumentation: https://paracrawl.eu/releases.html\nContact: For questions regarding the datasets contact Kenneth Heafield, email kheafiel@inf.ed.ac.uk. For reporting any issues about bitextor pipeline visit https://github.com/bitextor/bitextor/issues.\nManagedBy: [ParaCrawl](https://paracrawl.eu)\nUpdateFrequency: New data is added according to ParaCrawl release schedule.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_web_language_models/index.json", "https://registry.opendata.aws/paracrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_web_language_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_web_language_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_web_language_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_xiph_media/", "public", "File Names from the AWS S3 xiph-media Bucket: Xiph.Org Test Media: Video and imagery data", "This dataset has file information from the AWS S3 xiph-media bucket at https://xiph-media.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Xiph.Org Test Media\nName2: Video and imagery data\nDescription: Uncompressed video used for video compression and video processing research.\n\nDocumentation: https://media.xiph.org/aws.html\nContact: Thomas Daede tdaede@xiph.org\nUpdateFrequency: New videos are added when contributors submit them.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_xiph_media/index.json", "https://registry.opendata.aws/xiph-media/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_xiph_media.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_xiph_media&showErrors=false&email=", "Amazon Web Services", "awsS3Files_xiph_media"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ycb_benchmarks/", "public", "File Names from the AWS S3 ycb-benchmarks Bucket: Yale-CMU-Berkeley (YCB) Object and Model Set: Project data files", "This dataset has file information from the AWS S3 ycb-benchmarks bucket at https://ycb-benchmarks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Yale-CMU-Berkeley (YCB) Object and Model Set\nName2: Project data files\nDescription: This project primarily aims to facilitate performance benchmarking in robotics research. The dataset provides mesh models, RGB, RGB-D and point cloud images of over 80 objects. The physical objects are also available via the [YCB benchmarking project](http://www.ycbbenchmarks.com/). The data are collected by two state of the art systems: UC Berkley's scanning rig and the Google scanner. The UC Berkley's scanning rig data provide meshes generated with Poisson reconstruction, meshes generated with volumetric range image integration, textured versions of both meshes, Kinbody files for using the meshes with OpenRAVE, 600 High-resolution RGB images, 600 RGB-D images, and 600 point cloud images for each object. The Google scanner data provides 3 meshes with different resolutions (16k, 64k, and 512k polygons), textured versions of each mesh, Kinbody files for using the meshes with OpenRAVE.\n\nDocumentation: http://www.ycbbenchmarks.com/\nContact: bcalli@wpi.edu\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ycb_benchmarks/index.json", "https://registry.opendata.aws/ycb-benchmarks/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ycb_benchmarks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ycb_benchmarks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ycb_benchmarks"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the June 2020 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.graph", "", "", "public", "GLOBEC NEP Vertical Plankton Tow (VPT) Data, 1997-2001", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nCalifornia Current Program\nVertical Plankton Tow (VPT) Data\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10181&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/vpt%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/vpt.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ncast_no (Cast Number Within the Cruise)\nstation_id\nabund_m3 (Abundance, count m-3)\ncomments\ncounter_id\nd_n_flag (Day/Night Flag)\ngear_area (Mouth Area of Net, m2)\ngear_mesh (Net's Mesh Size, mm)\ngear_type\ngenus_species\nlife_stage\nlocal_code\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecVpt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecVpt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecVpt/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecVpt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecVpt&showErrors=false&email=", "GLOBEC", "erdGlobecVpt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://usgodae.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, the EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\nBeach Monitoring Quality Assurance Project Plan (CWBMONQAPP002):\nhttps://www.pacioos.hawaii.edu/wp-content/uploads/2016/08/Beach_Monitoring_QAPP_CWBMONQAPP002_120507.pdf\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwb_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwb_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwb_water_quality/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/cwb_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwb_water_quality&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "cwb_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.graph", "", "", "public", "HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii", "The Hawaii Institute of Marine Biology (HIMB) automatic weather station (AWS) records hourly measurements of precipitation, air temperature, wind speed and direction, and irradiance. Sensors include an Eppley 295-385 nm ultraviolet (UV) radiometer, a LiCor 200SZ Pyranometer, and a LiCor Quantameter (400-700 nm). The sensors are located on the roof of HIMB's Coral Reef Ecology Laboratory (Point Lab) on Moku o Loe (Coconut Island) in Kaneohe Bay on the windward (eastern) coast of Oahu in Hawaii. An accompanying sea water temperature sensor is located less than 10 m offshore of the weather station at a shallow depth of approximately 1 m.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HIMB: HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nsea_water_temperature (water temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nwind_from_direction_std (standard deviation of wind direction (processed), degrees)\nrainfall_amount (total rainfall (processed), mm)\nshortwave_radiation (downwelling shortwave radiation (processed), W/m2)\nultraviolet_radiation (ultraviolet radiation (processed), W/m2)\nphotosynthetic_radiation (photosynthetically active radiation (processed), umol m-2 s-1)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_atn (QARTOD Attenuated Signal Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (139 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HIMB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HIMB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HIMB/index.json", "https://www.pacioos.hawaii.edu/weather/obs-mokuoloe/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HIMB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HIMB&showErrors=false&email=", "Hawaii Institute of Marine Biology (HIMB)", "AWS-HIMB"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.graph", "", "", "public", "Hui O Ka Wai Ola Water Quality Data", "The goal of the Hui O Ka Wai Ola (Association Of The Living Waters) citizen-science based water quality program is to increase the capacity for monitoring water quality in Maui coastal waters by generating reliable data to assess long-term water-quality conditions and detect temporal trends. These data augment the data produced by the Hawaii Department of Health (DOH) Clean Water Branch (CWB) beach monitoring program on Maui.\n \nData are collected and analyzed every two or three weeks for physical and chemical parameters, including ocean salinity, pH, temperature, organic nutrients (nitrogen and phosphorous compounds), dissolved oxygen (DO), and total suspended sediment (TSS). Some water samples are immediately tested at mobile labs while others are processed for testing at University of Hawaii and/or other labs.\n \nUsers of these data should cite the following publication:\n \nFalinski, Kim, Dana Reed, Tova Callender, Emily Fielding, Robin Newbold, and Alana Yurkanin. (2018). Hui O Ka Wai Ola Water Quality Data [Data set]. Zenodo. \"http://doi.org/10.5281/zenodo.1173717\"\n \nFor further information, please visit:\nhttps://www.huiokawaiola.com\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nlocation_id (sampling site identifier)\nlocation_name\nsample_id (sample identifier)\nsession_id (sampling session identifier)\nwater_temperature (Celsius)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hui_water_quality/index.json", "https://www.huiokawaiola.com", "http://upwell.pfeg.noaa.gov/erddap/rss/hui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hui_water_quality&showErrors=false&email=", "Hui O Ka Wai Ola", "hui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitored water quality at several beaches across the island of Maui in the State of Hawaii during the years 2010-2016. This community-based monitoring effort provided valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites were also monitored for harmful bacteria levels of Enterococcus through 2014-06-26. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours.\n\nData were managed through an online repository, the Coral Reef Monitoring Data Portal (now defunct), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection was coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/maui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/maui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/maui_water_quality/index.json", "https://coral.org/maui/", "http://upwell.pfeg.noaa.gov/erddap/rss/maui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=maui_water_quality&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "maui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys. See\nhttps://www.ndbc.noaa.gov/measdes.shtml for a description of the measurements.\n\nThe source data from NOAA NDBC has different column names, different units,\nand different missing values in different files, and other problems\n(notably, lots of rows with duplicate or different values for the same time\npoint). This dataset is a standardized, reformatted, and lightly edited\nversion of that source data, created by NOAA NMFS SWFSC ERD (email:\nerd.data at noaa.gov). Before 2020-01-29, this dataset only had the data\nthat was closest to a given hour, rounded to the nearest hour. Now, this\ndataset has all of the data available from NDBC with the original time\nvalues. If there are multiple source rows for a given buoy for a given\ntime, only the row with the most non-NaN data values is kept. If there is\na gap in the data, a row of missing values is inserted (which causes a nice\ngap when the data is graphed). Also, some impossible data values are\nremoved, but this data is not perfectly clean. This dataset is now updated\nevery 5 minutes.\n\nThis dataset has both historical data (quality controlled, before\n2020-06-01T00:00:00Z) and near real time data (less quality controlled,\nwhich may change at any time, from 2020-06-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Identifier)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.graph", "", "", "public", "NEFSC Continuous Plankton Recorder", "A summary for the data\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ncruise\nsample\nlatitude (degrees_north)\nlongitude (degrees_east)\nphyto_color_indx (Phytoplankton Color Index)\nmarmap_tax_code (Marmap Taxonomic Code)\nmarmap_stage_code\nabundance (per 100 cubic meters)\nlife_stage\ntaxonomic_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/wocecpr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/wocecpr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/wocecpr/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "http://upwell.pfeg.noaa.gov/erddap/rss/wocecpr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=wocecpr&showErrors=false&email=", "NEFSC", "wocecpr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "", "public", "North Pacific High, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.graph", "", "", "public", "OSMC Argo Profile data", "OSMC Argo Profile data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\norganization_name\ncountry_name\nplatform_type_name\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nparameter_name\ndaily_obs_count\nobservation_depth\nobservation_value\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_PROFILERS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_PROFILERS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_PROFILERS/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_PROFILERS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_PROFILERS&showErrors=false&email=", "OSMC", "OSMC_PROFILERS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.graph", "", "", "public", "OSMC normalized observations from GTS", "OSMC normalized In-situ Real time GTS data\n\ncdm_data_type = Point\nVARIABLES:\nPLATFORM_CODE (Station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform\nparameter\nOBSERVATION_VALUE\nOBSERVATION_DEPTH\nCOUNTRY_NAME\norganization_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_Points_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_Points_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_Points/index.json", "https://www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_Points.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_Points&showErrors=false&email=", "OSMC", "OSMC_Points"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001.graph", "", "", "public", "PacIOOS Beach Camera 001: Waikiki, Oahu, Hawaii", "A digital camera on top of the Sheraton Waikiki hotel was used to photograph the shoreline of Waikiki beach along the South Shore of the island of Oahu in the State of Hawaii. The oblique camera view presented here captures the shoreline leading southeast towards Diamond Head crater. It operated for over 4.5 years between February 5, 2009 and October 13, 2013. Capturing hourly snapshots at a set vantage point during the local daytime hours of 6:00 AM or 7:00 AM to 5:00 PM, these images are useful for tracking beach dynamics such as wave run-up, sand movement, and turbidity plumes over time. The camera was mounted on top of a 3 meter wall extending above the roof surface for a total height of 93 meters above ground level or 96 meters above mean sea level. See also BEACHCAM-002 for an alternate camera view from the same location pointing directly downwards.\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (m)\naboveGround (Height, m)\nurl\nname (File Name)\nsize (bytes)\nfileType (File Type)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/BEACHCAM-001_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/BEACHCAM-001_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/BEACHCAM-001/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/BEACHCAM-001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=BEACHCAM-001&showErrors=false&email=", "University of Hawaii", "BEACHCAM-001"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_4"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_2/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_2&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_6/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_6&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_7/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_7&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_7"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_8/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_8&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_9/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_9&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.graph", "", "", "public", "PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-04 is located in Hilo Bay on the east side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-04: PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-04/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-hilo/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-04&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-04"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.graph", "", "", "public", "PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-05 is located in Pelekane Bay near Kawaihae Harbor on the west side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-05: PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-05/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-pelekane/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-05&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-05"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.graph", "", "", "public", "PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii", "The Pacific Islands Ocean Observing System (PacIOOS) operates a Davis Instruments automatic weather station (AWS) near the entrance to Honolulu Harbor on the leeward (western) coast of Oahu in Hawaii to aid with navigation. The station records measurements every 5 minutes of air temperature, wind speed and direction, precipitation, relative humidity, and air pressure. Sensors are located at Pier 1, installed on a tower at an elevation of 64 feet (19.5 meters) above sea level. The station is owned by the Hawaii Pilots Association (HPA). PacIOOS maintains the station and provides data access.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HNLPier1: PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nrainfall_rate (rain rate (processed), mm/h)\nrelative_humidity (relative humidity (processed), %)\nair_pressure (air pressure (processed), millibars)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_gap (QARTOD Gap Test (processed), 0)\nair_temperature_qc_syn (QARTOD Syntax Test (processed), 0)\nair_temperature_qc_loc (QARTOD Location Test (processed), 0)\nair_temperature_qc_rng (QARTOD Gross Range Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_spk (QARTOD Spike Test (processed), 0)\n... (92 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HNLPier1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HNLPier1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HNLPier1/index.json", "https://www.pacioos.hawaii.edu/weather/obs-honolulu/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HNLPier1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HNLPier1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "AWS-HNLPier1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "https://tidesandcurrents.noaa.gov/gomoos.html", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/main.aspx?Division=PRD&ParentMenuId=147&id=1221", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2017, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2017, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2017, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"] + ] + } + } + recorded_at: 2020-07-15 22:22:32 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.csv?stuff&time%3E%3D2001-07-14 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '500' + message: Internal Server Error + explanation: Server got itself in trouble + headers: + status: HTTP/1.1 500 Internal Server Error + server: Apache + strict-transport-security: max-age=31536000;includeSubDomains + last-modified: Wed, 15 Jul 2020 22:22:31 GMT + xdods-server: dods/3.7 + erddap-server: '1.82' + content-type: text/html;charset=utf-8 + content-language: en + content-length: '1138' + date: Wed, 15 Jul 2020 22:22:32 GMT + connection: keep-alive + body: + encoding: UTF-8 + file: no + string: 'Apache Tomcat/8.5.11 - Error report +

HTTP Status 500 - Query error: Unrecognized variable="stuff"

type Status report

message Query + error: Unrecognized variable="stuff"

description + The server encountered an internal error that prevented it from fulfilling + this request.


Apache Tomcat/8.5.11

' + recorded_at: 2020-07-15 22:22:32 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 diff --git a/tests/vcr_cassettes/tabledap_fields_parameter.yml b/tests/vcr_cassettes/tabledap_fields_parameter.yml new file mode 100644 index 0000000..9942bec --- /dev/null +++ b/tests/vcr_cassettes/tabledap_fields_parameter.yml @@ -0,0 +1,977 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:42 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=erdCinpKfmBT_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "acknowledgement", "String", "NOAA NESDIS COASTWATCH, NOAA SWFSC ERD, Channel Islands National Park, National Park Service"], + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "TimeSeries"], + ["attribute", "NC_GLOBAL", "cdm_timeseries_variables", "String", "station, longitude, latitude"], + ["attribute", "NC_GLOBAL", "contributor_email", "String", "David_Kushner@nps.gov"], + ["attribute", "NC_GLOBAL", "contributor_name", "String", "Channel Islands National Park, National Park Service"], + ["attribute", "NC_GLOBAL", "contributor_role", "String", "Source of data."], + ["attribute", "NC_GLOBAL", "Conventions", "String", "COARDS, CF-1.6, ACDD-1.3, NCCSV-1.0"], + ["attribute", "NC_GLOBAL", "creator_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "creator_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "date_created", "String", "2008-06-11T21:36:06Z"], + ["attribute", "NC_GLOBAL", "date_issued", "String", "2008-06-11T21:36:06Z"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "-118.4"], + ["attribute", "NC_GLOBAL", "featureType", "String", "TimeSeries"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "34.05"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "32.8"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "-118.4"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "-120.4"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_max", "double", "17.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_min", "double", "5.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_positive", "String", "down"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_units", "String", "m"], + ["attribute", "NC_GLOBAL", "history", "String", "Channel Islands National Park, National Park Service\n2008-06-11T21:36:06Z NOAA CoastWatch (West Coast Node) and NOAA SFSC ERD"], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "http://www.nps.gov/chis/naturescience/index.htm"], + ["attribute", "NC_GLOBAL", "institution", "String", "CINP"], + ["attribute", "NC_GLOBAL", "keywords", "String", "anamesus, aplysia, aquatic, atmosphere, aurantia, band, biology, biosphere, californica, channel, chilensis, cinp, coastal, corrugata, crassedoma, crenulata, density, depth, Earth Science > Biosphere > Aquatic Ecosystems > Coastal Habitat, Earth Science > Biosphere > Aquatic Ecosystems > Marine Habitat, ecosystems, forest, fruticosa, fulgens, giganteum, habitat, haliotis, height, helianthoides, identifier, interruptus, islands, kelletia, kelletii, kelp, lofotensis, lophogorgia, lytechinus, marine, mean, megathura, monitoring, muricea, panulirus, pycnopodia, rufescens, station, statistics, stddev, stderr, stylaster, survey, tethya, time, transect, urticina"], + ["attribute", "NC_GLOBAL", "keywords_vocabulary", "String", "GCMD Science Keywords"], + ["attribute", "NC_GLOBAL", "license", "String", "The data may be used and redistributed for free but is not intended for legal use, since it may contain inaccuracies. Neither the data Contributor, CoastWatch, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, of this information. National Park Service Disclaimer: The National Park Service shall not be held liable for improper or incorrect use of the data described and/or contained herein. These data and related graphics are not legal documents and are not intended to be used as such. The information contained in these data is dynamic and may change over time. The data are not better than the original sources from which they were derived. It is the responsibility of the data user to use the data appropriately and consistent within the limitation of geospatial data in general and these data in particular. The related graphics are intended to aid the data user in acquiring relevant data; it is not appropriate to use the related graphics as data. The National Park Service gives no warranty, expressed or implied, as to the accuracy, reliability, or completeness of these data. It is strongly recommended that these data are directly acquired from an NPS server and not indirectly through other sources which may have changed the data in some way. Although these data have been processed successfully on computer systems at the National Park Service, no warranty expressed or implied is made regarding the utility of the data on other systems for general or scientific purposes, nor shall the act of distribution constitute any such warranty. This disclaimer applies both to individual use of the data and aggregate use with other data."], + ["attribute", "NC_GLOBAL", "naming_authority", "String", "gov.noaa.pfeg.coastwatch"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "34.05"], + ["attribute", "NC_GLOBAL", "project", "String", "NOAA NMFS SWFSC ERD (https://www.pfeg.noaa.gov/)"], + ["attribute", "NC_GLOBAL", "references", "String", "Channel Islands National Parks Inventory and Monitoring information: http://nature.nps.gov/im/units/medn . Kelp Forest Monitoring Protocols: http://www.nature.nps.gov/im/units/chis/Reports_PDF/Marine/KFM-HandbookVol1.pdf ."], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "(local files)"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "32.8"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v70"], + ["attribute", "NC_GLOBAL", "subsetVariables", "String", "station, longitude, latitude"], + ["attribute", "NC_GLOBAL", "summary", "String", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth."], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2007-07-01T00:00:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "1983-07-01T00:00:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "-120.4"], + ["variable", "station", "", "String", ""], + ["attribute", "station", "cf_role", "String", "timeseries_id"], + ["attribute", "station", "ioos_category", "String", "Identifier"], + ["attribute", "station", "long_name", "String", "Station"], + ["variable", "longitude", "", "double", ""], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "double", "-120.4, -118.4"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "colorBarMaximum", "double", "-118.4"], + ["attribute", "longitude", "colorBarMinimum", "double", "-120.4"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "latitude", "", "double", ""], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "double", "32.8, 34.05"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "colorBarMaximum", "double", "34.5"], + ["attribute", "latitude", "colorBarMinimum", "double", "32.5"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["variable", "depth", "", "double", ""], + ["attribute", "depth", "_CoordinateAxisType", "String", "Height"], + ["attribute", "depth", "_CoordinateZisPositive", "String", "down"], + ["attribute", "depth", "actual_range", "double", "5.0, 17.0"], + ["attribute", "depth", "axis", "String", "Z"], + ["attribute", "depth", "colorBarMaximum", "double", "20.0"], + ["attribute", "depth", "colorBarMinimum", "double", "0.0"], + ["attribute", "depth", "ioos_category", "String", "Location"], + ["attribute", "depth", "long_name", "String", "Depth"], + ["attribute", "depth", "positive", "String", "down"], + ["attribute", "depth", "standard_name", "String", "depth"], + ["attribute", "depth", "units", "String", "m"], + ["variable", "time", "", "double", ""], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "4.258656E8, 1.183248E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "colorBarMaximum", "double", "1.183248E9"], + ["attribute", "time", "colorBarMinimum", "double", "4.258656E8"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Time"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["variable", "Aplysia_californica_Mean_Density", "", "float", ""], + ["attribute", "Aplysia_californica_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Aplysia_californica_Mean_Density", "actual_range", "float", "0.0, 0.95"], + ["attribute", "Aplysia_californica_Mean_Density", "comment", "String", "Common name: California brown sea hare"], + ["attribute", "Aplysia_californica_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Aplysia_californica_Mean_Density", "long_name", "String", "Aplysia californica Mean Density"], + ["attribute", "Aplysia_californica_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Aplysia_californica_Mean_Density", "units", "String", "m-2"], + ["variable", "Aplysia_californica_StdDev", "", "float", ""], + ["attribute", "Aplysia_californica_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Aplysia_californica_StdDev", "actual_range", "float", "0.0, 0.35"], + ["attribute", "Aplysia_californica_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Aplysia_californica_StdDev", "long_name", "String", "Aplysia californica StdDev"], + ["attribute", "Aplysia_californica_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Aplysia_californica_StdErr", "", "float", ""], + ["attribute", "Aplysia_californica_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Aplysia_californica_StdErr", "actual_range", "float", "0.0, 0.1"], + ["attribute", "Aplysia_californica_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Aplysia_californica_StdErr", "long_name", "String", "Aplysia californica StdErr"], + ["attribute", "Aplysia_californica_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Crassedoma_giganteum_Mean_Density", "", "float", ""], + ["attribute", "Crassedoma_giganteum_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "actual_range", "float", "0.0, 0.92"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "comment", "String", "Common name: Rock scallop"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "long_name", "String", "Crassedoma giganteum Mean Density"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "units", "String", "m-2"], + ["variable", "Crassedoma_giganteum_StdDev", "", "float", ""], + ["attribute", "Crassedoma_giganteum_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Crassedoma_giganteum_StdDev", "actual_range", "float", "0.0, 0.71"], + ["attribute", "Crassedoma_giganteum_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Crassedoma_giganteum_StdDev", "long_name", "String", "Crassedoma giganteum StdDev"], + ["attribute", "Crassedoma_giganteum_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Crassedoma_giganteum_StdErr", "", "float", ""], + ["attribute", "Crassedoma_giganteum_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Crassedoma_giganteum_StdErr", "actual_range", "float", "0.0, 0.2"], + ["attribute", "Crassedoma_giganteum_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Crassedoma_giganteum_StdErr", "long_name", "String", "Crassedoma giganteum StdErr"], + ["attribute", "Crassedoma_giganteum_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_corrugata_Mean_Density", "", "float", ""], + ["attribute", "Haliotis_corrugata_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_corrugata_Mean_Density", "actual_range", "float", "0.0, 0.18"], + ["attribute", "Haliotis_corrugata_Mean_Density", "comment", "String", "Common name: Pink abalone"], + ["attribute", "Haliotis_corrugata_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Haliotis_corrugata_Mean_Density", "long_name", "String", "Haliotis corrugata Mean Density"], + ["attribute", "Haliotis_corrugata_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Haliotis_corrugata_Mean_Density", "units", "String", "m-2"], + ["variable", "Haliotis_corrugata_StdDev", "", "float", ""], + ["attribute", "Haliotis_corrugata_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_corrugata_StdDev", "actual_range", "float", "0.0, 0.1"], + ["attribute", "Haliotis_corrugata_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_corrugata_StdDev", "long_name", "String", "Haliotis corrugata StdDev"], + ["attribute", "Haliotis_corrugata_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_corrugata_StdErr", "", "float", ""], + ["attribute", "Haliotis_corrugata_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_corrugata_StdErr", "actual_range", "float", "0.0, 0.03"], + ["attribute", "Haliotis_corrugata_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_corrugata_StdErr", "long_name", "String", "Haliotis corrugata StdErr"], + ["attribute", "Haliotis_corrugata_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_fulgens_Mean_Density", "", "float", ""], + ["attribute", "Haliotis_fulgens_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_fulgens_Mean_Density", "actual_range", "float", "0.0, 0.005555556"], + ["attribute", "Haliotis_fulgens_Mean_Density", "comment", "String", "Common name: Green abalone"], + ["attribute", "Haliotis_fulgens_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Haliotis_fulgens_Mean_Density", "long_name", "String", "Haliotis fulgens Mean Density"], + ["attribute", "Haliotis_fulgens_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Haliotis_fulgens_Mean_Density", "units", "String", "m-2"], + ["variable", "Haliotis_fulgens_StdDev", "", "float", ""], + ["attribute", "Haliotis_fulgens_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_fulgens_StdDev", "actual_range", "float", "0.0, 0.008206099"], + ["attribute", "Haliotis_fulgens_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_fulgens_StdDev", "long_name", "String", "Haliotis fulgens StdDev"], + ["attribute", "Haliotis_fulgens_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_fulgens_StdErr", "", "float", ""], + ["attribute", "Haliotis_fulgens_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_fulgens_StdErr", "actual_range", "float", "0.0, 0.002368897"], + ["attribute", "Haliotis_fulgens_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_fulgens_StdErr", "long_name", "String", "Haliotis fulgens StdErr"], + ["attribute", "Haliotis_fulgens_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_rufescens_Mean_Density", "", "float", ""], + ["attribute", "Haliotis_rufescens_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_rufescens_Mean_Density", "actual_range", "float", "0.0, 0.99"], + ["attribute", "Haliotis_rufescens_Mean_Density", "comment", "String", "Common name: Red abalone"], + ["attribute", "Haliotis_rufescens_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Haliotis_rufescens_Mean_Density", "long_name", "String", "Haliotis rufescens Mean Density"], + ["attribute", "Haliotis_rufescens_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Haliotis_rufescens_Mean_Density", "units", "String", "m-2"], + ["variable", "Haliotis_rufescens_StdDev", "", "float", ""], + ["attribute", "Haliotis_rufescens_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_rufescens_StdDev", "actual_range", "float", "0.0, 0.6"], + ["attribute", "Haliotis_rufescens_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_rufescens_StdDev", "long_name", "String", "Haliotis rufescens StdDev"], + ["attribute", "Haliotis_rufescens_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_rufescens_StdErr", "", "float", ""], + ["attribute", "Haliotis_rufescens_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_rufescens_StdErr", "actual_range", "float", "0.0, 0.17"], + ["attribute", "Haliotis_rufescens_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_rufescens_StdErr", "long_name", "String", "Haliotis rufescens StdErr"], + ["attribute", "Haliotis_rufescens_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Kelletia_kelletii_Mean_Density", "", "float", ""], + ["attribute", "Kelletia_kelletii_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Kelletia_kelletii_Mean_Density", "actual_range", "float", "0.0, 0.55"], + ["attribute", "Kelletia_kelletii_Mean_Density", "comment", "String", "Common name: Kellet's whelk"], + ["attribute", "Kelletia_kelletii_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Kelletia_kelletii_Mean_Density", "long_name", "String", "Kelletia kelletii Mean Density"], + ["attribute", "Kelletia_kelletii_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Kelletia_kelletii_Mean_Density", "units", "String", "m-2"], + ["variable", "Kelletia_kelletii_StdDev", "", "float", ""], + ["attribute", "Kelletia_kelletii_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Kelletia_kelletii_StdDev", "actual_range", "float", "0.0, 0.29"], + ["attribute", "Kelletia_kelletii_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Kelletia_kelletii_StdDev", "long_name", "String", "Kelletia kelletii StdDev"], + ["attribute", "Kelletia_kelletii_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Kelletia_kelletii_StdErr", "", "float", ""], + ["attribute", "Kelletia_kelletii_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Kelletia_kelletii_StdErr", "actual_range", "float", "0.0, 0.08"], + ["attribute", "Kelletia_kelletii_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Kelletia_kelletii_StdErr", "long_name", "String", "Kelletia kelletii StdErr"], + ["attribute", "Kelletia_kelletii_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Lophogorgia_chilensis_Mean_Density", "", "float", ""], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "actual_range", "float", "0.0, 0.7"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "comment", "String", "Common name: Red gorgonian"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "long_name", "String", "Lophogorgia chilensis Mean Density"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "units", "String", "m-2"], + ["variable", "Lophogorgia_chilensis_StdDev", "", "float", ""], + ["attribute", "Lophogorgia_chilensis_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lophogorgia_chilensis_StdDev", "actual_range", "float", "0.0, 0.44"], + ["attribute", "Lophogorgia_chilensis_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Lophogorgia_chilensis_StdDev", "long_name", "String", "Lophogorgia chilensis StdDev"], + ["attribute", "Lophogorgia_chilensis_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Lophogorgia_chilensis_StdErr", "", "float", ""], + ["attribute", "Lophogorgia_chilensis_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lophogorgia_chilensis_StdErr", "actual_range", "float", "0.0, 0.12"], + ["attribute", "Lophogorgia_chilensis_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Lophogorgia_chilensis_StdErr", "long_name", "String", "Lophogorgia chilensis StdErr"], + ["attribute", "Lophogorgia_chilensis_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Lytechinus_anamesus_Mean_Density", "", "float", ""], + ["attribute", "Lytechinus_anamesus_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "actual_range", "float", "0.0, 22.45"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "comment", "String", "Common name: White sea urchin"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "long_name", "String", "Lytechinus anamesus Mean Density"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "units", "String", "m-2"], + ["variable", "Lytechinus_anamesus_StdDev", "", "float", ""], + ["attribute", "Lytechinus_anamesus_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lytechinus_anamesus_StdDev", "actual_range", "float", "0.0, 9.2"], + ["attribute", "Lytechinus_anamesus_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Lytechinus_anamesus_StdDev", "long_name", "String", "Lytechinus anamesus StdDev"], + ["attribute", "Lytechinus_anamesus_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Lytechinus_anamesus_StdErr", "", "float", ""], + ["attribute", "Lytechinus_anamesus_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lytechinus_anamesus_StdErr", "actual_range", "float", "0.0, 2.65"], + ["attribute", "Lytechinus_anamesus_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Lytechinus_anamesus_StdErr", "long_name", "String", "Lytechinus anamesus StdErr"], + ["attribute", "Lytechinus_anamesus_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Megathura_crenulata_Mean_Density", "", "float", ""], + ["attribute", "Megathura_crenulata_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Megathura_crenulata_Mean_Density", "actual_range", "float", "0.0, 0.5"], + ["attribute", "Megathura_crenulata_Mean_Density", "comment", "String", "Common name: Giant keyhole limpet"], + ["attribute", "Megathura_crenulata_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Megathura_crenulata_Mean_Density", "long_name", "String", "Megathura crenulata Mean Density"], + ["attribute", "Megathura_crenulata_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Megathura_crenulata_Mean_Density", "units", "String", "m-2"], + ["variable", "Megathura_crenulata_StdDev", "", "float", ""], + ["attribute", "Megathura_crenulata_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Megathura_crenulata_StdDev", "actual_range", "float", "0.0, 0.22"], + ["attribute", "Megathura_crenulata_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Megathura_crenulata_StdDev", "long_name", "String", "Megathura crenulata StdDev"], + ["attribute", "Megathura_crenulata_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Megathura_crenulata_StdErr", "", "float", ""], + ["attribute", "Megathura_crenulata_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Megathura_crenulata_StdErr", "actual_range", "float", "0.0, 0.07"], + ["attribute", "Megathura_crenulata_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Megathura_crenulata_StdErr", "long_name", "String", "Megathura crenulata StdErr"], + ["attribute", "Megathura_crenulata_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Muricea_californica_Mean_Density", "", "float", ""], + ["attribute", "Muricea_californica_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_californica_Mean_Density", "actual_range", "float", "0.0, 0.31"], + ["attribute", "Muricea_californica_Mean_Density", "comment", "String", "Common name: California golden gorgonian"], + ["attribute", "Muricea_californica_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Muricea_californica_Mean_Density", "long_name", "String", "Muricea californica Mean Density"], + ["attribute", "Muricea_californica_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Muricea_californica_Mean_Density", "units", "String", "m-2"], + ["variable", "Muricea_californica_StdDev", "", "float", ""], + ["attribute", "Muricea_californica_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_californica_StdDev", "actual_range", "float", "0.0, 0.16"], + ["attribute", "Muricea_californica_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Muricea_californica_StdDev", "long_name", "String", "Muricea californica StdDev"], + ["attribute", "Muricea_californica_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Muricea_californica_StdErr", "", "float", ""], + ["attribute", "Muricea_californica_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_californica_StdErr", "actual_range", "float", "0.0, 0.04"], + ["attribute", "Muricea_californica_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Muricea_californica_StdErr", "long_name", "String", "Muricea californica StdErr"], + ["attribute", "Muricea_californica_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Muricea_fruticosa_Mean_Density", "", "float", ""], + ["attribute", "Muricea_fruticosa_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_fruticosa_Mean_Density", "actual_range", "float", "0.0, 0.04"], + ["attribute", "Muricea_fruticosa_Mean_Density", "comment", "String", "Common name: Brown gorgonian"], + ["attribute", "Muricea_fruticosa_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Muricea_fruticosa_Mean_Density", "long_name", "String", "Muricea fruticosa Mean Density"], + ["attribute", "Muricea_fruticosa_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Muricea_fruticosa_Mean_Density", "units", "String", "m-2"], + ["variable", "Muricea_fruticosa_StdDev", "", "float", ""], + ["attribute", "Muricea_fruticosa_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_fruticosa_StdDev", "actual_range", "float", "0.0, 0.09"], + ["attribute", "Muricea_fruticosa_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Muricea_fruticosa_StdDev", "long_name", "String", "Muricea fruticosa StdDev"], + ["attribute", "Muricea_fruticosa_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Muricea_fruticosa_StdErr", "", "float", ""], + ["attribute", "Muricea_fruticosa_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_fruticosa_StdErr", "actual_range", "float", "0.0, 0.02"], + ["attribute", "Muricea_fruticosa_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Muricea_fruticosa_StdErr", "long_name", "String", "Muricea fruticosa StdErr"], + ["attribute", "Muricea_fruticosa_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Panulirus_interruptus_Mean_Density", "", "float", ""], + ["attribute", "Panulirus_interruptus_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Panulirus_interruptus_Mean_Density", "actual_range", "float", "0.0, 0.11"], + ["attribute", "Panulirus_interruptus_Mean_Density", "comment", "String", "Common name: California spiny lobster"], + ["attribute", "Panulirus_interruptus_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Panulirus_interruptus_Mean_Density", "long_name", "String", "Panulirus interruptus Mean Density"], + ["attribute", "Panulirus_interruptus_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Panulirus_interruptus_Mean_Density", "units", "String", "m-2"], + ["variable", "Panulirus_interruptus_StdDev", "", "float", ""], + ["attribute", "Panulirus_interruptus_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Panulirus_interruptus_StdDev", "actual_range", "float", "0.0, 0.32"], + ["attribute", "Panulirus_interruptus_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Panulirus_interruptus_StdDev", "long_name", "String", "Panulirus interruptus StdDev"], + ["attribute", "Panulirus_interruptus_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Panulirus_interruptus_StdErr", "", "float", ""], + ["attribute", "Panulirus_interruptus_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Panulirus_interruptus_StdErr", "actual_range", "float", "0.0, 0.09"], + ["attribute", "Panulirus_interruptus_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Panulirus_interruptus_StdErr", "long_name", "String", "Panulirus interruptus StdErr"], + ["attribute", "Panulirus_interruptus_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Pycnopodia_helianthoides_Mean_Density", "", "float", ""], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "actual_range", "float", "0.0, 0.33"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "comment", "String", "Common name: Sunflower star"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "long_name", "String", "Pycnopodia helianthoides Mean Density"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "units", "String", "m-2"], + ["variable", "Pycnopodia_helianthoides_StdDev", "", "float", ""], + ["attribute", "Pycnopodia_helianthoides_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Pycnopodia_helianthoides_StdDev", "actual_range", "float", "0.0, 0.21"], + ["attribute", "Pycnopodia_helianthoides_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Pycnopodia_helianthoides_StdDev", "long_name", "String", "Pycnopodia helianthoides StdDev"], + ["attribute", "Pycnopodia_helianthoides_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Pycnopodia_helianthoides_StdErr", "", "float", ""], + ["attribute", "Pycnopodia_helianthoides_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Pycnopodia_helianthoides_StdErr", "actual_range", "float", "0.0, 0.06"], + ["attribute", "Pycnopodia_helianthoides_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Pycnopodia_helianthoides_StdErr", "long_name", "String", "Pycnopodia helianthoides StdErr"], + ["attribute", "Pycnopodia_helianthoides_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Stylaster_californica_Mean_Density", "", "float", ""], + ["attribute", "Stylaster_californica_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Stylaster_californica_Mean_Density", "actual_range", "float", "0.0, 0.13"], + ["attribute", "Stylaster_californica_Mean_Density", "comment", "String", "Common name: California hydrocoral"], + ["attribute", "Stylaster_californica_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Stylaster_californica_Mean_Density", "long_name", "String", "Stylaster californica Mean Density"], + ["attribute", "Stylaster_californica_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Stylaster_californica_Mean_Density", "units", "String", "m-2"], + ["variable", "Stylaster_californica_StdDev", "", "float", ""], + ["attribute", "Stylaster_californica_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Stylaster_californica_StdDev", "actual_range", "float", "0.0, 0.18"], + ["attribute", "Stylaster_californica_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Stylaster_californica_StdDev", "long_name", "String", "Stylaster californica StdDev"], + ["attribute", "Stylaster_californica_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Stylaster_californica_StdErr", "", "float", ""], + ["attribute", "Stylaster_californica_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Stylaster_californica_StdErr", "actual_range", "float", "0.0, 0.05"], + ["attribute", "Stylaster_californica_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Stylaster_californica_StdErr", "long_name", "String", "Stylaster californica StdErr"], + ["attribute", "Stylaster_californica_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Tethya_aurantia_Mean_Density", "", "float", ""], + ["attribute", "Tethya_aurantia_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Tethya_aurantia_Mean_Density", "actual_range", "float", "0.0, 0.41"], + ["attribute", "Tethya_aurantia_Mean_Density", "comment", "String", "Common name: Orange puffball sponge"], + ["attribute", "Tethya_aurantia_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Tethya_aurantia_Mean_Density", "long_name", "String", "Tethya aurantia Mean Density"], + ["attribute", "Tethya_aurantia_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Tethya_aurantia_Mean_Density", "units", "String", "m-2"], + ["variable", "Tethya_aurantia_StdDev", "", "float", ""], + ["attribute", "Tethya_aurantia_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Tethya_aurantia_StdDev", "actual_range", "float", "0.0, 0.18"], + ["attribute", "Tethya_aurantia_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Tethya_aurantia_StdDev", "long_name", "String", "Tethya aurantia StdDev"], + ["attribute", "Tethya_aurantia_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Tethya_aurantia_StdErr", "", "float", ""], + ["attribute", "Tethya_aurantia_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Tethya_aurantia_StdErr", "actual_range", "float", "0.0, 0.05"], + ["attribute", "Tethya_aurantia_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Tethya_aurantia_StdErr", "long_name", "String", "Tethya aurantia StdErr"], + ["attribute", "Tethya_aurantia_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Urticina_lofotensis_Mean_Density", "", "float", ""], + ["attribute", "Urticina_lofotensis_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Urticina_lofotensis_Mean_Density", "actual_range", "float", "0.0, 0.39"], + ["attribute", "Urticina_lofotensis_Mean_Density", "comment", "String", "Common name: White-spotted rose anemone"], + ["attribute", "Urticina_lofotensis_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Urticina_lofotensis_Mean_Density", "long_name", "String", "Urticina lofotensis Mean Density"], + ["attribute", "Urticina_lofotensis_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Urticina_lofotensis_Mean_Density", "units", "String", "m-2"], + ["variable", "Urticina_lofotensis_StdDev", "", "float", ""], + ["attribute", "Urticina_lofotensis_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Urticina_lofotensis_StdDev", "actual_range", "float", "0.0, 0.28"], + ["attribute", "Urticina_lofotensis_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Urticina_lofotensis_StdDev", "long_name", "String", "Urticina lofotensis StdDev"], + ["attribute", "Urticina_lofotensis_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Urticina_lofotensis_StdErr", "", "float", ""], + ["attribute", "Urticina_lofotensis_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Urticina_lofotensis_StdErr", "actual_range", "float", "0.0, 0.08"], + ["attribute", "Urticina_lofotensis_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Urticina_lofotensis_StdErr", "long_name", "String", "Urticina lofotensis StdErr"], + ["attribute", "Urticina_lofotensis_StdErr", "missing_value", "float", "-9999999.0"] + ] + } + } + recorded_at: 2020-07-15 22:22:30 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:42 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:22:42 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://upwell.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012.graph", "", "", "public", "AIS Ship Traffic: Hawaii: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_hi_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_hi_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_hi_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_hi_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_hi_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_hi_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012.graph", "", "", "public", "AIS Ship Traffic: Johnston Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Johnston Atoll. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_john_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_john_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_john_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_john_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_john_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_john_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012.graph", "", "", "public", "AIS Ship Traffic: Mariana and Wake: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Mariana Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_mari_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_mari_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_mari_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_mari_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_mari_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_mari_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012.graph", "", "", "public", "AIS Ship Traffic: Rose Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Rose Atoll in American Samoa. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_rose_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_rose_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_rose_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_rose_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_rose_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_rose_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom for the most recent 7 days.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_temp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_temp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_temp/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_temp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_temp&showErrors=false&email=", "University of Hawaii", "aco_adcp_temp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Velocity", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean current velocity at the ACO from a 250 kHz SonTek acoustic doppler current profiler (ADCP) at 1.83 m above the ocean bottom for the most recent 7 days. Velocities are flagged bad if the amplitude is excessively low or high. An amplitude is high if it exceeds the average of the ping before and the ping after by 20 counts. An amplitude is low if less than 6 counts. After this the velocities are flagged bad if the absolute deviation of the vertical velocity from its ensemble median exceeds 0.15 m/s or if its value is less than -0.25 m/s.\n\ncdm_data_type = Profile\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each location, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\neastward_sea_water_velocity (current east component, meters/second)\nnorthward_sea_water_velocity (current north component, meters/second)\nupward_sea_water_velocity (current upward component, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_vel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_vel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_vel/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_vel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_vel&showErrors=false&email=", "University of Hawaii", "aco_adcp_vel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://upwell.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF.graph", "", "", "public", "CRRF Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-CRRF: CRRF Weather Station: Palau: Koror: Ngeanges Island)\nair_temperature (Celsius)\nair_temperature_max (maximum air temperature, Celsius)\nair_temperature_max_time (maximum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (minimum air temperature, Celsius)\nair_temperature_min_time (minimum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_std (air temperature standard deviation, Celsius)\nwind_speed (m/s)\nwind_speed_max (gust speed, m/s)\nwind_speed_max_time (gust speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (minimum wind speed, m/s)\nwind_speed_min_time (minimum wind speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_std (wind speed standard deviation, m/s)\nwind_from_direction (wind direction, degrees)\nwind_from_direction_std (wind direction standard deviation, degrees)\nrainfall_amount (total rainfall, mm)\n... (23 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-CRRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-CRRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-CRRF/index.json", "https://www.pacioos.hawaii.edu/weather/obs-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-CRRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-CRRF&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "AWS-CRRF"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_1000genomes/", "public", "File Names from the AWS S3 1000genomes Bucket: 1000 Genomes", "This dataset has file information from the AWS S3 1000genomes bucket at https://1000genomes.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 1000 Genomes\nName2: http://www.internationalgenome.org/formats\nDescription: The 1000 Genomes Project is an international collaboration which has established the most detailed catalogue of human genetic variation, including SNPs, structural variants, and their haplotype context. The final phase of the project sequenced more than 2500 individuals from 26 different populations around the world and produced an integrated set of phased haplotypes with more than 80 million variants for these individuals.\n\nDocumentation: https://docs.opendata.aws/1000genomes/readme.html\nContact: http://www.internationalgenome.org/contact\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_1000genomes/index.json", "https://registry.opendata.aws/1000-genomes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_1000genomes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_1000genomes&showErrors=false&email=", "Amazon Web Services", "awsS3Files_1000genomes"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_3kricegenome/", "public", "File Names from the AWS S3 3kricegenome Bucket: 3000 Rice Genomes Project", "This dataset has file information from the AWS S3 3kricegenome bucket at https://3kricegenome.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 3000 Rice Genomes Project\nName2: http://s3.amazonaws.com/3kricegenome/README-snp_pipeline.txt\nDescription: The 3000 Rice Genome Project is an international effort to sequence the genomes of 3,024 rice varieties from 89 countries.\n\nDocumentation: https://docs.opendata.aws/3kricegenome/readme.html\nContact: http://iric.irri.org/contact-us\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_3kricegenome/index.json", "https://registry.opendata.aws/3kricegenome/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_3kricegenome.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_3kricegenome&showErrors=false&email=", "Amazon Web Services", "awsS3Files_3kricegenome"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aft_vbi_pds/", "public", "File Names from the AWS S3 aft-vbi-pds Bucket: Amazon Bin Image Dataset: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.", "This dataset has file information from the AWS S3 aft-vbi-pds bucket at https://aft-vbi-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Bin Image Dataset\nName2: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.\nDescription: The Amazon Bin Image Dataset contains over 500,000 images and metadata from bins of a pod in an operating Amazon Fulfillment Center. The bin images in this dataset are captured as robot units carry pods as part of normal Amazon Fulfillment Center operations.\n\nDocumentation: https://docs.opendata.aws/aft-vbi-pds/readme.html\nContact: amazon-bin-images@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aft_vbi_pds/index.json", "https://registry.opendata.aws/amazon-bin-imagery/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aft_vbi_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aft_vbi_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aft_vbi_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory/", "public", "File Names from the AWS S3 allen-brain-observatory Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: Project data files in a public bucket", "This dataset has file information from the AWS S3 allen-brain-observatory bucket at https://allen-brain-observatory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: Project data files in a public bucket\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory_templates/", "public", "File Names from the AWS S3 allen-brain-observatory-templates Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: SageMaker launch template with s3fs bucket mounts", "This dataset has file information from the AWS S3 allen-brain-observatory-templates bucket at https://allen-brain-observatory-templates.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: SageMaker launch template with s3fs bucket mounts\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory_templates/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory_templates.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory_templates&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory_templates"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_amazon_reviews_pds/", "public", "File Names from the AWS S3 amazon-reviews-pds Bucket: Amazon Customer Reviews Dataset: TSV files of reviews", "This dataset has file information from the AWS S3 amazon-reviews-pds bucket at https://amazon-reviews-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Customer Reviews Dataset\nName2: TSV files of reviews\nDescription: Amazon Customer Reviews (a.k.a. Product Reviews) is one of Amazon\u2019s iconic products. In a period of over two decades since the first review in 1995, millions of Amazon customers have contributed over a hundred million reviews to express opinions and describe their experiences regarding products on the Amazon.com website. Over 130+ million customer reviews are available to researchers as part of this dataset.\n\nDocumentation: https://s3.amazonaws.com/amazon-reviews-pds/readme.html\nContact: customer-review-dataset@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not defined\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_amazon_reviews_pds/index.json", "https://registry.opendata.aws/amazon-reviews/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_amazon_reviews_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_amazon_reviews_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_amazon_reviews_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_avg_kitti/", "public", "File Names from the AWS S3 avg-kitti Bucket: KITTI Vision Benchmark Suite", "This dataset has file information from the AWS S3 avg-kitti bucket at https://avg-kitti.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: KITTI Vision Benchmark Suite\nName2: http://www.cvlibs.net/datasets/kitti/raw_data.php\nDescription: Dataset and benchmarks for computer vision research in the context of autonomous driving. The dataset has been recorded in and around the city of Karlsruhe, Germany using the mobile platform AnnieWay (VW station wagon) which has been equipped with several RGB and monochrome cameras, a Velodyne HDL 64 laser scanner as well as an accurate RTK corrected GPS/IMU localization unit. The dataset has been created for computer vision and machine learning research on stereo, optical flow, visual odometry, semantic segmentation, semantic instance segmentation, road segmentation, single image depth prediction, depth map completion, 2D and 3D object detection and object tracking. In addition, several raw data recordings are provided. The datasets are captured by driving around the mid-size city of Karlsruhe, in rural areas and on highways. Up to 15 cars and 30 pedestrians are visible per image.\n\nDocumentation: http://www.cvlibs.net/datasets/kitti/\nContact: http://www.cvlibs.net/people.php\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_avg_kitti/index.json", "https://registry.opendata.aws/kitti/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_avg_kitti.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_avg_kitti&showErrors=false&email=", "Amazon Web Services", "awsS3Files_avg_kitti"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/", "public", "File Names from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd Bucket: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)", "This dataset has file information from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd bucket at https://aws-earth-mo-atmospheric-mogreps-g-prd.s3.eu-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts\nName2: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)\nDescription: Meteorological data reusers now have an exciting opportunity to sample, experiment and evaluate Met Office atmospheric model data, whilst also experiencing a transformative method of requesting data via Restful APIs on AWS. All ahead of Met Office\u2019s own operationally supported API platform that will be launched in late 2019.\n\nDocumentation: https://github.com/MetOffice/aws-earth-examples\nContact: https://www.metoffice.gov.uk/about-us/contact\nUpdateFrequency: Daily (with 24 hour delay)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/index.json", "https://registry.opendata.aws/uk-met-office/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_gsod/", "public", "File Names from the AWS S3 aws-gsod Bucket: Global Surface Summary of Day: Measurements and metadata", "This dataset has file information from the AWS S3 aws-gsod bucket at https://aws-gsod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Surface Summary of Day\nName2: Measurements and metadata\nDescription: GSOD is a collection of daily weather measurements (temperature, wind speed, humidity, pressure, and more) from 9000+ weather stations around the world.\n\nDocumentation: https://www.ncdc.noaa.gov/\nContact: https://www.ncdc.noaa.gov/\nUpdateFrequency: Currently updated infrequently. Last updated on September 13, 2016.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_gsod/index.json", "https://registry.opendata.aws/noaa-gsod/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_gsod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_gsod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_gsod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_broad_references/", "public", "File Names from the AWS S3 broad-references Bucket: Broad Genome References: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.", "This dataset has file information from the AWS S3 broad-references bucket at https://broad-references.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Broad Genome References\nName2: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.\nDescription: Broad maintained human genome reference builds hg19/hg38 and decoy references.\n\nDocumentation: https://s3.amazonaws.com/broad-references/broad-references-readme.html\nContact: hensonc@broadinstitute.org\nManagedBy: Broad Institute\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_broad_references/index.json", "https://registry.opendata.aws/broad-references/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_broad_references.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_broad_references&showErrors=false&email=", "Amazon Web Services", "awsS3Files_broad_references"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cbers_meta_pds/", "public", "File Names from the AWS S3 cbers-meta-pds Bucket: CBERS on AWS: CBERS metadata (Quicklooks, metadata)", "This dataset has file information from the AWS S3 cbers-meta-pds bucket at https://cbers-meta-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CBERS on AWS\nName2: CBERS metadata (Quicklooks, metadata)\nDescription: This project creates a S3 repository with imagery acquired by the China-Brazil Earth Resources Satellite (CBERS). The image files are recorded and processed by Instituto Nacional de Pesquisa Espaciais (INPE) and are converted to Cloud Optimized Geotiff format in order to optimize its use for cloud based applications. The repository contains all CBERS-4 MUX, AWFI, PAN5M and PAN10M scenes acquired since the start of the satellite mission and is daily updated with new scenes.\n\nDocumentation: https://github.com/fredliporace/cbers-on-aws\nContact: https://lists.osgeo.org/mailman/listinfo/cbers-pds\nManagedBy: [AMS Kepler](https://amskepler.com/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cbers_meta_pds/index.json", "https://registry.opendata.aws/cbers/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cbers_meta_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cbers_meta_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cbers_meta_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cgiardata/", "public", "File Names from the AWS S3 cgiardata Bucket: CCAFS-Climate Data: ARC GRID, and ARC ASCII format compressed", "This dataset has file information from the AWS S3 cgiardata bucket at https://cgiardata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CCAFS-Climate Data\nName2: ARC GRID, and ARC ASCII format compressed\nDescription: High resolution climate data to help assess the impacts of climate change primarily on agriculture. These open access datasets of climate projections will help researchers make climate change impact assessments.\n\nDocumentation: http://www.ccafs-climate.org\nContact: http://www.ccafs-climate.org/contact/\nUpdateFrequency: Every three months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cgiardata/index.json", "https://registry.opendata.aws/cgiardata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cgiardata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cgiardata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cgiardata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_commoncrawl/", "public", "File Names from the AWS S3 commoncrawl Bucket: Common Crawl: Crawl data (WARC and ARC format)", "This dataset has file information from the AWS S3 commoncrawl bucket at https://commoncrawl.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Common Crawl\nName2: Crawl data (WARC and ARC format)\nDescription: A corpus of web crawl data composed of over 25 billion web pages.\n\nDocumentation: http://commoncrawl.org/the-data/get-started/\nContact: http://commoncrawl.org/connect/contact-us/\nManagedBy: [Common Crawl](http://commoncrawl.org/)\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_commoncrawl/index.json", "https://registry.opendata.aws/commoncrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_commoncrawl.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_commoncrawl&showErrors=false&email=", "Amazon Web Services", "awsS3Files_commoncrawl"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cornell_eas_data_lake/", "public", "File Names from the AWS S3 cornell-eas-data-lake Bucket: Cornell EAS Data Lake: Cornell EAS Data Lake", "This dataset has file information from the AWS S3 cornell-eas-data-lake bucket at https://cornell-eas-data-lake.s3.us-east-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cornell EAS Data Lake\nName2: Cornell EAS Data Lake\nDescription: Earth & Atmospheric Sciences at Cornell University has created a public data lake of climate data. The data is stored in columnar storage formats (ORC) to make it straightforward to query using standard tools like Amazon Athena or Apache Spark. The data itself is originally intended to be used for building decision support tools for farmers and digital agriculture. The first dataset is the historical NDFD / NDGD data distributed by NCEP / NOAA / NWS. The NDFD (National Digital Forecast Database) and NDGD (National Digital Guidance Database) contain gridded forecasts and observations at 2.5km resolution for the Contiguous United States (CONUS). There are also 5km grids for several smaller US regions and non-continguous territories, such as Hawaii, Guam, Puerto Rico and Alaska. NOAA distributes archives of the NDFD/NDGD via its NOAA Operational Model Archive and Distribution System (NOMADS) in Grib2 format. The data has been converted to ORC to optimize storage space and to, more importantly, simplify data access via standard data analytics tools.\n\nDocumentation: https://datalake.eas.cornell.edu/\nContact: digitalag@cornell.edu\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cornell_eas_data_lake/index.json", "https://registry.opendata.aws/cornell-eas-data-lake/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cornell_eas_data_lake.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cornell_eas_data_lake&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cornell_eas_data_lake"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cse_cic_ids2018/", "public", "File Names from the AWS S3 cse-cic-ids2018 Bucket: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018): Network traffic and log files", "This dataset has file information from the AWS S3 cse-cic-ids2018 bucket at https://cse-cic-ids2018.s3.ca-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018)\nName2: Network traffic and log files\nDescription: This dataset is the result of a collaborative project between the Communications Security Establishment (CSE) and The Canadian Institute for Cybersecurity (CIC) that use the notion of profiles to generate cybersecurity dataset in a systematic manner. It incluides a detailed description of intrusions along with abstract distribution models for applications, protocols, or lower level network entities. The dataset includes seven different attack scenarios, namely Brute-force, Heartbleed, Botnet, DoS, DDoS, Web attacks, and infiltration of the network from inside. The attacking infrastructure includes 50 machines and the victim organization has 5 departments includes 420 PCs and 30 servers. This dataset includes the network traffic and log files of each machine from the victim side, along with 80 network traffic features extracted from captured traffic using CICFlowMeter-V3. For more information on the creation of this dataset, see this paper by researchers at the Canadian Institute for Cybersecurity (CIC) and the University of New Brunswick (UNB): [Toward Generating a New Intrusion Detection Dataset and Intrusion Traffic Characterization](http://www.scitepress.org/Papers/2018/66398/66398.pdf).\n\nDocumentation: http://www.unb.ca/cic/datasets/ids-2018.html\nContact: CIC@unb.ca\nUpdateFrequency: Annualy\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cse_cic_ids2018/index.json", "https://registry.opendata.aws/cse-cic-ids2018/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cse_cic_ids2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cse_cic_ids2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cse_cic_ids2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cytodata/", "public", "File Names from the AWS S3 cytodata Bucket: Cell Painting Image Collection: Images, extracted features and aggregated profiles are available as a S3 bucket", "This dataset has file information from the AWS S3 cytodata bucket at https://cytodata.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cell Painting Image Collection\nName2: Images, extracted features and aggregated profiles are available as a S3 bucket\nDescription: The Cell Painting Image Collection is a collection of freely downloadable microscopy image sets. Cell Painting is an unbiased high throughput imaging assay used to analyze perturbations in cell models. In addition to the images themselves, each set includes a description of the biological application and some type of \"ground truth\" (expected results). Researchers are encouraged to use these image sets as reference points when developing, testing, and publishing new image analysis algorithms for the life sciences. We hope that the this data set will lead to a better understanding of which methods are best for various biological image analysis applications.\n\nDocumentation: https://github.com/cytodata/cytodata-hackathon-2018\nContact: Post on https://forum.image.sc/ and tag with \"cellpainting\"\nUpdateFrequency: irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cytodata/index.json", "https://registry.opendata.aws/cell-painting-image-collection/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cytodata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cytodata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cytodata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_czb_tabula_muris/", "public", "File Names from the AWS S3 czb-tabula-muris Bucket: Tabula Muris", "This dataset has file information from the AWS S3 czb-tabula-muris bucket at https://czb-tabula-muris.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Tabula Muris\nName2: https://github.com/czbiohub/tabula-muris\nDescription: Tabula Muris is a compendium of single cell transcriptomic data from the model organism *Mus musculus* comprising more than 100,000 cells from 20 organs and tissues. These data represent a new resource for cell biology, reveal gene expression in poorly characterized cell populations, and allow for direct and controlled comparison of gene expression in cell types shared between tissues, such as T-lymphocytes and endothelial cells from different anatomical locations. Two distinct technical approaches were used for most organs: one approach, microfluidic droplet-based 3\u2019-end counting, enabled the survey of thousands of cells at relatively low coverage, while the other, FACS-based full length transcript analysis, enabled characterization of cell types with high sensitivity and coverage. The cumulative data provide the foundation for an atlas of transcriptomic cell biology. See: https://www.nature.com/articles/s41586-018-0590-4\n\nDocumentation: https://github.com/czbiohub/tabula-muris/blob/master/tabula-muris-on-aws.md\nContact: If you have questions about the data, you can create an Issue at https://github.com/czbiohub/tabula-muris.\nManagedBy: [Chan Zuckerberg Biohub](https://www.czbiohub.org/)\nUpdateFrequency: This is the final version of the dataset, it will not be updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_czb_tabula_muris/index.json", "https://registry.opendata.aws/tabula-muris/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_czb_tabula_muris.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_czb_tabula_muris&showErrors=false&email=", "Amazon Web Services", "awsS3Files_czb_tabula_muris"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataforgood_fb_data/", "public", "File Names from the AWS S3 dataforgood-fb-data Bucket: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook: CSV and Cloud-optimized GeoTIFF files", "This dataset has file information from the AWS S3 dataforgood-fb-data bucket at https://dataforgood-fb-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook\nName2: CSV and Cloud-optimized GeoTIFF files\nDescription: Population data for a selection of countries, allocated to 1 arcsecond blocks and provided in a combination of CSV and Cloud-optimized GeoTIFF files. This refines [CIESIN\u2019s Gridded Population of the World](https://sedac.ciesin.columbia.edu/data/collection/gpw-v4) using machine learning models on high-resolution worldwide Digital Globe satellite imagery. CIESIN population counts aggregated from worldwide census data are allocated to blocks where imagery appears to contain buildings.\n\nDocumentation: [Project overview](https://dataforgood.fb.com/population-density-maps-documentation/) and [dataset description](https://docs.opendata.aws/dataforgood-fb-data/readme.html)\nContact: disastermaps@fb.com\nManagedBy: |\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataforgood_fb_data/index.json", "https://registry.opendata.aws/dataforgood-fb-hrsl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataforgood_fb_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataforgood_fb_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataforgood_fb_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_datasets_elasticmapreduce_ngrams_books/", "public", "File Names from the AWS S3 datasets.elasticmapreduce Bucket with prefix=ngrams/books/: Google Books Ngrams: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.", "This dataset has file information from the AWS S3 datasets.elasticmapreduce bucket at https://datasets.elasticmapreduce.s3.us-east-1.amazonaws.com/ with prefix=ngrams/books/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Google Books Ngrams\nName2: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.\nDescription: N-grams are fixed size tuples of items. In this case the items are words extracted from the Google Books corpus. The n specifies the number of elements in the tuple, so a 5-gram contains five words or characters. The n-grams in this dataset were produced by passing a sliding window of the text of books and outputting a record for each new token.\n\nDocumentation: http://books.google.com/ngrams/\nContact: https://books.google.com/ngrams\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_datasets_elasticmapreduce_ngrams_books/index.json", "https://registry.opendata.aws/google-ngrams/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_datasets_elasticmapreduce_ngrams_books.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_datasets_elasticmapreduce_ngrams_books&showErrors=false&email=", "Amazon Web Services", "awsS3Files_datasets_elasticmapreduce_ngrams_books"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataworld_linked_acs/", "public", "File Names from the AWS S3 dataworld-linked-acs Bucket: U.S. Census ACS PUMS: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.", "This dataset has file information from the AWS S3 dataworld-linked-acs bucket at https://dataworld-linked-acs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: U.S. Census ACS PUMS\nName2: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.\nDescription: U.S. Census Bureau American Community Survey (ACS) Public Use Microdata Sample (PUMS) available in a linked data format using the Resource Description Framework (RDF) data model.\n\nDocumentation: https://docs.data.world/uscensus/#american-community-survey-linked-open-data\nContact: https://docs.data.world/uscensus/#60---contact\nUpdateFrequency: Yearly, after ACS 1-year PUMS raw data are released\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataworld_linked_acs/index.json", "https://registry.opendata.aws/census-dataworld-pums/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataworld_linked_acs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataworld_linked_acs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataworld_linked_acs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2015/", "public", "File Names from the AWS S3 dc-lidar-2015 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML, SHP", "This dataset has file information from the AWS S3 dc-lidar-2015 bucket at https://dc-lidar-2015.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML, SHP\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2015/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2015.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2015&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2015"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2018/", "public", "File Names from the AWS S3 dc-lidar-2018 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML", "This dataset has file information from the AWS S3 dc-lidar-2018 bucket at https://dc-lidar-2018.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2018/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_eurex_pds/", "public", "File Names from the AWS S3 deutsche-boerse-eurex-pds Bucket: Deutsche B\u00f6rse Public Dataset: Eurex PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-eurex-pds bucket at https://deutsche-boerse-eurex-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Eurex PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_eurex_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_eurex_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_eurex_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_eurex_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_xetra_pds/", "public", "File Names from the AWS S3 deutsche-boerse-xetra-pds Bucket: Deutsche B\u00f6rse Public Dataset: Xetra PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-xetra-pds bucket at https://deutsche-boerse-xetra-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Xetra PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_xetra_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_xetra_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_xetra_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_xetra_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ebirdst_data/", "public", "File Names from the AWS S3 ebirdst-data Bucket: eBird Status and Trends Model Results: Species results files", "This dataset has file information from the AWS S3 ebirdst-data bucket at https://ebirdst-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: eBird Status and Trends Model Results\nName2: Species results files\nDescription: The eBird Status and Trends project generates estimates of bird occurrence and abundance at a high spatiotemporal resolution. This dataset represents the primary modeled results from the analysis workflow and are designed for further analysis, synthesis, visualization, and exploration.\n\nDocumentation: https://cornelllabofornithology.github.io/ebirdst/articles/ebirdst-introduction.html\nContact: https://help.ebird.org/customer/en/portal/emails/new\nManagedBy: [Cornell Lab of Ornithology](https://www.birds.cornell.edu/home/)\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ebirdst_data/index.json", "https://registry.opendata.aws/ebirdst/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ebirdst_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ebirdst_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ebirdst_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_elevation_tiles_prod/", "public", "File Names from the AWS S3 elevation-tiles-prod Bucket: Terrain Tiles: Gridded elevation tiles", "This dataset has file information from the AWS S3 elevation-tiles-prod bucket at https://elevation-tiles-prod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Terrain Tiles\nName2: Gridded elevation tiles\nDescription: A global dataset providing bare-earth terrain heights, tiled for easy usage and provided on S3.\n\nDocumentation: https://mapzen.com/documentation/terrain-tiles/\nContact: https://github.com/tilezen/joerd/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_elevation_tiles_prod/index.json", "https://registry.opendata.aws/terrain-tiles/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_elevation_tiles_prod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_elevation_tiles_prod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_elevation_tiles_prod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_encode_public/", "public", "File Names from the AWS S3 encode-public Bucket: Encyclopedia of DNA Elements (ENCODE): Released and archived ENCODE data", "This dataset has file information from the AWS S3 encode-public bucket at https://encode-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Encyclopedia of DNA Elements (ENCODE)\nName2: Released and archived ENCODE data\nDescription: The Encyclopedia of DNA Elements (ENCODE) Consortium is an international collaboration of research groups funded by the National Human Genome Research Institute (NHGRI). The goal of ENCODE is to build a comprehensive parts list of functional elements in the human genome, including elements that act at the protein and RNA levels, and regulatory elements that control cells and circumstances in which a gene is active. ENCODE investigators employ a variety of assays and methods to identify functional elements. The discovery and annotation of gene elements is accomplished primarily by sequencing a diverse range of RNA sources, comparative genomics, integrative bioinformatic methods, and human curation. Regulatory elements are typically investigated through DNA hypersensitivity assays, assays of DNA methylation, and immunoprecipitation (IP) of proteins that interact with DNA and RNA, i.e., modified histones, transcription factors, chromatin regulators, and RNA-binding proteins, followed by sequencing.\n\nDocumentation: https://www.encodeproject.org\nContact: encode-help@lists.stanford.edu\nManagedBy: ENCODE Data Coordinating Center\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_encode_public/index.json", "https://registry.opendata.aws/encode-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_encode_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_encode_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_encode_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_epa_rsei_pds/", "public", "File Names from the AWS S3 epa-rsei-pds Bucket: EPA Risk-Screening Environmental Indicators: RSEI Microdata", "This dataset has file information from the AWS S3 epa-rsei-pds bucket at https://epa-rsei-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: EPA Risk-Screening Environmental Indicators\nName2: RSEI Microdata\nDescription: Detailed air model results from EPA\u2019s Risk-Screening Environmental Indicators (RSEI) model.\n\nDocumentation: https://docs.opendata.aws/epa-rsei-pds/readme.html\nContact: https://www.epa.gov/rsei/forms/contact-us-about-rsei-model\nUpdateFrequency: Updated infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_epa_rsei_pds/index.json", "https://registry.opendata.aws/epa-rsei-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_epa_rsei_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_epa_rsei_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_epa_rsei_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_era5_pds/", "public", "File Names from the AWS S3 era5-pds Bucket: ECMWF ERA5 Reanalysis: ERA5 Reanalysis NetCDF 4 files", "This dataset has file information from the AWS S3 era5-pds bucket at https://era5-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ECMWF ERA5 Reanalysis\nName2: ERA5 Reanalysis NetCDF 4 files\nDescription: ERA5 is the fifth generation of ECMWF atmospheric reanalyses of the global climate, and the first reanalysis produced as an operational service. It utilizes the best available observation data from satellites and in-situ stations, which are assimilated and processed using ECMWF's Integrated Forecast System (IFS) Cycle 41r2. The dataset provides all essential atmospheric meteorological parameters like, but not limited to, air temperature, pressure and wind at different altitudes, along with surface parameters like rainfall, soil moisture content and sea parameters like sea-surface temperature and wave height. ERA5 provides data at a considerably higher spatial and temporal resolution than its legacy counterpart ERA-Interim. ERA5 consists of high resolution version with 31 km horizontal resolution, and a reduced resolution ensemble version with 10 members. It is currently available since 2008, but will be continuously extended backwards, first until 1979 and then to 1950. Learn more about ERA5 in Jon Olauson's paper [ERA5: The new champion of wind power modelling?](https://www.researchgate.net/publication/320084119_ERA5_The_new_champion_of_wind_power_modelling).\n\nDocumentation: https://github.com/planet-os/notebooks/blob/master/aws/era5-pds.md\nContact: datahub@intertrust.com\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_era5_pds/index.json", "https://registry.opendata.aws/ecmwf-era5/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_era5_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_era5_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_era5_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_coco/", "public", "File Names from the AWS S3 fast-ai-coco Bucket: COCO - Common Objects in Context - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-coco bucket at https://fast-ai-coco.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: COCO - Common Objects in Context - fast.ai datasets\nName2: Datasets\nDescription: COCO is a large-scale object detection, segmentation, and captioning dataset. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. If you use this dataset in your research please cite arXiv:1405.0312 [cs.CV].\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_coco/index.json", "https://registry.opendata.aws/fast-ai-coco/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_coco.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_coco&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_coco"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imageclas/", "public", "File Names from the AWS S3 fast-ai-imageclas Bucket: Image classification - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imageclas bucket at https://fast-ai-imageclas.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image classification - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image classification research, including CIFAR 10 and 100, Caltech 101, MNIST, Food-101, Oxford-102-Flowers, Oxford-IIIT-Pets, and Stanford-Cars. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imageclas/index.json", "https://registry.opendata.aws/fast-ai-imageclas/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imageclas.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imageclas&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imageclas"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imagelocal/", "public", "File Names from the AWS S3 fast-ai-imagelocal Bucket: Image localization - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imagelocal bucket at https://fast-ai-imagelocal.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image localization - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image localization research, including Camvid and PASCAL VOC (2007 and 2012). This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imagelocal/index.json", "https://registry.opendata.aws/fast-ai-imagelocal/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imagelocal.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imagelocal&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imagelocal"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_nlp/", "public", "File Names from the AWS S3 fast-ai-nlp Bucket: NLP - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-nlp bucket at https://fast-ai-nlp.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NLP - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for NLP, with a focus on classification, including IMDb, AG-News, Amazon Reviews (polarity and full), Yelp Reviews (polarity and full), Dbpedia, Sogou News (Pinyin), Yahoo Answers, Wikitext 2 and Wikitext 103, and ACL-2010 French-English 10^9 corpus. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_nlp/index.json", "https://registry.opendata.aws/fast-ai-nlp/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_nlp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_nlp&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_nlp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib Bucket: HIRLAM Weather Model: Pressure GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib bucket at https://fmi-opendata-rcrhirlam-pressure-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Pressure GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_pressure_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_pressure_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-surface-grib Bucket: HIRLAM Weather Model: Surface GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-surface-grib bucket at https://fmi-opendata-rcrhirlam-surface-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Surface GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_surface_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_surface_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gatk_test_data/", "public", "File Names from the AWS S3 gatk-test-data Bucket: GATK Test Data: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.", "This dataset has file information from the AWS S3 gatk-test-data bucket at https://gatk-test-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GATK Test Data\nName2: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.\nDescription: The GATK test data resource bundle is a collection of files for resequencing human genomic data with the Broad Institute's [Genome Analysis Toolkit (GATK)](https://software.broadinstitute.org/gatk/).\n\nDocumentation: https://s3.amazonaws.com/gatk-test-data/gatk-test-data-readme.html\nContact: https://gatkforums.broadinstitute.org/gatk\nManagedBy: Broad Institute\nUpdateFrequency: Every 3 months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gatk_test_data/index.json", "https://registry.opendata.aws/gatk-test-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gatk_test_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gatk_test_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gatk_test_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gdelt_open_data/", "public", "File Names from the AWS S3 gdelt-open-data Bucket: Global Database of Events, Language and Tone (GDELT): Project data files", "This dataset has file information from the AWS S3 gdelt-open-data bucket at https://gdelt-open-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Database of Events, Language and Tone (GDELT)\nName2: Project data files\nDescription: This project monitors the world's broadcast, print, and web news from nearly every corner of every country in over 100 languages and identifies the people, locations, organizations, counts, themes, sources, emotions, quotes, images and events driving our global society every second of every day.\n\nDocumentation: http://www.gdeltproject.org/\nContact: http://www.gdeltproject.org/about.html#contact\nUpdateFrequency: Not currently being updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gdelt_open_data/index.json", "https://registry.opendata.aws/gdelt/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gdelt_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gdelt_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gdelt_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_genomeark/", "public", "File Names from the AWS S3 genomeark Bucket: Genome Ark", "This dataset has file information from the AWS S3 genomeark bucket at https://genomeark.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome Ark\nName2: https://vgp.github.io\nDescription: The Genome Ark hosts genomic information for the Vertebrate Genomes Project (VGP) and other related projects. The VGP is an international collaboration that aims to generate complete and near error-free reference genomes for all extant vertebrate species. These genomes will be used to address fundamental questions in biology and disease, to identify species most genetically at risk for extinction, and to preserve genetic information of life.\n\nDocumentation: https://vertebrategenomesproject.org\nContact: Erich Jarvis \nManagedBy: The Genome10K community of scientists\nUpdateFrequency: Data will be continually updated as it is generated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_genomeark/index.json", "https://registry.opendata.aws/genomeark/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_genomeark.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_genomeark&showErrors=false&email=", "Amazon Web Services", "awsS3Files_genomeark"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_giab/", "public", "File Names from the AWS S3 giab Bucket: Genome in a Bottle on AWS: Latest data", "This dataset has file information from the AWS S3 giab bucket at https://giab.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome in a Bottle on AWS\nName2: Latest data\nDescription: Several reference genomes to enable translation of whole human genome sequencing to clinical practice.\n\nDocumentation: https://docs.opendata.aws/giab/readme.html\nContact: http://genomeinabottle.org/\nUpdateFrequency: New data are added as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_giab/index.json", "https://registry.opendata.aws/giab/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_giab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_giab&showErrors=false&email=", "Amazon Web Services", "awsS3Files_giab"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gmsdata/", "public", "File Names from the AWS S3 gmsdata Bucket: The Genome Modeling System", "This dataset has file information from the AWS S3 gmsdata bucket at https://gmsdata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Genome Modeling System\nName2: https://gmsdata.s3.amazonaws.com/INDEX.html\nDescription: The Genome Institute at Washington University has developed a high-throughput, fault-tolerant analysis information management system called the Genome Modeling System (GMS), capable of executing complex, interdependent, and automated genome analysis pipelines at a massive scale. The GMS framework provides detailed tracking of samples and data coupled with reliable and repeatable analysis pipelines. GMS includes a full system image with software and services, expandable from one workstation to a large compute cluster.\n\nDocumentation: https://github.com/genome/gms/wiki\nContact: https://github.com/genome/gms/issues\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gmsdata/index.json", "https://registry.opendata.aws/gmsdata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gmsdata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gmsdata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gmsdata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_grillo_openeew/", "public", "File Names from the AWS S3 grillo-openeew Bucket: OpenEEW: OpenEEW", "This dataset has file information from the AWS S3 grillo-openeew bucket at https://grillo-openeew.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenEEW\nName2: OpenEEW\nDescription: Grillo has developed an IoT-based earthquake early-warning system in Mexico and Chile and is now opening its entire archive of unprocessed accelerometer data to the world to encourage the development of new algorithms capable of rapidly detecting and characterizing earthquakes in real time.\n\nDocumentation: https://github.com/grillo/openeew\nContact: openeew@grillo.io\nManagedBy: [Grillo](https://grillo.io/)\nUpdateFrequency: Approximately every 10 minutes\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_grillo_openeew/index.json", "https://registry.opendata.aws/grillo-openeew/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_grillo_openeew.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_grillo_openeew&showErrors=false&email=", "Amazon Web Services", "awsS3Files_grillo_openeew"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_microbiome_project/", "public", "File Names from the AWS S3 human-microbiome-project Bucket: The Human Microbiome Project", "This dataset has file information from the AWS S3 human-microbiome-project bucket at https://human-microbiome-project.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Human Microbiome Project\nName2: https://aws.amazon.com/datasets/human-microbiome-project/\nDescription: The NIH-funded Human Microbiome Project (HMP) is a collaborative effort of over 300 scientists from more than 80 organizations to comprehensively characterize the microbial communities inhabiting the human body and elucidate their role in human health and disease. To accomplish this task, microbial community samples were isolated from a cohort of 300 healthy adult human subjects at 18 specific sites within five regions of the body (oral cavity, airways, urogenital track, skin, and gut). Targeted sequencing of the 16S bacterial marker gene and/or whole metagenome shotgun sequencing was performed for thousands of these samples. In addition, whole genome sequences were generated for isolate strains collected from human body sites to act as reference organisms for analysis. Finally, 16S marker and whole metagenome sequencing was also done on additional samples from people suffering from several disease conditions.\n\nDocumentation: https://commonfund.nih.gov/hmp\nContact: https://commonfund.nih.gov/hmp/related_activities\nUpdateFrequency: Uncertain\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_microbiome_project/index.json", "https://registry.opendata.aws/human-microbiome-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_microbiome_project.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_microbiome_project&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_microbiome_project"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_pangenomics/", "public", "File Names from the AWS S3 human-pangenomics Bucket: Human PanGenomics Project: Human PanGenomics Project", "This dataset has file information from the AWS S3 human-pangenomics bucket at https://human-pangenomics.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Human PanGenomics Project\nName2: Human PanGenomics Project\nDescription: This dataset includes sequencing data, assemblies, and analyses for the offspring of ten parent-offspring trios.\n\nDocumentation: https://github.com/human-pangenomics/hpgp-data\nContact: https://github.com/human-pangenomics/hpgp-data/issues\nUpdateFrequency: Data will be added and updated as technologies improve or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_pangenomics/index.json", "https://registry.opendata.aws/hpgp-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_pangenomics.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_pangenomics&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_pangenomics"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/", "public", "File Names from the AWS S3 ichangemycity-janaagraha-complaints-data-aws Bucket: IChangeMyCity Complaints Data from Janaagraha: IChangeMyCity Complaints", "This dataset has file information from the AWS S3 ichangemycity-janaagraha-complaints-data-aws bucket at https://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IChangeMyCity Complaints Data from Janaagraha\nName2: IChangeMyCity Complaints\nDescription: The [IChangeMyCity](https://www.ichangemycity.com) project provides insight into the complaints raised by citizens from diffent cities of India related to the issues in their neighbourhoods and the resolution of the same by the civic bodies.\n\nDocumentation: http://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/readme.html\nContact: data@janaagraha.org\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/index.json", "https://registry.opendata.aws/ichangemycity/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ichangemycity_janaagraha_complaints_data_aws&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ichangemycity_janaagraha_complaints_data_aws"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_irs_990_spreadsheets/", "public", "File Names from the AWS S3 irs-990-spreadsheets Bucket: IRS 990 Filings (Spreadsheets): Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form", "This dataset has file information from the AWS S3 irs-990-spreadsheets bucket at https://irs-990-spreadsheets.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IRS 990 Filings (Spreadsheets)\nName2: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form\nDescription: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form. Additional fields being added regularly.\n\nDocumentation: https://appliednonprofitresearch.com/documentation/irs-990-spreadsheets\nContact: [info@appliednonprofitresearch.com](info@appliednonprofitresearch.com)\nManagedBy: [Applied Nonprofit Research, LLC](https://www.appliednonprofitresearch.com/)\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_irs_990_spreadsheets/index.json", "https://registry.opendata.aws/990-spreadsheets/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_irs_990_spreadsheets.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_irs_990_spreadsheets&showErrors=false&email=", "Amazon Web Services", "awsS3Files_irs_990_spreadsheets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lab41openaudiocorpus/", "public", "File Names from the AWS S3 lab41openaudiocorpus Bucket: Voices Obscured in Complex Environmental Settings (VOiCES): wav audio files, orthographic transcriptions, and speaker ID", "This dataset has file information from the AWS S3 lab41openaudiocorpus bucket at https://lab41openaudiocorpus.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Voices Obscured in Complex Environmental Settings (VOiCES)\nName2: wav audio files, orthographic transcriptions, and speaker ID\nDescription: VOiCES is a speech corpus recorded in acoustically challenging settings, using distant microphone recording. Speech was recorded in real rooms with various acoustic features (reverb, echo, HVAC systems, outside noise, etc.). Adversarial noise, either television, music, or babble, was concurrently played with clean speech. Data was recorded using multiple microphones strategically placed throughout the room. The corpus includes audio recordings, orthographic transcriptions, and speaker labels.\n\nDocumentation: https://voices18.github.io/\nContact: https://github.com/voices18/utilities/issues\nUpdateFrequency: Data from two additional rooms will be added to the corpus Fall 2018.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lab41openaudiocorpus/index.json", "https://registry.opendata.aws/lab41-sri-voices/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lab41openaudiocorpus.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lab41openaudiocorpus&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lab41openaudiocorpus"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds/", "public", "File Names from the AWS S3 landsat-pds Bucket: Landsat 8: Scenes and metadata", "This dataset has file information from the AWS S3 landsat-pds bucket at https://landsat-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: Scenes and metadata\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds_inventory/", "public", "File Names from the AWS S3 landsat-pds-inventory Bucket: Landsat 8: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)", "This dataset has file information from the AWS S3 landsat-pds-inventory bucket at https://landsat-pds-inventory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds_inventory/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds_inventory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds_inventory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds_inventory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lofar_elais_n1/", "public", "File Names from the AWS S3 lofar-elais-n1 Bucket: LOFAR ELAIS-N1 cycle 2 observations on AWS: LOFAR ELAIS-N1 cycle 2 observations", "This dataset has file information from the AWS S3 lofar-elais-n1 bucket at https://lofar-elais-n1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: LOFAR ELAIS-N1 cycle 2 observations on AWS\nName2: LOFAR ELAIS-N1 cycle 2 observations\nDescription: These data correspond to the [International LOFAR Telescope](http://www.lofar.org/) observations of the sky field ELAIS-N1 (16:10:01 +54:30:36) during the cycle 2 of observations. There are 11 runs of about 8 hours each plus the corresponding observation of the calibration targets before and after the target field. The data are measurement sets ([MS](https://casa.nrao.edu/Memos/229.html)) containing the cross-correlated data and metadata divided in 371 frequency sub-bands per target centred at ~150 MHz.\n\nDocumentation: https://www.lofarcloud.uk/data.html\nContact: https://www.lofarcloud.uk/\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lofar_elais_n1/index.json", "https://registry.opendata.aws/lofar-elais-n1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lofar_elais_n1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lofar_elais_n1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lofar_elais_n1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mf_nwp_models/", "public", "File Names from the AWS S3 mf-nwp-models Bucket: Atmospheric Models from M\u00e9t\u00e9o-France: Atmospheric Models from M\u00e9t\u00e9o-France", "This dataset has file information from the AWS S3 mf-nwp-models bucket at https://mf-nwp-models.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Atmospheric Models from M\u00e9t\u00e9o-France\nName2: Atmospheric Models from M\u00e9t\u00e9o-France\nDescription: Global and high-resolution regional atmospheric models from M\u00e9t\u00e9o-France.\n\nDocumentation: https://mf-models-on-aws.org\nContact: contact@openmeteodata.com\nManagedBy: [OpenMeteoData](https://openmeteodata.com)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mf_nwp_models/index.json", "https://registry.opendata.aws/meteo-france-models/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mf_nwp_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mf_nwp_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mf_nwp_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_modis_pds/", "public", "File Names from the AWS S3 modis-pds Bucket: MODIS on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 modis-pds bucket at https://modis-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: MODIS on AWS\nName2: Imagery and metadata\nDescription: Select products from the Moderate Resolution Imaging Spectroradiometer (MODIS) managed by the U.S. Geological Survey and NASA.\n\nDocumentation: https://docs.opendata.aws/modis-pds/readme.html\nContact: https://github.com/AstroDigital/modis-ingestor/issues\nUpdateFrequency: New MODIS data is added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_modis_pds/index.json", "https://registry.opendata.aws/modis/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_modis_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_modis_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_modis_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_multimedia_commons/", "public", "File Names from the AWS S3 multimedia-commons Bucket: Multimedia Commons: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.", "This dataset has file information from the AWS S3 multimedia-commons bucket at https://multimedia-commons.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Multimedia Commons\nName2: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.\nDescription: The Multimedia Commons is a collection of audio and visual features computed for the nearly 100 million Creative Commons-licensed Flickr images and videos in the YFCC100M dataset from Yahoo! Labs, along with ground-truth annotations for selected subsets. The International Computer Science Institute (ICSI) and Lawrence Livermore National Laboratory are producing and distributing a core set of derived feature sets and annotations as part of an effort to enable large-scale video search capabilities. They have released this feature corpus into the public domain, under Creative Commons License 0, so it is free for anyone to use for any purpose.\n\nDocumentation: https://multimediacommons.wordpress.com/yfcc100m-core-dataset/\nContact: multimedia-commons@icsi.berkeley.edu\nUpdateFrequency: Not updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_multimedia_commons/index.json", "https://registry.opendata.aws/multimedia-commons/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_multimedia_commons.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_multimedia_commons&showErrors=false&email=", "Amazon Web Services", "awsS3Files_multimedia_commons"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mwapublic/", "public", "File Names from the AWS S3 mwapublic Bucket: Epoch of Reionization Dataset: Selected MWA EoR data (uvfits format) from 2013-2015", "This dataset has file information from the AWS S3 mwapublic bucket at https://mwapublic.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Epoch of Reionization Dataset\nName2: Selected MWA EoR data (uvfits format) from 2013-2015\nDescription: The data are from observations with the Murchison Widefield Array (MWA) which is a Square Kilometer Array (SKA) precursor in Western Australia. This particular dataset is from the Epoch of Reionization project which is a key science driver of the SKA. Nearly 2PB of such observations have been recorded to date, this is a small subset of that which has been exported from the MWA data archive in Perth and made available to the public on AWS. The data were taken to detect signatures of the first stars and galaxies forming and the effect of these early stars and galaxies on the evolution of the universe.\n\nDocumentation: http://danielcjacobs.com/research/epoch-of-reionization-aws-public-dataset/\nContact: brynah (at) phys.washington.edu\nManagedBy: University of washington Radio Cosmology Group\nUpdateFrequency: Irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mwapublic/index.json", "https://registry.opendata.aws/epoch-of-reionization/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mwapublic.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mwapublic&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mwapublic"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nanopore_human_wgs/", "public", "File Names from the AWS S3 nanopore-human-wgs Bucket: Nanopore Reference Human Genome: Nanopore Reference Human Genome", "This dataset has file information from the AWS S3 nanopore-human-wgs bucket at https://nanopore-human-wgs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Nanopore Reference Human Genome\nName2: Nanopore Reference Human Genome\nDescription: This dataset includes the sequencing and assembly of a reference standard human genome (GM12878) using the MinION nanopore sequencing instrument with the R9.4 1D chemistry.\n\nDocumentation: https://github.com/nanopore-wgs-consortium/NA12878\nContact: https://github.com/nanopore-wgs-consortium/NA12878/issues\nUpdateFrequency: Data will be added as methodology improves or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nanopore_human_wgs/index.json", "https://registry.opendata.aws/nanopore/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nanopore_human_wgs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nanopore_human_wgs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nanopore_human_wgs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_Landsat/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=Landsat/: NASA NEX: Landsat GLS (Global Land Survey)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=Landsat/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Landsat GLS (Global Land Survey)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_Landsat/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_Landsat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_Landsat&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_Landsat"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_LOCA/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=LOCA/: NASA NEX: Localized Constructed Analogs (LOCA)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=LOCA/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Localized Constructed Analogs (LOCA)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_LOCA/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_LOCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_LOCA&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_LOCA"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_MODIS/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=MODIS/: NASA NEX: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=MODIS/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_MODIS/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_MODIS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_MODIS&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_MODIS"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_DCP30/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-DCP30/: NASA NEX: Downscaled Climate Projections (NEX-DCP30)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-DCP30/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Downscaled Climate Projections (NEX-DCP30)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_DCP30/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_DCP30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_DCP30&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_DCP30"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_GDDP/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-GDDP/: NASA NEX: Global Daily Downscaled Projections (NEX-GDDP)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-GDDP/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Global Daily Downscaled Projections (NEX-GDDP)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_GDDP/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_GDDP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_GDDP&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_GDDP"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gefs_pds/", "public", "File Names from the AWS S3 noaa-gefs-pds Bucket: NOAA Global Ensemble Forecast System (GEFS): Project data files", "This dataset has file information from the AWS S3 noaa-gefs-pds bucket at https://noaa-gefs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Ensemble Forecast System (GEFS)\nName2: Project data files\nDescription: The Global Ensemble Forecast System (GEFS), previously known as the GFS Global ENSemble (GENS), is a weather forecast model made up of 21 separate forecasts, or ensemble members. The National Centers for Environmental Prediction (NCEP) started the GEFS to address the nature of uncertainty in weather observations, which is used to initialize weather forecast models. The GEFS attempts to quantify the amount of uncertainty in a forecast by generating an ensemble of multiple forecasts, each minutely different, or perturbed, from the original observations. With global coverage, GEFS is produced four times a day with weather forecasts going out to 16 days.\n\nDocumentation: https://docs.opendata.aws/noaa-gefs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GEFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GEFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gefs_pds/index.json", "https://registry.opendata.aws/noaa-gefs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gefs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gefs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gefs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_bdp_pds/", "public", "File Names from the AWS S3 noaa-gfs-bdp-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 GFS data", "This dataset has file information from the AWS S3 noaa-gfs-bdp-pds bucket at https://noaa-gfs-bdp-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_bdp_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_bdp_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_bdp_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_bdp_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_pds/", "public", "File Names from the AWS S3 noaa-gfs-pds Bucket: Unidata NOAA Global Forecast System (GFS) Model: A rolling four-week archive of 0.25 degree GFS data", "This dataset has file information from the AWS S3 noaa-gfs-pds bucket at https://noaa-gfs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Unidata NOAA Global Forecast System (GFS) Model\nName2: A rolling four-week archive of 0.25 degree GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks.\n\nDocumentation: https://docs.opendata.aws/noaa-gfs-pds/readme.html\nContact: https://www.ncdc.noaa.gov/contact\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_pds/index.json", "https://registry.opendata.aws/noaa-gfs-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfspara_pds/", "public", "File Names from the AWS S3 noaa-gfspara-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 FV3-based parallel version of the GFS", "This dataset has file information from the AWS S3 noaa-gfspara-pds bucket at https://noaa-gfspara-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 FV3-based parallel version of the GFS\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfspara_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfspara_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfspara_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfspara_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghcn_pds/", "public", "File Names from the AWS S3 noaa-ghcn-pds Bucket: NOAA Global Historical Climatology Network Daily (GHCN-D): Project data files", "This dataset has file information from the AWS S3 noaa-ghcn-pds bucket at https://noaa-ghcn-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Daily (GHCN-D)\nName2: Project data files\nDescription: Global Historical Climatology Network - Daily is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://docs.opendata.aws/noaa-ghcn-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncdc.noaa.gov/ghcn-daily-description). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghcn_pds/index.json", "https://registry.opendata.aws/noaa-ghcn/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghcn_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghcn_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghcn_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghe_pds/", "public", "File Names from the AWS S3 noaa-ghe-pds Bucket: NOAA Global Hydro Estimator (GHE): Project data files", "This dataset has file information from the AWS S3 noaa-ghe-pds bucket at https://noaa-ghe-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Hydro Estimator (GHE)\nName2: Project data files\nDescription: Global Hydro-Estimator provides a global mosaic imagery of rainfall estimates from multi-geostationary satellites, which currently includes GOES-16, GOES-15, Meteosat-8, Meteosat-11 and Himawari-8. The GHE products include: Instantaneous rain rate, 1 hour, 3 hour, 6 hour, 24 hour and also multi-day rainfall accumulation.\n\nDocumentation: https://www.ospo.noaa.gov/Products/atmosphere/ghe/index.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 15 minute-instantaneous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghe_pds/index.json", "https://registry.opendata.aws/noaa-ghe/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghe_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghe_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghe_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_global_hourly_pds/", "public", "File Names from the AWS S3 noaa-global-hourly-pds Bucket: NOAA Global Historical Climatology Network Hourly (GHCN-H): Project data files", "This dataset has file information from the AWS S3 noaa-global-hourly-pds bucket at https://noaa-global-hourly-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Hourly (GHCN-H)\nName2: Project data files\nDescription: Global Historical Climatology Network - Hourly is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: daily (Manually)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_global_hourly_pds/index.json", "https://registry.opendata.aws/noaa-ghcnh/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_global_hourly_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_global_hourly_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_global_hourly_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3NoaaGoes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nUse ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browser the files in buckets. This dataset is a solution to that problem for this bucket.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3NoaaGoes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3NoaaGoes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3NoaaGoes16&showErrors=false&email=", "NOAA", "awsS3NoaaGoes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket: GOES on AWS: GOES-16 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-16 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes16&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes17/", "public", "File Names from the AWS S3 noaa-goes17 Bucket: GOES on AWS: GOES-17 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes17 bucket at https://noaa-goes17.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-17 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes17/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes17&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes17"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_hrrr_pds/", "public", "File Names from the AWS S3 noaa-hrrr-pds Bucket: NOAA High-Resolution Rapid Refresh (HRRR) Model: A rolling one-week archive of HRRR data.", "This dataset has file information from the AWS S3 noaa-hrrr-pds bucket at https://noaa-hrrr-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA High-Resolution Rapid Refresh (HRRR) Model\nName2: A rolling one-week archive of HRRR data.\nDescription: The HRRR is a NOAA real-time 3-km resolution, hourly updated, cloud-resolving, convection-allowing atmospheric model, initialized by 3km grids with 3km radar assimilation. Radar data is assimilated in the HRRR every 15 min over a 1-h period adding further detail to that provided by the hourly data assimilation from the 13km radar-enhanced Rapid Refresh.\n\nDocumentation: https://docs.opendata.aws/noaa-hrrr-pds/readme.html\nContact: https://rapidrefresh.noaa.gov/hrrr/\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_hrrr_pds/index.json", "https://registry.opendata.aws/noaa-hrrr-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_hrrr_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_hrrr_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_hrrr_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_isd_pds/", "public", "File Names from the AWS S3 noaa-isd-pds Bucket: NOAA Integrated Surface Database (ISD): Project data files", "This dataset has file information from the AWS S3 noaa-isd-pds bucket at https://noaa-isd-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Integrated Surface Database (ISD)\nName2: Project data files\nDescription: The Integrated Surface Database (ISD) consists of global hourly and synoptic observations compiled from numerous sources into a gzipped fixed width format. ISD was developed as a joint activity within Asheville's Federal Climate Complex. The database includes over 35,000 stations worldwide, with some having data as far back as 1901, though the data show a substantial increase in volume in the 1940s and again in the early 1970s. Currently, there are over 14,000 \"active\" stations updated daily in the database. The total uncompressed data volume is around 600 gigabytes; however, it continues to grow as more data are added. ISD includes numerous parameters such as wind speed and direction, wind gust, temperature, dew point, cloud data, sea level pressure, altimeter setting, station pressure, present weather, visibility, precipitation amounts for various time periods, snow depth, and various other elements as observed by each station.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_isd_pds/index.json", "https://registry.opendata.aws/noaa-isd/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_isd_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_isd_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_isd_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nexrad_level2/", "public", "File Names from the AWS S3 noaa-nexrad-level2 Bucket: NEXRAD on AWS: NEXRAD Level II archive data", "This dataset has file information from the AWS S3 noaa-nexrad-level2 bucket at https://noaa-nexrad-level2.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II archive data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nexrad_level2/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nexrad_level2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nexrad_level2&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nexrad_level2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_pds/", "public", "File Names from the AWS S3 noaa-nwm-pds Bucket: NOAA National Water Model Short-Range Forecast: A rolling four week archive of NWM data.", "This dataset has file information from the AWS S3 noaa-nwm-pds bucket at https://noaa-nwm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Short-Range Forecast\nName2: A rolling four week archive of NWM data.\nDescription: The National Water Model (NWM) is a water resources model that simulates and forecasts water budget variables, including snowpack, evapotranspiration, soil moisture and streamflow, over the entire continental United States (CONUS). The model, launched in August 2016, is designed to improve the ability of NOAA to meet the needs of its stakeholders (forecasters, emergency managers, reservoir operators, first responders, recreationists, farmers, barge operators, and ecosystem and floodplain managers) by providing expanded accuracy, detail, and frequency of water information. It is operated by NOAA\u2019s Office of Water Prediction. This bucket contains a four-week rollover of the Short Range Forecast model output and the corresponding forcing data for the model. The model is forced with meteorological data from the High Resolution Rapid Refresh (HRRR) and the Rapid Refresh (RAP) models. The Short Range Forecast configuration cycles hourly and produces hourly deterministic forecasts of streamflow and hydrologic states out to 18 hours.\n\nDocumentation: https://docs.opendata.aws/noaa-nwm-pds/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_pds/index.json", "https://registry.opendata.aws/noaa-nwm-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_retro_v2_0_pds/", "public", "File Names from the AWS S3 noaa-nwm-retro-v2.0-pds Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 2.0.", "This dataset has file information from the AWS S3 noaa-nwm-retro-v2.0-pds bucket at https://noaa-nwm-retro-v2.0-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 2.0.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\n... (4 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_retro_v2_0_pds/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_retro_v2_0_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_retro_v2_0_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_retro_v2_0_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ofs_pds/", "public", "File Names from the AWS S3 noaa-ofs-pds Bucket: NOAA Operational Forecast System (OFS): Project data files", "This dataset has file information from the AWS S3 noaa-ofs-pds bucket at https://noaa-ofs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Operational Forecast System (OFS)\nName2: Project data files\nDescription: The Operational Forecast System (OFS) has been developed to serve the maritime user community. OFS was developed in a joint project of the NOAA/National Ocean Service (NOS)/Office of Coast Survey, the NOAA/NOS/Center for Operational Oceanographic Products and Services (CO-OPS), and the NOAA/National Weather Service (NWS)/National Centers for Environmental Prediction (NCEP) Central Operations (NCO). OFS generates water level, water current, water temperature, water salinity (except for the Great Lakes) and wind conditions nowcast and forecast guidance four times per day.\n\nDocumentation: https://docs.opendata.aws/noaa-ofs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA OFS site](https://tidesandcurrents.noaa.gov/models.html). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight and generates 6-hour nowcasts and 48-hour forecast guidance\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ofs_pds/index.json", "https://registry.opendata.aws/noaa-ofs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ofs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ofs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ofs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/", "public", "File Names from the AWS S3 nrel-pds-wtk Bucket with prefix=wtk-techno-economic/pywtk-data/: NREL Wind Integration National Dataset on AWS: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format", "This dataset has file information from the AWS S3 nrel-pds-wtk bucket at https://nrel-pds-wtk.s3.us-west-2.amazonaws.com/ with prefix=wtk-techno-economic/pywtk-data/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NREL Wind Integration National Dataset on AWS\nName2: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format\nDescription: The [Wind Integration National Dataset (WIND)](https://www.nrel.gov/grid/wind-toolkit.html) is an update and expansion of the Eastern Wind Integration Data Set and Western Wind Integration Data Set. It supports the next generation of wind integration studies.\n\nDocumentation: https://www.nrel.gov/grid/wind-toolkit.html\nContact: wind-toolkit@nrel.gov\nManagedBy: [National Renewable Energy Laboratory](https://www.nrel.gov/)\nUpdateFrequency: As Needed\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/index.json", "https://registry.opendata.aws/nrel-pds-wtk/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nwm_archive/", "public", "File Names from the AWS S3 nwm-archive Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 1.2.", "This dataset has file information from the AWS S3 nwm-archive bucket at https://nwm-archive.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 1.2.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nwm_archive/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nwm_archive.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nwm_archive&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nwm_archive"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nyc_tlc/", "public", "File Names from the AWS S3 nyc-tlc Bucket: New York City Taxi and Limousine Commission (TLC) Trip Record Data: CSV files containing NYC TLC trip data.", "This dataset has file information from the AWS S3 nyc-tlc bucket at https://nyc-tlc.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: New York City Taxi and Limousine Commission (TLC) Trip Record Data\nName2: CSV files containing NYC TLC trip data.\nDescription: Data of trips taken by taxis and for-hire vehicles in New York City.\n\nDocumentation: http://www.nyc.gov/html/tlc/html/about/trip_record_data.shtml\nContact: research@tlc.nyc.gov\nUpdateFrequency: As soon as new data is available to be shared publicly.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nyc_tlc/index.json", "https://registry.opendata.aws/nyc-tlc-trip-records-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nyc_tlc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nyc_tlc&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nyc_tlc"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_oicr_icgc_meta_metadata/", "public", "File Names from the AWS S3 oicr.icgc.meta Bucket with prefix=metadata/: ICGC on AWS: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README", "This dataset has file information from the AWS S3 oicr.icgc.meta bucket at https://oicr.icgc.meta.s3.us-east-1.amazonaws.com/ with prefix=metadata/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ICGC on AWS\nName2: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README\nDescription: The International Cancer Genome Consortium (ICGC) coordinates projects with the common aim of accelerating research into the causes and control of cancer. The PanCancer Analysis of Whole Genomes (PCAWG) study is an international collaboration to identify common patterns of mutation in whole genomes from ICGC. More than 2,400 consistently analyzed genomes corresponding to over 1,100 unique ICGC donors are now freely available on Amazon S3 to credentialed researchers subject to ICGC data sharing policies.\n\nDocumentation: https://dcc.icgc.org/icgc-in-the-cloud/aws\nContact: dcc-support@icgc.org\nUpdateFrequency: New data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_oicr_icgc_meta_metadata/index.json", "https://registry.opendata.aws/icgc/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_oicr_icgc_meta_metadata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_oicr_icgc_meta_metadata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_oicr_icgc_meta_metadata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ooni_data/", "public", "File Names from the AWS S3 ooni-data Bucket: Open Observatory of Network Interference: S3 bucket with data", "This dataset has file information from the AWS S3 ooni-data bucket at https://ooni-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open Observatory of Network Interference\nName2: S3 bucket with data\nDescription: A free software, global observation network for detecting censorship, surveillance and traffic manipulation on the internet.\n\nDocumentation: https://ooni.torproject.org/about/\nContact: https://ooni.torproject.org/get-involved/\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ooni_data/index.json", "https://registry.opendata.aws/ooni/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ooni_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ooni_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ooni_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openaq_fetches/", "public", "File Names from the AWS S3 openaq-fetches Bucket: OpenAQ: Minutely CSVs of global air quality fetched from sources all over the world", "This dataset has file information from the AWS S3 openaq-fetches bucket at https://openaq-fetches.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenAQ\nName2: Minutely CSVs of global air quality fetched from sources all over the world\nDescription: Global, aggregated physical air quality data from public data sources provided by government, research-grade and other sources. These awesome groups do the hard work of measuring these data and publicly sharing them, and our community makes them more universally-accessible to both humans and machines.\n\nDocumentation: https://openaq.org\nContact: info@openaq.org\nManagedBy: [OpenAQ](https://openaq.org)\nUpdateFrequency: Minutely\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openaq_fetches/index.json", "https://registry.opendata.aws/openaq/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openaq_fetches.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openaq_fetches&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openaq_fetches"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_opencitymodel/", "public", "File Names from the AWS S3 opencitymodel Bucket: Open City Model (OCM): Project data files", "This dataset has file information from the AWS S3 opencitymodel bucket at https://opencitymodel.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open City Model (OCM)\nName2: Project data files\nDescription: Open City Model is an initiative to provide cityGML data for all the buildings in the United States. By using other open datasets in conjunction with our own code and algorithms it is our goal to provide 3D geometries for every US building.\n\nDocumentation: https://github.com/opencitymodel/opencitymodel\nContact: https://github.com/opencitymodel/opencitymodel#contact\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_opencitymodel/index.json", "https://registry.opendata.aws/opencitymodel/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_opencitymodel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_opencitymodel&showErrors=false&email=", "Amazon Web Services", "awsS3Files_opencitymodel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openneuro_org/", "public", "File Names from the AWS S3 openneuro.org Bucket: OpenNeuro: All datasets", "This dataset has file information from the AWS S3 openneuro.org bucket at https://openneuro.org.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenNeuro\nName2: All datasets\nDescription: OpenNeuro is a database of openly-available brain imaging data. The data are shared according to a Creative Commons CC0 license, providing a broad range of brain imaging data to researchers and citizen scientists alike. The database primarily focuses on functional magnetic resonance imaging (fMRI) data, but also includes other imaging modalities including structural and diffusion MRI, electroencephalography (EEG), and magnetoencephalograpy (MEG). OpenfMRI is a project of the [Center for Reproducible Neuroscience at Stanford University](http://reproducibility.stanford.edu). Development of the OpenNeuro resource has been funded by the National Science Foundation, National Institute of Mental Health, National Institute on Drug Abuse, and the Laura and John Arnold Foundation.\n\nDocumentation: http://openneuro.org\nContact: Support form at https://openneuro.org\nUpdateFrequency: New datasets deposited every 4-6 days\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openneuro_org/index.json", "https://registry.opendata.aws/openneuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openneuro_org.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openneuro_org&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openneuro_org"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osm_pds/", "public", "File Names from the AWS S3 osm-pds Bucket: OpenStreetMap on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 osm-pds bucket at https://osm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap on AWS\nName2: Imagery and metadata\nDescription: OSM is a free, editable map of the world, created and maintained by volunteers. Regular OSM data archives are made available in Amazon S3.\n\nDocumentation: https://docs.opendata.aws/osm-pds/readme.html\nContact: https://github.com/mojodna/osm-pds-pipelines/issues\nUpdateFrequency: Data is updated weekly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osm_pds/index.json", "https://registry.opendata.aws/osm/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osmlr/", "public", "File Names from the AWS S3 osmlr Bucket: OpenStreetMap Linear Referencing: Manifest and data files", "This dataset has file information from the AWS S3 osmlr bucket at https://osmlr.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap Linear Referencing\nName2: Manifest and data files\nDescription: OSMLR a linear referencing system built on top of OpenStreetMap. OSM has great information about roads around the world and their interconnections, but it lacks the means to give a stable identifier to a stretch of roadway. OSMLR provides a stable set of numerical IDs for every 1 kilometer stretch of roadway around the world. In urban areas, OSMLR IDs are attached to each block of roadways between significant intersections.\n\nDocumentation: https://github.com/opentraffic/osmlr/blob/master/docs/intro.md\nContact: https://github.com/opentraffic/osmlr/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osmlr/index.json", "https://registry.opendata.aws/osmlr/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osmlr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osmlr&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osmlr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_qiime2_data/", "public", "File Names from the AWS S3 qiime2-data Bucket: QIIME 2 User Tutorial Datasets: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs", "This dataset has file information from the AWS S3 qiime2-data bucket at https://qiime2-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: QIIME 2 User Tutorial Datasets\nName2: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs\nDescription: QIIME 2 is a powerful, extensible, and decentralized microbiome analysis package with a focus on data and analysis transparency. QIIME 2 enables researchers to start an analysis with raw DNA sequence data and finish with publication-quality figures and statistical results. This dataset contains the user docs (and related datasets) for QIIME 2.\n\nDocumentation: https://docs.qiime2.org\nContact: https://forum.qiime2.org\nManagedBy: The QIIME 2 Development Team\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_qiime2_data/index.json", "https://registry.opendata.aws/qiime2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_qiime2_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_qiime2_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_qiime2_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_safecast_opendata_public_us_east_1/", "public", "File Names from the AWS S3 safecast-opendata-public-us-east-1 Bucket: Safecast: Bulk exports of air and radiation measurements", "This dataset has file information from the AWS S3 safecast-opendata-public-us-east-1 bucket at https://safecast-opendata-public-us-east-1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Safecast\nName2: Bulk exports of air and radiation measurements\nDescription: An ongoing collection of radiation and air quality measurements taken by devices involved in the Safecast project.\n\nDocumentation: https://github.com/Safecast/safecastapi/wiki/Data-Sets\nContact: https://groups.google.com/forum/#!forum/safecast-devices\nManagedBy: [Safecast](https://safecast.org/)\nUpdateFrequency: Continuous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_safecast_opendata_public_us_east_1/index.json", "https://registry.opendata.aws/safecast/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_safecast_opendata_public_us_east_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_safecast_opendata_public_us_east_1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_safecast_opendata_public_us_east_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s1_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s1-l1c/: Sentinel-1: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s1-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C\nDescription: [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1) is a pair of European radar imaging (SAR) satellites launched in 2014 and 2016. Its 6 days revisit cycle and ability to observe through clouds makes it perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. GRD data is available globally since January 2017.\n\nDocumentation: https://roda.sentinel-hub.com/sentinel-s1-l1c/GRD/readme.html\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s1_l1c/index.json", "https://registry.opendata.aws/sentinel-1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s1_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s1_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s1_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l1c/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l1c/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l2a/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l2a/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l2a/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l2a/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l2a&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l2a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel1_slc_seasia_pds/", "public", "File Names from the AWS S3 sentinel1-slc-seasia-pds Bucket: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan", "This dataset has file information from the AWS S3 sentinel1-slc-seasia-pds bucket at https://sentinel1-slc-seasia-pds.s3.ap-southeast-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan\nName2: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan\nDescription: The S1 Single Look Complex (SLC) dataset contains Synthetic Aperture Radar (SAR) data in the C-Band wavelength. The SAR sensors are installed on a two-satellite (Sentinel-1A and Sentinel-1B) constellation orbiting the Earth with a combined revisit time of six days, operated by the European Space Agency. The S1 SLC data are a Level-1 product that collects radar amplitude and phase information in all-weather, day or night conditions, which is ideal for studying natural hazards and emergency response, land applications, oil spill monitoring, sea-ice conditions, and associated climate change effects.\n\nDocumentation: https://github.com/earthobservatory/sentinel1-opds/\nContact: https://github.com/earthobservatory/sentinel1-opds/\nManagedBy: [Earth Observatory of Singapore, Nanyang Technological University](https://earthobservatory.sg)\nUpdateFrequency: S1 SLC data for the region of interest will be updated regularly, as it becomes available on the Alaska Satellite Facility endpoint.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel1_slc_seasia_pds/index.json", "https://registry.opendata.aws/sentinel1-slc-seasia-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel1_slc_seasia_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel1_slc_seasia_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel1_slc_seasia_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_silo_open_data/", "public", "File Names from the AWS S3 silo-open-data Bucket: SILO climate data on AWS: SILO open data", "This dataset has file information from the AWS S3 silo-open-data bucket at https://silo-open-data.s3.ap-southeast-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SILO climate data on AWS\nName2: SILO open data\nDescription: [SILO](https://www.longpaddock.qld.gov.au/silo) is a database of Australian [climate data](https://www.longpaddock.qld.gov.au/silo/about/climate-variables) from 1889 to the present. It provides continuous, daily time-step [data products](https://www.longpaddock.qld.gov.au/silo/about/data-products) in ready-to-use [formats](https://www.longpaddock.qld.gov.au/silo/about/file-formats-and-samples) for research and operational applications. Gridded SILO data in annual NetCDF format are on AWS. Point data are available from the [SILO website](https://www.longpaddock.qld.gov.au/silo/).\n\nDocumentation: https://www.longpaddock.qld.gov.au/silo/gridded-data\nContact: https://www.longpaddock.qld.gov.au/silo/contact-us\nManagedBy: Queensland Government\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_silo_open_data/index.json", "https://registry.opendata.aws/silo/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_silo_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_silo_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_silo_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_softwareheritage/", "public", "File Names from the AWS S3 softwareheritage Bucket: Software Heritage Graph Dataset: Software Heritage Graph Dataset", "This dataset has file information from the AWS S3 softwareheritage bucket at https://softwareheritage.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Software Heritage Graph Dataset\nName2: Software Heritage Graph Dataset\nDescription: [Software Heritage](https://www.softwareheritage.org/) is the largest existing public archive of software source code and accompanying development history. The Software Heritage Graph Dataset is a fully deduplicated Merkle DAG representation of the Software Heritage archive.\n\nDocumentation: https://wiki.softwareheritage.org/wiki/Graph_Dataset_on_Amazon_Athena\nContact: swh-devel@inria.fr\nUpdateFrequency: Data is updated yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_softwareheritage/index.json", "https://registry.opendata.aws/software-heritage/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_softwareheritage.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_softwareheritage&showErrors=false&email=", "Amazon Web Services", "awsS3Files_softwareheritage"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_spacenet_dataset/", "public", "File Names from the AWS S3 spacenet-dataset Bucket: SpaceNet: Imagery and metadata in a S3 bucket", "This dataset has file information from the AWS S3 spacenet-dataset bucket at https://spacenet-dataset.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SpaceNet\nName2: Imagery and metadata in a S3 bucket\nDescription: SpaceNet, launched in August 2016 as an open innovation project offering a repository of freely available imagery with co-registered map features. Before SpaceNet, computer vision researchers had minimal options to obtain free, precision-labeled, and high-resolution satellite imagery. Today, SpaceNet hosts datasets developed by its own team, along with data sets from projects like IARPA\u2019s Functional Map of the World (fMoW).\n\nDocumentation: https://spacenetchallenge.github.io\nContact: https://github.com/SpaceNetChallenge/utilities/issues\nManagedBy: [SpaceNet](https://spacenet.ai/)\nUpdateFrequency: New imagery and features are added quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_spacenet_dataset/index.json", "https://registry.opendata.aws/spacenet/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_spacenet_dataset.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_spacenet_dataset&showErrors=false&email=", "Amazon Web Services", "awsS3Files_spacenet_dataset"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_unidata_nexrad_level2_chunks/", "public", "File Names from the AWS S3 unidata-nexrad-level2-chunks Bucket: NEXRAD on AWS: NEXRAD Level II real-time data", "This dataset has file information from the AWS S3 unidata-nexrad-level2-chunks bucket at https://unidata-nexrad-level2-chunks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II real-time data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_unidata_nexrad_level2_chunks/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_unidata_nexrad_level2_chunks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_unidata_nexrad_level2_chunks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_unidata_nexrad_level2_chunks"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_usgs_lidar_public/", "public", "File Names from the AWS S3 usgs-lidar-public Bucket: USGS 3DEP LiDAR Point Clouds: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.", "This dataset has file information from the AWS S3 usgs-lidar-public bucket at https://usgs-lidar-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: USGS 3DEP LiDAR Point Clouds\nName2: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.\nDescription: The goal of the [USGS 3D Elevation Program ](https://www.usgs.gov/core-science-systems/ngp/3dep) (3DEP) is to collect elevation data in the form of light detection and ranging (LiDAR) data over the conterminous United States, Hawaii, and the U.S. territories, with data acquired over an 8-year period. This dataset provides two realizations of the 3DEP point cloud data. The first resource is a public access organization provided in [Entwine Point Tiles](https://entwine.io/entwine-point-tile.html) format, which a lossless, full-density, streamable octree based on [LASzip](https://laszip.org) (LAZ) encoding. The second resource is a [Requester Pays](https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html) of the same data in LAZ (Compressed LAS) format. Resource names in both buckets correspond to the USGS project names.\n\nDocumentation: https://github.com/hobu/usgs-lidar/\nContact: https://github.com/hobu/usgs-lidar\nManagedBy: [Hobu, Inc.](https://hobu.co)\nUpdateFrequency: Periodically\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_usgs_lidar_public/index.json", "https://registry.opendata.aws/usgs-lidar/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_usgs_lidar_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_usgs_lidar_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_usgs_lidar_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_web_language_models/", "public", "File Names from the AWS S3 web-language-models Bucket: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl): Parallel Corpora to/from English for all official EU languages", "This dataset has file information from the AWS S3 web-language-models bucket at https://web-language-models.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl)\nName2: Parallel Corpora to/from English for all official EU languages\nDescription: ParaCrawl is a set of large parallel corpora to/from English for all official EU languages by a broad web crawling effort. State-of-the-art methods are applied for the entire processing chain from identifying web sites with translated text all the way to collecting, cleaning and delivering parallel corpora that are ready as training data for CEF.AT and translation memories for DG Translation.\n\nDocumentation: https://paracrawl.eu/releases.html\nContact: For questions regarding the datasets contact Kenneth Heafield, email kheafiel@inf.ed.ac.uk. For reporting any issues about bitextor pipeline visit https://github.com/bitextor/bitextor/issues.\nManagedBy: [ParaCrawl](https://paracrawl.eu)\nUpdateFrequency: New data is added according to ParaCrawl release schedule.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_web_language_models/index.json", "https://registry.opendata.aws/paracrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_web_language_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_web_language_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_web_language_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_xiph_media/", "public", "File Names from the AWS S3 xiph-media Bucket: Xiph.Org Test Media: Video and imagery data", "This dataset has file information from the AWS S3 xiph-media bucket at https://xiph-media.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Xiph.Org Test Media\nName2: Video and imagery data\nDescription: Uncompressed video used for video compression and video processing research.\n\nDocumentation: https://media.xiph.org/aws.html\nContact: Thomas Daede tdaede@xiph.org\nUpdateFrequency: New videos are added when contributors submit them.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_xiph_media/index.json", "https://registry.opendata.aws/xiph-media/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_xiph_media.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_xiph_media&showErrors=false&email=", "Amazon Web Services", "awsS3Files_xiph_media"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ycb_benchmarks/", "public", "File Names from the AWS S3 ycb-benchmarks Bucket: Yale-CMU-Berkeley (YCB) Object and Model Set: Project data files", "This dataset has file information from the AWS S3 ycb-benchmarks bucket at https://ycb-benchmarks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Yale-CMU-Berkeley (YCB) Object and Model Set\nName2: Project data files\nDescription: This project primarily aims to facilitate performance benchmarking in robotics research. The dataset provides mesh models, RGB, RGB-D and point cloud images of over 80 objects. The physical objects are also available via the [YCB benchmarking project](http://www.ycbbenchmarks.com/). The data are collected by two state of the art systems: UC Berkley's scanning rig and the Google scanner. The UC Berkley's scanning rig data provide meshes generated with Poisson reconstruction, meshes generated with volumetric range image integration, textured versions of both meshes, Kinbody files for using the meshes with OpenRAVE, 600 High-resolution RGB images, 600 RGB-D images, and 600 point cloud images for each object. The Google scanner data provides 3 meshes with different resolutions (16k, 64k, and 512k polygons), textured versions of each mesh, Kinbody files for using the meshes with OpenRAVE.\n\nDocumentation: http://www.ycbbenchmarks.com/\nContact: bcalli@wpi.edu\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ycb_benchmarks/index.json", "https://registry.opendata.aws/ycb-benchmarks/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ycb_benchmarks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ycb_benchmarks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ycb_benchmarks"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the June 2020 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.graph", "", "", "public", "GLOBEC NEP Vertical Plankton Tow (VPT) Data, 1997-2001", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nCalifornia Current Program\nVertical Plankton Tow (VPT) Data\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10181&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/vpt%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/vpt.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ncast_no (Cast Number Within the Cruise)\nstation_id\nabund_m3 (Abundance, count m-3)\ncomments\ncounter_id\nd_n_flag (Day/Night Flag)\ngear_area (Mouth Area of Net, m2)\ngear_mesh (Net's Mesh Size, mm)\ngear_type\ngenus_species\nlife_stage\nlocal_code\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecVpt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecVpt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecVpt/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecVpt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecVpt&showErrors=false&email=", "GLOBEC", "erdGlobecVpt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://usgodae.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, the EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\nBeach Monitoring Quality Assurance Project Plan (CWBMONQAPP002):\nhttps://www.pacioos.hawaii.edu/wp-content/uploads/2016/08/Beach_Monitoring_QAPP_CWBMONQAPP002_120507.pdf\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwb_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwb_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwb_water_quality/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/cwb_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwb_water_quality&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "cwb_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.graph", "", "", "public", "HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii", "The Hawaii Institute of Marine Biology (HIMB) automatic weather station (AWS) records hourly measurements of precipitation, air temperature, wind speed and direction, and irradiance. Sensors include an Eppley 295-385 nm ultraviolet (UV) radiometer, a LiCor 200SZ Pyranometer, and a LiCor Quantameter (400-700 nm). The sensors are located on the roof of HIMB's Coral Reef Ecology Laboratory (Point Lab) on Moku o Loe (Coconut Island) in Kaneohe Bay on the windward (eastern) coast of Oahu in Hawaii. An accompanying sea water temperature sensor is located less than 10 m offshore of the weather station at a shallow depth of approximately 1 m.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HIMB: HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nsea_water_temperature (water temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nwind_from_direction_std (standard deviation of wind direction (processed), degrees)\nrainfall_amount (total rainfall (processed), mm)\nshortwave_radiation (downwelling shortwave radiation (processed), W/m2)\nultraviolet_radiation (ultraviolet radiation (processed), W/m2)\nphotosynthetic_radiation (photosynthetically active radiation (processed), umol m-2 s-1)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_atn (QARTOD Attenuated Signal Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (139 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HIMB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HIMB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HIMB/index.json", "https://www.pacioos.hawaii.edu/weather/obs-mokuoloe/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HIMB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HIMB&showErrors=false&email=", "Hawaii Institute of Marine Biology (HIMB)", "AWS-HIMB"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.graph", "", "", "public", "Hui O Ka Wai Ola Water Quality Data", "The goal of the Hui O Ka Wai Ola (Association Of The Living Waters) citizen-science based water quality program is to increase the capacity for monitoring water quality in Maui coastal waters by generating reliable data to assess long-term water-quality conditions and detect temporal trends. These data augment the data produced by the Hawaii Department of Health (DOH) Clean Water Branch (CWB) beach monitoring program on Maui.\n \nData are collected and analyzed every two or three weeks for physical and chemical parameters, including ocean salinity, pH, temperature, organic nutrients (nitrogen and phosphorous compounds), dissolved oxygen (DO), and total suspended sediment (TSS). Some water samples are immediately tested at mobile labs while others are processed for testing at University of Hawaii and/or other labs.\n \nUsers of these data should cite the following publication:\n \nFalinski, Kim, Dana Reed, Tova Callender, Emily Fielding, Robin Newbold, and Alana Yurkanin. (2018). Hui O Ka Wai Ola Water Quality Data [Data set]. Zenodo. \"http://doi.org/10.5281/zenodo.1173717\"\n \nFor further information, please visit:\nhttps://www.huiokawaiola.com\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nlocation_id (sampling site identifier)\nlocation_name\nsample_id (sample identifier)\nsession_id (sampling session identifier)\nwater_temperature (Celsius)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hui_water_quality/index.json", "https://www.huiokawaiola.com", "http://upwell.pfeg.noaa.gov/erddap/rss/hui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hui_water_quality&showErrors=false&email=", "Hui O Ka Wai Ola", "hui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitored water quality at several beaches across the island of Maui in the State of Hawaii during the years 2010-2016. This community-based monitoring effort provided valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites were also monitored for harmful bacteria levels of Enterococcus through 2014-06-26. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours.\n\nData were managed through an online repository, the Coral Reef Monitoring Data Portal (now defunct), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection was coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/maui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/maui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/maui_water_quality/index.json", "https://coral.org/maui/", "http://upwell.pfeg.noaa.gov/erddap/rss/maui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=maui_water_quality&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "maui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys. See\nhttps://www.ndbc.noaa.gov/measdes.shtml for a description of the measurements.\n\nThe source data from NOAA NDBC has different column names, different units,\nand different missing values in different files, and other problems\n(notably, lots of rows with duplicate or different values for the same time\npoint). This dataset is a standardized, reformatted, and lightly edited\nversion of that source data, created by NOAA NMFS SWFSC ERD (email:\nerd.data at noaa.gov). Before 2020-01-29, this dataset only had the data\nthat was closest to a given hour, rounded to the nearest hour. Now, this\ndataset has all of the data available from NDBC with the original time\nvalues. If there are multiple source rows for a given buoy for a given\ntime, only the row with the most non-NaN data values is kept. If there is\na gap in the data, a row of missing values is inserted (which causes a nice\ngap when the data is graphed). Also, some impossible data values are\nremoved, but this data is not perfectly clean. This dataset is now updated\nevery 5 minutes.\n\nThis dataset has both historical data (quality controlled, before\n2020-06-01T00:00:00Z) and near real time data (less quality controlled,\nwhich may change at any time, from 2020-06-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Identifier)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.graph", "", "", "public", "NEFSC Continuous Plankton Recorder", "A summary for the data\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ncruise\nsample\nlatitude (degrees_north)\nlongitude (degrees_east)\nphyto_color_indx (Phytoplankton Color Index)\nmarmap_tax_code (Marmap Taxonomic Code)\nmarmap_stage_code\nabundance (per 100 cubic meters)\nlife_stage\ntaxonomic_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/wocecpr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/wocecpr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/wocecpr/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "http://upwell.pfeg.noaa.gov/erddap/rss/wocecpr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=wocecpr&showErrors=false&email=", "NEFSC", "wocecpr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "", "public", "North Pacific High, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.graph", "", "", "public", "OSMC Argo Profile data", "OSMC Argo Profile data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\norganization_name\ncountry_name\nplatform_type_name\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nparameter_name\ndaily_obs_count\nobservation_depth\nobservation_value\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_PROFILERS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_PROFILERS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_PROFILERS/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_PROFILERS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_PROFILERS&showErrors=false&email=", "OSMC", "OSMC_PROFILERS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.graph", "", "", "public", "OSMC normalized observations from GTS", "OSMC normalized In-situ Real time GTS data\n\ncdm_data_type = Point\nVARIABLES:\nPLATFORM_CODE (Station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform\nparameter\nOBSERVATION_VALUE\nOBSERVATION_DEPTH\nCOUNTRY_NAME\norganization_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_Points_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_Points_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_Points/index.json", "https://www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_Points.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_Points&showErrors=false&email=", "OSMC", "OSMC_Points"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001.graph", "", "", "public", "PacIOOS Beach Camera 001: Waikiki, Oahu, Hawaii", "A digital camera on top of the Sheraton Waikiki hotel was used to photograph the shoreline of Waikiki beach along the South Shore of the island of Oahu in the State of Hawaii. The oblique camera view presented here captures the shoreline leading southeast towards Diamond Head crater. It operated for over 4.5 years between February 5, 2009 and October 13, 2013. Capturing hourly snapshots at a set vantage point during the local daytime hours of 6:00 AM or 7:00 AM to 5:00 PM, these images are useful for tracking beach dynamics such as wave run-up, sand movement, and turbidity plumes over time. The camera was mounted on top of a 3 meter wall extending above the roof surface for a total height of 93 meters above ground level or 96 meters above mean sea level. See also BEACHCAM-002 for an alternate camera view from the same location pointing directly downwards.\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (m)\naboveGround (Height, m)\nurl\nname (File Name)\nsize (bytes)\nfileType (File Type)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/BEACHCAM-001_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/BEACHCAM-001_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/BEACHCAM-001/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/BEACHCAM-001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=BEACHCAM-001&showErrors=false&email=", "University of Hawaii", "BEACHCAM-001"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_4"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_2/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_2&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_6/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_6&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_7/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_7&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_7"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_8/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_8&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_9/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_9&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.graph", "", "", "public", "PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-04 is located in Hilo Bay on the east side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-04: PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-04/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-hilo/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-04&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-04"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.graph", "", "", "public", "PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-05 is located in Pelekane Bay near Kawaihae Harbor on the west side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-05: PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-05/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-pelekane/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-05&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-05"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.graph", "", "", "public", "PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii", "The Pacific Islands Ocean Observing System (PacIOOS) operates a Davis Instruments automatic weather station (AWS) near the entrance to Honolulu Harbor on the leeward (western) coast of Oahu in Hawaii to aid with navigation. The station records measurements every 5 minutes of air temperature, wind speed and direction, precipitation, relative humidity, and air pressure. Sensors are located at Pier 1, installed on a tower at an elevation of 64 feet (19.5 meters) above sea level. The station is owned by the Hawaii Pilots Association (HPA). PacIOOS maintains the station and provides data access.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HNLPier1: PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nrainfall_rate (rain rate (processed), mm/h)\nrelative_humidity (relative humidity (processed), %)\nair_pressure (air pressure (processed), millibars)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_gap (QARTOD Gap Test (processed), 0)\nair_temperature_qc_syn (QARTOD Syntax Test (processed), 0)\nair_temperature_qc_loc (QARTOD Location Test (processed), 0)\nair_temperature_qc_rng (QARTOD Gross Range Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_spk (QARTOD Spike Test (processed), 0)\n... (92 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HNLPier1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HNLPier1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HNLPier1/index.json", "https://www.pacioos.hawaii.edu/weather/obs-honolulu/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HNLPier1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HNLPier1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "AWS-HNLPier1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "https://tidesandcurrents.noaa.gov/gomoos.html", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/main.aspx?Division=PRD&ParentMenuId=147&id=1221", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2017, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2017, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2017, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"] + ] + } + } + recorded_at: 2020-07-15 22:22:30 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.csv?longitude,latitude,Haliotis_fulgens_Mean_Density&time%3E%3D2001-07-14 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:30 GMT + x-frame-options: SAMEORIGIN + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:22:30 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=erdCinpKfmBT_4070_d1bb_f9ef.csv + content-encoding: gzip + content-type: text/csv;charset=ISO-8859-1 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: yes + string: ../fixtures/dfe855f3d7f9f7b32e1ca08a1d95cb8e.csv + recorded_at: 2020-07-15 22:22:30 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 diff --git a/tests/vcr_cassettes/tabledap_info_passed_to_x.yml b/tests/vcr_cassettes/tabledap_info_passed_to_x.yml new file mode 100644 index 0000000..00b186f --- /dev/null +++ b/tests/vcr_cassettes/tabledap_info_passed_to_x.yml @@ -0,0 +1,35 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.csv?&time%3E%3D2007-06-24&time%3C%3D2007-07-01 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:49:22 GMT + x-frame-options: SAMEORIGIN + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:49:22 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=erdCinpKfmBT_97f6_55be_e3ba.csv + content-encoding: gzip + content-type: text/csv;charset=ISO-8859-1 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: yes + string: ../fixtures/268b2474e9e613336b900d3289304bb0.csv + recorded_at: 2020-07-15 22:49:22 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 diff --git a/tests/vcr_cassettes/tabledap_memory.yml b/tests/vcr_cassettes/tabledap_memory.yml new file mode 100644 index 0000000..942ec31 --- /dev/null +++ b/tests/vcr_cassettes/tabledap_memory.yml @@ -0,0 +1,2919 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:36 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=erdCinpKfmBT_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "acknowledgement", "String", "NOAA NESDIS COASTWATCH, NOAA SWFSC ERD, Channel Islands National Park, National Park Service"], + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "TimeSeries"], + ["attribute", "NC_GLOBAL", "cdm_timeseries_variables", "String", "station, longitude, latitude"], + ["attribute", "NC_GLOBAL", "contributor_email", "String", "David_Kushner@nps.gov"], + ["attribute", "NC_GLOBAL", "contributor_name", "String", "Channel Islands National Park, National Park Service"], + ["attribute", "NC_GLOBAL", "contributor_role", "String", "Source of data."], + ["attribute", "NC_GLOBAL", "Conventions", "String", "COARDS, CF-1.6, ACDD-1.3, NCCSV-1.0"], + ["attribute", "NC_GLOBAL", "creator_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "creator_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "date_created", "String", "2008-06-11T21:36:06Z"], + ["attribute", "NC_GLOBAL", "date_issued", "String", "2008-06-11T21:36:06Z"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "-118.4"], + ["attribute", "NC_GLOBAL", "featureType", "String", "TimeSeries"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "34.05"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "32.8"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "-118.4"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "-120.4"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_max", "double", "17.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_min", "double", "5.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_positive", "String", "down"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_units", "String", "m"], + ["attribute", "NC_GLOBAL", "history", "String", "Channel Islands National Park, National Park Service\n2008-06-11T21:36:06Z NOAA CoastWatch (West Coast Node) and NOAA SFSC ERD"], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "http://www.nps.gov/chis/naturescience/index.htm"], + ["attribute", "NC_GLOBAL", "institution", "String", "CINP"], + ["attribute", "NC_GLOBAL", "keywords", "String", "anamesus, aplysia, aquatic, atmosphere, aurantia, band, biology, biosphere, californica, channel, chilensis, cinp, coastal, corrugata, crassedoma, crenulata, density, depth, Earth Science > Biosphere > Aquatic Ecosystems > Coastal Habitat, Earth Science > Biosphere > Aquatic Ecosystems > Marine Habitat, ecosystems, forest, fruticosa, fulgens, giganteum, habitat, haliotis, height, helianthoides, identifier, interruptus, islands, kelletia, kelletii, kelp, lofotensis, lophogorgia, lytechinus, marine, mean, megathura, monitoring, muricea, panulirus, pycnopodia, rufescens, station, statistics, stddev, stderr, stylaster, survey, tethya, time, transect, urticina"], + ["attribute", "NC_GLOBAL", "keywords_vocabulary", "String", "GCMD Science Keywords"], + ["attribute", "NC_GLOBAL", "license", "String", "The data may be used and redistributed for free but is not intended for legal use, since it may contain inaccuracies. Neither the data Contributor, CoastWatch, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, of this information. National Park Service Disclaimer: The National Park Service shall not be held liable for improper or incorrect use of the data described and/or contained herein. These data and related graphics are not legal documents and are not intended to be used as such. The information contained in these data is dynamic and may change over time. The data are not better than the original sources from which they were derived. It is the responsibility of the data user to use the data appropriately and consistent within the limitation of geospatial data in general and these data in particular. The related graphics are intended to aid the data user in acquiring relevant data; it is not appropriate to use the related graphics as data. The National Park Service gives no warranty, expressed or implied, as to the accuracy, reliability, or completeness of these data. It is strongly recommended that these data are directly acquired from an NPS server and not indirectly through other sources which may have changed the data in some way. Although these data have been processed successfully on computer systems at the National Park Service, no warranty expressed or implied is made regarding the utility of the data on other systems for general or scientific purposes, nor shall the act of distribution constitute any such warranty. This disclaimer applies both to individual use of the data and aggregate use with other data."], + ["attribute", "NC_GLOBAL", "naming_authority", "String", "gov.noaa.pfeg.coastwatch"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "34.05"], + ["attribute", "NC_GLOBAL", "project", "String", "NOAA NMFS SWFSC ERD (https://www.pfeg.noaa.gov/)"], + ["attribute", "NC_GLOBAL", "references", "String", "Channel Islands National Parks Inventory and Monitoring information: http://nature.nps.gov/im/units/medn . Kelp Forest Monitoring Protocols: http://www.nature.nps.gov/im/units/chis/Reports_PDF/Marine/KFM-HandbookVol1.pdf ."], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "(local files)"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "32.8"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v70"], + ["attribute", "NC_GLOBAL", "subsetVariables", "String", "station, longitude, latitude"], + ["attribute", "NC_GLOBAL", "summary", "String", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth."], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2007-07-01T00:00:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "1983-07-01T00:00:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "-120.4"], + ["variable", "station", "", "String", ""], + ["attribute", "station", "cf_role", "String", "timeseries_id"], + ["attribute", "station", "ioos_category", "String", "Identifier"], + ["attribute", "station", "long_name", "String", "Station"], + ["variable", "longitude", "", "double", ""], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "double", "-120.4, -118.4"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "colorBarMaximum", "double", "-118.4"], + ["attribute", "longitude", "colorBarMinimum", "double", "-120.4"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "latitude", "", "double", ""], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "double", "32.8, 34.05"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "colorBarMaximum", "double", "34.5"], + ["attribute", "latitude", "colorBarMinimum", "double", "32.5"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["variable", "depth", "", "double", ""], + ["attribute", "depth", "_CoordinateAxisType", "String", "Height"], + ["attribute", "depth", "_CoordinateZisPositive", "String", "down"], + ["attribute", "depth", "actual_range", "double", "5.0, 17.0"], + ["attribute", "depth", "axis", "String", "Z"], + ["attribute", "depth", "colorBarMaximum", "double", "20.0"], + ["attribute", "depth", "colorBarMinimum", "double", "0.0"], + ["attribute", "depth", "ioos_category", "String", "Location"], + ["attribute", "depth", "long_name", "String", "Depth"], + ["attribute", "depth", "positive", "String", "down"], + ["attribute", "depth", "standard_name", "String", "depth"], + ["attribute", "depth", "units", "String", "m"], + ["variable", "time", "", "double", ""], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "4.258656E8, 1.183248E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "colorBarMaximum", "double", "1.183248E9"], + ["attribute", "time", "colorBarMinimum", "double", "4.258656E8"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Time"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["variable", "Aplysia_californica_Mean_Density", "", "float", ""], + ["attribute", "Aplysia_californica_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Aplysia_californica_Mean_Density", "actual_range", "float", "0.0, 0.95"], + ["attribute", "Aplysia_californica_Mean_Density", "comment", "String", "Common name: California brown sea hare"], + ["attribute", "Aplysia_californica_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Aplysia_californica_Mean_Density", "long_name", "String", "Aplysia californica Mean Density"], + ["attribute", "Aplysia_californica_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Aplysia_californica_Mean_Density", "units", "String", "m-2"], + ["variable", "Aplysia_californica_StdDev", "", "float", ""], + ["attribute", "Aplysia_californica_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Aplysia_californica_StdDev", "actual_range", "float", "0.0, 0.35"], + ["attribute", "Aplysia_californica_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Aplysia_californica_StdDev", "long_name", "String", "Aplysia californica StdDev"], + ["attribute", "Aplysia_californica_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Aplysia_californica_StdErr", "", "float", ""], + ["attribute", "Aplysia_californica_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Aplysia_californica_StdErr", "actual_range", "float", "0.0, 0.1"], + ["attribute", "Aplysia_californica_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Aplysia_californica_StdErr", "long_name", "String", "Aplysia californica StdErr"], + ["attribute", "Aplysia_californica_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Crassedoma_giganteum_Mean_Density", "", "float", ""], + ["attribute", "Crassedoma_giganteum_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "actual_range", "float", "0.0, 0.92"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "comment", "String", "Common name: Rock scallop"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "long_name", "String", "Crassedoma giganteum Mean Density"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "units", "String", "m-2"], + ["variable", "Crassedoma_giganteum_StdDev", "", "float", ""], + ["attribute", "Crassedoma_giganteum_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Crassedoma_giganteum_StdDev", "actual_range", "float", "0.0, 0.71"], + ["attribute", "Crassedoma_giganteum_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Crassedoma_giganteum_StdDev", "long_name", "String", "Crassedoma giganteum StdDev"], + ["attribute", "Crassedoma_giganteum_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Crassedoma_giganteum_StdErr", "", "float", ""], + ["attribute", "Crassedoma_giganteum_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Crassedoma_giganteum_StdErr", "actual_range", "float", "0.0, 0.2"], + ["attribute", "Crassedoma_giganteum_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Crassedoma_giganteum_StdErr", "long_name", "String", "Crassedoma giganteum StdErr"], + ["attribute", "Crassedoma_giganteum_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_corrugata_Mean_Density", "", "float", ""], + ["attribute", "Haliotis_corrugata_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_corrugata_Mean_Density", "actual_range", "float", "0.0, 0.18"], + ["attribute", "Haliotis_corrugata_Mean_Density", "comment", "String", "Common name: Pink abalone"], + ["attribute", "Haliotis_corrugata_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Haliotis_corrugata_Mean_Density", "long_name", "String", "Haliotis corrugata Mean Density"], + ["attribute", "Haliotis_corrugata_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Haliotis_corrugata_Mean_Density", "units", "String", "m-2"], + ["variable", "Haliotis_corrugata_StdDev", "", "float", ""], + ["attribute", "Haliotis_corrugata_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_corrugata_StdDev", "actual_range", "float", "0.0, 0.1"], + ["attribute", "Haliotis_corrugata_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_corrugata_StdDev", "long_name", "String", "Haliotis corrugata StdDev"], + ["attribute", "Haliotis_corrugata_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_corrugata_StdErr", "", "float", ""], + ["attribute", "Haliotis_corrugata_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_corrugata_StdErr", "actual_range", "float", "0.0, 0.03"], + ["attribute", "Haliotis_corrugata_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_corrugata_StdErr", "long_name", "String", "Haliotis corrugata StdErr"], + ["attribute", "Haliotis_corrugata_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_fulgens_Mean_Density", "", "float", ""], + ["attribute", "Haliotis_fulgens_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_fulgens_Mean_Density", "actual_range", "float", "0.0, 0.005555556"], + ["attribute", "Haliotis_fulgens_Mean_Density", "comment", "String", "Common name: Green abalone"], + ["attribute", "Haliotis_fulgens_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Haliotis_fulgens_Mean_Density", "long_name", "String", "Haliotis fulgens Mean Density"], + ["attribute", "Haliotis_fulgens_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Haliotis_fulgens_Mean_Density", "units", "String", "m-2"], + ["variable", "Haliotis_fulgens_StdDev", "", "float", ""], + ["attribute", "Haliotis_fulgens_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_fulgens_StdDev", "actual_range", "float", "0.0, 0.008206099"], + ["attribute", "Haliotis_fulgens_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_fulgens_StdDev", "long_name", "String", "Haliotis fulgens StdDev"], + ["attribute", "Haliotis_fulgens_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_fulgens_StdErr", "", "float", ""], + ["attribute", "Haliotis_fulgens_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_fulgens_StdErr", "actual_range", "float", "0.0, 0.002368897"], + ["attribute", "Haliotis_fulgens_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_fulgens_StdErr", "long_name", "String", "Haliotis fulgens StdErr"], + ["attribute", "Haliotis_fulgens_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_rufescens_Mean_Density", "", "float", ""], + ["attribute", "Haliotis_rufescens_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_rufescens_Mean_Density", "actual_range", "float", "0.0, 0.99"], + ["attribute", "Haliotis_rufescens_Mean_Density", "comment", "String", "Common name: Red abalone"], + ["attribute", "Haliotis_rufescens_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Haliotis_rufescens_Mean_Density", "long_name", "String", "Haliotis rufescens Mean Density"], + ["attribute", "Haliotis_rufescens_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Haliotis_rufescens_Mean_Density", "units", "String", "m-2"], + ["variable", "Haliotis_rufescens_StdDev", "", "float", ""], + ["attribute", "Haliotis_rufescens_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_rufescens_StdDev", "actual_range", "float", "0.0, 0.6"], + ["attribute", "Haliotis_rufescens_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_rufescens_StdDev", "long_name", "String", "Haliotis rufescens StdDev"], + ["attribute", "Haliotis_rufescens_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_rufescens_StdErr", "", "float", ""], + ["attribute", "Haliotis_rufescens_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_rufescens_StdErr", "actual_range", "float", "0.0, 0.17"], + ["attribute", "Haliotis_rufescens_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_rufescens_StdErr", "long_name", "String", "Haliotis rufescens StdErr"], + ["attribute", "Haliotis_rufescens_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Kelletia_kelletii_Mean_Density", "", "float", ""], + ["attribute", "Kelletia_kelletii_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Kelletia_kelletii_Mean_Density", "actual_range", "float", "0.0, 0.55"], + ["attribute", "Kelletia_kelletii_Mean_Density", "comment", "String", "Common name: Kellet's whelk"], + ["attribute", "Kelletia_kelletii_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Kelletia_kelletii_Mean_Density", "long_name", "String", "Kelletia kelletii Mean Density"], + ["attribute", "Kelletia_kelletii_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Kelletia_kelletii_Mean_Density", "units", "String", "m-2"], + ["variable", "Kelletia_kelletii_StdDev", "", "float", ""], + ["attribute", "Kelletia_kelletii_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Kelletia_kelletii_StdDev", "actual_range", "float", "0.0, 0.29"], + ["attribute", "Kelletia_kelletii_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Kelletia_kelletii_StdDev", "long_name", "String", "Kelletia kelletii StdDev"], + ["attribute", "Kelletia_kelletii_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Kelletia_kelletii_StdErr", "", "float", ""], + ["attribute", "Kelletia_kelletii_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Kelletia_kelletii_StdErr", "actual_range", "float", "0.0, 0.08"], + ["attribute", "Kelletia_kelletii_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Kelletia_kelletii_StdErr", "long_name", "String", "Kelletia kelletii StdErr"], + ["attribute", "Kelletia_kelletii_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Lophogorgia_chilensis_Mean_Density", "", "float", ""], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "actual_range", "float", "0.0, 0.7"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "comment", "String", "Common name: Red gorgonian"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "long_name", "String", "Lophogorgia chilensis Mean Density"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "units", "String", "m-2"], + ["variable", "Lophogorgia_chilensis_StdDev", "", "float", ""], + ["attribute", "Lophogorgia_chilensis_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lophogorgia_chilensis_StdDev", "actual_range", "float", "0.0, 0.44"], + ["attribute", "Lophogorgia_chilensis_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Lophogorgia_chilensis_StdDev", "long_name", "String", "Lophogorgia chilensis StdDev"], + ["attribute", "Lophogorgia_chilensis_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Lophogorgia_chilensis_StdErr", "", "float", ""], + ["attribute", "Lophogorgia_chilensis_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lophogorgia_chilensis_StdErr", "actual_range", "float", "0.0, 0.12"], + ["attribute", "Lophogorgia_chilensis_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Lophogorgia_chilensis_StdErr", "long_name", "String", "Lophogorgia chilensis StdErr"], + ["attribute", "Lophogorgia_chilensis_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Lytechinus_anamesus_Mean_Density", "", "float", ""], + ["attribute", "Lytechinus_anamesus_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "actual_range", "float", "0.0, 22.45"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "comment", "String", "Common name: White sea urchin"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "long_name", "String", "Lytechinus anamesus Mean Density"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "units", "String", "m-2"], + ["variable", "Lytechinus_anamesus_StdDev", "", "float", ""], + ["attribute", "Lytechinus_anamesus_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lytechinus_anamesus_StdDev", "actual_range", "float", "0.0, 9.2"], + ["attribute", "Lytechinus_anamesus_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Lytechinus_anamesus_StdDev", "long_name", "String", "Lytechinus anamesus StdDev"], + ["attribute", "Lytechinus_anamesus_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Lytechinus_anamesus_StdErr", "", "float", ""], + ["attribute", "Lytechinus_anamesus_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lytechinus_anamesus_StdErr", "actual_range", "float", "0.0, 2.65"], + ["attribute", "Lytechinus_anamesus_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Lytechinus_anamesus_StdErr", "long_name", "String", "Lytechinus anamesus StdErr"], + ["attribute", "Lytechinus_anamesus_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Megathura_crenulata_Mean_Density", "", "float", ""], + ["attribute", "Megathura_crenulata_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Megathura_crenulata_Mean_Density", "actual_range", "float", "0.0, 0.5"], + ["attribute", "Megathura_crenulata_Mean_Density", "comment", "String", "Common name: Giant keyhole limpet"], + ["attribute", "Megathura_crenulata_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Megathura_crenulata_Mean_Density", "long_name", "String", "Megathura crenulata Mean Density"], + ["attribute", "Megathura_crenulata_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Megathura_crenulata_Mean_Density", "units", "String", "m-2"], + ["variable", "Megathura_crenulata_StdDev", "", "float", ""], + ["attribute", "Megathura_crenulata_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Megathura_crenulata_StdDev", "actual_range", "float", "0.0, 0.22"], + ["attribute", "Megathura_crenulata_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Megathura_crenulata_StdDev", "long_name", "String", "Megathura crenulata StdDev"], + ["attribute", "Megathura_crenulata_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Megathura_crenulata_StdErr", "", "float", ""], + ["attribute", "Megathura_crenulata_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Megathura_crenulata_StdErr", "actual_range", "float", "0.0, 0.07"], + ["attribute", "Megathura_crenulata_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Megathura_crenulata_StdErr", "long_name", "String", "Megathura crenulata StdErr"], + ["attribute", "Megathura_crenulata_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Muricea_californica_Mean_Density", "", "float", ""], + ["attribute", "Muricea_californica_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_californica_Mean_Density", "actual_range", "float", "0.0, 0.31"], + ["attribute", "Muricea_californica_Mean_Density", "comment", "String", "Common name: California golden gorgonian"], + ["attribute", "Muricea_californica_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Muricea_californica_Mean_Density", "long_name", "String", "Muricea californica Mean Density"], + ["attribute", "Muricea_californica_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Muricea_californica_Mean_Density", "units", "String", "m-2"], + ["variable", "Muricea_californica_StdDev", "", "float", ""], + ["attribute", "Muricea_californica_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_californica_StdDev", "actual_range", "float", "0.0, 0.16"], + ["attribute", "Muricea_californica_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Muricea_californica_StdDev", "long_name", "String", "Muricea californica StdDev"], + ["attribute", "Muricea_californica_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Muricea_californica_StdErr", "", "float", ""], + ["attribute", "Muricea_californica_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_californica_StdErr", "actual_range", "float", "0.0, 0.04"], + ["attribute", "Muricea_californica_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Muricea_californica_StdErr", "long_name", "String", "Muricea californica StdErr"], + ["attribute", "Muricea_californica_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Muricea_fruticosa_Mean_Density", "", "float", ""], + ["attribute", "Muricea_fruticosa_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_fruticosa_Mean_Density", "actual_range", "float", "0.0, 0.04"], + ["attribute", "Muricea_fruticosa_Mean_Density", "comment", "String", "Common name: Brown gorgonian"], + ["attribute", "Muricea_fruticosa_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Muricea_fruticosa_Mean_Density", "long_name", "String", "Muricea fruticosa Mean Density"], + ["attribute", "Muricea_fruticosa_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Muricea_fruticosa_Mean_Density", "units", "String", "m-2"], + ["variable", "Muricea_fruticosa_StdDev", "", "float", ""], + ["attribute", "Muricea_fruticosa_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_fruticosa_StdDev", "actual_range", "float", "0.0, 0.09"], + ["attribute", "Muricea_fruticosa_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Muricea_fruticosa_StdDev", "long_name", "String", "Muricea fruticosa StdDev"], + ["attribute", "Muricea_fruticosa_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Muricea_fruticosa_StdErr", "", "float", ""], + ["attribute", "Muricea_fruticosa_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_fruticosa_StdErr", "actual_range", "float", "0.0, 0.02"], + ["attribute", "Muricea_fruticosa_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Muricea_fruticosa_StdErr", "long_name", "String", "Muricea fruticosa StdErr"], + ["attribute", "Muricea_fruticosa_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Panulirus_interruptus_Mean_Density", "", "float", ""], + ["attribute", "Panulirus_interruptus_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Panulirus_interruptus_Mean_Density", "actual_range", "float", "0.0, 0.11"], + ["attribute", "Panulirus_interruptus_Mean_Density", "comment", "String", "Common name: California spiny lobster"], + ["attribute", "Panulirus_interruptus_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Panulirus_interruptus_Mean_Density", "long_name", "String", "Panulirus interruptus Mean Density"], + ["attribute", "Panulirus_interruptus_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Panulirus_interruptus_Mean_Density", "units", "String", "m-2"], + ["variable", "Panulirus_interruptus_StdDev", "", "float", ""], + ["attribute", "Panulirus_interruptus_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Panulirus_interruptus_StdDev", "actual_range", "float", "0.0, 0.32"], + ["attribute", "Panulirus_interruptus_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Panulirus_interruptus_StdDev", "long_name", "String", "Panulirus interruptus StdDev"], + ["attribute", "Panulirus_interruptus_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Panulirus_interruptus_StdErr", "", "float", ""], + ["attribute", "Panulirus_interruptus_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Panulirus_interruptus_StdErr", "actual_range", "float", "0.0, 0.09"], + ["attribute", "Panulirus_interruptus_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Panulirus_interruptus_StdErr", "long_name", "String", "Panulirus interruptus StdErr"], + ["attribute", "Panulirus_interruptus_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Pycnopodia_helianthoides_Mean_Density", "", "float", ""], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "actual_range", "float", "0.0, 0.33"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "comment", "String", "Common name: Sunflower star"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "long_name", "String", "Pycnopodia helianthoides Mean Density"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "units", "String", "m-2"], + ["variable", "Pycnopodia_helianthoides_StdDev", "", "float", ""], + ["attribute", "Pycnopodia_helianthoides_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Pycnopodia_helianthoides_StdDev", "actual_range", "float", "0.0, 0.21"], + ["attribute", "Pycnopodia_helianthoides_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Pycnopodia_helianthoides_StdDev", "long_name", "String", "Pycnopodia helianthoides StdDev"], + ["attribute", "Pycnopodia_helianthoides_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Pycnopodia_helianthoides_StdErr", "", "float", ""], + ["attribute", "Pycnopodia_helianthoides_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Pycnopodia_helianthoides_StdErr", "actual_range", "float", "0.0, 0.06"], + ["attribute", "Pycnopodia_helianthoides_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Pycnopodia_helianthoides_StdErr", "long_name", "String", "Pycnopodia helianthoides StdErr"], + ["attribute", "Pycnopodia_helianthoides_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Stylaster_californica_Mean_Density", "", "float", ""], + ["attribute", "Stylaster_californica_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Stylaster_californica_Mean_Density", "actual_range", "float", "0.0, 0.13"], + ["attribute", "Stylaster_californica_Mean_Density", "comment", "String", "Common name: California hydrocoral"], + ["attribute", "Stylaster_californica_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Stylaster_californica_Mean_Density", "long_name", "String", "Stylaster californica Mean Density"], + ["attribute", "Stylaster_californica_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Stylaster_californica_Mean_Density", "units", "String", "m-2"], + ["variable", "Stylaster_californica_StdDev", "", "float", ""], + ["attribute", "Stylaster_californica_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Stylaster_californica_StdDev", "actual_range", "float", "0.0, 0.18"], + ["attribute", "Stylaster_californica_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Stylaster_californica_StdDev", "long_name", "String", "Stylaster californica StdDev"], + ["attribute", "Stylaster_californica_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Stylaster_californica_StdErr", "", "float", ""], + ["attribute", "Stylaster_californica_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Stylaster_californica_StdErr", "actual_range", "float", "0.0, 0.05"], + ["attribute", "Stylaster_californica_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Stylaster_californica_StdErr", "long_name", "String", "Stylaster californica StdErr"], + ["attribute", "Stylaster_californica_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Tethya_aurantia_Mean_Density", "", "float", ""], + ["attribute", "Tethya_aurantia_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Tethya_aurantia_Mean_Density", "actual_range", "float", "0.0, 0.41"], + ["attribute", "Tethya_aurantia_Mean_Density", "comment", "String", "Common name: Orange puffball sponge"], + ["attribute", "Tethya_aurantia_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Tethya_aurantia_Mean_Density", "long_name", "String", "Tethya aurantia Mean Density"], + ["attribute", "Tethya_aurantia_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Tethya_aurantia_Mean_Density", "units", "String", "m-2"], + ["variable", "Tethya_aurantia_StdDev", "", "float", ""], + ["attribute", "Tethya_aurantia_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Tethya_aurantia_StdDev", "actual_range", "float", "0.0, 0.18"], + ["attribute", "Tethya_aurantia_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Tethya_aurantia_StdDev", "long_name", "String", "Tethya aurantia StdDev"], + ["attribute", "Tethya_aurantia_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Tethya_aurantia_StdErr", "", "float", ""], + ["attribute", "Tethya_aurantia_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Tethya_aurantia_StdErr", "actual_range", "float", "0.0, 0.05"], + ["attribute", "Tethya_aurantia_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Tethya_aurantia_StdErr", "long_name", "String", "Tethya aurantia StdErr"], + ["attribute", "Tethya_aurantia_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Urticina_lofotensis_Mean_Density", "", "float", ""], + ["attribute", "Urticina_lofotensis_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Urticina_lofotensis_Mean_Density", "actual_range", "float", "0.0, 0.39"], + ["attribute", "Urticina_lofotensis_Mean_Density", "comment", "String", "Common name: White-spotted rose anemone"], + ["attribute", "Urticina_lofotensis_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Urticina_lofotensis_Mean_Density", "long_name", "String", "Urticina lofotensis Mean Density"], + ["attribute", "Urticina_lofotensis_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Urticina_lofotensis_Mean_Density", "units", "String", "m-2"], + ["variable", "Urticina_lofotensis_StdDev", "", "float", ""], + ["attribute", "Urticina_lofotensis_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Urticina_lofotensis_StdDev", "actual_range", "float", "0.0, 0.28"], + ["attribute", "Urticina_lofotensis_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Urticina_lofotensis_StdDev", "long_name", "String", "Urticina lofotensis StdDev"], + ["attribute", "Urticina_lofotensis_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Urticina_lofotensis_StdErr", "", "float", ""], + ["attribute", "Urticina_lofotensis_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Urticina_lofotensis_StdErr", "actual_range", "float", "0.0, 0.08"], + ["attribute", "Urticina_lofotensis_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Urticina_lofotensis_StdErr", "long_name", "String", "Urticina lofotensis StdErr"], + ["attribute", "Urticina_lofotensis_StdErr", "missing_value", "float", "-9999999.0"] + ] + } + } + recorded_at: 2020-07-15 22:22:26 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:37 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:22:37 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://upwell.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012.graph", "", "", "public", "AIS Ship Traffic: Hawaii: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_hi_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_hi_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_hi_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_hi_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_hi_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_hi_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012.graph", "", "", "public", "AIS Ship Traffic: Johnston Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Johnston Atoll. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_john_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_john_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_john_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_john_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_john_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_john_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012.graph", "", "", "public", "AIS Ship Traffic: Mariana and Wake: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Mariana Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_mari_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_mari_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_mari_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_mari_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_mari_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_mari_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012.graph", "", "", "public", "AIS Ship Traffic: Rose Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Rose Atoll in American Samoa. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_rose_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_rose_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_rose_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_rose_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_rose_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_rose_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom for the most recent 7 days.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_temp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_temp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_temp/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_temp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_temp&showErrors=false&email=", "University of Hawaii", "aco_adcp_temp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Velocity", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean current velocity at the ACO from a 250 kHz SonTek acoustic doppler current profiler (ADCP) at 1.83 m above the ocean bottom for the most recent 7 days. Velocities are flagged bad if the amplitude is excessively low or high. An amplitude is high if it exceeds the average of the ping before and the ping after by 20 counts. An amplitude is low if less than 6 counts. After this the velocities are flagged bad if the absolute deviation of the vertical velocity from its ensemble median exceeds 0.15 m/s or if its value is less than -0.25 m/s.\n\ncdm_data_type = Profile\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each location, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\neastward_sea_water_velocity (current east component, meters/second)\nnorthward_sea_water_velocity (current north component, meters/second)\nupward_sea_water_velocity (current upward component, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_vel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_vel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_vel/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_vel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_vel&showErrors=false&email=", "University of Hawaii", "aco_adcp_vel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://upwell.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF.graph", "", "", "public", "CRRF Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-CRRF: CRRF Weather Station: Palau: Koror: Ngeanges Island)\nair_temperature (Celsius)\nair_temperature_max (maximum air temperature, Celsius)\nair_temperature_max_time (maximum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (minimum air temperature, Celsius)\nair_temperature_min_time (minimum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_std (air temperature standard deviation, Celsius)\nwind_speed (m/s)\nwind_speed_max (gust speed, m/s)\nwind_speed_max_time (gust speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (minimum wind speed, m/s)\nwind_speed_min_time (minimum wind speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_std (wind speed standard deviation, m/s)\nwind_from_direction (wind direction, degrees)\nwind_from_direction_std (wind direction standard deviation, degrees)\nrainfall_amount (total rainfall, mm)\n... (23 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-CRRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-CRRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-CRRF/index.json", "https://www.pacioos.hawaii.edu/weather/obs-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-CRRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-CRRF&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "AWS-CRRF"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_1000genomes/", "public", "File Names from the AWS S3 1000genomes Bucket: 1000 Genomes", "This dataset has file information from the AWS S3 1000genomes bucket at https://1000genomes.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 1000 Genomes\nName2: http://www.internationalgenome.org/formats\nDescription: The 1000 Genomes Project is an international collaboration which has established the most detailed catalogue of human genetic variation, including SNPs, structural variants, and their haplotype context. The final phase of the project sequenced more than 2500 individuals from 26 different populations around the world and produced an integrated set of phased haplotypes with more than 80 million variants for these individuals.\n\nDocumentation: https://docs.opendata.aws/1000genomes/readme.html\nContact: http://www.internationalgenome.org/contact\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_1000genomes/index.json", "https://registry.opendata.aws/1000-genomes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_1000genomes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_1000genomes&showErrors=false&email=", "Amazon Web Services", "awsS3Files_1000genomes"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_3kricegenome/", "public", "File Names from the AWS S3 3kricegenome Bucket: 3000 Rice Genomes Project", "This dataset has file information from the AWS S3 3kricegenome bucket at https://3kricegenome.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 3000 Rice Genomes Project\nName2: http://s3.amazonaws.com/3kricegenome/README-snp_pipeline.txt\nDescription: The 3000 Rice Genome Project is an international effort to sequence the genomes of 3,024 rice varieties from 89 countries.\n\nDocumentation: https://docs.opendata.aws/3kricegenome/readme.html\nContact: http://iric.irri.org/contact-us\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_3kricegenome/index.json", "https://registry.opendata.aws/3kricegenome/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_3kricegenome.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_3kricegenome&showErrors=false&email=", "Amazon Web Services", "awsS3Files_3kricegenome"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aft_vbi_pds/", "public", "File Names from the AWS S3 aft-vbi-pds Bucket: Amazon Bin Image Dataset: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.", "This dataset has file information from the AWS S3 aft-vbi-pds bucket at https://aft-vbi-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Bin Image Dataset\nName2: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.\nDescription: The Amazon Bin Image Dataset contains over 500,000 images and metadata from bins of a pod in an operating Amazon Fulfillment Center. The bin images in this dataset are captured as robot units carry pods as part of normal Amazon Fulfillment Center operations.\n\nDocumentation: https://docs.opendata.aws/aft-vbi-pds/readme.html\nContact: amazon-bin-images@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aft_vbi_pds/index.json", "https://registry.opendata.aws/amazon-bin-imagery/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aft_vbi_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aft_vbi_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aft_vbi_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory/", "public", "File Names from the AWS S3 allen-brain-observatory Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: Project data files in a public bucket", "This dataset has file information from the AWS S3 allen-brain-observatory bucket at https://allen-brain-observatory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: Project data files in a public bucket\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory_templates/", "public", "File Names from the AWS S3 allen-brain-observatory-templates Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: SageMaker launch template with s3fs bucket mounts", "This dataset has file information from the AWS S3 allen-brain-observatory-templates bucket at https://allen-brain-observatory-templates.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: SageMaker launch template with s3fs bucket mounts\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory_templates/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory_templates.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory_templates&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory_templates"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_amazon_reviews_pds/", "public", "File Names from the AWS S3 amazon-reviews-pds Bucket: Amazon Customer Reviews Dataset: TSV files of reviews", "This dataset has file information from the AWS S3 amazon-reviews-pds bucket at https://amazon-reviews-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Customer Reviews Dataset\nName2: TSV files of reviews\nDescription: Amazon Customer Reviews (a.k.a. Product Reviews) is one of Amazon\u2019s iconic products. In a period of over two decades since the first review in 1995, millions of Amazon customers have contributed over a hundred million reviews to express opinions and describe their experiences regarding products on the Amazon.com website. Over 130+ million customer reviews are available to researchers as part of this dataset.\n\nDocumentation: https://s3.amazonaws.com/amazon-reviews-pds/readme.html\nContact: customer-review-dataset@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not defined\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_amazon_reviews_pds/index.json", "https://registry.opendata.aws/amazon-reviews/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_amazon_reviews_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_amazon_reviews_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_amazon_reviews_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_avg_kitti/", "public", "File Names from the AWS S3 avg-kitti Bucket: KITTI Vision Benchmark Suite", "This dataset has file information from the AWS S3 avg-kitti bucket at https://avg-kitti.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: KITTI Vision Benchmark Suite\nName2: http://www.cvlibs.net/datasets/kitti/raw_data.php\nDescription: Dataset and benchmarks for computer vision research in the context of autonomous driving. The dataset has been recorded in and around the city of Karlsruhe, Germany using the mobile platform AnnieWay (VW station wagon) which has been equipped with several RGB and monochrome cameras, a Velodyne HDL 64 laser scanner as well as an accurate RTK corrected GPS/IMU localization unit. The dataset has been created for computer vision and machine learning research on stereo, optical flow, visual odometry, semantic segmentation, semantic instance segmentation, road segmentation, single image depth prediction, depth map completion, 2D and 3D object detection and object tracking. In addition, several raw data recordings are provided. The datasets are captured by driving around the mid-size city of Karlsruhe, in rural areas and on highways. Up to 15 cars and 30 pedestrians are visible per image.\n\nDocumentation: http://www.cvlibs.net/datasets/kitti/\nContact: http://www.cvlibs.net/people.php\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_avg_kitti/index.json", "https://registry.opendata.aws/kitti/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_avg_kitti.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_avg_kitti&showErrors=false&email=", "Amazon Web Services", "awsS3Files_avg_kitti"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/", "public", "File Names from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd Bucket: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)", "This dataset has file information from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd bucket at https://aws-earth-mo-atmospheric-mogreps-g-prd.s3.eu-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts\nName2: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)\nDescription: Meteorological data reusers now have an exciting opportunity to sample, experiment and evaluate Met Office atmospheric model data, whilst also experiencing a transformative method of requesting data via Restful APIs on AWS. All ahead of Met Office\u2019s own operationally supported API platform that will be launched in late 2019.\n\nDocumentation: https://github.com/MetOffice/aws-earth-examples\nContact: https://www.metoffice.gov.uk/about-us/contact\nUpdateFrequency: Daily (with 24 hour delay)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/index.json", "https://registry.opendata.aws/uk-met-office/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_gsod/", "public", "File Names from the AWS S3 aws-gsod Bucket: Global Surface Summary of Day: Measurements and metadata", "This dataset has file information from the AWS S3 aws-gsod bucket at https://aws-gsod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Surface Summary of Day\nName2: Measurements and metadata\nDescription: GSOD is a collection of daily weather measurements (temperature, wind speed, humidity, pressure, and more) from 9000+ weather stations around the world.\n\nDocumentation: https://www.ncdc.noaa.gov/\nContact: https://www.ncdc.noaa.gov/\nUpdateFrequency: Currently updated infrequently. Last updated on September 13, 2016.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_gsod/index.json", "https://registry.opendata.aws/noaa-gsod/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_gsod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_gsod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_gsod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_broad_references/", "public", "File Names from the AWS S3 broad-references Bucket: Broad Genome References: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.", "This dataset has file information from the AWS S3 broad-references bucket at https://broad-references.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Broad Genome References\nName2: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.\nDescription: Broad maintained human genome reference builds hg19/hg38 and decoy references.\n\nDocumentation: https://s3.amazonaws.com/broad-references/broad-references-readme.html\nContact: hensonc@broadinstitute.org\nManagedBy: Broad Institute\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_broad_references/index.json", "https://registry.opendata.aws/broad-references/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_broad_references.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_broad_references&showErrors=false&email=", "Amazon Web Services", "awsS3Files_broad_references"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cbers_meta_pds/", "public", "File Names from the AWS S3 cbers-meta-pds Bucket: CBERS on AWS: CBERS metadata (Quicklooks, metadata)", "This dataset has file information from the AWS S3 cbers-meta-pds bucket at https://cbers-meta-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CBERS on AWS\nName2: CBERS metadata (Quicklooks, metadata)\nDescription: This project creates a S3 repository with imagery acquired by the China-Brazil Earth Resources Satellite (CBERS). The image files are recorded and processed by Instituto Nacional de Pesquisa Espaciais (INPE) and are converted to Cloud Optimized Geotiff format in order to optimize its use for cloud based applications. The repository contains all CBERS-4 MUX, AWFI, PAN5M and PAN10M scenes acquired since the start of the satellite mission and is daily updated with new scenes.\n\nDocumentation: https://github.com/fredliporace/cbers-on-aws\nContact: https://lists.osgeo.org/mailman/listinfo/cbers-pds\nManagedBy: [AMS Kepler](https://amskepler.com/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cbers_meta_pds/index.json", "https://registry.opendata.aws/cbers/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cbers_meta_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cbers_meta_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cbers_meta_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cgiardata/", "public", "File Names from the AWS S3 cgiardata Bucket: CCAFS-Climate Data: ARC GRID, and ARC ASCII format compressed", "This dataset has file information from the AWS S3 cgiardata bucket at https://cgiardata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CCAFS-Climate Data\nName2: ARC GRID, and ARC ASCII format compressed\nDescription: High resolution climate data to help assess the impacts of climate change primarily on agriculture. These open access datasets of climate projections will help researchers make climate change impact assessments.\n\nDocumentation: http://www.ccafs-climate.org\nContact: http://www.ccafs-climate.org/contact/\nUpdateFrequency: Every three months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cgiardata/index.json", "https://registry.opendata.aws/cgiardata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cgiardata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cgiardata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cgiardata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_commoncrawl/", "public", "File Names from the AWS S3 commoncrawl Bucket: Common Crawl: Crawl data (WARC and ARC format)", "This dataset has file information from the AWS S3 commoncrawl bucket at https://commoncrawl.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Common Crawl\nName2: Crawl data (WARC and ARC format)\nDescription: A corpus of web crawl data composed of over 25 billion web pages.\n\nDocumentation: http://commoncrawl.org/the-data/get-started/\nContact: http://commoncrawl.org/connect/contact-us/\nManagedBy: [Common Crawl](http://commoncrawl.org/)\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_commoncrawl/index.json", "https://registry.opendata.aws/commoncrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_commoncrawl.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_commoncrawl&showErrors=false&email=", "Amazon Web Services", "awsS3Files_commoncrawl"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cornell_eas_data_lake/", "public", "File Names from the AWS S3 cornell-eas-data-lake Bucket: Cornell EAS Data Lake: Cornell EAS Data Lake", "This dataset has file information from the AWS S3 cornell-eas-data-lake bucket at https://cornell-eas-data-lake.s3.us-east-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cornell EAS Data Lake\nName2: Cornell EAS Data Lake\nDescription: Earth & Atmospheric Sciences at Cornell University has created a public data lake of climate data. The data is stored in columnar storage formats (ORC) to make it straightforward to query using standard tools like Amazon Athena or Apache Spark. The data itself is originally intended to be used for building decision support tools for farmers and digital agriculture. The first dataset is the historical NDFD / NDGD data distributed by NCEP / NOAA / NWS. The NDFD (National Digital Forecast Database) and NDGD (National Digital Guidance Database) contain gridded forecasts and observations at 2.5km resolution for the Contiguous United States (CONUS). There are also 5km grids for several smaller US regions and non-continguous territories, such as Hawaii, Guam, Puerto Rico and Alaska. NOAA distributes archives of the NDFD/NDGD via its NOAA Operational Model Archive and Distribution System (NOMADS) in Grib2 format. The data has been converted to ORC to optimize storage space and to, more importantly, simplify data access via standard data analytics tools.\n\nDocumentation: https://datalake.eas.cornell.edu/\nContact: digitalag@cornell.edu\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cornell_eas_data_lake/index.json", "https://registry.opendata.aws/cornell-eas-data-lake/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cornell_eas_data_lake.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cornell_eas_data_lake&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cornell_eas_data_lake"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cse_cic_ids2018/", "public", "File Names from the AWS S3 cse-cic-ids2018 Bucket: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018): Network traffic and log files", "This dataset has file information from the AWS S3 cse-cic-ids2018 bucket at https://cse-cic-ids2018.s3.ca-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018)\nName2: Network traffic and log files\nDescription: This dataset is the result of a collaborative project between the Communications Security Establishment (CSE) and The Canadian Institute for Cybersecurity (CIC) that use the notion of profiles to generate cybersecurity dataset in a systematic manner. It incluides a detailed description of intrusions along with abstract distribution models for applications, protocols, or lower level network entities. The dataset includes seven different attack scenarios, namely Brute-force, Heartbleed, Botnet, DoS, DDoS, Web attacks, and infiltration of the network from inside. The attacking infrastructure includes 50 machines and the victim organization has 5 departments includes 420 PCs and 30 servers. This dataset includes the network traffic and log files of each machine from the victim side, along with 80 network traffic features extracted from captured traffic using CICFlowMeter-V3. For more information on the creation of this dataset, see this paper by researchers at the Canadian Institute for Cybersecurity (CIC) and the University of New Brunswick (UNB): [Toward Generating a New Intrusion Detection Dataset and Intrusion Traffic Characterization](http://www.scitepress.org/Papers/2018/66398/66398.pdf).\n\nDocumentation: http://www.unb.ca/cic/datasets/ids-2018.html\nContact: CIC@unb.ca\nUpdateFrequency: Annualy\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cse_cic_ids2018/index.json", "https://registry.opendata.aws/cse-cic-ids2018/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cse_cic_ids2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cse_cic_ids2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cse_cic_ids2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cytodata/", "public", "File Names from the AWS S3 cytodata Bucket: Cell Painting Image Collection: Images, extracted features and aggregated profiles are available as a S3 bucket", "This dataset has file information from the AWS S3 cytodata bucket at https://cytodata.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cell Painting Image Collection\nName2: Images, extracted features and aggregated profiles are available as a S3 bucket\nDescription: The Cell Painting Image Collection is a collection of freely downloadable microscopy image sets. Cell Painting is an unbiased high throughput imaging assay used to analyze perturbations in cell models. In addition to the images themselves, each set includes a description of the biological application and some type of \"ground truth\" (expected results). Researchers are encouraged to use these image sets as reference points when developing, testing, and publishing new image analysis algorithms for the life sciences. We hope that the this data set will lead to a better understanding of which methods are best for various biological image analysis applications.\n\nDocumentation: https://github.com/cytodata/cytodata-hackathon-2018\nContact: Post on https://forum.image.sc/ and tag with \"cellpainting\"\nUpdateFrequency: irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cytodata/index.json", "https://registry.opendata.aws/cell-painting-image-collection/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cytodata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cytodata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cytodata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_czb_tabula_muris/", "public", "File Names from the AWS S3 czb-tabula-muris Bucket: Tabula Muris", "This dataset has file information from the AWS S3 czb-tabula-muris bucket at https://czb-tabula-muris.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Tabula Muris\nName2: https://github.com/czbiohub/tabula-muris\nDescription: Tabula Muris is a compendium of single cell transcriptomic data from the model organism *Mus musculus* comprising more than 100,000 cells from 20 organs and tissues. These data represent a new resource for cell biology, reveal gene expression in poorly characterized cell populations, and allow for direct and controlled comparison of gene expression in cell types shared between tissues, such as T-lymphocytes and endothelial cells from different anatomical locations. Two distinct technical approaches were used for most organs: one approach, microfluidic droplet-based 3\u2019-end counting, enabled the survey of thousands of cells at relatively low coverage, while the other, FACS-based full length transcript analysis, enabled characterization of cell types with high sensitivity and coverage. The cumulative data provide the foundation for an atlas of transcriptomic cell biology. See: https://www.nature.com/articles/s41586-018-0590-4\n\nDocumentation: https://github.com/czbiohub/tabula-muris/blob/master/tabula-muris-on-aws.md\nContact: If you have questions about the data, you can create an Issue at https://github.com/czbiohub/tabula-muris.\nManagedBy: [Chan Zuckerberg Biohub](https://www.czbiohub.org/)\nUpdateFrequency: This is the final version of the dataset, it will not be updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_czb_tabula_muris/index.json", "https://registry.opendata.aws/tabula-muris/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_czb_tabula_muris.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_czb_tabula_muris&showErrors=false&email=", "Amazon Web Services", "awsS3Files_czb_tabula_muris"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataforgood_fb_data/", "public", "File Names from the AWS S3 dataforgood-fb-data Bucket: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook: CSV and Cloud-optimized GeoTIFF files", "This dataset has file information from the AWS S3 dataforgood-fb-data bucket at https://dataforgood-fb-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook\nName2: CSV and Cloud-optimized GeoTIFF files\nDescription: Population data for a selection of countries, allocated to 1 arcsecond blocks and provided in a combination of CSV and Cloud-optimized GeoTIFF files. This refines [CIESIN\u2019s Gridded Population of the World](https://sedac.ciesin.columbia.edu/data/collection/gpw-v4) using machine learning models on high-resolution worldwide Digital Globe satellite imagery. CIESIN population counts aggregated from worldwide census data are allocated to blocks where imagery appears to contain buildings.\n\nDocumentation: [Project overview](https://dataforgood.fb.com/population-density-maps-documentation/) and [dataset description](https://docs.opendata.aws/dataforgood-fb-data/readme.html)\nContact: disastermaps@fb.com\nManagedBy: |\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataforgood_fb_data/index.json", "https://registry.opendata.aws/dataforgood-fb-hrsl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataforgood_fb_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataforgood_fb_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataforgood_fb_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_datasets_elasticmapreduce_ngrams_books/", "public", "File Names from the AWS S3 datasets.elasticmapreduce Bucket with prefix=ngrams/books/: Google Books Ngrams: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.", "This dataset has file information from the AWS S3 datasets.elasticmapreduce bucket at https://datasets.elasticmapreduce.s3.us-east-1.amazonaws.com/ with prefix=ngrams/books/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Google Books Ngrams\nName2: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.\nDescription: N-grams are fixed size tuples of items. In this case the items are words extracted from the Google Books corpus. The n specifies the number of elements in the tuple, so a 5-gram contains five words or characters. The n-grams in this dataset were produced by passing a sliding window of the text of books and outputting a record for each new token.\n\nDocumentation: http://books.google.com/ngrams/\nContact: https://books.google.com/ngrams\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_datasets_elasticmapreduce_ngrams_books/index.json", "https://registry.opendata.aws/google-ngrams/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_datasets_elasticmapreduce_ngrams_books.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_datasets_elasticmapreduce_ngrams_books&showErrors=false&email=", "Amazon Web Services", "awsS3Files_datasets_elasticmapreduce_ngrams_books"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataworld_linked_acs/", "public", "File Names from the AWS S3 dataworld-linked-acs Bucket: U.S. Census ACS PUMS: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.", "This dataset has file information from the AWS S3 dataworld-linked-acs bucket at https://dataworld-linked-acs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: U.S. Census ACS PUMS\nName2: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.\nDescription: U.S. Census Bureau American Community Survey (ACS) Public Use Microdata Sample (PUMS) available in a linked data format using the Resource Description Framework (RDF) data model.\n\nDocumentation: https://docs.data.world/uscensus/#american-community-survey-linked-open-data\nContact: https://docs.data.world/uscensus/#60---contact\nUpdateFrequency: Yearly, after ACS 1-year PUMS raw data are released\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataworld_linked_acs/index.json", "https://registry.opendata.aws/census-dataworld-pums/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataworld_linked_acs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataworld_linked_acs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataworld_linked_acs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2015/", "public", "File Names from the AWS S3 dc-lidar-2015 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML, SHP", "This dataset has file information from the AWS S3 dc-lidar-2015 bucket at https://dc-lidar-2015.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML, SHP\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2015/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2015.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2015&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2015"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2018/", "public", "File Names from the AWS S3 dc-lidar-2018 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML", "This dataset has file information from the AWS S3 dc-lidar-2018 bucket at https://dc-lidar-2018.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2018/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_eurex_pds/", "public", "File Names from the AWS S3 deutsche-boerse-eurex-pds Bucket: Deutsche B\u00f6rse Public Dataset: Eurex PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-eurex-pds bucket at https://deutsche-boerse-eurex-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Eurex PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_eurex_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_eurex_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_eurex_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_eurex_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_xetra_pds/", "public", "File Names from the AWS S3 deutsche-boerse-xetra-pds Bucket: Deutsche B\u00f6rse Public Dataset: Xetra PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-xetra-pds bucket at https://deutsche-boerse-xetra-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Xetra PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_xetra_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_xetra_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_xetra_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_xetra_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ebirdst_data/", "public", "File Names from the AWS S3 ebirdst-data Bucket: eBird Status and Trends Model Results: Species results files", "This dataset has file information from the AWS S3 ebirdst-data bucket at https://ebirdst-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: eBird Status and Trends Model Results\nName2: Species results files\nDescription: The eBird Status and Trends project generates estimates of bird occurrence and abundance at a high spatiotemporal resolution. This dataset represents the primary modeled results from the analysis workflow and are designed for further analysis, synthesis, visualization, and exploration.\n\nDocumentation: https://cornelllabofornithology.github.io/ebirdst/articles/ebirdst-introduction.html\nContact: https://help.ebird.org/customer/en/portal/emails/new\nManagedBy: [Cornell Lab of Ornithology](https://www.birds.cornell.edu/home/)\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ebirdst_data/index.json", "https://registry.opendata.aws/ebirdst/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ebirdst_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ebirdst_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ebirdst_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_elevation_tiles_prod/", "public", "File Names from the AWS S3 elevation-tiles-prod Bucket: Terrain Tiles: Gridded elevation tiles", "This dataset has file information from the AWS S3 elevation-tiles-prod bucket at https://elevation-tiles-prod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Terrain Tiles\nName2: Gridded elevation tiles\nDescription: A global dataset providing bare-earth terrain heights, tiled for easy usage and provided on S3.\n\nDocumentation: https://mapzen.com/documentation/terrain-tiles/\nContact: https://github.com/tilezen/joerd/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_elevation_tiles_prod/index.json", "https://registry.opendata.aws/terrain-tiles/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_elevation_tiles_prod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_elevation_tiles_prod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_elevation_tiles_prod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_encode_public/", "public", "File Names from the AWS S3 encode-public Bucket: Encyclopedia of DNA Elements (ENCODE): Released and archived ENCODE data", "This dataset has file information from the AWS S3 encode-public bucket at https://encode-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Encyclopedia of DNA Elements (ENCODE)\nName2: Released and archived ENCODE data\nDescription: The Encyclopedia of DNA Elements (ENCODE) Consortium is an international collaboration of research groups funded by the National Human Genome Research Institute (NHGRI). The goal of ENCODE is to build a comprehensive parts list of functional elements in the human genome, including elements that act at the protein and RNA levels, and regulatory elements that control cells and circumstances in which a gene is active. ENCODE investigators employ a variety of assays and methods to identify functional elements. The discovery and annotation of gene elements is accomplished primarily by sequencing a diverse range of RNA sources, comparative genomics, integrative bioinformatic methods, and human curation. Regulatory elements are typically investigated through DNA hypersensitivity assays, assays of DNA methylation, and immunoprecipitation (IP) of proteins that interact with DNA and RNA, i.e., modified histones, transcription factors, chromatin regulators, and RNA-binding proteins, followed by sequencing.\n\nDocumentation: https://www.encodeproject.org\nContact: encode-help@lists.stanford.edu\nManagedBy: ENCODE Data Coordinating Center\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_encode_public/index.json", "https://registry.opendata.aws/encode-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_encode_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_encode_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_encode_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_epa_rsei_pds/", "public", "File Names from the AWS S3 epa-rsei-pds Bucket: EPA Risk-Screening Environmental Indicators: RSEI Microdata", "This dataset has file information from the AWS S3 epa-rsei-pds bucket at https://epa-rsei-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: EPA Risk-Screening Environmental Indicators\nName2: RSEI Microdata\nDescription: Detailed air model results from EPA\u2019s Risk-Screening Environmental Indicators (RSEI) model.\n\nDocumentation: https://docs.opendata.aws/epa-rsei-pds/readme.html\nContact: https://www.epa.gov/rsei/forms/contact-us-about-rsei-model\nUpdateFrequency: Updated infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_epa_rsei_pds/index.json", "https://registry.opendata.aws/epa-rsei-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_epa_rsei_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_epa_rsei_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_epa_rsei_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_era5_pds/", "public", "File Names from the AWS S3 era5-pds Bucket: ECMWF ERA5 Reanalysis: ERA5 Reanalysis NetCDF 4 files", "This dataset has file information from the AWS S3 era5-pds bucket at https://era5-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ECMWF ERA5 Reanalysis\nName2: ERA5 Reanalysis NetCDF 4 files\nDescription: ERA5 is the fifth generation of ECMWF atmospheric reanalyses of the global climate, and the first reanalysis produced as an operational service. It utilizes the best available observation data from satellites and in-situ stations, which are assimilated and processed using ECMWF's Integrated Forecast System (IFS) Cycle 41r2. The dataset provides all essential atmospheric meteorological parameters like, but not limited to, air temperature, pressure and wind at different altitudes, along with surface parameters like rainfall, soil moisture content and sea parameters like sea-surface temperature and wave height. ERA5 provides data at a considerably higher spatial and temporal resolution than its legacy counterpart ERA-Interim. ERA5 consists of high resolution version with 31 km horizontal resolution, and a reduced resolution ensemble version with 10 members. It is currently available since 2008, but will be continuously extended backwards, first until 1979 and then to 1950. Learn more about ERA5 in Jon Olauson's paper [ERA5: The new champion of wind power modelling?](https://www.researchgate.net/publication/320084119_ERA5_The_new_champion_of_wind_power_modelling).\n\nDocumentation: https://github.com/planet-os/notebooks/blob/master/aws/era5-pds.md\nContact: datahub@intertrust.com\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_era5_pds/index.json", "https://registry.opendata.aws/ecmwf-era5/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_era5_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_era5_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_era5_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_coco/", "public", "File Names from the AWS S3 fast-ai-coco Bucket: COCO - Common Objects in Context - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-coco bucket at https://fast-ai-coco.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: COCO - Common Objects in Context - fast.ai datasets\nName2: Datasets\nDescription: COCO is a large-scale object detection, segmentation, and captioning dataset. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. If you use this dataset in your research please cite arXiv:1405.0312 [cs.CV].\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_coco/index.json", "https://registry.opendata.aws/fast-ai-coco/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_coco.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_coco&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_coco"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imageclas/", "public", "File Names from the AWS S3 fast-ai-imageclas Bucket: Image classification - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imageclas bucket at https://fast-ai-imageclas.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image classification - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image classification research, including CIFAR 10 and 100, Caltech 101, MNIST, Food-101, Oxford-102-Flowers, Oxford-IIIT-Pets, and Stanford-Cars. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imageclas/index.json", "https://registry.opendata.aws/fast-ai-imageclas/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imageclas.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imageclas&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imageclas"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imagelocal/", "public", "File Names from the AWS S3 fast-ai-imagelocal Bucket: Image localization - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imagelocal bucket at https://fast-ai-imagelocal.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image localization - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image localization research, including Camvid and PASCAL VOC (2007 and 2012). This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imagelocal/index.json", "https://registry.opendata.aws/fast-ai-imagelocal/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imagelocal.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imagelocal&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imagelocal"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_nlp/", "public", "File Names from the AWS S3 fast-ai-nlp Bucket: NLP - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-nlp bucket at https://fast-ai-nlp.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NLP - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for NLP, with a focus on classification, including IMDb, AG-News, Amazon Reviews (polarity and full), Yelp Reviews (polarity and full), Dbpedia, Sogou News (Pinyin), Yahoo Answers, Wikitext 2 and Wikitext 103, and ACL-2010 French-English 10^9 corpus. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_nlp/index.json", "https://registry.opendata.aws/fast-ai-nlp/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_nlp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_nlp&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_nlp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib Bucket: HIRLAM Weather Model: Pressure GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib bucket at https://fmi-opendata-rcrhirlam-pressure-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Pressure GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_pressure_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_pressure_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-surface-grib Bucket: HIRLAM Weather Model: Surface GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-surface-grib bucket at https://fmi-opendata-rcrhirlam-surface-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Surface GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_surface_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_surface_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gatk_test_data/", "public", "File Names from the AWS S3 gatk-test-data Bucket: GATK Test Data: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.", "This dataset has file information from the AWS S3 gatk-test-data bucket at https://gatk-test-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GATK Test Data\nName2: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.\nDescription: The GATK test data resource bundle is a collection of files for resequencing human genomic data with the Broad Institute's [Genome Analysis Toolkit (GATK)](https://software.broadinstitute.org/gatk/).\n\nDocumentation: https://s3.amazonaws.com/gatk-test-data/gatk-test-data-readme.html\nContact: https://gatkforums.broadinstitute.org/gatk\nManagedBy: Broad Institute\nUpdateFrequency: Every 3 months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gatk_test_data/index.json", "https://registry.opendata.aws/gatk-test-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gatk_test_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gatk_test_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gatk_test_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gdelt_open_data/", "public", "File Names from the AWS S3 gdelt-open-data Bucket: Global Database of Events, Language and Tone (GDELT): Project data files", "This dataset has file information from the AWS S3 gdelt-open-data bucket at https://gdelt-open-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Database of Events, Language and Tone (GDELT)\nName2: Project data files\nDescription: This project monitors the world's broadcast, print, and web news from nearly every corner of every country in over 100 languages and identifies the people, locations, organizations, counts, themes, sources, emotions, quotes, images and events driving our global society every second of every day.\n\nDocumentation: http://www.gdeltproject.org/\nContact: http://www.gdeltproject.org/about.html#contact\nUpdateFrequency: Not currently being updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gdelt_open_data/index.json", "https://registry.opendata.aws/gdelt/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gdelt_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gdelt_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gdelt_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_genomeark/", "public", "File Names from the AWS S3 genomeark Bucket: Genome Ark", "This dataset has file information from the AWS S3 genomeark bucket at https://genomeark.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome Ark\nName2: https://vgp.github.io\nDescription: The Genome Ark hosts genomic information for the Vertebrate Genomes Project (VGP) and other related projects. The VGP is an international collaboration that aims to generate complete and near error-free reference genomes for all extant vertebrate species. These genomes will be used to address fundamental questions in biology and disease, to identify species most genetically at risk for extinction, and to preserve genetic information of life.\n\nDocumentation: https://vertebrategenomesproject.org\nContact: Erich Jarvis \nManagedBy: The Genome10K community of scientists\nUpdateFrequency: Data will be continually updated as it is generated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_genomeark/index.json", "https://registry.opendata.aws/genomeark/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_genomeark.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_genomeark&showErrors=false&email=", "Amazon Web Services", "awsS3Files_genomeark"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_giab/", "public", "File Names from the AWS S3 giab Bucket: Genome in a Bottle on AWS: Latest data", "This dataset has file information from the AWS S3 giab bucket at https://giab.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome in a Bottle on AWS\nName2: Latest data\nDescription: Several reference genomes to enable translation of whole human genome sequencing to clinical practice.\n\nDocumentation: https://docs.opendata.aws/giab/readme.html\nContact: http://genomeinabottle.org/\nUpdateFrequency: New data are added as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_giab/index.json", "https://registry.opendata.aws/giab/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_giab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_giab&showErrors=false&email=", "Amazon Web Services", "awsS3Files_giab"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gmsdata/", "public", "File Names from the AWS S3 gmsdata Bucket: The Genome Modeling System", "This dataset has file information from the AWS S3 gmsdata bucket at https://gmsdata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Genome Modeling System\nName2: https://gmsdata.s3.amazonaws.com/INDEX.html\nDescription: The Genome Institute at Washington University has developed a high-throughput, fault-tolerant analysis information management system called the Genome Modeling System (GMS), capable of executing complex, interdependent, and automated genome analysis pipelines at a massive scale. The GMS framework provides detailed tracking of samples and data coupled with reliable and repeatable analysis pipelines. GMS includes a full system image with software and services, expandable from one workstation to a large compute cluster.\n\nDocumentation: https://github.com/genome/gms/wiki\nContact: https://github.com/genome/gms/issues\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gmsdata/index.json", "https://registry.opendata.aws/gmsdata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gmsdata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gmsdata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gmsdata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_grillo_openeew/", "public", "File Names from the AWS S3 grillo-openeew Bucket: OpenEEW: OpenEEW", "This dataset has file information from the AWS S3 grillo-openeew bucket at https://grillo-openeew.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenEEW\nName2: OpenEEW\nDescription: Grillo has developed an IoT-based earthquake early-warning system in Mexico and Chile and is now opening its entire archive of unprocessed accelerometer data to the world to encourage the development of new algorithms capable of rapidly detecting and characterizing earthquakes in real time.\n\nDocumentation: https://github.com/grillo/openeew\nContact: openeew@grillo.io\nManagedBy: [Grillo](https://grillo.io/)\nUpdateFrequency: Approximately every 10 minutes\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_grillo_openeew/index.json", "https://registry.opendata.aws/grillo-openeew/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_grillo_openeew.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_grillo_openeew&showErrors=false&email=", "Amazon Web Services", "awsS3Files_grillo_openeew"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_microbiome_project/", "public", "File Names from the AWS S3 human-microbiome-project Bucket: The Human Microbiome Project", "This dataset has file information from the AWS S3 human-microbiome-project bucket at https://human-microbiome-project.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Human Microbiome Project\nName2: https://aws.amazon.com/datasets/human-microbiome-project/\nDescription: The NIH-funded Human Microbiome Project (HMP) is a collaborative effort of over 300 scientists from more than 80 organizations to comprehensively characterize the microbial communities inhabiting the human body and elucidate their role in human health and disease. To accomplish this task, microbial community samples were isolated from a cohort of 300 healthy adult human subjects at 18 specific sites within five regions of the body (oral cavity, airways, urogenital track, skin, and gut). Targeted sequencing of the 16S bacterial marker gene and/or whole metagenome shotgun sequencing was performed for thousands of these samples. In addition, whole genome sequences were generated for isolate strains collected from human body sites to act as reference organisms for analysis. Finally, 16S marker and whole metagenome sequencing was also done on additional samples from people suffering from several disease conditions.\n\nDocumentation: https://commonfund.nih.gov/hmp\nContact: https://commonfund.nih.gov/hmp/related_activities\nUpdateFrequency: Uncertain\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_microbiome_project/index.json", "https://registry.opendata.aws/human-microbiome-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_microbiome_project.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_microbiome_project&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_microbiome_project"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_pangenomics/", "public", "File Names from the AWS S3 human-pangenomics Bucket: Human PanGenomics Project: Human PanGenomics Project", "This dataset has file information from the AWS S3 human-pangenomics bucket at https://human-pangenomics.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Human PanGenomics Project\nName2: Human PanGenomics Project\nDescription: This dataset includes sequencing data, assemblies, and analyses for the offspring of ten parent-offspring trios.\n\nDocumentation: https://github.com/human-pangenomics/hpgp-data\nContact: https://github.com/human-pangenomics/hpgp-data/issues\nUpdateFrequency: Data will be added and updated as technologies improve or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_pangenomics/index.json", "https://registry.opendata.aws/hpgp-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_pangenomics.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_pangenomics&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_pangenomics"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/", "public", "File Names from the AWS S3 ichangemycity-janaagraha-complaints-data-aws Bucket: IChangeMyCity Complaints Data from Janaagraha: IChangeMyCity Complaints", "This dataset has file information from the AWS S3 ichangemycity-janaagraha-complaints-data-aws bucket at https://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IChangeMyCity Complaints Data from Janaagraha\nName2: IChangeMyCity Complaints\nDescription: The [IChangeMyCity](https://www.ichangemycity.com) project provides insight into the complaints raised by citizens from diffent cities of India related to the issues in their neighbourhoods and the resolution of the same by the civic bodies.\n\nDocumentation: http://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/readme.html\nContact: data@janaagraha.org\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/index.json", "https://registry.opendata.aws/ichangemycity/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ichangemycity_janaagraha_complaints_data_aws&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ichangemycity_janaagraha_complaints_data_aws"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_irs_990_spreadsheets/", "public", "File Names from the AWS S3 irs-990-spreadsheets Bucket: IRS 990 Filings (Spreadsheets): Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form", "This dataset has file information from the AWS S3 irs-990-spreadsheets bucket at https://irs-990-spreadsheets.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IRS 990 Filings (Spreadsheets)\nName2: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form\nDescription: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form. Additional fields being added regularly.\n\nDocumentation: https://appliednonprofitresearch.com/documentation/irs-990-spreadsheets\nContact: [info@appliednonprofitresearch.com](info@appliednonprofitresearch.com)\nManagedBy: [Applied Nonprofit Research, LLC](https://www.appliednonprofitresearch.com/)\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_irs_990_spreadsheets/index.json", "https://registry.opendata.aws/990-spreadsheets/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_irs_990_spreadsheets.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_irs_990_spreadsheets&showErrors=false&email=", "Amazon Web Services", "awsS3Files_irs_990_spreadsheets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lab41openaudiocorpus/", "public", "File Names from the AWS S3 lab41openaudiocorpus Bucket: Voices Obscured in Complex Environmental Settings (VOiCES): wav audio files, orthographic transcriptions, and speaker ID", "This dataset has file information from the AWS S3 lab41openaudiocorpus bucket at https://lab41openaudiocorpus.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Voices Obscured in Complex Environmental Settings (VOiCES)\nName2: wav audio files, orthographic transcriptions, and speaker ID\nDescription: VOiCES is a speech corpus recorded in acoustically challenging settings, using distant microphone recording. Speech was recorded in real rooms with various acoustic features (reverb, echo, HVAC systems, outside noise, etc.). Adversarial noise, either television, music, or babble, was concurrently played with clean speech. Data was recorded using multiple microphones strategically placed throughout the room. The corpus includes audio recordings, orthographic transcriptions, and speaker labels.\n\nDocumentation: https://voices18.github.io/\nContact: https://github.com/voices18/utilities/issues\nUpdateFrequency: Data from two additional rooms will be added to the corpus Fall 2018.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lab41openaudiocorpus/index.json", "https://registry.opendata.aws/lab41-sri-voices/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lab41openaudiocorpus.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lab41openaudiocorpus&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lab41openaudiocorpus"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds/", "public", "File Names from the AWS S3 landsat-pds Bucket: Landsat 8: Scenes and metadata", "This dataset has file information from the AWS S3 landsat-pds bucket at https://landsat-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: Scenes and metadata\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds_inventory/", "public", "File Names from the AWS S3 landsat-pds-inventory Bucket: Landsat 8: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)", "This dataset has file information from the AWS S3 landsat-pds-inventory bucket at https://landsat-pds-inventory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds_inventory/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds_inventory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds_inventory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds_inventory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lofar_elais_n1/", "public", "File Names from the AWS S3 lofar-elais-n1 Bucket: LOFAR ELAIS-N1 cycle 2 observations on AWS: LOFAR ELAIS-N1 cycle 2 observations", "This dataset has file information from the AWS S3 lofar-elais-n1 bucket at https://lofar-elais-n1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: LOFAR ELAIS-N1 cycle 2 observations on AWS\nName2: LOFAR ELAIS-N1 cycle 2 observations\nDescription: These data correspond to the [International LOFAR Telescope](http://www.lofar.org/) observations of the sky field ELAIS-N1 (16:10:01 +54:30:36) during the cycle 2 of observations. There are 11 runs of about 8 hours each plus the corresponding observation of the calibration targets before and after the target field. The data are measurement sets ([MS](https://casa.nrao.edu/Memos/229.html)) containing the cross-correlated data and metadata divided in 371 frequency sub-bands per target centred at ~150 MHz.\n\nDocumentation: https://www.lofarcloud.uk/data.html\nContact: https://www.lofarcloud.uk/\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lofar_elais_n1/index.json", "https://registry.opendata.aws/lofar-elais-n1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lofar_elais_n1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lofar_elais_n1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lofar_elais_n1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mf_nwp_models/", "public", "File Names from the AWS S3 mf-nwp-models Bucket: Atmospheric Models from M\u00e9t\u00e9o-France: Atmospheric Models from M\u00e9t\u00e9o-France", "This dataset has file information from the AWS S3 mf-nwp-models bucket at https://mf-nwp-models.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Atmospheric Models from M\u00e9t\u00e9o-France\nName2: Atmospheric Models from M\u00e9t\u00e9o-France\nDescription: Global and high-resolution regional atmospheric models from M\u00e9t\u00e9o-France.\n\nDocumentation: https://mf-models-on-aws.org\nContact: contact@openmeteodata.com\nManagedBy: [OpenMeteoData](https://openmeteodata.com)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mf_nwp_models/index.json", "https://registry.opendata.aws/meteo-france-models/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mf_nwp_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mf_nwp_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mf_nwp_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_modis_pds/", "public", "File Names from the AWS S3 modis-pds Bucket: MODIS on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 modis-pds bucket at https://modis-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: MODIS on AWS\nName2: Imagery and metadata\nDescription: Select products from the Moderate Resolution Imaging Spectroradiometer (MODIS) managed by the U.S. Geological Survey and NASA.\n\nDocumentation: https://docs.opendata.aws/modis-pds/readme.html\nContact: https://github.com/AstroDigital/modis-ingestor/issues\nUpdateFrequency: New MODIS data is added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_modis_pds/index.json", "https://registry.opendata.aws/modis/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_modis_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_modis_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_modis_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_multimedia_commons/", "public", "File Names from the AWS S3 multimedia-commons Bucket: Multimedia Commons: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.", "This dataset has file information from the AWS S3 multimedia-commons bucket at https://multimedia-commons.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Multimedia Commons\nName2: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.\nDescription: The Multimedia Commons is a collection of audio and visual features computed for the nearly 100 million Creative Commons-licensed Flickr images and videos in the YFCC100M dataset from Yahoo! Labs, along with ground-truth annotations for selected subsets. The International Computer Science Institute (ICSI) and Lawrence Livermore National Laboratory are producing and distributing a core set of derived feature sets and annotations as part of an effort to enable large-scale video search capabilities. They have released this feature corpus into the public domain, under Creative Commons License 0, so it is free for anyone to use for any purpose.\n\nDocumentation: https://multimediacommons.wordpress.com/yfcc100m-core-dataset/\nContact: multimedia-commons@icsi.berkeley.edu\nUpdateFrequency: Not updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_multimedia_commons/index.json", "https://registry.opendata.aws/multimedia-commons/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_multimedia_commons.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_multimedia_commons&showErrors=false&email=", "Amazon Web Services", "awsS3Files_multimedia_commons"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mwapublic/", "public", "File Names from the AWS S3 mwapublic Bucket: Epoch of Reionization Dataset: Selected MWA EoR data (uvfits format) from 2013-2015", "This dataset has file information from the AWS S3 mwapublic bucket at https://mwapublic.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Epoch of Reionization Dataset\nName2: Selected MWA EoR data (uvfits format) from 2013-2015\nDescription: The data are from observations with the Murchison Widefield Array (MWA) which is a Square Kilometer Array (SKA) precursor in Western Australia. This particular dataset is from the Epoch of Reionization project which is a key science driver of the SKA. Nearly 2PB of such observations have been recorded to date, this is a small subset of that which has been exported from the MWA data archive in Perth and made available to the public on AWS. The data were taken to detect signatures of the first stars and galaxies forming and the effect of these early stars and galaxies on the evolution of the universe.\n\nDocumentation: http://danielcjacobs.com/research/epoch-of-reionization-aws-public-dataset/\nContact: brynah (at) phys.washington.edu\nManagedBy: University of washington Radio Cosmology Group\nUpdateFrequency: Irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mwapublic/index.json", "https://registry.opendata.aws/epoch-of-reionization/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mwapublic.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mwapublic&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mwapublic"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nanopore_human_wgs/", "public", "File Names from the AWS S3 nanopore-human-wgs Bucket: Nanopore Reference Human Genome: Nanopore Reference Human Genome", "This dataset has file information from the AWS S3 nanopore-human-wgs bucket at https://nanopore-human-wgs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Nanopore Reference Human Genome\nName2: Nanopore Reference Human Genome\nDescription: This dataset includes the sequencing and assembly of a reference standard human genome (GM12878) using the MinION nanopore sequencing instrument with the R9.4 1D chemistry.\n\nDocumentation: https://github.com/nanopore-wgs-consortium/NA12878\nContact: https://github.com/nanopore-wgs-consortium/NA12878/issues\nUpdateFrequency: Data will be added as methodology improves or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nanopore_human_wgs/index.json", "https://registry.opendata.aws/nanopore/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nanopore_human_wgs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nanopore_human_wgs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nanopore_human_wgs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_Landsat/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=Landsat/: NASA NEX: Landsat GLS (Global Land Survey)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=Landsat/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Landsat GLS (Global Land Survey)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_Landsat/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_Landsat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_Landsat&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_Landsat"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_LOCA/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=LOCA/: NASA NEX: Localized Constructed Analogs (LOCA)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=LOCA/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Localized Constructed Analogs (LOCA)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_LOCA/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_LOCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_LOCA&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_LOCA"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_MODIS/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=MODIS/: NASA NEX: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=MODIS/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_MODIS/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_MODIS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_MODIS&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_MODIS"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_DCP30/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-DCP30/: NASA NEX: Downscaled Climate Projections (NEX-DCP30)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-DCP30/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Downscaled Climate Projections (NEX-DCP30)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_DCP30/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_DCP30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_DCP30&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_DCP30"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_GDDP/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-GDDP/: NASA NEX: Global Daily Downscaled Projections (NEX-GDDP)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-GDDP/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Global Daily Downscaled Projections (NEX-GDDP)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_GDDP/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_GDDP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_GDDP&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_GDDP"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gefs_pds/", "public", "File Names from the AWS S3 noaa-gefs-pds Bucket: NOAA Global Ensemble Forecast System (GEFS): Project data files", "This dataset has file information from the AWS S3 noaa-gefs-pds bucket at https://noaa-gefs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Ensemble Forecast System (GEFS)\nName2: Project data files\nDescription: The Global Ensemble Forecast System (GEFS), previously known as the GFS Global ENSemble (GENS), is a weather forecast model made up of 21 separate forecasts, or ensemble members. The National Centers for Environmental Prediction (NCEP) started the GEFS to address the nature of uncertainty in weather observations, which is used to initialize weather forecast models. The GEFS attempts to quantify the amount of uncertainty in a forecast by generating an ensemble of multiple forecasts, each minutely different, or perturbed, from the original observations. With global coverage, GEFS is produced four times a day with weather forecasts going out to 16 days.\n\nDocumentation: https://docs.opendata.aws/noaa-gefs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GEFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GEFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gefs_pds/index.json", "https://registry.opendata.aws/noaa-gefs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gefs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gefs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gefs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_bdp_pds/", "public", "File Names from the AWS S3 noaa-gfs-bdp-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 GFS data", "This dataset has file information from the AWS S3 noaa-gfs-bdp-pds bucket at https://noaa-gfs-bdp-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_bdp_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_bdp_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_bdp_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_bdp_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_pds/", "public", "File Names from the AWS S3 noaa-gfs-pds Bucket: Unidata NOAA Global Forecast System (GFS) Model: A rolling four-week archive of 0.25 degree GFS data", "This dataset has file information from the AWS S3 noaa-gfs-pds bucket at https://noaa-gfs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Unidata NOAA Global Forecast System (GFS) Model\nName2: A rolling four-week archive of 0.25 degree GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks.\n\nDocumentation: https://docs.opendata.aws/noaa-gfs-pds/readme.html\nContact: https://www.ncdc.noaa.gov/contact\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_pds/index.json", "https://registry.opendata.aws/noaa-gfs-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfspara_pds/", "public", "File Names from the AWS S3 noaa-gfspara-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 FV3-based parallel version of the GFS", "This dataset has file information from the AWS S3 noaa-gfspara-pds bucket at https://noaa-gfspara-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 FV3-based parallel version of the GFS\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfspara_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfspara_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfspara_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfspara_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghcn_pds/", "public", "File Names from the AWS S3 noaa-ghcn-pds Bucket: NOAA Global Historical Climatology Network Daily (GHCN-D): Project data files", "This dataset has file information from the AWS S3 noaa-ghcn-pds bucket at https://noaa-ghcn-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Daily (GHCN-D)\nName2: Project data files\nDescription: Global Historical Climatology Network - Daily is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://docs.opendata.aws/noaa-ghcn-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncdc.noaa.gov/ghcn-daily-description). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghcn_pds/index.json", "https://registry.opendata.aws/noaa-ghcn/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghcn_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghcn_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghcn_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghe_pds/", "public", "File Names from the AWS S3 noaa-ghe-pds Bucket: NOAA Global Hydro Estimator (GHE): Project data files", "This dataset has file information from the AWS S3 noaa-ghe-pds bucket at https://noaa-ghe-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Hydro Estimator (GHE)\nName2: Project data files\nDescription: Global Hydro-Estimator provides a global mosaic imagery of rainfall estimates from multi-geostationary satellites, which currently includes GOES-16, GOES-15, Meteosat-8, Meteosat-11 and Himawari-8. The GHE products include: Instantaneous rain rate, 1 hour, 3 hour, 6 hour, 24 hour and also multi-day rainfall accumulation.\n\nDocumentation: https://www.ospo.noaa.gov/Products/atmosphere/ghe/index.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 15 minute-instantaneous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghe_pds/index.json", "https://registry.opendata.aws/noaa-ghe/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghe_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghe_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghe_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_global_hourly_pds/", "public", "File Names from the AWS S3 noaa-global-hourly-pds Bucket: NOAA Global Historical Climatology Network Hourly (GHCN-H): Project data files", "This dataset has file information from the AWS S3 noaa-global-hourly-pds bucket at https://noaa-global-hourly-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Hourly (GHCN-H)\nName2: Project data files\nDescription: Global Historical Climatology Network - Hourly is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: daily (Manually)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_global_hourly_pds/index.json", "https://registry.opendata.aws/noaa-ghcnh/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_global_hourly_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_global_hourly_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_global_hourly_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3NoaaGoes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nUse ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browser the files in buckets. This dataset is a solution to that problem for this bucket.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3NoaaGoes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3NoaaGoes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3NoaaGoes16&showErrors=false&email=", "NOAA", "awsS3NoaaGoes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket: GOES on AWS: GOES-16 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-16 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes16&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes17/", "public", "File Names from the AWS S3 noaa-goes17 Bucket: GOES on AWS: GOES-17 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes17 bucket at https://noaa-goes17.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-17 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes17/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes17&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes17"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_hrrr_pds/", "public", "File Names from the AWS S3 noaa-hrrr-pds Bucket: NOAA High-Resolution Rapid Refresh (HRRR) Model: A rolling one-week archive of HRRR data.", "This dataset has file information from the AWS S3 noaa-hrrr-pds bucket at https://noaa-hrrr-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA High-Resolution Rapid Refresh (HRRR) Model\nName2: A rolling one-week archive of HRRR data.\nDescription: The HRRR is a NOAA real-time 3-km resolution, hourly updated, cloud-resolving, convection-allowing atmospheric model, initialized by 3km grids with 3km radar assimilation. Radar data is assimilated in the HRRR every 15 min over a 1-h period adding further detail to that provided by the hourly data assimilation from the 13km radar-enhanced Rapid Refresh.\n\nDocumentation: https://docs.opendata.aws/noaa-hrrr-pds/readme.html\nContact: https://rapidrefresh.noaa.gov/hrrr/\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_hrrr_pds/index.json", "https://registry.opendata.aws/noaa-hrrr-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_hrrr_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_hrrr_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_hrrr_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_isd_pds/", "public", "File Names from the AWS S3 noaa-isd-pds Bucket: NOAA Integrated Surface Database (ISD): Project data files", "This dataset has file information from the AWS S3 noaa-isd-pds bucket at https://noaa-isd-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Integrated Surface Database (ISD)\nName2: Project data files\nDescription: The Integrated Surface Database (ISD) consists of global hourly and synoptic observations compiled from numerous sources into a gzipped fixed width format. ISD was developed as a joint activity within Asheville's Federal Climate Complex. The database includes over 35,000 stations worldwide, with some having data as far back as 1901, though the data show a substantial increase in volume in the 1940s and again in the early 1970s. Currently, there are over 14,000 \"active\" stations updated daily in the database. The total uncompressed data volume is around 600 gigabytes; however, it continues to grow as more data are added. ISD includes numerous parameters such as wind speed and direction, wind gust, temperature, dew point, cloud data, sea level pressure, altimeter setting, station pressure, present weather, visibility, precipitation amounts for various time periods, snow depth, and various other elements as observed by each station.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_isd_pds/index.json", "https://registry.opendata.aws/noaa-isd/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_isd_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_isd_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_isd_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nexrad_level2/", "public", "File Names from the AWS S3 noaa-nexrad-level2 Bucket: NEXRAD on AWS: NEXRAD Level II archive data", "This dataset has file information from the AWS S3 noaa-nexrad-level2 bucket at https://noaa-nexrad-level2.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II archive data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nexrad_level2/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nexrad_level2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nexrad_level2&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nexrad_level2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_pds/", "public", "File Names from the AWS S3 noaa-nwm-pds Bucket: NOAA National Water Model Short-Range Forecast: A rolling four week archive of NWM data.", "This dataset has file information from the AWS S3 noaa-nwm-pds bucket at https://noaa-nwm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Short-Range Forecast\nName2: A rolling four week archive of NWM data.\nDescription: The National Water Model (NWM) is a water resources model that simulates and forecasts water budget variables, including snowpack, evapotranspiration, soil moisture and streamflow, over the entire continental United States (CONUS). The model, launched in August 2016, is designed to improve the ability of NOAA to meet the needs of its stakeholders (forecasters, emergency managers, reservoir operators, first responders, recreationists, farmers, barge operators, and ecosystem and floodplain managers) by providing expanded accuracy, detail, and frequency of water information. It is operated by NOAA\u2019s Office of Water Prediction. This bucket contains a four-week rollover of the Short Range Forecast model output and the corresponding forcing data for the model. The model is forced with meteorological data from the High Resolution Rapid Refresh (HRRR) and the Rapid Refresh (RAP) models. The Short Range Forecast configuration cycles hourly and produces hourly deterministic forecasts of streamflow and hydrologic states out to 18 hours.\n\nDocumentation: https://docs.opendata.aws/noaa-nwm-pds/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_pds/index.json", "https://registry.opendata.aws/noaa-nwm-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_retro_v2_0_pds/", "public", "File Names from the AWS S3 noaa-nwm-retro-v2.0-pds Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 2.0.", "This dataset has file information from the AWS S3 noaa-nwm-retro-v2.0-pds bucket at https://noaa-nwm-retro-v2.0-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 2.0.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\n... (4 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_retro_v2_0_pds/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_retro_v2_0_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_retro_v2_0_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_retro_v2_0_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ofs_pds/", "public", "File Names from the AWS S3 noaa-ofs-pds Bucket: NOAA Operational Forecast System (OFS): Project data files", "This dataset has file information from the AWS S3 noaa-ofs-pds bucket at https://noaa-ofs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Operational Forecast System (OFS)\nName2: Project data files\nDescription: The Operational Forecast System (OFS) has been developed to serve the maritime user community. OFS was developed in a joint project of the NOAA/National Ocean Service (NOS)/Office of Coast Survey, the NOAA/NOS/Center for Operational Oceanographic Products and Services (CO-OPS), and the NOAA/National Weather Service (NWS)/National Centers for Environmental Prediction (NCEP) Central Operations (NCO). OFS generates water level, water current, water temperature, water salinity (except for the Great Lakes) and wind conditions nowcast and forecast guidance four times per day.\n\nDocumentation: https://docs.opendata.aws/noaa-ofs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA OFS site](https://tidesandcurrents.noaa.gov/models.html). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight and generates 6-hour nowcasts and 48-hour forecast guidance\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ofs_pds/index.json", "https://registry.opendata.aws/noaa-ofs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ofs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ofs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ofs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/", "public", "File Names from the AWS S3 nrel-pds-wtk Bucket with prefix=wtk-techno-economic/pywtk-data/: NREL Wind Integration National Dataset on AWS: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format", "This dataset has file information from the AWS S3 nrel-pds-wtk bucket at https://nrel-pds-wtk.s3.us-west-2.amazonaws.com/ with prefix=wtk-techno-economic/pywtk-data/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NREL Wind Integration National Dataset on AWS\nName2: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format\nDescription: The [Wind Integration National Dataset (WIND)](https://www.nrel.gov/grid/wind-toolkit.html) is an update and expansion of the Eastern Wind Integration Data Set and Western Wind Integration Data Set. It supports the next generation of wind integration studies.\n\nDocumentation: https://www.nrel.gov/grid/wind-toolkit.html\nContact: wind-toolkit@nrel.gov\nManagedBy: [National Renewable Energy Laboratory](https://www.nrel.gov/)\nUpdateFrequency: As Needed\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/index.json", "https://registry.opendata.aws/nrel-pds-wtk/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nwm_archive/", "public", "File Names from the AWS S3 nwm-archive Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 1.2.", "This dataset has file information from the AWS S3 nwm-archive bucket at https://nwm-archive.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 1.2.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nwm_archive/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nwm_archive.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nwm_archive&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nwm_archive"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nyc_tlc/", "public", "File Names from the AWS S3 nyc-tlc Bucket: New York City Taxi and Limousine Commission (TLC) Trip Record Data: CSV files containing NYC TLC trip data.", "This dataset has file information from the AWS S3 nyc-tlc bucket at https://nyc-tlc.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: New York City Taxi and Limousine Commission (TLC) Trip Record Data\nName2: CSV files containing NYC TLC trip data.\nDescription: Data of trips taken by taxis and for-hire vehicles in New York City.\n\nDocumentation: http://www.nyc.gov/html/tlc/html/about/trip_record_data.shtml\nContact: research@tlc.nyc.gov\nUpdateFrequency: As soon as new data is available to be shared publicly.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nyc_tlc/index.json", "https://registry.opendata.aws/nyc-tlc-trip-records-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nyc_tlc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nyc_tlc&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nyc_tlc"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_oicr_icgc_meta_metadata/", "public", "File Names from the AWS S3 oicr.icgc.meta Bucket with prefix=metadata/: ICGC on AWS: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README", "This dataset has file information from the AWS S3 oicr.icgc.meta bucket at https://oicr.icgc.meta.s3.us-east-1.amazonaws.com/ with prefix=metadata/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ICGC on AWS\nName2: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README\nDescription: The International Cancer Genome Consortium (ICGC) coordinates projects with the common aim of accelerating research into the causes and control of cancer. The PanCancer Analysis of Whole Genomes (PCAWG) study is an international collaboration to identify common patterns of mutation in whole genomes from ICGC. More than 2,400 consistently analyzed genomes corresponding to over 1,100 unique ICGC donors are now freely available on Amazon S3 to credentialed researchers subject to ICGC data sharing policies.\n\nDocumentation: https://dcc.icgc.org/icgc-in-the-cloud/aws\nContact: dcc-support@icgc.org\nUpdateFrequency: New data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_oicr_icgc_meta_metadata/index.json", "https://registry.opendata.aws/icgc/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_oicr_icgc_meta_metadata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_oicr_icgc_meta_metadata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_oicr_icgc_meta_metadata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ooni_data/", "public", "File Names from the AWS S3 ooni-data Bucket: Open Observatory of Network Interference: S3 bucket with data", "This dataset has file information from the AWS S3 ooni-data bucket at https://ooni-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open Observatory of Network Interference\nName2: S3 bucket with data\nDescription: A free software, global observation network for detecting censorship, surveillance and traffic manipulation on the internet.\n\nDocumentation: https://ooni.torproject.org/about/\nContact: https://ooni.torproject.org/get-involved/\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ooni_data/index.json", "https://registry.opendata.aws/ooni/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ooni_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ooni_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ooni_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openaq_fetches/", "public", "File Names from the AWS S3 openaq-fetches Bucket: OpenAQ: Minutely CSVs of global air quality fetched from sources all over the world", "This dataset has file information from the AWS S3 openaq-fetches bucket at https://openaq-fetches.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenAQ\nName2: Minutely CSVs of global air quality fetched from sources all over the world\nDescription: Global, aggregated physical air quality data from public data sources provided by government, research-grade and other sources. These awesome groups do the hard work of measuring these data and publicly sharing them, and our community makes them more universally-accessible to both humans and machines.\n\nDocumentation: https://openaq.org\nContact: info@openaq.org\nManagedBy: [OpenAQ](https://openaq.org)\nUpdateFrequency: Minutely\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openaq_fetches/index.json", "https://registry.opendata.aws/openaq/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openaq_fetches.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openaq_fetches&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openaq_fetches"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_opencitymodel/", "public", "File Names from the AWS S3 opencitymodel Bucket: Open City Model (OCM): Project data files", "This dataset has file information from the AWS S3 opencitymodel bucket at https://opencitymodel.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open City Model (OCM)\nName2: Project data files\nDescription: Open City Model is an initiative to provide cityGML data for all the buildings in the United States. By using other open datasets in conjunction with our own code and algorithms it is our goal to provide 3D geometries for every US building.\n\nDocumentation: https://github.com/opencitymodel/opencitymodel\nContact: https://github.com/opencitymodel/opencitymodel#contact\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_opencitymodel/index.json", "https://registry.opendata.aws/opencitymodel/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_opencitymodel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_opencitymodel&showErrors=false&email=", "Amazon Web Services", "awsS3Files_opencitymodel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openneuro_org/", "public", "File Names from the AWS S3 openneuro.org Bucket: OpenNeuro: All datasets", "This dataset has file information from the AWS S3 openneuro.org bucket at https://openneuro.org.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenNeuro\nName2: All datasets\nDescription: OpenNeuro is a database of openly-available brain imaging data. The data are shared according to a Creative Commons CC0 license, providing a broad range of brain imaging data to researchers and citizen scientists alike. The database primarily focuses on functional magnetic resonance imaging (fMRI) data, but also includes other imaging modalities including structural and diffusion MRI, electroencephalography (EEG), and magnetoencephalograpy (MEG). OpenfMRI is a project of the [Center for Reproducible Neuroscience at Stanford University](http://reproducibility.stanford.edu). Development of the OpenNeuro resource has been funded by the National Science Foundation, National Institute of Mental Health, National Institute on Drug Abuse, and the Laura and John Arnold Foundation.\n\nDocumentation: http://openneuro.org\nContact: Support form at https://openneuro.org\nUpdateFrequency: New datasets deposited every 4-6 days\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openneuro_org/index.json", "https://registry.opendata.aws/openneuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openneuro_org.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openneuro_org&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openneuro_org"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osm_pds/", "public", "File Names from the AWS S3 osm-pds Bucket: OpenStreetMap on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 osm-pds bucket at https://osm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap on AWS\nName2: Imagery and metadata\nDescription: OSM is a free, editable map of the world, created and maintained by volunteers. Regular OSM data archives are made available in Amazon S3.\n\nDocumentation: https://docs.opendata.aws/osm-pds/readme.html\nContact: https://github.com/mojodna/osm-pds-pipelines/issues\nUpdateFrequency: Data is updated weekly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osm_pds/index.json", "https://registry.opendata.aws/osm/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osmlr/", "public", "File Names from the AWS S3 osmlr Bucket: OpenStreetMap Linear Referencing: Manifest and data files", "This dataset has file information from the AWS S3 osmlr bucket at https://osmlr.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap Linear Referencing\nName2: Manifest and data files\nDescription: OSMLR a linear referencing system built on top of OpenStreetMap. OSM has great information about roads around the world and their interconnections, but it lacks the means to give a stable identifier to a stretch of roadway. OSMLR provides a stable set of numerical IDs for every 1 kilometer stretch of roadway around the world. In urban areas, OSMLR IDs are attached to each block of roadways between significant intersections.\n\nDocumentation: https://github.com/opentraffic/osmlr/blob/master/docs/intro.md\nContact: https://github.com/opentraffic/osmlr/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osmlr/index.json", "https://registry.opendata.aws/osmlr/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osmlr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osmlr&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osmlr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_qiime2_data/", "public", "File Names from the AWS S3 qiime2-data Bucket: QIIME 2 User Tutorial Datasets: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs", "This dataset has file information from the AWS S3 qiime2-data bucket at https://qiime2-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: QIIME 2 User Tutorial Datasets\nName2: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs\nDescription: QIIME 2 is a powerful, extensible, and decentralized microbiome analysis package with a focus on data and analysis transparency. QIIME 2 enables researchers to start an analysis with raw DNA sequence data and finish with publication-quality figures and statistical results. This dataset contains the user docs (and related datasets) for QIIME 2.\n\nDocumentation: https://docs.qiime2.org\nContact: https://forum.qiime2.org\nManagedBy: The QIIME 2 Development Team\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_qiime2_data/index.json", "https://registry.opendata.aws/qiime2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_qiime2_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_qiime2_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_qiime2_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_safecast_opendata_public_us_east_1/", "public", "File Names from the AWS S3 safecast-opendata-public-us-east-1 Bucket: Safecast: Bulk exports of air and radiation measurements", "This dataset has file information from the AWS S3 safecast-opendata-public-us-east-1 bucket at https://safecast-opendata-public-us-east-1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Safecast\nName2: Bulk exports of air and radiation measurements\nDescription: An ongoing collection of radiation and air quality measurements taken by devices involved in the Safecast project.\n\nDocumentation: https://github.com/Safecast/safecastapi/wiki/Data-Sets\nContact: https://groups.google.com/forum/#!forum/safecast-devices\nManagedBy: [Safecast](https://safecast.org/)\nUpdateFrequency: Continuous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_safecast_opendata_public_us_east_1/index.json", "https://registry.opendata.aws/safecast/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_safecast_opendata_public_us_east_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_safecast_opendata_public_us_east_1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_safecast_opendata_public_us_east_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s1_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s1-l1c/: Sentinel-1: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s1-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C\nDescription: [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1) is a pair of European radar imaging (SAR) satellites launched in 2014 and 2016. Its 6 days revisit cycle and ability to observe through clouds makes it perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. GRD data is available globally since January 2017.\n\nDocumentation: https://roda.sentinel-hub.com/sentinel-s1-l1c/GRD/readme.html\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s1_l1c/index.json", "https://registry.opendata.aws/sentinel-1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s1_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s1_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s1_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l1c/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l1c/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l2a/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l2a/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l2a/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l2a/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l2a&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l2a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel1_slc_seasia_pds/", "public", "File Names from the AWS S3 sentinel1-slc-seasia-pds Bucket: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan", "This dataset has file information from the AWS S3 sentinel1-slc-seasia-pds bucket at https://sentinel1-slc-seasia-pds.s3.ap-southeast-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan\nName2: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan\nDescription: The S1 Single Look Complex (SLC) dataset contains Synthetic Aperture Radar (SAR) data in the C-Band wavelength. The SAR sensors are installed on a two-satellite (Sentinel-1A and Sentinel-1B) constellation orbiting the Earth with a combined revisit time of six days, operated by the European Space Agency. The S1 SLC data are a Level-1 product that collects radar amplitude and phase information in all-weather, day or night conditions, which is ideal for studying natural hazards and emergency response, land applications, oil spill monitoring, sea-ice conditions, and associated climate change effects.\n\nDocumentation: https://github.com/earthobservatory/sentinel1-opds/\nContact: https://github.com/earthobservatory/sentinel1-opds/\nManagedBy: [Earth Observatory of Singapore, Nanyang Technological University](https://earthobservatory.sg)\nUpdateFrequency: S1 SLC data for the region of interest will be updated regularly, as it becomes available on the Alaska Satellite Facility endpoint.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel1_slc_seasia_pds/index.json", "https://registry.opendata.aws/sentinel1-slc-seasia-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel1_slc_seasia_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel1_slc_seasia_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel1_slc_seasia_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_silo_open_data/", "public", "File Names from the AWS S3 silo-open-data Bucket: SILO climate data on AWS: SILO open data", "This dataset has file information from the AWS S3 silo-open-data bucket at https://silo-open-data.s3.ap-southeast-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SILO climate data on AWS\nName2: SILO open data\nDescription: [SILO](https://www.longpaddock.qld.gov.au/silo) is a database of Australian [climate data](https://www.longpaddock.qld.gov.au/silo/about/climate-variables) from 1889 to the present. It provides continuous, daily time-step [data products](https://www.longpaddock.qld.gov.au/silo/about/data-products) in ready-to-use [formats](https://www.longpaddock.qld.gov.au/silo/about/file-formats-and-samples) for research and operational applications. Gridded SILO data in annual NetCDF format are on AWS. Point data are available from the [SILO website](https://www.longpaddock.qld.gov.au/silo/).\n\nDocumentation: https://www.longpaddock.qld.gov.au/silo/gridded-data\nContact: https://www.longpaddock.qld.gov.au/silo/contact-us\nManagedBy: Queensland Government\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_silo_open_data/index.json", "https://registry.opendata.aws/silo/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_silo_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_silo_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_silo_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_softwareheritage/", "public", "File Names from the AWS S3 softwareheritage Bucket: Software Heritage Graph Dataset: Software Heritage Graph Dataset", "This dataset has file information from the AWS S3 softwareheritage bucket at https://softwareheritage.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Software Heritage Graph Dataset\nName2: Software Heritage Graph Dataset\nDescription: [Software Heritage](https://www.softwareheritage.org/) is the largest existing public archive of software source code and accompanying development history. The Software Heritage Graph Dataset is a fully deduplicated Merkle DAG representation of the Software Heritage archive.\n\nDocumentation: https://wiki.softwareheritage.org/wiki/Graph_Dataset_on_Amazon_Athena\nContact: swh-devel@inria.fr\nUpdateFrequency: Data is updated yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_softwareheritage/index.json", "https://registry.opendata.aws/software-heritage/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_softwareheritage.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_softwareheritage&showErrors=false&email=", "Amazon Web Services", "awsS3Files_softwareheritage"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_spacenet_dataset/", "public", "File Names from the AWS S3 spacenet-dataset Bucket: SpaceNet: Imagery and metadata in a S3 bucket", "This dataset has file information from the AWS S3 spacenet-dataset bucket at https://spacenet-dataset.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SpaceNet\nName2: Imagery and metadata in a S3 bucket\nDescription: SpaceNet, launched in August 2016 as an open innovation project offering a repository of freely available imagery with co-registered map features. Before SpaceNet, computer vision researchers had minimal options to obtain free, precision-labeled, and high-resolution satellite imagery. Today, SpaceNet hosts datasets developed by its own team, along with data sets from projects like IARPA\u2019s Functional Map of the World (fMoW).\n\nDocumentation: https://spacenetchallenge.github.io\nContact: https://github.com/SpaceNetChallenge/utilities/issues\nManagedBy: [SpaceNet](https://spacenet.ai/)\nUpdateFrequency: New imagery and features are added quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_spacenet_dataset/index.json", "https://registry.opendata.aws/spacenet/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_spacenet_dataset.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_spacenet_dataset&showErrors=false&email=", "Amazon Web Services", "awsS3Files_spacenet_dataset"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_unidata_nexrad_level2_chunks/", "public", "File Names from the AWS S3 unidata-nexrad-level2-chunks Bucket: NEXRAD on AWS: NEXRAD Level II real-time data", "This dataset has file information from the AWS S3 unidata-nexrad-level2-chunks bucket at https://unidata-nexrad-level2-chunks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II real-time data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_unidata_nexrad_level2_chunks/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_unidata_nexrad_level2_chunks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_unidata_nexrad_level2_chunks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_unidata_nexrad_level2_chunks"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_usgs_lidar_public/", "public", "File Names from the AWS S3 usgs-lidar-public Bucket: USGS 3DEP LiDAR Point Clouds: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.", "This dataset has file information from the AWS S3 usgs-lidar-public bucket at https://usgs-lidar-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: USGS 3DEP LiDAR Point Clouds\nName2: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.\nDescription: The goal of the [USGS 3D Elevation Program ](https://www.usgs.gov/core-science-systems/ngp/3dep) (3DEP) is to collect elevation data in the form of light detection and ranging (LiDAR) data over the conterminous United States, Hawaii, and the U.S. territories, with data acquired over an 8-year period. This dataset provides two realizations of the 3DEP point cloud data. The first resource is a public access organization provided in [Entwine Point Tiles](https://entwine.io/entwine-point-tile.html) format, which a lossless, full-density, streamable octree based on [LASzip](https://laszip.org) (LAZ) encoding. The second resource is a [Requester Pays](https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html) of the same data in LAZ (Compressed LAS) format. Resource names in both buckets correspond to the USGS project names.\n\nDocumentation: https://github.com/hobu/usgs-lidar/\nContact: https://github.com/hobu/usgs-lidar\nManagedBy: [Hobu, Inc.](https://hobu.co)\nUpdateFrequency: Periodically\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_usgs_lidar_public/index.json", "https://registry.opendata.aws/usgs-lidar/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_usgs_lidar_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_usgs_lidar_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_usgs_lidar_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_web_language_models/", "public", "File Names from the AWS S3 web-language-models Bucket: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl): Parallel Corpora to/from English for all official EU languages", "This dataset has file information from the AWS S3 web-language-models bucket at https://web-language-models.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl)\nName2: Parallel Corpora to/from English for all official EU languages\nDescription: ParaCrawl is a set of large parallel corpora to/from English for all official EU languages by a broad web crawling effort. State-of-the-art methods are applied for the entire processing chain from identifying web sites with translated text all the way to collecting, cleaning and delivering parallel corpora that are ready as training data for CEF.AT and translation memories for DG Translation.\n\nDocumentation: https://paracrawl.eu/releases.html\nContact: For questions regarding the datasets contact Kenneth Heafield, email kheafiel@inf.ed.ac.uk. For reporting any issues about bitextor pipeline visit https://github.com/bitextor/bitextor/issues.\nManagedBy: [ParaCrawl](https://paracrawl.eu)\nUpdateFrequency: New data is added according to ParaCrawl release schedule.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_web_language_models/index.json", "https://registry.opendata.aws/paracrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_web_language_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_web_language_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_web_language_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_xiph_media/", "public", "File Names from the AWS S3 xiph-media Bucket: Xiph.Org Test Media: Video and imagery data", "This dataset has file information from the AWS S3 xiph-media bucket at https://xiph-media.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Xiph.Org Test Media\nName2: Video and imagery data\nDescription: Uncompressed video used for video compression and video processing research.\n\nDocumentation: https://media.xiph.org/aws.html\nContact: Thomas Daede tdaede@xiph.org\nUpdateFrequency: New videos are added when contributors submit them.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_xiph_media/index.json", "https://registry.opendata.aws/xiph-media/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_xiph_media.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_xiph_media&showErrors=false&email=", "Amazon Web Services", "awsS3Files_xiph_media"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ycb_benchmarks/", "public", "File Names from the AWS S3 ycb-benchmarks Bucket: Yale-CMU-Berkeley (YCB) Object and Model Set: Project data files", "This dataset has file information from the AWS S3 ycb-benchmarks bucket at https://ycb-benchmarks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Yale-CMU-Berkeley (YCB) Object and Model Set\nName2: Project data files\nDescription: This project primarily aims to facilitate performance benchmarking in robotics research. The dataset provides mesh models, RGB, RGB-D and point cloud images of over 80 objects. The physical objects are also available via the [YCB benchmarking project](http://www.ycbbenchmarks.com/). The data are collected by two state of the art systems: UC Berkley's scanning rig and the Google scanner. The UC Berkley's scanning rig data provide meshes generated with Poisson reconstruction, meshes generated with volumetric range image integration, textured versions of both meshes, Kinbody files for using the meshes with OpenRAVE, 600 High-resolution RGB images, 600 RGB-D images, and 600 point cloud images for each object. The Google scanner data provides 3 meshes with different resolutions (16k, 64k, and 512k polygons), textured versions of each mesh, Kinbody files for using the meshes with OpenRAVE.\n\nDocumentation: http://www.ycbbenchmarks.com/\nContact: bcalli@wpi.edu\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ycb_benchmarks/index.json", "https://registry.opendata.aws/ycb-benchmarks/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ycb_benchmarks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ycb_benchmarks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ycb_benchmarks"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the June 2020 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.graph", "", "", "public", "GLOBEC NEP Vertical Plankton Tow (VPT) Data, 1997-2001", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nCalifornia Current Program\nVertical Plankton Tow (VPT) Data\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10181&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/vpt%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/vpt.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ncast_no (Cast Number Within the Cruise)\nstation_id\nabund_m3 (Abundance, count m-3)\ncomments\ncounter_id\nd_n_flag (Day/Night Flag)\ngear_area (Mouth Area of Net, m2)\ngear_mesh (Net's Mesh Size, mm)\ngear_type\ngenus_species\nlife_stage\nlocal_code\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecVpt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecVpt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecVpt/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecVpt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecVpt&showErrors=false&email=", "GLOBEC", "erdGlobecVpt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://usgodae.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, the EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\nBeach Monitoring Quality Assurance Project Plan (CWBMONQAPP002):\nhttps://www.pacioos.hawaii.edu/wp-content/uploads/2016/08/Beach_Monitoring_QAPP_CWBMONQAPP002_120507.pdf\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwb_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwb_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwb_water_quality/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/cwb_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwb_water_quality&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "cwb_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.graph", "", "", "public", "HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii", "The Hawaii Institute of Marine Biology (HIMB) automatic weather station (AWS) records hourly measurements of precipitation, air temperature, wind speed and direction, and irradiance. Sensors include an Eppley 295-385 nm ultraviolet (UV) radiometer, a LiCor 200SZ Pyranometer, and a LiCor Quantameter (400-700 nm). The sensors are located on the roof of HIMB's Coral Reef Ecology Laboratory (Point Lab) on Moku o Loe (Coconut Island) in Kaneohe Bay on the windward (eastern) coast of Oahu in Hawaii. An accompanying sea water temperature sensor is located less than 10 m offshore of the weather station at a shallow depth of approximately 1 m.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HIMB: HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nsea_water_temperature (water temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nwind_from_direction_std (standard deviation of wind direction (processed), degrees)\nrainfall_amount (total rainfall (processed), mm)\nshortwave_radiation (downwelling shortwave radiation (processed), W/m2)\nultraviolet_radiation (ultraviolet radiation (processed), W/m2)\nphotosynthetic_radiation (photosynthetically active radiation (processed), umol m-2 s-1)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_atn (QARTOD Attenuated Signal Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (139 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HIMB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HIMB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HIMB/index.json", "https://www.pacioos.hawaii.edu/weather/obs-mokuoloe/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HIMB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HIMB&showErrors=false&email=", "Hawaii Institute of Marine Biology (HIMB)", "AWS-HIMB"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.graph", "", "", "public", "Hui O Ka Wai Ola Water Quality Data", "The goal of the Hui O Ka Wai Ola (Association Of The Living Waters) citizen-science based water quality program is to increase the capacity for monitoring water quality in Maui coastal waters by generating reliable data to assess long-term water-quality conditions and detect temporal trends. These data augment the data produced by the Hawaii Department of Health (DOH) Clean Water Branch (CWB) beach monitoring program on Maui.\n \nData are collected and analyzed every two or three weeks for physical and chemical parameters, including ocean salinity, pH, temperature, organic nutrients (nitrogen and phosphorous compounds), dissolved oxygen (DO), and total suspended sediment (TSS). Some water samples are immediately tested at mobile labs while others are processed for testing at University of Hawaii and/or other labs.\n \nUsers of these data should cite the following publication:\n \nFalinski, Kim, Dana Reed, Tova Callender, Emily Fielding, Robin Newbold, and Alana Yurkanin. (2018). Hui O Ka Wai Ola Water Quality Data [Data set]. Zenodo. \"http://doi.org/10.5281/zenodo.1173717\"\n \nFor further information, please visit:\nhttps://www.huiokawaiola.com\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nlocation_id (sampling site identifier)\nlocation_name\nsample_id (sample identifier)\nsession_id (sampling session identifier)\nwater_temperature (Celsius)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hui_water_quality/index.json", "https://www.huiokawaiola.com", "http://upwell.pfeg.noaa.gov/erddap/rss/hui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hui_water_quality&showErrors=false&email=", "Hui O Ka Wai Ola", "hui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitored water quality at several beaches across the island of Maui in the State of Hawaii during the years 2010-2016. This community-based monitoring effort provided valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites were also monitored for harmful bacteria levels of Enterococcus through 2014-06-26. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours.\n\nData were managed through an online repository, the Coral Reef Monitoring Data Portal (now defunct), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection was coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/maui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/maui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/maui_water_quality/index.json", "https://coral.org/maui/", "http://upwell.pfeg.noaa.gov/erddap/rss/maui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=maui_water_quality&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "maui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys. See\nhttps://www.ndbc.noaa.gov/measdes.shtml for a description of the measurements.\n\nThe source data from NOAA NDBC has different column names, different units,\nand different missing values in different files, and other problems\n(notably, lots of rows with duplicate or different values for the same time\npoint). This dataset is a standardized, reformatted, and lightly edited\nversion of that source data, created by NOAA NMFS SWFSC ERD (email:\nerd.data at noaa.gov). Before 2020-01-29, this dataset only had the data\nthat was closest to a given hour, rounded to the nearest hour. Now, this\ndataset has all of the data available from NDBC with the original time\nvalues. If there are multiple source rows for a given buoy for a given\ntime, only the row with the most non-NaN data values is kept. If there is\na gap in the data, a row of missing values is inserted (which causes a nice\ngap when the data is graphed). Also, some impossible data values are\nremoved, but this data is not perfectly clean. This dataset is now updated\nevery 5 minutes.\n\nThis dataset has both historical data (quality controlled, before\n2020-06-01T00:00:00Z) and near real time data (less quality controlled,\nwhich may change at any time, from 2020-06-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Identifier)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.graph", "", "", "public", "NEFSC Continuous Plankton Recorder", "A summary for the data\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ncruise\nsample\nlatitude (degrees_north)\nlongitude (degrees_east)\nphyto_color_indx (Phytoplankton Color Index)\nmarmap_tax_code (Marmap Taxonomic Code)\nmarmap_stage_code\nabundance (per 100 cubic meters)\nlife_stage\ntaxonomic_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/wocecpr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/wocecpr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/wocecpr/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "http://upwell.pfeg.noaa.gov/erddap/rss/wocecpr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=wocecpr&showErrors=false&email=", "NEFSC", "wocecpr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "", "public", "North Pacific High, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.graph", "", "", "public", "OSMC Argo Profile data", "OSMC Argo Profile data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\norganization_name\ncountry_name\nplatform_type_name\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nparameter_name\ndaily_obs_count\nobservation_depth\nobservation_value\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_PROFILERS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_PROFILERS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_PROFILERS/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_PROFILERS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_PROFILERS&showErrors=false&email=", "OSMC", "OSMC_PROFILERS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.graph", "", "", "public", "OSMC normalized observations from GTS", "OSMC normalized In-situ Real time GTS data\n\ncdm_data_type = Point\nVARIABLES:\nPLATFORM_CODE (Station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform\nparameter\nOBSERVATION_VALUE\nOBSERVATION_DEPTH\nCOUNTRY_NAME\norganization_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_Points_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_Points_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_Points/index.json", "https://www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_Points.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_Points&showErrors=false&email=", "OSMC", "OSMC_Points"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001.graph", "", "", "public", "PacIOOS Beach Camera 001: Waikiki, Oahu, Hawaii", "A digital camera on top of the Sheraton Waikiki hotel was used to photograph the shoreline of Waikiki beach along the South Shore of the island of Oahu in the State of Hawaii. The oblique camera view presented here captures the shoreline leading southeast towards Diamond Head crater. It operated for over 4.5 years between February 5, 2009 and October 13, 2013. Capturing hourly snapshots at a set vantage point during the local daytime hours of 6:00 AM or 7:00 AM to 5:00 PM, these images are useful for tracking beach dynamics such as wave run-up, sand movement, and turbidity plumes over time. The camera was mounted on top of a 3 meter wall extending above the roof surface for a total height of 93 meters above ground level or 96 meters above mean sea level. See also BEACHCAM-002 for an alternate camera view from the same location pointing directly downwards.\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (m)\naboveGround (Height, m)\nurl\nname (File Name)\nsize (bytes)\nfileType (File Type)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/BEACHCAM-001_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/BEACHCAM-001_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/BEACHCAM-001/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/BEACHCAM-001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=BEACHCAM-001&showErrors=false&email=", "University of Hawaii", "BEACHCAM-001"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_4"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_2/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_2&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_6/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_6&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_7/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_7&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_7"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_8/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_8&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_9/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_9&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.graph", "", "", "public", "PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-04 is located in Hilo Bay on the east side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-04: PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-04/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-hilo/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-04&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-04"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.graph", "", "", "public", "PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-05 is located in Pelekane Bay near Kawaihae Harbor on the west side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-05: PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-05/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-pelekane/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-05&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-05"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.graph", "", "", "public", "PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii", "The Pacific Islands Ocean Observing System (PacIOOS) operates a Davis Instruments automatic weather station (AWS) near the entrance to Honolulu Harbor on the leeward (western) coast of Oahu in Hawaii to aid with navigation. The station records measurements every 5 minutes of air temperature, wind speed and direction, precipitation, relative humidity, and air pressure. Sensors are located at Pier 1, installed on a tower at an elevation of 64 feet (19.5 meters) above sea level. The station is owned by the Hawaii Pilots Association (HPA). PacIOOS maintains the station and provides data access.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HNLPier1: PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nrainfall_rate (rain rate (processed), mm/h)\nrelative_humidity (relative humidity (processed), %)\nair_pressure (air pressure (processed), millibars)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_gap (QARTOD Gap Test (processed), 0)\nair_temperature_qc_syn (QARTOD Syntax Test (processed), 0)\nair_temperature_qc_loc (QARTOD Location Test (processed), 0)\nair_temperature_qc_rng (QARTOD Gross Range Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_spk (QARTOD Spike Test (processed), 0)\n... (92 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HNLPier1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HNLPier1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HNLPier1/index.json", "https://www.pacioos.hawaii.edu/weather/obs-honolulu/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HNLPier1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HNLPier1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "AWS-HNLPier1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "https://tidesandcurrents.noaa.gov/gomoos.html", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/main.aspx?Division=PRD&ParentMenuId=147&id=1221", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2017, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2017, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2017, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"] + ] + } + } + recorded_at: 2020-07-15 22:22:26 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.csv + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:24 GMT + x-frame-options: SAMEORIGIN + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:22:24 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=erdCinpKfmBT_712b_5843_9069.csv + content-encoding: gzip + content-type: text/csv;charset=ISO-8859-1 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + station,longitude,latitude,depth,time,Aplysia_californica_Mean_Density,Aplysia_californica_StdDev,Aplysia_californica_StdErr,Crassedoma_giganteum_Mean_Density,Crassedoma_giganteum_StdDev,Crassedoma_giganteum_StdErr,Haliotis_corrugata_Mean_Density,Haliotis_corrugata_StdDev,Haliotis_corrugata_StdErr,Haliotis_fulgens_Mean_Density,Haliotis_fulgens_StdDev,Haliotis_fulgens_StdErr,Haliotis_rufescens_Mean_Density,Haliotis_rufescens_StdDev,Haliotis_rufescens_StdErr,Kelletia_kelletii_Mean_Density,Kelletia_kelletii_StdDev,Kelletia_kelletii_StdErr,Lophogorgia_chilensis_Mean_Density,Lophogorgia_chilensis_StdDev,Lophogorgia_chilensis_StdErr,Lytechinus_anamesus_Mean_Density,Lytechinus_anamesus_StdDev,Lytechinus_anamesus_StdErr,Megathura_crenulata_Mean_Density,Megathura_crenulata_StdDev,Megathura_crenulata_StdErr,Muricea_californica_Mean_Density,Muricea_californica_StdDev,Muricea_californica_StdErr,Muricea_fruticosa_Mean_Density,Muricea_fruticosa_StdDev,Muricea_fruticosa_StdErr,Panulirus_interruptus_Mean_Density,Panulirus_interruptus_StdDev,Panulirus_interruptus_StdErr,Pycnopodia_helianthoides_Mean_Density,Pycnopodia_helianthoides_StdDev,Pycnopodia_helianthoides_StdErr,Stylaster_californica_Mean_Density,Stylaster_californica_StdDev,Stylaster_californica_StdErr,Tethya_aurantia_Mean_Density,Tethya_aurantia_StdDev,Tethya_aurantia_StdErr,Urticina_lofotensis_Mean_Density,Urticina_lofotensis_StdDev,Urticina_lofotensis_StdErr + ,degrees_east,degrees_north,m,UTC,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,, + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1983-07-01T00:00:00Z,0.0075,0.01,0.005335937,0.42,0.3,0.09,0.12,0.09,0.03,0.0,0.0,0.0,0.0025,0.007905694,0.0025,0.005,0.01,0.0033333334,0.08,0.07,0.02,0.0,0.0,0.0,0.29,0.18,0.05,NaN,NaN,NaN,0.01,0.02,0.006666667,0.01,0.02,0.006666667,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0 + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1984-07-01T00:00:00Z,0.0,0.0,0.0,0.76,0.26,0.08,0.18,0.1,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.07,0.03,0.01,0.0,0.0,0.0,0.5,0.22,0.07,NaN,NaN,NaN,0.0075,0.01,0.003818813,0.0075,0.01,0.003818813,0.0,0.0,0.0,0.0,0.0,0.0,0.11,0.09,0.03,0.0025,0.007905694,0.0025 + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1985-07-01T00:00:00Z,0.01,0.03,0.008903082,0.14,0.07,0.02,0.1,0.1,0.03,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.04,0.06,0.01,0.06,0.05,0.01,0.4,1.34,0.38,0.2,0.09,0.02,NaN,NaN,NaN,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0072532357,0.0069444445,0.01,0.0032166007 + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1986-07-01T00:00:00Z,0.004166667,0.01,0.0029905858,0.14,0.04,0.01,0.07,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.06,0.02,0.006197167,NaN,NaN,NaN,0.02,0.01,0.004644337,NaN,NaN,NaN,0.01,0.01,0.004792993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.03,0.009909807,0.02,0.02,0.0077102953 + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1987-07-01T00:00:00Z,0.0,0.0,0.0,0.11,0.06,0.02,0.08,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.007057166,0.06,0.04,0.01,NaN,NaN,NaN,0.0013888889,0.0048112525,0.0013888889,NaN,NaN,NaN,0.02,0.03,0.01,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0013888889,0.0048112525,0.0013888889 + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1988-07-01T00:00:00Z,0.0055555557,0.01,0.0055555557,0.06,0.03,0.01,0.02,0.02,0.005922242,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.004792993,0.1,0.03,0.01,NaN,NaN,NaN,0.01,0.02,0.0071436088,0.02,0.02,0.0069570593,0.01,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1989-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.08,0.06,0.01,0.05,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.7,0.42,0.12,NaN,NaN,NaN,0.009722223,0.01,0.0032166007,0.03,0.04,0.01,0.02,0.02,0.0068426887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.02,0.0059664934,0.0,0.0,0.0 + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1990-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.08,0.05,0.01,0.03,0.02,0.0078007416,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.0075377836,0.0021759707,0.0055555557,0.01,0.0042705894,0.1,0.05,0.01,NaN,NaN,NaN,0.05,0.04,0.01,0.03,0.03,0.01,0.01,0.01,0.0045102453,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0079785595,0.03,0.06,0.01 + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1991-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.05,0.05,0.01,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.1,0.04,0.01,4.87,6.99,2.02,0.0055555557,0.01,0.0031337559,0.02,0.02,0.007432355,0.01,0.02,0.008322805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1992-07-01T00:00:00Z,0.04,0.05,0.01,0.13,0.08,0.02,0.009722223,0.01,0.005602704,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.01,0.03,0.009936315,0.08,0.03,0.008903082,1.6,2.13,0.61,0.0013888889,0.0048112525,0.0013888889,0.03,0.02,0.008065999,0.01,0.01,0.0057418267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889 + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1993-07-01T00:00:00Z,0.02,0.04,0.01,0.42,0.23,0.06,0.01,0.01,0.0041030496,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.005476073,0.09,0.05,0.01,0.72,0.72,0.2,0.0027777778,0.006487491,0.0018727774,0.04,0.03,0.009722223,0.02,0.02,0.0062675118,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1994-07-01T00:00:00Z,0.0069444445,0.01,0.0038151375,0.24,0.21,0.06,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0075377836,0.11,0.03,0.009695129,0.09,0.08,0.02,0.01,0.01,0.0047377935,0.02,0.04,0.01,0.01,0.02,0.0060973214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0038151375,0.0013888889,0.0048112525,0.0013888889 + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1995-07-01T00:00:00Z,0.06,0.1,0.02,0.04,0.02,0.005922242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.08,0.03,0.01,0.08,0.11,0.03,0.01,0.02,0.008417088,0.02,0.03,0.009731237,0.009722223,0.01,0.0052135917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0045102453,0.0,0.0,0.0 + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1996-07-01T00:00:00Z,0.01,0.02,0.006634497,0.05,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.03,0.01,0.32,0.73,0.21,0.03,0.03,0.008814,0.03,0.03,0.008663493,0.01,0.02,0.006804138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0042705894,0.0,0.0,0.0 + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1997-07-01T00:00:00Z,0.0069444445,0.01,0.0043317466,0.08,0.08,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.09,0.05,0.01,0.01,0.02,0.007241137,0.01,0.01,0.00401666,0.02,0.03,0.008734052,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1998-07-01T00:00:00Z,0.29,0.13,0.03,0.11,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.1,0.04,0.01,0.0027777778,0.006487491,0.0018727774,0.0027777778,0.006487491,0.0018727774,0.01,0.02,0.007349309,0.02,0.02,0.006634497,0.004166667,0.01,0.004166667,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0 + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,1999-07-01T00:00:00Z,0.05,0.02,0.0069444445,0.05,0.05,0.01,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.01,0.14,0.06,0.01,1.43,1.36,0.39,0.0055555557,0.01,0.0031337559,0.03,0.03,0.009203324,0.008333334,0.01,0.0056183324,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0 + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,2000-07-01T00:00:00Z,0.05,0.03,0.01,0.12,0.09,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.07,0.04,0.01,1.13,1.17,0.33,0.02,0.02,0.007241137,0.03,0.03,0.009174698,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0043317466,0.0,0.0,0.0 + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,2001-07-01T00:00:00Z,0.04,0.03,0.008663493,0.14,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.05,0.01,0.04,0.02,0.007526142,0.12,0.16,0.04,0.05,0.04,0.01,0.02,0.02,0.0074911094,0.004166667,0.0075377836,0.0021759707,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.01,0.0,0.0,0.0 + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,2002-07-01T00:00:00Z,0.03,0.05,0.01,0.06,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.008571921,0.05,0.02,0.0075377836,0.0013888889,0.0048112525,0.0013888889,0.1,0.04,0.01,0.02,0.01,0.005476073,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0 + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,2003-07-01T00:00:00Z,0.03,0.03,0.01,0.05,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0058477456,0.04,0.03,0.00927923,0.0069444445,0.01,0.0043317466,0.05,0.04,0.01,0.03,0.02,0.0078007416,0.0027777778,0.009622505,0.0027777778,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0043317466,0.0,0.0,0.0 + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,2004-07-01T00:00:00Z,0.02,0.03,0.009865467,0.02,0.03,0.00927923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.05,0.03,0.01,0.0027777778,0.006487491,0.0018727774,0.09,0.07,0.02,0.02,0.03,0.009059289,0.008333334,0.01,0.0048112525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0 + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,2005-07-01T00:00:00Z,0.0069444445,0.008582144,0.0024774517,0.01,0.01,0.004792993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.07,0.04,0.01,0.0,0.0,0.0,0.01,0.01,0.0036266178,0.03,0.02,0.0069444445,0.0027777778,0.009622505,0.0027777778,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0 + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,2006-07-01T00:00:00Z,0.0027777778,0.009622505,0.0027777778,0.03,0.02,0.007241137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.04,0.01,0.06,0.04,0.01,0.0,0.0,0.0,0.06,0.02,0.007349309,0.02,0.02,0.006527912,0.008333334,0.01,0.0032437455,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006309342,0.0,0.0,0.0 + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,2007-07-01T00:00:00Z,0.009722223,0.01,0.0032166007,0.06,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.05,0.01,0.06,0.03,0.009049605,0.0,0.0,0.0,0.06,0.02,0.006197167,0.01,0.02,0.0059664934,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.06,0.01,0.0,0.0,0.0 + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.008333334,0.01,0.0032437455,0.004166667,0.01,0.004166667,0.19,0.1,0.03,0.0013888889,0.0048112525,0.0013888889,0.0069444445,0.008582144,0.0024774517,0.009722223,0.01,0.004792993,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0 + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,2006-07-01T00:00:00Z,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.23,0.1,0.02,0.0027777778,0.006487491,0.0018727774,0.0055555557,0.008206099,0.0023688967,0.01,0.02,0.0071066907,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.006197167,0.0,0.0,0.0 + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0057418267,0.0,0.0,0.0,0.16,0.05,0.01,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.04,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1983-07-01T00:00:00Z,0.0,0.0,0.0,0.03,0.04,0.01,0.03,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.04,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1984-07-01T00:00:00Z,0.01,0.03,0.01,0.04,0.06,0.02,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.02,0.008975275,NaN,NaN,NaN,0.0,0.0,0.0,0.02,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.01,0.005,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1985-07-01T00:00:00Z,0.01,0.01,0.0029905858,0.03,0.05,0.01,0.02,0.02,0.007526142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.01,0.02,0.0069444445,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1986-07-01T00:00:00Z,0.0055555557,0.01,0.0042705894,0.07,0.07,0.02,0.01,0.02,0.0059664934,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.04,0.04,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1987-07-01T00:00:00Z,0.01,0.01,0.005602704,0.07,0.06,0.01,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.01,0.01,0.005025189,NaN,NaN,NaN,0.0,0.0,0.0,0.01,0.02,0.006634497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1988-07-01T00:00:00Z,0.01,0.01,0.0042705894,0.09,0.15,0.04,0.0069444445,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.008333334,0.01,0.0043519414,NaN,NaN,NaN,0.0,0.0,0.0,0.01,0.02,0.005922242,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1989-07-01T00:00:00Z,0.02,0.03,0.008814,0.07,0.07,0.02,0.0055555557,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.01,0.01,0.0037455547,NaN,NaN,NaN,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1990-07-01T00:00:00Z,0.01,0.02,0.007630275,0.11,0.13,0.03,0.01,0.02,0.006527912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006527912,NaN,NaN,NaN,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1991-07-01T00:00:00Z,0.01,0.01,0.0049549034,0.11,0.13,0.03,0.01,0.01,0.004644337,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.009250838,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.15,0.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1992-07-01T00:00:00Z,0.01,0.02,0.007526142,0.2,0.28,0.08,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.02,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1993-07-01T00:00:00Z,0.0055555557,0.01,0.0031337559,0.22,0.22,0.06,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.11,0.32,0.09,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1994-07-01T00:00:00Z,0.008333334,0.01,0.0048112525,0.34,0.49,0.14,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.004166667,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.008333334,0.02,0.0069570593,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1995-07-01T00:00:00Z,0.02,0.02,0.008571921,0.07,0.13,0.03,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.09,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1996-07-01T00:00:00Z,0.0055555557,0.01,0.0031337559,0.09,0.12,0.03,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0047377935,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1997-07-01T00:00:00Z,0.0069444445,0.01,0.0032166007,0.14,0.18,0.05,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1998-07-01T00:00:00Z,0.08,0.04,0.01,0.07,0.09,0.02,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.009722223,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0056183324,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,1999-07-01T00:00:00Z,0.0069444445,0.01,0.0032166007,0.12,0.23,0.06,0.0069444445,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.004166667,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,2000-07-01T00:00:00Z,0.01,0.02,0.007057166,0.1,0.1,0.02,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.005602704,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,2001-07-01T00:00:00Z,0.008333334,0.01,0.0043519414,0.2,0.29,0.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.009585986,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,2002-07-01T00:00:00Z,0.03,0.04,0.01,0.13,0.19,0.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.13,0.03,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,2003-07-01T00:00:00Z,0.0069444445,0.01,0.005602704,0.03,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.01,0.01,0.0053628185,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,2004-07-01T00:00:00Z,0.01,0.02,0.0061545745,0.02,0.01,0.0056183324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.007526142,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,2005-07-01T00:00:00Z,0.0069444445,0.01,0.005602704,0.01,0.02,0.006309342,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.004792993,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,2006-07-01T00:00:00Z,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.009503308,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.009503308,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.05,0.09,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.009250838,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,2005-07-01T00:00:00Z,0.04,0.04,0.01,0.06,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.04,0.01,0.01,0.01,0.004792993,0.17,0.13,0.03,0.07,0.03,0.009203324,0.0069444445,0.008582144,0.0024774517,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0053628185,0.0,0.0,0.0 + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,2006-07-01T00:00:00Z,0.07,0.07,0.02,0.04,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11,0.12,0.03,0.01,0.01,0.0057418267,0.32,0.27,0.07,0.14,0.04,0.01,0.0069444445,0.01,0.0043317466,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0050772647,0.0,0.0,0.0 + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,2007-07-01T00:00:00Z,0.16,0.17,0.05,0.04,0.02,0.0078007416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14,0.1,0.03,0.01,0.02,0.008206099,0.76,0.55,0.16,0.19,0.09,0.02,0.01,0.01,0.0031337559,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.03,0.01,0.0,0.0,0.0 + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,2005-07-01T00:00:00Z,0.04,0.04,0.01,0.08,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0038151375,0.26,0.1,0.03,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.02,0.02,0.006197167,0.004166667,0.01,0.0029905858,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,2006-07-01T00:00:00Z,0.03,0.04,0.01,0.08,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.008703883,0.3,0.12,0.03,0.0027777778,0.006487491,0.0018727774,0.04,0.03,0.009288674,0.03,0.03,0.008703883,0.0069444445,0.01,0.0038151375,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,2007-07-01T00:00:00Z,0.03,0.01,0.0043317466,0.03,0.03,0.008734052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.31,0.1,0.03,0.01,0.01,0.0042705894,0.009722223,0.01,0.0038151375,0.04,0.04,0.01,0.008333334,0.01,0.0038380516,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1983-07-01T00:00:00Z,0.0,0.0,0.0,0.44,0.43,0.13,0.04,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.14,0.12,0.04,NaN,NaN,NaN,0.0,0.0,0.0,0.01,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1984-07-01T00:00:00Z,0.0025,0.007905694,0.0025,0.17,0.13,0.04,0.01,0.02,0.008539125,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.004082483,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.05,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.02,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1985-07-01T00:00:00Z,0.009722223,0.02,0.006634497,0.31,0.32,0.09,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0052135917,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.06,0.05,0.01,NaN,NaN,NaN,0.0013888889,0.0048112525,0.0013888889,0.0069444445,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0047377935,0.0,0.0,0.0 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1986-07-01T00:00:00Z,0.0,0.0,0.0,0.35,0.27,0.07,0.02,0.03,0.009203324,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.11,0.07,0.02,NaN,NaN,NaN,0.0,0.0,0.0,0.02,0.02,0.008489694,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1987-07-01T00:00:00Z,0.01,0.02,0.008291139,0.61,0.53,0.15,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0036266178,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.04,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.02,0.02,0.0077102953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1988-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.39,0.27,0.07,0.04,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0043317466,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.07,0.06,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.01,0.03,0.00927923,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0013888889,0.0048112525,0.0013888889 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1989-07-01T00:00:00Z,0.01,0.01,0.0055555557,0.55,0.43,0.12,0.04,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.05,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.02,0.05,0.01,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1990-07-01T00:00:00Z,0.004166667,0.01,0.0029905858,0.75,0.48,0.14,0.03,0.03,0.008703883,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.02,0.01,0.0047377935,NaN,NaN,NaN,0.0,0.0,0.0,0.01,0.01,0.0055555557,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1991-07-01T00:00:00Z,0.004166667,0.01,0.004166667,0.51,0.26,0.07,0.03,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.01,0.02,0.0058477456,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.009503308,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1992-07-01T00:00:00Z,0.008333334,0.02,0.0069570593,0.92,0.71,0.2,0.04,0.08,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0048112525,0.04,0.07,0.02,0.01,0.02,0.005922242,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1993-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.65,0.34,0.09,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.008333334,0.01,0.0056183324,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.01,0.01,0.0053628185,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1994-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.34,0.42,0.12,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0,0.004166667,0.01,0.004166667,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.01,0.01,0.0053628185,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1995-07-01T00:00:00Z,0.0069444445,0.01,0.0032166007,0.62,0.48,0.14,0.008333334,0.01,0.0048112525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.01,0.01,0.0036266178,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.02,0.0069444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1996-07-01T00:00:00Z,0.004166667,0.0075377836,0.0021759707,0.27,0.27,0.07,0.02,0.02,0.0078007416,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.01,0.01,0.0055555557,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1997-07-01T00:00:00Z,0.0069444445,0.01,0.0038151375,0.36,0.46,0.13,0.02,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.008582144,0.0024774517,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.01,0.01,0.0045102453,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1998-07-01T00:00:00Z,0.04,0.04,0.01,0.45,0.42,0.12,0.009722223,0.01,0.004792993,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.004166667,0.01,0.0029905858,0.0013888889,0.0048112525,0.0013888889,0.01,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,1999-07-01T00:00:00Z,0.0,0.0,0.0,0.29,0.29,0.08,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.01,0.02,0.0058477456,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.02,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,2000-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.26,0.23,0.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0069444445,0.01,0.0043317466,0.0027777778,0.006487491,0.0018727774,0.01,0.01,0.0047377935,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.03,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,2001-07-01T00:00:00Z,0.004166667,0.0075377836,0.0021759707,0.5,0.5,0.14,0.004166667,0.01,0.004166667,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.009722223,0.01,0.0038151375,0.0013888889,0.0048112525,0.0013888889,0.01,0.02,0.008417088,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.02,0.03,0.009695129,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,2002-07-01T00:00:00Z,0.0069444445,0.01,0.0043317466,0.62,0.43,0.12,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0042705894,0.01,0.01,0.005162891,0.0,0.0,0.0,0.02,0.03,0.008734052,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.03,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,2003-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.3,0.31,0.09,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.004166667,0.01,0.02,0.007057166,0.0,0.0,0.0,0.01,0.02,0.006309342,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,2004-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.25,0.32,0.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0038151375,0.01,0.01,0.004792993,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.04,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.56,0.67,0.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0048112525,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.03,0.04,0.01,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.08,0.1,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,2006-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.37,0.36,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.004792993,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.02,0.03,0.009049605,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.0,0.0,0.0 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.18,0.09,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.007349309,0.009722223,0.02,0.0069444445,0.0,0.0,0.0,0.04,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006487491,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.004792993,0.0013888889,0.0048112525,0.0013888889 + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.05,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.04,0.01,0.14,0.05,0.01,0.0,0.0,0.0,0.09,0.04,0.01,0.31,0.1,0.03,0.03,0.02,0.0060973214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.04,0.01,0.0,0.0,0.0 + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,2006-07-01T00:00:00Z,0.01,0.02,0.007676103,0.01,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0038151375,0.11,0.07,0.02,0.0013888889,0.0048112525,0.0013888889,0.07,0.03,0.01,0.29,0.09,0.02,0.02,0.01,0.0043519414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.03,0.01,0.0,0.0,0.0 + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,2007-07-01T00:00:00Z,0.008333334,0.01,0.0038380516,0.01,0.01,0.0047377935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.24,0.29,0.08,0.13,0.07,0.02,0.01,0.02,0.006634497,0.04,0.02,0.005922242,0.31,0.16,0.04,0.04,0.09,0.02,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.05,0.01,0.0,0.0,0.0 + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,2003-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.01,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.04,0.01,0.009722223,0.01,0.0032166007,0.02,0.02,0.008291139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,2004-07-01T00:00:00Z,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.01,0.01,0.0055555557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0071436088,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.05,0.03,0.01,0.008333334,0.01,0.0032437455,0.009722223,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,2005-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,2006-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,2007-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,2003-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0055555557,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.08,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,2004-07-01T00:00:00Z,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.004587349,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0037455547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,2005-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,2006-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,2007-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,2003-07-01T00:00:00Z,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0047377935,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0032166007,0.04,0.06,0.01,0.0027777778,0.006487491,0.0018727774,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,2004-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.009250838,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.02,0.02,0.008291139,0.06,0.08,0.02,0.0013888889,0.0048112525,0.0013888889,0.04,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0 + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,2005-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,2006-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,2007-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,2003-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0052135917,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,2004-07-01T00:00:00Z,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.008703883,0.0025125945,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,2005-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,2006-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,2007-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1983-07-01T00:00:00Z,0.02,0.04,0.01,0.06,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0075,0.01,0.005335937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.01,0.0,0.0,0.0,0.07,0.07,0.02,0.03,0.04,0.01 + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1984-07-01T00:00:00Z,0.04,0.02,0.0072648316,0.05,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.004166667,0.005,0.01,0.005,0.0,0.0,0.0,0.01,0.03,0.01,0.0075,0.01,0.005335937,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0075,0.01,0.003818813,0.0,0.0,0.0,0.05,0.03,0.01,0.05,0.04,0.01 + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1985-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.01,0.01,0.01,0.003453231,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.04,0.02,0.0080768615,0.02,0.03,0.009203324 + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1986-07-01T00:00:00Z,0.01,0.01,0.005602704,0.03,0.02,0.008541179,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.03,0.04,0.01,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.01,0.05,0.01,0.02,0.03,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0,0.06,0.05,0.01,0.03,0.03,0.01 + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1987-07-01T00:00:00Z,0.04,0.04,0.01,0.02,0.02,0.0058477456,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.03,0.02,0.007630275,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.01,0.0,0.0,0.0,0.04,0.03,0.01,0.03,0.03,0.01 + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1988-07-01T00:00:00Z,0.03,0.04,0.01,0.01,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0037455547,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0069444445,0.0,0.0,0.0,0.02,0.02,0.007526142,0.02,0.02,0.0059664934 + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1989-07-01T00:00:00Z,0.08,0.17,0.04,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.03,0.009865467,0.0,0.0,0.0,0.0069444445,0.01,0.0043317466,0.03,0.02,0.008458653 + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1990-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.0047377935,0.0,0.0,0.0,0.01,0.01,0.0049549034,0.01,0.01,0.0042705894 + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1991-07-01T00:00:00Z,0.008333334,0.01,0.0032437455,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.04,0.01,0.0,0.0,0.0,0.02,0.03,0.01,0.03,0.04,0.01 + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1992-07-01T00:00:00Z,0.06,0.05,0.01,0.01,0.03,0.009503308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.03,0.008784105,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.02,0.03,0.009429206 + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1993-07-01T00:00:00Z,0.01,0.01,0.0049549034,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0055555557,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0,0.03,0.04,0.01,0.01,0.01,0.0047377935 + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1994-07-01T00:00:00Z,0.02,0.01,0.0043317466,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.04,0.01,0.0,0.0,0.0,0.06,0.07,0.02,0.03,0.06,0.01 + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1995-07-01T00:00:00Z,0.02,0.01,0.0050772647,0.04,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.01,0.0,0.0,0.0,0.04,0.04,0.01,0.01,0.01,0.0049549034 + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1996-07-01T00:00:00Z,0.0055555557,0.01,0.0042705894,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.01,0.005476073,0.0,0.0,0.0,0.01,0.02,0.008163247,0.0013888889,0.0048112525,0.0013888889 + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1997-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.009401268,0.0,0.0,0.0,0.02,0.01,0.005162891,0.01,0.02,0.008417088 + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1998-07-01T00:00:00Z,0.12,0.1,0.03,0.01,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.0055555557,0.0,0.0,0.0,0.04,0.03,0.008823942,0.02,0.02,0.008065999 + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,1999-07-01T00:00:00Z,0.008333334,0.01,0.0032437455,0.01,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0043519414,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.007057166,0.0,0.0,0.0,0.04,0.03,0.01,0.009722223,0.01,0.004792993 + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,2000-07-01T00:00:00Z,0.0055555557,0.01,0.0037455547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0077102953,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0071436088,0.0,0.0,0.0,0.0069444445,0.01,0.0043317466,0.01,0.02,0.007349309 + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,2001-07-01T00:00:00Z,0.0,0.0,0.0,0.0069444445,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.05,0.01,0.0,0.0,0.0,0.01,0.02,0.007057166,0.01,0.02,0.008417088 + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,2002-07-01T00:00:00Z,0.0055555557,0.01,0.0031337559,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.04,0.01,0.0,0.0,0.0,0.02,0.02,0.0068426887,0.008333334,0.01,0.0043519414 + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,2003-07-01T00:00:00Z,0.0055555557,0.01,0.0055555557,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.01,0.0,0.0,0.0,0.02,0.03,0.008814,0.0069444445,0.01,0.0032166007 + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,2004-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.04,0.01,0.0,0.0,0.0,0.02,0.03,0.01,0.01,0.02,0.006309342 + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.004166667,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18,0.08,0.02,0.0,0.0,0.0,0.02,0.02,0.00803332,0.01,0.02,0.007630275 + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,2006-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.11,0.03,0.0,0.0,0.0,0.03,0.02,0.008163247,0.02,0.02,0.006197167 + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,2007-07-01T00:00:00Z,0.01,0.01,0.0042705894,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.01,0.02,0.007526142,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18,0.07,0.02,0.0,0.0,0.0,0.09,0.08,0.02,0.01,0.01,0.0057418267 + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,2001-07-01T00:00:00Z,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.0,0.0,0.0,0.99,0.46,0.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.01,0.0,0.0,0.0,0.12,0.04,0.01,0.17,0.11,0.03 + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,2002-07-01T00:00:00Z,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.8,0.52,0.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.004792993,0.0,0.0,0.0,0.13,0.06,0.01,0.15,0.07,0.02 + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,2003-07-01T00:00:00Z,0.0,0.0,0.0,0.0069444445,0.01,0.004792993,0.0,0.0,0.0,0.0,0.0,0.0,0.64,0.58,0.16,0.008333334,0.01,0.0048112525,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0059664934,0.0,0.0,0.0,0.11,0.05,0.01,0.16,0.09,0.02 + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,2004-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0037455547,0.0,0.0,0.0,0.0,0.0,0.0,0.55,0.6,0.17,0.01,0.03,0.009401268,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.02,0.008322805,0.0,0.0,0.0,0.23,0.12,0.03,0.21,0.12,0.03 + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.0055555557,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.5,0.52,0.15,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.006527912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.006309342,0.0,0.0,0.0,0.19,0.08,0.02,0.17,0.08,0.02 + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,2006-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.52,0.42,0.12,0.02,0.02,0.007432355,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.009649802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.0074911094,0.0,0.0,0.0,0.22,0.08,0.02,0.21,0.1,0.02 + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.66,0.54,0.15,0.03,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.007432355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.00803332,0.0,0.0,0.0,0.19,0.08,0.02,0.2,0.12,0.03 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1983-07-01T00:00:00Z,0.005,0.01,0.0033333334,0.06,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0072648316,0.01,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.06,0.02,0.2,0.21,0.06 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1984-07-01T00:00:00Z,0.0,0.0,0.0,0.0075,0.01,0.003818813,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.01,0.005,0.06,0.1,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.07,0.02,0.16,0.12,0.03 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1985-07-01T00:00:00Z,0.01,0.04,0.01,0.01,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006634497,0.11,0.09,0.02,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.05,0.06,0.02,0.26,0.15,0.04 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1986-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.06,0.01,0.08,0.05,0.01,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.12,0.06,0.01,0.18,0.08,0.02 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1987-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.008333334,0.01,0.0043519414,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.2,0.17,0.05,0.004166667,0.01,0.004166667,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.008582144,0.0024774517,0.0,0.0,0.0,0.1,0.08,0.02,0.19,0.12,0.03 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1988-07-01T00:00:00Z,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.03,0.01,0.18,0.14,0.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0042705894,0.0,0.0,0.0,0.13,0.09,0.02,0.21,0.07,0.02 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1989-07-01T00:00:00Z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.008163247,0.11,0.1,0.02,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0059811715,0.0,0.0,0.0,0.06,0.05,0.01,0.25,0.19,0.05 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1990-07-01T00:00:00Z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.09,0.05,0.01,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.004644337,0.0,0.0,0.0,0.04,0.05,0.01,0.2,0.19,0.05 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1991-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.04,0.01,0.11,0.1,0.03,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.05,0.01,0.0,0.0,0.0,0.09,0.07,0.02,0.23,0.18,0.05 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1992-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.02,0.0058477456,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.04,0.01,0.24,0.21,0.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0,0.09,0.05,0.01,0.25,0.12,0.03 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1993-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.02,0.007349309,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.36,0.13,0.03,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0050772647,0.0,0.0,0.0,0.12,0.09,0.02,0.16,0.12,0.03 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1994-07-01T00:00:00Z,0.009722223,0.01,0.004792993,0.02,0.03,0.009909807,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.44,0.16,0.04,0.0,0.0,0.0,0.004166667,0.01,0.004166667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.1,0.07,0.02,0.26,0.24,0.07 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1995-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.02,0.01,0.005476073,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.23,0.07,0.02,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.07,0.04,0.01,0.17,0.15,0.04 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1996-07-01T00:00:00Z,0.01,0.02,0.008541179,0.03,0.03,0.009585986,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.05,0.01,0.2,0.13,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.08,0.02,0.34,0.17,0.05 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1997-07-01T00:00:00Z,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.008823942,0.15,0.08,0.02,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0048112525,0.0,0.0,0.0,0.11,0.06,0.01,0.16,0.18,0.05 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1998-07-01T00:00:00Z,0.0055555557,0.01,0.0031337559,0.01,0.02,0.0059664934,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0059664934,0.29,0.16,0.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0036266178,0.0,0.0,0.0,0.15,0.09,0.02,0.33,0.28,0.08 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,1999-07-01T00:00:00Z,0.0,0.0,0.0,0.008333334,0.01,0.0043519414,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.46,0.21,0.06,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.12,0.07,0.02,0.25,0.18,0.05 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,2000-07-01T00:00:00Z,0.0055555557,0.01,0.0055555557,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.008065999,0.08,0.05,0.01,0.0,0.0,0.0,0.009722223,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.0043519414,0.0,0.0,0.0,0.09,0.06,0.01,0.25,0.24,0.07 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,2001-07-01T00:00:00Z,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.05,0.01,0.15,0.07,0.02,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0062675118,0.0,0.0,0.0,0.1,0.07,0.02,0.26,0.21,0.06 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,2002-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.05,0.01,0.11,0.16,0.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.07,0.04,0.01,0.24,0.2,0.05 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,2003-07-01T00:00:00Z,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.06,0.01,0.15,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.16,0.1,0.03,0.3,0.21,0.06 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,2004-07-01T00:00:00Z,0.0,0.0,0.0,0.009722223,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.05,0.01,0.17,0.12,0.03,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006752395,0.0,0.0,0.0,0.15,0.08,0.02,0.37,0.28,0.08 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.004644337,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.009363887,0.11,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.0069444445,0.0,0.0,0.0,0.12,0.09,0.02,0.24,0.1,0.03 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,2006-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0036266178,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.28,0.11,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0049549034,0.0,0.0,0.0,0.18,0.12,0.03,0.31,0.2,0.05 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0047377935,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.09,0.02,0.55,0.12,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.0042705894,0.0,0.0,0.0,0.21,0.17,0.05,0.39,0.23,0.06 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1983-07-01T00:00:00Z,0.005,0.01,0.005,0.0075,0.01,0.005335937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0069221864,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1984-07-01T00:00:00Z,0.0,0.0,0.0,0.04,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.01,0.005,0.0025,0.007905694,0.0025,0.0,0.0,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0075,0.01,0.005335937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1985-07-01T00:00:00Z,0.009722223,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1986-07-01T00:00:00Z,0.03,0.03,0.008663493,0.01,0.01,0.0038151375,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.05,0.05,0.01,0.0013888889,0.0048112525,0.0013888889,NaN,NaN,NaN,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1987-07-01T00:00:00Z,0.25,0.12,0.03,0.01,0.01,0.004587349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,3.32,3.2,0.92,0.0,0.0,0.0,NaN,NaN,NaN,0.0013888889,0.0048112525,0.0013888889,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1988-07-01T00:00:00Z,0.15,0.09,0.02,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.008333334,0.02,0.0059811715,0.79,1.04,0.3,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.009585986 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1989-07-01T00:00:00Z,0.01,0.02,0.006634497,0.01,0.01,0.004792993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.01,0.0029905858,0.42,0.55,0.15,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.009622505,0.0027777778,0.01,0.01,0.005162891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1990-07-01T00:00:00Z,0.12,0.07,0.02,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1991-07-01T00:00:00Z,0.07,0.04,0.01,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1992-07-01T00:00:00Z,0.08,0.07,0.02,0.01,0.02,0.008417088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1993-07-01T00:00:00Z,0.02,0.01,0.0050772647,0.0055555557,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1994-07-01T00:00:00Z,0.004166667,0.0075377836,0.0021759707,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0037455547,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1995-07-01T00:00:00Z,0.06,0.06,0.01,0.03,0.02,0.007432355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0042705894,0.01,0.01,0.0042705894,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1996-07-01T00:00:00Z,0.35,0.22,0.06,0.03,0.02,0.007945522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0043317466,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.009622505,0.0027777778,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1997-07-01T00:00:00Z,0.13,0.07,0.02,0.01,0.01,0.0037455547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.04,0.08,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1998-07-01T00:00:00Z,0.12,0.06,0.01,0.01,0.02,0.006634497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.008333334,0.02,0.008333334,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,1999-07-01T00:00:00Z,0.06,0.04,0.01,0.01,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,1.56,0.91,0.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,2000-07-01T00:00:00Z,0.18,0.05,0.01,0.01,0.01,0.0050772647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.56,0.86,0.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,2001-07-01T00:00:00Z,0.06,0.07,0.02,0.01,0.01,0.0047377935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.009722223,0.01,0.0043317466,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,2002-07-01T00:00:00Z,0.12,0.02,0.008238092,0.01,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.0075377836,0.0021759707,0.09,0.1,0.03,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,2003-07-01T00:00:00Z,0.0069444445,0.01,0.0032166007,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.02,0.04,0.01,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.004166667,0.0075377836,0.0021759707,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,2004-07-01T00:00:00Z,0.06,0.04,0.01,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.02,0.02,0.0078007416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.008489694,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,2005-07-01T00:00:00Z,0.05,0.03,0.00927923,0.01,0.01,0.0045102453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,2006-07-01T00:00:00Z,0.09,0.05,0.01,0.02,0.02,0.008541179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.02,0.05,0.01,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.005162891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,2007-07-01T00:00:00Z,0.08,0.05,0.01,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.004166667,0.03,0.03,0.01,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1986-07-01T00:00:00Z,0.0055555557,0.01,0.0042705894,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.0075377836,0.0021759707,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.01,0.01,0.0037455547,NaN,NaN,NaN,0.0,0.0,0.0,0.0069444445,0.02,0.0069444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1987-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.0075377836,0.0021759707,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0047377935,NaN,NaN,NaN,0.0,0.0,0.0,0.008333334,0.01,0.0056183324,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0 + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1988-07-01T00:00:00Z,0.009722223,0.01,0.0032166007,0.0027777778,0.006487491,0.0018727774,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,NaN,NaN,NaN,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0013888889,0.0048112525,0.0013888889 + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1989-07-01T00:00:00Z,0.01,0.01,0.004644337,0.0027777778,0.006487491,0.0018727774,0.01,0.02,0.005922242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,NaN,NaN,NaN,0.0,0.0,0.0,0.01,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1990-07-01T00:00:00Z,0.06,0.05,0.01,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0055555557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1991-07-01T00:00:00Z,0.05,0.04,0.01,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.02,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1992-07-01T00:00:00Z,0.07,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.008322805,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1993-07-01T00:00:00Z,0.01,0.02,0.0058025885,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.02,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1994-07-01T00:00:00Z,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0069444445,0.008582144,0.0024774517,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.02,0.0069444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1995-07-01T00:00:00Z,0.01,0.02,0.008322805,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1996-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.0047377935,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1997-07-01T00:00:00Z,0.01,0.01,0.005602704,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.007349309,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0055555557,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1998-07-01T00:00:00Z,0.79,0.31,0.09,0.004166667,0.01,0.004166667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.005476073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,1999-07-01T00:00:00Z,0.21,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.04,0.01,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,2000-07-01T00:00:00Z,0.05,0.03,0.009020491,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,2001-07-01T00:00:00Z,0.03,0.01,0.0052135917,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,2002-07-01T00:00:00Z,0.1,0.07,0.02,0.0069444445,0.01,0.0032166007,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,2003-07-01T00:00:00Z,0.004166667,0.0075377836,0.0021759707,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,2004-07-01T00:00:00Z,0.07,0.04,0.01,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,2005-07-01T00:00:00Z,0.01,0.01,0.0036266178,0.01,0.01,0.0045102453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,2006-07-01T00:00:00Z,0.04,0.03,0.01,0.009722223,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0038151375,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,2007-07-01T00:00:00Z,0.15,0.06,0.02,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.004166667,0.0075377836,0.0021759707,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,2005-07-01T00:00:00Z,0.05,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.06,0.01,0.02,0.04,0.01,0.01,0.01,0.0037455547,0.02,0.03,0.009936315,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.05,0.04,0.01,0.0,0.0,0.0 + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,2006-07-01T00:00:00Z,0.05,0.04,0.01,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.05,0.05,0.01,0.02,0.03,0.009250838,0.0069444445,0.01,0.0032166007,0.04,0.05,0.01,0.01,0.02,0.0077669476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.03,0.01,0.0,0.0,0.0 + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,2007-07-01T00:00:00Z,0.15,0.12,0.03,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.05,0.05,0.01,0.42,0.52,0.15,0.01,0.01,0.0043317466,0.02,0.02,0.0059811715,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.06,0.01,0.0,0.0,0.0 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1983-07-01T00:00:00Z,0.01,0.02,0.007637626,0.0075,0.01,0.005335937,0.0075,0.01,0.005335937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.05,0.01,0.08,0.12,0.03,0.04,0.03,0.009895285,NaN,NaN,NaN,0.0025,0.007905694,0.0025,0.0,0.0,0.0,0.0,0.0,0.0,0.0025,0.007905694,0.0025,0.06,0.03,0.009895285,0.0,0.0,0.0 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1984-07-01T00:00:00Z,0.0075,0.01,0.005335937,0.005,0.01,0.005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.12,0.09,0.03,0.02,0.01,0.0062360954,0.0075,0.02,0.0075,0.0025,0.007905694,0.0025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.04,0.01,0.0,0.0,0.0 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1985-07-01T00:00:00Z,0.04,0.07,0.02,0.008333334,0.01,0.0038380516,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0048112525,0.02,0.03,0.01,2.53,1.94,0.56,0.004166667,0.0075377836,0.0021759707,NaN,NaN,NaN,0.01,0.02,0.0069444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.06,0.01,0.0,0.0,0.0 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1986-07-01T00:00:00Z,0.04,0.04,0.01,0.008333334,0.01,0.0032437455,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.04,0.02,0.007241137,NaN,NaN,NaN,0.0,0.0,0.0,NaN,NaN,NaN,0.01,0.02,0.007057166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.06,0.01,0.0,0.0,0.0 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1987-07-01T00:00:00Z,0.04,0.02,0.00803332,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.08,0.06,0.01,7.44,3.62,1.04,0.0,0.0,0.0,0.02,0.02,0.0077102953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.01,0.004166667,0.01,0.0029905858 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1988-07-01T00:00:00Z,0.07,0.05,0.01,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.13,0.05,0.01,11.5,2.5,0.72,0.0,0.0,0.0,NaN,NaN,NaN,0.01,0.01,0.0037455547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.06,0.01,0.0,0.0,0.0 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1989-07-01T00:00:00Z,0.05,0.04,0.01,0.004166667,0.0075377836,0.0021759707,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.06,0.02,5.96,2.74,0.79,0.0,0.0,0.0,NaN,NaN,NaN,0.02,0.02,0.007811974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.04,0.01,0.0,0.0,0.0 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1990-07-01T00:00:00Z,0.06,0.03,0.01,0.004166667,0.01,0.0029905858,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.06,0.01,12.31,6.98,2.01,0.0,0.0,0.0,0.02,0.02,0.005922242,0.01,0.01,0.0050772647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.05,0.01,0.0,0.0,0.0 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1991-07-01T00:00:00Z,0.1,0.06,0.01,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.27,0.09,0.02,16.26,5.94,1.71,0.0013888889,0.0048112525,0.0013888889,0.04,0.03,0.008971757,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.07,0.02,0.0,0.0,0.0 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1992-07-01T00:00:00Z,0.03,0.01,0.0053628185,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22,0.07,0.02,5.53,2.65,0.76,0.0,0.0,0.0,0.02,0.03,0.01,0.01,0.01,0.0029905858,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.04,0.01,0.0027777778,0.006487491,0.0018727774 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1993-07-01T00:00:00Z,0.61,0.31,0.09,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17,0.06,0.01,3.94,1.52,0.44,0.0027777778,0.009622505,0.0027777778,0.02,0.02,0.0077102953,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.11,0.03,0.0,0.0,0.0 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1994-07-01T00:00:00Z,0.0055555557,0.01,0.0031337559,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.13,0.09,0.02,2.35,1.56,0.45,0.0013888889,0.0048112525,0.0013888889,0.02,0.01,0.005162891,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.08,0.02,0.0,0.0,0.0 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1995-07-01T00:00:00Z,0.03,0.03,0.008814,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.1,0.05,0.01,0.61,0.45,0.13,0.01,0.01,0.005602704,0.02,0.02,0.0059664934,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.06,0.01,0.0027777778,0.009622505,0.0027777778 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1996-07-01T00:00:00Z,0.15,0.05,0.01,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.1,0.03,1.21,0.72,0.2,0.01,0.02,0.0058025885,0.02,0.03,0.00927923,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.07,0.02,0.0,0.0,0.0 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1997-07-01T00:00:00Z,0.06,0.06,0.01,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.06,0.01,2.45,1.49,0.43,0.0027777778,0.006487491,0.0018727774,0.02,0.02,0.0065947296,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.07,0.02,0.0,0.0,0.0 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1998-07-01T00:00:00Z,0.24,0.13,0.03,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.29,0.12,0.03,1.84,1.12,0.32,0.0013888889,0.0048112525,0.0013888889,0.02,0.02,0.00803332,0.0055555557,0.01,0.0037455547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.09,0.02,0.0,0.0,0.0 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,1999-07-01T00:00:00Z,0.1,0.05,0.01,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.11,0.03,2.98,1.22,0.35,0.0055555557,0.008206099,0.0023688967,0.02,0.02,0.006309342,0.01,0.01,0.005162891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.11,0.03,0.0,0.0,0.0 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,2000-07-01T00:00:00Z,0.12,0.05,0.01,0.02,0.03,0.008784105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22,0.09,0.02,2.44,1.93,0.55,0.01,0.01,0.0050772647,0.02,0.02,0.0059664934,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.15,0.09,0.02,0.0,0.0,0.0 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,2001-07-01T00:00:00Z,0.07,0.04,0.01,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0037455547,0.2,0.06,0.01,0.23,0.2,0.05,0.0069444445,0.01,0.0032166007,0.02,0.01,0.005476073,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0069444445,0.008582144,0.0024774517,0.0,0.0,0.0,0.09,0.06,0.01,0.0,0.0,0.0 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,2002-07-01T00:00:00Z,0.08,0.04,0.01,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18,0.1,0.03,0.17,0.27,0.07,0.0027777778,0.006487491,0.0018727774,0.02,0.01,0.005476073,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.1,0.06,0.01,0.0,0.0,0.0 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,2003-07-01T00:00:00Z,0.0069444445,0.01,0.004792993,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.12,0.07,0.02,0.0055555557,0.01,0.0031337559,0.008333334,0.01,0.0043519414,0.01,0.01,0.0041030496,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.1,0.06,0.01,0.0,0.0,0.0 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,2004-07-01T00:00:00Z,0.01,0.02,0.007241137,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.16,0.09,0.02,0.0069444445,0.01,0.005602704,0.01,0.008206099,0.0023688967,0.02,0.02,0.006906462,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11,0.06,0.02,0.0,0.0,0.0 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,2005-07-01T00:00:00Z,0.01,0.01,0.0036266178,0.0055555557,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.07,0.02,0.0013888889,0.0048112525,0.0013888889,0.01,0.02,0.0068426887,0.03,0.02,0.007057166,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.09,0.06,0.01,0.0,0.0,0.0 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,2006-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.01,0.01,0.004587349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18,0.09,0.02,0.0,0.0,0.0,0.03,0.03,0.009722223,0.03,0.01,0.0054278243,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.14,0.09,0.02,0.0,0.0,0.0 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,2007-07-01T00:00:00Z,0.04,0.04,0.01,0.009722223,0.008582144,0.0024774517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.04,0.01,0.01,0.02,0.008322805,0.01,0.02,0.007241137,0.05,0.03,0.01,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11,0.06,0.01,0.0,0.0,0.0 + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,2005-07-01T00:00:00Z,0.004166667,0.0075377836,0.0021759707,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0031337559,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.008333334,0.01,0.0038380516,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0 + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,2006-07-01T00:00:00Z,0.01,0.03,0.008814,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0055555557,0.008206099,0.0023688967,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,2007-07-01T00:00:00Z,0.12,0.16,0.04,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0058025885,0.0,0.0,0.0,0.0069444445,0.008582144,0.0024774517,0.009722223,0.01,0.0038151375,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889 + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,2005-07-01T00:00:00Z,0.07,0.03,0.009936315,0.009722223,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0055555557,0.01,0.0031337559,0.0055555557,0.01,0.0031337559,0.04,0.05,0.01,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,2006-07-01T00:00:00Z,0.1,0.06,0.02,0.01,0.01,0.005025189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0042705894,0.009722223,0.01,0.0043317466,0.0013888889,0.0048112525,0.0013888889,0.07,0.07,0.02,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.0075377836,0.0021759707,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,2007-07-01T00:00:00Z,0.26,0.13,0.03,0.02,0.02,0.0065947296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0069444445,0.01,0.0032166007,0.0055555557,0.008206099,0.0023688967,0.15,0.1,0.02,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0069444445,0.01,0.0032166007,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,2005-07-01T00:00:00Z,0.02,0.03,0.009909807,0.34,0.21,0.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.27,0.25,0.07,0.01,0.02,0.0078007416,0.08,0.07,0.02,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.04,0.01,0.0,0.0,0.0 + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,2006-07-01T00:00:00Z,0.0055555557,0.01,0.0031337559,0.22,0.15,0.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22,0.17,0.04,0.0,0.0,0.0,0.11,0.09,0.02,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.0075377836,0.0021759707,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.03,0.04,0.01,0.0,0.0,0.0 + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,2007-07-01T00:00:00Z,0.08,0.03,0.009174698,0.25,0.13,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.22,0.13,0.04,0.04,0.04,0.01,0.18,0.08,0.02,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.07,0.02,0.0,0.0,0.0 + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,2005-07-01T00:00:00Z,0.02,0.02,0.0077102953,0.1,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.31,0.08,0.05,0.06,0.01,0.17,0.07,0.02,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.01,0.01,0.0043317466,0.0,0.0,0.0 + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,2006-07-01T00:00:00Z,0.02,0.03,0.01,0.03,0.02,0.008571921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.1,0.17,0.05,0.009722223,0.01,0.0038151375,0.18,0.07,0.02,0.004166667,0.0075377836,0.0021759707,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0069444445,0.008582144,0.0024774517,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0 + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,2007-07-01T00:00:00Z,0.02,0.02,0.0063232244,0.1,0.1,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.23,0.44,0.12,0.03,0.06,0.01,0.35,0.11,0.03,0.0055555557,0.008206099,0.0023688967,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.02,0.02,0.0058477456,0.0,0.0,0.0 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1983-07-01T00:00:00Z,0.005,0.01,0.0033333334,0.23,0.24,0.07,0.01,0.02,0.006666667,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.009895285,0.04,0.04,0.01,0.0,0.0,0.0,0.15,0.06,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.1,0.03,0.09,0.1,0.03 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1984-07-01T00:00:00Z,0.0,0.0,0.0,0.1,0.08,0.02,0.0025,0.007905694,0.0025,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.005527708,0.1,0.15,0.04,0.0,0.0,0.0,0.18,0.11,0.03,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23,0.13,0.04,0.08,0.07,0.02 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1985-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.05,0.04,0.01,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.04,0.04,0.01,0.2,0.45,0.13,0.16,0.1,0.02,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.05,0.01,0.04,0.02,0.0075377836 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1986-07-01T00:00:00Z,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0069444445,0.01,0.0032166007,0.14,0.17,0.05,0.47,0.44,0.12,0.1,0.07,0.02,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.005162891,0.01,0.01,0.0037455547 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1987-07-01T00:00:00Z,0.0,0.0,0.0,0.05,0.05,0.01,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.006527912,0.15,0.18,0.05,0.0027777778,0.009622505,0.0027777778,0.17,0.11,0.03,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0068426887,0.0,0.0,0.0 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1988-07-01T00:00:00Z,0.0,0.0,0.0,0.05,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.17,0.17,0.05,1.08,1.75,0.5,0.12,0.09,0.02,NaN,NaN,NaN,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.007349309,0.0013888889,0.0048112525,0.0013888889 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1989-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.02,0.0058025885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.006309342,0.15,0.14,0.04,2.04,2.27,0.65,0.21,0.12,0.03,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.008489694,0.0027777778,0.006487491,0.0018727774 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1990-07-01T00:00:00Z,0.0,0.0,0.0,0.02,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.004792993,0.06,0.05,0.01,2.21,2.67,0.77,0.13,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.005602704,0.0027777778,0.006487491,0.0018727774 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1991-07-01T00:00:00Z,0.004166667,0.0075377836,0.0021759707,0.004166667,0.01,0.0029905858,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.009803055,0.11,0.13,0.03,2.2,2.63,0.75,0.19,0.12,0.03,0.0,0.0,0.0,0.004166667,0.01,0.004166667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0045102453,0.0,0.0,0.0 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1992-07-01T00:00:00Z,0.01,0.01,0.004644337,0.01,0.02,0.006197167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.006527912,0.08,0.07,0.02,5.01,4.27,1.23,0.13,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.009722223,0.02,0.0069444445 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1993-07-01T00:00:00Z,0.01,0.02,0.007526142,0.08,0.08,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14,0.1,0.03,3.17,3.0,0.86,0.18,0.13,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0038151375,0.0,0.0,0.0 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1994-07-01T00:00:00Z,0.01,0.02,0.008322805,0.02,0.02,0.006634497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.009363887,0.19,0.25,0.07,2.17,2.63,0.76,0.18,0.1,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.004166667,0.0075377836,0.0021759707 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1995-07-01T00:00:00Z,0.0,0.0,0.0,0.02,0.02,0.007526142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0071066907,0.11,0.09,0.02,1.66,2.81,0.81,0.14,0.08,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.02,0.02,0.0078007416,0.0,0.0,0.0 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1996-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.004644337,0.14,0.06,0.02,0.77,0.95,0.27,0.04,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0069444445,0.01,0.005602704,0.0,0.0,0.0 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1997-07-01T00:00:00Z,0.0,0.0,0.0,0.08,0.08,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.008814,0.14,0.13,0.03,0.75,1.53,0.44,0.05,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006752395,0.0,0.0,0.0 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1998-07-01T00:00:00Z,0.02,0.02,0.0079785595,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.19,0.24,0.06,0.14,0.31,0.09,0.04,0.02,0.0078007416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.04,0.01,0.0,0.0,0.0 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,1999-07-01T00:00:00Z,0.0055555557,0.01,0.0031337559,0.02,0.02,0.007241137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.008489694,0.3,0.25,0.07,2.02,1.53,0.44,0.06,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.0,0.0,0.0 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,2000-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.34,0.32,0.09,3.14,2.08,0.6,0.05,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0043317466,0.0,0.0,0.0 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,2001-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0037455547,0.27,0.17,0.04,1.23,1.18,0.34,0.07,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,2002-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0055555557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0055555557,0.24,0.19,0.05,0.55,0.71,0.2,0.04,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,2003-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.22,0.21,0.06,0.01,0.05,0.01,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0071436088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,2004-07-01T00:00:00Z,0.01,0.01,0.0037455547,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006487491,0.23,0.26,0.07,0.0,0.0,0.0,0.01,0.01,0.0035533453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.05,0.01,0.0,0.0,0.0,0.01,0.01,0.0042705894,0.0,0.0,0.0 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,2005-07-01T00:00:00Z,0.01,0.02,0.0068426887,0.02,0.02,0.0075377836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.0050772647,0.23,0.19,0.05,0.0,0.0,0.0,0.01,0.02,0.0058025885,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.02,0.02,0.006906462,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0013888889,0.0048112525,0.0013888889 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,2006-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.24,0.2,0.06,0.0,0.0,0.0,0.009722223,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.04,0.04,0.01,0.0,0.0,0.0,0.008333334,0.01,0.0048112525,0.0,0.0,0.0 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.03,0.02,0.006309342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.24,0.26,0.07,0.0013888889,0.0048112525,0.0013888889,0.07,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0,0.05,0.03,0.01,0.0,0.0,0.0 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1983-07-01T00:00:00Z,0.0025,0.007905694,0.0025,0.09,0.08,0.02,0.01,0.03,0.01,0.0,0.0,0.0,0.06,0.08,0.02,0.04,0.05,0.01,0.04,0.02,0.0072648316,0.0,0.0,0.0,0.22,0.11,0.03,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0025,0.007905694,0.0025,0.05,0.05,0.01,0.24,0.18,0.05,0.0,0.0,0.0 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1984-07-01T00:00:00Z,0.02,0.02,0.009128709,0.03,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0075,0.01,0.01,0.004082483,0.08,0.04,0.01,0.0,0.0,0.0,0.25,0.11,0.03,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.04,0.01,0.17,0.09,0.02,0.0,0.0,0.0 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1985-07-01T00:00:00Z,0.008333334,0.01,0.0032437455,0.02,0.02,0.006634497,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.01,0.02,0.006804138,0.02,0.02,0.0079785595,0.21,0.17,0.05,2.51,2.67,0.77,0.26,0.09,0.02,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.08,0.02,0.07,0.04,0.01,0.0,0.0,0.0 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1986-07-01T00:00:00Z,0.0069444445,0.02,0.0069444445,0.02,0.03,0.009020491,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.01,0.02,0.007526142,0.01,0.01,0.005602704,0.23,0.18,0.05,4.08,1.62,0.47,0.25,0.12,0.03,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.009475587,0.03,0.03,0.008663493,0.004166667,0.01,0.0029905858 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1987-07-01T00:00:00Z,0.02,0.03,0.00927923,0.06,0.04,0.01,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.03,0.01,0.15,0.08,0.02,3.31,1.53,0.44,0.24,0.12,0.03,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.1,0.02,0.02,0.01,0.0047377935,0.0055555557,0.01,0.0037455547 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1988-07-01T00:00:00Z,0.05,0.06,0.01,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.07,0.02,0.21,0.13,0.03,4.75,2.33,0.67,0.17,0.1,0.03,NaN,NaN,NaN,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006752395,0.01,0.01,0.0052135917,0.0013888889,0.0048112525,0.0013888889 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1989-07-01T00:00:00Z,0.004166667,0.0075377836,0.0021759707,0.04,0.02,0.0071436088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.07,0.02,0.17,0.07,0.02,2.6,1.65,0.47,0.26,0.14,0.04,NaN,NaN,NaN,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.01,0.02,0.007349309,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1990-07-01T00:00:00Z,0.01,0.02,0.0071436088,0.01,0.01,0.004792993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.009363887,0.06,0.04,0.01,0.64,1.19,0.34,0.13,0.06,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0038151375,0.01,0.01,0.0057418267,0.009722223,0.01,0.0032166007,0.0013888889,0.0048112525,0.0013888889 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1991-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.01,0.01,0.004644337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0063232244,0.16,0.08,0.02,0.55,0.62,0.18,0.04,0.02,0.008489694,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.01,0.01,0.004792993,0.01,0.01,0.00401666,0.0013888889,0.0048112525,0.0013888889 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1992-07-01T00:00:00Z,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.008814,0.08,0.07,0.02,0.07,0.11,0.03,0.05,0.03,0.01,0.0,0.0,0.0,0.01,0.03,0.008903082,0.0,0.0,0.0,0.01,0.01,0.0057418267,0.06,0.06,0.01,0.01,0.02,0.0058025885,0.0,0.0,0.0 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1993-07-01T00:00:00Z,0.0,0.0,0.0,0.04,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0068426887,0.13,0.06,0.01,0.38,0.99,0.28,0.03,0.03,0.009722223,0.0,0.0,0.0,0.01,0.01,0.005162891,0.0,0.0,0.0,0.01,0.02,0.006309342,0.06,0.09,0.02,0.02,0.02,0.0062675118,0.0,0.0,0.0 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1994-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.08,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.0058477456,0.15,0.05,0.01,0.01,0.02,0.007526142,0.02,0.03,0.009020491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0069444445,0.03,0.04,0.01,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1995-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.03,0.02,0.0078007416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.04,0.01,0.19,0.08,0.02,0.17,0.22,0.06,0.03,0.02,0.007349309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0050772647,0.04,0.04,0.01,0.02,0.03,0.01,0.0069444445,0.01,0.0032166007 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1996-07-01T00:00:00Z,0.02,0.04,0.01,0.02,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.04,0.01,0.18,0.11,0.03,0.0,0.0,0.0,0.07,0.05,0.01,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.01,0.01,0.004644337,0.05,0.07,0.02,0.03,0.04,0.01,0.0,0.0,0.0 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1997-07-01T00:00:00Z,0.02,0.03,0.00927923,0.008333334,0.01,0.0043519414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.008582144,0.0024774517,0.15,0.06,0.01,1.9,1.84,0.53,0.06,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.05,0.09,0.02,0.02,0.04,0.01,0.0,0.0,0.0 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1998-07-01T00:00:00Z,0.95,0.35,0.1,0.02,0.02,0.0080768615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.03,0.01,0.17,0.06,0.01,0.35,0.34,0.09,0.1,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.06,0.01,0.01,0.01,0.0038151375,0.01,0.02,0.0062675118 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,1999-07-01T00:00:00Z,0.03,0.04,0.01,0.02,0.01,0.0052135917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.007241137,0.15,0.05,0.01,3.82,2.2,0.63,0.2,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.12,0.03,0.03,0.03,0.009803055,0.0,0.0,0.0 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,2000-07-01T00:00:00Z,0.03,0.03,0.01,0.02,0.02,0.0075377836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.004792993,0.1,0.05,0.01,2.58,1.9,0.54,0.1,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.16,0.04,0.02,0.01,0.004166667,0.0013888889,0.0048112525,0.0013888889 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,2001-07-01T00:00:00Z,0.009722223,0.01,0.004792993,0.01,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.07,0.05,0.01,1.15,1.81,0.52,0.07,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.007676103,0.07,0.09,0.02,0.01,0.01,0.004792993,0.0,0.0,0.0 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,2002-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.005602704,0.09,0.14,0.04,0.0,0.0,0.0,0.01,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.03,0.01,0.06,0.09,0.02,0.01,0.01,0.0057418267,0.0,0.0,0.0 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,2003-07-01T00:00:00Z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0037455547,0.01,0.01,0.00401666,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.008971757,0.07,0.1,0.03,0.009722223,0.01,0.0038151375,0.0013888889,0.0048112525,0.0013888889 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,2004-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.004644337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.009503308,0.03,0.02,0.008238092,0.0055555557,0.01,0.0042705894,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.01,0.0057418267,0.07,0.15,0.04,0.06,0.05,0.01,0.0013888889,0.0048112525,0.0013888889 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0032166007,0.02,0.02,0.008065999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0077102953,0.04,0.05,0.01,0.18,0.09,0.02,0.0013888889,0.0048112525,0.0013888889 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,2006-07-01T00:00:00Z,0.01,0.03,0.009695129,0.01,0.01,0.00401666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.0055555557,0.03,0.02,0.0060973214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0069444445,0.04,0.08,0.02,0.16,0.1,0.03,0.0,0.0,0.0 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0042705894,0.02,0.01,0.004792993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0041030496,0.13,0.18,0.05,0.19,0.08,0.02,0.0,0.0,0.0 + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,2005-07-01T00:00:00Z,0.02,0.04,0.01,0.23,0.12,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.05,0.01,0.11,0.13,0.03,0.0,0.0,0.0,0.21,0.16,0.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.0,0.0,0.0 + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,2006-07-01T00:00:00Z,0.0,0.0,0.0,0.09,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.06,0.01,0.13,0.12,0.03,0.23,0.4,0.11,0.22,0.13,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.01,0.01,0.004166667,0.0,0.0,0.0 + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,2007-07-01T00:00:00Z,0.02,0.03,0.01,0.05,0.03,0.009945136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.009049605,0.13,0.15,0.04,0.05,0.05,0.01,0.48,0.21,0.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0058025885,0.0,0.0,0.0 + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,2005-07-01T00:00:00Z,0.03,0.04,0.01,0.08,0.13,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.11,0.03,0.38,0.22,0.06,0.1,0.11,0.03,0.02,0.03,0.009049605,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.06,0.01,0.0,0.0,0.0 + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,2006-07-01T00:00:00Z,0.04,0.06,0.01,0.06,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.04,0.01,0.29,0.15,0.04,0.23,0.18,0.05,0.03,0.03,0.008703883,0.004166667,0.01,0.004166667,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.07,0.02,0.0,0.0,0.0 + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,2007-07-01T00:00:00Z,0.02,0.03,0.008814,0.04,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.27,0.16,0.04,0.85,0.79,0.22,0.06,0.04,0.01,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.06,0.01,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1983-07-01T00:00:00Z,0.0,0.0,0.0,0.22,0.12,0.03,0.04,0.04,0.01,0.0,0.0,0.0,0.0025,0.007905694,0.0025,0.0075,0.01,0.003818813,0.05,0.06,0.01,0.0,0.0,0.0,0.04,0.02,0.007637626,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.06,0.02,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1984-07-01T00:00:00Z,0.0025,0.007905694,0.0025,0.25,0.17,0.05,0.02,0.02,0.009464847,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.00745356,0.03,0.05,0.01,0.0,0.0,0.0,0.01,0.03,0.009895285,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.01,0.005,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1985-07-01T00:00:00Z,0.0,0.0,0.0,0.36,0.26,0.07,0.02,0.03,0.009909807,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0049549034,0.07,0.09,0.02,0.39,0.23,0.06,0.01,0.03,0.008663493,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1986-07-01T00:00:00Z,0.0,0.0,0.0,0.22,0.13,0.03,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.02,0.0059664934,0.08,0.09,0.02,4.14,1.11,0.32,0.01,0.01,0.0036266178,NaN,NaN,NaN,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1987-07-01T00:00:00Z,0.0027777778,0.009622505,0.0027777778,0.19,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.05,0.01,0.06,0.07,0.02,NaN,NaN,NaN,0.01,0.01,0.00401666,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1988-07-01T00:00:00Z,0.0055555557,0.008206099,0.0023688967,0.08,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.007396878,0.09,0.09,0.02,0.48,0.77,0.22,0.008333334,0.01,0.0032437455,NaN,NaN,NaN,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1989-07-01T00:00:00Z,0.01,0.01,0.0032166007,0.1,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.005602704,0.07,0.08,0.02,0.1,0.19,0.05,0.01,0.01,0.0053628185,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1990-07-01T00:00:00Z,0.004166667,0.0075377836,0.0021759707,0.1,0.09,0.02,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.006197167,0.07,0.07,0.02,0.0069444445,0.01,0.0043317466,0.01,0.01,0.0055555557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1991-07-01T00:00:00Z,0.03,0.02,0.008417088,0.02,0.02,0.006906462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.005025189,0.04,0.04,0.01,0.0,0.0,0.0,0.01,0.01,0.005476073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1992-07-01T00:00:00Z,0.09,0.05,0.01,0.06,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0047377935,0.06,0.07,0.02,0.2,0.38,0.11,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1993-07-01T00:00:00Z,0.05,0.05,0.01,0.05,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0031337559,0.04,0.04,0.01,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0038151375,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1994-07-01T00:00:00Z,0.0069444445,0.01,0.005602704,0.05,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0047377935,0.06,0.06,0.02,0.0027777778,0.009622505,0.0027777778,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1995-07-01T00:00:00Z,0.008333334,0.008703883,0.0025125945,0.03,0.02,0.0071436088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.07,0.02,0.08,0.05,0.01,0.33,0.39,0.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0042705894,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1996-07-01T00:00:00Z,0.0,0.0,0.0,0.09,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.08,0.06,0.01,0.27,0.42,0.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1997-07-01T00:00:00Z,0.01,0.04,0.01,0.09,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.005162891,0.07,0.04,0.01,0.32,0.21,0.06,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1998-07-01T00:00:00Z,0.0027777778,0.009622505,0.0027777778,0.08,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.006527912,0.08,0.09,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,1999-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.04,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.008734052,0.1,0.06,0.01,8.72,5.48,1.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,2000-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.05,0.03,0.009722223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0048112525,0.17,0.14,0.04,4.02,2.58,0.74,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,2001-07-01T00:00:00Z,0.0055555557,0.01,0.0031337559,0.08,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0043317466,0.18,0.17,0.05,2.52,0.89,0.25,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,2002-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.04,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.13,0.14,0.04,2.09,1.04,0.3,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,2003-07-01T00:00:00Z,0.004166667,0.0075377836,0.0021759707,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.15,0.13,0.03,1.14,0.57,0.16,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0058477456,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,2004-07-01T00:00:00Z,0.01,0.02,0.007349309,0.01,0.01,0.0052135917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.02,0.0069444445,0.18,0.14,0.04,3.18,1.01,0.29,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,2005-07-01T00:00:00Z,0.02,0.02,0.0065947296,0.03,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0038151375,0.12,0.1,0.02,1.75,0.75,0.21,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,2006-07-01T00:00:00Z,0.01,0.01,0.0057418267,0.04,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0042705894,0.16,0.15,0.04,2.74,1.06,0.3,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.01,0.01,0.004792993,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,2007-07-01T00:00:00Z,0.01,0.02,0.0060973214,0.06,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.14,0.11,0.03,1.26,0.51,0.14,0.004166667,0.0075377836,0.0021759707,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0069444445,0.0,0.0,0.0 + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,2005-07-01T00:00:00Z,0.02,0.03,0.01,0.25,0.29,0.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.17,0.1,0.02,0.56,0.97,0.28,0.03,0.03,0.00927923,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.008663493,0.0,0.0,0.0 + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,2006-07-01T00:00:00Z,0.01,0.01,0.0037455547,0.11,0.1,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.05,0.01,0.16,0.14,0.04,0.48,0.86,0.25,0.05,0.04,0.01,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.008541179,0.0,0.0,0.0 + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,2007-07-01T00:00:00Z,0.01,0.01,0.004166667,0.15,0.2,0.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.16,0.14,0.04,0.7,1.43,0.41,0.1,0.11,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.06,0.05,0.01,0.0,0.0,0.0 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1983-07-01T00:00:00Z,0.005,0.01,0.005,0.04,0.04,0.01,0.08,0.06,0.01,0.0,0.0,0.0,0.005,0.01,0.0033333334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.04,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1984-07-01T00:00:00Z,0.0,0.0,0.0,0.02,0.02,0.008333334,0.04,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0025,0.007905694,0.0025,0.12,0.05,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.005,0.01,0.005,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.008498366,0.0,0.0,0.0 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1985-07-01T00:00:00Z,0.15,0.11,0.03,0.02,0.02,0.0059811715,0.05,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.13,0.05,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0047377935,0.004166667,0.0075377836,0.0021759707 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1986-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.06,0.05,0.01,0.06,0.08,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.09,0.02,0.19,0.06,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006906462,0.0,0.0,0.0 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1987-07-01T00:00:00Z,0.009722223,0.008582144,0.0024774517,0.07,0.05,0.01,0.009722223,0.02,0.0059664934,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.01,0.04,0.01,0.18,0.05,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0038151375,0.0,0.0,0.0 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1988-07-01T00:00:00Z,0.0069444445,0.008582144,0.0024774517,0.02,0.02,0.006634497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0038151375,0.12,0.04,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0055555557,0.01,0.0037455547,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.007241137,0.0013888889,0.0048112525,0.0013888889 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1989-07-01T00:00:00Z,0.004166667,0.0075377836,0.0021759707,0.02,0.02,0.0072047184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.04,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1990-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.08,0.02,0.06,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1991-07-01T00:00:00Z,0.009722223,0.01,0.0038151375,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.19,0.05,0.05,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1992-07-01T00:00:00Z,0.01,0.01,0.0032166007,0.01,0.02,0.0064332015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.09,0.02,0.09,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0057418267,0.004166667,0.0075377836,0.0021759707 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1993-07-01T00:00:00Z,0.05,0.05,0.01,0.02,0.01,0.0056183324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.13,0.03,0.12,0.08,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1994-07-01T00:00:00Z,0.06,0.04,0.01,0.07,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.09,0.02,0.1,0.08,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0048112525,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.00803332,0.0,0.0,0.0 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1995-07-01T00:00:00Z,0.06,0.03,0.01,0.04,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.07,0.15,0.04,0.09,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0077669476,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.006527912,0.0,0.0,0.0 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1996-07-01T00:00:00Z,0.0055555557,0.008206099,0.0023688967,0.02,0.02,0.006634497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.03,0.07,0.02,0.05,0.03,0.009429206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0057418267,0.0,0.0,0.0 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1997-07-01T00:00:00Z,0.01,0.01,0.0038151375,0.06,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.07,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.00894239,0.0013888889,0.0048112525,0.0013888889 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1998-07-01T00:00:00Z,0.04,0.03,0.01,0.07,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.005162891,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0060973214,0.004166667,0.0075377836,0.0021759707 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,1999-07-01T00:00:00Z,0.02,0.03,0.01,0.06,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.06,0.08,0.02,0.03,0.01,0.0053628185,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.005602704,0.0,0.0,0.0 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,2000-07-01T00:00:00Z,0.02,0.03,0.009731237,0.09,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.04,0.08,0.02,0.02,0.02,0.0080768615,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.04,0.01,0.0,0.0,0.0 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,2001-07-01T00:00:00Z,0.03,0.03,0.008903082,0.11,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0055555557,0.01,0.0037455547,0.01,0.02,0.008065999,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0052135917,0.0027777778,0.006487491,0.0018727774 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,2002-07-01T00:00:00Z,0.06,0.06,0.01,0.02,0.03,0.008734052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.01,0.01,0.0053628185,0.04,0.02,0.008322805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,2003-07-01T00:00:00Z,0.07,0.11,0.03,0.02,0.02,0.005922242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.004166667,0.0075377836,0.0021759707,0.04,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,2004-07-01T00:00:00Z,0.004166667,0.01,0.0029905858,0.05,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.01,0.01,0.0050772647,0.08,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.04,0.06,0.01,0.0,0.0,0.0 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,2005-07-01T00:00:00Z,0.004166667,0.0075377836,0.0021759707,0.09,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.07,0.03,0.01,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,2006-07-01T00:00:00Z,0.0055555557,0.008206099,0.0023688967,0.05,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0055555557,0.01,0.0031337559,0.08,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0078007416,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.03,0.04,0.01,0.0,0.0,0.0 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,2007-07-01T00:00:00Z,0.01,0.01,0.004792993,0.01,0.01,0.0052135917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.11,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.009585986,0.0,0.0,0.0 + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1986-07-01T00:00:00Z,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.008206099,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006309342,0.08,0.05,0.01,NaN,NaN,NaN,0.01,0.01,0.00401666,0.0055555557,0.008206099,0.0023688967,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0068426887,0.0013888889,0.0048112525,0.0013888889 + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1987-07-01T00:00:00Z,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.01,0.01,0.0057418267,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0074911094,0.18,0.12,0.03,NaN,NaN,NaN,0.01,0.01,0.0036266178,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.009049605,0.009722223,0.01,0.0032166007 + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1988-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.02,0.05,0.01,0.09,0.06,0.02,NaN,NaN,NaN,0.03,0.02,0.0060973214,0.004166667,0.0075377836,0.0021759707,0.04,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.008489694,0.0,0.0,0.0 + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1989-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.01,0.01,0.004166667,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.12,0.09,0.02,NaN,NaN,NaN,0.05,0.02,0.008541179,0.004166667,0.01,0.0029905858,0.009722223,0.01,0.005602704,0.0027777778,0.006487491,0.0018727774,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0 + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1990-07-01T00:00:00Z,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.05,0.01,0.11,0.06,0.01,NaN,NaN,NaN,0.03,0.01,0.0057418267,0.0069444445,0.01,0.0032166007,0.01,0.01,0.0049549034,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0027777778,0.009622505,0.0027777778 + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1991-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0069444445,0.008582144,0.0024774517,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.02,0.02,0.006309342,0.09,0.04,0.01,9.04,9.2,2.65,0.02,0.02,0.0062675118,0.01,0.01,0.0036266178,0.0055555557,0.01,0.0042705894,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0013888889,0.0048112525,0.0013888889 + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1992-07-01T00:00:00Z,0.0,0.0,0.0,0.009722223,0.01,0.0038151375,0.008333334,0.01,0.0043519414,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.005602704,0.08,0.07,0.02,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.03,0.05,0.01,0.004166667,0.01,0.0029905858 + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1993-07-01T00:00:00Z,0.0,0.0,0.0,0.0055555557,0.01,0.0042705894,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.01,0.05,0.05,0.01,0.84,0.61,0.17,0.004166667,0.0075377836,0.0021759707,0.0027777778,0.006487491,0.0018727774,0.0027777778,0.009622505,0.0027777778,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.03,0.02,0.006487491 + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1994-07-01T00:00:00Z,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.008238092,0.02,0.03,0.009049605,0.7,0.53,0.15,0.01,0.01,0.0045102453,0.01,0.01,0.0045102453,0.01,0.01,0.0031337559,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.02,0.02,0.0069444445,0.0013888889,0.0048112525,0.0013888889 + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1995-07-01T00:00:00Z,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.04,0.01,0.03,0.04,0.01,0.34,0.41,0.12,0.0027777778,0.006487491,0.0018727774,0.0055555557,0.008206099,0.0023688967,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.008333334,0.008703883,0.0025125945,0.0055555557,0.01,0.0042705894 + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1996-07-01T00:00:00Z,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.04,0.05,0.01,0.02,0.03,0.01,0.64,0.7,0.2,0.008333334,0.01,0.0038380516,0.0055555557,0.008206099,0.0023688967,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0055555557,0.01,0.0037455547 + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1997-07-01T00:00:00Z,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.01,0.03,0.04,0.01,0.2,0.24,0.07,0.004166667,0.0075377836,0.0021759707,0.0027777778,0.006487491,0.0018727774,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.01,0.01,0.0038151375,0.0013888889,0.0048112525,0.0013888889 + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1998-07-01T00:00:00Z,0.0,0.0,0.0,0.0055555557,0.01,0.0037455547,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.11,0.15,0.04,0.04,0.04,0.01,0.53,0.36,0.1,0.0069444445,0.008582144,0.0024774517,0.01,0.0075377836,0.0021759707,0.0027777778,0.006487491,0.0018727774,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.03,0.008903082,0.0,0.0,0.0 + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,1999-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.01,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.11,0.07,0.02,17.3,3.23,0.93,0.01,0.01,0.004166667,0.009722223,0.01,0.0038151375,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.04,0.01,0.0013888889,0.0048112525,0.0013888889 + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,2000-07-01T00:00:00Z,0.009722223,0.01,0.0032166007,0.0055555557,0.01,0.0037455547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0059664934,0.05,0.04,0.01,22.45,5.64,1.62,0.0055555557,0.01,0.0031337559,0.01,0.02,0.007630275,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.03,0.01,0.0,0.0,0.0 + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,2001-07-01T00:00:00Z,0.004166667,0.0075377836,0.0021759707,0.008333334,0.008703883,0.0025125945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0045102453,0.15,0.06,0.01,15.45,7.89,2.27,0.01,0.01,0.004792993,0.01,0.02,0.0059664934,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0 + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,2002-07-01T00:00:00Z,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0060973214,0.2,0.08,0.02,14.07,8.26,2.38,0.02,0.01,0.004166667,0.01,0.01,0.0049549034,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.02,0.01,0.0056183324,0.0,0.0,0.0 + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,2003-07-01T00:00:00Z,0.008333334,0.02,0.008333334,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.05,0.01,0.16,0.1,0.02,0.35,0.48,0.13,0.02,0.02,0.0059811715,0.02,0.01,0.005476073,0.008333334,0.008703883,0.0025125945,0.0055555557,0.01,0.0055555557,0.01,0.02,0.0069444445,0.0,0.0,0.0,0.01,0.01,0.0049549034,0.004166667,0.0075377836,0.0021759707 + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,2004-07-01T00:00:00Z,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.006752395,0.11,0.05,0.01,0.49,0.43,0.12,0.01,0.01,0.003453231,0.01,0.01,0.00401666,0.0069444445,0.01,0.0043317466,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.02,0.03,0.01,0.0013888889,0.0048112525,0.0013888889 + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.05,0.01,0.06,0.05,0.01,0.06,0.05,0.01,0.0,0.0,0.0,0.009722223,0.01,0.0032166007,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.01,0.01,0.004587349,0.0,0.0,0.0,0.06,0.04,0.01,0.0,0.0,0.0 + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,2006-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.09,0.02,0.08,0.06,0.01,0.4,0.45,0.13,0.0027777778,0.006487491,0.0018727774,0.01,0.01,0.0037455547,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.009622505,0.0027777778,0.02,0.02,0.008571921,0.0,0.0,0.0,0.04,0.02,0.0068426887,0.0013888889,0.0048112525,0.0013888889 + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.009622505,0.06,0.03,0.009363887,0.11,0.09,0.02,0.004166667,0.01,0.0029905858,0.01,0.01,0.0045102453,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.008333334,0.01,0.0043519414,0.0,0.0,0.0,0.09,0.03,0.008814,0.0013888889,0.0048112525,0.0013888889 + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.003453231,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.006752395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.03,0.01,0.0,0.0,0.0,0.17,0.06,0.01,0.12,0.07,0.02 + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,2006-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.009695129,0.0,0.0,0.0,0.11,0.06,0.01,0.13,0.06,0.01 + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.02,0.007630275,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006804138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.1,0.06,0.01,0.06,0.03,0.01 + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.02,0.03,0.009909807,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.02,0.02,0.0071436088,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.0078007416,0.0,0.0,0.0,0.39,0.14,0.04,0.07,0.02,0.008489694 + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,2006-07-01T00:00:00Z,0.0,0.0,0.0,0.02,0.02,0.008291139,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.01,0.01,0.005476073,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0071436088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.05,0.01,0.0,0.0,0.0,0.27,0.1,0.03,0.06,0.04,0.01 + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.04,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.01,0.02,0.0058025885,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.008971757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.01,0.005025189,0.0,0.0,0.0,0.35,0.16,0.04,0.09,0.06,0.02 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1983-07-01T00:00:00Z,0.01,0.01,0.00559017,0.02,0.02,0.0069221864,0.0,0.0,0.0,0.0,0.0,0.0,0.19,0.19,0.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.00745356,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.06,0.01,0.02,0.02,0.008700255 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1984-07-01T00:00:00Z,0.0025,0.007905694,0.0025,0.005,0.01,0.005,0.0025,0.007905694,0.0025,0.0,0.0,0.0,0.13,0.12,0.04,0.005,0.01,0.0033333334,0.0,0.0,0.0,0.0025,0.007905694,0.0025,0.04,0.03,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.05,0.01,0.005,0.01,0.0033333334 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1985-07-01T00:00:00Z,0.01,0.01,0.0052135917,0.009722223,0.01,0.0032166007,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.03,0.06,0.01,0.0055555557,0.008206099,0.0023688967,0.07,0.07,0.02,0.47,0.42,0.12,0.04,0.03,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.05,0.01,0.01,0.02,0.007396878 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1986-07-01T00:00:00Z,0.008333334,0.01,0.0038380516,0.01,0.01,0.0057418267,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.01,0.01,0.0047377935,0.0055555557,0.01,0.0031337559,0.06,0.06,0.01,0.13,0.08,0.02,0.06,0.04,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.03,0.02,0.006309342,0.0055555557,0.008206099,0.0023688967 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1987-07-01T00:00:00Z,0.009722223,0.01,0.0032166007,0.0055555557,0.01,0.0037455547,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.01,0.01,0.004792993,0.04,0.04,0.01,0.03,0.04,0.01,0.04,0.02,0.007526142,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.09,0.02,0.0,0.0,0.0,0.0069444445,0.01,0.0038151375,0.0055555557,0.008206099,0.0023688967 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1988-07-01T00:00:00Z,0.0055555557,0.01,0.0042705894,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.01,0.01,0.0047377935,0.01,0.02,0.006527912,0.0,0.0,0.0,0.03,0.03,0.009363887,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.14,0.06,0.01,0.0,0.0,0.0,0.01,0.01,0.005602704,0.008333334,0.01,0.0032437455 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1989-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.008333334,0.01,0.0048112525,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0065947296,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.01,0.01,0.0031337559,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.04,0.01,0.0,0.0,0.0,0.02,0.02,0.006309342,0.01,0.01,0.004587349 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1990-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.02,0.0059664934,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.02,0.0069570593,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.01,0.01,0.0053628185,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.1,0.03,0.0,0.0,0.0,0.01,0.02,0.0069444445,0.01,0.02,0.0059664934 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1991-07-01T00:00:00Z,0.0,0.0,0.0,0.02,0.02,0.0072532357,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.02,0.008333334,0.0055555557,0.01,0.0042705894,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.01,0.0,0.0,0.0,0.02,0.03,0.008784105,0.0027777778,0.006487491,0.0018727774 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1992-07-01T00:00:00Z,0.0,0.0,0.0,0.0055555557,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.03,0.009722223,0.0027777778,0.009622505,0.0027777778,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.01,0.01,0.0035533453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.009838767,0.0,0.0,0.0,0.05,0.03,0.01,0.0069444445,0.01,0.0032166007 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1993-07-01T00:00:00Z,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0077102953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.0058025885,0.0,0.0,0.0,0.05,0.05,0.01,0.01,0.01,0.0036266178 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1994-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0047377935,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.02,0.0069570593,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.01,0.02,0.006487491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0060973214,0.0,0.0,0.0,0.05,0.04,0.01,0.009722223,0.01,0.0043317466 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1995-07-01T00:00:00Z,0.0,0.0,0.0,0.02,0.02,0.007432355,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.04,0.01,0.01,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0059664934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.04,0.01,0.0,0.0,0.0,0.09,0.06,0.02,0.01,0.01,0.004166667 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1996-07-01T00:00:00Z,0.004166667,0.01,0.0029905858,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.008238092,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.00401666,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.03,0.02,0.007349309,0.0,0.0,0.0,0.04,0.02,0.007630275,0.004166667,0.01,0.0029905858 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1997-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.0075377836,0.0021759707,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0069444445,0.008582144,0.0024774517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0,0.1,0.06,0.01,0.0027777778,0.009622505,0.0027777778 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1998-07-01T00:00:00Z,0.0,0.0,0.0,0.008333334,0.01,0.0048112525,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.01,0.02,0.005922242,0.0069444445,0.008582144,0.0024774517,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.07,0.04,0.01,0.0,0.0,0.0 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,1999-07-01T00:00:00Z,0.0,0.0,0.0,0.008333334,0.01,0.0038380516,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.01,0.01,0.0049549034,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.01,0.02,0.007349309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0049549034,0.0,0.0,0.0,0.12,0.05,0.01,0.0027777778,0.006487491,0.0018727774 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,2000-07-01T00:00:00Z,0.0,0.0,0.0,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.005162891,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.01,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0043317466,0.0,0.0,0.0,0.13,0.05,0.01,0.01,0.01,0.0047377935 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,2001-07-01T00:00:00Z,0.01,0.02,0.007396878,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.005162891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.28,0.17,0.05,0.0,0.0,0.0,0.06,0.04,0.01,0.004166667,0.0075377836,0.0021759707 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,2002-07-01T00:00:00Z,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.004587349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.05,0.01,0.0,0.0,0.0,0.13,0.06,0.01,0.01,0.01,0.004166667 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,2003-07-01T00:00:00Z,0.0,0.0,0.0,0.008333334,0.01,0.0048112525,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.008333334,0.01,0.0043519414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.04,0.01,0.0,0.0,0.0,0.11,0.04,0.01,0.01,0.01,0.004792993 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,2004-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.005025189,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0043317466,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.03,0.01,0.0,0.0,0.0,0.09,0.04,0.01,0.01,0.02,0.006309342 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0050772647,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.007432355,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.05,0.01,0.0,0.0,0.0,0.16,0.05,0.01,0.02,0.03,0.008814 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,2006-07-01T00:00:00Z,0.0,0.0,0.0,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.004644337,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11,0.05,0.01,0.0,0.0,0.0,0.14,0.08,0.02,0.04,0.07,0.02 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0035533453,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.008571921,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.05,0.01,0.0,0.0,0.0,0.12,0.05,0.01,0.01,0.01,0.004644337 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1983-07-01T00:00:00Z,0.11,0.26,0.08,0.03,0.02,0.008539125,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.18,0.05,0.11,0.07,0.02,0.0,0.0,0.0,0.0025,0.007905694,0.0025,0.005,0.01,0.0033333334,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14,0.05,0.01,0.09,0.05,0.01 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1984-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.02,0.008498366,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.07,0.02,0.1,0.07,0.02,0.01,0.02,0.0065085413,0.02,0.03,0.01,0.01,0.02,0.007637626,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0025,0.007905694,0.0025,0.0,0.0,0.0,0.07,0.04,0.01,0.04,0.04,0.01 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1985-07-01T00:00:00Z,0.0,0.0,0.0,0.009722223,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.08,0.02,0.06,0.07,0.02,0.33,0.29,0.08,0.09,0.12,0.03,0.02,0.02,0.0069570593,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.05,0.04,0.01,0.12,0.09,0.02 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1986-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.03,0.008814,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.04,0.01,0.02,0.02,0.007526142,0.4,0.24,0.07,0.16,0.22,0.06,0.03,0.03,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.008582144,0.0024774517,0.0,0.0,0.0,0.02,0.02,0.0069444445,0.06,0.04,0.01 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1987-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.01,0.02,0.008206099,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0042705894,0.02,0.02,0.0065947296,0.32,0.13,0.03,0.0,0.0,0.0,0.02,0.02,0.008238092,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.05,0.01,0.0,0.0,0.0,0.03,0.03,0.01,0.06,0.05,0.01 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1988-07-01T00:00:00Z,0.0055555557,0.01,0.0031337559,0.009722223,0.02,0.008322805,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0055555557,0.01,0.0042705894,0.17,0.05,0.01,0.0,0.0,0.0,0.01,0.01,0.004644337,NaN,NaN,NaN,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.14,0.07,0.02,0.0,0.0,0.0,0.06,0.06,0.01,0.04,0.02,0.006634497 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1989-07-01T00:00:00Z,0.0,0.0,0.0,0.0055555557,0.01,0.0037455547,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.03,0.03,0.009936315,0.25,0.13,0.03,0.0055555557,0.01,0.0042705894,0.0069444445,0.01,0.0032166007,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.05,0.01,0.0,0.0,0.0,0.04,0.03,0.008903082,0.1,0.04,0.01 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1990-07-01T00:00:00Z,0.0,0.0,0.0,0.009722223,0.02,0.0059664934,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0069444445,0.01,0.0032166007,0.19,0.06,0.01,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,NaN,NaN,NaN,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.29,0.21,0.06,0.0,0.0,0.0,0.08,0.05,0.01,0.06,0.08,0.02 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1991-07-01T00:00:00Z,0.0,0.0,0.0,0.04,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.03,0.008971757,0.0013888889,0.0048112525,0.0013888889,0.18,0.09,0.02,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.15,0.08,0.02,0.0,0.0,0.0,0.08,0.04,0.01,0.07,0.05,0.01 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1992-07-01T00:00:00Z,0.0,0.0,0.0,0.03,0.03,0.01,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.01,0.01,0.0045102453,0.008333334,0.01,0.0043519414,0.2,0.11,0.03,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.1,0.05,0.01,0.0,0.0,0.0,0.12,0.07,0.02,0.11,0.06,0.01 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1993-07-01T00:00:00Z,0.0,0.0,0.0,0.08,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0058477456,0.03,0.02,0.006309342,0.2,0.09,0.02,0.0,0.0,0.0,0.01,0.02,0.006634497,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.15,0.06,0.01,0.0,0.0,0.0,0.2,0.09,0.02,0.16,0.1,0.02 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1994-07-01T00:00:00Z,0.0,0.0,0.0,0.03,0.02,0.007432355,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0043317466,0.009722223,0.01,0.005602704,0.13,0.04,0.01,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.08,0.06,0.02,0.0,0.0,0.0,0.12,0.04,0.01,0.1,0.07,0.02 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1995-07-01T00:00:00Z,0.004166667,0.01,0.004166667,0.02,0.02,0.008291139,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0060973214,0.0055555557,0.008206099,0.0023688967,0.15,0.06,0.01,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.008734052,0.0,0.0,0.0,0.12,0.05,0.01,0.07,0.07,0.02 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1996-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0048112525,0.0027777778,0.006487491,0.0018727774,0.14,0.06,0.01,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006309342,0.0,0.0,0.0,0.13,0.04,0.01,0.06,0.05,0.01 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1997-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.01,0.03,0.009722223,0.14,0.05,0.01,0.0,0.0,0.0,0.0069444445,0.01,0.005602704,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.00913639,0.0,0.0,0.0,0.15,0.07,0.02,0.04,0.03,0.009585986 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1998-07-01T00:00:00Z,0.05,0.04,0.01,0.01,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.02,0.02,0.0075377836,0.1,0.04,0.01,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.008206099,0.0,0.0,0.0,0.2,0.07,0.02,0.07,0.05,0.01 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,1999-07-01T00:00:00Z,0.0,0.0,0.0,0.0069444445,0.008582144,0.0024774517,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.02,0.03,0.00927923,0.11,0.06,0.01,0.0,0.0,0.0,0.01,0.02,0.0071436088,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.006309342,0.0,0.0,0.0,0.22,0.06,0.01,0.08,0.07,0.02 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,2000-07-01T00:00:00Z,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0043317466,0.01,0.01,0.0052135917,0.09,0.04,0.01,0.0013888889,0.0048112525,0.0013888889,0.01,0.02,0.008417088,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.00894239,0.0,0.0,0.0,0.23,0.07,0.02,0.1,0.07,0.02 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,2001-07-01T00:00:00Z,0.0,0.0,0.0,0.02,0.01,0.0052135917,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.01,0.02,0.008541179,0.09,0.06,0.01,0.0,0.0,0.0,0.02,0.02,0.00803332,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.3,0.1,0.02,0.0,0.0,0.0,0.21,0.08,0.02,0.06,0.05,0.01 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,2002-07-01T00:00:00Z,0.0055555557,0.01,0.0031337559,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.01,0.02,0.0060973214,0.09,0.04,0.01,0.0,0.0,0.0,0.01,0.02,0.007630275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14,0.06,0.01,0.0,0.0,0.0,0.18,0.06,0.01,0.06,0.06,0.01 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,2003-07-01T00:00:00Z,0.0,0.0,0.0,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.03,0.03,0.01,0.07,0.04,0.01,0.0,0.0,0.0,0.008333334,0.01,0.0048112525,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.03,0.01,0.0,0.0,0.0,0.28,0.08,0.02,0.1,0.06,0.01 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,2004-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0057418267,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.004166667,0.01,0.0029905858,0.07,0.03,0.009203324,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.07,0.02,0.0,0.0,0.0,0.32,0.08,0.02,0.12,0.06,0.01 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.02,0.02,0.0079785595,0.05,0.02,0.0078007416,0.0,0.0,0.0,0.0055555557,0.01,0.0055555557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.07,0.02,0.0,0.0,0.0,0.33,0.14,0.04,0.15,0.11,0.03 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,2006-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.01,0.01,0.004587349,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.01,0.02,0.0064332015,0.05,0.03,0.009503308,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.19,0.11,0.03,0.0,0.0,0.0,0.26,0.1,0.02,0.15,0.11,0.03 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,2007-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.01,0.02,0.0058477456,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.03,0.03,0.01,0.05,0.02,0.008065999,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.15,0.04,0.0,0.0,0.0,0.41,0.1,0.02,0.18,0.13,0.03 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1983-07-01T00:00:00Z,0.02,0.03,0.01,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.12,1.22,0.38,0.01,0.02,0.007637626,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.06,0.02,0.02,0.02,0.008700255 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1984-07-01T00:00:00Z,0.05,0.05,0.01,0.0075,0.01,0.005335937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.0,0.0,0.0,0.78,0.8,0.25,0.02,0.02,0.0072648316,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.1,0.03,0.03,0.01,0.0062360954 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1985-07-01T00:00:00Z,0.009722223,0.01,0.004792993,0.01,0.02,0.005922242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.13,0.03,0.0055555557,0.01,0.0031337559,1.36,1.13,0.32,0.03,0.06,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.09,0.04,0.01,0.01,0.01,0.003453231 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1986-07-01T00:00:00Z,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.06,0.01,0.0013888889,0.0048112525,0.0013888889,2.7,1.42,0.41,0.04,0.04,0.01,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.09,0.05,0.01,0.05,0.05,0.01 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1987-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.02,0.01,0.005476073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.04,0.01,0.008333334,0.01,0.0043519414,0.35,0.28,0.08,0.06,0.08,0.02,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.03,0.01,0.0,0.0,0.0,0.11,0.03,0.01,0.05,0.02,0.0078007416 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1988-07-01T00:00:00Z,0.05,0.1,0.02,0.0055555557,0.01,0.0037455547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.03,0.03,0.008814,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.03,0.01,0.0,0.0,0.0,0.08,0.04,0.01,0.04,0.03,0.008814 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1989-07-01T00:00:00Z,0.0,0.0,0.0,0.0069444445,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0042705894,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.03,0.03,0.009803055,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.28,0.13,0.03,0.0,0.0,0.0,0.09,0.03,0.01,0.04,0.02,0.008582144 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1990-07-01T00:00:00Z,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.008582144,0.0024774517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11,0.06,0.01,0.0,0.0,0.0,0.13,0.08,0.02,0.04,0.03,0.008823942 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1991-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.04,0.01,0.0,0.0,0.0,0.1,0.05,0.01,0.04,0.01,0.005476073 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1992-07-01T00:00:00Z,0.0027777778,0.009622505,0.0027777778,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0042705894,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.009503308,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.02,0.02,0.00803332,0.0,0.0,0.0,0.14,0.07,0.02,0.06,0.06,0.01 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1993-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0057418267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0060973214,0.0,0.0,0.0,0.14,0.06,0.01,0.03,0.03,0.009936315 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1994-07-01T00:00:00Z,0.008333334,0.01,0.0038380516,0.01,0.02,0.007396878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.16,0.04,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.02,0.02,0.0071436088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0050772647,0.0,0.0,0.0,0.19,0.05,0.01,0.03,0.03,0.008734052 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1995-07-01T00:00:00Z,0.0,0.0,0.0,0.0069444445,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.23,0.06,0.0013888889,0.0048112525,0.0013888889,0.0055555557,0.01,0.0037455547,0.01,0.02,0.007396878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.008489694,0.0,0.0,0.0,0.17,0.07,0.02,0.04,0.02,0.0071436088 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1996-07-01T00:00:00Z,0.01,0.02,0.008417088,0.008333334,0.01,0.0048112525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.08,0.02,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.01,0.02,0.008065999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0059664934,0.0,0.0,0.0,0.1,0.05,0.01,0.03,0.02,0.007349309 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1997-07-01T00:00:00Z,0.01,0.02,0.0065947296,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.008541179,0.0,0.0,0.0,0.07,0.08,0.02,0.01,0.01,0.0037455547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.0038151375,0.0,0.0,0.0,0.17,0.06,0.01,0.05,0.03,0.01 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1998-07-01T00:00:00Z,0.0069444445,0.01,0.0032166007,0.009722223,0.02,0.0069444445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0071436088,0.0027777778,0.006487491,0.0018727774,0.69,0.72,0.2,0.01,0.02,0.007057166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17,0.08,0.02,0.03,0.02,0.00803332 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,1999-07-01T00:00:00Z,0.01,0.01,0.0042705894,0.01,0.02,0.0058477456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0052135917,0.0,0.0,0.0,0.82,0.75,0.21,0.01,0.02,0.008417088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.15,0.04,0.01,0.05,0.02,0.008322805 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,2000-07-01T00:00:00Z,0.0027777778,0.006487491,0.0018727774,0.0069444445,0.01,0.0038151375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0013888889,0.0048112525,0.0013888889,0.11,0.08,0.02,0.02,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.04,0.01,0.0,0.0,0.0,0.07,0.04,0.01,0.03,0.02,0.0059664934 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,2001-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0045102453,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17,0.04,0.01,0.0,0.0,0.0,0.07,0.04,0.01,0.03,0.03,0.00927923 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,2002-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.13,0.03,0.0,0.0,0.0,0.07,0.04,0.01,0.07,0.03,0.01 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,2003-07-01T00:00:00Z,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0062675118,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.05,0.01,0.0,0.0,0.0,0.11,0.05,0.01,0.05,0.02,0.007526142 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,2004-07-01T00:00:00Z,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.02,0.0059664934,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.02,0.02,0.0071436088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.05,0.01,0.0,0.0,0.0,0.09,0.05,0.01,0.04,0.02,0.0078007416 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0055555557,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.005602704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.06,0.01,0.0,0.0,0.0,0.14,0.07,0.02,0.03,0.01,0.003453231 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,2006-07-01T00:00:00Z,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.0050772647,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.07,0.02,0.0,0.0,0.0,0.13,0.05,0.01,0.04,0.02,0.007241137 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,2007-07-01T00:00:00Z,0.0055555557,0.01,0.0031337559,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.07,0.02,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.03,0.00927923,0.0,0.0,0.0,0.25,0.1,0.02,0.06,0.03,0.009803055 + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,2005-07-01T00:00:00Z,0.0027777778,0.009622505,0.0027777778,0.01,0.02,0.0059664934,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.06,0.01,0.02,0.03,0.009429206,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.004166667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.04,0.01,0.0,0.0,0.0,0.15,0.08,0.02,0.03,0.03,0.01 + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,2006-07-01T00:00:00Z,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.08,0.02,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.009865467,0.0,0.0,0.0,0.13,0.06,0.01,0.04,0.03,0.009049605 + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.04,0.01,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.004166667,0.01,0.004166667,0.1,0.04,0.01,0.02,0.02,0.0071436088 + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1983-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1984-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1985-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1986-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1987-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1988-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1989-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1990-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1991-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1992-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1993-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1994-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1995-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1996-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1997-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1998-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,1999-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,2000-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,2001-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,2002-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,2003-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,2004-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,2005-07-01T00:00:00Z,0.0,0.0,0.0,0.02,0.01,0.0050772647,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0055555557,0.01,0.0031337559,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.03,0.02,0.0078007416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.03,0.01,0.0,0.0,0.0,0.19,0.08,0.02,0.09,0.04,0.01 + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,2006-07-01T00:00:00Z,0.0,0.0,0.0,0.02,0.01,0.0047377935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.0077102953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.005476073,0.0,0.0,0.0,0.21,0.07,0.02,0.11,0.02,0.007901257 + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.05,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0069444445,0.01,0.0038151375,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.04,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.21,0.12,0.03,0.06,0.04,0.01 + recorded_at: 2020-07-15 22:22:26 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:38 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=erdCinpKfmBT_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "acknowledgement", "String", "NOAA NESDIS COASTWATCH, NOAA SWFSC ERD, Channel Islands National Park, National Park Service"], + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "TimeSeries"], + ["attribute", "NC_GLOBAL", "cdm_timeseries_variables", "String", "station, longitude, latitude"], + ["attribute", "NC_GLOBAL", "contributor_email", "String", "David_Kushner@nps.gov"], + ["attribute", "NC_GLOBAL", "contributor_name", "String", "Channel Islands National Park, National Park Service"], + ["attribute", "NC_GLOBAL", "contributor_role", "String", "Source of data."], + ["attribute", "NC_GLOBAL", "Conventions", "String", "COARDS, CF-1.6, ACDD-1.3, NCCSV-1.0"], + ["attribute", "NC_GLOBAL", "creator_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "creator_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "date_created", "String", "2008-06-11T21:36:06Z"], + ["attribute", "NC_GLOBAL", "date_issued", "String", "2008-06-11T21:36:06Z"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "-118.4"], + ["attribute", "NC_GLOBAL", "featureType", "String", "TimeSeries"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "34.05"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "32.8"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "-118.4"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "-120.4"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_max", "double", "17.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_min", "double", "5.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_positive", "String", "down"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_units", "String", "m"], + ["attribute", "NC_GLOBAL", "history", "String", "Channel Islands National Park, National Park Service\n2008-06-11T21:36:06Z NOAA CoastWatch (West Coast Node) and NOAA SFSC ERD"], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "http://www.nps.gov/chis/naturescience/index.htm"], + ["attribute", "NC_GLOBAL", "institution", "String", "CINP"], + ["attribute", "NC_GLOBAL", "keywords", "String", "anamesus, aplysia, aquatic, atmosphere, aurantia, band, biology, biosphere, californica, channel, chilensis, cinp, coastal, corrugata, crassedoma, crenulata, density, depth, Earth Science > Biosphere > Aquatic Ecosystems > Coastal Habitat, Earth Science > Biosphere > Aquatic Ecosystems > Marine Habitat, ecosystems, forest, fruticosa, fulgens, giganteum, habitat, haliotis, height, helianthoides, identifier, interruptus, islands, kelletia, kelletii, kelp, lofotensis, lophogorgia, lytechinus, marine, mean, megathura, monitoring, muricea, panulirus, pycnopodia, rufescens, station, statistics, stddev, stderr, stylaster, survey, tethya, time, transect, urticina"], + ["attribute", "NC_GLOBAL", "keywords_vocabulary", "String", "GCMD Science Keywords"], + ["attribute", "NC_GLOBAL", "license", "String", "The data may be used and redistributed for free but is not intended for legal use, since it may contain inaccuracies. Neither the data Contributor, CoastWatch, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, of this information. National Park Service Disclaimer: The National Park Service shall not be held liable for improper or incorrect use of the data described and/or contained herein. These data and related graphics are not legal documents and are not intended to be used as such. The information contained in these data is dynamic and may change over time. The data are not better than the original sources from which they were derived. It is the responsibility of the data user to use the data appropriately and consistent within the limitation of geospatial data in general and these data in particular. The related graphics are intended to aid the data user in acquiring relevant data; it is not appropriate to use the related graphics as data. The National Park Service gives no warranty, expressed or implied, as to the accuracy, reliability, or completeness of these data. It is strongly recommended that these data are directly acquired from an NPS server and not indirectly through other sources which may have changed the data in some way. Although these data have been processed successfully on computer systems at the National Park Service, no warranty expressed or implied is made regarding the utility of the data on other systems for general or scientific purposes, nor shall the act of distribution constitute any such warranty. This disclaimer applies both to individual use of the data and aggregate use with other data."], + ["attribute", "NC_GLOBAL", "naming_authority", "String", "gov.noaa.pfeg.coastwatch"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "34.05"], + ["attribute", "NC_GLOBAL", "project", "String", "NOAA NMFS SWFSC ERD (https://www.pfeg.noaa.gov/)"], + ["attribute", "NC_GLOBAL", "references", "String", "Channel Islands National Parks Inventory and Monitoring information: http://nature.nps.gov/im/units/medn . Kelp Forest Monitoring Protocols: http://www.nature.nps.gov/im/units/chis/Reports_PDF/Marine/KFM-HandbookVol1.pdf ."], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "(local files)"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "32.8"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v70"], + ["attribute", "NC_GLOBAL", "subsetVariables", "String", "station, longitude, latitude"], + ["attribute", "NC_GLOBAL", "summary", "String", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth."], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2007-07-01T00:00:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "1983-07-01T00:00:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "-120.4"], + ["variable", "station", "", "String", ""], + ["attribute", "station", "cf_role", "String", "timeseries_id"], + ["attribute", "station", "ioos_category", "String", "Identifier"], + ["attribute", "station", "long_name", "String", "Station"], + ["variable", "longitude", "", "double", ""], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "double", "-120.4, -118.4"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "colorBarMaximum", "double", "-118.4"], + ["attribute", "longitude", "colorBarMinimum", "double", "-120.4"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "latitude", "", "double", ""], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "double", "32.8, 34.05"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "colorBarMaximum", "double", "34.5"], + ["attribute", "latitude", "colorBarMinimum", "double", "32.5"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["variable", "depth", "", "double", ""], + ["attribute", "depth", "_CoordinateAxisType", "String", "Height"], + ["attribute", "depth", "_CoordinateZisPositive", "String", "down"], + ["attribute", "depth", "actual_range", "double", "5.0, 17.0"], + ["attribute", "depth", "axis", "String", "Z"], + ["attribute", "depth", "colorBarMaximum", "double", "20.0"], + ["attribute", "depth", "colorBarMinimum", "double", "0.0"], + ["attribute", "depth", "ioos_category", "String", "Location"], + ["attribute", "depth", "long_name", "String", "Depth"], + ["attribute", "depth", "positive", "String", "down"], + ["attribute", "depth", "standard_name", "String", "depth"], + ["attribute", "depth", "units", "String", "m"], + ["variable", "time", "", "double", ""], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "4.258656E8, 1.183248E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "colorBarMaximum", "double", "1.183248E9"], + ["attribute", "time", "colorBarMinimum", "double", "4.258656E8"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Time"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["variable", "Aplysia_californica_Mean_Density", "", "float", ""], + ["attribute", "Aplysia_californica_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Aplysia_californica_Mean_Density", "actual_range", "float", "0.0, 0.95"], + ["attribute", "Aplysia_californica_Mean_Density", "comment", "String", "Common name: California brown sea hare"], + ["attribute", "Aplysia_californica_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Aplysia_californica_Mean_Density", "long_name", "String", "Aplysia californica Mean Density"], + ["attribute", "Aplysia_californica_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Aplysia_californica_Mean_Density", "units", "String", "m-2"], + ["variable", "Aplysia_californica_StdDev", "", "float", ""], + ["attribute", "Aplysia_californica_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Aplysia_californica_StdDev", "actual_range", "float", "0.0, 0.35"], + ["attribute", "Aplysia_californica_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Aplysia_californica_StdDev", "long_name", "String", "Aplysia californica StdDev"], + ["attribute", "Aplysia_californica_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Aplysia_californica_StdErr", "", "float", ""], + ["attribute", "Aplysia_californica_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Aplysia_californica_StdErr", "actual_range", "float", "0.0, 0.1"], + ["attribute", "Aplysia_californica_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Aplysia_californica_StdErr", "long_name", "String", "Aplysia californica StdErr"], + ["attribute", "Aplysia_californica_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Crassedoma_giganteum_Mean_Density", "", "float", ""], + ["attribute", "Crassedoma_giganteum_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "actual_range", "float", "0.0, 0.92"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "comment", "String", "Common name: Rock scallop"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "long_name", "String", "Crassedoma giganteum Mean Density"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "units", "String", "m-2"], + ["variable", "Crassedoma_giganteum_StdDev", "", "float", ""], + ["attribute", "Crassedoma_giganteum_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Crassedoma_giganteum_StdDev", "actual_range", "float", "0.0, 0.71"], + ["attribute", "Crassedoma_giganteum_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Crassedoma_giganteum_StdDev", "long_name", "String", "Crassedoma giganteum StdDev"], + ["attribute", "Crassedoma_giganteum_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Crassedoma_giganteum_StdErr", "", "float", ""], + ["attribute", "Crassedoma_giganteum_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Crassedoma_giganteum_StdErr", "actual_range", "float", "0.0, 0.2"], + ["attribute", "Crassedoma_giganteum_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Crassedoma_giganteum_StdErr", "long_name", "String", "Crassedoma giganteum StdErr"], + ["attribute", "Crassedoma_giganteum_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_corrugata_Mean_Density", "", "float", ""], + ["attribute", "Haliotis_corrugata_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_corrugata_Mean_Density", "actual_range", "float", "0.0, 0.18"], + ["attribute", "Haliotis_corrugata_Mean_Density", "comment", "String", "Common name: Pink abalone"], + ["attribute", "Haliotis_corrugata_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Haliotis_corrugata_Mean_Density", "long_name", "String", "Haliotis corrugata Mean Density"], + ["attribute", "Haliotis_corrugata_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Haliotis_corrugata_Mean_Density", "units", "String", "m-2"], + ["variable", "Haliotis_corrugata_StdDev", "", "float", ""], + ["attribute", "Haliotis_corrugata_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_corrugata_StdDev", "actual_range", "float", "0.0, 0.1"], + ["attribute", "Haliotis_corrugata_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_corrugata_StdDev", "long_name", "String", "Haliotis corrugata StdDev"], + ["attribute", "Haliotis_corrugata_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_corrugata_StdErr", "", "float", ""], + ["attribute", "Haliotis_corrugata_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_corrugata_StdErr", "actual_range", "float", "0.0, 0.03"], + ["attribute", "Haliotis_corrugata_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_corrugata_StdErr", "long_name", "String", "Haliotis corrugata StdErr"], + ["attribute", "Haliotis_corrugata_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_fulgens_Mean_Density", "", "float", ""], + ["attribute", "Haliotis_fulgens_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_fulgens_Mean_Density", "actual_range", "float", "0.0, 0.005555556"], + ["attribute", "Haliotis_fulgens_Mean_Density", "comment", "String", "Common name: Green abalone"], + ["attribute", "Haliotis_fulgens_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Haliotis_fulgens_Mean_Density", "long_name", "String", "Haliotis fulgens Mean Density"], + ["attribute", "Haliotis_fulgens_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Haliotis_fulgens_Mean_Density", "units", "String", "m-2"], + ["variable", "Haliotis_fulgens_StdDev", "", "float", ""], + ["attribute", "Haliotis_fulgens_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_fulgens_StdDev", "actual_range", "float", "0.0, 0.008206099"], + ["attribute", "Haliotis_fulgens_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_fulgens_StdDev", "long_name", "String", "Haliotis fulgens StdDev"], + ["attribute", "Haliotis_fulgens_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_fulgens_StdErr", "", "float", ""], + ["attribute", "Haliotis_fulgens_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_fulgens_StdErr", "actual_range", "float", "0.0, 0.002368897"], + ["attribute", "Haliotis_fulgens_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_fulgens_StdErr", "long_name", "String", "Haliotis fulgens StdErr"], + ["attribute", "Haliotis_fulgens_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_rufescens_Mean_Density", "", "float", ""], + ["attribute", "Haliotis_rufescens_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_rufescens_Mean_Density", "actual_range", "float", "0.0, 0.99"], + ["attribute", "Haliotis_rufescens_Mean_Density", "comment", "String", "Common name: Red abalone"], + ["attribute", "Haliotis_rufescens_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Haliotis_rufescens_Mean_Density", "long_name", "String", "Haliotis rufescens Mean Density"], + ["attribute", "Haliotis_rufescens_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Haliotis_rufescens_Mean_Density", "units", "String", "m-2"], + ["variable", "Haliotis_rufescens_StdDev", "", "float", ""], + ["attribute", "Haliotis_rufescens_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_rufescens_StdDev", "actual_range", "float", "0.0, 0.6"], + ["attribute", "Haliotis_rufescens_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_rufescens_StdDev", "long_name", "String", "Haliotis rufescens StdDev"], + ["attribute", "Haliotis_rufescens_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_rufescens_StdErr", "", "float", ""], + ["attribute", "Haliotis_rufescens_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_rufescens_StdErr", "actual_range", "float", "0.0, 0.17"], + ["attribute", "Haliotis_rufescens_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_rufescens_StdErr", "long_name", "String", "Haliotis rufescens StdErr"], + ["attribute", "Haliotis_rufescens_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Kelletia_kelletii_Mean_Density", "", "float", ""], + ["attribute", "Kelletia_kelletii_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Kelletia_kelletii_Mean_Density", "actual_range", "float", "0.0, 0.55"], + ["attribute", "Kelletia_kelletii_Mean_Density", "comment", "String", "Common name: Kellet's whelk"], + ["attribute", "Kelletia_kelletii_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Kelletia_kelletii_Mean_Density", "long_name", "String", "Kelletia kelletii Mean Density"], + ["attribute", "Kelletia_kelletii_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Kelletia_kelletii_Mean_Density", "units", "String", "m-2"], + ["variable", "Kelletia_kelletii_StdDev", "", "float", ""], + ["attribute", "Kelletia_kelletii_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Kelletia_kelletii_StdDev", "actual_range", "float", "0.0, 0.29"], + ["attribute", "Kelletia_kelletii_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Kelletia_kelletii_StdDev", "long_name", "String", "Kelletia kelletii StdDev"], + ["attribute", "Kelletia_kelletii_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Kelletia_kelletii_StdErr", "", "float", ""], + ["attribute", "Kelletia_kelletii_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Kelletia_kelletii_StdErr", "actual_range", "float", "0.0, 0.08"], + ["attribute", "Kelletia_kelletii_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Kelletia_kelletii_StdErr", "long_name", "String", "Kelletia kelletii StdErr"], + ["attribute", "Kelletia_kelletii_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Lophogorgia_chilensis_Mean_Density", "", "float", ""], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "actual_range", "float", "0.0, 0.7"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "comment", "String", "Common name: Red gorgonian"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "long_name", "String", "Lophogorgia chilensis Mean Density"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "units", "String", "m-2"], + ["variable", "Lophogorgia_chilensis_StdDev", "", "float", ""], + ["attribute", "Lophogorgia_chilensis_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lophogorgia_chilensis_StdDev", "actual_range", "float", "0.0, 0.44"], + ["attribute", "Lophogorgia_chilensis_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Lophogorgia_chilensis_StdDev", "long_name", "String", "Lophogorgia chilensis StdDev"], + ["attribute", "Lophogorgia_chilensis_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Lophogorgia_chilensis_StdErr", "", "float", ""], + ["attribute", "Lophogorgia_chilensis_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lophogorgia_chilensis_StdErr", "actual_range", "float", "0.0, 0.12"], + ["attribute", "Lophogorgia_chilensis_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Lophogorgia_chilensis_StdErr", "long_name", "String", "Lophogorgia chilensis StdErr"], + ["attribute", "Lophogorgia_chilensis_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Lytechinus_anamesus_Mean_Density", "", "float", ""], + ["attribute", "Lytechinus_anamesus_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "actual_range", "float", "0.0, 22.45"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "comment", "String", "Common name: White sea urchin"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "long_name", "String", "Lytechinus anamesus Mean Density"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "units", "String", "m-2"], + ["variable", "Lytechinus_anamesus_StdDev", "", "float", ""], + ["attribute", "Lytechinus_anamesus_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lytechinus_anamesus_StdDev", "actual_range", "float", "0.0, 9.2"], + ["attribute", "Lytechinus_anamesus_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Lytechinus_anamesus_StdDev", "long_name", "String", "Lytechinus anamesus StdDev"], + ["attribute", "Lytechinus_anamesus_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Lytechinus_anamesus_StdErr", "", "float", ""], + ["attribute", "Lytechinus_anamesus_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lytechinus_anamesus_StdErr", "actual_range", "float", "0.0, 2.65"], + ["attribute", "Lytechinus_anamesus_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Lytechinus_anamesus_StdErr", "long_name", "String", "Lytechinus anamesus StdErr"], + ["attribute", "Lytechinus_anamesus_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Megathura_crenulata_Mean_Density", "", "float", ""], + ["attribute", "Megathura_crenulata_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Megathura_crenulata_Mean_Density", "actual_range", "float", "0.0, 0.5"], + ["attribute", "Megathura_crenulata_Mean_Density", "comment", "String", "Common name: Giant keyhole limpet"], + ["attribute", "Megathura_crenulata_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Megathura_crenulata_Mean_Density", "long_name", "String", "Megathura crenulata Mean Density"], + ["attribute", "Megathura_crenulata_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Megathura_crenulata_Mean_Density", "units", "String", "m-2"], + ["variable", "Megathura_crenulata_StdDev", "", "float", ""], + ["attribute", "Megathura_crenulata_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Megathura_crenulata_StdDev", "actual_range", "float", "0.0, 0.22"], + ["attribute", "Megathura_crenulata_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Megathura_crenulata_StdDev", "long_name", "String", "Megathura crenulata StdDev"], + ["attribute", "Megathura_crenulata_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Megathura_crenulata_StdErr", "", "float", ""], + ["attribute", "Megathura_crenulata_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Megathura_crenulata_StdErr", "actual_range", "float", "0.0, 0.07"], + ["attribute", "Megathura_crenulata_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Megathura_crenulata_StdErr", "long_name", "String", "Megathura crenulata StdErr"], + ["attribute", "Megathura_crenulata_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Muricea_californica_Mean_Density", "", "float", ""], + ["attribute", "Muricea_californica_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_californica_Mean_Density", "actual_range", "float", "0.0, 0.31"], + ["attribute", "Muricea_californica_Mean_Density", "comment", "String", "Common name: California golden gorgonian"], + ["attribute", "Muricea_californica_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Muricea_californica_Mean_Density", "long_name", "String", "Muricea californica Mean Density"], + ["attribute", "Muricea_californica_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Muricea_californica_Mean_Density", "units", "String", "m-2"], + ["variable", "Muricea_californica_StdDev", "", "float", ""], + ["attribute", "Muricea_californica_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_californica_StdDev", "actual_range", "float", "0.0, 0.16"], + ["attribute", "Muricea_californica_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Muricea_californica_StdDev", "long_name", "String", "Muricea californica StdDev"], + ["attribute", "Muricea_californica_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Muricea_californica_StdErr", "", "float", ""], + ["attribute", "Muricea_californica_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_californica_StdErr", "actual_range", "float", "0.0, 0.04"], + ["attribute", "Muricea_californica_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Muricea_californica_StdErr", "long_name", "String", "Muricea californica StdErr"], + ["attribute", "Muricea_californica_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Muricea_fruticosa_Mean_Density", "", "float", ""], + ["attribute", "Muricea_fruticosa_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_fruticosa_Mean_Density", "actual_range", "float", "0.0, 0.04"], + ["attribute", "Muricea_fruticosa_Mean_Density", "comment", "String", "Common name: Brown gorgonian"], + ["attribute", "Muricea_fruticosa_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Muricea_fruticosa_Mean_Density", "long_name", "String", "Muricea fruticosa Mean Density"], + ["attribute", "Muricea_fruticosa_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Muricea_fruticosa_Mean_Density", "units", "String", "m-2"], + ["variable", "Muricea_fruticosa_StdDev", "", "float", ""], + ["attribute", "Muricea_fruticosa_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_fruticosa_StdDev", "actual_range", "float", "0.0, 0.09"], + ["attribute", "Muricea_fruticosa_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Muricea_fruticosa_StdDev", "long_name", "String", "Muricea fruticosa StdDev"], + ["attribute", "Muricea_fruticosa_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Muricea_fruticosa_StdErr", "", "float", ""], + ["attribute", "Muricea_fruticosa_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_fruticosa_StdErr", "actual_range", "float", "0.0, 0.02"], + ["attribute", "Muricea_fruticosa_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Muricea_fruticosa_StdErr", "long_name", "String", "Muricea fruticosa StdErr"], + ["attribute", "Muricea_fruticosa_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Panulirus_interruptus_Mean_Density", "", "float", ""], + ["attribute", "Panulirus_interruptus_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Panulirus_interruptus_Mean_Density", "actual_range", "float", "0.0, 0.11"], + ["attribute", "Panulirus_interruptus_Mean_Density", "comment", "String", "Common name: California spiny lobster"], + ["attribute", "Panulirus_interruptus_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Panulirus_interruptus_Mean_Density", "long_name", "String", "Panulirus interruptus Mean Density"], + ["attribute", "Panulirus_interruptus_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Panulirus_interruptus_Mean_Density", "units", "String", "m-2"], + ["variable", "Panulirus_interruptus_StdDev", "", "float", ""], + ["attribute", "Panulirus_interruptus_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Panulirus_interruptus_StdDev", "actual_range", "float", "0.0, 0.32"], + ["attribute", "Panulirus_interruptus_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Panulirus_interruptus_StdDev", "long_name", "String", "Panulirus interruptus StdDev"], + ["attribute", "Panulirus_interruptus_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Panulirus_interruptus_StdErr", "", "float", ""], + ["attribute", "Panulirus_interruptus_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Panulirus_interruptus_StdErr", "actual_range", "float", "0.0, 0.09"], + ["attribute", "Panulirus_interruptus_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Panulirus_interruptus_StdErr", "long_name", "String", "Panulirus interruptus StdErr"], + ["attribute", "Panulirus_interruptus_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Pycnopodia_helianthoides_Mean_Density", "", "float", ""], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "actual_range", "float", "0.0, 0.33"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "comment", "String", "Common name: Sunflower star"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "long_name", "String", "Pycnopodia helianthoides Mean Density"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "units", "String", "m-2"], + ["variable", "Pycnopodia_helianthoides_StdDev", "", "float", ""], + ["attribute", "Pycnopodia_helianthoides_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Pycnopodia_helianthoides_StdDev", "actual_range", "float", "0.0, 0.21"], + ["attribute", "Pycnopodia_helianthoides_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Pycnopodia_helianthoides_StdDev", "long_name", "String", "Pycnopodia helianthoides StdDev"], + ["attribute", "Pycnopodia_helianthoides_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Pycnopodia_helianthoides_StdErr", "", "float", ""], + ["attribute", "Pycnopodia_helianthoides_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Pycnopodia_helianthoides_StdErr", "actual_range", "float", "0.0, 0.06"], + ["attribute", "Pycnopodia_helianthoides_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Pycnopodia_helianthoides_StdErr", "long_name", "String", "Pycnopodia helianthoides StdErr"], + ["attribute", "Pycnopodia_helianthoides_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Stylaster_californica_Mean_Density", "", "float", ""], + ["attribute", "Stylaster_californica_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Stylaster_californica_Mean_Density", "actual_range", "float", "0.0, 0.13"], + ["attribute", "Stylaster_californica_Mean_Density", "comment", "String", "Common name: California hydrocoral"], + ["attribute", "Stylaster_californica_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Stylaster_californica_Mean_Density", "long_name", "String", "Stylaster californica Mean Density"], + ["attribute", "Stylaster_californica_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Stylaster_californica_Mean_Density", "units", "String", "m-2"], + ["variable", "Stylaster_californica_StdDev", "", "float", ""], + ["attribute", "Stylaster_californica_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Stylaster_californica_StdDev", "actual_range", "float", "0.0, 0.18"], + ["attribute", "Stylaster_californica_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Stylaster_californica_StdDev", "long_name", "String", "Stylaster californica StdDev"], + ["attribute", "Stylaster_californica_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Stylaster_californica_StdErr", "", "float", ""], + ["attribute", "Stylaster_californica_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Stylaster_californica_StdErr", "actual_range", "float", "0.0, 0.05"], + ["attribute", "Stylaster_californica_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Stylaster_californica_StdErr", "long_name", "String", "Stylaster californica StdErr"], + ["attribute", "Stylaster_californica_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Tethya_aurantia_Mean_Density", "", "float", ""], + ["attribute", "Tethya_aurantia_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Tethya_aurantia_Mean_Density", "actual_range", "float", "0.0, 0.41"], + ["attribute", "Tethya_aurantia_Mean_Density", "comment", "String", "Common name: Orange puffball sponge"], + ["attribute", "Tethya_aurantia_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Tethya_aurantia_Mean_Density", "long_name", "String", "Tethya aurantia Mean Density"], + ["attribute", "Tethya_aurantia_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Tethya_aurantia_Mean_Density", "units", "String", "m-2"], + ["variable", "Tethya_aurantia_StdDev", "", "float", ""], + ["attribute", "Tethya_aurantia_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Tethya_aurantia_StdDev", "actual_range", "float", "0.0, 0.18"], + ["attribute", "Tethya_aurantia_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Tethya_aurantia_StdDev", "long_name", "String", "Tethya aurantia StdDev"], + ["attribute", "Tethya_aurantia_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Tethya_aurantia_StdErr", "", "float", ""], + ["attribute", "Tethya_aurantia_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Tethya_aurantia_StdErr", "actual_range", "float", "0.0, 0.05"], + ["attribute", "Tethya_aurantia_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Tethya_aurantia_StdErr", "long_name", "String", "Tethya aurantia StdErr"], + ["attribute", "Tethya_aurantia_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Urticina_lofotensis_Mean_Density", "", "float", ""], + ["attribute", "Urticina_lofotensis_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Urticina_lofotensis_Mean_Density", "actual_range", "float", "0.0, 0.39"], + ["attribute", "Urticina_lofotensis_Mean_Density", "comment", "String", "Common name: White-spotted rose anemone"], + ["attribute", "Urticina_lofotensis_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Urticina_lofotensis_Mean_Density", "long_name", "String", "Urticina lofotensis Mean Density"], + ["attribute", "Urticina_lofotensis_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Urticina_lofotensis_Mean_Density", "units", "String", "m-2"], + ["variable", "Urticina_lofotensis_StdDev", "", "float", ""], + ["attribute", "Urticina_lofotensis_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Urticina_lofotensis_StdDev", "actual_range", "float", "0.0, 0.28"], + ["attribute", "Urticina_lofotensis_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Urticina_lofotensis_StdDev", "long_name", "String", "Urticina lofotensis StdDev"], + ["attribute", "Urticina_lofotensis_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Urticina_lofotensis_StdErr", "", "float", ""], + ["attribute", "Urticina_lofotensis_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Urticina_lofotensis_StdErr", "actual_range", "float", "0.0, 0.08"], + ["attribute", "Urticina_lofotensis_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Urticina_lofotensis_StdErr", "long_name", "String", "Urticina lofotensis StdErr"], + ["attribute", "Urticina_lofotensis_StdErr", "missing_value", "float", "-9999999.0"] + ] + } + } + recorded_at: 2020-07-15 22:22:26 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:38 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:22:38 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://upwell.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012.graph", "", "", "public", "AIS Ship Traffic: Hawaii: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_hi_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_hi_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_hi_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_hi_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_hi_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_hi_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012.graph", "", "", "public", "AIS Ship Traffic: Johnston Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Johnston Atoll. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_john_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_john_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_john_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_john_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_john_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_john_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012.graph", "", "", "public", "AIS Ship Traffic: Mariana and Wake: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Mariana Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_mari_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_mari_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_mari_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_mari_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_mari_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_mari_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012.graph", "", "", "public", "AIS Ship Traffic: Rose Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Rose Atoll in American Samoa. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_rose_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_rose_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_rose_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_rose_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_rose_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_rose_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom for the most recent 7 days.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_temp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_temp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_temp/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_temp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_temp&showErrors=false&email=", "University of Hawaii", "aco_adcp_temp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Velocity", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean current velocity at the ACO from a 250 kHz SonTek acoustic doppler current profiler (ADCP) at 1.83 m above the ocean bottom for the most recent 7 days. Velocities are flagged bad if the amplitude is excessively low or high. An amplitude is high if it exceeds the average of the ping before and the ping after by 20 counts. An amplitude is low if less than 6 counts. After this the velocities are flagged bad if the absolute deviation of the vertical velocity from its ensemble median exceeds 0.15 m/s or if its value is less than -0.25 m/s.\n\ncdm_data_type = Profile\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each location, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\neastward_sea_water_velocity (current east component, meters/second)\nnorthward_sea_water_velocity (current north component, meters/second)\nupward_sea_water_velocity (current upward component, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_vel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_vel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_vel/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_vel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_vel&showErrors=false&email=", "University of Hawaii", "aco_adcp_vel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://upwell.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF.graph", "", "", "public", "CRRF Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-CRRF: CRRF Weather Station: Palau: Koror: Ngeanges Island)\nair_temperature (Celsius)\nair_temperature_max (maximum air temperature, Celsius)\nair_temperature_max_time (maximum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (minimum air temperature, Celsius)\nair_temperature_min_time (minimum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_std (air temperature standard deviation, Celsius)\nwind_speed (m/s)\nwind_speed_max (gust speed, m/s)\nwind_speed_max_time (gust speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (minimum wind speed, m/s)\nwind_speed_min_time (minimum wind speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_std (wind speed standard deviation, m/s)\nwind_from_direction (wind direction, degrees)\nwind_from_direction_std (wind direction standard deviation, degrees)\nrainfall_amount (total rainfall, mm)\n... (23 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-CRRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-CRRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-CRRF/index.json", "https://www.pacioos.hawaii.edu/weather/obs-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-CRRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-CRRF&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "AWS-CRRF"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_1000genomes/", "public", "File Names from the AWS S3 1000genomes Bucket: 1000 Genomes", "This dataset has file information from the AWS S3 1000genomes bucket at https://1000genomes.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 1000 Genomes\nName2: http://www.internationalgenome.org/formats\nDescription: The 1000 Genomes Project is an international collaboration which has established the most detailed catalogue of human genetic variation, including SNPs, structural variants, and their haplotype context. The final phase of the project sequenced more than 2500 individuals from 26 different populations around the world and produced an integrated set of phased haplotypes with more than 80 million variants for these individuals.\n\nDocumentation: https://docs.opendata.aws/1000genomes/readme.html\nContact: http://www.internationalgenome.org/contact\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_1000genomes/index.json", "https://registry.opendata.aws/1000-genomes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_1000genomes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_1000genomes&showErrors=false&email=", "Amazon Web Services", "awsS3Files_1000genomes"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_3kricegenome/", "public", "File Names from the AWS S3 3kricegenome Bucket: 3000 Rice Genomes Project", "This dataset has file information from the AWS S3 3kricegenome bucket at https://3kricegenome.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 3000 Rice Genomes Project\nName2: http://s3.amazonaws.com/3kricegenome/README-snp_pipeline.txt\nDescription: The 3000 Rice Genome Project is an international effort to sequence the genomes of 3,024 rice varieties from 89 countries.\n\nDocumentation: https://docs.opendata.aws/3kricegenome/readme.html\nContact: http://iric.irri.org/contact-us\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_3kricegenome/index.json", "https://registry.opendata.aws/3kricegenome/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_3kricegenome.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_3kricegenome&showErrors=false&email=", "Amazon Web Services", "awsS3Files_3kricegenome"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aft_vbi_pds/", "public", "File Names from the AWS S3 aft-vbi-pds Bucket: Amazon Bin Image Dataset: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.", "This dataset has file information from the AWS S3 aft-vbi-pds bucket at https://aft-vbi-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Bin Image Dataset\nName2: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.\nDescription: The Amazon Bin Image Dataset contains over 500,000 images and metadata from bins of a pod in an operating Amazon Fulfillment Center. The bin images in this dataset are captured as robot units carry pods as part of normal Amazon Fulfillment Center operations.\n\nDocumentation: https://docs.opendata.aws/aft-vbi-pds/readme.html\nContact: amazon-bin-images@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aft_vbi_pds/index.json", "https://registry.opendata.aws/amazon-bin-imagery/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aft_vbi_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aft_vbi_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aft_vbi_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory/", "public", "File Names from the AWS S3 allen-brain-observatory Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: Project data files in a public bucket", "This dataset has file information from the AWS S3 allen-brain-observatory bucket at https://allen-brain-observatory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: Project data files in a public bucket\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory_templates/", "public", "File Names from the AWS S3 allen-brain-observatory-templates Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: SageMaker launch template with s3fs bucket mounts", "This dataset has file information from the AWS S3 allen-brain-observatory-templates bucket at https://allen-brain-observatory-templates.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: SageMaker launch template with s3fs bucket mounts\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory_templates/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory_templates.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory_templates&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory_templates"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_amazon_reviews_pds/", "public", "File Names from the AWS S3 amazon-reviews-pds Bucket: Amazon Customer Reviews Dataset: TSV files of reviews", "This dataset has file information from the AWS S3 amazon-reviews-pds bucket at https://amazon-reviews-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Customer Reviews Dataset\nName2: TSV files of reviews\nDescription: Amazon Customer Reviews (a.k.a. Product Reviews) is one of Amazon\u2019s iconic products. In a period of over two decades since the first review in 1995, millions of Amazon customers have contributed over a hundred million reviews to express opinions and describe their experiences regarding products on the Amazon.com website. Over 130+ million customer reviews are available to researchers as part of this dataset.\n\nDocumentation: https://s3.amazonaws.com/amazon-reviews-pds/readme.html\nContact: customer-review-dataset@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not defined\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_amazon_reviews_pds/index.json", "https://registry.opendata.aws/amazon-reviews/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_amazon_reviews_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_amazon_reviews_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_amazon_reviews_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_avg_kitti/", "public", "File Names from the AWS S3 avg-kitti Bucket: KITTI Vision Benchmark Suite", "This dataset has file information from the AWS S3 avg-kitti bucket at https://avg-kitti.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: KITTI Vision Benchmark Suite\nName2: http://www.cvlibs.net/datasets/kitti/raw_data.php\nDescription: Dataset and benchmarks for computer vision research in the context of autonomous driving. The dataset has been recorded in and around the city of Karlsruhe, Germany using the mobile platform AnnieWay (VW station wagon) which has been equipped with several RGB and monochrome cameras, a Velodyne HDL 64 laser scanner as well as an accurate RTK corrected GPS/IMU localization unit. The dataset has been created for computer vision and machine learning research on stereo, optical flow, visual odometry, semantic segmentation, semantic instance segmentation, road segmentation, single image depth prediction, depth map completion, 2D and 3D object detection and object tracking. In addition, several raw data recordings are provided. The datasets are captured by driving around the mid-size city of Karlsruhe, in rural areas and on highways. Up to 15 cars and 30 pedestrians are visible per image.\n\nDocumentation: http://www.cvlibs.net/datasets/kitti/\nContact: http://www.cvlibs.net/people.php\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_avg_kitti/index.json", "https://registry.opendata.aws/kitti/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_avg_kitti.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_avg_kitti&showErrors=false&email=", "Amazon Web Services", "awsS3Files_avg_kitti"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/", "public", "File Names from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd Bucket: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)", "This dataset has file information from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd bucket at https://aws-earth-mo-atmospheric-mogreps-g-prd.s3.eu-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts\nName2: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)\nDescription: Meteorological data reusers now have an exciting opportunity to sample, experiment and evaluate Met Office atmospheric model data, whilst also experiencing a transformative method of requesting data via Restful APIs on AWS. All ahead of Met Office\u2019s own operationally supported API platform that will be launched in late 2019.\n\nDocumentation: https://github.com/MetOffice/aws-earth-examples\nContact: https://www.metoffice.gov.uk/about-us/contact\nUpdateFrequency: Daily (with 24 hour delay)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/index.json", "https://registry.opendata.aws/uk-met-office/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_gsod/", "public", "File Names from the AWS S3 aws-gsod Bucket: Global Surface Summary of Day: Measurements and metadata", "This dataset has file information from the AWS S3 aws-gsod bucket at https://aws-gsod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Surface Summary of Day\nName2: Measurements and metadata\nDescription: GSOD is a collection of daily weather measurements (temperature, wind speed, humidity, pressure, and more) from 9000+ weather stations around the world.\n\nDocumentation: https://www.ncdc.noaa.gov/\nContact: https://www.ncdc.noaa.gov/\nUpdateFrequency: Currently updated infrequently. Last updated on September 13, 2016.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_gsod/index.json", "https://registry.opendata.aws/noaa-gsod/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_gsod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_gsod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_gsod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_broad_references/", "public", "File Names from the AWS S3 broad-references Bucket: Broad Genome References: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.", "This dataset has file information from the AWS S3 broad-references bucket at https://broad-references.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Broad Genome References\nName2: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.\nDescription: Broad maintained human genome reference builds hg19/hg38 and decoy references.\n\nDocumentation: https://s3.amazonaws.com/broad-references/broad-references-readme.html\nContact: hensonc@broadinstitute.org\nManagedBy: Broad Institute\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_broad_references/index.json", "https://registry.opendata.aws/broad-references/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_broad_references.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_broad_references&showErrors=false&email=", "Amazon Web Services", "awsS3Files_broad_references"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cbers_meta_pds/", "public", "File Names from the AWS S3 cbers-meta-pds Bucket: CBERS on AWS: CBERS metadata (Quicklooks, metadata)", "This dataset has file information from the AWS S3 cbers-meta-pds bucket at https://cbers-meta-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CBERS on AWS\nName2: CBERS metadata (Quicklooks, metadata)\nDescription: This project creates a S3 repository with imagery acquired by the China-Brazil Earth Resources Satellite (CBERS). The image files are recorded and processed by Instituto Nacional de Pesquisa Espaciais (INPE) and are converted to Cloud Optimized Geotiff format in order to optimize its use for cloud based applications. The repository contains all CBERS-4 MUX, AWFI, PAN5M and PAN10M scenes acquired since the start of the satellite mission and is daily updated with new scenes.\n\nDocumentation: https://github.com/fredliporace/cbers-on-aws\nContact: https://lists.osgeo.org/mailman/listinfo/cbers-pds\nManagedBy: [AMS Kepler](https://amskepler.com/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cbers_meta_pds/index.json", "https://registry.opendata.aws/cbers/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cbers_meta_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cbers_meta_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cbers_meta_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cgiardata/", "public", "File Names from the AWS S3 cgiardata Bucket: CCAFS-Climate Data: ARC GRID, and ARC ASCII format compressed", "This dataset has file information from the AWS S3 cgiardata bucket at https://cgiardata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CCAFS-Climate Data\nName2: ARC GRID, and ARC ASCII format compressed\nDescription: High resolution climate data to help assess the impacts of climate change primarily on agriculture. These open access datasets of climate projections will help researchers make climate change impact assessments.\n\nDocumentation: http://www.ccafs-climate.org\nContact: http://www.ccafs-climate.org/contact/\nUpdateFrequency: Every three months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cgiardata/index.json", "https://registry.opendata.aws/cgiardata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cgiardata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cgiardata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cgiardata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_commoncrawl/", "public", "File Names from the AWS S3 commoncrawl Bucket: Common Crawl: Crawl data (WARC and ARC format)", "This dataset has file information from the AWS S3 commoncrawl bucket at https://commoncrawl.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Common Crawl\nName2: Crawl data (WARC and ARC format)\nDescription: A corpus of web crawl data composed of over 25 billion web pages.\n\nDocumentation: http://commoncrawl.org/the-data/get-started/\nContact: http://commoncrawl.org/connect/contact-us/\nManagedBy: [Common Crawl](http://commoncrawl.org/)\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_commoncrawl/index.json", "https://registry.opendata.aws/commoncrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_commoncrawl.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_commoncrawl&showErrors=false&email=", "Amazon Web Services", "awsS3Files_commoncrawl"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cornell_eas_data_lake/", "public", "File Names from the AWS S3 cornell-eas-data-lake Bucket: Cornell EAS Data Lake: Cornell EAS Data Lake", "This dataset has file information from the AWS S3 cornell-eas-data-lake bucket at https://cornell-eas-data-lake.s3.us-east-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cornell EAS Data Lake\nName2: Cornell EAS Data Lake\nDescription: Earth & Atmospheric Sciences at Cornell University has created a public data lake of climate data. The data is stored in columnar storage formats (ORC) to make it straightforward to query using standard tools like Amazon Athena or Apache Spark. The data itself is originally intended to be used for building decision support tools for farmers and digital agriculture. The first dataset is the historical NDFD / NDGD data distributed by NCEP / NOAA / NWS. The NDFD (National Digital Forecast Database) and NDGD (National Digital Guidance Database) contain gridded forecasts and observations at 2.5km resolution for the Contiguous United States (CONUS). There are also 5km grids for several smaller US regions and non-continguous territories, such as Hawaii, Guam, Puerto Rico and Alaska. NOAA distributes archives of the NDFD/NDGD via its NOAA Operational Model Archive and Distribution System (NOMADS) in Grib2 format. The data has been converted to ORC to optimize storage space and to, more importantly, simplify data access via standard data analytics tools.\n\nDocumentation: https://datalake.eas.cornell.edu/\nContact: digitalag@cornell.edu\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cornell_eas_data_lake/index.json", "https://registry.opendata.aws/cornell-eas-data-lake/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cornell_eas_data_lake.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cornell_eas_data_lake&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cornell_eas_data_lake"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cse_cic_ids2018/", "public", "File Names from the AWS S3 cse-cic-ids2018 Bucket: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018): Network traffic and log files", "This dataset has file information from the AWS S3 cse-cic-ids2018 bucket at https://cse-cic-ids2018.s3.ca-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018)\nName2: Network traffic and log files\nDescription: This dataset is the result of a collaborative project between the Communications Security Establishment (CSE) and The Canadian Institute for Cybersecurity (CIC) that use the notion of profiles to generate cybersecurity dataset in a systematic manner. It incluides a detailed description of intrusions along with abstract distribution models for applications, protocols, or lower level network entities. The dataset includes seven different attack scenarios, namely Brute-force, Heartbleed, Botnet, DoS, DDoS, Web attacks, and infiltration of the network from inside. The attacking infrastructure includes 50 machines and the victim organization has 5 departments includes 420 PCs and 30 servers. This dataset includes the network traffic and log files of each machine from the victim side, along with 80 network traffic features extracted from captured traffic using CICFlowMeter-V3. For more information on the creation of this dataset, see this paper by researchers at the Canadian Institute for Cybersecurity (CIC) and the University of New Brunswick (UNB): [Toward Generating a New Intrusion Detection Dataset and Intrusion Traffic Characterization](http://www.scitepress.org/Papers/2018/66398/66398.pdf).\n\nDocumentation: http://www.unb.ca/cic/datasets/ids-2018.html\nContact: CIC@unb.ca\nUpdateFrequency: Annualy\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cse_cic_ids2018/index.json", "https://registry.opendata.aws/cse-cic-ids2018/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cse_cic_ids2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cse_cic_ids2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cse_cic_ids2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cytodata/", "public", "File Names from the AWS S3 cytodata Bucket: Cell Painting Image Collection: Images, extracted features and aggregated profiles are available as a S3 bucket", "This dataset has file information from the AWS S3 cytodata bucket at https://cytodata.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cell Painting Image Collection\nName2: Images, extracted features and aggregated profiles are available as a S3 bucket\nDescription: The Cell Painting Image Collection is a collection of freely downloadable microscopy image sets. Cell Painting is an unbiased high throughput imaging assay used to analyze perturbations in cell models. In addition to the images themselves, each set includes a description of the biological application and some type of \"ground truth\" (expected results). Researchers are encouraged to use these image sets as reference points when developing, testing, and publishing new image analysis algorithms for the life sciences. We hope that the this data set will lead to a better understanding of which methods are best for various biological image analysis applications.\n\nDocumentation: https://github.com/cytodata/cytodata-hackathon-2018\nContact: Post on https://forum.image.sc/ and tag with \"cellpainting\"\nUpdateFrequency: irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cytodata/index.json", "https://registry.opendata.aws/cell-painting-image-collection/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cytodata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cytodata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cytodata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_czb_tabula_muris/", "public", "File Names from the AWS S3 czb-tabula-muris Bucket: Tabula Muris", "This dataset has file information from the AWS S3 czb-tabula-muris bucket at https://czb-tabula-muris.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Tabula Muris\nName2: https://github.com/czbiohub/tabula-muris\nDescription: Tabula Muris is a compendium of single cell transcriptomic data from the model organism *Mus musculus* comprising more than 100,000 cells from 20 organs and tissues. These data represent a new resource for cell biology, reveal gene expression in poorly characterized cell populations, and allow for direct and controlled comparison of gene expression in cell types shared between tissues, such as T-lymphocytes and endothelial cells from different anatomical locations. Two distinct technical approaches were used for most organs: one approach, microfluidic droplet-based 3\u2019-end counting, enabled the survey of thousands of cells at relatively low coverage, while the other, FACS-based full length transcript analysis, enabled characterization of cell types with high sensitivity and coverage. The cumulative data provide the foundation for an atlas of transcriptomic cell biology. See: https://www.nature.com/articles/s41586-018-0590-4\n\nDocumentation: https://github.com/czbiohub/tabula-muris/blob/master/tabula-muris-on-aws.md\nContact: If you have questions about the data, you can create an Issue at https://github.com/czbiohub/tabula-muris.\nManagedBy: [Chan Zuckerberg Biohub](https://www.czbiohub.org/)\nUpdateFrequency: This is the final version of the dataset, it will not be updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_czb_tabula_muris/index.json", "https://registry.opendata.aws/tabula-muris/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_czb_tabula_muris.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_czb_tabula_muris&showErrors=false&email=", "Amazon Web Services", "awsS3Files_czb_tabula_muris"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataforgood_fb_data/", "public", "File Names from the AWS S3 dataforgood-fb-data Bucket: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook: CSV and Cloud-optimized GeoTIFF files", "This dataset has file information from the AWS S3 dataforgood-fb-data bucket at https://dataforgood-fb-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook\nName2: CSV and Cloud-optimized GeoTIFF files\nDescription: Population data for a selection of countries, allocated to 1 arcsecond blocks and provided in a combination of CSV and Cloud-optimized GeoTIFF files. This refines [CIESIN\u2019s Gridded Population of the World](https://sedac.ciesin.columbia.edu/data/collection/gpw-v4) using machine learning models on high-resolution worldwide Digital Globe satellite imagery. CIESIN population counts aggregated from worldwide census data are allocated to blocks where imagery appears to contain buildings.\n\nDocumentation: [Project overview](https://dataforgood.fb.com/population-density-maps-documentation/) and [dataset description](https://docs.opendata.aws/dataforgood-fb-data/readme.html)\nContact: disastermaps@fb.com\nManagedBy: |\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataforgood_fb_data/index.json", "https://registry.opendata.aws/dataforgood-fb-hrsl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataforgood_fb_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataforgood_fb_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataforgood_fb_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_datasets_elasticmapreduce_ngrams_books/", "public", "File Names from the AWS S3 datasets.elasticmapreduce Bucket with prefix=ngrams/books/: Google Books Ngrams: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.", "This dataset has file information from the AWS S3 datasets.elasticmapreduce bucket at https://datasets.elasticmapreduce.s3.us-east-1.amazonaws.com/ with prefix=ngrams/books/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Google Books Ngrams\nName2: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.\nDescription: N-grams are fixed size tuples of items. In this case the items are words extracted from the Google Books corpus. The n specifies the number of elements in the tuple, so a 5-gram contains five words or characters. The n-grams in this dataset were produced by passing a sliding window of the text of books and outputting a record for each new token.\n\nDocumentation: http://books.google.com/ngrams/\nContact: https://books.google.com/ngrams\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_datasets_elasticmapreduce_ngrams_books/index.json", "https://registry.opendata.aws/google-ngrams/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_datasets_elasticmapreduce_ngrams_books.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_datasets_elasticmapreduce_ngrams_books&showErrors=false&email=", "Amazon Web Services", "awsS3Files_datasets_elasticmapreduce_ngrams_books"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataworld_linked_acs/", "public", "File Names from the AWS S3 dataworld-linked-acs Bucket: U.S. Census ACS PUMS: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.", "This dataset has file information from the AWS S3 dataworld-linked-acs bucket at https://dataworld-linked-acs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: U.S. Census ACS PUMS\nName2: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.\nDescription: U.S. Census Bureau American Community Survey (ACS) Public Use Microdata Sample (PUMS) available in a linked data format using the Resource Description Framework (RDF) data model.\n\nDocumentation: https://docs.data.world/uscensus/#american-community-survey-linked-open-data\nContact: https://docs.data.world/uscensus/#60---contact\nUpdateFrequency: Yearly, after ACS 1-year PUMS raw data are released\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataworld_linked_acs/index.json", "https://registry.opendata.aws/census-dataworld-pums/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataworld_linked_acs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataworld_linked_acs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataworld_linked_acs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2015/", "public", "File Names from the AWS S3 dc-lidar-2015 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML, SHP", "This dataset has file information from the AWS S3 dc-lidar-2015 bucket at https://dc-lidar-2015.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML, SHP\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2015/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2015.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2015&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2015"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2018/", "public", "File Names from the AWS S3 dc-lidar-2018 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML", "This dataset has file information from the AWS S3 dc-lidar-2018 bucket at https://dc-lidar-2018.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2018/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_eurex_pds/", "public", "File Names from the AWS S3 deutsche-boerse-eurex-pds Bucket: Deutsche B\u00f6rse Public Dataset: Eurex PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-eurex-pds bucket at https://deutsche-boerse-eurex-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Eurex PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_eurex_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_eurex_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_eurex_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_eurex_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_xetra_pds/", "public", "File Names from the AWS S3 deutsche-boerse-xetra-pds Bucket: Deutsche B\u00f6rse Public Dataset: Xetra PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-xetra-pds bucket at https://deutsche-boerse-xetra-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Xetra PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_xetra_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_xetra_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_xetra_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_xetra_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ebirdst_data/", "public", "File Names from the AWS S3 ebirdst-data Bucket: eBird Status and Trends Model Results: Species results files", "This dataset has file information from the AWS S3 ebirdst-data bucket at https://ebirdst-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: eBird Status and Trends Model Results\nName2: Species results files\nDescription: The eBird Status and Trends project generates estimates of bird occurrence and abundance at a high spatiotemporal resolution. This dataset represents the primary modeled results from the analysis workflow and are designed for further analysis, synthesis, visualization, and exploration.\n\nDocumentation: https://cornelllabofornithology.github.io/ebirdst/articles/ebirdst-introduction.html\nContact: https://help.ebird.org/customer/en/portal/emails/new\nManagedBy: [Cornell Lab of Ornithology](https://www.birds.cornell.edu/home/)\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ebirdst_data/index.json", "https://registry.opendata.aws/ebirdst/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ebirdst_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ebirdst_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ebirdst_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_elevation_tiles_prod/", "public", "File Names from the AWS S3 elevation-tiles-prod Bucket: Terrain Tiles: Gridded elevation tiles", "This dataset has file information from the AWS S3 elevation-tiles-prod bucket at https://elevation-tiles-prod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Terrain Tiles\nName2: Gridded elevation tiles\nDescription: A global dataset providing bare-earth terrain heights, tiled for easy usage and provided on S3.\n\nDocumentation: https://mapzen.com/documentation/terrain-tiles/\nContact: https://github.com/tilezen/joerd/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_elevation_tiles_prod/index.json", "https://registry.opendata.aws/terrain-tiles/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_elevation_tiles_prod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_elevation_tiles_prod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_elevation_tiles_prod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_encode_public/", "public", "File Names from the AWS S3 encode-public Bucket: Encyclopedia of DNA Elements (ENCODE): Released and archived ENCODE data", "This dataset has file information from the AWS S3 encode-public bucket at https://encode-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Encyclopedia of DNA Elements (ENCODE)\nName2: Released and archived ENCODE data\nDescription: The Encyclopedia of DNA Elements (ENCODE) Consortium is an international collaboration of research groups funded by the National Human Genome Research Institute (NHGRI). The goal of ENCODE is to build a comprehensive parts list of functional elements in the human genome, including elements that act at the protein and RNA levels, and regulatory elements that control cells and circumstances in which a gene is active. ENCODE investigators employ a variety of assays and methods to identify functional elements. The discovery and annotation of gene elements is accomplished primarily by sequencing a diverse range of RNA sources, comparative genomics, integrative bioinformatic methods, and human curation. Regulatory elements are typically investigated through DNA hypersensitivity assays, assays of DNA methylation, and immunoprecipitation (IP) of proteins that interact with DNA and RNA, i.e., modified histones, transcription factors, chromatin regulators, and RNA-binding proteins, followed by sequencing.\n\nDocumentation: https://www.encodeproject.org\nContact: encode-help@lists.stanford.edu\nManagedBy: ENCODE Data Coordinating Center\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_encode_public/index.json", "https://registry.opendata.aws/encode-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_encode_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_encode_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_encode_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_epa_rsei_pds/", "public", "File Names from the AWS S3 epa-rsei-pds Bucket: EPA Risk-Screening Environmental Indicators: RSEI Microdata", "This dataset has file information from the AWS S3 epa-rsei-pds bucket at https://epa-rsei-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: EPA Risk-Screening Environmental Indicators\nName2: RSEI Microdata\nDescription: Detailed air model results from EPA\u2019s Risk-Screening Environmental Indicators (RSEI) model.\n\nDocumentation: https://docs.opendata.aws/epa-rsei-pds/readme.html\nContact: https://www.epa.gov/rsei/forms/contact-us-about-rsei-model\nUpdateFrequency: Updated infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_epa_rsei_pds/index.json", "https://registry.opendata.aws/epa-rsei-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_epa_rsei_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_epa_rsei_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_epa_rsei_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_era5_pds/", "public", "File Names from the AWS S3 era5-pds Bucket: ECMWF ERA5 Reanalysis: ERA5 Reanalysis NetCDF 4 files", "This dataset has file information from the AWS S3 era5-pds bucket at https://era5-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ECMWF ERA5 Reanalysis\nName2: ERA5 Reanalysis NetCDF 4 files\nDescription: ERA5 is the fifth generation of ECMWF atmospheric reanalyses of the global climate, and the first reanalysis produced as an operational service. It utilizes the best available observation data from satellites and in-situ stations, which are assimilated and processed using ECMWF's Integrated Forecast System (IFS) Cycle 41r2. The dataset provides all essential atmospheric meteorological parameters like, but not limited to, air temperature, pressure and wind at different altitudes, along with surface parameters like rainfall, soil moisture content and sea parameters like sea-surface temperature and wave height. ERA5 provides data at a considerably higher spatial and temporal resolution than its legacy counterpart ERA-Interim. ERA5 consists of high resolution version with 31 km horizontal resolution, and a reduced resolution ensemble version with 10 members. It is currently available since 2008, but will be continuously extended backwards, first until 1979 and then to 1950. Learn more about ERA5 in Jon Olauson's paper [ERA5: The new champion of wind power modelling?](https://www.researchgate.net/publication/320084119_ERA5_The_new_champion_of_wind_power_modelling).\n\nDocumentation: https://github.com/planet-os/notebooks/blob/master/aws/era5-pds.md\nContact: datahub@intertrust.com\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_era5_pds/index.json", "https://registry.opendata.aws/ecmwf-era5/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_era5_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_era5_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_era5_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_coco/", "public", "File Names from the AWS S3 fast-ai-coco Bucket: COCO - Common Objects in Context - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-coco bucket at https://fast-ai-coco.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: COCO - Common Objects in Context - fast.ai datasets\nName2: Datasets\nDescription: COCO is a large-scale object detection, segmentation, and captioning dataset. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. If you use this dataset in your research please cite arXiv:1405.0312 [cs.CV].\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_coco/index.json", "https://registry.opendata.aws/fast-ai-coco/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_coco.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_coco&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_coco"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imageclas/", "public", "File Names from the AWS S3 fast-ai-imageclas Bucket: Image classification - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imageclas bucket at https://fast-ai-imageclas.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image classification - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image classification research, including CIFAR 10 and 100, Caltech 101, MNIST, Food-101, Oxford-102-Flowers, Oxford-IIIT-Pets, and Stanford-Cars. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imageclas/index.json", "https://registry.opendata.aws/fast-ai-imageclas/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imageclas.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imageclas&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imageclas"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imagelocal/", "public", "File Names from the AWS S3 fast-ai-imagelocal Bucket: Image localization - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imagelocal bucket at https://fast-ai-imagelocal.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image localization - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image localization research, including Camvid and PASCAL VOC (2007 and 2012). This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imagelocal/index.json", "https://registry.opendata.aws/fast-ai-imagelocal/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imagelocal.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imagelocal&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imagelocal"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_nlp/", "public", "File Names from the AWS S3 fast-ai-nlp Bucket: NLP - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-nlp bucket at https://fast-ai-nlp.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NLP - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for NLP, with a focus on classification, including IMDb, AG-News, Amazon Reviews (polarity and full), Yelp Reviews (polarity and full), Dbpedia, Sogou News (Pinyin), Yahoo Answers, Wikitext 2 and Wikitext 103, and ACL-2010 French-English 10^9 corpus. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_nlp/index.json", "https://registry.opendata.aws/fast-ai-nlp/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_nlp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_nlp&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_nlp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib Bucket: HIRLAM Weather Model: Pressure GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib bucket at https://fmi-opendata-rcrhirlam-pressure-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Pressure GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_pressure_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_pressure_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-surface-grib Bucket: HIRLAM Weather Model: Surface GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-surface-grib bucket at https://fmi-opendata-rcrhirlam-surface-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Surface GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_surface_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_surface_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gatk_test_data/", "public", "File Names from the AWS S3 gatk-test-data Bucket: GATK Test Data: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.", "This dataset has file information from the AWS S3 gatk-test-data bucket at https://gatk-test-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GATK Test Data\nName2: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.\nDescription: The GATK test data resource bundle is a collection of files for resequencing human genomic data with the Broad Institute's [Genome Analysis Toolkit (GATK)](https://software.broadinstitute.org/gatk/).\n\nDocumentation: https://s3.amazonaws.com/gatk-test-data/gatk-test-data-readme.html\nContact: https://gatkforums.broadinstitute.org/gatk\nManagedBy: Broad Institute\nUpdateFrequency: Every 3 months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gatk_test_data/index.json", "https://registry.opendata.aws/gatk-test-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gatk_test_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gatk_test_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gatk_test_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gdelt_open_data/", "public", "File Names from the AWS S3 gdelt-open-data Bucket: Global Database of Events, Language and Tone (GDELT): Project data files", "This dataset has file information from the AWS S3 gdelt-open-data bucket at https://gdelt-open-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Database of Events, Language and Tone (GDELT)\nName2: Project data files\nDescription: This project monitors the world's broadcast, print, and web news from nearly every corner of every country in over 100 languages and identifies the people, locations, organizations, counts, themes, sources, emotions, quotes, images and events driving our global society every second of every day.\n\nDocumentation: http://www.gdeltproject.org/\nContact: http://www.gdeltproject.org/about.html#contact\nUpdateFrequency: Not currently being updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gdelt_open_data/index.json", "https://registry.opendata.aws/gdelt/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gdelt_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gdelt_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gdelt_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_genomeark/", "public", "File Names from the AWS S3 genomeark Bucket: Genome Ark", "This dataset has file information from the AWS S3 genomeark bucket at https://genomeark.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome Ark\nName2: https://vgp.github.io\nDescription: The Genome Ark hosts genomic information for the Vertebrate Genomes Project (VGP) and other related projects. The VGP is an international collaboration that aims to generate complete and near error-free reference genomes for all extant vertebrate species. These genomes will be used to address fundamental questions in biology and disease, to identify species most genetically at risk for extinction, and to preserve genetic information of life.\n\nDocumentation: https://vertebrategenomesproject.org\nContact: Erich Jarvis \nManagedBy: The Genome10K community of scientists\nUpdateFrequency: Data will be continually updated as it is generated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_genomeark/index.json", "https://registry.opendata.aws/genomeark/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_genomeark.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_genomeark&showErrors=false&email=", "Amazon Web Services", "awsS3Files_genomeark"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_giab/", "public", "File Names from the AWS S3 giab Bucket: Genome in a Bottle on AWS: Latest data", "This dataset has file information from the AWS S3 giab bucket at https://giab.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome in a Bottle on AWS\nName2: Latest data\nDescription: Several reference genomes to enable translation of whole human genome sequencing to clinical practice.\n\nDocumentation: https://docs.opendata.aws/giab/readme.html\nContact: http://genomeinabottle.org/\nUpdateFrequency: New data are added as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_giab/index.json", "https://registry.opendata.aws/giab/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_giab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_giab&showErrors=false&email=", "Amazon Web Services", "awsS3Files_giab"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gmsdata/", "public", "File Names from the AWS S3 gmsdata Bucket: The Genome Modeling System", "This dataset has file information from the AWS S3 gmsdata bucket at https://gmsdata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Genome Modeling System\nName2: https://gmsdata.s3.amazonaws.com/INDEX.html\nDescription: The Genome Institute at Washington University has developed a high-throughput, fault-tolerant analysis information management system called the Genome Modeling System (GMS), capable of executing complex, interdependent, and automated genome analysis pipelines at a massive scale. The GMS framework provides detailed tracking of samples and data coupled with reliable and repeatable analysis pipelines. GMS includes a full system image with software and services, expandable from one workstation to a large compute cluster.\n\nDocumentation: https://github.com/genome/gms/wiki\nContact: https://github.com/genome/gms/issues\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gmsdata/index.json", "https://registry.opendata.aws/gmsdata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gmsdata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gmsdata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gmsdata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_grillo_openeew/", "public", "File Names from the AWS S3 grillo-openeew Bucket: OpenEEW: OpenEEW", "This dataset has file information from the AWS S3 grillo-openeew bucket at https://grillo-openeew.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenEEW\nName2: OpenEEW\nDescription: Grillo has developed an IoT-based earthquake early-warning system in Mexico and Chile and is now opening its entire archive of unprocessed accelerometer data to the world to encourage the development of new algorithms capable of rapidly detecting and characterizing earthquakes in real time.\n\nDocumentation: https://github.com/grillo/openeew\nContact: openeew@grillo.io\nManagedBy: [Grillo](https://grillo.io/)\nUpdateFrequency: Approximately every 10 minutes\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_grillo_openeew/index.json", "https://registry.opendata.aws/grillo-openeew/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_grillo_openeew.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_grillo_openeew&showErrors=false&email=", "Amazon Web Services", "awsS3Files_grillo_openeew"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_microbiome_project/", "public", "File Names from the AWS S3 human-microbiome-project Bucket: The Human Microbiome Project", "This dataset has file information from the AWS S3 human-microbiome-project bucket at https://human-microbiome-project.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Human Microbiome Project\nName2: https://aws.amazon.com/datasets/human-microbiome-project/\nDescription: The NIH-funded Human Microbiome Project (HMP) is a collaborative effort of over 300 scientists from more than 80 organizations to comprehensively characterize the microbial communities inhabiting the human body and elucidate their role in human health and disease. To accomplish this task, microbial community samples were isolated from a cohort of 300 healthy adult human subjects at 18 specific sites within five regions of the body (oral cavity, airways, urogenital track, skin, and gut). Targeted sequencing of the 16S bacterial marker gene and/or whole metagenome shotgun sequencing was performed for thousands of these samples. In addition, whole genome sequences were generated for isolate strains collected from human body sites to act as reference organisms for analysis. Finally, 16S marker and whole metagenome sequencing was also done on additional samples from people suffering from several disease conditions.\n\nDocumentation: https://commonfund.nih.gov/hmp\nContact: https://commonfund.nih.gov/hmp/related_activities\nUpdateFrequency: Uncertain\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_microbiome_project/index.json", "https://registry.opendata.aws/human-microbiome-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_microbiome_project.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_microbiome_project&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_microbiome_project"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_pangenomics/", "public", "File Names from the AWS S3 human-pangenomics Bucket: Human PanGenomics Project: Human PanGenomics Project", "This dataset has file information from the AWS S3 human-pangenomics bucket at https://human-pangenomics.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Human PanGenomics Project\nName2: Human PanGenomics Project\nDescription: This dataset includes sequencing data, assemblies, and analyses for the offspring of ten parent-offspring trios.\n\nDocumentation: https://github.com/human-pangenomics/hpgp-data\nContact: https://github.com/human-pangenomics/hpgp-data/issues\nUpdateFrequency: Data will be added and updated as technologies improve or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_pangenomics/index.json", "https://registry.opendata.aws/hpgp-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_pangenomics.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_pangenomics&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_pangenomics"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/", "public", "File Names from the AWS S3 ichangemycity-janaagraha-complaints-data-aws Bucket: IChangeMyCity Complaints Data from Janaagraha: IChangeMyCity Complaints", "This dataset has file information from the AWS S3 ichangemycity-janaagraha-complaints-data-aws bucket at https://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IChangeMyCity Complaints Data from Janaagraha\nName2: IChangeMyCity Complaints\nDescription: The [IChangeMyCity](https://www.ichangemycity.com) project provides insight into the complaints raised by citizens from diffent cities of India related to the issues in their neighbourhoods and the resolution of the same by the civic bodies.\n\nDocumentation: http://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/readme.html\nContact: data@janaagraha.org\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/index.json", "https://registry.opendata.aws/ichangemycity/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ichangemycity_janaagraha_complaints_data_aws&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ichangemycity_janaagraha_complaints_data_aws"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_irs_990_spreadsheets/", "public", "File Names from the AWS S3 irs-990-spreadsheets Bucket: IRS 990 Filings (Spreadsheets): Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form", "This dataset has file information from the AWS S3 irs-990-spreadsheets bucket at https://irs-990-spreadsheets.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IRS 990 Filings (Spreadsheets)\nName2: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form\nDescription: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form. Additional fields being added regularly.\n\nDocumentation: https://appliednonprofitresearch.com/documentation/irs-990-spreadsheets\nContact: [info@appliednonprofitresearch.com](info@appliednonprofitresearch.com)\nManagedBy: [Applied Nonprofit Research, LLC](https://www.appliednonprofitresearch.com/)\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_irs_990_spreadsheets/index.json", "https://registry.opendata.aws/990-spreadsheets/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_irs_990_spreadsheets.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_irs_990_spreadsheets&showErrors=false&email=", "Amazon Web Services", "awsS3Files_irs_990_spreadsheets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lab41openaudiocorpus/", "public", "File Names from the AWS S3 lab41openaudiocorpus Bucket: Voices Obscured in Complex Environmental Settings (VOiCES): wav audio files, orthographic transcriptions, and speaker ID", "This dataset has file information from the AWS S3 lab41openaudiocorpus bucket at https://lab41openaudiocorpus.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Voices Obscured in Complex Environmental Settings (VOiCES)\nName2: wav audio files, orthographic transcriptions, and speaker ID\nDescription: VOiCES is a speech corpus recorded in acoustically challenging settings, using distant microphone recording. Speech was recorded in real rooms with various acoustic features (reverb, echo, HVAC systems, outside noise, etc.). Adversarial noise, either television, music, or babble, was concurrently played with clean speech. Data was recorded using multiple microphones strategically placed throughout the room. The corpus includes audio recordings, orthographic transcriptions, and speaker labels.\n\nDocumentation: https://voices18.github.io/\nContact: https://github.com/voices18/utilities/issues\nUpdateFrequency: Data from two additional rooms will be added to the corpus Fall 2018.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lab41openaudiocorpus/index.json", "https://registry.opendata.aws/lab41-sri-voices/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lab41openaudiocorpus.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lab41openaudiocorpus&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lab41openaudiocorpus"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds/", "public", "File Names from the AWS S3 landsat-pds Bucket: Landsat 8: Scenes and metadata", "This dataset has file information from the AWS S3 landsat-pds bucket at https://landsat-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: Scenes and metadata\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds_inventory/", "public", "File Names from the AWS S3 landsat-pds-inventory Bucket: Landsat 8: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)", "This dataset has file information from the AWS S3 landsat-pds-inventory bucket at https://landsat-pds-inventory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds_inventory/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds_inventory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds_inventory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds_inventory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lofar_elais_n1/", "public", "File Names from the AWS S3 lofar-elais-n1 Bucket: LOFAR ELAIS-N1 cycle 2 observations on AWS: LOFAR ELAIS-N1 cycle 2 observations", "This dataset has file information from the AWS S3 lofar-elais-n1 bucket at https://lofar-elais-n1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: LOFAR ELAIS-N1 cycle 2 observations on AWS\nName2: LOFAR ELAIS-N1 cycle 2 observations\nDescription: These data correspond to the [International LOFAR Telescope](http://www.lofar.org/) observations of the sky field ELAIS-N1 (16:10:01 +54:30:36) during the cycle 2 of observations. There are 11 runs of about 8 hours each plus the corresponding observation of the calibration targets before and after the target field. The data are measurement sets ([MS](https://casa.nrao.edu/Memos/229.html)) containing the cross-correlated data and metadata divided in 371 frequency sub-bands per target centred at ~150 MHz.\n\nDocumentation: https://www.lofarcloud.uk/data.html\nContact: https://www.lofarcloud.uk/\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lofar_elais_n1/index.json", "https://registry.opendata.aws/lofar-elais-n1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lofar_elais_n1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lofar_elais_n1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lofar_elais_n1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mf_nwp_models/", "public", "File Names from the AWS S3 mf-nwp-models Bucket: Atmospheric Models from M\u00e9t\u00e9o-France: Atmospheric Models from M\u00e9t\u00e9o-France", "This dataset has file information from the AWS S3 mf-nwp-models bucket at https://mf-nwp-models.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Atmospheric Models from M\u00e9t\u00e9o-France\nName2: Atmospheric Models from M\u00e9t\u00e9o-France\nDescription: Global and high-resolution regional atmospheric models from M\u00e9t\u00e9o-France.\n\nDocumentation: https://mf-models-on-aws.org\nContact: contact@openmeteodata.com\nManagedBy: [OpenMeteoData](https://openmeteodata.com)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mf_nwp_models/index.json", "https://registry.opendata.aws/meteo-france-models/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mf_nwp_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mf_nwp_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mf_nwp_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_modis_pds/", "public", "File Names from the AWS S3 modis-pds Bucket: MODIS on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 modis-pds bucket at https://modis-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: MODIS on AWS\nName2: Imagery and metadata\nDescription: Select products from the Moderate Resolution Imaging Spectroradiometer (MODIS) managed by the U.S. Geological Survey and NASA.\n\nDocumentation: https://docs.opendata.aws/modis-pds/readme.html\nContact: https://github.com/AstroDigital/modis-ingestor/issues\nUpdateFrequency: New MODIS data is added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_modis_pds/index.json", "https://registry.opendata.aws/modis/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_modis_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_modis_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_modis_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_multimedia_commons/", "public", "File Names from the AWS S3 multimedia-commons Bucket: Multimedia Commons: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.", "This dataset has file information from the AWS S3 multimedia-commons bucket at https://multimedia-commons.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Multimedia Commons\nName2: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.\nDescription: The Multimedia Commons is a collection of audio and visual features computed for the nearly 100 million Creative Commons-licensed Flickr images and videos in the YFCC100M dataset from Yahoo! Labs, along with ground-truth annotations for selected subsets. The International Computer Science Institute (ICSI) and Lawrence Livermore National Laboratory are producing and distributing a core set of derived feature sets and annotations as part of an effort to enable large-scale video search capabilities. They have released this feature corpus into the public domain, under Creative Commons License 0, so it is free for anyone to use for any purpose.\n\nDocumentation: https://multimediacommons.wordpress.com/yfcc100m-core-dataset/\nContact: multimedia-commons@icsi.berkeley.edu\nUpdateFrequency: Not updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_multimedia_commons/index.json", "https://registry.opendata.aws/multimedia-commons/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_multimedia_commons.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_multimedia_commons&showErrors=false&email=", "Amazon Web Services", "awsS3Files_multimedia_commons"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mwapublic/", "public", "File Names from the AWS S3 mwapublic Bucket: Epoch of Reionization Dataset: Selected MWA EoR data (uvfits format) from 2013-2015", "This dataset has file information from the AWS S3 mwapublic bucket at https://mwapublic.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Epoch of Reionization Dataset\nName2: Selected MWA EoR data (uvfits format) from 2013-2015\nDescription: The data are from observations with the Murchison Widefield Array (MWA) which is a Square Kilometer Array (SKA) precursor in Western Australia. This particular dataset is from the Epoch of Reionization project which is a key science driver of the SKA. Nearly 2PB of such observations have been recorded to date, this is a small subset of that which has been exported from the MWA data archive in Perth and made available to the public on AWS. The data were taken to detect signatures of the first stars and galaxies forming and the effect of these early stars and galaxies on the evolution of the universe.\n\nDocumentation: http://danielcjacobs.com/research/epoch-of-reionization-aws-public-dataset/\nContact: brynah (at) phys.washington.edu\nManagedBy: University of washington Radio Cosmology Group\nUpdateFrequency: Irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mwapublic/index.json", "https://registry.opendata.aws/epoch-of-reionization/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mwapublic.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mwapublic&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mwapublic"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nanopore_human_wgs/", "public", "File Names from the AWS S3 nanopore-human-wgs Bucket: Nanopore Reference Human Genome: Nanopore Reference Human Genome", "This dataset has file information from the AWS S3 nanopore-human-wgs bucket at https://nanopore-human-wgs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Nanopore Reference Human Genome\nName2: Nanopore Reference Human Genome\nDescription: This dataset includes the sequencing and assembly of a reference standard human genome (GM12878) using the MinION nanopore sequencing instrument with the R9.4 1D chemistry.\n\nDocumentation: https://github.com/nanopore-wgs-consortium/NA12878\nContact: https://github.com/nanopore-wgs-consortium/NA12878/issues\nUpdateFrequency: Data will be added as methodology improves or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nanopore_human_wgs/index.json", "https://registry.opendata.aws/nanopore/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nanopore_human_wgs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nanopore_human_wgs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nanopore_human_wgs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_Landsat/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=Landsat/: NASA NEX: Landsat GLS (Global Land Survey)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=Landsat/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Landsat GLS (Global Land Survey)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_Landsat/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_Landsat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_Landsat&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_Landsat"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_LOCA/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=LOCA/: NASA NEX: Localized Constructed Analogs (LOCA)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=LOCA/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Localized Constructed Analogs (LOCA)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_LOCA/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_LOCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_LOCA&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_LOCA"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_MODIS/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=MODIS/: NASA NEX: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=MODIS/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_MODIS/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_MODIS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_MODIS&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_MODIS"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_DCP30/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-DCP30/: NASA NEX: Downscaled Climate Projections (NEX-DCP30)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-DCP30/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Downscaled Climate Projections (NEX-DCP30)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_DCP30/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_DCP30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_DCP30&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_DCP30"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_GDDP/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-GDDP/: NASA NEX: Global Daily Downscaled Projections (NEX-GDDP)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-GDDP/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Global Daily Downscaled Projections (NEX-GDDP)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_GDDP/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_GDDP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_GDDP&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_GDDP"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gefs_pds/", "public", "File Names from the AWS S3 noaa-gefs-pds Bucket: NOAA Global Ensemble Forecast System (GEFS): Project data files", "This dataset has file information from the AWS S3 noaa-gefs-pds bucket at https://noaa-gefs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Ensemble Forecast System (GEFS)\nName2: Project data files\nDescription: The Global Ensemble Forecast System (GEFS), previously known as the GFS Global ENSemble (GENS), is a weather forecast model made up of 21 separate forecasts, or ensemble members. The National Centers for Environmental Prediction (NCEP) started the GEFS to address the nature of uncertainty in weather observations, which is used to initialize weather forecast models. The GEFS attempts to quantify the amount of uncertainty in a forecast by generating an ensemble of multiple forecasts, each minutely different, or perturbed, from the original observations. With global coverage, GEFS is produced four times a day with weather forecasts going out to 16 days.\n\nDocumentation: https://docs.opendata.aws/noaa-gefs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GEFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GEFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gefs_pds/index.json", "https://registry.opendata.aws/noaa-gefs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gefs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gefs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gefs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_bdp_pds/", "public", "File Names from the AWS S3 noaa-gfs-bdp-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 GFS data", "This dataset has file information from the AWS S3 noaa-gfs-bdp-pds bucket at https://noaa-gfs-bdp-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_bdp_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_bdp_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_bdp_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_bdp_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_pds/", "public", "File Names from the AWS S3 noaa-gfs-pds Bucket: Unidata NOAA Global Forecast System (GFS) Model: A rolling four-week archive of 0.25 degree GFS data", "This dataset has file information from the AWS S3 noaa-gfs-pds bucket at https://noaa-gfs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Unidata NOAA Global Forecast System (GFS) Model\nName2: A rolling four-week archive of 0.25 degree GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks.\n\nDocumentation: https://docs.opendata.aws/noaa-gfs-pds/readme.html\nContact: https://www.ncdc.noaa.gov/contact\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_pds/index.json", "https://registry.opendata.aws/noaa-gfs-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfspara_pds/", "public", "File Names from the AWS S3 noaa-gfspara-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 FV3-based parallel version of the GFS", "This dataset has file information from the AWS S3 noaa-gfspara-pds bucket at https://noaa-gfspara-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 FV3-based parallel version of the GFS\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfspara_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfspara_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfspara_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfspara_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghcn_pds/", "public", "File Names from the AWS S3 noaa-ghcn-pds Bucket: NOAA Global Historical Climatology Network Daily (GHCN-D): Project data files", "This dataset has file information from the AWS S3 noaa-ghcn-pds bucket at https://noaa-ghcn-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Daily (GHCN-D)\nName2: Project data files\nDescription: Global Historical Climatology Network - Daily is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://docs.opendata.aws/noaa-ghcn-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncdc.noaa.gov/ghcn-daily-description). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghcn_pds/index.json", "https://registry.opendata.aws/noaa-ghcn/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghcn_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghcn_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghcn_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghe_pds/", "public", "File Names from the AWS S3 noaa-ghe-pds Bucket: NOAA Global Hydro Estimator (GHE): Project data files", "This dataset has file information from the AWS S3 noaa-ghe-pds bucket at https://noaa-ghe-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Hydro Estimator (GHE)\nName2: Project data files\nDescription: Global Hydro-Estimator provides a global mosaic imagery of rainfall estimates from multi-geostationary satellites, which currently includes GOES-16, GOES-15, Meteosat-8, Meteosat-11 and Himawari-8. The GHE products include: Instantaneous rain rate, 1 hour, 3 hour, 6 hour, 24 hour and also multi-day rainfall accumulation.\n\nDocumentation: https://www.ospo.noaa.gov/Products/atmosphere/ghe/index.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 15 minute-instantaneous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghe_pds/index.json", "https://registry.opendata.aws/noaa-ghe/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghe_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghe_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghe_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_global_hourly_pds/", "public", "File Names from the AWS S3 noaa-global-hourly-pds Bucket: NOAA Global Historical Climatology Network Hourly (GHCN-H): Project data files", "This dataset has file information from the AWS S3 noaa-global-hourly-pds bucket at https://noaa-global-hourly-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Hourly (GHCN-H)\nName2: Project data files\nDescription: Global Historical Climatology Network - Hourly is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: daily (Manually)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_global_hourly_pds/index.json", "https://registry.opendata.aws/noaa-ghcnh/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_global_hourly_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_global_hourly_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_global_hourly_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3NoaaGoes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nUse ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browser the files in buckets. This dataset is a solution to that problem for this bucket.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3NoaaGoes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3NoaaGoes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3NoaaGoes16&showErrors=false&email=", "NOAA", "awsS3NoaaGoes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket: GOES on AWS: GOES-16 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-16 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes16&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes17/", "public", "File Names from the AWS S3 noaa-goes17 Bucket: GOES on AWS: GOES-17 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes17 bucket at https://noaa-goes17.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-17 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes17/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes17&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes17"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_hrrr_pds/", "public", "File Names from the AWS S3 noaa-hrrr-pds Bucket: NOAA High-Resolution Rapid Refresh (HRRR) Model: A rolling one-week archive of HRRR data.", "This dataset has file information from the AWS S3 noaa-hrrr-pds bucket at https://noaa-hrrr-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA High-Resolution Rapid Refresh (HRRR) Model\nName2: A rolling one-week archive of HRRR data.\nDescription: The HRRR is a NOAA real-time 3-km resolution, hourly updated, cloud-resolving, convection-allowing atmospheric model, initialized by 3km grids with 3km radar assimilation. Radar data is assimilated in the HRRR every 15 min over a 1-h period adding further detail to that provided by the hourly data assimilation from the 13km radar-enhanced Rapid Refresh.\n\nDocumentation: https://docs.opendata.aws/noaa-hrrr-pds/readme.html\nContact: https://rapidrefresh.noaa.gov/hrrr/\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_hrrr_pds/index.json", "https://registry.opendata.aws/noaa-hrrr-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_hrrr_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_hrrr_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_hrrr_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_isd_pds/", "public", "File Names from the AWS S3 noaa-isd-pds Bucket: NOAA Integrated Surface Database (ISD): Project data files", "This dataset has file information from the AWS S3 noaa-isd-pds bucket at https://noaa-isd-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Integrated Surface Database (ISD)\nName2: Project data files\nDescription: The Integrated Surface Database (ISD) consists of global hourly and synoptic observations compiled from numerous sources into a gzipped fixed width format. ISD was developed as a joint activity within Asheville's Federal Climate Complex. The database includes over 35,000 stations worldwide, with some having data as far back as 1901, though the data show a substantial increase in volume in the 1940s and again in the early 1970s. Currently, there are over 14,000 \"active\" stations updated daily in the database. The total uncompressed data volume is around 600 gigabytes; however, it continues to grow as more data are added. ISD includes numerous parameters such as wind speed and direction, wind gust, temperature, dew point, cloud data, sea level pressure, altimeter setting, station pressure, present weather, visibility, precipitation amounts for various time periods, snow depth, and various other elements as observed by each station.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_isd_pds/index.json", "https://registry.opendata.aws/noaa-isd/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_isd_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_isd_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_isd_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nexrad_level2/", "public", "File Names from the AWS S3 noaa-nexrad-level2 Bucket: NEXRAD on AWS: NEXRAD Level II archive data", "This dataset has file information from the AWS S3 noaa-nexrad-level2 bucket at https://noaa-nexrad-level2.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II archive data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nexrad_level2/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nexrad_level2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nexrad_level2&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nexrad_level2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_pds/", "public", "File Names from the AWS S3 noaa-nwm-pds Bucket: NOAA National Water Model Short-Range Forecast: A rolling four week archive of NWM data.", "This dataset has file information from the AWS S3 noaa-nwm-pds bucket at https://noaa-nwm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Short-Range Forecast\nName2: A rolling four week archive of NWM data.\nDescription: The National Water Model (NWM) is a water resources model that simulates and forecasts water budget variables, including snowpack, evapotranspiration, soil moisture and streamflow, over the entire continental United States (CONUS). The model, launched in August 2016, is designed to improve the ability of NOAA to meet the needs of its stakeholders (forecasters, emergency managers, reservoir operators, first responders, recreationists, farmers, barge operators, and ecosystem and floodplain managers) by providing expanded accuracy, detail, and frequency of water information. It is operated by NOAA\u2019s Office of Water Prediction. This bucket contains a four-week rollover of the Short Range Forecast model output and the corresponding forcing data for the model. The model is forced with meteorological data from the High Resolution Rapid Refresh (HRRR) and the Rapid Refresh (RAP) models. The Short Range Forecast configuration cycles hourly and produces hourly deterministic forecasts of streamflow and hydrologic states out to 18 hours.\n\nDocumentation: https://docs.opendata.aws/noaa-nwm-pds/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_pds/index.json", "https://registry.opendata.aws/noaa-nwm-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_retro_v2_0_pds/", "public", "File Names from the AWS S3 noaa-nwm-retro-v2.0-pds Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 2.0.", "This dataset has file information from the AWS S3 noaa-nwm-retro-v2.0-pds bucket at https://noaa-nwm-retro-v2.0-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 2.0.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\n... (4 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_retro_v2_0_pds/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_retro_v2_0_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_retro_v2_0_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_retro_v2_0_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ofs_pds/", "public", "File Names from the AWS S3 noaa-ofs-pds Bucket: NOAA Operational Forecast System (OFS): Project data files", "This dataset has file information from the AWS S3 noaa-ofs-pds bucket at https://noaa-ofs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Operational Forecast System (OFS)\nName2: Project data files\nDescription: The Operational Forecast System (OFS) has been developed to serve the maritime user community. OFS was developed in a joint project of the NOAA/National Ocean Service (NOS)/Office of Coast Survey, the NOAA/NOS/Center for Operational Oceanographic Products and Services (CO-OPS), and the NOAA/National Weather Service (NWS)/National Centers for Environmental Prediction (NCEP) Central Operations (NCO). OFS generates water level, water current, water temperature, water salinity (except for the Great Lakes) and wind conditions nowcast and forecast guidance four times per day.\n\nDocumentation: https://docs.opendata.aws/noaa-ofs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA OFS site](https://tidesandcurrents.noaa.gov/models.html). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight and generates 6-hour nowcasts and 48-hour forecast guidance\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ofs_pds/index.json", "https://registry.opendata.aws/noaa-ofs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ofs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ofs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ofs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/", "public", "File Names from the AWS S3 nrel-pds-wtk Bucket with prefix=wtk-techno-economic/pywtk-data/: NREL Wind Integration National Dataset on AWS: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format", "This dataset has file information from the AWS S3 nrel-pds-wtk bucket at https://nrel-pds-wtk.s3.us-west-2.amazonaws.com/ with prefix=wtk-techno-economic/pywtk-data/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NREL Wind Integration National Dataset on AWS\nName2: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format\nDescription: The [Wind Integration National Dataset (WIND)](https://www.nrel.gov/grid/wind-toolkit.html) is an update and expansion of the Eastern Wind Integration Data Set and Western Wind Integration Data Set. It supports the next generation of wind integration studies.\n\nDocumentation: https://www.nrel.gov/grid/wind-toolkit.html\nContact: wind-toolkit@nrel.gov\nManagedBy: [National Renewable Energy Laboratory](https://www.nrel.gov/)\nUpdateFrequency: As Needed\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/index.json", "https://registry.opendata.aws/nrel-pds-wtk/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nwm_archive/", "public", "File Names from the AWS S3 nwm-archive Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 1.2.", "This dataset has file information from the AWS S3 nwm-archive bucket at https://nwm-archive.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 1.2.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nwm_archive/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nwm_archive.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nwm_archive&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nwm_archive"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nyc_tlc/", "public", "File Names from the AWS S3 nyc-tlc Bucket: New York City Taxi and Limousine Commission (TLC) Trip Record Data: CSV files containing NYC TLC trip data.", "This dataset has file information from the AWS S3 nyc-tlc bucket at https://nyc-tlc.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: New York City Taxi and Limousine Commission (TLC) Trip Record Data\nName2: CSV files containing NYC TLC trip data.\nDescription: Data of trips taken by taxis and for-hire vehicles in New York City.\n\nDocumentation: http://www.nyc.gov/html/tlc/html/about/trip_record_data.shtml\nContact: research@tlc.nyc.gov\nUpdateFrequency: As soon as new data is available to be shared publicly.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nyc_tlc/index.json", "https://registry.opendata.aws/nyc-tlc-trip-records-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nyc_tlc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nyc_tlc&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nyc_tlc"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_oicr_icgc_meta_metadata/", "public", "File Names from the AWS S3 oicr.icgc.meta Bucket with prefix=metadata/: ICGC on AWS: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README", "This dataset has file information from the AWS S3 oicr.icgc.meta bucket at https://oicr.icgc.meta.s3.us-east-1.amazonaws.com/ with prefix=metadata/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ICGC on AWS\nName2: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README\nDescription: The International Cancer Genome Consortium (ICGC) coordinates projects with the common aim of accelerating research into the causes and control of cancer. The PanCancer Analysis of Whole Genomes (PCAWG) study is an international collaboration to identify common patterns of mutation in whole genomes from ICGC. More than 2,400 consistently analyzed genomes corresponding to over 1,100 unique ICGC donors are now freely available on Amazon S3 to credentialed researchers subject to ICGC data sharing policies.\n\nDocumentation: https://dcc.icgc.org/icgc-in-the-cloud/aws\nContact: dcc-support@icgc.org\nUpdateFrequency: New data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_oicr_icgc_meta_metadata/index.json", "https://registry.opendata.aws/icgc/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_oicr_icgc_meta_metadata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_oicr_icgc_meta_metadata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_oicr_icgc_meta_metadata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ooni_data/", "public", "File Names from the AWS S3 ooni-data Bucket: Open Observatory of Network Interference: S3 bucket with data", "This dataset has file information from the AWS S3 ooni-data bucket at https://ooni-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open Observatory of Network Interference\nName2: S3 bucket with data\nDescription: A free software, global observation network for detecting censorship, surveillance and traffic manipulation on the internet.\n\nDocumentation: https://ooni.torproject.org/about/\nContact: https://ooni.torproject.org/get-involved/\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ooni_data/index.json", "https://registry.opendata.aws/ooni/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ooni_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ooni_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ooni_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openaq_fetches/", "public", "File Names from the AWS S3 openaq-fetches Bucket: OpenAQ: Minutely CSVs of global air quality fetched from sources all over the world", "This dataset has file information from the AWS S3 openaq-fetches bucket at https://openaq-fetches.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenAQ\nName2: Minutely CSVs of global air quality fetched from sources all over the world\nDescription: Global, aggregated physical air quality data from public data sources provided by government, research-grade and other sources. These awesome groups do the hard work of measuring these data and publicly sharing them, and our community makes them more universally-accessible to both humans and machines.\n\nDocumentation: https://openaq.org\nContact: info@openaq.org\nManagedBy: [OpenAQ](https://openaq.org)\nUpdateFrequency: Minutely\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openaq_fetches/index.json", "https://registry.opendata.aws/openaq/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openaq_fetches.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openaq_fetches&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openaq_fetches"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_opencitymodel/", "public", "File Names from the AWS S3 opencitymodel Bucket: Open City Model (OCM): Project data files", "This dataset has file information from the AWS S3 opencitymodel bucket at https://opencitymodel.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open City Model (OCM)\nName2: Project data files\nDescription: Open City Model is an initiative to provide cityGML data for all the buildings in the United States. By using other open datasets in conjunction with our own code and algorithms it is our goal to provide 3D geometries for every US building.\n\nDocumentation: https://github.com/opencitymodel/opencitymodel\nContact: https://github.com/opencitymodel/opencitymodel#contact\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_opencitymodel/index.json", "https://registry.opendata.aws/opencitymodel/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_opencitymodel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_opencitymodel&showErrors=false&email=", "Amazon Web Services", "awsS3Files_opencitymodel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openneuro_org/", "public", "File Names from the AWS S3 openneuro.org Bucket: OpenNeuro: All datasets", "This dataset has file information from the AWS S3 openneuro.org bucket at https://openneuro.org.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenNeuro\nName2: All datasets\nDescription: OpenNeuro is a database of openly-available brain imaging data. The data are shared according to a Creative Commons CC0 license, providing a broad range of brain imaging data to researchers and citizen scientists alike. The database primarily focuses on functional magnetic resonance imaging (fMRI) data, but also includes other imaging modalities including structural and diffusion MRI, electroencephalography (EEG), and magnetoencephalograpy (MEG). OpenfMRI is a project of the [Center for Reproducible Neuroscience at Stanford University](http://reproducibility.stanford.edu). Development of the OpenNeuro resource has been funded by the National Science Foundation, National Institute of Mental Health, National Institute on Drug Abuse, and the Laura and John Arnold Foundation.\n\nDocumentation: http://openneuro.org\nContact: Support form at https://openneuro.org\nUpdateFrequency: New datasets deposited every 4-6 days\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openneuro_org/index.json", "https://registry.opendata.aws/openneuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openneuro_org.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openneuro_org&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openneuro_org"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osm_pds/", "public", "File Names from the AWS S3 osm-pds Bucket: OpenStreetMap on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 osm-pds bucket at https://osm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap on AWS\nName2: Imagery and metadata\nDescription: OSM is a free, editable map of the world, created and maintained by volunteers. Regular OSM data archives are made available in Amazon S3.\n\nDocumentation: https://docs.opendata.aws/osm-pds/readme.html\nContact: https://github.com/mojodna/osm-pds-pipelines/issues\nUpdateFrequency: Data is updated weekly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osm_pds/index.json", "https://registry.opendata.aws/osm/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osmlr/", "public", "File Names from the AWS S3 osmlr Bucket: OpenStreetMap Linear Referencing: Manifest and data files", "This dataset has file information from the AWS S3 osmlr bucket at https://osmlr.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap Linear Referencing\nName2: Manifest and data files\nDescription: OSMLR a linear referencing system built on top of OpenStreetMap. OSM has great information about roads around the world and their interconnections, but it lacks the means to give a stable identifier to a stretch of roadway. OSMLR provides a stable set of numerical IDs for every 1 kilometer stretch of roadway around the world. In urban areas, OSMLR IDs are attached to each block of roadways between significant intersections.\n\nDocumentation: https://github.com/opentraffic/osmlr/blob/master/docs/intro.md\nContact: https://github.com/opentraffic/osmlr/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osmlr/index.json", "https://registry.opendata.aws/osmlr/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osmlr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osmlr&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osmlr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_qiime2_data/", "public", "File Names from the AWS S3 qiime2-data Bucket: QIIME 2 User Tutorial Datasets: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs", "This dataset has file information from the AWS S3 qiime2-data bucket at https://qiime2-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: QIIME 2 User Tutorial Datasets\nName2: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs\nDescription: QIIME 2 is a powerful, extensible, and decentralized microbiome analysis package with a focus on data and analysis transparency. QIIME 2 enables researchers to start an analysis with raw DNA sequence data and finish with publication-quality figures and statistical results. This dataset contains the user docs (and related datasets) for QIIME 2.\n\nDocumentation: https://docs.qiime2.org\nContact: https://forum.qiime2.org\nManagedBy: The QIIME 2 Development Team\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_qiime2_data/index.json", "https://registry.opendata.aws/qiime2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_qiime2_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_qiime2_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_qiime2_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_safecast_opendata_public_us_east_1/", "public", "File Names from the AWS S3 safecast-opendata-public-us-east-1 Bucket: Safecast: Bulk exports of air and radiation measurements", "This dataset has file information from the AWS S3 safecast-opendata-public-us-east-1 bucket at https://safecast-opendata-public-us-east-1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Safecast\nName2: Bulk exports of air and radiation measurements\nDescription: An ongoing collection of radiation and air quality measurements taken by devices involved in the Safecast project.\n\nDocumentation: https://github.com/Safecast/safecastapi/wiki/Data-Sets\nContact: https://groups.google.com/forum/#!forum/safecast-devices\nManagedBy: [Safecast](https://safecast.org/)\nUpdateFrequency: Continuous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_safecast_opendata_public_us_east_1/index.json", "https://registry.opendata.aws/safecast/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_safecast_opendata_public_us_east_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_safecast_opendata_public_us_east_1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_safecast_opendata_public_us_east_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s1_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s1-l1c/: Sentinel-1: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s1-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C\nDescription: [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1) is a pair of European radar imaging (SAR) satellites launched in 2014 and 2016. Its 6 days revisit cycle and ability to observe through clouds makes it perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. GRD data is available globally since January 2017.\n\nDocumentation: https://roda.sentinel-hub.com/sentinel-s1-l1c/GRD/readme.html\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s1_l1c/index.json", "https://registry.opendata.aws/sentinel-1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s1_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s1_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s1_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l1c/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l1c/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l2a/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l2a/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l2a/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l2a/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l2a&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l2a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel1_slc_seasia_pds/", "public", "File Names from the AWS S3 sentinel1-slc-seasia-pds Bucket: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan", "This dataset has file information from the AWS S3 sentinel1-slc-seasia-pds bucket at https://sentinel1-slc-seasia-pds.s3.ap-southeast-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan\nName2: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan\nDescription: The S1 Single Look Complex (SLC) dataset contains Synthetic Aperture Radar (SAR) data in the C-Band wavelength. The SAR sensors are installed on a two-satellite (Sentinel-1A and Sentinel-1B) constellation orbiting the Earth with a combined revisit time of six days, operated by the European Space Agency. The S1 SLC data are a Level-1 product that collects radar amplitude and phase information in all-weather, day or night conditions, which is ideal for studying natural hazards and emergency response, land applications, oil spill monitoring, sea-ice conditions, and associated climate change effects.\n\nDocumentation: https://github.com/earthobservatory/sentinel1-opds/\nContact: https://github.com/earthobservatory/sentinel1-opds/\nManagedBy: [Earth Observatory of Singapore, Nanyang Technological University](https://earthobservatory.sg)\nUpdateFrequency: S1 SLC data for the region of interest will be updated regularly, as it becomes available on the Alaska Satellite Facility endpoint.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel1_slc_seasia_pds/index.json", "https://registry.opendata.aws/sentinel1-slc-seasia-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel1_slc_seasia_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel1_slc_seasia_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel1_slc_seasia_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_silo_open_data/", "public", "File Names from the AWS S3 silo-open-data Bucket: SILO climate data on AWS: SILO open data", "This dataset has file information from the AWS S3 silo-open-data bucket at https://silo-open-data.s3.ap-southeast-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SILO climate data on AWS\nName2: SILO open data\nDescription: [SILO](https://www.longpaddock.qld.gov.au/silo) is a database of Australian [climate data](https://www.longpaddock.qld.gov.au/silo/about/climate-variables) from 1889 to the present. It provides continuous, daily time-step [data products](https://www.longpaddock.qld.gov.au/silo/about/data-products) in ready-to-use [formats](https://www.longpaddock.qld.gov.au/silo/about/file-formats-and-samples) for research and operational applications. Gridded SILO data in annual NetCDF format are on AWS. Point data are available from the [SILO website](https://www.longpaddock.qld.gov.au/silo/).\n\nDocumentation: https://www.longpaddock.qld.gov.au/silo/gridded-data\nContact: https://www.longpaddock.qld.gov.au/silo/contact-us\nManagedBy: Queensland Government\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_silo_open_data/index.json", "https://registry.opendata.aws/silo/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_silo_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_silo_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_silo_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_softwareheritage/", "public", "File Names from the AWS S3 softwareheritage Bucket: Software Heritage Graph Dataset: Software Heritage Graph Dataset", "This dataset has file information from the AWS S3 softwareheritage bucket at https://softwareheritage.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Software Heritage Graph Dataset\nName2: Software Heritage Graph Dataset\nDescription: [Software Heritage](https://www.softwareheritage.org/) is the largest existing public archive of software source code and accompanying development history. The Software Heritage Graph Dataset is a fully deduplicated Merkle DAG representation of the Software Heritage archive.\n\nDocumentation: https://wiki.softwareheritage.org/wiki/Graph_Dataset_on_Amazon_Athena\nContact: swh-devel@inria.fr\nUpdateFrequency: Data is updated yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_softwareheritage/index.json", "https://registry.opendata.aws/software-heritage/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_softwareheritage.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_softwareheritage&showErrors=false&email=", "Amazon Web Services", "awsS3Files_softwareheritage"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_spacenet_dataset/", "public", "File Names from the AWS S3 spacenet-dataset Bucket: SpaceNet: Imagery and metadata in a S3 bucket", "This dataset has file information from the AWS S3 spacenet-dataset bucket at https://spacenet-dataset.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SpaceNet\nName2: Imagery and metadata in a S3 bucket\nDescription: SpaceNet, launched in August 2016 as an open innovation project offering a repository of freely available imagery with co-registered map features. Before SpaceNet, computer vision researchers had minimal options to obtain free, precision-labeled, and high-resolution satellite imagery. Today, SpaceNet hosts datasets developed by its own team, along with data sets from projects like IARPA\u2019s Functional Map of the World (fMoW).\n\nDocumentation: https://spacenetchallenge.github.io\nContact: https://github.com/SpaceNetChallenge/utilities/issues\nManagedBy: [SpaceNet](https://spacenet.ai/)\nUpdateFrequency: New imagery and features are added quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_spacenet_dataset/index.json", "https://registry.opendata.aws/spacenet/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_spacenet_dataset.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_spacenet_dataset&showErrors=false&email=", "Amazon Web Services", "awsS3Files_spacenet_dataset"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_unidata_nexrad_level2_chunks/", "public", "File Names from the AWS S3 unidata-nexrad-level2-chunks Bucket: NEXRAD on AWS: NEXRAD Level II real-time data", "This dataset has file information from the AWS S3 unidata-nexrad-level2-chunks bucket at https://unidata-nexrad-level2-chunks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II real-time data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_unidata_nexrad_level2_chunks/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_unidata_nexrad_level2_chunks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_unidata_nexrad_level2_chunks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_unidata_nexrad_level2_chunks"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_usgs_lidar_public/", "public", "File Names from the AWS S3 usgs-lidar-public Bucket: USGS 3DEP LiDAR Point Clouds: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.", "This dataset has file information from the AWS S3 usgs-lidar-public bucket at https://usgs-lidar-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: USGS 3DEP LiDAR Point Clouds\nName2: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.\nDescription: The goal of the [USGS 3D Elevation Program ](https://www.usgs.gov/core-science-systems/ngp/3dep) (3DEP) is to collect elevation data in the form of light detection and ranging (LiDAR) data over the conterminous United States, Hawaii, and the U.S. territories, with data acquired over an 8-year period. This dataset provides two realizations of the 3DEP point cloud data. The first resource is a public access organization provided in [Entwine Point Tiles](https://entwine.io/entwine-point-tile.html) format, which a lossless, full-density, streamable octree based on [LASzip](https://laszip.org) (LAZ) encoding. The second resource is a [Requester Pays](https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html) of the same data in LAZ (Compressed LAS) format. Resource names in both buckets correspond to the USGS project names.\n\nDocumentation: https://github.com/hobu/usgs-lidar/\nContact: https://github.com/hobu/usgs-lidar\nManagedBy: [Hobu, Inc.](https://hobu.co)\nUpdateFrequency: Periodically\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_usgs_lidar_public/index.json", "https://registry.opendata.aws/usgs-lidar/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_usgs_lidar_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_usgs_lidar_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_usgs_lidar_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_web_language_models/", "public", "File Names from the AWS S3 web-language-models Bucket: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl): Parallel Corpora to/from English for all official EU languages", "This dataset has file information from the AWS S3 web-language-models bucket at https://web-language-models.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl)\nName2: Parallel Corpora to/from English for all official EU languages\nDescription: ParaCrawl is a set of large parallel corpora to/from English for all official EU languages by a broad web crawling effort. State-of-the-art methods are applied for the entire processing chain from identifying web sites with translated text all the way to collecting, cleaning and delivering parallel corpora that are ready as training data for CEF.AT and translation memories for DG Translation.\n\nDocumentation: https://paracrawl.eu/releases.html\nContact: For questions regarding the datasets contact Kenneth Heafield, email kheafiel@inf.ed.ac.uk. For reporting any issues about bitextor pipeline visit https://github.com/bitextor/bitextor/issues.\nManagedBy: [ParaCrawl](https://paracrawl.eu)\nUpdateFrequency: New data is added according to ParaCrawl release schedule.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_web_language_models/index.json", "https://registry.opendata.aws/paracrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_web_language_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_web_language_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_web_language_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_xiph_media/", "public", "File Names from the AWS S3 xiph-media Bucket: Xiph.Org Test Media: Video and imagery data", "This dataset has file information from the AWS S3 xiph-media bucket at https://xiph-media.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Xiph.Org Test Media\nName2: Video and imagery data\nDescription: Uncompressed video used for video compression and video processing research.\n\nDocumentation: https://media.xiph.org/aws.html\nContact: Thomas Daede tdaede@xiph.org\nUpdateFrequency: New videos are added when contributors submit them.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_xiph_media/index.json", "https://registry.opendata.aws/xiph-media/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_xiph_media.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_xiph_media&showErrors=false&email=", "Amazon Web Services", "awsS3Files_xiph_media"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ycb_benchmarks/", "public", "File Names from the AWS S3 ycb-benchmarks Bucket: Yale-CMU-Berkeley (YCB) Object and Model Set: Project data files", "This dataset has file information from the AWS S3 ycb-benchmarks bucket at https://ycb-benchmarks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Yale-CMU-Berkeley (YCB) Object and Model Set\nName2: Project data files\nDescription: This project primarily aims to facilitate performance benchmarking in robotics research. The dataset provides mesh models, RGB, RGB-D and point cloud images of over 80 objects. The physical objects are also available via the [YCB benchmarking project](http://www.ycbbenchmarks.com/). The data are collected by two state of the art systems: UC Berkley's scanning rig and the Google scanner. The UC Berkley's scanning rig data provide meshes generated with Poisson reconstruction, meshes generated with volumetric range image integration, textured versions of both meshes, Kinbody files for using the meshes with OpenRAVE, 600 High-resolution RGB images, 600 RGB-D images, and 600 point cloud images for each object. The Google scanner data provides 3 meshes with different resolutions (16k, 64k, and 512k polygons), textured versions of each mesh, Kinbody files for using the meshes with OpenRAVE.\n\nDocumentation: http://www.ycbbenchmarks.com/\nContact: bcalli@wpi.edu\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ycb_benchmarks/index.json", "https://registry.opendata.aws/ycb-benchmarks/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ycb_benchmarks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ycb_benchmarks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ycb_benchmarks"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the June 2020 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.graph", "", "", "public", "GLOBEC NEP Vertical Plankton Tow (VPT) Data, 1997-2001", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nCalifornia Current Program\nVertical Plankton Tow (VPT) Data\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10181&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/vpt%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/vpt.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ncast_no (Cast Number Within the Cruise)\nstation_id\nabund_m3 (Abundance, count m-3)\ncomments\ncounter_id\nd_n_flag (Day/Night Flag)\ngear_area (Mouth Area of Net, m2)\ngear_mesh (Net's Mesh Size, mm)\ngear_type\ngenus_species\nlife_stage\nlocal_code\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecVpt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecVpt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecVpt/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecVpt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecVpt&showErrors=false&email=", "GLOBEC", "erdGlobecVpt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://usgodae.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, the EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\nBeach Monitoring Quality Assurance Project Plan (CWBMONQAPP002):\nhttps://www.pacioos.hawaii.edu/wp-content/uploads/2016/08/Beach_Monitoring_QAPP_CWBMONQAPP002_120507.pdf\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwb_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwb_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwb_water_quality/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/cwb_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwb_water_quality&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "cwb_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.graph", "", "", "public", "HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii", "The Hawaii Institute of Marine Biology (HIMB) automatic weather station (AWS) records hourly measurements of precipitation, air temperature, wind speed and direction, and irradiance. Sensors include an Eppley 295-385 nm ultraviolet (UV) radiometer, a LiCor 200SZ Pyranometer, and a LiCor Quantameter (400-700 nm). The sensors are located on the roof of HIMB's Coral Reef Ecology Laboratory (Point Lab) on Moku o Loe (Coconut Island) in Kaneohe Bay on the windward (eastern) coast of Oahu in Hawaii. An accompanying sea water temperature sensor is located less than 10 m offshore of the weather station at a shallow depth of approximately 1 m.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HIMB: HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nsea_water_temperature (water temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nwind_from_direction_std (standard deviation of wind direction (processed), degrees)\nrainfall_amount (total rainfall (processed), mm)\nshortwave_radiation (downwelling shortwave radiation (processed), W/m2)\nultraviolet_radiation (ultraviolet radiation (processed), W/m2)\nphotosynthetic_radiation (photosynthetically active radiation (processed), umol m-2 s-1)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_atn (QARTOD Attenuated Signal Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (139 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HIMB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HIMB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HIMB/index.json", "https://www.pacioos.hawaii.edu/weather/obs-mokuoloe/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HIMB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HIMB&showErrors=false&email=", "Hawaii Institute of Marine Biology (HIMB)", "AWS-HIMB"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.graph", "", "", "public", "Hui O Ka Wai Ola Water Quality Data", "The goal of the Hui O Ka Wai Ola (Association Of The Living Waters) citizen-science based water quality program is to increase the capacity for monitoring water quality in Maui coastal waters by generating reliable data to assess long-term water-quality conditions and detect temporal trends. These data augment the data produced by the Hawaii Department of Health (DOH) Clean Water Branch (CWB) beach monitoring program on Maui.\n \nData are collected and analyzed every two or three weeks for physical and chemical parameters, including ocean salinity, pH, temperature, organic nutrients (nitrogen and phosphorous compounds), dissolved oxygen (DO), and total suspended sediment (TSS). Some water samples are immediately tested at mobile labs while others are processed for testing at University of Hawaii and/or other labs.\n \nUsers of these data should cite the following publication:\n \nFalinski, Kim, Dana Reed, Tova Callender, Emily Fielding, Robin Newbold, and Alana Yurkanin. (2018). Hui O Ka Wai Ola Water Quality Data [Data set]. Zenodo. \"http://doi.org/10.5281/zenodo.1173717\"\n \nFor further information, please visit:\nhttps://www.huiokawaiola.com\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nlocation_id (sampling site identifier)\nlocation_name\nsample_id (sample identifier)\nsession_id (sampling session identifier)\nwater_temperature (Celsius)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hui_water_quality/index.json", "https://www.huiokawaiola.com", "http://upwell.pfeg.noaa.gov/erddap/rss/hui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hui_water_quality&showErrors=false&email=", "Hui O Ka Wai Ola", "hui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitored water quality at several beaches across the island of Maui in the State of Hawaii during the years 2010-2016. This community-based monitoring effort provided valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites were also monitored for harmful bacteria levels of Enterococcus through 2014-06-26. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours.\n\nData were managed through an online repository, the Coral Reef Monitoring Data Portal (now defunct), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection was coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/maui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/maui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/maui_water_quality/index.json", "https://coral.org/maui/", "http://upwell.pfeg.noaa.gov/erddap/rss/maui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=maui_water_quality&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "maui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys. See\nhttps://www.ndbc.noaa.gov/measdes.shtml for a description of the measurements.\n\nThe source data from NOAA NDBC has different column names, different units,\nand different missing values in different files, and other problems\n(notably, lots of rows with duplicate or different values for the same time\npoint). This dataset is a standardized, reformatted, and lightly edited\nversion of that source data, created by NOAA NMFS SWFSC ERD (email:\nerd.data at noaa.gov). Before 2020-01-29, this dataset only had the data\nthat was closest to a given hour, rounded to the nearest hour. Now, this\ndataset has all of the data available from NDBC with the original time\nvalues. If there are multiple source rows for a given buoy for a given\ntime, only the row with the most non-NaN data values is kept. If there is\na gap in the data, a row of missing values is inserted (which causes a nice\ngap when the data is graphed). Also, some impossible data values are\nremoved, but this data is not perfectly clean. This dataset is now updated\nevery 5 minutes.\n\nThis dataset has both historical data (quality controlled, before\n2020-06-01T00:00:00Z) and near real time data (less quality controlled,\nwhich may change at any time, from 2020-06-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Identifier)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.graph", "", "", "public", "NEFSC Continuous Plankton Recorder", "A summary for the data\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ncruise\nsample\nlatitude (degrees_north)\nlongitude (degrees_east)\nphyto_color_indx (Phytoplankton Color Index)\nmarmap_tax_code (Marmap Taxonomic Code)\nmarmap_stage_code\nabundance (per 100 cubic meters)\nlife_stage\ntaxonomic_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/wocecpr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/wocecpr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/wocecpr/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "http://upwell.pfeg.noaa.gov/erddap/rss/wocecpr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=wocecpr&showErrors=false&email=", "NEFSC", "wocecpr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "", "public", "North Pacific High, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.graph", "", "", "public", "OSMC Argo Profile data", "OSMC Argo Profile data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\norganization_name\ncountry_name\nplatform_type_name\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nparameter_name\ndaily_obs_count\nobservation_depth\nobservation_value\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_PROFILERS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_PROFILERS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_PROFILERS/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_PROFILERS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_PROFILERS&showErrors=false&email=", "OSMC", "OSMC_PROFILERS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.graph", "", "", "public", "OSMC normalized observations from GTS", "OSMC normalized In-situ Real time GTS data\n\ncdm_data_type = Point\nVARIABLES:\nPLATFORM_CODE (Station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform\nparameter\nOBSERVATION_VALUE\nOBSERVATION_DEPTH\nCOUNTRY_NAME\norganization_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_Points_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_Points_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_Points/index.json", "https://www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_Points.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_Points&showErrors=false&email=", "OSMC", "OSMC_Points"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001.graph", "", "", "public", "PacIOOS Beach Camera 001: Waikiki, Oahu, Hawaii", "A digital camera on top of the Sheraton Waikiki hotel was used to photograph the shoreline of Waikiki beach along the South Shore of the island of Oahu in the State of Hawaii. The oblique camera view presented here captures the shoreline leading southeast towards Diamond Head crater. It operated for over 4.5 years between February 5, 2009 and October 13, 2013. Capturing hourly snapshots at a set vantage point during the local daytime hours of 6:00 AM or 7:00 AM to 5:00 PM, these images are useful for tracking beach dynamics such as wave run-up, sand movement, and turbidity plumes over time. The camera was mounted on top of a 3 meter wall extending above the roof surface for a total height of 93 meters above ground level or 96 meters above mean sea level. See also BEACHCAM-002 for an alternate camera view from the same location pointing directly downwards.\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (m)\naboveGround (Height, m)\nurl\nname (File Name)\nsize (bytes)\nfileType (File Type)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/BEACHCAM-001_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/BEACHCAM-001_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/BEACHCAM-001/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/BEACHCAM-001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=BEACHCAM-001&showErrors=false&email=", "University of Hawaii", "BEACHCAM-001"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_4"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_2/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_2&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_6/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_6&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_7/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_7&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_7"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_8/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_8&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_9/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_9&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.graph", "", "", "public", "PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-04 is located in Hilo Bay on the east side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-04: PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-04/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-hilo/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-04&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-04"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.graph", "", "", "public", "PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-05 is located in Pelekane Bay near Kawaihae Harbor on the west side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-05: PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-05/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-pelekane/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-05&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-05"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.graph", "", "", "public", "PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii", "The Pacific Islands Ocean Observing System (PacIOOS) operates a Davis Instruments automatic weather station (AWS) near the entrance to Honolulu Harbor on the leeward (western) coast of Oahu in Hawaii to aid with navigation. The station records measurements every 5 minutes of air temperature, wind speed and direction, precipitation, relative humidity, and air pressure. Sensors are located at Pier 1, installed on a tower at an elevation of 64 feet (19.5 meters) above sea level. The station is owned by the Hawaii Pilots Association (HPA). PacIOOS maintains the station and provides data access.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HNLPier1: PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nrainfall_rate (rain rate (processed), mm/h)\nrelative_humidity (relative humidity (processed), %)\nair_pressure (air pressure (processed), millibars)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_gap (QARTOD Gap Test (processed), 0)\nair_temperature_qc_syn (QARTOD Syntax Test (processed), 0)\nair_temperature_qc_loc (QARTOD Location Test (processed), 0)\nair_temperature_qc_rng (QARTOD Gross Range Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_spk (QARTOD Spike Test (processed), 0)\n... (92 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HNLPier1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HNLPier1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HNLPier1/index.json", "https://www.pacioos.hawaii.edu/weather/obs-honolulu/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HNLPier1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HNLPier1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "AWS-HNLPier1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "https://tidesandcurrents.noaa.gov/gomoos.html", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/main.aspx?Division=PRD&ParentMenuId=147&id=1221", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2017, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2017, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2017, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"] + ] + } + } + recorded_at: 2020-07-15 22:22:26 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.csv?&time%3E%3D2007-06-24&time%3C%3D2007-07-01 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:26 GMT + x-frame-options: SAMEORIGIN + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:22:26 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=erdCinpKfmBT_97f6_55be_e3ba.csv + content-encoding: gzip + content-type: text/csv;charset=ISO-8859-1 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + station,longitude,latitude,depth,time,Aplysia_californica_Mean_Density,Aplysia_californica_StdDev,Aplysia_californica_StdErr,Crassedoma_giganteum_Mean_Density,Crassedoma_giganteum_StdDev,Crassedoma_giganteum_StdErr,Haliotis_corrugata_Mean_Density,Haliotis_corrugata_StdDev,Haliotis_corrugata_StdErr,Haliotis_fulgens_Mean_Density,Haliotis_fulgens_StdDev,Haliotis_fulgens_StdErr,Haliotis_rufescens_Mean_Density,Haliotis_rufescens_StdDev,Haliotis_rufescens_StdErr,Kelletia_kelletii_Mean_Density,Kelletia_kelletii_StdDev,Kelletia_kelletii_StdErr,Lophogorgia_chilensis_Mean_Density,Lophogorgia_chilensis_StdDev,Lophogorgia_chilensis_StdErr,Lytechinus_anamesus_Mean_Density,Lytechinus_anamesus_StdDev,Lytechinus_anamesus_StdErr,Megathura_crenulata_Mean_Density,Megathura_crenulata_StdDev,Megathura_crenulata_StdErr,Muricea_californica_Mean_Density,Muricea_californica_StdDev,Muricea_californica_StdErr,Muricea_fruticosa_Mean_Density,Muricea_fruticosa_StdDev,Muricea_fruticosa_StdErr,Panulirus_interruptus_Mean_Density,Panulirus_interruptus_StdDev,Panulirus_interruptus_StdErr,Pycnopodia_helianthoides_Mean_Density,Pycnopodia_helianthoides_StdDev,Pycnopodia_helianthoides_StdErr,Stylaster_californica_Mean_Density,Stylaster_californica_StdDev,Stylaster_californica_StdErr,Tethya_aurantia_Mean_Density,Tethya_aurantia_StdDev,Tethya_aurantia_StdErr,Urticina_lofotensis_Mean_Density,Urticina_lofotensis_StdDev,Urticina_lofotensis_StdErr + ,degrees_east,degrees_north,m,UTC,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,,,m-2,, + Anacapa_AdmiralsReef.nc.gz,-119.416666666667,34.0,16.0,2007-07-01T00:00:00Z,0.009722223,0.01,0.0032166007,0.06,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.05,0.01,0.06,0.03,0.009049605,0.0,0.0,0.0,0.06,0.02,0.006197167,0.01,0.02,0.0059664934,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.06,0.01,0.0,0.0,0.0 + Anacapa_BlackSeaBassReef.nc.gz,-119.383333333333,34.0,17.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0057418267,0.0,0.0,0.0,0.16,0.05,0.01,0.0013888889,0.0048112525,0.0013888889,0.0027777778,0.006487491,0.0018727774,0.04,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0 + Anacapa_CathedralCove.nc.gz,-119.366666666667,34.0,6.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.05,0.09,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.009250838,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + Anacapa_EastFishCamp.nc.gz,-119.383333333333,34.0,11.0,2007-07-01T00:00:00Z,0.16,0.17,0.05,0.04,0.02,0.0078007416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14,0.1,0.03,0.01,0.02,0.008206099,0.76,0.55,0.16,0.19,0.09,0.02,0.01,0.01,0.0031337559,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.03,0.01,0.0,0.0,0.0 + Anacapa_Keyhole.nc.gz,-119.416666666667,34.0,11.0,2007-07-01T00:00:00Z,0.03,0.01,0.0043317466,0.03,0.03,0.008734052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.31,0.1,0.03,0.01,0.01,0.0042705894,0.009722223,0.01,0.0038151375,0.04,0.04,0.01,0.008333334,0.01,0.0038380516,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + Anacapa_LandingCove.nc.gz,-119.35,34.0166666666667,5.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.18,0.09,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.007349309,0.009722223,0.02,0.0069444445,0.0,0.0,0.0,0.04,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006487491,0.0,0.0,0.0,0.0,0.0,0.0,0.009722223,0.01,0.004792993,0.0013888889,0.0048112525,0.0013888889 + Anacapa_Lighthouse.nc.gz,-119.35,34.0,8.0,2007-07-01T00:00:00Z,0.008333334,0.01,0.0038380516,0.01,0.01,0.0047377935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.24,0.29,0.08,0.13,0.07,0.02,0.01,0.02,0.006634497,0.04,0.02,0.005922242,0.31,0.16,0.04,0.04,0.09,0.02,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.05,0.01,0.0,0.0,0.0 + SanClemente_BoyScoutCamp.nc.gz,-118.533333333333,33.0,11.0,2007-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_EelPoint.nc.gz,-118.533333333333,32.95,10.0,2007-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_HorseBeachCove.nc.gz,-118.4,32.8,13.0,2007-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanClemente_NorthwestHarbor.nc.gz,-118.583333333333,33.0333333333333,11.0,2007-07-01T00:00:00Z,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN + SanMiguel_HareRock.nc.gz,-120.35,34.05,5.0,2007-07-01T00:00:00Z,0.01,0.01,0.0042705894,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.01,0.02,0.007526142,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18,0.07,0.02,0.0,0.0,0.0,0.09,0.08,0.02,0.01,0.01,0.0057418267 + SanMiguel_MiracleMile.nc.gz,-120.4,34.0166666666667,10.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.0,0.0,0.0,0.66,0.54,0.15,0.03,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.02,0.007432355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.02,0.00803332,0.0,0.0,0.0,0.19,0.08,0.02,0.2,0.12,0.03 + SanMiguel_WyckoffLedge.nc.gz,-120.383333333333,34.0166666666667,13.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0047377935,0.0,0.0,0.0,0.0,0.0,0.0,0.09,0.09,0.02,0.55,0.12,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.01,0.0042705894,0.0,0.0,0.0,0.21,0.17,0.05,0.39,0.23,0.06 + SantaBarbara_ArchPoint.nc.gz,-119.016666666667,33.4666666666667,8.0,2007-07-01T00:00:00Z,0.08,0.05,0.01,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.004166667,0.03,0.03,0.01,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_CatCanyon.nc.gz,-119.033333333333,33.45,8.0,2007-07-01T00:00:00Z,0.15,0.06,0.02,0.009722223,0.01,0.0043317466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.004166667,0.0075377836,0.0021759707,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 + SantaBarbara_GraveyardCanyon.nc.gz,-119.016666666667,33.4666666666667,13.0,2007-07-01T00:00:00Z,0.15,0.12,0.03,0.0027777778,0.009622505,0.0027777778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.05,0.05,0.01,0.42,0.52,0.15,0.01,0.01,0.0043317466,0.02,0.02,0.0059811715,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.06,0.01,0.0,0.0,0.0 + SantaBarbara_SESeaLionRookery.nc.gz,-119.016666666667,33.45,15.0,2007-07-01T00:00:00Z,0.04,0.04,0.01,0.009722223,0.008582144,0.0024774517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.04,0.01,0.01,0.02,0.008322805,0.01,0.02,0.007241137,0.05,0.03,0.01,0.004166667,0.01,0.0029905858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11,0.06,0.01,0.0,0.0,0.0 + SantaBarbara_SoutheastReef.nc.gz,-119.016666666667,33.45,11.0,2007-07-01T00:00:00Z,0.12,0.16,0.04,0.03,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0058025885,0.0,0.0,0.0,0.0069444445,0.008582144,0.0024774517,0.009722223,0.01,0.0038151375,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889 + SantaBarbara_WebstersArch.nc.gz,-119.05,33.4666666666667,14.0,2007-07-01T00:00:00Z,0.26,0.13,0.03,0.02,0.02,0.0065947296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0069444445,0.01,0.0032166007,0.0055555557,0.008206099,0.0023688967,0.15,0.1,0.02,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0055555557,0.01,0.0031337559,0.0069444445,0.01,0.0032166007,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0 + SantaCruz_CavernPoint.nc.gz,-119.566666666667,34.05,13.0,2007-07-01T00:00:00Z,0.08,0.03,0.009174698,0.25,0.13,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.22,0.13,0.04,0.04,0.04,0.01,0.18,0.08,0.02,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.07,0.02,0.0,0.0,0.0 + SantaCruz_DevilsPeakMember.nc.gz,-119.6,34.0333333333333,13.0,2007-07-01T00:00:00Z,0.02,0.02,0.0063232244,0.1,0.1,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.009622505,0.0027777778,0.23,0.44,0.12,0.03,0.06,0.01,0.35,0.11,0.03,0.0055555557,0.008206099,0.0023688967,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.02,0.02,0.0058477456,0.0,0.0,0.0 + SantaCruz_FrysHarbor.nc.gz,-119.75,34.05,13.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.03,0.02,0.006309342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.24,0.26,0.07,0.0013888889,0.0048112525,0.0013888889,0.07,0.07,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.01,0.0,0.0,0.0,0.05,0.03,0.01,0.0,0.0,0.0 + SantaCruz_GullIslandSouth.nc.gz,-119.816666666667,33.9333333333333,15.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0042705894,0.02,0.01,0.004792993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.01,0.0041030496,0.13,0.18,0.05,0.19,0.08,0.02,0.0,0.0,0.0 + SantaCruz_LittleScorpion.nc.gz,-119.533333333333,34.0333333333333,11.0,2007-07-01T00:00:00Z,0.02,0.03,0.01,0.05,0.03,0.009945136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.009049605,0.13,0.15,0.04,0.05,0.05,0.01,0.48,0.21,0.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0058025885,0.0,0.0,0.0 + SantaCruz_PedroReef.nc.gz,-119.516666666667,34.0333333333333,9.0,2007-07-01T00:00:00Z,0.02,0.03,0.008814,0.04,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.27,0.16,0.04,0.85,0.79,0.22,0.06,0.04,0.01,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.06,0.01,0.0,0.0,0.0 + SantaCruz_PelicanBay.nc.gz,-119.7,34.0166666666667,8.0,2007-07-01T00:00:00Z,0.01,0.02,0.0060973214,0.06,0.05,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.14,0.11,0.03,1.26,0.51,0.14,0.004166667,0.0075377836,0.0021759707,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.0069444445,0.0,0.0,0.0 + SantaCruz_PotatoPasture.nc.gz,-119.566666666667,34.05,11.0,2007-07-01T00:00:00Z,0.01,0.01,0.004166667,0.15,0.2,0.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.04,0.01,0.16,0.14,0.04,0.7,1.43,0.41,0.1,0.11,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.06,0.05,0.01,0.0,0.0,0.0 + SantaCruz_ScorpionAnchorage.nc.gz,-119.533333333333,34.0333333333333,5.0,2007-07-01T00:00:00Z,0.01,0.01,0.004792993,0.01,0.01,0.0052135917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.11,0.06,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0069444445,0.01,0.0032166007,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.03,0.009585986,0.0,0.0,0.0 + SantaCruz_YellowBanks.nc.gz,-119.55,33.9833333333333,15.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.03,0.009622505,0.06,0.03,0.009363887,0.11,0.09,0.02,0.004166667,0.01,0.0029905858,0.01,0.01,0.0045102453,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.008333334,0.01,0.0043519414,0.0,0.0,0.0,0.09,0.03,0.008814,0.0013888889,0.0048112525,0.0013888889 + SantaRosa_Chickasaw.nc.gz,-120.133333333333,33.9,10.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.02,0.007630275,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.006804138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.1,0.06,0.01,0.06,0.03,0.01 + SantaRosa_ClusterPoint.nc.gz,-120.183333333333,33.9166666666667,12.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.04,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.01,0.02,0.0058025885,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.03,0.008971757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.01,0.005025189,0.0,0.0,0.0,0.35,0.16,0.04,0.09,0.06,0.02 + SantaRosa_JohnsonsLeeNorth.nc.gz,-120.1,33.8833333333333,11.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.01,0.01,0.0035533453,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.02,0.008571921,0.0013888889,0.0048112525,0.0013888889,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.05,0.01,0.0,0.0,0.0,0.12,0.05,0.01,0.01,0.01,0.004644337 + SantaRosa_JohnsonsLeeSouth.nc.gz,-120.1,33.8833333333333,13.0,2007-07-01T00:00:00Z,0.0013888889,0.0048112525,0.0013888889,0.01,0.02,0.0058477456,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.03,0.03,0.01,0.05,0.02,0.008065999,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.15,0.04,0.0,0.0,0.0,0.41,0.1,0.02,0.18,0.13,0.03 + SantaRosa_RodesReef.nc.gz,-120.1,34.0166666666667,13.0,2007-07-01T00:00:00Z,0.0055555557,0.01,0.0031337559,0.0055555557,0.008206099,0.0023688967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.07,0.02,0.0,0.0,0.0,0.004166667,0.01,0.0029905858,0.02,0.03,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.03,0.00927923,0.0,0.0,0.0,0.25,0.1,0.02,0.06,0.03,0.009803055 + SantaRosa_SouthPoint.nc.gz,-120.116666666667,33.8833333333333,13.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05,0.04,0.01,0.0055555557,0.01,0.0031337559,0.0,0.0,0.0,0.0,0.0,0.0,0.004166667,0.0075377836,0.0021759707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027777778,0.006487491,0.0018727774,0.004166667,0.01,0.004166667,0.1,0.04,0.01,0.02,0.02,0.0071436088 + SantaRosa_TrancionCanyon.nc.gz,-120.15,33.9,9.0,2007-07-01T00:00:00Z,0.0,0.0,0.0,0.05,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0013888889,0.0048112525,0.0013888889,0.0069444445,0.01,0.0038151375,0.0013888889,0.0048112525,0.0013888889,0.0,0.0,0.0,0.04,0.04,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008333334,0.01,0.0032437455,0.0,0.0,0.0,0.21,0.12,0.03,0.06,0.04,0.01 + recorded_at: 2020-07-15 22:22:26 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 diff --git a/tests/vcr_cassettes/tabledap_units_fails_well.yml b/tests/vcr_cassettes/tabledap_units_fails_well.yml new file mode 100644 index 0000000..352709d --- /dev/null +++ b/tests/vcr_cassettes/tabledap_units_fails_well.yml @@ -0,0 +1,99 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:47 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=erdCinpKfmBT_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: ASCII-8BIT + file: no + string: ewogICJ0YWJsZSI6IHsKICAgICJjb2x1bW5OYW1lcyI6IFsiUm93IFR5cGUiLCAiVmFyaWFibGUgTmFtZSIsICJBdHRyaWJ1dGUgTmFtZSIsICJEYXRhIFR5cGUiLCAiVmFsdWUiXSwKICAgICJjb2x1bW5UeXBlcyI6IFsiU3RyaW5nIiwgIlN0cmluZyIsICJTdHJpbmciLCAiU3RyaW5nIiwgIlN0cmluZyJdLAogICAgInJvd3MiOiBbCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJhY2tub3dsZWRnZW1lbnQiLCAiU3RyaW5nIiwgIk5PQUEgTkVTRElTIENPQVNUV0FUQ0gsIE5PQUEgU1dGU0MgRVJELCBDaGFubmVsIElzbGFuZHMgTmF0aW9uYWwgUGFyaywgTmF0aW9uYWwgUGFyayBTZXJ2aWNlIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJjZG1fZGF0YV90eXBlIiwgIlN0cmluZyIsICJUaW1lU2VyaWVzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJjZG1fdGltZXNlcmllc192YXJpYWJsZXMiLCAiU3RyaW5nIiwgInN0YXRpb24sIGxvbmdpdHVkZSwgbGF0aXR1ZGUiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgImNvbnRyaWJ1dG9yX2VtYWlsIiwgIlN0cmluZyIsICJEYXZpZF9LdXNobmVyQG5wcy5nb3YiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgImNvbnRyaWJ1dG9yX25hbWUiLCAiU3RyaW5nIiwgIkNoYW5uZWwgSXNsYW5kcyBOYXRpb25hbCBQYXJrLCBOYXRpb25hbCBQYXJrIFNlcnZpY2UiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgImNvbnRyaWJ1dG9yX3JvbGUiLCAiU3RyaW5nIiwgIlNvdXJjZSBvZiBkYXRhLiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAiQ29udmVudGlvbnMiLCAiU3RyaW5nIiwgIkNPQVJEUywgQ0YtMS42LCBBQ0RELTEuMywgTkNDU1YtMS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJjcmVhdG9yX2VtYWlsIiwgIlN0cmluZyIsICJlcmQuZGF0YUBub2FhLmdvdiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAiY3JlYXRvcl9uYW1lIiwgIlN0cmluZyIsICJOT0FBIE5NRlMgU1dGU0MgRVJEIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJjcmVhdG9yX3R5cGUiLCAiU3RyaW5nIiwgImluc3RpdHV0aW9uIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJjcmVhdG9yX3VybCIsICJTdHJpbmciLCAiaHR0cHM6Ly93d3cucGZlZy5ub2FhLmdvdiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAiZGF0ZV9jcmVhdGVkIiwgIlN0cmluZyIsICIyMDA4LTA2LTExVDIxOjM2OjA2WiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAiZGF0ZV9pc3N1ZWQiLCAiU3RyaW5nIiwgIjIwMDgtMDYtMTFUMjE6MzY6MDZaIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJFYXN0ZXJubW9zdF9FYXN0aW5nIiwgImRvdWJsZSIsICItMTE4LjQiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgImZlYXR1cmVUeXBlIiwgIlN0cmluZyIsICJUaW1lU2VyaWVzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJnZW9zcGF0aWFsX2xhdF9tYXgiLCAiZG91YmxlIiwgIjM0LjA1Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJnZW9zcGF0aWFsX2xhdF9taW4iLCAiZG91YmxlIiwgIjMyLjgiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgImdlb3NwYXRpYWxfbGF0X3VuaXRzIiwgIlN0cmluZyIsICJkZWdyZWVzX25vcnRoIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJnZW9zcGF0aWFsX2xvbl9tYXgiLCAiZG91YmxlIiwgIi0xMTguNCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAiZ2Vvc3BhdGlhbF9sb25fbWluIiwgImRvdWJsZSIsICItMTIwLjQiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgImdlb3NwYXRpYWxfbG9uX3VuaXRzIiwgIlN0cmluZyIsICJkZWdyZWVzX2Vhc3QiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgImdlb3NwYXRpYWxfdmVydGljYWxfbWF4IiwgImRvdWJsZSIsICIxNy4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJnZW9zcGF0aWFsX3ZlcnRpY2FsX21pbiIsICJkb3VibGUiLCAiNS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJnZW9zcGF0aWFsX3ZlcnRpY2FsX3Bvc2l0aXZlIiwgIlN0cmluZyIsICJkb3duIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJnZW9zcGF0aWFsX3ZlcnRpY2FsX3VuaXRzIiwgIlN0cmluZyIsICJtIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJoaXN0b3J5IiwgIlN0cmluZyIsICJDaGFubmVsIElzbGFuZHMgTmF0aW9uYWwgUGFyaywgTmF0aW9uYWwgUGFyayBTZXJ2aWNlXG4yMDA4LTA2LTExVDIxOjM2OjA2WiBOT0FBIENvYXN0V2F0Y2ggKFdlc3QgQ29hc3QgTm9kZSkgYW5kIE5PQUEgU0ZTQyBFUkQiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgImluZm9VcmwiLCAiU3RyaW5nIiwgImh0dHA6Ly93d3cubnBzLmdvdi9jaGlzL25hdHVyZXNjaWVuY2UvaW5kZXguaHRtIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJpbnN0aXR1dGlvbiIsICJTdHJpbmciLCAiQ0lOUCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAia2V5d29yZHMiLCAiU3RyaW5nIiwgImFuYW1lc3VzLCBhcGx5c2lhLCBhcXVhdGljLCBhdG1vc3BoZXJlLCBhdXJhbnRpYSwgYmFuZCwgYmlvbG9neSwgYmlvc3BoZXJlLCBjYWxpZm9ybmljYSwgY2hhbm5lbCwgY2hpbGVuc2lzLCBjaW5wLCBjb2FzdGFsLCBjb3JydWdhdGEsIGNyYXNzZWRvbWEsIGNyZW51bGF0YSwgZGVuc2l0eSwgZGVwdGgsIEVhcnRoIFNjaWVuY2UgPiBCaW9zcGhlcmUgPiBBcXVhdGljIEVjb3N5c3RlbXMgPiBDb2FzdGFsIEhhYml0YXQsIEVhcnRoIFNjaWVuY2UgPiBCaW9zcGhlcmUgPiBBcXVhdGljIEVjb3N5c3RlbXMgPiBNYXJpbmUgSGFiaXRhdCwgZWNvc3lzdGVtcywgZm9yZXN0LCBmcnV0aWNvc2EsIGZ1bGdlbnMsIGdpZ2FudGV1bSwgaGFiaXRhdCwgaGFsaW90aXMsIGhlaWdodCwgaGVsaWFudGhvaWRlcywgaWRlbnRpZmllciwgaW50ZXJydXB0dXMsIGlzbGFuZHMsIGtlbGxldGlhLCBrZWxsZXRpaSwga2VscCwgbG9mb3RlbnNpcywgbG9waG9nb3JnaWEsIGx5dGVjaGludXMsIG1hcmluZSwgbWVhbiwgbWVnYXRodXJhLCBtb25pdG9yaW5nLCBtdXJpY2VhLCBwYW51bGlydXMsIHB5Y25vcG9kaWEsIHJ1ZmVzY2Vucywgc3RhdGlvbiwgc3RhdGlzdGljcywgc3RkZGV2LCBzdGRlcnIsIHN0eWxhc3Rlciwgc3VydmV5LCB0ZXRoeWEsIHRpbWUsIHRyYW5zZWN0LCB1cnRpY2luYSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAia2V5d29yZHNfdm9jYWJ1bGFyeSIsICJTdHJpbmciLCAiR0NNRCBTY2llbmNlIEtleXdvcmRzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJsaWNlbnNlIiwgIlN0cmluZyIsICJUaGUgZGF0YSBtYXkgYmUgdXNlZCBhbmQgcmVkaXN0cmlidXRlZCBmb3IgZnJlZSBidXQgaXMgbm90IGludGVuZGVkIGZvciBsZWdhbCB1c2UsIHNpbmNlIGl0IG1heSBjb250YWluIGluYWNjdXJhY2llcy4gTmVpdGhlciB0aGUgZGF0YSBDb250cmlidXRvciwgQ29hc3RXYXRjaCwgTk9BQSwgbm9yIHRoZSBVbml0ZWQgU3RhdGVzIEdvdmVybm1lbnQsIG5vciBhbnkgb2YgdGhlaXIgZW1wbG95ZWVzIG9yIGNvbnRyYWN0b3JzLCBtYWtlcyBhbnkgd2FycmFudHksIGV4cHJlc3Mgb3IgaW1wbGllZCwgaW5jbHVkaW5nIHdhcnJhbnRpZXMgb2YgbWVyY2hhbnRhYmlsaXR5IGFuZCBmaXRuZXNzIGZvciBhIHBhcnRpY3VsYXIgcHVycG9zZSwgb3IgYXNzdW1lcyBhbnkgbGVnYWwgbGlhYmlsaXR5IGZvciB0aGUgYWNjdXJhY3ksIGNvbXBsZXRlbmVzcywgb3IgdXNlZnVsbmVzcywgb2YgdGhpcyBpbmZvcm1hdGlvbi4gIE5hdGlvbmFsIFBhcmsgU2VydmljZSBEaXNjbGFpbWVyOiBUaGUgTmF0aW9uYWwgUGFyayBTZXJ2aWNlIHNoYWxsIG5vdCBiZSBoZWxkIGxpYWJsZSBmb3IgaW1wcm9wZXIgb3IgaW5jb3JyZWN0IHVzZSBvZiB0aGUgZGF0YSBkZXNjcmliZWQgYW5kL29yIGNvbnRhaW5lZCBoZXJlaW4uIFRoZXNlIGRhdGEgYW5kIHJlbGF0ZWQgZ3JhcGhpY3MgYXJlIG5vdCBsZWdhbCBkb2N1bWVudHMgYW5kIGFyZSBub3QgaW50ZW5kZWQgdG8gYmUgdXNlZCBhcyBzdWNoLiBUaGUgaW5mb3JtYXRpb24gY29udGFpbmVkIGluIHRoZXNlIGRhdGEgaXMgZHluYW1pYyBhbmQgbWF5IGNoYW5nZSBvdmVyIHRpbWUuIFRoZSBkYXRhIGFyZSBub3QgYmV0dGVyIHRoYW4gdGhlIG9yaWdpbmFsIHNvdXJjZXMgZnJvbSB3aGljaCB0aGV5IHdlcmUgZGVyaXZlZC4gSXQgaXMgdGhlIHJlc3BvbnNpYmlsaXR5IG9mIHRoZSBkYXRhIHVzZXIgdG8gdXNlIHRoZSBkYXRhIGFwcHJvcHJpYXRlbHkgYW5kIGNvbnNpc3RlbnQgd2l0aGluIHRoZSBsaW1pdGF0aW9uIG9mIGdlb3NwYXRpYWwgZGF0YSBpbiBnZW5lcmFsIGFuZCB0aGVzZSBkYXRhIGluIHBhcnRpY3VsYXIuIFRoZSByZWxhdGVkIGdyYXBoaWNzIGFyZSBpbnRlbmRlZCB0byBhaWQgdGhlIGRhdGEgdXNlciBpbiBhY3F1aXJpbmcgcmVsZXZhbnQgZGF0YTsgaXQgaXMgbm90IGFwcHJvcHJpYXRlIHRvIHVzZSB0aGUgcmVsYXRlZCBncmFwaGljcyBhcyBkYXRhLiBUaGUgTmF0aW9uYWwgUGFyayBTZXJ2aWNlIGdpdmVzIG5vIHdhcnJhbnR5LCBleHByZXNzZWQgb3IgaW1wbGllZCwgYXMgdG8gdGhlIGFjY3VyYWN5LCByZWxpYWJpbGl0eSwgb3IgY29tcGxldGVuZXNzIG9mIHRoZXNlIGRhdGEuIEl0IGlzIHN0cm9uZ2x5IHJlY29tbWVuZGVkIHRoYXQgdGhlc2UgZGF0YSBhcmUgZGlyZWN0bHkgYWNxdWlyZWQgZnJvbSBhbiBOUFMgc2VydmVyIGFuZCBub3QgaW5kaXJlY3RseSB0aHJvdWdoIG90aGVyIHNvdXJjZXMgd2hpY2ggbWF5IGhhdmUgY2hhbmdlZCB0aGUgZGF0YSBpbiBzb21lIHdheS4gQWx0aG91Z2ggdGhlc2UgZGF0YSBoYXZlIGJlZW4gcHJvY2Vzc2VkIHN1Y2Nlc3NmdWxseSBvbiBjb21wdXRlciBzeXN0ZW1zIGF0IHRoZSBOYXRpb25hbCBQYXJrIFNlcnZpY2UsIG5vIHdhcnJhbnR5IGV4cHJlc3NlZCBvciBpbXBsaWVkIGlzIG1hZGUgcmVnYXJkaW5nIHRoZSB1dGlsaXR5IG9mIHRoZSBkYXRhIG9uIG90aGVyIHN5c3RlbXMgZm9yIGdlbmVyYWwgb3Igc2NpZW50aWZpYyBwdXJwb3Nlcywgbm9yIHNoYWxsIHRoZSBhY3Qgb2YgZGlzdHJpYnV0aW9uIGNvbnN0aXR1dGUgYW55IHN1Y2ggd2FycmFudHkuIFRoaXMgZGlzY2xhaW1lciBhcHBsaWVzIGJvdGggdG8gaW5kaXZpZHVhbCB1c2Ugb2YgdGhlIGRhdGEgYW5kIGFnZ3JlZ2F0ZSB1c2Ugd2l0aCBvdGhlciBkYXRhLiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAibmFtaW5nX2F1dGhvcml0eSIsICJTdHJpbmciLCAiZ292Lm5vYWEucGZlZy5jb2FzdHdhdGNoIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJOb3J0aGVybm1vc3RfTm9ydGhpbmciLCAiZG91YmxlIiwgIjM0LjA1Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJwcm9qZWN0IiwgIlN0cmluZyIsICJOT0FBIE5NRlMgU1dGU0MgRVJEIChodHRwczovL3d3dy5wZmVnLm5vYWEuZ292LykiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgInJlZmVyZW5jZXMiLCAiU3RyaW5nIiwgIkNoYW5uZWwgSXNsYW5kcyBOYXRpb25hbCBQYXJrcyBJbnZlbnRvcnkgYW5kIE1vbml0b3JpbmcgaW5mb3JtYXRpb246IGh0dHA6Ly9uYXR1cmUubnBzLmdvdi9pbS91bml0cy9tZWRuIC4gS2VscCBGb3Jlc3QgTW9uaXRvcmluZyBQcm90b2NvbHM6IGh0dHA6Ly93d3cubmF0dXJlLm5wcy5nb3YvaW0vdW5pdHMvY2hpcy9SZXBvcnRzX1BERi9NYXJpbmUvS0ZNLUhhbmRib29rVm9sMS5wZGYgLiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAic291cmNlVXJsIiwgIlN0cmluZyIsICIobG9jYWwgZmlsZXMpIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJTb3V0aGVybm1vc3RfTm9ydGhpbmciLCAiZG91YmxlIiwgIjMyLjgiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgInN0YW5kYXJkX25hbWVfdm9jYWJ1bGFyeSIsICJTdHJpbmciLCAiQ0YgU3RhbmRhcmQgTmFtZSBUYWJsZSB2NzAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgInN1YnNldFZhcmlhYmxlcyIsICJTdHJpbmciLCAic3RhdGlvbiwgbG9uZ2l0dWRlLCBsYXRpdHVkZSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAic3VtbWFyeSIsICJTdHJpbmciLCAiVGhpcyBkYXRhc2V0IGZyb20gdGhlIENoYW5uZWwgSXNsYW5kcyBOYXRpb25hbCBQYXJrJ3MgS2VscCBGb3Jlc3QgTW9uaXRvcmluZyBQcm9ncmFtIGhhcyBtZWFzdXJlbWVudHMgb2YgdGhlIGFidW5kYW5jZSBhbmQgZGlzdHJpYnV0aW9uIG9mIHJhcmUgYW5kIGNsdW1wZWQgb3JnYW5pc21zIG5vdCBhZGVxdWF0ZWx5IHNhbXBsZWQgYnkgcXVhZHJhdHMuIFRoZSBzdW1tYXJ5IGRhdGEgcHJlc2VudGVkIGhlcmUgcmVwcmVzZW50cyB0aGUgbWVhbiBkZW5zaXR5IHBlciBzcXVhcmUgbWV0ZXIuIFNhbXBsaW5nIGlzIGNvbmR1Y3RlZCBhbm51YWxseSBiZXR3ZWVuIHRoZSBtb250aHMgb2YgTWF5LU9jdG9iZXIsIHNvIHRoZSBUaW1lIGRhdGEgaW4gdGhpcyBmaWxlIGlzIEp1bHkgMSBvZiBlYWNoIHllYXIgKGEgbm9taW5hbCB2YWx1ZSkuIFRoZSBhY3R1YWwgbWVhc3VyZW1lbnRzIHdlcmUgdGFrZW4gYXQgdmFyaW91cyBkZXB0aHMsIHNvIHRoZSBEZXB0aCBkYXRhIGluIHRoaXMgZmlsZSBpcyB0aGUgZGVwdGggb2YgdGhlIHN0YXRpb24ncyB0ZW1wZXJhdHVyZSBsb2dnZXIsIHdoaWNoIGlzIGEgdHlwaWNhbCBkZXB0aC4iXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgInRpbWVfY292ZXJhZ2VfZW5kIiwgIlN0cmluZyIsICIyMDA3LTA3LTAxVDAwOjAwOjAwWiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJOQ19HTE9CQUwiLCAidGltZV9jb3ZlcmFnZV9zdGFydCIsICJTdHJpbmciLCAiMTk4My0wNy0wMVQwMDowMDowMFoiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTkNfR0xPQkFMIiwgInRpdGxlIiwgIlN0cmluZyIsICJDaGFubmVsIElzbGFuZHMsIEtlbHAgRm9yZXN0IE1vbml0b3JpbmcsIFN1cnZleSwgQmFuZCBUcmFuc2VjdCwgMTk4My0yMDA3Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk5DX0dMT0JBTCIsICJXZXN0ZXJubW9zdF9FYXN0aW5nIiwgImRvdWJsZSIsICItMTIwLjQiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJzdGF0aW9uIiwgIiIsICJTdHJpbmciLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgInN0YXRpb24iLCAiY2Zfcm9sZSIsICJTdHJpbmciLCAidGltZXNlcmllc19pZCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJzdGF0aW9uIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIklkZW50aWZpZXIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAic3RhdGlvbiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlN0YXRpb24iXSwKICAgICAgWyJ2YXJpYWJsZSIsICJsb25naXR1ZGUiLCAiIiwgImRvdWJsZSIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAibG9uZ2l0dWRlIiwgIl9Db29yZGluYXRlQXhpc1R5cGUiLCAiU3RyaW5nIiwgIkxvbiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJsb25naXR1ZGUiLCAiYWN0dWFsX3JhbmdlIiwgImRvdWJsZSIsICItMTIwLjQsIC0xMTguNCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJsb25naXR1ZGUiLCAiYXhpcyIsICJTdHJpbmciLCAiWCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJsb25naXR1ZGUiLCAiY29sb3JCYXJNYXhpbXVtIiwgImRvdWJsZSIsICItMTE4LjQiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAibG9uZ2l0dWRlIiwgImNvbG9yQmFyTWluaW11bSIsICJkb3VibGUiLCAiLTEyMC40Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgImxvbmdpdHVkZSIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJMb2NhdGlvbiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJsb25naXR1ZGUiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJMb25naXR1ZGUiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAibG9uZ2l0dWRlIiwgInN0YW5kYXJkX25hbWUiLCAiU3RyaW5nIiwgImxvbmdpdHVkZSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJsb25naXR1ZGUiLCAidW5pdHMiLCAiU3RyaW5nIiwgImRlZ3JlZXNfZWFzdCJdLAogICAgICBbInZhcmlhYmxlIiwgImxhdGl0dWRlIiwgIiIsICJkb3VibGUiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgImxhdGl0dWRlIiwgIl9Db29yZGluYXRlQXhpc1R5cGUiLCAiU3RyaW5nIiwgIkxhdCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJsYXRpdHVkZSIsICJhY3R1YWxfcmFuZ2UiLCAiZG91YmxlIiwgIjMyLjgsIDM0LjA1Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgImxhdGl0dWRlIiwgImF4aXMiLCAiU3RyaW5nIiwgIlkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAibGF0aXR1ZGUiLCAiY29sb3JCYXJNYXhpbXVtIiwgImRvdWJsZSIsICIzNC41Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgImxhdGl0dWRlIiwgImNvbG9yQmFyTWluaW11bSIsICJkb3VibGUiLCAiMzIuNSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJsYXRpdHVkZSIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJMb2NhdGlvbiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJsYXRpdHVkZSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIkxhdGl0dWRlIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgImxhdGl0dWRlIiwgInN0YW5kYXJkX25hbWUiLCAiU3RyaW5nIiwgImxhdGl0dWRlIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgImxhdGl0dWRlIiwgInVuaXRzIiwgIlN0cmluZyIsICJkZWdyZWVzX25vcnRoIl0sCiAgICAgIFsidmFyaWFibGUiLCAiZGVwdGgiLCAiIiwgImRvdWJsZSIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiZGVwdGgiLCAiX0Nvb3JkaW5hdGVBeGlzVHlwZSIsICJTdHJpbmciLCAiSGVpZ2h0Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgImRlcHRoIiwgIl9Db29yZGluYXRlWmlzUG9zaXRpdmUiLCAiU3RyaW5nIiwgImRvd24iXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiZGVwdGgiLCAiYWN0dWFsX3JhbmdlIiwgImRvdWJsZSIsICI1LjAsIDE3LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiZGVwdGgiLCAiYXhpcyIsICJTdHJpbmciLCAiWiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJkZXB0aCIsICJjb2xvckJhck1heGltdW0iLCAiZG91YmxlIiwgIjIwLjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiZGVwdGgiLCAiY29sb3JCYXJNaW5pbXVtIiwgImRvdWJsZSIsICIwLjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiZGVwdGgiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiTG9jYXRpb24iXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiZGVwdGgiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJEZXB0aCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJkZXB0aCIsICJwb3NpdGl2ZSIsICJTdHJpbmciLCAiZG93biJdLAogICAgICBbImF0dHJpYnV0ZSIsICJkZXB0aCIsICJzdGFuZGFyZF9uYW1lIiwgIlN0cmluZyIsICJkZXB0aCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJkZXB0aCIsICJ1bml0cyIsICJTdHJpbmciLCAibSJdLAogICAgICBbInZhcmlhYmxlIiwgInRpbWUiLCAiIiwgImRvdWJsZSIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAidGltZSIsICJfQ29vcmRpbmF0ZUF4aXNUeXBlIiwgIlN0cmluZyIsICJUaW1lIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgInRpbWUiLCAiYWN0dWFsX3JhbmdlIiwgImRvdWJsZSIsICI0LjI1ODY1NkU4LCAxLjE4MzI0OEU5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgInRpbWUiLCAiYXhpcyIsICJTdHJpbmciLCAiVCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJ0aW1lIiwgImNvbG9yQmFyTWF4aW11bSIsICJkb3VibGUiLCAiMS4xODMyNDhFOSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJ0aW1lIiwgImNvbG9yQmFyTWluaW11bSIsICJkb3VibGUiLCAiNC4yNTg2NTZFOCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJ0aW1lIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlRpbWUiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAidGltZSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlRpbWUiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAidGltZSIsICJzdGFuZGFyZF9uYW1lIiwgIlN0cmluZyIsICJ0aW1lIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgInRpbWUiLCAidGltZV9vcmlnaW4iLCAiU3RyaW5nIiwgIjAxLUpBTi0xOTcwIDAwOjAwOjAwIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgInRpbWUiLCAidW5pdHMiLCAiU3RyaW5nIiwgInNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFoiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJBcGx5c2lhX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJBcGx5c2lhX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjk1Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgImNvbW1lbnQiLCAiU3RyaW5nIiwgIkNvbW1vbiBuYW1lOiBDYWxpZm9ybmlhIGJyb3duIHNlYSBoYXJlIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIkJpb2xvZ3kiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQXBseXNpYV9jYWxpZm9ybmljYV9NZWFuX0RlbnNpdHkiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJBcGx5c2lhIGNhbGlmb3JuaWNhIE1lYW4gRGVuc2l0eSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJBcGx5c2lhX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQXBseXNpYV9jYWxpZm9ybmljYV9NZWFuX0RlbnNpdHkiLCAidW5pdHMiLCAiU3RyaW5nIiwgIm0tMiJdLAogICAgICBbInZhcmlhYmxlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfU3RkRGV2IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQXBseXNpYV9jYWxpZm9ybmljYV9TdGREZXYiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfU3RkRGV2IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMzUiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQXBseXNpYV9jYWxpZm9ybmljYV9TdGREZXYiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJBcGx5c2lhX2NhbGlmb3JuaWNhX1N0ZERldiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIkFwbHlzaWEgY2FsaWZvcm5pY2EgU3RkRGV2Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfU3RkRGV2IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfU3RkRXJyIiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQXBseXNpYV9jYWxpZm9ybmljYV9TdGRFcnIiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfU3RkRXJyIiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJBcGx5c2lhX2NhbGlmb3JuaWNhX1N0ZEVyciIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJTdGF0aXN0aWNzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkFwbHlzaWFfY2FsaWZvcm5pY2FfU3RkRXJyIiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiQXBseXNpYSBjYWxpZm9ybmljYSBTdGRFcnIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQXBseXNpYV9jYWxpZm9ybmljYV9TdGRFcnIiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsidmFyaWFibGUiLCAiQ3Jhc3NlZG9tYV9naWdhbnRldW1fTWVhbl9EZW5zaXR5IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQ3Jhc3NlZG9tYV9naWdhbnRldW1fTWVhbl9EZW5zaXR5IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJDcmFzc2Vkb21hX2dpZ2FudGV1bV9NZWFuX0RlbnNpdHkiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC45MiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJDcmFzc2Vkb21hX2dpZ2FudGV1bV9NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IFJvY2sgc2NhbGxvcCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJDcmFzc2Vkb21hX2dpZ2FudGV1bV9NZWFuX0RlbnNpdHkiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiQmlvbG9neSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJDcmFzc2Vkb21hX2dpZ2FudGV1bV9NZWFuX0RlbnNpdHkiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJDcmFzc2Vkb21hIGdpZ2FudGV1bSBNZWFuIERlbnNpdHkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQ3Jhc3NlZG9tYV9naWdhbnRldW1fTWVhbl9EZW5zaXR5IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJDcmFzc2Vkb21hX2dpZ2FudGV1bV9NZWFuX0RlbnNpdHkiLCAidW5pdHMiLCAiU3RyaW5nIiwgIm0tMiJdLAogICAgICBbInZhcmlhYmxlIiwgIkNyYXNzZWRvbWFfZ2lnYW50ZXVtX1N0ZERldiIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkNyYXNzZWRvbWFfZ2lnYW50ZXVtX1N0ZERldiIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQ3Jhc3NlZG9tYV9naWdhbnRldW1fU3RkRGV2IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuNzEiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQ3Jhc3NlZG9tYV9naWdhbnRldW1fU3RkRGV2IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQ3Jhc3NlZG9tYV9naWdhbnRldW1fU3RkRGV2IiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiQ3Jhc3NlZG9tYSBnaWdhbnRldW0gU3RkRGV2Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkNyYXNzZWRvbWFfZ2lnYW50ZXVtX1N0ZERldiIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJDcmFzc2Vkb21hX2dpZ2FudGV1bV9TdGRFcnIiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJDcmFzc2Vkb21hX2dpZ2FudGV1bV9TdGRFcnIiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkNyYXNzZWRvbWFfZ2lnYW50ZXVtX1N0ZEVyciIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQ3Jhc3NlZG9tYV9naWdhbnRldW1fU3RkRXJyIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiQ3Jhc3NlZG9tYV9naWdhbnRldW1fU3RkRXJyIiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiQ3Jhc3NlZG9tYSBnaWdhbnRldW0gU3RkRXJyIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkNyYXNzZWRvbWFfZ2lnYW50ZXVtX1N0ZEVyciIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJIYWxpb3Rpc19jb3JydWdhdGFfTWVhbl9EZW5zaXR5IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfY29ycnVnYXRhX01lYW5fRGVuc2l0eSIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfY29ycnVnYXRhX01lYW5fRGVuc2l0eSIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjE4Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2NvcnJ1Z2F0YV9NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IFBpbmsgYWJhbG9uZSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19jb3JydWdhdGFfTWVhbl9EZW5zaXR5IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIkJpb2xvZ3kiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfY29ycnVnYXRhX01lYW5fRGVuc2l0eSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIkhhbGlvdGlzIGNvcnJ1Z2F0YSBNZWFuIERlbnNpdHkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfY29ycnVnYXRhX01lYW5fRGVuc2l0eSIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfY29ycnVnYXRhX01lYW5fRGVuc2l0eSIsICJ1bml0cyIsICJTdHJpbmciLCAibS0yIl0sCiAgICAgIFsidmFyaWFibGUiLCAiSGFsaW90aXNfY29ycnVnYXRhX1N0ZERldiIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2NvcnJ1Z2F0YV9TdGREZXYiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2NvcnJ1Z2F0YV9TdGREZXYiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4xIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2NvcnJ1Z2F0YV9TdGREZXYiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19jb3JydWdhdGFfU3RkRGV2IiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiSGFsaW90aXMgY29ycnVnYXRhIFN0ZERldiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19jb3JydWdhdGFfU3RkRGV2IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIkhhbGlvdGlzX2NvcnJ1Z2F0YV9TdGRFcnIiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19jb3JydWdhdGFfU3RkRXJyIiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19jb3JydWdhdGFfU3RkRXJyIiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMDMiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfY29ycnVnYXRhX1N0ZEVyciIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJTdGF0aXN0aWNzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2NvcnJ1Z2F0YV9TdGRFcnIiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJIYWxpb3RpcyBjb3JydWdhdGEgU3RkRXJyIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2NvcnJ1Z2F0YV9TdGRFcnIiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsidmFyaWFibGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19NZWFuX0RlbnNpdHkiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19mdWxnZW5zX01lYW5fRGVuc2l0eSIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19NZWFuX0RlbnNpdHkiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4wMDU1NTU1NTYiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IEdyZWVuIGFiYWxvbmUiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19NZWFuX0RlbnNpdHkiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiQmlvbG9neSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19mdWxnZW5zX01lYW5fRGVuc2l0eSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIkhhbGlvdGlzIGZ1bGdlbnMgTWVhbiBEZW5zaXR5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2Z1bGdlbnNfTWVhbl9EZW5zaXR5IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19mdWxnZW5zX01lYW5fRGVuc2l0eSIsICJ1bml0cyIsICJTdHJpbmciLCAibS0yIl0sCiAgICAgIFsidmFyaWFibGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19TdGREZXYiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19mdWxnZW5zX1N0ZERldiIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19TdGREZXYiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4wMDgyMDYwOTkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19TdGREZXYiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19mdWxnZW5zX1N0ZERldiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIkhhbGlvdGlzIGZ1bGdlbnMgU3RkRGV2Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2Z1bGdlbnNfU3RkRGV2IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIkhhbGlvdGlzX2Z1bGdlbnNfU3RkRXJyIiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19TdGRFcnIiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2Z1bGdlbnNfU3RkRXJyIiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMDAyMzY4ODk3Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX2Z1bGdlbnNfU3RkRXJyIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfZnVsZ2Vuc19TdGRFcnIiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJIYWxpb3RpcyBmdWxnZW5zIFN0ZEVyciJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19mdWxnZW5zX1N0ZEVyciIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJIYWxpb3Rpc19ydWZlc2NlbnNfTWVhbl9EZW5zaXR5IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfcnVmZXNjZW5zX01lYW5fRGVuc2l0eSIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfcnVmZXNjZW5zX01lYW5fRGVuc2l0eSIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjk5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX3J1ZmVzY2Vuc19NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IFJlZCBhYmFsb25lIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX3J1ZmVzY2Vuc19NZWFuX0RlbnNpdHkiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiQmlvbG9neSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19ydWZlc2NlbnNfTWVhbl9EZW5zaXR5IiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiSGFsaW90aXMgcnVmZXNjZW5zIE1lYW4gRGVuc2l0eSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19ydWZlc2NlbnNfTWVhbl9EZW5zaXR5IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19ydWZlc2NlbnNfTWVhbl9EZW5zaXR5IiwgInVuaXRzIiwgIlN0cmluZyIsICJtLTIiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJIYWxpb3Rpc19ydWZlc2NlbnNfU3RkRGV2IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfcnVmZXNjZW5zX1N0ZERldiIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfcnVmZXNjZW5zX1N0ZERldiIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjYiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfcnVmZXNjZW5zX1N0ZERldiIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJTdGF0aXN0aWNzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX3J1ZmVzY2Vuc19TdGREZXYiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJIYWxpb3RpcyBydWZlc2NlbnMgU3RkRGV2Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX3J1ZmVzY2Vuc19TdGREZXYiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsidmFyaWFibGUiLCAiSGFsaW90aXNfcnVmZXNjZW5zX1N0ZEVyciIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX3J1ZmVzY2Vuc19TdGRFcnIiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkhhbGlvdGlzX3J1ZmVzY2Vuc19TdGRFcnIiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4xNyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJIYWxpb3Rpc19ydWZlc2NlbnNfU3RkRXJyIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfcnVmZXNjZW5zX1N0ZEVyciIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIkhhbGlvdGlzIHJ1ZmVzY2VucyBTdGRFcnIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiSGFsaW90aXNfcnVmZXNjZW5zX1N0ZEVyciIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJLZWxsZXRpYV9rZWxsZXRpaV9NZWFuX0RlbnNpdHkiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJLZWxsZXRpYV9rZWxsZXRpaV9NZWFuX0RlbnNpdHkiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIktlbGxldGlhX2tlbGxldGlpX01lYW5fRGVuc2l0eSIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjU1Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIktlbGxldGlhX2tlbGxldGlpX01lYW5fRGVuc2l0eSIsICJjb21tZW50IiwgIlN0cmluZyIsICJDb21tb24gbmFtZTogS2VsbGV0J3Mgd2hlbGsiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiS2VsbGV0aWFfa2VsbGV0aWlfTWVhbl9EZW5zaXR5IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIkJpb2xvZ3kiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiS2VsbGV0aWFfa2VsbGV0aWlfTWVhbl9EZW5zaXR5IiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiS2VsbGV0aWEga2VsbGV0aWkgTWVhbiBEZW5zaXR5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIktlbGxldGlhX2tlbGxldGlpX01lYW5fRGVuc2l0eSIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiS2VsbGV0aWFfa2VsbGV0aWlfTWVhbl9EZW5zaXR5IiwgInVuaXRzIiwgIlN0cmluZyIsICJtLTIiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJLZWxsZXRpYV9rZWxsZXRpaV9TdGREZXYiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJLZWxsZXRpYV9rZWxsZXRpaV9TdGREZXYiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIktlbGxldGlhX2tlbGxldGlpX1N0ZERldiIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjI5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIktlbGxldGlhX2tlbGxldGlpX1N0ZERldiIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJTdGF0aXN0aWNzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIktlbGxldGlhX2tlbGxldGlpX1N0ZERldiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIktlbGxldGlhIGtlbGxldGlpIFN0ZERldiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJLZWxsZXRpYV9rZWxsZXRpaV9TdGREZXYiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsidmFyaWFibGUiLCAiS2VsbGV0aWFfa2VsbGV0aWlfU3RkRXJyIiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiS2VsbGV0aWFfa2VsbGV0aWlfU3RkRXJyIiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJLZWxsZXRpYV9rZWxsZXRpaV9TdGRFcnIiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4wOCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJLZWxsZXRpYV9rZWxsZXRpaV9TdGRFcnIiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJLZWxsZXRpYV9rZWxsZXRpaV9TdGRFcnIiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJLZWxsZXRpYSBrZWxsZXRpaSBTdGRFcnIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiS2VsbGV0aWFfa2VsbGV0aWlfU3RkRXJyIiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIkxvcGhvZ29yZ2lhX2NoaWxlbnNpc19NZWFuX0RlbnNpdHkiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfTWVhbl9EZW5zaXR5IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfTWVhbl9EZW5zaXR5IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuNyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfTWVhbl9EZW5zaXR5IiwgImNvbW1lbnQiLCAiU3RyaW5nIiwgIkNvbW1vbiBuYW1lOiBSZWQgZ29yZ29uaWFuIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkxvcGhvZ29yZ2lhX2NoaWxlbnNpc19NZWFuX0RlbnNpdHkiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiQmlvbG9neSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfTWVhbl9EZW5zaXR5IiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiTG9waG9nb3JnaWEgY2hpbGVuc2lzIE1lYW4gRGVuc2l0eSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfTWVhbl9EZW5zaXR5IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfTWVhbl9EZW5zaXR5IiwgInVuaXRzIiwgIlN0cmluZyIsICJtLTIiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfU3RkRGV2IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTG9waG9nb3JnaWFfY2hpbGVuc2lzX1N0ZERldiIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTG9waG9nb3JnaWFfY2hpbGVuc2lzX1N0ZERldiIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjQ0Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkxvcGhvZ29yZ2lhX2NoaWxlbnNpc19TdGREZXYiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfU3RkRGV2IiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiTG9waG9nb3JnaWEgY2hpbGVuc2lzIFN0ZERldiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfU3RkRGV2IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIkxvcGhvZ29yZ2lhX2NoaWxlbnNpc19TdGRFcnIiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfU3RkRXJyIiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMb3Bob2dvcmdpYV9jaGlsZW5zaXNfU3RkRXJyIiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMTIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTG9waG9nb3JnaWFfY2hpbGVuc2lzX1N0ZEVyciIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJTdGF0aXN0aWNzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkxvcGhvZ29yZ2lhX2NoaWxlbnNpc19TdGRFcnIiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJMb3Bob2dvcmdpYSBjaGlsZW5zaXMgU3RkRXJyIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkxvcGhvZ29yZ2lhX2NoaWxlbnNpc19TdGRFcnIiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsidmFyaWFibGUiLCAiTHl0ZWNoaW51c19hbmFtZXN1c19NZWFuX0RlbnNpdHkiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMeXRlY2hpbnVzX2FuYW1lc3VzX01lYW5fRGVuc2l0eSIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTHl0ZWNoaW51c19hbmFtZXN1c19NZWFuX0RlbnNpdHkiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMjIuNDUiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTHl0ZWNoaW51c19hbmFtZXN1c19NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IFdoaXRlIHNlYSB1cmNoaW4iXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTHl0ZWNoaW51c19hbmFtZXN1c19NZWFuX0RlbnNpdHkiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiQmlvbG9neSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMeXRlY2hpbnVzX2FuYW1lc3VzX01lYW5fRGVuc2l0eSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIkx5dGVjaGludXMgYW5hbWVzdXMgTWVhbiBEZW5zaXR5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkx5dGVjaGludXNfYW5hbWVzdXNfTWVhbl9EZW5zaXR5IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMeXRlY2hpbnVzX2FuYW1lc3VzX01lYW5fRGVuc2l0eSIsICJ1bml0cyIsICJTdHJpbmciLCAibS0yIl0sCiAgICAgIFsidmFyaWFibGUiLCAiTHl0ZWNoaW51c19hbmFtZXN1c19TdGREZXYiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMeXRlY2hpbnVzX2FuYW1lc3VzX1N0ZERldiIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTHl0ZWNoaW51c19hbmFtZXN1c19TdGREZXYiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgOS4yIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkx5dGVjaGludXNfYW5hbWVzdXNfU3RkRGV2IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTHl0ZWNoaW51c19hbmFtZXN1c19TdGREZXYiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJMeXRlY2hpbnVzIGFuYW1lc3VzIFN0ZERldiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMeXRlY2hpbnVzX2FuYW1lc3VzX1N0ZERldiIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJMeXRlY2hpbnVzX2FuYW1lc3VzX1N0ZEVyciIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkx5dGVjaGludXNfYW5hbWVzdXNfU3RkRXJyIiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMeXRlY2hpbnVzX2FuYW1lc3VzX1N0ZEVyciIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAyLjY1Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIkx5dGVjaGludXNfYW5hbWVzdXNfU3RkRXJyIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTHl0ZWNoaW51c19hbmFtZXN1c19TdGRFcnIiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJMeXRlY2hpbnVzIGFuYW1lc3VzIFN0ZEVyciJdLAogICAgICBbImF0dHJpYnV0ZSIsICJMeXRlY2hpbnVzX2FuYW1lc3VzX1N0ZEVyciIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJNZWdhdGh1cmFfY3JlbnVsYXRhX01lYW5fRGVuc2l0eSIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk1lZ2F0aHVyYV9jcmVudWxhdGFfTWVhbl9EZW5zaXR5IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNZWdhdGh1cmFfY3JlbnVsYXRhX01lYW5fRGVuc2l0eSIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjUiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTWVnYXRodXJhX2NyZW51bGF0YV9NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IEdpYW50IGtleWhvbGUgbGltcGV0Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk1lZ2F0aHVyYV9jcmVudWxhdGFfTWVhbl9EZW5zaXR5IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIkJpb2xvZ3kiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTWVnYXRodXJhX2NyZW51bGF0YV9NZWFuX0RlbnNpdHkiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJNZWdhdGh1cmEgY3JlbnVsYXRhIE1lYW4gRGVuc2l0eSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNZWdhdGh1cmFfY3JlbnVsYXRhX01lYW5fRGVuc2l0eSIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTWVnYXRodXJhX2NyZW51bGF0YV9NZWFuX0RlbnNpdHkiLCAidW5pdHMiLCAiU3RyaW5nIiwgIm0tMiJdLAogICAgICBbInZhcmlhYmxlIiwgIk1lZ2F0aHVyYV9jcmVudWxhdGFfU3RkRGV2IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTWVnYXRodXJhX2NyZW51bGF0YV9TdGREZXYiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk1lZ2F0aHVyYV9jcmVudWxhdGFfU3RkRGV2IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMjIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTWVnYXRodXJhX2NyZW51bGF0YV9TdGREZXYiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNZWdhdGh1cmFfY3JlbnVsYXRhX1N0ZERldiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIk1lZ2F0aHVyYSBjcmVudWxhdGEgU3RkRGV2Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk1lZ2F0aHVyYV9jcmVudWxhdGFfU3RkRGV2IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIk1lZ2F0aHVyYV9jcmVudWxhdGFfU3RkRXJyIiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTWVnYXRodXJhX2NyZW51bGF0YV9TdGRFcnIiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk1lZ2F0aHVyYV9jcmVudWxhdGFfU3RkRXJyIiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMDciXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTWVnYXRodXJhX2NyZW51bGF0YV9TdGRFcnIiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNZWdhdGh1cmFfY3JlbnVsYXRhX1N0ZEVyciIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIk1lZ2F0aHVyYSBjcmVudWxhdGEgU3RkRXJyIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk1lZ2F0aHVyYV9jcmVudWxhdGFfU3RkRXJyIiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIk11cmljZWFfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9jYWxpZm9ybmljYV9NZWFuX0RlbnNpdHkiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMzEiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9jYWxpZm9ybmljYV9NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IENhbGlmb3JuaWEgZ29sZGVuIGdvcmdvbmlhbiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJCaW9sb2d5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiTXVyaWNlYSBjYWxpZm9ybmljYSBNZWFuIERlbnNpdHkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9jYWxpZm9ybmljYV9NZWFuX0RlbnNpdHkiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgInVuaXRzIiwgIlN0cmluZyIsICJtLTIiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJNdXJpY2VhX2NhbGlmb3JuaWNhX1N0ZERldiIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfY2FsaWZvcm5pY2FfU3RkRGV2IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2NhbGlmb3JuaWNhX1N0ZERldiIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjE2Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfY2FsaWZvcm5pY2FfU3RkRGV2IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9jYWxpZm9ybmljYV9TdGREZXYiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJNdXJpY2VhIGNhbGlmb3JuaWNhIFN0ZERldiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2NhbGlmb3JuaWNhX1N0ZERldiIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJNdXJpY2VhX2NhbGlmb3JuaWNhX1N0ZEVyciIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfY2FsaWZvcm5pY2FfU3RkRXJyIiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2NhbGlmb3JuaWNhX1N0ZEVyciIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjA0Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfY2FsaWZvcm5pY2FfU3RkRXJyIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9jYWxpZm9ybmljYV9TdGRFcnIiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJNdXJpY2VhIGNhbGlmb3JuaWNhIFN0ZEVyciJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2NhbGlmb3JuaWNhX1N0ZEVyciIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJNdXJpY2VhX2ZydXRpY29zYV9NZWFuX0RlbnNpdHkiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2ZydXRpY29zYV9NZWFuX0RlbnNpdHkiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfZnJ1dGljb3NhX01lYW5fRGVuc2l0eSIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjA0Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfZnJ1dGljb3NhX01lYW5fRGVuc2l0eSIsICJjb21tZW50IiwgIlN0cmluZyIsICJDb21tb24gbmFtZTogQnJvd24gZ29yZ29uaWFuIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfZnJ1dGljb3NhX01lYW5fRGVuc2l0eSIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJCaW9sb2d5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfZnJ1dGljb3NhX01lYW5fRGVuc2l0eSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIk11cmljZWEgZnJ1dGljb3NhIE1lYW4gRGVuc2l0eSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2ZydXRpY29zYV9NZWFuX0RlbnNpdHkiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfZnJ1dGljb3NhX01lYW5fRGVuc2l0eSIsICJ1bml0cyIsICJTdHJpbmciLCAibS0yIl0sCiAgICAgIFsidmFyaWFibGUiLCAiTXVyaWNlYV9mcnV0aWNvc2FfU3RkRGV2IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9mcnV0aWNvc2FfU3RkRGV2IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2ZydXRpY29zYV9TdGREZXYiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4wOSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2ZydXRpY29zYV9TdGREZXYiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJNdXJpY2VhX2ZydXRpY29zYV9TdGREZXYiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJNdXJpY2VhIGZydXRpY29zYSBTdGREZXYiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9mcnV0aWNvc2FfU3RkRGV2IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIk11cmljZWFfZnJ1dGljb3NhX1N0ZEVyciIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfZnJ1dGljb3NhX1N0ZEVyciIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9mcnV0aWNvc2FfU3RkRXJyIiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMDIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9mcnV0aWNvc2FfU3RkRXJyIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiTXVyaWNlYV9mcnV0aWNvc2FfU3RkRXJyIiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiTXVyaWNlYSBmcnV0aWNvc2EgU3RkRXJyIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIk11cmljZWFfZnJ1dGljb3NhX1N0ZEVyciIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJQYW51bGlydXNfaW50ZXJydXB0dXNfTWVhbl9EZW5zaXR5IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX01lYW5fRGVuc2l0eSIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX01lYW5fRGVuc2l0eSIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjExIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlBhbnVsaXJ1c19pbnRlcnJ1cHR1c19NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IENhbGlmb3JuaWEgc3BpbnkgbG9ic3RlciJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQYW51bGlydXNfaW50ZXJydXB0dXNfTWVhbl9EZW5zaXR5IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIkJpb2xvZ3kiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX01lYW5fRGVuc2l0eSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlBhbnVsaXJ1cyBpbnRlcnJ1cHR1cyBNZWFuIERlbnNpdHkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX01lYW5fRGVuc2l0eSIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX01lYW5fRGVuc2l0eSIsICJ1bml0cyIsICJTdHJpbmciLCAibS0yIl0sCiAgICAgIFsidmFyaWFibGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX1N0ZERldiIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlBhbnVsaXJ1c19pbnRlcnJ1cHR1c19TdGREZXYiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlBhbnVsaXJ1c19pbnRlcnJ1cHR1c19TdGREZXYiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4zMiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQYW51bGlydXNfaW50ZXJydXB0dXNfU3RkRGV2IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX1N0ZERldiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlBhbnVsaXJ1cyBpbnRlcnJ1cHR1cyBTdGREZXYiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX1N0ZERldiIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJQYW51bGlydXNfaW50ZXJydXB0dXNfU3RkRXJyIiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX1N0ZEVyciIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUGFudWxpcnVzX2ludGVycnVwdHVzX1N0ZEVyciIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjA5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlBhbnVsaXJ1c19pbnRlcnJ1cHR1c19TdGRFcnIiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQYW51bGlydXNfaW50ZXJydXB0dXNfU3RkRXJyIiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiUGFudWxpcnVzIGludGVycnVwdHVzIFN0ZEVyciJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQYW51bGlydXNfaW50ZXJydXB0dXNfU3RkRXJyIiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19NZWFuX0RlbnNpdHkiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQeWNub3BvZGlhX2hlbGlhbnRob2lkZXNfTWVhbl9EZW5zaXR5IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQeWNub3BvZGlhX2hlbGlhbnRob2lkZXNfTWVhbl9EZW5zaXR5IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMzMiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUHljbm9wb2RpYV9oZWxpYW50aG9pZGVzX01lYW5fRGVuc2l0eSIsICJjb21tZW50IiwgIlN0cmluZyIsICJDb21tb24gbmFtZTogU3VuZmxvd2VyIHN0YXIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUHljbm9wb2RpYV9oZWxpYW50aG9pZGVzX01lYW5fRGVuc2l0eSIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJCaW9sb2d5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19NZWFuX0RlbnNpdHkiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJQeWNub3BvZGlhIGhlbGlhbnRob2lkZXMgTWVhbiBEZW5zaXR5Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19NZWFuX0RlbnNpdHkiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19NZWFuX0RlbnNpdHkiLCAidW5pdHMiLCAiU3RyaW5nIiwgIm0tMiJdLAogICAgICBbInZhcmlhYmxlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19TdGREZXYiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQeWNub3BvZGlhX2hlbGlhbnRob2lkZXNfU3RkRGV2IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQeWNub3BvZGlhX2hlbGlhbnRob2lkZXNfU3RkRGV2IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMjEiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUHljbm9wb2RpYV9oZWxpYW50aG9pZGVzX1N0ZERldiIsICJpb29zX2NhdGVnb3J5IiwgIlN0cmluZyIsICJTdGF0aXN0aWNzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19TdGREZXYiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJQeWNub3BvZGlhIGhlbGlhbnRob2lkZXMgU3RkRGV2Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19TdGREZXYiLCAibWlzc2luZ192YWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsidmFyaWFibGUiLCAiUHljbm9wb2RpYV9oZWxpYW50aG9pZGVzX1N0ZEVyciIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19TdGRFcnIiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlB5Y25vcG9kaWFfaGVsaWFudGhvaWRlc19TdGRFcnIiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4wNiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJQeWNub3BvZGlhX2hlbGlhbnRob2lkZXNfU3RkRXJyIiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUHljbm9wb2RpYV9oZWxpYW50aG9pZGVzX1N0ZEVyciIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlB5Y25vcG9kaWEgaGVsaWFudGhvaWRlcyBTdGRFcnIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiUHljbm9wb2RpYV9oZWxpYW50aG9pZGVzX1N0ZEVyciIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJTdHlsYXN0ZXJfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjEzIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlN0eWxhc3Rlcl9jYWxpZm9ybmljYV9NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IENhbGlmb3JuaWEgaHlkcm9jb3JhbCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJTdHlsYXN0ZXJfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIkJpb2xvZ3kiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlN0eWxhc3RlciBjYWxpZm9ybmljYSBNZWFuIERlbnNpdHkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSIsICJ1bml0cyIsICJTdHJpbmciLCAibS0yIl0sCiAgICAgIFsidmFyaWFibGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX1N0ZERldiIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlN0eWxhc3Rlcl9jYWxpZm9ybmljYV9TdGREZXYiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlN0eWxhc3Rlcl9jYWxpZm9ybmljYV9TdGREZXYiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4xOCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJTdHlsYXN0ZXJfY2FsaWZvcm5pY2FfU3RkRGV2IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX1N0ZERldiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlN0eWxhc3RlciBjYWxpZm9ybmljYSBTdGREZXYiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX1N0ZERldiIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJTdHlsYXN0ZXJfY2FsaWZvcm5pY2FfU3RkRXJyIiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX1N0ZEVyciIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiU3R5bGFzdGVyX2NhbGlmb3JuaWNhX1N0ZEVyciIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjA1Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlN0eWxhc3Rlcl9jYWxpZm9ybmljYV9TdGRFcnIiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJTdHlsYXN0ZXJfY2FsaWZvcm5pY2FfU3RkRXJyIiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiU3R5bGFzdGVyIGNhbGlmb3JuaWNhIFN0ZEVyciJdLAogICAgICBbImF0dHJpYnV0ZSIsICJTdHlsYXN0ZXJfY2FsaWZvcm5pY2FfU3RkRXJyIiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIlRldGh5YV9hdXJhbnRpYV9NZWFuX0RlbnNpdHkiLCAiIiwgImZsb2F0IiwgIiJdLAogICAgICBbImF0dHJpYnV0ZSIsICJUZXRoeWFfYXVyYW50aWFfTWVhbl9EZW5zaXR5IiwgIl9GaWxsVmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJUZXRoeWFfYXVyYW50aWFfTWVhbl9EZW5zaXR5IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuNDEiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVGV0aHlhX2F1cmFudGlhX01lYW5fRGVuc2l0eSIsICJjb21tZW50IiwgIlN0cmluZyIsICJDb21tb24gbmFtZTogT3JhbmdlIHB1ZmZiYWxsIHNwb25nZSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJUZXRoeWFfYXVyYW50aWFfTWVhbl9EZW5zaXR5IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIkJpb2xvZ3kiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVGV0aHlhX2F1cmFudGlhX01lYW5fRGVuc2l0eSIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlRldGh5YSBhdXJhbnRpYSBNZWFuIERlbnNpdHkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVGV0aHlhX2F1cmFudGlhX01lYW5fRGVuc2l0eSIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVGV0aHlhX2F1cmFudGlhX01lYW5fRGVuc2l0eSIsICJ1bml0cyIsICJTdHJpbmciLCAibS0yIl0sCiAgICAgIFsidmFyaWFibGUiLCAiVGV0aHlhX2F1cmFudGlhX1N0ZERldiIsICIiLCAiZmxvYXQiLCAiIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlRldGh5YV9hdXJhbnRpYV9TdGREZXYiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlRldGh5YV9hdXJhbnRpYV9TdGREZXYiLCAiYWN0dWFsX3JhbmdlIiwgImZsb2F0IiwgIjAuMCwgMC4xOCJdLAogICAgICBbImF0dHJpYnV0ZSIsICJUZXRoeWFfYXVyYW50aWFfU3RkRGV2IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIlN0YXRpc3RpY3MiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVGV0aHlhX2F1cmFudGlhX1N0ZERldiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlRldGh5YSBhdXJhbnRpYSBTdGREZXYiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVGV0aHlhX2F1cmFudGlhX1N0ZERldiIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJ2YXJpYWJsZSIsICJUZXRoeWFfYXVyYW50aWFfU3RkRXJyIiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVGV0aHlhX2F1cmFudGlhX1N0ZEVyciIsICJfRmlsbFZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVGV0aHlhX2F1cmFudGlhX1N0ZEVyciIsICJhY3R1YWxfcmFuZ2UiLCAiZmxvYXQiLCAiMC4wLCAwLjA1Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlRldGh5YV9hdXJhbnRpYV9TdGRFcnIiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJUZXRoeWFfYXVyYW50aWFfU3RkRXJyIiwgImxvbmdfbmFtZSIsICJTdHJpbmciLCAiVGV0aHlhIGF1cmFudGlhIFN0ZEVyciJdLAogICAgICBbImF0dHJpYnV0ZSIsICJUZXRoeWFfYXVyYW50aWFfU3RkRXJyIiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfTWVhbl9EZW5zaXR5IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVXJ0aWNpbmFfbG9mb3RlbnNpc19NZWFuX0RlbnNpdHkiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfTWVhbl9EZW5zaXR5IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMzkiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVXJ0aWNpbmFfbG9mb3RlbnNpc19NZWFuX0RlbnNpdHkiLCAiY29tbWVudCIsICJTdHJpbmciLCAiQ29tbW9uIG5hbWU6IFdoaXRlLXNwb3R0ZWQgcm9zZSBhbmVtb25lIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfTWVhbl9EZW5zaXR5IiwgImlvb3NfY2F0ZWdvcnkiLCAiU3RyaW5nIiwgIkJpb2xvZ3kiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVXJ0aWNpbmFfbG9mb3RlbnNpc19NZWFuX0RlbnNpdHkiLCAibG9uZ19uYW1lIiwgIlN0cmluZyIsICJVcnRpY2luYSBsb2ZvdGVuc2lzIE1lYW4gRGVuc2l0eSJdLAogICAgICBbImF0dHJpYnV0ZSIsICJVcnRpY2luYV9sb2ZvdGVuc2lzX01lYW5fRGVuc2l0eSIsICJtaXNzaW5nX3ZhbHVlIiwgImZsb2F0IiwgIi05OTk5OTk5LjAiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVXJ0aWNpbmFfbG9mb3RlbnNpc19NZWFuX0RlbnNpdHkiLCAidW5pdHMiLCAiU3RyaW5nIiwgIm0tMiJdLAogICAgICBbInZhcmlhYmxlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfU3RkRGV2IiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVXJ0aWNpbmFfbG9mb3RlbnNpc19TdGREZXYiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfU3RkRGV2IiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMjgiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVXJ0aWNpbmFfbG9mb3RlbnNpc19TdGREZXYiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJVcnRpY2luYV9sb2ZvdGVuc2lzX1N0ZERldiIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlVydGljaW5hIGxvZm90ZW5zaXMgU3RkRGV2Il0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfU3RkRGV2IiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdLAogICAgICBbInZhcmlhYmxlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfU3RkRXJyIiwgIiIsICJmbG9hdCIsICIiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVXJ0aWNpbmFfbG9mb3RlbnNpc19TdGRFcnIiLCAiX0ZpbGxWYWx1ZSIsICJmbG9hdCIsICItOTk5OTk5OS4wIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfU3RkRXJyIiwgImFjdHVhbF9yYW5nZSIsICJmbG9hdCIsICIwLjAsIDAuMDgiXSwKICAgICAgWyJhdHRyaWJ1dGUiLCAiVXJ0aWNpbmFfbG9mb3RlbnNpc19TdGRFcnIiLCAiaW9vc19jYXRlZ29yeSIsICJTdHJpbmciLCAiU3RhdGlzdGljcyJdLAogICAgICBbImF0dHJpYnV0ZSIsICJVcnRpY2luYV9sb2ZvdGVuc2lzX1N0ZEVyciIsICJsb25nX25hbWUiLCAiU3RyaW5nIiwgIlVydGljaW5hIGxvZm90ZW5zaXMgU3RkRXJyIl0sCiAgICAgIFsiYXR0cmlidXRlIiwgIlVydGljaW5hX2xvZm90ZW5zaXNfU3RkRXJyIiwgIm1pc3NpbmdfdmFsdWUiLCAiZmxvYXQiLCAiLTk5OTk5OTkuMCJdCiAgICBdCiAgfQp9Cg== + recorded_at: 2020-07-15 22:22:35 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:47 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:22:47 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: ASCII-8BIT + file: no + string: ewogICJ0YWJsZSI6IHsKICAgICJjb2x1bW5OYW1lcyI6IFsiZ3JpZGRhcCIsICJTdWJzZXQiLCAidGFibGVkYXAiLCAiTWFrZSBBIEdyYXBoIiwgIndtcyIsICJmaWxlcyIsICJBY2Nlc3NpYmxlIiwgIlRpdGxlIiwgIlN1bW1hcnkiLCAiRkdEQyIsICJJU08gMTkxMTUiLCAiSW5mbyIsICJCYWNrZ3JvdW5kIEluZm8iLCAiUlNTIiwgIkVtYWlsIiwgIkluc3RpdHV0aW9uIiwgIkRhdGFzZXQgSUQiXSwKICAgICJjb2x1bW5UeXBlcyI6IFsiU3RyaW5nIiwgIlN0cmluZyIsICJTdHJpbmciLCAiU3RyaW5nIiwgIlN0cmluZyIsICJTdHJpbmciLCAiU3RyaW5nIiwgIlN0cmluZyIsICJTdHJpbmciLCAiU3RyaW5nIiwgIlN0cmluZyIsICJTdHJpbmciLCAiU3RyaW5nIiwgIlN0cmluZyIsICJTdHJpbmciLCAiU3RyaW5nIiwgIlN0cmluZyJdLAogICAgInJvd3MiOiBbCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2FsbERhdGFzZXRzLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hbGxEYXRhc2V0cyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hbGxEYXRhc2V0cy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICIqIFRoZSBMaXN0IG9mIEFsbCBBY3RpdmUgRGF0YXNldHMgaW4gdGhpcyBFUkREQVAgKiIsICJUaGlzIGRhdGFzZXQgaXMgYSB0YWJsZSB3aGljaCBoYXMgYSByb3cgb2YgaW5mb3JtYXRpb24gZm9yIGVhY2ggZGF0YXNldCBjdXJyZW50bHkgYWN0aXZlIGluIHRoaXMgRVJEREFQLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbmRhdGFzZXRJRCAoRGF0YXNldCBJRClcbmFjY2Vzc2libGVcbmluc3RpdHV0aW9uXG5kYXRhU3RydWN0dXJlIChEYXRhIFN0cnVjdHVyZSlcbmNkbV9kYXRhX3R5cGUgKENvbW1vbiBEYXRhIE1vZGVsIFR5cGUpXG5jbGFzcyAoRVJEREFQIENsYXNzKVxudGl0bGVcbm1pbkxvbmdpdHVkZSAoTWluaW11bSBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbm1heExvbmdpdHVkZSAoTWF4aW11bSBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxvbmdpdHVkZVNwYWNpbmcgKEF2ZXJhZ2UgR3JpZCBMb25naXR1ZGUgU3BhY2luZywgZGVncmVlc19lYXN0KVxubWluTGF0aXR1ZGUgKE1pbmltdW0gTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG5tYXhMYXRpdHVkZSAoTWF4aW11bSBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbmxhdGl0dWRlU3BhY2luZyAoQXZlcmFnZSBHcmlkIExhdGl0dWRlIFNwYWNpbmcsIGRlZ3JlZXNfbm9ydGgpXG5taW5BbHRpdHVkZSAoTWluaW11bSBBbHRpdHVkZSBvciAtRGVwdGgsIG0pXG5tYXhBbHRpdHVkZSAoTWF4aW11bSBBbHRpdHVkZSBvciAtRGVwdGgsIG0pXG5taW5UaW1lIChNaW5pbXVtIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5tYXhUaW1lIChNYXhpbXVtIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG50aW1lU3BhY2luZyAoQXZlcmFnZSBHcmlkIFRpbWUgU3BhY2luZywgc2Vjb25kcylcbmdyaWRkYXAgKEJhc2UgVVJMIG9mIE9QZU5EQVAgR3JpZCBTZXJ2aWNlKVxuc3Vic2V0IChVUkwgb2YgU3Vic2V0IFdlYiBQYWdlKVxudGFibGVkYXAgKEJhc2UgVVJMIG9mIE9QZU5EQVAgVGFibGUvU2VxdWVuY2UgU2VydmljZSlcbk1ha2VBR3JhcGggKFVSTCBvZiBNYWtlLUEtR3JhcGggV2ViIFBhZ2UpXG5zb3MgKEJhc2UgVVJMIG9mIFNPUyBTZXJ2aWNlKVxud2NzIChCYXNlIFVSTCBvZiBXQ1MgU2VydmljZSlcbndtcyAoQmFzZSBVUkwgb2YgV01TIFNlcnZpY2UpXG5maWxlcyAoQmFzZSBVUkwgb2YgL2ZpbGVzLyBTZXJ2aWNlKVxuLi4uICgxMCBtb3JlIHZhcmlhYmxlcylcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYWxsRGF0YXNldHMvaW5kZXguanNvbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcCIsICIiLCAiIiwgIk5PQUEgTk1GUyBTV0ZTQyBFbnZpcm9ubWVudGFsIFJlc2VhcmNoIERpdmlzaW9uIiwgImFsbERhdGFzZXRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9haXNfaGlfMjAxMTIwMTIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYWlzX2hpXzIwMTEyMDEyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkFJUyBTaGlwIFRyYWZmaWM6IEhhd2FpaTogMjAxMS0yMDEyIiwgIlNoaXAgcG9zaXRpb24gZGF0YSBmcm9tIGEgc2F0ZWxsaXRlLWJhc2VkIEF1dG9tYXRpYyBJZGVudGlmaWNhdGlvbiBTeXN0ZW0gKEFJUykgd2VyZSBvYnRhaW5lZCBqb2ludGx5IGJ5IFBhY0lPT1MgKEouIFBvdGVtcmEpLCBTT0VTVC9PUkUgb2YgdGhlIFVuaXZlcnNpdHkgb2YgSGF3YWlpIChFLiBSb3RoKSwgYW5kIHRoZSBQYXBhaGFuYXVtb2t1YWtlYSBNYXJpbmUgTmF0aW9uYWwgTW9udW1lbnQgKFBOTU4pIChELiBHcmFoYW0pIHRocm91Z2ggYSBvbmUtdGltZSBwdXJjaGFzZSBmcm9tIE9SQkNPTU0gTExDLiBUaGUgcHVyY2hhc2UgYWdyZWVtZW50IHdhcyBtYWRlIGluIGxhdGUgMjAxMiBhbmQgd2FzIGZvciBhIDMwLWJ5LTMwIGRlZ3JlZSBzZWN0aW9uIG9mIGhpc3RvcmljYWwgQUlTIGRhdGEgdGhhdCBpbmNsdWRlZCB0aGUgcmVnaW9uIG9mIHRoZSBIYXdhaWlhbiBJc2xhbmRzLiBUaGUgZGF0YSBpbmNsdWRlIEFJUyBsb25nIGFuZCB1bmNoZWNrZWQgcmVwb3J0cyBmb3IgYSBvbmUgeWVhciBwZXJpb2Q6IEF1Z3VzdCAyMDExIHRocm91Z2ggbWlkLUF1Z3VzdCAyMDEyLiBUaGUgcmF3LCBtb250aGx5IEdQUyBmaWxlcyB3ZXJlIGxvY2FsbHkgY29udmVydGVkIHRvIE5ldENERiBmb3IgdGhlIFBhY0lPT1MgZGF0YSBzZXJ2ZXJzLiBEdWUgdG8gdmVuZG9yIGNvbnN0cmFpbnRzLCByZWxlYXNlIG9mIHRoZSByYXcgZGF0YSBpcyBsaW1pdGVkLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbm9icyAob2JzZXJ2YXRpb24sIDApXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnNoaXBfaWRfbW1zaSAoc2hpcCBpZGVudGlmaWNhdGlvbiBudW1iZXIgKE1NU0kpLCAwKVxubmF2aWdhdGlvbmFsX3N0YXR1cyAoMClcbnNwZWVkX292ZXJfZ3JvdW5kIChrdHMpXG5jb3Vyc2Vfb3Zlcl9ncm91bmQgKGRlZylcbnRydWVfaGVhZGluZyAoZGVnKVxucmF0ZV9vZl90dXJuIChkZWdyZWVzIG1pbnV0ZXMtMSlcbnBvc2l0aW9uX2FjY3VyYWN5ICgwKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2Fpc19oaV8yMDExMjAxMl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvYWlzX2hpXzIwMTEyMDEyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2Fpc19oaV8yMDExMjAxMi9pbmRleC5qc29uIiwgImh0dHA6Ly93d3cubmF2Y2VuLnVzY2cuZ292Lz9wYWdlTmFtZT1BSVNtYWluIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2Fpc19oaV8yMDExMjAxMi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YWlzX2hpXzIwMTEyMDEyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlBhY2lmaWMgSXNsYW5kcyBPY2VhbiBPYnNlcnZpbmcgU3lzdGVtIChQYWNJT09TKSIsICJhaXNfaGlfMjAxMTIwMTIiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2Fpc19qb2huXzIwMTEyMDEyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2Fpc19qb2huXzIwMTEyMDEyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkFJUyBTaGlwIFRyYWZmaWM6IEpvaG5zdG9uIEF0b2xsOiAyMDExLTIwMTIiLCAiU2hpcCBwb3NpdGlvbiBkYXRhIGZyb20gYSBzYXRlbGxpdGUtYmFzZWQgQXV0b21hdGljIElkZW50aWZpY2F0aW9uIFN5c3RlbSAoQUlTKSB3ZXJlIG9idGFpbmVkIGpvaW50bHkgYnkgUGFjSU9PUyAoSi4gUG90ZW1yYSksIFNPRVNUL09SRSBvZiB0aGUgVW5pdmVyc2l0eSBvZiBIYXdhaWkgKEUuIFJvdGgpLCBhbmQgdGhlIFBhcGFoYW5hdW1va3Vha2VhIE1hcmluZSBOYXRpb25hbCBNb251bWVudCAoUE5NTikgKEQuIEdyYWhhbSkgdGhyb3VnaCBhIG9uZS10aW1lIHB1cmNoYXNlIGZyb20gT1JCQ09NTSBMTEMuIFRoZSBwdXJjaGFzZSBhZ3JlZW1lbnQgd2FzIG1hZGUgaW4gbGF0ZSAyMDEyIGFuZCB3YXMgZm9yIGEgMzAtYnktMzAgZGVncmVlIHNlY3Rpb24gb2YgaGlzdG9yaWNhbCBBSVMgZGF0YSB0aGF0IGluY2x1ZGVkIHRoZSByZWdpb24gc3Vycm91bmRpbmcgSm9obnN0b24gQXRvbGwuIFRoZSBkYXRhIGluY2x1ZGUgQUlTIGxvbmcgYW5kIHVuY2hlY2tlZCByZXBvcnRzIGZvciBhIG9uZSB5ZWFyIHBlcmlvZDogQXVndXN0IDIwMTEgdGhyb3VnaCBtaWQtQXVndXN0IDIwMTIuIFRoZSByYXcsIG1vbnRobHkgR1BTIGZpbGVzIHdlcmUgbG9jYWxseSBjb252ZXJ0ZWQgdG8gTmV0Q0RGIGZvciB0aGUgUGFjSU9PUyBkYXRhIHNlcnZlcnMuIER1ZSB0byB2ZW5kb3IgY29uc3RyYWludHMsIHJlbGVhc2Ugb2YgdGhlIHJhdyBkYXRhIGlzIGxpbWl0ZWQuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxub2JzIChvYnNlcnZhdGlvbiwgMClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuc2hpcF9pZF9tbXNpIChzaGlwIGlkZW50aWZpY2F0aW9uIG51bWJlciAoTU1TSSksIDApXG5uYXZpZ2F0aW9uYWxfc3RhdHVzICgwKVxuc3BlZWRfb3Zlcl9ncm91bmQgKGt0cylcbmNvdXJzZV9vdmVyX2dyb3VuZCAoZGVnKVxudHJ1ZV9oZWFkaW5nIChkZWcpXG5yYXRlX29mX3R1cm4gKGRlZ3JlZXMgbWludXRlcy0xKVxucG9zaXRpb25fYWNjdXJhY3kgKDApXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvYWlzX2pvaG5fMjAxMTIwMTJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2Fpc19qb2huXzIwMTEyMDEyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2Fpc19qb2huXzIwMTEyMDEyL2luZGV4Lmpzb24iLCAiaHR0cDovL3d3dy5uYXZjZW4udXNjZy5nb3YvP3BhZ2VOYW1lPUFJU21haW4iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYWlzX2pvaG5fMjAxMTIwMTIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWFpc19qb2huXzIwMTEyMDEyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlBhY2lmaWMgSXNsYW5kcyBPY2VhbiBPYnNlcnZpbmcgU3lzdGVtIChQYWNJT09TKSIsICJhaXNfam9obl8yMDExMjAxMiJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYWlzX21hcmlfMjAxMTIwMTIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYWlzX21hcmlfMjAxMTIwMTIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQUlTIFNoaXAgVHJhZmZpYzogTWFyaWFuYSBhbmQgV2FrZTogMjAxMS0yMDEyIiwgIlNoaXAgcG9zaXRpb24gZGF0YSBmcm9tIGEgc2F0ZWxsaXRlLWJhc2VkIEF1dG9tYXRpYyBJZGVudGlmaWNhdGlvbiBTeXN0ZW0gKEFJUykgd2VyZSBvYnRhaW5lZCBqb2ludGx5IGJ5IFBhY0lPT1MgKEouIFBvdGVtcmEpLCBTT0VTVC9PUkUgb2YgdGhlIFVuaXZlcnNpdHkgb2YgSGF3YWlpIChFLiBSb3RoKSwgYW5kIHRoZSBQYXBhaGFuYXVtb2t1YWtlYSBNYXJpbmUgTmF0aW9uYWwgTW9udW1lbnQgKFBOTU4pIChELiBHcmFoYW0pIHRocm91Z2ggYSBvbmUtdGltZSBwdXJjaGFzZSBmcm9tIE9SQkNPTU0gTExDLiBUaGUgcHVyY2hhc2UgYWdyZWVtZW50IHdhcyBtYWRlIGluIGxhdGUgMjAxMiBhbmQgd2FzIGZvciBhIDMwLWJ5LTMwIGRlZ3JlZSBzZWN0aW9uIG9mIGhpc3RvcmljYWwgQUlTIGRhdGEgdGhhdCBpbmNsdWRlZCB0aGUgcmVnaW9uIG9mIHRoZSBNYXJpYW5hIElzbGFuZHMuIFRoZSBkYXRhIGluY2x1ZGUgQUlTIGxvbmcgYW5kIHVuY2hlY2tlZCByZXBvcnRzIGZvciBhIG9uZSB5ZWFyIHBlcmlvZDogQXVndXN0IDIwMTEgdGhyb3VnaCBtaWQtQXVndXN0IDIwMTIuIFRoZSByYXcsIG1vbnRobHkgR1BTIGZpbGVzIHdlcmUgbG9jYWxseSBjb252ZXJ0ZWQgdG8gTmV0Q0RGIGZvciB0aGUgUGFjSU9PUyBkYXRhIHNlcnZlcnMuIER1ZSB0byB2ZW5kb3IgY29uc3RyYWludHMsIHJlbGVhc2Ugb2YgdGhlIHJhdyBkYXRhIGlzIGxpbWl0ZWQuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxub2JzIChvYnNlcnZhdGlvbiwgMClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuc2hpcF9pZF9tbXNpIChzaGlwIGlkZW50aWZpY2F0aW9uIG51bWJlciAoTU1TSSksIDApXG5uYXZpZ2F0aW9uYWxfc3RhdHVzICgwKVxuc3BlZWRfb3Zlcl9ncm91bmQgKGt0cylcbmNvdXJzZV9vdmVyX2dyb3VuZCAoZGVnKVxudHJ1ZV9oZWFkaW5nIChkZWcpXG5yYXRlX29mX3R1cm4gKGRlZ3JlZXMgbWludXRlcy0xKVxucG9zaXRpb25fYWNjdXJhY3kgKDApXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvYWlzX21hcmlfMjAxMTIwMTJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2Fpc19tYXJpXzIwMTEyMDEyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2Fpc19tYXJpXzIwMTEyMDEyL2luZGV4Lmpzb24iLCAiaHR0cDovL3d3dy5uYXZjZW4udXNjZy5nb3YvP3BhZ2VOYW1lPUFJU21haW4iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYWlzX21hcmlfMjAxMTIwMTIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWFpc19tYXJpXzIwMTEyMDEyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlBhY2lmaWMgSXNsYW5kcyBPY2VhbiBPYnNlcnZpbmcgU3lzdGVtIChQYWNJT09TKSIsICJhaXNfbWFyaV8yMDExMjAxMiJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYWlzX3Jvc2VfMjAxMTIwMTIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYWlzX3Jvc2VfMjAxMTIwMTIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQUlTIFNoaXAgVHJhZmZpYzogUm9zZSBBdG9sbDogMjAxMS0yMDEyIiwgIlNoaXAgcG9zaXRpb24gZGF0YSBmcm9tIGEgc2F0ZWxsaXRlLWJhc2VkIEF1dG9tYXRpYyBJZGVudGlmaWNhdGlvbiBTeXN0ZW0gKEFJUykgd2VyZSBvYnRhaW5lZCBqb2ludGx5IGJ5IFBhY0lPT1MgKEouIFBvdGVtcmEpLCBTT0VTVC9PUkUgb2YgdGhlIFVuaXZlcnNpdHkgb2YgSGF3YWlpIChFLiBSb3RoKSwgYW5kIHRoZSBQYXBhaGFuYXVtb2t1YWtlYSBNYXJpbmUgTmF0aW9uYWwgTW9udW1lbnQgKFBOTU4pIChELiBHcmFoYW0pIHRocm91Z2ggYSBvbmUtdGltZSBwdXJjaGFzZSBmcm9tIE9SQkNPTU0gTExDLiBUaGUgcHVyY2hhc2UgYWdyZWVtZW50IHdhcyBtYWRlIGluIGxhdGUgMjAxMiBhbmQgd2FzIGZvciBhIDMwLWJ5LTMwIGRlZ3JlZSBzZWN0aW9uIG9mIGhpc3RvcmljYWwgQUlTIGRhdGEgdGhhdCBpbmNsdWRlZCB0aGUgcmVnaW9uIHN1cnJvdW5kaW5nIFJvc2UgQXRvbGwgaW4gQW1lcmljYW4gU2Ftb2EuIFRoZSBkYXRhIGluY2x1ZGUgQUlTIGxvbmcgYW5kIHVuY2hlY2tlZCByZXBvcnRzIGZvciBhIG9uZSB5ZWFyIHBlcmlvZDogQXVndXN0IDIwMTEgdGhyb3VnaCBtaWQtQXVndXN0IDIwMTIuIFRoZSByYXcsIG1vbnRobHkgR1BTIGZpbGVzIHdlcmUgbG9jYWxseSBjb252ZXJ0ZWQgdG8gTmV0Q0RGIGZvciB0aGUgUGFjSU9PUyBkYXRhIHNlcnZlcnMuIER1ZSB0byB2ZW5kb3IgY29uc3RyYWludHMsIHJlbGVhc2Ugb2YgdGhlIHJhdyBkYXRhIGlzIGxpbWl0ZWQuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxub2JzIChvYnNlcnZhdGlvbiwgMClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuc2hpcF9pZF9tbXNpIChzaGlwIGlkZW50aWZpY2F0aW9uIG51bWJlciAoTU1TSSksIDApXG5uYXZpZ2F0aW9uYWxfc3RhdHVzICgwKVxuc3BlZWRfb3Zlcl9ncm91bmQgKGt0cylcbmNvdXJzZV9vdmVyX2dyb3VuZCAoZGVnKVxudHJ1ZV9oZWFkaW5nIChkZWcpXG5yYXRlX29mX3R1cm4gKGRlZ3JlZXMgbWludXRlcy0xKVxucG9zaXRpb25fYWNjdXJhY3kgKDApXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvYWlzX3Jvc2VfMjAxMTIwMTJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2Fpc19yb3NlXzIwMTEyMDEyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2Fpc19yb3NlXzIwMTEyMDEyL2luZGV4Lmpzb24iLCAiaHR0cDovL3d3dy5uYXZjZW4udXNjZy5nb3YvP3BhZ2VOYW1lPUFJU21haW4iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYWlzX3Jvc2VfMjAxMTIwMTIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWFpc19yb3NlXzIwMTEyMDEyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlBhY2lmaWMgSXNsYW5kcyBPY2VhbiBPYnNlcnZpbmcgU3lzdGVtIChQYWNJT09TKSIsICJhaXNfcm9zZV8yMDExMjAxMiJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYWNvX2FkY3BfdGVtcCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hY29fYWRjcF90ZW1wLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkFMT0hBIENhYmxlZCBPYnNlcnZhdG9yeSAoQUNPKTogQWNvdXN0aWMgRG9wcGxlciBDdXJyZW50IFByb2ZpbGVyIChBRENQKTogVGVtcGVyYXR1cmUiLCAiVGhlIFVuaXZlcnNpdHkgb2YgSGF3YWlpJ3MgQUxPSEEgKFwiQSBMb25nLXRlcm0gT2xpZ290cm9waGljIEhhYml0YXQgQXNzZXNzbWVudFwiKSBDYWJsZWQgT2JzZXJ2YXRvcnkgKEFDTykgaXMgbG9jYXRlZCAxMDAga20gbm9ydGggb2YgdGhlIGlzbGFuZCBvZiBPYWh1LCBIYXdhaWkgKDIyIDQ1J04sIDE1OFcpIGluIHRoZSBOb3J0aCBQYWNpZmljIE9jZWFuLiBJdCBwcm92aWRlcyByZWFsLXRpbWUgb2NlYW5vZ3JhcGhpYyBvYnNlcnZhdGlvbnMgZnJvbSBhIGRlcHRoIG9mIGFib3V0IDQsODAwIG0gdmlhIGEgc3VibWFyaW5lIGZpYmVyIG9wdGljIGNhYmxlIHRoYXQgY29tZXMgYXNob3JlIGF0IE1ha2FoYSBvbiBPYWh1LiBUaGlzIGRhdGEgc2V0IHByb3ZpZGVzIG1lYXN1cmVtZW50cyBvZiBzZWEgd2F0ZXIgdGVtcGVyYXR1cmUgYXQgdGhlIEFDTyBhdCAxLjgzIG0gYWJvdmUgdGhlIG9jZWFuIGJvdHRvbSBmb3IgdGhlIG1vc3QgcmVjZW50IDcgZGF5cy5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb25fbmFtZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5kZXB0aCAobSlcbnNlYV93YXRlcl90ZW1wZXJhdHVyZSAoZGVncmVlX0NlbHNpdXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvYWNvX2FkY3BfdGVtcF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvYWNvX2FkY3BfdGVtcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hY29fYWRjcF90ZW1wL2luZGV4Lmpzb24iLCAiaHR0cDovL2Fjby1zc2RzLnNvZXN0Lmhhd2FpaS5lZHUiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYWNvX2FkY3BfdGVtcC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YWNvX2FkY3BfdGVtcCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJVbml2ZXJzaXR5IG9mIEhhd2FpaSIsICJhY29fYWRjcF90ZW1wIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hY29fYWRjcF92ZWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYWNvX2FkY3BfdmVsLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkFMT0hBIENhYmxlZCBPYnNlcnZhdG9yeSAoQUNPKTogQWNvdXN0aWMgRG9wcGxlciBDdXJyZW50IFByb2ZpbGVyIChBRENQKTogVmVsb2NpdHkiLCAiVGhlIFVuaXZlcnNpdHkgb2YgSGF3YWlpJ3MgQUxPSEEgKFwiQSBMb25nLXRlcm0gT2xpZ290cm9waGljIEhhYml0YXQgQXNzZXNzbWVudFwiKSBDYWJsZWQgT2JzZXJ2YXRvcnkgKEFDTykgaXMgbG9jYXRlZCAxMDAga20gbm9ydGggb2YgdGhlIGlzbGFuZCBvZiBPYWh1LCBIYXdhaWkgKDIyIDQ1J04sIDE1OFcpIGluIHRoZSBOb3J0aCBQYWNpZmljIE9jZWFuLiBJdCBwcm92aWRlcyByZWFsLXRpbWUgb2NlYW5vZ3JhcGhpYyBvYnNlcnZhdGlvbnMgZnJvbSBhIGRlcHRoIG9mIGFib3V0IDQsODAwIG0gdmlhIGEgc3VibWFyaW5lIGZpYmVyIG9wdGljIGNhYmxlIHRoYXQgY29tZXMgYXNob3JlIGF0IE1ha2FoYSBvbiBPYWh1LiBUaGlzIGRhdGEgc2V0IHByb3ZpZGVzIG1lYXN1cmVtZW50cyBvZiBvY2VhbiBjdXJyZW50IHZlbG9jaXR5IGF0IHRoZSBBQ08gZnJvbSBhIDI1MCBrSHogU29uVGVrIGFjb3VzdGljIGRvcHBsZXIgY3VycmVudCBwcm9maWxlciAoQURDUCkgYXQgMS44MyBtIGFib3ZlIHRoZSBvY2VhbiBib3R0b20gZm9yIHRoZSBtb3N0IHJlY2VudCA3IGRheXMuIFZlbG9jaXRpZXMgYXJlIGZsYWdnZWQgYmFkIGlmIHRoZSBhbXBsaXR1ZGUgaXMgZXhjZXNzaXZlbHkgbG93IG9yIGhpZ2guIEFuIGFtcGxpdHVkZSBpcyBoaWdoIGlmIGl0IGV4Y2VlZHMgdGhlIGF2ZXJhZ2Ugb2YgdGhlIHBpbmcgYmVmb3JlIGFuZCB0aGUgcGluZyBhZnRlciBieSAyMCBjb3VudHMuIEFuIGFtcGxpdHVkZSBpcyBsb3cgaWYgbGVzcyB0aGFuIDYgY291bnRzLiBBZnRlciB0aGlzIHRoZSB2ZWxvY2l0aWVzIGFyZSBmbGFnZ2VkIGJhZCBpZiB0aGUgYWJzb2x1dGUgZGV2aWF0aW9uIG9mIHRoZSB2ZXJ0aWNhbCB2ZWxvY2l0eSBmcm9tIGl0cyBlbnNlbWJsZSBtZWRpYW4gZXhjZWVkcyAwLjE1IG0vcyBvciBpZiBpdHMgdmFsdWUgaXMgbGVzcyB0aGFuIC0wLjI1IG0vcy5cblxuY2RtX2RhdGFfdHlwZSA9IFByb2ZpbGVcblZBUklBQkxFUzpcbnN0YXRpb25fbmFtZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChEZXB0aCBvZiBlYWNoIGxvY2F0aW9uLCBtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmVhc3R3YXJkX3NlYV93YXRlcl92ZWxvY2l0eSAoY3VycmVudCBlYXN0IGNvbXBvbmVudCwgbWV0ZXJzL3NlY29uZClcbm5vcnRod2FyZF9zZWFfd2F0ZXJfdmVsb2NpdHkgKGN1cnJlbnQgbm9ydGggY29tcG9uZW50LCBtZXRlcnMvc2Vjb25kKVxudXB3YXJkX3NlYV93YXRlcl92ZWxvY2l0eSAoY3VycmVudCB1cHdhcmQgY29tcG9uZW50LCBtZXRlcnMvc2Vjb25kKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2Fjb19hZGNwX3ZlbF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvYWNvX2FkY3BfdmVsX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2Fjb19hZGNwX3ZlbC9pbmRleC5qc29uIiwgImh0dHA6Ly9hY28tc3Nkcy5zb2VzdC5oYXdhaWkuZWR1IiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2Fjb19hZGNwX3ZlbC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YWNvX2FkY3BfdmVsJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlVuaXZlcnNpdHkgb2YgSGF3YWlpIiwgImFjb19hZGNwX3ZlbCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9kY1BKSlUiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9kY1BKSlUuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQU4gRVhQRVJJTUVOVEFMIERBVEFTRVQ6IFVuZGVyd2F5IFNlYSBTdXJmYWNlIFRlbXBlcmF0dXJlIGFuZCBTYWxpbml0eSBBYm9hcmQgdGhlIE9sZWFuZGVyLCAyMDA3LTIwMTAiLCAiVGhlIGRhdGEgYmVpbmcgc3VibWl0dGVkIHRvIE5PREMgY29udGFpbiBpbmZvcm1hdGlvbiBhYm91dCB0ZW1wZXJhdHVyZSBhbmQgc2FsaW5pdHkgb2J0YWluZWQgd2l0aCB0aGUgdXNlIG9mIHRoZXJtb3NhbGlub2dyYXBocyAoVFNHKSBpbnN0YWxsZWQgaW4gc2hpcHMgb2YgdGhlIE5PQUEgZmxlZXQgYW5kIG90aGVyIGNhcmdvIGFuZCBjcnVpc2Ugc2hpcHMuIFRoZSBkYXRhIGlzIHRyYW5zbWl0dGVkIHRvIEFPTUwvTk9BQSBpbiByZWFsLXRpbWUgYW5kIHN1Ym1pdHRlZCB0byBhIHF1YWxpdHkgY29udHJvbCBwcm9jZWR1cmUgZGV2ZWxvcGVkIGF0IEFPTUwgYmFzZWQgb24gdGhlIEdsb2JhbCBPY2VhbiBTdXJmYWNlIFVuZGVyd2F5IERhdGEgUGlsb3QgUHJvamVjdCAoR09TVUQpIHJlYWwtdGltZSBjb250cm9sIHRlc3QuIERhdGEgYXBwcm92ZWQgaW4gdGhlc2UgdGVzdHMgYXJlIHN1Ym1pdHRlZCB0byB0aGUgR1RTLiBUaGUgZGF0YSBzZXQgc3VibWl0dGVkIHRvIE5PREMgZm9yIGRpc3RyaWJ1dGlvbiBjb25zdGl0dXRlIHRoZSBjb21wbGV0ZSBkYXRhIHNldCByZWNlaXZlZCBieSBBT01MIHdpdGggdGhlIGNvcnJlc3BvbmRpbmcgZmxhZ3MgYWZ0ZXIgdGhlIHF1YWxpdHkgY29udHJvbC5cblxuY2RtX2RhdGFfdHlwZSA9IFRyYWplY3RvcnlcblZBUklBQkxFUzpcbmNhbGxTaWduIChDYWxsIFNpZ24pXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmludHAgKEludGVybmFsIFRTRyBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5zYWwgKFRTRyBQcmFjdGlhbCBTYWxpbml0eSwgUFNVKVxuY29uZCAoVFNHIENvbmR1Y3Rpdml0eSwgZGVncmVlX0MpXG5leHQgKFRoZXJtaXN0b3IgV2F0ZXIgVGVtcGVyYXR1cmUsIGRlZ3JlZXNfQ2Vsc2l1cylcbnNzdCAoU2VhIFN1cmZhY2UgVGVtcGVyYXR1cmUsIGRlZ3JlZXNfQ2Vsc2l1cylcbmZsYWdfYSAoUUMgZmxhZy1wbGF0Zm9ybSBpZGVudGlmaWNhdGlvbilcbmZsYWdfYiAoUUMgZmxhZy1pbXBvc3NpYmxlIGRhdGUpXG5mbGFnX2MgKFFDIGZsYWctaW1wb3NzaWJsZSBsb2NhdGlvbilcbmZsYWdfZCAoUUMgZmxhZy1wb3NpdGlvbiBvbiBsYW5kIHN0ZXApXG5mbGFnX2UgKFFDIGZsYWctaW1wb3NzaWJsZSBzcGVlZClcbmZsYWdfZiAoUUMgZmxhZy1nbG9iYWwgcmFuZ2VzKVxuZmxhZ19nIChRQyBmbGFnLXJlZ2lvbmFsIHJhbmdlcylcbmZsYWdfaCAoUUMgZmxhZy1zcGlrZSB0ZXN0KVxuZmxhZ19pIChRQyBmbGFnLWNvbnN0YW50IHZhbHVlKVxuZmxhZ19qIChRQyBmbGFnLWdyYWRpZW50IHRlc3QpXG5mbGFnX2sgKFFDIGZsYWctY2xpbWF0b2xvZ3kgYW5kIE5DRVAgd2Vla2x5IGFuYWx5c2lzKVxuZmxhZ19sIChRQyBmbGFnLWJ1ZGR5IGNoZWNrKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL25vZGNQSkpVX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9ub2RjUEpKVV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub2RjUEpKVS9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LmFvbWwubm9hYS5nb3YvcGhvZC90c2cvaW5kZXgucGhwIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vZGNQSkpVLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub2RjUEpKVSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE9BUiBBT01MIiwgIm5vZGNQSkpVIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2d0b3BwQVQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2d0b3BwQVQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZ3RvcHBBVC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJBbmltYWwgVGVsZW1ldHJ5IE5ldHdvcmsgKEFUTikiLCAiVGhlc2UgZGF0YSAodXBkYXRlZCBkYWlseSkgYXJlIGZyb20gdGhlIEFuaW1hbCBUZWxlbWV0cnkgTmV0d29yayAoQVROKSBwcm9ncmFtLiAgQmVndW4gYXMgb25lIG9mIHRoZSBmaWVsZCBwcm9qZWN0cyBpbiB0aGUgaW50ZXJuYXRpb25hbCBDZW5zdXMgb2YgTWFyaW5lIExpZmUsIHRoZSBQYWNpZmljLWZvY3VzZWQgVE9QUCAoVGFnZ2luZyBvZiBQYWNpZmljIFByZWRhdG9ycykgcHJvZ3JhbSB3YXMgYW4gaW50ZXJuYXRpb25hbCBtdWx0aWRpc2NpcGxpbmFyeSBjb2xsYWJvcmF0aW9uIG9mIG1vcmUgdGhhbiA3NSBzY2llbnRpc3RzIGZyb20gNyBuYXRpb25zLiAgT3ZlciB0aGUgZGVjYWRlIGJlZ2lubmluZyBpbiAyMDAwLCBUT1BQIHJlc2VhcmNoZXJzIGRlcGxveWVkIG1vcmUgdGhhbiA0LDMwMCBlbGVjdHJvbmljIHRhZ3Mgb24gMjMgZGlmZmVyZW50IHNwZWNpZXMgb2YgbWFyaW5lIGFuaW1hbHMgLSB5aWVsZGluZyBhIGRhdGFzZXQgb2YgbW9yZSB0aGFuIDMzNSwwMDAgdHJhY2tpbmcgZGF5cy4gVG8gbGVhcm4gbW9yZSBwbGVhc2UgdmlzaXQgaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9BVE4uXG5cbmNkbV9kYXRhX3R5cGUgPSBUcmFqZWN0b3J5XG5WQVJJQUJMRVM6XG5jb21tb25OYW1lIChDb21tb24gTmFtZSlcbnllYXJEZXBsb3llZCAoWWVhciBEZXBsb3llZClcbnByb2plY3RcbnRvcHBJRCAoVE9QUCBJRCAodW5pcXVlKSlcbnNlcmlhbE51bWJlciAoVGhlIFRhZydzIFNlcmlhbCBOdW1iZXIgKG5vdCB1bmlxdWUpKVxuaXNEcmlmdGVyIChJcyBEcmlmdGVyPylcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxuTEMgKExvY2F0aW9uIFF1YWxpdHkgQ29kZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ndG9wcEFUX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9ndG9wcEFUX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2d0b3BwQVQvaW5kZXguanNvbiIsICJodHRwczovL2d0b3BwLm9yZy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZ3RvcHBBVC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9Z3RvcHBBVCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbmltYWwgVGVsZW1ldHJ5IE5ldHdvcmsiLCAiZ3RvcHBBVCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJY3VmZXMuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkljdWZlcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJY3VmZXMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBDb250aW51b3VzIFVuZGVyd2F5IEZpc2gtRWdnIFNhbXBsZXIiLCAiU2FtcGxlcyBjb2xsZWN0ZWQgdXNpbmcgdGhlIENvbnRpbnVvdXMgVW5kZXJ3YXkgRmlzaC1FZ2cgU2FtcGxlciwga25vd24gYXMgQ1VGRVMuIFRoZSBkYXRhIGluY2x1ZGUgbnVtYmVycyBvZiBhbmNob3Z5LCBzYXJkaW5lLCBqYWNrIG1hY2tlcmVsLCBzcXVpZCwgaGFrZSwgYW5kIHVuaWRlbnRpZmllZCBmaXNoIGVnZ3MgY2FwdHVyZWQsIGFuZCBhc3NvY2lhdGVkIGVudmlyb25tZW50YWwuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxuc2FtcGxlX251bWJlclxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChTdGFydCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoU3RhcnQgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5zdGFydF90ZW1wZXJhdHVyZSAoZGVncmVlIEMpXG5zdGFydF9zYWxpbml0eSAocHN1KVxuc3RhcnRfd2luZF9zcGVlZCAoa25vdHMpXG5zdGFydF93aW5kX2RpcmVjdGlvbiAoZGVncmVlcylcbnN0YXJ0X3B1bXBfc3BlZWQgKE1eMyBwZXIgbWludXRlKVxuc3RvcF90aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc3RvcF9sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbnN0b3BfbG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5zdG9wX3RlbXBlcmF0dXJlIChkZWdyZWUgQylcbnN0b3Bfc2FsaW5pdHkgKHBzdSlcbnN0b3Bfd2luZF9zcGVlZCAoa25vdHMpXG5zdG9wX3dpbmRfZGlyZWN0aW9uIChkZWdyZWVzKVxuc3RvcF9wdW1wX3NwZWVkIChNXjMgcGVyIG1pbnV0ZSlcbnNhcmRpbmVfZWdncyAoY291bnQpXG5hbmNob3Z5X2VnZ3MgKGNvdW50KVxuamFja19tYWNrZXJlbF9lZ2dzIChjb3VudClcbmhha2VfZWdncyAoY291bnQpXG5zcXVpZF9lZ2dzIChjb3VudClcbm90aGVyX2Zpc2hfZWdncyAoY291bnQpXG5jb21tZW50c1xucmVzb3J0ZWRcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJY3VmZXNfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRkljdWZlc19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJY3VmZXMvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWN1ZmVzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJY3VmZXMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJY3VmZXMiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWNydWlzZXMuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkljcnVpc2VzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkljcnVpc2VzLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgQ3J1aXNlcyIsICJDcnVpc2VzIHVzaW5nIG9uZSBvciBtb3JlIHNoaXBzIGNvbmR1Y3RlZCBhcyBwYXJ0IG9mIHRoZSBDYWxpZm9ybmlhIENvb3BlcmF0aXZlIE9jZWFuaWMgRmlzaGVyaWVzIEludmVzdGlnYXRpb25zIChDYWxDT0ZJKSBwcm9ncmFtIGFuZCBvdGhlciByZWxhdGVkIGNydWlzZXMgY29uZHVjdGVkIGJ5IHRoZSBOT0FBIFNvdXRod2VzdCBGaXNoZXJpZXMgU2NpZW5jZSBDZW50ZXIgZnJvbSAxOTUxIHRvIHByZXNlbnQuIE11bHRpLXB1cnBvc2UgY3J1aXNlcyBlLmcuLCBDYWxDT0ZJIGFuZCB0cmF3bGluZywgaW5jbHVkZSBhIGxpc3RpbmcgZm9yIGVhY2ggY3J1aXNlIHR5cGUuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxueWVhclxubW9udGhcbmNydWlzZV90eXBlXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRkljcnVpc2VzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRkljcnVpc2VzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJY3J1aXNlcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRkljcnVpc2VzIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkllZ2djbnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkllZ2djbnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWVnZ2NudC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIEVnZyBDb3VudHMiLCAiRmlzaCBlZ2cgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBlZ2dzIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gZWdncyB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiRWdnIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGVnZ3Mgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGUgKENhbENPSSBTcGVjaWVzIENvZGUpXG5lZ2dfY291bnQgKHJhdyBjb3VudClcbmVnZ3NfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGVnZ3MgZm9yIG9ibGlxdWUgdG93cywgRWdncyBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5lZ2dzXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGVnZ3MgZm9yIG1hbnRhIHRvd3MsIEVnZ3MgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRkllZ2djbnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRkllZ2djbnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWVnZ2NudC9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJZWdnY250LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJZWdnY250JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWVnZ2NudCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJZWdnY250cG9zLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJZWdnY250cG9zIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkllZ2djbnRwb3MuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBFZ2cgQ291bnRzIFBvc2l0aXZlIFRvd3MiLCAiRmlzaCBlZ2cgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBlZ2dzIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgZWdncyB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlciwgaS5lLiwgbm8gXCJ6ZXJvXCIgdG93cy4gVGhlIFwiRWdnIENvdW50c1wiIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGkuZS4sIGJvdGggcG9zaXRpdmUgYW5kIG5lZ2F0aXZlIHRvd3MuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmVnZ19jb3VudCAocmF3IGNvdW50KVxuZWdnc18xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgZWdncyBmb3Igb2JsaXF1ZSB0b3dzLCBFZ2dzIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmVnZ3NfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgZWdncyBmb3IgbWFudGEgdG93cywgRWdncyBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWVnZ2NudHBvc19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWVnZ2NudHBvc19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJZWdnY250cG9zL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRkllZ2djbnRwb3MucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRkllZ2djbnRwb3Mmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJZWdnY250cG9zIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkllZ2dzdGcuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkllZ2dzdGciLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWVnZ3N0Zy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIEVnZyBTdGFnZXMiLCAiRWdnIG1vcnBob2xvZ2ljYWwgZGV2ZWxvcG1lbnRhbCBzdGFnZSBmb3IgZWdncyBvZiBzZWxlY3RlZCBzcGVjaWVzIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cy4gU2VxdWVudGlhbCBkZXZlbG9wbWVudGFsIHN0YWdlcyBhcmUgZGVzY3JpYmVkIGJ5IE1vc2VyIGFuZCBBaGxzdHJvbSAoMTk4NTsgc2VlIHRoZSBpbmZvIHVybCByZWZlcmVuY2VzIHNlY3Rpb24pLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZSAoVG93IFR5cGUgTmFtZSlcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxuZWdnX3N0YWdlXG5lZ2dfc3RhZ2VfY291bnQgKFJhdyBjb3VudCBvZiBlZ2dzIGluIHRoZSBzdGFnZSlcbmVnZ3NfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGVnZ3MgZm9yIG9ibGlxdWUgdG93cywgRWdncyBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5lZ2dzXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGVnZ3MgZm9yIG1hbnRhIHRvd3MsIEVnZ3MgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRkllZ2dzdGdfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRkllZ2dzdGdfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWVnZ3N0Zy9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJZWdnc3RnLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJZWdnc3RnJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWVnZ3N0ZyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250cG9zLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250cG9zIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRwb3MuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3MiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBlZ2dzIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkgLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlciwgaS5lLiwgbm8gXCJ6ZXJvXCIgdG93cy4gVGhlIFwiTGFydmFlIENvdW50c1wiIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGkuZS4sIGJvdGggcG9zaXRpdmUgYW5kIG5lZ2F0aXZlIHRvd3MuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGluIHRoZSBzaXplIGNsYXNzIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgaW4gdGhlIHNpemUgY2xhc3MgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250cG9zX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250cG9zX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnRwb3MvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudHBvcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudHBvcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnRwb3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEF0b0FNLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250QXRvQU0iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEF0b0FNLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBBIHRvIEFNIiwgIkZpc2ggbGFydmFlIGNvdW50cyBhbmQgc3RhbmRhcmRpemVkIGNvdW50cyBmb3IgbGFydmFlIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzLCBpLmUuLCBuZWdhdGl2ZSB0b3dzLiBUaGUgXCJMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3NcIiB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzIHNlbGVjdGVkIGJ5IHRoZSB1c2VyLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZVxubmV0X3R5cGVcbnRvd19udW1iZXJcbm5ldF9sb2NhdGlvblxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5zYW1wbGVfcXVhbGl0eVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbnRpbWUgKFN0YXJ0IFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zY2llbnRpZmljX25hbWVcbmNvbW1vbl9uYW1lXG5pdGlzX3RzbiAoSW50ZXJncmF0ZWQgVGF4b21vbWljIEluZm9ybWF0aW9uIFN5c3RlbSBUYXhvbm9taWMgU2VyaWFsIE51bWJlcilcbmNhbGNvZmlfc3BlY2llc19jb2RlXG5sYXJ2YWVfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUpXG5sYXJ2YWVfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3Igb2JsaXF1ZSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5sYXJ2YWVfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydmNudEF0b0FNX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250QXRvQU1faXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudEF0b0FNL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZjbnRBdG9BTS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudEF0b0FNJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudEF0b0FNIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRBTnRvQVIuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRBTnRvQVIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEFOdG9BUi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIExhcnZhZSBDb3VudHMsIFNjaWVudGlmaWMgTmFtZXMgQU4gdG8gQVIiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250QU50b0FSX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250QU50b0FSX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnRBTnRvQVIvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudEFOdG9BUi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudEFOdG9BUiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnRBTnRvQVIiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEFTdG9CQS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEFTdG9CQSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250QVN0b0JBLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBBUyB0byBCQSIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRBU3RvQkFfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRBU3RvQkFfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudEFTdG9CQS9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250QVN0b0JBLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250QVN0b0JBJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudEFTdG9CQSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250QkNFdG9CWi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEJDRXRvQloiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEJDRXRvQlouZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIEJDRSB0byBCWiIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRCQ0V0b0JaX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250QkNFdG9CWl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250QkNFdG9CWi9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250QkNFdG9CWi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudEJDRXRvQlomc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250QkNFdG9CWiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250Q3RvQ0Uuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRDdG9DRSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250Q3RvQ0UuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIEMgdG8gQ0UiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250Q3RvQ0VfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRDdG9DRV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250Q3RvQ0UvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudEN0b0NFLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250Q3RvQ0Umc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250Q3RvQ0UiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudENEdG9DSC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudENEdG9DSCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250Q0R0b0NILmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBDRCB0byBDSCIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRDRHRvQ0hfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRDRHRvQ0hfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudENEdG9DSC9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250Q0R0b0NILnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250Q0R0b0NIJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudENEdG9DSCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250Q0l0b0NPLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250Q0l0b0NPIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRDSXRvQ08uZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIENJIHRvIENPIiwgIkZpc2ggbGFydmFlIGNvdW50cyBhbmQgc3RhbmRhcmRpemVkIGNvdW50cyBmb3IgbGFydmFlIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzLCBpLmUuLCBuZWdhdGl2ZSB0b3dzLiBUaGUgXCJMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3NcIiB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzIHNlbGVjdGVkIGJ5IHRoZSB1c2VyLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZVxubmV0X3R5cGVcbnRvd19udW1iZXJcbm5ldF9sb2NhdGlvblxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5zYW1wbGVfcXVhbGl0eVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbnRpbWUgKFN0YXJ0IFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zY2llbnRpZmljX25hbWVcbmNvbW1vbl9uYW1lXG5pdGlzX3RzbiAoSW50ZXJncmF0ZWQgVGF4b21vbWljIEluZm9ybWF0aW9uIFN5c3RlbSBUYXhvbm9taWMgU2VyaWFsIE51bWJlcilcbmNhbGNvZmlfc3BlY2llc19jb2RlXG5sYXJ2YWVfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUpXG5sYXJ2YWVfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3Igb2JsaXF1ZSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5sYXJ2YWVfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydmNudENJdG9DT19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydmNudENJdG9DT19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250Q0l0b0NPL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZjbnRDSXRvQ08ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZjbnRDSXRvQ08mc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250Q0l0b0NPIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRDUHRvREUuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRDUHRvREUiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudENQdG9ERS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIExhcnZhZSBDb3VudHMsIFNjaWVudGlmaWMgTmFtZXMgQ1AgdG8gREUiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250Q1B0b0RFX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250Q1B0b0RFX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnRDUHRvREUvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudENQdG9ERS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudENQdG9ERSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnRDUHRvREUiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudERIdG9FQy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudERIdG9FQyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250REh0b0VDLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBESCB0byBFQyIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRESHRvRUNfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRESHRvRUNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudERIdG9FQy9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250REh0b0VDLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250REh0b0VDJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudERIdG9FQyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250RUR0b0VVLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250RUR0b0VVIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRFRHRvRVUuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIEVEIHRvIEVVIiwgIkZpc2ggbGFydmFlIGNvdW50cyBhbmQgc3RhbmRhcmRpemVkIGNvdW50cyBmb3IgbGFydmFlIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzLCBpLmUuLCBuZWdhdGl2ZSB0b3dzLiBUaGUgXCJMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3NcIiB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzIHNlbGVjdGVkIGJ5IHRoZSB1c2VyLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZVxubmV0X3R5cGVcbnRvd19udW1iZXJcbm5ldF9sb2NhdGlvblxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5zYW1wbGVfcXVhbGl0eVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbnRpbWUgKFN0YXJ0IFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zY2llbnRpZmljX25hbWVcbmNvbW1vbl9uYW1lXG5pdGlzX3RzbiAoSW50ZXJncmF0ZWQgVGF4b21vbWljIEluZm9ybWF0aW9uIFN5c3RlbSBUYXhvbm9taWMgU2VyaWFsIE51bWJlcilcbmNhbGNvZmlfc3BlY2llc19jb2RlXG5sYXJ2YWVfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUpXG5sYXJ2YWVfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3Igb2JsaXF1ZSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5sYXJ2YWVfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydmNudEVEdG9FVV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydmNudEVEdG9FVV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250RUR0b0VVL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZjbnRFRHRvRVUucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZjbnRFRHRvRVUmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250RUR0b0VVIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRFVnRvR04uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRFVnRvR04iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEVWdG9HTi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIExhcnZhZSBDb3VudHMsIFNjaWVudGlmaWMgTmFtZXMgRVYgdG8gR04iLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250RVZ0b0dOX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250RVZ0b0dOX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnRFVnRvR04vaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudEVWdG9HTi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudEVWdG9HTiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnRFVnRvR04iXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEdPdG9IQS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEdPdG9IQSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250R090b0hBLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBHTyB0byBIQSIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRHT3RvSEFfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRHT3RvSEFfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudEdPdG9IQS9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250R090b0hBLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250R090b0hBJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudEdPdG9IQSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250SEJ0b0hJLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250SEJ0b0hJIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRIQnRvSEkuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIEhCIHRvIEhJIiwgIkZpc2ggbGFydmFlIGNvdW50cyBhbmQgc3RhbmRhcmRpemVkIGNvdW50cyBmb3IgbGFydmFlIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzLCBpLmUuLCBuZWdhdGl2ZSB0b3dzLiBUaGUgXCJMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3NcIiB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzIHNlbGVjdGVkIGJ5IHRoZSB1c2VyLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZVxubmV0X3R5cGVcbnRvd19udW1iZXJcbm5ldF9sb2NhdGlvblxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5zYW1wbGVfcXVhbGl0eVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbnRpbWUgKFN0YXJ0IFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zY2llbnRpZmljX25hbWVcbmNvbW1vbl9uYW1lXG5pdGlzX3RzbiAoSW50ZXJncmF0ZWQgVGF4b21vbWljIEluZm9ybWF0aW9uIFN5c3RlbSBUYXhvbm9taWMgU2VyaWFsIE51bWJlcilcbmNhbGNvZmlfc3BlY2llc19jb2RlXG5sYXJ2YWVfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUpXG5sYXJ2YWVfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3Igb2JsaXF1ZSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5sYXJ2YWVfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydmNudEhCdG9ISV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydmNudEhCdG9ISV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250SEJ0b0hJL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZjbnRIQnRvSEkucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZjbnRIQnRvSEkmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250SEJ0b0hJIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRISnRvSUQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRISnRvSUQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudEhKdG9JRC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIExhcnZhZSBDb3VudHMsIFNjaWVudGlmaWMgTmFtZXMgSEogdG8gSUQiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250SEp0b0lEX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250SEp0b0lEX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnRISnRvSUQvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudEhKdG9JRC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudEhKdG9JRCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnRISnRvSUQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudElFdG9MQS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudElFdG9MQSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250SUV0b0xBLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBJRSB0byBMQSIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRJRXRvTEFfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRJRXRvTEFfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudElFdG9MQS9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250SUV0b0xBLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250SUV0b0xBJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudElFdG9MQSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250TEJ0b0xJLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250TEJ0b0xJIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRMQnRvTEkuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIExCIHRvIExJIiwgIkZpc2ggbGFydmFlIGNvdW50cyBhbmQgc3RhbmRhcmRpemVkIGNvdW50cyBmb3IgbGFydmFlIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzLCBpLmUuLCBuZWdhdGl2ZSB0b3dzLiBUaGUgXCJMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3NcIiB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzIHNlbGVjdGVkIGJ5IHRoZSB1c2VyLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZVxubmV0X3R5cGVcbnRvd19udW1iZXJcbm5ldF9sb2NhdGlvblxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5zYW1wbGVfcXVhbGl0eVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbnRpbWUgKFN0YXJ0IFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zY2llbnRpZmljX25hbWVcbmNvbW1vbl9uYW1lXG5pdGlzX3RzbiAoSW50ZXJncmF0ZWQgVGF4b21vbWljIEluZm9ybWF0aW9uIFN5c3RlbSBUYXhvbm9taWMgU2VyaWFsIE51bWJlcilcbmNhbGNvZmlfc3BlY2llc19jb2RlXG5sYXJ2YWVfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUpXG5sYXJ2YWVfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3Igb2JsaXF1ZSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5sYXJ2YWVfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydmNudExCdG9MSV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydmNudExCdG9MSV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250TEJ0b0xJL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZjbnRMQnRvTEkucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZjbnRMQnRvTEkmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250TEJ0b0xJIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRMSnRvTUEuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRMSnRvTUEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudExKdG9NQS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIExhcnZhZSBDb3VudHMsIFNjaWVudGlmaWMgTmFtZXMgTEogdG8gTUEiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250TEp0b01BX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250TEp0b01BX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnRMSnRvTUEvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudExKdG9NQS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudExKdG9NQSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnRMSnRvTUEiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudE1CdG9NTy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudE1CdG9NTyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250TUJ0b01PLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBNQiB0byBNTyIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRNQnRvTU9fZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRNQnRvTU9faXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudE1CdG9NTy9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250TUJ0b01PLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250TUJ0b01PJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudE1CdG9NTyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250TVB0b05BLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250TVB0b05BIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRNUHRvTkEuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIE1QIHRvIE5BIiwgIkZpc2ggbGFydmFlIGNvdW50cyBhbmQgc3RhbmRhcmRpemVkIGNvdW50cyBmb3IgbGFydmFlIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzLCBpLmUuLCBuZWdhdGl2ZSB0b3dzLiBUaGUgXCJMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3NcIiB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzIHNlbGVjdGVkIGJ5IHRoZSB1c2VyLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZVxubmV0X3R5cGVcbnRvd19udW1iZXJcbm5ldF9sb2NhdGlvblxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5zYW1wbGVfcXVhbGl0eVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbnRpbWUgKFN0YXJ0IFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zY2llbnRpZmljX25hbWVcbmNvbW1vbl9uYW1lXG5pdGlzX3RzbiAoSW50ZXJncmF0ZWQgVGF4b21vbWljIEluZm9ybWF0aW9uIFN5c3RlbSBUYXhvbm9taWMgU2VyaWFsIE51bWJlcilcbmNhbGNvZmlfc3BlY2llc19jb2RlXG5sYXJ2YWVfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUpXG5sYXJ2YWVfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3Igb2JsaXF1ZSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5sYXJ2YWVfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydmNudE1QdG9OQV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydmNudE1QdG9OQV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250TVB0b05BL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZjbnRNUHRvTkEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZjbnRNUHRvTkEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250TVB0b05BIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnROQnRvT0wuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnROQnRvT0wiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudE5CdG9PTC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIExhcnZhZSBDb3VudHMsIFNjaWVudGlmaWMgTmFtZXMgTkIgdG8gT0wiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250TkJ0b09MX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250TkJ0b09MX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnROQnRvT0wvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudE5CdG9PTC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudE5CdG9PTCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnROQnRvT0wiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudE9NdG9PWC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudE9NdG9PWCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250T010b09YLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBPTSB0byBPWCIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRPTXRvT1hfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRPTXRvT1hfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudE9NdG9PWC9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250T010b09YLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250T010b09YJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudE9NdG9PWCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250T1l0b1BJLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250T1l0b1BJIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRPWXRvUEkuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIE9ZIHRvIFBJIiwgIkZpc2ggbGFydmFlIGNvdW50cyBhbmQgc3RhbmRhcmRpemVkIGNvdW50cyBmb3IgbGFydmFlIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzLCBpLmUuLCBuZWdhdGl2ZSB0b3dzLiBUaGUgXCJMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3NcIiB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzIHNlbGVjdGVkIGJ5IHRoZSB1c2VyLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZVxubmV0X3R5cGVcbnRvd19udW1iZXJcbm5ldF9sb2NhdGlvblxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5zYW1wbGVfcXVhbGl0eVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbnRpbWUgKFN0YXJ0IFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zY2llbnRpZmljX25hbWVcbmNvbW1vbl9uYW1lXG5pdGlzX3RzbiAoSW50ZXJncmF0ZWQgVGF4b21vbWljIEluZm9ybWF0aW9uIFN5c3RlbSBUYXhvbm9taWMgU2VyaWFsIE51bWJlcilcbmNhbGNvZmlfc3BlY2llc19jb2RlXG5sYXJ2YWVfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUpXG5sYXJ2YWVfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3Igb2JsaXF1ZSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5sYXJ2YWVfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydmNudE9ZdG9QSV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydmNudE9ZdG9QSV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250T1l0b1BJL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZjbnRPWXRvUEkucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZjbnRPWXRvUEkmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250T1l0b1BJIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRQTHRvUE8uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRQTHRvUE8iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFBMdG9QTy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIExhcnZhZSBDb3VudHMsIFNjaWVudGlmaWMgTmFtZXMgUEwgdG8gUE8iLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250UEx0b1BPX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250UEx0b1BPX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnRQTHRvUE8vaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudFBMdG9QTy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudFBMdG9QTyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnRQTHRvUE8iXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFBQdG9QWi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFBQdG9QWiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250UFB0b1BaLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBQUCB0byBQWiIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRQUHRvUFpfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRQUHRvUFpfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudFBQdG9QWi9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250UFB0b1BaLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250UFB0b1BaJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudFBQdG9QWiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250UXRvU0Euc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRRdG9TQSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250UXRvU0EuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIFEgdG8gU0EiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250UXRvU0FfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRRdG9TQV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250UXRvU0EvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudFF0b1NBLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250UXRvU0Emc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250UXRvU0EiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFNCdG9TQy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFNCdG9TQyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250U0J0b1NDLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBTQiB0byBTQyIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRTQnRvU0NfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRTQnRvU0NfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudFNCdG9TQy9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250U0J0b1NDLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250U0J0b1NDJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudFNCdG9TQyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250U0R0b1NJLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250U0R0b1NJIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRTRHRvU0kuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIFNEIHRvIFNJIiwgIkZpc2ggbGFydmFlIGNvdW50cyBhbmQgc3RhbmRhcmRpemVkIGNvdW50cyBmb3IgbGFydmFlIGNhcHR1cmVkIGluIENhbENPRkkgaWN0aHlvcGxhbmt0b24gbmV0cyAocHJpbWFyaWx5IHZlcnRpY2FsIFtDYWx2ZXQgb3IgUGFpcm92ZXRdLCBvYmxpcXVlIFtib25nbyBvciByaW5nIG5ldHNdLCBhbmQgc3VyZmFjZSB0b3dzIFtNYW50YSBuZXRzXSkuIFN1cmZhY2UgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxLDAwMCBtMyBzdHJhaW5lZC4gT2JsaXF1ZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEwIG0yIG9mIHN1cmZhY2Ugc2FtcGxlZC4gVGhpcyB0YWJsZSBpbmNsdWRlcyBhbGwgdG93cyBieSBzcGVjaWVzLCBldmVuIGlmIHplcm8gbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzLCBpLmUuLCBuZWdhdGl2ZSB0b3dzLiBUaGUgXCJMYXJ2YWUgQ291bnRzIFBvc2l0aXZlIFRvd3NcIiB0YWJsZSBpbmNsdWRlcyBvbmx5IHRvd3Mgd2hlcmUgb25lIG9yIG1vcmUgbGFydmFlIHdlcmUgY2FwdHVyZWQgZm9yIHRoZSBzcGVjaWVzIHNlbGVjdGVkIGJ5IHRoZSB1c2VyLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZVxubmV0X3R5cGVcbnRvd19udW1iZXJcbm5ldF9sb2NhdGlvblxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5zYW1wbGVfcXVhbGl0eVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbnRpbWUgKFN0YXJ0IFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zY2llbnRpZmljX25hbWVcbmNvbW1vbl9uYW1lXG5pdGlzX3RzbiAoSW50ZXJncmF0ZWQgVGF4b21vbWljIEluZm9ybWF0aW9uIFN5c3RlbSBUYXhvbm9taWMgU2VyaWFsIE51bWJlcilcbmNhbGNvZmlfc3BlY2llc19jb2RlXG5sYXJ2YWVfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUpXG5sYXJ2YWVfMTBtMiAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3Igb2JsaXF1ZSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgdGVuIG1ldGVycyBzcXVhcmVkIG9mIHdhdGVyIHNhbXBsZWQpXG5sYXJ2YWVfMTAwMG0zIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydmNudFNEdG9TSV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydmNudFNEdG9TSV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250U0R0b1NJL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZjbnRTRHRvU0kucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZjbnRTRHRvU0kmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250U0R0b1NJIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRTSnRvU1Quc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRTSnRvU1QiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFNKdG9TVC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIExhcnZhZSBDb3VudHMsIFNjaWVudGlmaWMgTmFtZXMgU0ogdG8gU1QiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250U0p0b1NUX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2Y250U0p0b1NUX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZjbnRTSnRvU1QvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudFNKdG9TVC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydmNudFNKdG9TVCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZjbnRTSnRvU1QiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFNVdG9URS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFNVdG9URSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250U1V0b1RFLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBTVSB0byBURSIsICJGaXNoIGxhcnZhZSBjb3VudHMgYW5kIHN0YW5kYXJkaXplZCBjb3VudHMgZm9yIGxhcnZhZSBjYXB0dXJlZCBpbiBDYWxDT0ZJIGljdGh5b3BsYW5rdG9uIG5ldHMgKHByaW1hcmlseSB2ZXJ0aWNhbCBbQ2FsdmV0IG9yIFBhaXJvdmV0XSwgb2JsaXF1ZSBbYm9uZ28gb3IgcmluZyBuZXRzXSwgYW5kIHN1cmZhY2UgdG93cyBbTWFudGEgbmV0c10pLiBTdXJmYWNlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMSwwMDAgbTMgc3RyYWluZWQuIE9ibGlxdWUgdG93cyBhcmUgbm9ybWFsbHkgc3RhbmRhcmRpemVkIHRvIGNvdW50IHBlciAxMCBtMiBvZiBzdXJmYWNlIHNhbXBsZWQuIFRoaXMgdGFibGUgaW5jbHVkZXMgYWxsIHRvd3MgYnkgc3BlY2llcywgZXZlbiBpZiB6ZXJvIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcywgaS5lLiwgbmVnYXRpdmUgdG93cy4gVGhlIFwiTGFydmFlIENvdW50cyBQb3NpdGl2ZSBUb3dzXCIgdGFibGUgaW5jbHVkZXMgb25seSB0b3dzIHdoZXJlIG9uZSBvciBtb3JlIGxhcnZhZSB3ZXJlIGNhcHR1cmVkIGZvciB0aGUgc3BlY2llcyBzZWxlY3RlZCBieSB0aGUgdXNlci5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2UgKENydWlzZSBDb2RlKVxuc2hpcCAoU2hpcCBOYW1lKVxuc2hpcF9jb2RlXG5vcmRlcl9vY2N1cGllZFxudG93X3R5cGVcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX2NvdW50IChSYXcgY291bnQgb2YgbGFydmFlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG9ibGlxdWUgdG93cywgRmlzaCBsYXJ2YWUgcGVyIHRlbiBtZXRlcnMgc3F1YXJlZCBvZiB3YXRlciBzYW1wbGVkKVxubGFydmFlXzEwMDBtMyAoU3RhbmRhcmRpemVkIGNvdW50IG9mIGxhcnZhZSBmb3IgbWFudGEgdG93cywgRmlzaCBsYXJ2YWUgcGVyIDEsMDAwIGN1YmljIG1ldGVycyBvZiB3YXRlciBzYW1wbGVkKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRklscnZjbnRTVXRvVEVfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRTVXRvVEVfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudFNVdG9URS9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJbHJ2Y250U1V0b1RFLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250U1V0b1RFJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudFNVdG9URSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250VEZ0b1Uuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRURnRvVSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2Y250VEZ0b1UuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBMYXJ2YWUgQ291bnRzLCBTY2llbnRpZmljIE5hbWVzIFRGIHRvIFUiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250VEZ0b1VfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENhbENPRklscnZjbnRURnRvVV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2Y250VEZ0b1UvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudFRGdG9VLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDYWxDT0ZJbHJ2Y250VEZ0b1Umc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2Y250VEZ0b1UiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydmNudFZ0b1ouc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRWdG9aIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRklscnZjbnRWdG9aLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIENvdW50cywgU2NpZW50aWZpYyBOYW1lcyBWIHRvIFoiLCAiRmlzaCBsYXJ2YWUgY291bnRzIGFuZCBzdGFuZGFyZGl6ZWQgY291bnRzIGZvciBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzIChwcmltYXJpbHkgdmVydGljYWwgW0NhbHZldCBvciBQYWlyb3ZldF0sIG9ibGlxdWUgW2JvbmdvIG9yIHJpbmcgbmV0c10sIGFuZCBzdXJmYWNlIHRvd3MgW01hbnRhIG5ldHNdKS4gU3VyZmFjZSB0b3dzIGFyZSBub3JtYWxseSBzdGFuZGFyZGl6ZWQgdG8gY291bnQgcGVyIDEsMDAwIG0zIHN0cmFpbmVkLiBPYmxpcXVlIHRvd3MgYXJlIG5vcm1hbGx5IHN0YW5kYXJkaXplZCB0byBjb3VudCBwZXIgMTAgbTIgb2Ygc3VyZmFjZSBzYW1wbGVkLiBUaGlzIHRhYmxlIGluY2x1ZGVzIGFsbCB0b3dzIGJ5IHNwZWNpZXMsIGV2ZW4gaWYgemVybyBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMsIGkuZS4sIG5lZ2F0aXZlIHRvd3MuIFRoZSBcIkxhcnZhZSBDb3VudHMgUG9zaXRpdmUgVG93c1wiIHRhYmxlIGluY2x1ZGVzIG9ubHkgdG93cyB3aGVyZSBvbmUgb3IgbW9yZSBsYXJ2YWUgd2VyZSBjYXB0dXJlZCBmb3IgdGhlIHNwZWNpZXMgc2VsZWN0ZWQgYnkgdGhlIHVzZXIuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG5zdGFuZGFyZF9oYXVsX2ZhY3Rvclxudm9sdW1lX3NhbXBsZWQgKGN1YmljIG1ldGVycylcbnBlcmNlbnRfc29ydGVkICglLzEwMClcbnNhbXBsZV9xdWFsaXR5XG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxudGltZSAoU3RhcnQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNjaWVudGlmaWNfbmFtZVxuY29tbW9uX25hbWVcbml0aXNfdHNuIChJbnRlcmdyYXRlZCBUYXhvbW9taWMgSW5mb3JtYXRpb24gU3lzdGVtIFRheG9ub21pYyBTZXJpYWwgTnVtYmVyKVxuY2FsY29maV9zcGVjaWVzX2NvZGVcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgZm9yIG1hbnRhIHRvd3MsIEZpc2ggbGFydmFlIHBlciAxLDAwMCBjdWJpYyBtZXRlcnMgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2Y250VnRvWl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydmNudFZ0b1pfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSWxydmNudFZ0b1ovaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydmNudFZ0b1oucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZjbnRWdG9aJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSWxydmNudFZ0b1oiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydnNpei5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydnNpeiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2c2l6LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIFNpemVzIiwgIlNpemUgZGF0YSBmb3Igc2VsZWN0ZWQgbGFydmFsIGZpc2ggY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZSAoVG93IFR5cGUgTmFtZSlcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX3NpemUgKFRvdGFsIGxlbmd0aCBvZiB0aGUgbGFydmFlLCBtbSlcbmxhcnZhZV9jb3VudCAoUmF3IGNvdW50IG9mIGxhcnZhZSlcbmxhcnZhZV8xMG0yIChTdGFuZGFyZGl6ZWQgY291bnQgb2YgbGFydmFlIGluIHRoZSBzaXplIGNsYXNzIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJbHJ2c2l6X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJbHJ2c2l6X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRklscnZzaXovaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSWxydnNpei5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSWxydnNpeiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRklscnZzaXoiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydnN0Zy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSWxydnN0ZyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJbHJ2c3RnLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgTGFydmFlIFN0YWdlcyIsICJEZXZlbG9wbWVudGFsIHN0YWdlcyAoeW9sayBzYWMsIHByZWZsZXhpb24sIGZsZXhpb24sIHBvc3RmbGV4aW9uLCBvciB0cmFuc2Zvcm1hdGlvbikgb2Ygc2VsZWN0ZWQgZmlzaCBsYXJ2YWUgY2FwdHVyZWQgaW4gQ2FsQ09GSSBpY3RoeW9wbGFua3RvbiBuZXRzLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50b3dfdHlwZSAoVG93IFR5cGUgTmFtZSlcbm5ldF90eXBlXG50b3dfbnVtYmVyXG5uZXRfbG9jYXRpb25cbnN0YW5kYXJkX2hhdWxfZmFjdG9yXG52b2x1bWVfc2FtcGxlZCAoY3ViaWMgbWV0ZXJzKVxucGVyY2VudF9zb3J0ZWQgKCUvMTAwKVxuc2FtcGxlX3F1YWxpdHlcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5saW5lXG5zdGF0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2NpZW50aWZpY19uYW1lXG5jb21tb25fbmFtZVxuaXRpc190c24gKEludGVyZ3JhdGVkIFRheG9tb21pYyBJbmZvcm1hdGlvbiBTeXN0ZW0gVGF4b25vbWljIFNlcmlhbCBOdW1iZXIpXG5jYWxjb2ZpX3NwZWNpZXNfY29kZVxubGFydmFlX3N0YWdlXG5sYXJ2YWVfc3RhZ2VfY291bnQgKFJhdyBjb3VudCBvZiBsYXJ2YWUgaW4gdGhlIHN0YWdlKVxubGFydmFlXzEwbTIgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgaW4gdGhlIHN0YWdlIGZvciBvYmxpcXVlIHRvd3MsIEZpc2ggbGFydmFlIHBlciB0ZW4gbWV0ZXJzIHNxdWFyZWQgb2Ygd2F0ZXIgc2FtcGxlZClcbmxhcnZhZV8xMDAwbTMgKFN0YW5kYXJkaXplZCBjb3VudCBvZiBsYXJ2YWUgaW4gdGhlIHN0YWdlIGZvciBtYW50YSB0b3dzLCBGaXNoIGxhcnZhZSBwZXIgMSwwMDAgY3ViaWMgbWV0ZXJzIG9mIHdhdGVyIHNhbXBsZWQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2FsQ09GSWxydnN0Z19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSWxydnN0Z19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJbHJ2c3RnL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9DYWxDT0ZJL2NhbGNvZmlfaW5mby5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENhbENPRklscnZzdGcucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklscnZzdGcmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJbHJ2c3RnIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZE5PQUFoeWRyb3Muc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZE5PQUFoeWRyb3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkTk9BQWh5ZHJvcy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDYWxDT0ZJIE5PQUFIeWRyb3MiLCAiSHlkcm9ncmFwaGljIGRhdGEgY29sbGVjdGVkIGJ5IGJ1Y2tldCwgQ1RELCBvciAxMC1tIE5pc2tpbiBib3R0bGUgYXMgcGFydCBvZiBDYWxDT0ZJIGFuZCByZWxhdGVkIGNydWlzZXMuIE5vdGUgdGhhdCBtb3N0IG94eWdlbiBhbmQgc2FsaW5pdHkgdmFsdWVzIGluIHRoaXMgdGFibGUgaGF2ZSBub3QgYmVlbiBjYWxpYnJhdGVkIHdpdGggd2F0ZXIgc2FtcGxlcy4gTW9zdCB1c2VycyB3aWxsIHdhbnQgdG8gdXNlIHRoZSBTY3JpcHBzIGh5ZHJvZ3JhcGhpYyBkYXRhIGluc3RlYWQuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRpbWUgKEVzdGltYXRlZCBkYXRldGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmNhc3RfdHlwZVxuc3RhbmRhcmRfZGVwdGggKG1ldGVycylcbnRlbXBlcmF0dXJlIChXYXRlciBUZW1wZXJhdHVyZSwgZGVncmVlIEMpXG5zYWxpbml0eSAocHN1KVxuZGVuc2l0eSAoV2F0ZXIgRGVuc2l0eSwgMTAwMCooZy9sIC0gMSkpXG5veHlnZW4gKERpc3NvbHZlZCBPeHlnZW4gQ29udGVudCwgbWwvbClcbmR5bmFtaWNfaGVpZ2h0IChkeW5hbWljIG1ldGVyKVxucGVyY2VudF9zYXR1cmF0aW9uIChQZXJjZW50IE94eWdlbiBzYXR1cmF0aW9uLCAlKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxpbmVcbnN0YXRpb25cbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmROT0FBaHlkcm9zX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmROT0FBaHlkcm9zX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZE5PQUFoeWRyb3MvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkTk9BQWh5ZHJvcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkTk9BQWh5ZHJvcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZE5PQUFoeWRyb3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2lvY2FsY29maUh5ZHJvQm90dGxlLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9zaW9jYWxjb2ZpSHlkcm9Cb3R0bGUiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2lvY2FsY29maUh5ZHJvQm90dGxlLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgU0lPIEh5ZHJvZ3JhcGhpYyBCb3R0bGUgRGF0YSIsICJTSU8gSHlkcm9ncmFwaGljIGRhdGFcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jc3RfY250IChDYXN0IENvdW50KVxuYnRsX2NudCAoQm90dGxlIENvdW50KVxuc3RhX2lkIChMaW5lIGFuZCBTdGF0aW9uKVxuZGVwdGhfaWQgKEJvdHRsZSBJZGVudGlmaWVyKVxuZGVwdGhtIChCb3R0bGUgRGVwdGgsIG1ldGVycylcbnRfZGVnYyAoVGVtcGVyYXR1cmUsIGRlZ3JlZSBDKVxuc2FsaW5pdHkgKHBzdSlcbm8ybWxfbCAoTWVhc3VyZWQgT3h5Z2VuLCBtbC9MIG9mIHNlYXdhdGVyKVxuc3RoZXRhIChQb3RlbnRpYWwgRGVuc2l0eSBvZiB3YXRlcilcbmJ0bG51bSAoQm90dGxlIE51bWJlcilcbnJlY2luZCAoRGF0YSBEZXNjcmlwdG9yIENvZGUpXG50X3ByZWMgKFRlbXBlcmF0dXJlIFByZWNpc2lvbilcbnRfcXVhbCAoVGVtcGVyYXR1cmUgUXVhbGl0eSlcbnNfcHJlYyAoU2FsaW5pdHkgUHJlY2lzaW9uKVxuc19xdWFsIChTYWxpbml0eSBRdWFsaXR5KVxucF9xdWFsIChQcmVzc3VyZSBRdWFsaXR5KVxub19xdWFsIChPeHlnZW4gUHJlY2lzaW9uKVxuc3RodGFxIChQb3RlbnRpYWwgRGVuc2l0eSBRdWFsaXR5KVxubzJzYXRxIChPeHlnZW4gc2F0dXJhdGlvbiBRdWFsaXR5KVxuY2hsb3JhIChDaGxvcm9waHlsbC1hLCB1Zy9MIG9mIHNlYXdhdGVyKVxuY2hscXVhIChDaGxvcm9waHlsbC1hIHF1YWxpdHkpXG5waGFlb3AgKFBoYWVvcGlnbWVudCBDb25jZW50cmF0aW9uLCB1Zy9MIG9mIHNlYXdhdGVyKVxucGhhcXVhIChQaGFlb3BpZ21lbnRzIHF1YWxpdHkpXG5wbzR1ZyAoTWVhc3VyZWQgUGhvc3BoYXRlIENvbmNlbnRyYXRpb24sIHVNL0wgb2Ygc2Vhd2F0ZXIpXG5wbzRxIChQaG9zcGhhdGUgcXVhbGl0eSlcbnNpbzN1ZyAoTWVhc3VyZWQgU2lsaWNhdGUgY29uY2VudHJhdGlvbiwgdU0vTCBvZiBzZWF3YXRlcilcbnNpbzNxdSAoU2lsaWNhdGUgcXVhbGl0eSlcbi4uLiAoMzMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2lvY2FsY29maUh5ZHJvQm90dGxlX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9zaW9jYWxjb2ZpSHlkcm9Cb3R0bGVfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vc2lvY2FsY29maUh5ZHJvQm90dGxlL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9jYWxjb2ZpLm9yZy9jY2RhdGEvZGF0YS1mb3JtYXRzLzc3LWRhdGFiYXNlLXRhYmxlcy5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3Npb2NhbGNvZmlIeWRyb0JvdHRsZS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9c2lvY2FsY29maUh5ZHJvQm90dGxlJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlVDU0QgU0lPIiwgInNpb2NhbGNvZmlIeWRyb0JvdHRsZSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9zaW9jYWxjb2ZpSHlkcm9Cb3R0bGVSZXBvcnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3Npb2NhbGNvZmlIeWRyb0JvdHRsZVJlcG9ydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9zaW9jYWxjb2ZpSHlkcm9Cb3R0bGVSZXBvcnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBTSU8gSHlkcm9ncmFwaGljIEJvdHRsZSBSZXBvcnQgZGF0YSIsICJTSU8gSHlkcm9ncmFwaGljIGRhdGFcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jc3RfY250IChDYXN0IENvdW50KVxuYnRsX2NudCAoQm90dGxlIENvdW50KVxuc3RhX2lkIChMaW5lIGFuZCBTdGF0aW9uKVxuZGVwdGhfaWQgKEJvdHRsZSBJZGVudGlmaWVyKVxucl9kZXB0aCAoUmVwb3J0ZWQgQm90dGxlIERlcHRoLCBtZXRlcnMpXG5yX3RlbXAgKFJlcG9ydGVkIFRlbXBlcmF0dXJlLCBkZWdyZWUgQylcbnJfcG90ZW1wIChSZXBvcnRlZCBQb3RlbnRpYWwgVGVtcGVyYXR1cmUsIGRlZ3JlZSBDKVxucl9zYWxpbml0eSAoUmVwb3J0ZWQgU2FsaW5pdHksIHBzdSlcbnJfc2lnbWEgKFJlcG9ydGVkIFBvdGVudGlhbCBEZW5zaXR5IG9mIHdhdGVyKVxucl9zdmEgKFJlcG9ydGVkIFNwZWNpZmljIFZvbHVtZSBBbm9tYWx5LCBkZWdyZWUgQylcbnJfZHluaHQgKFJlcG9ydGVkIER5bmFtaWMgSGVpZ2h0LCBkeW5hbWljIG1ldGVycylcbnJfbzIgKFJlcG9ydGVkIE94eWdlbiwgbWwvTCBvZiBzZWF3YXRlcilcbnJfbzJzYXQgKFJlcG9ydGVkIE94eWdlbiBTYXR1cmF0aW9uLCAlKVxucl9zaW8zIChSZXBvcnRlZCBTaWxpY2F0ZSBDb25jZW50cmF0aW9uLCB1TS9MIG9mIHNlYXdhdGVyKVxucl9wbzQgKFJlcG9ydGVkIFBob3NwaGF0ZSBDb25jZW50cmF0aW9uLCB1TS9MIG9mIHNlYXdhdGVyKVxucl9ubzMgKFJlcG9ydGVkIE5pdHJhdGUgQ29uY2VudHJhdGlvbiwgdU0vTCBvZiBzZWF3YXRlcilcbnJfbm8yIChSZXBvcnRlZCBOaXRyaXRlIENvbmNlbnRyYXRpb24sIHVNL0wgb2Ygc2Vhd2F0ZXIpXG5yX2NobGEgKFJlcG9ydGVkIENobG9yb3BoeWxsLWEsIHVnL0wgb2Ygc2Vhd2F0ZXIpXG5yX3BoYWVvIChSZXBvcnRlZCBQaGFlb3BoeXRpbiwgdWcvTCBvZiBzZWF3YXRlcilcbnJfcHJlcyAoUmVwb3J0ZWQgUHJlc3N1cmUsIGRiKVxucl9zYW1wIChTYW1wbGUgTnVtYmVyKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2lvY2FsY29maUh5ZHJvQm90dGxlUmVwb3J0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9zaW9jYWxjb2ZpSHlkcm9Cb3R0bGVSZXBvcnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vc2lvY2FsY29maUh5ZHJvQm90dGxlUmVwb3J0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9jYWxjb2ZpLm9yZy9jY2RhdGEvZGF0YS1mb3JtYXRzLzc3LWRhdGFiYXNlLXRhYmxlcy5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3Npb2NhbGNvZmlIeWRyb0JvdHRsZVJlcG9ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9c2lvY2FsY29maUh5ZHJvQm90dGxlUmVwb3J0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlVDU0QgU0lPIiwgInNpb2NhbGNvZmlIeWRyb0JvdHRsZVJlcG9ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9zaW9jYWxjb2ZpSHlkcm9DYXN0cy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2lvY2FsY29maUh5ZHJvQ2FzdHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2lvY2FsY29maUh5ZHJvQ2FzdHMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBTSU8gSHlkcm9ncmFwaGljIENhc3QgRGF0YSIsICJTSU8gSHlkcm9ncmFwaGljIGRhdGFcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jc3RfY250IChDYXN0IENvdW50KVxuY3J1aXNlX2lkXG5jcnV6X3N0YSAoQ3J1aXNlIElkKVxuZGJzdGFfaWQgKENhbENPRkkgTGluZSBhbmQgU3RhdGlvbilcbmNhc3RfaWRcbnN0YV9pZCAoTGluZSBhbmQgU3RhdGlvbilcbnF1YXJ0ZXIgKFF1YXJ0ZXIgb2YgWWVhcilcbnN0YV9jb2RlIChTdGF0aW9uIFR5cGUpXG5kaXN0YW5jZSAoRGlzdGFuY2UgZnJvbSBzaG9yZSlcbmRhdGVcbnllYXJcbm1vbnRoXG5qdWxpYW5fZGF0ZVxuanVsaWFuX2RheVxudGltZV9hc2NpaSAoVGltZSBvZiBDYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sYXRpdHVkZV9kZWdyZWVzXG5sYXRpdHVkZV9taW51dGVzXG5sYXRpdHVkZV9oZW1pc3BoZXJlXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxvbmdpdHVkZV9kZWdyZWVzXG5sb25naXR1ZGVfbWludXRlc1xubG9uZ2l0dWRlX2hlbWlzcGhlcmVcbnJwdF9saW5lIChSZXBvcnRlZCBMaW5lIE51bWJlcilcbnN0X2xpbmUgKE5vbWluYWwgQ2FsQ09GSSBMaW5lKVxuYWNfbGluZSAoQWN0dWFsIExpbmUgTnVtYmVyKVxucnB0X3N0YSAoUmVwb3J0ZWQgU3RhdGlvbilcbi4uLiAoMzQgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2lvY2FsY29maUh5ZHJvQ2FzdHNfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3Npb2NhbGNvZmlIeWRyb0Nhc3RzX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3Npb2NhbGNvZmlIeWRyb0Nhc3RzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9jYWxjb2ZpLm9yZy9jY2RhdGEvZGF0YS1mb3JtYXRzLzc3LWRhdGFiYXNlLXRhYmxlcy5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3Npb2NhbGNvZmlIeWRyb0Nhc3RzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1zaW9jYWxjb2ZpSHlkcm9DYXN0cyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJVQ1NEIFNJTyIsICJzaW9jYWxjb2ZpSHlkcm9DYXN0cyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDYWxDT0ZJc3Rucy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSXN0bnMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSXN0bnMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBTdGF0aW9ucyIsICJTdW1tYXJ5IGluZm9ybWF0aW9uIGFib3V0IHNhbXBsZSBsb2NhdGlvbnMgZm9yIE5PQUEgQ2FsQ09GSSBhbmQgcmVsYXRlZCBjcnVpc2VzLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZSAoQ3J1aXNlIENvZGUpXG5zaGlwIChTaGlwIE5hbWUpXG5zaGlwX2NvZGVcbm9yZGVyX29jY3VwaWVkXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmJvdHRvbV9kZXB0aCAoZmF0aG9tcylcbnJlbWFya3NcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDYWxDT0ZJc3Ruc19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2FsQ09GSXN0bnNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2FsQ09GSXN0bnMvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSXN0bnMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENhbENPRklzdG5zJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MiLCAiZXJkQ2FsQ09GSXN0bnMiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSXRvd3R5cC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSXRvd3R5cCIsICIiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsQ09GSSBUb3cgVHlwZXMiLCAiRGVzY3JpcHRpb24gb2YgZWFjaCBDYWxDT0ZJIG5ldCB0eXBlIGFuZCBpdHMgYXNzb2NpYXRlZCBhYmJyZXZpYXRpb24gaW4gdGhlIENhbENPRkkgZGF0YWJhc2UuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxubmV0X3R5cGVcbmxvbmdfbmV0X3R5cGVcbmRlc2NyaXB0aW9uXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENhbENPRkl0b3d0eXAvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0NhbENPRkkvY2FsY29maV9pbmZvLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2FsQ09GSXRvd3R5cC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSXRvd3R5cCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIiwgImVyZENhbENPRkl0b3d0eXAiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2FsQ09GSXRvd3Muc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkl0b3dzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENhbENPRkl0b3dzLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbENPRkkgVG93cyIsICJMb2NhdGlvbiwgcGVyZm9ybWFuY2UsIGFuZCBzdW1tYXJ5IGluZm9ybWF0aW9uIGFib3V0IGluZGl2aWR1YWwgbmV0IHRvd3MuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlIChDcnVpc2UgQ29kZSlcbnNoaXAgKFNoaXAgTmFtZSlcbnNoaXBfY29kZVxub3JkZXJfb2NjdXBpZWRcbnRvd190eXBlXG5uZXRfdHlwZVxudG93X251bWJlclxubmV0X2xvY2F0aW9uXG50aW1lIChTdGFydCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc3RhbmRhcmRfaGF1bF9mYWN0b3JcbnZvbHVtZV9zYW1wbGVkIChjdWJpYyBtZXRlcnMpXG5wZXJjZW50X3NvcnRlZCAoJS8xMDApXG5tZXNoX3NpemUgKE5ldCBNZXNoIFNpemUsIG1pY3JvbnMpXG50b3RhbF9lZ2dzXG5zb3J0ZWRfcGxhbmt0b25fdm9sdW1lIChtbC8xMDAwIG1eMylcbnNhbXBsZV9xdWFsaXR5XG5zbWFsbF9wbGFua3Rvbl92b2x1bWUgKG1sLzEwMDAgbV4zIG9mIHdhdGVyIHN0cmFpbmVkKVxudG90YWxfcGxhbmt0b25fdm9sdW1lIChtbC8xMDAwIG1eMyBvZiB3YXRlciBzdHJhaW5lZClcbnRvdGFsX2xhcnZhZVxuZW5kX3RpbWUgKEVuZCBUaW1lc3RhbXAsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG50b3RhbF9qdXZlbmlsZXNfb3JfYWR1bHRzIChUb3RhbCBKdXZlbmlsZS9BZHVsdHMpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGluZVxuc3RhdGlvblxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENhbENPRkl0b3dzX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDYWxDT0ZJdG93c19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDYWxDT0ZJdG93cy9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvQ2FsQ09GSS9jYWxjb2ZpX2luZm8uaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDYWxDT0ZJdG93cy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2FsQ09GSXRvd3Mmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBTV0ZTQyIsICJlcmRDYWxDT0ZJdG93cyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mZWRDYWxMYW5kaW5ncy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZmVkQ2FsTGFuZGluZ3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZmVkQ2FsTGFuZGluZ3MuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsaWZvcm5pYSBDb21tZXJjaWFsIEZpc2ggTGFuZGluZ3MsIDE5MzEtMTk3OCIsICJUaGUgR3JvdW5kZmlzaCBBbmFseXNpcyBUZWFtIGF0IHRoZSBTV0ZTQyBGaXNoZXJpZXMgRWNvbG9neSBEaXZpc2lvbiAoU2FudGFcbkNydXopIGNvbXBsZXRlZCB3b3JrIG9uIGEgQ2FsaWZvcm5pYSBjb21tZXJjaWFsIGxhbmRpbmdzIGRhdGFiYXNlLCB3aGljaFxuaW5jbHVkZXMgbGFuZGluZ3MgZnJvbSAxOTMxIHRocm91Z2ggMjAwNy4gTGFuZGluZ3MgZnJvbSAxOTMxIHRocm91Z2ggMTk2OFxud2VyZSByZWNvdmVyZWQgdXNpbmcgZnVuZHMgYW5kIHNlcnZpY2VzIHByb3ZpZGVkIGJ5IHRoZSBORVNESVMgQ2xpbWF0ZVxuRGF0YWJhc2UgTW9kZXJuaXphdGlvbiBQcm9ncmFtIChDRE1QKS4gVGhlIHJlY292ZXJlZCBkYXRhLCB3aGVuIGNvbWJpbmVkIHdpdGhcbm1vcmUgcmVjZW50IGxhbmRpbmdzIGVzdGltYXRlcyBmcm9tIHRoZSBDYWxpZm9ybmlhIENvb3BlcmF0aXZlIEdyb3VuZGZpc2hcblN1cnZleSBmcm9tIDE5NjkgdG8gMjAwNywgZm9ybXMgb25lIG9mIHRoZSBsb25nZXN0IGRldGFpbGVkIGNhdGNoIHJlY29yZHMgaW5cbnRoZSBVUy4gVGhlIDE5MzEtNjggcGVyaW9kIGluY2x1ZGVzIG1vbnRobHkgc3VtbWFyaWVzIG9mIGNhdGNoZXMgYnkgMTAtbWludXRlXG5nZW9ncmFwaGljIGJsb2Nrcy4gIFRoZXNlIGRhdGEgYXJlIG5vdyBvcGVubHkgYXZhaWxhYmxlIHRvIHRoZSBwdWJsaWMgZm9yIHVzZVxuaW4gc3RvY2sgYXNzZXNzbWVudHMgYW5kIG1vbml0b3Jpbmcgb2YgY2xpbWF0ZSBlZmZlY3RzLiBQZWFyc29uIGlzIGN1cnJlbnRseVxud29ya2luZyB3aXRoIHRoZSBDYWxpZm9ybmlhIERlcGFydG1lbnQgb2YgRmlzaCBhbmQgR2FtZSB0byBleHRlbmQgdGhlXG5nZW9ncmFwaGljIHN1bW1hcnkgaW5mb3JtYXRpb24gdG8gbW9yZSByZWNlbnQgeWVhcnMuIEFsc28sIHRoZSB0YXhhIHJlcG9ydGVkXG5pbiB0aGUgaGlzdG9yaWNhbCBkYXRhIGFyZSB0aGUgXCJtYXJrZXQgY2F0ZWdvcmllc1wiIHVzZWQgYnkgZmlzaCBwcm9jZXNzb3JzLFxuYW5kIG1heSBpbnZvbHZlIG11bHRpcGxlIHNwZWNpZXMgZ3JvdXBpbmdzLiBBIHByb2plY3QgaGFzIGJlZW4gaW5pdGlhdGVkIHRvXG5yZXNvbHZlIGhpc3RvcmljYWwgbGFuZGluZ3MgdG8gcHJvdmlkZSBiZXN0IGVzdGltYXRlcyBmb3IgaW5kaXZpZHVhbCBzcGVjaWVzLlxuXG5XaGVuIHVzaW5nIHRoaXMgZGF0YSBpdCBpcyBjcml0aWNhbCB0byB1bmRlcnN0YW5kIHRoYXQgYSBtYXJrZXQgY2F0ZWdvcnkgaXNcbk5PVCBhIHNwZWNpZXMgY29kZSAtIGl0IGlzIGEgc29ydCBncm91cC4gIFdoaWxlIGxhbmRpbmdzIGluIHNvbWUgbWFya2V0XG5jYXRlZ29yaWVzIG1heSBjb25zaXN0IGVudGlyZWx5IG9mIHRoZSBzcGVjaWVzIGZvciB3aGljaCB0aGV5IGFyZSBuYW1lZCxcbmxhbmRpbmdzIGluIG90aGVyIG1hcmtldCBjYXRlZ29yaWVzIG1heSBjb250YWluIGZldyBvZiB0aGUgc3BlY2llcyBmb3Igd2hpY2hcbnRoZXkgYXJlIG5hbWVkLlxuXG5HZW5lcmFsIE5vdGVzOlxuVGhlIGRhdGEgZnJvbSAxOTMwLTE5MzIgaGFzIGEgbG90IG9mIHVua25vd24gYmxvY2sgZGF0YS4gIFdoZW4gdGhlIHRyYXdsXG5sYW5kaW5nIGRhdGEgaXMgZW50ZXJlZCwgc29tZSBvZiB0aGlzIG1heSBiZSByZXNvbHZlZC4gIEF0IHRoZSBzYW1lIHRpbWUsXG5zb21lIGdlYXIgZGF0YSB3aWxsIGJlIGF2YWlsYWJsZS5cblxuV2hlbiBTb3VyY2UgQ29ycCBmaW5pc2hlcyBkYXRhIGVudHJ5IG9mIHRoZSBsYW5kaW5nIHJlY2VpcHQgZGF0YSwgZ2VhciBjb2RlXG5kYXRhIHdpbGwgYmUgYXZhaWxhYmxlIGZyb20gMTk1MS0xOTY4OyBob3dldmVyLCB0aGlzIHdpbGwgbm90IGJlIGNvbXBsZXRlZFxudW50aWwgYXJvdW5kIDIwMTEuXG5cbkJsb2NrIE1hcHM6IGh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvUGFDT09TL21rdF9jYXRjaC9jYV9sYW5kaW5nc19pbmZvLmh0bWxcbkRhdGEgU291cmNlOiBDYWxpZm9ybmlhIERlcGFydG1lbnQgb2YgRmlzaCAmIEdhbWUuXG5EYXRhIEFzc2VtYmx5OiBOT0FBIFNXRlNDIEZFRDsgQ29udGFjdDogRG9uLlBlYXJzb25Abm9hYS5nb3ZcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG5tYXJrZXRfY2F0ZWdvcnlcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZlZENhbExhbmRpbmdzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9QYUNPT1MvbWt0X2NhdGNoIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZlZENhbExhbmRpbmdzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mZWRDYWxMYW5kaW5ncyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIEZFRCIsICJmZWRDYWxMYW5kaW5ncyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDQU1hckNhdExNLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDQU1hckNhdExNIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENBTWFyQ2F0TE0uZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsaWZvcm5pYSBGaXNoIE1hcmtldCBDYXRjaCBMYW5kaW5ncywgTG9uZyBMaXN0LCAxOTI4LTIwMDIsIE1vbnRobHkiLCAiRGF0YWJhc2Ugb2YgZmlzaCBhbmQgaW52ZXJ0ZWJyYXRlcyBjYXVnaHQgb2ZmIENhbGlmb3JuaWEgYW5kIGxhbmRlZCBpbiBDYWxpZm9ybmlhLCBpbmNsdWRpbmcgY29tbWVyY2lhbCBmcmVzaHdhdGVyIGNhdGNoZXMgaW4gQ2FsaWZvcm5pYSB0aHJvdWdoIGJ1dCBub3QgYWZ0ZXIgMTk3MSBhbmQgc29tZSBtYXJpY3VsdHVyZWQgc2hlbGxmaXNoIHN1Y2ggYXMgb3lzdGVycyB0aHJvdWdoIDE5ODAuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L2xhc19maXNoMS9kb2MvbmFtZXNfZGVzY3JpYmUuaHRtbCBhbmRcbmh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvbGFzX2Zpc2gxL2RvYy9tYXJrZXRsaXN0Lmh0bWwgLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG55ZWFyXG5maXNoIChGaXNoIE5hbWUpXG5wb3J0XG5sYW5kaW5ncyAocG91bmRzKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDQU1hckNhdExNL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9sYXNfZmlzaDEvZG9jL25hbWVzX2Rlc2NyaWJlLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ0FNYXJDYXRMTS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ0FNYXJDYXRMTSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJDQSBERkcsIE5PQUEgRVJEIiwgImVyZENBTWFyQ2F0TE0iXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ0FNYXJDYXRMWS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ0FNYXJDYXRMWSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDQU1hckNhdExZLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbGlmb3JuaWEgRmlzaCBNYXJrZXQgQ2F0Y2ggTGFuZGluZ3MsIExvbmcgTGlzdCwgMTkyOC0yMDAyLCBZZWFybHkiLCAiRGF0YWJhc2Ugb2YgZmlzaCBhbmQgaW52ZXJ0ZWJyYXRlcyBjYXVnaHQgb2ZmIENhbGlmb3JuaWEgYW5kIGxhbmRlZCBpbiBDYWxpZm9ybmlhLCBpbmNsdWRpbmcgY29tbWVyY2lhbCBmcmVzaHdhdGVyIGNhdGNoZXMgaW4gQ2FsaWZvcm5pYSB0aHJvdWdoIGJ1dCBub3QgYWZ0ZXIgMTk3MSBhbmQgc29tZSBtYXJpY3VsdHVyZWQgc2hlbGxmaXNoIHN1Y2ggYXMgb3lzdGVycyB0aHJvdWdoIDE5ODAuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L2xhc19maXNoMS9kb2MvbmFtZXNfZGVzY3JpYmUuaHRtbCBhbmRcbmh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvbGFzX2Zpc2gxL2RvYy9tYXJrZXRsaXN0Lmh0bWwgLlxuXG5UaGlzIGRhdGFzZXQgaGFzIHRoZSBzdW1zIG9mIHRoZSBtb250aGx5IHZhbHVlcyBmb3IgZWFjaCBjYWxlbmRhciB5ZWFyLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG55ZWFyXG5maXNoIChGaXNoIE5hbWUpXG5wb3J0XG5sYW5kaW5ncyAocG91bmRzKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDQU1hckNhdExZL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9sYXNfZmlzaDEvZG9jL25hbWVzX2Rlc2NyaWJlLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ0FNYXJDYXRMWS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ0FNYXJDYXRMWSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJDQSBERkcsIE5PQUEgRVJEIiwgImVyZENBTWFyQ2F0TFkiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ0FNYXJDYXRTTS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ0FNYXJDYXRTTSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDQU1hckNhdFNNLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNhbGlmb3JuaWEgRmlzaCBNYXJrZXQgQ2F0Y2ggTGFuZGluZ3MsIFNob3J0IExpc3QsIDE5MjgtMjAwMiwgTW9udGhseSIsICJEYXRhYmFzZSBvZiBmaXNoIGFuZCBpbnZlcnRlYnJhdGVzIGNhdWdodCBvZmYgQ2FsaWZvcm5pYSBhbmQgbGFuZGVkIGluIENhbGlmb3JuaWEsIGluY2x1ZGluZyBjb21tZXJjaWFsIGZyZXNod2F0ZXIgY2F0Y2hlcyBpbiBDYWxpZm9ybmlhIHRocm91Z2ggYnV0IG5vdCBhZnRlciAxOTcxIGFuZCBzb21lIG1hcmljdWx0dXJlZCBzaGVsbGZpc2ggc3VjaCBhcyBveXN0ZXJzIHRocm91Z2ggMTk4MC4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvbGFzX2Zpc2gxL2RvYy9uYW1lc19kZXNjcmliZS5odG1sIGFuZFxuaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9sYXNfZmlzaDEvZG9jL21hcmtldGxpc3QuaHRtbCAuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnllYXJcbmZpc2ggKEZpc2ggTmFtZSlcbnBvcnRcbmxhbmRpbmdzIChwb3VuZHMpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENBTWFyQ2F0U00vaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L2xhc19maXNoMS9kb2MvbmFtZXNfZGVzY3JpYmUuaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDQU1hckNhdFNNLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDQU1hckNhdFNNJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkNBIERGRywgTk9BQSBFUkQiLCAiZXJkQ0FNYXJDYXRTTSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDQU1hckNhdFNZLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDQU1hckNhdFNZIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENBTWFyQ2F0U1kuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2FsaWZvcm5pYSBGaXNoIE1hcmtldCBDYXRjaCBMYW5kaW5ncywgU2hvcnQgTGlzdCwgMTkyOC0yMDAyLCBZZWFybHkiLCAiRGF0YWJhc2Ugb2YgZmlzaCBhbmQgaW52ZXJ0ZWJyYXRlcyBjYXVnaHQgb2ZmIENhbGlmb3JuaWEgYW5kIGxhbmRlZCBpbiBDYWxpZm9ybmlhLCBpbmNsdWRpbmcgY29tbWVyY2lhbCBmcmVzaHdhdGVyIGNhdGNoZXMgaW4gQ2FsaWZvcm5pYSB0aHJvdWdoIGJ1dCBub3QgYWZ0ZXIgMTk3MSBhbmQgc29tZSBtYXJpY3VsdHVyZWQgc2hlbGxmaXNoIHN1Y2ggYXMgb3lzdGVycyB0aHJvdWdoIDE5ODAuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L2xhc19maXNoMS9kb2MvbmFtZXNfZGVzY3JpYmUuaHRtbCBhbmRcbmh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvbGFzX2Zpc2gxL2RvYy9tYXJrZXRsaXN0Lmh0bWwgLlxuXG5UaGlzIGRhdGFzZXQgaGFzIHRoZSBzdW1zIG9mIHRoZSBtb250aGx5IHZhbHVlcyBmb3IgZWFjaCBjYWxlbmRhciB5ZWFyLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG55ZWFyXG5maXNoIChGaXNoIE5hbWUpXG5wb3J0XG5sYW5kaW5ncyAocG91bmRzKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDQU1hckNhdFNZL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9sYXNfZmlzaDEvZG9jL25hbWVzX2Rlc2NyaWJlLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ0FNYXJDYXRTWS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ0FNYXJDYXRTWSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJDQSBERkcsIE5PQUEgRVJEIiwgImVyZENBTWFyQ2F0U1kiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2lucEtmbVQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENpbnBLZm1UIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENpbnBLZm1ULmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNoYW5uZWwgSXNsYW5kcywgS2VscCBGb3Jlc3QgTW9uaXRvcmluZywgU2VhIFRlbXBlcmF0dXJlLCAxOTkzLTIwMDciLCAiVGhpcyBkYXRhc2V0IGZyb20gdGhlIENoYW5uZWwgSXNsYW5kcyBOYXRpb25hbCBQYXJrJ3MgS2VscCBGb3Jlc3QgTW9uaXRvcmluZyBQcm9ncmFtIGhhcyBzdWJ0aWRhbCB0ZW1wZXJhdHVyZSBkYXRhIHRha2VuIGF0IHBlcm1hbmVudCBtb25pdG9yaW5nIHNpdGVzLiAgU2luY2UgMTk5MywgcmVtb3RlIHRlbXBlcmF0dXJlIGxvZ2dlcnMgbWFudWZhY3R1cmVkIGJ5IE9uc2V0IENvbXB1dGVyIENvcnBvcmF0aW9uIHdlcmUgZGVwbG95ZWQgYXQgZWFjaCBzaXRlIGFwcHJveGltYXRlbHkgMTAtMjAgY20gZnJvbSB0aGUgYm90dG9tIGluIGEgdW5kZXJ3YXRlciBob3VzaW5nLiAgU2luY2UgMTk5MywgdGhyZWUgbW9kZWxzIG9mIHRlbXBlcmF0dXJlIGxvZ2dlcnMgKEhvYm9UZW1wICh0bSksIFN0b3dBd2F5IChSKSBhbmQgVGlkYml0KFIpKSB3ZXJlIHVzZWQgdG8gY29sbGVjdCB0ZW1wZXJhdHVyZSBkYXRhIGV2ZXJ5IDEtNSBob3VycyBkZXBlbmRpbmcgb24gdGhlIG1vZGVsIHVzZWQuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5zdGF0aW9uXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxuZGVwdGggKG0pXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxudGVtcGVyYXR1cmUgKFNlYSBXYXRlciBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2lucEtmbVRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENpbnBLZm1UX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENpbnBLZm1UL2luZGV4Lmpzb24iLCAiaHR0cDovL3d3dy5ucHMuZ292L2NoaXMvbmF0dXJlc2NpZW5jZS9pbmRleC5odG0iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2lucEtmbVQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENpbnBLZm1UJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkNJTlAiLCAiZXJkQ2lucEtmbVQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2lucEtmbVNGTkguc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENpbnBLZm1TRk5IIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENpbnBLZm1TRk5ILmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNoYW5uZWwgSXNsYW5kcywgS2VscCBGb3Jlc3QgTW9uaXRvcmluZywgU2l6ZSBhbmQgRnJlcXVlbmN5LCBOYXR1cmFsIEhhYml0YXQsIDE5ODUtMjAwNyIsICJUaGlzIGRhdGFzZXQgaGFzIG1lYXN1cmVtZW50cyBvZiB0aGUgc2l6ZSBvZiBzZWxlY3RlZCBhbmltYWwgc3BlY2llcyBhdCBzZWxlY3RlZCBsb2NhdGlvbnMgaW4gdGhlIENoYW5uZWwgSXNsYW5kcyBOYXRpb25hbCBQYXJrLiBTYW1wbGluZyBpcyBjb25kdWN0ZWQgYW5udWFsbHkgYmV0d2VlbiB0aGUgbW9udGhzIG9mIE1heS1PY3RvYmVyLCBzbyB0aGUgVGltZSBkYXRhIGluIHRoaXMgZmlsZSBpcyBKdWx5IDEgb2YgZWFjaCB5ZWFyIChhIG5vbWluYWwgdmFsdWUpLiBUaGUgc2l6ZSBmcmVxdWVuY3kgbWVhc3VyZW1lbnRzIHdlcmUgdGFrZW4gd2l0aGluIDEwIG1ldGVycyBvZiB0aGUgdHJhbnNlY3QgbGluZSBhdCBlYWNoIHNpdGUuICBEZXB0aHMgYXQgdGhlIHNpdGUgdmFyeSBzb21lLCBidXQgd2UgZGVzY3JpYmUgdGhlIGRlcHRoIG9mIHRoZSBzaXRlIGFsb25nIHRoZSB0cmFuc2VjdCBsaW5lIHdoZXJlIHRoYXQgc3RhdGlvbidzIHRlbXBlcmF0dXJlIGxvZ2dlciBpcyBsb2NhdGVkLCBhIHR5cGljYWwgZGVwdGggZm9yIHRoZSBzaXRlLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuaWQgKFN0YXRpb24gSWRlbnRpZmllcilcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5kZXB0aCAobSlcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5jb21tb25fbmFtZVxuc3BlY2llc19uYW1lXG5zaXplIChtbSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDaW5wS2ZtU0ZOSF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2lucEtmbVNGTkhfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2lucEtmbVNGTkgvaW5kZXguanNvbiIsICJodHRwOi8vd3d3Lm5wcy5nb3YvY2hpcy9uYXR1cmVzY2llbmNlL2luZGV4Lmh0bSIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDaW5wS2ZtU0ZOSC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2lucEtmbVNGTkgmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQ0lOUCIsICJlcmRDaW5wS2ZtU0ZOSCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDaW5wS2ZtMVEuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENpbnBLZm0xUSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDaW5wS2ZtMVEuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2hhbm5lbCBJc2xhbmRzLCBLZWxwIEZvcmVzdCBNb25pdG9yaW5nLCBTdXJ2ZXksIDFtIFF1YWRyYXQsIDE5ODItMjAwNyIsICJUaGlzIGRhdGFzZXQgZnJvbSB0aGUgQ2hhbm5lbCBJc2xhbmRzIE5hdGlvbmFsIFBhcmsncyBLZWxwIEZvcmVzdCBNb25pdG9yaW5nIFByb2dyYW0gaGFzIG1lYXN1cmVtZW50cyBvZiB0aGUgYWJ1bmRhbmNlIChkZW5zaXR5KSBvZiByZWxhdGl2ZWx5IGFidW5kYW50IHNlbGVjdGVkIHNlZGVudGFyeSBpbmRpY2F0b3Igc3BlY2llcy4gIFRoZSBzdW1tYXJ5IGRhdGEgcHJlc2VudGVkIGhlcmUgcmVwcmVzZW50cyB0aGUgbWVhbiBkZW5zaXR5IHBlciBzcXVhcmUgbWV0ZXIuIFNhbXBsaW5nIGlzIGNvbmR1Y3RlZCBhbm51YWxseSBiZXR3ZWVuIHRoZSBtb250aHMgb2YgTWF5LU9jdG9iZXIsIHNvIHRoZSBUaW1lIGRhdGEgaW4gdGhpcyBmaWxlIGlzIEp1bHkgMSBvZiBlYWNoIHllYXIgKGEgbm9taW5hbCB2YWx1ZSkuIFRoZSBhY3R1YWwgbWVhc3VyZW1lbnRzIHdlcmUgdGFrZW4gYXQgdmFyaW91cyBkZXB0aHMsIHNvIHRoZSBEZXB0aCBkYXRhIGluIHRoaXMgZmlsZSBpcyB0aGUgZGVwdGggb2YgdGhlIHN0YXRpb24ncyB0ZW1wZXJhdHVyZSBsb2dnZXIsIHdoaWNoIGlzIGEgdHlwaWNhbCBkZXB0aC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb25cbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5kZXB0aCAobSlcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5BZ2FydW1fZmltYnJpYXR1bV9hZHVsdF9NZWFuX0RlbnNpdHkgKG0tMilcbkFnYXJ1bV9maW1icmlhdHVtX2FkdWx0X1N0ZERldlxuQWdhcnVtX2ZpbWJyaWF0dW1fYWR1bHRfU3RkRXJyXG5BZ2FydW1fZmltYnJpYXR1bV9qdXZlbmlsZV9NZWFuX0RlbnNpdHkgKG0tMilcbkFnYXJ1bV9maW1icmlhdHVtX2p1dmVuaWxlX1N0ZERldlxuQWdhcnVtX2ZpbWJyaWF0dW1fanV2ZW5pbGVfU3RkRXJyXG5BbGxvY2xpbnVzX2hvbGRlcmlfTWVhbl9EZW5zaXR5IChtLTIpXG5BbGxvY2xpbnVzX2hvbGRlcmlfU3RkRGV2XG5BbGxvY2xpbnVzX2hvbGRlcmlfU3RkRXJyXG5BcGx5c2lhX2NhbGlmb3JuaWNhX01lYW5fRGVuc2l0eSAobS0yKVxuQXBseXNpYV9jYWxpZm9ybmljYV9TdGREZXZcbkFwbHlzaWFfY2FsaWZvcm5pY2FfU3RkRXJyXG5Bc3RlcmluYV9taW5pYXRhX01lYW5fRGVuc2l0eSAobS0yKVxuQXN0ZXJpbmFfbWluaWF0YV9TdGREZXZcbkFzdGVyaW5hX21pbmlhdGFfU3RkRXJyXG5DZW50cm9zdGVwaGFudXNfY29yb25hdHVzX01lYW5fRGVuc2l0eSAobS0yKVxuQ2VudHJvc3RlcGhhbnVzX2Nvcm9uYXR1c19TdGREZXZcbi4uLiAoOTEgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2lucEtmbTFRX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDaW5wS2ZtMVFfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2lucEtmbTFRL2luZGV4Lmpzb24iLCAiaHR0cDovL3d3dy5ucHMuZ292L2NoaXMvbmF0dXJlc2NpZW5jZS9pbmRleC5odG0iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2lucEtmbTFRLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDaW5wS2ZtMVEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQ0lOUCIsICJlcmRDaW5wS2ZtMVEiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2lucEtmbTVRLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDaW5wS2ZtNVEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2lucEtmbTVRLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNoYW5uZWwgSXNsYW5kcywgS2VscCBGb3Jlc3QgTW9uaXRvcmluZywgU3VydmV5LCA1bSBRdWFkcmF0LCAxOTk2LTIwMDciLCAiVGhpcyBkYXRhc2V0IGZyb20gdGhlIENoYW5uZWwgSXNsYW5kcyBOYXRpb25hbCBQYXJrJ3MgS2VscCBGb3Jlc3QgTW9uaXRvcmluZyBQcm9ncmFtIGhhcyBtZWFzdXJlbWVudHMgb2YgdGhlIGFidW5kYW5jZSBvZiBzZWxlY3RlZCByYXJlLCBjbHVtcGVkLCBzZWRlbnRhcnkgaW5kaWNhdG9yIHNwZWNpZXMuIFRoZSBzdW1tYXJ5IGRhdGEgcHJlc2VudGVkIGhlcmUgcmVwcmVzZW50cyB0aGUgbWVhbiBkZW5zaXR5IHBlciBzcXVhcmUgbWV0ZXIuIFNhbXBsaW5nIGlzIGNvbmR1Y3RlZCBhbm51YWxseSBiZXR3ZWVuIHRoZSBtb250aHMgb2YgTWF5LU9jdG9iZXIsIHNvIHRoZSBUaW1lIGRhdGEgaW4gdGhpcyBmaWxlIGlzIEp1bHkgMSBvZiBlYWNoIHllYXIgKGEgbm9taW5hbCB2YWx1ZSkuIFRoZSBvcmlnaW5hbCBtZWFzdXJlbWVudHMgd2VyZSB0YWtlbiBhdCB2YXJpb3VzIGRlcHRocywgc28gdGhlIERlcHRoIGRhdGEgaW4gdGhpcyBmaWxlIGlzIHRoZSBkZXB0aCBvZiB0aGUgc3RhdGlvbidzIHRlbXBlcmF0dXJlIGxvZ2dlciwgd2hpY2ggaXMgYSB0eXBpY2FsIGRlcHRoLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvblxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmRlcHRoIChtKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbk1hY3JvY3lzdGlzX3B5cmlmZXJhX0FkdWx0X01lYW5fRGVuc2l0eSAobS0yKVxuTWFjcm9jeXN0aXNfcHlyaWZlcmFfQWR1bHRfU3RkRGV2XG5NYWNyb2N5c3Rpc19weXJpZmVyYV9BZHVsdF9TdGRFcnJcbk1hY3JvY3lzdGlzX3B5cmlmZXJhX1N1YmFkdWx0X01lYW5fRGVuc2l0eSAobS0yKVxuTWFjcm9jeXN0aXNfcHlyaWZlcmFfU3ViYWR1bHRfU3RkRGV2XG5NYWNyb2N5c3Rpc19weXJpZmVyYV9TdWJhZHVsdF9TdGRFcnJcblBpc2FzdGVyX2dpZ2FudGV1c19NZWFuX0RlbnNpdHkgKG0tMilcblBpc2FzdGVyX2dpZ2FudGV1c19TdGREZXZcblBpc2FzdGVyX2dpZ2FudGV1c19TdGRFcnJcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRDaW5wS2ZtNVFfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZENpbnBLZm01UV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDaW5wS2ZtNVEvaW5kZXguanNvbiIsICJodHRwOi8vd3d3Lm5wcy5nb3YvY2hpcy9uYXR1cmVzY2llbmNlL2luZGV4Lmh0bSIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRDaW5wS2ZtNVEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZENpbnBLZm01USZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJDSU5QIiwgImVyZENpbnBLZm01USJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDaW5wS2ZtQlQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENpbnBLZm1CVCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDaW5wS2ZtQlQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ2hhbm5lbCBJc2xhbmRzLCBLZWxwIEZvcmVzdCBNb25pdG9yaW5nLCBTdXJ2ZXksIEJhbmQgVHJhbnNlY3QsIDE5ODMtMjAwNyIsICJUaGlzIGRhdGFzZXQgZnJvbSB0aGUgQ2hhbm5lbCBJc2xhbmRzIE5hdGlvbmFsIFBhcmsncyBLZWxwIEZvcmVzdCBNb25pdG9yaW5nIFByb2dyYW0gaGFzIG1lYXN1cmVtZW50cyBvZiB0aGUgYWJ1bmRhbmNlIGFuZCBkaXN0cmlidXRpb24gb2YgcmFyZSBhbmQgY2x1bXBlZCBvcmdhbmlzbXMgbm90IGFkZXF1YXRlbHkgc2FtcGxlZCBieSBxdWFkcmF0cy4gVGhlIHN1bW1hcnkgZGF0YSBwcmVzZW50ZWQgaGVyZSByZXByZXNlbnRzIHRoZSBtZWFuIGRlbnNpdHkgcGVyIHNxdWFyZSBtZXRlci4gU2FtcGxpbmcgaXMgY29uZHVjdGVkIGFubnVhbGx5IGJldHdlZW4gdGhlIG1vbnRocyBvZiBNYXktT2N0b2Jlciwgc28gdGhlIFRpbWUgZGF0YSBpbiB0aGlzIGZpbGUgaXMgSnVseSAxIG9mIGVhY2ggeWVhciAoYSBub21pbmFsIHZhbHVlKS4gVGhlIGFjdHVhbCBtZWFzdXJlbWVudHMgd2VyZSB0YWtlbiBhdCB2YXJpb3VzIGRlcHRocywgc28gdGhlIERlcHRoIGRhdGEgaW4gdGhpcyBmaWxlIGlzIHRoZSBkZXB0aCBvZiB0aGUgc3RhdGlvbidzIHRlbXBlcmF0dXJlIGxvZ2dlciwgd2hpY2ggaXMgYSB0eXBpY2FsIGRlcHRoLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvblxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmRlcHRoIChtKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbkFwbHlzaWFfY2FsaWZvcm5pY2FfTWVhbl9EZW5zaXR5IChtLTIpXG5BcGx5c2lhX2NhbGlmb3JuaWNhX1N0ZERldlxuQXBseXNpYV9jYWxpZm9ybmljYV9TdGRFcnJcbkNyYXNzZWRvbWFfZ2lnYW50ZXVtX01lYW5fRGVuc2l0eSAobS0yKVxuQ3Jhc3NlZG9tYV9naWdhbnRldW1fU3RkRGV2XG5DcmFzc2Vkb21hX2dpZ2FudGV1bV9TdGRFcnJcbkhhbGlvdGlzX2NvcnJ1Z2F0YV9NZWFuX0RlbnNpdHkgKG0tMilcbkhhbGlvdGlzX2NvcnJ1Z2F0YV9TdGREZXZcbkhhbGlvdGlzX2NvcnJ1Z2F0YV9TdGRFcnJcbkhhbGlvdGlzX2Z1bGdlbnNfTWVhbl9EZW5zaXR5IChtLTIpXG5IYWxpb3Rpc19mdWxnZW5zX1N0ZERldlxuSGFsaW90aXNfZnVsZ2Vuc19TdGRFcnJcbkhhbGlvdGlzX3J1ZmVzY2Vuc19NZWFuX0RlbnNpdHkgKG0tMilcbkhhbGlvdGlzX3J1ZmVzY2Vuc19TdGREZXZcbkhhbGlvdGlzX3J1ZmVzY2Vuc19TdGRFcnJcbktlbGxldGlhX2tlbGxldGlpX01lYW5fRGVuc2l0eSAobS0yKVxuS2VsbGV0aWFfa2VsbGV0aWlfU3RkRGV2XG4uLi4gKDMxIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZENpbnBLZm1CVF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2lucEtmbUJUX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZENpbnBLZm1CVC9pbmRleC5qc29uIiwgImh0dHA6Ly93d3cubnBzLmdvdi9jaGlzL25hdHVyZXNjaWVuY2UvaW5kZXguaHRtIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZENpbnBLZm1CVC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2lucEtmbUJUJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkNJTlAiLCAiZXJkQ2lucEtmbUJUIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENpbnBLZm1GVC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2lucEtmbUZUIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZENpbnBLZm1GVC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDaGFubmVsIElzbGFuZHMsIEtlbHAgRm9yZXN0IE1vbml0b3JpbmcsIFN1cnZleSwgRmlzaCBUcmFuc2VjdCwgMTk4NS0yMDA3IiwgIlRoaXMgZGF0YXNldCBmcm9tIHRoZSBDaGFubmVsIElzbGFuZHMgTmF0aW9uYWwgUGFyaydzIEtlbHAgRm9yZXN0IE1vbml0b3JpbmcgUHJvZ3JhbSBoYXMgbWVhc3VyZW1lbnRzIG9mIHRoZSBhYnVuZGFuY2Ugb2YgZmlzaCBzcGVjaWVzLiBUaGUgb3JpZ2luYWwgbWVhc3VyZW1lbnRzIHdlcmUgdGFrZW4gYXQgdmFyaW91cyBkZXB0aHMsIHNvIHRoZSBEZXB0aCBkYXRhIGluIHRoaXMgZmlsZSBpcyB0aGUgZGVwdGggb2YgdGhlIHN0YXRpb24ncyB0ZW1wZXJhdHVyZSBsb2dnZXIsIHdoaWNoIGlzIGEgdHlwaWNhbCBkZXB0aC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb25cbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5kZXB0aCAobSlcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5DaHJvbWlzX3B1bmN0aXBpbm5pc19BZHVsdCAoTnVtYmVyIG9mIENocm9taXMgcHVuY3RpcGlubmlzIEFkdWx0LCBwZXIgMTAwbVgybVgzMG0gdHJhbnNlY3QpXG5DaHJvbWlzX3B1bmN0aXBpbm5pc19KdXZlbmlsZSAoTnVtYmVyIG9mIENocm9taXMgcHVuY3RpcGlubmlzIEp1dmVuaWxlLCBwZXIgMTAwbVgybVgzMG0gdHJhbnNlY3QpXG5EYW1hbGljaHRoeXNfdmFjY2FfQWR1bHQgKE51bWJlciBvZiBEYW1hbGljaHRoeXMgdmFjY2EgQWR1bHQsIHBlciAxMDBtWDJtWDMwbSB0cmFuc2VjdClcbkRhbWFsaWNodGh5c192YWNjYV9KdXZlbmlsZSAoTnVtYmVyIG9mIERhbWFsaWNodGh5cyB2YWNjYSBKdXZlbmlsZSwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuRW1iaW90b2NhX2phY2tzb25pX0FkdWx0IChOdW1iZXIgb2YgRW1iaW90b2NhIGphY2tzb25pIEFkdWx0LCBwZXIgMTAwbVgybVgzMG0gdHJhbnNlY3QpXG5FbWJpb3RvY2FfamFja3NvbmlfSnV2ZW5pbGUgKE51bWJlciBvZiBFbWJpb3RvY2EgamFja3NvbmkgSnV2ZW5pbGUsIHBlciAxMDBtWDJtWDMwbSB0cmFuc2VjdClcbkVtYmlvdG9jYV9sYXRlcmFsaXNfQWR1bHQgKE51bWJlciBvZiBFbWJpb3RvY2EgbGF0ZXJhbGlzIEFkdWx0LCBwZXIgMTAwbVgybVgzMG0gdHJhbnNlY3QpXG5FbWJpb3RvY2FfbGF0ZXJhbGlzX0p1dmVuaWxlIChOdW1iZXIgb2YgRW1iaW90b2NhIGxhdGVyYWxpcyBKdXZlbmlsZSwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuR2lyZWxsYV9uaWdyaWNhbnNfQWR1bHQgKE51bWJlciBvZiBHaXJlbGxhIG5pZ3JpY2FucyBBZHVsdCwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuR2lyZWxsYV9uaWdyaWNhbnNfSnV2ZW5pbGUgKE51bWJlciBvZiBHaXJlbGxhIG5pZ3JpY2FucyBKdXZlbmlsZSwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuSGFsaWNob2VyZXNfc2VtaWNpbmN0dXNfRmVtYWxlIChOdW1iZXIgb2YgSGFsaWNob2VyZXMgc2VtaWNpbmN0dXMgRmVtYWxlLCBwZXIgMTAwbVgybVgzMG0gdHJhbnNlY3QpXG5IYWxpY2hvZXJlc19zZW1pY2luY3R1c19NYWxlIChOdW1iZXIgb2YgSGFsaWNob2VyZXMgc2VtaWNpbmN0dXMgTWFsZSwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuSHlwc3lwb3BzX3J1YmljdW5kdXNfQWR1bHQgKE51bWJlciBvZiBIeXBzeXBvcHMgcnViaWN1bmR1cyBBZHVsdCwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuSHlwc3lwb3BzX3J1YmljdW5kdXNfSnV2ZW5pbGUgKE51bWJlciBvZiBIeXBzeXBvcHMgcnViaWN1bmR1cyBKdXZlbmlsZSwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuT3h5anVsaXNfY2FsaWZvcm5pY2FfQWR1bHQgKE51bWJlciBvZiBPeHlqdWxpcyBjYWxpZm9ybmljYSBBZHVsdCwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuT3h5anVsaXNfY2FsaWZvcm5pY2FfSnV2ZW5pbGUgKE51bWJlciBvZiBPeHlqdWxpcyBjYWxpZm9ybmljYSBKdXZlbmlsZSwgcGVyIDEwMG1YMm1YMzBtIHRyYW5zZWN0KVxuUGFyYWxhYnJheF9jbGF0aHJhdHVzX0FkdWx0IChOdW1iZXIgb2YgUGFyYWxhYnJheCBjbGF0aHJhdHVzIEFkdWx0LCBwZXIgMTAwbVgybVgzMG0gdHJhbnNlY3QpXG5QYXJhbGFicmF4X2NsYXRocmF0dXNfSnV2ZW5pbGUgKE51bWJlciBvZiBQYXJhbGFicmF4IGNsYXRocmF0dXMgSnV2ZW5pbGUsIHBlciAxMDBtWDJtWDMwbSB0cmFuc2VjdClcblNlYmFzdGVzX2F0cm92aXJlbnNfQWR1bHQgKE51bWJlciBvZiBTZWJhc3RlcyBhdHJvdmlyZW5zIEFkdWx0LCBwZXIgMTAwbVgybVgzMG0gdHJhbnNlY3QpXG4uLi4gKDggbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2lucEtmbUZUX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRDaW5wS2ZtRlRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkQ2lucEtmbUZUL2luZGV4Lmpzb24iLCAiaHR0cDovL3d3dy5ucHMuZ292L2NoaXMvbmF0dXJlc2NpZW5jZS9pbmRleC5odG0iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2lucEtmbUZULnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRDaW5wS2ZtRlQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQ0lOUCIsICJlcmRDaW5wS2ZtRlQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2lucEtmbVJQQy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkQ2lucEtmbVJQQyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRDaW5wS2ZtUlBDLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNoYW5uZWwgSXNsYW5kcywgS2VscCBGb3Jlc3QgTW9uaXRvcmluZywgU3VydmV5LCBSYW5kb20gUG9pbnQgQ29udGFjdCwgMTk4Mi0yMDA3IiwgIlRoaXMgZGF0YXNldCBmcm9tIHRoZSBDaGFubmVsIElzbGFuZHMgTmF0aW9uYWwgUGFyaydzIEtlbHAgRm9yZXN0IE1vbml0b3JpbmcgUHJvZ3JhbSBoYXMgZXN0aW1hdGVzIG9mIHN1YnN0cmF0ZSBjb21wb3NpdGlvbiBhbmQgcGVyY2VudCBjb3ZlciBvZiBzZWxlY3RlZCBhbGdhbCBhbmQgaW52ZXJ0ZWJyYXRlIHRheGEuIFRoZSBkYXRhIHN1bW1hcnkgZGF0YSBwcmVzZW50ZWQgaGVyZSByZXByZXNlbnRzIHRoZSBtZWFuIHBlcmNlbnQgY292ZXIgb2YgdGhlIGluZGljYXRvciBzcGVjaWVzIGF0IHRoZSBzaXRlLiBTYW1wbGluZyBpcyBjb25kdWN0ZWQgYW5udWFsbHkgYmV0d2VlbiB0aGUgbW9udGhzIG9mIE1heS1PY3RvYmVyLCBzbyB0aGUgVGltZSBkYXRhIGluIHRoaXMgZmlsZSBpcyBKdWx5IDEgb2YgZWFjaCB5ZWFyIChhIG5vbWluYWwgdmFsdWUpLiBUaGUgYWN0dWFsIG1lYXN1cmVtZW50cyB3ZXJlIHRha2VuIGF0IHZhcmlvdXMgZGVwdGhzLCBzbyB0aGUgRGVwdGggZGF0YSBpbiB0aGlzIGZpbGUgaXMgdGhlIGRlcHRoIG9mIHRoZSBzdGF0aW9uJ3MgdGVtcGVyYXR1cmUgbG9nZ2VyLCB3aGljaCBpcyBhIHR5cGljYWwgZGVwdGguXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5zdGF0aW9uXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxuZGVwdGggKG0pXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuQXJ0aWN1bGF0ZWRfQ29yYWxsaW5lX0FsZ2FlX01lYW4gKHBlcmNlbnQgY292ZXIpXG5BcnRpY3VsYXRlZF9Db3JhbGxpbmVfQWxnYWVfU3RkRGV2XG5BcnRpY3VsYXRlZF9Db3JhbGxpbmVfQWxnYWVfU3RkRXJyXG5Bc3RyYW5naWFfbGFqb2xsYWVuc2lzX01lYW4gKHBlcmNlbnQgY292ZXIpXG5Bc3RyYW5naWFfbGFqb2xsYWVuc2lzX1N0ZERldlxuQXN0cmFuZ2lhX2xham9sbGFlbnNpc19TdGRFcnJcbkJhbGFub3BoeWxsaWFfZWxlZ2Fuc19NZWFuIChwZXJjZW50IGNvdmVyKVxuQmFsYW5vcGh5bGxpYV9lbGVnYW5zX1N0ZERldlxuQmFsYW5vcGh5bGxpYV9lbGVnYW5zX1N0ZEVyclxuQmFsYW51c19zcHBfTWVhbiAocGVyY2VudCBjb3ZlcilcbkJhbGFudXNfc3BwX1N0ZERldlxuQmFsYW51c19zcHBfU3RkRXJyXG5CYXJlX1N1YnN0cmF0ZV9NZWFuIChwZXJjZW50IGNvdmVyKVxuQmFyZV9TdWJzdHJhdGVfU3RkRGV2XG5CYXJlX1N1YnN0cmF0ZV9TdGRFcnJcbkNvYmJsZV9NZWFuIChwZXJjZW50IGNvdmVyKVxuQ29iYmxlX1N0ZERldlxuLi4uICgxMDAgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkQ2lucEtmbVJQQ19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkQ2lucEtmbVJQQ19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRDaW5wS2ZtUlBDL2luZGV4Lmpzb24iLCAiaHR0cDovL3d3dy5ucHMuZ292L2NoaXMvbmF0dXJlc2NpZW5jZS9pbmRleC5odG0iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkQ2lucEtmbVJQQy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkQ2lucEtmbVJQQyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJDSU5QIiwgImVyZENpbnBLZm1SUEMiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvRlJEQ1BTVHJhd2xMSEhhdWxDYXRjaC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvRlJEQ1BTVHJhd2xMSEhhdWxDYXRjaCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9GUkRDUFNUcmF3bExISGF1bENhdGNoLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkNQUyBUcmF3bCBMaWZlIEhpc3RvcnkgSGF1bCBDYXRjaCBEYXRhIiwgIldlaWdodCBpbiBraWxvZ3JhbXMgZm9yIGFsbCBzcGVjaWVzIChpZGVudGlmaWVkIHRvIGxvd2VzdCB0YXhvbm9taWMgY3JpdGVyaWEpIGNhdWdodCBkdXJpbmcgU1dGU0MtRlJEIGZpc2hlcnkgaW5kZXBlbmRlbnQgc3VydmV5cyAoaW5jbHVkaW5nIERFUE0sIEFUTSwgU2FLZSkgb2YgY29hc3RhbCBwZWxhZ2ljIHNwZWNpZXMgdXNpbmcgbWlkLXdhdGVyIHRyYXdscyAod2l0aCBtb3N0IHRvd3MgcGVyZm9ybWVkIG5lYXIgdGhlIHN1cmZhY2UpIGF0IHBvc2l0aW9uIGFuZCB0aW1lcyBsaXN0ZWQuIEFkZGl0aW9uYWwgaW5mb3JtYXRpb24gZm9yIGEgc3Vic2V0IG9mIGluZGl2aWR1YWxzIGZyb20gc29tZSBzcGVjaWVzIGNhbiBiZSBmb3VuZCBpbiBlaXRoZXIgQ1BTIFRyYXdsIExpZmUgSGlzdG9yeSBMZW5ndGggRnJlcXVlbmN5IG9yIHRoZSBDUFMgVHJhd2wgTGlmZSBIaXN0b3J5IFNwZWNpbWVuIGRhdGFzZXRzLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZVxuc2hpcFxuaGF1bCAoSGF1bCBOdW1iZXIpXG5jb2xsZWN0aW9uXG5sYXRpdHVkZSAoU3RhcnQgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKFN0YXJ0IExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxuc3RvcF9sYXRpdHVkZVxuc3RvcF9sb25naXR1ZGVcbnRpbWUgKEVxdWlsaWJyaXVtIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5oYXVsYmFja190aW1lIChIYXVsIEJhY2sgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnN1cmZhY2VfdGVtcCAoU3VyZmFjZSBUZW1wZXJhdHVyZSwgZGVncmVlIEMpXG5zdXJmYWNlX3RlbXBfbWV0aG9kIChTdXJmYWNlIFRlbXBlcmF0dXJlIE1ldGhvZClcbnNoaXBfc3BkX3Rocm91Z2hfd2F0ZXIgKFNoaXAgU3BlZWQgVGhyb3VnaCBXYXRlciwga25vdClcbml0aXNfdHNuIChJdGlzVFNOKVxuc2NpZW50aWZpY19uYW1lXG5zdWJzYW1wbGVfY291bnRcbnN1YnNhbXBsZV93ZWlnaHQgKGtnKVxucmVtYWluaW5nX3dlaWdodCAoa2cpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvRlJEQ1BTVHJhd2xMSEhhdWxDYXRjaF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvRlJEQ1BTVHJhd2xMSEhhdWxDYXRjaF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9GUkRDUFNUcmF3bExISGF1bENhdGNoL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zd2ZzYy5ub2FhLmdvdi9GUkQvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL0ZSRENQU1RyYXdsTEhIYXVsQ2F0Y2gucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPUZSRENQU1RyYXdsTEhIYXVsQ2F0Y2gmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQS1GaXNoZXJpZXMvU291dGh3ZXN0IEZpc2hlcmllcyBTY2llbmNlIENlbnRlciIsICJGUkRDUFNUcmF3bExISGF1bENhdGNoIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0ZSRENQU1RyYXdsTEhMZW5ndGhGcmVxdWVuY3kuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0ZSRENQU1RyYXdsTEhMZW5ndGhGcmVxdWVuY3kiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvRlJEQ1BTVHJhd2xMSExlbmd0aEZyZXF1ZW5jeS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDUFMgVHJhd2wgTGlmZSBIaXN0b3J5IExlbmd0aCBGcmVxdWVuY3kgRGF0YSIsICJMZW5ndGggZGlzdHJpYnV0aW9uIG9mIGEgc3Vic2V0IG9mIGluZGl2aWR1YWxzIGZyb20gYSBzcGVjaWVzIChtYWlubHkgbm9uLXRhcmdldCkgY2F1Z2h0IGR1cmluZyBTV0ZTQy1GUkQgZmlzaGVyeSBpbmRlcGVuZGVudCB0cmF3bCBzdXJ2ZXlzIG9mIGNvYXN0YWwgcGVsYWdpYyBzcGVjaWVzLiBNZWFzdXJlZCBsZW5ndGhzIGZvciBpbmRpY2F0ZWQgbGVuZ3RoIHR5cGUgKGZvcmssIHN0YW5kYXJkLCB0b3RhbCwgb3IgbWFudGxlKSB3ZXJlIGdyb3VwZWQgaW4gMTAgbW0gYmlucyAoaWRlbnRpZmllZCBieSB0aGUgbWlkcG9pbnQgb2YgdGhlIGxlbmd0aCBjbGFzcykgYW5kIGNvdW50cyBhcmUgcmVjb3JkZWQgYnkgc2V4LiBEb2VzIG5vdCBpbmNsdWRlIHNwZWNpZXMgd2l0aCBpbmRpdmlkdWFsIGxlbmd0aHMgcmVjb3JkZWQgaW4gdGhlIENQUyBUcmF3bCBMaWZlIEhpc3RvcnkgU3BlY2ltZW4gZGF0YXNldC5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG5jcnVpc2VcbnNoaXBcbmhhdWwgKEhhdWwgTnVtYmVyKVxuY29sbGVjdGlvblxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5pdGlzX3RzbiAoSXRpc1RTTilcbnNjaWVudGlmaWNfbmFtZVxubGVuZ3RoX2NsYXNzXG5sZW5ndGhfdHlwZVxubWFsZVxuZmVtYWxlXG51bmtub3duXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvRlJEQ1BTVHJhd2xMSExlbmd0aEZyZXF1ZW5jeV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvRlJEQ1BTVHJhd2xMSExlbmd0aEZyZXF1ZW5jeV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9GUkRDUFNUcmF3bExITGVuZ3RoRnJlcXVlbmN5L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zd2ZzYy5ub2FhLmdvdi9GUkQvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL0ZSRENQU1RyYXdsTEhMZW5ndGhGcmVxdWVuY3kucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPUZSRENQU1RyYXdsTEhMZW5ndGhGcmVxdWVuY3kmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQS1GaXNoZXJpZXMvU291dGh3ZXN0IEZpc2hlcmllcyBTY2llbmNlIENlbnRlciIsICJGUkRDUFNUcmF3bExITGVuZ3RoRnJlcXVlbmN5Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0ZSRENQU1RyYXdsTEhTcGVjaW1lbi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvRlJEQ1BTVHJhd2xMSFNwZWNpbWVuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0ZSRENQU1RyYXdsTEhTcGVjaW1lbi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJDUFMgVHJhd2wgTGlmZSBIaXN0b3J5IFNwZWNpbWVuIERhdGEiLCAiSW5kaXZpZHVhbCBzcGVjaW1lbnMgbWVhc3VyZWQgKHdlaWdodCBpbiBncmFtcyBhbmQgbGVuZ3RoIGluIG1tKSBhbmQgc2V4ZWQgZnJvbSBtYWlubHkgdGFyZ2V0ZWQgc3BlY2llcyBjYXVnaHQgZHVyaW5nIFNXRlNDLUZSRCBmaXNoZXJ5IGluZGVwZW5kZW50IHRyYXdsIHN1cnZleXMgb2YgY29hc3RhbCBwZWxhZ2ljIHNwZWNpZXMuIEluZGl2aWR1YWxzIGFyZSBjYXRlZ29yaXplZCBhcyByYW5kb20gb3Igbm9uLXJhbmRvbSBzYW1wbGVzLiBEb2VzIG5vdCBpbmNsdWRlIHNwZWNpZXMgd2l0aCBsZW5ndGggYmlucyByZWNvcmRlZCBpbiB0aGUgQ1BTIFRyYXdsIExpZmUgSGlzdG9yeSBMZW5ndGggRnJlcXVlbmN5IGRhdGFzZXQuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxuY3J1aXNlXG5zaGlwXG5oYXVsIChIYXVsIE51bWJlcilcbmNvbGxlY3Rpb25cbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuaXRpc190c24gKEl0aXNUU04pXG5zY2llbnRpZmljX25hbWVcbnNwZWNpbWVuX251bWJlclxuc2V4XG5pc19yYW5kb21fc2FtcGxlXG53ZWlnaHQgKGcpXG5zdGFuZGFyZF9sZW5ndGggKG1tKVxuZm9ya19sZW5ndGggKG1tKVxudG90YWxfbGVuZ3RoIChtbSlcbm1hbnRsZV9sZW5ndGggKG1tKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL0ZSRENQU1RyYXdsTEhTcGVjaW1lbl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvRlJEQ1BTVHJhd2xMSFNwZWNpbWVuX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL0ZSRENQU1RyYXdsTEhTcGVjaW1lbi9pbmRleC5qc29uIiwgImh0dHBzOi8vc3dmc2Mubm9hYS5nb3YvRlJELyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9GUkRDUFNUcmF3bExIU3BlY2ltZW4ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPUZSRENQU1RyYXdsTEhTcGVjaW1lbiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBLUZpc2hlcmllcy9Tb3V0aHdlc3QgRmlzaGVyaWVzIFNjaWVuY2UgQ2VudGVyIiwgIkZSRENQU1RyYXdsTEhTcGVjaW1lbiJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvQVdTLUNSUkYiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvQVdTLUNSUkYuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiQ1JSRiBXZWF0aGVyIFN0YXRpb246IFBhbGF1OiBLb3JvcjogTmdlYW5nZXMgSXNsYW5kIiwgIlNpbmNlIDIwMDcsIHRoZSBDb3JhbCBSZWVmIFJlc2VhcmNoIEZvdW5kYXRpb24gKENSUkYpIGhhcyBvcGVyYXRlZCBhIENhbXBiZWxsIFNjaWVudGlmaWMgYXV0b21hdGljIHdlYXRoZXIgc3RhdGlvbiAoQVdTKSBpbiBQYWxhdSBkZXNpZ25lZCB0byBtZWFzdXJlIG1ldGVvcm9sb2dpY2FsL2F0bW9zcGhlcmljIGNvbmRpdGlvbnMgcmVsZXZhbnQgdG8gS29yb3IgU3RhdGUncyBSb2NrIElzbGFuZHMgU291dGhlcm4gTGFnb29uLCBhIFdvcmxkIEhlcml0YWdlIFNpdGUuIFdpdGggbGl0dGxlIGZsYXQgbGFuZCBpbiB0aGUgUm9jayBJc2xhbmRzLCB0aGUgd2VhdGhlciBzdGF0aW9uIGlzIGxvY2F0ZWQgb24gYSA0MC1mdCB0b3dlciBzaXR1YXRlZCBvbiBhIGthcnN0IHJpZGdlIG9uIE5nZWFuZ2VzIElzbGFuZCBhdCAxMDAgZnQgZWxldmF0aW9uLCBhYm91dCA1LjQga20gKDMuNSBtaSkgZnJvbSBDUlJGJ3Mgc3R1ZHkgc2l0ZSBhdCBKZWxseWZpc2ggTGFrZS4gSXQgbWVhc3VyZXMgYSBzdWl0ZSBvZiBhdG1vc3BoZXJpYyBjb25kaXRpb25zIGZvciBjb21wYXJpc29uIHdpdGggQ1JSRidzIHRlbXBvcmFyeSwgZmxvYXRpbmcgd2VhdGhlciBzdGF0aW9uIGxvY2F0ZWQgb24gYSB0cmlwb2QgaW4gSmVsbHlmaXNoIExha2UsIGFuZCBwcm92aWRlcyB2aXRhbCBkYXRhIGZvciBzdHVkeWluZyBob3cgbG9jYWwgd2VhdGhlciBjb25kaXRpb25zIGFuZCBFTlNPIGV2ZW50cyBhZmZlY3QgdGhlIG1hcmluZSBsYWtlIGVudmlyb25tZW50LlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5hbHRpdHVkZSAoRGlzdGFuY2UgYWJvdmUgbWVhbiBzZWEgbGV2ZWwsIG0pXG5zdGF0aW9uX25hbWUgKEFXUy1DUlJGOiBDUlJGIFdlYXRoZXIgU3RhdGlvbjogUGFsYXU6IEtvcm9yOiBOZ2VhbmdlcyBJc2xhbmQpXG5haXJfdGVtcGVyYXR1cmUgKENlbHNpdXMpXG5haXJfdGVtcGVyYXR1cmVfbWF4IChtYXhpbXVtIGFpciB0ZW1wZXJhdHVyZSwgQ2Vsc2l1cylcbmFpcl90ZW1wZXJhdHVyZV9tYXhfdGltZSAobWF4aW11bSBhaXIgdGVtcGVyYXR1cmU6IG9ic2VydmF0aW9uIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5haXJfdGVtcGVyYXR1cmVfbWluIChtaW5pbXVtIGFpciB0ZW1wZXJhdHVyZSwgQ2Vsc2l1cylcbmFpcl90ZW1wZXJhdHVyZV9taW5fdGltZSAobWluaW11bSBhaXIgdGVtcGVyYXR1cmU6IG9ic2VydmF0aW9uIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5haXJfdGVtcGVyYXR1cmVfc3RkIChhaXIgdGVtcGVyYXR1cmUgc3RhbmRhcmQgZGV2aWF0aW9uLCBDZWxzaXVzKVxud2luZF9zcGVlZCAobS9zKVxud2luZF9zcGVlZF9tYXggKGd1c3Qgc3BlZWQsIG0vcylcbndpbmRfc3BlZWRfbWF4X3RpbWUgKGd1c3Qgc3BlZWQ6IG9ic2VydmF0aW9uIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG53aW5kX3NwZWVkX21pbiAobWluaW11bSB3aW5kIHNwZWVkLCBtL3MpXG53aW5kX3NwZWVkX21pbl90aW1lIChtaW5pbXVtIHdpbmQgc3BlZWQ6IG9ic2VydmF0aW9uIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG53aW5kX3NwZWVkX3N0ZCAod2luZCBzcGVlZCBzdGFuZGFyZCBkZXZpYXRpb24sIG0vcylcbndpbmRfZnJvbV9kaXJlY3Rpb24gKHdpbmQgZGlyZWN0aW9uLCBkZWdyZWVzKVxud2luZF9mcm9tX2RpcmVjdGlvbl9zdGQgKHdpbmQgZGlyZWN0aW9uIHN0YW5kYXJkIGRldmlhdGlvbiwgZGVncmVlcylcbnJhaW5mYWxsX2Ftb3VudCAodG90YWwgcmFpbmZhbGwsIG1tKVxuLi4uICgyMyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9BV1MtQ1JSRl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvQVdTLUNSUkZfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vQVdTLUNSUkYvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wYWNpb29zLmhhd2FpaS5lZHUvd2VhdGhlci9vYnMta29yb3IvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL0FXUy1DUlJGLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1BV1MtQ1JSRiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJDb3JhbCBSZWVmIFJlc2VhcmNoIEZvdW5kYXRpb24gKENSUkYpIiwgIkFXUy1DUlJGIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lY29jYXN0X2lucHV0cyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lY29jYXN0X2lucHV0cy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJFY29jYXN0IHNwZWNpZXMgd2VpZ2h0aW5ncyBhbmQgZW52aXJvbm1lbnRhbCBkYXRhIGRhdGVzIiwgIlRoZSBkYXRhc2V0IGNvbnRhaW5zIHRoZSBzcGVjaWVzIHdlaWdodGluZ3MgYW5kIHRoZSBkYXRlcyBvZiB0aGUgZW52aXJvbm1lbnRhbCBkYXRhIHVzZWQgZm9yIGVhY2ggRWNvQ2FzdCBNYXAgZGF0YXNldCAoaHR0cHM6Ly9jb2FzdHdhdGNoLnBmZWcubm9hYS5nb3YvZXJkZGFwL2dyaWRkYXAvZWNvY2FzdClcblxuY2RtX2RhdGFfdHlwZSA9IEdyaWRcblZBUklBQkxFUzpcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kYXRlXG5ibHVlc2hhcmsgKEJsdWUgU2hhcmsgQnljYXRjaCBNb2RlbCBXZWlnaHRpbmcpXG5ibHVlc2hhcmtUUksgKEJsdWUgU2hhcmsgVHJhY2tpbmcgTW9kZWwgV2VpZ2h0aW5nKVxuc2VhbGlvbnMgKENhbGlmb3JuaWEgU2VhIExpb25zIFRyYWNraW5nIE1vZGVsIFdlaWdodGluZylcbmxlYXRoZXJiYWNrcyAoTGVhdGhlcmJhY2sgVHVydGxlcyBNb2RlbCBXZWlnaHRpbmcpXG5zd29yZGZpc2ggKFN3b3JkZmlzaCBNb2RlbCBXZWlnaHRpbmcpXG5zc3RfdGltZSAoRGF0ZSBvZiBTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSBEYXRhLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuY2hsX3RpbWUgKERhdGUgb2YgQ2hsb3JvcGh5bGwtYSBEYXRhLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZWtlX3RpbWUgKERhdGUgb2YgRWRkeSBLaW5ldGljIEVuZXJneSBEYXRhLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc3NoX3RpbWUgKERhdGUgb2YgU2VhIFN1cmZhY2UgSGVpZ2h0IERhdGEsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG53aW5kX3RpbWUgKERhdGUgb2YgV2luZCBEYXRhLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lY29jYXN0X2lucHV0cy9pbmRleC5qc29uIiwgImh0dHBzOi8vY29hc3R3YXRjaC5wZmVnLm5vYWEuZ292L2Vjb2Nhc3QiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZWNvY2FzdF9pbnB1dHMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVjb2Nhc3RfaW5wdXRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk1GUyBTV0ZTQyBFUkQiLCAiZWNvY2FzdF9pbnB1dHMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3ByYm9TZWZpRGlldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wcmJvU2VmaURpZXQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiRmFyYWxsb24gSXNsYW5kIFNlYWJpcmQgRGlldCBTdW1tYXJ5IiwgIkRpZXQgc3VtbWFyeSBkYXRhIGZvciBDYXNzaW4ncyBBdWtsZXRzLCBDb21tb24gTXVycmVzLCBQaWdlb24gR3VpbGxlbW90cywgYW5kIFJoaW5vY2Vyb3MgQXVrbGV0cyBmcm9tIHRoZSBGYXJhbGxvbiBJc2xhbmRzLiBEYXRhIHByZXNlbnRlZCBhcmUgdGhlIHByb3BvcnRpb24gYnkgbnVtYmVyIG9mIHRoZSBtb3N0IGltcG9ydGFudCBwcmV5IGl0ZW1zIGZvciBlYWNoIHNwZWNpZXMuXG5cblRoZSBwcm9wb3J0aW9ucyBwcmVzZW50ZWQgaW4gdGhpcyB0YWJsZSBhcmUgZGVmaW5lZCBhcyB0aGUgbnVtYmVyIG9mIHRoZSBzcGVjaWZpYyBwcmV5IGl0ZW1zIG9ic2VydmVkIGRpdmlkZWQgYnkgdGhlIHRvdGFsIG51bWJlciBvZiBpZGVudGlmaWVkIHByZXkgaXRlbXMgZm9yIHRoYXQgc2Vhc29uLiBEYXRhIGZvciB0aGUgbW9zdCBpbXBvcnRhbnQgcHJleSBzcGVjaWVzIGFyZSBwcmVzZW50ZWQgaGVyZSB3aXRoIGFsbCBvdGhlciBwcmV5IGx1bXBlZCB0b2dldGhlciBhcyBcIm90aGVyXCIuIFNlZSB0aGUgU0VGSSBSZXNlYXJjaCBQbGFucyBhbmQgUHJvdG9jb2xzIGRvY3VtZW50IHVuZGVyIFJlc2VhcmNoIFRvb2xzIGZvciBtb3JlIGluZm9ybWF0aW9uIG9uIGhvdyBkaWV0IGRhdGEgaXMgY29sbGVjdGVkIGZvciBlYWNoIHNwZWNpZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxueWVhclxuUkhBVV9Sb2NrZmlzaCAoUm9ja2Zpc2ggaW4gUmhpbm9jZXJvcyBBdWtsZXQncyBEaWV0LCBwZXJjZW50KVxuUkhBVV9BbmNob3Z5IChBbmNob3Z5IGluIFJoaW5vY2Vyb3MgQXVrbGV0J3MgRGlldCwgcGVyY2VudClcblJIQVVfU2F1cnkgKFNhdXJ5IGluIFJoaW5vY2Vyb3MgQXVrbGV0J3MgRGlldCwgcGVyY2VudClcblJIQVVfT3RoZXIgKE90aGVyIGluIFJoaW5vY2Vyb3MgQXVrbGV0J3MgRGlldCwgcGVyY2VudClcbkNPTVVfUm9ja2Zpc2ggKFJvY2tmaXNoIGluIENvbW1vbiBNdXJyZSdzIERpZXQsIHBlcmNlbnQpXG5DT01VX0FuY2hvdnlTYXJkaW5lIChBbmNob3Z5JlNhcmRpbmUgaW4gQ29tbW9uIE11cnJlJ3MgRGlldCwgcGVyY2VudClcbkNPTVVfT3RoZXIgKE90aGVyIGluIENvbW1vbiBNdXJyZSdzIERpZXQsIHBlcmNlbnQpXG5QSUdVX1JvY2tmaXNoIChSb2NrZmlzaCBpbiBQaWdlb24gR3VpbGxlbW90J3MgRGlldCwgcGVyY2VudClcblBJR1VfU2N1bHBpbiAoU2N1bHBpbiBpbiBQaWdlb24gR3VpbGxlbW90J3MgRGlldCwgcGVyY2VudClcblBJR1VfRmxhdGZpc2ggKEZsYXRmaXNoIGluIFBpZ2VvbiBHdWlsbGVtb3QncyBEaWV0LCBwZXJjZW50KVxuUElHVV9PdGhlciAoT3RoZXIgaW4gUGlnZW9uIEd1aWxsZW1vdCdzIERpZXQsIHBlcmNlbnQpXG5DQUFVX0V1cGFodXNpaWRzIChFdXBhaHVzaWlkcyBpbiBDYXNzaW4ncyBBdWtsZXQncyBEaWV0LCBwZXJjZW50KVxuQ0FBVV9NeXNpaWRzIChNeXNpaWRzIGluIENhc3NpbidzIEF1a2xldCdzIERpZXQsIHBlcmNlbnQpXG5DQUFVX0FtcGhpcG9kcyAoQW1waGlwb2RzIGluIENhc3NpbidzIEF1a2xldCdzIERpZXQsIHBlcmNlbnQpXG5DQUFVX1BpY2VzIChQaWNlcyBpbiBDYXNzaW4ncyBBdWtsZXQncyBEaWV0LCBwZXJjZW50KVxuQ0FBVV9PdGhlciAoT3RoZXIgaW4gQ2Fzc2luJ3MgQXVrbGV0J3MgRGlldCwgcGVyY2VudClcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcHJib1NlZmlEaWV0L2luZGV4Lmpzb24iLCAiaHR0cDovL2RhdGEucHJiby5vcmcvY2FkYzIvaW5kZXgucGhwP21hY3Q9TGlua2VkQXJ0aWNsZXMsY250bnQwMSxkZXRhaWwsMCZjbnRudDAxYXJ0aWNsZV9pZD0xNTUmY250bnQwMXJldHVybmlkPTE1MCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wcmJvU2VmaURpZXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXByYm9TZWZpRGlldCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJQUkJPIiwgInByYm9TZWZpRGlldCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcHJib1NlZmlQaGVuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3ByYm9TZWZpUGhlbi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJGYXJhbGxvbiBJc2xhbmQgU2VhYmlyZCBQaGVub2xvZ3kgU3VtbWFyeSIsICJQaGVub2xvZ3kgKHRpbWluZyBvZiBicmVlZGluZykgc3VtbWFyeSBkYXRhIGZvciBCcmFuZHQncyBDb3Jtb3JhbnQsIENhc3NpbidzIEF1a2xldCwgQ29tbW9uIE11cnJlLCBQaWdlb24gR3VpbGxlbW90LCBhbmQgUmhpbm9jZXJvcyBBdWtsZXQgYnJlZWRpbmcgYXQgdGhlIEZhcmFsbG9uIElzbGFuZHMuIERhdGEgcHJlc2VudGVkIGFyZSBhbm51YWwgbWVhbiBsYXlpbmcgZGF0ZSBmb3IgdGhlIGZpcnN0IG9yIG9ubHkgZWdnIGxhaWQgYWxvbmcgd2l0aCB0aGUgc3RhbmRhcmQgZGV2aWF0aW9uLlxuXG5UaGUgbWVhbiBsYXlpbmcgZGF0ZSBpcyBjYWxjdWxhdGVkIGZyb20gYWxsIHNpdGVzIHdoZXJlIHRoZSBleGFjdCBsYXlpbmcgZGF0ZSBpcyBrbm93biB3aXRoaW4gdGhlIGNoZWNrIHBlcmlvZCBmb3IgdGhhdCBzcGVjaWVzICgxLTUgZGF5cykuIFRoZSBtZWFuIGxheSBkYXRlcyBhcmUgcHJlc2VudGVkIGFzIGp1bGlhbiBkYXRlcyAoZGF5IG9mIHllYXIpIGFuZCB0aGUgc3RhbmRhcmQgZGV2aWF0aW9uIGlzIGluIGRheXMuIFNlZSB0aGUgU0VGSSBSZXNlYXJjaCBQbGFucyBhbmQgUHJvdG9jb2xzIGRvY3VtZW50IHVuZGVyIFJlc2VhcmNoIFRvb2xzIGZvciBtb3JlIGluZm9ybWF0aW9uIG9uIGhvdyBsYXkgZGF0ZXMgYXJlIGRldGVybWluZWQgZm9yIGVhY2ggc3BlY2llcy5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG55ZWFyXG5CUkFDX21lYW4gKEJyYW5kdCdzIENvcm1vcmFudCBNZWFuLCBkYXlfb2ZfeWVhcilcbkJSQUNfc2QgKEJyYW5kdCdzIENvcm1vcmFudCBTdGFuZGFyZCBEZXZpYXRpb24sIGRheXMpXG5DQUFVX21lYW4gKENhc3NpbidzIEF1a2xldCBNZWFuLCBkYXlfb2ZfeWVhcilcbkNBQVVfc2QgKENhc3NpbidzIEF1a2xldCBTdGFuZGFyZCBEZXZpYXRpb24sIGRheXMpXG5DT01VX21lYW4gKENvbW1vbiBNdXJyZSBNZWFuLCBkYXlfb2ZfeWVhcilcbkNPTVVfc2QgKENvbW1vbiBNdXJyZSBTdGFuZGFyZCBEZXZpYXRpb24sIGRheXMpXG5QSUdVX21lYW4gKFBpZ2VvbiBHdWlsbGVtb3QgTWVhbiwgZGF5X29mX3llYXIpXG5QSUdVX3NkIChQaWdlb24gR3VpbGxlbW90IFN0YW5kYXJkIERldmlhdGlvbiwgZGF5cylcblJIQVVfbWVhbiAoUmhpbm9jZXJvcyBBdWtsZXQgTWVhbiwgZGF5X29mX3llYXIpXG5SSEFVX3NkIChSaGlub2Nlcm9zIEF1a2xldCBTdGFuZGFyZCBEZXZpYXRpb24sIGRheXMpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3ByYm9TZWZpUGhlbi9pbmRleC5qc29uIiwgImh0dHA6Ly9kYXRhLnByYm8ub3JnL2NhZGMyL2luZGV4LnBocD9tYWN0PUxpbmtlZEFydGljbGVzLGNudG50MDEsZGV0YWlsLDAmY250bnQwMWFydGljbGVfaWQ9MTU2JmNudG50MDFyZXR1cm5pZD0xNTAiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcHJib1NlZmlQaGVuLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wcmJvU2VmaVBoZW4mc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUFJCTyIsICJwcmJvU2VmaVBoZW4iXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3ByYm9TZWZpUG9wIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3ByYm9TZWZpUG9wLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkZhcmFsbG9uIElzbGFuZCBTZWFiaXJkIFBvcHVsYXRpb24gU3VtbWFyeSIsICJBbm51YWwgYnJlZWRpbmcgcG9wdWxhdGlvbiBlc3RpbWF0ZXMgZm9yIEJyYW5kdCdzIENvcm1vcmFudCwgQ2Fzc2luJ3MgQXVrbGV0LCBDb21tb24gTXVycmUsIERvdWJsZS1jcmVzdGVkIENvcm1vcmFudCwgUGVsYWdpYyBDb3Jtb3JhbnQsIFBpZ2VvbiBHdWlsbGVtb3QsIFR1ZnRlZCBQdWZmaW4sIGFuZCBXZXN0ZXJuIEd1bGwgYXQgdGhlIEZhcmFsbG9uIElzbGFuZHMuIERhdGEgcHJlc2VudGVkIGFyZSB0aGUgbnVtYmVyIG9mIGJyZWVkaW5nIGFkdWx0cyBlc3RpbWF0ZWQgZm9yIGVhY2ggc2Vhc29uLlxuXG5CcmVlZGluZyBwb3B1bGF0aW9uIGVzdGltYXRlcyBmb3IgbW9zdCBzcGVjaWVzIGFyZSBiYXNlZCBvbiBlaXRoZXIgZGlyZWN0IGNvdW50cyBvZiBhbmltYWxzIG9yIG5lc3RzLiBDYXNzaW4ncyBhdWtsZXQgZXN0aW1hdGVzIGFyZSBiYXNlZCBvbiB0aGUgcGVyY2VudCBjaGFuZ2UgaW4gYnVycm93L2NyZXZpY2UgZGVuc2l0eSB3aXRoaW4gYSBzZXJpZXMgb2YgaW5kZXggcGxvdHMuIFRoaXMgcmVsYXRpdmUgY2hhbmdlIGlzIHRoZW4gYXBwbGllZCB0byB0aGUgbGFzdCBmdWxsIGNlbnN1cyBmcm9tIDE5ODkgdG8gYXJyaXZlIGF0IGEgY3VycmVudCBwb3B1bGF0aW9uIGVzdGltYXRlLiBTZWUgdGhlIFNFRkkgUmVzZWFyY2ggUGxhbnMgYW5kIFByb3RvY29scyBkb2N1bWVudCB1bmRlciBSZXNlYXJjaCBUb29scyBmb3IgbW9yZSBpbmZvcm1hdGlvbiBvbiBob3cgdGhlc2UgZXN0aW1hdGVzIHdlcmUgZGV0ZXJtaW5lZC5cblxuTm90ZTogQ2Fzc2luJ3MgYXVrbGV0IHBvcHVsYXRpb24gZXN0aW1hdGUgaXMgZm9yIFNvdXRoZWFzdCBGYXJhbGxvbiBJc2xhbmQgb25seS5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG55ZWFyXG5CUkFDIChQb3B1bGF0aW9uIG9mIEJyYW5kdCdzIENvcm1vcmFudCwgY291bnQpXG5DQUFVIChQb3B1bGF0aW9uIG9mIENhc3NpbidzIEF1a2xldCwgY291bnQpXG5DT01VIChQb3B1bGF0aW9uIG9mIENvbW1vbiBNdXJyZSwgY291bnQpXG5EQ0NPIChQb3B1bGF0aW9uIG9mIERvdWJsZS1jcmVzdGVkIENvcm1vcmFudCwgY291bnQpXG5QRUNPIChQb3B1bGF0aW9uIG9mIFBlbGFnaWMgQ29ybW9yYW50LCBjb3VudClcblBJR1UgKFBvcHVsYXRpb24gb2YgUGlnZW9uIEd1aWxsZW1vdCwgY291bnQpXG5UVVBVIChQb3B1bGF0aW9uIG9mIFR1ZnRlZCBQdWZmaW4sIGNvdW50KVxuV0VHVSAoUG9wdWxhdGlvbiBvZiBXZXN0ZXJuIEd1bGwsIGNvdW50KVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wcmJvU2VmaVBvcC9pbmRleC5qc29uIiwgImh0dHA6Ly9kYXRhLnByYm8ub3JnL2NhZGMyL2luZGV4LnBocD9tYWN0PUxpbmtlZEFydGljbGVzLGNudG50MDEsZGV0YWlsLDAmY250bnQwMWFydGljbGVfaWQ9MTU0JmNudG50MDFyZXR1cm5pZD0xNTAiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcHJib1NlZmlQb3AucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXByYm9TZWZpUG9wJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlBSQk8iLCAicHJib1NlZmlQb3AiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3ByYm9TZWZpUHJvZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wcmJvU2VmaVByb2QuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiRmFyYWxsb24gSXNsYW5kIFNlYWJpcmQgUHJvZHVjdGl2aXR5IFN1bW1hcnkiLCAiQW5udWFsIG1lYW4gcHJvZHVjdGl2aXR5IGZvciBBc2h5IFN0b3JtLXBldHJlbCwgQnJhbmR0J3MgQ29ybW9yYW50LCBDYXNzaW4ncyBBdWtsZXQsIENvbW1vbiBNdXJyZSwgUGVsYWdpYyBDb3Jtb3JhbnQsIFBpZ2VvbiBHdWlsbGVtb3QsIFJoaW5vY2Vyb3MgQXVrbGV0IGFuZCBXZXN0ZXJuIEd1bGwgYnJlZWRpbmcgb24gdGhlIEZhcmFsbG9uIElzbGFuZHMuIERhdGEgcHJlc2VudGVkIGFyZSB0aGUgbWVhbiBudW1iZXIgb2YgY2hpY2tzIGZsZWRnZWQgcGVyIGJyZWVkaW5nIHBhaXIgYWxvbmcgd2l0aCB0aGUgc3RhbmRhcmQgZGV2aWF0aW9uLlxuXG5NZWFuIGFubnVhbCBwcm9kdWN0aXZpdHkgKG51bWJlciBvZiBjaGlja3MgZmxlZGdlZCBwZXIgYnJlZWRpbmcgcGFpcikgaXMgZGV0ZXJtaW5lZCB0aHJvdWdoIHJlZ3VsYXIgY2hlY2tzIG9mIGJyZWVkaW5nIHNpdGVzIGFuZCBpbmNsdWRlcyBkYXRhIGZyb20gYWxsIGJyZWVkaW5nIGF0dGVtcHRzIHdpdGhpbiB0aGF0IHNlYXNvbi4gU2VlIHRoZSBTRUZJIFJlc2VhcmNoIFBsYW5zIGFuZCBQcm90b2NvbHMgZG9jdW1lbnQgdW5kZXIgUmVzZWFyY2ggVG9vbHMgZm9yIG1vcmUgaW5mb3JtYXRpb24gb24gaG93IHRoZXNlIGVzdGltYXRlcyB3ZXJlIGRldGVybWluZWQuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxueWVhclxuQVNTUF9ycyAoQXNoeSBTdG9ybS1wZXRyZWwgQ2hpY2tzIHBlciBCcmVlZGluZyBQYWlyLCBtZWFuKVxuQVNTUF9zZCAoQXNoeSBTdG9ybS1wZXRyZWwgU3RhbmRhcmQgRGV2aWF0aW9uKVxuQlJBQ19ycyAoQnJhbmR0J3MgQ29ybW9yYW50IENoaWNrcyBwZXIgQnJlZWRpbmcgUGFpciwgbWVhbilcbkJSQUNfc2QgKEJyYW5kdCdzIENvcm1vcmFudCBTdGFuZGFyZCBEZXZpYXRpb24pXG5DQUFVX3JzIChDYXNzaW4ncyBBdWtsZXQgQ2hpY2tzIHBlciBCcmVlZGluZyBQYWlyLCBtZWFuKVxuQ0FBVV9zZCAoQ2Fzc2luJ3MgQXVrbGV0IFN0YW5kYXJkIERldmlhdGlvbilcbkNPTVVfcnMgKENvbW1vbiBNdXJyZSBDaGlja3MgcGVyIEJyZWVkaW5nIFBhaXIsIG1lYW4pXG5DT01VX3NkIChDb21tb24gTXVycmUgU3RhbmRhcmQgRGV2aWF0aW9uKVxuUElHVV9ycyAoUGlnZW9uIEd1aWxsZW1vdCBDaGlja3MgcGVyIEJyZWVkaW5nIFBhaXIsIG1lYW4pXG5QSUdVX3NkIChQaWdlb24gR3VpbGxlbW90IFN0YW5kYXJkIERldmlhdGlvbilcblBFQ09fcnMgKFBlbGFnaWMgQ29ybW9yYW50IENoaWNrcyBwZXIgQnJlZWRpbmcgUGFpciwgbWVhbilcblBFQ09fc2QgKFBlbGFnaWMgQ29ybW9yYW50IFN0YW5kYXJkIERldmlhdGlvbilcblJIQVVfcnMgKFJoaW5vY2Vyb3MgQXVrbGV0IENoaWNrcyBwZXIgQnJlZWRpbmcgUGFpciwgbWVhbilcblJIQVVfc2QgKFJoaW5vY2Vyb3MgQXVrbGV0IFN0YW5kYXJkIERldmlhdGlvbilcbldFR1VfcnMgKFdlc3Rlcm4gR3VsbCBDaGlja3MgcGVyIEJyZWVkaW5nIFBhaXIsIG1lYW4pXG5XRUdVX3NkIChXZXN0ZXJuIEd1bGwgU3RhbmRhcmQgRGV2aWF0aW9uKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wcmJvU2VmaVByb2QvaW5kZXguanNvbiIsICJodHRwOi8vZGF0YS5wcmJvLm9yZy9jYWRjMi9pbmRleC5waHA/bWFjdD1MaW5rZWRBcnRpY2xlcyxjbnRudDAxLGRldGFpbCwwJmNudG50MDFhcnRpY2xlX2lkPTE1MyZjbnRudDAxcmV0dXJuaWQ9MTUwIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3ByYm9TZWZpUHJvZC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cHJib1NlZmlQcm9kJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlBSQk8iLCAicHJib1NlZmlQcm9kIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzXzEwMDBnZW5vbWVzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfMTAwMGdlbm9tZXMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfMTAwMGdlbm9tZXMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyAxMDAwZ2Vub21lcyBCdWNrZXQ6IDEwMDAgR2Vub21lcyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIDEwMDBnZW5vbWVzIGJ1Y2tldCBhdCBodHRwczovLzEwMDBnZW5vbWVzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiAxMDAwIEdlbm9tZXNcbk5hbWUyOiBodHRwOi8vd3d3LmludGVybmF0aW9uYWxnZW5vbWUub3JnL2Zvcm1hdHNcbkRlc2NyaXB0aW9uOiBUaGUgMTAwMCBHZW5vbWVzIFByb2plY3QgaXMgYW4gaW50ZXJuYXRpb25hbCBjb2xsYWJvcmF0aW9uIHdoaWNoIGhhcyBlc3RhYmxpc2hlZCB0aGUgbW9zdCBkZXRhaWxlZCBjYXRhbG9ndWUgb2YgaHVtYW4gZ2VuZXRpYyB2YXJpYXRpb24sIGluY2x1ZGluZyBTTlBzLCBzdHJ1Y3R1cmFsIHZhcmlhbnRzLCBhbmQgdGhlaXIgaGFwbG90eXBlIGNvbnRleHQuIFRoZSBmaW5hbCBwaGFzZSBvZiB0aGUgcHJvamVjdCBzZXF1ZW5jZWQgbW9yZSB0aGFuIDI1MDAgaW5kaXZpZHVhbHMgZnJvbSAyNiBkaWZmZXJlbnQgcG9wdWxhdGlvbnMgYXJvdW5kIHRoZSB3b3JsZCBhbmQgcHJvZHVjZWQgYW4gaW50ZWdyYXRlZCBzZXQgb2YgcGhhc2VkIGhhcGxvdHlwZXMgd2l0aCBtb3JlIHRoYW4gODAgbWlsbGlvbiB2YXJpYW50cyBmb3IgdGhlc2UgaW5kaXZpZHVhbHMuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZG9jcy5vcGVuZGF0YS5hd3MvMTAwMGdlbm9tZXMvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IGh0dHA6Ly93d3cuaW50ZXJuYXRpb25hbGdlbm9tZS5vcmcvY29udGFjdFxuVXBkYXRlRnJlcXVlbmN5OiBOb3QgdXBkYXRlZFxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzXzEwMDBnZW5vbWVzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvMTAwMC1nZW5vbWVzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzXzEwMDBnZW5vbWVzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzXzEwMDBnZW5vbWVzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc18xMDAwZ2Vub21lcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc18za3JpY2VnZW5vbWUiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc18za3JpY2VnZW5vbWUuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfM2tyaWNlZ2Vub21lLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgM2tyaWNlZ2Vub21lIEJ1Y2tldDogMzAwMCBSaWNlIEdlbm9tZXMgUHJvamVjdCIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIDNrcmljZWdlbm9tZSBidWNrZXQgYXQgaHR0cHM6Ly8za3JpY2VnZW5vbWUuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IDMwMDAgUmljZSBHZW5vbWVzIFByb2plY3Rcbk5hbWUyOiBodHRwOi8vczMuYW1hem9uYXdzLmNvbS8za3JpY2VnZW5vbWUvUkVBRE1FLXNucF9waXBlbGluZS50eHRcbkRlc2NyaXB0aW9uOiBUaGUgMzAwMCBSaWNlIEdlbm9tZSBQcm9qZWN0IGlzIGFuIGludGVybmF0aW9uYWwgZWZmb3J0IHRvIHNlcXVlbmNlIHRoZSBnZW5vbWVzIG9mIDMsMDI0IHJpY2UgdmFyaWV0aWVzIGZyb20gODkgY291bnRyaWVzLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzLzNrcmljZWdlbm9tZS9yZWFkbWUuaHRtbFxuQ29udGFjdDogaHR0cDovL2lyaWMuaXJyaS5vcmcvY29udGFjdC11c1xuVXBkYXRlRnJlcXVlbmN5OiBOb3QgdXBkYXRlZFxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzXzNrcmljZWdlbm9tZS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzLzNrcmljZWdlbm9tZS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc18za3JpY2VnZW5vbWUucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfM2tyaWNlZ2Vub21lJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc18za3JpY2VnZW5vbWUiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfYWZ0X3ZiaV9wZHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19hZnRfdmJpX3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19hZnRfdmJpX3Bkcy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGFmdC12YmktcGRzIEJ1Y2tldDogQW1hem9uIEJpbiBJbWFnZSBEYXRhc2V0OiBPdmVyIDUwMCwwMDAgYmluIEpQRUcgaW1hZ2VzIGFuZCBjb3JyZXNwb25kaW5nIEpTT04gbWV0YWRhdGEgZmlsZXMgZGVzY3JpYmluZyBpdGVtcyBpbiBiaW5zIGluIEFtYXpvbiBGdWxmaWxsbWVudCBDZW50ZXJzLiIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGFmdC12YmktcGRzIGJ1Y2tldCBhdCBodHRwczovL2FmdC12YmktcGRzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBBbWF6b24gQmluIEltYWdlIERhdGFzZXRcbk5hbWUyOiBPdmVyIDUwMCwwMDAgYmluIEpQRUcgaW1hZ2VzIGFuZCBjb3JyZXNwb25kaW5nIEpTT04gbWV0YWRhdGEgZmlsZXMgZGVzY3JpYmluZyBpdGVtcyBpbiBiaW5zIGluIEFtYXpvbiBGdWxmaWxsbWVudCBDZW50ZXJzLlxuRGVzY3JpcHRpb246IFRoZSBBbWF6b24gQmluIEltYWdlIERhdGFzZXQgY29udGFpbnMgb3ZlciA1MDAsMDAwIGltYWdlcyBhbmQgbWV0YWRhdGEgZnJvbSBiaW5zIG9mIGEgcG9kIGluIGFuIG9wZXJhdGluZyBBbWF6b24gRnVsZmlsbG1lbnQgQ2VudGVyLiBUaGUgYmluIGltYWdlcyBpbiB0aGlzIGRhdGFzZXQgYXJlIGNhcHR1cmVkIGFzIHJvYm90IHVuaXRzIGNhcnJ5IHBvZHMgYXMgcGFydCBvZiBub3JtYWwgQW1hem9uIEZ1bGZpbGxtZW50IENlbnRlciBvcGVyYXRpb25zLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL2FmdC12YmktcGRzL3JlYWRtZS5odG1sXG5Db250YWN0OiBhbWF6b24tYmluLWltYWdlc0BhbWF6b24uY29tXG5NYW5hZ2VkQnk6IFtBbWF6b25dKGh0dHBzOi8vd3d3LmFtYXpvbi5jb20vKVxuVXBkYXRlRnJlcXVlbmN5OiBOb3QgdXBkYXRlZFxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2FmdF92YmlfcGRzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvYW1hem9uLWJpbi1pbWFnZXJ5LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2FmdF92YmlfcGRzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2FmdF92YmlfcGRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19hZnRfdmJpX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19hbGxlbl9icmFpbl9vYnNlcnZhdG9yeSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2FsbGVuX2JyYWluX29ic2VydmF0b3J5LmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2FsbGVuX2JyYWluX29ic2VydmF0b3J5LyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgYWxsZW4tYnJhaW4tb2JzZXJ2YXRvcnkgQnVja2V0OiBBbGxlbiBCcmFpbiBPYnNlcnZhdG9yeSAtIFZpc3VhbCBDb2RpbmcgQVdTIFB1YmxpYyBEYXRhIFNldDogUHJvamVjdCBkYXRhIGZpbGVzIGluIGEgcHVibGljIGJ1Y2tldCIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGFsbGVuLWJyYWluLW9ic2VydmF0b3J5IGJ1Y2tldCBhdCBodHRwczovL2FsbGVuLWJyYWluLW9ic2VydmF0b3J5LnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBBbGxlbiBCcmFpbiBPYnNlcnZhdG9yeSAtIFZpc3VhbCBDb2RpbmcgQVdTIFB1YmxpYyBEYXRhIFNldFxuTmFtZTI6IFByb2plY3QgZGF0YSBmaWxlcyBpbiBhIHB1YmxpYyBidWNrZXRcbkRlc2NyaXB0aW9uOiBUaGUgQWxsZW4gQnJhaW4gT2JzZXJ2YXRvcnkgXHUyMDEzIFZpc3VhbCBDb2RpbmcgaXMgdGhlIGZpcnN0IHN0YW5kYXJkaXplZCBpbiB2aXZvIHN1cnZleSBvZiBwaHlzaW9sb2dpY2FsIGFjdGl2aXR5IGluIHRoZSBtb3VzZSB2aXN1YWwgY29ydGV4LCBmZWF0dXJpbmcgcmVwcmVzZW50YXRpb25zIG9mIHZpc3VhbGx5IGV2b2tlZCBjYWxjaXVtIHJlc3BvbnNlcyBmcm9tIEdDYU1QNi1leHByZXNzaW5nIG5ldXJvbnMgaW4gc2VsZWN0ZWQgY29ydGljYWwgbGF5ZXJzLCB2aXN1YWwgYXJlYXMsIGFuZCBDcmUgbGluZXMuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZ2l0aHViLmNvbS9BbGxlbkluc3RpdHV0ZS9BbGxlblNESy93aWtpL1VzZS10aGUtQWxsZW4tQnJhaW4tT2JzZXJ2YXRvcnktJUUyJTgwJTkzLVZpc3VhbC1Db2Rpbmctb24tQVdTXG5Db250YWN0OiBhd3NwdWJsaWNkYXRhc2V0QGFsbGVuaW5zdGl0dXRlLm9yZ1xuTWFuYWdlZEJ5OiBbQWxsZW4gSW5zdGl0dXRlXShodHRwOi8vd3d3LmFsbGVuaW5zdGl0dXRlLm9yZy8pXG5VcGRhdGVGcmVxdWVuY3k6IEFubnVhbGx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfYWxsZW5fYnJhaW5fb2JzZXJ2YXRvcnkvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9hbGxlbi1icmFpbi1vYnNlcnZhdG9yeS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19hbGxlbl9icmFpbl9vYnNlcnZhdG9yeS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19hbGxlbl9icmFpbl9vYnNlcnZhdG9yeSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfYWxsZW5fYnJhaW5fb2JzZXJ2YXRvcnkiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfYWxsZW5fYnJhaW5fb2JzZXJ2YXRvcnlfdGVtcGxhdGVzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfYWxsZW5fYnJhaW5fb2JzZXJ2YXRvcnlfdGVtcGxhdGVzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2FsbGVuX2JyYWluX29ic2VydmF0b3J5X3RlbXBsYXRlcy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGFsbGVuLWJyYWluLW9ic2VydmF0b3J5LXRlbXBsYXRlcyBCdWNrZXQ6IEFsbGVuIEJyYWluIE9ic2VydmF0b3J5IC0gVmlzdWFsIENvZGluZyBBV1MgUHVibGljIERhdGEgU2V0OiBTYWdlTWFrZXIgbGF1bmNoIHRlbXBsYXRlIHdpdGggczNmcyBidWNrZXQgbW91bnRzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgYWxsZW4tYnJhaW4tb2JzZXJ2YXRvcnktdGVtcGxhdGVzIGJ1Y2tldCBhdCBodHRwczovL2FsbGVuLWJyYWluLW9ic2VydmF0b3J5LXRlbXBsYXRlcy5zMy51cy13ZXN0LTIuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogQWxsZW4gQnJhaW4gT2JzZXJ2YXRvcnkgLSBWaXN1YWwgQ29kaW5nIEFXUyBQdWJsaWMgRGF0YSBTZXRcbk5hbWUyOiBTYWdlTWFrZXIgbGF1bmNoIHRlbXBsYXRlIHdpdGggczNmcyBidWNrZXQgbW91bnRzXG5EZXNjcmlwdGlvbjogVGhlIEFsbGVuIEJyYWluIE9ic2VydmF0b3J5IFx1MjAxMyBWaXN1YWwgQ29kaW5nIGlzIHRoZSBmaXJzdCBzdGFuZGFyZGl6ZWQgaW4gdml2byBzdXJ2ZXkgb2YgcGh5c2lvbG9naWNhbCBhY3Rpdml0eSBpbiB0aGUgbW91c2UgdmlzdWFsIGNvcnRleCwgZmVhdHVyaW5nIHJlcHJlc2VudGF0aW9ucyBvZiB2aXN1YWxseSBldm9rZWQgY2FsY2l1bSByZXNwb25zZXMgZnJvbSBHQ2FNUDYtZXhwcmVzc2luZyBuZXVyb25zIGluIHNlbGVjdGVkIGNvcnRpY2FsIGxheWVycywgdmlzdWFsIGFyZWFzLCBhbmQgQ3JlIGxpbmVzLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2dpdGh1Yi5jb20vQWxsZW5JbnN0aXR1dGUvQWxsZW5TREsvd2lraS9Vc2UtdGhlLUFsbGVuLUJyYWluLU9ic2VydmF0b3J5LSVFMiU4MCU5My1WaXN1YWwtQ29kaW5nLW9uLUFXU1xuQ29udGFjdDogYXdzcHVibGljZGF0YXNldEBhbGxlbmluc3RpdHV0ZS5vcmdcbk1hbmFnZWRCeTogW0FsbGVuIEluc3RpdHV0ZV0oaHR0cDovL3d3dy5hbGxlbmluc3RpdHV0ZS5vcmcvKVxuVXBkYXRlRnJlcXVlbmN5OiBBbm51YWxseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2FsbGVuX2JyYWluX29ic2VydmF0b3J5X3RlbXBsYXRlcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2FsbGVuLWJyYWluLW9ic2VydmF0b3J5LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2FsbGVuX2JyYWluX29ic2VydmF0b3J5X3RlbXBsYXRlcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19hbGxlbl9icmFpbl9vYnNlcnZhdG9yeV90ZW1wbGF0ZXMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2FsbGVuX2JyYWluX29ic2VydmF0b3J5X3RlbXBsYXRlcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19hbWF6b25fcmV2aWV3c19wZHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19hbWF6b25fcmV2aWV3c19wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfYW1hem9uX3Jldmlld3NfcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgYW1hem9uLXJldmlld3MtcGRzIEJ1Y2tldDogQW1hem9uIEN1c3RvbWVyIFJldmlld3MgRGF0YXNldDogVFNWIGZpbGVzIG9mIHJldmlld3MiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBhbWF6b24tcmV2aWV3cy1wZHMgYnVja2V0IGF0IGh0dHBzOi8vYW1hem9uLXJldmlld3MtcGRzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBBbWF6b24gQ3VzdG9tZXIgUmV2aWV3cyBEYXRhc2V0XG5OYW1lMjogVFNWIGZpbGVzIG9mIHJldmlld3NcbkRlc2NyaXB0aW9uOiBBbWF6b24gQ3VzdG9tZXIgUmV2aWV3cyAoYS5rLmEuIFByb2R1Y3QgUmV2aWV3cykgaXMgb25lIG9mIEFtYXpvblx1MjAxOXMgaWNvbmljIHByb2R1Y3RzLiBJbiBhIHBlcmlvZCBvZiBvdmVyIHR3byBkZWNhZGVzIHNpbmNlIHRoZSBmaXJzdCByZXZpZXcgaW4gMTk5NSwgbWlsbGlvbnMgb2YgQW1hem9uIGN1c3RvbWVycyBoYXZlIGNvbnRyaWJ1dGVkIG92ZXIgYSBodW5kcmVkIG1pbGxpb24gcmV2aWV3cyB0byBleHByZXNzIG9waW5pb25zIGFuZCBkZXNjcmliZSB0aGVpciBleHBlcmllbmNlcyByZWdhcmRpbmcgcHJvZHVjdHMgb24gdGhlIEFtYXpvbi5jb20gd2Vic2l0ZS4gT3ZlciAxMzArIG1pbGxpb24gY3VzdG9tZXIgcmV2aWV3cyBhcmUgYXZhaWxhYmxlIHRvIHJlc2VhcmNoZXJzIGFzIHBhcnQgb2YgdGhpcyBkYXRhc2V0LlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL3MzLmFtYXpvbmF3cy5jb20vYW1hem9uLXJldmlld3MtcGRzL3JlYWRtZS5odG1sXG5Db250YWN0OiBjdXN0b21lci1yZXZpZXctZGF0YXNldEBhbWF6b24uY29tXG5NYW5hZ2VkQnk6IFtBbWF6b25dKGh0dHBzOi8vd3d3LmFtYXpvbi5jb20vKVxuVXBkYXRlRnJlcXVlbmN5OiBOb3QgZGVmaW5lZFxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2FtYXpvbl9yZXZpZXdzX3Bkcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2FtYXpvbi1yZXZpZXdzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2FtYXpvbl9yZXZpZXdzX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19hbWF6b25fcmV2aWV3c19wZHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2FtYXpvbl9yZXZpZXdzX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19hdmdfa2l0dGkiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19hdmdfa2l0dGkuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfYXZnX2tpdHRpLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgYXZnLWtpdHRpIEJ1Y2tldDogS0lUVEkgVmlzaW9uIEJlbmNobWFyayBTdWl0ZSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGF2Zy1raXR0aSBidWNrZXQgYXQgaHR0cHM6Ly9hdmcta2l0dGkuczMuZXUtY2VudHJhbC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IEtJVFRJIFZpc2lvbiBCZW5jaG1hcmsgU3VpdGVcbk5hbWUyOiBodHRwOi8vd3d3LmN2bGlicy5uZXQvZGF0YXNldHMva2l0dGkvcmF3X2RhdGEucGhwXG5EZXNjcmlwdGlvbjogRGF0YXNldCBhbmQgYmVuY2htYXJrcyBmb3IgY29tcHV0ZXIgdmlzaW9uIHJlc2VhcmNoIGluIHRoZSBjb250ZXh0IG9mIGF1dG9ub21vdXMgZHJpdmluZy4gVGhlIGRhdGFzZXQgaGFzIGJlZW4gcmVjb3JkZWQgaW4gYW5kIGFyb3VuZCB0aGUgY2l0eSBvZiBLYXJsc3J1aGUsIEdlcm1hbnkgdXNpbmcgdGhlIG1vYmlsZSBwbGF0Zm9ybSBBbm5pZVdheSAoVlcgc3RhdGlvbiB3YWdvbikgd2hpY2ggaGFzIGJlZW4gZXF1aXBwZWQgd2l0aCBzZXZlcmFsIFJHQiBhbmQgbW9ub2Nocm9tZSBjYW1lcmFzLCBhIFZlbG9keW5lIEhETCA2NCBsYXNlciBzY2FubmVyIGFzIHdlbGwgYXMgYW4gYWNjdXJhdGUgUlRLIGNvcnJlY3RlZCBHUFMvSU1VIGxvY2FsaXphdGlvbiB1bml0LiBUaGUgZGF0YXNldCBoYXMgYmVlbiBjcmVhdGVkIGZvciBjb21wdXRlciB2aXNpb24gYW5kIG1hY2hpbmUgbGVhcm5pbmcgcmVzZWFyY2ggb24gc3RlcmVvLCBvcHRpY2FsIGZsb3csIHZpc3VhbCBvZG9tZXRyeSwgc2VtYW50aWMgc2VnbWVudGF0aW9uLCBzZW1hbnRpYyBpbnN0YW5jZSBzZWdtZW50YXRpb24sIHJvYWQgc2VnbWVudGF0aW9uLCBzaW5nbGUgaW1hZ2UgZGVwdGggcHJlZGljdGlvbiwgZGVwdGggbWFwIGNvbXBsZXRpb24sIDJEIGFuZCAzRCBvYmplY3QgZGV0ZWN0aW9uIGFuZCBvYmplY3QgdHJhY2tpbmcuIEluIGFkZGl0aW9uLCBzZXZlcmFsIHJhdyBkYXRhIHJlY29yZGluZ3MgYXJlIHByb3ZpZGVkLiBUaGUgZGF0YXNldHMgYXJlIGNhcHR1cmVkIGJ5IGRyaXZpbmcgYXJvdW5kIHRoZSBtaWQtc2l6ZSBjaXR5IG9mIEthcmxzcnVoZSwgaW4gcnVyYWwgYXJlYXMgYW5kIG9uIGhpZ2h3YXlzLiBVcCB0byAxNSBjYXJzIGFuZCAzMCBwZWRlc3RyaWFucyBhcmUgdmlzaWJsZSBwZXIgaW1hZ2UuXG5cbkRvY3VtZW50YXRpb246IGh0dHA6Ly93d3cuY3ZsaWJzLm5ldC9kYXRhc2V0cy9raXR0aS9cbkNvbnRhY3Q6IGh0dHA6Ly93d3cuY3ZsaWJzLm5ldC9wZW9wbGUucGhwXG5VcGRhdGVGcmVxdWVuY3k6IE5vdCB1cGRhdGVkXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfYXZnX2tpdHRpL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mva2l0dGkvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfYXZnX2tpdHRpLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2F2Z19raXR0aSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfYXZnX2tpdHRpIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2F3c19lYXJ0aF9tb19hdG1vc3BoZXJpY19tb2dyZXBzX2dfcHJkIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfYXdzX2VhcnRoX21vX2F0bW9zcGhlcmljX21vZ3JlcHNfZ19wcmQuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfYXdzX2VhcnRoX21vX2F0bW9zcGhlcmljX21vZ3JlcHNfZ19wcmQvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBhd3MtZWFydGgtbW8tYXRtb3NwaGVyaWMtbW9ncmVwcy1nLXByZCBCdWNrZXQ6IFVLIE1ldCBPZmZpY2UgQXRtb3NwaGVyaWMgRGV0ZXJtaW5pc3RpYyBhbmQgUHJvYmFiaWxpc3RpYyBGb3JlY2FzdHM6IFtNZXQgT2ZmaWNlIEdsb2JhbCBhbmQgUmVnaW9uYWwgRW5zZW1ibGUgUHJlZGljdGlvbiBTeXN0ZW0gKEdsb2JhbCkgLSBNT0dSRVBTLUddKGh0dHBzOi8vd3d3Lm1ldG9mZmljZS5nb3YudWsvYmluYXJpZXMvY29udGVudC9hc3NldHMvbWV0b2ZmaWNlZ292dWsvcGRmL2RhdGEvbW9ncmVwcy1nLXBhcmFtZXRlcnMtbWF5LTIwMTkucGRmKSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGF3cy1lYXJ0aC1tby1hdG1vc3BoZXJpYy1tb2dyZXBzLWctcHJkIGJ1Y2tldCBhdCBodHRwczovL2F3cy1lYXJ0aC1tby1hdG1vc3BoZXJpYy1tb2dyZXBzLWctcHJkLnMzLmV1LXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBVSyBNZXQgT2ZmaWNlIEF0bW9zcGhlcmljIERldGVybWluaXN0aWMgYW5kIFByb2JhYmlsaXN0aWMgRm9yZWNhc3RzXG5OYW1lMjogW01ldCBPZmZpY2UgR2xvYmFsIGFuZCBSZWdpb25hbCBFbnNlbWJsZSBQcmVkaWN0aW9uIFN5c3RlbSAoR2xvYmFsKSAtIE1PR1JFUFMtR10oaHR0cHM6Ly93d3cubWV0b2ZmaWNlLmdvdi51ay9iaW5hcmllcy9jb250ZW50L2Fzc2V0cy9tZXRvZmZpY2Vnb3Z1ay9wZGYvZGF0YS9tb2dyZXBzLWctcGFyYW1ldGVycy1tYXktMjAxOS5wZGYpXG5EZXNjcmlwdGlvbjogTWV0ZW9yb2xvZ2ljYWwgZGF0YSByZXVzZXJzIG5vdyBoYXZlIGFuIGV4Y2l0aW5nIG9wcG9ydHVuaXR5IHRvIHNhbXBsZSwgZXhwZXJpbWVudCBhbmQgZXZhbHVhdGUgTWV0IE9mZmljZSBhdG1vc3BoZXJpYyBtb2RlbCBkYXRhLCB3aGlsc3QgYWxzbyBleHBlcmllbmNpbmcgYSB0cmFuc2Zvcm1hdGl2ZSBtZXRob2Qgb2YgcmVxdWVzdGluZyBkYXRhIHZpYSBSZXN0ZnVsIEFQSXMgb24gQVdTLiBBbGwgYWhlYWQgb2YgTWV0IE9mZmljZVx1MjAxOXMgb3duIG9wZXJhdGlvbmFsbHkgc3VwcG9ydGVkIEFQSSBwbGF0Zm9ybSB0aGF0IHdpbGwgYmUgbGF1bmNoZWQgaW4gbGF0ZSAyMDE5LlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2dpdGh1Yi5jb20vTWV0T2ZmaWNlL2F3cy1lYXJ0aC1leGFtcGxlc1xuQ29udGFjdDogaHR0cHM6Ly93d3cubWV0b2ZmaWNlLmdvdi51ay9hYm91dC11cy9jb250YWN0XG5VcGRhdGVGcmVxdWVuY3k6IERhaWx5ICh3aXRoIDI0IGhvdXIgZGVsYXkpXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfYXdzX2VhcnRoX21vX2F0bW9zcGhlcmljX21vZ3JlcHNfZ19wcmQvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy91ay1tZXQtb2ZmaWNlLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2F3c19lYXJ0aF9tb19hdG1vc3BoZXJpY19tb2dyZXBzX2dfcHJkLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2F3c19lYXJ0aF9tb19hdG1vc3BoZXJpY19tb2dyZXBzX2dfcHJkJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19hd3NfZWFydGhfbW9fYXRtb3NwaGVyaWNfbW9ncmVwc19nX3ByZCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19hd3NfZ3NvZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2F3c19nc29kLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2F3c19nc29kLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgYXdzLWdzb2QgQnVja2V0OiBHbG9iYWwgU3VyZmFjZSBTdW1tYXJ5IG9mIERheTogTWVhc3VyZW1lbnRzIGFuZCBtZXRhZGF0YSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGF3cy1nc29kIGJ1Y2tldCBhdCBodHRwczovL2F3cy1nc29kLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBHbG9iYWwgU3VyZmFjZSBTdW1tYXJ5IG9mIERheVxuTmFtZTI6IE1lYXN1cmVtZW50cyBhbmQgbWV0YWRhdGFcbkRlc2NyaXB0aW9uOiBHU09EIGlzIGEgY29sbGVjdGlvbiBvZiBkYWlseSB3ZWF0aGVyIG1lYXN1cmVtZW50cyAodGVtcGVyYXR1cmUsIHdpbmQgc3BlZWQsIGh1bWlkaXR5LCBwcmVzc3VyZSwgYW5kIG1vcmUpIGZyb20gOTAwMCsgd2VhdGhlciBzdGF0aW9ucyBhcm91bmQgdGhlIHdvcmxkLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL3d3dy5uY2RjLm5vYWEuZ292L1xuQ29udGFjdDogaHR0cHM6Ly93d3cubmNkYy5ub2FhLmdvdi9cblVwZGF0ZUZyZXF1ZW5jeTogQ3VycmVudGx5IHVwZGF0ZWQgaW5mcmVxdWVudGx5LiBMYXN0IHVwZGF0ZWQgb24gU2VwdGVtYmVyIDEzLCAyMDE2LlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2F3c19nc29kL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvbm9hYS1nc29kLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2F3c19nc29kLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2F3c19nc29kJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19hd3NfZ3NvZCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19icm9hZF9yZWZlcmVuY2VzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfYnJvYWRfcmVmZXJlbmNlcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19icm9hZF9yZWZlcmVuY2VzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgYnJvYWQtcmVmZXJlbmNlcyBCdWNrZXQ6IEJyb2FkIEdlbm9tZSBSZWZlcmVuY2VzOiBUaGlzIGRhdGFzZXQgaW5jbHVkZXMgdHdvIGh1bWFuIGdlbm9tZSByZWZlcmVuY2VzIGFzc2VtYmxlZCBieSB0aGUgR2Vub21lIFJlZmVyZW5jZSBDb25zb3J0aXVtOiBIZzE5IGFuZCBIZzM4LiIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGJyb2FkLXJlZmVyZW5jZXMgYnVja2V0IGF0IGh0dHBzOi8vYnJvYWQtcmVmZXJlbmNlcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogQnJvYWQgR2Vub21lIFJlZmVyZW5jZXNcbk5hbWUyOiBUaGlzIGRhdGFzZXQgaW5jbHVkZXMgdHdvIGh1bWFuIGdlbm9tZSByZWZlcmVuY2VzIGFzc2VtYmxlZCBieSB0aGUgR2Vub21lIFJlZmVyZW5jZSBDb25zb3J0aXVtOiBIZzE5IGFuZCBIZzM4LlxuRGVzY3JpcHRpb246IEJyb2FkIG1haW50YWluZWQgaHVtYW4gZ2Vub21lIHJlZmVyZW5jZSBidWlsZHMgaGcxOS9oZzM4IGFuZCBkZWNveSByZWZlcmVuY2VzLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL3MzLmFtYXpvbmF3cy5jb20vYnJvYWQtcmVmZXJlbmNlcy9icm9hZC1yZWZlcmVuY2VzLXJlYWRtZS5odG1sXG5Db250YWN0OiBoZW5zb25jQGJyb2FkaW5zdGl0dXRlLm9yZ1xuTWFuYWdlZEJ5OiBCcm9hZCBJbnN0aXR1dGVcblVwZGF0ZUZyZXF1ZW5jeTogTW9udGhseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2Jyb2FkX3JlZmVyZW5jZXMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9icm9hZC1yZWZlcmVuY2VzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2Jyb2FkX3JlZmVyZW5jZXMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfYnJvYWRfcmVmZXJlbmNlcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfYnJvYWRfcmVmZXJlbmNlcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19jYmVyc19tZXRhX3BkcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2NiZXJzX21ldGFfcGRzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2NiZXJzX21ldGFfcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgY2JlcnMtbWV0YS1wZHMgQnVja2V0OiBDQkVSUyBvbiBBV1M6IENCRVJTIG1ldGFkYXRhIChRdWlja2xvb2tzLCBtZXRhZGF0YSkiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBjYmVycy1tZXRhLXBkcyBidWNrZXQgYXQgaHR0cHM6Ly9jYmVycy1tZXRhLXBkcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogQ0JFUlMgb24gQVdTXG5OYW1lMjogQ0JFUlMgbWV0YWRhdGEgKFF1aWNrbG9va3MsIG1ldGFkYXRhKVxuRGVzY3JpcHRpb246IFRoaXMgcHJvamVjdCBjcmVhdGVzIGEgUzMgcmVwb3NpdG9yeSB3aXRoIGltYWdlcnkgYWNxdWlyZWQgYnkgdGhlIENoaW5hLUJyYXppbCBFYXJ0aCBSZXNvdXJjZXMgU2F0ZWxsaXRlIChDQkVSUykuIFRoZSBpbWFnZSBmaWxlcyBhcmUgcmVjb3JkZWQgYW5kIHByb2Nlc3NlZCBieSBJbnN0aXR1dG8gTmFjaW9uYWwgZGUgUGVzcXVpc2EgRXNwYWNpYWlzIChJTlBFKSBhbmQgYXJlIGNvbnZlcnRlZCB0byBDbG91ZCBPcHRpbWl6ZWQgR2VvdGlmZiBmb3JtYXQgaW4gb3JkZXIgdG8gb3B0aW1pemUgaXRzIHVzZSBmb3IgY2xvdWQgYmFzZWQgYXBwbGljYXRpb25zLiBUaGUgcmVwb3NpdG9yeSBjb250YWlucyBhbGwgQ0JFUlMtNCBNVVgsIEFXRkksIFBBTjVNIGFuZCBQQU4xME0gc2NlbmVzIGFjcXVpcmVkIHNpbmNlIHRoZSBzdGFydCBvZiB0aGUgc2F0ZWxsaXRlIG1pc3Npb24gYW5kIGlzIGRhaWx5IHVwZGF0ZWQgd2l0aCBuZXcgc2NlbmVzLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2dpdGh1Yi5jb20vZnJlZGxpcG9yYWNlL2NiZXJzLW9uLWF3c1xuQ29udGFjdDogaHR0cHM6Ly9saXN0cy5vc2dlby5vcmcvbWFpbG1hbi9saXN0aW5mby9jYmVycy1wZHNcbk1hbmFnZWRCeTogW0FNUyBLZXBsZXJdKGh0dHBzOi8vYW1za2VwbGVyLmNvbS8pXG5VcGRhdGVGcmVxdWVuY3k6IERhaWx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfY2JlcnNfbWV0YV9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9jYmVycy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19jYmVyc19tZXRhX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19jYmVyc19tZXRhX3BkcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfY2JlcnNfbWV0YV9wZHMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfY2dpYXJkYXRhIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfY2dpYXJkYXRhLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2NnaWFyZGF0YS8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGNnaWFyZGF0YSBCdWNrZXQ6IENDQUZTLUNsaW1hdGUgRGF0YTogQVJDIEdSSUQsIGFuZCBBUkMgQVNDSUkgZm9ybWF0IGNvbXByZXNzZWQiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBjZ2lhcmRhdGEgYnVja2V0IGF0IGh0dHBzOi8vY2dpYXJkYXRhLnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBDQ0FGUy1DbGltYXRlIERhdGFcbk5hbWUyOiBBUkMgR1JJRCwgYW5kIEFSQyBBU0NJSSBmb3JtYXQgY29tcHJlc3NlZFxuRGVzY3JpcHRpb246IEhpZ2ggcmVzb2x1dGlvbiBjbGltYXRlIGRhdGEgdG8gaGVscCBhc3Nlc3MgdGhlIGltcGFjdHMgb2YgY2xpbWF0ZSBjaGFuZ2UgcHJpbWFyaWx5IG9uIGFncmljdWx0dXJlLiBUaGVzZSBvcGVuIGFjY2VzcyBkYXRhc2V0cyBvZiBjbGltYXRlIHByb2plY3Rpb25zIHdpbGwgaGVscCByZXNlYXJjaGVycyBtYWtlIGNsaW1hdGUgY2hhbmdlIGltcGFjdCBhc3Nlc3NtZW50cy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cDovL3d3dy5jY2Fmcy1jbGltYXRlLm9yZ1xuQ29udGFjdDogaHR0cDovL3d3dy5jY2Fmcy1jbGltYXRlLm9yZy9jb250YWN0L1xuVXBkYXRlRnJlcXVlbmN5OiBFdmVyeSB0aHJlZSBtb250aHNcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19jZ2lhcmRhdGEvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9jZ2lhcmRhdGEvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfY2dpYXJkYXRhLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2NnaWFyZGF0YSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfY2dpYXJkYXRhIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2NvbW1vbmNyYXdsIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfY29tbW9uY3Jhd2wuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfY29tbW9uY3Jhd2wvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBjb21tb25jcmF3bCBCdWNrZXQ6IENvbW1vbiBDcmF3bDogQ3Jhd2wgZGF0YSAoV0FSQyBhbmQgQVJDIGZvcm1hdCkiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBjb21tb25jcmF3bCBidWNrZXQgYXQgaHR0cHM6Ly9jb21tb25jcmF3bC5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogQ29tbW9uIENyYXdsXG5OYW1lMjogQ3Jhd2wgZGF0YSAoV0FSQyBhbmQgQVJDIGZvcm1hdClcbkRlc2NyaXB0aW9uOiBBIGNvcnB1cyBvZiB3ZWIgY3Jhd2wgZGF0YSBjb21wb3NlZCBvZiBvdmVyIDI1IGJpbGxpb24gd2ViIHBhZ2VzLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwOi8vY29tbW9uY3Jhd2wub3JnL3RoZS1kYXRhL2dldC1zdGFydGVkL1xuQ29udGFjdDogaHR0cDovL2NvbW1vbmNyYXdsLm9yZy9jb25uZWN0L2NvbnRhY3QtdXMvXG5NYW5hZ2VkQnk6IFtDb21tb24gQ3Jhd2xdKGh0dHA6Ly9jb21tb25jcmF3bC5vcmcvKVxuVXBkYXRlRnJlcXVlbmN5OiBNb250aGx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfY29tbW9uY3Jhd2wvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9jb21tb25jcmF3bC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19jb21tb25jcmF3bC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19jb21tb25jcmF3bCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfY29tbW9uY3Jhd2wiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfY29ybmVsbF9lYXNfZGF0YV9sYWtlIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfY29ybmVsbF9lYXNfZGF0YV9sYWtlLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2Nvcm5lbGxfZWFzX2RhdGFfbGFrZS8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGNvcm5lbGwtZWFzLWRhdGEtbGFrZSBCdWNrZXQ6IENvcm5lbGwgRUFTIERhdGEgTGFrZTogQ29ybmVsbCBFQVMgRGF0YSBMYWtlIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgY29ybmVsbC1lYXMtZGF0YS1sYWtlIGJ1Y2tldCBhdCBodHRwczovL2Nvcm5lbGwtZWFzLWRhdGEtbGFrZS5zMy51cy1lYXN0LTIuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogQ29ybmVsbCBFQVMgRGF0YSBMYWtlXG5OYW1lMjogQ29ybmVsbCBFQVMgRGF0YSBMYWtlXG5EZXNjcmlwdGlvbjogRWFydGggJiBBdG1vc3BoZXJpYyBTY2llbmNlcyBhdCBDb3JuZWxsIFVuaXZlcnNpdHkgaGFzIGNyZWF0ZWQgYSBwdWJsaWMgZGF0YSBsYWtlIG9mIGNsaW1hdGUgZGF0YS4gVGhlIGRhdGEgaXMgc3RvcmVkIGluIGNvbHVtbmFyIHN0b3JhZ2UgZm9ybWF0cyAoT1JDKSB0byBtYWtlIGl0IHN0cmFpZ2h0Zm9yd2FyZCB0byBxdWVyeSB1c2luZyBzdGFuZGFyZCB0b29scyBsaWtlIEFtYXpvbiBBdGhlbmEgb3IgQXBhY2hlIFNwYXJrLiBUaGUgZGF0YSBpdHNlbGYgaXMgb3JpZ2luYWxseSBpbnRlbmRlZCB0byBiZSB1c2VkIGZvciBidWlsZGluZyBkZWNpc2lvbiBzdXBwb3J0IHRvb2xzIGZvciBmYXJtZXJzIGFuZCBkaWdpdGFsIGFncmljdWx0dXJlLiBUaGUgZmlyc3QgZGF0YXNldCBpcyB0aGUgaGlzdG9yaWNhbCBOREZEIC8gTkRHRCBkYXRhIGRpc3RyaWJ1dGVkIGJ5IE5DRVAgLyBOT0FBIC8gTldTLiBUaGUgTkRGRCAoTmF0aW9uYWwgRGlnaXRhbCBGb3JlY2FzdCBEYXRhYmFzZSkgYW5kIE5ER0QgKE5hdGlvbmFsIERpZ2l0YWwgR3VpZGFuY2UgRGF0YWJhc2UpIGNvbnRhaW4gZ3JpZGRlZCBmb3JlY2FzdHMgYW5kIG9ic2VydmF0aW9ucyBhdCAyLjVrbSByZXNvbHV0aW9uIGZvciB0aGUgQ29udGlndW91cyBVbml0ZWQgU3RhdGVzIChDT05VUykuIFRoZXJlIGFyZSBhbHNvIDVrbSBncmlkcyBmb3Igc2V2ZXJhbCBzbWFsbGVyIFVTIHJlZ2lvbnMgYW5kIG5vbi1jb250aW5ndW91cyB0ZXJyaXRvcmllcywgc3VjaCBhcyBIYXdhaWksIEd1YW0sIFB1ZXJ0byBSaWNvIGFuZCBBbGFza2EuIE5PQUEgZGlzdHJpYnV0ZXMgYXJjaGl2ZXMgb2YgdGhlIE5ERkQvTkRHRCB2aWEgaXRzIE5PQUEgT3BlcmF0aW9uYWwgTW9kZWwgQXJjaGl2ZSBhbmQgRGlzdHJpYnV0aW9uIFN5c3RlbSAoTk9NQURTKSBpbiBHcmliMiBmb3JtYXQuIFRoZSBkYXRhIGhhcyBiZWVuIGNvbnZlcnRlZCB0byBPUkMgdG8gb3B0aW1pemUgc3RvcmFnZSBzcGFjZSBhbmQgdG8sIG1vcmUgaW1wb3J0YW50bHksIHNpbXBsaWZ5IGRhdGEgYWNjZXNzIHZpYSBzdGFuZGFyZCBkYXRhIGFuYWx5dGljcyB0b29scy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kYXRhbGFrZS5lYXMuY29ybmVsbC5lZHUvXG5Db250YWN0OiBkaWdpdGFsYWdAY29ybmVsbC5lZHVcblVwZGF0ZUZyZXF1ZW5jeTogSG91cmx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfY29ybmVsbF9lYXNfZGF0YV9sYWtlL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvY29ybmVsbC1lYXMtZGF0YS1sYWtlLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2Nvcm5lbGxfZWFzX2RhdGFfbGFrZS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19jb3JuZWxsX2Vhc19kYXRhX2xha2Umc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2Nvcm5lbGxfZWFzX2RhdGFfbGFrZSJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19jc2VfY2ljX2lkczIwMTgiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19jc2VfY2ljX2lkczIwMTguZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfY3NlX2NpY19pZHMyMDE4LyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgY3NlLWNpYy1pZHMyMDE4IEJ1Y2tldDogQSBSZWFsaXN0aWMgQ3liZXIgRGVmZW5zZSBEYXRhc2V0IChDU0UtQ0lDLUlEUzIwMTgpOiBOZXR3b3JrIHRyYWZmaWMgYW5kIGxvZyBmaWxlcyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGNzZS1jaWMtaWRzMjAxOCBidWNrZXQgYXQgaHR0cHM6Ly9jc2UtY2ljLWlkczIwMTguczMuY2EtY2VudHJhbC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IEEgUmVhbGlzdGljIEN5YmVyIERlZmVuc2UgRGF0YXNldCAoQ1NFLUNJQy1JRFMyMDE4KVxuTmFtZTI6IE5ldHdvcmsgdHJhZmZpYyBhbmQgbG9nIGZpbGVzXG5EZXNjcmlwdGlvbjogVGhpcyBkYXRhc2V0IGlzIHRoZSByZXN1bHQgb2YgYSBjb2xsYWJvcmF0aXZlIHByb2plY3QgYmV0d2VlbiB0aGUgQ29tbXVuaWNhdGlvbnMgU2VjdXJpdHkgRXN0YWJsaXNobWVudCAoQ1NFKSBhbmQgVGhlIENhbmFkaWFuIEluc3RpdHV0ZSBmb3IgQ3liZXJzZWN1cml0eSAoQ0lDKSB0aGF0IHVzZSB0aGUgbm90aW9uIG9mIHByb2ZpbGVzIHRvIGdlbmVyYXRlIGN5YmVyc2VjdXJpdHkgZGF0YXNldCBpbiBhIHN5c3RlbWF0aWMgbWFubmVyLiBJdCBpbmNsdWlkZXMgYSBkZXRhaWxlZCBkZXNjcmlwdGlvbiBvZiBpbnRydXNpb25zIGFsb25nIHdpdGggYWJzdHJhY3QgZGlzdHJpYnV0aW9uIG1vZGVscyBmb3IgYXBwbGljYXRpb25zLCBwcm90b2NvbHMsIG9yIGxvd2VyIGxldmVsIG5ldHdvcmsgZW50aXRpZXMuIFRoZSBkYXRhc2V0IGluY2x1ZGVzIHNldmVuIGRpZmZlcmVudCBhdHRhY2sgc2NlbmFyaW9zLCBuYW1lbHkgQnJ1dGUtZm9yY2UsIEhlYXJ0YmxlZWQsIEJvdG5ldCwgRG9TLCBERG9TLCBXZWIgYXR0YWNrcywgYW5kIGluZmlsdHJhdGlvbiBvZiB0aGUgbmV0d29yayBmcm9tIGluc2lkZS4gVGhlIGF0dGFja2luZyBpbmZyYXN0cnVjdHVyZSBpbmNsdWRlcyA1MCBtYWNoaW5lcyBhbmQgdGhlIHZpY3RpbSBvcmdhbml6YXRpb24gaGFzIDUgZGVwYXJ0bWVudHMgaW5jbHVkZXMgNDIwIFBDcyBhbmQgMzAgc2VydmVycy4gVGhpcyBkYXRhc2V0IGluY2x1ZGVzIHRoZSBuZXR3b3JrIHRyYWZmaWMgYW5kIGxvZyBmaWxlcyBvZiBlYWNoIG1hY2hpbmUgZnJvbSB0aGUgdmljdGltIHNpZGUsIGFsb25nIHdpdGggODAgbmV0d29yayB0cmFmZmljIGZlYXR1cmVzIGV4dHJhY3RlZCBmcm9tIGNhcHR1cmVkIHRyYWZmaWMgdXNpbmcgQ0lDRmxvd01ldGVyLVYzLiBGb3IgbW9yZSBpbmZvcm1hdGlvbiBvbiB0aGUgY3JlYXRpb24gb2YgdGhpcyBkYXRhc2V0LCBzZWUgdGhpcyBwYXBlciBieSByZXNlYXJjaGVycyBhdCB0aGUgQ2FuYWRpYW4gSW5zdGl0dXRlIGZvciBDeWJlcnNlY3VyaXR5IChDSUMpIGFuZCB0aGUgVW5pdmVyc2l0eSBvZiBOZXcgQnJ1bnN3aWNrIChVTkIpOiBbVG93YXJkIEdlbmVyYXRpbmcgYSBOZXcgSW50cnVzaW9uIERldGVjdGlvbiBEYXRhc2V0IGFuZCBJbnRydXNpb24gVHJhZmZpYyBDaGFyYWN0ZXJpemF0aW9uXShodHRwOi8vd3d3LnNjaXRlcHJlc3Mub3JnL1BhcGVycy8yMDE4LzY2Mzk4LzY2Mzk4LnBkZikuXG5cbkRvY3VtZW50YXRpb246IGh0dHA6Ly93d3cudW5iLmNhL2NpYy9kYXRhc2V0cy9pZHMtMjAxOC5odG1sXG5Db250YWN0OiBDSUNAdW5iLmNhXG5VcGRhdGVGcmVxdWVuY3k6IEFubnVhbHlcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19jc2VfY2ljX2lkczIwMTgvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9jc2UtY2ljLWlkczIwMTgvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfY3NlX2NpY19pZHMyMDE4LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2NzZV9jaWNfaWRzMjAxOCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfY3NlX2NpY19pZHMyMDE4Il0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2N5dG9kYXRhIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfY3l0b2RhdGEuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfY3l0b2RhdGEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBjeXRvZGF0YSBCdWNrZXQ6IENlbGwgUGFpbnRpbmcgSW1hZ2UgQ29sbGVjdGlvbjogSW1hZ2VzLCBleHRyYWN0ZWQgZmVhdHVyZXMgYW5kIGFnZ3JlZ2F0ZWQgcHJvZmlsZXMgYXJlIGF2YWlsYWJsZSBhcyBhIFMzIGJ1Y2tldCIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGN5dG9kYXRhIGJ1Y2tldCBhdCBodHRwczovL2N5dG9kYXRhLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBDZWxsIFBhaW50aW5nIEltYWdlIENvbGxlY3Rpb25cbk5hbWUyOiBJbWFnZXMsIGV4dHJhY3RlZCBmZWF0dXJlcyBhbmQgYWdncmVnYXRlZCBwcm9maWxlcyBhcmUgYXZhaWxhYmxlIGFzIGEgUzMgYnVja2V0XG5EZXNjcmlwdGlvbjogVGhlIENlbGwgUGFpbnRpbmcgSW1hZ2UgQ29sbGVjdGlvbiBpcyBhIGNvbGxlY3Rpb24gb2YgZnJlZWx5IGRvd25sb2FkYWJsZSBtaWNyb3Njb3B5IGltYWdlIHNldHMuIENlbGwgUGFpbnRpbmcgaXMgYW4gdW5iaWFzZWQgaGlnaCB0aHJvdWdocHV0IGltYWdpbmcgYXNzYXkgdXNlZCB0byBhbmFseXplIHBlcnR1cmJhdGlvbnMgaW4gY2VsbCBtb2RlbHMuIEluIGFkZGl0aW9uIHRvIHRoZSBpbWFnZXMgdGhlbXNlbHZlcywgZWFjaCBzZXQgaW5jbHVkZXMgYSBkZXNjcmlwdGlvbiBvZiB0aGUgYmlvbG9naWNhbCBhcHBsaWNhdGlvbiBhbmQgc29tZSB0eXBlIG9mIFwiZ3JvdW5kIHRydXRoXCIgKGV4cGVjdGVkIHJlc3VsdHMpLiBSZXNlYXJjaGVycyBhcmUgZW5jb3VyYWdlZCB0byB1c2UgdGhlc2UgaW1hZ2Ugc2V0cyBhcyByZWZlcmVuY2UgcG9pbnRzIHdoZW4gZGV2ZWxvcGluZywgdGVzdGluZywgYW5kIHB1Ymxpc2hpbmcgbmV3IGltYWdlIGFuYWx5c2lzIGFsZ29yaXRobXMgZm9yIHRoZSBsaWZlIHNjaWVuY2VzLiBXZSBob3BlIHRoYXQgdGhlIHRoaXMgZGF0YSBzZXQgd2lsbCBsZWFkIHRvIGEgYmV0dGVyIHVuZGVyc3RhbmRpbmcgb2Ygd2hpY2ggbWV0aG9kcyBhcmUgYmVzdCBmb3IgdmFyaW91cyBiaW9sb2dpY2FsIGltYWdlIGFuYWx5c2lzIGFwcGxpY2F0aW9ucy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9naXRodWIuY29tL2N5dG9kYXRhL2N5dG9kYXRhLWhhY2thdGhvbi0yMDE4XG5Db250YWN0OiBQb3N0IG9uIGh0dHBzOi8vZm9ydW0uaW1hZ2Uuc2MvIGFuZCB0YWcgd2l0aCBcImNlbGxwYWludGluZ1wiXG5VcGRhdGVGcmVxdWVuY3k6IGlycmVndWxhcmx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfY3l0b2RhdGEvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9jZWxsLXBhaW50aW5nLWltYWdlLWNvbGxlY3Rpb24vIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfY3l0b2RhdGEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfY3l0b2RhdGEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2N5dG9kYXRhIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2N6Yl90YWJ1bGFfbXVyaXMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19jemJfdGFidWxhX211cmlzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2N6Yl90YWJ1bGFfbXVyaXMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBjemItdGFidWxhLW11cmlzIEJ1Y2tldDogVGFidWxhIE11cmlzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgY3piLXRhYnVsYS1tdXJpcyBidWNrZXQgYXQgaHR0cHM6Ly9jemItdGFidWxhLW11cmlzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBUYWJ1bGEgTXVyaXNcbk5hbWUyOiBodHRwczovL2dpdGh1Yi5jb20vY3piaW9odWIvdGFidWxhLW11cmlzXG5EZXNjcmlwdGlvbjogVGFidWxhIE11cmlzIGlzIGEgY29tcGVuZGl1bSBvZiBzaW5nbGUgY2VsbCB0cmFuc2NyaXB0b21pYyBkYXRhIGZyb20gdGhlIG1vZGVsIG9yZ2FuaXNtICpNdXMgbXVzY3VsdXMqIGNvbXByaXNpbmcgbW9yZSB0aGFuIDEwMCwwMDAgY2VsbHMgZnJvbSAyMCBvcmdhbnMgYW5kIHRpc3N1ZXMuIFRoZXNlIGRhdGEgcmVwcmVzZW50IGEgbmV3IHJlc291cmNlIGZvciBjZWxsIGJpb2xvZ3ksIHJldmVhbCBnZW5lIGV4cHJlc3Npb24gaW4gcG9vcmx5IGNoYXJhY3Rlcml6ZWQgY2VsbCBwb3B1bGF0aW9ucywgYW5kIGFsbG93IGZvciBkaXJlY3QgYW5kIGNvbnRyb2xsZWQgY29tcGFyaXNvbiBvZiBnZW5lIGV4cHJlc3Npb24gaW4gY2VsbCB0eXBlcyBzaGFyZWQgYmV0d2VlbiB0aXNzdWVzLCBzdWNoIGFzIFQtbHltcGhvY3l0ZXMgYW5kIGVuZG90aGVsaWFsIGNlbGxzIGZyb20gZGlmZmVyZW50IGFuYXRvbWljYWwgbG9jYXRpb25zLiBUd28gZGlzdGluY3QgdGVjaG5pY2FsIGFwcHJvYWNoZXMgd2VyZSB1c2VkIGZvciBtb3N0IG9yZ2Fuczogb25lIGFwcHJvYWNoLCBtaWNyb2ZsdWlkaWMgZHJvcGxldC1iYXNlZCAzXHUyMDE5LWVuZCBjb3VudGluZywgZW5hYmxlZCB0aGUgc3VydmV5IG9mIHRob3VzYW5kcyBvZiBjZWxscyBhdCByZWxhdGl2ZWx5IGxvdyBjb3ZlcmFnZSwgd2hpbGUgdGhlIG90aGVyLCBGQUNTLWJhc2VkIGZ1bGwgbGVuZ3RoIHRyYW5zY3JpcHQgYW5hbHlzaXMsIGVuYWJsZWQgY2hhcmFjdGVyaXphdGlvbiBvZiBjZWxsIHR5cGVzIHdpdGggaGlnaCBzZW5zaXRpdml0eSBhbmQgY292ZXJhZ2UuIFRoZSBjdW11bGF0aXZlIGRhdGEgcHJvdmlkZSB0aGUgZm91bmRhdGlvbiBmb3IgYW4gYXRsYXMgb2YgdHJhbnNjcmlwdG9taWMgY2VsbCBiaW9sb2d5LiBTZWU6IGh0dHBzOi8vd3d3Lm5hdHVyZS5jb20vYXJ0aWNsZXMvczQxNTg2LTAxOC0wNTkwLTRcblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9naXRodWIuY29tL2N6YmlvaHViL3RhYnVsYS1tdXJpcy9ibG9iL21hc3Rlci90YWJ1bGEtbXVyaXMtb24tYXdzLm1kXG5Db250YWN0OiBJZiB5b3UgaGF2ZSBxdWVzdGlvbnMgYWJvdXQgdGhlIGRhdGEsIHlvdSBjYW4gY3JlYXRlIGFuIElzc3VlIGF0IGh0dHBzOi8vZ2l0aHViLmNvbS9jemJpb2h1Yi90YWJ1bGEtbXVyaXMuXG5NYW5hZ2VkQnk6IFtDaGFuIFp1Y2tlcmJlcmcgQmlvaHViXShodHRwczovL3d3dy5jemJpb2h1Yi5vcmcvKVxuVXBkYXRlRnJlcXVlbmN5OiBUaGlzIGlzIHRoZSBmaW5hbCB2ZXJzaW9uIG9mIHRoZSBkYXRhc2V0LCBpdCB3aWxsIG5vdCBiZSB1cGRhdGVkLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2N6Yl90YWJ1bGFfbXVyaXMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy90YWJ1bGEtbXVyaXMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfY3piX3RhYnVsYV9tdXJpcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19jemJfdGFidWxhX211cmlzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19jemJfdGFidWxhX211cmlzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2RhdGFmb3Jnb29kX2ZiX2RhdGEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19kYXRhZm9yZ29vZF9mYl9kYXRhLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2RhdGFmb3Jnb29kX2ZiX2RhdGEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBkYXRhZm9yZ29vZC1mYi1kYXRhIEJ1Y2tldDogSGlnaCBSZXNvbHV0aW9uIFBvcHVsYXRpb24gRGVuc2l0eSBNYXBzICsgRGVtb2dyYXBoaWMgRXN0aW1hdGVzIGJ5IENJRVNJTiBhbmQgRmFjZWJvb2s6IENTViBhbmQgQ2xvdWQtb3B0aW1pemVkIEdlb1RJRkYgZmlsZXMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBkYXRhZm9yZ29vZC1mYi1kYXRhIGJ1Y2tldCBhdCBodHRwczovL2RhdGFmb3Jnb29kLWZiLWRhdGEuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IEhpZ2ggUmVzb2x1dGlvbiBQb3B1bGF0aW9uIERlbnNpdHkgTWFwcyArIERlbW9ncmFwaGljIEVzdGltYXRlcyBieSBDSUVTSU4gYW5kIEZhY2Vib29rXG5OYW1lMjogQ1NWIGFuZCBDbG91ZC1vcHRpbWl6ZWQgR2VvVElGRiBmaWxlc1xuRGVzY3JpcHRpb246IFBvcHVsYXRpb24gZGF0YSBmb3IgYSBzZWxlY3Rpb24gb2YgY291bnRyaWVzLCBhbGxvY2F0ZWQgdG8gMSBhcmNzZWNvbmQgYmxvY2tzIGFuZCBwcm92aWRlZCBpbiBhIGNvbWJpbmF0aW9uIG9mIENTViBhbmQgQ2xvdWQtb3B0aW1pemVkIEdlb1RJRkYgZmlsZXMuIFRoaXMgcmVmaW5lcyBbQ0lFU0lOXHUyMDE5cyBHcmlkZGVkIFBvcHVsYXRpb24gb2YgdGhlIFdvcmxkXShodHRwczovL3NlZGFjLmNpZXNpbi5jb2x1bWJpYS5lZHUvZGF0YS9jb2xsZWN0aW9uL2dwdy12NCkgdXNpbmcgbWFjaGluZSBsZWFybmluZyBtb2RlbHMgb24gaGlnaC1yZXNvbHV0aW9uIHdvcmxkd2lkZSBEaWdpdGFsIEdsb2JlIHNhdGVsbGl0ZSBpbWFnZXJ5LiBDSUVTSU4gcG9wdWxhdGlvbiBjb3VudHMgYWdncmVnYXRlZCBmcm9tIHdvcmxkd2lkZSBjZW5zdXMgZGF0YSBhcmUgYWxsb2NhdGVkIHRvIGJsb2NrcyB3aGVyZSBpbWFnZXJ5IGFwcGVhcnMgdG8gY29udGFpbiBidWlsZGluZ3MuXG5cbkRvY3VtZW50YXRpb246IFtQcm9qZWN0IG92ZXJ2aWV3XShodHRwczovL2RhdGFmb3Jnb29kLmZiLmNvbS9wb3B1bGF0aW9uLWRlbnNpdHktbWFwcy1kb2N1bWVudGF0aW9uLykgYW5kIFtkYXRhc2V0IGRlc2NyaXB0aW9uXShodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL2RhdGFmb3Jnb29kLWZiLWRhdGEvcmVhZG1lLmh0bWwpXG5Db250YWN0OiBkaXNhc3Rlcm1hcHNAZmIuY29tXG5NYW5hZ2VkQnk6IHxcblVwZGF0ZUZyZXF1ZW5jeTogUXVhcnRlcmx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZGF0YWZvcmdvb2RfZmJfZGF0YS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2RhdGFmb3Jnb29kLWZiLWhyc2wvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZGF0YWZvcmdvb2RfZmJfZGF0YS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19kYXRhZm9yZ29vZF9mYl9kYXRhJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19kYXRhZm9yZ29vZF9mYl9kYXRhIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2RhdGFzZXRzX2VsYXN0aWNtYXByZWR1Y2VfbmdyYW1zX2Jvb2tzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZGF0YXNldHNfZWxhc3RpY21hcHJlZHVjZV9uZ3JhbXNfYm9va3MuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZGF0YXNldHNfZWxhc3RpY21hcHJlZHVjZV9uZ3JhbXNfYm9va3MvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBkYXRhc2V0cy5lbGFzdGljbWFwcmVkdWNlIEJ1Y2tldCB3aXRoIHByZWZpeD1uZ3JhbXMvYm9va3MvOiBHb29nbGUgQm9va3MgTmdyYW1zOiBBIGRhdGEgc2V0IGNvbnRhaW5pbmcgR29vZ2xlIEJvb2tzIG4tZ3JhbSBjb3Jwb3JhIGluIGEgSGFkb29wIGZyaWVuZGx5IGZpbGUgZm9ybWF0LiIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGRhdGFzZXRzLmVsYXN0aWNtYXByZWR1Y2UgYnVja2V0IGF0IGh0dHBzOi8vZGF0YXNldHMuZWxhc3RpY21hcHJlZHVjZS5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gd2l0aCBwcmVmaXg9bmdyYW1zL2Jvb2tzLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBHb29nbGUgQm9va3MgTmdyYW1zXG5OYW1lMjogQSBkYXRhIHNldCBjb250YWluaW5nIEdvb2dsZSBCb29rcyBuLWdyYW0gY29ycG9yYSBpbiBhIEhhZG9vcCBmcmllbmRseSBmaWxlIGZvcm1hdC5cbkRlc2NyaXB0aW9uOiBOLWdyYW1zIGFyZSBmaXhlZCBzaXplIHR1cGxlcyBvZiBpdGVtcy4gSW4gdGhpcyBjYXNlIHRoZSBpdGVtcyBhcmUgd29yZHMgZXh0cmFjdGVkIGZyb20gdGhlIEdvb2dsZSBCb29rcyBjb3JwdXMuIFRoZSBuIHNwZWNpZmllcyB0aGUgbnVtYmVyIG9mIGVsZW1lbnRzIGluIHRoZSB0dXBsZSwgc28gYSA1LWdyYW0gY29udGFpbnMgZml2ZSB3b3JkcyBvciBjaGFyYWN0ZXJzLiBUaGUgbi1ncmFtcyBpbiB0aGlzIGRhdGFzZXQgd2VyZSBwcm9kdWNlZCBieSBwYXNzaW5nIGEgc2xpZGluZyB3aW5kb3cgb2YgdGhlIHRleHQgb2YgYm9va3MgYW5kIG91dHB1dHRpbmcgYSByZWNvcmQgZm9yIGVhY2ggbmV3IHRva2VuLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwOi8vYm9va3MuZ29vZ2xlLmNvbS9uZ3JhbXMvXG5Db250YWN0OiBodHRwczovL2Jvb2tzLmdvb2dsZS5jb20vbmdyYW1zXG5VcGRhdGVGcmVxdWVuY3k6IE5vdCB1cGRhdGVkXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZGF0YXNldHNfZWxhc3RpY21hcHJlZHVjZV9uZ3JhbXNfYm9va3MvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9nb29nbGUtbmdyYW1zLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2RhdGFzZXRzX2VsYXN0aWNtYXByZWR1Y2VfbmdyYW1zX2Jvb2tzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2RhdGFzZXRzX2VsYXN0aWNtYXByZWR1Y2VfbmdyYW1zX2Jvb2tzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19kYXRhc2V0c19lbGFzdGljbWFwcmVkdWNlX25ncmFtc19ib29rcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19kYXRhd29ybGRfbGlua2VkX2FjcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2RhdGF3b3JsZF9saW5rZWRfYWNzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2RhdGF3b3JsZF9saW5rZWRfYWNzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgZGF0YXdvcmxkLWxpbmtlZC1hY3MgQnVja2V0OiBVLlMuIENlbnN1cyBBQ1MgUFVNUzogUFVNUyBkYXRhIGluIFR1cnRsZSAtIFRlcnNlIFJERiBUcmlwbGUgTGFuZ3VhZ2UgKC50dGwpIGZvcm1hdCBhbG9uZyB3aXRoIG9udG9sb2dpZXMgYW5kIG90aGVyIGNvbXBsZW1lbnRhcnkgZGF0YS4iLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBkYXRhd29ybGQtbGlua2VkLWFjcyBidWNrZXQgYXQgaHR0cHM6Ly9kYXRhd29ybGQtbGlua2VkLWFjcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogVS5TLiBDZW5zdXMgQUNTIFBVTVNcbk5hbWUyOiBQVU1TIGRhdGEgaW4gVHVydGxlIC0gVGVyc2UgUkRGIFRyaXBsZSBMYW5ndWFnZSAoLnR0bCkgZm9ybWF0IGFsb25nIHdpdGggb250b2xvZ2llcyBhbmQgb3RoZXIgY29tcGxlbWVudGFyeSBkYXRhLlxuRGVzY3JpcHRpb246IFUuUy4gQ2Vuc3VzIEJ1cmVhdSBBbWVyaWNhbiBDb21tdW5pdHkgU3VydmV5IChBQ1MpIFB1YmxpYyBVc2UgTWljcm9kYXRhIFNhbXBsZSAoUFVNUykgYXZhaWxhYmxlIGluIGEgbGlua2VkIGRhdGEgZm9ybWF0IHVzaW5nIHRoZSBSZXNvdXJjZSBEZXNjcmlwdGlvbiBGcmFtZXdvcmsgKFJERikgZGF0YSBtb2RlbC5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLmRhdGEud29ybGQvdXNjZW5zdXMvI2FtZXJpY2FuLWNvbW11bml0eS1zdXJ2ZXktbGlua2VkLW9wZW4tZGF0YVxuQ29udGFjdDogaHR0cHM6Ly9kb2NzLmRhdGEud29ybGQvdXNjZW5zdXMvIzYwLS0tY29udGFjdFxuVXBkYXRlRnJlcXVlbmN5OiBZZWFybHksIGFmdGVyIEFDUyAxLXllYXIgUFVNUyByYXcgZGF0YSBhcmUgcmVsZWFzZWRcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19kYXRhd29ybGRfbGlua2VkX2Fjcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2NlbnN1cy1kYXRhd29ybGQtcHVtcy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19kYXRhd29ybGRfbGlua2VkX2Fjcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19kYXRhd29ybGRfbGlua2VkX2FjcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZGF0YXdvcmxkX2xpbmtlZF9hY3MiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZGNfbGlkYXJfMjAxNSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2RjX2xpZGFyXzIwMTUuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZGNfbGlkYXJfMjAxNS8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGRjLWxpZGFyLTIwMTUgQnVja2V0OiBEaXN0cmljdCBvZiBDb2x1bWJpYSAtIENsYXNzaWZpZWQgUG9pbnQgQ2xvdWQgTGlEQVI6IExBUywgWE1MLCBTSFAiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBkYy1saWRhci0yMDE1IGJ1Y2tldCBhdCBodHRwczovL2RjLWxpZGFyLTIwMTUuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IERpc3RyaWN0IG9mIENvbHVtYmlhIC0gQ2xhc3NpZmllZCBQb2ludCBDbG91ZCBMaURBUlxuTmFtZTI6IExBUywgWE1MLCBTSFBcbkRlcHJlY2F0ZWQ6IFRydWVcbkRlc2NyaXB0aW9uOiBQbGVhc2Ugc2VlIFtoZXJlXShodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9kYy1saWRhcikgZm9yIHRoZSBsYXRlcyBjb250ZW50IGFib3V0IHRoaXMgZGF0YXNldC4gTGlEQVIgcG9pbnQgY2xvdWQgZGF0YSBmb3IgV2FzaGluZ3RvbiwgREMgaXMgYXZhaWxhYmxlIGZvciBhbnlvbmUgdG8gdXNlIG9uIEFtYXpvbiBTMy4gVGhpcyBkYXRhc2V0LCBtYW5hZ2VkIGJ5IHRoZSBPZmZpY2Ugb2YgdGhlIENoaWVmIFRlY2hub2xvZ3kgT2ZmaWNlciAoT0NUTyksIHRocm91Z2ggdGhlIGRpcmVjdGlvbiBvZiB0aGUgRGlzdHJpY3Qgb2YgQ29sdW1iaWEgR0lTIHByb2dyYW0sIGNvbnRhaW5zIHRpbGVkIHBvaW50IGNsb3VkIGRhdGEgZm9yIHRoZSBlbnRpcmUgRGlzdHJpY3QgYWxvbmcgd2l0aCBhc3NvY2lhdGVkIG1ldGFkYXRhLlxuXG5Eb2N1bWVudGF0aW9uOiBbMjAxNSBkYXRhXShodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL2RjLWxpZGFyLTIwMTUvcmVhZG1lLmh0bWwpLCBbMjAxOCBkYXRhXShodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL2RjLWxpZGFyLTIwMTgvcmVhZG1lLmh0bWwpXG5Db250YWN0OiBkY2dpc0BkYy5nb3ZcblVwZGF0ZUZyZXF1ZW5jeTogVGhlIG1vc3QgcmVjZW50IGRhdGEgaXMgZnJvbSAyMDE4IGFuZCAyMDE1IGRhdGEgaXMgYXZhaWxhYmxlIGFzIHdlbGwuIEEgbmV3IGRhdGEgYWNxdWlzaXRpb24gaXMgcGxhbm5lZCBmb3IgMjAyMC5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19kY19saWRhcl8yMDE1L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvZGMtbGlkYXItMjAxNS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19kY19saWRhcl8yMDE1LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2RjX2xpZGFyXzIwMTUmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2RjX2xpZGFyXzIwMTUiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZGNfbGlkYXJfMjAxOCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2RjX2xpZGFyXzIwMTguZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZGNfbGlkYXJfMjAxOC8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGRjLWxpZGFyLTIwMTggQnVja2V0OiBEaXN0cmljdCBvZiBDb2x1bWJpYSAtIENsYXNzaWZpZWQgUG9pbnQgQ2xvdWQgTGlEQVI6IExBUywgWE1MIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgZGMtbGlkYXItMjAxOCBidWNrZXQgYXQgaHR0cHM6Ly9kYy1saWRhci0yMDE4LnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBEaXN0cmljdCBvZiBDb2x1bWJpYSAtIENsYXNzaWZpZWQgUG9pbnQgQ2xvdWQgTGlEQVJcbk5hbWUyOiBMQVMsIFhNTFxuRGVwcmVjYXRlZDogVHJ1ZVxuRGVzY3JpcHRpb246IFBsZWFzZSBzZWUgW2hlcmVdKGh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2RjLWxpZGFyKSBmb3IgdGhlIGxhdGVzIGNvbnRlbnQgYWJvdXQgdGhpcyBkYXRhc2V0LiBMaURBUiBwb2ludCBjbG91ZCBkYXRhIGZvciBXYXNoaW5ndG9uLCBEQyBpcyBhdmFpbGFibGUgZm9yIGFueW9uZSB0byB1c2Ugb24gQW1hem9uIFMzLiBUaGlzIGRhdGFzZXQsIG1hbmFnZWQgYnkgdGhlIE9mZmljZSBvZiB0aGUgQ2hpZWYgVGVjaG5vbG9neSBPZmZpY2VyIChPQ1RPKSwgdGhyb3VnaCB0aGUgZGlyZWN0aW9uIG9mIHRoZSBEaXN0cmljdCBvZiBDb2x1bWJpYSBHSVMgcHJvZ3JhbSwgY29udGFpbnMgdGlsZWQgcG9pbnQgY2xvdWQgZGF0YSBmb3IgdGhlIGVudGlyZSBEaXN0cmljdCBhbG9uZyB3aXRoIGFzc29jaWF0ZWQgbWV0YWRhdGEuXG5cbkRvY3VtZW50YXRpb246IFsyMDE1IGRhdGFdKGh0dHBzOi8vZG9jcy5vcGVuZGF0YS5hd3MvZGMtbGlkYXItMjAxNS9yZWFkbWUuaHRtbCksIFsyMDE4IGRhdGFdKGh0dHBzOi8vZG9jcy5vcGVuZGF0YS5hd3MvZGMtbGlkYXItMjAxOC9yZWFkbWUuaHRtbClcbkNvbnRhY3Q6IGRjZ2lzQGRjLmdvdlxuVXBkYXRlRnJlcXVlbmN5OiBUaGUgbW9zdCByZWNlbnQgZGF0YSBpcyBmcm9tIDIwMTggYW5kIDIwMTUgZGF0YSBpcyBhdmFpbGFibGUgYXMgd2VsbC4gQSBuZXcgZGF0YSBhY3F1aXNpdGlvbiBpcyBwbGFubmVkIGZvciAyMDIwLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2RjX2xpZGFyXzIwMTgvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9kYy1saWRhci0yMDE1LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2RjX2xpZGFyXzIwMTgucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfZGNfbGlkYXJfMjAxOCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZGNfbGlkYXJfMjAxOCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19kZXV0c2NoZV9ib2Vyc2VfZXVyZXhfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZGV1dHNjaGVfYm9lcnNlX2V1cmV4X3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19kZXV0c2NoZV9ib2Vyc2VfZXVyZXhfcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgZGV1dHNjaGUtYm9lcnNlLWV1cmV4LXBkcyBCdWNrZXQ6IERldXRzY2hlIEJcdTAwZjZyc2UgUHVibGljIERhdGFzZXQ6IEV1cmV4IFBEUyBGaWxlcyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGRldXRzY2hlLWJvZXJzZS1ldXJleC1wZHMgYnVja2V0IGF0IGh0dHBzOi8vZGV1dHNjaGUtYm9lcnNlLWV1cmV4LXBkcy5zMy5ldS1jZW50cmFsLTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogRGV1dHNjaGUgQlx1MDBmNnJzZSBQdWJsaWMgRGF0YXNldFxuTmFtZTI6IEV1cmV4IFBEUyBGaWxlc1xuRGVzY3JpcHRpb246IFRoZSBEZXV0c2NoZSBCXHUwMGY2cnNlIFB1YmxpYyBEYXRhIFNldCBjb25zaXN0cyBvZiB0cmFkZSBkYXRhIGFnZ3JlZ2F0ZWQgdG8gb25lIG1pbnV0ZSBpbnRlcnZhbHMgZnJvbSB0aGUgRXVyZXggYW5kIFhldHJhIHRyYWRpbmcgc3lzdGVtcy4gSXQgcHJvdmlkZXMgdGhlIGluaXRpYWwgcHJpY2UsIGxvd2VzdCBwcmljZSwgaGlnaGVzdCBwcmljZSwgZmluYWwgcHJpY2UgYW5kIHZvbHVtZSBmb3IgZXZlcnkgbWludXRlIG9mIHRoZSB0cmFkaW5nIGRheSwgYW5kIGZvciBldmVyeSB0cmFkZWFibGUgc2VjdXJpdHkuICBJZiB5b3UgbmVlZCBoaWdoZXIgcmVzb2x1dGlvbiBkYXRhLCBpbmNsdWRpbmcgdW50cmFkZWQgcHJpY2UgbW92ZW1lbnRzLCBwbGVhc2UgcmVmZXIgdG8gb3VyIGhpc3RvcmljYWwgbWFya2V0IGRhdGEgcHJvZHVjdCBbaGVyZV0oaHR0cDovL3d3dy5ldXJleGNoYW5nZS5jb20vZXhjaGFuZ2UtZW4vbWFya2V0LWRhdGEvaGlzdG9yaWNhbC1kYXRhKS4gIEFsc28sIGJlIHN1cmUgdG8gY2hlY2sgb3V0IG91ciBbZGV2ZWxvcGVyJ3MgcG9ydGFsXShodHRwczovL2NvbnNvbGUuZGV2ZWxvcGVyLmRldXRzY2hlLWJvZXJzZS5jb20vKS5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9naXRodWIuY29tL0RldXRzY2hlLUJvZXJzZS9kYmctcGRzXG5Db250YWN0OiBwZHNAZGV1dHNjaGUtYm9lcnNlLmNvbVxuVXBkYXRlRnJlcXVlbmN5OiBUaGUgZGF0YSBpcyB1cGRhdGVkIGV2ZXJ5IG1pbnV0ZSBkdXJpbmcgdHJhZGluZyBob3Vycy5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19kZXV0c2NoZV9ib2Vyc2VfZXVyZXhfcGRzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvZGV1dHNjaGUtYm9lcnNlLXBkcy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19kZXV0c2NoZV9ib2Vyc2VfZXVyZXhfcGRzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2RldXRzY2hlX2JvZXJzZV9ldXJleF9wZHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2RldXRzY2hlX2JvZXJzZV9ldXJleF9wZHMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZGV1dHNjaGVfYm9lcnNlX3hldHJhX3BkcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2RldXRzY2hlX2JvZXJzZV94ZXRyYV9wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZGV1dHNjaGVfYm9lcnNlX3hldHJhX3Bkcy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGRldXRzY2hlLWJvZXJzZS14ZXRyYS1wZHMgQnVja2V0OiBEZXV0c2NoZSBCXHUwMGY2cnNlIFB1YmxpYyBEYXRhc2V0OiBYZXRyYSBQRFMgRmlsZXMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBkZXV0c2NoZS1ib2Vyc2UteGV0cmEtcGRzIGJ1Y2tldCBhdCBodHRwczovL2RldXRzY2hlLWJvZXJzZS14ZXRyYS1wZHMuczMuZXUtY2VudHJhbC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IERldXRzY2hlIEJcdTAwZjZyc2UgUHVibGljIERhdGFzZXRcbk5hbWUyOiBYZXRyYSBQRFMgRmlsZXNcbkRlc2NyaXB0aW9uOiBUaGUgRGV1dHNjaGUgQlx1MDBmNnJzZSBQdWJsaWMgRGF0YSBTZXQgY29uc2lzdHMgb2YgdHJhZGUgZGF0YSBhZ2dyZWdhdGVkIHRvIG9uZSBtaW51dGUgaW50ZXJ2YWxzIGZyb20gdGhlIEV1cmV4IGFuZCBYZXRyYSB0cmFkaW5nIHN5c3RlbXMuIEl0IHByb3ZpZGVzIHRoZSBpbml0aWFsIHByaWNlLCBsb3dlc3QgcHJpY2UsIGhpZ2hlc3QgcHJpY2UsIGZpbmFsIHByaWNlIGFuZCB2b2x1bWUgZm9yIGV2ZXJ5IG1pbnV0ZSBvZiB0aGUgdHJhZGluZyBkYXksIGFuZCBmb3IgZXZlcnkgdHJhZGVhYmxlIHNlY3VyaXR5LiAgSWYgeW91IG5lZWQgaGlnaGVyIHJlc29sdXRpb24gZGF0YSwgaW5jbHVkaW5nIHVudHJhZGVkIHByaWNlIG1vdmVtZW50cywgcGxlYXNlIHJlZmVyIHRvIG91ciBoaXN0b3JpY2FsIG1hcmtldCBkYXRhIHByb2R1Y3QgW2hlcmVdKGh0dHA6Ly93d3cuZXVyZXhjaGFuZ2UuY29tL2V4Y2hhbmdlLWVuL21hcmtldC1kYXRhL2hpc3RvcmljYWwtZGF0YSkuICBBbHNvLCBiZSBzdXJlIHRvIGNoZWNrIG91dCBvdXIgW2RldmVsb3BlcidzIHBvcnRhbF0oaHR0cHM6Ly9jb25zb2xlLmRldmVsb3Blci5kZXV0c2NoZS1ib2Vyc2UuY29tLykuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZ2l0aHViLmNvbS9EZXV0c2NoZS1Cb2Vyc2UvZGJnLXBkc1xuQ29udGFjdDogcGRzQGRldXRzY2hlLWJvZXJzZS5jb21cblVwZGF0ZUZyZXF1ZW5jeTogVGhlIGRhdGEgaXMgdXBkYXRlZCBldmVyeSBtaW51dGUgZHVyaW5nIHRyYWRpbmcgaG91cnMuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZGV1dHNjaGVfYm9lcnNlX3hldHJhX3Bkcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2RldXRzY2hlLWJvZXJzZS1wZHMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZGV1dHNjaGVfYm9lcnNlX3hldHJhX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19kZXV0c2NoZV9ib2Vyc2VfeGV0cmFfcGRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19kZXV0c2NoZV9ib2Vyc2VfeGV0cmFfcGRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2ViaXJkc3RfZGF0YSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2ViaXJkc3RfZGF0YS5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19lYmlyZHN0X2RhdGEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBlYmlyZHN0LWRhdGEgQnVja2V0OiBlQmlyZCBTdGF0dXMgYW5kIFRyZW5kcyBNb2RlbCBSZXN1bHRzOiBTcGVjaWVzIHJlc3VsdHMgZmlsZXMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBlYmlyZHN0LWRhdGEgYnVja2V0IGF0IGh0dHBzOi8vZWJpcmRzdC1kYXRhLnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBlQmlyZCBTdGF0dXMgYW5kIFRyZW5kcyBNb2RlbCBSZXN1bHRzXG5OYW1lMjogU3BlY2llcyByZXN1bHRzIGZpbGVzXG5EZXNjcmlwdGlvbjogVGhlIGVCaXJkIFN0YXR1cyBhbmQgVHJlbmRzIHByb2plY3QgZ2VuZXJhdGVzIGVzdGltYXRlcyBvZiBiaXJkIG9jY3VycmVuY2UgYW5kIGFidW5kYW5jZSBhdCBhIGhpZ2ggc3BhdGlvdGVtcG9yYWwgcmVzb2x1dGlvbi4gVGhpcyBkYXRhc2V0IHJlcHJlc2VudHMgdGhlIHByaW1hcnkgbW9kZWxlZCByZXN1bHRzIGZyb20gdGhlIGFuYWx5c2lzIHdvcmtmbG93IGFuZCBhcmUgZGVzaWduZWQgZm9yIGZ1cnRoZXIgYW5hbHlzaXMsIHN5bnRoZXNpcywgdmlzdWFsaXphdGlvbiwgYW5kIGV4cGxvcmF0aW9uLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2Nvcm5lbGxsYWJvZm9ybml0aG9sb2d5LmdpdGh1Yi5pby9lYmlyZHN0L2FydGljbGVzL2ViaXJkc3QtaW50cm9kdWN0aW9uLmh0bWxcbkNvbnRhY3Q6IGh0dHBzOi8vaGVscC5lYmlyZC5vcmcvY3VzdG9tZXIvZW4vcG9ydGFsL2VtYWlscy9uZXdcbk1hbmFnZWRCeTogW0Nvcm5lbGwgTGFiIG9mIE9ybml0aG9sb2d5XShodHRwczovL3d3dy5iaXJkcy5jb3JuZWxsLmVkdS9ob21lLylcblVwZGF0ZUZyZXF1ZW5jeTogWWVhcmx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZWJpcmRzdF9kYXRhL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvZWJpcmRzdC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19lYmlyZHN0X2RhdGEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfZWJpcmRzdF9kYXRhJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19lYmlyZHN0X2RhdGEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZWxldmF0aW9uX3RpbGVzX3Byb2QiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19lbGV2YXRpb25fdGlsZXNfcHJvZC5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19lbGV2YXRpb25fdGlsZXNfcHJvZC8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGVsZXZhdGlvbi10aWxlcy1wcm9kIEJ1Y2tldDogVGVycmFpbiBUaWxlczogR3JpZGRlZCBlbGV2YXRpb24gdGlsZXMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBlbGV2YXRpb24tdGlsZXMtcHJvZCBidWNrZXQgYXQgaHR0cHM6Ly9lbGV2YXRpb24tdGlsZXMtcHJvZC5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogVGVycmFpbiBUaWxlc1xuTmFtZTI6IEdyaWRkZWQgZWxldmF0aW9uIHRpbGVzXG5EZXNjcmlwdGlvbjogQSBnbG9iYWwgZGF0YXNldCBwcm92aWRpbmcgYmFyZS1lYXJ0aCB0ZXJyYWluIGhlaWdodHMsIHRpbGVkIGZvciBlYXN5IHVzYWdlIGFuZCBwcm92aWRlZCBvbiBTMy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9tYXB6ZW4uY29tL2RvY3VtZW50YXRpb24vdGVycmFpbi10aWxlcy9cbkNvbnRhY3Q6IGh0dHBzOi8vZ2l0aHViLmNvbS90aWxlemVuL2pvZXJkL2lzc3Vlc1xuVXBkYXRlRnJlcXVlbmN5OiBOZXcgZGF0YSBpcyBhZGRlZCBiYXNlZCBvbiBjb21tdW5pdHkgZmVlZGJhY2tcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19lbGV2YXRpb25fdGlsZXNfcHJvZC9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL3RlcnJhaW4tdGlsZXMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZWxldmF0aW9uX3RpbGVzX3Byb2QucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfZWxldmF0aW9uX3RpbGVzX3Byb2Qmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2VsZXZhdGlvbl90aWxlc19wcm9kIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2VuY29kZV9wdWJsaWMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19lbmNvZGVfcHVibGljLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2VuY29kZV9wdWJsaWMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBlbmNvZGUtcHVibGljIEJ1Y2tldDogRW5jeWNsb3BlZGlhIG9mIEROQSBFbGVtZW50cyAoRU5DT0RFKTogUmVsZWFzZWQgYW5kIGFyY2hpdmVkIEVOQ09ERSBkYXRhIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgZW5jb2RlLXB1YmxpYyBidWNrZXQgYXQgaHR0cHM6Ly9lbmNvZGUtcHVibGljLnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBFbmN5Y2xvcGVkaWEgb2YgRE5BIEVsZW1lbnRzIChFTkNPREUpXG5OYW1lMjogUmVsZWFzZWQgYW5kIGFyY2hpdmVkIEVOQ09ERSBkYXRhXG5EZXNjcmlwdGlvbjogVGhlIEVuY3ljbG9wZWRpYSBvZiBETkEgRWxlbWVudHMgKEVOQ09ERSkgQ29uc29ydGl1bSBpcyBhbiBpbnRlcm5hdGlvbmFsIGNvbGxhYm9yYXRpb24gb2YgcmVzZWFyY2ggZ3JvdXBzIGZ1bmRlZCBieSB0aGUgTmF0aW9uYWwgSHVtYW4gR2Vub21lIFJlc2VhcmNoIEluc3RpdHV0ZSAoTkhHUkkpLiBUaGUgZ29hbCBvZiBFTkNPREUgaXMgdG8gYnVpbGQgYSBjb21wcmVoZW5zaXZlIHBhcnRzIGxpc3Qgb2YgZnVuY3Rpb25hbCBlbGVtZW50cyBpbiB0aGUgaHVtYW4gZ2Vub21lLCBpbmNsdWRpbmcgZWxlbWVudHMgdGhhdCBhY3QgYXQgdGhlIHByb3RlaW4gYW5kIFJOQSBsZXZlbHMsIGFuZCByZWd1bGF0b3J5IGVsZW1lbnRzIHRoYXQgY29udHJvbCBjZWxscyBhbmQgY2lyY3Vtc3RhbmNlcyBpbiB3aGljaCBhIGdlbmUgaXMgYWN0aXZlLiBFTkNPREUgaW52ZXN0aWdhdG9ycyBlbXBsb3kgYSB2YXJpZXR5IG9mIGFzc2F5cyBhbmQgbWV0aG9kcyB0byBpZGVudGlmeSBmdW5jdGlvbmFsIGVsZW1lbnRzLiBUaGUgZGlzY292ZXJ5IGFuZCBhbm5vdGF0aW9uIG9mIGdlbmUgZWxlbWVudHMgaXMgYWNjb21wbGlzaGVkIHByaW1hcmlseSBieSBzZXF1ZW5jaW5nIGEgZGl2ZXJzZSByYW5nZSBvZiBSTkEgc291cmNlcywgY29tcGFyYXRpdmUgZ2Vub21pY3MsIGludGVncmF0aXZlIGJpb2luZm9ybWF0aWMgbWV0aG9kcywgYW5kIGh1bWFuIGN1cmF0aW9uLiBSZWd1bGF0b3J5IGVsZW1lbnRzIGFyZSB0eXBpY2FsbHkgaW52ZXN0aWdhdGVkIHRocm91Z2ggRE5BIGh5cGVyc2Vuc2l0aXZpdHkgYXNzYXlzLCBhc3NheXMgb2YgRE5BIG1ldGh5bGF0aW9uLCBhbmQgaW1tdW5vcHJlY2lwaXRhdGlvbiAoSVApIG9mIHByb3RlaW5zIHRoYXQgaW50ZXJhY3Qgd2l0aCBETkEgYW5kIFJOQSwgaS5lLiwgbW9kaWZpZWQgaGlzdG9uZXMsIHRyYW5zY3JpcHRpb24gZmFjdG9ycywgY2hyb21hdGluIHJlZ3VsYXRvcnMsIGFuZCBSTkEtYmluZGluZyBwcm90ZWlucywgZm9sbG93ZWQgYnkgc2VxdWVuY2luZy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly93d3cuZW5jb2RlcHJvamVjdC5vcmdcbkNvbnRhY3Q6IGVuY29kZS1oZWxwQGxpc3RzLnN0YW5mb3JkLmVkdVxuTWFuYWdlZEJ5OiBFTkNPREUgRGF0YSBDb29yZGluYXRpbmcgQ2VudGVyXG5VcGRhdGVGcmVxdWVuY3k6IERhaWx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZW5jb2RlX3B1YmxpYy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2VuY29kZS1wcm9qZWN0LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2VuY29kZV9wdWJsaWMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfZW5jb2RlX3B1YmxpYyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZW5jb2RlX3B1YmxpYyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19lcGFfcnNlaV9wZHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19lcGFfcnNlaV9wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZXBhX3JzZWlfcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgZXBhLXJzZWktcGRzIEJ1Y2tldDogRVBBIFJpc2stU2NyZWVuaW5nIEVudmlyb25tZW50YWwgSW5kaWNhdG9yczogUlNFSSBNaWNyb2RhdGEiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBlcGEtcnNlaS1wZHMgYnVja2V0IGF0IGh0dHBzOi8vZXBhLXJzZWktcGRzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBFUEEgUmlzay1TY3JlZW5pbmcgRW52aXJvbm1lbnRhbCBJbmRpY2F0b3JzXG5OYW1lMjogUlNFSSBNaWNyb2RhdGFcbkRlc2NyaXB0aW9uOiBEZXRhaWxlZCBhaXIgbW9kZWwgcmVzdWx0cyBmcm9tIEVQQVx1MjAxOXMgUmlzay1TY3JlZW5pbmcgRW52aXJvbm1lbnRhbCBJbmRpY2F0b3JzIChSU0VJKSBtb2RlbC5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLm9wZW5kYXRhLmF3cy9lcGEtcnNlaS1wZHMvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IGh0dHBzOi8vd3d3LmVwYS5nb3YvcnNlaS9mb3Jtcy9jb250YWN0LXVzLWFib3V0LXJzZWktbW9kZWxcblVwZGF0ZUZyZXF1ZW5jeTogVXBkYXRlZCBpbmZyZXF1ZW50bHlcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19lcGFfcnNlaV9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9lcGEtcnNlaS1wZHMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZXBhX3JzZWlfcGRzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2VwYV9yc2VpX3BkcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZXBhX3JzZWlfcGRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2VyYTVfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZXJhNV9wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZXJhNV9wZHMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBlcmE1LXBkcyBCdWNrZXQ6IEVDTVdGIEVSQTUgUmVhbmFseXNpczogRVJBNSBSZWFuYWx5c2lzIE5ldENERiA0IGZpbGVzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgZXJhNS1wZHMgYnVja2V0IGF0IGh0dHBzOi8vZXJhNS1wZHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IEVDTVdGIEVSQTUgUmVhbmFseXNpc1xuTmFtZTI6IEVSQTUgUmVhbmFseXNpcyBOZXRDREYgNCBmaWxlc1xuRGVzY3JpcHRpb246IEVSQTUgaXMgdGhlIGZpZnRoIGdlbmVyYXRpb24gb2YgRUNNV0YgYXRtb3NwaGVyaWMgcmVhbmFseXNlcyBvZiB0aGUgZ2xvYmFsIGNsaW1hdGUsIGFuZCB0aGUgZmlyc3QgcmVhbmFseXNpcyBwcm9kdWNlZCBhcyBhbiBvcGVyYXRpb25hbCBzZXJ2aWNlLiBJdCB1dGlsaXplcyB0aGUgYmVzdCBhdmFpbGFibGUgb2JzZXJ2YXRpb24gZGF0YSBmcm9tIHNhdGVsbGl0ZXMgYW5kIGluLXNpdHUgc3RhdGlvbnMsIHdoaWNoIGFyZSBhc3NpbWlsYXRlZCBhbmQgcHJvY2Vzc2VkIHVzaW5nIEVDTVdGJ3MgSW50ZWdyYXRlZCBGb3JlY2FzdCBTeXN0ZW0gKElGUykgQ3ljbGUgNDFyMi4gVGhlIGRhdGFzZXQgcHJvdmlkZXMgYWxsIGVzc2VudGlhbCBhdG1vc3BoZXJpYyBtZXRlb3JvbG9naWNhbCBwYXJhbWV0ZXJzIGxpa2UsIGJ1dCBub3QgbGltaXRlZCB0bywgYWlyIHRlbXBlcmF0dXJlLCBwcmVzc3VyZSBhbmQgd2luZCBhdCBkaWZmZXJlbnQgYWx0aXR1ZGVzLCBhbG9uZyB3aXRoIHN1cmZhY2UgcGFyYW1ldGVycyBsaWtlIHJhaW5mYWxsLCBzb2lsIG1vaXN0dXJlIGNvbnRlbnQgYW5kIHNlYSBwYXJhbWV0ZXJzIGxpa2Ugc2VhLXN1cmZhY2UgdGVtcGVyYXR1cmUgYW5kIHdhdmUgaGVpZ2h0LiBFUkE1IHByb3ZpZGVzIGRhdGEgYXQgYSBjb25zaWRlcmFibHkgaGlnaGVyIHNwYXRpYWwgYW5kIHRlbXBvcmFsIHJlc29sdXRpb24gdGhhbiBpdHMgbGVnYWN5IGNvdW50ZXJwYXJ0IEVSQS1JbnRlcmltLiBFUkE1IGNvbnNpc3RzIG9mIGhpZ2ggcmVzb2x1dGlvbiB2ZXJzaW9uIHdpdGggMzEga20gaG9yaXpvbnRhbCByZXNvbHV0aW9uLCBhbmQgYSByZWR1Y2VkIHJlc29sdXRpb24gZW5zZW1ibGUgdmVyc2lvbiB3aXRoIDEwIG1lbWJlcnMuIEl0IGlzIGN1cnJlbnRseSBhdmFpbGFibGUgc2luY2UgMjAwOCwgYnV0IHdpbGwgYmUgY29udGludW91c2x5IGV4dGVuZGVkIGJhY2t3YXJkcywgZmlyc3QgdW50aWwgMTk3OSBhbmQgdGhlbiB0byAxOTUwLiBMZWFybiBtb3JlIGFib3V0IEVSQTUgaW4gSm9uIE9sYXVzb24ncyBwYXBlciBbRVJBNTogVGhlIG5ldyBjaGFtcGlvbiBvZiB3aW5kIHBvd2VyIG1vZGVsbGluZz9dKGh0dHBzOi8vd3d3LnJlc2VhcmNoZ2F0ZS5uZXQvcHVibGljYXRpb24vMzIwMDg0MTE5X0VSQTVfVGhlX25ld19jaGFtcGlvbl9vZl93aW5kX3Bvd2VyX21vZGVsbGluZykuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZ2l0aHViLmNvbS9wbGFuZXQtb3Mvbm90ZWJvb2tzL2Jsb2IvbWFzdGVyL2F3cy9lcmE1LXBkcy5tZFxuQ29udGFjdDogZGF0YWh1YkBpbnRlcnRydXN0LmNvbVxuVXBkYXRlRnJlcXVlbmN5OiBNb250aGx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZXJhNV9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9lY213Zi1lcmE1LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2VyYTVfcGRzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2VyYTVfcGRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19lcmE1X3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19mYXN0X2FpX2NvY28iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19mYXN0X2FpX2NvY28uZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZmFzdF9haV9jb2NvLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgZmFzdC1haS1jb2NvIEJ1Y2tldDogQ09DTyAtIENvbW1vbiBPYmplY3RzIGluIENvbnRleHQgLSBmYXN0LmFpIGRhdGFzZXRzOiBEYXRhc2V0cyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGZhc3QtYWktY29jbyBidWNrZXQgYXQgaHR0cHM6Ly9mYXN0LWFpLWNvY28uczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IENPQ08gLSBDb21tb24gT2JqZWN0cyBpbiBDb250ZXh0IC0gZmFzdC5haSBkYXRhc2V0c1xuTmFtZTI6IERhdGFzZXRzXG5EZXNjcmlwdGlvbjogQ09DTyBpcyBhIGxhcmdlLXNjYWxlIG9iamVjdCBkZXRlY3Rpb24sIHNlZ21lbnRhdGlvbiwgYW5kIGNhcHRpb25pbmcgZGF0YXNldC4gVGhpcyBpcyBwYXJ0IG9mIHRoZSBmYXN0LmFpIGRhdGFzZXRzIGNvbGxlY3Rpb24gaG9zdGVkIGJ5IEFXUyBmb3IgY29udmVuaWVuY2Ugb2YgZmFzdC5haSBzdHVkZW50cy4gSWYgeW91IHVzZSB0aGlzIGRhdGFzZXQgaW4geW91ciByZXNlYXJjaCBwbGVhc2UgY2l0ZSBhclhpdjoxNDA1LjAzMTIgW2NzLkNWXS5cblxuRG9jdW1lbnRhdGlvbjogaHR0cDovL2NvdXJzZS5mYXN0LmFpL2RhdGFzZXRzXG5Db250YWN0OiBpbmZvQGZhc3QuYWlcbk1hbmFnZWRCeTogW2Zhc3QuYWldKGh0dHA6Ly93d3cuZmFzdC5haS8pXG5VcGRhdGVGcmVxdWVuY3k6IEFzIHJlcXVpcmVkXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZmFzdF9haV9jb2NvL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvZmFzdC1haS1jb2NvLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2Zhc3RfYWlfY29jby5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19mYXN0X2FpX2NvY28mc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2Zhc3RfYWlfY29jbyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19mYXN0X2FpX2ltYWdlY2xhcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2Zhc3RfYWlfaW1hZ2VjbGFzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2Zhc3RfYWlfaW1hZ2VjbGFzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgZmFzdC1haS1pbWFnZWNsYXMgQnVja2V0OiBJbWFnZSBjbGFzc2lmaWNhdGlvbiAtIGZhc3QuYWkgZGF0YXNldHM6IERhdGFzZXRzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgZmFzdC1haS1pbWFnZWNsYXMgYnVja2V0IGF0IGh0dHBzOi8vZmFzdC1haS1pbWFnZWNsYXMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IEltYWdlIGNsYXNzaWZpY2F0aW9uIC0gZmFzdC5haSBkYXRhc2V0c1xuTmFtZTI6IERhdGFzZXRzXG5EZXNjcmlwdGlvbjogU29tZSBvZiB0aGUgbW9zdCBpbXBvcnRhbnQgZGF0YXNldHMgZm9yIGltYWdlIGNsYXNzaWZpY2F0aW9uIHJlc2VhcmNoLCBpbmNsdWRpbmcgQ0lGQVIgMTAgYW5kIDEwMCwgQ2FsdGVjaCAxMDEsIE1OSVNULCBGb29kLTEwMSwgT3hmb3JkLTEwMi1GbG93ZXJzLCBPeGZvcmQtSUlJVC1QZXRzLCBhbmQgU3RhbmZvcmQtQ2Fycy4gIFRoaXMgaXMgcGFydCBvZiB0aGUgZmFzdC5haSBkYXRhc2V0cyBjb2xsZWN0aW9uIGhvc3RlZCBieSBBV1MgZm9yIGNvbnZlbmllbmNlIG9mIGZhc3QuYWkgc3R1ZGVudHMuIFNlZSBkb2N1bWVudGF0aW9uIGxpbmsgZm9yIGNpdGF0aW9uIGFuZCBsaWNlbnNlIGRldGFpbHMgZm9yIGVhY2ggZGF0YXNldC5cblxuRG9jdW1lbnRhdGlvbjogaHR0cDovL2NvdXJzZS5mYXN0LmFpL2RhdGFzZXRzXG5Db250YWN0OiBpbmZvQGZhc3QuYWlcbk1hbmFnZWRCeTogW2Zhc3QuYWldKGh0dHA6Ly93d3cuZmFzdC5haS8pXG5VcGRhdGVGcmVxdWVuY3k6IEFzIHJlcXVpcmVkXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZmFzdF9haV9pbWFnZWNsYXMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9mYXN0LWFpLWltYWdlY2xhcy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19mYXN0X2FpX2ltYWdlY2xhcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19mYXN0X2FpX2ltYWdlY2xhcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZmFzdF9haV9pbWFnZWNsYXMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZmFzdF9haV9pbWFnZWxvY2FsIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZmFzdF9haV9pbWFnZWxvY2FsLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2Zhc3RfYWlfaW1hZ2Vsb2NhbC8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGZhc3QtYWktaW1hZ2Vsb2NhbCBCdWNrZXQ6IEltYWdlIGxvY2FsaXphdGlvbiAgLSBmYXN0LmFpIGRhdGFzZXRzOiBEYXRhc2V0cyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGZhc3QtYWktaW1hZ2Vsb2NhbCBidWNrZXQgYXQgaHR0cHM6Ly9mYXN0LWFpLWltYWdlbG9jYWwuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IEltYWdlIGxvY2FsaXphdGlvbiAgLSBmYXN0LmFpIGRhdGFzZXRzXG5OYW1lMjogRGF0YXNldHNcbkRlc2NyaXB0aW9uOiBTb21lIG9mIHRoZSBtb3N0IGltcG9ydGFudCBkYXRhc2V0cyBmb3IgaW1hZ2UgbG9jYWxpemF0aW9uICByZXNlYXJjaCwgaW5jbHVkaW5nIENhbXZpZCBhbmQgUEFTQ0FMIFZPQyAoMjAwNyBhbmQgMjAxMikuIFRoaXMgaXMgcGFydCBvZiB0aGUgZmFzdC5haSBkYXRhc2V0cyBjb2xsZWN0aW9uIGhvc3RlZCBieSBBV1MgZm9yIGNvbnZlbmllbmNlIG9mIGZhc3QuYWkgc3R1ZGVudHMuIFNlZSBkb2N1bWVudGF0aW9uIGxpbmsgZm9yIGNpdGF0aW9uIGFuZCBsaWNlbnNlIGRldGFpbHMgZm9yIGVhY2ggZGF0YXNldC5cblxuRG9jdW1lbnRhdGlvbjogaHR0cDovL2NvdXJzZS5mYXN0LmFpL2RhdGFzZXRzXG5Db250YWN0OiBpbmZvQGZhc3QuYWlcbk1hbmFnZWRCeTogW2Zhc3QuYWldKGh0dHA6Ly93d3cuZmFzdC5haS8pXG5VcGRhdGVGcmVxdWVuY3k6IEFzIHJlcXVpcmVkXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZmFzdF9haV9pbWFnZWxvY2FsL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvZmFzdC1haS1pbWFnZWxvY2FsLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2Zhc3RfYWlfaW1hZ2Vsb2NhbC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19mYXN0X2FpX2ltYWdlbG9jYWwmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2Zhc3RfYWlfaW1hZ2Vsb2NhbCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19mYXN0X2FpX25scCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2Zhc3RfYWlfbmxwLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2Zhc3RfYWlfbmxwLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgZmFzdC1haS1ubHAgQnVja2V0OiBOTFAgLSBmYXN0LmFpIGRhdGFzZXRzOiBEYXRhc2V0cyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGZhc3QtYWktbmxwIGJ1Y2tldCBhdCBodHRwczovL2Zhc3QtYWktbmxwLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBOTFAgLSBmYXN0LmFpIGRhdGFzZXRzXG5OYW1lMjogRGF0YXNldHNcbkRlc2NyaXB0aW9uOiBTb21lIG9mIHRoZSBtb3N0IGltcG9ydGFudCBkYXRhc2V0cyBmb3IgTkxQLCB3aXRoIGEgZm9jdXMgb24gY2xhc3NpZmljYXRpb24sIGluY2x1ZGluZyBJTURiLCBBRy1OZXdzLCBBbWF6b24gUmV2aWV3cyAocG9sYXJpdHkgYW5kIGZ1bGwpLCBZZWxwIFJldmlld3MgKHBvbGFyaXR5IGFuZCBmdWxsKSwgRGJwZWRpYSwgU29nb3UgTmV3cyAoUGlueWluKSwgWWFob28gQW5zd2VycywgV2lraXRleHQgMiBhbmQgV2lraXRleHQgMTAzLCBhbmQgQUNMLTIwMTAgRnJlbmNoLUVuZ2xpc2ggMTBeOSBjb3JwdXMuICBUaGlzIGlzIHBhcnQgb2YgdGhlIGZhc3QuYWkgZGF0YXNldHMgY29sbGVjdGlvbiBob3N0ZWQgYnkgQVdTIGZvciBjb252ZW5pZW5jZSBvZiBmYXN0LmFpIHN0dWRlbnRzLiBTZWUgZG9jdW1lbnRhdGlvbiBsaW5rIGZvciBjaXRhdGlvbiBhbmQgbGljZW5zZSBkZXRhaWxzIGZvciBlYWNoIGRhdGFzZXQuXG5cbkRvY3VtZW50YXRpb246IGh0dHA6Ly9jb3Vyc2UuZmFzdC5haS9kYXRhc2V0c1xuQ29udGFjdDogaW5mb0BmYXN0LmFpXG5NYW5hZ2VkQnk6IFtmYXN0LmFpXShodHRwOi8vd3d3LmZhc3QuYWkvKVxuVXBkYXRlRnJlcXVlbmN5OiBBcyByZXF1aXJlZFxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2Zhc3RfYWlfbmxwL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvZmFzdC1haS1ubHAvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZmFzdF9haV9ubHAucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfZmFzdF9haV9ubHAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2Zhc3RfYWlfbmxwIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2ZtaV9vcGVuZGF0YV9yY3JoaXJsYW1fcHJlc3N1cmVfZ3JpYiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2ZtaV9vcGVuZGF0YV9yY3JoaXJsYW1fcHJlc3N1cmVfZ3JpYi5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19mbWlfb3BlbmRhdGFfcmNyaGlybGFtX3ByZXNzdXJlX2dyaWIvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBmbWktb3BlbmRhdGEtcmNyaGlybGFtLXByZXNzdXJlLWdyaWIgQnVja2V0OiBISVJMQU0gV2VhdGhlciBNb2RlbDogUHJlc3N1cmUgR1JJQiBmaWxlcyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGZtaS1vcGVuZGF0YS1yY3JoaXJsYW0tcHJlc3N1cmUtZ3JpYiBidWNrZXQgYXQgaHR0cHM6Ly9mbWktb3BlbmRhdGEtcmNyaGlybGFtLXByZXNzdXJlLWdyaWIuczMuZXUtd2VzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IEhJUkxBTSBXZWF0aGVyIE1vZGVsXG5OYW1lMjogUHJlc3N1cmUgR1JJQiBmaWxlc1xuRGVzY3JpcHRpb246IEhJUkxBTSAoSGlnaCBSZXNvbHV0aW9uIExpbWl0ZWQgQXJlYSBNb2RlbCkgaXMgYW4gb3BlcmF0aW9uYWwgc3lub3B0aWMgYW5kIG1lc29zY2FsZSB3ZWF0aGVyIHByZWRpY3Rpb24gbW9kZWwgbWFuYWdlZCBieSB0aGUgRmlubmlzaCBNZXRlb3JvbG9naWNhbCBJbnN0aXR1dGUuXG5cbkRvY3VtZW50YXRpb246IGh0dHA6Ly9lbi5pbG1hdGlldGVlbmxhaXRvcy5maS9vcGVuLWRhdGEtb24tYXdzLXMzXG5Db250YWN0OiBhdm9pbi1kYXRhQGZtaS5maVxuVXBkYXRlRnJlcXVlbmN5OiBUaGUgZGF0YSBpcyB1cGRhdGVkIGZvdXIgdGltZXMgYSBkYXkgd2l0aCBhbmFseXNpcyBob3VycyAwMCwgMDYsIDEyIGFuZCAxOC4gQ29ycmVzcG9uZGluZyBtb2RlbCBydW5zIGFyZSBhdmFpbGFibGUgcm91Z2hseSBmaXZlIGhvdXJzIGFmdGVyIGFuYWx5c2lzIHRpbWUgKH4gYWZ0ZXIgbW9kZWwgcnVuIGhhcyBzdGFydGVkKS5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19mbWlfb3BlbmRhdGFfcmNyaGlybGFtX3ByZXNzdXJlX2dyaWIvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9oaXJsYW0vIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZm1pX29wZW5kYXRhX3JjcmhpcmxhbV9wcmVzc3VyZV9ncmliLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2ZtaV9vcGVuZGF0YV9yY3JoaXJsYW1fcHJlc3N1cmVfZ3JpYiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZm1pX29wZW5kYXRhX3JjcmhpcmxhbV9wcmVzc3VyZV9ncmliIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2ZtaV9vcGVuZGF0YV9yY3JoaXJsYW1fc3VyZmFjZV9ncmliIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZm1pX29wZW5kYXRhX3JjcmhpcmxhbV9zdXJmYWNlX2dyaWIuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZm1pX29wZW5kYXRhX3JjcmhpcmxhbV9zdXJmYWNlX2dyaWIvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBmbWktb3BlbmRhdGEtcmNyaGlybGFtLXN1cmZhY2UtZ3JpYiBCdWNrZXQ6IEhJUkxBTSBXZWF0aGVyIE1vZGVsOiBTdXJmYWNlIEdSSUIgZmlsZXMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBmbWktb3BlbmRhdGEtcmNyaGlybGFtLXN1cmZhY2UtZ3JpYiBidWNrZXQgYXQgaHR0cHM6Ly9mbWktb3BlbmRhdGEtcmNyaGlybGFtLXN1cmZhY2UtZ3JpYi5zMy5ldS13ZXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogSElSTEFNIFdlYXRoZXIgTW9kZWxcbk5hbWUyOiBTdXJmYWNlIEdSSUIgZmlsZXNcbkRlc2NyaXB0aW9uOiBISVJMQU0gKEhpZ2ggUmVzb2x1dGlvbiBMaW1pdGVkIEFyZWEgTW9kZWwpIGlzIGFuIG9wZXJhdGlvbmFsIHN5bm9wdGljIGFuZCBtZXNvc2NhbGUgd2VhdGhlciBwcmVkaWN0aW9uIG1vZGVsIG1hbmFnZWQgYnkgdGhlIEZpbm5pc2ggTWV0ZW9yb2xvZ2ljYWwgSW5zdGl0dXRlLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwOi8vZW4uaWxtYXRpZXRlZW5sYWl0b3MuZmkvb3Blbi1kYXRhLW9uLWF3cy1zM1xuQ29udGFjdDogYXZvaW4tZGF0YUBmbWkuZmlcblVwZGF0ZUZyZXF1ZW5jeTogVGhlIGRhdGEgaXMgdXBkYXRlZCBmb3VyIHRpbWVzIGEgZGF5IHdpdGggYW5hbHlzaXMgaG91cnMgMDAsIDA2LCAxMiBhbmQgMTguIENvcnJlc3BvbmRpbmcgbW9kZWwgcnVucyBhcmUgYXZhaWxhYmxlIHJvdWdobHkgZml2ZSBob3VycyBhZnRlciBhbmFseXNpcyB0aW1lICh+IGFmdGVyIG1vZGVsIHJ1biBoYXMgc3RhcnRlZCkuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZm1pX29wZW5kYXRhX3JjcmhpcmxhbV9zdXJmYWNlX2dyaWIvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9oaXJsYW0vIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZm1pX29wZW5kYXRhX3JjcmhpcmxhbV9zdXJmYWNlX2dyaWIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfZm1pX29wZW5kYXRhX3JjcmhpcmxhbV9zdXJmYWNlX2dyaWImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2ZtaV9vcGVuZGF0YV9yY3JoaXJsYW1fc3VyZmFjZV9ncmliIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2dhdGtfdGVzdF9kYXRhIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZ2F0a190ZXN0X2RhdGEuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZ2F0a190ZXN0X2RhdGEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBnYXRrLXRlc3QtZGF0YSBCdWNrZXQ6IEdBVEsgVGVzdCBEYXRhOiBUaGUgY29udGVudHMgb2YgdGhpcyBkYXRhc2V0IGlzIG11bHRpLW1vZGFsIGFuZCBpbmNsdWRlcyB2YXJpb3VzIHR5cGVzIG9mIGdlbm9taWMgZGF0YSwgc3VjaCBhcyBDUkFNcy9CQU1zLCB3aG9sZS1nZW5vbWUgc2VxdWVuY2luZyAoV0dTKSBkYXRhLCBleG9tZSBkYXRhLCBSTkEgZGF0YSwgZXRjLiIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGdhdGstdGVzdC1kYXRhIGJ1Y2tldCBhdCBodHRwczovL2dhdGstdGVzdC1kYXRhLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBHQVRLIFRlc3QgRGF0YVxuTmFtZTI6IFRoZSBjb250ZW50cyBvZiB0aGlzIGRhdGFzZXQgaXMgbXVsdGktbW9kYWwgYW5kIGluY2x1ZGVzIHZhcmlvdXMgdHlwZXMgb2YgZ2Vub21pYyBkYXRhLCBzdWNoIGFzIENSQU1zL0JBTXMsIHdob2xlLWdlbm9tZSBzZXF1ZW5jaW5nIChXR1MpIGRhdGEsIGV4b21lIGRhdGEsIFJOQSBkYXRhLCBldGMuXG5EZXNjcmlwdGlvbjogVGhlIEdBVEsgdGVzdCBkYXRhIHJlc291cmNlIGJ1bmRsZSBpcyBhIGNvbGxlY3Rpb24gb2YgZmlsZXMgZm9yIHJlc2VxdWVuY2luZyBodW1hbiBnZW5vbWljIGRhdGEgd2l0aCB0aGUgQnJvYWQgSW5zdGl0dXRlJ3MgW0dlbm9tZSBBbmFseXNpcyBUb29sa2l0IChHQVRLKV0oaHR0cHM6Ly9zb2Z0d2FyZS5icm9hZGluc3RpdHV0ZS5vcmcvZ2F0ay8pLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL3MzLmFtYXpvbmF3cy5jb20vZ2F0ay10ZXN0LWRhdGEvZ2F0ay10ZXN0LWRhdGEtcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IGh0dHBzOi8vZ2F0a2ZvcnVtcy5icm9hZGluc3RpdHV0ZS5vcmcvZ2F0a1xuTWFuYWdlZEJ5OiBCcm9hZCBJbnN0aXR1dGVcblVwZGF0ZUZyZXF1ZW5jeTogRXZlcnkgMyBtb250aHNcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19nYXRrX3Rlc3RfZGF0YS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2dhdGstdGVzdC1kYXRhLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2dhdGtfdGVzdF9kYXRhLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2dhdGtfdGVzdF9kYXRhJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19nYXRrX3Rlc3RfZGF0YSJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19nZGVsdF9vcGVuX2RhdGEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19nZGVsdF9vcGVuX2RhdGEuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfZ2RlbHRfb3Blbl9kYXRhLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgZ2RlbHQtb3Blbi1kYXRhIEJ1Y2tldDogR2xvYmFsIERhdGFiYXNlIG9mIEV2ZW50cywgTGFuZ3VhZ2UgYW5kIFRvbmUgKEdERUxUKTogUHJvamVjdCBkYXRhIGZpbGVzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgZ2RlbHQtb3Blbi1kYXRhIGJ1Y2tldCBhdCBodHRwczovL2dkZWx0LW9wZW4tZGF0YS5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogR2xvYmFsIERhdGFiYXNlIG9mIEV2ZW50cywgTGFuZ3VhZ2UgYW5kIFRvbmUgKEdERUxUKVxuTmFtZTI6IFByb2plY3QgZGF0YSBmaWxlc1xuRGVzY3JpcHRpb246IFRoaXMgcHJvamVjdCBtb25pdG9ycyB0aGUgd29ybGQncyBicm9hZGNhc3QsIHByaW50LCBhbmQgd2ViIG5ld3MgZnJvbSBuZWFybHkgZXZlcnkgY29ybmVyIG9mIGV2ZXJ5IGNvdW50cnkgaW4gb3ZlciAxMDAgbGFuZ3VhZ2VzIGFuZCBpZGVudGlmaWVzIHRoZSBwZW9wbGUsIGxvY2F0aW9ucywgb3JnYW5pemF0aW9ucywgY291bnRzLCB0aGVtZXMsIHNvdXJjZXMsIGVtb3Rpb25zLCBxdW90ZXMsIGltYWdlcyBhbmQgZXZlbnRzIGRyaXZpbmcgb3VyIGdsb2JhbCBzb2NpZXR5IGV2ZXJ5IHNlY29uZCBvZiBldmVyeSBkYXkuXG5cbkRvY3VtZW50YXRpb246IGh0dHA6Ly93d3cuZ2RlbHRwcm9qZWN0Lm9yZy9cbkNvbnRhY3Q6IGh0dHA6Ly93d3cuZ2RlbHRwcm9qZWN0Lm9yZy9hYm91dC5odG1sI2NvbnRhY3RcblVwZGF0ZUZyZXF1ZW5jeTogTm90IGN1cnJlbnRseSBiZWluZyB1cGRhdGVkXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZ2RlbHRfb3Blbl9kYXRhL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvZ2RlbHQvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZ2RlbHRfb3Blbl9kYXRhLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2dkZWx0X29wZW5fZGF0YSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZ2RlbHRfb3Blbl9kYXRhIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2dlbm9tZWFyayIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2dlbm9tZWFyay5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19nZW5vbWVhcmsvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBnZW5vbWVhcmsgQnVja2V0OiBHZW5vbWUgQXJrIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgZ2Vub21lYXJrIGJ1Y2tldCBhdCBodHRwczovL2dlbm9tZWFyay5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogR2Vub21lIEFya1xuTmFtZTI6IGh0dHBzOi8vdmdwLmdpdGh1Yi5pb1xuRGVzY3JpcHRpb246IFRoZSBHZW5vbWUgQXJrIGhvc3RzIGdlbm9taWMgaW5mb3JtYXRpb24gZm9yIHRoZSBWZXJ0ZWJyYXRlIEdlbm9tZXMgUHJvamVjdCAoVkdQKSBhbmQgb3RoZXIgcmVsYXRlZCBwcm9qZWN0cy4gVGhlIFZHUCBpcyBhbiBpbnRlcm5hdGlvbmFsIGNvbGxhYm9yYXRpb24gdGhhdCBhaW1zIHRvIGdlbmVyYXRlIGNvbXBsZXRlIGFuZCBuZWFyIGVycm9yLWZyZWUgcmVmZXJlbmNlIGdlbm9tZXMgZm9yIGFsbCBleHRhbnQgdmVydGVicmF0ZSBzcGVjaWVzLiBUaGVzZSBnZW5vbWVzIHdpbGwgYmUgdXNlZCB0byBhZGRyZXNzIGZ1bmRhbWVudGFsIHF1ZXN0aW9ucyBpbiBiaW9sb2d5IGFuZCBkaXNlYXNlLCB0byBpZGVudGlmeSBzcGVjaWVzIG1vc3QgZ2VuZXRpY2FsbHkgYXQgcmlzayBmb3IgZXh0aW5jdGlvbiwgYW5kIHRvIHByZXNlcnZlIGdlbmV0aWMgaW5mb3JtYXRpb24gb2YgbGlmZS5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly92ZXJ0ZWJyYXRlZ2Vub21lc3Byb2plY3Qub3JnXG5Db250YWN0OiBFcmljaCBKYXJ2aXMgPGVqYXJ2aXNAcm9ja2VmZWxsZXIuZWR1PlxuTWFuYWdlZEJ5OiBUaGUgR2Vub21lMTBLIGNvbW11bml0eSBvZiBzY2llbnRpc3RzXG5VcGRhdGVGcmVxdWVuY3k6IERhdGEgd2lsbCBiZSBjb250aW51YWxseSB1cGRhdGVkIGFzIGl0IGlzIGdlbmVyYXRlZC5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19nZW5vbWVhcmsvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9nZW5vbWVhcmsvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZ2Vub21lYXJrLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2dlbm9tZWFyayZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZ2Vub21lYXJrIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2dpYWIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19naWFiLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2dpYWIvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBnaWFiIEJ1Y2tldDogR2Vub21lIGluIGEgQm90dGxlIG9uIEFXUzogTGF0ZXN0IGRhdGEiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBnaWFiIGJ1Y2tldCBhdCBodHRwczovL2dpYWIuczMudXMtd2VzdC0yLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IEdlbm9tZSBpbiBhIEJvdHRsZSBvbiBBV1Ncbk5hbWUyOiBMYXRlc3QgZGF0YVxuRGVzY3JpcHRpb246IFNldmVyYWwgcmVmZXJlbmNlIGdlbm9tZXMgdG8gZW5hYmxlIHRyYW5zbGF0aW9uIG9mIHdob2xlIGh1bWFuIGdlbm9tZSBzZXF1ZW5jaW5nIHRvIGNsaW5pY2FsIHByYWN0aWNlLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL2dpYWIvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IGh0dHA6Ly9nZW5vbWVpbmFib3R0bGUub3JnL1xuVXBkYXRlRnJlcXVlbmN5OiBOZXcgZGF0YSBhcmUgYWRkZWQgYXMgc29vbiBhcyB0aGV5IGFyZSBhdmFpbGFibGUuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZ2lhYi9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2dpYWIvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfZ2lhYi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19naWFiJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19naWFiIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2dtc2RhdGEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19nbXNkYXRhLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2dtc2RhdGEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBnbXNkYXRhIEJ1Y2tldDogVGhlIEdlbm9tZSBNb2RlbGluZyBTeXN0ZW0iLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBnbXNkYXRhIGJ1Y2tldCBhdCBodHRwczovL2dtc2RhdGEuczMudXMtd2VzdC0yLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IFRoZSBHZW5vbWUgTW9kZWxpbmcgU3lzdGVtXG5OYW1lMjogaHR0cHM6Ly9nbXNkYXRhLnMzLmFtYXpvbmF3cy5jb20vSU5ERVguaHRtbFxuRGVzY3JpcHRpb246IFRoZSBHZW5vbWUgSW5zdGl0dXRlIGF0IFdhc2hpbmd0b24gVW5pdmVyc2l0eSBoYXMgZGV2ZWxvcGVkIGEgaGlnaC10aHJvdWdocHV0LCBmYXVsdC10b2xlcmFudCBhbmFseXNpcyBpbmZvcm1hdGlvbiBtYW5hZ2VtZW50IHN5c3RlbSBjYWxsZWQgdGhlIEdlbm9tZSBNb2RlbGluZyBTeXN0ZW0gKEdNUyksIGNhcGFibGUgb2YgZXhlY3V0aW5nIGNvbXBsZXgsIGludGVyZGVwZW5kZW50LCBhbmQgYXV0b21hdGVkIGdlbm9tZSBhbmFseXNpcyBwaXBlbGluZXMgYXQgYSBtYXNzaXZlIHNjYWxlLiBUaGUgR01TIGZyYW1ld29yayBwcm92aWRlcyBkZXRhaWxlZCB0cmFja2luZyBvZiBzYW1wbGVzIGFuZCBkYXRhIGNvdXBsZWQgd2l0aCByZWxpYWJsZSBhbmQgcmVwZWF0YWJsZSBhbmFseXNpcyBwaXBlbGluZXMuIEdNUyBpbmNsdWRlcyBhIGZ1bGwgc3lzdGVtIGltYWdlIHdpdGggc29mdHdhcmUgYW5kIHNlcnZpY2VzLCBleHBhbmRhYmxlIGZyb20gb25lIHdvcmtzdGF0aW9uIHRvIGEgbGFyZ2UgY29tcHV0ZSBjbHVzdGVyLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2dpdGh1Yi5jb20vZ2Vub21lL2dtcy93aWtpXG5Db250YWN0OiBodHRwczovL2dpdGh1Yi5jb20vZ2Vub21lL2dtcy9pc3N1ZXNcblVwZGF0ZUZyZXF1ZW5jeTogTm90IHVwZGF0ZWRcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19nbXNkYXRhL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvZ21zZGF0YS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19nbXNkYXRhLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2dtc2RhdGEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2dtc2RhdGEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfZ3JpbGxvX29wZW5lZXciLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ncmlsbG9fb3BlbmVldy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ncmlsbG9fb3BlbmVldy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGdyaWxsby1vcGVuZWV3IEJ1Y2tldDogT3BlbkVFVzogT3BlbkVFVyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGdyaWxsby1vcGVuZWV3IGJ1Y2tldCBhdCBodHRwczovL2dyaWxsby1vcGVuZWV3LnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBPcGVuRUVXXG5OYW1lMjogT3BlbkVFV1xuRGVzY3JpcHRpb246IEdyaWxsbyBoYXMgZGV2ZWxvcGVkIGFuIElvVC1iYXNlZCBlYXJ0aHF1YWtlIGVhcmx5LXdhcm5pbmcgc3lzdGVtIGluIE1leGljbyBhbmQgQ2hpbGUgYW5kIGlzIG5vdyBvcGVuaW5nIGl0cyBlbnRpcmUgYXJjaGl2ZSBvZiB1bnByb2Nlc3NlZCBhY2NlbGVyb21ldGVyIGRhdGEgdG8gdGhlIHdvcmxkIHRvIGVuY291cmFnZSB0aGUgZGV2ZWxvcG1lbnQgb2YgbmV3IGFsZ29yaXRobXMgY2FwYWJsZSBvZiByYXBpZGx5IGRldGVjdGluZyBhbmQgY2hhcmFjdGVyaXppbmcgZWFydGhxdWFrZXMgaW4gcmVhbCB0aW1lLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2dpdGh1Yi5jb20vZ3JpbGxvL29wZW5lZXdcbkNvbnRhY3Q6IG9wZW5lZXdAZ3JpbGxvLmlvXG5NYW5hZ2VkQnk6IFtHcmlsbG9dKGh0dHBzOi8vZ3JpbGxvLmlvLylcblVwZGF0ZUZyZXF1ZW5jeTogQXBwcm94aW1hdGVseSBldmVyeSAxMCBtaW51dGVzXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfZ3JpbGxvX29wZW5lZXcvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9ncmlsbG8tb3BlbmVldy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19ncmlsbG9fb3BlbmVldy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ncmlsbG9fb3BlbmVldyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfZ3JpbGxvX29wZW5lZXciXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfaHVtYW5fbWljcm9iaW9tZV9wcm9qZWN0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfaHVtYW5fbWljcm9iaW9tZV9wcm9qZWN0LmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2h1bWFuX21pY3JvYmlvbWVfcHJvamVjdC8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGh1bWFuLW1pY3JvYmlvbWUtcHJvamVjdCBCdWNrZXQ6IFRoZSBIdW1hbiBNaWNyb2Jpb21lIFByb2plY3QiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBodW1hbi1taWNyb2Jpb21lLXByb2plY3QgYnVja2V0IGF0IGh0dHBzOi8vaHVtYW4tbWljcm9iaW9tZS1wcm9qZWN0LnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBUaGUgSHVtYW4gTWljcm9iaW9tZSBQcm9qZWN0XG5OYW1lMjogaHR0cHM6Ly9hd3MuYW1hem9uLmNvbS9kYXRhc2V0cy9odW1hbi1taWNyb2Jpb21lLXByb2plY3QvXG5EZXNjcmlwdGlvbjogVGhlIE5JSC1mdW5kZWQgSHVtYW4gTWljcm9iaW9tZSBQcm9qZWN0IChITVApIGlzIGEgY29sbGFib3JhdGl2ZSBlZmZvcnQgb2Ygb3ZlciAzMDAgc2NpZW50aXN0cyBmcm9tIG1vcmUgdGhhbiA4MCBvcmdhbml6YXRpb25zIHRvIGNvbXByZWhlbnNpdmVseSBjaGFyYWN0ZXJpemUgdGhlIG1pY3JvYmlhbCBjb21tdW5pdGllcyBpbmhhYml0aW5nIHRoZSBodW1hbiBib2R5IGFuZCBlbHVjaWRhdGUgdGhlaXIgcm9sZSBpbiBodW1hbiBoZWFsdGggYW5kIGRpc2Vhc2UuIFRvIGFjY29tcGxpc2ggdGhpcyB0YXNrLCBtaWNyb2JpYWwgY29tbXVuaXR5IHNhbXBsZXMgd2VyZSBpc29sYXRlZCBmcm9tIGEgY29ob3J0IG9mIDMwMCBoZWFsdGh5IGFkdWx0IGh1bWFuIHN1YmplY3RzIGF0IDE4IHNwZWNpZmljIHNpdGVzIHdpdGhpbiBmaXZlIHJlZ2lvbnMgb2YgdGhlIGJvZHkgKG9yYWwgY2F2aXR5LCBhaXJ3YXlzLCB1cm9nZW5pdGFsIHRyYWNrLCBza2luLCBhbmQgZ3V0KS4gVGFyZ2V0ZWQgc2VxdWVuY2luZyBvZiB0aGUgMTZTIGJhY3RlcmlhbCBtYXJrZXIgZ2VuZSBhbmQvb3Igd2hvbGUgbWV0YWdlbm9tZSBzaG90Z3VuIHNlcXVlbmNpbmcgd2FzIHBlcmZvcm1lZCBmb3IgdGhvdXNhbmRzIG9mIHRoZXNlIHNhbXBsZXMuIEluIGFkZGl0aW9uLCB3aG9sZSBnZW5vbWUgc2VxdWVuY2VzIHdlcmUgZ2VuZXJhdGVkIGZvciBpc29sYXRlIHN0cmFpbnMgY29sbGVjdGVkIGZyb20gaHVtYW4gYm9keSBzaXRlcyB0byBhY3QgYXMgcmVmZXJlbmNlIG9yZ2FuaXNtcyBmb3IgYW5hbHlzaXMuIEZpbmFsbHksIDE2UyBtYXJrZXIgYW5kIHdob2xlIG1ldGFnZW5vbWUgc2VxdWVuY2luZyB3YXMgYWxzbyBkb25lIG9uIGFkZGl0aW9uYWwgc2FtcGxlcyBmcm9tIHBlb3BsZSBzdWZmZXJpbmcgZnJvbSBzZXZlcmFsIGRpc2Vhc2UgY29uZGl0aW9ucy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9jb21tb25mdW5kLm5paC5nb3YvaG1wXG5Db250YWN0OiBodHRwczovL2NvbW1vbmZ1bmQubmloLmdvdi9obXAvcmVsYXRlZF9hY3Rpdml0aWVzXG5VcGRhdGVGcmVxdWVuY3k6IFVuY2VydGFpblxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2h1bWFuX21pY3JvYmlvbWVfcHJvamVjdC9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2h1bWFuLW1pY3JvYmlvbWUtcHJvamVjdC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19odW1hbl9taWNyb2Jpb21lX3Byb2plY3QucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfaHVtYW5fbWljcm9iaW9tZV9wcm9qZWN0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19odW1hbl9taWNyb2Jpb21lX3Byb2plY3QiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfaHVtYW5fcGFuZ2Vub21pY3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19odW1hbl9wYW5nZW5vbWljcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19odW1hbl9wYW5nZW5vbWljcy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGh1bWFuLXBhbmdlbm9taWNzIEJ1Y2tldDogSHVtYW4gUGFuR2Vub21pY3MgUHJvamVjdDogSHVtYW4gUGFuR2Vub21pY3MgUHJvamVjdCIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGh1bWFuLXBhbmdlbm9taWNzIGJ1Y2tldCBhdCBodHRwczovL2h1bWFuLXBhbmdlbm9taWNzLnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBIdW1hbiBQYW5HZW5vbWljcyBQcm9qZWN0XG5OYW1lMjogSHVtYW4gUGFuR2Vub21pY3MgUHJvamVjdFxuRGVzY3JpcHRpb246IFRoaXMgZGF0YXNldCBpbmNsdWRlcyBzZXF1ZW5jaW5nIGRhdGEsIGFzc2VtYmxpZXMsIGFuZCBhbmFseXNlcyBmb3IgdGhlIG9mZnNwcmluZyBvZiB0ZW4gcGFyZW50LW9mZnNwcmluZyB0cmlvcy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9naXRodWIuY29tL2h1bWFuLXBhbmdlbm9taWNzL2hwZ3AtZGF0YVxuQ29udGFjdDogaHR0cHM6Ly9naXRodWIuY29tL2h1bWFuLXBhbmdlbm9taWNzL2hwZ3AtZGF0YS9pc3N1ZXNcblVwZGF0ZUZyZXF1ZW5jeTogRGF0YSB3aWxsIGJlIGFkZGVkIGFuZCB1cGRhdGVkIGFzIHRlY2hub2xvZ2llcyBpbXByb3ZlIG9yIG5ldyBkYXRhIHVzZXMgYXJlIGVuY291bnRlcmVkLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2h1bWFuX3Bhbmdlbm9taWNzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvaHBncC1kYXRhLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2h1bWFuX3Bhbmdlbm9taWNzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2h1bWFuX3Bhbmdlbm9taWNzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19odW1hbl9wYW5nZW5vbWljcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19pY2hhbmdlbXljaXR5X2phbmFhZ3JhaGFfY29tcGxhaW50c19kYXRhX2F3cyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2ljaGFuZ2VteWNpdHlfamFuYWFncmFoYV9jb21wbGFpbnRzX2RhdGFfYXdzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2ljaGFuZ2VteWNpdHlfamFuYWFncmFoYV9jb21wbGFpbnRzX2RhdGFfYXdzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgaWNoYW5nZW15Y2l0eS1qYW5hYWdyYWhhLWNvbXBsYWludHMtZGF0YS1hd3MgQnVja2V0OiBJQ2hhbmdlTXlDaXR5IENvbXBsYWludHMgRGF0YSBmcm9tIEphbmFhZ3JhaGE6IElDaGFuZ2VNeUNpdHkgQ29tcGxhaW50cyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGljaGFuZ2VteWNpdHktamFuYWFncmFoYS1jb21wbGFpbnRzLWRhdGEtYXdzIGJ1Y2tldCBhdCBodHRwczovL2ljaGFuZ2VteWNpdHktamFuYWFncmFoYS1jb21wbGFpbnRzLWRhdGEtYXdzLnMzLmFwLXNvdXRoLTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogSUNoYW5nZU15Q2l0eSBDb21wbGFpbnRzIERhdGEgZnJvbSBKYW5hYWdyYWhhXG5OYW1lMjogSUNoYW5nZU15Q2l0eSBDb21wbGFpbnRzXG5EZXNjcmlwdGlvbjogVGhlIFtJQ2hhbmdlTXlDaXR5XShodHRwczovL3d3dy5pY2hhbmdlbXljaXR5LmNvbSkgcHJvamVjdCBwcm92aWRlcyBpbnNpZ2h0IGludG8gdGhlIGNvbXBsYWludHMgcmFpc2VkIGJ5IGNpdGl6ZW5zIGZyb20gZGlmZmVudCBjaXRpZXMgb2YgSW5kaWEgcmVsYXRlZCB0byB0aGUgaXNzdWVzIGluIHRoZWlyIG5laWdoYm91cmhvb2RzIGFuZCB0aGUgcmVzb2x1dGlvbiBvZiB0aGUgc2FtZSBieSB0aGUgY2l2aWMgYm9kaWVzLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwOi8vaWNoYW5nZW15Y2l0eS1qYW5hYWdyYWhhLWNvbXBsYWludHMtZGF0YS1hd3MuczMuYXAtc291dGgtMS5hbWF6b25hd3MuY29tL3JlYWRtZS5odG1sXG5Db250YWN0OiBkYXRhQGphbmFhZ3JhaGEub3JnXG5VcGRhdGVGcmVxdWVuY3k6IERhaWx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfaWNoYW5nZW15Y2l0eV9qYW5hYWdyYWhhX2NvbXBsYWludHNfZGF0YV9hd3MvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9pY2hhbmdlbXljaXR5LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2ljaGFuZ2VteWNpdHlfamFuYWFncmFoYV9jb21wbGFpbnRzX2RhdGFfYXdzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2ljaGFuZ2VteWNpdHlfamFuYWFncmFoYV9jb21wbGFpbnRzX2RhdGFfYXdzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19pY2hhbmdlbXljaXR5X2phbmFhZ3JhaGFfY29tcGxhaW50c19kYXRhX2F3cyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19pcnNfOTkwX3NwcmVhZHNoZWV0cyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2lyc185OTBfc3ByZWFkc2hlZXRzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX2lyc185OTBfc3ByZWFkc2hlZXRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgaXJzLTk5MC1zcHJlYWRzaGVldHMgQnVja2V0OiBJUlMgOTkwIEZpbGluZ3MgKFNwcmVhZHNoZWV0cyk6IEV4Y2VycHRzIG9mIGVsZWN0cm9uaWMgRm9ybSA5OTAgYW5kIDk5MC1FWiBmaWxpbmdzLCBjb252ZXJ0ZWQgdG8gc3ByZWFkc2hlZXQgZm9ybSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGlycy05OTAtc3ByZWFkc2hlZXRzIGJ1Y2tldCBhdCBodHRwczovL2lycy05OTAtc3ByZWFkc2hlZXRzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBJUlMgOTkwIEZpbGluZ3MgKFNwcmVhZHNoZWV0cylcbk5hbWUyOiBFeGNlcnB0cyBvZiBlbGVjdHJvbmljIEZvcm0gOTkwIGFuZCA5OTAtRVogZmlsaW5ncywgY29udmVydGVkIHRvIHNwcmVhZHNoZWV0IGZvcm1cbkRlc2NyaXB0aW9uOiBFeGNlcnB0cyBvZiBlbGVjdHJvbmljIEZvcm0gOTkwIGFuZCA5OTAtRVogZmlsaW5ncywgY29udmVydGVkIHRvIHNwcmVhZHNoZWV0IGZvcm0uIEFkZGl0aW9uYWwgZmllbGRzIGJlaW5nIGFkZGVkIHJlZ3VsYXJseS5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9hcHBsaWVkbm9ucHJvZml0cmVzZWFyY2guY29tL2RvY3VtZW50YXRpb24vaXJzLTk5MC1zcHJlYWRzaGVldHNcbkNvbnRhY3Q6IFtpbmZvQGFwcGxpZWRub25wcm9maXRyZXNlYXJjaC5jb21dKGluZm9AYXBwbGllZG5vbnByb2ZpdHJlc2VhcmNoLmNvbSlcbk1hbmFnZWRCeTogW0FwcGxpZWQgTm9ucHJvZml0IFJlc2VhcmNoLCBMTENdKGh0dHBzOi8vd3d3LmFwcGxpZWRub25wcm9maXRyZXNlYXJjaC5jb20vKVxuVXBkYXRlRnJlcXVlbmN5OiBRdWFydGVybHlcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19pcnNfOTkwX3NwcmVhZHNoZWV0cy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzLzk5MC1zcHJlYWRzaGVldHMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfaXJzXzk5MF9zcHJlYWRzaGVldHMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfaXJzXzk5MF9zcHJlYWRzaGVldHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2lyc185OTBfc3ByZWFkc2hlZXRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2xhYjQxb3BlbmF1ZGlvY29ycHVzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbGFiNDFvcGVuYXVkaW9jb3JwdXMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbGFiNDFvcGVuYXVkaW9jb3JwdXMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBsYWI0MW9wZW5hdWRpb2NvcnB1cyBCdWNrZXQ6IFZvaWNlcyBPYnNjdXJlZCBpbiBDb21wbGV4IEVudmlyb25tZW50YWwgU2V0dGluZ3MgKFZPaUNFUyk6IHdhdiBhdWRpbyBmaWxlcywgb3J0aG9ncmFwaGljIHRyYW5zY3JpcHRpb25zLCBhbmQgc3BlYWtlciBJRCIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGxhYjQxb3BlbmF1ZGlvY29ycHVzIGJ1Y2tldCBhdCBodHRwczovL2xhYjQxb3BlbmF1ZGlvY29ycHVzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBWb2ljZXMgT2JzY3VyZWQgaW4gQ29tcGxleCBFbnZpcm9ubWVudGFsIFNldHRpbmdzIChWT2lDRVMpXG5OYW1lMjogd2F2IGF1ZGlvIGZpbGVzLCBvcnRob2dyYXBoaWMgdHJhbnNjcmlwdGlvbnMsIGFuZCBzcGVha2VyIElEXG5EZXNjcmlwdGlvbjogVk9pQ0VTIGlzIGEgc3BlZWNoIGNvcnB1cyByZWNvcmRlZCBpbiBhY291c3RpY2FsbHkgY2hhbGxlbmdpbmcgc2V0dGluZ3MsIHVzaW5nIGRpc3RhbnQgbWljcm9waG9uZSByZWNvcmRpbmcuIFNwZWVjaCB3YXMgcmVjb3JkZWQgaW4gcmVhbCByb29tcyB3aXRoIHZhcmlvdXMgYWNvdXN0aWMgZmVhdHVyZXMgKHJldmVyYiwgZWNobywgSFZBQyBzeXN0ZW1zLCBvdXRzaWRlIG5vaXNlLCBldGMuKS4gQWR2ZXJzYXJpYWwgbm9pc2UsIGVpdGhlciB0ZWxldmlzaW9uLCBtdXNpYywgb3IgYmFiYmxlLCB3YXMgY29uY3VycmVudGx5IHBsYXllZCB3aXRoIGNsZWFuIHNwZWVjaC4gRGF0YSB3YXMgcmVjb3JkZWQgdXNpbmcgbXVsdGlwbGUgbWljcm9waG9uZXMgc3RyYXRlZ2ljYWxseSBwbGFjZWQgdGhyb3VnaG91dCB0aGUgcm9vbS4gVGhlIGNvcnB1cyBpbmNsdWRlcyBhdWRpbyByZWNvcmRpbmdzLCBvcnRob2dyYXBoaWMgdHJhbnNjcmlwdGlvbnMsIGFuZCBzcGVha2VyIGxhYmVscy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly92b2ljZXMxOC5naXRodWIuaW8vXG5Db250YWN0OiBodHRwczovL2dpdGh1Yi5jb20vdm9pY2VzMTgvdXRpbGl0aWVzL2lzc3Vlc1xuVXBkYXRlRnJlcXVlbmN5OiBEYXRhIGZyb20gdHdvIGFkZGl0aW9uYWwgcm9vbXMgd2lsbCBiZSBhZGRlZCB0byB0aGUgY29ycHVzIEZhbGwgMjAxOC5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19sYWI0MW9wZW5hdWRpb2NvcnB1cy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2xhYjQxLXNyaS12b2ljZXMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbGFiNDFvcGVuYXVkaW9jb3JwdXMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfbGFiNDFvcGVuYXVkaW9jb3JwdXMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX2xhYjQxb3BlbmF1ZGlvY29ycHVzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX2xhbmRzYXRfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbGFuZHNhdF9wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbGFuZHNhdF9wZHMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBsYW5kc2F0LXBkcyBCdWNrZXQ6IExhbmRzYXQgODogU2NlbmVzIGFuZCBtZXRhZGF0YSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGxhbmRzYXQtcGRzIGJ1Y2tldCBhdCBodHRwczovL2xhbmRzYXQtcGRzLnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBMYW5kc2F0IDhcbk5hbWUyOiBTY2VuZXMgYW5kIG1ldGFkYXRhXG5EZXNjcmlwdGlvbjogQW4gb25nb2luZyBjb2xsZWN0aW9uIG9mIHNhdGVsbGl0ZSBpbWFnZXJ5IG9mIGFsbCBsYW5kIG9uIEVhcnRoIHByb2R1Y2VkIGJ5IHRoZSBMYW5kc2F0IDggc2F0ZWxsaXRlLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL2xhbmRzYXQtcGRzL3JlYWRtZS5odG1sXG5Db250YWN0OiBodHRwczovL2xpc3RzLm9zZ2VvLm9yZy9tYWlsbWFuL2xpc3RpbmZvL2xhbmRzYXQtcGRzXG5NYW5hZ2VkQnk6IFtQbGFuZXRdKGh0dHBzOi8vd3d3LnBsYW5ldC5jb20vKVxuVXBkYXRlRnJlcXVlbmN5OiBOZXcgTGFuZHNhdCA4IHNjZW5lcyBhcmUgYWRkZWQgcmVndWxhcmx5IGFzIHNvb24gYXMgdGhleSBhcmUgYXZhaWxhYmxlLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2xhbmRzYXRfcGRzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvbGFuZHNhdC04LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX2xhbmRzYXRfcGRzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX2xhbmRzYXRfcGRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19sYW5kc2F0X3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19sYW5kc2F0X3Bkc19pbnZlbnRvcnkiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19sYW5kc2F0X3Bkc19pbnZlbnRvcnkuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbGFuZHNhdF9wZHNfaW52ZW50b3J5LyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbGFuZHNhdC1wZHMtaW52ZW50b3J5IEJ1Y2tldDogTGFuZHNhdCA4OiBbUzMgSW52ZW50b3J5XShodHRwczovL2RvY3MuYXdzLmFtYXpvbi5jb20vQW1hem9uUzMvbGF0ZXN0L2Rldi9zdG9yYWdlLWludmVudG9yeS5odG1sI3N0b3JhZ2UtaW52ZW50b3J5LWNvbnRlbnRzKSAoT1JDKSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGxhbmRzYXQtcGRzLWludmVudG9yeSBidWNrZXQgYXQgaHR0cHM6Ly9sYW5kc2F0LXBkcy1pbnZlbnRvcnkuczMudXMtd2VzdC0yLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IExhbmRzYXQgOFxuTmFtZTI6IFtTMyBJbnZlbnRvcnldKGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9BbWF6b25TMy9sYXRlc3QvZGV2L3N0b3JhZ2UtaW52ZW50b3J5Lmh0bWwjc3RvcmFnZS1pbnZlbnRvcnktY29udGVudHMpIChPUkMpXG5EZXNjcmlwdGlvbjogQW4gb25nb2luZyBjb2xsZWN0aW9uIG9mIHNhdGVsbGl0ZSBpbWFnZXJ5IG9mIGFsbCBsYW5kIG9uIEVhcnRoIHByb2R1Y2VkIGJ5IHRoZSBMYW5kc2F0IDggc2F0ZWxsaXRlLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL2xhbmRzYXQtcGRzL3JlYWRtZS5odG1sXG5Db250YWN0OiBodHRwczovL2xpc3RzLm9zZ2VvLm9yZy9tYWlsbWFuL2xpc3RpbmZvL2xhbmRzYXQtcGRzXG5NYW5hZ2VkQnk6IFtQbGFuZXRdKGh0dHBzOi8vd3d3LnBsYW5ldC5jb20vKVxuVXBkYXRlRnJlcXVlbmN5OiBOZXcgTGFuZHNhdCA4IHNjZW5lcyBhcmUgYWRkZWQgcmVndWxhcmx5IGFzIHNvb24gYXMgdGhleSBhcmUgYXZhaWxhYmxlLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX2xhbmRzYXRfcGRzX2ludmVudG9yeS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2xhbmRzYXQtOC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19sYW5kc2F0X3Bkc19pbnZlbnRvcnkucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfbGFuZHNhdF9wZHNfaW52ZW50b3J5JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19sYW5kc2F0X3Bkc19pbnZlbnRvcnkiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbG9mYXJfZWxhaXNfbjEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19sb2Zhcl9lbGFpc19uMS5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19sb2Zhcl9lbGFpc19uMS8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIGxvZmFyLWVsYWlzLW4xIEJ1Y2tldDogTE9GQVIgRUxBSVMtTjEgY3ljbGUgMiBvYnNlcnZhdGlvbnMgb24gQVdTOiBMT0ZBUiBFTEFJUy1OMSBjeWNsZSAyIG9ic2VydmF0aW9ucyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIGxvZmFyLWVsYWlzLW4xIGJ1Y2tldCBhdCBodHRwczovL2xvZmFyLWVsYWlzLW4xLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBMT0ZBUiBFTEFJUy1OMSBjeWNsZSAyIG9ic2VydmF0aW9ucyBvbiBBV1Ncbk5hbWUyOiBMT0ZBUiBFTEFJUy1OMSBjeWNsZSAyIG9ic2VydmF0aW9uc1xuRGVzY3JpcHRpb246IFRoZXNlIGRhdGEgY29ycmVzcG9uZCB0byB0aGUgW0ludGVybmF0aW9uYWwgTE9GQVIgVGVsZXNjb3BlXShodHRwOi8vd3d3LmxvZmFyLm9yZy8pIG9ic2VydmF0aW9ucyBvZiB0aGUgc2t5IGZpZWxkIEVMQUlTLU4xICgxNjoxMDowMSArNTQ6MzA6MzYpIGR1cmluZyB0aGUgY3ljbGUgMiBvZiBvYnNlcnZhdGlvbnMuIFRoZXJlIGFyZSAxMSBydW5zIG9mIGFib3V0IDggaG91cnMgZWFjaCBwbHVzIHRoZSBjb3JyZXNwb25kaW5nIG9ic2VydmF0aW9uIG9mIHRoZSBjYWxpYnJhdGlvbiB0YXJnZXRzIGJlZm9yZSBhbmQgYWZ0ZXIgdGhlIHRhcmdldCBmaWVsZC4gVGhlIGRhdGEgYXJlIG1lYXN1cmVtZW50IHNldHMgKFtNU10oaHR0cHM6Ly9jYXNhLm5yYW8uZWR1L01lbW9zLzIyOS5odG1sKSkgY29udGFpbmluZyB0aGUgY3Jvc3MtY29ycmVsYXRlZCBkYXRhIGFuZCBtZXRhZGF0YSBkaXZpZGVkIGluIDM3MSBmcmVxdWVuY3kgc3ViLWJhbmRzIHBlciB0YXJnZXQgY2VudHJlZCBhdCB+MTUwIE1Iei5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly93d3cubG9mYXJjbG91ZC51ay9kYXRhLmh0bWxcbkNvbnRhY3Q6IGh0dHBzOi8vd3d3LmxvZmFyY2xvdWQudWsvXG5VcGRhdGVGcmVxdWVuY3k6IE5vdCB1cGRhdGVkXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbG9mYXJfZWxhaXNfbjEvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9sb2Zhci1lbGFpcy1uMS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19sb2Zhcl9lbGFpc19uMS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19sb2Zhcl9lbGFpc19uMSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbG9mYXJfZWxhaXNfbjEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbWZfbndwX21vZGVscyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX21mX253cF9tb2RlbHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbWZfbndwX21vZGVscy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG1mLW53cC1tb2RlbHMgQnVja2V0OiBBdG1vc3BoZXJpYyBNb2RlbHMgZnJvbSBNXHUwMGU5dFx1MDBlOW8tRnJhbmNlOiBBdG1vc3BoZXJpYyBNb2RlbHMgZnJvbSBNXHUwMGU5dFx1MDBlOW8tRnJhbmNlIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbWYtbndwLW1vZGVscyBidWNrZXQgYXQgaHR0cHM6Ly9tZi1ud3AtbW9kZWxzLnMzLmV1LXdlc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBBdG1vc3BoZXJpYyBNb2RlbHMgZnJvbSBNXHUwMGU5dFx1MDBlOW8tRnJhbmNlXG5OYW1lMjogQXRtb3NwaGVyaWMgTW9kZWxzIGZyb20gTVx1MDBlOXRcdTAwZTlvLUZyYW5jZVxuRGVzY3JpcHRpb246IEdsb2JhbCBhbmQgaGlnaC1yZXNvbHV0aW9uIHJlZ2lvbmFsIGF0bW9zcGhlcmljIG1vZGVscyBmcm9tIE1cdTAwZTl0XHUwMGU5by1GcmFuY2UuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vbWYtbW9kZWxzLW9uLWF3cy5vcmdcbkNvbnRhY3Q6IGNvbnRhY3RAb3Blbm1ldGVvZGF0YS5jb21cbk1hbmFnZWRCeTogW09wZW5NZXRlb0RhdGFdKGh0dHBzOi8vb3Blbm1ldGVvZGF0YS5jb20pXG5VcGRhdGVGcmVxdWVuY3k6IEV2ZXJ5IDYgaG91cnNcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19tZl9ud3BfbW9kZWxzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvbWV0ZW8tZnJhbmNlLW1vZGVscy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19tZl9ud3BfbW9kZWxzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX21mX253cF9tb2RlbHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX21mX253cF9tb2RlbHMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbW9kaXNfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbW9kaXNfcGRzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX21vZGlzX3Bkcy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG1vZGlzLXBkcyBCdWNrZXQ6IE1PRElTIG9uIEFXUzogSW1hZ2VyeSBhbmQgbWV0YWRhdGEiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBtb2Rpcy1wZHMgYnVja2V0IGF0IGh0dHBzOi8vbW9kaXMtcGRzLnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBNT0RJUyBvbiBBV1Ncbk5hbWUyOiBJbWFnZXJ5IGFuZCBtZXRhZGF0YVxuRGVzY3JpcHRpb246IFNlbGVjdCBwcm9kdWN0cyBmcm9tIHRoZSBNb2RlcmF0ZSBSZXNvbHV0aW9uIEltYWdpbmcgU3BlY3Ryb3JhZGlvbWV0ZXIgKE1PRElTKSBtYW5hZ2VkIGJ5IHRoZSBVLlMuIEdlb2xvZ2ljYWwgU3VydmV5IGFuZCBOQVNBLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL21vZGlzLXBkcy9yZWFkbWUuaHRtbFxuQ29udGFjdDogaHR0cHM6Ly9naXRodWIuY29tL0FzdHJvRGlnaXRhbC9tb2Rpcy1pbmdlc3Rvci9pc3N1ZXNcblVwZGF0ZUZyZXF1ZW5jeTogTmV3IE1PRElTIGRhdGEgaXMgYWRkZWQgcmVndWxhcmx5IGFzIHNvb24gYXMgdGhleSBhcmUgYXZhaWxhYmxlLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX21vZGlzX3Bkcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL21vZGlzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX21vZGlzX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19tb2Rpc19wZHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX21vZGlzX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19tdWx0aW1lZGlhX2NvbW1vbnMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19tdWx0aW1lZGlhX2NvbW1vbnMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbXVsdGltZWRpYV9jb21tb25zLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbXVsdGltZWRpYS1jb21tb25zIEJ1Y2tldDogTXVsdGltZWRpYSBDb21tb25zOiBUaGlzIGRpcmVjdG9yeSBoYXMgOTksMTcxLDY4OCBpbWFnZSBmaWxlcyBhbmQgNzg3LDQ3OSB2aWRlbyBmaWxlcy4gVGhlIHZpZGVvcyBhZGQgdXAgdG8gYXJvdW5kIDgsMDgxIGhvdXJzLCB3aXRoIGFuIGF2ZXJhZ2UgdmlkZW8gbGVuZ3RoIG9mIDM3cyBhbmQgYSBtZWRpYW4gbGVuZ3RoIG9mIDI4cy4iLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBtdWx0aW1lZGlhLWNvbW1vbnMgYnVja2V0IGF0IGh0dHBzOi8vbXVsdGltZWRpYS1jb21tb25zLnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBNdWx0aW1lZGlhIENvbW1vbnNcbk5hbWUyOiBUaGlzIGRpcmVjdG9yeSBoYXMgOTksMTcxLDY4OCBpbWFnZSBmaWxlcyBhbmQgNzg3LDQ3OSB2aWRlbyBmaWxlcy4gVGhlIHZpZGVvcyBhZGQgdXAgdG8gYXJvdW5kIDgsMDgxIGhvdXJzLCB3aXRoIGFuIGF2ZXJhZ2UgdmlkZW8gbGVuZ3RoIG9mIDM3cyBhbmQgYSBtZWRpYW4gbGVuZ3RoIG9mIDI4cy5cbkRlc2NyaXB0aW9uOiBUaGUgTXVsdGltZWRpYSBDb21tb25zIGlzIGEgY29sbGVjdGlvbiBvZiBhdWRpbyBhbmQgdmlzdWFsIGZlYXR1cmVzIGNvbXB1dGVkIGZvciB0aGUgbmVhcmx5IDEwMCBtaWxsaW9uIENyZWF0aXZlIENvbW1vbnMtbGljZW5zZWQgRmxpY2tyIGltYWdlcyBhbmQgdmlkZW9zIGluIHRoZSBZRkNDMTAwTSBkYXRhc2V0IGZyb20gWWFob28hIExhYnMsIGFsb25nIHdpdGggZ3JvdW5kLXRydXRoIGFubm90YXRpb25zIGZvciBzZWxlY3RlZCBzdWJzZXRzLiBUaGUgSW50ZXJuYXRpb25hbCBDb21wdXRlciBTY2llbmNlIEluc3RpdHV0ZSAoSUNTSSkgYW5kIExhd3JlbmNlIExpdmVybW9yZSBOYXRpb25hbCBMYWJvcmF0b3J5IGFyZSBwcm9kdWNpbmcgYW5kIGRpc3RyaWJ1dGluZyBhIGNvcmUgc2V0IG9mIGRlcml2ZWQgZmVhdHVyZSBzZXRzIGFuZCBhbm5vdGF0aW9ucyBhcyBwYXJ0IG9mIGFuIGVmZm9ydCB0byBlbmFibGUgbGFyZ2Utc2NhbGUgdmlkZW8gc2VhcmNoIGNhcGFiaWxpdGllcy4gVGhleSBoYXZlIHJlbGVhc2VkIHRoaXMgZmVhdHVyZSBjb3JwdXMgaW50byB0aGUgcHVibGljIGRvbWFpbiwgdW5kZXIgQ3JlYXRpdmUgQ29tbW9ucyBMaWNlbnNlIDAsIHNvIGl0IGlzIGZyZWUgZm9yIGFueW9uZSB0byB1c2UgZm9yIGFueSBwdXJwb3NlLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL211bHRpbWVkaWFjb21tb25zLndvcmRwcmVzcy5jb20veWZjYzEwMG0tY29yZS1kYXRhc2V0L1xuQ29udGFjdDogbXVsdGltZWRpYS1jb21tb25zQGljc2kuYmVya2VsZXkuZWR1XG5VcGRhdGVGcmVxdWVuY3k6IE5vdCB1cGRhdGVkLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX211bHRpbWVkaWFfY29tbW9ucy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL211bHRpbWVkaWEtY29tbW9ucy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19tdWx0aW1lZGlhX2NvbW1vbnMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfbXVsdGltZWRpYV9jb21tb25zJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19tdWx0aW1lZGlhX2NvbW1vbnMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbXdhcHVibGljIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbXdhcHVibGljLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX213YXB1YmxpYy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG13YXB1YmxpYyBCdWNrZXQ6IEVwb2NoIG9mIFJlaW9uaXphdGlvbiBEYXRhc2V0OiBTZWxlY3RlZCBNV0EgRW9SIGRhdGEgKHV2Zml0cyBmb3JtYXQpIGZyb20gMjAxMy0yMDE1IiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbXdhcHVibGljIGJ1Y2tldCBhdCBodHRwczovL213YXB1YmxpYy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogRXBvY2ggb2YgUmVpb25pemF0aW9uIERhdGFzZXRcbk5hbWUyOiBTZWxlY3RlZCBNV0EgRW9SIGRhdGEgKHV2Zml0cyBmb3JtYXQpIGZyb20gMjAxMy0yMDE1XG5EZXNjcmlwdGlvbjogVGhlIGRhdGEgYXJlIGZyb20gb2JzZXJ2YXRpb25zIHdpdGggdGhlIE11cmNoaXNvbiBXaWRlZmllbGQgQXJyYXkgKE1XQSkgd2hpY2ggaXMgYSBTcXVhcmUgS2lsb21ldGVyIEFycmF5IChTS0EpIHByZWN1cnNvciBpbiBXZXN0ZXJuIEF1c3RyYWxpYS4gIFRoaXMgcGFydGljdWxhciBkYXRhc2V0IGlzIGZyb20gdGhlIEVwb2NoIG9mIFJlaW9uaXphdGlvbiBwcm9qZWN0IHdoaWNoIGlzIGEga2V5IHNjaWVuY2UgZHJpdmVyIG9mIHRoZSBTS0EuIE5lYXJseSAyUEIgb2Ygc3VjaCBvYnNlcnZhdGlvbnMgaGF2ZSBiZWVuIHJlY29yZGVkIHRvIGRhdGUsIHRoaXMgaXMgYSBzbWFsbCBzdWJzZXQgb2YgdGhhdCB3aGljaCBoYXMgYmVlbiBleHBvcnRlZCBmcm9tIHRoZSBNV0EgZGF0YSBhcmNoaXZlIGluIFBlcnRoIGFuZCBtYWRlIGF2YWlsYWJsZSB0byB0aGUgcHVibGljIG9uIEFXUy4gIFRoZSBkYXRhIHdlcmUgdGFrZW4gdG8gZGV0ZWN0IHNpZ25hdHVyZXMgb2YgdGhlIGZpcnN0IHN0YXJzIGFuZCBnYWxheGllcyBmb3JtaW5nIGFuZCB0aGUgZWZmZWN0IG9mIHRoZXNlIGVhcmx5IHN0YXJzIGFuZCBnYWxheGllcyBvbiB0aGUgZXZvbHV0aW9uIG9mIHRoZSB1bml2ZXJzZS5cblxuRG9jdW1lbnRhdGlvbjogaHR0cDovL2RhbmllbGNqYWNvYnMuY29tL3Jlc2VhcmNoL2Vwb2NoLW9mLXJlaW9uaXphdGlvbi1hd3MtcHVibGljLWRhdGFzZXQvXG5Db250YWN0OiBicnluYWggKGF0KSBwaHlzLndhc2hpbmd0b24uZWR1XG5NYW5hZ2VkQnk6IFVuaXZlcnNpdHkgb2Ygd2FzaGluZ3RvbiBSYWRpbyBDb3Ntb2xvZ3kgR3JvdXBcblVwZGF0ZUZyZXF1ZW5jeTogSXJyZWd1bGFybHlcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19td2FwdWJsaWMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9lcG9jaC1vZi1yZWlvbml6YXRpb24vIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbXdhcHVibGljLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX213YXB1YmxpYyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbXdhcHVibGljIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25hbm9wb3JlX2h1bWFuX3dncyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25hbm9wb3JlX2h1bWFuX3dncy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19uYW5vcG9yZV9odW1hbl93Z3MvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBuYW5vcG9yZS1odW1hbi13Z3MgQnVja2V0OiBOYW5vcG9yZSBSZWZlcmVuY2UgSHVtYW4gR2Vub21lOiBOYW5vcG9yZSBSZWZlcmVuY2UgSHVtYW4gR2Vub21lIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbmFub3BvcmUtaHVtYW4td2dzIGJ1Y2tldCBhdCBodHRwczovL25hbm9wb3JlLWh1bWFuLXdncy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogTmFub3BvcmUgUmVmZXJlbmNlIEh1bWFuIEdlbm9tZVxuTmFtZTI6IE5hbm9wb3JlIFJlZmVyZW5jZSBIdW1hbiBHZW5vbWVcbkRlc2NyaXB0aW9uOiBUaGlzIGRhdGFzZXQgaW5jbHVkZXMgdGhlIHNlcXVlbmNpbmcgYW5kIGFzc2VtYmx5IG9mIGEgcmVmZXJlbmNlIHN0YW5kYXJkIGh1bWFuIGdlbm9tZSAoR00xMjg3OCkgdXNpbmcgdGhlIE1pbklPTiBuYW5vcG9yZSBzZXF1ZW5jaW5nIGluc3RydW1lbnQgd2l0aCB0aGUgUjkuNCAxRCBjaGVtaXN0cnkuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZ2l0aHViLmNvbS9uYW5vcG9yZS13Z3MtY29uc29ydGl1bS9OQTEyODc4XG5Db250YWN0OiBodHRwczovL2dpdGh1Yi5jb20vbmFub3BvcmUtd2dzLWNvbnNvcnRpdW0vTkExMjg3OC9pc3N1ZXNcblVwZGF0ZUZyZXF1ZW5jeTogRGF0YSB3aWxsIGJlIGFkZGVkIGFzIG1ldGhvZG9sb2d5IGltcHJvdmVzIG9yIG5ldyBkYXRhIHVzZXMgYXJlIGVuY291bnRlcmVkLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25hbm9wb3JlX2h1bWFuX3dncy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25hbm9wb3JlLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25hbm9wb3JlX2h1bWFuX3dncy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19uYW5vcG9yZV9odW1hbl93Z3Mmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25hbm9wb3JlX2h1bWFuX3dncyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19uYXNhbmV4X0xhbmRzYXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19uYXNhbmV4X0xhbmRzYXQuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbmFzYW5leF9MYW5kc2F0LyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbmFzYW5leCBCdWNrZXQgd2l0aCBwcmVmaXg9TGFuZHNhdC86IE5BU0EgTkVYOiBMYW5kc2F0IEdMUyAoR2xvYmFsIExhbmQgU3VydmV5KSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5hc2FuZXggYnVja2V0IGF0IGh0dHBzOi8vbmFzYW5leC5zMy51cy13ZXN0LTIuYW1hem9uYXdzLmNvbS8gd2l0aCBwcmVmaXg9TGFuZHNhdC8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogTkFTQSBORVhcbk5hbWUyOiBMYW5kc2F0IEdMUyAoR2xvYmFsIExhbmQgU3VydmV5KVxuRGVzY3JpcHRpb246IEEgY29sbGVjdGlvbiBvZiBFYXJ0aCBzY2llbmNlIGRhdGFzZXRzIG1haW50YWluZWQgYnkgTkFTQSwgaW5jbHVkaW5nIGNsaW1hdGUgY2hhbmdlIHByb2plY3Rpb25zIGFuZCBzYXRlbGxpdGUgaW1hZ2VzIG9mIHRoZSBFYXJ0aCdzIHN1cmZhY2UuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZG9jcy5vcGVuZGF0YS5hd3MvbmFzYS1uZXgvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IGh0dHBzOi8vbmV4Lm5hc2EuZ292L25leC9jb250YWN0dXMvXG5VcGRhdGVGcmVxdWVuY3k6IEluZnJlcXVlbnRseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25hc2FuZXhfTGFuZHNhdC9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25hc2FuZXgvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbmFzYW5leF9MYW5kc2F0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX25hc2FuZXhfTGFuZHNhdCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbmFzYW5leF9MYW5kc2F0Il0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25hc2FuZXhfTE9DQSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25hc2FuZXhfTE9DQS5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19uYXNhbmV4X0xPQ0EvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBuYXNhbmV4IEJ1Y2tldCB3aXRoIHByZWZpeD1MT0NBLzogTkFTQSBORVg6IExvY2FsaXplZCBDb25zdHJ1Y3RlZCBBbmFsb2dzIChMT0NBKSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5hc2FuZXggYnVja2V0IGF0IGh0dHBzOi8vbmFzYW5leC5zMy51cy13ZXN0LTIuYW1hem9uYXdzLmNvbS8gd2l0aCBwcmVmaXg9TE9DQS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogTkFTQSBORVhcbk5hbWUyOiBMb2NhbGl6ZWQgQ29uc3RydWN0ZWQgQW5hbG9ncyAoTE9DQSlcbkRlc2NyaXB0aW9uOiBBIGNvbGxlY3Rpb24gb2YgRWFydGggc2NpZW5jZSBkYXRhc2V0cyBtYWludGFpbmVkIGJ5IE5BU0EsIGluY2x1ZGluZyBjbGltYXRlIGNoYW5nZSBwcm9qZWN0aW9ucyBhbmQgc2F0ZWxsaXRlIGltYWdlcyBvZiB0aGUgRWFydGgncyBzdXJmYWNlLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL25hc2EtbmV4L3JlYWRtZS5odG1sXG5Db250YWN0OiBodHRwczovL25leC5uYXNhLmdvdi9uZXgvY29udGFjdHVzL1xuVXBkYXRlRnJlcXVlbmN5OiBJbmZyZXF1ZW50bHlcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19uYXNhbmV4X0xPQ0EvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9uYXNhbmV4LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25hc2FuZXhfTE9DQS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19uYXNhbmV4X0xPQ0Emc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25hc2FuZXhfTE9DQSJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19uYXNhbmV4X01PRElTIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbmFzYW5leF9NT0RJUy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19uYXNhbmV4X01PRElTLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbmFzYW5leCBCdWNrZXQgd2l0aCBwcmVmaXg9TU9ESVMvOiBOQVNBIE5FWDogTU9EMTNRMSAoVmVnZXRhdGlvbiBJbmRpY2VzIDE2LURheSBMMyBHbG9iYWwgMjUwbSkiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBuYXNhbmV4IGJ1Y2tldCBhdCBodHRwczovL25hc2FuZXguczMudXMtd2VzdC0yLmFtYXpvbmF3cy5jb20vIHdpdGggcHJlZml4PU1PRElTLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBOQVNBIE5FWFxuTmFtZTI6IE1PRDEzUTEgKFZlZ2V0YXRpb24gSW5kaWNlcyAxNi1EYXkgTDMgR2xvYmFsIDI1MG0pXG5EZXNjcmlwdGlvbjogQSBjb2xsZWN0aW9uIG9mIEVhcnRoIHNjaWVuY2UgZGF0YXNldHMgbWFpbnRhaW5lZCBieSBOQVNBLCBpbmNsdWRpbmcgY2xpbWF0ZSBjaGFuZ2UgcHJvamVjdGlvbnMgYW5kIHNhdGVsbGl0ZSBpbWFnZXMgb2YgdGhlIEVhcnRoJ3Mgc3VyZmFjZS5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLm9wZW5kYXRhLmF3cy9uYXNhLW5leC9yZWFkbWUuaHRtbFxuQ29udGFjdDogaHR0cHM6Ly9uZXgubmFzYS5nb3YvbmV4L2NvbnRhY3R1cy9cblVwZGF0ZUZyZXF1ZW5jeTogSW5mcmVxdWVudGx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbmFzYW5leF9NT0RJUy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25hc2FuZXgvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbmFzYW5leF9NT0RJUy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19uYXNhbmV4X01PRElTJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19uYXNhbmV4X01PRElTIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25hc2FuZXhfTkVYX0RDUDMwIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbmFzYW5leF9ORVhfRENQMzAuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbmFzYW5leF9ORVhfRENQMzAvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBuYXNhbmV4IEJ1Y2tldCB3aXRoIHByZWZpeD1ORVgtRENQMzAvOiBOQVNBIE5FWDogRG93bnNjYWxlZCBDbGltYXRlIFByb2plY3Rpb25zIChORVgtRENQMzApIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbmFzYW5leCBidWNrZXQgYXQgaHR0cHM6Ly9uYXNhbmV4LnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyB3aXRoIHByZWZpeD1ORVgtRENQMzAvIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5BU0EgTkVYXG5OYW1lMjogRG93bnNjYWxlZCBDbGltYXRlIFByb2plY3Rpb25zIChORVgtRENQMzApXG5EZXNjcmlwdGlvbjogQSBjb2xsZWN0aW9uIG9mIEVhcnRoIHNjaWVuY2UgZGF0YXNldHMgbWFpbnRhaW5lZCBieSBOQVNBLCBpbmNsdWRpbmcgY2xpbWF0ZSBjaGFuZ2UgcHJvamVjdGlvbnMgYW5kIHNhdGVsbGl0ZSBpbWFnZXMgb2YgdGhlIEVhcnRoJ3Mgc3VyZmFjZS5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLm9wZW5kYXRhLmF3cy9uYXNhLW5leC9yZWFkbWUuaHRtbFxuQ29udGFjdDogaHR0cHM6Ly9uZXgubmFzYS5nb3YvbmV4L2NvbnRhY3R1cy9cblVwZGF0ZUZyZXF1ZW5jeTogSW5mcmVxdWVudGx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbmFzYW5leF9ORVhfRENQMzAvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9uYXNhbmV4LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25hc2FuZXhfTkVYX0RDUDMwLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX25hc2FuZXhfTkVYX0RDUDMwJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19uYXNhbmV4X05FWF9EQ1AzMCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19uYXNhbmV4X05FWF9HRERQIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbmFzYW5leF9ORVhfR0REUC5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19uYXNhbmV4X05FWF9HRERQLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbmFzYW5leCBCdWNrZXQgd2l0aCBwcmVmaXg9TkVYLUdERFAvOiBOQVNBIE5FWDogR2xvYmFsIERhaWx5IERvd25zY2FsZWQgUHJvamVjdGlvbnMgKE5FWC1HRERQKSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5hc2FuZXggYnVja2V0IGF0IGh0dHBzOi8vbmFzYW5leC5zMy51cy13ZXN0LTIuYW1hem9uYXdzLmNvbS8gd2l0aCBwcmVmaXg9TkVYLUdERFAvIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5BU0EgTkVYXG5OYW1lMjogR2xvYmFsIERhaWx5IERvd25zY2FsZWQgUHJvamVjdGlvbnMgKE5FWC1HRERQKVxuRGVzY3JpcHRpb246IEEgY29sbGVjdGlvbiBvZiBFYXJ0aCBzY2llbmNlIGRhdGFzZXRzIG1haW50YWluZWQgYnkgTkFTQSwgaW5jbHVkaW5nIGNsaW1hdGUgY2hhbmdlIHByb2plY3Rpb25zIGFuZCBzYXRlbGxpdGUgaW1hZ2VzIG9mIHRoZSBFYXJ0aCdzIHN1cmZhY2UuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZG9jcy5vcGVuZGF0YS5hd3MvbmFzYS1uZXgvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IGh0dHBzOi8vbmV4Lm5hc2EuZ292L25leC9jb250YWN0dXMvXG5VcGRhdGVGcmVxdWVuY3k6IEluZnJlcXVlbnRseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25hc2FuZXhfTkVYX0dERFAvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9uYXNhbmV4LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25hc2FuZXhfTkVYX0dERFAucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfbmFzYW5leF9ORVhfR0REUCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbmFzYW5leF9ORVhfR0REUCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2dlZnNfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbm9hYV9nZWZzX3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ub2FhX2dlZnNfcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbm9hYS1nZWZzLXBkcyBCdWNrZXQ6IE5PQUEgR2xvYmFsIEVuc2VtYmxlIEZvcmVjYXN0IFN5c3RlbSAoR0VGUyk6IFByb2plY3QgZGF0YSBmaWxlcyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5vYWEtZ2Vmcy1wZHMgYnVja2V0IGF0IGh0dHBzOi8vbm9hYS1nZWZzLXBkcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogTk9BQSBHbG9iYWwgRW5zZW1ibGUgRm9yZWNhc3QgU3lzdGVtIChHRUZTKVxuTmFtZTI6IFByb2plY3QgZGF0YSBmaWxlc1xuRGVzY3JpcHRpb246IFRoZSBHbG9iYWwgRW5zZW1ibGUgRm9yZWNhc3QgU3lzdGVtIChHRUZTKSwgcHJldmlvdXNseSBrbm93biBhcyB0aGUgR0ZTIEdsb2JhbCBFTlNlbWJsZSAoR0VOUyksIGlzIGEgd2VhdGhlciBmb3JlY2FzdCBtb2RlbCBtYWRlIHVwIG9mIDIxIHNlcGFyYXRlIGZvcmVjYXN0cywgb3IgZW5zZW1ibGUgbWVtYmVycy4gIFRoZSBOYXRpb25hbCBDZW50ZXJzIGZvciBFbnZpcm9ubWVudGFsIFByZWRpY3Rpb24gKE5DRVApIHN0YXJ0ZWQgdGhlIEdFRlMgdG8gYWRkcmVzcyB0aGUgbmF0dXJlIG9mIHVuY2VydGFpbnR5IGluIHdlYXRoZXIgb2JzZXJ2YXRpb25zLCB3aGljaCBpcyB1c2VkIHRvIGluaXRpYWxpemUgd2VhdGhlciBmb3JlY2FzdCBtb2RlbHMuIFRoZSBHRUZTIGF0dGVtcHRzIHRvIHF1YW50aWZ5IHRoZSBhbW91bnQgb2YgdW5jZXJ0YWludHkgaW4gYSBmb3JlY2FzdCBieSBnZW5lcmF0aW5nIGFuIGVuc2VtYmxlIG9mIG11bHRpcGxlIGZvcmVjYXN0cywgZWFjaCBtaW51dGVseSBkaWZmZXJlbnQsIG9yIHBlcnR1cmJlZCwgZnJvbSB0aGUgb3JpZ2luYWwgb2JzZXJ2YXRpb25zLiBXaXRoIGdsb2JhbCBjb3ZlcmFnZSwgR0VGUyBpcyBwcm9kdWNlZCBmb3VyIHRpbWVzIGEgZGF5IHdpdGggd2VhdGhlciBmb3JlY2FzdHMgZ29pbmcgb3V0IHRvIDE2IGRheXMuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZG9jcy5vcGVuZGF0YS5hd3Mvbm9hYS1nZWZzLXBkcy9yZWFkbWUuaHRtbFxuQ29udGFjdDogRm9yIHF1ZXN0aW9ucyByZWdhcmRpbmcgZGF0YSBjb250ZW50IG9yIHF1YWxpdHksIHZpc2l0IFt0aGUgTk9BQSBHRUZTIHNpdGVdKGh0dHA6Ly93d3cuZW1jLm5jZXAubm9hYS5nb3YvaW5kZXgucGhwP2JyYW5jaD1HRUZTKS4gRm9yIGFueSBxdWVzdGlvbnMgcmVnYXJkaW5nIGRhdGEgZGVsaXZlcnkgbm90IGFzc29jaWF0ZWQgd2l0aCB0aGlzIHBsYXRmb3JtIG9yIGFueSBnZW5lcmFsIHF1ZXN0aW9ucyByZWdhcmRpbmcgdGhlIE5PQUEgQmlnIERhdGEgUHJvamVjdCwgZW1haWwgbm9hYS5iZHBAbm9hYS5nb3Zcbk1hbmFnZWRCeTogW05PQUFdKGh0dHBzOi8vd3d3Lm5vYWEuZ292LylcblVwZGF0ZUZyZXF1ZW5jeTogNCB0aW1lcyBhIGRheSwgZXZlcnkgNiBob3VycyBzdGFydGluZyBhdCBtaWRuaWdodC5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19ub2FhX2dlZnNfcGRzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvbm9hYS1nZWZzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25vYWFfZ2Vmc19wZHMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfbm9hYV9nZWZzX3BkcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbm9hYV9nZWZzX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2dmc19iZHBfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbm9hYV9nZnNfYmRwX3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ub2FhX2dmc19iZHBfcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbm9hYS1nZnMtYmRwLXBkcyBCdWNrZXQ6IE5PQUEgR2xvYmFsIEZvcmVjYXN0IFN5c3RlbSAoR0ZTKTogQSByb2xsaW5nIGZvdXItd2VlayBhcmNoaXZlIG9mIDAuMjUgR0ZTIGRhdGEiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBub2FhLWdmcy1iZHAtcGRzIGJ1Y2tldCBhdCBodHRwczovL25vYWEtZ2ZzLWJkcC1wZHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5PQUEgR2xvYmFsIEZvcmVjYXN0IFN5c3RlbSAoR0ZTKVxuTmFtZTI6IEEgcm9sbGluZyBmb3VyLXdlZWsgYXJjaGl2ZSBvZiAwLjI1IEdGUyBkYXRhXG5EZXNjcmlwdGlvbjogVGhlIEdsb2JhbCBGb3JlY2FzdCBTeXN0ZW0gKEdGUykgaXMgYSB3ZWF0aGVyIGZvcmVjYXN0IG1vZGVsIHByb2R1Y2VkIGJ5IHRoZSBOYXRpb25hbCBDZW50ZXJzIGZvciBFbnZpcm9ubWVudGFsIFByZWRpY3Rpb24gKE5DRVApLiBEb3plbnMgb2YgYXRtb3NwaGVyaWMgYW5kIGxhbmQtc29pbCB2YXJpYWJsZXMgYXJlIGF2YWlsYWJsZSB0aHJvdWdoIHRoaXMgZGF0YXNldCwgZnJvbSB0ZW1wZXJhdHVyZXMsIHdpbmRzLCBhbmQgcHJlY2lwaXRhdGlvbiB0byBzb2lsIG1vaXN0dXJlIGFuZCBhdG1vc3BoZXJpYyBvem9uZSBjb25jZW50cmF0aW9uLiBUaGUgZW50aXJlIGdsb2JlIGlzIGNvdmVyZWQgYnkgdGhlIEdGUyBhdCBhIGJhc2UgaG9yaXpvbnRhbCByZXNvbHV0aW9uIG9mIDE4IG1pbGVzICgyOCBraWxvbWV0ZXJzKSBiZXR3ZWVuIGdyaWQgcG9pbnRzLCB3aGljaCBpcyB1c2VkIGJ5IHRoZSBvcGVyYXRpb25hbCBmb3JlY2FzdGVycyB3aG8gcHJlZGljdCB3ZWF0aGVyIG91dCB0byAxNiBkYXlzIGluIHRoZSBmdXR1cmUuIEhvcml6b250YWwgcmVzb2x1dGlvbiBkcm9wcyB0byA0NCBtaWxlcyAoNzAga2lsb21ldGVycykgYmV0d2VlbiBncmlkIHBvaW50IGZvciBmb3JlY2FzdHMgYmV0d2VlbiBvbmUgd2VlayBhbmQgdHdvIHdlZWtzLiAqKkJvdGggdGhlIGN1cnJlbnQgdmVyc2lvbiBhbmQgdGhlIEZWMy1iYXNlZCBwYXJhbGxlbCB2ZXJzaW9uIG9mIHRoZSBHRlMgYmVpbmcgdGVzdGVkIHRvIGJlY29tZSB0aGUgbmV3IG9wZXJhdGlvbmFsIG1vZGVsIGF0IGEgZnV0dXJlIGRhdGUgYXJlIGF2YWlsYWJsZS4qKlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL3d3dy5uY2RjLm5vYWEuZ292L2RhdGEtYWNjZXNzL21vZGVsLWRhdGEvbW9kZWwtZGF0YXNldHMvZ2xvYmFsLWZvcmNhc3Qtc3lzdGVtLWdmc1xuQ29udGFjdDogRm9yIHF1ZXN0aW9ucyByZWdhcmRpbmcgZGF0YSBjb250ZW50IG9yIHF1YWxpdHksIHZpc2l0IFt0aGUgTk9BQSBHRlMgc2l0ZV0oaHR0cDovL3d3dy5lbWMubmNlcC5ub2FhLmdvdi9pbmRleC5waHA/YnJhbmNoPUdGUykuIEZvciBhbnkgcXVlc3Rpb25zIHJlZ2FyZGluZyBkYXRhIGRlbGl2ZXJ5IG5vdCBhc3NvY2lhdGVkIHdpdGggdGhpcyBwbGF0Zm9ybSBvciBhbnkgZ2VuZXJhbCBxdWVzdGlvbnMgcmVnYXJkaW5nIHRoZSBOT0FBIEJpZyBEYXRhIFByb2plY3QsIGVtYWlsIG5vYWEuYmRwQG5vYWEuZ292LlxuTWFuYWdlZEJ5OiBbTk9BQV0oaHR0cHM6Ly93d3cubm9hYS5nb3YvKVxuVXBkYXRlRnJlcXVlbmN5OiA0IHRpbWVzIGEgZGF5LCBldmVyeSA2IGhvdXJzIHN0YXJ0aW5nIGF0IG1pZG5pZ2h0XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbm9hYV9nZnNfYmRwX3Bkcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25vYWEtZ2ZzLWJkcC1wZHMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbm9hYV9nZnNfYmRwX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ub2FhX2dmc19iZHBfcGRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19ub2FhX2dmc19iZHBfcGRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25vYWFfZ2ZzX3BkcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25vYWFfZ2ZzX3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ub2FhX2dmc19wZHMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBub2FhLWdmcy1wZHMgQnVja2V0OiBVbmlkYXRhIE5PQUEgR2xvYmFsIEZvcmVjYXN0IFN5c3RlbSAoR0ZTKSBNb2RlbDogQSByb2xsaW5nIGZvdXItd2VlayBhcmNoaXZlIG9mIDAuMjUgZGVncmVlIEdGUyBkYXRhIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbm9hYS1nZnMtcGRzIGJ1Y2tldCBhdCBodHRwczovL25vYWEtZ2ZzLXBkcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogVW5pZGF0YSBOT0FBIEdsb2JhbCBGb3JlY2FzdCBTeXN0ZW0gKEdGUykgTW9kZWxcbk5hbWUyOiBBIHJvbGxpbmcgZm91ci13ZWVrIGFyY2hpdmUgb2YgMC4yNSBkZWdyZWUgR0ZTIGRhdGFcbkRlc2NyaXB0aW9uOiBUaGUgR2xvYmFsIEZvcmVjYXN0IFN5c3RlbSAoR0ZTKSBpcyBhIHdlYXRoZXIgZm9yZWNhc3QgbW9kZWwgcHJvZHVjZWQgYnkgdGhlIE5hdGlvbmFsIENlbnRlcnMgZm9yIEVudmlyb25tZW50YWwgUHJlZGljdGlvbiAoTkNFUCkuIERvemVucyBvZiBhdG1vc3BoZXJpYyBhbmQgbGFuZC1zb2lsIHZhcmlhYmxlcyBhcmUgYXZhaWxhYmxlIHRocm91Z2ggdGhpcyBkYXRhc2V0LCBmcm9tIHRlbXBlcmF0dXJlcywgd2luZHMsIGFuZCBwcmVjaXBpdGF0aW9uIHRvIHNvaWwgbW9pc3R1cmUgYW5kIGF0bW9zcGhlcmljIG96b25lIGNvbmNlbnRyYXRpb24uIFRoZSBlbnRpcmUgZ2xvYmUgaXMgY292ZXJlZCBieSB0aGUgR0ZTIGF0IGEgYmFzZSBob3Jpem9udGFsIHJlc29sdXRpb24gb2YgMTggbWlsZXMgKDI4IGtpbG9tZXRlcnMpIGJldHdlZW4gZ3JpZCBwb2ludHMsIHdoaWNoIGlzIHVzZWQgYnkgdGhlIG9wZXJhdGlvbmFsIGZvcmVjYXN0ZXJzIHdobyBwcmVkaWN0IHdlYXRoZXIgb3V0IHRvIDE2IGRheXMgaW4gdGhlIGZ1dHVyZS4gSG9yaXpvbnRhbCByZXNvbHV0aW9uIGRyb3BzIHRvIDQ0IG1pbGVzICg3MCBraWxvbWV0ZXJzKSBiZXR3ZWVuIGdyaWQgcG9pbnQgZm9yIGZvcmVjYXN0cyBiZXR3ZWVuIG9uZSB3ZWVrIGFuZCB0d28gd2Vla3MuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZG9jcy5vcGVuZGF0YS5hd3Mvbm9hYS1nZnMtcGRzL3JlYWRtZS5odG1sXG5Db250YWN0OiBodHRwczovL3d3dy5uY2RjLm5vYWEuZ292L2NvbnRhY3Rcbk1hbmFnZWRCeTogW1VuaWRhdGFdKGh0dHBzOi8vd3d3LnVuaWRhdGEudWNhci5lZHUvKVxuVXBkYXRlRnJlcXVlbmN5OiBFdmVyeSA2IGhvdXJzXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbm9hYV9nZnNfcGRzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvbm9hYS1nZnMtcGRzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25vYWFfZ2ZzX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ub2FhX2dmc19wZHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25vYWFfZ2ZzX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2dmc3BhcmFfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbm9hYV9nZnNwYXJhX3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ub2FhX2dmc3BhcmFfcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbm9hYS1nZnNwYXJhLXBkcyBCdWNrZXQ6IE5PQUEgR2xvYmFsIEZvcmVjYXN0IFN5c3RlbSAoR0ZTKTogQSByb2xsaW5nIGZvdXItd2VlayBhcmNoaXZlIG9mIDAuMjUgRlYzLWJhc2VkIHBhcmFsbGVsIHZlcnNpb24gb2YgdGhlIEdGUyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5vYWEtZ2ZzcGFyYS1wZHMgYnVja2V0IGF0IGh0dHBzOi8vbm9hYS1nZnNwYXJhLXBkcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogTk9BQSBHbG9iYWwgRm9yZWNhc3QgU3lzdGVtIChHRlMpXG5OYW1lMjogQSByb2xsaW5nIGZvdXItd2VlayBhcmNoaXZlIG9mIDAuMjUgRlYzLWJhc2VkIHBhcmFsbGVsIHZlcnNpb24gb2YgdGhlIEdGU1xuRGVzY3JpcHRpb246IFRoZSBHbG9iYWwgRm9yZWNhc3QgU3lzdGVtIChHRlMpIGlzIGEgd2VhdGhlciBmb3JlY2FzdCBtb2RlbCBwcm9kdWNlZCBieSB0aGUgTmF0aW9uYWwgQ2VudGVycyBmb3IgRW52aXJvbm1lbnRhbCBQcmVkaWN0aW9uIChOQ0VQKS4gRG96ZW5zIG9mIGF0bW9zcGhlcmljIGFuZCBsYW5kLXNvaWwgdmFyaWFibGVzIGFyZSBhdmFpbGFibGUgdGhyb3VnaCB0aGlzIGRhdGFzZXQsIGZyb20gdGVtcGVyYXR1cmVzLCB3aW5kcywgYW5kIHByZWNpcGl0YXRpb24gdG8gc29pbCBtb2lzdHVyZSBhbmQgYXRtb3NwaGVyaWMgb3pvbmUgY29uY2VudHJhdGlvbi4gVGhlIGVudGlyZSBnbG9iZSBpcyBjb3ZlcmVkIGJ5IHRoZSBHRlMgYXQgYSBiYXNlIGhvcml6b250YWwgcmVzb2x1dGlvbiBvZiAxOCBtaWxlcyAoMjgga2lsb21ldGVycykgYmV0d2VlbiBncmlkIHBvaW50cywgd2hpY2ggaXMgdXNlZCBieSB0aGUgb3BlcmF0aW9uYWwgZm9yZWNhc3RlcnMgd2hvIHByZWRpY3Qgd2VhdGhlciBvdXQgdG8gMTYgZGF5cyBpbiB0aGUgZnV0dXJlLiBIb3Jpem9udGFsIHJlc29sdXRpb24gZHJvcHMgdG8gNDQgbWlsZXMgKDcwIGtpbG9tZXRlcnMpIGJldHdlZW4gZ3JpZCBwb2ludCBmb3IgZm9yZWNhc3RzIGJldHdlZW4gb25lIHdlZWsgYW5kIHR3byB3ZWVrcy4gKipCb3RoIHRoZSBjdXJyZW50IHZlcnNpb24gYW5kIHRoZSBGVjMtYmFzZWQgcGFyYWxsZWwgdmVyc2lvbiBvZiB0aGUgR0ZTIGJlaW5nIHRlc3RlZCB0byBiZWNvbWUgdGhlIG5ldyBvcGVyYXRpb25hbCBtb2RlbCBhdCBhIGZ1dHVyZSBkYXRlIGFyZSBhdmFpbGFibGUuKipcblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly93d3cubmNkYy5ub2FhLmdvdi9kYXRhLWFjY2Vzcy9tb2RlbC1kYXRhL21vZGVsLWRhdGFzZXRzL2dsb2JhbC1mb3JjYXN0LXN5c3RlbS1nZnNcbkNvbnRhY3Q6IEZvciBxdWVzdGlvbnMgcmVnYXJkaW5nIGRhdGEgY29udGVudCBvciBxdWFsaXR5LCB2aXNpdCBbdGhlIE5PQUEgR0ZTIHNpdGVdKGh0dHA6Ly93d3cuZW1jLm5jZXAubm9hYS5nb3YvaW5kZXgucGhwP2JyYW5jaD1HRlMpLiBGb3IgYW55IHF1ZXN0aW9ucyByZWdhcmRpbmcgZGF0YSBkZWxpdmVyeSBub3QgYXNzb2NpYXRlZCB3aXRoIHRoaXMgcGxhdGZvcm0gb3IgYW55IGdlbmVyYWwgcXVlc3Rpb25zIHJlZ2FyZGluZyB0aGUgTk9BQSBCaWcgRGF0YSBQcm9qZWN0LCBlbWFpbCBub2FhLmJkcEBub2FhLmdvdi5cbk1hbmFnZWRCeTogW05PQUFdKGh0dHBzOi8vd3d3Lm5vYWEuZ292LylcblVwZGF0ZUZyZXF1ZW5jeTogNCB0aW1lcyBhIGRheSwgZXZlcnkgNiBob3VycyBzdGFydGluZyBhdCBtaWRuaWdodFxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25vYWFfZ2ZzcGFyYV9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9ub2FhLWdmcy1iZHAtcGRzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25vYWFfZ2ZzcGFyYV9wZHMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfbm9hYV9nZnNwYXJhX3BkcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbm9hYV9nZnNwYXJhX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2doY25fcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbm9hYV9naGNuX3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ub2FhX2doY25fcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbm9hYS1naGNuLXBkcyBCdWNrZXQ6IE5PQUEgR2xvYmFsIEhpc3RvcmljYWwgQ2xpbWF0b2xvZ3kgTmV0d29yayBEYWlseSAoR0hDTi1EKTogUHJvamVjdCBkYXRhIGZpbGVzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbm9hYS1naGNuLXBkcyBidWNrZXQgYXQgaHR0cHM6Ly9ub2FhLWdoY24tcGRzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBOT0FBIEdsb2JhbCBIaXN0b3JpY2FsIENsaW1hdG9sb2d5IE5ldHdvcmsgRGFpbHkgKEdIQ04tRClcbk5hbWUyOiBQcm9qZWN0IGRhdGEgZmlsZXNcbkRlc2NyaXB0aW9uOiBHbG9iYWwgSGlzdG9yaWNhbCBDbGltYXRvbG9neSBOZXR3b3JrIC0gRGFpbHkgaXMgYSBkYXRhc2V0IGZyb20gTk9BQSB0aGF0IGNvbnRhaW5zIGRhaWx5IG9ic2VydmF0aW9ucyBvdmVyIGdsb2JhbCBsYW5kIGFyZWFzLiBJdCBjb250YWlucyBzdGF0aW9uLWJhc2VkIG1lYXN1cmVtZW50cyBmcm9tIGxhbmQtYmFzZWQgc3RhdGlvbnMgd29ybGR3aWRlLCBhYm91dCB0d28gdGhpcmRzIG9mIHdoaWNoIGFyZSBmb3IgcHJlY2lwaXRhdGlvbiBtZWFzdXJlbWVudCBvbmx5LiBPdGhlciBtZXRlb3JvbG9naWNhbCBlbGVtZW50cyBpbmNsdWRlLCBidXQgYXJlIG5vdCBsaW1pdGVkIHRvLCBkYWlseSBtYXhpbXVtIGFuZCBtaW5pbXVtIHRlbXBlcmF0dXJlLCB0ZW1wZXJhdHVyZSBhdCB0aGUgdGltZSBvZiBvYnNlcnZhdGlvbiwgc25vd2ZhbGwgYW5kIHNub3cgZGVwdGguIEl0IGlzIGEgY29tcG9zaXRlIG9mIGNsaW1hdGUgcmVjb3JkcyBmcm9tIG51bWVyb3VzIHNvdXJjZXMgdGhhdCB3ZXJlIG1lcmdlZCB0b2dldGhlciBhbmQgc3ViamVjdGVkIHRvIGEgY29tbW9uIHN1aXRlIG9mIHF1YWxpdHkgYXNzdXJhbmNlIHJldmlld3MuICBTb21lIGRhdGEgYXJlIG1vcmUgdGhhbiAxNzUgeWVhcnMgb2xkLiBUaGUgZGF0YSBpcyBpbiBDU1YgZm9ybWF0LiBFYWNoIGZpbGUgY29ycmVzcG9uZHMgdG8gYSB5ZWFyIGZyb20gMTc2MyB0byBwcmVzZW50IGFuZCBpcyBuYW1lZCBhcyBzdWNoLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL25vYWEtZ2hjbi1wZHMvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IEZvciBxdWVzdGlvbnMgcmVnYXJkaW5nIGRhdGEgY29udGVudCBvciBxdWFsaXR5LCB2aXNpdCBbdGhlIE5PQUEgR0hDTiBzaXRlXShodHRwczovL3d3dy5uY2RjLm5vYWEuZ292L2doY24tZGFpbHktZGVzY3JpcHRpb24pLiBGb3IgYW55IHF1ZXN0aW9ucyByZWdhcmRpbmcgZGF0YSBkZWxpdmVyeSBub3QgYXNzb2NpYXRlZCB3aXRoIHRoaXMgcGxhdGZvcm0gb3IgYW55IGdlbmVyYWwgcXVlc3Rpb25zIHJlZ2FyZGluZyB0aGUgTk9BQSBCaWcgRGF0YSBQcm9qZWN0LCBlbWFpbCBub2FhLmJkcEBub2FhLmdvdlxuTWFuYWdlZEJ5OiBbTk9BQV0oaHR0cHM6Ly93d3cubm9hYS5nb3YvKVxuVXBkYXRlRnJlcXVlbmN5OiBEYWlseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25vYWFfZ2hjbl9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9ub2FhLWdoY24vIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbm9hYV9naGNuX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ub2FhX2doY25fcGRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19ub2FhX2doY25fcGRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25vYWFfZ2hlX3BkcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25vYWFfZ2hlX3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ub2FhX2doZV9wZHMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBub2FhLWdoZS1wZHMgQnVja2V0OiBOT0FBIEdsb2JhbCBIeWRybyBFc3RpbWF0b3IgKEdIRSk6IFByb2plY3QgZGF0YSBmaWxlcyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5vYWEtZ2hlLXBkcyBidWNrZXQgYXQgaHR0cHM6Ly9ub2FhLWdoZS1wZHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5PQUEgR2xvYmFsIEh5ZHJvIEVzdGltYXRvciAoR0hFKVxuTmFtZTI6IFByb2plY3QgZGF0YSBmaWxlc1xuRGVzY3JpcHRpb246IEdsb2JhbCBIeWRyby1Fc3RpbWF0b3IgcHJvdmlkZXMgYSBnbG9iYWwgbW9zYWljIGltYWdlcnkgb2YgcmFpbmZhbGwgZXN0aW1hdGVzIGZyb20gbXVsdGktZ2Vvc3RhdGlvbmFyeSBzYXRlbGxpdGVzLCB3aGljaCBjdXJyZW50bHkgaW5jbHVkZXMgR09FUy0xNiwgR09FUy0xNSwgTWV0ZW9zYXQtOCwgTWV0ZW9zYXQtMTEgYW5kIEhpbWF3YXJpLTguIFRoZSBHSEUgcHJvZHVjdHMgaW5jbHVkZTogSW5zdGFudGFuZW91cyByYWluIHJhdGUsIDEgaG91ciwgMyBob3VyLCA2IGhvdXIsIDI0IGhvdXIgYW5kIGFsc28gbXVsdGktZGF5IHJhaW5mYWxsIGFjY3VtdWxhdGlvbi5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly93d3cub3Nwby5ub2FhLmdvdi9Qcm9kdWN0cy9hdG1vc3BoZXJlL2doZS9pbmRleC5odG1sXG5Db250YWN0OiB8XG5NYW5hZ2VkQnk6IFtOT0FBXShodHRwczovL3d3dy5ub2FhLmdvdi8pXG5VcGRhdGVGcmVxdWVuY3k6IDE1IG1pbnV0ZS1pbnN0YW50YW5lb3VzXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbm9hYV9naGVfcGRzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvbm9hYS1naGUvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbm9hYV9naGVfcGRzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX25vYWFfZ2hlX3BkcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbm9hYV9naGVfcGRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25vYWFfZ2xvYmFsX2hvdXJseV9wZHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2dsb2JhbF9ob3VybHlfcGRzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX25vYWFfZ2xvYmFsX2hvdXJseV9wZHMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBub2FhLWdsb2JhbC1ob3VybHktcGRzIEJ1Y2tldDogTk9BQSBHbG9iYWwgSGlzdG9yaWNhbCBDbGltYXRvbG9neSBOZXR3b3JrIEhvdXJseSAoR0hDTi1IKTogUHJvamVjdCBkYXRhIGZpbGVzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbm9hYS1nbG9iYWwtaG91cmx5LXBkcyBidWNrZXQgYXQgaHR0cHM6Ly9ub2FhLWdsb2JhbC1ob3VybHktcGRzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBOT0FBIEdsb2JhbCBIaXN0b3JpY2FsIENsaW1hdG9sb2d5IE5ldHdvcmsgSG91cmx5IChHSENOLUgpXG5OYW1lMjogUHJvamVjdCBkYXRhIGZpbGVzXG5EZXNjcmlwdGlvbjogR2xvYmFsIEhpc3RvcmljYWwgQ2xpbWF0b2xvZ3kgTmV0d29yayAtIEhvdXJseSBpcyBhIGRhdGFzZXQgZnJvbSBOT0FBIHRoYXQgY29udGFpbnMgZGFpbHkgb2JzZXJ2YXRpb25zIG92ZXIgZ2xvYmFsIGxhbmQgYXJlYXMuIEl0IGNvbnRhaW5zIHN0YXRpb24tYmFzZWQgbWVhc3VyZW1lbnRzIGZyb20gbGFuZC1iYXNlZCBzdGF0aW9ucyB3b3JsZHdpZGUsIGFib3V0IHR3byB0aGlyZHMgb2Ygd2hpY2ggYXJlIGZvciBwcmVjaXBpdGF0aW9uIG1lYXN1cmVtZW50IG9ubHkuIE90aGVyIG1ldGVvcm9sb2dpY2FsIGVsZW1lbnRzIGluY2x1ZGUsIGJ1dCBhcmUgbm90IGxpbWl0ZWQgdG8sIGRhaWx5IG1heGltdW0gYW5kIG1pbmltdW0gdGVtcGVyYXR1cmUsIHRlbXBlcmF0dXJlIGF0IHRoZSB0aW1lIG9mIG9ic2VydmF0aW9uLCBzbm93ZmFsbCBhbmQgc25vdyBkZXB0aC4gSXQgaXMgYSBjb21wb3NpdGUgb2YgY2xpbWF0ZSByZWNvcmRzIGZyb20gbnVtZXJvdXMgc291cmNlcyB0aGF0IHdlcmUgbWVyZ2VkIHRvZ2V0aGVyIGFuZCBzdWJqZWN0ZWQgdG8gYSBjb21tb24gc3VpdGUgb2YgcXVhbGl0eSBhc3N1cmFuY2UgcmV2aWV3cy4gIFNvbWUgZGF0YSBhcmUgbW9yZSB0aGFuIDE3NSB5ZWFycyBvbGQuIFRoZSBkYXRhIGlzIGluIENTViBmb3JtYXQuIEVhY2ggZmlsZSBjb3JyZXNwb25kcyB0byBhIHllYXIgZnJvbSAxNzYzIHRvIHByZXNlbnQgYW5kIGlzIG5hbWVkIGFzIHN1Y2guXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vd3d3Lm5jZWkubm9hYS5nb3YvZGF0YS9nbG9iYWwtaG91cmx5L2RvYy9pc2QtZm9ybWF0LWRvY3VtZW50LnBkZlxuQ29udGFjdDogRm9yIHF1ZXN0aW9ucyByZWdhcmRpbmcgZGF0YSBjb250ZW50IG9yIHF1YWxpdHksIHZpc2l0IFt0aGUgTk9BQSBHSENOIHNpdGVdKGh0dHBzOi8vd3d3Lm5jZWkubm9hYS5nb3YvZGF0YS9nbG9iYWwtaG91cmx5L2RvYy9pc2QtZm9ybWF0LWRvY3VtZW50LnBkZikuIEZvciBhbnkgcXVlc3Rpb25zIHJlZ2FyZGluZyBkYXRhIGRlbGl2ZXJ5IG5vdCBhc3NvY2lhdGVkIHdpdGggdGhpcyBwbGF0Zm9ybSBvciBhbnkgZ2VuZXJhbCBxdWVzdGlvbnMgcmVnYXJkaW5nIHRoZSBOT0FBIEJpZyBEYXRhIFByb2plY3QsIGVtYWlsIG5vYWEuYmRwQG5vYWEuZ292XG5NYW5hZ2VkQnk6IFtOT0FBXShodHRwczovL3d3dy5ub2FhLmdvdi8pXG5VcGRhdGVGcmVxdWVuY3k6IGRhaWx5IChNYW51YWxseSlcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19ub2FhX2dsb2JhbF9ob3VybHlfcGRzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvbm9hYS1naGNuaC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19ub2FhX2dsb2JhbF9ob3VybHlfcGRzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX25vYWFfZ2xvYmFsX2hvdXJseV9wZHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25vYWFfZ2xvYmFsX2hvdXJseV9wZHMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzTm9hYUdvZXMxNiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM05vYWFHb2VzMTYuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzTm9hYUdvZXMxNi8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG5vYWEtZ29lczE2IEJ1Y2tldCIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5vYWEtZ29lczE2IGJ1Y2tldCBhdCBodHRwczovL25vYWEtZ29lczE2LnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIEdPRVMgc2F0ZWxsaXRlcyAoR09FUy0xNiAmIEdPRVMtMTcpIHByb3ZpZGUgY29udGludW91cyB3ZWF0aGVyIGltYWdlcnkgYW5kIG1vbml0b3Jpbmcgb2YgbWV0ZW9yb2xvZ2ljYWwgYW5kIHNwYWNlIGVudmlyb25tZW50IGRhdGEgYWNyb3NzIE5vcnRoIEFtZXJpY2EuIEdPRVMgc2F0ZWxsaXRlcyBwcm92aWRlIHRoZSBraW5kIG9mIGNvbnRpbnVvdXMgbW9uaXRvcmluZyBuZWNlc3NhcnkgZm9yIGludGVuc2l2ZSBkYXRhIGFuYWx5c2lzLiBUaGV5IGhvdmVyIGNvbnRpbnVvdXNseSBvdmVyIG9uZSBwb3NpdGlvbiBvbiB0aGUgc3VyZmFjZS4gVGhlIHNhdGVsbGl0ZXMgb3JiaXQgaGlnaCBlbm91Z2ggdG8gYWxsb3cgZm9yIGEgZnVsbC1kaXNjIHZpZXcgb2YgdGhlIEVhcnRoLiBCZWNhdXNlIHRoZXkgc3RheSBhYm92ZSBhIGZpeGVkIHNwb3Qgb24gdGhlIHN1cmZhY2UsIHRoZXkgcHJvdmlkZSBhIGNvbnN0YW50IHZpZ2lsIGZvciB0aGUgYXRtb3NwaGVyaWMgXCJ0cmlnZ2Vyc1wiIGZvciBzZXZlcmUgd2VhdGhlciBjb25kaXRpb25zIHN1Y2ggYXMgdG9ybmFkb2VzLCBmbGFzaCBmbG9vZHMsIGhhaWxzdG9ybXMsIGFuZCBodXJyaWNhbmVzLiBXaGVuIHRoZXNlIGNvbmRpdGlvbnMgZGV2ZWxvcCwgdGhlIEdPRVMgc2F0ZWxsaXRlcyBhcmUgYWJsZSB0byBtb25pdG9yIHN0b3JtIGRldmVsb3BtZW50IGFuZCB0cmFjayB0aGVpciBtb3ZlbWVudHMuXG5cblVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlciB0aGUgZmlsZXMgaW4gYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNOb2FhR29lczE2L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvbm9hYS1nb2VzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM05vYWFHb2VzMTYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzTm9hYUdvZXMxNiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIiwgImF3c1MzTm9hYUdvZXMxNiJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2dvZXMxNiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25vYWFfZ29lczE2LmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX25vYWFfZ29lczE2LyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbm9hYS1nb2VzMTYgQnVja2V0OiBHT0VTIG9uIEFXUzogR09FUy0xNiBpbWFnZXJ5IGFuZCBtZXRhZGF0YSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5vYWEtZ29lczE2IGJ1Y2tldCBhdCBodHRwczovL25vYWEtZ29lczE2LnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBHT0VTIG9uIEFXU1xuTmFtZTI6IEdPRVMtMTYgaW1hZ2VyeSBhbmQgbWV0YWRhdGFcbkRlc2NyaXB0aW9uOiBHT0VTIHNhdGVsbGl0ZXMgKEdPRVMtMTYgJiBHT0VTLTE3KSBwcm92aWRlIGNvbnRpbnVvdXMgd2VhdGhlciBpbWFnZXJ5IGFuZCBtb25pdG9yaW5nIG9mIG1ldGVvcm9sb2dpY2FsIGFuZCBzcGFjZSBlbnZpcm9ubWVudCBkYXRhIGFjcm9zcyBOb3J0aCBBbWVyaWNhLiBHT0VTIHNhdGVsbGl0ZXMgcHJvdmlkZSB0aGUga2luZCBvZiBjb250aW51b3VzIG1vbml0b3JpbmcgbmVjZXNzYXJ5IGZvciBpbnRlbnNpdmUgZGF0YSBhbmFseXNpcy4gVGhleSBob3ZlciBjb250aW51b3VzbHkgb3ZlciBvbmUgcG9zaXRpb24gb24gdGhlIHN1cmZhY2UuIFRoZSBzYXRlbGxpdGVzIG9yYml0IGhpZ2ggZW5vdWdoIHRvIGFsbG93IGZvciBhIGZ1bGwtZGlzYyB2aWV3IG9mIHRoZSBFYXJ0aC4gQmVjYXVzZSB0aGV5IHN0YXkgYWJvdmUgYSBmaXhlZCBzcG90IG9uIHRoZSBzdXJmYWNlLCB0aGV5IHByb3ZpZGUgYSBjb25zdGFudCB2aWdpbCBmb3IgdGhlIGF0bW9zcGhlcmljIFwidHJpZ2dlcnNcIiBmb3Igc2V2ZXJlIHdlYXRoZXIgY29uZGl0aW9ucyBzdWNoIGFzIHRvcm5hZG9lcywgZmxhc2ggZmxvb2RzLCBoYWlsc3Rvcm1zLCBhbmQgaHVycmljYW5lcy4gV2hlbiB0aGVzZSBjb25kaXRpb25zIGRldmVsb3AsIHRoZSBHT0VTIHNhdGVsbGl0ZXMgYXJlIGFibGUgdG8gbW9uaXRvciBzdG9ybSBkZXZlbG9wbWVudCBhbmQgdHJhY2sgdGhlaXIgbW92ZW1lbnRzLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL25vYWEtZ29lczE2L2NpY3MtcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IG5vYWEuYmRwQG5vYWEuZ292XG5NYW5hZ2VkQnk6IFtOT0FBXShodHRwczovL3d3dy5ub2FhLmdvdi8pXG5VcGRhdGVGcmVxdWVuY3k6IE5ldyBkYXRhIGlzIGFkZGVkIGFzIHNvb24gYXMgaXQncyBhdmFpbGFibGVcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19ub2FhX2dvZXMxNi9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25vYWEtZ29lcy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19ub2FhX2dvZXMxNi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ub2FhX2dvZXMxNiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbm9hYV9nb2VzMTYiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbm9hYV9nb2VzMTciLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2dvZXMxNy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ub2FhX2dvZXMxNy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG5vYWEtZ29lczE3IEJ1Y2tldDogR09FUyBvbiBBV1M6IEdPRVMtMTcgaW1hZ2VyeSBhbmQgbWV0YWRhdGEiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBub2FhLWdvZXMxNyBidWNrZXQgYXQgaHR0cHM6Ly9ub2FhLWdvZXMxNy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogR09FUyBvbiBBV1Ncbk5hbWUyOiBHT0VTLTE3IGltYWdlcnkgYW5kIG1ldGFkYXRhXG5EZXNjcmlwdGlvbjogR09FUyBzYXRlbGxpdGVzIChHT0VTLTE2ICYgR09FUy0xNykgcHJvdmlkZSBjb250aW51b3VzIHdlYXRoZXIgaW1hZ2VyeSBhbmQgbW9uaXRvcmluZyBvZiBtZXRlb3JvbG9naWNhbCBhbmQgc3BhY2UgZW52aXJvbm1lbnQgZGF0YSBhY3Jvc3MgTm9ydGggQW1lcmljYS4gR09FUyBzYXRlbGxpdGVzIHByb3ZpZGUgdGhlIGtpbmQgb2YgY29udGludW91cyBtb25pdG9yaW5nIG5lY2Vzc2FyeSBmb3IgaW50ZW5zaXZlIGRhdGEgYW5hbHlzaXMuIFRoZXkgaG92ZXIgY29udGludW91c2x5IG92ZXIgb25lIHBvc2l0aW9uIG9uIHRoZSBzdXJmYWNlLiBUaGUgc2F0ZWxsaXRlcyBvcmJpdCBoaWdoIGVub3VnaCB0byBhbGxvdyBmb3IgYSBmdWxsLWRpc2MgdmlldyBvZiB0aGUgRWFydGguIEJlY2F1c2UgdGhleSBzdGF5IGFib3ZlIGEgZml4ZWQgc3BvdCBvbiB0aGUgc3VyZmFjZSwgdGhleSBwcm92aWRlIGEgY29uc3RhbnQgdmlnaWwgZm9yIHRoZSBhdG1vc3BoZXJpYyBcInRyaWdnZXJzXCIgZm9yIHNldmVyZSB3ZWF0aGVyIGNvbmRpdGlvbnMgc3VjaCBhcyB0b3JuYWRvZXMsIGZsYXNoIGZsb29kcywgaGFpbHN0b3JtcywgYW5kIGh1cnJpY2FuZXMuIFdoZW4gdGhlc2UgY29uZGl0aW9ucyBkZXZlbG9wLCB0aGUgR09FUyBzYXRlbGxpdGVzIGFyZSBhYmxlIHRvIG1vbml0b3Igc3Rvcm0gZGV2ZWxvcG1lbnQgYW5kIHRyYWNrIHRoZWlyIG1vdmVtZW50cy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLm9wZW5kYXRhLmF3cy9ub2FhLWdvZXMxNi9jaWNzLXJlYWRtZS5odG1sXG5Db250YWN0OiBub2FhLmJkcEBub2FhLmdvdlxuTWFuYWdlZEJ5OiBbTk9BQV0oaHR0cHM6Ly93d3cubm9hYS5nb3YvKVxuVXBkYXRlRnJlcXVlbmN5OiBOZXcgZGF0YSBpcyBhZGRlZCBhcyBzb29uIGFzIGl0J3MgYXZhaWxhYmxlXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbm9hYV9nb2VzMTcvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9ub2FhLWdvZXMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbm9hYV9nb2VzMTcucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfbm9hYV9nb2VzMTcmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25vYWFfZ29lczE3Il0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25vYWFfaHJycl9wZHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2hycnJfcGRzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX25vYWFfaHJycl9wZHMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBub2FhLWhycnItcGRzIEJ1Y2tldDogTk9BQSBIaWdoLVJlc29sdXRpb24gUmFwaWQgUmVmcmVzaCAoSFJSUikgTW9kZWw6IEEgcm9sbGluZyBvbmUtd2VlayBhcmNoaXZlIG9mIEhSUlIgZGF0YS4iLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBub2FhLWhycnItcGRzIGJ1Y2tldCBhdCBodHRwczovL25vYWEtaHJyci1wZHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5PQUEgSGlnaC1SZXNvbHV0aW9uIFJhcGlkIFJlZnJlc2ggKEhSUlIpIE1vZGVsXG5OYW1lMjogQSByb2xsaW5nIG9uZS13ZWVrIGFyY2hpdmUgb2YgSFJSUiBkYXRhLlxuRGVzY3JpcHRpb246IFRoZSBIUlJSIGlzIGEgTk9BQSByZWFsLXRpbWUgMy1rbSByZXNvbHV0aW9uLCBob3VybHkgdXBkYXRlZCwgY2xvdWQtcmVzb2x2aW5nLCBjb252ZWN0aW9uLWFsbG93aW5nIGF0bW9zcGhlcmljIG1vZGVsLCBpbml0aWFsaXplZCBieSAza20gZ3JpZHMgd2l0aCAza20gcmFkYXIgYXNzaW1pbGF0aW9uLiBSYWRhciBkYXRhIGlzIGFzc2ltaWxhdGVkIGluIHRoZSBIUlJSIGV2ZXJ5IDE1IG1pbiBvdmVyIGEgMS1oIHBlcmlvZCBhZGRpbmcgZnVydGhlciBkZXRhaWwgdG8gdGhhdCBwcm92aWRlZCBieSB0aGUgaG91cmx5IGRhdGEgYXNzaW1pbGF0aW9uIGZyb20gdGhlIDEza20gcmFkYXItZW5oYW5jZWQgUmFwaWQgUmVmcmVzaC5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLm9wZW5kYXRhLmF3cy9ub2FhLWhycnItcGRzL3JlYWRtZS5odG1sXG5Db250YWN0OiBodHRwczovL3JhcGlkcmVmcmVzaC5ub2FhLmdvdi9ocnJyL1xuTWFuYWdlZEJ5OiBbVW5pZGF0YV0oaHR0cHM6Ly93d3cudW5pZGF0YS51Y2FyLmVkdS8pXG5VcGRhdGVGcmVxdWVuY3k6IEhvdXJseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25vYWFfaHJycl9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9ub2FhLWhycnItcGRzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25vYWFfaHJycl9wZHMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfbm9hYV9ocnJyX3BkcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbm9hYV9ocnJyX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2lzZF9wZHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX2lzZF9wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbm9hYV9pc2RfcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbm9hYS1pc2QtcGRzIEJ1Y2tldDogTk9BQSBJbnRlZ3JhdGVkIFN1cmZhY2UgRGF0YWJhc2UgKElTRCk6IFByb2plY3QgZGF0YSBmaWxlcyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5vYWEtaXNkLXBkcyBidWNrZXQgYXQgaHR0cHM6Ly9ub2FhLWlzZC1wZHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5PQUEgSW50ZWdyYXRlZCBTdXJmYWNlIERhdGFiYXNlIChJU0QpXG5OYW1lMjogUHJvamVjdCBkYXRhIGZpbGVzXG5EZXNjcmlwdGlvbjogVGhlIEludGVncmF0ZWQgU3VyZmFjZSBEYXRhYmFzZSAoSVNEKSBjb25zaXN0cyBvZiBnbG9iYWwgaG91cmx5IGFuZCBzeW5vcHRpYyBvYnNlcnZhdGlvbnMgY29tcGlsZWQgZnJvbSBudW1lcm91cyBzb3VyY2VzIGludG8gYSBnemlwcGVkIGZpeGVkIHdpZHRoIGZvcm1hdC4gSVNEIHdhcyBkZXZlbG9wZWQgYXMgYSBqb2ludCBhY3Rpdml0eSB3aXRoaW4gQXNoZXZpbGxlJ3MgRmVkZXJhbCBDbGltYXRlIENvbXBsZXguIFRoZSBkYXRhYmFzZSBpbmNsdWRlcyBvdmVyIDM1LDAwMCBzdGF0aW9ucyB3b3JsZHdpZGUsIHdpdGggc29tZSBoYXZpbmcgZGF0YSBhcyBmYXIgYmFjayBhcyAxOTAxLCB0aG91Z2ggdGhlIGRhdGEgc2hvdyBhIHN1YnN0YW50aWFsIGluY3JlYXNlIGluIHZvbHVtZSBpbiB0aGUgMTk0MHMgYW5kIGFnYWluIGluIHRoZSBlYXJseSAxOTcwcy4gQ3VycmVudGx5LCB0aGVyZSBhcmUgb3ZlciAxNCwwMDAgXCJhY3RpdmVcIiBzdGF0aW9ucyB1cGRhdGVkIGRhaWx5IGluIHRoZSBkYXRhYmFzZS4gVGhlIHRvdGFsIHVuY29tcHJlc3NlZCBkYXRhIHZvbHVtZSBpcyBhcm91bmQgNjAwIGdpZ2FieXRlczsgaG93ZXZlciwgaXQgY29udGludWVzIHRvIGdyb3cgYXMgbW9yZSBkYXRhIGFyZSBhZGRlZC4gSVNEIGluY2x1ZGVzIG51bWVyb3VzIHBhcmFtZXRlcnMgc3VjaCBhcyB3aW5kIHNwZWVkIGFuZCBkaXJlY3Rpb24sIHdpbmQgZ3VzdCwgdGVtcGVyYXR1cmUsIGRldyBwb2ludCwgY2xvdWQgZGF0YSwgc2VhIGxldmVsIHByZXNzdXJlLCBhbHRpbWV0ZXIgc2V0dGluZywgc3RhdGlvbiBwcmVzc3VyZSwgcHJlc2VudCB3ZWF0aGVyLCB2aXNpYmlsaXR5LCBwcmVjaXBpdGF0aW9uIGFtb3VudHMgZm9yIHZhcmlvdXMgdGltZSBwZXJpb2RzLCBzbm93IGRlcHRoLCBhbmQgdmFyaW91cyBvdGhlciBlbGVtZW50cyBhcyBvYnNlcnZlZCBieSBlYWNoIHN0YXRpb24uXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vd3d3Lm5jZWkubm9hYS5nb3YvZGF0YS9nbG9iYWwtaG91cmx5L2RvYy9pc2QtZm9ybWF0LWRvY3VtZW50LnBkZlxuQ29udGFjdDogfFxuTWFuYWdlZEJ5OiBbTk9BQV0oaHR0cHM6Ly93d3cubm9hYS5nb3YvKVxuVXBkYXRlRnJlcXVlbmN5OiBEYWlseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25vYWFfaXNkX3Bkcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25vYWEtaXNkLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25vYWFfaXNkX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ub2FhX2lzZF9wZHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25vYWFfaXNkX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX25leHJhZF9sZXZlbDIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX25leHJhZF9sZXZlbDIuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbm9hYV9uZXhyYWRfbGV2ZWwyLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbm9hYS1uZXhyYWQtbGV2ZWwyIEJ1Y2tldDogTkVYUkFEIG9uIEFXUzogTkVYUkFEIExldmVsIElJIGFyY2hpdmUgZGF0YSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5vYWEtbmV4cmFkLWxldmVsMiBidWNrZXQgYXQgaHR0cHM6Ly9ub2FhLW5leHJhZC1sZXZlbDIuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5FWFJBRCBvbiBBV1Ncbk5hbWUyOiBORVhSQUQgTGV2ZWwgSUkgYXJjaGl2ZSBkYXRhXG5EZXNjcmlwdGlvbjogUmVhbC10aW1lIGFuZCBhcmNoaXZhbCBkYXRhIGZyb20gdGhlIE5leHQgR2VuZXJhdGlvbiBXZWF0aGVyIFJhZGFyIChORVhSQUQpIG5ldHdvcmsuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZG9jcy5vcGVuZGF0YS5hd3Mvbm9hYS1uZXhyYWQvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IG5vYWEuYmRwQG5vYWEuZ292XG5NYW5hZ2VkQnk6IFtOT0FBXShodHRwczovL3d3dy5ub2FhLmdvdi8pXG5VcGRhdGVGcmVxdWVuY3k6IE5ldyBMZXZlbCBJSSBkYXRhIGlzIGFkZGVkIGFzIHNvb24gYXMgaXQgaXMgYXZhaWxhYmxlLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25vYWFfbmV4cmFkX2xldmVsMi9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25vYWEtbmV4cmFkLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25vYWFfbmV4cmFkX2xldmVsMi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ub2FhX25leHJhZF9sZXZlbDImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25vYWFfbmV4cmFkX2xldmVsMiJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX253bV9wZHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ub2FhX253bV9wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbm9hYV9ud21fcGRzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbm9hYS1ud20tcGRzIEJ1Y2tldDogTk9BQSBOYXRpb25hbCBXYXRlciBNb2RlbCBTaG9ydC1SYW5nZSBGb3JlY2FzdDogQSByb2xsaW5nIGZvdXIgd2VlayBhcmNoaXZlIG9mIE5XTSBkYXRhLiIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG5vYWEtbndtLXBkcyBidWNrZXQgYXQgaHR0cHM6Ly9ub2FhLW53bS1wZHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5PQUEgTmF0aW9uYWwgV2F0ZXIgTW9kZWwgU2hvcnQtUmFuZ2UgRm9yZWNhc3Rcbk5hbWUyOiBBIHJvbGxpbmcgZm91ciB3ZWVrIGFyY2hpdmUgb2YgTldNIGRhdGEuXG5EZXNjcmlwdGlvbjogVGhlIE5hdGlvbmFsIFdhdGVyIE1vZGVsIChOV00pIGlzIGEgd2F0ZXIgcmVzb3VyY2VzIG1vZGVsIHRoYXQgc2ltdWxhdGVzIGFuZCBmb3JlY2FzdHMgd2F0ZXIgYnVkZ2V0IHZhcmlhYmxlcywgaW5jbHVkaW5nIHNub3dwYWNrLCBldmFwb3RyYW5zcGlyYXRpb24sIHNvaWwgbW9pc3R1cmUgYW5kIHN0cmVhbWZsb3csIG92ZXIgdGhlIGVudGlyZSBjb250aW5lbnRhbCBVbml0ZWQgU3RhdGVzIChDT05VUykuIFRoZSBtb2RlbCwgbGF1bmNoZWQgaW4gQXVndXN0IDIwMTYsIGlzIGRlc2lnbmVkIHRvIGltcHJvdmUgdGhlIGFiaWxpdHkgb2YgTk9BQSB0byBtZWV0IHRoZSBuZWVkcyBvZiBpdHMgc3Rha2Vob2xkZXJzIChmb3JlY2FzdGVycywgZW1lcmdlbmN5IG1hbmFnZXJzLCByZXNlcnZvaXIgb3BlcmF0b3JzLCBmaXJzdCByZXNwb25kZXJzLCByZWNyZWF0aW9uaXN0cywgZmFybWVycywgYmFyZ2Ugb3BlcmF0b3JzLCBhbmQgZWNvc3lzdGVtIGFuZCBmbG9vZHBsYWluIG1hbmFnZXJzKSBieSBwcm92aWRpbmcgZXhwYW5kZWQgYWNjdXJhY3ksIGRldGFpbCwgYW5kIGZyZXF1ZW5jeSBvZiB3YXRlciBpbmZvcm1hdGlvbi4gSXQgaXMgb3BlcmF0ZWQgYnkgTk9BQVx1MjAxOXMgT2ZmaWNlIG9mIFdhdGVyIFByZWRpY3Rpb24uIFRoaXMgYnVja2V0IGNvbnRhaW5zIGEgZm91ci13ZWVrIHJvbGxvdmVyIG9mIHRoZSBTaG9ydCBSYW5nZSBGb3JlY2FzdCBtb2RlbCBvdXRwdXQgYW5kIHRoZSBjb3JyZXNwb25kaW5nIGZvcmNpbmcgZGF0YSBmb3IgdGhlIG1vZGVsLiBUaGUgbW9kZWwgaXMgZm9yY2VkIHdpdGggbWV0ZW9yb2xvZ2ljYWwgZGF0YSBmcm9tIHRoZSBIaWdoIFJlc29sdXRpb24gUmFwaWQgUmVmcmVzaCAoSFJSUikgYW5kIHRoZSBSYXBpZCBSZWZyZXNoIChSQVApIG1vZGVscy4gVGhlIFNob3J0IFJhbmdlIEZvcmVjYXN0IGNvbmZpZ3VyYXRpb24gY3ljbGVzIGhvdXJseSBhbmQgcHJvZHVjZXMgaG91cmx5IGRldGVybWluaXN0aWMgZm9yZWNhc3RzIG9mIHN0cmVhbWZsb3cgYW5kIGh5ZHJvbG9naWMgc3RhdGVzIG91dCB0byAxOCBob3Vycy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLm9wZW5kYXRhLmF3cy9ub2FhLW53bS1wZHMvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IHxcbk1hbmFnZWRCeTogW05PQUFdKGh0dHBzOi8vd3d3Lm5vYWEuZ292LylcblVwZGF0ZUZyZXF1ZW5jeTogRGFpbHlcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19ub2FhX253bV9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9ub2FhLW53bS1wZHMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfbm9hYV9ud21fcGRzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX25vYWFfbndtX3BkcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbm9hYV9ud21fcGRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX25vYWFfbndtX3JldHJvX3YyXzBfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbm9hYV9ud21fcmV0cm9fdjJfMF9wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfbm9hYV9ud21fcmV0cm9fdjJfMF9wZHMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBub2FhLW53bS1yZXRyby12Mi4wLXBkcyBCdWNrZXQ6IE5PQUEgTmF0aW9uYWwgV2F0ZXIgTW9kZWwgUmVhbmFseXNpczogVGhlIGNvbXBsZXRlIGFyY2hpdmUgb2YgTldNIGRhdGEgdmVyc2lvbiAyLjAuIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbm9hYS1ud20tcmV0cm8tdjIuMC1wZHMgYnVja2V0IGF0IGh0dHBzOi8vbm9hYS1ud20tcmV0cm8tdjIuMC1wZHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE5PQUEgTmF0aW9uYWwgV2F0ZXIgTW9kZWwgUmVhbmFseXNpc1xuTmFtZTI6IFRoZSBjb21wbGV0ZSBhcmNoaXZlIG9mIE5XTSBkYXRhIHZlcnNpb24gMi4wLlxuRGVzY3JpcHRpb246IFRoZSBOT0FBIE5hdGlvbmFsIFdhdGVyIE1vZGVsIFJlYW5hbHlzaXMgZGF0YXNldCBjb250YWlucyBvdXRwdXQgZnJvbSBtdWx0aS1kZWNhZGUgcmV0cm9zcGVjdGl2ZSBzaW11bGF0aW9ucy4gVGhlc2Ugc2ltdWxhdGlvbnMgdXNlZCBvYnNlcnZlZCByYWluZmFsbCBhcyBpbnB1dCBhbmQgaW5nZXN0ZWQgb3RoZXIgcmVxdWlyZWQgbWV0ZW9yb2xvZ2ljYWwgaW5wdXQgZmllbGRzIGZyb20gYSB3ZWF0aGVyIHJlYW5hbHlzaXMgZGF0YXNldC4gVGhlIG91dHB1dCBmcmVxdWVuY3kgYW5kIGZpZWxkcyBhdmFpbGFibGUgaW4gdGhpcyBoaXN0b3JpY2FsIE5XTSBkYXRhc2V0IGRpZmZlciBmcm9tIHRob3NlIGNvbnRhaW5lZCBpbiB0aGUgcmVhbC10aW1lIGZvcmVjYXN0IG1vZGVsLiBPbmUgYXBwbGljYXRpb24gb2YgdGhpcyBkYXRhc2V0IGlzIHRvIHByb3ZpZGUgaGlzdG9yaWNhbCBjb250ZXh0IHRvIGN1cnJlbnQgcmVhbC10aW1lIHN0cmVhbWZsb3csIHNvaWwgbW9pc3R1cmUgYW5kIHNub3dwYWNrIE5XTSBjb25kaXRpb25zLiBUaGUgcmVhbmFseXNpcyBkYXRhIGNhbiBiZSB1c2VkIHRvIGluZmVyIGZsb3cgZnJlcXVlbmNpZXMgYW5kIHBlcmZvcm0gdGVtcG9yYWwgYW5hbHlzZXMgd2l0aCBob3VybHkgc3RyZWFtZmxvdyBvdXRwdXQgYW5kIDMtaG91cmx5IGxhbmQgc3VyZmFjZSBvdXRwdXQuIFRoZSBsb25nLXRlcm0gZGF0YXNldCBjYW4gYWxzbyBiZSB1c2VkIGluIHRoZSBkZXZlbG9wbWVudCBvZiBlbmQgdXNlciBhcHBsaWNhdGlvbnMgd2hpY2ggcmVxdWlyZSBhIGxvbmcgYmFzZWxpbmUgb2YgZGF0YSBmb3Igc3lzdGVtIHRyYWluaW5nIG9yIHZlcmlmaWNhdGlvbiBwdXJwb3Nlcy4gVGhpcyBkYXRhc2V0IGNvbnRhaW5zIG91dHB1dCBmcm9tIHR3byByZXRyb3NwZWN0aXZlIHNpbXVsYXRpb25zLiAgQ3VycmVudGx5IHRoZXJlIGFyZSB0d28gdmVyc2lvbnMgb2YgdGhlIGRhdGFzZXQ6IEEgMjUteWVhciAoSmFudWFyeSAxOTkzIHRocm91Z2ggRGVjZW1iZXIgMjAxNykgcmV0cm9zcGVjdGl2ZSBzaW11bGF0aW9uIHVzaW5nIHZlcnNpb24gMS4yIG9mIHRoZSBOYXRpb25hbCBXYXRlciBNb2RlbCwgYW5kIGEgMjYteWVhciAoSmFudWFyeSAxOTkzIHRocm91Z2ggRGVjZW1iZXIgMjAxOCkgcmV0cm9zcGVjdGl2ZSBzaW11bGF0aW9uIHVzaW5nIHZlcnNpb24gMi4wIG9mIHRoZSBOYXRpb25hbCBXYXRlciBNb2RlbC5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLm9wZW5kYXRhLmF3cy9ud20tYXJjaGl2ZS9yZWFkbWUuaHRtbFxuQ29udGFjdDogfFxuTWFuYWdlZEJ5OiBbTk9BQV0oaHR0cHM6Ly93d3cubm9hYS5nb3YvKVxuVXBkYXRlRnJlcXVlbmN5OiBObyB1cGRhdGVzXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG4uLi4gKDQgbW9yZSB2YXJpYWJsZXMpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbm9hYV9ud21fcmV0cm9fdjJfMF9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9ud20tYXJjaGl2ZS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19ub2FhX253bV9yZXRyb192Ml8wX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ub2FhX253bV9yZXRyb192Ml8wX3BkcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfbm9hYV9ud21fcmV0cm9fdjJfMF9wZHMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbm9hYV9vZnNfcGRzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbm9hYV9vZnNfcGRzLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX25vYWFfb2ZzX3Bkcy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG5vYWEtb2ZzLXBkcyBCdWNrZXQ6IE5PQUEgT3BlcmF0aW9uYWwgRm9yZWNhc3QgU3lzdGVtIChPRlMpOiBQcm9qZWN0IGRhdGEgZmlsZXMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBub2FhLW9mcy1wZHMgYnVja2V0IGF0IGh0dHBzOi8vbm9hYS1vZnMtcGRzLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBOT0FBIE9wZXJhdGlvbmFsIEZvcmVjYXN0IFN5c3RlbSAoT0ZTKVxuTmFtZTI6IFByb2plY3QgZGF0YSBmaWxlc1xuRGVzY3JpcHRpb246IFRoZSBPcGVyYXRpb25hbCBGb3JlY2FzdCBTeXN0ZW0gKE9GUykgaGFzIGJlZW4gZGV2ZWxvcGVkIHRvIHNlcnZlIHRoZSBtYXJpdGltZSB1c2VyIGNvbW11bml0eS4gT0ZTIHdhcyBkZXZlbG9wZWQgaW4gYSBqb2ludCBwcm9qZWN0IG9mIHRoZSBOT0FBL05hdGlvbmFsIE9jZWFuIFNlcnZpY2UgKE5PUykvT2ZmaWNlIG9mIENvYXN0IFN1cnZleSwgdGhlIE5PQUEvTk9TL0NlbnRlciBmb3IgT3BlcmF0aW9uYWwgT2NlYW5vZ3JhcGhpYyBQcm9kdWN0cyBhbmQgU2VydmljZXMgKENPLU9QUyksIGFuZCB0aGUgTk9BQS9OYXRpb25hbCBXZWF0aGVyIFNlcnZpY2UgKE5XUykvTmF0aW9uYWwgQ2VudGVycyBmb3IgRW52aXJvbm1lbnRhbCBQcmVkaWN0aW9uIChOQ0VQKSBDZW50cmFsIE9wZXJhdGlvbnMgKE5DTykuIE9GUyBnZW5lcmF0ZXMgd2F0ZXIgbGV2ZWwsIHdhdGVyIGN1cnJlbnQsIHdhdGVyIHRlbXBlcmF0dXJlLCB3YXRlciBzYWxpbml0eSAoZXhjZXB0IGZvciB0aGUgR3JlYXQgTGFrZXMpIGFuZCB3aW5kIGNvbmRpdGlvbnMgbm93Y2FzdCBhbmQgZm9yZWNhc3QgZ3VpZGFuY2UgZm91ciB0aW1lcyBwZXIgZGF5LlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL25vYWEtb2ZzLXBkcy9yZWFkbWUuaHRtbFxuQ29udGFjdDogRm9yIHF1ZXN0aW9ucyByZWdhcmRpbmcgZGF0YSBjb250ZW50IG9yIHF1YWxpdHksIHZpc2l0IFt0aGUgTk9BQSBPRlMgc2l0ZV0oaHR0cHM6Ly90aWRlc2FuZGN1cnJlbnRzLm5vYWEuZ292L21vZGVscy5odG1sKS4gRm9yIGFueSBxdWVzdGlvbnMgcmVnYXJkaW5nIGRhdGEgZGVsaXZlcnkgbm90IGFzc29jaWF0ZWQgd2l0aCB0aGlzIHBsYXRmb3JtIG9yIGFueSBnZW5lcmFsIHF1ZXN0aW9ucyByZWdhcmRpbmcgdGhlIE5PQUEgQmlnIERhdGEgUHJvamVjdCwgZW1haWwgbm9hYS5iZHBAbm9hYS5nb3Zcbk1hbmFnZWRCeTogW05PQUFdKGh0dHBzOi8vd3d3Lm5vYWEuZ292LylcblVwZGF0ZUZyZXF1ZW5jeTogNCB0aW1lcyBhIGRheSwgZXZlcnkgNiBob3VycyBzdGFydGluZyBhdCBtaWRuaWdodCBhbmQgZ2VuZXJhdGVzIDYtaG91ciBub3djYXN0cyBhbmQgNDgtaG91ciBmb3JlY2FzdCBndWlkYW5jZVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX25vYWFfb2ZzX3Bkcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25vYWEtb2ZzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX25vYWFfb2ZzX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19ub2FhX29mc19wZHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25vYWFfb2ZzX3BkcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ucmVsX3Bkc193dGtfd3RrX3RlY2hub19lY29ub21pY19weXd0a19kYXRhIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbnJlbF9wZHNfd3RrX3d0a190ZWNobm9fZWNvbm9taWNfcHl3dGtfZGF0YS5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ucmVsX3Bkc193dGtfd3RrX3RlY2hub19lY29ub21pY19weXd0a19kYXRhLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbnJlbC1wZHMtd3RrIEJ1Y2tldCB3aXRoIHByZWZpeD13dGstdGVjaG5vLWVjb25vbWljL3B5d3RrLWRhdGEvOiBOUkVMIFdpbmQgSW50ZWdyYXRpb24gTmF0aW9uYWwgRGF0YXNldCBvbiBBV1M6IFRlY2hvLWVjb25vbWljIHNvdXJjZSBmaWxlcyBieSBsb2NhdGlvbiBpbiBbSERGNV0oaHR0cHM6Ly9wb3J0YWwuaGRmZ3JvdXAub3JnL2Rpc3BsYXkvSERGNSkgZm9ybWF0IiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbnJlbC1wZHMtd3RrIGJ1Y2tldCBhdCBodHRwczovL25yZWwtcGRzLXd0ay5zMy51cy13ZXN0LTIuYW1hem9uYXdzLmNvbS8gd2l0aCBwcmVmaXg9d3RrLXRlY2huby1lY29ub21pYy9weXd0ay1kYXRhLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBOUkVMIFdpbmQgSW50ZWdyYXRpb24gTmF0aW9uYWwgRGF0YXNldCBvbiBBV1Ncbk5hbWUyOiBUZWNoby1lY29ub21pYyBzb3VyY2UgZmlsZXMgYnkgbG9jYXRpb24gaW4gW0hERjVdKGh0dHBzOi8vcG9ydGFsLmhkZmdyb3VwLm9yZy9kaXNwbGF5L0hERjUpIGZvcm1hdFxuRGVzY3JpcHRpb246IFRoZSBbV2luZCBJbnRlZ3JhdGlvbiBOYXRpb25hbCBEYXRhc2V0IChXSU5EKV0oaHR0cHM6Ly93d3cubnJlbC5nb3YvZ3JpZC93aW5kLXRvb2xraXQuaHRtbCkgaXMgYW4gdXBkYXRlIGFuZCBleHBhbnNpb24gb2YgdGhlIEVhc3Rlcm4gV2luZCBJbnRlZ3JhdGlvbiBEYXRhIFNldCBhbmQgV2VzdGVybiBXaW5kIEludGVncmF0aW9uIERhdGEgU2V0LiBJdCBzdXBwb3J0cyB0aGUgbmV4dCBnZW5lcmF0aW9uIG9mIHdpbmQgaW50ZWdyYXRpb24gc3R1ZGllcy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly93d3cubnJlbC5nb3YvZ3JpZC93aW5kLXRvb2xraXQuaHRtbFxuQ29udGFjdDogd2luZC10b29sa2l0QG5yZWwuZ292XG5NYW5hZ2VkQnk6IFtOYXRpb25hbCBSZW5ld2FibGUgRW5lcmd5IExhYm9yYXRvcnldKGh0dHBzOi8vd3d3Lm5yZWwuZ292LylcblVwZGF0ZUZyZXF1ZW5jeTogQXMgTmVlZGVkXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbnJlbF9wZHNfd3RrX3d0a190ZWNobm9fZWNvbm9taWNfcHl3dGtfZGF0YS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL25yZWwtcGRzLXd0ay8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19ucmVsX3Bkc193dGtfd3RrX3RlY2hub19lY29ub21pY19weXd0a19kYXRhLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX25yZWxfcGRzX3d0a193dGtfdGVjaG5vX2Vjb25vbWljX3B5d3RrX2RhdGEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX25yZWxfcGRzX3d0a193dGtfdGVjaG5vX2Vjb25vbWljX3B5d3RrX2RhdGEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbndtX2FyY2hpdmUiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ud21fYXJjaGl2ZS5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ud21fYXJjaGl2ZS8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG53bS1hcmNoaXZlIEJ1Y2tldDogTk9BQSBOYXRpb25hbCBXYXRlciBNb2RlbCBSZWFuYWx5c2lzOiBUaGUgY29tcGxldGUgYXJjaGl2ZSBvZiBOV00gZGF0YSB2ZXJzaW9uIDEuMi4iLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBud20tYXJjaGl2ZSBidWNrZXQgYXQgaHR0cHM6Ly9ud20tYXJjaGl2ZS5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogTk9BQSBOYXRpb25hbCBXYXRlciBNb2RlbCBSZWFuYWx5c2lzXG5OYW1lMjogVGhlIGNvbXBsZXRlIGFyY2hpdmUgb2YgTldNIGRhdGEgdmVyc2lvbiAxLjIuXG5EZXNjcmlwdGlvbjogVGhlIE5PQUEgTmF0aW9uYWwgV2F0ZXIgTW9kZWwgUmVhbmFseXNpcyBkYXRhc2V0IGNvbnRhaW5zIG91dHB1dCBmcm9tIG11bHRpLWRlY2FkZSByZXRyb3NwZWN0aXZlIHNpbXVsYXRpb25zLiBUaGVzZSBzaW11bGF0aW9ucyB1c2VkIG9ic2VydmVkIHJhaW5mYWxsIGFzIGlucHV0IGFuZCBpbmdlc3RlZCBvdGhlciByZXF1aXJlZCBtZXRlb3JvbG9naWNhbCBpbnB1dCBmaWVsZHMgZnJvbSBhIHdlYXRoZXIgcmVhbmFseXNpcyBkYXRhc2V0LiBUaGUgb3V0cHV0IGZyZXF1ZW5jeSBhbmQgZmllbGRzIGF2YWlsYWJsZSBpbiB0aGlzIGhpc3RvcmljYWwgTldNIGRhdGFzZXQgZGlmZmVyIGZyb20gdGhvc2UgY29udGFpbmVkIGluIHRoZSByZWFsLXRpbWUgZm9yZWNhc3QgbW9kZWwuIE9uZSBhcHBsaWNhdGlvbiBvZiB0aGlzIGRhdGFzZXQgaXMgdG8gcHJvdmlkZSBoaXN0b3JpY2FsIGNvbnRleHQgdG8gY3VycmVudCByZWFsLXRpbWUgc3RyZWFtZmxvdywgc29pbCBtb2lzdHVyZSBhbmQgc25vd3BhY2sgTldNIGNvbmRpdGlvbnMuIFRoZSByZWFuYWx5c2lzIGRhdGEgY2FuIGJlIHVzZWQgdG8gaW5mZXIgZmxvdyBmcmVxdWVuY2llcyBhbmQgcGVyZm9ybSB0ZW1wb3JhbCBhbmFseXNlcyB3aXRoIGhvdXJseSBzdHJlYW1mbG93IG91dHB1dCBhbmQgMy1ob3VybHkgbGFuZCBzdXJmYWNlIG91dHB1dC4gVGhlIGxvbmctdGVybSBkYXRhc2V0IGNhbiBhbHNvIGJlIHVzZWQgaW4gdGhlIGRldmVsb3BtZW50IG9mIGVuZCB1c2VyIGFwcGxpY2F0aW9ucyB3aGljaCByZXF1aXJlIGEgbG9uZyBiYXNlbGluZSBvZiBkYXRhIGZvciBzeXN0ZW0gdHJhaW5pbmcgb3IgdmVyaWZpY2F0aW9uIHB1cnBvc2VzLiBUaGlzIGRhdGFzZXQgY29udGFpbnMgb3V0cHV0IGZyb20gdHdvIHJldHJvc3BlY3RpdmUgc2ltdWxhdGlvbnMuICBDdXJyZW50bHkgdGhlcmUgYXJlIHR3byB2ZXJzaW9ucyBvZiB0aGUgZGF0YXNldDogQSAyNS15ZWFyIChKYW51YXJ5IDE5OTMgdGhyb3VnaCBEZWNlbWJlciAyMDE3KSByZXRyb3NwZWN0aXZlIHNpbXVsYXRpb24gdXNpbmcgdmVyc2lvbiAxLjIgb2YgdGhlIE5hdGlvbmFsIFdhdGVyIE1vZGVsLCBhbmQgYSAyNi15ZWFyIChKYW51YXJ5IDE5OTMgdGhyb3VnaCBEZWNlbWJlciAyMDE4KSByZXRyb3NwZWN0aXZlIHNpbXVsYXRpb24gdXNpbmcgdmVyc2lvbiAyLjAgb2YgdGhlIE5hdGlvbmFsIFdhdGVyIE1vZGVsLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL253bS1hcmNoaXZlL3JlYWRtZS5odG1sXG5Db250YWN0OiB8XG5NYW5hZ2VkQnk6IFtOT0FBXShodHRwczovL3d3dy5ub2FhLmdvdi8pXG5VcGRhdGVGcmVxdWVuY3k6IE5vIHVwZGF0ZXNcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19ud21fYXJjaGl2ZS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL253bS1hcmNoaXZlLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX253bV9hcmNoaXZlLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX253bV9hcmNoaXZlJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19ud21fYXJjaGl2ZSJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19ueWNfdGxjIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfbnljX3RsYy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19ueWNfdGxjLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgbnljLXRsYyBCdWNrZXQ6IE5ldyBZb3JrIENpdHkgVGF4aSBhbmQgTGltb3VzaW5lIENvbW1pc3Npb24gKFRMQykgVHJpcCBSZWNvcmQgRGF0YTogQ1NWIGZpbGVzIGNvbnRhaW5pbmcgTllDIFRMQyB0cmlwIGRhdGEuIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgbnljLXRsYyBidWNrZXQgYXQgaHR0cHM6Ly9ueWMtdGxjLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBOZXcgWW9yayBDaXR5IFRheGkgYW5kIExpbW91c2luZSBDb21taXNzaW9uIChUTEMpIFRyaXAgUmVjb3JkIERhdGFcbk5hbWUyOiBDU1YgZmlsZXMgY29udGFpbmluZyBOWUMgVExDIHRyaXAgZGF0YS5cbkRlc2NyaXB0aW9uOiBEYXRhIG9mIHRyaXBzIHRha2VuIGJ5IHRheGlzIGFuZCBmb3ItaGlyZSB2ZWhpY2xlcyBpbiBOZXcgWW9yayBDaXR5LlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwOi8vd3d3Lm55Yy5nb3YvaHRtbC90bGMvaHRtbC9hYm91dC90cmlwX3JlY29yZF9kYXRhLnNodG1sXG5Db250YWN0OiByZXNlYXJjaEB0bGMubnljLmdvdlxuVXBkYXRlRnJlcXVlbmN5OiBBcyBzb29uIGFzIG5ldyBkYXRhIGlzIGF2YWlsYWJsZSB0byBiZSBzaGFyZWQgcHVibGljbHkuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfbnljX3RsYy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL255Yy10bGMtdHJpcC1yZWNvcmRzLXBkcy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19ueWNfdGxjLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX255Y190bGMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX255Y190bGMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfb2ljcl9pY2djX21ldGFfbWV0YWRhdGEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19vaWNyX2ljZ2NfbWV0YV9tZXRhZGF0YS5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19vaWNyX2ljZ2NfbWV0YV9tZXRhZGF0YS8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG9pY3IuaWNnYy5tZXRhIEJ1Y2tldCB3aXRoIHByZWZpeD1tZXRhZGF0YS86IElDR0Mgb24gQVdTOiBUaGlzIHB1YmxpYyBBbWF6b24gUzMgYnVja2V0IGNvbnRhaW5zIGFuYWx5c2lzIG1ldGFkYXRhIGluIFhNTCBmb3JtYXQgZm9yIGdlbm9tZSBhbmFseXNpcyByZXN1bHRzLiBNb3JlIGluZm9ybWF0aW9uIGF0IGh0dHA6Ly9vaWNyLmljZ2MubWV0YS5zMy5hbWF6b25hd3MuY29tL21ldGFkYXRhL1JFQURNRSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG9pY3IuaWNnYy5tZXRhIGJ1Y2tldCBhdCBodHRwczovL29pY3IuaWNnYy5tZXRhLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyB3aXRoIHByZWZpeD1tZXRhZGF0YS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogSUNHQyBvbiBBV1Ncbk5hbWUyOiBUaGlzIHB1YmxpYyBBbWF6b24gUzMgYnVja2V0IGNvbnRhaW5zIGFuYWx5c2lzIG1ldGFkYXRhIGluIFhNTCBmb3JtYXQgZm9yIGdlbm9tZSBhbmFseXNpcyByZXN1bHRzLiBNb3JlIGluZm9ybWF0aW9uIGF0IGh0dHA6Ly9vaWNyLmljZ2MubWV0YS5zMy5hbWF6b25hd3MuY29tL21ldGFkYXRhL1JFQURNRVxuRGVzY3JpcHRpb246IFRoZSBJbnRlcm5hdGlvbmFsIENhbmNlciBHZW5vbWUgQ29uc29ydGl1bSAoSUNHQykgY29vcmRpbmF0ZXMgcHJvamVjdHMgd2l0aCB0aGUgY29tbW9uIGFpbSBvZiBhY2NlbGVyYXRpbmcgcmVzZWFyY2ggaW50byB0aGUgY2F1c2VzIGFuZCBjb250cm9sIG9mIGNhbmNlci4gVGhlIFBhbkNhbmNlciBBbmFseXNpcyBvZiBXaG9sZSBHZW5vbWVzIChQQ0FXRykgc3R1ZHkgaXMgYW4gaW50ZXJuYXRpb25hbCBjb2xsYWJvcmF0aW9uIHRvIGlkZW50aWZ5IGNvbW1vbiBwYXR0ZXJucyBvZiBtdXRhdGlvbiBpbiB3aG9sZSBnZW5vbWVzIGZyb20gSUNHQy4gTW9yZSB0aGFuIDIsNDAwIGNvbnNpc3RlbnRseSBhbmFseXplZCBnZW5vbWVzIGNvcnJlc3BvbmRpbmcgdG8gb3ZlciAxLDEwMCB1bmlxdWUgSUNHQyBkb25vcnMgYXJlIG5vdyBmcmVlbHkgYXZhaWxhYmxlIG9uIEFtYXpvbiBTMyB0byBjcmVkZW50aWFsZWQgcmVzZWFyY2hlcnMgc3ViamVjdCB0byBJQ0dDIGRhdGEgc2hhcmluZyBwb2xpY2llcy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kY2MuaWNnYy5vcmcvaWNnYy1pbi10aGUtY2xvdWQvYXdzXG5Db250YWN0OiBkY2Mtc3VwcG9ydEBpY2djLm9yZ1xuVXBkYXRlRnJlcXVlbmN5OiBOZXcgZGF0YSBpcyBhZGRlZCBhcyBzb29uIGFzIGl0IGlzIGF2YWlsYWJsZS5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19vaWNyX2ljZ2NfbWV0YV9tZXRhZGF0YS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL2ljZ2MvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfb2ljcl9pY2djX21ldGFfbWV0YWRhdGEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfb2ljcl9pY2djX21ldGFfbWV0YWRhdGEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX29pY3JfaWNnY19tZXRhX21ldGFkYXRhIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX29vbmlfZGF0YSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX29vbmlfZGF0YS5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19vb25pX2RhdGEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBvb25pLWRhdGEgQnVja2V0OiBPcGVuIE9ic2VydmF0b3J5IG9mIE5ldHdvcmsgSW50ZXJmZXJlbmNlOiBTMyBidWNrZXQgd2l0aCBkYXRhIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgb29uaS1kYXRhIGJ1Y2tldCBhdCBodHRwczovL29vbmktZGF0YS5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogT3BlbiBPYnNlcnZhdG9yeSBvZiBOZXR3b3JrIEludGVyZmVyZW5jZVxuTmFtZTI6IFMzIGJ1Y2tldCB3aXRoIGRhdGFcbkRlc2NyaXB0aW9uOiBBIGZyZWUgc29mdHdhcmUsIGdsb2JhbCBvYnNlcnZhdGlvbiBuZXR3b3JrIGZvciBkZXRlY3RpbmcgY2Vuc29yc2hpcCwgc3VydmVpbGxhbmNlIGFuZCB0cmFmZmljIG1hbmlwdWxhdGlvbiBvbiB0aGUgaW50ZXJuZXQuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vb29uaS50b3Jwcm9qZWN0Lm9yZy9hYm91dC9cbkNvbnRhY3Q6IGh0dHBzOi8vb29uaS50b3Jwcm9qZWN0Lm9yZy9nZXQtaW52b2x2ZWQvXG5VcGRhdGVGcmVxdWVuY3k6IERhaWx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfb29uaV9kYXRhL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvb29uaS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19vb25pX2RhdGEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfb29uaV9kYXRhJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19vb25pX2RhdGEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfb3BlbmFxX2ZldGNoZXMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19vcGVuYXFfZmV0Y2hlcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19vcGVuYXFfZmV0Y2hlcy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG9wZW5hcS1mZXRjaGVzIEJ1Y2tldDogT3BlbkFROiBNaW51dGVseSBDU1ZzIG9mIGdsb2JhbCBhaXIgcXVhbGl0eSBmZXRjaGVkIGZyb20gc291cmNlcyBhbGwgb3ZlciB0aGUgd29ybGQiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBvcGVuYXEtZmV0Y2hlcyBidWNrZXQgYXQgaHR0cHM6Ly9vcGVuYXEtZmV0Y2hlcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogT3BlbkFRXG5OYW1lMjogTWludXRlbHkgQ1NWcyBvZiBnbG9iYWwgYWlyIHF1YWxpdHkgZmV0Y2hlZCBmcm9tIHNvdXJjZXMgYWxsIG92ZXIgdGhlIHdvcmxkXG5EZXNjcmlwdGlvbjogR2xvYmFsLCBhZ2dyZWdhdGVkIHBoeXNpY2FsIGFpciBxdWFsaXR5IGRhdGEgZnJvbSBwdWJsaWMgZGF0YSBzb3VyY2VzIHByb3ZpZGVkIGJ5IGdvdmVybm1lbnQsIHJlc2VhcmNoLWdyYWRlIGFuZCBvdGhlciBzb3VyY2VzLiBUaGVzZSBhd2Vzb21lIGdyb3VwcyBkbyB0aGUgaGFyZCB3b3JrIG9mIG1lYXN1cmluZyB0aGVzZSBkYXRhIGFuZCBwdWJsaWNseSBzaGFyaW5nIHRoZW0sIGFuZCBvdXIgY29tbXVuaXR5IG1ha2VzIHRoZW0gbW9yZSB1bml2ZXJzYWxseS1hY2Nlc3NpYmxlIHRvIGJvdGggaHVtYW5zIGFuZCBtYWNoaW5lcy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9vcGVuYXEub3JnXG5Db250YWN0OiBpbmZvQG9wZW5hcS5vcmdcbk1hbmFnZWRCeTogW09wZW5BUV0oaHR0cHM6Ly9vcGVuYXEub3JnKVxuVXBkYXRlRnJlcXVlbmN5OiBNaW51dGVseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX29wZW5hcV9mZXRjaGVzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvb3BlbmFxLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX29wZW5hcV9mZXRjaGVzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX29wZW5hcV9mZXRjaGVzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19vcGVuYXFfZmV0Y2hlcyJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19vcGVuY2l0eW1vZGVsIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfb3BlbmNpdHltb2RlbC5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19vcGVuY2l0eW1vZGVsLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgb3BlbmNpdHltb2RlbCBCdWNrZXQ6IE9wZW4gQ2l0eSBNb2RlbCAoT0NNKTogUHJvamVjdCBkYXRhIGZpbGVzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgb3BlbmNpdHltb2RlbCBidWNrZXQgYXQgaHR0cHM6Ly9vcGVuY2l0eW1vZGVsLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBPcGVuIENpdHkgTW9kZWwgKE9DTSlcbk5hbWUyOiBQcm9qZWN0IGRhdGEgZmlsZXNcbkRlc2NyaXB0aW9uOiBPcGVuIENpdHkgTW9kZWwgaXMgYW4gaW5pdGlhdGl2ZSB0byBwcm92aWRlIGNpdHlHTUwgZGF0YSBmb3IgYWxsIHRoZSBidWlsZGluZ3MgaW4gdGhlIFVuaXRlZCBTdGF0ZXMuIEJ5IHVzaW5nIG90aGVyIG9wZW4gZGF0YXNldHMgaW4gY29uanVuY3Rpb24gd2l0aCBvdXIgb3duIGNvZGUgYW5kIGFsZ29yaXRobXMgaXQgaXMgb3VyIGdvYWwgdG8gcHJvdmlkZSAzRCBnZW9tZXRyaWVzIGZvciBldmVyeSBVUyBidWlsZGluZy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9naXRodWIuY29tL29wZW5jaXR5bW9kZWwvb3BlbmNpdHltb2RlbFxuQ29udGFjdDogaHR0cHM6Ly9naXRodWIuY29tL29wZW5jaXR5bW9kZWwvb3BlbmNpdHltb2RlbCNjb250YWN0XG5VcGRhdGVGcmVxdWVuY3k6IFF1YXJ0ZXJseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX29wZW5jaXR5bW9kZWwvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9vcGVuY2l0eW1vZGVsLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX29wZW5jaXR5bW9kZWwucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfb3BlbmNpdHltb2RlbCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfb3BlbmNpdHltb2RlbCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19vcGVubmV1cm9fb3JnIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfb3Blbm5ldXJvX29yZy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19vcGVubmV1cm9fb3JnLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgb3Blbm5ldXJvLm9yZyBCdWNrZXQ6IE9wZW5OZXVybzogQWxsIGRhdGFzZXRzIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgb3Blbm5ldXJvLm9yZyBidWNrZXQgYXQgaHR0cHM6Ly9vcGVubmV1cm8ub3JnLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBPcGVuTmV1cm9cbk5hbWUyOiBBbGwgZGF0YXNldHNcbkRlc2NyaXB0aW9uOiBPcGVuTmV1cm8gaXMgYSBkYXRhYmFzZSBvZiBvcGVubHktYXZhaWxhYmxlIGJyYWluIGltYWdpbmcgZGF0YS4gVGhlIGRhdGEgYXJlIHNoYXJlZCBhY2NvcmRpbmcgdG8gYSBDcmVhdGl2ZSBDb21tb25zIENDMCBsaWNlbnNlLCBwcm92aWRpbmcgYSBicm9hZCByYW5nZSBvZiBicmFpbiBpbWFnaW5nIGRhdGEgdG8gcmVzZWFyY2hlcnMgYW5kIGNpdGl6ZW4gc2NpZW50aXN0cyBhbGlrZS4gVGhlIGRhdGFiYXNlIHByaW1hcmlseSBmb2N1c2VzIG9uIGZ1bmN0aW9uYWwgbWFnbmV0aWMgcmVzb25hbmNlIGltYWdpbmcgKGZNUkkpIGRhdGEsIGJ1dCBhbHNvIGluY2x1ZGVzIG90aGVyIGltYWdpbmcgbW9kYWxpdGllcyBpbmNsdWRpbmcgc3RydWN0dXJhbCBhbmQgZGlmZnVzaW9uIE1SSSwgZWxlY3Ryb2VuY2VwaGFsb2dyYXBoeSAoRUVHKSwgYW5kIG1hZ25ldG9lbmNlcGhhbG9ncmFweSAoTUVHKS4gT3BlbmZNUkkgaXMgYSBwcm9qZWN0IG9mIHRoZSBbQ2VudGVyIGZvciBSZXByb2R1Y2libGUgTmV1cm9zY2llbmNlIGF0IFN0YW5mb3JkIFVuaXZlcnNpdHldKGh0dHA6Ly9yZXByb2R1Y2liaWxpdHkuc3RhbmZvcmQuZWR1KS4gRGV2ZWxvcG1lbnQgb2YgdGhlIE9wZW5OZXVybyByZXNvdXJjZSBoYXMgYmVlbiBmdW5kZWQgYnkgdGhlIE5hdGlvbmFsIFNjaWVuY2UgRm91bmRhdGlvbiwgTmF0aW9uYWwgSW5zdGl0dXRlIG9mIE1lbnRhbCBIZWFsdGgsIE5hdGlvbmFsIEluc3RpdHV0ZSBvbiBEcnVnIEFidXNlLCBhbmQgdGhlIExhdXJhIGFuZCBKb2huIEFybm9sZCBGb3VuZGF0aW9uLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwOi8vb3Blbm5ldXJvLm9yZ1xuQ29udGFjdDogU3VwcG9ydCBmb3JtIGF0IGh0dHBzOi8vb3Blbm5ldXJvLm9yZ1xuVXBkYXRlRnJlcXVlbmN5OiBOZXcgZGF0YXNldHMgZGVwb3NpdGVkIGV2ZXJ5IDQtNiBkYXlzXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfb3Blbm5ldXJvX29yZy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL29wZW5uZXVyby8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19vcGVubmV1cm9fb3JnLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX29wZW5uZXVyb19vcmcmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX29wZW5uZXVyb19vcmciXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfb3NtX3BkcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX29zbV9wZHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfb3NtX3Bkcy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIG9zbS1wZHMgQnVja2V0OiBPcGVuU3RyZWV0TWFwIG9uIEFXUzogSW1hZ2VyeSBhbmQgbWV0YWRhdGEiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBvc20tcGRzIGJ1Y2tldCBhdCBodHRwczovL29zbS1wZHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IE9wZW5TdHJlZXRNYXAgb24gQVdTXG5OYW1lMjogSW1hZ2VyeSBhbmQgbWV0YWRhdGFcbkRlc2NyaXB0aW9uOiBPU00gaXMgYSBmcmVlLCBlZGl0YWJsZSBtYXAgb2YgdGhlIHdvcmxkLCBjcmVhdGVkIGFuZCBtYWludGFpbmVkIGJ5IHZvbHVudGVlcnMuIFJlZ3VsYXIgT1NNIGRhdGEgYXJjaGl2ZXMgYXJlIG1hZGUgYXZhaWxhYmxlIGluIEFtYXpvbiBTMy5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9kb2NzLm9wZW5kYXRhLmF3cy9vc20tcGRzL3JlYWRtZS5odG1sXG5Db250YWN0OiBodHRwczovL2dpdGh1Yi5jb20vbW9qb2RuYS9vc20tcGRzLXBpcGVsaW5lcy9pc3N1ZXNcblVwZGF0ZUZyZXF1ZW5jeTogRGF0YSBpcyB1cGRhdGVkIHdlZWtseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX29zbV9wZHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9vc20vIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfb3NtX3Bkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19vc21fcGRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19vc21fcGRzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX29zbWxyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfb3NtbHIuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfb3NtbHIvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBvc21sciBCdWNrZXQ6IE9wZW5TdHJlZXRNYXAgTGluZWFyIFJlZmVyZW5jaW5nOiBNYW5pZmVzdCBhbmQgZGF0YSBmaWxlcyIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIG9zbWxyIGJ1Y2tldCBhdCBodHRwczovL29zbWxyLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBPcGVuU3RyZWV0TWFwIExpbmVhciBSZWZlcmVuY2luZ1xuTmFtZTI6IE1hbmlmZXN0IGFuZCBkYXRhIGZpbGVzXG5EZXNjcmlwdGlvbjogT1NNTFIgYSBsaW5lYXIgcmVmZXJlbmNpbmcgc3lzdGVtIGJ1aWx0IG9uIHRvcCBvZiBPcGVuU3RyZWV0TWFwLiBPU00gaGFzIGdyZWF0IGluZm9ybWF0aW9uIGFib3V0IHJvYWRzIGFyb3VuZCB0aGUgd29ybGQgYW5kIHRoZWlyIGludGVyY29ubmVjdGlvbnMsIGJ1dCBpdCBsYWNrcyB0aGUgbWVhbnMgdG8gZ2l2ZSBhIHN0YWJsZSBpZGVudGlmaWVyIHRvIGEgc3RyZXRjaCBvZiByb2Fkd2F5LiBPU01MUiBwcm92aWRlcyBhIHN0YWJsZSBzZXQgb2YgbnVtZXJpY2FsIElEcyBmb3IgZXZlcnkgMSBraWxvbWV0ZXIgc3RyZXRjaCBvZiByb2Fkd2F5IGFyb3VuZCB0aGUgd29ybGQuIEluIHVyYmFuIGFyZWFzLCBPU01MUiBJRHMgYXJlIGF0dGFjaGVkIHRvIGVhY2ggYmxvY2sgb2Ygcm9hZHdheXMgYmV0d2VlbiBzaWduaWZpY2FudCBpbnRlcnNlY3Rpb25zLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2dpdGh1Yi5jb20vb3BlbnRyYWZmaWMvb3NtbHIvYmxvYi9tYXN0ZXIvZG9jcy9pbnRyby5tZFxuQ29udGFjdDogaHR0cHM6Ly9naXRodWIuY29tL29wZW50cmFmZmljL29zbWxyL2lzc3Vlc1xuVXBkYXRlRnJlcXVlbmN5OiBOZXcgZGF0YSBpcyBhZGRlZCBiYXNlZCBvbiBjb21tdW5pdHkgZmVlZGJhY2tcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19vc21sci9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL29zbWxyLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX29zbWxyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1hd3NTM0ZpbGVzX29zbWxyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19vc21sciJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19xaWltZTJfZGF0YSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3FpaW1lMl9kYXRhLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX3FpaW1lMl9kYXRhLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgcWlpbWUyLWRhdGEgQnVja2V0OiBRSUlNRSAyIFVzZXIgVHV0b3JpYWwgRGF0YXNldHM6IFJlbmRlcmVkIGRvY3MgYW5kIHR1dG9yaWFsIGRhdGEsIGFzIGdlbmVyYXRlZCBieSBodHRwczovL2dpdGh1Yi5jb20vcWlpbWUyL2RvY3MiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBxaWltZTItZGF0YSBidWNrZXQgYXQgaHR0cHM6Ly9xaWltZTItZGF0YS5zMy51cy13ZXN0LTIuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogUUlJTUUgMiBVc2VyIFR1dG9yaWFsIERhdGFzZXRzXG5OYW1lMjogUmVuZGVyZWQgZG9jcyBhbmQgdHV0b3JpYWwgZGF0YSwgYXMgZ2VuZXJhdGVkIGJ5IGh0dHBzOi8vZ2l0aHViLmNvbS9xaWltZTIvZG9jc1xuRGVzY3JpcHRpb246IFFJSU1FIDIgaXMgYSBwb3dlcmZ1bCwgZXh0ZW5zaWJsZSwgYW5kIGRlY2VudHJhbGl6ZWQgbWljcm9iaW9tZSBhbmFseXNpcyBwYWNrYWdlIHdpdGggYSBmb2N1cyBvbiBkYXRhIGFuZCBhbmFseXNpcyB0cmFuc3BhcmVuY3kuIFFJSU1FIDIgZW5hYmxlcyByZXNlYXJjaGVycyB0byBzdGFydCBhbiBhbmFseXNpcyB3aXRoIHJhdyBETkEgc2VxdWVuY2UgZGF0YSBhbmQgZmluaXNoIHdpdGggcHVibGljYXRpb24tcXVhbGl0eSBmaWd1cmVzIGFuZCBzdGF0aXN0aWNhbCByZXN1bHRzLiBUaGlzIGRhdGFzZXQgY29udGFpbnMgdGhlIHVzZXIgZG9jcyAoYW5kIHJlbGF0ZWQgZGF0YXNldHMpIGZvciBRSUlNRSAyLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3MucWlpbWUyLm9yZ1xuQ29udGFjdDogaHR0cHM6Ly9mb3J1bS5xaWltZTIub3JnXG5NYW5hZ2VkQnk6IFRoZSBRSUlNRSAyIERldmVsb3BtZW50IFRlYW1cblVwZGF0ZUZyZXF1ZW5jeTogUXVhcnRlcmx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfcWlpbWUyX2RhdGEvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9xaWltZTIvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfcWlpbWUyX2RhdGEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfcWlpbWUyX2RhdGEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiQW1hem9uIFdlYiBTZXJ2aWNlcyIsICJhd3NTM0ZpbGVzX3FpaW1lMl9kYXRhIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3NhZmVjYXN0X29wZW5kYXRhX3B1YmxpY191c19lYXN0XzEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19zYWZlY2FzdF9vcGVuZGF0YV9wdWJsaWNfdXNfZWFzdF8xLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX3NhZmVjYXN0X29wZW5kYXRhX3B1YmxpY191c19lYXN0XzEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBzYWZlY2FzdC1vcGVuZGF0YS1wdWJsaWMtdXMtZWFzdC0xIEJ1Y2tldDogU2FmZWNhc3Q6IEJ1bGsgZXhwb3J0cyBvZiBhaXIgYW5kIHJhZGlhdGlvbiBtZWFzdXJlbWVudHMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyBzYWZlY2FzdC1vcGVuZGF0YS1wdWJsaWMtdXMtZWFzdC0xIGJ1Y2tldCBhdCBodHRwczovL3NhZmVjYXN0LW9wZW5kYXRhLXB1YmxpYy11cy1lYXN0LTEuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IFNhZmVjYXN0XG5OYW1lMjogQnVsayBleHBvcnRzIG9mIGFpciBhbmQgcmFkaWF0aW9uIG1lYXN1cmVtZW50c1xuRGVzY3JpcHRpb246IEFuIG9uZ29pbmcgY29sbGVjdGlvbiBvZiByYWRpYXRpb24gYW5kIGFpciBxdWFsaXR5IG1lYXN1cmVtZW50cyB0YWtlbiBieSBkZXZpY2VzIGludm9sdmVkIGluIHRoZSBTYWZlY2FzdCBwcm9qZWN0LlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2dpdGh1Yi5jb20vU2FmZWNhc3Qvc2FmZWNhc3RhcGkvd2lraS9EYXRhLVNldHNcbkNvbnRhY3Q6IGh0dHBzOi8vZ3JvdXBzLmdvb2dsZS5jb20vZm9ydW0vIyFmb3J1bS9zYWZlY2FzdC1kZXZpY2VzXG5NYW5hZ2VkQnk6IFtTYWZlY2FzdF0oaHR0cHM6Ly9zYWZlY2FzdC5vcmcvKVxuVXBkYXRlRnJlcXVlbmN5OiBDb250aW51b3VzXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfc2FmZWNhc3Rfb3BlbmRhdGFfcHVibGljX3VzX2Vhc3RfMS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL3NhZmVjYXN0LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX3NhZmVjYXN0X29wZW5kYXRhX3B1YmxpY191c19lYXN0XzEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfc2FmZWNhc3Rfb3BlbmRhdGFfcHVibGljX3VzX2Vhc3RfMSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfc2FmZWNhc3Rfb3BlbmRhdGFfcHVibGljX3VzX2Vhc3RfMSJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczFfbDFjIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfc2VudGluZWxfaW52ZW50b3J5X3NlbnRpbmVsX3MxX2wxYy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczFfbDFjLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgc2VudGluZWwtaW52ZW50b3J5IEJ1Y2tldCB3aXRoIHByZWZpeD1zZW50aW5lbC1zMS1sMWMvOiBTZW50aW5lbC0xOiBbUzMgSW52ZW50b3J5XShodHRwczovL2RvY3MuYXdzLmFtYXpvbi5jb20vQW1hem9uUzMvbGF0ZXN0L2Rldi9zdG9yYWdlLWludmVudG9yeS5odG1sI3N0b3JhZ2UtaW52ZW50b3J5LWNvbnRlbnRzKSBmaWxlcyBmb3IgTDFDIiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgc2VudGluZWwtaW52ZW50b3J5IGJ1Y2tldCBhdCBodHRwczovL3NlbnRpbmVsLWludmVudG9yeS5zMy5ldS1jZW50cmFsLTEuYW1hem9uYXdzLmNvbS8gd2l0aCBwcmVmaXg9c2VudGluZWwtczEtbDFjLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBTZW50aW5lbC0xXG5OYW1lMjogW1MzIEludmVudG9yeV0oaHR0cHM6Ly9kb2NzLmF3cy5hbWF6b24uY29tL0FtYXpvblMzL2xhdGVzdC9kZXYvc3RvcmFnZS1pbnZlbnRvcnkuaHRtbCNzdG9yYWdlLWludmVudG9yeS1jb250ZW50cykgZmlsZXMgZm9yIEwxQ1xuRGVzY3JpcHRpb246IFtTZW50aW5lbC0xXShodHRwczovL3NlbnRpbmVsLmVzYS5pbnQvd2ViL3NlbnRpbmVsL21pc3Npb25zL3NlbnRpbmVsLTEpIGlzIGEgcGFpciBvZiBFdXJvcGVhbiByYWRhciBpbWFnaW5nIChTQVIpIHNhdGVsbGl0ZXMgbGF1bmNoZWQgaW4gMjAxNCBhbmQgMjAxNi4gSXRzIDYgZGF5cyByZXZpc2l0IGN5Y2xlIGFuZCBhYmlsaXR5IHRvIG9ic2VydmUgdGhyb3VnaCBjbG91ZHMgbWFrZXMgaXQgcGVyZmVjdCBmb3Igc2VhIGFuZCBsYW5kIG1vbml0b3JpbmcsIGVtZXJnZW5jeSByZXNwb25zZSBkdWUgdG8gZW52aXJvbm1lbnRhbCBkaXNhc3RlcnMsIGFuZCBlY29ub21pYyBhcHBsaWNhdGlvbnMuIEdSRCBkYXRhIGlzIGF2YWlsYWJsZSBnbG9iYWxseSBzaW5jZSBKYW51YXJ5IDIwMTcuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vcm9kYS5zZW50aW5lbC1odWIuY29tL3NlbnRpbmVsLXMxLWwxYy9HUkQvcmVhZG1lLmh0bWxcbkNvbnRhY3Q6IGh0dHBzOi8vZm9ydW0uc2VudGluZWwtaHViLmNvbS9jL2F3cy1zZW50aW5lbFxuTWFuYWdlZEJ5OiBbU2luZXJnaXNlXShodHRwczovL3d3dy5zaW5lcmdpc2UuY29tLylcblVwZGF0ZUZyZXF1ZW5jeTogTmV3IFNlbnRpbmVsIGRhdGEgYXJlIGFkZGVkIHJlZ3VsYXJseSwgdXN1YWxseSB3aXRoaW4gZmV3IGhvdXJzIGFmdGVyIHRoZXkgYXJlIGF2YWlsYWJsZSBvbiBDb3Blcm5pY3VzIE9wZW5IdWIuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfc2VudGluZWxfaW52ZW50b3J5X3NlbnRpbmVsX3MxX2wxYy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL3NlbnRpbmVsLTEvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfc2VudGluZWxfaW52ZW50b3J5X3NlbnRpbmVsX3MxX2wxYy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczFfbDFjJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczFfbDFjIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3NlbnRpbmVsX2ludmVudG9yeV9zZW50aW5lbF9zMl9sMWMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczJfbDFjLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX3NlbnRpbmVsX2ludmVudG9yeV9zZW50aW5lbF9zMl9sMWMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBzZW50aW5lbC1pbnZlbnRvcnkgQnVja2V0IHdpdGggcHJlZml4PXNlbnRpbmVsLXMyLWwxYy86IFNlbnRpbmVsLTI6IFtTMyBJbnZlbnRvcnldKGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9BbWF6b25TMy9sYXRlc3QvZGV2L3N0b3JhZ2UtaW52ZW50b3J5Lmh0bWwjc3RvcmFnZS1pbnZlbnRvcnktY29udGVudHMpIGZpbGVzIGZvciBMMUMgKE9SQyBhbmQgQ1NWKSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIHNlbnRpbmVsLWludmVudG9yeSBidWNrZXQgYXQgaHR0cHM6Ly9zZW50aW5lbC1pbnZlbnRvcnkuczMuZXUtY2VudHJhbC0xLmFtYXpvbmF3cy5jb20vIHdpdGggcHJlZml4PXNlbnRpbmVsLXMyLWwxYy8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogU2VudGluZWwtMlxuTmFtZTI6IFtTMyBJbnZlbnRvcnldKGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9BbWF6b25TMy9sYXRlc3QvZGV2L3N0b3JhZ2UtaW52ZW50b3J5Lmh0bWwjc3RvcmFnZS1pbnZlbnRvcnktY29udGVudHMpIGZpbGVzIGZvciBMMUMgKE9SQyBhbmQgQ1NWKVxuRGVzY3JpcHRpb246IFRoZSBbU2VudGluZWwtMiBtaXNzaW9uXShodHRwczovL3NlbnRpbmVsLmVzYS5pbnQvd2ViL3NlbnRpbmVsL21pc3Npb25zL3NlbnRpbmVsLTIpIGlzIGEgbGFuZCBtb25pdG9yaW5nIGNvbnN0ZWxsYXRpb24gb2YgdHdvIHNhdGVsbGl0ZXMgdGhhdCBwcm92aWRlIGhpZ2ggcmVzb2x1dGlvbiBvcHRpY2FsIGltYWdlcnkgYW5kIHByb3ZpZGUgY29udGludWl0eSBmb3IgdGhlIGN1cnJlbnQgU1BPVCBhbmQgTGFuZHNhdCBtaXNzaW9ucy4gVGhlIG1pc3Npb24gcHJvdmlkZXMgYSBnbG9iYWwgY292ZXJhZ2Ugb2YgdGhlIEVhcnRoJ3MgbGFuZCBzdXJmYWNlIGV2ZXJ5IDUgZGF5cywgbWFraW5nIHRoZSBkYXRhIG9mIGdyZWF0IHVzZSBpbiBvbi1nb2luZyBzdHVkaWVzLiBMMUMgZGF0YSBhcmUgYXZhaWxhYmxlIGZyb20gSnVuZSAyMDE1IGdsb2JhbGx5LiBMMkEgZGF0YSBhcmUgYXZhaWxhYmxlIGZyb20gQXByaWwgMjAxNyBvdmVyIHdpZGVyIEV1cm9wZSByZWdpb24gYW5kIGdsb2JhbGx5IHNpbmNlIERlY2VtYmVyIDIwMTguXG5cbkRvY3VtZW50YXRpb246IERvY3VtZW50YXRpb24gaXMgYXZhaWxhYmxlIGZvciBbU2VudGluZWwtMiBMMUNdKGh0dHBzOi8vcm9kYS5zZW50aW5lbC1odWIuY29tL3NlbnRpbmVsLXMyLWwxYy9yZWFkbWUuaHRtbCkgYW5kIFtTZW50aW5lbC0yIEwyQV0oaHR0cHM6Ly9yb2RhLnNlbnRpbmVsLWh1Yi5jb20vc2VudGluZWwtczItbDJhL3JlYWRtZS5odG1sKS5cbkNvbnRhY3Q6IGh0dHBzOi8vZm9ydW0uc2VudGluZWwtaHViLmNvbS9jL2F3cy1zZW50aW5lbFxuTWFuYWdlZEJ5OiBbU2luZXJnaXNlXShodHRwczovL3d3dy5zaW5lcmdpc2UuY29tLylcblVwZGF0ZUZyZXF1ZW5jeTogTmV3IFNlbnRpbmVsIGRhdGEgYXJlIGFkZGVkIHJlZ3VsYXJseSwgdXN1YWxseSB3aXRoaW4gZmV3IGhvdXJzIGFmdGVyIHRoZXkgYXJlIGF2YWlsYWJsZSBvbiBDb3Blcm5pY3VzIE9wZW5IdWIuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfc2VudGluZWxfaW52ZW50b3J5X3NlbnRpbmVsX3MyX2wxYy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL3NlbnRpbmVsLTIvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfc2VudGluZWxfaW52ZW50b3J5X3NlbnRpbmVsX3MyX2wxYy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczJfbDFjJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczJfbDFjIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3NlbnRpbmVsX2ludmVudG9yeV9zZW50aW5lbF9zMl9sMmEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczJfbDJhLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX3NlbnRpbmVsX2ludmVudG9yeV9zZW50aW5lbF9zMl9sMmEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBzZW50aW5lbC1pbnZlbnRvcnkgQnVja2V0IHdpdGggcHJlZml4PXNlbnRpbmVsLXMyLWwyYS86IFNlbnRpbmVsLTI6IFtTMyBJbnZlbnRvcnldKGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9BbWF6b25TMy9sYXRlc3QvZGV2L3N0b3JhZ2UtaW52ZW50b3J5Lmh0bWwjc3RvcmFnZS1pbnZlbnRvcnktY29udGVudHMpIGZpbGVzIGZvciBMMkEgKE9SQyBhbmQgQ1NWKSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIHNlbnRpbmVsLWludmVudG9yeSBidWNrZXQgYXQgaHR0cHM6Ly9zZW50aW5lbC1pbnZlbnRvcnkuczMuZXUtY2VudHJhbC0xLmFtYXpvbmF3cy5jb20vIHdpdGggcHJlZml4PXNlbnRpbmVsLXMyLWwyYS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogU2VudGluZWwtMlxuTmFtZTI6IFtTMyBJbnZlbnRvcnldKGh0dHBzOi8vZG9jcy5hd3MuYW1hem9uLmNvbS9BbWF6b25TMy9sYXRlc3QvZGV2L3N0b3JhZ2UtaW52ZW50b3J5Lmh0bWwjc3RvcmFnZS1pbnZlbnRvcnktY29udGVudHMpIGZpbGVzIGZvciBMMkEgKE9SQyBhbmQgQ1NWKVxuRGVzY3JpcHRpb246IFRoZSBbU2VudGluZWwtMiBtaXNzaW9uXShodHRwczovL3NlbnRpbmVsLmVzYS5pbnQvd2ViL3NlbnRpbmVsL21pc3Npb25zL3NlbnRpbmVsLTIpIGlzIGEgbGFuZCBtb25pdG9yaW5nIGNvbnN0ZWxsYXRpb24gb2YgdHdvIHNhdGVsbGl0ZXMgdGhhdCBwcm92aWRlIGhpZ2ggcmVzb2x1dGlvbiBvcHRpY2FsIGltYWdlcnkgYW5kIHByb3ZpZGUgY29udGludWl0eSBmb3IgdGhlIGN1cnJlbnQgU1BPVCBhbmQgTGFuZHNhdCBtaXNzaW9ucy4gVGhlIG1pc3Npb24gcHJvdmlkZXMgYSBnbG9iYWwgY292ZXJhZ2Ugb2YgdGhlIEVhcnRoJ3MgbGFuZCBzdXJmYWNlIGV2ZXJ5IDUgZGF5cywgbWFraW5nIHRoZSBkYXRhIG9mIGdyZWF0IHVzZSBpbiBvbi1nb2luZyBzdHVkaWVzLiBMMUMgZGF0YSBhcmUgYXZhaWxhYmxlIGZyb20gSnVuZSAyMDE1IGdsb2JhbGx5LiBMMkEgZGF0YSBhcmUgYXZhaWxhYmxlIGZyb20gQXByaWwgMjAxNyBvdmVyIHdpZGVyIEV1cm9wZSByZWdpb24gYW5kIGdsb2JhbGx5IHNpbmNlIERlY2VtYmVyIDIwMTguXG5cbkRvY3VtZW50YXRpb246IERvY3VtZW50YXRpb24gaXMgYXZhaWxhYmxlIGZvciBbU2VudGluZWwtMiBMMUNdKGh0dHBzOi8vcm9kYS5zZW50aW5lbC1odWIuY29tL3NlbnRpbmVsLXMyLWwxYy9yZWFkbWUuaHRtbCkgYW5kIFtTZW50aW5lbC0yIEwyQV0oaHR0cHM6Ly9yb2RhLnNlbnRpbmVsLWh1Yi5jb20vc2VudGluZWwtczItbDJhL3JlYWRtZS5odG1sKS5cbkNvbnRhY3Q6IGh0dHBzOi8vZm9ydW0uc2VudGluZWwtaHViLmNvbS9jL2F3cy1zZW50aW5lbFxuTWFuYWdlZEJ5OiBbU2luZXJnaXNlXShodHRwczovL3d3dy5zaW5lcmdpc2UuY29tLylcblVwZGF0ZUZyZXF1ZW5jeTogTmV3IFNlbnRpbmVsIGRhdGEgYXJlIGFkZGVkIHJlZ3VsYXJseSwgdXN1YWxseSB3aXRoaW4gZmV3IGhvdXJzIGFmdGVyIHRoZXkgYXJlIGF2YWlsYWJsZSBvbiBDb3Blcm5pY3VzIE9wZW5IdWIuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfc2VudGluZWxfaW52ZW50b3J5X3NlbnRpbmVsX3MyX2wyYS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL3NlbnRpbmVsLTIvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfc2VudGluZWxfaW52ZW50b3J5X3NlbnRpbmVsX3MyX2wyYS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczJfbDJhJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19zZW50aW5lbF9pbnZlbnRvcnlfc2VudGluZWxfczJfbDJhIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3NlbnRpbmVsMV9zbGNfc2Vhc2lhX3BkcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3NlbnRpbmVsMV9zbGNfc2Vhc2lhX3Bkcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19zZW50aW5lbDFfc2xjX3NlYXNpYV9wZHMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBzZW50aW5lbDEtc2xjLXNlYXNpYS1wZHMgQnVja2V0OiBTZW50aW5lbC0xIFNMQyBkYXRhc2V0IGZvciBTb3V0aCBhbmQgU291dGhlYXN0IEFzaWEsIFRhaXdhbiwgYW5kIEphcGFuOiBQdWJsaWMgYWNjZXNzIHRvIFNlbnRpbmVsLTEgU0xDIElXIHNjZW5lcyBvdmVyIFNvdXRoIGFuZCBTb3V0aGVhc3QgQXNpYSwgVGFpd2FuIGFuZCBKYXBhbiIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIHNlbnRpbmVsMS1zbGMtc2Vhc2lhLXBkcyBidWNrZXQgYXQgaHR0cHM6Ly9zZW50aW5lbDEtc2xjLXNlYXNpYS1wZHMuczMuYXAtc291dGhlYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogU2VudGluZWwtMSBTTEMgZGF0YXNldCBmb3IgU291dGggYW5kIFNvdXRoZWFzdCBBc2lhLCBUYWl3YW4sIGFuZCBKYXBhblxuTmFtZTI6IFB1YmxpYyBhY2Nlc3MgdG8gU2VudGluZWwtMSBTTEMgSVcgc2NlbmVzIG92ZXIgU291dGggYW5kIFNvdXRoZWFzdCBBc2lhLCBUYWl3YW4gYW5kIEphcGFuXG5EZXNjcmlwdGlvbjogVGhlIFMxIFNpbmdsZSBMb29rIENvbXBsZXggKFNMQykgZGF0YXNldCBjb250YWlucyBTeW50aGV0aWMgQXBlcnR1cmUgUmFkYXIgKFNBUikgZGF0YSBpbiB0aGUgQy1CYW5kIHdhdmVsZW5ndGguIFRoZSBTQVIgc2Vuc29ycyBhcmUgaW5zdGFsbGVkIG9uIGEgdHdvLXNhdGVsbGl0ZSAoU2VudGluZWwtMUEgYW5kIFNlbnRpbmVsLTFCKSBjb25zdGVsbGF0aW9uIG9yYml0aW5nIHRoZSBFYXJ0aCB3aXRoIGEgY29tYmluZWQgcmV2aXNpdCB0aW1lIG9mIHNpeCBkYXlzLCBvcGVyYXRlZCBieSB0aGUgRXVyb3BlYW4gU3BhY2UgQWdlbmN5LiBUaGUgUzEgU0xDIGRhdGEgYXJlIGEgTGV2ZWwtMSBwcm9kdWN0IHRoYXQgY29sbGVjdHMgcmFkYXIgYW1wbGl0dWRlIGFuZCBwaGFzZSBpbmZvcm1hdGlvbiBpbiBhbGwtd2VhdGhlciwgZGF5IG9yIG5pZ2h0IGNvbmRpdGlvbnMsIHdoaWNoIGlzIGlkZWFsIGZvciBzdHVkeWluZyBuYXR1cmFsIGhhemFyZHMgYW5kIGVtZXJnZW5jeSByZXNwb25zZSwgbGFuZCBhcHBsaWNhdGlvbnMsIG9pbCBzcGlsbCBtb25pdG9yaW5nLCBzZWEtaWNlIGNvbmRpdGlvbnMsIGFuZCBhc3NvY2lhdGVkIGNsaW1hdGUgY2hhbmdlIGVmZmVjdHMuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZ2l0aHViLmNvbS9lYXJ0aG9ic2VydmF0b3J5L3NlbnRpbmVsMS1vcGRzL1xuQ29udGFjdDogaHR0cHM6Ly9naXRodWIuY29tL2VhcnRob2JzZXJ2YXRvcnkvc2VudGluZWwxLW9wZHMvXG5NYW5hZ2VkQnk6IFtFYXJ0aCBPYnNlcnZhdG9yeSBvZiBTaW5nYXBvcmUsIE5hbnlhbmcgVGVjaG5vbG9naWNhbCBVbml2ZXJzaXR5XShodHRwczovL2VhcnRob2JzZXJ2YXRvcnkuc2cpXG5VcGRhdGVGcmVxdWVuY3k6IFMxIFNMQyBkYXRhIGZvciB0aGUgcmVnaW9uIG9mIGludGVyZXN0IHdpbGwgYmUgdXBkYXRlZCByZWd1bGFybHksIGFzIGl0IGJlY29tZXMgYXZhaWxhYmxlIG9uIHRoZSBBbGFza2EgU2F0ZWxsaXRlIEZhY2lsaXR5IGVuZHBvaW50LlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX3NlbnRpbmVsMV9zbGNfc2Vhc2lhX3Bkcy9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL3NlbnRpbmVsMS1zbGMtc2Vhc2lhLXBkcy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19zZW50aW5lbDFfc2xjX3NlYXNpYV9wZHMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfc2VudGluZWwxX3NsY19zZWFzaWFfcGRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19zZW50aW5lbDFfc2xjX3NlYXNpYV9wZHMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfc2lsb19vcGVuX2RhdGEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19zaWxvX29wZW5fZGF0YS5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc19zaWxvX29wZW5fZGF0YS8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIHNpbG8tb3Blbi1kYXRhIEJ1Y2tldDogU0lMTyBjbGltYXRlIGRhdGEgb24gQVdTOiBTSUxPIG9wZW4gZGF0YSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIHNpbG8tb3Blbi1kYXRhIGJ1Y2tldCBhdCBodHRwczovL3NpbG8tb3Blbi1kYXRhLnMzLmFwLXNvdXRoZWFzdC0yLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IFNJTE8gY2xpbWF0ZSBkYXRhIG9uIEFXU1xuTmFtZTI6IFNJTE8gb3BlbiBkYXRhXG5EZXNjcmlwdGlvbjogW1NJTE9dKGh0dHBzOi8vd3d3LmxvbmdwYWRkb2NrLnFsZC5nb3YuYXUvc2lsbykgaXMgYSBkYXRhYmFzZSBvZiBBdXN0cmFsaWFuIFtjbGltYXRlIGRhdGFdKGh0dHBzOi8vd3d3LmxvbmdwYWRkb2NrLnFsZC5nb3YuYXUvc2lsby9hYm91dC9jbGltYXRlLXZhcmlhYmxlcykgZnJvbSAxODg5IHRvIHRoZSBwcmVzZW50LiBJdCBwcm92aWRlcyBjb250aW51b3VzLCBkYWlseSB0aW1lLXN0ZXAgW2RhdGEgcHJvZHVjdHNdKGh0dHBzOi8vd3d3LmxvbmdwYWRkb2NrLnFsZC5nb3YuYXUvc2lsby9hYm91dC9kYXRhLXByb2R1Y3RzKSBpbiByZWFkeS10by11c2UgW2Zvcm1hdHNdKGh0dHBzOi8vd3d3LmxvbmdwYWRkb2NrLnFsZC5nb3YuYXUvc2lsby9hYm91dC9maWxlLWZvcm1hdHMtYW5kLXNhbXBsZXMpIGZvciByZXNlYXJjaCBhbmQgb3BlcmF0aW9uYWwgYXBwbGljYXRpb25zLiBHcmlkZGVkIFNJTE8gZGF0YSBpbiBhbm51YWwgTmV0Q0RGIGZvcm1hdCBhcmUgb24gQVdTLiBQb2ludCBkYXRhIGFyZSBhdmFpbGFibGUgZnJvbSB0aGUgW1NJTE8gd2Vic2l0ZV0oaHR0cHM6Ly93d3cubG9uZ3BhZGRvY2sucWxkLmdvdi5hdS9zaWxvLykuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vd3d3LmxvbmdwYWRkb2NrLnFsZC5nb3YuYXUvc2lsby9ncmlkZGVkLWRhdGFcbkNvbnRhY3Q6IGh0dHBzOi8vd3d3LmxvbmdwYWRkb2NrLnFsZC5nb3YuYXUvc2lsby9jb250YWN0LXVzXG5NYW5hZ2VkQnk6IFF1ZWVuc2xhbmQgR292ZXJubWVudFxuVXBkYXRlRnJlcXVlbmN5OiBEYWlseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX3NpbG9fb3Blbl9kYXRhL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvc2lsby8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc19zaWxvX29wZW5fZGF0YS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19zaWxvX29wZW5fZGF0YSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfc2lsb19vcGVuX2RhdGEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfc29mdHdhcmVoZXJpdGFnZSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3NvZnR3YXJlaGVyaXRhZ2UuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfc29mdHdhcmVoZXJpdGFnZS8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIHNvZnR3YXJlaGVyaXRhZ2UgQnVja2V0OiBTb2Z0d2FyZSBIZXJpdGFnZSBHcmFwaCBEYXRhc2V0OiBTb2Z0d2FyZSBIZXJpdGFnZSBHcmFwaCBEYXRhc2V0IiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgc29mdHdhcmVoZXJpdGFnZSBidWNrZXQgYXQgaHR0cHM6Ly9zb2Z0d2FyZWhlcml0YWdlLnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBTb2Z0d2FyZSBIZXJpdGFnZSBHcmFwaCBEYXRhc2V0XG5OYW1lMjogU29mdHdhcmUgSGVyaXRhZ2UgR3JhcGggRGF0YXNldFxuRGVzY3JpcHRpb246IFtTb2Z0d2FyZSBIZXJpdGFnZV0oaHR0cHM6Ly93d3cuc29mdHdhcmVoZXJpdGFnZS5vcmcvKSBpcyB0aGUgbGFyZ2VzdCBleGlzdGluZyBwdWJsaWMgYXJjaGl2ZSBvZiBzb2Z0d2FyZSBzb3VyY2UgY29kZSBhbmQgYWNjb21wYW55aW5nIGRldmVsb3BtZW50IGhpc3RvcnkuIFRoZSBTb2Z0d2FyZSBIZXJpdGFnZSBHcmFwaCBEYXRhc2V0IGlzIGEgZnVsbHkgZGVkdXBsaWNhdGVkIE1lcmtsZSBEQUcgcmVwcmVzZW50YXRpb24gb2YgdGhlIFNvZnR3YXJlIEhlcml0YWdlIGFyY2hpdmUuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vd2lraS5zb2Z0d2FyZWhlcml0YWdlLm9yZy93aWtpL0dyYXBoX0RhdGFzZXRfb25fQW1hem9uX0F0aGVuYVxuQ29udGFjdDogc3doLWRldmVsQGlucmlhLmZyXG5VcGRhdGVGcmVxdWVuY3k6IERhdGEgaXMgdXBkYXRlZCB5ZWFybHlcblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc19zb2Z0d2FyZWhlcml0YWdlL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvc29mdHdhcmUtaGVyaXRhZ2UvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfc29mdHdhcmVoZXJpdGFnZS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc19zb2Z0d2FyZWhlcml0YWdlJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc19zb2Z0d2FyZWhlcml0YWdlIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3NwYWNlbmV0X2RhdGFzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc19zcGFjZW5ldF9kYXRhc2V0LmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX3NwYWNlbmV0X2RhdGFzZXQvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyBzcGFjZW5ldC1kYXRhc2V0IEJ1Y2tldDogU3BhY2VOZXQ6IEltYWdlcnkgYW5kIG1ldGFkYXRhIGluIGEgUzMgYnVja2V0IiwgIlRoaXMgZGF0YXNldCBoYXMgZmlsZSBpbmZvcm1hdGlvbiBmcm9tIHRoZSBBV1MgUzMgc3BhY2VuZXQtZGF0YXNldCBidWNrZXQgYXQgaHR0cHM6Ly9zcGFjZW5ldC1kYXRhc2V0LnMzLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBTcGFjZU5ldFxuTmFtZTI6IEltYWdlcnkgYW5kIG1ldGFkYXRhIGluIGEgUzMgYnVja2V0XG5EZXNjcmlwdGlvbjogU3BhY2VOZXQsIGxhdW5jaGVkIGluIEF1Z3VzdCAyMDE2IGFzIGFuIG9wZW4gaW5ub3ZhdGlvbiBwcm9qZWN0IG9mZmVyaW5nIGEgcmVwb3NpdG9yeSBvZiBmcmVlbHkgYXZhaWxhYmxlIGltYWdlcnkgd2l0aCBjby1yZWdpc3RlcmVkIG1hcCBmZWF0dXJlcy4gQmVmb3JlIFNwYWNlTmV0LCBjb21wdXRlciB2aXNpb24gcmVzZWFyY2hlcnMgaGFkICAgbWluaW1hbCBvcHRpb25zIHRvIG9idGFpbiBmcmVlLCBwcmVjaXNpb24tbGFiZWxlZCwgYW5kIGhpZ2gtcmVzb2x1dGlvbiBzYXRlbGxpdGUgaW1hZ2VyeS4gVG9kYXksIFNwYWNlTmV0IGhvc3RzIGRhdGFzZXRzIGRldmVsb3BlZCBieSBpdHMgb3duIHRlYW0sIGFsb25nIHdpdGggZGF0YSBzZXRzIGZyb20gcHJvamVjdHMgbGlrZSBJQVJQQVx1MjAxOXMgRnVuY3Rpb25hbCBNYXAgb2YgdGhlIFdvcmxkIChmTW9XKS5cblxuRG9jdW1lbnRhdGlvbjogaHR0cHM6Ly9zcGFjZW5ldGNoYWxsZW5nZS5naXRodWIuaW9cbkNvbnRhY3Q6IGh0dHBzOi8vZ2l0aHViLmNvbS9TcGFjZU5ldENoYWxsZW5nZS91dGlsaXRpZXMvaXNzdWVzXG5NYW5hZ2VkQnk6IFtTcGFjZU5ldF0oaHR0cHM6Ly9zcGFjZW5ldC5haS8pXG5VcGRhdGVGcmVxdWVuY3k6IE5ldyBpbWFnZXJ5IGFuZCBmZWF0dXJlcyBhcmUgYWRkZWQgcXVhcnRlcmx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfc3BhY2VuZXRfZGF0YXNldC9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL3NwYWNlbmV0LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9hd3NTM0ZpbGVzX3NwYWNlbmV0X2RhdGFzZXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWF3c1MzRmlsZXNfc3BhY2VuZXRfZGF0YXNldCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfc3BhY2VuZXRfZGF0YXNldCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc191bmlkYXRhX25leHJhZF9sZXZlbDJfY2h1bmtzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfdW5pZGF0YV9uZXhyYWRfbGV2ZWwyX2NodW5rcy5ncmFwaCIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvZmlsZXMvYXdzUzNGaWxlc191bmlkYXRhX25leHJhZF9sZXZlbDJfY2h1bmtzLyIsICJwdWJsaWMiLCAiRmlsZSBOYW1lcyBmcm9tIHRoZSBBV1MgUzMgdW5pZGF0YS1uZXhyYWQtbGV2ZWwyLWNodW5rcyBCdWNrZXQ6IE5FWFJBRCBvbiBBV1M6IE5FWFJBRCBMZXZlbCBJSSByZWFsLXRpbWUgZGF0YSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIHVuaWRhdGEtbmV4cmFkLWxldmVsMi1jaHVua3MgYnVja2V0IGF0IGh0dHBzOi8vdW5pZGF0YS1uZXhyYWQtbGV2ZWwyLWNodW5rcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogTkVYUkFEIG9uIEFXU1xuTmFtZTI6IE5FWFJBRCBMZXZlbCBJSSByZWFsLXRpbWUgZGF0YVxuRGVzY3JpcHRpb246IFJlYWwtdGltZSBhbmQgYXJjaGl2YWwgZGF0YSBmcm9tIHRoZSBOZXh0IEdlbmVyYXRpb24gV2VhdGhlciBSYWRhciAoTkVYUkFEKSBuZXR3b3JrLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL2RvY3Mub3BlbmRhdGEuYXdzL25vYWEtbmV4cmFkL3JlYWRtZS5odG1sXG5Db250YWN0OiBub2FhLmJkcEBub2FhLmdvdlxuTWFuYWdlZEJ5OiBbTk9BQV0oaHR0cHM6Ly93d3cubm9hYS5nb3YvKVxuVXBkYXRlRnJlcXVlbmN5OiBOZXcgTGV2ZWwgSUkgZGF0YSBpcyBhZGRlZCBhcyBzb29uIGFzIGl0IGlzIGF2YWlsYWJsZS5cblxuY2RtX2RhdGFfdHlwZSA9IE90aGVyXG5WQVJJQUJMRVM6XG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbmxhc3RNb2RpZmllZCAoTGFzdCBNb2RpZmllZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXdzUzNGaWxlc191bmlkYXRhX25leHJhZF9sZXZlbDJfY2h1bmtzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3Mvbm9hYS1uZXhyYWQvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfdW5pZGF0YV9uZXhyYWRfbGV2ZWwyX2NodW5rcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc191bmlkYXRhX25leHJhZF9sZXZlbDJfY2h1bmtzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc191bmlkYXRhX25leHJhZF9sZXZlbDJfY2h1bmtzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3VzZ3NfbGlkYXJfcHVibGljIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfdXNnc19saWRhcl9wdWJsaWMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfdXNnc19saWRhcl9wdWJsaWMvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyB1c2dzLWxpZGFyLXB1YmxpYyBCdWNrZXQ6IFVTR1MgM0RFUCBMaURBUiBQb2ludCBDbG91ZHM6IFB1YmxpYyBhY2Nlc3MgRW50d2luZSBQb2ludCBUaWxlcyBvZiBtb3N0IHJlc291cmNlcyBmcm9tIHRoZSBgYGFybjphd3M6czM6Ojp1c2dzLWxpZGFyYGAgYnVja2V0LiIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIHVzZ3MtbGlkYXItcHVibGljIGJ1Y2tldCBhdCBodHRwczovL3VzZ3MtbGlkYXItcHVibGljLnMzLnVzLXdlc3QtMi5hbWF6b25hd3MuY29tLyAuIFVzZSBFUkREQVAncyBcImZpbGVzXCIgc3lzdGVtIGZvciB0aGlzIGRhdGFzZXQgdG8gYnJvd3NlIGFuZCBkb3dubG9hZCB0aGUgZmlsZXMuIFRoZSBcImZpbGVzXCIgaW5mb3JtYXRpb24gZm9yIHRoaXMgZGF0YXNldCBpcyBhbHdheXMgcGVyZmVjdGx5IHVwLXRvLWRhdGUgYmVjYXVzZSBFUkREQVAgZ2V0cyBpdCBvbi10aGUtZmx5LiBBV1MgUzMgZG9lc24ndCBvZmZlciBhIHNpbXBsZSB3YXkgdG8gYnJvd3NlIHRoZSBmaWxlcyBpbiB0aGVpciBwdWJsaWMsIE9wZW4gRGF0YSBidWNrZXRzLiBUaGlzIGRhdGFzZXQgaXMgYSBzb2x1dGlvbiB0byB0aGF0IHByb2JsZW0gZm9yIHRoaXMgYnVja2V0LlxuXG5OYW1lOiBVU0dTIDNERVAgTGlEQVIgUG9pbnQgQ2xvdWRzXG5OYW1lMjogUHVibGljIGFjY2VzcyBFbnR3aW5lIFBvaW50IFRpbGVzIG9mIG1vc3QgcmVzb3VyY2VzIGZyb20gdGhlIGBgYXJuOmF3czpzMzo6OnVzZ3MtbGlkYXJgYCBidWNrZXQuXG5EZXNjcmlwdGlvbjogVGhlIGdvYWwgb2YgdGhlIFtVU0dTIDNEIEVsZXZhdGlvbiBQcm9ncmFtIF0oaHR0cHM6Ly93d3cudXNncy5nb3YvY29yZS1zY2llbmNlLXN5c3RlbXMvbmdwLzNkZXApICgzREVQKSBpcyB0byBjb2xsZWN0IGVsZXZhdGlvbiBkYXRhIGluIHRoZSBmb3JtIG9mIGxpZ2h0IGRldGVjdGlvbiBhbmQgcmFuZ2luZyAoTGlEQVIpIGRhdGEgb3ZlciB0aGUgY29udGVybWlub3VzIFVuaXRlZCBTdGF0ZXMsIEhhd2FpaSwgYW5kIHRoZSBVLlMuIHRlcnJpdG9yaWVzLCB3aXRoIGRhdGEgYWNxdWlyZWQgb3ZlciBhbiA4LXllYXIgcGVyaW9kLiBUaGlzIGRhdGFzZXQgcHJvdmlkZXMgdHdvIHJlYWxpemF0aW9ucyBvZiB0aGUgM0RFUCBwb2ludCBjbG91ZCBkYXRhLiBUaGUgZmlyc3QgcmVzb3VyY2UgaXMgYSBwdWJsaWMgYWNjZXNzIG9yZ2FuaXphdGlvbiBwcm92aWRlZCBpbiBbRW50d2luZSBQb2ludCBUaWxlc10oaHR0cHM6Ly9lbnR3aW5lLmlvL2VudHdpbmUtcG9pbnQtdGlsZS5odG1sKSBmb3JtYXQsIHdoaWNoIGEgbG9zc2xlc3MsIGZ1bGwtZGVuc2l0eSwgc3RyZWFtYWJsZSBvY3RyZWUgYmFzZWQgb24gW0xBU3ppcF0oaHR0cHM6Ly9sYXN6aXAub3JnKSAoTEFaKSBlbmNvZGluZy4gVGhlIHNlY29uZCByZXNvdXJjZSBpcyBhIFtSZXF1ZXN0ZXIgUGF5c10oaHR0cHM6Ly9kb2NzLmF3cy5hbWF6b24uY29tL0FtYXpvblMzL2xhdGVzdC9kZXYvUmVxdWVzdGVyUGF5c0J1Y2tldHMuaHRtbCkgb2YgdGhlIHNhbWUgZGF0YSBpbiBMQVogKENvbXByZXNzZWQgTEFTKSBmb3JtYXQuIFJlc291cmNlIG5hbWVzIGluIGJvdGggYnVja2V0cyBjb3JyZXNwb25kIHRvIHRoZSBVU0dTIHByb2plY3QgbmFtZXMuXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vZ2l0aHViLmNvbS9ob2J1L3VzZ3MtbGlkYXIvXG5Db250YWN0OiBodHRwczovL2dpdGh1Yi5jb20vaG9idS91c2dzLWxpZGFyXG5NYW5hZ2VkQnk6IFtIb2J1LCBJbmMuXShodHRwczovL2hvYnUuY28pXG5VcGRhdGVGcmVxdWVuY3k6IFBlcmlvZGljYWxseVxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX3VzZ3NfbGlkYXJfcHVibGljL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9yZWdpc3RyeS5vcGVuZGF0YS5hd3MvdXNncy1saWRhci8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc191c2dzX2xpZGFyX3B1YmxpYy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc191c2dzX2xpZGFyX3B1YmxpYyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfdXNnc19saWRhcl9wdWJsaWMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfd2ViX2xhbmd1YWdlX21vZGVscyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3dlYl9sYW5ndWFnZV9tb2RlbHMuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfd2ViX2xhbmd1YWdlX21vZGVscy8iLCAicHVibGljIiwgIkZpbGUgTmFtZXMgZnJvbSB0aGUgQVdTIFMzIHdlYi1sYW5ndWFnZS1tb2RlbHMgQnVja2V0OiBQcm92aXNpb24gb2YgV2ViLVNjYWxlIFBhcmFsbGVsIENvcnBvcmEgZm9yIE9mZmljaWFsIEV1cm9wZWFuIExhbmd1YWdlcyAoUGFyYUNyYXdsKTogUGFyYWxsZWwgQ29ycG9yYSB0by9mcm9tIEVuZ2xpc2ggZm9yIGFsbCBvZmZpY2lhbCBFVSBsYW5ndWFnZXMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyB3ZWItbGFuZ3VhZ2UtbW9kZWxzIGJ1Y2tldCBhdCBodHRwczovL3dlYi1sYW5ndWFnZS1tb2RlbHMuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vIC4gVXNlIEVSRERBUCdzIFwiZmlsZXNcIiBzeXN0ZW0gZm9yIHRoaXMgZGF0YXNldCB0byBicm93c2UgYW5kIGRvd25sb2FkIHRoZSBmaWxlcy4gVGhlIFwiZmlsZXNcIiBpbmZvcm1hdGlvbiBmb3IgdGhpcyBkYXRhc2V0IGlzIGFsd2F5cyBwZXJmZWN0bHkgdXAtdG8tZGF0ZSBiZWNhdXNlIEVSRERBUCBnZXRzIGl0IG9uLXRoZS1mbHkuIEFXUyBTMyBkb2Vzbid0IG9mZmVyIGEgc2ltcGxlIHdheSB0byBicm93c2UgdGhlIGZpbGVzIGluIHRoZWlyIHB1YmxpYywgT3BlbiBEYXRhIGJ1Y2tldHMuIFRoaXMgZGF0YXNldCBpcyBhIHNvbHV0aW9uIHRvIHRoYXQgcHJvYmxlbSBmb3IgdGhpcyBidWNrZXQuXG5cbk5hbWU6IFByb3Zpc2lvbiBvZiBXZWItU2NhbGUgUGFyYWxsZWwgQ29ycG9yYSBmb3IgT2ZmaWNpYWwgRXVyb3BlYW4gTGFuZ3VhZ2VzIChQYXJhQ3Jhd2wpXG5OYW1lMjogUGFyYWxsZWwgQ29ycG9yYSB0by9mcm9tIEVuZ2xpc2ggZm9yIGFsbCBvZmZpY2lhbCBFVSBsYW5ndWFnZXNcbkRlc2NyaXB0aW9uOiBQYXJhQ3Jhd2wgaXMgYSBzZXQgb2YgbGFyZ2UgcGFyYWxsZWwgY29ycG9yYSB0by9mcm9tIEVuZ2xpc2ggZm9yIGFsbCBvZmZpY2lhbCBFVSBsYW5ndWFnZXMgYnkgYSBicm9hZCB3ZWIgY3Jhd2xpbmcgZWZmb3J0LiBTdGF0ZS1vZi10aGUtYXJ0IG1ldGhvZHMgYXJlIGFwcGxpZWQgZm9yIHRoZSBlbnRpcmUgcHJvY2Vzc2luZyBjaGFpbiBmcm9tIGlkZW50aWZ5aW5nIHdlYiBzaXRlcyB3aXRoIHRyYW5zbGF0ZWQgdGV4dCBhbGwgdGhlIHdheSB0byBjb2xsZWN0aW5nLCBjbGVhbmluZyBhbmQgZGVsaXZlcmluZyBwYXJhbGxlbCBjb3Jwb3JhIHRoYXQgYXJlIHJlYWR5IGFzIHRyYWluaW5nIGRhdGEgZm9yIENFRi5BVCBhbmQgdHJhbnNsYXRpb24gbWVtb3JpZXMgZm9yIERHIFRyYW5zbGF0aW9uLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwczovL3BhcmFjcmF3bC5ldS9yZWxlYXNlcy5odG1sXG5Db250YWN0OiBGb3IgcXVlc3Rpb25zIHJlZ2FyZGluZyB0aGUgZGF0YXNldHMgY29udGFjdCBLZW5uZXRoIEhlYWZpZWxkLCBlbWFpbCBraGVhZmllbEBpbmYuZWQuYWMudWsuIEZvciByZXBvcnRpbmcgYW55IGlzc3VlcyBhYm91dCBiaXRleHRvciBwaXBlbGluZSB2aXNpdCBodHRwczovL2dpdGh1Yi5jb20vYml0ZXh0b3IvYml0ZXh0b3IvaXNzdWVzLlxuTWFuYWdlZEJ5OiBbUGFyYUNyYXdsXShodHRwczovL3BhcmFjcmF3bC5ldSlcblVwZGF0ZUZyZXF1ZW5jeTogTmV3IGRhdGEgaXMgYWRkZWQgYWNjb3JkaW5nIHRvIFBhcmFDcmF3bCByZWxlYXNlIHNjaGVkdWxlLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnVybFxubmFtZSAoRmlsZSBOYW1lKVxubGFzdE1vZGlmaWVkIChMYXN0IE1vZGlmaWVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2l6ZSAoYnl0ZXMpXG5maWxlVHlwZSAoRmlsZSBUeXBlKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9hd3NTM0ZpbGVzX3dlYl9sYW5ndWFnZV9tb2RlbHMvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy9wYXJhY3Jhd2wvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfd2ViX2xhbmd1YWdlX21vZGVscy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc193ZWJfbGFuZ3VhZ2VfbW9kZWxzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc193ZWJfbGFuZ3VhZ2VfbW9kZWxzIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3hpcGhfbWVkaWEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvYXdzUzNGaWxlc194aXBoX21lZGlhLmdyYXBoIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9maWxlcy9hd3NTM0ZpbGVzX3hpcGhfbWVkaWEvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyB4aXBoLW1lZGlhIEJ1Y2tldDogWGlwaC5PcmcgVGVzdCBNZWRpYTogVmlkZW8gYW5kIGltYWdlcnkgZGF0YSIsICJUaGlzIGRhdGFzZXQgaGFzIGZpbGUgaW5mb3JtYXRpb24gZnJvbSB0aGUgQVdTIFMzIHhpcGgtbWVkaWEgYnVja2V0IGF0IGh0dHBzOi8veGlwaC1tZWRpYS5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogWGlwaC5PcmcgVGVzdCBNZWRpYVxuTmFtZTI6IFZpZGVvIGFuZCBpbWFnZXJ5IGRhdGFcbkRlc2NyaXB0aW9uOiBVbmNvbXByZXNzZWQgdmlkZW8gdXNlZCBmb3IgdmlkZW8gY29tcHJlc3Npb24gYW5kIHZpZGVvIHByb2Nlc3NpbmcgcmVzZWFyY2guXG5cbkRvY3VtZW50YXRpb246IGh0dHBzOi8vbWVkaWEueGlwaC5vcmcvYXdzLmh0bWxcbkNvbnRhY3Q6IFRob21hcyBEYWVkZSB0ZGFlZGVAeGlwaC5vcmdcblVwZGF0ZUZyZXF1ZW5jeTogTmV3IHZpZGVvcyBhcmUgYWRkZWQgd2hlbiBjb250cmlidXRvcnMgc3VibWl0IHRoZW0uXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfeGlwaF9tZWRpYS9pbmRleC5qc29uIiwgImh0dHBzOi8vcmVnaXN0cnkub3BlbmRhdGEuYXdzL3hpcGgtbWVkaWEvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2F3c1MzRmlsZXNfeGlwaF9tZWRpYS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc194aXBoX21lZGlhJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkFtYXpvbiBXZWIgU2VydmljZXMiLCAiYXdzUzNGaWxlc194aXBoX21lZGlhIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hd3NTM0ZpbGVzX3ljYl9iZW5jaG1hcmtzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2F3c1MzRmlsZXNfeWNiX2JlbmNobWFya3MuZ3JhcGgiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2ZpbGVzL2F3c1MzRmlsZXNfeWNiX2JlbmNobWFya3MvIiwgInB1YmxpYyIsICJGaWxlIE5hbWVzIGZyb20gdGhlIEFXUyBTMyB5Y2ItYmVuY2htYXJrcyBCdWNrZXQ6IFlhbGUtQ01VLUJlcmtlbGV5IChZQ0IpIE9iamVjdCBhbmQgTW9kZWwgU2V0OiBQcm9qZWN0IGRhdGEgZmlsZXMiLCAiVGhpcyBkYXRhc2V0IGhhcyBmaWxlIGluZm9ybWF0aW9uIGZyb20gdGhlIEFXUyBTMyB5Y2ItYmVuY2htYXJrcyBidWNrZXQgYXQgaHR0cHM6Ly95Y2ItYmVuY2htYXJrcy5zMy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbS8gLiBVc2UgRVJEREFQJ3MgXCJmaWxlc1wiIHN5c3RlbSBmb3IgdGhpcyBkYXRhc2V0IHRvIGJyb3dzZSBhbmQgZG93bmxvYWQgdGhlIGZpbGVzLiBUaGUgXCJmaWxlc1wiIGluZm9ybWF0aW9uIGZvciB0aGlzIGRhdGFzZXQgaXMgYWx3YXlzIHBlcmZlY3RseSB1cC10by1kYXRlIGJlY2F1c2UgRVJEREFQIGdldHMgaXQgb24tdGhlLWZseS4gQVdTIFMzIGRvZXNuJ3Qgb2ZmZXIgYSBzaW1wbGUgd2F5IHRvIGJyb3dzZSB0aGUgZmlsZXMgaW4gdGhlaXIgcHVibGljLCBPcGVuIERhdGEgYnVja2V0cy4gVGhpcyBkYXRhc2V0IGlzIGEgc29sdXRpb24gdG8gdGhhdCBwcm9ibGVtIGZvciB0aGlzIGJ1Y2tldC5cblxuTmFtZTogWWFsZS1DTVUtQmVya2VsZXkgKFlDQikgT2JqZWN0IGFuZCBNb2RlbCBTZXRcbk5hbWUyOiBQcm9qZWN0IGRhdGEgZmlsZXNcbkRlc2NyaXB0aW9uOiBUaGlzIHByb2plY3QgcHJpbWFyaWx5IGFpbXMgdG8gZmFjaWxpdGF0ZSBwZXJmb3JtYW5jZSBiZW5jaG1hcmtpbmcgaW4gcm9ib3RpY3MgcmVzZWFyY2guIFRoZSBkYXRhc2V0IHByb3ZpZGVzIG1lc2ggbW9kZWxzLCBSR0IsIFJHQi1EIGFuZCBwb2ludCBjbG91ZCBpbWFnZXMgb2Ygb3ZlciA4MCBvYmplY3RzLiBUaGUgcGh5c2ljYWwgb2JqZWN0cyBhcmUgYWxzbyBhdmFpbGFibGUgdmlhIHRoZSBbWUNCIGJlbmNobWFya2luZyBwcm9qZWN0XShodHRwOi8vd3d3LnljYmJlbmNobWFya3MuY29tLykuIFRoZSBkYXRhIGFyZSBjb2xsZWN0ZWQgYnkgdHdvIHN0YXRlIG9mIHRoZSBhcnQgc3lzdGVtczogVUMgQmVya2xleSdzIHNjYW5uaW5nIHJpZyBhbmQgdGhlIEdvb2dsZSBzY2FubmVyLiBUaGUgVUMgQmVya2xleSdzIHNjYW5uaW5nIHJpZyBkYXRhIHByb3ZpZGUgbWVzaGVzIGdlbmVyYXRlZCB3aXRoIFBvaXNzb24gcmVjb25zdHJ1Y3Rpb24sIG1lc2hlcyBnZW5lcmF0ZWQgd2l0aCB2b2x1bWV0cmljIHJhbmdlIGltYWdlIGludGVncmF0aW9uLCB0ZXh0dXJlZCB2ZXJzaW9ucyBvZiBib3RoIG1lc2hlcywgS2luYm9keSBmaWxlcyBmb3IgdXNpbmcgdGhlIG1lc2hlcyB3aXRoIE9wZW5SQVZFLCA2MDAgSGlnaC1yZXNvbHV0aW9uIFJHQiBpbWFnZXMsIDYwMCBSR0ItRCBpbWFnZXMsIGFuZCA2MDAgcG9pbnQgY2xvdWQgaW1hZ2VzIGZvciBlYWNoIG9iamVjdC4gVGhlIEdvb2dsZSBzY2FubmVyIGRhdGEgcHJvdmlkZXMgMyBtZXNoZXMgd2l0aCBkaWZmZXJlbnQgcmVzb2x1dGlvbnMgKDE2aywgNjRrLCBhbmQgNTEyayBwb2x5Z29ucyksIHRleHR1cmVkIHZlcnNpb25zIG9mIGVhY2ggbWVzaCwgS2luYm9keSBmaWxlcyBmb3IgdXNpbmcgdGhlIG1lc2hlcyB3aXRoIE9wZW5SQVZFLlxuXG5Eb2N1bWVudGF0aW9uOiBodHRwOi8vd3d3LnljYmJlbmNobWFya3MuY29tL1xuQ29udGFjdDogYmNhbGxpQHdwaS5lZHVcblVwZGF0ZUZyZXF1ZW5jeTogWWVhcmx5XG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudXJsXG5uYW1lIChGaWxlIE5hbWUpXG5sYXN0TW9kaWZpZWQgKExhc3QgTW9kaWZpZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaXplIChieXRlcylcbmZpbGVUeXBlIChGaWxlIFR5cGUpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2F3c1MzRmlsZXNfeWNiX2JlbmNobWFya3MvaW5kZXguanNvbiIsICJodHRwczovL3JlZ2lzdHJ5Lm9wZW5kYXRhLmF3cy95Y2ItYmVuY2htYXJrcy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvYXdzUzNGaWxlc195Y2JfYmVuY2htYXJrcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9YXdzUzNGaWxlc195Y2JfYmVuY2htYXJrcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJBbWF6b24gV2ViIFNlcnZpY2VzIiwgImF3c1MzRmlsZXNfeWNiX2JlbmNobWFya3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2NyaXBwc0dsaWRlcnMuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NjcmlwcHNHbGlkZXJzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NjcmlwcHNHbGlkZXJzLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkdsaWRlcnMsIFNjcmlwcHMgSW5zdGl0dXRpb24gb2YgT2NlYW5vZ3JhcGh5LCAyMDE0LXByZXNlbnQiLCAiU3ByYXkgZ2xpZGVyIGRhdGEgZnJvbSBTY3JpcHBzIEluc3RpdHV0aW9uIG9mIE9jZWFub2dyYXBoeSwgSW5zdHJ1bWVudCBEZXZlbG9wbWVudCBHcm91cC4gR2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgdXNlIGNoYW5nZXMgaW4gYnVveWFuY3kgdG8gbW92ZSB2ZXJ0aWNhbGx5IGFuZCBob3Jpem9udGFsbHkgdGhyb3VnaCB0aGUgd2F0ZXIgY29sdW1uIGluIGEgc2F3LXRvb3RoIHBhdHRlcm4uIFRoZXkgYXJlIGRlcGxveWVkIGZvciBkYXlzIHRvIHNldmVyYWwgbW9udGhzIGFuZCBnYXRoZXIgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsLCBjaGVtaWNhbCBhbmQgYmlvbG9naWNhbCBwcm9jZXNzZXMgb2YgdGhlIHdvcmxkJ3Mgb2NlYW5zLlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVByb2ZpbGVcblZBUklBQkxFUzpcbnRyYWplY3RvcnkgKFRyYWplY3RvcnkgTmFtZSlcbmluc3RpdHV0aW9uXG5wbGF0Zm9ybV9pZFxucGxhdGZvcm1fdHlwZVxud21vX2lkXG5jdGRfbWFrZV9tb2RlbCAoQ1REIE1ha2UgYW5kIE1vZGVsKVxuc2VnbWVudF9pZFxudGltZV91diAoRGVwdGgtYXZlcmFnZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdF91diAoRGVwdGgtYXZlcmFnZWQgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG5sb25fdXYgKERlcHRoLWF2ZXJhZ2VkIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxudSAoRGVwdGgtYXZlcmFnZWQgRWFzdHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBtIHMtMSlcbnYgKERlcHRoLWF2ZXJhZ2VkIE5vcnRod2FyZCBTZWEgV2F0ZXIgVmVsb2NpdHksIG0gcy0xKVxudXZfcWMgKHV2IFF1YWxpdHkgRmxhZylcbnByb2ZpbGVfaWRcbnByb2ZpbGVfcWMgKFByb2ZpbGUgdGltZSwgbGF0aXR1ZGUsIGxvbmdpdHVkZSBRdWFsaXR5IEZsYWcpXG50aW1lIChQcm9maWxlIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoUHJvZmlsZSBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoUHJvZmlsZSBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmRlcHRoIChtKVxuZF9xYyAoZGVwdGggcXVhbGl0eSBmbGFnKVxucHJlc3N1cmUgKFNlYSBXYXRlciBQcmVzc3VyZSwgZGJhcilcbnBfcWMgKHByZXNzdXJlIHF1YWxpdHkgZmxhZylcbnRlbXBlcmF0dXJlIChTZWEgV2F0ZXIgVGVtcGVyYXR1cmUsIENlbHNpdXMpXG4uLi4gKDExIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3NjcmlwcHNHbGlkZXJzX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9zY3JpcHBzR2xpZGVyc19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zY3JpcHBzR2xpZGVycy9pbmRleC5qc29uIiwgImh0dHBzOi8vc3ByYXkudWNzZC5lZHUiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvc2NyaXBwc0dsaWRlcnMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNjcmlwcHNHbGlkZXJzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlNjcmlwcHMgSW5zdGl0dXRpb24gb2YgT2NlYW5vZ3JhcGh5IiwgInNjcmlwcHNHbGlkZXJzIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEd0c3BwQmVzdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkR3RzcHBCZXN0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEd0c3BwQmVzdC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJHbG9iYWwgVGVtcGVyYXR1cmUgYW5kIFNhbGluaXR5IFByb2ZpbGUgUHJvZ3JhbW1lIChHVFNQUCkgRGF0YSwgMTk4NS1wcmVzZW50IiwgIlRoZSBHbG9iYWwgVGVtcGVyYXR1cmUtU2FsaW5pdHkgUHJvZmlsZSBQcm9ncmFtbWUgKEdUU1BQKSBkZXZlbG9wcyBhbmQgbWFpbnRhaW5zIGEgZ2xvYmFsIG9jZWFuIHRlbXBlcmF0dXJlIGFuZCBzYWxpbml0eSByZXNvdXJjZSB3aXRoIGRhdGEgdGhhdCBhcmUgYm90aCB1cC10by1kYXRlIGFuZCBvZiB0aGUgaGlnaGVzdCBxdWFsaXR5LiBJdCBpcyBhIGpvaW50IFdvcmxkIE1ldGVvcm9sb2dpY2FsIE9yZ2FuaXphdGlvbiAoV01PKSBhbmQgSW50ZXJnb3Zlcm5tZW50YWwgT2NlYW5vZ3JhcGhpYyBDb21taXNzaW9uIChJT0MpIHByb2dyYW0uICBJdCBpbmNsdWRlcyBkYXRhIGZyb20gWEJUcywgQ1REcywgbW9vcmVkIGFuZCBkcmlmdGluZyBidW95cywgYW5kIFBBTEFDRSBmbG9hdHMuIEZvciBpbmZvcm1hdGlvbiBhYm91dCBvcmdhbml6YXRpb25zIGNvbnRyaWJ1dGluZyBkYXRhIHRvIEdUU1BQLCBzZWUgaHR0cDovL2dvc2ljLm9yZy9nb29zL0dUU1BQLWRhdGEtZmxvdy5odG0gLiAgVGhlIFUuUy4gTmF0aW9uYWwgT2NlYW5vZ3JhcGhpYyBEYXRhIENlbnRlciAoTk9EQykgbWFpbnRhaW5zIHRoZSBHVFNQUCBDb250aW51b3VzbHkgTWFuYWdlZCBEYXRhIEJhc2UgYW5kIHJlbGVhc2VzIG5ldyAnYmVzdC1jb3B5JyBkYXRhIG9uY2UgcGVyIG1vbnRoLlxuXG5XQVJOSU5HOiBUaGlzIGRhdGFzZXQgaGFzIGEgKmxvdCogb2YgZGF0YS4gIElmIHlvdSByZXF1ZXN0IHRvbyBtdWNoIGRhdGEsIHlvdXIgcmVxdWVzdCB3aWxsIGZhaWwuXG4qIElmIHlvdSBkb24ndCBzcGVjaWZ5IGEgbG9uZ2l0dWRlIGFuZCBsYXRpdHVkZSBib3VuZGluZyBib3gsIGRvbid0IHJlcXVlc3QgbW9yZSB0aGFuIGEgbW9udGgncyBkYXRhIGF0IGEgdGltZS5cbiogSWYgeW91IGRvIHNwZWNpZnkgYSBsb25naXR1ZGUgYW5kIGxhdGl0dWRlIGJvdW5kaW5nIGJveCwgeW91IGNhbiByZXF1ZXN0IGRhdGEgZm9yIGEgcHJvcG9ydGlvbmFsbHkgbG9uZ2VyIHRpbWUgcGVyaW9kLlxuUmVxdWVzdGluZyBkYXRhIGZvciBhIHNwZWNpZmljIHN0YXRpb25faWQgbWF5IGJlIHNsb3csIGJ1dCBpdCB3b3Jrcy5cblxuKioqIFRoaXMgRVJEREFQIGRhdGFzZXQgaGFzIGRhdGEgZm9yIHRoZSBlbnRpcmUgd29ybGQgZm9yIGFsbCBhdmFpbGFibGUgdGltZXMgKGN1cnJlbnRseSwgdXAgdG8gYW5kIGluY2x1ZGluZyB0aGUgSnVuZSAyMDIwIGRhdGEpIGJ1dCBpcyBhIHN1YnNldCBvZiB0aGUgb3JpZ2luYWwgTk9EQyAnYmVzdC1jb3B5JyBkYXRhLiAgSXQgb25seSBpbmNsdWRlcyBkYXRhIHdoZXJlIHRoZSBxdWFsaXR5IGZsYWdzIGluZGljYXRlIHRoZSBkYXRhIGlzIDE9Q09SUkVDVCwgMj1QUk9CQUJMWSBHT09ELCBvciA1PU1PRElGSUVELiBJdCBkb2VzIG5vdCBpbmNsdWRlIHNvbWUgb2YgdGhlIG1ldGFkYXRhLCBhbnkgb2YgdGhlIGhpc3RvcnkgZGF0YSwgb3IgYW55IG9mIHRoZSBxdWFsaXR5IGZsYWcgZGF0YSBvZiB0aGUgb3JpZ2luYWwgZGF0YXNldC4gWW91IGNhbiBhbHdheXMgZ2V0IHRoZSBjb21wbGV0ZSwgdXAtdG8tZGF0ZSBkYXRhc2V0IChhbmQgYWRkaXRpb25hbCwgbmVhci1yZWFsLXRpbWUgZGF0YSkgZnJvbSB0aGUgc291cmNlOiBodHRwczovL3d3dy5ub2RjLm5vYWEuZ292L0dUU1BQLyAuICBTcGVjaWZpYyBkaWZmZXJlbmNlcyBhcmU6XG4qIFByb2ZpbGVzIHdpdGggYSBwb3NpdGlvbl9xdWFsaXR5X2ZsYWcgb3IgYSB0aW1lX3F1YWxpdHlfZmxhZyBvdGhlciB0aGFuIDF8Mnw1IHdlcmUgcmVtb3ZlZC5cbiogUm93cyB3aXRoIGEgZGVwdGggKHopIHZhbHVlIGxlc3MgdGhhbiAtMC40IG9yIGdyZWF0ZXIgdGhhbiAxMDAwMCBvciBhIHpfdmFyaWFibGVfcXVhbGl0eV9mbGFnIG90aGVyIHRoYW4gMXwyfDUgd2VyZSByZW1vdmVkLlxuKiBUZW1wZXJhdHVyZSB2YWx1ZXMgbGVzcyB0aGFuIC00IG9yIGdyZWF0ZXIgdGhhbiA0MCBvciB3aXRoIGEgdGVtcGVyYXR1cmVfcXVhbGl0eV9mbGFnIG90aGVyIHRoYW4gMXwyfDUgd2VyZSBzZXQgdG8gTmFOLlxuKiBTYWxpbml0eSB2YWx1ZXMgbGVzcyB0aGFuIDAgb3IgZ3JlYXRlciB0aGFuIDQxIG9yIHdpdGggYSBzYWxpbml0eV9xdWFsaXR5X2ZsYWcgb3RoZXIgdGhhbiAxfDJ8NSB3ZXJlIHNldCB0byBOYU4uXG4qIFRpbWUgdmFsdWVzIHdlcmUgY29udmVydGVkIGZyb20gXCJkYXlzIHNpbmNlIDE5MDAtMDEtMDEgMDA6MDA6MDBcIiB0byBcInNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFwiLlxuXG5TZWUgdGhlIFF1YWxpdHkgRmxhZyBkZWZpbml0aW9ucyBvbiBwYWdlIDUgYW5kIFwiVGFibGUgMi4xOiBHbG9iYWwgSW1wb3NzaWJsZSBQYXJhbWV0ZXIgVmFsdWVzXCIgb24gcGFnZSA2MSBvZlxuaHR0cHM6Ly93d3cubm9kYy5ub2FhLmdvdi9HVFNQUC9kb2N1bWVudC9xY21hbnMvR1RTUFBfUlRfUUNfTWFudWFsXzIwMDkwOTE2LnBkZiAuXG5UaGUgUXVhbGl0eSBGbGFnIGRlZmluaXRpb25zIGFyZSBhbHNvIGF0XG5odHRwczovL3d3dy5ub2RjLm5vYWEuZ292L0dUU1BQL2RvY3VtZW50L3FjbWFucy9xY2ZsYWdzLmh0bSAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUcmFqZWN0b3J5UHJvZmlsZVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeSAoVHJhamVjdG9yeSBJRClcbi4uLiAoMTEgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkR3RzcHBCZXN0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRHdHNwcEJlc3RfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkR3RzcHBCZXN0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cubm9kYy5ub2FhLmdvdi9HVFNQUC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkR3RzcHBCZXN0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRHdHNwcEJlc3Qmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOT0RDIiwgImVyZEd0c3BwQmVzdCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRHbG9iZWNNb2MxLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRHbG9iZWNNb2MxIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEdsb2JlY01vYzEuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiR0xPQkVDIE5FUCBNT0NORVNTIFBsYW5rdG9uIChNT0MxKSBEYXRhLCAyMDAwLTIwMDIiLCAiR0xPQkVDIChHTE9CYWwgT2NlYW4gRUNvc3lzdGVtcyBEeW5hbWljcykgTkVQIChOb3J0aGVhc3QgUGFjaWZpYykgQ2FsaWZvcm5pYSBDdXJyZW50IFByb2dyYW1cbk1PQ05FU1MgUGxhbmt0b24gKE1PQzEpIERhdGFcblRoZSBNT0NORVNTIGlzIGJhc2VkIG9uIHRoZSBUdWNrZXIgVHJhd2wgcHJpbmNpcGxlIChUdWNrZXIsIDE5NTEpLiBUaGUgTU9DTkVTUy0xIGhhcyBuaW5lIHJlY3Rhbmd1bGFyIG5ldHMgKDFtIHggMS40IG0pIHdoaWNoIGFyZSBvcGVuZWQgYW5kIGNsb3NlZCBzZXF1ZW50aWFsbHkgYnkgY29tbWFuZHMgdGhyb3VnaCBjb25kdWN0aW5nIGNhYmxlIGZyb20gdGhlIHN1cmZhY2UgKFdpZWJlIGV0IGFsLiwgMTk3NikuIEluIE1PQ05FU1Mgc3lzdGVtcywgXCJ0aGUgdW5kZXJ3YXRlciB1bml0IHNlbmRzIGEgZGF0YSBmcmFtZSwgY29tcHJpc2VkIG9mIHRlbXBlcmF0dXJlLCBkZXB0aCwgY29uZHVjdGl2aXR5LCBuZXQtZnJhbWUgYW5nbGUsIGZsb3cgY291bnQsIHRpbWUsIG51bWJlciBvZiBvcGVuIG5ldCwgYW5kIG5ldCBvcGVuaW5nL2Nsb3NpbmcsIHRvIHRoZSBkZWNrIHVuaXQgaW4gYSBjb21wcmVzc2VkIGhleGFkZWNpbWFsIGZvcm1hdCBldmVyeSAyIHNlY29uZHMgYW5kIGZyb20gdGhlIGRlY2sgdW5pdCB0byBhIG1pY3JvY29tcHV0ZXIgZXZlcnkgNCBzZWNvbmRzLi4uIFRlbXBlcmF0dXJlICh0byBhcHByb3hpbWF0ZWx5IDAuMDEgZGVnIEMpIGFuZCBjb25kdWN0aXZpdHkgYXJlIG1lYXN1cmVkIHdpdGggU0VBQklSRCBzZW5zb3JzLiBOb3JtYWxseSwgYSBtb2RpZmllZCBULlMuSy4tZmxvd21ldGVyIGlzIHVzZWQuLi4gQm90aCB0aGUgdGVtcGVyYXR1cmUgYW5kIGNvbmR1Y3Rpdml0eSBzZW5zb3JzIGFuZCB0aGUgZmxvd21ldGVyIGFyZSBtb3VudGVkIG9uIHRvcCBvZiB0aGUgZnJhbWUgc28gdGhhdCB0aGV5IGZhY2UgaG9yaXpvbnRhbGx5IHdoZW4gdGhlIGZyYW1lIGlzIGF0IGEgdG93aW5nIGFuZ2xlIG9mIDQ1ZGVnLi4uIENhbGN1bGF0aW9ucyBvZiBzYWxpbml0eSAodG8gYXBwcm94aW1hdGVseSAwLjAxIG8vb28gUyksIHBvdGVudGlhbCB0ZW1wZXJhdHVyZSAodGhldGEpLCBwb3RlbnRpYWwgZGVuc2l0eSAoc2lnbWEpLCB0aGUgb2JsaXF1ZSBhbmQgdmVydGljYWwgdmVsb2NpdGllcyBvZiB0aGUgbmV0LCBhbmQgdGhlIGFwcHJveGltYXRlIHZvbHVtZSBmaWx0ZXJlZCBieSBlYWNoIG5ldCBhcmUgbWFkZSBhZnRlciBlYWNoIHN0cmluZyBvZiBkYXRhIGhhcyBiZWVuIHJlY2VpdmVkIGJ5IHRoZSBjb21wdXRlci5cIiAoV2llYmUgZXQgYWwuLCAxOTg1KSBJbiBhZGRpdGlvbiwgZGVwZW5kaW5nIG9uIHRoZSBwYXJ0aWN1bGFyIGNvbmZpZ3VyYXRpb24gb2YgdGhlIE1PQ05FU1MtMSwgZGF0YSBtYXkgaGF2ZSBiZWVuIGNvbGxlY3RlZCBmcm9tIG90aGVyIHNlbnNvcnMgYXR0YWNoZWQgdG8gdGhlIGZyYW1lIDogKFRyYW5zbWlzc29tZXRlciwgRmx1b3JvbWV0ZXIsIERvd253ZWxsaW5nIGxpZ2h0IHNlbnNvciwgYW5kIHRoZSBPeHlnZW4gc2Vuc29yKS4gQSBTZWFCaXJkIHVuZGVyd2F0ZXIgcHVtcCB3YXMgYWxzbyBpbmNsdWRlZCBpbiB0aGUgc2Vuc29yIHN1aXQgZS5cbkFmdGVyIHJldHJpZXZhbCB0byBkZWNrLCB0aGUgY29udGVudHMgb2YgdGhlIG5ldHMgd2VyZSByaW5zZWQgaW50byB0aGUgY29kZW5kcyBhIG5kIHRyYW5zZmVycmVkIHRvIHN0b3JhZ2UgYm90dGxlcywgYW5kIGZpeGVkIGFuZCBwcmVzZXJ2ZWQgd2l0aCBmb3JtYWxpbi4gSW4gdGhlIHNob3JlIGxhYm9yYXRvcnksIHRoZSBjb250ZW50cyBvZiB0aGUgYm90dGxlcyB3ZXJlIHN1YnNhbXBsZWQgYW5kIGNvdW50cyBhbmQgYmlvbWFzcyBlc3RpbWF0ZXMgbWFkZSBmb3Igc2VsZWN0ZWQgdGF4YSAoc2VlIHRoZSBQcm9jX1Byb3RvY29sIGluZm8gYmVsb3cpLiBUaGlzIGRhdGEgb2JqZWN0IHJlcG9ydHMgb25seSB0aGUgY291bnQgaW5mb3JtYXRpb24uXG5cbkZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHA6Ly9jaXMud2hvaS5lZHUvc2NpZW5jZS9iY29kbW8vZGF0YXNldC5jZm0/aWQ9MTAxODImZmxhZz12aWV3XG5vclxuaHR0cDovL2dsb2JlYy53aG9pLmVkdS9qZy9pbmZvL2dsb2JlYy9uZXAvY2NzL01PQzElN0JkaXI9Z2xvYmVjLndob2kuZWR1L2pnL2Rpci9nbG9iZWMvbmVwL2Njcy8sZGF0YT1nbG9iZWMuY29hcy5vcmVnb25zdGF0ZS5lZHUvamcvc2Vydi9NT0MxLmh0bWwwJTdEXG5cbkFsbCBpbnF1aXJpZXMgYWJvdXQgdGhpcyBkYXRhIHNob3VsZCBiZSBkaXJlY3RlZCB0byBEci4gV2lsbGlhbSBQZXRlcnNvbiAoYmlsbC5wZXRlcnNvbkBub2FhLmdvdikuXG5JbnF1aXJpZXMgYWJvdXQgaG93IHRvIGFjY2VzcyB0aGlzIGRhdGEgc2hvdWxkIGJlIGRpcmVjdGVkIHRvIERyLiBIYWwgQmF0Y2hlbGRlciAoaGJhdGNoZWxkZXJAY29hcy5vcmVnb25zdGF0ZS5lZHUpLlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG4uLi4gKDIyIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZEdsb2JlY01vYzFfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZEdsb2JlY01vYzFfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkR2xvYmVjTW9jMS9pbmRleC5qc29uIiwgImh0dHBzOi8vZW4ud2lraXBlZGlhLm9yZy93aWtpL0dsb2JhbF9PY2Vhbl9FY29zeXN0ZW1fRHluYW1pY3MiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkR2xvYmVjTW9jMS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkR2xvYmVjTW9jMSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJHTE9CRUMiLCAiZXJkR2xvYmVjTW9jMSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRHbG9iZWNCaXJkcy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkR2xvYmVjQmlyZHMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkR2xvYmVjQmlyZHMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiR0xPQkVDIE5FUCBOb3J0aGVybiBDYWxpZm9ybmlhIEN1cnJlbnQgQmlyZCBEYXRhIE5IMDAwNSwgMjAwMC0yMDAwLCAwMDA3IiwgIkdMT0JFQyAoR0xPQmFsIE9jZWFuIEVDb3N5c3RlbXMgRHluYW1pY3MpIE5FUCAoTm9ydGhlYXN0IFBhY2lmaWMpXG5Ob3J0aGVybiBDYWxpZm9ybmlhIEN1cnJlbnQgQmlyZCBEYXRhIGZyb20gUi9WIE5ldyBIb3Jpem9uIGNydWlzZXMgTkgwMDA1IGFuZCAwMDA3LlxuXG5BcyBhIHBhcnQgb2YgdGhlIEdMT0JFQy1Ob3J0aGVhc3QgUGFjaWZpYyBwcm9qZWN0LCB3ZSBpbnZlc3RpZ2F0ZWQgdmFyaWF0aW9uIGluIHRoZSBhYnVuZGFuY2Ugb2YgbWFyaW5lIGJpcmRzIGluIHRoZSBjb250ZXh0IG9mIGJpb2xvZ2ljYWwgYW5kIHBoeXNpY2FsIGhhYml0YXQgY29uZGl0aW9ucyBpbiB0aGUgbm9ydGhlcm4gcG9ydGlvbiBvZiB0aGUgQ2FsaWZvcm5pYSBDdXJyZW50IFN5c3RlbSAoQ0NTKSBkdXJpbmcgY3J1aXNlcyBkdXJpbmcgdGhlIHVwd2VsbGluZyBzZWFzb24gMjAwMC4gQ29udGludW91cyBzdXJ2ZXlzIG9mIHNlYWJpcmRzIHdlcmUgY29uZHVjdGVkIHNpbXVsdGFuZW91c2x5IGluIEp1bmUgKG9uc2V0IG9mIHVwd2VsbGluZykgYW5kIEF1Z3VzdCAobWF0dXJlIHBoYXNlIG9mIHVwd2VsbGluZykuXG5cblNlYWJpcmQgc3VydmV5cyB3ZXJlIGNvbmR1Y3RlZCBjb250aW51b3VzbHkgZHVyaW5nIGRheWxpZ2h0LCB1c2luZyBhIDMwMC1tLXdpZGUgdHJhbnNlY3Qgc3RyaXAuIFdpdGhpbiB0aGF0IHN0cmlwLCBiaXJkcyB3ZXJlIGNvdW50ZWQgdGhhdCBvY2N1cnJlZCB3aXRoaW4gdGhlIDkwIGRlZ3JlZSBxdWFkcmFudCBvZmYgdGhlIHNoaXAncyBib3cgdGhhdCBvZmZlcmVkIHRoZSBiZXN0IG9ic2VydmF0aW9uIGNvbmRpdGlvbnMuXG5cbk9ic2VydmVkIGNvdW50cyBvZiBzZWFiaXJkcyByZWNvcmRlZCBhcyBmbHlpbmcgaW4gYSBzdGVhZHkgZGlyZWN0aW9uIHdlcmUgYWRqdXN0ZWQgZm9yIHRoZSBlZmZlY3Qgb2YgZmxpZ2h0IHNwZWVkIGFuZCBkaXJlY3Rpb24gcmVsYXRpdmUgdG8gdGhhdCBvZiB0aGUgc2hpcCAoU3BlYXIgZXQgYWwuLCAxOTkyOyBTcGVhciBhbmQgQWlubGV5LCAxOTk3YikuIFRoZSBlZmZlY3Qgb2Ygc3VjaCBmbHV4IGlzIHRoZSBtb3N0IHNlcmlvdXMgYmlhcyBlbmNvdW50ZXJlZCBkdXJpbmcgc2VhYmlyZCBzdXJ2ZXlzIGF0IHNlYSAoU3BlYXIgZXQgYWwuLCAyMDA1KS4gS25vd24gYXMgcmFuZG9tIGRpcmVjdGlvbmFsIG1vdmVtZW50IChhcyBvcHBvc2VkIHRvIG5vbnJhbmRvbSBkaXJlY3Rpb25hbCBtb3ZlbWVudCwgd2hpY2ggb2NjdXJzIHdoZW4gYmlyZHMgYXJlIGF0dHJhY3RlZCBvciByZXBlbGxlZCBmcm9tIHRoZSBzdXJ2ZXkgdmVzc2VsKSwgdGhpcyBwcm9ibGVtIHVzdWFsbHkgcmVzdWx0cyBpbiBkZW5zaXR5IG92ZXJlc3RpbWF0aW9uIGJlY2F1c2UgbW9zdCBzcGVjaWVzIGZseSBmYXN0ZXIgdGhhbiBzdXJ2ZXkgdmVzc2VsczsgZGVuc2l0aWVzIG9mIGJpcmRzIHRoYXQgZmx5IHNsb3dlciBvciBhdCBhIHNpbWlsYXIgc3BlZWQgYXMgdGhlIHN1cnZleSB2ZXNzZWwgKGUuZy4sIHN0b3JtLXBldHJlbHMpLCBvciBhcmUgZmx5aW5nIGluIHRoZSBzYW1lIGRpcmVjdGlvbiwgYXJlIHVzdWFsbHkgdW5kZXJlc3RpbWF0ZWQgKFNwZWFyIGV0IGFsLiwgMTk5MilcblxuKGV4dHJhY3RlZCBmcm9tOiBEYXZpZCBHLiBBaW5sZXksIExhcnJ5IEIuIFNwZWFyLCBDeW50aGlhIFQuIFR5bmFuLCBKb2huIEEuIEJhcnRoLCBTdGVwaGVuIEQuIFBpZXJjZSwgUi4gR2xlbm4gRm9yZCBhbmQgVGltb3RoeSBKLiBDb3dsZXMsIDIwMDUuIFBoeXNpY2FsIGFuZCBiaW9sb2dpY2FsIHZhcmlhYmxlcyBhZmZlY3Rpbmcgc2VhYmlyZCBkaXN0cmlidXRpb25zIGR1cmluZyB0aGUgdXB3ZWxsaW5nIHNlYXNvbiBvZiB0aGUgbm9ydGhlcm4gQ2FsaWZvcm5pYSBDdXJyZW50LiBEZWVwIFNlYSBSZXNlYXJjaCBQYXJ0IElJOiBUb3BpY2FsIFN0dWRpZXMgaW4gT2NlYW5vZ3JhcGh5LCBWb2x1bWUgNTIsIElzc3VlcyAxLTIsIEphbnVhcnkgMjAwNSwgUGFnZXMgMTIzLTE0MylcblxuRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cDovL2Npcy53aG9pLmVkdS9zY2llbmNlL2Jjb2Rtby9kYXRhc2V0LmNmbT9pZD0xMDA1MyZmbGFnPXZpZXdcbm9yXG5odHRwOi8vZ2xvYmVjLndob2kuZWR1L2pnL2luZm8vZ2xvYmVjL25lcC9jY3MvYmlyZHMlN0JkaXI9Z2xvYmVjLndob2kuZWR1L2pnL2Rpci9nbG9iZWMvbmVwL2Njcy8sZGF0YT1nbG9iZWMud2hvaS5lZHUvamcvc2Vydi9nbG9iZWMvbmVwL2Njcy9iaXJkcy5odG1sMCU3RFxuXG5Db250YWN0OlxuQ3ludGhpYSBULiBUeW5hbiwgY3R5bmFuQHdob2kuZWR1LCBXb29kcyBIb2xlIE9jZWFub2dyYXBoaWMgSW5zdGl0dXRpb25cbkRhdmlkIEcuIEFpbmxleSwgZGFpbmxleUBwZW5ndWluc2NpZW5jZS5jb20sIEguVC4gSGFydmV5ICYgQXNzb2NpYXRlc1xuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhbnNfbm8gKFRyYW5zZWN0IE51bWJlcilcbi4uLiAoMTIgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkR2xvYmVjQmlyZHNfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZEdsb2JlY0JpcmRzX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZEdsb2JlY0JpcmRzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvR2xvYmFsX09jZWFuX0Vjb3N5c3RlbV9EeW5hbWljcyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRHbG9iZWNCaXJkcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkR2xvYmVjQmlyZHMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiR0xPQkVDIiwgImVyZEdsb2JlY0JpcmRzIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEdsb2JlY0NldGFjZWFucy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkR2xvYmVjQ2V0YWNlYW5zIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEdsb2JlY0NldGFjZWFucy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJHTE9CRUMgTkVQIE5vcnRoZXJuIENhbGlmb3JuaWEgQ3VycmVudCBDZXRhY2VhbiBTdXJ2ZXkgRGF0YSwgTkgwMDA1LCAyMDAwLTIwMDAsIDAwMDciLCAiR0xPQkVDIChHTE9CYWwgT2NlYW4gRUNvc3lzdGVtcyBEeW5hbWljcykgTkVQIChOb3J0aGVhc3QgUGFjaWZpYylcbk5vcnRoZXJuIENhbGlmb3JuaWEgQ3VycmVudCBDZXRhY2VhbiBTdXJ2ZXkgRGF0YSBmcm9tIFIvViBOZXcgSG9yaXpvbiBjcnVpc2VzIE5IMDAwNSBhbmQgMDAwNy5cblxuTGluZS10cmFuc2VjdCBzdXJ2ZXlzIG9mIGNldGFjZWFucyB3ZXJlIGNvbmR1Y3RlZCBkdXJpbmcgdHdvIGNydWlzZXMgb2YgdGhlIEdMT0JFQyBOb3J0aGVhc3QgUGFjaWZpYyBOb3J0aGVybiBDYWxpZm9ybmlhIEN1cnJlbnQgKE5DQykgcHJvZ3JhbSBpbiAyMDAwOiBNYXkgMjkgLUp1bmUgMTMgYW5kIEp1bHkgMjcgLSBBdWd1c3QgMTIuICAgU3VydmV5cyB3ZXJlIGNvbmR1Y3RlZCBhY3Jvc3MgdGhlIHNoZWxmIGFuZCBzbG9wZSBvZmYgT3JlZ29uIGFuZCBub3J0aGVybiBDYWxpZm9ybmlhICg0MS45IC0gNDQuNjVOKSBmcm9tIHRoZSBjb2FzdCB0byB+MTI1LjVXLiAgIFN1cnZleXMgd2VyZSBjb25kdWN0ZWQgaW4gcGFzc2luZyBtb2RlIHdoaWxlIHRoZSBSL1YgTmV3IEhvcml6b24gd2FzIGluIHRyYW5zaXQgYmV0d2VlbiBzdGF0aW9ucyBmb3IgaHlkcm9ncmFwaGljIGFuZCB6b29wbGFua3RvbiBzYW1wbGluZy4gICBPYnNlcnZhdGlvbnMgd2VyZSBjb25kdWN0ZWQgZnJvbSB0aGUgZmx5aW5nIGJyaWRnZSBkdXJpbmcgZGF5bGlnaHQgKH4wNjAwIHRvIDIwMzApIHdoZW5ldmVyIHN1ZmZpY2llbnQgdmlzaWJpbGl0eSAoaS5lLiwgPiAyIG5tKSBhbmQgd2VhdGhlciAoaS5lLiwgPCBCZWF1Zm9ydCA2KSBhbGxvd2VkLiAgIFR3byBvYnNlcnZlcnMgc2ltdWx0YW5lb3VzbHkgc3VydmV5ZWQgdG8gdGhlIGhvcml6b24gd2l0aCAyNSB4IDE1MCBiaW5vY3VsYXJzLCBlcXVpcHBlZCB3aXRoIGNvbXBhc3MgYW5kIHJldGljbGUuICAgRWFjaCBvYnNlcnZlciBzdXJ2ZXllZCBhIDEwMCBkZWdyZWUgYXJjIGZyb20gMTAgZGVncmVlcyBvZmYgdGhlIGJvdyAob3Bwb3NpdGUgc2lkZSkgdG8gOTAgZGVncmVlcyBvbiB0aGVpciBzaWRlIG9mIHRoZSBzaGlwLiAgIEEgdGhpcmQgb2JzZXJ2ZXIgZm9jdXNlZCBvbiB0aGUgdHJhY2stbGluZSBieSBleWUsIGFpZGVkIHdpdGggNyB4IDUwIGhhbmQtaGVsZCBiaW5vY3VsYXJzLiAgIFNpZ2h0aW5ncyB3ZXJlIGVudGVyZWQgaW1tZWRpYXRlbHkgb24gYSBsYXB0b3AgY29tcHV0ZXIgY29ubmVjdGVkIHRvIHRoZSBzaGlwJ3MgR1BTIHN5c3RlbS4gICBQb3NpdGlvbnMgb2YgYWxsIHNpZ2h0aW5ncyB3ZXJlIGNvcnJlY3RlZCB0byByZWZsZWN0IHRoZSBhY3R1YWwgbG9jYXRpb24gb2YgdGhlIGNldGFjZWFucywgcmF0aGVyIHRoYW4gdGhlIHNoaXAncyBwb3NpdGlvbi4gICBUaGUgaGVpZ2h0IGZyb20gdGhlIHN1cmZhY2Ugb2YgdGhlIHdhdGVyIHRvIHRoZSBleWVzIG9mIG9ic2VydmVycyBvbiB0aGUgMjUgeCAxNTAgYmlub2N1bGFycyB3YXMgMTAuODcgbS5cblxuRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZTpcbmh0dHA6Ly9jaXMud2hvaS5lZHUvc2NpZW5jZS9iY29kbW8vZGF0YXNldC5jZm0/aWQ9MTAwNTUmZmxhZz12aWV3XG5vclxuaHR0cDovL2dsb2JlYy53aG9pLmVkdS9qZy9pbmZvL2dsb2JlYy9uZXAvY2NzL2NldGFjZWFucyU3QmRpcj1nbG9iZWMud2hvaS5lZHUvamcvZGlyL2dsb2JlYy9uZXAvY2NzLyxkYXRhPWdsb2JlYy53aG9pLmVkdS9qZy9zZXJ2L2dsb2JlYy9uZXAvY2NzL2NldGFjZWFucy5odG1sMCU3RFxuXG5Db250YWN0IFBJczpcbkN5bnRoaWEgVC4gVHluYW4sIGN0eW5hbkB3aG9pLmVkdSwgV29vZHMgSG9sZSBPY2Vhbm9ncmFwaGljIEluc3RpdHV0aW9uXG5EYXZpZCBHLiBBaW5sZXksIGRhaW5sZXlAcGVuZ3VpbnNjaWVuY2UuY29tLCBILlQuIEhhcnZleSAmIEFzc29jaWF0ZXNcblxuY2RtX2RhdGFfdHlwZSA9IFRyYWplY3RvcnlcblZBUklBQkxFUzpcbmNydWlzZV9pZFxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDcgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkR2xvYmVjQ2V0YWNlYW5zX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRHbG9iZWNDZXRhY2VhbnNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkR2xvYmVjQ2V0YWNlYW5zL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvR2xvYmFsX09jZWFuX0Vjb3N5c3RlbV9EeW5hbWljcyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRHbG9iZWNDZXRhY2VhbnMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZEdsb2JlY0NldGFjZWFucyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJHTE9CRUMiLCAiZXJkR2xvYmVjQ2V0YWNlYW5zIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEdsb2JlY0JvdHRsZS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkR2xvYmVjQm90dGxlIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEdsb2JlY0JvdHRsZS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJHTE9CRUMgTkVQIFJvc2V0dGUgQm90dGxlIERhdGEgKDIwMDIpIiwgIkdMT0JFQyAoR0xPQmFsIE9jZWFuIEVDb3N5c3RlbXMgRHluYW1pY3MpIE5FUCAoTm9ydGhlYXN0IFBhY2lmaWMpXG5Sb3NldHRlIEJvdHRsZSBEYXRhIGZyb20gTmV3IEhvcml6b24gQ3J1aXNlIChOSDAyMDc6IDEtMTkgQXVndXN0IDIwMDIpLlxuTm90ZXM6XG5QaHlzaWNhbCBkYXRhIHByb2Nlc3NlZCBieSBKYW5lIEZsZWlzY2hiZWluIChPU1UpLlxuQ2hsb3JvcGh5bGwgcmVhZGluZ3MgZG9uZSBieSBMZWFoIEZlaW5iZXJnIChPU1UpLlxuTnV0cmllbnQgYW5hbHlzaXMgZG9uZSBieSBCdXJrZSBIYWxlcyAoT1NVKS5cblNhbDAwIC0gc2FsaW5pdHkgY2FsY3VsYXRlZCBmcm9tIHByaW1hcnkgc2Vuc29ycyAoQzAsVDApLlxuU2FsMTEgLSBzYWxpbml0eSBjYWxjdWxhdGVkIGZyb20gc2Vjb25kYXJ5IHNlbnNvcnMgKEMxLFQxKS5cbnNlY29uZGFyeSBzZW5zb3IgcGFpciB3YXMgdXNlZCBpbiBmaW5hbCBwcm9jZXNzaW5nIG9mIENURCBkYXRhIGZvclxubW9zdCBzdGF0aW9ucyBiZWNhdXNlIHRoZSBwcmltYXJ5IGhhZCBtb3JlIG5vaXNlIGFuZCBzcGlrZXMuIFRoZVxucHJpbWFyeSBwYWlyIHdlcmUgdXNlZCBmb3IgY2FzdCAjOSwgMjQsIDQ4LCAxMTEgYW5kIDE1MCBkdWUgdG9cbm11bHRpcGxlIHNwaWtlcyBvciBvZmZzZXRzIGluIHRoZSBzZWNvbmRhcnkgcGFpci5cbk51dHJpZW50IHNhbXBsZXMgd2VyZSBjb2xsZWN0ZWQgZnJvbSBtb3N0IGJvdHRsZXM7IGFsbCBudXRyaWVudCBkYXRhXG5kZXZlbG9wZWQgZnJvbSBzYW1wbGVzIGZyb3plbiBkdXJpbmcgdGhlIGNydWlzZSBhbmQgYW5hbHl6ZWQgYXNob3JlO1xuZGF0YSBkZXZlbG9wZWQgYnkgQnVya2UgSGFsZXMgKE9TVSkuXG5PcGVyYXRpb24gRGV0ZWN0aW9uIExpbWl0cyBmb3IgTnV0cmllbnQgQ29uY2VudHJhdGlvbnNcbk51dHJpZW50ICBSYW5nZSAgICAgICAgIE1lYW4gICAgVmFyaWFibGUgICAgICAgICBVbml0c1xuUE80ICAgICAgIDAuMDAzLTAuMDA0ICAgMC4wMDQgICBQaG9zcGhhdGUgICAgICAgIG1pY3JvbW9sZXMgcGVyIGxpdGVyXG5OK04gICAgICAgMC4wNC0wLjA4ICAgICAwLjA2ICAgIE5pdHJhdGUrTml0cml0ZSAgbWljcm9tb2xlcyBwZXIgbGl0ZXJcblNpICAgICAgICAwLjEzLTAuMjQgICAgIDAuMTYgICAgU2lsaWNhdGUgICAgICAgICBtaWNyb21vbGVzIHBlciBsaXRlclxuTk8yICAgICAgIDAuMDAzLTAuMDA0ICAgMC4wMDMgICBOaXRyaXRlICAgICAgICAgIG1pY3JvbW9sZXMgcGVyIGxpdGVyXG5EYXRlcyBhbmQgVGltZXMgYXJlIFVUQy5cblxuRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZSBodHRwczovL3d3dy5iY28tZG1vLm9yZy9kYXRhc2V0LzI0NTJcblxuSW5xdWlyaWVzIGFib3V0IGhvdyB0byBhY2Nlc3MgdGhpcyBkYXRhIHNob3VsZCBiZSBkaXJlY3RlZCB0b1xuRHIuIEhhbCBCYXRjaGVsZGVyIChoYmF0Y2hlbGRlckBjb2FzLm9yZWdvbnN0YXRlLmVkdSkuXG5cbmNkbV9kYXRhX3R5cGUgPSBUcmFqZWN0b3J5UHJvZmlsZVxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG4uLi4gKDI0IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZEdsb2JlY0JvdHRsZV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkR2xvYmVjQm90dGxlX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZEdsb2JlY0JvdHRsZS9pbmRleC5qc29uIiwgImh0dHBzOi8vZW4ud2lraXBlZGlhLm9yZy93aWtpL0dsb2JhbF9PY2Vhbl9FY29zeXN0ZW1fRHluYW1pY3MiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkR2xvYmVjQm90dGxlLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRHbG9iZWNCb3R0bGUmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiR0xPQkVDIiwgImVyZEdsb2JlY0JvdHRsZSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRHbG9iZWNWcHQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEdsb2JlY1ZwdCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRHbG9iZWNWcHQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiR0xPQkVDIE5FUCBWZXJ0aWNhbCBQbGFua3RvbiBUb3cgKFZQVCkgRGF0YSwgMTk5Ny0yMDAxIiwgIkdMT0JFQyAoR0xPQmFsIE9jZWFuIEVDb3N5c3RlbXMgRHluYW1pY3MpIE5FUCAoTm9ydGhlYXN0IFBhY2lmaWMpXG5DYWxpZm9ybmlhIEN1cnJlbnQgUHJvZ3JhbVxuVmVydGljYWwgUGxhbmt0b24gVG93IChWUFQpIERhdGFcblxuRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cDovL2Npcy53aG9pLmVkdS9zY2llbmNlL2Jjb2Rtby9kYXRhc2V0LmNmbT9pZD0xMDE4MSZmbGFnPXZpZXdcbm9yXG5odHRwOi8vZ2xvYmVjLndob2kuZWR1L2pnL2luZm8vZ2xvYmVjL25lcC9jY3MvdnB0JTdCZGlyPWdsb2JlYy53aG9pLmVkdS9qZy9kaXIvZ2xvYmVjL25lcC9jY3MvLGRhdGE9Z2xvYmVjLmNvYXMub3JlZ29uc3RhdGUuZWR1L2pnL3NlcnYvdnB0Lmh0bWwwJTdEXG5cbkFsbCBpbnF1aXJpZXMgYWJvdXQgdGhpcyBkYXRhIHNob3VsZCBiZSBkaXJlY3RlZCB0byBEci4gV2lsbGlhbSBQZXRlcnNvbiAoYmlsbC5wZXRlcnNvbkBub2FhLmdvdikuXG5JbnF1aXJpZXMgYWJvdXQgaG93IHRvIGFjY2VzcyB0aGlzIGRhdGEgc2hvdWxkIGJlIGRpcmVjdGVkIHRvIERyLiBIYWwgQmF0Y2hlbGRlciAoaGJhdGNoZWxkZXJAY29hcy5vcmVnb25zdGF0ZS5lZHUpLlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmNhc3Rfbm8gKENhc3QgTnVtYmVyIFdpdGhpbiB0aGUgQ3J1aXNlKVxuc3RhdGlvbl9pZFxuYWJ1bmRfbTMgKEFidW5kYW5jZSwgY291bnQgbS0zKVxuY29tbWVudHNcbmNvdW50ZXJfaWRcbmRfbl9mbGFnIChEYXkvTmlnaHQgRmxhZylcbmdlYXJfYXJlYSAoTW91dGggQXJlYSBvZiBOZXQsIG0yKVxuZ2Vhcl9tZXNoIChOZXQncyBNZXNoIFNpemUsIG1tKVxuZ2Vhcl90eXBlXG5nZW51c19zcGVjaWVzXG5saWZlX3N0YWdlXG5sb2NhbF9jb2RlXG4uLi4gKDggbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkR2xvYmVjVnB0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRHbG9iZWNWcHRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkR2xvYmVjVnB0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvR2xvYmFsX09jZWFuX0Vjb3N5c3RlbV9EeW5hbWljcyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRHbG9iZWNWcHQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZEdsb2JlY1ZwdCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJHTE9CRUMiLCAiZXJkR2xvYmVjVnB0Il0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRHb2RhZVNmY29icyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRHb2RhZVNmY29icy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJHT0RBRSwgU0ZDT0JTIC0gU3VyZmFjZSBUZW1wZXJhdHVyZSBPYnNlcnZhdGlvbnMsIDE5OTgtcHJlc2VudCIsICJHT0RBRSwgU0ZDT0JTIC0gU3VyZmFjZSBUZW1wZXJhdHVyZSBPYnNlcnZhdGlvbnM6IFNoaXAsIGZpeGVkL2RyaWZ0aW5nIGJ1b3ksIGFuZCBDTUFOIGluLXNpdHUgc3VyZmFjZSB0ZW1wZXJhdHVyZS4gIEdsb2JhbCBUZWxlY29tbXVuaWNhdGlvbiBTeXN0ZW0gKEdUUykgRGF0YS5cbiAgICAgICAgXG5UaGUgR2xvYmFsIE9jZWFuIERhdGEgQXNzaW1pbGF0aW9uIEV4cGVyaW1lbnQgKEdPREFFKSBpcyBhIHByYWN0aWNhbCBkZW1vbnN0cmF0aW9uIG9mIG5lYXItcmVhbC10aW1lLCBnbG9iYWwgb2NlYW4gZGF0YSBhc3NpbWlsYXRpb24gdGhhdCBwcm92aWRlcywgcmVndWxhciwgY29tcGxldGUgZGVzY3JpcHRpb25zIG9mIHRoZSB0ZW1wZXJhdHVyZSwgc2FsaW5pdHkgYW5kIHZlbG9jaXR5IHN0cnVjdHVyZXMgb2YgdGhlIG9jZWFuIGluIHN1cHBvcnQgb2Ygb3BlcmF0aW9uYWwgb2NlYW5vZ3JhcGh5LCBzZWFzb25hbC10by1kZWNhZGFsIGNsaW1hdGUgZm9yZWNhc3RzIGFuZCBhbmFseXNlcywgYW5kIG9jZWFub2dyYXBoaWMgcmVzZWFyY2guIFRoZSBHT0RBRSBNb250ZXJleSBTZXJ2ZXIsIHNwb25zb3JlZCBtYWlubHkgYnkgdGhlIE9mZmljZSBvZiBOYXZhbCBSZXNlYXJjaCAoT05SKSwgaXMgaW50ZW5kZWQgdG8gYmUgYSBwcmluY2lwYWwgbm9kZSBpbiB0aGUgR09EQUUgYXJjaGl0ZWN0dXJlLlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG50aW1lIChPYnNlcnZhdGlvbiBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxub2JfY2xtIChHREVNIENsaW1hdG9sb2dpY2FsIFNTVCwgZGVncmVlX0MpXG5vYl9jc2dtIChHREVNIFNTVCBDbGltYXRvbG9naWNhbCBWYXJpYWJpbGl0eSwgZGVncmVlX0MpXG5vYl9nbGIgKEdsb2JhbCBBbmFseXNpcyBTU1QgRXN0aW1hdGUsIGRlZ3JlZV9DKVxub2JfZ3NnbSAoR2xvYmFsIEFuYWx5c2lzIFNTVCBWYXJpYWJpbGl0eSBFc3RpbWF0ZSwgZGVncmVlX0MpXG5vYl9xYyAoUHJvYmFiaWxpdHkgb2YgZ3Jvc3MgZXJyb3IgaW4gU1NUKVxub2JfcmNwdCAoU1NUIG9ic2VydmF0aW9uIHJlY2VpcHQgdGltZSBhdCBGTk1PQywgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbm9iX3JnbiAoUmVnaW9uYWwgQW5hbHlzaXMgU1NUIEVzdGltYXRlLCBkZWdyZWVfQylcbm9iX3JzZ20gKFJlZ2lvbmFsIEFuYWx5c2lzIFNTVCBWYXJpYWJpbGl0eSBFc3RpbWF0ZSwgZGVncmVlX0MpXG5vYl9zaWduIChTU1Qgb2JzZXJ2YXRpb24gY2FsbCBzaWduKVxub2Jfc3N0IChTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5vYl90eXAgKFNTVCBvYnNlcmF0aW9uIGRhdGEgdHlwZSlcbm9iX3dtIChTU1Qgd2F0ZXIgbWFzcyBpbmRpY2F0b3IpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkR29kYWVTZmNvYnNfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZEdvZGFlU2Zjb2JzX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZEdvZGFlU2Zjb2JzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly91c2dvZGFlLm9yZy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkR29kYWVTZmNvYnMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZEdvZGFlU2Zjb2JzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZOTU9DIEdPREFFIiwgImVyZEdvZGFlU2Zjb2JzIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2N3Yl93YXRlcl9xdWFsaXR5LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9jd2Jfd2F0ZXJfcXVhbGl0eSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9jd2Jfd2F0ZXJfcXVhbGl0eS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJIYXdhaWkgQ2xlYW4gV2F0ZXIgQnJhbmNoIChDV0IpIEJlYWNoIFdhdGVyIFF1YWxpdHkgRGF0YSIsICJFeHBvc3VyZSB0byBzZXdhZ2UgY29udGFtaW5hdGVkIHJlY3JlYXRpb25hbCB3YXRlcnMgbWF5IGNhdXNlIGdhc3Ryb2ludGVzdGluYWwgaWxsbmVzc2VzIGluIHN3aW1tZXJzLiBUaGUgU3RhdGUgb2YgSGF3YWlpIERlcGFydG1lbnQgb2YgSGVhbHRoIChISURPSCkgQ2xlYW4gV2F0ZXIgQnJhbmNoIChDV0IpIG1vbml0b3JzIHRoZSB3YXRlcnMgb2YgSGF3YWlpJ3MgYmVhY2hlcyBmb3IgY29uY2VudHJhdGlvbnMgb2YgRW50ZXJvY29jY3VzLCB3aGljaCBhY3RzIGFzIGFuIGluZGljYXRvciBvZiBwYXRob2dlbnMuIFRoZSBDV0IgYWxzbyB1c2VzIENsb3N0cmlkaXVtIHBlcmZyaW5nZW5zIGFzIGEgc2Vjb25kYXJ5IHRyYWNlciBvZiBzZXdhZ2UgY29udGFtaW5hdGlvbi4gUmVzdWx0cyBvZiB0aGlzIG1vbml0b3JpbmcgYXJlIGV2YWx1YXRlZCB1c2luZyBhIGRlY2lzaW9uIHJ1bGUgdG8gZGV0ZXJtaW5lIHdoZXRoZXIgYSBiZWFjaCBpcyBzYWZlIChcIkNvbXBsaWFudFwiKSBvciBub3Qgc2FmZSAob24gXCJBbGVydFwiKSBmb3Igc3dpbW1pbmcgYW5kIG90aGVyIHdhdGVyIGNvbnRhY3QgYWN0aXZpdGllcy4gSWYgYSBiZWFjaCBpcyBmb3VuZCB0byBiZSBvbiBcIkFsZXJ0XCIgZHVlIHRvIGVsZXZhdGVkIGluZGljYXRvciBiYWN0ZXJpYSBsZXZlbHMsIHRoZSBDV0IgaXNzdWVzIHB1YmxpYyB3YXJuaW5ncyBhbmQgYWxlcnRzIGFuZCBkZXRlcm1pbmVzIHdoZXRoZXIgcmVzYW1wbGluZyBvZiB0aGUgYXJlYSBpcyBuZWNlc3NhcnkuXG5cblVuZGVyIHRoZSBVLlMuIEJFQUNIIEFjdCwgdGhlIFN0YXRlIG9mIEhhd2FpaSByZWNlaXZlcyBhbiBhbm51YWwgZ3JhbnQgdG8gaW1wbGVtZW50IGl0cyBiZWFjaCBtb25pdG9yaW5nIHByb2dyYW0uIFRoaXMgcmVxdWlyZXMgdGhlIFN0YXRlIHRvIGNvbmR1Y3QgYSBtb25pdG9yaW5nIGFuZCBub3RpZmljYXRpb24gcHJvZ3JhbSB0aGF0IGlzIGNvbnNpc3RlbnQgd2l0aCBwZXJmb3JtYW5jZSBjcml0ZXJpYSBwdWJsaXNoZWQgYnkgdGhlIFUuUy4gRW52aXJvbm1lbnRhbCBQcm90ZWN0aW9uIEFnZW5jeSAoRVBBKSBpbiAyMDAyLiBJbiBNYXJjaCAyMDEwLCB0aGUgRVBBIGFwcHJvdmVkIGFtZW5kbWVudHMgdG8gdGhlIEhhd2FpaSBBZG1pbmlzdHJhdGl2ZSBSdWxlcyAoSEFSKSwgQ2hhcHRlciAxMS01NCwgV2F0ZXIgUXVhbGl0eSBTdGFuZGFyZHMgKENXQiBRQVByZ1AsIEhJRE9IIDIwMTEsIEFwcGVuZGl4IEQpLCB3aGljaCByZXZpc2VkIHRoZSBwcmV2aW91cyBTdGF0ZSBFbnRlcm9jb2NjdXMgY3JpdGVyaWEgb2YgYSBnZW9tZXRyaWMgbWVhbiAoR00pIG9mIDcgY29sb255LWZvcm1pbmcgdW5pdHMgKENGVSkgcGVyIDEwMCBtTCBhbmQgYSBzaW5nbGUgc2FtcGxlIG1heGltdW0gKFNTTSkgb2YgMTAwIENGVS8xMDAgbUwgdG8gbWVldCBjdXJyZW50IEVQQSBndWlkZWxpbmVzLiBUaGUgU3RhdGUgb2YgSGF3YWlpIG5vdyB1c2VzIHRoZSBFUEEgcmVjb21tZW5kZWQgRW50ZXJvY29jY3VzIEdNIGFuZCBTU00gZm9yIHJlY3JlYXRpb25hbCB3YXRlcnMgY29uc2lzdGVudCBpbiB0aGUgMTk4NiBBbWJpZW50IFdhdGVyIFF1YWxpdHkgQ3JpdGVyaWEgZm9yIEJhY3RlcmlhLiBUaGUgY3JpdGVyaW9uIGxpc3RzIHRoZSBHTSBhbmQgU1NNIGZvciBtYXJpbmUgd2F0ZXJzIGFzIDM1IENGVS8xMDAgbUwgYW5kIDEwNCBDRlUvMTAwIG1MLCByZXNwZWN0aXZlbHkuXG5cblRoZSBDV0IgdXRpbGl6ZXMgQ2xvc3RyaWRpdW0gcGVyZnJpbmdlbnMgYXMgYSBzZWNvbmRhcnkgdHJhY2VyIGluIGFkZGl0aW9uIHRvIHRoZSBFbnRlcm9jb2NjdXMgaW5kaWNhdG9yIHRvIGhlbHAgZGlzdGluZ3Vpc2ggYmV0d2VlbiBzZXdhZ2UgYW5kIG5vbi1zZXdhZ2Ugc291cmNlcyBvZiBlbGV2YXRlZCBFbnRlcm9jb2NjdXMgbGV2ZWxzIGluIG1hcmluZSBjb2FzdGFsIHdhdGVycy4gVGhlIHJlbGlhYmlsaXR5IG9mIEVudGVyb2NvY2N1cyBhcyBhbiBpbmRpY2F0b3Igb3JnYW5pc20gaW4gdHJvcGljYWwgZW52aXJvbm1lbnRzIGhhcyBiZWVuIHF1ZXN0aW9uZWQuIFRoaXMgaXNzdWUgd2FzIGZvcm1hbGx5IGRvY3VtZW50ZWQgaW4gdGhlIHJlcG9ydCwgVHJvcGljYWwgV2F0ZXIgUXVhbGl0eSBJbmRpY2F0b3IgV29ya3Nob3AgKEZ1amlva2EgYW5kIEJ5YXBwYW5haGFsbGksIDIwMDMpLlxuXG5PbmUgb2YgdGhlIGxpbWl0YXRpb25zIG9mIGFsbCBhdmFpbGFibGUgYW5kIEVQQS1hcHByb3ZlZCB0ZXN0IG1ldGhvZHMgaXMgdGhhdCB0aGUgc2FtcGxlIG11c3QgYmUgaW5jdWJhdGVkIGZvciBhYm91dCAyNCBob3Vycy4gQXMgYSByZXN1bHQsIHRoZSBwdWJsaWMgZmluZHMgb3V0IHRvZGF5IHdoZW4gdGhleSBzaG91bGRuJ3QgaGF2ZSBnb25lIGluIHRoZSB3YXRlciB5ZXN0ZXJkYXkuIEFzIGEgcmVzdWx0LCB3YXJuaW5nIHNpZ25zIG9uIHRoZSBiZWFjaCBtYXkgb3IgbWF5IG5vdCBiZSByZWZsZWN0aXZlIG9mIGFjdHVhbCB3YXRlciBxdWFsaXR5IGJlY2F1c2UgdGhleSBhcmUgYmFzZWQgb24gdGVzdHMgcGVyZm9ybWVkIG9uZSBvciBtb3JlIGRheXMgYWdvLlxuXG5CZWFjaCBNb25pdG9yaW5nIFF1YWxpdHkgQXNzdXJhbmNlIFByb2plY3QgUGxhbiAoQ1dCTU9OUUFQUDAwMik6XG5odHRwczovL3d3dy5wYWNpb29zLmhhd2FpaS5lZHUvd3AtY29udGVudC91cGxvYWRzLzIwMTYvMDgvQmVhY2hfTW9uaXRvcmluZ19RQVBQX0NXQk1PTlFBUFAwMDJfMTIwNTA3LnBkZlxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG4uLi4gKDEyIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2N3Yl93YXRlcl9xdWFsaXR5X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9jd2Jfd2F0ZXJfcXVhbGl0eV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9jd2Jfd2F0ZXJfcXVhbGl0eS9pbmRleC5qc29uIiwgImh0dHA6Ly93d3cuYmVhY2hhcGVkaWEub3JnL1N0YXRlX29mX3RoZV9CZWFjaC9TdGF0ZV9SZXBvcnRzL0hJL1dhdGVyX1F1YWxpdHkiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvY3diX3dhdGVyX3F1YWxpdHkucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWN3Yl93YXRlcl9xdWFsaXR5JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlN0YXRlIG9mIEhhd2FpaSBDbGVhbiBXYXRlciBCcmFuY2ggKENXQikiLCAiY3diX3dhdGVyX3F1YWxpdHkiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvQVdTLUhJTUIuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0FXUy1ISU1CIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0FXUy1ISU1CLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkhJTUIgV2VhdGhlciBTdGF0aW9uOiBNb2t1IG8gTG9lIChDb2NvbnV0IElzbGFuZCksIE9haHUsIEhhd2FpaSIsICJUaGUgSGF3YWlpIEluc3RpdHV0ZSBvZiBNYXJpbmUgQmlvbG9neSAoSElNQikgYXV0b21hdGljIHdlYXRoZXIgc3RhdGlvbiAoQVdTKSByZWNvcmRzIGhvdXJseSBtZWFzdXJlbWVudHMgb2YgcHJlY2lwaXRhdGlvbiwgYWlyIHRlbXBlcmF0dXJlLCB3aW5kIHNwZWVkIGFuZCBkaXJlY3Rpb24sIGFuZCBpcnJhZGlhbmNlLiBTZW5zb3JzIGluY2x1ZGUgYW4gRXBwbGV5IDI5NS0zODUgbm0gdWx0cmF2aW9sZXQgKFVWKSByYWRpb21ldGVyLCBhIExpQ29yIDIwMFNaIFB5cmFub21ldGVyLCBhbmQgYSBMaUNvciBRdWFudGFtZXRlciAoNDAwLTcwMCBubSkuIFRoZSBzZW5zb3JzIGFyZSBsb2NhdGVkIG9uIHRoZSByb29mIG9mIEhJTUIncyBDb3JhbCBSZWVmIEVjb2xvZ3kgTGFib3JhdG9yeSAoUG9pbnQgTGFiKSBvbiBNb2t1IG8gTG9lIChDb2NvbnV0IElzbGFuZCkgaW4gS2FuZW9oZSBCYXkgb24gdGhlIHdpbmR3YXJkIChlYXN0ZXJuKSBjb2FzdCBvZiBPYWh1IGluIEhhd2FpaS4gQW4gYWNjb21wYW55aW5nIHNlYSB3YXRlciB0ZW1wZXJhdHVyZSBzZW5zb3IgaXMgbG9jYXRlZCBsZXNzIHRoYW4gMTAgbSBvZmZzaG9yZSBvZiB0aGUgd2VhdGhlciBzdGF0aW9uIGF0IGEgc2hhbGxvdyBkZXB0aCBvZiBhcHByb3hpbWF0ZWx5IDEgbS5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWx0aXR1ZGUgKERpc3RhbmNlIGFib3ZlIG1lYW4gc2VhIGxldmVsLCBtKVxuc3RhdGlvbl9uYW1lIChBV1MtSElNQjogSElNQiBXZWF0aGVyIFN0YXRpb246IE1va3UgbyBMb2UgKENvY29udXQgSXNsYW5kKSwgT2FodSwgSGF3YWlpKVxuYWlyX3RlbXBlcmF0dXJlIChhaXIgdGVtcGVyYXR1cmUgKHByb2Nlc3NlZCksIENlbHNpdXMpXG5zZWFfd2F0ZXJfdGVtcGVyYXR1cmUgKHdhdGVyIHRlbXBlcmF0dXJlIChwcm9jZXNzZWQpLCBDZWxzaXVzKVxud2luZF9zcGVlZCAod2luZCBzcGVlZCAocHJvY2Vzc2VkKSwgbS9zKVxuZ3VzdF9zcGVlZCAoZ3VzdCBzcGVlZCAocHJvY2Vzc2VkKSwgbS9zKVxud2luZF9mcm9tX2RpcmVjdGlvbiAod2luZCBkaXJlY3Rpb24gKHByb2Nlc3NlZCksIGRlZ3JlZXMpXG53aW5kX2Zyb21fZGlyZWN0aW9uX3N0ZCAoc3RhbmRhcmQgZGV2aWF0aW9uIG9mIHdpbmQgZGlyZWN0aW9uIChwcm9jZXNzZWQpLCBkZWdyZWVzKVxucmFpbmZhbGxfYW1vdW50ICh0b3RhbCByYWluZmFsbCAocHJvY2Vzc2VkKSwgbW0pXG5zaG9ydHdhdmVfcmFkaWF0aW9uIChkb3dud2VsbGluZyBzaG9ydHdhdmUgcmFkaWF0aW9uIChwcm9jZXNzZWQpLCBXL20yKVxudWx0cmF2aW9sZXRfcmFkaWF0aW9uICh1bHRyYXZpb2xldCByYWRpYXRpb24gKHByb2Nlc3NlZCksIFcvbTIpXG5waG90b3N5bnRoZXRpY19yYWRpYXRpb24gKHBob3Rvc3ludGhldGljYWxseSBhY3RpdmUgcmFkaWF0aW9uIChwcm9jZXNzZWQpLCB1bW9sIG0tMiBzLTEpXG5haXJfdGVtcGVyYXR1cmVfcmF3IChhaXIgdGVtcGVyYXR1cmUgKHJhdyksIENlbHNpdXMpXG5haXJfdGVtcGVyYXR1cmVfZG1fcWQgKGFpciB0ZW1wZXJhdHVyZSBkZWxheWVkLW1vZGUgcXVhbGl0eSBkZXNjcmlwdG9yLCAwKVxuYWlyX3RlbXBlcmF0dXJlX3FjX2FnZyAoUUFSVE9EIEFnZ3JlZ2F0ZS9Sb2xsdXAgVGVzdCAocHJvY2Vzc2VkKSwgMClcbmFpcl90ZW1wZXJhdHVyZV9xY19hdG4gKFFBUlRPRCBBdHRlbnVhdGVkIFNpZ25hbCBUZXN0IChwcm9jZXNzZWQpLCAwKVxuYWlyX3RlbXBlcmF0dXJlX3FjX2NsbSAoUUFSVE9EIENsaW1hdG9sb2d5IFRlc3QgKHByb2Nlc3NlZCksIDApXG5haXJfdGVtcGVyYXR1cmVfcWNfZmx0IChRQVJUT0QgRmxhdCBMaW5lIFRlc3QgKHByb2Nlc3NlZCksIDApXG4uLi4gKDEzOSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9BV1MtSElNQl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvQVdTLUhJTUJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vQVdTLUhJTUIvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wYWNpb29zLmhhd2FpaS5lZHUvd2VhdGhlci9vYnMtbW9rdW9sb2UvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL0FXUy1ISU1CLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1BV1MtSElNQiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJIYXdhaWkgSW5zdGl0dXRlIG9mIE1hcmluZSBCaW9sb2d5IChISU1CKSIsICJBV1MtSElNQiJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZWFydGhDdWJlTGlzaXJkSGlzdFRzaSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lYXJ0aEN1YmVMaXNpcmRIaXN0VHNpLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkhpc3RvcmljYWwgVG90YWwgU29sYXIgSXJyYWRpYW5jZSBSZWNvbnN0cnVjdGlvbiIsICJIaXN0b3JpY2FsIFRvdGFsIFNvbGFyIElycmFkaWFuY2UgKFRTSSkgUmVjb25zdHJ1Y3Rpb24gZWNvbnN0cnVjdGlvbiBmcm9tIFdhbmcsIExlYW4sIFNoZWVsZXkgKEFwSiwgMjAwNSkuICBPZmZzZXQgLTQuODE3OCBXL21eMiB0byBtYXRjaCBTT1JDRS9USU0gYWJzb2x1dGUgdmFsdWUgZnJvbSBLb3BwLCBMYXdyZW5jZSwgYW5kIFJvdHRtYW4gKFNvbGFyIFBoeXMsIDIwMDUpLiBFeHRlbmRlZCB1c2luZyBTT1JDRS9USU0gYW5udWFsIGF2ZXJhZ2VzIGZyb20gMjAwMyBvbndhcmQuIENvbXB1dGVkIGJ5IEdyZWcgS29wcC4gIEZyb20gdGhlIExBU1AgSW50ZXJhY3RpdmUgU29sYXIgSXJyYWRpYW5jZSBEYXRhIChMSVNJUkQpIENlbnRlclxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnllYXJcbmlycmFkaWFuY2UgKFRvdGFsIFNvbGFyIElycmFkaWFuY2UsIFcvbV4yKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lYXJ0aEN1YmVMaXNpcmRIaXN0VHNpL2luZGV4Lmpzb24iLCAiaHR0cDovL2xhc3AuY29sb3JhZG8uZWR1L2xpc2lyZC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZWFydGhDdWJlTGlzaXJkSGlzdFRzaS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZWFydGhDdWJlTGlzaXJkSGlzdFRzaSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJMSVNJUkQiLCAiZWFydGhDdWJlTGlzaXJkSGlzdFRzaSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9odWlfd2F0ZXJfcXVhbGl0eS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvaHVpX3dhdGVyX3F1YWxpdHkiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvaHVpX3dhdGVyX3F1YWxpdHkuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiSHVpIE8gS2EgV2FpIE9sYSBXYXRlciBRdWFsaXR5IERhdGEiLCAiVGhlIGdvYWwgb2YgdGhlIEh1aSBPIEthIFdhaSBPbGEgKEFzc29jaWF0aW9uIE9mIFRoZSBMaXZpbmcgV2F0ZXJzKSBjaXRpemVuLXNjaWVuY2UgYmFzZWQgd2F0ZXIgcXVhbGl0eSBwcm9ncmFtIGlzIHRvIGluY3JlYXNlIHRoZSBjYXBhY2l0eSBmb3IgbW9uaXRvcmluZyB3YXRlciBxdWFsaXR5IGluIE1hdWkgY29hc3RhbCB3YXRlcnMgYnkgZ2VuZXJhdGluZyByZWxpYWJsZSBkYXRhIHRvIGFzc2VzcyBsb25nLXRlcm0gd2F0ZXItcXVhbGl0eSBjb25kaXRpb25zIGFuZCBkZXRlY3QgdGVtcG9yYWwgdHJlbmRzLiBUaGVzZSBkYXRhIGF1Z21lbnQgdGhlIGRhdGEgcHJvZHVjZWQgYnkgdGhlIEhhd2FpaSBEZXBhcnRtZW50IG9mIEhlYWx0aCAoRE9IKSBDbGVhbiBXYXRlciBCcmFuY2ggKENXQikgYmVhY2ggbW9uaXRvcmluZyBwcm9ncmFtIG9uIE1hdWkuXG4gICAgXG5EYXRhIGFyZSBjb2xsZWN0ZWQgYW5kIGFuYWx5emVkIGV2ZXJ5IHR3byBvciB0aHJlZSB3ZWVrcyBmb3IgcGh5c2ljYWwgYW5kIGNoZW1pY2FsIHBhcmFtZXRlcnMsIGluY2x1ZGluZyBvY2VhbiBzYWxpbml0eSwgcEgsIHRlbXBlcmF0dXJlLCBvcmdhbmljIG51dHJpZW50cyAobml0cm9nZW4gYW5kIHBob3NwaG9yb3VzIGNvbXBvdW5kcyksIGRpc3NvbHZlZCBveHlnZW4gKERPKSwgYW5kIHRvdGFsIHN1c3BlbmRlZCBzZWRpbWVudCAoVFNTKS4gU29tZSB3YXRlciBzYW1wbGVzIGFyZSBpbW1lZGlhdGVseSB0ZXN0ZWQgYXQgbW9iaWxlIGxhYnMgd2hpbGUgb3RoZXJzIGFyZSBwcm9jZXNzZWQgZm9yIHRlc3RpbmcgYXQgVW5pdmVyc2l0eSBvZiBIYXdhaWkgYW5kL29yIG90aGVyIGxhYnMuXG4gICAgXG5Vc2VycyBvZiB0aGVzZSBkYXRhIHNob3VsZCBjaXRlIHRoZSBmb2xsb3dpbmcgcHVibGljYXRpb246XG4gICAgXG5GYWxpbnNraSwgS2ltLCBEYW5hIFJlZWQsIFRvdmEgQ2FsbGVuZGVyLCBFbWlseSBGaWVsZGluZywgUm9iaW4gTmV3Ym9sZCwgYW5kIEFsYW5hIFl1cmthbmluLiAoMjAxOCkuIEh1aSBPIEthIFdhaSBPbGEgV2F0ZXIgUXVhbGl0eSBEYXRhIFtEYXRhIHNldF0uIFplbm9kby4gXCJodHRwOi8vZG9pLm9yZy8xMC41MjgxL3plbm9kby4xMTczNzE3XCJcbiAgICBcbkZvciBmdXJ0aGVyIGluZm9ybWF0aW9uLCBwbGVhc2UgdmlzaXQ6XG5odHRwczovL3d3dy5odWlva2F3YWlvbGEuY29tXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sb2NhdGlvbl9pZCAoc2FtcGxpbmcgc2l0ZSBpZGVudGlmaWVyKVxubG9jYXRpb25fbmFtZVxuc2FtcGxlX2lkIChzYW1wbGUgaWRlbnRpZmllcilcbnNlc3Npb25faWQgKHNhbXBsaW5nIHNlc3Npb24gaWRlbnRpZmllcilcbndhdGVyX3RlbXBlcmF0dXJlIChDZWxzaXVzKVxuLi4uICgxMiBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9odWlfd2F0ZXJfcXVhbGl0eV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvaHVpX3dhdGVyX3F1YWxpdHlfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vaHVpX3dhdGVyX3F1YWxpdHkvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5odWlva2F3YWlvbGEuY29tIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2h1aV93YXRlcl9xdWFsaXR5LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1odWlfd2F0ZXJfcXVhbGl0eSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJIdWkgTyBLYSBXYWkgT2xhIiwgImh1aV93YXRlcl9xdWFsaXR5Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X2Fpcy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvTGlxdWlkUl9IQkczXzIwMTVfYWlzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X2Fpcy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJMaXF1aWQgUm9ib3RpY3MgV2F2ZSBHbGlkZXIsIEhvbmV5IEJhZGdlciAoRzMpLCAyMDE1LCBBSVMiLCAiTGlxdWlkIFJvYm90aWNzIFdhdmUgR2xpZGVyLCBIb25leSBCYWRnZXIgKEczKSwgMjAxNSwgQUlTLiBUaGUgTUFHSSBtaXNzaW9uIGlzIHRvIHVzZSB0aGUgV2F2ZSBHbGlkZXIgdG8gc2FtcGxlIHRoZSBsYXRlIHN1bW1lciBjaGxvcm9waHlsbCBibG9vbSB0aGF0IGRldmVsb3BzIG5lYXIgMzBcdTAwYjBOLCB3aXRoIHRoZSBnb2FsIG9mIHVzaW5nIHRoZSBjYW1lcmEgYW5kIExJU1NULUhvbG8gdG8gdHJ5IHRvIGlkZW50aWZ5IHNwZWNpZXMgaW4gdGhlIGJsb29tcyBhbmQgdGhlbiBmb2xsb3cgdGhlIGRldmVsb3BtZW50IG9mIHBoeXRvcGxhbmt0b24gYWdncmVnYXRlcy4gVGhlc2UgYWdncmVnYXRlcyBoYXZlIHJlY2VudGx5IGJlZW4gc2hvd24gdG8gYmUgYSBzaWduaWZpY2FudCBwYXJ0IG9mIHRoZSB0b3RhbCBhbW91bnQgb2YgY2FyYm9uIHRoYXQgc2lua3MgdG8gdGhlIGRlZXAgc2VhLiBLYXJsIGV0IGFsICgyMDEyKSBmb3VuZCB0aGF0IGluIGVhY2ggb2YgdGhlIHBhc3QgMTMgeWVhcnMsIHRoZXJlIHdhcyBhIGZsdXggb2YgbWF0ZXJpYWwgdG8gNCwwMDAgbSAodGhlIHN1bW1lciBleHBvcnQgcHVsc2UpIHRoYXQgcmVwcmVzZW50ZWQgfjIwJSBvZiB0aGUgdG90YWwgYW5udWFsIGZsdXguIFdvcmsgYmFzZWQgb24gc2F0ZWxsaXRlIG9jZWFuIGNvbG9yIGRhdGEgb3ZlciB0aGUgcGFzdCBkZWNhZGUgaGFzIHJldmVhbGVkIHRoZSBleGlzdGVuY2Ugb2YgbGFyZ2UgcGh5dG9wbGFua3RvbiBibG9vbXMgaW4gdGhlIFBhY2lmaWMgT2NlYW4gdGhhdCBjb3ZlciB0aG91c2FuZHMgb2Yga20yLCBwZXJzaXN0IGZvciB3ZWVrcyBvciBsb25nZXIsIGFuZCBhcmUgb2Z0ZW4gZG9taW5hdGVkIGJ5IG5pdHJvZ2VuLWZpeGluZyBkaWF0b20gc3ltYmlvc2VzIChXaWxzb24gZXQgYWwuIDIwMDgpLiBXZSBob3BlIHRvIGJlIGFibGUgdG8gZXhhbWluZSB3aGV0aGVyIHRoaXMgYWdncmVnYXRpb24gaXMgb2NjdXJyaW5nIGluIHRoZSB2YXN0IG9jZWFuaWMgcmVnaW9ucyBub3J0aCBhbmQgZWFzdCBvZiBIYXdhaSdpIGFuZCBwcm92aWRlIGEgYmFzaW4tc2NhbGUgY29udGV4dCBmb3IgdGhlIEFMT0hBIG9ic2VydmF0aW9ucy4gVGhlc2UgZXZlbnRzIGhhdmUgcHJvdmVuIGRpZmZpY3VsdCB0byBzdHVkeSBvdXRzaWRlIG9mIHRoZSB0aW1lIHNlcmllcyBzdGF0aW9uIEFMT0hBIGF0IEhhd2FpJ2kuXG5cbmNkbV9kYXRhX3R5cGUgPSBUcmFqZWN0b3J5XG5WQVJJQUJMRVM6XG52ZWhpY2xlTmFtZSAoVmVoaWNsZSBOYW1lKVxuYWlzXG5mZWVkX3ZlcnNpb25cbnRpbWUgKERhdGV0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbk1NU0kgKE1hcml0aW1lIE1vYmlsZSBTZXJ2aWNlIElkZW50aXR5KVxuQ09HIChDb3Vyc2UgT3ZlciBHcm91bmQsIGRlZ3JlZXNfdHJ1ZSlcblNPRyAoU3BlZWQgT3ZlciBHcm91bmQsIGtub3RzKVxuUk9UIChSYXRlIE9mIFR1cm4sIGRlZ3JlZXMvbWluKVxuSGVhZGluZyAoZGVncmVlc190cnVlKVxuTmF2aWdhdGlvblN0YXR1cyAoTmF2aWdhdGlvbiBTdGF0dXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvTGlxdWlkUl9IQkczXzIwMTVfYWlzX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9MaXF1aWRSX0hCRzNfMjAxNV9haXNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vTGlxdWlkUl9IQkczXzIwMTVfYWlzL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9NQUdJLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9MaXF1aWRSX0hCRzNfMjAxNV9haXMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPUxpcXVpZFJfSEJHM18yMDE1X2FpcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJMaXF1aWQgUm9ib3RpY3MsIFVUIEF1c3RpbiwgTk9BQSBOTUZTIFNXRlNDIEVSRCIsICJMaXF1aWRSX0hCRzNfMjAxNV9haXMiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvTGlxdWlkUl9IQkczXzIwMTVfYzMuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X2MzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X2MzLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkxpcXVpZCBSb2JvdGljcyBXYXZlIEdsaWRlciwgSG9uZXkgQmFkZ2VyIChHMyksIDIwMTUsIEMzIiwgIkxpcXVpZCBSb2JvdGljcyBXYXZlIEdsaWRlciwgSG9uZXkgQmFkZ2VyIChHMyksIDIwMTUsIEMzLlxuQzMgYm9hcmQgbnVtYmVyIDgyMTUgKG5vdCBjb2F0ZWQpIGFwcGVhcnMgYXMgYm9hcmRfaWQ9MzIsIHRhc2tfaWQ9MjMuXG5DMyBib2FyZCBudW1iZXIgNzcxIChjb2F0ZWQpIGFwcGVhcnMgYXMgYm9hcmRfaWQ9MywgdGFza19pZD0zLiBUaGUgTUFHSSBtaXNzaW9uIGlzIHRvIHVzZSB0aGUgV2F2ZSBHbGlkZXIgdG8gc2FtcGxlIHRoZSBsYXRlIHN1bW1lciBjaGxvcm9waHlsbCBibG9vbSB0aGF0IGRldmVsb3BzIG5lYXIgMzBcdTAwYjBOLCB3aXRoIHRoZSBnb2FsIG9mIHVzaW5nIHRoZSBjYW1lcmEgYW5kIExJU1NULUhvbG8gdG8gdHJ5IHRvIGlkZW50aWZ5IHNwZWNpZXMgaW4gdGhlIGJsb29tcyBhbmQgdGhlbiBmb2xsb3cgdGhlIGRldmVsb3BtZW50IG9mIHBoeXRvcGxhbmt0b24gYWdncmVnYXRlcy4gVGhlc2UgYWdncmVnYXRlcyBoYXZlIHJlY2VudGx5IGJlZW4gc2hvd24gdG8gYmUgYSBzaWduaWZpY2FudCBwYXJ0IG9mIHRoZSB0b3RhbCBhbW91bnQgb2YgY2FyYm9uIHRoYXQgc2lua3MgdG8gdGhlIGRlZXAgc2VhLiBLYXJsIGV0IGFsICgyMDEyKSBmb3VuZCB0aGF0IGluIGVhY2ggb2YgdGhlIHBhc3QgMTMgeWVhcnMsIHRoZXJlIHdhcyBhIGZsdXggb2YgbWF0ZXJpYWwgdG8gNCwwMDAgbSAodGhlIHN1bW1lciBleHBvcnQgcHVsc2UpIHRoYXQgcmVwcmVzZW50ZWQgfjIwJSBvZiB0aGUgdG90YWwgYW5udWFsIGZsdXguIFdvcmsgYmFzZWQgb24gc2F0ZWxsaXRlIG9jZWFuIGNvbG9yIGRhdGEgb3ZlciB0aGUgcGFzdCBkZWNhZGUgaGFzIHJldmVhbGVkIHRoZSBleGlzdGVuY2Ugb2YgbGFyZ2UgcGh5dG9wbGFua3RvbiBibG9vbXMgaW4gdGhlIFBhY2lmaWMgT2NlYW4gdGhhdCBjb3ZlciB0aG91c2FuZHMgb2Yga20yLCBwZXJzaXN0IGZvciB3ZWVrcyBvciBsb25nZXIsIGFuZCBhcmUgb2Z0ZW4gZG9taW5hdGVkIGJ5IG5pdHJvZ2VuLWZpeGluZyBkaWF0b20gc3ltYmlvc2VzIChXaWxzb24gZXQgYWwuIDIwMDgpLiBXZSBob3BlIHRvIGJlIGFibGUgdG8gZXhhbWluZSB3aGV0aGVyIHRoaXMgYWdncmVnYXRpb24gaXMgb2NjdXJyaW5nIGluIHRoZSB2YXN0IG9jZWFuaWMgcmVnaW9ucyBub3J0aCBhbmQgZWFzdCBvZiBIYXdhaSdpIGFuZCBwcm92aWRlIGEgYmFzaW4tc2NhbGUgY29udGV4dCBmb3IgdGhlIEFMT0hBIG9ic2VydmF0aW9ucy4gVGhlc2UgZXZlbnRzIGhhdmUgcHJvdmVuIGRpZmZpY3VsdCB0byBzdHVkeSBvdXRzaWRlIG9mIHRoZSB0aW1lIHNlcmllcyBzdGF0aW9uIEFMT0hBIGF0IEhhd2FpJ2kuXG5cbmNkbV9kYXRhX3R5cGUgPSBUcmFqZWN0b3J5XG5WQVJJQUJMRVM6XG52ZWhpY2xlTmFtZSAoVmVoaWNsZSBOYW1lKVxuYm9hcmRfaWRcbnRhc2tfaWRcbmMzXyAoQzMpXG5mZWVkX3ZlcnNpb25cbnRpbWUgKERhdGV0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnVuaXhfdGltZXN0YW1wIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuYzFfY2hsb3JvcGh5bGwgKENoYW5uZWwgMTogQ2hsb3JvcGh5bGwsIFJGVSlcbmMyX0NET00gKENoYW5uZWwgMjogQ0RPTSwgUkZVKVxuYzNfcGh5Y29lcnl0aHJpbiAoQ2hhbm5lbCAzOiBQaHljb2VyeXRocmluLCBSRlUpXG5wcmVzc3VyZSAoPylcbnRlbXBlcmF0dXJlIChkZWdyZWVfQylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9MaXF1aWRSX0hCRzNfMjAxNV9jM19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvTGlxdWlkUl9IQkczXzIwMTVfYzNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vTGlxdWlkUl9IQkczXzIwMTVfYzMvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L01BR0kvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL0xpcXVpZFJfSEJHM18yMDE1X2MzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1MaXF1aWRSX0hCRzNfMjAxNV9jMyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJMaXF1aWQgUm9ib3RpY3MsIFVUIEF1c3RpbiwgTk9BQSBOTUZTIFNXRlNDIEVSRCIsICJMaXF1aWRSX0hCRzNfMjAxNV9jMyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9MaXF1aWRSX0hCRzNfMjAxNV9jdGQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X2N0ZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9MaXF1aWRSX0hCRzNfMjAxNV9jdGQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTGlxdWlkIFJvYm90aWNzIFdhdmUgR2xpZGVyLCBIb25leSBCYWRnZXIgKEczKSwgMjAxNSwgQ1REIiwgIkxpcXVpZCBSb2JvdGljcyBXYXZlIEdsaWRlciwgSG9uZXkgQmFkZ2VyIChHMyksIDIwMTUsIENURC4gVGhlIE1BR0kgbWlzc2lvbiBpcyB0byB1c2UgdGhlIFdhdmUgR2xpZGVyIHRvIHNhbXBsZSB0aGUgbGF0ZSBzdW1tZXIgY2hsb3JvcGh5bGwgYmxvb20gdGhhdCBkZXZlbG9wcyBuZWFyIDMwXHUwMGIwTiwgd2l0aCB0aGUgZ29hbCBvZiB1c2luZyB0aGUgY2FtZXJhIGFuZCBMSVNTVC1Ib2xvIHRvIHRyeSB0byBpZGVudGlmeSBzcGVjaWVzIGluIHRoZSBibG9vbXMgYW5kIHRoZW4gZm9sbG93IHRoZSBkZXZlbG9wbWVudCBvZiBwaHl0b3BsYW5rdG9uIGFnZ3JlZ2F0ZXMuIFRoZXNlIGFnZ3JlZ2F0ZXMgaGF2ZSByZWNlbnRseSBiZWVuIHNob3duIHRvIGJlIGEgc2lnbmlmaWNhbnQgcGFydCBvZiB0aGUgdG90YWwgYW1vdW50IG9mIGNhcmJvbiB0aGF0IHNpbmtzIHRvIHRoZSBkZWVwIHNlYS4gS2FybCBldCBhbCAoMjAxMikgZm91bmQgdGhhdCBpbiBlYWNoIG9mIHRoZSBwYXN0IDEzIHllYXJzLCB0aGVyZSB3YXMgYSBmbHV4IG9mIG1hdGVyaWFsIHRvIDQsMDAwIG0gKHRoZSBzdW1tZXIgZXhwb3J0IHB1bHNlKSB0aGF0IHJlcHJlc2VudGVkIH4yMCUgb2YgdGhlIHRvdGFsIGFubnVhbCBmbHV4LiBXb3JrIGJhc2VkIG9uIHNhdGVsbGl0ZSBvY2VhbiBjb2xvciBkYXRhIG92ZXIgdGhlIHBhc3QgZGVjYWRlIGhhcyByZXZlYWxlZCB0aGUgZXhpc3RlbmNlIG9mIGxhcmdlIHBoeXRvcGxhbmt0b24gYmxvb21zIGluIHRoZSBQYWNpZmljIE9jZWFuIHRoYXQgY292ZXIgdGhvdXNhbmRzIG9mIGttMiwgcGVyc2lzdCBmb3Igd2Vla3Mgb3IgbG9uZ2VyLCBhbmQgYXJlIG9mdGVuIGRvbWluYXRlZCBieSBuaXRyb2dlbi1maXhpbmcgZGlhdG9tIHN5bWJpb3NlcyAoV2lsc29uIGV0IGFsLiAyMDA4KS4gV2UgaG9wZSB0byBiZSBhYmxlIHRvIGV4YW1pbmUgd2hldGhlciB0aGlzIGFnZ3JlZ2F0aW9uIGlzIG9jY3VycmluZyBpbiB0aGUgdmFzdCBvY2VhbmljIHJlZ2lvbnMgbm9ydGggYW5kIGVhc3Qgb2YgSGF3YWknaSBhbmQgcHJvdmlkZSBhIGJhc2luLXNjYWxlIGNvbnRleHQgZm9yIHRoZSBBTE9IQSBvYnNlcnZhdGlvbnMuIFRoZXNlIGV2ZW50cyBoYXZlIHByb3ZlbiBkaWZmaWN1bHQgdG8gc3R1ZHkgb3V0c2lkZSBvZiB0aGUgdGltZSBzZXJpZXMgc3RhdGlvbiBBTE9IQSBhdCBIYXdhaSdpLlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudmVoaWNsZU5hbWUgKFZlaGljbGUgTmFtZSlcbmJvYXJkX2lkXG50YXNrX2lkXG5jdGRcbmZlZWRfdmVyc2lvblxudGltZSAoRGF0ZXRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxudW5peF90aW1lc3RhbXAgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG50ZW1wZXJhdHVyZSAoZGVncmVlX0MpXG5wcmVzc3VyZSAoZEJhcilcbmNvbmR1Y3Rpdml0eSAoU2VhIFdhdGVyIEVsZWN0cmljYWwgQ29uZHVjdGl2aXR5LCBTL20pXG5kaXNzb2x2ZWRfT191bmNhbGlicmF0ZWQgKEh6KVxucHJhY3RpY2FsX3NhbGluaXR5IChTZWEgV2F0ZXIgUHJhY3RpY2FsIFNhbGluaXR5LCBQU1UpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvTGlxdWlkUl9IQkczXzIwMTVfY3RkX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9MaXF1aWRSX0hCRzNfMjAxNV9jdGRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vTGlxdWlkUl9IQkczXzIwMTVfY3RkL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9NQUdJLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9MaXF1aWRSX0hCRzNfMjAxNV9jdGQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPUxpcXVpZFJfSEJHM18yMDE1X2N0ZCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJMaXF1aWQgUm9ib3RpY3MsIFVUIEF1c3RpbiwgTk9BQSBOTUZTIFNXRlNDIEVSRCIsICJMaXF1aWRSX0hCRzNfMjAxNV9jdGQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvTGlxdWlkUl9IQkczXzIwMTVfbW9zZS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvTGlxdWlkUl9IQkczXzIwMTVfbW9zZSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9MaXF1aWRSX0hCRzNfMjAxNV9tb3NlLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIkxpcXVpZCBSb2JvdGljcyBXYXZlIEdsaWRlciwgSG9uZXkgQmFkZ2VyIChHMyksIDIwMTUsIE1PU0UiLCAiTGlxdWlkIFJvYm90aWNzIFdhdmUgR2xpZGVyLCBIb25leSBCYWRnZXIgKEczKSwgMjAxNSwgTU9TRS4gVGhlIE1BR0kgbWlzc2lvbiBpcyB0byB1c2UgdGhlIFdhdmUgR2xpZGVyIHRvIHNhbXBsZSB0aGUgbGF0ZSBzdW1tZXIgY2hsb3JvcGh5bGwgYmxvb20gdGhhdCBkZXZlbG9wcyBuZWFyIDMwXHUwMGIwTiwgd2l0aCB0aGUgZ29hbCBvZiB1c2luZyB0aGUgY2FtZXJhIGFuZCBMSVNTVC1Ib2xvIHRvIHRyeSB0byBpZGVudGlmeSBzcGVjaWVzIGluIHRoZSBibG9vbXMgYW5kIHRoZW4gZm9sbG93IHRoZSBkZXZlbG9wbWVudCBvZiBwaHl0b3BsYW5rdG9uIGFnZ3JlZ2F0ZXMuIFRoZXNlIGFnZ3JlZ2F0ZXMgaGF2ZSByZWNlbnRseSBiZWVuIHNob3duIHRvIGJlIGEgc2lnbmlmaWNhbnQgcGFydCBvZiB0aGUgdG90YWwgYW1vdW50IG9mIGNhcmJvbiB0aGF0IHNpbmtzIHRvIHRoZSBkZWVwIHNlYS4gS2FybCBldCBhbCAoMjAxMikgZm91bmQgdGhhdCBpbiBlYWNoIG9mIHRoZSBwYXN0IDEzIHllYXJzLCB0aGVyZSB3YXMgYSBmbHV4IG9mIG1hdGVyaWFsIHRvIDQsMDAwIG0gKHRoZSBzdW1tZXIgZXhwb3J0IHB1bHNlKSB0aGF0IHJlcHJlc2VudGVkIH4yMCUgb2YgdGhlIHRvdGFsIGFubnVhbCBmbHV4LiBXb3JrIGJhc2VkIG9uIHNhdGVsbGl0ZSBvY2VhbiBjb2xvciBkYXRhIG92ZXIgdGhlIHBhc3QgZGVjYWRlIGhhcyByZXZlYWxlZCB0aGUgZXhpc3RlbmNlIG9mIGxhcmdlIHBoeXRvcGxhbmt0b24gYmxvb21zIGluIHRoZSBQYWNpZmljIE9jZWFuIHRoYXQgY292ZXIgdGhvdXNhbmRzIG9mIGttMiwgcGVyc2lzdCBmb3Igd2Vla3Mgb3IgbG9uZ2VyLCBhbmQgYXJlIG9mdGVuIGRvbWluYXRlZCBieSBuaXRyb2dlbi1maXhpbmcgZGlhdG9tIHN5bWJpb3NlcyAoV2lsc29uIGV0IGFsLiAyMDA4KS4gV2UgaG9wZSB0byBiZSBhYmxlIHRvIGV4YW1pbmUgd2hldGhlciB0aGlzIGFnZ3JlZ2F0aW9uIGlzIG9jY3VycmluZyBpbiB0aGUgdmFzdCBvY2VhbmljIHJlZ2lvbnMgbm9ydGggYW5kIGVhc3Qgb2YgSGF3YWknaSBhbmQgcHJvdmlkZSBhIGJhc2luLXNjYWxlIGNvbnRleHQgZm9yIHRoZSBBTE9IQSBvYnNlcnZhdGlvbnMuIFRoZXNlIGV2ZW50cyBoYXZlIHByb3ZlbiBkaWZmaWN1bHQgdG8gc3R1ZHkgb3V0c2lkZSBvZiB0aGUgdGltZSBzZXJpZXMgc3RhdGlvbiBBTE9IQSBhdCBIYXdhaSdpLlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudmVoaWNsZU5hbWUgKFZlaGljbGUgTmFtZSlcbmJvYXJkX2lkXG50YXNrX2lkXG5tb3NlXG5mZWVkX3ZlcnNpb25cbnRpbWUgKERhdGV0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnVuaXhfdGltZXN0YW1wIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2lnbmlmaWNhbnRfd2F2ZV9oZWlnaHQgKFNlYSBTdXJmYWNlIFdhdmUgU2lnbmlmaWNhbnQgSGVpZ2h0LCBtKVxuYXZlcmFnZV9wZXJpb2RfYWxsX3dhdmVzIChTZWEgU3VyZmFjZSBTd2VsbCBXYXZlIFBlcmlvZCwgcylcbnBlcmlvZF9iZXR3ZWVuX3NpZ25pZmljYW50X3dhdmVzIChTZWEgU3VyZmFjZSBTd2VsbCBXYXZlIFBlcmlvZCwgcylcbmRpcmVjdGlvbl9vZl9zaWduaWZpY2FudF93YXZlcyAoU2VhIFN1cmZhY2UgV2F2ZSBUbyBEaXJlY3Rpb24sIGRlZ3JlZXNfdHJ1ZSlcbm51bWJlcl9hdmVyYWdlZF9zcGVjdHJhXG5udW1iZXJfc2FtcGxlc19wZXJfc3BlY3RydW1cbm51bWJlcl9zYW1wbGVfZ2Fwc1xuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL0xpcXVpZFJfSEJHM18yMDE1X21vc2VfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL0xpcXVpZFJfSEJHM18yMDE1X21vc2VfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vTGlxdWlkUl9IQkczXzIwMTVfbW9zZS9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTUFHSS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvTGlxdWlkUl9IQkczXzIwMTVfbW9zZS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9TGlxdWlkUl9IQkczXzIwMTVfbW9zZSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJMaXF1aWQgUm9ib3RpY3MsIFVUIEF1c3RpbiwgTk9BQSBOTUZTIFNXRlNDIEVSRCIsICJMaXF1aWRSX0hCRzNfMjAxNV9tb3NlIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X3BoeXRvZmxhc2guc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X3BoeXRvZmxhc2giLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvTGlxdWlkUl9IQkczXzIwMTVfcGh5dG9mbGFzaC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJMaXF1aWQgUm9ib3RpY3MgV2F2ZSBHbGlkZXIsIEhvbmV5IEJhZGdlciAoRzMpLCAyMDE1LCBQaHl0b2ZsYXNoIiwgIkxpcXVpZCBSb2JvdGljcyBXYXZlIEdsaWRlciwgSG9uZXkgQmFkZ2VyIChHMyksIDIwMTUsIFBoeXRvZmxhc2guIFRoZSBNQUdJIG1pc3Npb24gaXMgdG8gdXNlIHRoZSBXYXZlIEdsaWRlciB0byBzYW1wbGUgdGhlIGxhdGUgc3VtbWVyIGNobG9yb3BoeWxsIGJsb29tIHRoYXQgZGV2ZWxvcHMgbmVhciAzMFx1MDBiME4sIHdpdGggdGhlIGdvYWwgb2YgdXNpbmcgdGhlIGNhbWVyYSBhbmQgTElTU1QtSG9sbyB0byB0cnkgdG8gaWRlbnRpZnkgc3BlY2llcyBpbiB0aGUgYmxvb21zIGFuZCB0aGVuIGZvbGxvdyB0aGUgZGV2ZWxvcG1lbnQgb2YgcGh5dG9wbGFua3RvbiBhZ2dyZWdhdGVzLiBUaGVzZSBhZ2dyZWdhdGVzIGhhdmUgcmVjZW50bHkgYmVlbiBzaG93biB0byBiZSBhIHNpZ25pZmljYW50IHBhcnQgb2YgdGhlIHRvdGFsIGFtb3VudCBvZiBjYXJib24gdGhhdCBzaW5rcyB0byB0aGUgZGVlcCBzZWEuIEthcmwgZXQgYWwgKDIwMTIpIGZvdW5kIHRoYXQgaW4gZWFjaCBvZiB0aGUgcGFzdCAxMyB5ZWFycywgdGhlcmUgd2FzIGEgZmx1eCBvZiBtYXRlcmlhbCB0byA0LDAwMCBtICh0aGUgc3VtbWVyIGV4cG9ydCBwdWxzZSkgdGhhdCByZXByZXNlbnRlZCB+MjAlIG9mIHRoZSB0b3RhbCBhbm51YWwgZmx1eC4gV29yayBiYXNlZCBvbiBzYXRlbGxpdGUgb2NlYW4gY29sb3IgZGF0YSBvdmVyIHRoZSBwYXN0IGRlY2FkZSBoYXMgcmV2ZWFsZWQgdGhlIGV4aXN0ZW5jZSBvZiBsYXJnZSBwaHl0b3BsYW5rdG9uIGJsb29tcyBpbiB0aGUgUGFjaWZpYyBPY2VhbiB0aGF0IGNvdmVyIHRob3VzYW5kcyBvZiBrbTIsIHBlcnNpc3QgZm9yIHdlZWtzIG9yIGxvbmdlciwgYW5kIGFyZSBvZnRlbiBkb21pbmF0ZWQgYnkgbml0cm9nZW4tZml4aW5nIGRpYXRvbSBzeW1iaW9zZXMgKFdpbHNvbiBldCBhbC4gMjAwOCkuIFdlIGhvcGUgdG8gYmUgYWJsZSB0byBleGFtaW5lIHdoZXRoZXIgdGhpcyBhZ2dyZWdhdGlvbiBpcyBvY2N1cnJpbmcgaW4gdGhlIHZhc3Qgb2NlYW5pYyByZWdpb25zIG5vcnRoIGFuZCBlYXN0IG9mIEhhd2FpJ2kgYW5kIHByb3ZpZGUgYSBiYXNpbi1zY2FsZSBjb250ZXh0IGZvciB0aGUgQUxPSEEgb2JzZXJ2YXRpb25zLiBUaGVzZSBldmVudHMgaGF2ZSBwcm92ZW4gZGlmZmljdWx0IHRvIHN0dWR5IG91dHNpZGUgb2YgdGhlIHRpbWUgc2VyaWVzIHN0YXRpb24gQUxPSEEgYXQgSGF3YWknaS5cblxuY2RtX2RhdGFfdHlwZSA9IFRyYWplY3RvcnlcblZBUklBQkxFUzpcbnZlaGljbGVOYW1lIChWZWhpY2xlIE5hbWUpXG5ib2FyZF9pZFxudGFza19pZFxucGh5dG9mbGFzaFxuZmVlZF92ZXJzaW9uXG50aW1lIChEYXRldGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG51bml4X3RpbWVzdGFtcCAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbkZvXG5GbVxuQmxhbmtcbkZ2XG5ZaWVsZFxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL0xpcXVpZFJfSEJHM18yMDE1X3BoeXRvZmxhc2hfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL0xpcXVpZFJfSEJHM18yMDE1X3BoeXRvZmxhc2hfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vTGlxdWlkUl9IQkczXzIwMTVfcGh5dG9mbGFzaC9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTUFHSS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvTGlxdWlkUl9IQkczXzIwMTVfcGh5dG9mbGFzaC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9TGlxdWlkUl9IQkczXzIwMTVfcGh5dG9mbGFzaCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJMaXF1aWQgUm9ib3RpY3MsIFVUIEF1c3RpbiwgTk9BQSBOTUZTIFNXRlNDIEVSRCIsICJMaXF1aWRSX0hCRzNfMjAxNV9waHl0b2ZsYXNoIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X3RlbGVtZXRyeS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvTGlxdWlkUl9IQkczXzIwMTVfdGVsZW1ldHJ5IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X3RlbGVtZXRyeS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJMaXF1aWQgUm9ib3RpY3MgV2F2ZSBHbGlkZXIsIEhvbmV5IEJhZGdlciAoRzMpLCAyMDE1LCBUZWxlbWV0cnkiLCAiTGlxdWlkIFJvYm90aWNzIFdhdmUgR2xpZGVyLCBIb25leSBCYWRnZXIgKEczKSwgMjAxNSwgVGVsZW1ldHJ5LiBUaGUgTUFHSSBtaXNzaW9uIGlzIHRvIHVzZSB0aGUgV2F2ZSBHbGlkZXIgdG8gc2FtcGxlIHRoZSBsYXRlIHN1bW1lciBjaGxvcm9waHlsbCBibG9vbSB0aGF0IGRldmVsb3BzIG5lYXIgMzBcdTAwYjBOLCB3aXRoIHRoZSBnb2FsIG9mIHVzaW5nIHRoZSBjYW1lcmEgYW5kIExJU1NULUhvbG8gdG8gdHJ5IHRvIGlkZW50aWZ5IHNwZWNpZXMgaW4gdGhlIGJsb29tcyBhbmQgdGhlbiBmb2xsb3cgdGhlIGRldmVsb3BtZW50IG9mIHBoeXRvcGxhbmt0b24gYWdncmVnYXRlcy4gVGhlc2UgYWdncmVnYXRlcyBoYXZlIHJlY2VudGx5IGJlZW4gc2hvd24gdG8gYmUgYSBzaWduaWZpY2FudCBwYXJ0IG9mIHRoZSB0b3RhbCBhbW91bnQgb2YgY2FyYm9uIHRoYXQgc2lua3MgdG8gdGhlIGRlZXAgc2VhLiBLYXJsIGV0IGFsICgyMDEyKSBmb3VuZCB0aGF0IGluIGVhY2ggb2YgdGhlIHBhc3QgMTMgeWVhcnMsIHRoZXJlIHdhcyBhIGZsdXggb2YgbWF0ZXJpYWwgdG8gNCwwMDAgbSAodGhlIHN1bW1lciBleHBvcnQgcHVsc2UpIHRoYXQgcmVwcmVzZW50ZWQgfjIwJSBvZiB0aGUgdG90YWwgYW5udWFsIGZsdXguIFdvcmsgYmFzZWQgb24gc2F0ZWxsaXRlIG9jZWFuIGNvbG9yIGRhdGEgb3ZlciB0aGUgcGFzdCBkZWNhZGUgaGFzIHJldmVhbGVkIHRoZSBleGlzdGVuY2Ugb2YgbGFyZ2UgcGh5dG9wbGFua3RvbiBibG9vbXMgaW4gdGhlIFBhY2lmaWMgT2NlYW4gdGhhdCBjb3ZlciB0aG91c2FuZHMgb2Yga20yLCBwZXJzaXN0IGZvciB3ZWVrcyBvciBsb25nZXIsIGFuZCBhcmUgb2Z0ZW4gZG9taW5hdGVkIGJ5IG5pdHJvZ2VuLWZpeGluZyBkaWF0b20gc3ltYmlvc2VzIChXaWxzb24gZXQgYWwuIDIwMDgpLiBXZSBob3BlIHRvIGJlIGFibGUgdG8gZXhhbWluZSB3aGV0aGVyIHRoaXMgYWdncmVnYXRpb24gaXMgb2NjdXJyaW5nIGluIHRoZSB2YXN0IG9jZWFuaWMgcmVnaW9ucyBub3J0aCBhbmQgZWFzdCBvZiBIYXdhaSdpIGFuZCBwcm92aWRlIGEgYmFzaW4tc2NhbGUgY29udGV4dCBmb3IgdGhlIEFMT0hBIG9ic2VydmF0aW9ucy4gVGhlc2UgZXZlbnRzIGhhdmUgcHJvdmVuIGRpZmZpY3VsdCB0byBzdHVkeSBvdXRzaWRlIG9mIHRoZSB0aW1lIHNlcmllcyBzdGF0aW9uIEFMT0hBIGF0IEhhd2FpJ2kuXG5cbmNkbV9kYXRhX3R5cGUgPSBUcmFqZWN0b3J5XG5WQVJJQUJMRVM6XG52ZWhpY2xlTmFtZSAoVmVoaWNsZSBOYW1lKVxudGVsZW1ldHJ5XG5mZWVkX3ZlcnNpb25cbnRpbWUgKERhdGV0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmRpc3RhbmNlX292ZXJfZ3JvdW5kIChtKVxuZGVzaXJlZF9oZWFkaW5nIChkZWdyZWVzKVxuc3ViX2hlYWRpbmcgKGRlZ3JlZXMpXG50YXJnZXRfd2F5cG9pbnRcbnN1Yl90ZW1wZXJhdHVyZSAoZGVncmVlX0MpXG50b3RhbF9wb3dlciAobVdoKVxud2F0ZXJfc3BlZWQgKGtub3RzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL0xpcXVpZFJfSEJHM18yMDE1X3RlbGVtZXRyeV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvTGlxdWlkUl9IQkczXzIwMTVfdGVsZW1ldHJ5X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL0xpcXVpZFJfSEJHM18yMDE1X3RlbGVtZXRyeS9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTUFHSS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvTGlxdWlkUl9IQkczXzIwMTVfdGVsZW1ldHJ5LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1MaXF1aWRSX0hCRzNfMjAxNV90ZWxlbWV0cnkmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTGlxdWlkIFJvYm90aWNzLCBVVCBBdXN0aW4sIE5PQUEgTk1GUyBTV0ZTQyBFUkQiLCAiTGlxdWlkUl9IQkczXzIwMTVfdGVsZW1ldHJ5Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X3dlYXRoZXIuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0xpcXVpZFJfSEJHM18yMDE1X3dlYXRoZXIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvTGlxdWlkUl9IQkczXzIwMTVfd2VhdGhlci5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJMaXF1aWQgUm9ib3RpY3MgV2F2ZSBHbGlkZXIsIEhvbmV5IEJhZGdlciAoRzMpLCAyMDE1LCBXZWF0aGVyIiwgIkxpcXVpZCBSb2JvdGljcyBXYXZlIEdsaWRlciwgSG9uZXkgQmFkZ2VyIChHMyksIDIwMTUsIFdlYXRoZXIuIFRoZSBNQUdJIG1pc3Npb24gaXMgdG8gdXNlIHRoZSBXYXZlIEdsaWRlciB0byBzYW1wbGUgdGhlIGxhdGUgc3VtbWVyIGNobG9yb3BoeWxsIGJsb29tIHRoYXQgZGV2ZWxvcHMgbmVhciAzMFx1MDBiME4sIHdpdGggdGhlIGdvYWwgb2YgdXNpbmcgdGhlIGNhbWVyYSBhbmQgTElTU1QtSG9sbyB0byB0cnkgdG8gaWRlbnRpZnkgc3BlY2llcyBpbiB0aGUgYmxvb21zIGFuZCB0aGVuIGZvbGxvdyB0aGUgZGV2ZWxvcG1lbnQgb2YgcGh5dG9wbGFua3RvbiBhZ2dyZWdhdGVzLiBUaGVzZSBhZ2dyZWdhdGVzIGhhdmUgcmVjZW50bHkgYmVlbiBzaG93biB0byBiZSBhIHNpZ25pZmljYW50IHBhcnQgb2YgdGhlIHRvdGFsIGFtb3VudCBvZiBjYXJib24gdGhhdCBzaW5rcyB0byB0aGUgZGVlcCBzZWEuIEthcmwgZXQgYWwgKDIwMTIpIGZvdW5kIHRoYXQgaW4gZWFjaCBvZiB0aGUgcGFzdCAxMyB5ZWFycywgdGhlcmUgd2FzIGEgZmx1eCBvZiBtYXRlcmlhbCB0byA0LDAwMCBtICh0aGUgc3VtbWVyIGV4cG9ydCBwdWxzZSkgdGhhdCByZXByZXNlbnRlZCB+MjAlIG9mIHRoZSB0b3RhbCBhbm51YWwgZmx1eC4gV29yayBiYXNlZCBvbiBzYXRlbGxpdGUgb2NlYW4gY29sb3IgZGF0YSBvdmVyIHRoZSBwYXN0IGRlY2FkZSBoYXMgcmV2ZWFsZWQgdGhlIGV4aXN0ZW5jZSBvZiBsYXJnZSBwaHl0b3BsYW5rdG9uIGJsb29tcyBpbiB0aGUgUGFjaWZpYyBPY2VhbiB0aGF0IGNvdmVyIHRob3VzYW5kcyBvZiBrbTIsIHBlcnNpc3QgZm9yIHdlZWtzIG9yIGxvbmdlciwgYW5kIGFyZSBvZnRlbiBkb21pbmF0ZWQgYnkgbml0cm9nZW4tZml4aW5nIGRpYXRvbSBzeW1iaW9zZXMgKFdpbHNvbiBldCBhbC4gMjAwOCkuIFdlIGhvcGUgdG8gYmUgYWJsZSB0byBleGFtaW5lIHdoZXRoZXIgdGhpcyBhZ2dyZWdhdGlvbiBpcyBvY2N1cnJpbmcgaW4gdGhlIHZhc3Qgb2NlYW5pYyByZWdpb25zIG5vcnRoIGFuZCBlYXN0IG9mIEhhd2FpJ2kgYW5kIHByb3ZpZGUgYSBiYXNpbi1zY2FsZSBjb250ZXh0IGZvciB0aGUgQUxPSEEgb2JzZXJ2YXRpb25zLiBUaGVzZSBldmVudHMgaGF2ZSBwcm92ZW4gZGlmZmljdWx0IHRvIHN0dWR5IG91dHNpZGUgb2YgdGhlIHRpbWUgc2VyaWVzIHN0YXRpb24gQUxPSEEgYXQgSGF3YWknaS5cblxuY2RtX2RhdGFfdHlwZSA9IFRyYWplY3RvcnlcblZBUklBQkxFUzpcbnZlaGljbGVOYW1lIChWZWhpY2xlIE5hbWUpXG53ZWF0aGVyXG5mZWVkX3ZlcnNpb25cbnRpbWUgKERhdGV0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChkZWdyZWVfQylcbnByZXNzdXJlIChtQmFyKVxuYXZnX3dpbmRfc3BlZWQgKFdpbmQgU3BlZWQsIGtub3RzKVxuc3RkX2Rldl93aW5kX3NwZWVkIChXaW5kIFNwZWVkLCBrbm90cylcbmF2Z193aW5kX2RpcmVjdGlvbiAoV2luZCBGcm9tIERpcmVjdGlvbiwgZGVncmVlc190cnVlKVxuc3RkX2Rldl93aW5kX2RpcmVjdGlvbiAoV2luZCBGcm9tIERpcmVjdGlvbiwgZGVncmVlc190cnVlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL0xpcXVpZFJfSEJHM18yMDE1X3dlYXRoZXJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL0xpcXVpZFJfSEJHM18yMDE1X3dlYXRoZXJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vTGlxdWlkUl9IQkczXzIwMTVfd2VhdGhlci9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTUFHSS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvTGlxdWlkUl9IQkczXzIwMTVfd2VhdGhlci5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9TGlxdWlkUl9IQkczXzIwMTVfd2VhdGhlciZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJMaXF1aWQgUm9ib3RpY3MsIFVUIEF1c3RpbiwgTk9BQSBOTUZTIFNXRlNDIEVSRCIsICJMaXF1aWRSX0hCRzNfMjAxNV93ZWF0aGVyIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL21hdWlfd2F0ZXJfcXVhbGl0eS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbWF1aV93YXRlcl9xdWFsaXR5IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL21hdWlfd2F0ZXJfcXVhbGl0eS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJNYXVpIENpdGl6ZW4gU2NpZW5jZSBDb2FzdGFsIFdhdGVyIFF1YWxpdHkgRGF0YSIsICJBIG5ldHdvcmsgb2YgY2l0aXplbiBzY2llbmNlIHZvbHVudGVlcnMgcGVyaW9kaWNhbGx5IG1vbml0b3JlZCB3YXRlciBxdWFsaXR5IGF0IHNldmVyYWwgYmVhY2hlcyBhY3Jvc3MgdGhlIGlzbGFuZCBvZiBNYXVpIGluIHRoZSBTdGF0ZSBvZiBIYXdhaWkgZHVyaW5nIHRoZSB5ZWFycyAyMDEwLTIwMTYuIFRoaXMgY29tbXVuaXR5LWJhc2VkIG1vbml0b3JpbmcgZWZmb3J0IHByb3ZpZGVkIHZhbHVhYmxlIGRhdGEgZm9yIHJlc291cmNlIG1hbmFnZW1lbnQgcHVycG9zZXMuIEluZm9ybWVkIHZvbHVudGVlciBuZXR3b3JrcyBjYW4gc2VydmUgYXMgYSBjb21tdW5pdHkncyBcImV5ZXMgYW5kIGVhcnNcIiBhbmQgd2lsbCBvZnRlbiBwcm92aWRlIHRoZSBmaXJzdCBpbmRpY2F0aW9ucyBvZiBjaGFuZ2VzIHRvIGEgc3lzdGVtLiBJbiBhZGRpdGlvbiB0byB0aGUgdmFsdWUgb2YgZWFybHkgZGV0ZWN0aW9uLCBpdCBpcyBpbXBvcnRhbnQgdG8gbWFpbnRhaW4gb25nb2luZyBtb25pdG9yaW5nIGVmZm9ydHMgdG8gY29tcGlsZSBkYXRhIGFuZCBkb2N1bWVudCByZXNvdXJjZSBjb25kaXRpb25zLlxuXG5JbiBhZGRpdGlvbiB0byB3YXRlciB0ZW1wZXJhdHVyZSwgc2FsaW5pdHksIHR1cmJpZGl0eSAod2F0ZXIgY2xhcml0eSksIGFuZCBwSCwgc2FtcGxpbmcgc2l0ZXMgd2VyZSBhbHNvIG1vbml0b3JlZCBmb3IgaGFybWZ1bCBiYWN0ZXJpYSBsZXZlbHMgb2YgRW50ZXJvY29jY3VzIHRocm91Z2ggMjAxNC0wNi0yNi4gVGhpcyBpbmRpY2F0b3IgYmFjdGVyaWEgaGFzIGJlZW4gY29ycmVsYXRlZCB3aXRoIHRoZSBwcmVzZW5jZSBvZiBodW1hbiBwYXRob2dlbnMgKGRpc2Vhc2UtY2F1c2luZyBvcmdhbmlzbXMpIGFuZCB0aGVyZWZvcmUgd2l0aCBodW1hbiBpbGxuZXNzZXMgc3VjaCBhcyBnYXN0cm9lbnRlcml0aXMsIGRpYXJyaGVhLCBhbmQgdmFyaW91cyBpbmZlY3Rpb25zIGluIGVwaWRlbWlvbG9naWNhbCBzdHVkaWVzLiBBcyBzdWNoLCBpdCBpcyBjb21tb25seSBtZWFzdXJlZCBpbiBiZWFjaCB3YXRlciBxdWFsaXR5IG1vbml0b3JpbmcgcHJvZ3JhbXMuIEZvciByZWZlcmVuY2UsIHRoZSBVLlMuIEVudmlyb25tZW50YWwgUHJvdGVjdGlvbiBBZ2VuY3kgKEVQQSkgMTk4NiBBbWJpZW50IFdhdGVyIFF1YWxpdHkgQ3JpdGVyaWEgZm9yIEJhY3RlcmlhIHJlY29tbWVuZHMgdGhhdCBhIHdhdGVyIHF1YWxpdHkgYWxlcnQgaXMgcG9zdGVkIGlmIGVpdGhlcjogKGEuKSB0aGUgbGF0ZXN0IHdhdGVyIHNhbXBsZSBleGNlZWRzIDEwNCBDRlUvMTAwIG1MIG9mIEVudGVyb2NvY2N1cywgb3IgKGIuKSB0aGUgZ2VvbWV0cmljIG1lYW4gb2YgdGhlIHBhc3QgMzAgZGF5cyBvZiB3YXRlciBzYW1wbGVzIGV4Y2VlZHMgMzUgQ0ZVLzEwMCBtTC4gT25lIG9mIHRoZSBsaW1pdGF0aW9ucyBvZiBhbGwgYXZhaWxhYmxlIGFuZCBFUEEtYXBwcm92ZWQgdGVzdCBtZXRob2RzIGlzIHRoYXQgdGhlIHNhbXBsZSBtdXN0IGJlIGluY3ViYXRlZCBmb3IgYWJvdXQgMjQgaG91cnMuXG5cbkRhdGEgd2VyZSBtYW5hZ2VkIHRocm91Z2ggYW4gb25saW5lIHJlcG9zaXRvcnksIHRoZSBDb3JhbCBSZWVmIE1vbml0b3JpbmcgRGF0YSBQb3J0YWwgKG5vdyBkZWZ1bmN0KSwgZGV2ZWxvcGVkIGFuZCBjb29yZGluYXRlZCBieSB0aGUgQ29yYWwgUmVlZiBBbGxpYW5jZSAoQ09SQUwpIGFuZCBpdHMgcGFydG5lcnMgd2l0aCBmdW5kaW5nIHByb3ZpZGVkIGJ5IHRoZSBIYXdhaWkgVG91cmlzbSBBdXRob3JpdHkgKEhUQSkgYW5kIHRoZSBOYXRpb25hbCBPY2VhbmljIGFuZCBBdG1vc3BoZXJpYyBBZG1pbmlzdHJhdGlvbiAoTk9BQSkuIERhdGEgY29sbGVjdGlvbiB3YXMgY29vcmRpbmF0ZWQgYnkgdGhlIEhhd2FpaSBEaXZpc2lvbiBvZiBBcXVhdGljIFJlc291cmNlcyAoREFSKSwgdGhlIEhhd2FpaWFuIElzbGFuZHMgSHVtcGJhY2sgV2hhbGUgTmF0aW9uYWwgTWFyaW5lIFNhbmN0dWFyeSAoSElIV05NUyksIEFxdWFuaW1pdHkgTm93LCB0aGUgRGlnaXRhbCBCdXMsIFNhdmUgSG9ub2x1YSBDb2FsaXRpb24sIFByb2plY3QgUy5FLkEuLUxpbmssIGFuZCBvdGhlciBsb2NhbCBvcmdhbml6YXRpb25zIGFuZCBhZ2VuY2llcy4gRGF0YSBhcmUgcHVibGljbHkgZGlzdHJpYnV0ZWQgYnkgdGhlIFBhY2lmaWMgSXNsYW5kcyBPY2VhbiBPYnNlcnZpbmcgU3lzdGVtIChQYWNJT09TKS5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbi4uLiAoOSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9tYXVpX3dhdGVyX3F1YWxpdHlfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL21hdWlfd2F0ZXJfcXVhbGl0eV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9tYXVpX3dhdGVyX3F1YWxpdHkvaW5kZXguanNvbiIsICJodHRwczovL2NvcmFsLm9yZy9tYXVpLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9tYXVpX3dhdGVyX3F1YWxpdHkucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPW1hdWlfd2F0ZXJfcXVhbGl0eSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJDb3JhbCBSZWVmIEFsbGlhbmNlIChDT1JBTCkiLCAibWF1aV93YXRlcl9xdWFsaXR5Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2N3d2NOREJDTWV0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9jd3djTkRCQ01ldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9jd3djTkRCQ01ldC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOREJDIFN0YW5kYXJkIE1ldGVvcm9sb2dpY2FsIEJ1b3kgRGF0YSwgMTk3MC1wcmVzZW50IiwgIlRoZSBOYXRpb25hbCBEYXRhIEJ1b3kgQ2VudGVyIChOREJDKSBkaXN0cmlidXRlcyBtZXRlb3JvbG9naWNhbCBkYXRhIGZyb21cbm1vb3JlZCBidW95cyBtYWludGFpbmVkIGJ5IE5EQkMgYW5kIG90aGVycy4gTW9vcmVkIGJ1b3lzIGFyZSB0aGUgd2VhdGhlclxuc2VudGluZWxzIG9mIHRoZSBzZWEuIFRoZXkgYXJlIGRlcGxveWVkIGluIHRoZSBjb2FzdGFsIGFuZCBvZmZzaG9yZSB3YXRlcnNcbmZyb20gdGhlIHdlc3Rlcm4gQXRsYW50aWMgdG8gdGhlIFBhY2lmaWMgT2NlYW4gYXJvdW5kIEhhd2FpaSwgYW5kIGZyb20gdGhlXG5CZXJpbmcgU2VhIHRvIHRoZSBTb3V0aCBQYWNpZmljLiBOREJDJ3MgbW9vcmVkIGJ1b3lzIG1lYXN1cmUgYW5kIHRyYW5zbWl0XG5iYXJvbWV0cmljIHByZXNzdXJlOyB3aW5kIGRpcmVjdGlvbiwgc3BlZWQsIGFuZCBndXN0OyBhaXIgYW5kIHNlYVxudGVtcGVyYXR1cmU7IGFuZCB3YXZlIGVuZXJneSBzcGVjdHJhIGZyb20gd2hpY2ggc2lnbmlmaWNhbnQgd2F2ZSBoZWlnaHQsXG5kb21pbmFudCB3YXZlIHBlcmlvZCwgYW5kIGF2ZXJhZ2Ugd2F2ZSBwZXJpb2QgYXJlIGRlcml2ZWQuIEV2ZW4gdGhlXG5kaXJlY3Rpb24gb2Ygd2F2ZSBwcm9wYWdhdGlvbiBpcyBtZWFzdXJlZCBvbiBtYW55IG1vb3JlZCBidW95cy4gU2VlXG5odHRwczovL3d3dy5uZGJjLm5vYWEuZ292L21lYXNkZXMuc2h0bWwgZm9yIGEgZGVzY3JpcHRpb24gb2YgdGhlIG1lYXN1cmVtZW50cy5cblxuVGhlIHNvdXJjZSBkYXRhIGZyb20gTk9BQSBOREJDIGhhcyBkaWZmZXJlbnQgY29sdW1uIG5hbWVzLCBkaWZmZXJlbnQgdW5pdHMsXG5hbmQgZGlmZmVyZW50IG1pc3NpbmcgdmFsdWVzIGluIGRpZmZlcmVudCBmaWxlcywgYW5kIG90aGVyIHByb2JsZW1zXG4obm90YWJseSwgbG90cyBvZiByb3dzIHdpdGggZHVwbGljYXRlIG9yIGRpZmZlcmVudCB2YWx1ZXMgZm9yIHRoZSBzYW1lIHRpbWVcbnBvaW50KS4gVGhpcyBkYXRhc2V0IGlzIGEgc3RhbmRhcmRpemVkLCByZWZvcm1hdHRlZCwgYW5kIGxpZ2h0bHkgZWRpdGVkXG52ZXJzaW9uIG9mIHRoYXQgc291cmNlIGRhdGEsIGNyZWF0ZWQgYnkgTk9BQSBOTUZTIFNXRlNDIEVSRCAoZW1haWw6XG5lcmQuZGF0YSBhdCBub2FhLmdvdikuIEJlZm9yZSAyMDIwLTAxLTI5LCB0aGlzIGRhdGFzZXQgb25seSBoYWQgdGhlIGRhdGFcbnRoYXQgd2FzIGNsb3Nlc3QgdG8gYSBnaXZlbiBob3VyLCByb3VuZGVkIHRvIHRoZSBuZWFyZXN0IGhvdXIuIE5vdywgdGhpc1xuZGF0YXNldCBoYXMgYWxsIG9mIHRoZSBkYXRhIGF2YWlsYWJsZSBmcm9tIE5EQkMgd2l0aCB0aGUgb3JpZ2luYWwgdGltZVxudmFsdWVzLiBJZiB0aGVyZSBhcmUgbXVsdGlwbGUgc291cmNlIHJvd3MgZm9yIGEgZ2l2ZW4gYnVveSBmb3IgYSBnaXZlblxudGltZSwgb25seSB0aGUgcm93IHdpdGggdGhlIG1vc3Qgbm9uLU5hTiBkYXRhIHZhbHVlcyBpcyBrZXB0LiBJZiB0aGVyZSBpc1xuYSBnYXAgaW4gdGhlIGRhdGEsIGEgcm93IG9mIG1pc3NpbmcgdmFsdWVzIGlzIGluc2VydGVkICh3aGljaCBjYXVzZXMgYSBuaWNlXG5nYXAgd2hlbiB0aGUgZGF0YSBpcyBncmFwaGVkKS4gQWxzbywgc29tZSBpbXBvc3NpYmxlIGRhdGEgdmFsdWVzIGFyZVxucmVtb3ZlZCwgYnV0IHRoaXMgZGF0YSBpcyBub3QgcGVyZmVjdGx5IGNsZWFuLiBUaGlzIGRhdGFzZXQgaXMgbm93IHVwZGF0ZWRcbmV2ZXJ5IDUgbWludXRlcy5cblxuVGhpcyBkYXRhc2V0IGhhcyBib3RoIGhpc3RvcmljYWwgZGF0YSAocXVhbGl0eSBjb250cm9sbGVkLCBiZWZvcmVcbjIwMjAtMDYtMDFUMDA6MDA6MDBaKSBhbmQgbmVhciByZWFsIHRpbWUgZGF0YSAobGVzcyBxdWFsaXR5IGNvbnRyb2xsZWQsXG53aGljaCBtYXkgY2hhbmdlIGF0IGFueSB0aW1lLCBmcm9tIDIwMjAtMDYtMDFUMDA6MDA6MDBaIG9uKS5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb24gKFN0YXRpb24gSWRlbnRpZmllcilcbi4uLiAoMTkgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvY3d3Y05EQkNNZXRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2N3d2NOREJDTWV0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2N3d2NOREJDTWV0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cubmRiYy5ub2FhLmdvdi8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvY3d3Y05EQkNNZXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWN3d2NOREJDTWV0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTkRCQywgTk9BQSBOTUZTIFNXRlNDIEVSRCIsICJjd3djTkRCQ01ldCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC93b2NlY3ByLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC93b2NlY3ByIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3dvY2VjcHIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTkVGU0MgQ29udGludW91cyBQbGFua3RvbiBSZWNvcmRlciIsICJBIHN1bW1hcnkgZm9yIHRoZSBkYXRhXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmNydWlzZVxuc2FtcGxlXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxucGh5dG9fY29sb3JfaW5keCAoUGh5dG9wbGFua3RvbiBDb2xvciBJbmRleClcbm1hcm1hcF90YXhfY29kZSAoTWFybWFwIFRheG9ub21pYyBDb2RlKVxubWFybWFwX3N0YWdlX2NvZGVcbmFidW5kYW5jZSAocGVyIDEwMCBjdWJpYyBtZXRlcnMpXG5saWZlX3N0YWdlXG50YXhvbm9taWNfbmFtZVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3dvY2VjcHJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3dvY2VjcHJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vd29jZWNwci9pbmRleC5qc29uIiwgImh0dHBzOi8vY29hc3R3YXRjaC5wZmVnLm5vYWEuZ292L2VyZGRhcCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy93b2NlY3ByLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD13b2NlY3ByJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5FRlNDIiwgIndvY2VjcHIiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkTmV3cG9ydEN0ZC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkTmV3cG9ydEN0ZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmROZXdwb3J0Q3RkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5ld3BvcnQgTGFiIENURCBDYXN0cywgMTk5Ny0yMDA4IiwgIlRoZSBOZXdwb3J0IEh5ZHJvZ3JhcGhpYyAoTkgpIExpbmUgYWxvbmcgNDQuNjVcdTAwYjBOIG9mZiBjZW50cmFsIE9yZWdvbiB3YXMgc2FtcGxlZCBzZWFzb25hbGx5IGR1cmluZyB0d28gZXBvY2hzOiAxOTYxLTE5NzEgdGhyb3VnaCB0aGUgVEVOT0MgcHJvZ3JhbSBhbmQgMTk5Ny0yMDAzIHRocm91Z2ggdGhlIEdMT0JFQyBOb3J0aGVhc3QgUGFjaWZpYyBMb25nIFRlcm0gT2JzZXJ2YXRpb25zIFByb2dyYW0gKExUT1ApOyBzb21lIG9ic2VydmF0aW9ucyBhcmUgYXZhaWxhYmxlIGZvciAyMDA0IGFuZCAyMDA1LiBEdXJpbmcgVEVOT0MsIHRoZSBsaW5lIGV4dGVuZGVkIDMwNSBrbSBvZmZzaG9yZSB0byAxMjhcdTAwYjBXLCB3aXRoIHN0YXRpb25zIDE4IGttIGFwYXJ0IG92ZXIgdGhlIGNvbnRpbmVudGFsIHNoZWxmIGFuZCAzNiBrbSBvZmZzaG9yZS4gRHVyaW5nIExUT1AsIHRoZSBsaW5lIHdhcyBzaG9ydGVyICh0byAxMjZcdTAwYjBXKSB3aXRoIGNsb3NlciBzdGF0aW9uIHNwYWNpbmcgb3ZlciB0aGUgY29udGluZW50YWwgc2hlbGYgKDkga20gYXBhcnQpIGFuZCBzbG9wZSAoMTgga20gYXBhcnQpLiBMVE9QIGNydWlzZXMgaW5jbHVkZWQgYmlvY2hlbWljYWwgc2FtcGxpbmcgYW5kIHVuZGVyd2F5IGN1cnJlbnQgbWVhc3VyZW1lbnRzLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1Byb2ZpbGVcblZBUklBQkxFUzpcbmxpbmVcbnRyYW5zZWN0XG5zdGF0aW9uXG5wbGFpbl9zdGF0aW9uXG5wcm9qZWN0XG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxuc3RhdGlvbl9jb2RlIChDVEQgU3RhdGlvbiBDb2RlKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuZGVuc2l0eSAoc2lnbWEpXG5mbHVvcmVzY2VuY2UgKHZvbHRzKVxuc2FsaW5pdHkgKFNlYSBXYXRlciBQcmFjdGljYWwgU2FsaW5pdHksIFBTVSlcbnRlbXBlcmF0dXJlIChkZWdyZWVfQylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmROZXdwb3J0Q3RkX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmROZXdwb3J0Q3RkX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZE5ld3BvcnRDdGQvaW5kZXguanNvbiIsICJodHRwOi8vbGlua2luZ2h1Yi5lbHNldmllci5jb20vcmV0cmlldmUvcGlpL1MwMDc5NjYxMTA3MDAxNDc0IiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZE5ld3BvcnRDdGQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZE5ld3BvcnRDdGQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTldGU0MiLCAiZXJkTmV3cG9ydEN0ZCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbmNlcE5pbm9TU1R3ayIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9uY2VwTmlub1NTVHdrLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5pbm8gUmVnaW9uIFdlZWtseSBTU1QgT0lTU1QudjIiLCAiV2Vla2x5IE9JU1NULnYyICgxOTgxLTIwMTAgYmFzZSBwZXJpb2QpIE5pXHUwMGYxbyAxKzIgKDAtMTBcdTAwYjBTb3V0aCkoOTBcdTAwYjBXZXN0LTgwXHUwMGIwV2VzdCkgTmlcdTAwZjFvIDMgKDVcdTAwYjBOb3J0aC01XHUwMGIwU291dGgpKDE1MFx1MDBiMFdlc3QtOTBcdTAwYjBXZXN0KSBOaVx1MDBmMW8gNCAoNVx1MDBiME5vcnRoLTVcdTAwYjBTb3V0aCkgKDE2MFx1MDBiMEVhc3QtMTUwXHUwMGIwV2VzdCkgTmlcdTAwZjFvIDMuNCAoNVx1MDBiME5vcnRoLTVcdTAwYjBTb3V0aCkoMTcwLTEyMFx1MDBiMFdlc3QpXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbk5pbm8xXzJfc3N0IChkZWdyZWVzIEMpXG5OaW5vMV8yX3NzdGEgKE5pbm8xKzIgU1NUIEFub21hbHksIGRlZ3JlZXMgQylcbk5pbm8zX3NzdCAoZGVncmVlcyBDKVxuTmlubzNfc3N0YSAoTmlubzMgU1NUIEFub21hbHksIGRlZ3JlZXMgQylcbk5pbm8zNF9zc3QgKE5pbm8zLjQgU1NULCBkZWdyZWVzIEMpXG5OaW5vMzRfc3N0YSAoTmlubzMuNCBTU1QgQW5vbWFseSwgZGVncmVlcyBDKVxuTmlubzRfc3N0IChkZWdyZWVzIEMpXG5OaW5vNF9zc3RhIChOaW5vNCBTU1QgQW5vbWFseSwgZGVncmVlcyBDKVxuIiwgIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9uY2VwTmlub1NTVHdrL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cuY3BjLm5jZXAubm9hYS5nb3YvZGF0YS9pbmRpY2VzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9uY2VwTmlub1NTVHdrLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1uY2VwTmlub1NTVHdrJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5DRVAiLCAibmNlcE5pbm9TU1R3ayJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NTb3NBVGVtcC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zQVRlbXAiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zQVRlbXAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBOT1MgU09TLCBFWFBFUklNRU5UQUwsIDE4NTMtcHJlc2VudCwgQWlyIFRlbXBlcmF0dXJlIiwgIlRoZSBOT0FBIE5PUyBTT1Mgc2VydmVyIGlzIHBhcnQgb2YgdGhlIElPT1MgRElGIFNPUyBQcm9qZWN0LiAgVGhlIHN0YXRpb25zIGluIHRoaXMgZGF0YXNldCBoYXZlIGFpciB0ZW1wZXJhdHVyZSBkYXRhLiAgKioqKlRoZXNlIHNlcnZpY2VzIGFyZSBmb3IgdGVzdGluZyBhbmQgZXZhbHVhdGlvbiB1c2Ugb25seSoqKipcblxuQmVjYXVzZSBvZiB0aGUgbmF0dXJlIG9mIFNPUyByZXF1ZXN0cywgcmVxdWVzdHMgZm9yIGRhdGEgTVVTVCBpbmNsdWRlIGNvbnN0cmFpbnRzIGZvciB0aGUgbG9uZ2l0dWRlLCBsYXRpdHVkZSwgdGltZSwgYW5kL29yIHN0YXRpb25faWQgdmFyaWFibGVzLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbnN0YXRpb25faWRcbmFsdGl0dWRlIChtKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNlbnNvcl9pZFxuYWlyX3RlbXBlcmF0dXJlIChkZWdyZWVfQylcbnF1YWxpdHlfZmxhZ3NcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NTb3NBVGVtcF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zU29zQVRlbXBfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm9zU29zQVRlbXAvaW5kZXguanNvbiIsICJodHRwczovL29wZW5kYXAuY28tb3BzLm5vcy5ub2FhLmdvdi9pb29zLWRpZi1zb3MvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc1Nvc0FUZW1wLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NTb3NBVGVtcCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyIsICJub3NTb3NBVGVtcCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NTb3NCUHJlcy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zQlByZXMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zQlByZXMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBOT1MgU09TLCBFWFBFUklNRU5UQUwsIDE4NTMtcHJlc2VudCwgQmFyb21ldHJpYyBQcmVzc3VyZSIsICJUaGUgTk9BQSBOT1MgU09TIHNlcnZlciBpcyBwYXJ0IG9mIHRoZSBJT09TIERJRiBTT1MgUHJvamVjdC4gIFRoZSBzdGF0aW9ucyBpbiB0aGlzIGRhdGFzZXQgaGF2ZSBiYXJvbWV0cmljIHByZXNzdXJlIGRhdGEuICAqKioqVGhlc2Ugc2VydmljZXMgYXJlIGZvciB0ZXN0aW5nIGFuZCBldmFsdWF0aW9uIHVzZSBvbmx5KioqKlxuXG5CZWNhdXNlIG9mIHRoZSBuYXR1cmUgb2YgU09TIHJlcXVlc3RzLCByZXF1ZXN0cyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgY29uc3RyYWludHMgZm9yIHRoZSBsb25naXR1ZGUsIGxhdGl0dWRlLCB0aW1lLCBhbmQvb3Igc3RhdGlvbl9pZCB2YXJpYWJsZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxuc3RhdGlvbl9pZFxuYWx0aXR1ZGUgKG0pXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2Vuc29yX2lkXG5haXJfcHJlc3N1cmUgKEJhcm9tZXRyaWMgUHJlc3N1cmUsIG1pbGxpYmFycylcbnF1YWxpdHlfZmxhZ3NcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NTb3NCUHJlc19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zU29zQlByZXNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm9zU29zQlByZXMvaW5kZXguanNvbiIsICJodHRwczovL29wZW5kYXAuY28tb3BzLm5vcy5ub2FhLmdvdi9pb29zLWRpZi1zb3MvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc1Nvc0JQcmVzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NTb3NCUHJlcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyIsICJub3NTb3NCUHJlcyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NTb3NXTGV2ZWwuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc1Nvc1dMZXZlbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NTb3NXTGV2ZWwuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBOT1MgU09TLCBFWFBFUklNRU5UQUwsIDE4NTMtcHJlc2VudCwgV2F0ZXIgTGV2ZWwiLCAiVGhlIE5PQUEgTk9TIFNPUyBzZXJ2ZXIgaXMgcGFydCBvZiB0aGUgSU9PUyBESUYgU09TIFByb2plY3QuICBUaGUgc3RhdGlvbnMgaW4gdGhpcyBkYXRhc2V0IGhhdmUgd2F0ZXIgc3VyZmFjZSBoZWlnaHQgYWJvdmUgYSByZWZlcmVuY2UgZGF0dW0uICAqKioqVGhlc2Ugc2VydmljZXMgYXJlIGZvciB0ZXN0aW5nIGFuZCBldmFsdWF0aW9uIHVzZSBvbmx5KioqKlxuXG5CZWNhdXNlIG9mIHRoZSBuYXR1cmUgb2YgU09TIHJlcXVlc3RzLCByZXF1ZXN0cyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgY29uc3RyYWludHMgZm9yIHRoZSBsb25naXR1ZGUsIGxhdGl0dWRlLCB0aW1lLCBhbmQvb3Igc3RhdGlvbl9pZCB2YXJpYWJsZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxuc3RhdGlvbl9pZFxuYWx0aXR1ZGUgKG0pXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2Vuc29yX2lkXG53YXRlcl9sZXZlbCAod2F0ZXJfc3VyZmFjZV9oZWlnaHRfYWJvdmVfcmVmZXJlbmNlX2RhdHVtLCBtKVxuZGF0dW1faWRcbnZlcnRpY2FsX3Bvc2l0aW9uIChtKVxuc2lnbWFcbnF1YWxpdHlfZmxhZ3NcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NTb3NXTGV2ZWxfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc1Nvc1dMZXZlbF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub3NTb3NXTGV2ZWwvaW5kZXguanNvbiIsICJodHRwczovL29wZW5kYXAuY28tb3BzLm5vcy5ub2FhLmdvdi9pb29zLWRpZi1zb3MvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc1Nvc1dMZXZlbC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bm9zU29zV0xldmVsJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk9TIiwgIm5vc1Nvc1dMZXZlbCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NTb3NXVGVtcC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zV1RlbXAiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zV1RlbXAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBOT1MgU09TLCBFWFBFUklNRU5UQUwsIDE4NTMtcHJlc2VudCwgV2F0ZXIgVGVtcGVyYXR1cmUiLCAiVGhlIE5PQUEgTk9TIFNPUyBzZXJ2ZXIgaXMgcGFydCBvZiB0aGUgSU9PUyBESUYgU09TIFByb2plY3QuICBUaGUgc3RhdGlvbnMgaW4gdGhpcyBkYXRhc2V0IGhhdmUgd2F0ZXIgdGVtcGVyYXR1cmUgZGF0YS4gICoqKipUaGVzZSBzZXJ2aWNlcyBhcmUgZm9yIHRlc3RpbmcgYW5kIGV2YWx1YXRpb24gdXNlIG9ubHkqKioqXG5cbkJlY2F1c2Ugb2YgdGhlIG5hdHVyZSBvZiBTT1MgcmVxdWVzdHMsIHJlcXVlc3RzIGZvciBkYXRhIE1VU1QgaW5jbHVkZSBjb25zdHJhaW50cyBmb3IgdGhlIGxvbmdpdHVkZSwgbGF0aXR1ZGUsIHRpbWUsIGFuZC9vciBzdGF0aW9uX2lkIHZhcmlhYmxlcy5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5zdGF0aW9uX2lkXG5hbHRpdHVkZSAobSlcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zZW5zb3JfaWRcbnNlYV93YXRlcl90ZW1wZXJhdHVyZSAoZGVncmVlX0MpXG5xdWFsaXR5X2ZsYWdzXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm9zU29zV1RlbXBfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc1Nvc1dUZW1wX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL25vc1Nvc1dUZW1wL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vcGVuZGFwLmNvLW9wcy5ub3Mubm9hYS5nb3YvaW9vcy1kaWYtc29zLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9ub3NTb3NXVGVtcC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bm9zU29zV1RlbXAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOT1MiLCAibm9zU29zV1RlbXAiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zQ29uZC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zQ29uZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NTb3NDb25kLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgTk9TIFNPUywgRVhQRVJJTUVOVEFMLCAxOTAyLXByZXNlbnQsIENvbmR1Y3Rpdml0eSIsICJUaGUgTk9BQSBOT1MgU09TIHNlcnZlciBpcyBwYXJ0IG9mIHRoZSBJT09TIERJRiBTT1MgUHJvamVjdC4gIFRoZSBzdGF0aW9ucyBpbiB0aGlzIGRhdGFzZXQgaGF2ZSBjb25kdWN0aXZpdHkgZGF0YS4gICoqKipUaGVzZSBzZXJ2aWNlcyBhcmUgZm9yIHRlc3RpbmcgYW5kIGV2YWx1YXRpb24gdXNlIG9ubHkqKioqXG5cbkJlY2F1c2Ugb2YgdGhlIG5hdHVyZSBvZiBTT1MgcmVxdWVzdHMsIHJlcXVlc3RzIGZvciBkYXRhIE1VU1QgaW5jbHVkZSBjb25zdHJhaW50cyBmb3IgdGhlIGxvbmdpdHVkZSwgbGF0aXR1ZGUsIHRpbWUsIGFuZC9vciBzdGF0aW9uX2lkIHZhcmlhYmxlcy5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5zdGF0aW9uX2lkXG5hbHRpdHVkZSAobSlcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zZW5zb3JfaWRcbmNvbmR1Y3Rpdml0eSAoRWxlY3RyaWNhbCBDb25kdWN0aXZpdHksIG1TIGNtLTEpXG5xdWFsaXR5X2ZsYWdzXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm9zU29zQ29uZF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zU29zQ29uZF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub3NTb3NDb25kL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vcGVuZGFwLmNvLW9wcy5ub3Mubm9hYS5nb3YvaW9vcy1kaWYtc29zLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9ub3NTb3NDb25kLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NTb3NDb25kJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk9TIiwgIm5vc1Nvc0NvbmQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zU29zU2FsaW5pdHkuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc1Nvc1NhbGluaXR5IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc1Nvc1NhbGluaXR5LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgTk9TIFNPUywgRVhQRVJJTUVOVEFMLCAxOTAyLXByZXNlbnQsIFNhbGluaXR5IiwgIlRoZSBOT0FBIE5PUyBTT1Mgc2VydmVyIGlzIHBhcnQgb2YgdGhlIElPT1MgRElGIFNPUyBQcm9qZWN0LiAgVGhlIHN0YXRpb25zIGluIHRoaXMgZGF0YXNldCBoYXZlIHNhbGluaXR5IGRhdGEuICAqKioqVGhlc2Ugc2VydmljZXMgYXJlIGZvciB0ZXN0aW5nIGFuZCBldmFsdWF0aW9uIHVzZSBvbmx5KioqKlxuXG5CZWNhdXNlIG9mIHRoZSBuYXR1cmUgb2YgU09TIHJlcXVlc3RzLCByZXF1ZXN0cyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgY29uc3RyYWludHMgZm9yIHRoZSBsb25naXR1ZGUsIGxhdGl0dWRlLCB0aW1lLCBhbmQvb3Igc3RhdGlvbl9pZCB2YXJpYWJsZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxuc3RhdGlvbl9pZFxuYWx0aXR1ZGUgKG0pXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2Vuc29yX2lkXG5zZWFfd2F0ZXJfc2FsaW5pdHkgKFNlYSBXYXRlciBQcmFjdGljYWwgU2FsaW5pdHksIFBTVSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NTb3NTYWxpbml0eV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zU29zU2FsaW5pdHlfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm9zU29zU2FsaW5pdHkvaW5kZXguanNvbiIsICJodHRwczovL29wZW5kYXAuY28tb3BzLm5vcy5ub2FhLmdvdi9pb29zLWRpZi1zb3MvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc1Nvc1NhbGluaXR5LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NTb3NTYWxpbml0eSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyIsICJub3NTb3NTYWxpbml0eSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURURucnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFRG5ydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURURucnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBTaGlwIEJlbGwgTS4gU2hpbWFkYSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBOZWFyIFJlYWwgVGltZSIsICJOT0FBIFNoaXAgQmVsbCBNLiBTaGltYWRhIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKE5lYXIgUmVhbCBUaW1lLCB1cGRhdGVkIGRhaWx5KSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS4gIFxuXCI9flwiIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLiBcblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLiAgXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuICBcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5haXJQcmVzc3VyZSAoQXRtb3NwaGVyaWMgUHJlc3N1cmUsIG1pbGxpYmFyKVxuLi4uICgxOSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VOb2FhU2hpcFdURURucnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdU5vYWFTaGlwV1RFRG5ydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VOb2FhU2hpcFdURURucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1Tm9hYVNoaXBXVEVEbnJ0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VOb2FhU2hpcFdURURucnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdU5vYWFTaGlwV1RFRG5ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURUQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFRCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURUQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBTaGlwIEJlbGwgTS4gU2hpbWFkYSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiTk9BQSBTaGlwIEJlbGwgTS4gU2hpbWFkYSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDE5IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFRF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVEX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFRC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURUQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFRCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVEIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RESy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVERLIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RESy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgRGF2aWQgU3RhcnIgSm9yZGFuIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJOT0FBIFNoaXAgRGF2aWQgU3RhcnIgSm9yZGFuIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVERLX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdUREtfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVERLL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RESy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVERLJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdUREsiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBLTkJELnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcEtOQkQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBLTkJELmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBEZWxhd2FyZSBJSSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiTk9BQSBTaGlwIERlbGF3YXJlIElJIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBLTkJEX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcEtOQkRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBLTkJEL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwS05CRC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBLTkJEJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcEtOQkQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVCbnJ0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURUJucnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVCbnJ0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBGYWlyd2VhdGhlciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBOZWFyIFJlYWwgVGltZSIsICJOT0FBIFNoaXAgRmFpcndlYXRoZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoTmVhciBSZWFsIFRpbWUsIHVwZGF0ZWQgZGFpbHkpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFQm5ydF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVCbnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFQm5ydC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURUJucnQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFQm5ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVCbnJ0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFQi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVCIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFQi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgRmFpcndlYXRoZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUXVhbGl0eSBDb250cm9sbGVkIiwgIk5PQUEgU2hpcCBGYWlyd2VhdGhlciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFQl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVCX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFQi9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURUIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFQiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVCIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFT25ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVPbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFT25ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgR29yZG9uIEd1bnRlciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBOZWFyIFJlYWwgVGltZSIsICJOT0FBIFNoaXAgR29yZG9uIEd1bnRlciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChOZWFyIFJlYWwgVGltZSwgdXBkYXRlZCBkYWlseSkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVEVPbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdURU9ucnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVEVPbnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RFT25ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVEVPbnJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdURU9ucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVPLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURU8iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVPLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBHb3Jkb24gR3VudGVyIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJOT0FBIFNoaXAgR29yZG9uIEd1bnRlciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFT19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVPX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFTy9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURU8ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFTyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVPIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RERm5ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVERGbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RERm5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgSGVucnkgQi4gQmlnZWxvdyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBOZWFyIFJlYWwgVGltZSIsICJOT0FBIFNoaXAgSGVucnkgQi4gQmlnZWxvdyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChOZWFyIFJlYWwgVGltZSwgdXBkYXRlZCBkYWlseSkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVERGbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdUREZucnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVERGbnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RERm5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVERGbnJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdUREZucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVERGLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdUREYiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVERGLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBIZW5yeSBCLiBCaWdlbG93IFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJOT0FBIFNoaXAgSGVucnkgQi4gQmlnZWxvdyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RERl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVERGX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RERi9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdUREYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RERiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVERGIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFWW5ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVZbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFWW5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgSGknaWFsYWthaSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBOZWFyIFJlYWwgVGltZSIsICJOT0FBIFNoaXAgSGknaWFsYWthaSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChOZWFyIFJlYWwgVGltZSwgdXBkYXRlZCBkYWlseSkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVEVZbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdURVlucnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVEVZbnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RFWW5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVEVZbnJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdURVlucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVZLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURVkiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVZLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBIaSdpYWxha2FpIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJOT0FBIFNoaXAgSGknaWFsYWthaSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFWV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVZX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFWS9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURVkucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFWSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVZIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFVS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVVIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFVS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgS2EnaW1pbW9hbmEgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUXVhbGl0eSBDb250cm9sbGVkIiwgIk5PQUEgU2hpcCBLYSdpbWltb2FuYSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDE2IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFVV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVVX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFVS9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURVUucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFVSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVVIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFSi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVKIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFSi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgTWNBcnRodXJJSSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiTk9BQSBTaGlwIE1jQXJ0aHVyIElJIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVEVKX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdURUpfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVEVKL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RFSi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVEVKJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdURUoiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVERNLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURE0iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVERNLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBNaWxsZXIgRnJlZW1hbiBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiTk9BQSBTaGlwIE1pbGxlciBGcmVlbWFuIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVERNX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdURE1faXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVERNL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RETS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVERNJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdURE0iXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVSbnJ0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURVJucnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVSbnJ0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBOYW5jeSBGb3N0ZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgTmVhciBSZWFsIFRpbWUiLCAiTk9BQSBTaGlwIE5hbmN5IEZvc3RlciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChOZWFyIFJlYWwgVGltZSwgdXBkYXRlZCBkYWlseSkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTQgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVEVSbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdURVJucnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVEVSbnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RFUm5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVEVSbnJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdURVJucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVSLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURVIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVSLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBOYW5jeSBGb3N0ZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUXVhbGl0eSBDb250cm9sbGVkIiwgIk5PQUEgU2hpcCBOYW5jeSBGb3N0ZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS4gIFxuXCI9flwiIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLiBcblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLiAgXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuICBcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5haXJQcmVzc3VyZSAoQXRtb3NwaGVyaWMgUHJlc3N1cmUsIG1pbGxpYmFyKVxuLi4uICgxNCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VOb2FhU2hpcFdURVJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdU5vYWFTaGlwV1RFUl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VOb2FhU2hpcFdURVIvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1Tm9hYVNoaXBXVEVSLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VOb2FhU2hpcFdURVImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdU5vYWFTaGlwV1RFUiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdUREhucnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RESG5ydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdUREhucnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBTaGlwIE9rZWFub3MgRXhwbG9yZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgTmVhciBSZWFsIFRpbWUiLCAiTk9BQSBTaGlwIE9rZWFub3MgRXhwbG9yZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoTmVhciBSZWFsIFRpbWUsIHVwZGF0ZWQgZGFpbHkpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RESG5ydF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVERIbnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RESG5ydC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdUREhucnQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RESG5ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVERIbnJ0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RESC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVERIIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RESC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgT2tlYW5vcyBFeHBsb3JlciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiTk9BQSBTaGlwIE9rZWFub3MgRXhwbG9yZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS4gIFxuXCI9flwiIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLiBcblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLiAgXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuICBcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5haXJQcmVzc3VyZSAoQXRtb3NwaGVyaWMgUHJlc3N1cmUsIG1pbGxpYmFyKVxuLi4uICgxMyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VOb2FhU2hpcFdUREhfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdU5vYWFTaGlwV1RESF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VOb2FhU2hpcFdUREgvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1Tm9hYVNoaXBXVERILnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VOb2FhU2hpcFdUREgmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdU5vYWFTaGlwV1RESCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURE9ucnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RET25ydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURE9ucnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBTaGlwIE9yZWdvbiBJSSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBOZWFyIFJlYWwgVGltZSIsICJOT0FBIFNoaXAgT3JlZ29uIElJIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKE5lYXIgUmVhbCBUaW1lLCB1cGRhdGVkIGRhaWx5KSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS4gIFxuXCI9flwiIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLiBcblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLiAgXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuICBcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5haXJQcmVzc3VyZSAoQXRtb3NwaGVyaWMgUHJlc3N1cmUsIG1pbGxpYmFyKVxuLi4uICgxMyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VOb2FhU2hpcFdURE9ucnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdU5vYWFTaGlwV1RET25ydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VOb2FhU2hpcFdURE9ucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1Tm9hYVNoaXBXVERPbnJ0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VOb2FhU2hpcFdURE9ucnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdU5vYWFTaGlwV1RET25ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURE8uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RETyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURE8uZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBTaGlwIE9yZWdvbiBJSSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiTk9BQSBTaGlwIE9yZWdvbiBJSSBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RET19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVERPX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RETy9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURE8ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RETyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVERPIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFUG5ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVQbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFUG5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgT3NjYXIgRHlzb24gVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgTmVhciBSZWFsIFRpbWUiLCAiTk9BQSBTaGlwIE9zY2FyIER5c29uIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKE5lYXIgUmVhbCBUaW1lLCB1cGRhdGVkIGRhaWx5KSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS5cbic9ficgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci5cblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy5cbihEb24ndCBpbmNsdWRlIGJhY2tzbGFzaGVzIGluIHlvdXIgcXVlcnkuKVxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbi4uLiAoMTQgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVEVQbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdURVBucnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVEVQbnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RFUG5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVEVQbnJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdURVBucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVQLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURVAiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVQLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBPc2NhciBEeXNvbiBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiTk9BQSBTaGlwIE9zY2FyIER5c29uIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuXG4nPX4nIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLlxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuXG4oRG9uJ3QgaW5jbHVkZSBiYWNrc2xhc2hlcyBpbiB5b3VyIHF1ZXJ5LilcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDE0IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFUF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVQX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFUC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURVAucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFUCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVQIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFRW5ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVFbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFRW5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgT3NjYXIgRWx0b24gU2V0dGUgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgTmVhciBSZWFsIFRpbWUiLCAiTk9BQSBTaGlwIE9zY2FyIEVsdG9uIFNldHRlIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKE5lYXIgUmVhbCBUaW1lLCB1cGRhdGVkIGRhaWx5KSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS4gIFxuXCI9flwiIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLiBcblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLiAgXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuICBcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5haXJQcmVzc3VyZSAoQXRtb3NwaGVyaWMgUHJlc3N1cmUsIG1pbGxpYmFyKVxuLi4uICgxMyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VOb2FhU2hpcFdURUVucnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdU5vYWFTaGlwV1RFRW5ydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VOb2FhU2hpcFdURUVucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1Tm9hYVNoaXBXVEVFbnJ0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VOb2FhU2hpcFdURUVucnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdU5vYWFTaGlwV1RFRW5ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURUUuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFRSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURUUuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBTaGlwIE9zY2FyIEVsdG9uIFNldHRlIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJOT0FBIFNoaXAgT3NjYXIgRWx0b24gU2V0dGUgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS4gIFxuXCI9flwiIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLiBcblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLiAgXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuICBcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5haXJQcmVzc3VyZSAoQXRtb3NwaGVyaWMgUHJlc3N1cmUsIG1pbGxpYmFyKVxuLi4uICgxMyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VOb2FhU2hpcFdURUVfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdU5vYWFTaGlwV1RFRV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VOb2FhU2hpcFdURUUvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1Tm9hYVNoaXBXVEVFLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VOb2FhU2hpcFdURUUmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdU5vYWFTaGlwV1RFRSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURExucnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RETG5ydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURExucnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBTaGlwIFBpc2NlcyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBOZWFyIFJlYWwgVGltZSIsICJOT0FBIFNoaXAgUGlzY2VzIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKE5lYXIgUmVhbCBUaW1lLCB1cGRhdGVkIGRhaWx5KSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS4gIFxuXCI9flwiIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLiBcblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLiAgXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuICBcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5haXJQcmVzc3VyZSAoQXRtb3NwaGVyaWMgUHJlc3N1cmUsIG1pbGxpYmFyKVxuLi4uICgxMyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VOb2FhU2hpcFdURExucnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdU5vYWFTaGlwV1RETG5ydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VOb2FhU2hpcFdURExucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1Tm9hYVNoaXBXVERMbnJ0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VOb2FhU2hpcFdURExucnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdU5vYWFTaGlwV1RETG5ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdUREwuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RETCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdUREwuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9BQSBTaGlwIFBpc2NlcyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiTk9BQSBTaGlwIFBpc2NlcyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RETF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVERMX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RETC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdUREwucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RETCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVERMIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFRm5ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVGbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFRm5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgUmFpbmllciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBOZWFyIFJlYWwgVGltZSIsICJOT0FBIFNoaXAgUmFpbmllciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChOZWFyIFJlYWwgVGltZSwgdXBkYXRlZCBkYWlseSkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVEVGbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdURUZucnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVEVGbnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RFRm5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVEVGbnJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdURUZucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVGLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VOb2FhU2hpcFdURUYiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVGLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PQUEgU2hpcCBSYWluaWVyIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJOT0FBIFNoaXAgUmFpbmllciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFRl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVGX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFRi9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURUYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFRiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVGIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFQ25ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVDbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFQ25ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgUm9uYWxkIEJyb3duIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIE5lYXIgUmVhbCBUaW1lIiwgIk5PQUEgU2hpcCBSb25hbGQgQnJvd24gVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoTmVhciBSZWFsIFRpbWUsIHVwZGF0ZWQgZGFpbHkpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiAgZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LiAgXG5cIj1+XCIgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuIFxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuICBcblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy4gIFxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFpclByZXNzdXJlIChBdG1vc3BoZXJpYyBQcmVzc3VyZSwgbWlsbGliYXIpXG4uLi4gKDE0IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdU5vYWFTaGlwV1RFQ25ydF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1Tm9hYVNoaXBXVEVDbnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdU5vYWFTaGlwV1RFQ25ydC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VOb2FhU2hpcFdURUNucnQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdU5vYWFTaGlwV1RFQ25ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1Tm9hYVNoaXBXVEVDbnJ0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFQy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1Tm9hYVNoaXBXVEVDIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdU5vYWFTaGlwV1RFQy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT0FBIFNoaXAgUm9uYWxkIEJyb3duIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJOT0FBIFNoaXAgUm9uYWxkIEJyb3duIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuICBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuICBcblwiPX5cIiBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS4gXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci4gIFxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLiAgXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuYWlyUHJlc3N1cmUgKEF0bW9zcGhlcmljIFByZXNzdXJlLCBtaWxsaWJhcilcbi4uLiAoMTQgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1Tm9hYVNoaXBXVEVDX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VOb2FhU2hpcFdURUNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1Tm9hYVNoaXBXVEVDL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdU5vYWFTaGlwV1RFQy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1Tm9hYVNoaXBXVEVDJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VOb2FhU2hpcFdURUMiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkTnBoLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmROcGgiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkTnBoLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5vcnRoIFBhY2lmaWMgSGlnaCwgMTk2NyAtIHByZXNlbnQiLCAiVmFyaWF0aW9ucyBpbiBsYXJnZS1zY2FsZSBhdG1vc3BoZXJpYyBmb3JjaW5nIGluZmx1ZW5jZSB1cHdlbGxpbmcgZHluYW1pY3MgYW5kIGVjb3N5c3RlbSBwcm9kdWN0aXZpdHkgaW4gdGhlIENhbGlmb3JuaWEgQ3VycmVudCBTeXN0ZW0gKENDUykuIEluIHRoaXMgcGFwZXIsIHdlIGNoYXJhY3Rlcml6ZSBpbnRlcmFubnVhbCB2YXJpYWJpbGl0eSBvZiB0aGUgTm9ydGggUGFjaWZpYyBIaWdoIG92ZXIgNDAgeWVhcnMgYW5kIGludmVzdGlnYXRlIGhvdyB2YXJpYXRpb24gaW4gaXRzIGFtcGxpdHVkZSBhbmQgcG9zaXRpb24gYWZmZWN0IHVwd2VsbGluZyBhbmQgYmlvbG9neS4gV2UgZGV2ZWxvcCBhIHdpbnRlciB1cHdlbGxpbmcgXCJwcmUtY29uZGl0aW9uaW5nXCIgaW5kZXggYW5kIGRlbW9uc3RyYXRlIGl0cyB1dGlsaXR5IHRvIHVuZGVyc3RhbmRpbmcgYmlvbG9naWNhbCBwcm9jZXNzZXMuIFZhcmlhdGlvbiBpbiB0aGUgd2ludGVyIE5QSCBjYW4gYmUgd2VsbCBkZXNjcmliZWQgYnkgaXRzIGFyZWFsIGV4dGVudCBhbmQgbWF4aW11bSBwcmVzc3VyZSwgd2hpY2ggaW4gdHVybiBpcyBwcmVkaWN0aXZlIG9mIHdpbnRlciB1cHdlbGxpbmcuIE91ciB3aW50ZXIgcHJlLWNvbmRpdGlvbmluZyBpbmRleCBleHBsYWluZWQgNjQlIG9mIHRoZSB2YXJpYXRpb24gaW4gYmlvbG9naWNhbCByZXNwb25zZXMgKGZpc2ggYW5kIHNlYWJpcmRzKS4gVW5kZXJzdGFuZGluZyBjaGFyYWN0ZXJpc3RpY3Mgb2YgdGhlIE5QSCBpbiB3aW50ZXIgaXMgdGhlcmVmb3JlIGNyaXRpY2FsIHRvIHByZWRpY3RpbmcgYmlvbG9naWNhbCByZXNwb25zZXMgaW4gdGhlIENDUy5cblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxueWVhclxubW9udGggKE1vbnRoICgxIC0gMTIpKVxubG9uZ2l0dWRlIChMb25naXR1ZGUgb2YgdGhlIENlbnRlciBvZiB0aGUgTlBILCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTGF0aXR1ZGUgb2YgdGhlIENlbnRlciBvZiB0aGUgTlBILCBkZWdyZWVzX25vcnRoKVxuYXJlYSAoQXJlYWwgRXh0ZW50IG9mIHRoZSAxMDIwIGhQYSBDb250b3VyLCBrbTIpXG5tYXhTTFAgKE1heGltdW0gU2VhIExldmVsIFByZXNzdXJlLCBoUGEpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkTnBoX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmROcGhfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkTnBoL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vbmxpbmVsaWJyYXJ5LndpbGV5LmNvbS9kb2kvMTAuMTAwMi9ncmwuNTAxMDAvYWJzdHJhY3QiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkTnBoLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmROcGgmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBFUkQiLCAiZXJkTnBoIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRQY3VpIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFBjdWkuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTm9ydGggUGFjaWZpYyBIaWdoLCBQcmUtY29uZGl0aW9uaW5nIEN1bXVsYXRpdmUgVXB3ZWxsaW5nIEluZGV4LCAxOTY3IC0gcHJlc2VudCIsICJWYXJpYXRpb25zIGluIGxhcmdlLXNjYWxlIGF0bW9zcGhlcmljIGZvcmNpbmcgaW5mbHVlbmNlIHVwd2VsbGluZyBkeW5hbWljcyBhbmQgZWNvc3lzdGVtIHByb2R1Y3Rpdml0eSBpbiB0aGUgQ2FsaWZvcm5pYSBDdXJyZW50IFN5c3RlbSAoQ0NTKS4gSW4gdGhpcyBwYXBlciwgd2UgY2hhcmFjdGVyaXplIGludGVyYW5udWFsIHZhcmlhYmlsaXR5IG9mIHRoZSBOb3J0aCBQYWNpZmljIEhpZ2ggb3ZlciA0MCB5ZWFycyBhbmQgaW52ZXN0aWdhdGUgaG93IHZhcmlhdGlvbiBpbiBpdHMgYW1wbGl0dWRlIGFuZCBwb3NpdGlvbiBhZmZlY3QgdXB3ZWxsaW5nIGFuZCBiaW9sb2d5LiBXZSBkZXZlbG9wIGEgd2ludGVyIHVwd2VsbGluZyBcInByZS1jb25kaXRpb25pbmdcIiBpbmRleCBhbmQgZGVtb25zdHJhdGUgaXRzIHV0aWxpdHkgdG8gdW5kZXJzdGFuZGluZyBiaW9sb2dpY2FsIHByb2Nlc3Nlcy4gVmFyaWF0aW9uIGluIHRoZSB3aW50ZXIgTlBIIGNhbiBiZSB3ZWxsIGRlc2NyaWJlZCBieSBpdHMgYXJlYWwgZXh0ZW50IGFuZCBtYXhpbXVtIHByZXNzdXJlLCB3aGljaCBpbiB0dXJuIGlzIHByZWRpY3RpdmUgb2Ygd2ludGVyIHVwd2VsbGluZy4gT3VyIHdpbnRlciBwcmUtY29uZGl0aW9uaW5nIGluZGV4IGV4cGxhaW5lZCA2NCUgb2YgdGhlIHZhcmlhdGlvbiBpbiBiaW9sb2dpY2FsIHJlc3BvbnNlcyAoZmlzaCBhbmQgc2VhYmlyZHMpLiBVbmRlcnN0YW5kaW5nIGNoYXJhY3RlcmlzdGljcyBvZiB0aGUgTlBIIGluIHdpbnRlciBpcyB0aGVyZWZvcmUgY3JpdGljYWwgdG8gcHJlZGljdGluZyBiaW9sb2dpY2FsIHJlc3BvbnNlcyBpbiB0aGUgQ0NTLlxuXG5jZG1fZGF0YV90eXBlID0gT3RoZXJcblZBUklBQkxFUzpcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5wY3VpMzNOIChQQ1VJIGF0IDMzTiwgbV4zIHNeLTEgMTAwbV4tMSlcbnBjdWkzNk4gKFBDVUkgYXQgMzZOLCBtXjMgc14tMSAxMDBtXi0xKVxucGN1aTM5TiAoUENVSSBhdCAzOU4sIG1eMyBzXi0xIDEwMG1eLTEpXG5wY3VpNDJOIChQQ1VJIGF0IDQyTiwgbV4zIHNeLTEgMTAwbV4tMSlcbnBjdWk0NU4gKFBDVUkgYXQgNDVOLCBtXjMgc14tMSAxMDBtXi0xKVxucGN1aTQ4TiAoUENVSSBhdCA0OE4sIG1eMyBzXi0xIDEwMG1eLTEpXG4iLCAiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZFBjdWkvaW5kZXguanNvbiIsICJodHRwczovL29ubGluZWxpYnJhcnkud2lsZXkuY29tL2RvaS8xMC4xMDAyL2dybC41MDEwMC9hYnN0cmFjdCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRQY3VpLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRQY3VpJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgRVJEIiwgImVyZFBjdWkiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNDQS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNDQSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc0NBLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PUyBDTy1PUFMgQWN0aXZlIEN1cnJlbnRzIERhdGEsIDYtTWludXRlIiwgIlRoaXMgZGF0YXNldCBoYXMgc3VyZmFjZSBBY3RpdmUgQ3VycmVudHMgZGF0YSBmcm9tIE5PQUEgTk9TIENlbnRlciBmb3Jcbk9wZXJhdGlvbmFsIE9jZWFub2dyYXBoaWMgUHJvZHVjdHMgYW5kIFNlcnZpY2VzIChDTy1PUFMpLlxuXG5XQVJOSU5HOiBUaGVzZSByYXcgZGF0YSBoYXZlIG5vdCBiZWVuIHN1YmplY3RlZCB0byB0aGUgTmF0aW9uYWwgT2NlYW4gU2VydmljZXNcbihOT1MpIFF1YWxpdHkgQ29udHJvbCBwcm9jZWR1cmVzLCBhbmQgZG8gbm90IG5lY2Vzc2FyaWx5IG1lZXQgdGhlIGNyaXRlcmlhIGFuZFxuc3RhbmRhcmRzIG9mIG9mZmljaWFsIE5PUyBkYXRhLiBUaGV5IGFyZSByZWxlYXNlZCBmb3IgbGltaXRlZCBwdWJsaWMgdXNlIHdpdGhcbmFwcHJvcHJpYXRlIGNhdXRpb24uXG5cbldBUk5JTkc6XG4qIFF1ZXJpZXMgZm9yIGRhdGEgTVVTVCBpbmNsdWRlIHN0YXRpb25JRD0gYW5kIHRpbWU+PS5cbiogUXVlcmllcyBVU1VBTExZIGluY2x1ZGUgdGltZTw9ICh0aGUgZGVmYXVsdCBlbmQgdGltZSBjb3JyZXNwb25kcyB0byAnbm93JykuXG4qIFF1ZXJpZXMgTVVTVCBiZSBmb3IgbGVzcyB0aGFuIDMwIGRheXMgd29ydGggb2YgZGF0YS5cbiogVGhlIGRhdGEgc291cmNlIGlzbid0IGNvbXBsZXRlbHkgcmVsaWFibGUuIElmIHlvdXIgcmVxdWVzdCByZXR1cm5zIG5vIGRhdGFcbiAgd2hlbiB5b3UgdGhpbmsgaXQgc2hvdWxkOlxuICAqIFRyeSByZXZpc2luZyB0aGUgcmVxdWVzdCAoZS5nLiwgYSBkaWZmZXJlbnQgdGltZSByYW5nZSkuXG4gICogVGhlIGxpc3Qgb2Ygc3RhdGlvbnMgb2ZmZXJpbmcgdGhpcyBkYXRhIG1heSBiZSBpbmNvcnJlY3QuXG4gICogU29tZXRpbWVzIGEgc3RhdGlvbiBvciB0aGUgZW50aXJlIGRhdGEgc2VydmljZSBpcyB1bmF2YWlsYWJsZS5cbiAgICBXYWl0IGEgd2hpbGUgYW5kIHRyeSBhZ2Fpbi5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb25JRCAoU3RhdGlvbiBJRClcbnN0YXRpb25OYW1lIChTdGF0aW9uIE5hbWUpXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbkNTIChDdXJyZW50IFNwZWVkLCBrbm90cylcbkNEIChDdXJyZW50IERpcmVjdGlvbiwgZGVncmVlc190cnVlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL25vc0Nvb3BzQ0FfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc0Nvb3BzQ0FfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm9zQ29vcHNDQS9pbmRleC5qc29uIiwgImh0dHA6Ly90aWRlc2FuZGN1cnJlbnRzLm5vYWEuZ292LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9ub3NDb29wc0NBLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NDb29wc0NBJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk9TIENPLU9QUyIsICJub3NDb29wc0NBIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzTUFULnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01BVCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01BVC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT1MgQ08tT1BTIE1ldGVvcm9sb2dpY2FsIERhdGEsIEFpciBUZW1wZXJhdHVyZSwgNi1NaW51dGUiLCAiVGhpcyBkYXRhc2V0IGhhcyBBaXIgVGVtcGVyYXR1cmUgZGF0YSBmcm9tIE5PQUEgTk9TIENlbnRlciBmb3IgT3BlcmF0aW9uYWxcbk9jZWFub2dyYXBoaWMgUHJvZHVjdHMgYW5kIFNlcnZpY2VzIChDTy1PUFMpLlxuXG5XQVJOSU5HOiBUaGVzZSBwcmVsaW1pbmFyeSBkYXRhIGhhdmUgbm90IGJlZW4gc3ViamVjdGVkIHRvIHRoZSBOYXRpb25hbCBPY2VhblxuU2VydmljZXMgKE5PUykgUXVhbGl0eSBDb250cm9sIHByb2NlZHVyZXMsIGFuZCBkbyBub3QgbmVjZXNzYXJpbHkgbWVldCB0aGVcbmNyaXRlcmlhIGFuZCBzdGFuZGFyZHMgb2Ygb2ZmaWNpYWwgTk9TIGRhdGEuIFRoZXkgYXJlIHJlbGVhc2VkIGZvciBsaW1pdGVkXG5wdWJsaWMgdXNlIHdpdGggYXBwcm9wcmlhdGUgY2F1dGlvbi5cblxuV0FSTklORzpcbiogUXVlcmllcyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgc3RhdGlvbklEPSBhbmQgdGltZT49LlxuKiBRdWVyaWVzIFVTVUFMTFkgaW5jbHVkZSB0aW1lPD0gKHRoZSBkZWZhdWx0IGVuZCB0aW1lIGNvcnJlc3BvbmRzIHRvICdub3cnKS5cbiogUXVlcmllcyBNVVNUIGJlIGZvciBsZXNzIHRoYW4gMzAgZGF5cyB3b3J0aCBvZiBkYXRhLlxuKiBUaGUgZGF0YSBzb3VyY2UgaXNuJ3QgY29tcGxldGVseSByZWxpYWJsZS4gSWYgeW91ciByZXF1ZXN0IHJldHVybnMgbm8gZGF0YVxuICB3aGVuIHlvdSB0aGluayBpdCBzaG91bGQ6XG4gICogVHJ5IHJldmlzaW5nIHRoZSByZXF1ZXN0IChlLmcuLCBhIGRpZmZlcmVudCB0aW1lIHJhbmdlKS5cbiAgKiBUaGUgbGlzdCBvZiBzdGF0aW9ucyBvZmZlcmluZyB0aGlzIGRhdGEgbWF5IGJlIGluY29ycmVjdC5cbiAgKiBTb21ldGltZXMgYSBzdGF0aW9uIG9yIHRoZSBlbnRpcmUgZGF0YSBzZXJ2aWNlIGlzIHVuYXZhaWxhYmxlLlxuICAgIFdhaXQgYSB3aGlsZSBhbmQgdHJ5IGFnYWluLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvbklEIChTdGF0aW9uIElEKVxuc3RhdGlvbk5hbWUgKFN0YXRpb24gTmFtZSlcbnN0YXRlXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaGVmSUQgKFNIRUYgSUQpXG5kZXBsb3ltZW50IChEZXBsb3ltZW50IERlc2lnbmF0aW9uKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kY3AgKERhdGEgQ29sbGVjdGlvbiBQbGF0Zm9ybSlcbi4uLiAoNSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NDb29wc01BVF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zQ29vcHNNQVRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm9zQ29vcHNNQVQvaW5kZXguanNvbiIsICJodHRwOi8vdGlkZXNhbmRjdXJyZW50cy5ub2FhLmdvdi8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm9zQ29vcHNNQVQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPW5vc0Nvb3BzTUFUJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk9TIENPLU9QUyIsICJub3NDb29wc01BVCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01CUC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNNQlAiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNNQlAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9TIENPLU9QUyBNZXRlb3JvbG9naWNhbCBEYXRhLCBCYXJvbWV0cmljIFByZXNzdXJlLCA2LU1pbnV0ZSIsICJUaGlzIGRhdGFzZXQgaGFzIEJhcm9tZXRyaWMgUHJlc3N1cmUgZGF0YSBmcm9tIE5PQUEgTk9TIENlbnRlciBmb3IgT3BlcmF0aW9uYWxcbk9jZWFub2dyYXBoaWMgUHJvZHVjdHMgYW5kIFNlcnZpY2VzIChDTy1PUFMpLlxuXG5XQVJOSU5HOiBUaGVzZSBwcmVsaW1pbmFyeSBkYXRhIGhhdmUgbm90IGJlZW4gc3ViamVjdGVkIHRvIHRoZSBOYXRpb25hbCBPY2VhblxuU2VydmljZXMgKE5PUykgUXVhbGl0eSBDb250cm9sIHByb2NlZHVyZXMsIGFuZCBkbyBub3QgbmVjZXNzYXJpbHkgbWVldCB0aGVcbmNyaXRlcmlhIGFuZCBzdGFuZGFyZHMgb2Ygb2ZmaWNpYWwgTk9TIGRhdGEuIFRoZXkgYXJlIHJlbGVhc2VkIGZvciBsaW1pdGVkXG5wdWJsaWMgdXNlIHdpdGggYXBwcm9wcmlhdGUgY2F1dGlvbi5cblxuV0FSTklORzpcbiogUXVlcmllcyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgc3RhdGlvbklEPSBhbmQgdGltZT49LlxuKiBRdWVyaWVzIFVTVUFMTFkgaW5jbHVkZSB0aW1lPD0gKHRoZSBkZWZhdWx0IGVuZCB0aW1lIGNvcnJlc3BvbmRzIHRvICdub3cnKS5cbiogUXVlcmllcyBNVVNUIGJlIGZvciBsZXNzIHRoYW4gMzAgZGF5cyB3b3J0aCBvZiBkYXRhLlxuKiBUaGUgZGF0YSBzb3VyY2UgaXNuJ3QgY29tcGxldGVseSByZWxpYWJsZS4gSWYgeW91ciByZXF1ZXN0IHJldHVybnMgbm8gZGF0YVxuICB3aGVuIHlvdSB0aGluayBpdCBzaG91bGQ6XG4gICogVHJ5IHJldmlzaW5nIHRoZSByZXF1ZXN0IChlLmcuLCBhIGRpZmZlcmVudCB0aW1lIHJhbmdlKS5cbiAgKiBUaGUgbGlzdCBvZiBzdGF0aW9ucyBvZmZlcmluZyB0aGlzIGRhdGEgbWF5IGJlIGluY29ycmVjdC5cbiAgKiBTb21ldGltZXMgYSBzdGF0aW9uIG9yIHRoZSBlbnRpcmUgZGF0YSBzZXJ2aWNlIGlzIHVuYXZhaWxhYmxlLlxuICAgIFdhaXQgYSB3aGlsZSBhbmQgdHJ5IGFnYWluLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvbklEIChTdGF0aW9uIElEKVxuc3RhdGlvbk5hbWUgKFN0YXRpb24gTmFtZSlcbnN0YXRlXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaGVmSUQgKFNIRUYgSUQpXG5kZXBsb3ltZW50IChEZXBsb3ltZW50IERlc2lnbmF0aW9uKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kY3AgKERhdGEgQ29sbGVjdGlvbiBQbGF0Zm9ybSlcbi4uLiAoNSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NDb29wc01CUF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zQ29vcHNNQlBfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm9zQ29vcHNNQlAvaW5kZXguanNvbiIsICJodHRwOi8vdGlkZXNhbmRjdXJyZW50cy5ub2FhLmdvdi8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm9zQ29vcHNNQlAucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPW5vc0Nvb3BzTUJQJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk9TIENPLU9QUyIsICJub3NDb29wc01CUCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01DLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01DIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzTUMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9TIENPLU9QUyBNZXRlb3JvbG9naWNhbCBEYXRhLCBDb25kdWN0aXZpdHksIDYtTWludXRlIiwgIlRoaXMgZGF0YXNldCBoYXMgQ29uZHVjdGl2aXR5IGRhdGEgZnJvbSBOT0FBIE5PUyBDZW50ZXIgZm9yIE9wZXJhdGlvbmFsXG5PY2Vhbm9ncmFwaGljIFByb2R1Y3RzIGFuZCBTZXJ2aWNlcyAoQ08tT1BTKS5cblxuV0FSTklORzogVGhlc2UgcHJlbGltaW5hcnkgZGF0YSBoYXZlIG5vdCBiZWVuIHN1YmplY3RlZCB0byB0aGUgTmF0aW9uYWwgT2NlYW5cblNlcnZpY2VzIChOT1MpIFF1YWxpdHkgQ29udHJvbCBwcm9jZWR1cmVzLCBhbmQgZG8gbm90IG5lY2Vzc2FyaWx5IG1lZXQgdGhlXG5jcml0ZXJpYSBhbmQgc3RhbmRhcmRzIG9mIG9mZmljaWFsIE5PUyBkYXRhLiBUaGV5IGFyZSByZWxlYXNlZCBmb3IgbGltaXRlZFxucHVibGljIHVzZSB3aXRoIGFwcHJvcHJpYXRlIGNhdXRpb24uXG5cbldBUk5JTkc6XG4qIFF1ZXJpZXMgZm9yIGRhdGEgTVVTVCBpbmNsdWRlIHN0YXRpb25JRD0gYW5kIHRpbWU+PS5cbiogUXVlcmllcyBVU1VBTExZIGluY2x1ZGUgdGltZTw9ICh0aGUgZGVmYXVsdCBlbmQgdGltZSBjb3JyZXNwb25kcyB0byAnbm93JykuXG4qIFF1ZXJpZXMgTVVTVCBiZSBmb3IgbGVzcyB0aGFuIDMwIGRheXMgd29ydGggb2YgZGF0YS5cbiogVGhlIGRhdGEgc291cmNlIGlzbid0IGNvbXBsZXRlbHkgcmVsaWFibGUuIElmIHlvdXIgcmVxdWVzdCByZXR1cm5zIG5vIGRhdGFcbiAgd2hlbiB5b3UgdGhpbmsgaXQgc2hvdWxkOlxuICAqIFRyeSByZXZpc2luZyB0aGUgcmVxdWVzdCAoZS5nLiwgYSBkaWZmZXJlbnQgdGltZSByYW5nZSkuXG4gICogVGhlIGxpc3Qgb2Ygc3RhdGlvbnMgb2ZmZXJpbmcgdGhpcyBkYXRhIG1heSBiZSBpbmNvcnJlY3QuXG4gICogU29tZXRpbWVzIGEgc3RhdGlvbiBvciB0aGUgZW50aXJlIGRhdGEgc2VydmljZSBpcyB1bmF2YWlsYWJsZS5cbiAgICBXYWl0IGEgd2hpbGUgYW5kIHRyeSBhZ2Fpbi5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb25JRCAoU3RhdGlvbiBJRClcbnN0YXRpb25OYW1lIChTdGF0aW9uIE5hbWUpXG5zdGF0ZVxuZGF0ZUVzdGFibGlzaGVkIChEYXRlIEVzdGFibGlzaGVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2hlZklEIChTSEVGIElEKVxuZGVwbG95bWVudCAoRGVwbG95bWVudCBEZXNpZ25hdGlvbilcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGNwIChEYXRhIENvbGxlY3Rpb24gUGxhdGZvcm0pXG4uLi4gKDUgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm9zQ29vcHNNQ19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zQ29vcHNNQ19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub3NDb29wc01DL2luZGV4Lmpzb24iLCAiaHR0cDovL3RpZGVzYW5kY3VycmVudHMubm9hYS5nb3YvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc0Nvb3BzTUMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPW5vc0Nvb3BzTUMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOT1MgQ08tT1BTIiwgIm5vc0Nvb3BzTUMiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNNUkYuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzTVJGIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzTVJGLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PUyBDTy1PUFMgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUmFpbiBGYWxsLCA2LU1pbnV0ZSIsICJUaGlzIGRhdGFzZXQgaGFzIFJhaW4gRmFsbCBkYXRhIGZyb20gTk9BQSBOT1MgQ2VudGVyIGZvciBPcGVyYXRpb25hbFxuT2NlYW5vZ3JhcGhpYyBQcm9kdWN0cyBhbmQgU2VydmljZXMgKENPLU9QUykuXG5cbldBUk5JTkc6IFRoZXNlIHByZWxpbWluYXJ5IGRhdGEgaGF2ZSBub3QgYmVlbiBzdWJqZWN0ZWQgdG8gdGhlIE5hdGlvbmFsIE9jZWFuXG5TZXJ2aWNlcyAoTk9TKSBRdWFsaXR5IENvbnRyb2wgcHJvY2VkdXJlcywgYW5kIGRvIG5vdCBuZWNlc3NhcmlseSBtZWV0IHRoZVxuY3JpdGVyaWEgYW5kIHN0YW5kYXJkcyBvZiBvZmZpY2lhbCBOT1MgZGF0YS4gVGhleSBhcmUgcmVsZWFzZWQgZm9yIGxpbWl0ZWRcbnB1YmxpYyB1c2Ugd2l0aCBhcHByb3ByaWF0ZSBjYXV0aW9uLlxuXG5XQVJOSU5HOlxuKiBRdWVyaWVzIGZvciBkYXRhIE1VU1QgaW5jbHVkZSBzdGF0aW9uSUQ9IGFuZCB0aW1lPj0uXG4qIFF1ZXJpZXMgVVNVQUxMWSBpbmNsdWRlIHRpbWU8PSAodGhlIGRlZmF1bHQgZW5kIHRpbWUgY29ycmVzcG9uZHMgdG8gJ25vdycpLlxuKiBRdWVyaWVzIE1VU1QgYmUgZm9yIGxlc3MgdGhhbiAzMCBkYXlzIHdvcnRoIG9mIGRhdGEuXG4qIFRoZSBkYXRhIHNvdXJjZSBpc24ndCBjb21wbGV0ZWx5IHJlbGlhYmxlLiBJZiB5b3VyIHJlcXVlc3QgcmV0dXJucyBubyBkYXRhXG4gIHdoZW4geW91IHRoaW5rIGl0IHNob3VsZDpcbiAgKiBUcnkgcmV2aXNpbmcgdGhlIHJlcXVlc3QgKGUuZy4sIGEgZGlmZmVyZW50IHRpbWUgcmFuZ2UpLlxuICAqIFRoZSBsaXN0IG9mIHN0YXRpb25zIG9mZmVyaW5nIHRoaXMgZGF0YSBtYXkgYmUgaW5jb3JyZWN0LlxuICAqIFNvbWV0aW1lcyBhIHN0YXRpb24gb3IgdGhlIGVudGlyZSBkYXRhIHNlcnZpY2UgaXMgdW5hdmFpbGFibGUuXG4gICAgV2FpdCBhIHdoaWxlIGFuZCB0cnkgYWdhaW4uXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5zdGF0aW9uSUQgKFN0YXRpb24gSUQpXG5zdGF0aW9uTmFtZSAoU3RhdGlvbiBOYW1lKVxuc3RhdGVcbmRhdGVFc3RhYmxpc2hlZCAoRGF0ZSBFc3RhYmxpc2hlZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNoZWZJRCAoU0hFRiBJRClcbmRlcGxveW1lbnQgKERlcGxveW1lbnQgRGVzaWduYXRpb24pXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRjcCAoRGF0YSBDb2xsZWN0aW9uIFBsYXRmb3JtKVxuLi4uICg0IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL25vc0Nvb3BzTVJGX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9ub3NDb29wc01SRl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub3NDb29wc01SRi9pbmRleC5qc29uIiwgImh0dHA6Ly90aWRlc2FuZGN1cnJlbnRzLm5vYWEuZ292LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9ub3NDb29wc01SRi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bm9zQ29vcHNNUkYmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOT1MgQ08tT1BTIiwgIm5vc0Nvb3BzTVJGIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzTVJILnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01SSCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01SSC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT1MgQ08tT1BTIE1ldGVvcm9sb2dpY2FsIERhdGEsIFJlbGF0aXZlIEh1bWlkaXR5LCA2LU1pbnV0ZSIsICJUaGlzIGRhdGFzZXQgaGFzIFJlbGF0aXZlIEh1bWlkaXR5IGRhdGEgZnJvbSBOT0FBIE5PUyBDZW50ZXIgZm9yIE9wZXJhdGlvbmFsXG5PY2Vhbm9ncmFwaGljIFByb2R1Y3RzIGFuZCBTZXJ2aWNlcyAoQ08tT1BTKS5cblxuV0FSTklORzogVGhlc2UgcHJlbGltaW5hcnkgZGF0YSBoYXZlIG5vdCBiZWVuIHN1YmplY3RlZCB0byB0aGUgTmF0aW9uYWwgT2NlYW5cblNlcnZpY2VzIChOT1MpIFF1YWxpdHkgQ29udHJvbCBwcm9jZWR1cmVzLCBhbmQgZG8gbm90IG5lY2Vzc2FyaWx5IG1lZXQgdGhlXG5jcml0ZXJpYSBhbmQgc3RhbmRhcmRzIG9mIG9mZmljaWFsIE5PUyBkYXRhLiBUaGV5IGFyZSByZWxlYXNlZCBmb3IgbGltaXRlZFxucHVibGljIHVzZSB3aXRoIGFwcHJvcHJpYXRlIGNhdXRpb24uXG5cbldBUk5JTkc6XG4qIFF1ZXJpZXMgZm9yIGRhdGEgTVVTVCBpbmNsdWRlIHN0YXRpb25JRD0gYW5kIHRpbWU+PS5cbiogUXVlcmllcyBVU1VBTExZIGluY2x1ZGUgdGltZTw9ICh0aGUgZGVmYXVsdCBlbmQgdGltZSBjb3JyZXNwb25kcyB0byAnbm93JykuXG4qIFF1ZXJpZXMgTVVTVCBiZSBmb3IgbGVzcyB0aGFuIDMwIGRheXMgd29ydGggb2YgZGF0YS5cbiogVGhlIGRhdGEgc291cmNlIGlzbid0IGNvbXBsZXRlbHkgcmVsaWFibGUuIElmIHlvdXIgcmVxdWVzdCByZXR1cm5zIG5vIGRhdGFcbiAgd2hlbiB5b3UgdGhpbmsgaXQgc2hvdWxkOlxuICAqIFRyeSByZXZpc2luZyB0aGUgcmVxdWVzdCAoZS5nLiwgYSBkaWZmZXJlbnQgdGltZSByYW5nZSkuXG4gICogVGhlIGxpc3Qgb2Ygc3RhdGlvbnMgb2ZmZXJpbmcgdGhpcyBkYXRhIG1heSBiZSBpbmNvcnJlY3QuXG4gICogU29tZXRpbWVzIGEgc3RhdGlvbiBvciB0aGUgZW50aXJlIGRhdGEgc2VydmljZSBpcyB1bmF2YWlsYWJsZS5cbiAgICBXYWl0IGEgd2hpbGUgYW5kIHRyeSBhZ2Fpbi5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb25JRCAoU3RhdGlvbiBJRClcbnN0YXRpb25OYW1lIChTdGF0aW9uIE5hbWUpXG5zdGF0ZVxuZGF0ZUVzdGFibGlzaGVkIChEYXRlIEVzdGFibGlzaGVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2hlZklEIChTSEVGIElEKVxuZGVwbG95bWVudCAoRGVwbG95bWVudCBEZXNpZ25hdGlvbilcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGNwIChEYXRhIENvbGxlY3Rpb24gUGxhdGZvcm0pXG4uLi4gKDUgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm9zQ29vcHNNUkhfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc0Nvb3BzTVJIX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL25vc0Nvb3BzTVJIL2luZGV4Lmpzb24iLCAiaHR0cDovL3RpZGVzYW5kY3VycmVudHMubm9hYS5nb3YvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc0Nvb3BzTVJILnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NDb29wc01SSCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyBDTy1PUFMiLCAibm9zQ29vcHNNUkgiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNNVi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNNViIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01WLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PUyBDTy1PUFMgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgVmlzaWJpbGl0eSwgNi1NaW51dGUiLCAiVGhpcyBkYXRhc2V0IGhhcyBWaXNpYmlsaXR5IGRhdGEgZnJvbSBOT0FBIE5PUyBDZW50ZXIgZm9yIE9wZXJhdGlvbmFsXG5PY2Vhbm9ncmFwaGljIFByb2R1Y3RzIGFuZCBTZXJ2aWNlcyAoQ08tT1BTKS5cblxuV0FSTklORzogVGhlc2UgcHJlbGltaW5hcnkgZGF0YSBoYXZlIG5vdCBiZWVuIHN1YmplY3RlZCB0byB0aGUgTmF0aW9uYWwgT2NlYW5cblNlcnZpY2VzIChOT1MpIFF1YWxpdHkgQ29udHJvbCBwcm9jZWR1cmVzLCBhbmQgZG8gbm90IG5lY2Vzc2FyaWx5IG1lZXQgdGhlXG5jcml0ZXJpYSBhbmQgc3RhbmRhcmRzIG9mIG9mZmljaWFsIE5PUyBkYXRhLiBUaGV5IGFyZSByZWxlYXNlZCBmb3IgbGltaXRlZFxucHVibGljIHVzZSB3aXRoIGFwcHJvcHJpYXRlIGNhdXRpb24uXG5cbldBUk5JTkc6XG4qIFF1ZXJpZXMgZm9yIGRhdGEgTVVTVCBpbmNsdWRlIHN0YXRpb25JRD0gYW5kIHRpbWU+PS5cbiogUXVlcmllcyBVU1VBTExZIGluY2x1ZGUgdGltZTw9ICh0aGUgZGVmYXVsdCBlbmQgdGltZSBjb3JyZXNwb25kcyB0byAnbm93JykuXG4qIFF1ZXJpZXMgTVVTVCBiZSBmb3IgbGVzcyB0aGFuIDMwIGRheXMgd29ydGggb2YgZGF0YS5cbiogVGhlIGRhdGEgc291cmNlIGlzbid0IGNvbXBsZXRlbHkgcmVsaWFibGUuIElmIHlvdXIgcmVxdWVzdCByZXR1cm5zIG5vIGRhdGFcbiAgd2hlbiB5b3UgdGhpbmsgaXQgc2hvdWxkOlxuICAqIFRyeSByZXZpc2luZyB0aGUgcmVxdWVzdCAoZS5nLiwgYSBkaWZmZXJlbnQgdGltZSByYW5nZSkuXG4gICogVGhlIGxpc3Qgb2Ygc3RhdGlvbnMgb2ZmZXJpbmcgdGhpcyBkYXRhIG1heSBiZSBpbmNvcnJlY3QuXG4gICogU29tZXRpbWVzIGEgc3RhdGlvbiBvciB0aGUgZW50aXJlIGRhdGEgc2VydmljZSBpcyB1bmF2YWlsYWJsZS5cbiAgICBXYWl0IGEgd2hpbGUgYW5kIHRyeSBhZ2Fpbi5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb25JRCAoU3RhdGlvbiBJRClcbnN0YXRpb25OYW1lIChTdGF0aW9uIE5hbWUpXG5zdGF0ZVxuZGF0ZUVzdGFibGlzaGVkIChEYXRlIEVzdGFibGlzaGVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2hlZklEIChTSEVGIElEKVxuZGVwbG95bWVudCAoRGVwbG95bWVudCBEZXNpZ25hdGlvbilcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuVmlzIChWaXNpYmlsaXR5IGluIEFpciwgbmF1dGljYWxfbWlsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm9zQ29vcHNNVl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zQ29vcHNNVl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub3NDb29wc01WL2luZGV4Lmpzb24iLCAiaHR0cDovL3RpZGVzYW5kY3VycmVudHMubm9hYS5nb3YvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc0Nvb3BzTVYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPW5vc0Nvb3BzTVYmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOT1MgQ08tT1BTIiwgIm5vc0Nvb3BzTVYiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNNV1Quc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzTVdUIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzTVdULmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PUyBDTy1PUFMgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgV2F0ZXIgVGVtcGVyYXR1cmUsIDYtTWludXRlIiwgIlRoaXMgZGF0YXNldCBoYXMgV2F0ZXIgVGVtcGVyYXR1cmUgZGF0YSBmcm9tIE5PQUEgTk9TIENlbnRlciBmb3IgT3BlcmF0aW9uYWxcbk9jZWFub2dyYXBoaWMgUHJvZHVjdHMgYW5kIFNlcnZpY2VzIChDTy1PUFMpLlxuXG5XQVJOSU5HOiBUaGVzZSBwcmVsaW1pbmFyeSBkYXRhIGhhdmUgbm90IGJlZW4gc3ViamVjdGVkIHRvIHRoZSBOYXRpb25hbCBPY2VhblxuU2VydmljZXMgKE5PUykgUXVhbGl0eSBDb250cm9sIHByb2NlZHVyZXMsIGFuZCBkbyBub3QgbmVjZXNzYXJpbHkgbWVldCB0aGVcbmNyaXRlcmlhIGFuZCBzdGFuZGFyZHMgb2Ygb2ZmaWNpYWwgTk9TIGRhdGEuIFRoZXkgYXJlIHJlbGVhc2VkIGZvciBsaW1pdGVkXG5wdWJsaWMgdXNlIHdpdGggYXBwcm9wcmlhdGUgY2F1dGlvbi5cblxuV0FSTklORzpcbiogUXVlcmllcyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgc3RhdGlvbklEPSBhbmQgdGltZT49LlxuKiBRdWVyaWVzIFVTVUFMTFkgaW5jbHVkZSB0aW1lPD0gKHRoZSBkZWZhdWx0IGVuZCB0aW1lIGNvcnJlc3BvbmRzIHRvICdub3cnKS5cbiogUXVlcmllcyBNVVNUIGJlIGZvciBsZXNzIHRoYW4gMzAgZGF5cyB3b3J0aCBvZiBkYXRhLlxuKiBUaGUgZGF0YSBzb3VyY2UgaXNuJ3QgY29tcGxldGVseSByZWxpYWJsZS4gSWYgeW91ciByZXF1ZXN0IHJldHVybnMgbm8gZGF0YVxuICB3aGVuIHlvdSB0aGluayBpdCBzaG91bGQ6XG4gICogVHJ5IHJldmlzaW5nIHRoZSByZXF1ZXN0IChlLmcuLCBhIGRpZmZlcmVudCB0aW1lIHJhbmdlKS5cbiAgKiBUaGUgbGlzdCBvZiBzdGF0aW9ucyBvZmZlcmluZyB0aGlzIGRhdGEgbWF5IGJlIGluY29ycmVjdC5cbiAgKiBTb21ldGltZXMgYSBzdGF0aW9uIG9yIHRoZSBlbnRpcmUgZGF0YSBzZXJ2aWNlIGlzIHVuYXZhaWxhYmxlLlxuICAgIFdhaXQgYSB3aGlsZSBhbmQgdHJ5IGFnYWluLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvbklEIChTdGF0aW9uIElEKVxuc3RhdGlvbk5hbWUgKFN0YXRpb24gTmFtZSlcbnN0YXRlXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaGVmSUQgKFNIRUYgSUQpXG5kZXBsb3ltZW50IChEZXBsb3ltZW50IERlc2lnbmF0aW9uKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kY3AgKERhdGEgQ29sbGVjdGlvbiBQbGF0Zm9ybSlcbi4uLiAoNSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NDb29wc01XVF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zQ29vcHNNV1RfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm9zQ29vcHNNV1QvaW5kZXguanNvbiIsICJodHRwOi8vdGlkZXNhbmRjdXJyZW50cy5ub2FhLmdvdi8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm9zQ29vcHNNV1QucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPW5vc0Nvb3BzTVdUJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk9TIENPLU9QUyIsICJub3NDb29wc01XVCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01XLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc01XIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzTVcuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9TIENPLU9QUyBNZXRlb3JvbG9naWNhbCBEYXRhLCBXaW5kLCA2LU1pbnV0ZSIsICJUaGlzIGRhdGFzZXQgaGFzIFdpbmQgZGF0YSBmcm9tIE5PQUEgTk9TIENlbnRlciBmb3IgT3BlcmF0aW9uYWwgT2NlYW5vZ3JhcGhpY1xuUHJvZHVjdHMgYW5kIFNlcnZpY2VzIChDTy1PUFMpLlxuXG5XQVJOSU5HOiBUaGVzZSBwcmVsaW1pbmFyeSBkYXRhIGhhdmUgbm90IGJlZW4gc3ViamVjdGVkIHRvIHRoZSBOYXRpb25hbCBPY2VhblxuU2VydmljZXMgKE5PUykgUXVhbGl0eSBDb250cm9sIHByb2NlZHVyZXMsIGFuZCBkbyBub3QgbmVjZXNzYXJpbHkgbWVldCB0aGVcbmNyaXRlcmlhIGFuZCBzdGFuZGFyZHMgb2Ygb2ZmaWNpYWwgTk9TIGRhdGEuIFRoZXkgYXJlIHJlbGVhc2VkIGZvciBsaW1pdGVkXG5wdWJsaWMgdXNlIHdpdGggYXBwcm9wcmlhdGUgY2F1dGlvbi5cblxuV0FSTklORzpcbiogUXVlcmllcyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgc3RhdGlvbklEPSBhbmQgdGltZT49LlxuKiBRdWVyaWVzIFVTVUFMTFkgaW5jbHVkZSB0aW1lPD0gKHRoZSBkZWZhdWx0IGVuZCB0aW1lIGNvcnJlc3BvbmRzIHRvICdub3cnKS5cbiogUXVlcmllcyBNVVNUIGJlIGZvciBsZXNzIHRoYW4gMzAgZGF5cyB3b3J0aCBvZiBkYXRhLlxuKiBUaGUgZGF0YSBzb3VyY2UgaXNuJ3QgY29tcGxldGVseSByZWxpYWJsZS4gSWYgeW91ciByZXF1ZXN0IHJldHVybnMgbm8gZGF0YVxuICB3aGVuIHlvdSB0aGluayBpdCBzaG91bGQ6XG4gICogVHJ5IHJldmlzaW5nIHRoZSByZXF1ZXN0IChlLmcuLCBhIGRpZmZlcmVudCB0aW1lIHJhbmdlKS5cbiAgKiBUaGUgbGlzdCBvZiBzdGF0aW9ucyBvZmZlcmluZyB0aGlzIGRhdGEgbWF5IGJlIGluY29ycmVjdC5cbiAgKiBTb21ldGltZXMgYSBzdGF0aW9uIG9yIHRoZSBlbnRpcmUgZGF0YSBzZXJ2aWNlIGlzIHVuYXZhaWxhYmxlLlxuICAgIFdhaXQgYSB3aGlsZSBhbmQgdHJ5IGFnYWluLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvbklEIChTdGF0aW9uIElEKVxuc3RhdGlvbk5hbWUgKFN0YXRpb24gTmFtZSlcbnN0YXRlXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaGVmSUQgKFNIRUYgSUQpXG5kZXBsb3ltZW50IChEZXBsb3ltZW50IERlc2lnbmF0aW9uKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kY3AgKERhdGEgQ29sbGVjdGlvbiBQbGF0Zm9ybSlcbi4uLiAoNiBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NDb29wc01XX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9ub3NDb29wc01XX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL25vc0Nvb3BzTVcvaW5kZXguanNvbiIsICJodHRwOi8vdGlkZXNhbmRjdXJyZW50cy5ub2FhLmdvdi8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm9zQ29vcHNNVy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bm9zQ29vcHNNVyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyBDTy1PUFMiLCAibm9zQ29vcHNNVyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc1dMVFBITC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFRQSEwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFRQSEwuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9TIENPLU9QUyBXYXRlciBMZXZlbCBEYXRhLCBIaWdoIExvdyBUaWRlIFByZWRpY3Rpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBIaWdoIExvdyBUaWRlIFByZWRpY3Rpb25zIGZyb20gTk9BQSBOT1MgQ2VudGVyIGZvciBPcGVyYXRpb25hbFxuT2NlYW5vZ3JhcGhpYyBQcm9kdWN0cyBhbmQgU2VydmljZXMgKENPLU9QUykuXG5cblRoZSBvZmZpY2lhbCBUaWRlIGFuZCBUaWRhbCBDdXJyZW50IHByZWRpY3Rpb24gdGFibGVzIGFyZSBwdWJsaXNoZWQgYW5udWFsbHkgb25cbk9jdG9iZXIgMSwgZm9yIHRoZSBmb2xsb3dpbmcgY2FsZW5kYXIgeWVhci4gVGlkZSBhbmQgVGlkYWwgQ3VycmVudCBwcmVkaWN0aW9uc1xuZ2VuZXJhdGVkIHByaW9yIHRvIHRoZSBwdWJsaXNoaW5nIGRhdGUgb2YgdGhlIG9mZmljaWFsIHRhYmxlcyBhcmUgc3ViamVjdCB0b1xuY2hhbmdlLiBUaGUgZW5jbG9zZWQgZGF0YSBhcmUgYmFzZWQgdXBvbiB0aGUgbGF0ZXN0IGluZm9ybWF0aW9uIGF2YWlsYWJsZSBhcyBvZlxudGhlIGRhdGUgb2YgeW91ciByZXF1ZXN0LiBUaWRlIGFuZCBUaWRhbCBDdXJyZW50IHByZWRpY3Rpb25zIGdlbmVyYXRlZCBtYXlcbmRpZmZlciBmcm9tIHRoZSBvZmZpY2lhbCBwcmVkaWN0aW9ucyBpZiBpbmZvcm1hdGlvbiBmb3IgdGhlIHN0YXRpb24gcmVxdWVzdGVkXG5oYXMgYmVlbiB1cGRhdGVkIHNpbmNlIHRoZSBwdWJsaXNoaW5nIGRhdGUgb2YgdGhlIG9mZmljaWFsIHRhYmxlcy5cblxuV0FSTklORzpcbiogUXVlcmllcyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgc3RhdGlvbklEPSwgdGltZT49IGFuZCB0aW1lPD0uXG4gIFF1ZXJpZXMgTVVTVCBiZSBmb3IgbGVzcyB0aGFuIDMwIGRheXMgd29ydGggb2YgZGF0YS5cbiogVGhpcyBkYXRhc2V0IG9ubHkgcmV0dXJucyBkYXRhIGZvciB0aGUgTUxMVyAoTWVhbiBMb3dlci1Mb3cgV2F0ZXIpIGRhdHVtLlxuKiBUaGUgZGF0YSBzb3VyY2UgaXNuJ3QgY29tcGxldGVseSByZWxpYWJsZS4gSWYgeW91ciByZXF1ZXN0IHJldHVybnMgbm8gZGF0YVxuICB3aGVuIHlvdSB0aGluayBpdCBzaG91bGQ6XG4gICogVHJ5IHJldmlzaW5nIHRoZSByZXF1ZXN0IChlLmcuLCBhIGRpZmZlcmVudCB0aW1lIHJhbmdlKS5cbiAgKiBUaGUgbGlzdCBvZiBzdGF0aW9ucyBvZmZlcmluZyB0aGlzIGRhdGEgbWF5IGJlIGluY29ycmVjdC5cbiAgKiBTb21ldGltZXMgYSBzdGF0aW9uIG9yIHRoZSBlbnRpcmUgZGF0YSBzZXJ2aWNlIGlzIHVuYXZhaWxhYmxlLlxuICAgIFdhaXQgYSB3aGlsZSBhbmQgdHJ5IGFnYWluLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvbklEIChTdGF0aW9uIElEKVxuc3RhdGlvbk5hbWUgKFN0YXRpb24gTmFtZSlcbnN0YXRlXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaGVmSUQgKFNIRUYgSUQpXG5kZXBsb3ltZW50IChEZXBsb3ltZW50IERlc2lnbmF0aW9uKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDUgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm9zQ29vcHNXTFRQSExfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc0Nvb3BzV0xUUEhMX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL25vc0Nvb3BzV0xUUEhML2luZGV4Lmpzb24iLCAiaHR0cDovL3RpZGVzYW5kY3VycmVudHMubm9hYS5nb3YvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc0Nvb3BzV0xUUEhMLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NDb29wc1dMVFBITCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyBDTy1PUFMiLCAibm9zQ29vcHNXTFRQSEwiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFIxLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc1dMUjEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFIxLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PUyBDTy1PUFMgV2F0ZXIgTGV2ZWwgRGF0YSwgUHJlbGltaW5hcnksIDEtTWludXRlIiwgIlRoaXMgZGF0YXNldCBoYXMgcmVjZW50LCBwcmVsaW1pbmFyeSAobm90IHF1YWxpdHktY29udHJvbGxlZCksIDEtbWludXRlLCB3YXRlciBsZXZlbFxuKHRpZGUpIGRhdGEgZnJvbSBOT0FBIE5PUyBDZW50ZXIgZm9yIE9wZXJhdGlvbmFsIE9jZWFub2dyYXBoaWMgUHJvZHVjdHMgYW5kIFNlcnZpY2VzXG4oQ08tT1BTKS5cblxuV0FSTklORzogVGhlc2UgcmF3IGRhdGEgaGF2ZSBub3QgYmVlbiBzdWJqZWN0ZWQgdG8gdGhlIE5hdGlvbmFsIE9jZWFuIFNlcnZpY2Unc1xucXVhbGl0eSBjb250cm9sIG9yIHF1YWxpdHkgYXNzdXJhbmNlIHByb2NlZHVyZXMgYW5kIGRvIG5vdCBtZWV0IHRoZSBjcml0ZXJpYSBhbmRcbnN0YW5kYXJkcyBvZiBvZmZpY2lhbCBOYXRpb25hbCBPY2VhbiBTZXJ2aWNlIGRhdGEuIFRoZXkgYXJlIHJlbGVhc2VkIGZvciBsaW1pdGVkXG5wdWJsaWMgdXNlIGFzIHByZWxpbWluYXJ5IGRhdGEgdG8gYmUgdXNlZCBvbmx5IHdpdGggYXBwcm9wcmlhdGUgY2F1dGlvbi5cblxuV0FSTklORzpcbiogUXVlcmllcyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgc3RhdGlvbklEPSwgZGF0dW09LCBhbmQgdGltZT49LlxuKiBRdWVyaWVzIGZvciBkYXRhIFVTVUFMTFkgaW5jbHVkZSB0aW1lPD0uXG4qIFF1ZXJpZXMgTVVTVCBiZSBmb3IgbGVzcyB0aGFuIDMwIGRheXMgd29ydGggb2YgZGF0YS5cbiAgVGhlIGRlZmF1bHQgdGltZTw9IHZhbHVlIGNvcnJlc3BvbmRzIHRvICdub3cnLlxuKiBEaWZmZXJlbnQgc3RhdGlvbnMgc3VwcG9ydCBkaWZmZXJlbnQgZGF0dW1zLlxuICBVc2UgRVJEREFQJ3MgU3Vic2V0IHdlYiBwYWdlIHRvIGZpbmQgb3V0IHdoaWNoIGRhdHVtcyBhIGdpdmVuIHN0YXRpb24gc3VwcG9ydHMuXG4qIFRoZSBkYXRhIHNvdXJjZSBpc24ndCBjb21wbGV0ZWx5IHJlbGlhYmxlLiBJZiB5b3VyIHJlcXVlc3QgcmV0dXJucyBubyBkYXRhXG4gIHdoZW4geW91IHRoaW5rIGl0IHNob3VsZDpcbiAgKiBNYWtlIHN1cmUgdGhlIHN0YXRpb24geW91IHNwZWNpZmllZCBzdXBwb3J0cyB0aGUgZGF0dW0geW91IHNwZWNpZmllZC5cbiAgKiBUcnkgcmV2aXNpbmcgdGhlIHJlcXVlc3QgKGUuZy4sIGEgZGlmZmVyZW50IGRhdHVtIG9yIGEgZGlmZmVyZW50IHRpbWUgcmFuZ2UpLlxuICAqIFRoZSBsaXN0IG9mIHN0YXRpb25zIG9mZmVyaW5nIHRoaXMgZGF0YSAob3IgdGhlIGxpc3Qgb2YgZGF0dW1zKSBtYXkgYmUgaW5jb3JyZWN0LlxuICAqIFNvbWV0aW1lcyBhIHN0YXRpb24gb3IgdGhlIGVudGlyZSBkYXRhIHNlcnZpY2UgaXMgdW5hdmFpbGFibGUuXG4gICAgV2FpdCBhIHdoaWxlIGFuZCB0cnkgYWdhaW4uXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5zdGF0aW9uSUQgKFN0YXRpb24gSUQpXG5zdGF0aW9uTmFtZSAoU3RhdGlvbiBOYW1lKVxuc3RhdGVcbmRhdGVFc3RhYmxpc2hlZCAoRGF0ZSBFc3RhYmxpc2hlZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNoZWZJRCAoU0hFRiBJRClcbi4uLiAoOCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NDb29wc1dMUjFfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc0Nvb3BzV0xSMV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub3NDb29wc1dMUjEvaW5kZXguanNvbiIsICJodHRwOi8vdGlkZXNhbmRjdXJyZW50cy5ub2FhLmdvdi8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm9zQ29vcHNXTFIxLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NDb29wc1dMUjEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOT1MgQ08tT1BTIiwgIm5vc0Nvb3BzV0xSMSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc1dMUjYuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzV0xSNiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc1dMUjYuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9TIENPLU9QUyBXYXRlciBMZXZlbCBEYXRhLCBQcmVsaW1pbmFyeSwgNi1NaW51dGUiLCAiVGhpcyBkYXRhc2V0IGhhcyByZWNlbnQsIHByZWxpbWluYXJ5IChub3QgcXVhbGl0eS1jb250cm9sbGVkKSwgNi1taW51dGUsIHdhdGVyIGxldmVsXG4odGlkZSkgZGF0YSBmcm9tIE5PQUEgTk9TIENlbnRlciBmb3IgT3BlcmF0aW9uYWwgT2NlYW5vZ3JhcGhpYyBQcm9kdWN0cyBhbmQgU2VydmljZXNcbihDTy1PUFMpLlxuXG5XQVJOSU5HOiBUaGVzZSByYXcgZGF0YSBoYXZlIG5vdCBiZWVuIHN1YmplY3RlZCB0byB0aGUgTmF0aW9uYWwgT2NlYW4gU2VydmljZSdzXG5xdWFsaXR5IGNvbnRyb2wgb3IgcXVhbGl0eSBhc3N1cmFuY2UgcHJvY2VkdXJlcyBhbmQgZG8gbm90IG1lZXQgdGhlIGNyaXRlcmlhIGFuZFxuc3RhbmRhcmRzIG9mIG9mZmljaWFsIE5hdGlvbmFsIE9jZWFuIFNlcnZpY2UgZGF0YS4gVGhleSBhcmUgcmVsZWFzZWQgZm9yIGxpbWl0ZWRcbnB1YmxpYyB1c2UgYXMgcHJlbGltaW5hcnkgZGF0YSB0byBiZSB1c2VkIG9ubHkgd2l0aCBhcHByb3ByaWF0ZSBjYXV0aW9uLlxuXG5XQVJOSU5HOlxuKiBRdWVyaWVzIGZvciBkYXRhIE1VU1QgaW5jbHVkZSBzdGF0aW9uSUQ9LCBkYXR1bT0sIHRpbWU+PS5cbiogUXVlcmllcyBmb3IgZGF0YSBVU1VBTExZIGluY2x1ZGUgdGltZTw9LlxuKiBRdWVyaWVzIE1VU1QgYmUgZm9yIGxlc3MgdGhhbiAzMCBkYXlzIHdvcnRoIG9mIGRhdGEuXG4gIFRoZSBkZWZhdWx0IHRpbWU8PSB2YWx1ZSBjb3JyZXNwb25kcyB0byAnbm93Jy5cbiogRGlmZmVyZW50IHN0YXRpb25zIHN1cHBvcnQgZGlmZmVyZW50IGRhdHVtcy5cbiAgVXNlIEVSRERBUCdzIFN1YnNldCB3ZWIgcGFnZSB0byBmaW5kIG91dCB3aGljaCBkYXR1bXMgYSBnaXZlbiBzdGF0aW9uIHN1cHBvcnRzLlxuKiBUaGUgZGF0YSBzb3VyY2UgaXNuJ3QgY29tcGxldGVseSByZWxpYWJsZS4gSWYgeW91ciByZXF1ZXN0IHJldHVybnMgbm8gZGF0YVxuICB3aGVuIHlvdSB0aGluayBpdCBzaG91bGQ6XG4gICogTWFrZSBzdXJlIHRoZSBzdGF0aW9uIHlvdSBzcGVjaWZpZWQgc3VwcG9ydHMgdGhlIGRhdHVtIHlvdSBzcGVjaWZpZWQuXG4gICogVHJ5IHJldmlzaW5nIHRoZSByZXF1ZXN0IChlLmcuLCBhIGRpZmZlcmVudCBkYXR1bSBvciBhIGRpZmZlcmVudCB0aW1lIHJhbmdlKS5cbiAgKiBUaGUgbGlzdCBvZiBzdGF0aW9ucyBvZmZlcmluZyB0aGlzIGRhdGEgKG9yIHRoZSBsaXN0IG9mIGRhdHVtcykgbWF5IGJlIGluY29ycmVjdC5cbiAgKiBTb21ldGltZXMgYSBzdGF0aW9uIG9yIHRoZSBlbnRpcmUgZGF0YSBzZXJ2aWNlIGlzIHVuYXZhaWxhYmxlLlxuICAgIFdhaXQgYSB3aGlsZSBhbmQgdHJ5IGFnYWluLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvbklEIChTdGF0aW9uIElEKVxuc3RhdGlvbk5hbWUgKFN0YXRpb24gTmFtZSlcbnN0YXRlXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaGVmSUQgKFNIRUYgSUQpXG4uLi4gKDEzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL25vc0Nvb3BzV0xSNl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zQ29vcHNXTFI2X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL25vc0Nvb3BzV0xSNi9pbmRleC5qc29uIiwgImh0dHA6Ly90aWRlc2FuZGN1cnJlbnRzLm5vYWEuZ292LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9ub3NDb29wc1dMUjYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPW5vc0Nvb3BzV0xSNiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyBDTy1PUFMiLCAibm9zQ29vcHNXTFI2Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzV0xUUDYuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzV0xUUDYiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFRQNi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT1MgQ08tT1BTIFdhdGVyIExldmVsIERhdGEsIFRpZGUgUHJlZGljdGlvbiwgNi1NaW51dGUiLCAiVGhpcyBkYXRhc2V0IGhhcyBIaWdoIExvdyBUaWRlIFByZWRpY3Rpb25zIGZyb20gTk9BQSBOT1MgQ2VudGVyIGZvciBPcGVyYXRpb25hbFxuT2NlYW5vZ3JhcGhpYyBQcm9kdWN0cyBhbmQgU2VydmljZXMgKENPLU9QUykuXG5cblRoZSBvZmZpY2lhbCBUaWRlIGFuZCBUaWRhbCBDdXJyZW50IHByZWRpY3Rpb24gdGFibGVzIGFyZSBwdWJsaXNoZWQgYW5udWFsbHkgb25cbk9jdG9iZXIgMSwgZm9yIHRoZSBmb2xsb3dpbmcgY2FsZW5kYXIgeWVhci4gVGlkZSBhbmQgVGlkYWwgQ3VycmVudCBwcmVkaWN0aW9uc1xuZ2VuZXJhdGVkIHByaW9yIHRvIHRoZSBwdWJsaXNoaW5nIGRhdGUgb2YgdGhlIG9mZmljaWFsIHRhYmxlcyBhcmUgc3ViamVjdCB0b1xuY2hhbmdlLiBUaGUgZW5jbG9zZWQgZGF0YSBhcmUgYmFzZWQgdXBvbiB0aGUgbGF0ZXN0IGluZm9ybWF0aW9uIGF2YWlsYWJsZSBhcyBvZlxudGhlIGRhdGUgb2YgeW91ciByZXF1ZXN0LiBUaWRlIGFuZCBUaWRhbCBDdXJyZW50IHByZWRpY3Rpb25zIGdlbmVyYXRlZCBtYXlcbmRpZmZlciBmcm9tIHRoZSBvZmZpY2lhbCBwcmVkaWN0aW9ucyBpZiBpbmZvcm1hdGlvbiBmb3IgdGhlIHN0YXRpb24gcmVxdWVzdGVkXG5oYXMgYmVlbiB1cGRhdGVkIHNpbmNlIHRoZSBwdWJsaXNoaW5nIGRhdGUgb2YgdGhlIG9mZmljaWFsIHRhYmxlcy5cblxuV0FSTklORzpcbiogUXVlcmllcyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgc3RhdGlvbklEPSwgdGltZT49IGFuZCB0aW1lPD0uXG4gIFF1ZXJpZXMgTVVTVCBiZSBmb3IgbGVzcyB0aGFuIDMwIGRheXMgd29ydGggb2YgZGF0YS5cbiogVGhpcyBkYXRhc2V0IG9ubHkgcmV0dXJucyBkYXRhIGZvciB0aGUgTUxMVyAoTWVhbiBMb3dlci1Mb3cgV2F0ZXIpIGRhdHVtLlxuKiBUaGUgZGF0YSBzb3VyY2UgaXNuJ3QgY29tcGxldGVseSByZWxpYWJsZS4gSWYgeW91ciByZXF1ZXN0IHJldHVybnMgbm8gZGF0YVxuICB3aGVuIHlvdSB0aGluayBpdCBzaG91bGQ6XG4gICogVHJ5IHJldmlzaW5nIHRoZSByZXF1ZXN0IChlLmcuLCBhIGRpZmZlcmVudCB0aW1lIHJhbmdlKS5cbiAgKiBUaGUgbGlzdCBvZiBzdGF0aW9ucyBvZmZlcmluZyB0aGlzIGRhdGEgbWF5IGJlIGluY29ycmVjdC5cbiAgKiBTb21ldGltZXMgYSBzdGF0aW9uIG9yIHRoZSBlbnRpcmUgZGF0YSBzZXJ2aWNlIGlzIHVuYXZhaWxhYmxlLlxuICAgIFdhaXQgYSB3aGlsZSBhbmQgdHJ5IGFnYWluLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvbklEIChTdGF0aW9uIElEKVxuc3RhdGlvbk5hbWUgKFN0YXRpb24gTmFtZSlcbnN0YXRlXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaGVmSUQgKFNIRUYgSUQpXG5kZXBsb3ltZW50IChEZXBsb3ltZW50IERlc2lnbmF0aW9uKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDQgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm9zQ29vcHNXTFRQNl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm9zQ29vcHNXTFRQNl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub3NDb29wc1dMVFA2L2luZGV4Lmpzb24iLCAiaHR0cDovL3RpZGVzYW5kY3VycmVudHMubm9hYS5nb3YvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc0Nvb3BzV0xUUDYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPW5vc0Nvb3BzV0xUUDYmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOT1MgQ08tT1BTIiwgIm5vc0Nvb3BzV0xUUDYiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFRQNjAuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzV0xUUDYwIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzV0xUUDYwLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PUyBDTy1PUFMgV2F0ZXIgTGV2ZWwgRGF0YSwgVGlkZSBQcmVkaWN0aW9uLCA2MC1NaW51dGUiLCAiVGhpcyBkYXRhc2V0IGhhcyBIaWdoIExvdyBUaWRlIFByZWRpY3Rpb25zIGZyb20gTk9BQSBOT1MgQ2VudGVyIGZvciBPcGVyYXRpb25hbFxuT2NlYW5vZ3JhcGhpYyBQcm9kdWN0cyBhbmQgU2VydmljZXMgKENPLU9QUykuXG5cblRoZSBvZmZpY2lhbCBUaWRlIGFuZCBUaWRhbCBDdXJyZW50IHByZWRpY3Rpb24gdGFibGVzIGFyZSBwdWJsaXNoZWQgYW5udWFsbHkgb25cbk9jdG9iZXIgMSwgZm9yIHRoZSBmb2xsb3dpbmcgY2FsZW5kYXIgeWVhci4gVGlkZSBhbmQgVGlkYWwgQ3VycmVudCBwcmVkaWN0aW9uc1xuZ2VuZXJhdGVkIHByaW9yIHRvIHRoZSBwdWJsaXNoaW5nIGRhdGUgb2YgdGhlIG9mZmljaWFsIHRhYmxlcyBhcmUgc3ViamVjdCB0b1xuY2hhbmdlLiBUaGUgZW5jbG9zZWQgZGF0YSBhcmUgYmFzZWQgdXBvbiB0aGUgbGF0ZXN0IGluZm9ybWF0aW9uIGF2YWlsYWJsZSBhcyBvZlxudGhlIGRhdGUgb2YgeW91ciByZXF1ZXN0LiBUaWRlIGFuZCBUaWRhbCBDdXJyZW50IHByZWRpY3Rpb25zIGdlbmVyYXRlZCBtYXlcbmRpZmZlciBmcm9tIHRoZSBvZmZpY2lhbCBwcmVkaWN0aW9ucyBpZiBpbmZvcm1hdGlvbiBmb3IgdGhlIHN0YXRpb24gcmVxdWVzdGVkXG5oYXMgYmVlbiB1cGRhdGVkIHNpbmNlIHRoZSBwdWJsaXNoaW5nIGRhdGUgb2YgdGhlIG9mZmljaWFsIHRhYmxlcy5cblxuV0FSTklORzpcbiogUXVlcmllcyBmb3IgZGF0YSBNVVNUIGluY2x1ZGUgc3RhdGlvbklEPSwgdGltZT49IGFuZCB0aW1lPD0uXG4gIFF1ZXJpZXMgTVVTVCBiZSBmb3IgbGVzcyB0aGFuIDMwIGRheXMgd29ydGggb2YgZGF0YS5cbiogVGhpcyBkYXRhc2V0IG9ubHkgcmV0dXJucyBkYXRhIGZvciB0aGUgTUxMVyAoTWVhbiBMb3dlci1Mb3cgV2F0ZXIpIGRhdHVtLlxuKiBUaGUgZGF0YSBzb3VyY2UgaXNuJ3QgY29tcGxldGVseSByZWxpYWJsZS4gSWYgeW91ciByZXF1ZXN0IHJldHVybnMgbm8gZGF0YVxuICB3aGVuIHlvdSB0aGluayBpdCBzaG91bGQ6XG4gICogVHJ5IHJldmlzaW5nIHRoZSByZXF1ZXN0IChlLmcuLCBhIGRpZmZlcmVudCB0aW1lIHJhbmdlKS5cbiAgKiBUaGUgbGlzdCBvZiBzdGF0aW9ucyBvZmZlcmluZyB0aGlzIGRhdGEgbWF5IGJlIGluY29ycmVjdC5cbiAgKiBTb21ldGltZXMgYSBzdGF0aW9uIG9yIHRoZSBlbnRpcmUgZGF0YSBzZXJ2aWNlIGlzIHVuYXZhaWxhYmxlLlxuICAgIFdhaXQgYSB3aGlsZSBhbmQgdHJ5IGFnYWluLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuc3RhdGlvbklEIChTdGF0aW9uIElEKVxuc3RhdGlvbk5hbWUgKFN0YXRpb24gTmFtZSlcbnN0YXRlXG5kYXRlRXN0YWJsaXNoZWQgKERhdGUgRXN0YWJsaXNoZWQsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5zaGVmSUQgKFNIRUYgSUQpXG5kZXBsb3ltZW50IChEZXBsb3ltZW50IERlc2lnbmF0aW9uKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDQgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm9zQ29vcHNXTFRQNjBfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc0Nvb3BzV0xUUDYwX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL25vc0Nvb3BzV0xUUDYwL2luZGV4Lmpzb24iLCAiaHR0cDovL3RpZGVzYW5kY3VycmVudHMubm9hYS5nb3YvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL25vc0Nvb3BzV0xUUDYwLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NDb29wc1dMVFA2MCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyBDTy1PUFMiLCAibm9zQ29vcHNXTFRQNjAiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFY2LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc1dMVjYiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFY2LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk5PUyBDTy1PUFMgV2F0ZXIgTGV2ZWwgRGF0YSwgVmVyaWZpZWQsIDYtTWludXRlIiwgIlRoaXMgZGF0YXNldCBoYXMgdmVyaWZpZWQgKHF1YWxpdHktY29udHJvbGxlZCksIDYtbWludXRlLCB3YXRlciBsZXZlbCAodGlkZSlcbmRhdGEgZnJvbSBOT0FBIE5PUyBDZW50ZXIgZm9yIE9wZXJhdGlvbmFsIE9jZWFub2dyYXBoaWMgUHJvZHVjdHMgYW5kIFNlcnZpY2VzXG4oQ08tT1BTKS4gIFRoaXMgaXMgYSBkZWxheWVkIGRhdGFzZXQsIG5vdCBhIG5lYXItcmVhbC10aW1lIGRhdGFzZXQuXG5cbldBUk5JTkc6XG4qIFF1ZXJpZXMgZm9yIGRhdGEgTVVTVCBpbmNsdWRlIHN0YXRpb25JRD0sIGRhdHVtPSwgdGltZT49LCBhbmQgdGltZTw9LlxuKiBRdWVyaWVzIE1VU1QgYmUgZm9yIGxlc3MgdGhhbiAzMCBkYXlzIHdvcnRoIG9mIGRhdGEuXG4qIERpZmZlcmVudCBzdGF0aW9ucyBzdXBwb3J0IGRpZmZlcmVudCBkYXR1bXMuXG4gIFVzZSBFUkREQVAncyBTdWJzZXQgd2ViIHBhZ2UgdG8gZmluZCBvdXQgd2hpY2ggZGF0dW1zIGEgZ2l2ZW4gc3RhdGlvbiBzdXBwb3J0cy5cbiogVGhlIGRhdGEgc291cmNlIGlzbid0IGNvbXBsZXRlbHkgcmVsaWFibGUuIElmIHlvdXIgcmVxdWVzdCByZXR1cm5zIG5vIGRhdGFcbiAgd2hlbiB5b3UgdGhpbmsgaXQgc2hvdWxkOlxuICAqIE1ha2Ugc3VyZSB0aGUgc3RhdGlvbiB5b3Ugc3BlY2lmaWVkIHN1cHBvcnRzIHRoZSBkYXR1bSB5b3Ugc3BlY2lmaWVkLlxuICAqIFRyeSByZXZpc2luZyB0aGUgcmVxdWVzdCAoZS5nLiwgYSBkaWZmZXJlbnQgZGF0dW0gb3IgYSBkaWZmZXJlbnQgdGltZSByYW5nZSkuXG4gICogVGhlIGxpc3Qgb2Ygc3RhdGlvbnMgb2ZmZXJpbmcgdGhpcyBkYXRhIChvciB0aGUgbGlzdCBvZiBkYXR1bXMpIG1heSBiZSBpbmNvcnJlY3QuXG4gICogU29tZXRpbWVzIGEgc3RhdGlvbiBvciB0aGUgZW50aXJlIGRhdGEgc2VydmljZSBpcyB1bmF2YWlsYWJsZS5cbiAgICBXYWl0IGEgd2hpbGUgYW5kIHRyeSBhZ2Fpbi5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnN0YXRpb25JRCAoU3RhdGlvbiBJRClcbnN0YXRpb25OYW1lIChTdGF0aW9uIE5hbWUpXG5zdGF0ZVxuZGF0ZUVzdGFibGlzaGVkIChEYXRlIEVzdGFibGlzaGVkLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuc2hlZklEIChTSEVGIElEKVxuZGVwbG95bWVudCAoRGVwbG95bWVudCBEZXNpZ25hdGlvbilcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGF0dW1cbndhdGVyTGV2ZWwgKFdhdGVyIExldmVsLCBtKVxuc2lnbWEgKFN0YW5kYXJkIERldmlhdGlvbiBvZiBXYXRlciBMZXZlbCwgbSlcbi4uLiAoNCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NDb29wc1dMVjZfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc0Nvb3BzV0xWNl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ub3NDb29wc1dMVjYvaW5kZXguanNvbiIsICJodHRwOi8vdGlkZXNhbmRjdXJyZW50cy5ub2FhLmdvdi8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm9zQ29vcHNXTFY2LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NDb29wc1dMVjYmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOT1MgQ08tT1BTIiwgIm5vc0Nvb3BzV0xWNiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc1dMVkhMLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ub3NDb29wc1dMVkhMIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzV0xWSEwuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiTk9TIENPLU9QUyBXYXRlciBMZXZlbCBEYXRhLCBWZXJpZmllZCwgSGlnaCBMb3ciLCAiVGhpcyBkYXRhc2V0IGhhcyB2ZXJpZmllZCAocXVhbGl0eS1jb250cm9sbGVkKSwgZGFpbHksIGhpZ2ggbG93IHdhdGVyIGxldmVsXG4odGlkZSkgZGF0YSBmcm9tIE5PQUEgTk9TIENlbnRlciBmb3IgT3BlcmF0aW9uYWwgT2NlYW5vZ3JhcGhpYyBQcm9kdWN0cyBhbmRcblNlcnZpY2VzIChDTy1PUFMpLiBUaGlzIGlzIGEgZGVsYXllZCBkYXRhc2V0LCBub3QgYSBuZWFyLXJlYWwtdGltZSBkYXRhc2V0LlxuXG5XQVJOSU5HOlxuKiBRdWVyaWVzIGZvciBkYXRhIE1VU1QgaW5jbHVkZSBzdGF0aW9uSUQ9LCBkYXR1bT0sIHRpbWU+PSwgYW5kIHRpbWU8PS5cbiogUXVlcmllcyBNVVNUIGJlIGZvciBsZXNzIHRoYW4gMzAgZGF5cyB3b3J0aCBvZiBkYXRhLlxuKiBEaWZmZXJlbnQgc3RhdGlvbnMgc3VwcG9ydCBkaWZmZXJlbnQgZGF0dW1zLlxuICBVc2UgRVJEREFQJ3MgU3Vic2V0IHdlYiBwYWdlIHRvIGZpbmQgb3V0IHdoaWNoIGRhdHVtcyBhIGdpdmVuIHN0YXRpb24gc3VwcG9ydHMuXG4qIFRoZSBkYXRhIHNvdXJjZSBpc24ndCBjb21wbGV0ZWx5IHJlbGlhYmxlLiBJZiB5b3VyIHJlcXVlc3QgcmV0dXJucyBubyBkYXRhXG4gIHdoZW4geW91IHRoaW5rIGl0IHNob3VsZDpcbiAgKiBNYWtlIHN1cmUgdGhlIHN0YXRpb24geW91IHNwZWNpZmllZCBzdXBwb3J0cyB0aGUgZGF0dW0geW91IHNwZWNpZmllZC5cbiAgKiBUcnkgcmV2aXNpbmcgdGhlIHJlcXVlc3QgKGUuZy4sIGEgZGlmZmVyZW50IGRhdHVtIG9yIGEgZGlmZmVyZW50IHRpbWUgcmFuZ2UpLlxuICAqIFRoZSBsaXN0IG9mIHN0YXRpb25zIG9mZmVyaW5nIHRoaXMgZGF0YSAob3IgdGhlIGxpc3Qgb2YgZGF0dW1zKSBtYXkgYmUgaW5jb3JyZWN0LlxuICAqIFNvbWV0aW1lcyBhIHN0YXRpb24gb3IgdGhlIGVudGlyZSBkYXRhIHNlcnZpY2UgaXMgdW5hdmFpbGFibGUuXG4gICAgV2FpdCBhIHdoaWxlIGFuZCB0cnkgYWdhaW4uXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5zdGF0aW9uSUQgKFN0YXRpb24gSUQpXG5zdGF0aW9uTmFtZSAoU3RhdGlvbiBOYW1lKVxuc3RhdGVcbmRhdGVFc3RhYmxpc2hlZCAoRGF0ZSBFc3RhYmxpc2hlZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNoZWZJRCAoU0hFRiBJRClcbmRlcGxveW1lbnQgKERlcGxveW1lbnQgRGVzaWduYXRpb24pXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRhdHVtXG53YXRlckxldmVsIChXYXRlciBMZXZlbCwgbSlcbnR5cGUgKERlc2lnbmF0aW9uIG9mIFdhdGVyIGxldmVsIEhlaWdodClcbkkgKEluZmVycmVkIEZsYWcpXG5MIChMaW1pdCBGbGFnKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL25vc0Nvb3BzV0xWSExfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL25vc0Nvb3BzV0xWSExfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm9zQ29vcHNXTFZITC9pbmRleC5qc29uIiwgImh0dHA6Ly90aWRlc2FuZGN1cnJlbnRzLm5vYWEuZ292LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9ub3NDb29wc1dMVkhMLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ub3NDb29wc1dMVkhMJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk9TIENPLU9QUyIsICJub3NDb29wc1dMVkhMIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzV0xWNjAuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25vc0Nvb3BzV0xWNjAiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm9zQ29vcHNXTFY2MC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJOT1MgQ08tT1BTIFdhdGVyIExldmVsIERhdGEsIFZlcmlmaWVkLCBIb3VybHkiLCAiVGhpcyBkYXRhc2V0IGhhcyB2ZXJpZmllZCAocXVhbGl0eS1jb250cm9sbGVkKSwgaG91cmx5LCB3YXRlciBsZXZlbCAodGlkZSkgZGF0YVxuZnJvbSBOT0FBIE5PUyBDZW50ZXIgZm9yIE9wZXJhdGlvbmFsIE9jZWFub2dyYXBoaWMgUHJvZHVjdHMgYW5kIFNlcnZpY2VzXG4oQ08tT1BTKS4gICBUaGlzIGlzIGEgZGVsYXllZCBkYXRhc2V0LCBub3QgYSBuZWFyLXJlYWwtdGltZSBkYXRhc2V0LlxuXG5XQVJOSU5HOlxuKiBRdWVyaWVzIGZvciBkYXRhIE1VU1QgaW5jbHVkZSBzdGF0aW9uSUQ9LCBkYXR1bT0sIHRpbWU+PSwgYW5kIHRpbWU8PS5cbiogUXVlcmllcyBNVVNUIGJlIGZvciBsZXNzIHRoYW4gMzAgZGF5cyB3b3J0aCBvZiBkYXRhLlxuKiBEaWZmZXJlbnQgc3RhdGlvbnMgc3VwcG9ydCBkaWZmZXJlbnQgZGF0dW1zLlxuICBVc2UgRVJEREFQJ3MgU3Vic2V0IHdlYiBwYWdlIHRvIGZpbmQgb3V0IHdoaWNoIGRhdHVtcyBhIGdpdmVuIHN0YXRpb24gc3VwcG9ydHMuXG4qIFRoZSBkYXRhIHNvdXJjZSBpc24ndCBjb21wbGV0ZWx5IHJlbGlhYmxlLiBJZiB5b3VyIHJlcXVlc3QgcmV0dXJucyBubyBkYXRhXG4gIHdoZW4geW91IHRoaW5rIGl0IHNob3VsZDpcbiAgKiBNYWtlIHN1cmUgdGhlIHN0YXRpb24geW91IHNwZWNpZmllZCBzdXBwb3J0cyB0aGUgZGF0dW0geW91IHNwZWNpZmllZC5cbiAgKiBUcnkgcmV2aXNpbmcgdGhlIHJlcXVlc3QgKGUuZy4sIGEgZGlmZmVyZW50IGRhdHVtIG9yIGEgZGlmZmVyZW50IHRpbWUgcmFuZ2UpLlxuICAqIFRoZSBsaXN0IG9mIHN0YXRpb25zIG9mZmVyaW5nIHRoaXMgZGF0YSAob3IgdGhlIGxpc3Qgb2YgZGF0dW1zKSBtYXkgYmUgaW5jb3JyZWN0LlxuICAqIFNvbWV0aW1lcyBhIHN0YXRpb24gb3IgdGhlIGVudGlyZSBkYXRhIHNlcnZpY2UgaXMgdW5hdmFpbGFibGUuXG4gICAgV2FpdCBhIHdoaWxlIGFuZCB0cnkgYWdhaW4uXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5zdGF0aW9uSUQgKFN0YXRpb24gSUQpXG5zdGF0aW9uTmFtZSAoU3RhdGlvbiBOYW1lKVxuc3RhdGVcbmRhdGVFc3RhYmxpc2hlZCAoRGF0ZSBFc3RhYmxpc2hlZCwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnNoZWZJRCAoU0hFRiBJRClcbmRlcGxveW1lbnQgKERlcGxveW1lbnQgRGVzaWduYXRpb24pXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRhdHVtXG53YXRlckxldmVsIChXYXRlciBMZXZlbCwgbSlcbnNpZ21hIChTdGFuZGFyZCBEZXZpYXRpb24gb2YgV2F0ZXIgTGV2ZWwsIG0pXG5JIChJbmZlcnJlZCBGbGFnKVxuTCAoTGltaXQgRmxhZylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ub3NDb29wc1dMVjYwX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9ub3NDb29wc1dMVjYwX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL25vc0Nvb3BzV0xWNjAvaW5kZXguanNvbiIsICJodHRwOi8vdGlkZXNhbmRjdXJyZW50cy5ub2FhLmdvdi8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm9zQ29vcHNXTFY2MC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bm9zQ29vcHNXTFY2MCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5PUyBDTy1PUFMiLCAibm9zQ29vcHNXTFY2MCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9udGFzX2ZsdXhfNjJmY185YTIwXzE0MzIuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL250YXNfZmx1eF82MmZjXzlhMjBfMTQzMiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9udGFzX2ZsdXhfNjJmY185YTIwXzE0MzIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiT2NlYW5TSVRFUyBOVEFTIHN1cmZhY2UgbW9vcmluZyBmbHV4ZXMgY2FsY3VsYXRlZCB3aXRoIENvYXJlIDMuMCBhbGdvcml0aG0iLCAiT2NlYW5TaXRlcyB0aW1lLXNlcmllcyBGTFVYICBkYXRhIGZyb20gTlRBUyBzdGF0aW9uXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuUUIgKHNlbnNpYmxlIGhlYXQgZmx1eCwgVy9tMilcblFIIChsYXRlbnQgaGVhdCBmbHV4LCBXL20yKVxuUU4gKG5ldCBoZWF0IGZsdXgsIFcvbTIpXG5RTCAobmV0IGxvbmd3YXZlLCBXL20yKVxuUVMgKG5ldCBzaG9ydHdhdmUsIFcvbTIpXG5UQVVESVIgKHdpbmQgc3RyZXNzIGRpcmVjdGlvbiwgZGVncmVlIE4pXG5UQVVNQUcgKHdpbmQgc3RyZXNzIG1hZ25pdHVkZSwgTi9tXjIpXG5UU0tJTiAoU1NUIGFkanVzdGVkIHRvIHNraW4sIGRlZ3JlZSlcbldTX0ggKHdpbmQgc3BlZWQgYWRqdXN0ZWQgdG8gMTBtLCBtL3MpXG5RUV9IIChzcGVjaWZpYyBodW1pZGl0eSBhZGp1c3RlZCB0byAybSwgZy9rZylcblRBX0ggKGFpciB0ZW1wZXJhdHVyZSBhZGp1c3RlZCB0byAybSwgZGVncmVlX0MpXG5UQVVFIChlYXN0IHdpbmQgc3RyZXNzLCBOL21eMilcblRBVU4gKG5vcnRoIHdpbmQgc3RyZXNzLCBOL21eMilcblNUQUJJTElUWSAoc3RhYmlsaXR5IHBhcmFtZXRlciwgMSlcbmRlcHRoIChkZXB0aCBjb29yZGluYXRlIG9mIHRza2luLCBtKVxud21vX3BsYXRmb3JtX2NvZGVcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbnRhc19mbHV4XzYyZmNfOWEyMF8xNDMyX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9udGFzX2ZsdXhfNjJmY185YTIwXzE0MzJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbnRhc19mbHV4XzYyZmNfOWEyMF8xNDMyL2luZGV4Lmpzb24iLCAiaHR0cDovL3VvcC53aG9pLmVkdS9wcm9qZWN0cy9zdHJhdHVzIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL250YXNfZmx1eF82MmZjXzlhMjBfMTQzMi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bnRhc19mbHV4XzYyZmNfOWEyMF8xNDMyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIldIT0kiLCAibnRhc19mbHV4XzYyZmNfOWEyMF8xNDMyIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL250YXNfbWV0XzhkNzNfMWJjMV9lYzhhLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9udGFzX21ldF84ZDczXzFiYzFfZWM4YSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9udGFzX21ldF84ZDczXzFiYzFfZWM4YS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJPY2VhblNJVEVTIE5UQVMgc3VyZmFjZSBtb29yaW5nIE1FVCBkYXRhIiwgIk9jZWFuU2l0ZXMgdGltZS1zZXJpZXMgTUVUIGRhdGEgZnJvbSBOVEFTIHN0YXRpb25cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5BSVJUIChhaXIgdGVtcGVyYXR1cmUsIGRlZ3JlZV9DKVxuUkVMSCAocmVsYXRpdmUgaHVtaWRpdHksIHBlcmNlbnQpXG5BVE1TIChiYXJvbWV0cmljIHByZXNzdXJlLCBtaWxsaWJhcnMpXG5MVyAoc3VyZmFjZSBkb3dud2VsbGluZyBsb25nd2F2ZSByYWRpYXRpb24sIFcgbS0yKVxuU1cgKHNob3J0d2F2ZSByYWRpYXRpb24sIFcgbS0yKVxuUkFJTiAocHJlY2lwaXRhdGlvbiByYXRlLCBtbS9ob3VyKVxuVVdORCAoV2luZCBWZWxvY2l0eSBFYXN0LCBtZXRlcnMvc2Vjb25kKVxuVldORCAod2luZCB2ZWxvY2l0eSBub3J0aCwgbWV0ZXJzL3NlY29uZClcblRFTVAgKHNlYSB0ZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5QU0FMIChzZWEgd2F0ZXIgcHJhY3RpY2FsIHNhbGluaXR5LCAxKVxuQ05EQyAoY29uZHVjdGl2aXR5LCBTIG0tMSlcblVDVVIgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgUyBtLTEpXG5WQ1VSIChOb3J0aHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBTIG0tMSlcbmxhdGl0dWRlIChhcHByb3hpbWF0ZSBsYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoYXBwcm94aW1hdGUgbG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG53bW9fcGxhdGZvcm1fY29kZVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL250YXNfbWV0XzhkNzNfMWJjMV9lYzhhX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9udGFzX21ldF84ZDczXzFiYzFfZWM4YV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9udGFzX21ldF84ZDczXzFiYzFfZWM4YS9pbmRleC5qc29uIiwgImh0dHA6Ly91b3Aud2hvaS5lZHUvcHJvamVjdHMvc3RyYXR1cyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9udGFzX21ldF84ZDczXzFiYzFfZWM4YS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bnRhc19tZXRfOGQ3M18xYmMxX2VjOGEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiV0hPSSIsICJudGFzX21ldF84ZDczXzFiYzFfZWM4YSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9yYW1hXzNjMTVfMzQxMF83ODBhLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9yYW1hXzNjMTVfMzQxMF83ODBhIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3JhbWFfM2MxNV8zNDEwXzc4MGEuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiT2NlYW5TSVRFUyBSQU1BIGRhaWx5IGluLXNpdHUgZGF0YSIsICJPY2VhblNJVEVTIGRhaWx5IGluLXNpdHUgZGF0YS4gT2NlYW5TSVRFUyBHbG9iYWwgVHJvcGljYWwgTW9vcmVkIEJ1b3kgQXJyYXkgUmVzZWFyY2ggTW9vcmVkIEFycmF5IGZvciBBZnJpY2FuLUFzaWFuLUF1c3RyYWxpYW4gTW9uc29vbiBBbmFseXNpcyBhbmQgUHJlZGljdGlvbiAoUkFNQSkgZGF0YSBmcm9tIFBhY2lmaWMgTWFyaW5lIEVudmlyb25tZW50YWwgTGFib3JhdG9yeSAoUE1FTClcblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbndtb19wbGF0Zm9ybV9jb2RlXG5zaXRlX2NvZGVcbnNpdGVfaWQgKE9jZWFuU0lURVMgc3RhdGlvbiBJRClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoTGF0aXR1ZGUgb2YgZWFjaCBsb2NhdGlvbiwgZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoTG9uZ2l0dWRlIG9mIGVhY2ggbG9jYXRpb24sIGRlZ3JlZXNfZWFzdClcbmRlcGN1ciAoRGVwdGggb2YgZWFjaCBtZWFzdXJlbWVudCwgbWV0ZXJzKVxuVUNVUiAoem9uYWwgY3VycmVudCwgY20vcylcblZDVVIgKG1lcmlkaW9uYWwgY3VycmVudCwgY20vcylcbkNTUEQgKGN1cnJlbnQgc3BlZWQsIGNtL3MpXG5DU1BEX1FDIChxdWFsaXR5IGZsYWcpXG5DU1BEX0RNIChtZXRob2Qgb2YgZGF0YSBwcm9jZXNzaW5nKVxuQ0RJUiAoY3VycmVudCBkaXJlY3Rpb24gKG9jZWFub2dyYXBoaWMgY29udmVudGlvbiwgZmxvd2luZyB0byksIGRlZ3JlZSlcbkNESVJfUUMgKHF1YWxpdHkgZmxhZylcbkNESVJfRE0gKG1ldGhvZCBvZiBkYXRhIHByb2Nlc3NpbmcpXG5URU1QICh0ZW1wZXJhdHVyZSwgZGVncmVlX0NlbHNpdXMpXG5URU1QX1FDIChxdWFsaXR5IGZsYWcpXG5kZXB0aCAoRGVwdGggb2YgZWFjaCBtZWFzdXJlbWVudCwgbSlcbmRlcHBzYWwgKERlcHRoIG9mIGVhY2ggbWVhc3VyZW1lbnQsIG1ldGVycylcblBTQUwgKHNhbGluaXR5LCBQU1UpXG5QU0FMX1FDIChxdWFsaXR5IGZsYWcpXG5QU0FMX0RNIChtZXRob2Qgb2YgZGF0YSBwcm9jZXNzaW5nKVxuZGVwZGVuIChEZXB0aCBvZiBlYWNoIG1lYXN1cmVtZW50LCBtZXRlcnMpXG5ERU4gKHNpZ21hLXRoZXRhIChwb3RlbnRpYWwgZGVuc2l0eSksIGtnL20qKjMpXG5ERU5fUUMgKHF1YWxpdHkgZmxhZylcbi4uLiAoMzcgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcmFtYV8zYzE1XzM0MTBfNzgwYV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcmFtYV8zYzE1XzM0MTBfNzgwYV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9yYW1hXzNjMTVfMzQxMF83ODBhL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcmFtYV8zYzE1XzM0MTBfNzgwYS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cmFtYV8zYzE1XzM0MTBfNzgwYSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJQTUVMIEdsb2JhbCBUcm9waWNhbCBNb29yZWQgQnVveSBBcnJheSIsICJyYW1hXzNjMTVfMzQxMF83ODBhIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3N0cmF0dXNfZmx1eF85NzcwXzdmMThfYjMxNC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc3RyYXR1c19mbHV4Xzk3NzBfN2YxOF9iMzE0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3N0cmF0dXNfZmx1eF85NzcwXzdmMThfYjMxNC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJPY2VhblNJVEVTIFN0cmF0dXMgc3VyZmFjZSBtb29yaW5nIGZsdXhlcyBjYWxjdWxhdGVkIHdpdGggQ29hcmUgMy4wIGFsZ29yaXRobSIsICJPY2VhblNpdGVzIHRpbWUtc2VyaWVzIGZsdXggZGF0YSBmcm9tIFN0cmF0dXMgc3RhdGlvblxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcblFCIChzZW5zaWJsZSBoZWF0IGZsdXgsIFcvbTIpXG5RSCAobGF0ZW50IGhlYXQgZmx1eCwgVy9tMilcblFOIChuZXQgaGVhdCBmbHV4LCBXL20yKVxuUUwgKG5ldCBsb25nd2F2ZSwgVy9tMilcblFTIChuZXQgc2hvcnR3YXZlLCBXL20yKVxuVEFVRElSICh3aW5kIHN0cmVzcyBkaXJlY3Rpb24sIGRlZ3JlZSBOKVxuVEFVTUFHICh3aW5kIHN0cmVzcyBtYWduaXR1ZGUsIE4vbV4yKVxuVFNLSU4gKFNTVCBhZGp1c3RlZCB0byBza2luLCBkZWdyZWUpXG5XU19IICh3aW5kIHNwZWVkIGFkanVzdGVkIHRvIDEwbSwgbS9zKVxuUVFfSCAoc3BlY2lmaWMgaHVtaWRpdHkgYWRqdXN0ZWQgdG8gMm0sIGcva2cpXG5UQV9IIChhaXIgdGVtcGVyYXR1cmUgYWRqdXN0ZWQgdG8gMm0sIGRlZ3JlZV9DKVxuVEFVRSAoZWFzdCB3aW5kIHN0cmVzcywgTi9tXjIpXG5UQVVOIChub3J0aCB3aW5kIHN0cmVzcywgTi9tXjIpXG5TVEFCSUxJVFkgKHN0YWJpbGl0eSBwYXJhbWV0ZXIsIDEpXG5kZXB0aCAoZGVwdGggY29vcmRpbmF0ZSBvZiB0c2tpbiwgbSlcbndtb19wbGF0Zm9ybV9jb2RlXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3N0cmF0dXNfZmx1eF85NzcwXzdmMThfYjMxNF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc3RyYXR1c19mbHV4Xzk3NzBfN2YxOF9iMzE0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3N0cmF0dXNfZmx1eF85NzcwXzdmMThfYjMxNC9pbmRleC5qc29uIiwgImh0dHA6Ly91b3Aud2hvaS5lZHUvcHJvamVjdHMvc3RyYXR1cyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9zdHJhdHVzX2ZsdXhfOTc3MF83ZjE4X2IzMTQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXN0cmF0dXNfZmx1eF85NzcwXzdmMThfYjMxNCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJXSE9JIiwgInN0cmF0dXNfZmx1eF85NzcwXzdmMThfYjMxNCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9zdHJhdHVzX21ldF9hYjQzX2U2MmFfNTQ5NC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc3RyYXR1c19tZXRfYWI0M19lNjJhXzU0OTQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc3RyYXR1c19tZXRfYWI0M19lNjJhXzU0OTQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiT2NlYW5TSVRFUyBTdHJhdHVzIHN1cmZhY2UgbW9vcmluZyBNRVQgZGF0YSIsICJPY2VhblNpdGVzIHRpbWUtc2VyaWVzIGRhdGEgZnJvbSBTdHJhdHVzIHN0YXRpb25cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5BSVJUIChhaXIgdGVtcGVyYXR1cmUsIGRlZ3JlZV9DKVxuUkVMSCAocmVsYXRpdmUgaHVtaWRpdHksIHBlcmNlbnQpXG5BVE1TIChiYXJvbWV0cmljIHByZXNzdXJlLCBtaWxsaWJhcnMpXG5MVyAoc3VyZmFjZSBkb3dud2VsbGluZyBsb25nd2F2ZSByYWRpYXRpb24sIFcgbS0yKVxuU1cgKHNob3J0d2F2ZSByYWRpYXRpb24sIFcgbS0yKVxuUkFJTiAocHJlY2lwaXRhdGlvbiByYXRlLCBtbS9ob3VyKVxuVVdORCAoV2luZCBWZWxvY2l0eSBFYXN0LCBtZXRlcnMvc2Vjb25kKVxuVldORCAod2luZCB2ZWxvY2l0eSBub3J0aCwgbWV0ZXJzL3NlY29uZClcblRFTVAgKHNlYSB0ZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5QU0FMIChzZWEgd2F0ZXIgcHJhY3RpY2FsIHNhbGluaXR5LCAuMDAxKVxuQ05EQyAoY29uZHVjdGl2aXR5LCBTIG0tMSlcblVDVVIgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgUyBtLTEpXG5WQ1VSIChOb3J0aHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBTIG0tMSlcbmxhdGl0dWRlIChhcHByb3hpbWF0ZSBsYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoYXBwcm94aW1hdGUgbG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG53bW9fcGxhdGZvcm1fY29kZVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3N0cmF0dXNfbWV0X2FiNDNfZTYyYV81NDk0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9zdHJhdHVzX21ldF9hYjQzX2U2MmFfNTQ5NF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zdHJhdHVzX21ldF9hYjQzX2U2MmFfNTQ5NC9pbmRleC5qc29uIiwgImh0dHA6Ly91b3Aud2hvaS5lZHUvcHJvamVjdHMvc3RyYXR1cyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9zdHJhdHVzX21ldF9hYjQzX2U2MmFfNTQ5NC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9c3RyYXR1c19tZXRfYWI0M19lNjJhXzU0OTQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiV0hPSSIsICJzdHJhdHVzX21ldF9hYjQzX2U2MmFfNTQ5NCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC93aG90c19mbHV4X2Y4MmZfNDY4NF9hNzRmLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC93aG90c19mbHV4X2Y4MmZfNDY4NF9hNzRmIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3dob3RzX2ZsdXhfZjgyZl80Njg0X2E3NGYuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiT2NlYW5TSVRFUyBXSE9UUyBzdXJmYWNlIG1vb3JpbmcgZmx1eGVzIGNhbGN1bGF0ZWQgd2l0aCBDb2FyZSAzLjAgYWxnb3JpdGhtIiwgIk9jZWFuU2l0ZXMgdGltZS1zZXJpZXMgRkxVWCAgZGF0YSBmcm9tIFdIT1RTIHN0YXRpb25cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5RQiAoc2Vuc2libGUgaGVhdCBmbHV4LCBXL20yKVxuUUggKGxhdGVudCBoZWF0IGZsdXgsIFcvbTIpXG5RTiAobmV0IGhlYXQgZmx1eCwgVy9tMilcblFMIChuZXQgbG9uZ3dhdmUsIFcvbTIpXG5RUyAobmV0IHNob3J0d2F2ZSwgVy9tMilcblRBVURJUiAod2luZCBzdHJlc3MgZGlyZWN0aW9uLCBkZWdyZWUgTilcblRBVU1BRyAod2luZCBzdHJlc3MgbWFnbml0dWRlLCBOL21eMilcblRTS0lOIChTU1QgYWRqdXN0ZWQgdG8gc2tpbiwgZGVncmVlKVxuV1NfSCAod2luZCBzcGVlZCBhZGp1c3RlZCB0byAxMG0sIG0vcylcblFRX0ggKHNwZWNpZmljIGh1bWlkaXR5IGFkanVzdGVkIHRvIDJtLCBnL2tnKVxuVEFfSCAoYWlyIHRlbXBlcmF0dXJlIGFkanVzdGVkIHRvIDJtLCBkZWdyZWVfQylcblRBVUUgKGVhc3Qgd2luZCBzdHJlc3MsIE4vbV4yKVxuVEFVTiAobm9ydGggd2luZCBzdHJlc3MsIE4vbV4yKVxuU1RBQklMSVRZIChzdGFiaWxpdHkgcGFyYW1ldGVyLCAxKVxuZGVwdGggKGRlcHRoIGNvb3JkaW5hdGUgb2YgdHNraW4sIG0pXG53bW9fcGxhdGZvcm1fY29kZVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC93aG90c19mbHV4X2Y4MmZfNDY4NF9hNzRmX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC93aG90c19mbHV4X2Y4MmZfNDY4NF9hNzRmX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3dob3RzX2ZsdXhfZjgyZl80Njg0X2E3NGYvaW5kZXguanNvbiIsICJodHRwOi8vdW9wLndob2kuZWR1L3Byb2plY3RzL3N0cmF0dXMiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvd2hvdHNfZmx1eF9mODJmXzQ2ODRfYTc0Zi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9d2hvdHNfZmx1eF9mODJmXzQ2ODRfYTc0ZiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJXSE9JIiwgIndob3RzX2ZsdXhfZjgyZl80Njg0X2E3NGYiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvd2hvdHNfbWV0X2YxODNfZWUwNl84YjYzLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC93aG90c19tZXRfZjE4M19lZTA2XzhiNjMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvd2hvdHNfbWV0X2YxODNfZWUwNl84YjYzLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk9jZWFuU0lURVMgV0hPVFMgc3VyZmFjZSBtb29yaW5nIE1FVCBkYXRhIiwgIk9jZWFuU2l0ZXMgdGltZS1zZXJpZXMgTUVUICBkYXRhIGZyb20gV0hPVFMgc3RhdGlvblxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbkFJUlQgKGFpciB0ZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5SRUxIIChyZWxhdGl2ZSBodW1pZGl0eSwgcGVyY2VudClcbkFUTVMgKGJhcm9tZXRyaWMgcHJlc3N1cmUsIG1pbGxpYmFycylcbkxXIChzdXJmYWNlIGRvd253ZWxsaW5nIGxvbmd3YXZlIHJhZGlhdGlvbiwgVyBtLTIpXG5TVyAoc2hvcnR3YXZlIHJhZGlhdGlvbiwgVyBtLTIpXG5SQUlOIChwcmVjaXBpdGF0aW9uIHJhdGUsIG1tL2hvdXIpXG5VV05EIChXaW5kIFZlbG9jaXR5IEVhc3QsIG1ldGVycy9zZWNvbmQpXG5WV05EICh3aW5kIHZlbG9jaXR5IG5vcnRoLCBtZXRlcnMvc2Vjb25kKVxuVEVNUCAoc2VhIHRlbXBlcmF0dXJlLCBkZWdyZWVfQylcblBTQUwgKHNlYSB3YXRlciBwcmFjdGljYWwgc2FsaW5pdHksIC4wMDEpXG5DTkRDIChjb25kdWN0aXZpdHksIFMgbS0xKVxuVUNVUiAoRWFzdHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBTIG0tMSlcblZDVVIgKE5vcnRod2FyZCBTZWEgV2F0ZXIgVmVsb2NpdHksIFMgbS0xKVxubGF0aXR1ZGUgKGFwcHJveGltYXRlIGxhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChhcHByb3hpbWF0ZSBsb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbndtb19wbGF0Zm9ybV9jb2RlXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvd2hvdHNfbWV0X2YxODNfZWUwNl84YjYzX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC93aG90c19tZXRfZjE4M19lZTA2XzhiNjNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vd2hvdHNfbWV0X2YxODNfZWUwNl84YjYzL2luZGV4Lmpzb24iLCAiaHR0cDovL3VvcC53aG9pLmVkdS9wcm9qZWN0cy9zdHJhdHVzIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3dob3RzX21ldF9mMTgzX2VlMDZfOGI2My5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9d2hvdHNfbWV0X2YxODNfZWUwNl84YjYzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIldIT0kiLCAid2hvdHNfbWV0X2YxODNfZWUwNl84YjYzIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL09TTUNfUFJPRklMRVJTLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DX1BST0ZJTEVSUyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DX1BST0ZJTEVSUy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJPU01DIEFyZ28gUHJvZmlsZSBkYXRhIiwgIk9TTUMgQXJnbyBQcm9maWxlIGRhdGFcblxuY2RtX2RhdGFfdHlwZSA9IFByb2ZpbGVcblZBUklBQkxFUzpcbnBsYXRmb3JtX2NvZGVcbm9yZ2FuaXphdGlvbl9uYW1lXG5jb3VudHJ5X25hbWVcbnBsYXRmb3JtX3R5cGVfbmFtZVxudGltZSAoT0JTRVJWQVRJT04gREFURSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnBhcmFtZXRlcl9uYW1lXG5kYWlseV9vYnNfY291bnRcbm9ic2VydmF0aW9uX2RlcHRoXG5vYnNlcnZhdGlvbl92YWx1ZVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9PU01DX1BST0ZJTEVSU19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvT1NNQ19QUk9GSUxFUlNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vT1NNQ19QUk9GSUxFUlMvaW5kZXguanNvbiIsICJ3d3cub3NtYy5ub2FhLmdvdiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9PU01DX1BST0ZJTEVSUy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9T1NNQ19QUk9GSUxFUlMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiT1NNQyIsICJPU01DX1BST0ZJTEVSUyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DX2ZsYXR0ZW5lZC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvT1NNQ19mbGF0dGVuZWQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvT1NNQ19mbGF0dGVuZWQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiT1NNQyBmbGF0dGVuZWQgb2JzZXJ2YXRpb25zIGZyb20gR1RTIiwgIk9TTUMgZmxhdHRlbmVkIG9ic2VydmF0aW9ucyBmcm9tIEdUUywgcHJvdmlkaW5nIHR1cGxlZCBkYXRhIGF2YWlsYWJpbGl0eVxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbnBsYXRmb3JtX2lkXG5wbGF0Zm9ybV9jb2RlXG5wbGF0Zm9ybV90eXBlXG5jb3VudHJ5XG50aW1lIChvYnNlcnZhdGlvbiBkYXRlLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbm9ic2VydmF0aW9uX2RlcHRoXG5zc3QgKHNlYSBzdXJmYWNlIHRlbXBlcmF0dXJlLCBEZWcgQylcbmF0bXAgKGFpciB0ZW1wZXJhdHVyZSwgRGVnIEMpXG5wcmVjaXAgKHByZWNpcGl0YXRpb24sIG1tKVxuenRtcCAocHJvZmlsZSB3YXRlciB0ZW1wZXJhdHVyZSwgRGVnIEMpXG56c2FsIChwcm9maWxlIHNhbGluaXR5KVxuc2xwIChzZWEgbGV2ZWwgcHJlc3N1cmUsIGhQYSlcbndpbmRzcGQgKHdpbmQgc3BlZWQsIG0vcylcbndpbmRkaXIgKHdpbmQgZnJvbSBkaXJlY3Rpb24sIERlZyB0cnVlKVxud3ZodCAoc2VhIHN1cmZhY2Ugd2F2ZSBzaWduaWZpY2FudCBoZWlnaHQsIG0pXG53YXRlcmxldmVsIChtKVxuY2xvdWRzIChjbG91ZCBjb3Zlciwgb2t0YXMpXG5kZXdwb2ludCAoZGV3IHBvaW50IHRlbXBlcmF0dXJlLCBEZWcgQylcbnVvIChlYXN0d2FyZCBzZWEgd2F0ZXIgdmVsb2NpdHksIG0gcy0xKVxudm8gKG5vcnRod2FyZCBzZWEgd2F0ZXIgdmVsb2NpdHksIG0gcy0xKVxud28gKHVwd2FyZCBzZWEgd2F0ZXIgdmVsb2NpdHksIG0gcy0xKVxucmFpbmZhbGxfcmF0ZSAobSBzLTEpXG5odXIgKHJlbGF0aXZlIGh1bWlkaXR5KVxuc2VhX3dhdGVyX2VsZWNfY29uZHVjdGl2aXR5IChzZWEgd2F0ZXIgZWxlY3RyaWNhbCBjb25kdWN0aXZpdHksIFMgbS0xKVxuc2VhX3dhdGVyX3ByZXNzdXJlIChkYmFyKVxuLi4uICg3IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL09TTUNfZmxhdHRlbmVkX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9PU01DX2ZsYXR0ZW5lZF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9PU01DX2ZsYXR0ZW5lZC9pbmRleC5qc29uIiwgInd3dy5vc21jLm5vYWEuZ292IiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL09TTUNfZmxhdHRlbmVkLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1PU01DX2ZsYXR0ZW5lZCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJPU01DIiwgIk9TTUNfZmxhdHRlbmVkIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL09TTUNfUG9pbnRzLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DX1BvaW50cyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DX1BvaW50cy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJPU01DIG5vcm1hbGl6ZWQgb2JzZXJ2YXRpb25zIGZyb20gR1RTIiwgIk9TTUMgbm9ybWFsaXplZCBJbi1zaXR1IFJlYWwgdGltZSBHVFMgZGF0YVxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcblBMQVRGT1JNX0NPREUgKFN0YXRpb24gSUQpXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnBsYXRmb3JtXG5wYXJhbWV0ZXJcbk9CU0VSVkFUSU9OX1ZBTFVFXG5PQlNFUlZBVElPTl9ERVBUSFxuQ09VTlRSWV9OQU1FXG5vcmdhbml6YXRpb25fbmFtZVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL09TTUNfUG9pbnRzX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9PU01DX1BvaW50c19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9PU01DX1BvaW50cy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3Lm9zbWMubm9hYS5nb3YiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvT1NNQ19Qb2ludHMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPU9TTUNfUG9pbnRzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk9TTUMiLCAiT1NNQ19Qb2ludHMiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvT1NNQ1Y0X0RVT19QUk9GSUxFUy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvT1NNQ1Y0X0RVT19QUk9GSUxFUyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DVjRfRFVPX1BST0ZJTEVTLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIk9TTUMgUHJvZmlsZXMiLCAiT1NNQyBwcm9maWxlcyBmcm9tIEdUU1xuXG5jZG1fZGF0YV90eXBlID0gUHJvZmlsZVxuVkFSSUFCTEVTOlxucGxhdGZvcm1fY29kZVxucGxhdGZvcm1fdHlwZVxuY291bnRyeVxudGltZSAoT0JTRVJWQVRJT04gREFURSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5kZXB0aCAoT0JTRVJWQVRJT04gREVQVEgsIG0pXG56dG1wIChwcm9maWxlIHdhdGVyIHRlbXBlcmF0dXJlLCBEZWcgQylcbnpzYWwgKFNlYSBXYXRlciBTYWxpbml0eSlcbnNlYV93YXRlcl9lbGVjX2NvbmR1Y3Rpdml0eSAoU2VhIFdhdGVyIEVsZWN0cmljYWwgQ29uZHVjdGl2aXR5LCBTIG0tMSlcbnNlYV93YXRlcl9wcmVzc3VyZSAoZGJhcilcbm5vcnRod2FyZF9zZWFfd2F0ZXJfdmVsb2NpdHkgKG0gcy0xKVxuZWFzdHdhcmRfc2VhX3dhdGVyX3ZlbG9jaXR5IChtIHMtMSlcbnVwd2FyZF9zZWFfd2F0ZXJfdmVsb2NpdHkgKG0gcy0xKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL09TTUNWNF9EVU9fUFJPRklMRVNfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL09TTUNWNF9EVU9fUFJPRklMRVNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vT1NNQ1Y0X0RVT19QUk9GSUxFUy9pbmRleC5qc29uIiwgInd3dy5vc21jLm5vYWEuZ292IiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL09TTUNWNF9EVU9fUFJPRklMRVMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPU9TTUNWNF9EVU9fUFJPRklMRVMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiT1NNQyIsICJPU01DVjRfRFVPX1BST0ZJTEVTIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL09TTUNWNF9EVU9fU1VSRkFDRV9UUkFKRUNUT1JZLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DVjRfRFVPX1NVUkZBQ0VfVFJBSkVDVE9SWSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DVjRfRFVPX1NVUkZBQ0VfVFJBSkVDVE9SWS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJPU01DIHN1cmZhY2UgdHJhamVjdG9yeSBkYXRhIiwgIlN1cmZhY2UgdHJhamVjdG9yeSBkYXRhIGZyb20gR1RTXG5cbmNkbV9kYXRhX3R5cGUgPSBUcmFqZWN0b3J5XG5WQVJJQUJMRVM6XG5wbGF0Zm9ybV9pZFxucGxhdGZvcm1fY29kZVxucGxhdGZvcm1fdHlwZVxuY291bnRyeVxudGltZSAoT0JTRVJWQVRJT04gREFURSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5vYnNlcnZhdGlvbl9kZXB0aFxuc3N0IChzZWEgc3VyZmFjZSB0ZW1wZXJhdHVyZSwgRGVnIEMpXG5hdG1wIChhaXIgdGVtcGVyYXR1cmUsIERlZyBDKVxucHJlY2lwIChwcmVjaXBpdGF0aW9uLCBtbSlcbnp0bXAgKHByb2ZpbGUgd2F0ZXIgdGVtcGVyYXR1cmUsIERlZyBDKVxuenNhbCAocHJvZmlsZSBzYWxpbml0eSlcbnNzc1xuc2xwIChzZWEgbGV2ZWwgcHJlc3N1cmUsIGhQYSlcbndpbmRzcGQgKHdpbmQgc3BlZWQsIG0vcylcbndpbmRkaXIgKFdpbmQgRnJvbSBEaXJlY3Rpb24sIERlZyB0cnVlKVxud3ZodCAoU2VhIFN1cmZhY2UgV2F2ZSBTaWduaWZpY2FudCBIZWlnaHQsIG0pXG53YXRlcmxldmVsIChtKVxuY2xvdWRzIChjbG91ZCBjb3Zlciwgb2t0YXMpXG5kZXdwb2ludCAoZGV3IHBvaW50IHRlbXBlcmF0dXJlLCBEZWcgQylcbmVhc3R3YXJkX3NlYV93YXRlcl92ZWxvY2l0eSAobSBzLTEpXG5ub3J0aHdhcmRfc2VhX3dhdGVyX3ZlbG9jaXR5IChtIHMtMSlcbnVwd2FyZF9zZWFfd2F0ZXJfdmVsb2NpdHkgKG0gcy0xKVxucmFpbmZhbGxfcmF0ZSAobSBzLTEpXG5yZWxhdGl2ZV9odW1pZGl0eVxuc2VhX3dhdGVyX2VsZWN0cmljYWxfY29uZCAoc2VhIHdhdGVyIGVsZWN0cmljYWwgY29uZHVjdGl2aXR5LCBTIG0tMSlcbi4uLiAoOCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9PU01DVjRfRFVPX1NVUkZBQ0VfVFJBSkVDVE9SWV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvT1NNQ1Y0X0RVT19TVVJGQUNFX1RSQUpFQ1RPUllfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vT1NNQ1Y0X0RVT19TVVJGQUNFX1RSQUpFQ1RPUlkvaW5kZXguanNvbiIsICJ3d3cub3NtYy5ub2FhLmdvdiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9PU01DVjRfRFVPX1NVUkZBQ0VfVFJBSkVDVE9SWS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9T1NNQ1Y0X0RVT19TVVJGQUNFX1RSQUpFQ1RPUlkmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiT1NNQyIsICJPU01DVjRfRFVPX1NVUkZBQ0VfVFJBSkVDVE9SWSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DVjRfRFVPX1RJTUVfU0VSSUVTLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9PU01DVjRfRFVPX1RJTUVfU0VSSUVTIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL09TTUNWNF9EVU9fVElNRV9TRVJJRVMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiT1NNQyBUaW1lU2VyaWVzIGRhdGEiLCAiT1NNQyBUaW1lU2VyaWVzIGRhdGFcblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnBsYXRmb3JtX2lkXG5wbGF0Zm9ybV9jb2RlXG5wbGF0Zm9ybV90eXBlIChQTEFURk9SIFRZUEUpXG5jb3VudHJ5XG50aW1lIChPQlNFUlZBVElPTiBEQVRFLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxub2JzZXJ2YXRpb25fZGVwdGhcbnNzdFxuYXRtcFxucHJlY2lwXG56dG1wXG56c2FsIChTZWEgV2F0ZXIgU2FsaW5pdHkpXG5zc3MgKFNlYSBXYXRlciBTYWxpbml0eSlcbnNscCAoU3VyZmFjZSBBaXIgUHJlc3N1cmUpXG53aW5kc3BkXG53aW5kZGlyIChXaW5kIEZyb20gRGlyZWN0aW9uKVxud3ZodCAoU2VhIFN1cmZhY2UgV2F2ZSBTaWduaWZpY2FudCBIZWlnaHQpXG53YXRlcmxldmVsXG5jbG91ZHNcbmRld3BvaW50XG5lYXN0d2FyZF9zZWFfd2F0ZXJfdmVsXG5ub3J0aHdhcmRfc2VhX3dhdGVyX3ZlbFxudXB3YXJkX3NlYV93YXRlcl92ZWxcbnJhaW5mYWxsX3JhdGVcbnJlbGF0aXZlX2h1bWlkaXR5XG5zZWFfd2F0ZXJfZWxlY3RyaWNhbF9jb25kXG5zZWFfd2F0ZXJfcHJlc3N1cmVcbnN1cmZhY2VfZHdud2VsbGluZ19sbmd3YXZlXG4uLi4gKDcgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvT1NNQ1Y0X0RVT19USU1FX1NFUklFU19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvT1NNQ1Y0X0RVT19USU1FX1NFUklFU19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9PU01DVjRfRFVPX1RJTUVfU0VSSUVTL2luZGV4Lmpzb24iLCAid3d3Lm9zbWMubm9hYS5nb3YiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvT1NNQ1Y0X0RVT19USU1FX1NFUklFUy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9T1NNQ1Y0X0RVT19USU1FX1NFUklFUyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJPU01DIiwgIk9TTUNWNF9EVU9fVElNRV9TRVJJRVMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0JFQUNIQ0FNLTAwMSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9CRUFDSENBTS0wMDEuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUGFjSU9PUyBCZWFjaCBDYW1lcmEgMDAxOiBXYWlraWtpLCBPYWh1LCBIYXdhaWkiLCAiQSBkaWdpdGFsIGNhbWVyYSBvbiB0b3Agb2YgdGhlIFNoZXJhdG9uIFdhaWtpa2kgaG90ZWwgd2FzIHVzZWQgdG8gcGhvdG9ncmFwaCB0aGUgc2hvcmVsaW5lIG9mIFdhaWtpa2kgYmVhY2ggYWxvbmcgdGhlIFNvdXRoIFNob3JlIG9mIHRoZSBpc2xhbmQgb2YgT2FodSBpbiB0aGUgU3RhdGUgb2YgSGF3YWlpLiBUaGUgb2JsaXF1ZSBjYW1lcmEgdmlldyBwcmVzZW50ZWQgaGVyZSBjYXB0dXJlcyB0aGUgc2hvcmVsaW5lIGxlYWRpbmcgc291dGhlYXN0IHRvd2FyZHMgRGlhbW9uZCBIZWFkIGNyYXRlci4gSXQgb3BlcmF0ZWQgZm9yIG92ZXIgNC41IHllYXJzIGJldHdlZW4gRmVicnVhcnkgNSwgMjAwOSBhbmQgT2N0b2JlciAxMywgMjAxMy4gQ2FwdHVyaW5nIGhvdXJseSBzbmFwc2hvdHMgYXQgYSBzZXQgdmFudGFnZSBwb2ludCBkdXJpbmcgdGhlIGxvY2FsIGRheXRpbWUgaG91cnMgb2YgNjowMCBBTSBvciA3OjAwIEFNIHRvIDU6MDAgUE0sIHRoZXNlIGltYWdlcyBhcmUgdXNlZnVsIGZvciB0cmFja2luZyBiZWFjaCBkeW5hbWljcyBzdWNoIGFzIHdhdmUgcnVuLXVwLCBzYW5kIG1vdmVtZW50LCBhbmQgdHVyYmlkaXR5IHBsdW1lcyBvdmVyIHRpbWUuIFRoZSBjYW1lcmEgd2FzIG1vdW50ZWQgb24gdG9wIG9mIGEgMyBtZXRlciB3YWxsIGV4dGVuZGluZyBhYm92ZSB0aGUgcm9vZiBzdXJmYWNlIGZvciBhIHRvdGFsIGhlaWdodCBvZiA5MyBtZXRlcnMgYWJvdmUgZ3JvdW5kIGxldmVsIG9yIDk2IG1ldGVycyBhYm92ZSBtZWFuIHNlYSBsZXZlbC4gU2VlIGFsc28gQkVBQ0hDQU0tMDAyIGZvciBhbiBhbHRlcm5hdGUgY2FtZXJhIHZpZXcgZnJvbSB0aGUgc2FtZSBsb2NhdGlvbiBwb2ludGluZyBkaXJlY3RseSBkb3dud2FyZHMuXG5cbmNkbV9kYXRhX3R5cGUgPSBPdGhlclxuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5hbHRpdHVkZSAobSlcbmFib3ZlR3JvdW5kIChIZWlnaHQsIG0pXG51cmxcbm5hbWUgKEZpbGUgTmFtZSlcbnNpemUgKGJ5dGVzKVxuZmlsZVR5cGUgKEZpbGUgVHlwZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9CRUFDSENBTS0wMDFfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL0JFQUNIQ0FNLTAwMV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9CRUFDSENBTS0wMDEvaW5kZXguanNvbiIsICJodHRwOi8vd3d3LnBhY2lvb3MuaGF3YWlpLmVkdSIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9CRUFDSENBTS0wMDEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPUJFQUNIQ0FNLTAwMSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJVbml2ZXJzaXR5IG9mIEhhd2FpaSIsICJCRUFDSENBTS0wMDEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTE0XzMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMTRfMy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMTQ6IE1pc3Npb24gMyIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gMyBvZiBTZWFHbGlkZXIgMTE0LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMTRfM19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMTRfM19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzExNF8zL2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTE0XzMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTE0XzMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTE0XzMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTE0XzQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMTRfNC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMTQ6IE1pc3Npb24gNCIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gNCBvZiBTZWFHbGlkZXIgMTE0LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMTRfNF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMTRfNF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzExNF80L2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTE0XzQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTE0XzQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTE0XzQiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTM5XzEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMzlfMS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMzk6IE1pc3Npb24gMSIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gMSBvZiBTZWFHbGlkZXIgMTM5LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMzlfMV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMzlfMV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzEzOV8xL2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTM5XzEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTM5XzEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTM5XzEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTM5XzIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMzlfMi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMzk6IE1pc3Npb24gMiIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gMiBvZiBTZWFHbGlkZXIgMTM5LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMzlfMl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMzlfMl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzEzOV8yL2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTM5XzIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTM5XzImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTM5XzIiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTM5XzMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMzlfMy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMzk6IE1pc3Npb24gMyIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gMyBvZiBTZWFHbGlkZXIgMTM5LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMzlfM19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMzlfM19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzEzOV8zL2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTM5XzMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTM5XzMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTM5XzMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTM5XzYiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMzlfNi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMzk6IE1pc3Npb24gNiIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gNiBvZiBTZWFHbGlkZXIgMTM5LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMzlfNl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMzlfNl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzEzOV82L2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTM5XzYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTM5XzYmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTM5XzYiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTM5XzciLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMzlfNy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMzk6IE1pc3Npb24gNyIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gNyBvZiBTZWFHbGlkZXIgMTM5LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMzlfN19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMzlfN19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzEzOV83L2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTM5XzcucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTM5Xzcmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTM5XzciXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTM5XzgiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMzlfOC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMzk6IE1pc3Npb24gOCIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gOCBvZiBTZWFHbGlkZXIgMTM5LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMzlfOF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMzlfOF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzEzOV84L2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTM5XzgucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTM5Xzgmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTM5XzgiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnMTM5XzkiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2cxMzlfOS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciAxMzk6IE1pc3Npb24gOSIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gOSBvZiBTZWFHbGlkZXIgMTM5LlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2cxMzlfOV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2cxMzlfOV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzEzOV85L2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnMTM5XzkucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnMTM5Xzkmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnMTM5XzkiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnNTIzXzEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2c1MjNfMS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciA1MjM6IE1pc3Npb24gMSIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gMSBvZiBTZWFHbGlkZXIgNTIzLlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2c1MjNfMV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2c1MjNfMV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzUyM18xL2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnNTIzXzEucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnNTIzXzEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnNTIzXzEiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnNTIzXzMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2c1MjNfMy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciA1MjM6IE1pc3Npb24gMyIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gMyBvZiBTZWFHbGlkZXIgNTIzLlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2c1MjNfM19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2c1MjNfM19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzUyM18zL2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnNTIzXzMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnNTIzXzMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnNTIzXzMiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3NnNTIzXzQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvc2c1MjNfNC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIE9jZWFuIEdsaWRlcnM6IFNlYUdsaWRlciA1MjM6IE1pc3Npb24gNCIsICJBcyBhIHBhcnQgb2YgUGFjSU9PUywgb2NlYW4gZ2xpZGVycyBwcm92aWRlIHZlcnkgZGV0YWlsZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhlIHBoeXNpY2FsIGFuZCBjaGVtaWNhbCBjb25kaXRpb24gb2YgdGhlIHdhdGVycyBhcm91bmQgdGhlIEhhd2FpaWFuIElzbGFuZHMuIEFkZGl0aW9uYWxseSwgdGhlc2UgZGF0YSBnZXQgdXNlZCBpbiBjb21wdXRlciBtb2RlbHMgdG8gbWFrZSBwcmVkaWN0aW9ucyBhYm91dCBjdXJyZW50cy4gT2NlYW4gZ2xpZGVycyBhcmUgc21hbGwsIGZyZWUtc3dpbW1pbmcsIHVubWFubmVkIHZlaGljbGVzIHRoYXQgY2FuIGNydWlzZSB0aGUgb2NlYW4gZm9yIHNldmVyYWwgbW9udGhzIGdhdGhlcmluZyBpbmZvcm1hdGlvbiBhYm91dCB0aGUgdGVtcGVyYXR1cmUsIHNhbGluaXR5LCBhbmQgb3RoZXIgd2F0ZXIgcHJvcGVydGllcyBiZXR3ZWVuIHRoZSBzdXJmYWNlIGFuZCAxMDAwIG0gZGVwdGguIEEgcHJlc3N1cmUgc2Vuc29yIG9uIHRoZSBnbGlkZXIgaXMgYWJsZSB0byByZWNvcmQgdGhlIGRlcHRoIHRocm91Z2hvdXQgdGhlIGRpdmUuIEJlY2F1c2UgZ2xpZGVycyBhcmUgdW5tYW5uZWQsIHRoZXkgY29tbXVuaWNhdGUgd2l0aCBzY2llbnRpc3RzIG9uIGxhbmQgd2hlbiB0aGV5IGFyZSBhdCB0aGUgc3VyZmFjZSB1c2luZyBhbiBhbnRlbm5hIG9uIHRoZSBlbmQgb2YgdGhlIGdsaWRlci4gVGhlIFNlYUdsaWRlciBhdXRvbm9tb3VzIHVuZGVyd2F0ZXIgdmVoaWNsZSAoQVVWKSB3YXMgZGVzaWduZWQgYXQgdGhlIFVuaXZlcnNpdHkgb2YgV2FzaGluZ3RvbiAoVVcpIEFwcGxpZWQgUGh5c2ljcyBMYWJvcmF0b3J5IChBUEwpLiBUaGVzZSBkYXRhIGFyZSB0YWtlbiBmcm9tIE1pc3Npb24gNCBvZiBTZWFHbGlkZXIgNTIzLlxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxudHJhamVjdG9yeVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbnRlbXBlcmF0dXJlIChzZWFfd2F0ZXJfdGVtcGVyYXR1cmUsIENlbHNpdXMpXG5jb25kdWN0aXZpdHkgKHNlYV93YXRlcl9lbGVjdHJpY2FsX2NvbmR1Y3Rpdml0eSwgUyBtLTEpXG5zYWxpbml0eSAoc2VhX3dhdGVyX3NhbGluaXR5LCAxZS0zKVxuZGVuc2l0eSAoc2VhX3dhdGVyX2RlbnNpdHksIGtnIG0tMylcbnByZXNzdXJlIChzZWFfd2F0ZXJfcHJlc3N1cmUsIGRiYXIpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvc2c1MjNfNF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvc2c1MjNfNF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9zZzUyM180L2luZGV4Lmpzb24iLCAiaHR0cDovL2hhaGFuYS5zb2VzdC5oYXdhaWkuZWR1L3NlYWdsaWRlcnMvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3NnNTIzXzQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXNnNTIzXzQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgInNnNTIzXzQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvV1FCLTA0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9XUUItMDQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvV1FCLTA0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlBhY0lPT1MgV2F0ZXIgUXVhbGl0eSBCdW95IDA0OiBIaWxvIEJheSwgQmlnIElzbGFuZCwgSGF3YWlpIiwgIlRoZSB3YXRlciBxdWFsaXR5IGJ1b3lzIGFyZSBwYXJ0IG9mIHRoZSBQYWNpZmljIElzbGFuZHMgT2NlYW4gT2JzZXJ2aW5nIFN5c3RlbSAoUGFjSU9PUykgYW5kIGFyZSBkZXNpZ25lZCB0byBtZWFzdXJlIGEgdmFyaWV0eSBvZiBvY2VhbiBwYXJhbWV0ZXJzIGF0IGZpeGVkIHBvaW50cy4gV1FCLTA0IGlzIGxvY2F0ZWQgaW4gSGlsbyBCYXkgb24gdGhlIGVhc3Qgc2lkZSBvZiB0aGUgQmlnIElzbGFuZC4gQ29udGludW91cyBzYW1wbGluZyBvZiB0aGlzIGFyZWEgcHJvdmlkZXMgYSByZWNvcmQgb2YgYmFzZWxpbmUgY29uZGl0aW9ucyBvZiB0aGUgY2hlbWljYWwgYW5kIGJpb2xvZ2ljYWwgZW52aXJvbm1lbnQgZm9yIGNvbXBhcmlzb24gd2hlbiB0aGVyZSBhcmUgcG9sbHV0aW9uIGV2ZW50cyBzdWNoIGFzIHN0b3JtIHJ1bm9mZiBvciBhIHNld2FnZSBzcGlsbC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuZGVwdGggKERpc3RhbmNlIGJlbG93IG1lYW4gc2VhIGxldmVsLCBtKVxuc3RhdGlvbl9uYW1lIChXUUItMDQ6IFBhY0lPT1MgV2F0ZXIgUXVhbGl0eSBCdW95IDA0OiBIaWxvIEJheSwgQmlnIElzbGFuZCwgSGF3YWlpKVxudGVtcGVyYXR1cmUgKHdhdGVyIHRlbXBlcmF0dXJlIChwcm9jZXNzZWQpLCBDZWxzaXVzKVxuc2FsaW5pdHkgKHNhbGluaXR5IFBTVSAocHJvY2Vzc2VkKSwgMSlcbnR1cmJpZGl0eSAodHVyYmlkaXR5IE5UVSAocHJvY2Vzc2VkKSwgMSlcbmNobG9yb3BoeWxsIChjaGxvcm9waHlsbCAocHJvY2Vzc2VkKSwgdWcvTClcbm94eWdlbiAoZGlzc29sdmVkIG94eWdlbiBjb25jZW50cmF0aW9uIChwcm9jZXNzZWQpLCBtZy9MKVxub3h5Z2VuX3NhdHVyYXRpb24gKGRpc3NvbHZlZCBveHlnZW4gc2F0dXJhdGlvbiAocHJvY2Vzc2VkKSwgJSlcbnBoIChwSCAocHJvY2Vzc2VkKSwgMSlcbnRlbXBlcmF0dXJlX3JhdyAod2F0ZXIgdGVtcGVyYXR1cmUgKHJhdyksIENlbHNpdXMpXG50ZW1wZXJhdHVyZV9kbV9xZCAod2F0ZXIgdGVtcGVyYXR1cmUgZGVsYXllZC1tb2RlIHF1YWxpdHkgZGVzY3JpcHRvciwgMClcbnRlbXBlcmF0dXJlX3FjX2FnZyAoUUFSVE9EIEFnZ3JlZ2F0ZS9Sb2xsdXAgVGVzdCAocHJvY2Vzc2VkKSwgMClcbnRlbXBlcmF0dXJlX3FjX2dhcCAoUUFSVE9EIEdhcCBUZXN0IChwcm9jZXNzZWQpLCAwKVxudGVtcGVyYXR1cmVfcWNfc3luIChRQVJUT0QgU3ludGF4IFRlc3QgKHByb2Nlc3NlZCksIDApXG50ZW1wZXJhdHVyZV9xY19sb2MgKFFBUlRPRCBMb2NhdGlvbiBUZXN0IChwcm9jZXNzZWQpLCAwKVxudGVtcGVyYXR1cmVfcWNfcm5nIChRQVJUT0QgR3Jvc3MgUmFuZ2UgVGVzdCAocHJvY2Vzc2VkKSwgMClcbnRlbXBlcmF0dXJlX3FjX2NsbSAoUUFSVE9EIENsaW1hdG9sb2d5IFRlc3QgKHByb2Nlc3NlZCksIDApXG50ZW1wZXJhdHVyZV9xY19zcGsgKFFBUlRPRCBTcGlrZSBUZXN0IChwcm9jZXNzZWQpLCAwKVxudGVtcGVyYXR1cmVfcWNfcnRjIChRQVJUT0QgUmF0ZSBvZiBDaGFuZ2UgVGVzdCAocHJvY2Vzc2VkKSwgMClcbnRlbXBlcmF0dXJlX3FjX2ZsdCAoUUFSVE9EIEZsYXQgTGluZSBUZXN0IChwcm9jZXNzZWQpLCAwKVxuLi4uICg5NCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9XUUItMDRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL1dRQi0wNF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9XUUItMDQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wYWNpb29zLmhhd2FpaS5lZHUvd2F0ZXIvd3FidW95LWhpbG8vIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL1dRQi0wNC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9V1FCLTA0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlBhY2lmaWMgSXNsYW5kcyBPY2VhbiBPYnNlcnZpbmcgU3lzdGVtIChQYWNJT09TKSIsICJXUUItMDQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvV1FCLTA1LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9XUUItMDUiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvV1FCLTA1LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlBhY0lPT1MgV2F0ZXIgUXVhbGl0eSBCdW95IDA1OiBQZWxla2FuZSBCYXksIEJpZyBJc2xhbmQsIEhhd2FpaSIsICJUaGUgd2F0ZXIgcXVhbGl0eSBidW95cyBhcmUgcGFydCBvZiB0aGUgUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIGFuZCBhcmUgZGVzaWduZWQgdG8gbWVhc3VyZSBhIHZhcmlldHkgb2Ygb2NlYW4gcGFyYW1ldGVycyBhdCBmaXhlZCBwb2ludHMuIFdRQi0wNSBpcyBsb2NhdGVkIGluIFBlbGVrYW5lIEJheSBuZWFyIEthd2FpaGFlIEhhcmJvciBvbiB0aGUgd2VzdCBzaWRlIG9mIHRoZSBCaWcgSXNsYW5kLiBDb250aW51b3VzIHNhbXBsaW5nIG9mIHRoaXMgYXJlYSBwcm92aWRlcyBhIHJlY29yZCBvZiBiYXNlbGluZSBjb25kaXRpb25zIG9mIHRoZSBjaGVtaWNhbCBhbmQgYmlvbG9naWNhbCBlbnZpcm9ubWVudCBmb3IgY29tcGFyaXNvbiB3aGVuIHRoZXJlIGFyZSBwb2xsdXRpb24gZXZlbnRzIHN1Y2ggYXMgc3Rvcm0gcnVub2ZmIG9yIGEgc2V3YWdlIHNwaWxsLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5kZXB0aCAoRGlzdGFuY2UgYmVsb3cgbWVhbiBzZWEgbGV2ZWwsIG0pXG5zdGF0aW9uX25hbWUgKFdRQi0wNTogUGFjSU9PUyBXYXRlciBRdWFsaXR5IEJ1b3kgMDU6IFBlbGVrYW5lIEJheSwgQmlnIElzbGFuZCwgSGF3YWlpKVxudGVtcGVyYXR1cmUgKHdhdGVyIHRlbXBlcmF0dXJlIChwcm9jZXNzZWQpLCBDZWxzaXVzKVxuc2FsaW5pdHkgKHNhbGluaXR5IFBTVSAocHJvY2Vzc2VkKSwgMSlcbnR1cmJpZGl0eSAodHVyYmlkaXR5IE5UVSAocHJvY2Vzc2VkKSwgMSlcbmNobG9yb3BoeWxsIChjaGxvcm9waHlsbCAocHJvY2Vzc2VkKSwgdWcvTClcbm94eWdlbiAoZGlzc29sdmVkIG94eWdlbiBjb25jZW50cmF0aW9uIChwcm9jZXNzZWQpLCBtZy9MKVxub3h5Z2VuX3NhdHVyYXRpb24gKGRpc3NvbHZlZCBveHlnZW4gc2F0dXJhdGlvbiAocHJvY2Vzc2VkKSwgJSlcbnBoIChwSCAocHJvY2Vzc2VkKSwgMSlcbnRlbXBlcmF0dXJlX3JhdyAod2F0ZXIgdGVtcGVyYXR1cmUgKHJhdyksIENlbHNpdXMpXG50ZW1wZXJhdHVyZV9kbV9xZCAod2F0ZXIgdGVtcGVyYXR1cmUgZGVsYXllZC1tb2RlIHF1YWxpdHkgZGVzY3JpcHRvciwgMClcbnRlbXBlcmF0dXJlX3FjX2FnZyAoUUFSVE9EIEFnZ3JlZ2F0ZS9Sb2xsdXAgVGVzdCAocHJvY2Vzc2VkKSwgMClcbnRlbXBlcmF0dXJlX3FjX2dhcCAoUUFSVE9EIEdhcCBUZXN0IChwcm9jZXNzZWQpLCAwKVxudGVtcGVyYXR1cmVfcWNfc3luIChRQVJUT0QgU3ludGF4IFRlc3QgKHByb2Nlc3NlZCksIDApXG50ZW1wZXJhdHVyZV9xY19sb2MgKFFBUlRPRCBMb2NhdGlvbiBUZXN0IChwcm9jZXNzZWQpLCAwKVxudGVtcGVyYXR1cmVfcWNfcm5nIChRQVJUT0QgR3Jvc3MgUmFuZ2UgVGVzdCAocHJvY2Vzc2VkKSwgMClcbnRlbXBlcmF0dXJlX3FjX2NsbSAoUUFSVE9EIENsaW1hdG9sb2d5IFRlc3QgKHByb2Nlc3NlZCksIDApXG50ZW1wZXJhdHVyZV9xY19zcGsgKFFBUlRPRCBTcGlrZSBUZXN0IChwcm9jZXNzZWQpLCAwKVxudGVtcGVyYXR1cmVfcWNfcnRjIChRQVJUT0QgUmF0ZSBvZiBDaGFuZ2UgVGVzdCAocHJvY2Vzc2VkKSwgMClcbnRlbXBlcmF0dXJlX3FjX2ZsdCAoUUFSVE9EIEZsYXQgTGluZSBUZXN0IChwcm9jZXNzZWQpLCAwKVxuLi4uICg5NCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9XUUItMDVfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL1dRQi0wNV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9XUUItMDUvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wYWNpb29zLmhhd2FpaS5lZHUvd2F0ZXIvd3FidW95LXBlbGVrYW5lLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9XUUItMDUucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPVdRQi0wNSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJQYWNpZmljIElzbGFuZHMgT2NlYW4gT2JzZXJ2aW5nIFN5c3RlbSAoUGFjSU9PUykiLCAiV1FCLTA1Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0FXUy1ITkxQaWVyMS5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvQVdTLUhOTFBpZXIxIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0FXUy1ITkxQaWVyMS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJQYWNJT09TIFdlYXRoZXIgU3RhdGlvbjogSG9ub2x1bHUgSGFyYm9yIEVudHJhbmNlLCBPYWh1LCBIYXdhaWkiLCAiVGhlIFBhY2lmaWMgSXNsYW5kcyBPY2VhbiBPYnNlcnZpbmcgU3lzdGVtIChQYWNJT09TKSBvcGVyYXRlcyBhIERhdmlzIEluc3RydW1lbnRzIGF1dG9tYXRpYyB3ZWF0aGVyIHN0YXRpb24gKEFXUykgbmVhciB0aGUgZW50cmFuY2UgdG8gSG9ub2x1bHUgSGFyYm9yIG9uIHRoZSBsZWV3YXJkICh3ZXN0ZXJuKSBjb2FzdCBvZiBPYWh1IGluIEhhd2FpaSB0byBhaWQgd2l0aCBuYXZpZ2F0aW9uLiBUaGUgc3RhdGlvbiByZWNvcmRzIG1lYXN1cmVtZW50cyBldmVyeSA1IG1pbnV0ZXMgb2YgYWlyIHRlbXBlcmF0dXJlLCB3aW5kIHNwZWVkIGFuZCBkaXJlY3Rpb24sIHByZWNpcGl0YXRpb24sIHJlbGF0aXZlIGh1bWlkaXR5LCBhbmQgYWlyIHByZXNzdXJlLiBTZW5zb3JzIGFyZSBsb2NhdGVkIGF0IFBpZXIgMSwgaW5zdGFsbGVkIG9uIGEgdG93ZXIgYXQgYW4gZWxldmF0aW9uIG9mIDY0IGZlZXQgKDE5LjUgbWV0ZXJzKSBhYm92ZSBzZWEgbGV2ZWwuIFRoZSBzdGF0aW9uIGlzIG93bmVkIGJ5IHRoZSBIYXdhaWkgUGlsb3RzIEFzc29jaWF0aW9uIChIUEEpLiBQYWNJT09TIG1haW50YWlucyB0aGUgc3RhdGlvbiBhbmQgcHJvdmlkZXMgZGF0YSBhY2Nlc3MuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmFsdGl0dWRlIChEaXN0YW5jZSBhYm92ZSBtZWFuIHNlYSBsZXZlbCwgbSlcbnN0YXRpb25fbmFtZSAoQVdTLUhOTFBpZXIxOiBQYWNJT09TIFdlYXRoZXIgU3RhdGlvbjogSG9ub2x1bHUgSGFyYm9yIEVudHJhbmNlLCBPYWh1LCBIYXdhaWkpXG5haXJfdGVtcGVyYXR1cmUgKGFpciB0ZW1wZXJhdHVyZSAocHJvY2Vzc2VkKSwgQ2Vsc2l1cylcbndpbmRfc3BlZWQgKHdpbmQgc3BlZWQgKHByb2Nlc3NlZCksIG0vcylcbmd1c3Rfc3BlZWQgKGd1c3Qgc3BlZWQgKHByb2Nlc3NlZCksIG0vcylcbndpbmRfZnJvbV9kaXJlY3Rpb24gKHdpbmQgZGlyZWN0aW9uIChwcm9jZXNzZWQpLCBkZWdyZWVzKVxucmFpbmZhbGxfcmF0ZSAocmFpbiByYXRlIChwcm9jZXNzZWQpLCBtbS9oKVxucmVsYXRpdmVfaHVtaWRpdHkgKHJlbGF0aXZlIGh1bWlkaXR5IChwcm9jZXNzZWQpLCAlKVxuYWlyX3ByZXNzdXJlIChhaXIgcHJlc3N1cmUgKHByb2Nlc3NlZCksIG1pbGxpYmFycylcbmFpcl90ZW1wZXJhdHVyZV9yYXcgKGFpciB0ZW1wZXJhdHVyZSAocmF3KSwgQ2Vsc2l1cylcbmFpcl90ZW1wZXJhdHVyZV9kbV9xZCAoYWlyIHRlbXBlcmF0dXJlIGRlbGF5ZWQtbW9kZSBxdWFsaXR5IGRlc2NyaXB0b3IsIDApXG5haXJfdGVtcGVyYXR1cmVfcWNfYWdnIChRQVJUT0QgQWdncmVnYXRlL1JvbGx1cCBUZXN0IChwcm9jZXNzZWQpLCAwKVxuYWlyX3RlbXBlcmF0dXJlX3FjX2dhcCAoUUFSVE9EIEdhcCBUZXN0IChwcm9jZXNzZWQpLCAwKVxuYWlyX3RlbXBlcmF0dXJlX3FjX3N5biAoUUFSVE9EIFN5bnRheCBUZXN0IChwcm9jZXNzZWQpLCAwKVxuYWlyX3RlbXBlcmF0dXJlX3FjX2xvYyAoUUFSVE9EIExvY2F0aW9uIFRlc3QgKHByb2Nlc3NlZCksIDApXG5haXJfdGVtcGVyYXR1cmVfcWNfcm5nIChRQVJUT0QgR3Jvc3MgUmFuZ2UgVGVzdCAocHJvY2Vzc2VkKSwgMClcbmFpcl90ZW1wZXJhdHVyZV9xY19jbG0gKFFBUlRPRCBDbGltYXRvbG9neSBUZXN0IChwcm9jZXNzZWQpLCAwKVxuYWlyX3RlbXBlcmF0dXJlX3FjX3NwayAoUUFSVE9EIFNwaWtlIFRlc3QgKHByb2Nlc3NlZCksIDApXG4uLi4gKDkyIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL0FXUy1ITkxQaWVyMV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvQVdTLUhOTFBpZXIxX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL0FXUy1ITkxQaWVyMS9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBhY2lvb3MuaGF3YWlpLmVkdS93ZWF0aGVyL29icy1ob25vbHVsdS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvQVdTLUhOTFBpZXIxLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1BV1MtSE5MUGllcjEmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUGFjaWZpYyBJc2xhbmRzIE9jZWFuIE9ic2VydmluZyBTeXN0ZW0gKFBhY0lPT1MpIiwgIkFXUy1ITkxQaWVyMSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9DaHVrY2hpU2VhXzQ1NGFfMDM3YV9mY2Y0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9DaHVrY2hpU2VhXzQ1NGFfMDM3YV9mY2Y0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0NodWtjaGlTZWFfNDU0YV8wMzdhX2ZjZjQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUE1FTCBFY29GT0NJIENodWtjaGkgU2VhIHByb2ZpbGUgZGF0YSwgMjAxMC0yMDEyIiwgIlBhY2lmaWMgTWFyaW5lIEVudmlyb25tZW50YWwgTGFib3JhdG9yeSAoUE1FTCkgRmlzaGVyaWVzLU9jZWFub2dyYXBoeSBDb29wZXJhdGl2ZSBJbnZlc3RpZ2F0aW9ucyAoRk9DSSkgQ2h1a2NoaSBTZWEuIFBNRUwgRWNvRk9DSSBkYXRhIGZyb20gYSBsb2NhbCBzb3VyY2UuXG5cbmNkbV9kYXRhX3R5cGUgPSBQcm9maWxlXG5WQVJJQUJMRVM6XG5wcm9mXG5pZCAocHJvZmlsZSBpZClcbmNhc3QgKGNhc3QgbnVtYmVyKVxuY3J1aXNlIChDcnVpc2UgbmFtZSlcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sb25naXR1ZGUgKHN0YXRpb24gbG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sb24zNjAgKHN0YXRpb24gbG9uZ2l0dWRlIDM2MCwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKHN0YXRpb24gbGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG5kZXB0aCAobSlcbm9jZWFuX3RlbXBlcmF0dXJlXzEgKFRlbXBlcmF0dXJlIDFcciwgRGVncmVlX0MpXG5vY2Vhbl90ZW1wZXJhdHVyZV8yIChUZW1wZXJhdHVyZSAyXHIsIERlZ3JlZV9DKVxub2NlYW5fZGlzc29sdmVkX294eWdlbl9jb25jZW50cmF0aW9uXzFfbUxwZXJMIChkaXNzb2x2ZWQgb3h5Z2VuIGNvbmNlbnRyYXRpb24gMSBtTC9MXHIsIG1ML0wpXG5vY2Vhbl9kaXNzb2x2ZWRfb3h5Z2VuX2NvbmNlbnRyYXRpb25fMl9tTHBlckwgKGRpc3NvbHZlZCBveHlnZW4gY29uY2VudHJhdGlvbiAyIG1ML0xcciwgbUwvTClcbnBob3Rvc3ludGhldGljYWxseV9hY3RpdmVfcmFkaWF0aW9uIChQaG90b3N5bnRoZXRpY2FsbHkgQWN0aXZlIFJhZGlhdGlvblxyLCBtaWNyb0VpbiBjbS0yIHMtMSlcbm9jZWFuX2NobG9yb3BoeWxsX2FfY29uY2VudHJhdGlvbl9mYWN0b3J5Q2FsIChDaGxvcm9waHlsbCBhIENvbmNlbnRyYXRpb24gKEZhY3RvcnkgQ2FsaWJyYXRpb24pXHIsIG1pY3JvZ3JhbXMvTClcbm9jZWFuX2NobG9yb3BoeWxsX2ZsdW9yZXNjZW5jZV9yYXcgKFJhdyBDaGxvcm9waHlsbCBGbG91cmVzY2VuY2Vcciwgdm9sdHMpXG5vY2Vhbl9wcmFjdGljYWxfc2FsaW5pdHlfMSAoU2FsaW5pdHkgMSAoUFNVIFBTUy03OClcciwgUFNVKVxub2NlYW5fcHJhY3RpY2FsX3NhbGluaXR5XzIgKFNhbGluaXR5IDIgKFBTVSBQU1MtNzgpXHIsIFBTVSlcbm9jZWFuX3NpZ21hX3QgKFNpZ21hLVQsIGtnIG0tMylcbnNlYV93YXRlcl9udXRyaWVudF9ib3R0bGVfbnVtYmVyIChOdXRyaWVudHMgTmlza2luIEJvdHRsZSBOdW1iZXJcciwgbnVtYmVyKVxuc2VhX3dhdGVyX3Bob3NwaGF0ZV9jb25jZW50cmF0aW9uIChQTzQsIG1pY3JvbW9sZXMva2cpXG5zZWFfd2F0ZXJfc2lsaWNhdGVfY29uY2VudHJhdGlvbiAoU0ksIG1pY3JvbW9sZXMva2cpXG5zZWFfd2F0ZXJfbml0cmF0ZV9jb25jZW50cmF0aW9uIChOTzMsIG1pY3JvbW9sZXMva2cpXG5zZWFfd2F0ZXJfbml0cml0ZV9jb25jZW50cmF0aW9uIChOTzIsIG1pY3JvbW9sZXMva2cpXG5zZWFfd2F0ZXJfYW1tb25pdW1fY29uY2VudHJhdGlvbiAoTkg0LCBtaWNyb21vbGVzL2tnKVxub2NlYW5fZGlzc29sdmVkX294eWdlbl9jb25jZW50cmF0aW9uXzFfbU1wZXJrZyAoRGlzc29sdmVkIE94eWdlbiBDb25jZW50cmF0aW9uIDEgbU1vbGVzL2tnXHIsIG1pY3JvbW9sZXMva2cpXG5vY2Vhbl9kaXNzb2x2ZWRfb3h5Z2VuX2NvbmNlbnRyYXRpb25fMl9tTXBlcmtnIChEaXNzb2x2ZWQgT3h5Z2VuIENvbmNlbnRyYXRpb24gMiBtTW9sZXMva2dcciwgbWljcm9tb2xlcy9rZylcbm9jZWFuX294eWdlbl9zYXR1cmF0aW9uXzEgKE94eWdlbiBQZXJjZW50IFNhdHVyYXRpb24gMVxyLCBwZXJjZW50IHNhdHVyYXRpb24pXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvQ2h1a2NoaVNlYV80NTRhXzAzN2FfZmNmNF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvQ2h1a2NoaVNlYV80NTRhXzAzN2FfZmNmNF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9DaHVrY2hpU2VhXzQ1NGFfMDM3YV9mY2Y0L2luZGV4Lmpzb24iLCAid3d3LmVjb2ZvY2kubm9hYS5nb3YiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvQ2h1a2NoaVNlYV80NTRhXzAzN2FfZmNmNC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9Q2h1a2NoaVNlYV80NTRhXzAzN2FfZmNmNCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJQTUVMIEVjb0ZPQ0kiLCAiQ2h1a2NoaVNlYV80NTRhXzAzN2FfZmNmNCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hcmN0aWNSZXNjdWVEYXRhX2U1YmZfY2VmOF8zZjcyLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9hcmN0aWNSZXNjdWVEYXRhX2U1YmZfY2VmOF8zZjcyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2FyY3RpY1Jlc2N1ZURhdGFfZTViZl9jZWY4XzNmNzIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUE1FTCBFY29GT0NJIEVhcmx5IEFyY3RpYyBEYXRhLCAxOTg2LTE5OTEiLCAiUGFjaWZpYyBNYXJpbmUgRW52aXJvbm1lbnRhbCBMYWJvcmF0b3J5IChQTUVMKSBGaXNoZXJpZXMtT2NlYW5vZ3JhcGh5IENvb3BlcmF0aXZlIEludmVzdGlnYXRpb25zIChGT0NJKSBFYXJseSBBcmN0aWMgRGF0YSwgMTk4NyAtIDE5OTFcblxuY2RtX2RhdGFfdHlwZSA9IFByb2ZpbGVcblZBUklBQkxFUzpcbnByb2ZcbmlkIChwcm9maWxlIGlkKVxuY2FzdCAoY2FzdCBudW1iZXIpXG5jcnVpc2UgKENydWlzZSBuYW1lKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxvbmdpdHVkZSAoc3RhdGlvbiBsb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxvbjM2MCAoc3RhdGlvbiBsb25naXR1ZGUgMzYwLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoc3RhdGlvbiBsYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbmRlcHRoIChtKVxub2NlYW5fdGVtcGVyYXR1cmVfMSAoVGVtcGVyYXR1cmUgMVxyLCBEZWdyZWVfQylcbm9jZWFuX2NveF9zYWxpbml0eV8xIChzZWFfd2F0ZXJfcHJhY3RpY2FsX3NhbGluaXR5LCBQU1UpXG5vY2Vhbl9wcmFjdGljYWxfc2FsaW5pdHlfMSAoU2FsaW5pdHkgMSAoUFNVIFBTUy03OClcciwgUFNVKVxub2NlYW5fc2lnbWFfdCAoU2lnbWEtVCwga2cgbS0zKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2FyY3RpY1Jlc2N1ZURhdGFfZTViZl9jZWY4XzNmNzJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2FyY3RpY1Jlc2N1ZURhdGFfZTViZl9jZWY4XzNmNzJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vYXJjdGljUmVzY3VlRGF0YV9lNWJmX2NlZjhfM2Y3Mi9pbmRleC5qc29uIiwgInd3dy5lY29mb2NpLm5vYWEuZ292IiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2FyY3RpY1Jlc2N1ZURhdGFfZTViZl9jZWY4XzNmNzIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWFyY3RpY1Jlc2N1ZURhdGFfZTViZl9jZWY4XzNmNzImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUE1FTCBFY29GT0NJIiwgImFyY3RpY1Jlc2N1ZURhdGFfZTViZl9jZWY4XzNmNzIiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvU2hlbGlrb2ZfbGluZThfMzY5NV8wYWRhX2QwNjYuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL1NoZWxpa29mX2xpbmU4XzM2OTVfMGFkYV9kMDY2IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL1NoZWxpa29mX2xpbmU4XzM2OTVfMGFkYV9kMDY2LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlBNRUwgRWNvRk9DSSBTaGVsaWtvZiBMaW5lIDggRGF0YSwgMTk4MS1vcGVuIiwgIlBhY2lmaWMgTWFyaW5lIEVudmlyb25tZW50YWwgTGFib3JhdG9yeSAoUE1FTCkgRmlzaGVyaWVzLU9jZWFub2dyYXBoeSBDb29wZXJhdGl2ZSBJbnZlc3RpZ2F0aW9ucyAoRk9DSSkgU2hlbGlrb2YgTGluZSA4IERhdGFcblxuY2RtX2RhdGFfdHlwZSA9IFByb2ZpbGVcblZBUklBQkxFUzpcbnByb2ZcbmlkIChwcm9maWxlIGlkKVxuY2FzdCAoY2FzdCBudW1iZXIpXG5jcnVpc2UgKENydWlzZSBuYW1lKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxvbmdpdHVkZSAoc3RhdGlvbiBsb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxvbjM2MCAoc3RhdGlvbiBsb25naXR1ZGUgMzYwLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoc3RhdGlvbiBsYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbmRlcHRoIChtKVxub2NlYW5fdGVtcGVyYXR1cmVfMSAoVGVtcGVyYXR1cmUgMVxyLCBEZWdyZWVfQylcbm9jZWFuX2NveF9zYWxpbml0eV8xIChzZWFfd2F0ZXJfcHJhY3RpY2FsX3NhbGluaXR5LCBQU1UpXG5vY2Vhbl9jaGxvcm9waHlsbF9mbHVvcmVzY2VuY2VfcmF3IChSYXcgQ2hsb3JvcGh5bGwgRmxvdXJlc2NlbmNlXHIsIHZvbHRzKVxucGhvdG9zeW50aGV0aWNhbGx5X2FjdGl2ZV9yYWRpYXRpb24gKFBob3Rvc3ludGhldGljYWxseSBBY3RpdmUgUmFkaWF0aW9uXHIsIG1pY3JvRWluIGNtLTIgcy0xKVxub2NlYW5fc2lnbWFfdCAoU2lnbWEtVCwga2cgbS0zKVxub2NlYW5fY2hsb3JvcGh5bGxfYV9jb25jZW50cmF0aW9uX2ZhY3RvcnlDYWwgKENobG9yb3BoeWxsIGEgQ29uY2VudHJhdGlvbiAoRmFjdG9yeSBDYWxpYnJhdGlvbilcciwgbWljcm9ncmFtcy9MKVxub2NlYW5fZGlzc29sdmVkX294eWdlbl9jb25jZW50cmF0aW9uXzFfbU1wZXJrZyAoRGlzc29sdmVkIE94eWdlbiBDb25jZW50cmF0aW9uIDEgbU1vbGVzL2tnXHIsIG1pY3JvbW9sZXMva2cpXG5vY2Vhbl9kaXNzb2x2ZWRfb3h5Z2VuX2NvbmNlbnRyYXRpb25fMl9tTXBlcmtnIChtb2xlX2NvbmNlbnRyYXRpb25fb2ZfZGlzc29sdmVkX21vbGVjdWxhcl9veHlnZW5faW5fc2VhX3dhdGVyLCBtaWNyb21vbGVzL2tnKVxub2NlYW5fZHluYW1pY19oZWlnaHQgKER5bmFtaWMgSGVpZ2h0LCBkeW5hbWljIG1ldGVycylcbm9jZWFuX294eWdlbl9zYXR1cmF0aW9uXzEgKE94eWdlbiBQZXJjZW50IFNhdHVyYXRpb24gMVxyLCBwZXJjZW50IHNhdHVyYXRpb24pXG5vY2Vhbl9wcmFjdGljYWxfc2FsaW5pdHlfMSAoU2FsaW5pdHkgMSAoUFNVIFBTUy03OClcciwgUFNVKVxub2NlYW5fcHJhY3RpY2FsX3NhbGluaXR5XzIgKFNhbGluaXR5IDIgKFBTVSBQU1MtNzgpXHIsIFBTVSlcbm9jZWFuX3RlbXBlcmF0dXJlXzIgKFRlbXBlcmF0dXJlIDJcciwgRGVncmVlX0MpXG5waG90b3N5bnRoZXRpY2FsbHlfYWN0aXZlX3JhZGlhdGlvbl9yYXcgKFJhdyBQaG90b3N5bnRoZXRpY2FsbHkgQWN0aXZlIFJhZGlhdGlvblxyLCB2b2x0cylcbnRyYW5zbWl0dGFuY2VfcGVyY2VudGFnZSAoUGVyY2VudCBMaWdodCBUcmFuc21pdHRhbmNlLCBwZXJjZW50KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL1NoZWxpa29mX2xpbmU4XzM2OTVfMGFkYV9kMDY2X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9TaGVsaWtvZl9saW5lOF8zNjk1XzBhZGFfZDA2Nl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9TaGVsaWtvZl9saW5lOF8zNjk1XzBhZGFfZDA2Ni9pbmRleC5qc29uIiwgInd3dy5lY29mb2NpLm5vYWEuZ292IiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL1NoZWxpa29mX2xpbmU4XzM2OTVfMGFkYV9kMDY2LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1TaGVsaWtvZl9saW5lOF8zNjk1XzBhZGFfZDA2NiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJQTUVMIEVjb0ZPQ0kiLCAiU2hlbGlrb2ZfbGluZThfMzY5NV8wYWRhX2QwNjYiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwV0RDOTQxN25ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwV0RDOTQxN25ydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXREM5NDE3bnJ0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlJlc2VhcmNoIFNoaXAgQXRsYW50aWMgRXhwbG9yZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUXVhbGl0eSBDb250cm9sbGVkIiwgIlJlc2VhcmNoIFNoaXAgQXRsYW50aWMgRXhwbG9yZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LlxuJz1+JyBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS5cblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLlxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLlxuKERvbid0IGluY2x1ZGUgYmFja3NsYXNoZXMgaW4geW91ciBxdWVyeS4pXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgxOSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBXREM5NDE3bnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBXREM5NDE3bnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcFdEQzk0MTducnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwV0RDOTQxN25ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwV0RDOTQxN25ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwV0RDOTQxN25ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBLQVFQLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBLQVFQIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcEtBUVAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUmVzZWFyY2ggU2hpcCBBdGxhbnRpcyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiUmVzZWFyY2ggU2hpcCBBdGxhbnRpcyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuXG4nPX4nIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLlxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuXG4oRG9uJ3QgaW5jbHVkZSBiYWNrc2xhc2hlcyBpbiB5b3VyIHF1ZXJ5LilcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDMzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdVJlc2VhcmNoU2hpcEtBUVBfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdVJlc2VhcmNoU2hpcEtBUVBfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1UmVzZWFyY2hTaGlwS0FRUC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VSZXNlYXJjaFNoaXBLQVFQLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VSZXNlYXJjaFNoaXBLQVFQJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VSZXNlYXJjaFNoaXBLQVFQIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcEtBUVBucnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcEtBUVBucnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwS0FRUG5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJSZXNlYXJjaCBTaGlwIEF0bGFudGlzIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJSZXNlYXJjaCBTaGlwIEF0bGFudGlzIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS5cbic9ficgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci5cblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy5cbihEb24ndCBpbmNsdWRlIGJhY2tzbGFzaGVzIGluIHlvdXIgcXVlcnkuKVxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbi4uLiAoMzMgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1UmVzZWFyY2hTaGlwS0FRUG5ydF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1UmVzZWFyY2hTaGlwS0FRUG5ydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VSZXNlYXJjaFNoaXBLQVFQbnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdVJlc2VhcmNoU2hpcEtBUVBucnQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdVJlc2VhcmNoU2hpcEtBUVBucnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdVJlc2VhcmNoU2hpcEtBUVBucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwTkVQUC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwTkVQUCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBORVBQLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlJlc2VhcmNoIFNoaXAgSGVhbHkgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUXVhbGl0eSBDb250cm9sbGVkIiwgIlJlc2VhcmNoIFNoaXAgSGVhbHkgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LlxuJz1+JyBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS5cblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLlxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLlxuKERvbid0IGluY2x1ZGUgYmFja3NsYXNoZXMgaW4geW91ciBxdWVyeS4pXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgyMiBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBORVBQX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBORVBQX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcE5FUFAvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwTkVQUC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwTkVQUCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwTkVQUCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXREE3ODI3bnJ0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXREE3ODI3bnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdEQTc4MjducnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUmVzZWFyY2ggU2hpcCBLaWxvIE1vYW5hIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJSZXNlYXJjaCBTaGlwIEtpbG8gTW9hbmEgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LlxuJz1+JyBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS5cblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLlxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLlxuKERvbid0IGluY2x1ZGUgYmFja3NsYXNoZXMgaW4geW91ciBxdWVyeS4pXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgyMCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBXREE3ODI3bnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBXREE3ODI3bnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcFdEQTc4MjducnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwV0RBNzgyN25ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwV0RBNzgyN25ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwV0RBNzgyN25ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBLQ0VKLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBLQ0VKIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcEtDRUouZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUmVzZWFyY2ggU2hpcCBLbm9yciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiUmVzZWFyY2ggU2hpcCBLbm9yciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuXG4nPX4nIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLlxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuXG4oRG9uJ3QgaW5jbHVkZSBiYWNrc2xhc2hlcyBpbiB5b3VyIHF1ZXJ5LilcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDMzIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdVJlc2VhcmNoU2hpcEtDRUpfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdVJlc2VhcmNoU2hpcEtDRUpfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1UmVzZWFyY2hTaGlwS0NFSi9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VSZXNlYXJjaFNoaXBLQ0VKLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VSZXNlYXJjaFNoaXBLQ0VKJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VSZXNlYXJjaFNoaXBLQ0VKIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdDWDc0NDVucnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdDWDc0NDVucnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwV0NYNzQ0NW5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJSZXNlYXJjaCBTaGlwIExhdXJlbmNlIE0uIEdvdWxkIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJSZXNlYXJjaCBTaGlwIExhdXJlbmNlIE0uIEdvdWxkIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS5cbic9ficgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci5cblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy5cbihEb24ndCBpbmNsdWRlIGJhY2tzbGFzaGVzIGluIHlvdXIgcXVlcnkuKVxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbi4uLiAoMjEgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1UmVzZWFyY2hTaGlwV0NYNzQ0NW5ydF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1UmVzZWFyY2hTaGlwV0NYNzQ0NW5ydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VSZXNlYXJjaFNoaXBXQ1g3NDQ1bnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdVJlc2VhcmNoU2hpcFdDWDc0NDVucnQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdVJlc2VhcmNoU2hpcFdDWDc0NDVucnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdVJlc2VhcmNoU2hpcFdDWDc0NDVucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwV0VDQm5ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwV0VDQm5ydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXRUNCbnJ0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlJlc2VhcmNoIFNoaXAgTWVsdmlsbGUgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUXVhbGl0eSBDb250cm9sbGVkIiwgIlJlc2VhcmNoIFNoaXAgTWVsdmlsbGUgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LlxuJz1+JyBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS5cblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLlxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLlxuKERvbid0IGluY2x1ZGUgYmFja3NsYXNoZXMgaW4geW91ciBxdWVyeS4pXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgxOSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBXRUNCbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBXRUNCbnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcFdFQ0JucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwV0VDQm5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwV0VDQm5ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwV0VDQm5ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXQlAzMjEwLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXQlAzMjEwIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdCUDMyMTAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUmVzZWFyY2ggU2hpcCBOYXRoYW5pZWwgQi4gUGFsbWVyIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJSZXNlYXJjaCBTaGlwIE5hdGhhbmllbCBCLiBQYWxtZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LlxuJz1+JyBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS5cblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLlxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLlxuKERvbid0IGluY2x1ZGUgYmFja3NsYXNoZXMgaW4geW91ciBxdWVyeS4pXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgxOCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBXQlAzMjEwX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBXQlAzMjEwX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcFdCUDMyMTAvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwV0JQMzIxMC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwV0JQMzIxMCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwV0JQMzIxMCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXQlAzMjEwbnJ0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXQlAzMjEwbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdCUDMyMTBucnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUmVzZWFyY2ggU2hpcCBOYXRoYW5pZWwgQi4gUGFsbWVyIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJSZXNlYXJjaCBTaGlwIE5hdGhhbmllbCBCLiBQYWxtZXIgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LlxuJz1+JyBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS5cblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLlxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLlxuKERvbid0IGluY2x1ZGUgYmFja3NsYXNoZXMgaW4geW91ciBxdWVyeS4pXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgxOCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBXQlAzMjEwbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBXQlAzMjEwbnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcFdCUDMyMTBucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwV0JQMzIxMG5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwV0JQMzIxMG5ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwV0JQMzIxMG5ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXS1dCbnJ0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBXS1dCbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdLV0JucnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUmVzZWFyY2ggU2hpcCBOZXcgSG9yaXpvbiBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiUmVzZWFyY2ggU2hpcCBOZXcgSG9yaXpvbiBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuXG4nPX4nIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLlxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuXG4oRG9uJ3QgaW5jbHVkZSBiYWNrc2xhc2hlcyBpbiB5b3VyIHF1ZXJ5LilcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDI1IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdVJlc2VhcmNoU2hpcFdLV0JucnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdVJlc2VhcmNoU2hpcFdLV0JucnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1UmVzZWFyY2hTaGlwV0tXQm5ydC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VSZXNlYXJjaFNoaXBXS1dCbnJ0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VSZXNlYXJjaFNoaXBXS1dCbnJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VSZXNlYXJjaFNoaXBXS1dCbnJ0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdYQVEuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdYQVEiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwV1hBUS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJSZXNlYXJjaCBTaGlwIE9jZWFudXMgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUXVhbGl0eSBDb250cm9sbGVkIiwgIlJlc2VhcmNoIFNoaXAgT2NlYW51cyBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuXG4nPX4nIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLlxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuXG4oRG9uJ3QgaW5jbHVkZSBiYWNrc2xhc2hlcyBpbiB5b3VyIHF1ZXJ5LilcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDI5IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdVJlc2VhcmNoU2hpcFdYQVFfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdVJlc2VhcmNoU2hpcFdYQVFfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1UmVzZWFyY2hTaGlwV1hBUS9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VSZXNlYXJjaFNoaXBXWEFRLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VSZXNlYXJjaFNoaXBXWEFRJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VSZXNlYXJjaFNoaXBXWEFRIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdTUTI2NzRucnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFdTUTI2NzRucnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwV1NRMjY3NG5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJSZXNlYXJjaCBTaGlwIFJvYmVydCBHb3Jkb24gU3Byb3VsIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJSZXNlYXJjaCBTaGlwIFJvYmVydCBHb3Jkb24gU3Byb3VsIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS5cbic9ficgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci5cblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy5cbihEb24ndCBpbmNsdWRlIGJhY2tzbGFzaGVzIGluIHlvdXIgcXVlcnkuKVxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbi4uLiAoNyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBXU1EyNjc0bnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBXU1EyNjc0bnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcFdTUTI2NzRucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwV1NRMjY3NG5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwV1NRMjY3NG5ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwV1NRMjY3NG5ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBLQU9VbnJ0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBLQU9VbnJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcEtBT1VucnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUmVzZWFyY2ggU2hpcCBSb2dlciBSZXZlbGxlIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJSZXNlYXJjaCBTaGlwIFJvZ2VyIFJldmVsbGUgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LlxuJz1+JyBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS5cblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLlxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLlxuKERvbid0IGluY2x1ZGUgYmFja3NsYXNoZXMgaW4geW91ciBxdWVyeS4pXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgyMCBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBLQU9VbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBLQU9VbnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcEtBT1VucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwS0FPVW5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwS0FPVW5ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwS0FPVW5ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBWTEhKLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBWTEhKIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcFZMSEouZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUmVzZWFyY2ggU2hpcCBTb3V0aGVybiBTdXJ2ZXlvciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhLCBRdWFsaXR5IENvbnRyb2xsZWQiLCAiUmVzZWFyY2ggU2hpcCBTb3V0aGVybiBTdXJ2ZXlvciBVbmRlcndheSBNZXRlb3JvbG9naWNhbCBEYXRhIChkZWxheWVkIH4xMCBkYXlzIGZvciBxdWFsaXR5IGNvbnRyb2wpIGFyZSBmcm9tIHRoZSBTaGlwYm9hcmQgQXV0b21hdGVkIE1ldGVvcm9sb2dpY2FsIGFuZCBPY2Vhbm9ncmFwaGljIFN5c3RlbSAoU0FNT1MpIHByb2dyYW0uXG5cbklNUE9SVEFOVDogQUxXQVlTIFVTRSBUSEUgUVVBTElUWSBGTEFHIERBVEEhIEVhY2ggZGF0YSB2YXJpYWJsZSdzIG1ldGFkYXRhIGluY2x1ZGVzIGEgcWNpbmRleCBhdHRyaWJ1dGUgd2hpY2ggaW5kaWNhdGVzIGEgY2hhcmFjdGVyIG51bWJlciBpbiB0aGUgZmxhZyBkYXRhLiAgQUxXQVlTIGNoZWNrIHRoZSBmbGFnIGRhdGEgZm9yIGVhY2ggcm93IG9mIGRhdGEgdG8gc2VlIHdoaWNoIGRhdGEgaXMgZ29vZCAoZmxhZz0nWicpIGFuZCB3aGljaCBkYXRhIGlzbid0LiAgRm9yIGV4YW1wbGUsIHRvIGV4dHJhY3QganVzdCBkYXRhIHdoZXJlIHRpbWUgKHFjaW5kZXg9MSksIGxhdGl0dWRlIChxY2luZGV4PTIpLCBsb25naXR1ZGUgKHFjaW5kZXg9MyksIGFuZCBhaXJUZW1wZXJhdHVyZSAocWNpbmRleD0xMikgYXJlICdnb29kJyBkYXRhLCBpbmNsdWRlIHRoaXMgY29uc3RyYWludCBpbiB5b3VyIEVSRERBUCBxdWVyeTpcbiBmbGFnPX5cIlpaWi4uLi4uLi4uWi4qXCJcbmluIHlvdXIgcXVlcnkuXG4nPX4nIGluZGljYXRlcyB0aGlzIGlzIGEgcmVndWxhciBleHByZXNzaW9uIGNvbnN0cmFpbnQuXG5UaGUgJ1oncyBhcmUgbGl0ZXJhbCBjaGFyYWN0ZXJzLiAgSW4gdGhpcyBkYXRhc2V0LCAnWicgaW5kaWNhdGVzICdnb29kJyBkYXRhLlxuVGhlICcuJ3Mgc2F5IHRvIG1hdGNoIGFueSBjaGFyYWN0ZXIuXG5UaGUgJyonIHNheXMgdG8gbWF0Y2ggdGhlIHByZXZpb3VzIGNoYXJhY3RlciAwIG9yIG1vcmUgdGltZXMuXG4oRG9uJ3QgaW5jbHVkZSBiYWNrc2xhc2hlcyBpbiB5b3VyIHF1ZXJ5LilcblNlZSB0aGUgdHV0b3JpYWwgZm9yIHJlZ3VsYXIgZXhwcmVzc2lvbnMgYXRcbmh0dHBzOi8vd3d3LnZvZ2VsbGEuY29tL3R1dG9yaWFscy9KYXZhUmVndWxhckV4cHJlc3Npb25zL2FydGljbGUuaHRtbFxuXG5jZG1fZGF0YV90eXBlID0gUG9pbnRcblZBUklBQkxFUzpcbmNydWlzZV9pZFxuZXhwb2NvZGVcbmZhY2lsaXR5XG5JRFxuSU1PXG5wbGF0Zm9ybVxucGxhdGZvcm1fdmVyc2lvblxuc2l0ZVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDI3IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2ZzdVJlc2VhcmNoU2hpcFZMSEpfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2ZzdVJlc2VhcmNoU2hpcFZMSEpfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZnN1UmVzZWFyY2hTaGlwVkxISi9pbmRleC5qc29uIiwgImh0dHBzOi8vc2Ftb3MuY29hcHMuZnN1LmVkdS9odG1sLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9mc3VSZXNlYXJjaFNoaXBWTEhKLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1mc3VSZXNlYXJjaFNoaXBWTEhKJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIkZTVSIsICJmc3VSZXNlYXJjaFNoaXBWTEhKIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcEtURFFucnQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2ZzdVJlc2VhcmNoU2hpcEtURFFucnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwS1REUW5ydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJSZXNlYXJjaCBTaGlwIFQuIEcuIFRob21wc29uIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEsIFF1YWxpdHkgQ29udHJvbGxlZCIsICJSZXNlYXJjaCBTaGlwIFQuIEcuIFRob21wc29uIFVuZGVyd2F5IE1ldGVvcm9sb2dpY2FsIERhdGEgKGRlbGF5ZWQgfjEwIGRheXMgZm9yIHF1YWxpdHkgY29udHJvbCkgYXJlIGZyb20gdGhlIFNoaXBib2FyZCBBdXRvbWF0ZWQgTWV0ZW9yb2xvZ2ljYWwgYW5kIE9jZWFub2dyYXBoaWMgU3lzdGVtIChTQU1PUykgcHJvZ3JhbS5cblxuSU1QT1JUQU5UOiBBTFdBWVMgVVNFIFRIRSBRVUFMSVRZIEZMQUcgREFUQSEgRWFjaCBkYXRhIHZhcmlhYmxlJ3MgbWV0YWRhdGEgaW5jbHVkZXMgYSBxY2luZGV4IGF0dHJpYnV0ZSB3aGljaCBpbmRpY2F0ZXMgYSBjaGFyYWN0ZXIgbnVtYmVyIGluIHRoZSBmbGFnIGRhdGEuICBBTFdBWVMgY2hlY2sgdGhlIGZsYWcgZGF0YSBmb3IgZWFjaCByb3cgb2YgZGF0YSB0byBzZWUgd2hpY2ggZGF0YSBpcyBnb29kIChmbGFnPSdaJykgYW5kIHdoaWNoIGRhdGEgaXNuJ3QuICBGb3IgZXhhbXBsZSwgdG8gZXh0cmFjdCBqdXN0IGRhdGEgd2hlcmUgdGltZSAocWNpbmRleD0xKSwgbGF0aXR1ZGUgKHFjaW5kZXg9MiksIGxvbmdpdHVkZSAocWNpbmRleD0zKSwgYW5kIGFpclRlbXBlcmF0dXJlIChxY2luZGV4PTEyKSBhcmUgJ2dvb2QnIGRhdGEsIGluY2x1ZGUgdGhpcyBjb25zdHJhaW50IGluIHlvdXIgRVJEREFQIHF1ZXJ5OlxuIGZsYWc9flwiWlpaLi4uLi4uLi5aLipcIlxuaW4geW91ciBxdWVyeS5cbic9ficgaW5kaWNhdGVzIHRoaXMgaXMgYSByZWd1bGFyIGV4cHJlc3Npb24gY29uc3RyYWludC5cblRoZSAnWidzIGFyZSBsaXRlcmFsIGNoYXJhY3RlcnMuICBJbiB0aGlzIGRhdGFzZXQsICdaJyBpbmRpY2F0ZXMgJ2dvb2QnIGRhdGEuXG5UaGUgJy4ncyBzYXkgdG8gbWF0Y2ggYW55IGNoYXJhY3Rlci5cblRoZSAnKicgc2F5cyB0byBtYXRjaCB0aGUgcHJldmlvdXMgY2hhcmFjdGVyIDAgb3IgbW9yZSB0aW1lcy5cbihEb24ndCBpbmNsdWRlIGJhY2tzbGFzaGVzIGluIHlvdXIgcXVlcnkuKVxuU2VlIHRoZSB0dXRvcmlhbCBmb3IgcmVndWxhciBleHByZXNzaW9ucyBhdFxuaHR0cHM6Ly93d3cudm9nZWxsYS5jb20vdHV0b3JpYWxzL0phdmFSZWd1bGFyRXhwcmVzc2lvbnMvYXJ0aWNsZS5odG1sXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxuY3J1aXNlX2lkXG5leHBvY29kZVxuZmFjaWxpdHlcbklEXG5JTU9cbnBsYXRmb3JtXG5wbGF0Zm9ybV92ZXJzaW9uXG5zaXRlXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbi4uLiAoMTcgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZnN1UmVzZWFyY2hTaGlwS1REUW5ydF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZnN1UmVzZWFyY2hTaGlwS1REUW5ydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9mc3VSZXNlYXJjaFNoaXBLVERRbnJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zYW1vcy5jb2Fwcy5mc3UuZWR1L2h0bWwvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2ZzdVJlc2VhcmNoU2hpcEtURFFucnQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWZzdVJlc2VhcmNoU2hpcEtURFFucnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiRlNVIiwgImZzdVJlc2VhcmNoU2hpcEtURFFucnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwWk1GUm5ydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZnN1UmVzZWFyY2hTaGlwWk1GUm5ydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9mc3VSZXNlYXJjaFNoaXBaTUZSbnJ0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlJlc2VhcmNoIFNoaXAgVGFuZ2Fyb2EgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSwgUXVhbGl0eSBDb250cm9sbGVkIiwgIlJlc2VhcmNoIFNoaXAgVGFuZ2Fyb2EgVW5kZXJ3YXkgTWV0ZW9yb2xvZ2ljYWwgRGF0YSAoZGVsYXllZCB+MTAgZGF5cyBmb3IgcXVhbGl0eSBjb250cm9sKSBhcmUgZnJvbSB0aGUgU2hpcGJvYXJkIEF1dG9tYXRlZCBNZXRlb3JvbG9naWNhbCBhbmQgT2NlYW5vZ3JhcGhpYyBTeXN0ZW0gKFNBTU9TKSBwcm9ncmFtLlxuXG5JTVBPUlRBTlQ6IEFMV0FZUyBVU0UgVEhFIFFVQUxJVFkgRkxBRyBEQVRBISBFYWNoIGRhdGEgdmFyaWFibGUncyBtZXRhZGF0YSBpbmNsdWRlcyBhIHFjaW5kZXggYXR0cmlidXRlIHdoaWNoIGluZGljYXRlcyBhIGNoYXJhY3RlciBudW1iZXIgaW4gdGhlIGZsYWcgZGF0YS4gIEFMV0FZUyBjaGVjayB0aGUgZmxhZyBkYXRhIGZvciBlYWNoIHJvdyBvZiBkYXRhIHRvIHNlZSB3aGljaCBkYXRhIGlzIGdvb2QgKGZsYWc9J1onKSBhbmQgd2hpY2ggZGF0YSBpc24ndC4gIEZvciBleGFtcGxlLCB0byBleHRyYWN0IGp1c3QgZGF0YSB3aGVyZSB0aW1lIChxY2luZGV4PTEpLCBsYXRpdHVkZSAocWNpbmRleD0yKSwgbG9uZ2l0dWRlIChxY2luZGV4PTMpLCBhbmQgYWlyVGVtcGVyYXR1cmUgKHFjaW5kZXg9MTIpIGFyZSAnZ29vZCcgZGF0YSwgaW5jbHVkZSB0aGlzIGNvbnN0cmFpbnQgaW4geW91ciBFUkREQVAgcXVlcnk6XG4gZmxhZz1+XCJaWlouLi4uLi4uLlouKlwiXG5pbiB5b3VyIHF1ZXJ5LlxuJz1+JyBpbmRpY2F0ZXMgdGhpcyBpcyBhIHJlZ3VsYXIgZXhwcmVzc2lvbiBjb25zdHJhaW50LlxuVGhlICdaJ3MgYXJlIGxpdGVyYWwgY2hhcmFjdGVycy4gIEluIHRoaXMgZGF0YXNldCwgJ1onIGluZGljYXRlcyAnZ29vZCcgZGF0YS5cblRoZSAnLidzIHNheSB0byBtYXRjaCBhbnkgY2hhcmFjdGVyLlxuVGhlICcqJyBzYXlzIHRvIG1hdGNoIHRoZSBwcmV2aW91cyBjaGFyYWN0ZXIgMCBvciBtb3JlIHRpbWVzLlxuKERvbid0IGluY2x1ZGUgYmFja3NsYXNoZXMgaW4geW91ciBxdWVyeS4pXG5TZWUgdGhlIHR1dG9yaWFsIGZvciByZWd1bGFyIGV4cHJlc3Npb25zIGF0XG5odHRwczovL3d3dy52b2dlbGxhLmNvbS90dXRvcmlhbHMvSmF2YVJlZ3VsYXJFeHByZXNzaW9ucy9hcnRpY2xlLmh0bWxcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5jcnVpc2VfaWRcbmV4cG9jb2RlXG5mYWNpbGl0eVxuSURcbklNT1xucGxhdGZvcm1cbnBsYXRmb3JtX3ZlcnNpb25cbnNpdGVcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgxNyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9mc3VSZXNlYXJjaFNoaXBaTUZSbnJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9mc3VSZXNlYXJjaFNoaXBaTUZSbnJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2ZzdVJlc2VhcmNoU2hpcFpNRlJucnQvaW5kZXguanNvbiIsICJodHRwczovL3NhbW9zLmNvYXBzLmZzdS5lZHUvaHRtbC8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZnN1UmVzZWFyY2hTaGlwWk1GUm5ydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZnN1UmVzZWFyY2hTaGlwWk1GUm5ydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJGU1UiLCAiZnN1UmVzZWFyY2hTaGlwWk1GUm5ydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9GRURfUm9ja2Zpc2hfQ2F0Y2guc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL0ZFRF9Sb2NrZmlzaF9DYXRjaCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9GRURfUm9ja2Zpc2hfQ2F0Y2guZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUm9ja2Zpc2ggUmVjcnVpdG1lbnQgYW5kIEVjb3N5c3RlbSBBc3Nlc3NtZW50IFN1cnZleSwgQ2F0Y2ggRGF0YSIsICJUaGUgRmlzaGVyaWVzIEVjb2xvZ3kgRGl2aXNpb24gKEZFRCwgaHR0cHM6Ly9zd2ZzYy5ub2FhLmdvdi9Hcm91bmRmaXNoQW5hbHlzaXMvKSBvZiB0aGUgU291dGh3ZXN0IEZpc2hlcmllcyBTY2llbmNlIENlbnRlciAoU1dGU0MpIGhhcyBjb25kdWN0ZWQgYSBtaWR3YXRlciB0cmF3bCBzdXJ2ZXkgb2ZmIGNlbnRyYWwgQ2FsaWZvcm5pYSBzaW5jZSAxOTgzIHdpdGggdGhlIHByaW1hcnkgZ29hbCBvZiBkZXZlbG9waW5nIHByZS1yZWNydWl0IGluZGljZXMgZm9yIHlvdW5nLW9mLXRoZS15ZWFyIChZT1kpIHJvY2tmaXNoIChTZWJhc3RlcyBzcHAuKS4gVGhlIHN1cnZleSBhbHNvIHNhbXBsZXMgbnVtZXJvdXMgb3RoZXIgY29tcG9uZW50cyBvZiB0aGUgZXBpcGVsYWdpYyBtaWNyb25la3RvbiwgaW5jbHVkaW5nIG90aGVyIFlPWSBncm91bmRmaXNoIChzdWNoIGFzIFBhY2lmaWMgaGFrZSwgTWVybHVjY2l1cyBwcm9kdWN0dXMsIGFuZCBzYW5kZGFiLCBDaXRoYXJpY2h0aHlzIHNwcCApLCBjb2FzdGFsIHBlbGFnaWMgZmlzaGVzIChzdWNoIGFzIFBhY2lmaWMgc2FyZGluZSwgU2FyZGlub3BzIHNhZ2F4LCBhbmQgbm9ydGhlcm4gYW5jaG92eSwgRW5ncmF1bGlzIG1vcmRheCkgYW5kIG90aGVyIGZvcmFnZSBzcGVjaWVzLiAgQWRkaXRpb25hbCBkZXRhaWxzIHJlZ2FyZGluZyB0aGUgc3VydmV5IG1ldGhvZHMgYW5kIHJlc3VsdHMgYXJlIGRlc2NyaWJlZCBpbiBSYWxzdG9uIGV0IGFsLiAoMjAxNSkgYW5kIFNha3VtYSBldCBhbC4gKGh0dHA6Ly9jYWxjb2ZpLm9yZy9wdWJsaWNhdGlvbnMvY2FsY29maXJlcG9ydHMvdjU3L1ZvbDU3LVNha3VtYV9wYWdlcy4xNjMtMTgzLnBkZikuIFJhbHN0b24sIFMuLCBKLkMuIEZpZWxkIGFuZCBLLlMuIFNha3VtYS4gMjAxNS4gTG9uZ3Rlcm0gdmFyaWF0aW9uIGluIGEgY2VudHJhbCBDYWxpZm9ybmlhIHBlbGFnaWMgZm9yYWdlIGFzc2VtYmxhZ2UuIEpvdXJuYWwgb2YgTWFyaW5lIFN5c3RlbXMgMTQ2OiAyNi0zNy4gaHR0cHM6Ly9keC5kb2kub3JnLzEwLjEwMTYvai5qbWFyc3lzLjIwMTQuMDYuMDEzLiBTYWt1bWEsIEsuTS4sIEouQy4gRmllbGQsIEIuQi4gTWFyaW5vdmljLCBDLk4uIENhcnJpb24sIE4uSi4gTWFudHVhIGFuZCBTLiBSYWxzdG9uLiBJbiByZXZpc2lvbi4gQW5vbWFsb3VzIGVwaXBlbGFnaWMgbWljcm9uZWt0b24gYXNzZW1ibGFnZSBwYXR0ZXJucyBpbiB0aGUgbmVyaXRpYyB3YXRlcnMgb2YgdGhlIENhbGlmb3JuaWEgQ3VycmVudCBpbiBzcHJpbmcgMjAxNSBkdXJpbmcgYSBwZXJpb2Qgb2YgZXh0cmVtZSBvY2VhbiBjb25kaXRpb25zLiBDYWxDT0ZJIFJlcG9ydHMuXG5cbmNkbV9kYXRhX3R5cGUgPSBQb2ludFxuVkFSSUFCTEVTOlxudGltZSAoTmV0LWluIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5sYXRpdHVkZSAoTmV0LWluIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChOZXQtaW4gTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5jcnVpc2VcbmhhdWxfbm8gKEhhdWwgTnVtYmVyKVxudmVzc2VsXG5zdGF0aW9uIChTdGF0aW9uIE51bWJlcilcbmNhdGNoXG5zcGVjaWVzX2NvZGVcbmNvbW1vbl9uYW1lXG5zY2lfbmFtZSAoU2NpZW50aWZpYyBuYW1lKVxuc3BlY2llc19ncm91cFxubWF0dXJpdHlcbnNwZWNpZXNfbm90ZXNcbi4uLiAoMTQgbW9yZSB2YXJpYWJsZXMpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvRkVEX1JvY2tmaXNoX0NhdGNoX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9GRURfUm9ja2Zpc2hfQ2F0Y2hfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vRkVEX1JvY2tmaXNoX0NhdGNoL2luZGV4Lmpzb24iLCAiaHR0cDovL2NhbGNvZmkub3JnL3B1YmxpY2F0aW9ucy9jYWxjb2ZpcmVwb3J0cy92NTcvVm9sNTctU2FrdW1hX3BhZ2VzLjE2My0xODMucGRmIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL0ZFRF9Sb2NrZmlzaF9DYXRjaC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9RkVEX1JvY2tmaXNoX0NhdGNoJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk1GUyBTV0ZTQyBGRUQiLCAiRkVEX1JvY2tmaXNoX0NhdGNoIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ydGNjdGRDTUF5c2kiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcnRjY3RkQ01BeXNpLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlJUQyBDYXJxaW5leiBZU0kgQXJjaGl2ZWQgZGF0YSIsICJBcmNoaXZlZCBDTUEgZGF0YSAtIHVuZWRpdGVkIHZhcmlhYmxlIG5hbWVzXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxudGVtcGVyYXR1cmUgKFdhdGVyIFRlbXBlcmF0dXJlLCBkZWdyZWVzIEMpXG5zcGNvbmQgKHVTL2NtKVxuY29uZCAodVMvY20pXG5yZXNpc3QgKE9obSpjbSlcblREUyAoZy9MKVxuc2FsaW5pdHkgKHBwdClcbnByZXNzdXJlIChwc2lyKVxuZGVwdGggKG0pXG5waFxucGhtdiAocEgsIG1WKVxuY2hsICh1Zy9MKVxuY2hscmZ1IChjaGwsIFJGVSlcbnR1cmJpZCAoVHVyYmlkKywgTlRVKVxub2Rvc2F0ICglKVxub2RvIChtZy9MKVxuYmF0dCAoYmF0dGVyeSwgdm9sdHMpXG5zdGF0aW9uX2lkXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3J0Y2N0ZENNQXlzaV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcnRjY3RkQ01BeXNpX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3J0Y2N0ZENNQXlzaS9pbmRleC5qc29uIiwgImh0dHBzOi8vc2ZiZWFtcy5zZnN1LmVkdS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcnRjY3RkQ01BeXNpLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ydGNjdGRDTUF5c2kmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUlRDIiwgInJ0Y2N0ZENNQXlzaSJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcnRjY3RkQ01BeXNpcnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcnRjY3RkQ01BeXNpcnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUlRDIENhcnFpbmV6IFlTSSBSYXcgZGF0YSIsICJUZXN0IG9mIGluc3RhbGxpbmcgRVJEREFQIG9uIHRvcCBvZiBZU0kgb3V0cHV0LlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnRlbXBlcmF0dXJlIChXYXRlciBUZW1wZXJhdHVyZSwgZGVncmVlcyBDKVxuc3Bjb25kICh1Uy9jbSlcbmNvbmQgKHVTL2NtKVxucmVzaXN0IChPaG0qY20pXG5URFMgKGcvTClcbnNhbGluaXR5IChwcHQpXG5wcmVzc3VyZSAocHNpcilcbmRlcHRoIChtKVxucGhcbnBobXYgKHBILCBtVilcbmNobCAodWcvTClcbmNobHJmdSAoY2hsLCBSRlUpXG50dXJiaWQgKFR1cmJpZCssIE5UVSlcbm9kb3NhdCAoJSlcbm9kbyAobWcvTClcbmJhdHQgKGJhdHRlcnksIHZvbHRzKVxuc3RhdGlvbl9pZFxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ydGNjdGRDTUF5c2lydF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcnRjY3RkQ01BeXNpcnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcnRjY3RkQ01BeXNpcnQvaW5kZXguanNvbiIsICJodHRwczovL3NmYmVhbXMuc2ZzdS5lZHUvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3J0Y2N0ZENNQXlzaXJ0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ydGNjdGRDTUF5c2lydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJSVEMiLCAicnRjY3RkQ01BeXNpcnQiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3J0Y21ldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ydGNtZXQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiUlRDIE1ldFN0YXRpb24gQXJjaGl2ZWQgZGF0YSIsICJBcmNoaXZlZCBSVEMgTWV0IGRhdGEgLSB1bmVkaXRlZCB2YXJpYWJsZSBuYW1lc1xuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbkFpclRfQVZHIChBaXIgVGVtcGVyYXR1cmUsIGRlZ3JlZXMgQylcblJIIChSZWxhdGl2ZSBIdW1pZGl0eSwgJSlcbkJQX0FWRyAoQmFyb21ldHJpYyBQcmVzc3VyZSwgbWJhcilcblNscldfQVZHICh3YXR0cyBzLTFtLTIpXG5QQVJfRGVuX0FWRyAoXHUwMGMyXHUwMGI1bW9sIHMtMW0tMilcblJhaW5fVE9UIChtbSlcbldTX1NfV1ZUIChtL3MpXG5XU19VX1dWVCAobS9zKVxuV2luZERpcl9EVV9XVlQgKGRlZylcbldpbmREaXJfU0RVX1dWVCAoZGVnKVxuV1NfTUFYIChtL3MpXG5QQVJfRGVuXzJfQVZHIChcdTAwYzJcdTAwYjVtb2wgcy0xbS0yKVxuc3RhdGlvbl9pZFxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ydGNtZXRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3J0Y21ldF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ydGNtZXQvaW5kZXguanNvbiIsICJodHRwczovL3NmYmVhbXMuc2ZzdS5lZHUvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3J0Y21ldC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cnRjbWV0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlJUQyIsICJydGNtZXQiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3J0Y21ldHJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3J0Y21ldHJ0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlJUQyBNZXRTdGF0aW9uIHJlYWwgdGltZSBkYXRhIiwgIlJlYWwgVGltZSBSVEMgTWV0IGRhdGEgLSB1bmVkaXRlZCB2YXJpYWJsZSBuYW1lc1xuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbkFpclRfQVZHIChBaXIgVGVtcGVyYXR1cmUsIGRlZ3JlZXMgQylcblJIIChSZWxhdGl2ZSBIdW1pZGl0eSwgJSlcbkJQX0FWRyAoQmFyb21ldHJpYyBQcmVzc3VyZSwgbWJhcilcblNscldfQVZHICh3YXR0cyBzLTFtLTIpXG5QQVJfRGVuX0FWRyAoXHUwMGI1bW9sIHMtMW0tMilcblJhaW5fVE9UIChtbSlcbldTX1NfV1ZUIChtL3MpXG5XU19VX1dWVCAobS9zKVxuV2luZERpcl9EVV9XVlQgKGRlZylcbldpbmREaXJfU0RVX1dWVCAoZGVnKVxuV1NfTUFYIChtL3MpXG5zdGF0aW9uX2lkXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3J0Y21ldHJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9ydGNtZXRydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ydGNtZXRydC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2ZiZWFtcy5zZnN1LmVkdS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcnRjbWV0cnQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXJ0Y21ldHJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlJUQyIsICJydGNtZXRydCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcnRjY3RkU2VhYmlyZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ydGNjdGRTZWFiaXJkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlJUQyBTZWFiaXJkIEFyY2hpdmVkIGRhdGEiLCAiQXJjaGl2ZWQgUlRDIFNlYWJpcmQgZGF0YSAtIHVuZWRpdGVkIHZhcmlhYmxlIG5hbWVzXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxudGVtcGVyYXR1cmUgKFdhdGVyIFRlbXBlcmF0dXJlLCBkZWdyZWVzIEMpXG5jb25kICh1Uy9jbSlcbnByZXNzdXJlIChwc2lyKVxuc2t1ZmExIChWKVxuc2t1ZmEyIChWKVxueG1pcyAoJSlcbnBhciAobWljcm9Nb2wqbS0yKnMtMSlcbnNhbGluaXR5IChwc3MpXG5zaWdtYSAoa2cvbTMpXG5pbnN0X1NOIChJbnN0cnVtZW50IFNlcmlhbCBOdW1iZXIpXG5zdGF0aW9uX2lkXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3J0Y2N0ZFNlYWJpcmRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3J0Y2N0ZFNlYWJpcmRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcnRjY3RkU2VhYmlyZC9pbmRleC5qc29uIiwgImh0dHBzOi8vc2ZiZWFtcy5zZnN1LmVkdS8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcnRjY3RkU2VhYmlyZC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cnRjY3RkU2VhYmlyZCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJSVEMiLCAicnRjY3RkU2VhYmlyZCJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcnRjY3RkUlRDeXNpIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3J0Y2N0ZFJUQ3lzaS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJSVEMgWVNJIEFyY2hpdmVkIGRhdGEiLCAiQXJjaGl2ZWQgUlRDIGRhdGEgLSB1bmVkaXRlZCB2YXJpYWJsZSBuYW1lc1xuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnRlbXBlcmF0dXJlIChXYXRlciBUZW1wZXJhdHVyZSwgZGVncmVlcyBDKVxuc3Bjb25kICh1Uy9jbSlcbmNvbmQgKHVTL2NtKVxucmVzaXN0IChPaG0qY20pXG5URFMgKGcvTClcbnNhbGluaXR5IChwcHQpXG5wcmVzc3VyZSAocHNpcilcbmRlcHRoIChtKVxucGhcbnBobXYgKHBILCBtVilcbmNobCAodWcvTClcbmNobHJmdSAoY2hsLCBSRlUpXG50dXJiaWQgKFR1cmJpZCssIE5UVSlcbm9kb3NhdCAoJSlcbm9kbyAobWcvTClcbmJhdHQgKGJhdHRlcnksIHZvbHRzKVxuc3RhdGlvbl9pZFxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ydGNjdGRSVEN5c2lfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3J0Y2N0ZFJUQ3lzaV9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ydGNjdGRSVEN5c2kvaW5kZXguanNvbiIsICJodHRwczovL3NmYmVhbXMuc2ZzdS5lZHUvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3J0Y2N0ZFJUQ3lzaS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cnRjY3RkUlRDeXNpJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIlJUQyIsICJydGNjdGRSVEN5c2kiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3J0Y2N0ZFJUQ3lzaXJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3J0Y2N0ZFJUQ3lzaXJ0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlJUQyBZU0kgUmF3IGRhdGEiLCAiVGVzdCBvZiBpbnN0YWxsaW5nIEVSRERBUCBvbiB0b3Agb2YgWVNJIG91dHB1dC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG50ZW1wZXJhdHVyZSAoV2F0ZXIgVGVtcGVyYXR1cmUsIGRlZ3JlZXMgQylcbnNwY29uZCAodVMvY20pXG5jb25kICh1Uy9jbSlcbnJlc2lzdCAoT2htKmNtKVxuVERTIChnL0wpXG5zYWxpbml0eSAocHB0KVxucHJlc3N1cmUgKHBzaXIpXG5kZXB0aCAobSlcbnBoXG5waG12IChwSCwgbVYpXG5jaGwgKHVnL0wpXG5jaGxyZnUgKGNobCwgUkZVKVxudHVyYmlkIChUdXJiaWQrLCBOVFUpXG5vZG9zYXQgKCUpXG5vZG8gKG1nL0wpXG5iYXR0IChiYXR0ZXJ5LCB2b2x0cylcbnN0YXRpb25faWRcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcnRjY3RkUlRDeXNpcnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3J0Y2N0ZFJUQ3lzaXJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3J0Y2N0ZFJUQ3lzaXJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zZmJlYW1zLnNmc3UuZWR1LyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9ydGNjdGRSVEN5c2lydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cnRjY3RkUlRDeXNpcnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiUlRDIiwgInJ0Y2N0ZFJUQ3lzaXJ0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2dvbW9vc0J1b3kuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2dvbW9vc0J1b3kiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZ29tb29zQnVveS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJTZW5zb3IgRGF0YSBmcm9tIHRoZSBHb01PT1MgU09TIFNlcnZlciwgMjAwMC1wcmVzZW50IiwgIlRoZSBPQ0VBTlMgSUUgLS0gZm9ybWFsbHkgYXBwcm92ZWQgYXMgYW4gT0dDIEludGVyb3BlcmFiaWxpdHlcbkV4cGVyaW1lbnQgaW4gRGVjZW1iZXIgMjAwNiAtLSBlbmdhZ2VzIGRhdGEgbWFuYWdlcnMgYW5kIHNjaWVudGlzdHNcbmluIHRoZSBPY2Vhbi1PYnNlcnZpbmcgY29tbXVuaXR5IHRvIGFkdmFuY2UgdGhlaXIgdW5kZXJzdGFuZGluZyBhbmRcbmFwcGxpY2F0aW9uIG9mIHZhcmlvdXMgT0dDIHNwZWNpZmljYXRpb25zLCBzb2xpZGlmeSBkZW1vbnN0cmF0aW9uc1xuZm9yIE9jZWFuIFNjaWVuY2UgYXBwbGljYXRpb24gYXJlYXMsIGhhcmRlbiBzb2Z0d2FyZVxuaW1wbGVtZW50YXRpb25zLCBhbmQgcHJvZHVjZSBjYW5kaWRhdGUgT0dDIEJlc3QgUHJhY3RpY2VzIGRvY3VtZW50c1xudGhhdCBjYW4gYmUgdXNlZCB0byBpbmZvcm0gdGhlIGJyb2FkZXIgb2NlYW4tb2JzZXJ2aW5nIGNvbW11bml0eS5cblxuQmVjYXVzZSBvZiB0aGUgbmF0dXJlIG9mIFNPUyByZXF1ZXN0cywgcmVxdWVzdHMgZm9yIGRhdGEgTVVTVFxuaW5jbHVkZSBjb25zdHJhaW50cyBmb3IgdGhlIGxvbmdpdHVkZSwgbGF0aXR1ZGUsIHRpbWUsIGFuZC9vclxuc3RhdGlvbl9pZCB2YXJpYWJsZXMuXG5cbkluaXRpYXRvcnM6IFNVUkEgKGxlYWQpLCBUZXhhcyBBJk0gVW5pdmVyc2l0eSwgTUJBUkksIEdvTU9PUyBhbmRcblVuaWRhdGEuXG5cblNwZWNpZmljIGdvYWxzOlxuKiBDb21wYXJlIFNlbnNvciBPYnNlcnZhdGlvbiBTZXJ2aWNlIChTT1MpIGZyb20gdGhlIE9HQydzIFNlbnNvclxuICBXZWIgRW5hYmxlbWVudCAoU1dFKSBpbml0aWF0aXZlIHRvIHRoZSBXZWIgRmVhdHVyZSBTZXJ2aWNlIChXRlMpXG4gIGFzIGFwcGxpZWQgdG8gb2NlYW4gZGF0YSBpbiBhIHZhcmlldHkgb2YgZGF0YSBmb3JtYXRzIGluY2x1ZGluZ1xuICB0ZXh0IGZpbGVzLCBuZXRDREYgZmlsZXMsIHJlbGF0aW9uYWwgZGF0YWJhc2VzLCBhbmQgcG9zc2libHlcbiAgbmF0aXZlIHNlbnNvciBvdXRwdXQ7IChzZWUgRXhwZXJpbWVudCAjMSBmb3IgZGV0YWlscylcbiogTWFrZSB1c2Ugb2Ygc2VtYW50aWMgbWVkaWF0aW9uIHZpYSBTZW1hbnRpYyBXZWIgdGVjaG5vbG9naWVzIHRvXG4gIGFsbG93IHBsdXJhbGl0eSBvZiBpZGVudGlmaWNhdGlvbiBmb3Igc291cmNlIHR5cGVzIChwbGF0Zm9ybXNcbiAgYW5kIHNlbnNvcnMpIGFuZCBwaGVub21lbmEgdHlwZXM7XG4qIFRlc3QgYWdncmVnYXRpb24gc2VydmljZXMgYW5kIGNhY2hpbmcgc3RyYXRlZ2llcyB0byBwcm92aWRlXG4gIGVmZmljaWVudCBxdWVyaWVzO1xuKiBFeHBsb3JlIHBvc3NpYmxlIGVuaGFuY2VtZW50cyBvZiBUSFJFRERTIHNlcnZlciwgc28gdGhhdCBUSFJFRERTXG4gIHJlc2lkZW50IGRhdGEgc291cmNlcyBtaWdodCBiZSBtYWRlIGF2YWlsYWJsZSB2aWEgU09TIG9yIFdGUztcblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuLi4uICgxOSBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9nb21vb3NCdW95X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9nb21vb3NCdW95X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2dvbW9vc0J1b3kvaW5kZXguanNvbiIsICJodHRwczovL3RpZGVzYW5kY3VycmVudHMubm9hYS5nb3YvZ29tb29zLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZ29tb29zQnVveS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9Z29tb29zQnVveSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJHb01PT1MiLCAiZ29tb29zQnVveSJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9uZXJhY29vc1Nvcy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbmVyYWNvb3NTb3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbmVyYWNvb3NTb3MuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiU2Vuc29yIERhdGEgZnJvbSB0aGUgTkVSQUNPT1MgU09TIFNlcnZlciwgMjAwMC1wcmVzZW50IiwgIk5vcnRoZWFzdGVybiBSZWdpb25hbCBBc3NvY2lhdGlvbiBvZiBDb2FzdGFsIE9jZWFuXG4gICAgICAgIE9ic2VydmluZyBTeXN0ZW1zIChORVJBQ09PUykgU2Vuc29yIE9ic2VydmF0aW9uIFNlcnZpY2UgKFNPUylcbiAgICAgICAgVGhlIE9DRUFOUyBJRSAtLSBmb3JtYWxseSBhcHByb3ZlZCBhcyBhbiBPR0MgSW50ZXJvcGVyYWJpbGl0eVxuRXhwZXJpbWVudCBpbiBEZWNlbWJlciAyMDA2IC0tIGVuZ2FnZXMgZGF0YSBtYW5hZ2VycyBhbmQgc2NpZW50aXN0c1xuaW4gdGhlIE9jZWFuLU9ic2VydmluZyBjb21tdW5pdHkgdG8gYWR2YW5jZSB0aGVpciB1bmRlcnN0YW5kaW5nIGFuZFxuYXBwbGljYXRpb24gb2YgdmFyaW91cyBPR0Mgc3BlY2lmaWNhdGlvbnMsIHNvbGlkaWZ5IGRlbW9uc3RyYXRpb25zXG5mb3IgT2NlYW4gU2NpZW5jZSBhcHBsaWNhdGlvbiBhcmVhcywgaGFyZGVuIHNvZnR3YXJlXG5pbXBsZW1lbnRhdGlvbnMsIGFuZCBwcm9kdWNlIGNhbmRpZGF0ZSBPR0MgQmVzdCBQcmFjdGljZXMgZG9jdW1lbnRzXG50aGF0IGNhbiBiZSB1c2VkIHRvIGluZm9ybSB0aGUgYnJvYWRlciBvY2Vhbi1vYnNlcnZpbmcgY29tbXVuaXR5LlxuXG5CZWNhdXNlIG9mIHRoZSBuYXR1cmUgb2YgU09TIHJlcXVlc3RzLCByZXF1ZXN0cyBmb3IgZGF0YSBNVVNUXG5pbmNsdWRlIGNvbnN0cmFpbnRzIGZvciB0aGUgbG9uZ2l0dWRlLCBsYXRpdHVkZSwgdGltZSwgYW5kL29yXG5zdGF0aW9uX2lkIHZhcmlhYmxlcy5cblxuSW5pdGlhdG9yczogU1VSQSAobGVhZCksIFRleGFzIEEmTSBVbml2ZXJzaXR5LCBNQkFSSSwgR29NT09TIGFuZFxuVW5pZGF0YS5cblxuU3BlY2lmaWMgZ29hbHM6XG4qIENvbXBhcmUgU2Vuc29yIE9ic2VydmF0aW9uIFNlcnZpY2UgKFNPUykgZnJvbSB0aGUgT0dDJ3MgU2Vuc29yXG4gIFdlYiBFbmFibGVtZW50IChTV0UpIGluaXRpYXRpdmUgdG8gdGhlIFdlYiBGZWF0dXJlIFNlcnZpY2UgKFdGUylcbiAgYXMgYXBwbGllZCB0byBvY2VhbiBkYXRhIGluIGEgdmFyaWV0eSBvZiBkYXRhIGZvcm1hdHMgaW5jbHVkaW5nXG4gIHRleHQgZmlsZXMsIG5ldENERiBmaWxlcywgcmVsYXRpb25hbCBkYXRhYmFzZXMsIGFuZCBwb3NzaWJseVxuICBuYXRpdmUgc2Vuc29yIG91dHB1dDsgKHNlZSBFeHBlcmltZW50ICMxIGZvciBkZXRhaWxzKVxuKiBNYWtlIHVzZSBvZiBzZW1hbnRpYyBtZWRpYXRpb24gdmlhIFNlbWFudGljIFdlYiB0ZWNobm9sb2dpZXMgdG9cbiAgYWxsb3cgcGx1cmFsaXR5IG9mIGlkZW50aWZpY2F0aW9uIGZvciBzb3VyY2UgdHlwZXMgKHBsYXRmb3Jtc1xuICBhbmQgc2Vuc29ycykgYW5kIHBoZW5vbWVuYSB0eXBlcztcbiogVGVzdCBhZ2dyZWdhdGlvbiBzZXJ2aWNlcyBhbmQgY2FjaGluZyBzdHJhdGVnaWVzIHRvIHByb3ZpZGVcbiAgZWZmaWNpZW50IHF1ZXJpZXM7XG4qIEV4cGxvcmUgcG9zc2libGUgZW5oYW5jZW1lbnRzIG9mIFRIUkVERFMgc2VydmVyLCBzbyB0aGF0IFRIUkVERFNcbiAgcmVzaWRlbnQgZGF0YSBzb3VyY2VzIG1pZ2h0IGJlIG1hZGUgYXZhaWxhYmxlIHZpYSBTT1Mgb3IgV0ZTO1xuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4uLi4gKDE5IG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL25lcmFjb29zU29zX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9uZXJhY29vc1Nvc19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9uZXJhY29vc1Nvcy9pbmRleC5qc29uIiwgImh0dHA6Ly93d3cubmVyYWNvb3Mub3JnLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9uZXJhY29vc1Nvcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bmVyYWNvb3NTb3Mmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTkVSQUNPT1MiLCAibmVyYWNvb3NTb3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkRmVkUm9ja2Zpc2hDdGQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEZlZFJvY2tmaXNoQ3RkIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEZlZFJvY2tmaXNoQ3RkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlNXRlNDIEZFRCBNaWQgV2F0ZXIgVHJhd2wgSnV2ZW5pbGUgUm9ja2Zpc2ggU3VydmV5LCBDVEQgRGF0YSwgMTk4Ny0yMDE1IiwgIlNXRlNDIEZFRCBNaWQgV2F0ZXIgVHJhd2wgSnV2ZW5pbGUgUm9ja2Zpc2ggU3VydmV5OiBDVEQgRGF0YS5cblN1cnZleXMgaGF2ZSBiZWVuIGNvbmR1Y3RlZCBhbG9uZyB0aGUgY2VudHJhbCBDYWxpZm9ybmlhIGNvYXN0IGluIE1heS9KdW5lIFxuZXZlcnkgeWVhciBzaW5jZSAxOTgzLiBJbiAyMDA0IHRoZSBzdXJ2ZXkgYXJlYSB3YXMgZXhwYW5kZWQgdG8gY292ZXIgdGhlIFxuZW50aXJlIGNvYXN0IGZyb20gU2FuIERpZWdvIHRvIENhcGUgTWVuZG9jaW5vLiAgVGhlIHN1cnZleSBzYW1wbGVzIGEgc2VyaWVzIFxub2YgZml4ZWQgdHJhd2wgc3RhdGlvbnMgdXNpbmcgYSBtaWR3YXRlciB0cmF3bC4gVGhlIG1pZHdhdGVyIHRyYXdsIHN1cnZleSBcbmdlYXIgY2FwdHVyZXMgc2lnbmlmaWNhbnQgbnVtYmVycyBvZiBhcHByb3hpbWF0ZWx5IDEwIHJvY2tmaXNoIHNwZWNpZXMgZHVyaW5nXG50aGVpciBwZWxhZ2ljIGp1dmVuaWxlIHN0YWdlIChpLmUuLCA1MC0xNTAgZGF5cyBvbGQpLCBieSB3aGljaCB0aW1lIGFubnVhbFxucmVwcm9kdWN0aXZlIHN1Y2Nlc3MgaGFzIGJlZW4gZXN0YWJsaXNoZWQuIENhdGNoLXBlci11bml0LWVmZm9ydCBkYXRhIGZyb21cbnRoZSBzdXJ2ZXkgYXJlIGFuYWx5emVkIGFuZCBzZXJ2ZSBhcyB0aGUgYmFzaXMgZm9yIHByZWRpY3RpbmcgZnV0dXJlIFxucmVjcnVpdG1lbnQgdG8gcm9ja2Zpc2ggZmlzaGVyaWVzLiBSZXN1bHRzIGZvciBzZXZlcmFsIHNwZWNpZXMgKGUuZy4sIFxuYm9jYWNjaW8sIGNoaWxpcGVwcGVyIFtTLiBnb29kZWldLCBhbmQgd2lkb3cgcm9ja2Zpc2ggW1MuIGVudG9tZWxhc10pIGhhdmVcbnNob3duIHRoYXQgdGhlIHN1cnZleSBkYXRhIGNhbiBiZSB1c2VmdWwgaW4gcHJlZGljdGluZyB5ZWFyLWNsYXNzIHN0cmVuZ3RoXG5pbiBhZ2UtYmFzZWQgc3RvY2sgYXNzZXNzbWVudHMuXG5cblRoZSBzdXJ2ZXkncyBkYXRhIG9uIFlPWSBQYWNpZmljIHdoaXRpbmcgaGFzIGFsc28gYmVlbiB1c2VkIGluIHRoZSBzdG9ja1xuYXNzZXNzbWVudCBwcm9jZXNzLiBUbyBhc3Npc3QgaW4gb2J0YWluaW5nIGFkZGl0aW9uYWwgbm9ydGh3YXJkIHNwYXRpYWxcbmNvdmVyYWdlIG9mIFlPWSBQYWNpZmljIHdoaXRpbmcgb2ZmIE9yZWdvbiBhbmQgV2FzaGluZ3RvbiwgaW4gMjAwMSB0aGVcblBhY2lmaWMgV2hpdGluZyBDb25zZXJ2YXRpb24gQ29vcGVyYXRpdmUgaW4gY29vcGVyYXRpb24gd2l0aCB0aGUgTk9BQSBOTUZTXG5Ob3J0aHdlc3QgRmlzaGVyaWVzIFNjaWVuY2UgQ2VudGVyIGJlZ2FuIGEgbWlkd2F0ZXIgdHJhd2wgc3VydmV5IHBhdHRlcm5lZFxuYWZ0ZXIgdGhlIE5PQUEgTk1GUyBTV0ZTQyBGaXNoZXJpZXMgRWNvbG9neSBEaXZpc2lvbidzIChGRUQpIGV4aXN0aW5nIHN1cnZleS4gXG5Cb3RoIHN1cnZleXMgd29yayBjb29wZXJhdGl2ZWx5IHRvZ2V0aGVyIGVhY2ggeWVhciBpbiBvcmRlciB0byByZXNvbHZlIFxuaW50ZXJhbm51YWwgYWJ1bmRhbmNlIHBhdHRlcm5zIG9mIFlPWSByb2NrZmlzaCBhbmQgUGFjaWZpYyB3aGl0aW5nIG9uIGEgXG5jb2FzdHdpZGUgYmFzaXMsIHdoaWNoIHByb3ZpZGVzIGV4cGVkaWVudCwgY3JpdGljYWwgaW5mb3JtYXRpb24gdGhhdCBjYW4gYmUgXG51c2VkIGluIHRoZSBmaXNoZXJpZXMgbWFuYWdlbWVudCBwcm9jZXNzLlxuXG5UaGUgbGFyZ2UgcXVhbnRpdHkgb2YgcGh5c2ljYWwgZGF0YSBjb2xsZWN0ZWQgZHVyaW5nIHRoZSBzdXJ2ZXlzIChlLmcuLCBDVERcbndpdGggYXR0YWNoZWQgdHJhbnNpbWlzc29tZXRlciBhbmQgZmx1b3JvbWV0ZXIsIHRoZXJtb3NhbGlub21ldGVyLCBhbmQgQURDUClcbmhhdmUgcHJvdmlkZWQgYSBiZXR0ZXIgdW5kZXJzdGFuZGluZyBvZiB0aGUgaHlkcm9ncmFwaGljIGNvbmRpdGlvbnMgb2ZmIHRoZVxuQ2FsaWZvcm5pYSBjb2FzdCBhbmQgYW5hbHlzaXMgb2YgdGhlc2UgZGF0YSBoYXZlIGJlZW4gZGlzdHJpYnV0ZWQgdGhyb3VnaCB0aGVcbnB1YmxpY2F0aW9uIG9mIE5PQUEgTk1GUyBUZWNobmljYWwgTWVtb3JhbmRhLlxuXG5Gb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlIGh0dHBzOi8vc3dmc2Mubm9hYS5nb3YvR3JvdW5kZmlzaEFuYWx5c2lzLyBhbmRcbmh0dHA6Ly93d3cuc2FuY3R1YXJ5c2ltb24ub3JnL3Byb2plY3RzL3Byb2plY3RfaW5mby5waHA/cHJvamVjdElEPTEwMDExOFxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVByb2ZpbGVcblZBUklBQkxFUzpcbmNydWlzZVxuLi4uICgxNyBtb3JlIHZhcmlhYmxlcylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRGZWRSb2NrZmlzaEN0ZF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkRmVkUm9ja2Zpc2hDdGRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkRmVkUm9ja2Zpc2hDdGQvaW5kZXguanNvbiIsICJodHRwczovL3N3ZnNjLm5vYWEuZ292L0dyb3VuZGZpc2hBbmFseXNpcy8iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkRmVkUm9ja2Zpc2hDdGQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZEZlZFJvY2tmaXNoQ3RkJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgU1dGU0MgRkVEIiwgImVyZEZlZFJvY2tmaXNoQ3RkIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEZlZFJvY2tmaXNoU3RhdGlvbi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkRmVkUm9ja2Zpc2hTdGF0aW9uIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZEZlZFJvY2tmaXNoU3RhdGlvbi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJTV0ZTQyBGRUQgTWlkIFdhdGVyIFRyYXdsIEp1dmVuaWxlIFJvY2tmaXNoIFN1cnZleSwgU3VyZmFjZSBEYXRhLCAxOTg3LTIwMTUiLCAiU1dGU0MgRkVEIE1pZCBXYXRlciBUcmF3bCBKdXZlbmlsZSBSb2NrZmlzaCBTdXJ2ZXk6IFN0YXRpb24gSW5mb3JtYXRpb24gYW5kIFN1cmZhY2UgRGF0YS5cblN1cnZleXMgaGF2ZSBiZWVuIGNvbmR1Y3RlZCBhbG9uZyB0aGUgY2VudHJhbCBDYWxpZm9ybmlhIGNvYXN0IGluIE1heS9KdW5lIFxuZXZlcnkgeWVhciBzaW5jZSAxOTgzLiBJbiAyMDA0IHRoZSBzdXJ2ZXkgYXJlYSB3YXMgZXhwYW5kZWQgdG8gY292ZXIgdGhlIFxuZW50aXJlIGNvYXN0IGZyb20gU2FuIERpZWdvIHRvIENhcGUgTWVuZG9jaW5vLiAgVGhlIHN1cnZleSBzYW1wbGVzIGEgc2VyaWVzIFxub2YgZml4ZWQgdHJhd2wgc3RhdGlvbnMgdXNpbmcgYSBtaWR3YXRlciB0cmF3bC4gVGhlIG1pZHdhdGVyIHRyYXdsIHN1cnZleSBcbmdlYXIgY2FwdHVyZXMgc2lnbmlmaWNhbnQgbnVtYmVycyBvZiBhcHByb3hpbWF0ZWx5IDEwIHJvY2tmaXNoIHNwZWNpZXMgZHVyaW5nXG50aGVpciBwZWxhZ2ljIGp1dmVuaWxlIHN0YWdlIChpLmUuLCA1MC0xNTAgZGF5cyBvbGQpLCBieSB3aGljaCB0aW1lIGFubnVhbFxucmVwcm9kdWN0aXZlIHN1Y2Nlc3MgaGFzIGJlZW4gZXN0YWJsaXNoZWQuIENhdGNoLXBlci11bml0LWVmZm9ydCBkYXRhIGZyb21cbnRoZSBzdXJ2ZXkgYXJlIGFuYWx5emVkIGFuZCBzZXJ2ZSBhcyB0aGUgYmFzaXMgZm9yIHByZWRpY3RpbmcgZnV0dXJlIFxucmVjcnVpdG1lbnQgdG8gcm9ja2Zpc2ggZmlzaGVyaWVzLiBSZXN1bHRzIGZvciBzZXZlcmFsIHNwZWNpZXMgKGUuZy4sIFxuYm9jYWNjaW8sIGNoaWxpcGVwcGVyIFtTLiBnb29kZWldLCBhbmQgd2lkb3cgcm9ja2Zpc2ggW1MuIGVudG9tZWxhc10pIGhhdmVcbnNob3duIHRoYXQgdGhlIHN1cnZleSBkYXRhIGNhbiBiZSB1c2VmdWwgaW4gcHJlZGljdGluZyB5ZWFyLWNsYXNzIHN0cmVuZ3RoXG5pbiBhZ2UtYmFzZWQgc3RvY2sgYXNzZXNzbWVudHMuXG5cblRoZSBzdXJ2ZXkncyBkYXRhIG9uIFlPWSBQYWNpZmljIHdoaXRpbmcgaGFzIGFsc28gYmVlbiB1c2VkIGluIHRoZSBzdG9ja1xuYXNzZXNzbWVudCBwcm9jZXNzLiBUbyBhc3Npc3QgaW4gb2J0YWluaW5nIGFkZGl0aW9uYWwgbm9ydGh3YXJkIHNwYXRpYWxcbmNvdmVyYWdlIG9mIFlPWSBQYWNpZmljIHdoaXRpbmcgb2ZmIE9yZWdvbiBhbmQgV2FzaGluZ3RvbiwgaW4gMjAwMSB0aGVcblBhY2lmaWMgV2hpdGluZyBDb25zZXJ2YXRpb24gQ29vcGVyYXRpdmUgaW4gY29vcGVyYXRpb24gd2l0aCB0aGUgTk9BQSBOTUZTXG5Ob3J0aHdlc3QgRmlzaGVyaWVzIFNjaWVuY2UgQ2VudGVyIGJlZ2FuIGEgbWlkd2F0ZXIgdHJhd2wgc3VydmV5IHBhdHRlcm5lZFxuYWZ0ZXIgdGhlIE5PQUEgTk1GUyBTV0ZTQyBGaXNoZXJpZXMgRWNvbG9neSBEaXZpc2lvbidzIChGRUQpIGV4aXN0aW5nIHN1cnZleS4gXG5Cb3RoIHN1cnZleXMgd29yayBjb29wZXJhdGl2ZWx5IHRvZ2V0aGVyIGVhY2ggeWVhciBpbiBvcmRlciB0byByZXNvbHZlIFxuaW50ZXJhbm51YWwgYWJ1bmRhbmNlIHBhdHRlcm5zIG9mIFlPWSByb2NrZmlzaCBhbmQgUGFjaWZpYyB3aGl0aW5nIG9uIGEgXG5jb2FzdHdpZGUgYmFzaXMsIHdoaWNoIHByb3ZpZGVzIGV4cGVkaWVudCwgY3JpdGljYWwgaW5mb3JtYXRpb24gdGhhdCBjYW4gYmUgXG51c2VkIGluIHRoZSBmaXNoZXJpZXMgbWFuYWdlbWVudCBwcm9jZXNzLlxuXG5UaGUgbGFyZ2UgcXVhbnRpdHkgb2YgcGh5c2ljYWwgZGF0YSBjb2xsZWN0ZWQgZHVyaW5nIHRoZSBzdXJ2ZXlzIChlLmcuLCBDVERcbndpdGggYXR0YWNoZWQgdHJhbnNpbWlzc29tZXRlciBhbmQgZmx1b3JvbWV0ZXIsIHRoZXJtb3NhbGlub21ldGVyLCBhbmQgQURDUClcbmhhdmUgcHJvdmlkZWQgYSBiZXR0ZXIgdW5kZXJzdGFuZGluZyBvZiB0aGUgaHlkcm9ncmFwaGljIGNvbmRpdGlvbnMgb2ZmIHRoZVxuQ2FsaWZvcm5pYSBjb2FzdCBhbmQgYW5hbHlzaXMgb2YgdGhlc2UgZGF0YSBoYXZlIGJlZW4gZGlzdHJpYnV0ZWQgdGhyb3VnaCB0aGVcbnB1YmxpY2F0aW9uIG9mIE5PQUEgTk1GUyBUZWNobmljYWwgTWVtb3JhbmRhLlxuXG5Gb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlIGh0dHBzOi8vc3dmc2Mubm9hYS5nb3YvR3JvdW5kZmlzaEFuYWx5c2lzLyBhbmRcbmh0dHA6Ly93d3cuc2FuY3R1YXJ5c2ltb24ub3JnL3Byb2plY3RzL3Byb2plY3RfaW5mby5waHA/cHJvamVjdElEPTEwMDExOFxuXG5jZG1fZGF0YV90eXBlID0gVHJhamVjdG9yeVxuVkFSSUFCTEVTOlxuY3J1aXNlXG4uLi4gKDExIG1vcmUgdmFyaWFibGVzKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZEZlZFJvY2tmaXNoU3RhdGlvbl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkRmVkUm9ja2Zpc2hTdGF0aW9uX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZEZlZFJvY2tmaXNoU3RhdGlvbi9pbmRleC5qc29uIiwgImh0dHBzOi8vc3dmc2Mubm9hYS5nb3YvR3JvdW5kZmlzaEFuYWx5c2lzLyIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRGZWRSb2NrZmlzaFN0YXRpb24ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZEZlZFJvY2tmaXNoU3RhdGlvbiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIEZFRCIsICJlcmRGZWRSb2NrZmlzaFN0YXRpb24iXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkUHJkQ3RkLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRQcmRDdGQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkUHJkQ3RkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlNXRlNDIFByb3RlY3RlZCBSZXNvdXJjZXMgRGl2aXNpb24gQ1REIERhdGEiLCAiRGF0YSBmcm9tIE5PQUEgU1dGU0MgUHJvdGVjdGVkIFJlc291cmNlcyBEaXZpc2lvbiAoUFJEKS5cblxuY2RtX2RhdGFfdHlwZSA9IFRyYWplY3RvcnlcblZBUklBQkxFUzpcbnRyYWplY3RvcnlcbnNoaXBfc3RhdGlvbiAoU2hpcCBhbmQgU3RhdGlvbilcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG50aW1lIChzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuY2hsb3JvIChTdXJmYWNlIENobG9yb3BoeWxsLCB1ZyBMLTEpXG5waGFlbyAoU3VyZmFjZSBQaGFlb3BoeXRpbiwgdWcgTC0xKVxucHJvZHVjdGl2aXR5IChJbnRlZ3JhdGVkIEV1cGhvdGljIFpvbmUgUHJvZHVjdGl2aXR5LCBtZyBDYXJib24gbS0yIGRheS0xKVxuc3N0IChTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkUHJkQ3RkX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRQcmRDdGRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkUHJkQ3RkL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9zd2ZzYy5ub2FhLmdvdi9tYWluLmFzcHg/RGl2aXNpb249UFJEJlBhcmVudE1lbnVJZD0xNDcmaWQ9MTIyMSIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRQcmRDdGQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZFByZEN0ZCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFNXRlNDIFBSRCIsICJlcmRQcmRDdGQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlJc28uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5SXNvIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5SXNvLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTc3LXByZXNlbnQsIDIwQyBJc290aGVybSBEZXB0aCIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IDIwQyBJc290aGVybSBEZXB0aCBkYXRhICh0aGUgZGVwdGggYXQgd2hpY2ggdGhlIG9jZWFuIHRlbXBlcmF0dXJlIGlzIDIwQykgZnJvbSB0aGUgXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbklTT182ICgyMEMgSXNvdGhlcm0gRGVwdGgsIG0pXG5RSV81MDA2ICgyMEMgRGVwdGggUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheUlzb19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlJc29faXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlJc28vaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlJc28ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5SXNvJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5SXNvIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5QWlydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlBaXJ0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5QWlydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk3Ny1wcmVzZW50LCBBaXIgVGVtcGVyYXR1cmUiLCAiVGhpcyBkYXRhc2V0IGhhcyA1LWRheSBBaXIgVGVtcGVyYXR1cmUgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5BVF8yMSAoQWlyIFRlbXBlcmF0dXJlLCBkZWdyZWVfQylcblFBVF81MDIxIChBaXIgVGVtcGVyYXR1cmUgUXVhbGl0eSlcblNBVF82MDIxIChBaXIgVGVtcGVyYXR1cmUgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5QWlydF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlBaXJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW81ZGF5QWlydC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheUFpcnQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5QWlydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvNWRheUFpcnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlDdXIuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5Q3VyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5Q3VyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTc3LXByZXNlbnQsIEN1cnJlbnRzIiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgQ3VycmVudHMgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5VXzMyMCAoRWFzdHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBjbSBzLTEpXG5WXzMyMSAoTm9ydGh3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgY20gcy0xKVxuQ1NfMzAwIChTZWEgV2F0ZXIgVmVsb2NpdHksIGNtIHMtMSlcbkNEXzMxMCAoRGlyZWN0aW9uIG9mIFNlYSBXYXRlciBWZWxvY2l0eSwgZGVncmVlc190cnVlKVxuUUNTXzUzMDAgKEN1cnJlbnQgU3BlZWQgUXVhbGl0eSlcblFDRF81MzEwIChDdXJyZW50IERpcmVjdGlvbiBRdWFsaXR5KVxuU0NTXzYzMDAgKEN1cnJlbnQgU3BlZWQgU291cmNlKVxuQ0lDXzczMDAgKEN1cnJlbnQgSW5zdHJ1bWVudCBDb2RlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5Q3VyX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvNWRheUN1cl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheUN1ci9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheUN1ci5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhbzVkYXlDdXImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlDdXIiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlTc3Quc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5U3N0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5U3N0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTc3LXByZXNlbnQsIFNlYSBTdXJmYWNlIFRlbXBlcmF0dXJlIiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgU2VhIFN1cmZhY2UgVGVtcGVyYXR1cmUgKFNTVCkgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5UXzI1IChTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5RVF81MDI1IChTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSBRdWFsaXR5KVxuU1RfNjAyNSAoU2VhIFN1cmZhY2UgVGVtcGVyYXR1cmUgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5U3N0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvNWRheVNzdF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheVNzdC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheVNzdC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhbzVkYXlTc3Qmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlTc3QiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlULnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlULmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTc3LXByZXNlbnQsIFRlbXBlcmF0dXJlIiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgVGVtcGVyYXR1cmUgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5UXzIwIChTZWEgV2F0ZXIgVGVtcGVyYXR1cmUsIGRlZ3JlZV9DKVxuUVRfNTAyMCAoVGVtcGVyYXR1cmUgUXVhbGl0eSlcblNUXzYwMjAgKFRlbXBlcmF0dXJlIFNvdXJjZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5VF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheVQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlULnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheVQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlUIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5Vy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlXIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5Vy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk3Ny1wcmVzZW50LCBXaW5kIiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgV2luZCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbldVXzQyMiAoWm9uYWwgV2luZCwgbSBzLTEpXG5XVl80MjMgKE1lcmlkaW9uYWwgV2luZCwgbSBzLTEpXG5XU180MDEgKFdpbmQgU3BlZWQsIG0gcy0xKVxuUVdTXzU0MDEgKFdpbmQgU3BlZWQgUXVhbGl0eSlcblNXU182NDAxIChXaW5kIFNwZWVkIFNvdXJjZSlcbldEXzQxMCAoV2luZCBEaXJlY3Rpb24sIGRlZ3JlZXNfdHJ1ZSlcblFXRF81NDEwIChXaW5kIERpcmVjdGlvbiBRdWFsaXR5KVxuU1dEXzY0MTAgKFdpbmQgRGlyZWN0aW9uIFNvdXJjZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVdfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5V19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheVcvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlXLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheVcmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlXIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5RHluLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUR5biIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUR5bi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk4MC1wcmVzZW50LCBEeW5hbWljIEhlaWdodCIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IER5bmFtaWMgSGVpZ2h0IGRhdGEgKGEgbWVhc3VyZSBvZiB0aGUgZWxldmF0aW9uIG9mIHRoZSBzZWEgbGV2ZWwsIGNhbGN1bGF0ZWQgYnkgaW50ZWdyYXRpbmcgdGhlIHNwZWNpZmljIHZvbHVtZSBhbm9tYWx5IG9mIHRoZSBzZWEgd2F0ZXIgYmV0d2VlbiB0aGUgc2VhIHN1cmZhY2UgYW5kIDUwMCBtIGRlcHRoKSBmcm9tIHRoZSBcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgNS1kYXkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGNvbnNlY3V0aXZlIGZpdmUgZGF5IGludGVydmFscy4gIEEgbWluaW11bSBvZiAyIGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIDUtZGF5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuRFlOXzEzIChEeW5hbWljIEhlaWdodCwgZHluLWNtKVxuUURfNTAxMyAoRHluYW1pYyBIZWlnaHQgUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheUR5bl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlEeW5faXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlEeW4vaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlEeW4ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5RHluJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5RHluIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5SGVhdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlIZWF0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5SGVhdC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk4MC1wcmVzZW50LCBIZWF0IENvbnRlbnQiLCAiVGhpcyBkYXRhc2V0IGhhcyA1LWRheSBIZWF0IENvbnRlbnQgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5IVENfMTMwIChIZWF0IENvbnRlbnQsIDEwKioxMCBKIG0tMilcbkhUQ181MTMwIChIZWF0IENvbnRlbnQgUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheUhlYXRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5SGVhdF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheUhlYXQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlIZWF0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheUhlYXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlIZWF0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5UG9zLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVBvcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVBvcy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk4MC1wcmVzZW50LCBQb3NpdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IFBvc2l0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgNS1kYXkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGNvbnNlY3V0aXZlIGZpdmUgZGF5IGludGVydmFscy4gIEEgbWluaW11bSBvZiAyIGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIDUtZGF5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuTE9OXzUwMiAoUHJlY2lzZSBMb25naXR1ZGUsIGRlZ3JlZV9lYXN0KVxuUVhfNTUwMiAoTG9uZ2l0dWRlIFF1YWxpdHkpXG5MQVRfNTAwIChQcmVjaXNlIExhdGl0dWRlLCBkZWdyZWVfbm9ydGgpXG5RWV81NTAwIChMYXRpdHVkZSBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5UG9zX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvNWRheVBvc19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheVBvcy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheVBvcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhbzVkYXlQb3Mmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlQb3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlELnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlELmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTg3LXByZXNlbnQsIFBvdGVudGlhbCBEZW5zaXR5IEFub21hbHkiLCAiVGhpcyBkYXRhc2V0IGhhcyA1LWRheSBQb3RlbnRpYWwgRGVuc2l0eSBBbm9tYWx5IChzaWdtYS10aGV0YSkgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5TVEhfNzEgKFNpZ21hLVRoZXRhLCBrZyBtLTMpXG5RU1RfNTA3MSAoU2lnbWEtVGhldGEgUXVhbGl0eSlcblNTVF82MDcxIChTaWdtYS1UaGV0YSBTb3VyY2UpXG5ESUNfNzA3MSAoU2lnbWEtVGhldGEgSW5zdHJ1bWVudCBDb2RlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5RF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlEX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW81ZGF5RC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheUQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5RCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvNWRheUQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlTLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVMiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlTLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTg3LXByZXNlbnQsIFNhbGluaXR5IiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgU2FsaW5pdHkgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5TXzQxIChTZWEgV2F0ZXIgUHJhY3RpY2FsIFNhbGluaXR5LCBQU1UpXG5RU181MDQxIChTYWxpbml0eSBRdWFsaXR5KVxuU1NfNjA0MSAoU2FsaW5pdHkgU291cmNlKVxuU0lDXzgwNDEgKFNhbGluaXR5IEluc3RydW1lbnQgQ29kZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVNfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5U19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheVMvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlTLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheVMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlTIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5QWRjcC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlBZGNwIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5QWRjcC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk4OC0yMDE3LCBBRENQIiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgQWNvdXN0aWMgRG9wcGxlciBDdXJyZW50IFByb2ZpbGVyIChBRENQKSB3YXRlciBjdXJyZW50cyBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgQURDUCBkYXRhIGFyZSBhdmFpbGFibGUgb25seSBhZnRlciBtb29yaW5nIHJlY292ZXJpZXMsIHdoaWNoIGFyZSBzY2hlZHVsZWQgb24gYW4gYW5udWFsIGJhc2lzLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG51XzEyMDUgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgY20vcylcblFVXzUyMDUgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSBRdWFsaXR5KVxudl8xMjA2IChOb3J0aHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBjbS9zKVxuUVZfNTIwNiAoTm9ydGh3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5QWRjcF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlBZGNwX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW81ZGF5QWRjcC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheUFkY3AucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5QWRjcCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvNWRheUFkY3AiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlFdmFwLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUV2YXAiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlFdmFwLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTg5LXByZXNlbnQsIEV2YXBvcmF0aW9uIiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgRXZhcG9yYXRpb24gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5FXzI1MCAoRXZhcG9yYXRpb24sIE1NL0hSKVxuUUVfNTI1MCAoRXZhcG9yYXRpb24gUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheUV2YXBfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5RXZhcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheUV2YXAvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlFdmFwLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheUV2YXAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlFdmFwIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5UWxhdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlRbGF0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5UWxhdC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk4OS1wcmVzZW50LCBMYXRlbnQgSGVhdCBGbHV4IiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgTGF0ZW50IEhlYXQgRmx1eCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFMXzEzNyAoTGF0ZW50IEhlYXQgRmx1eCwgVyBtLTIpXG5RUUxfNTEzNyAoTGF0ZW50IEhlYXQgRmx1eCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5UWxhdF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlRbGF0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW81ZGF5UWxhdC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheVFsYXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5UWxhdCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvNWRheVFsYXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlSaC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlSaCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVJoLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTg5LXByZXNlbnQsIFJlbGF0aXZlIEh1bWlkaXR5IiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgUmVsYXRpdmUgSHVtaWRpdHkgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5SSF85MTAgKFJlbGF0aXZlIEh1bWlkaXR5LCBwZXJjZW50KVxuUVJIXzU5MTAgKFJlbGF0aXZlIEh1bWlkaXR5IFF1YWxpdHkpXG5TUkhfNjkxMCAoUmVsYXRpdmUgSHVtaWRpdHkgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5UmhfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5UmhfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlSaC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheVJoLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheVJoJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5UmgiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlRc2VuLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVFzZW4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlRc2VuLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTg5LXByZXNlbnQsIFNlbnNpYmxlIEhlYXQgRmx1eCIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IFNlbnNpYmxlIEhlYXQgRmx1eCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFTXzEzOCAoU2Vuc2libGUgSGVhdCBGbHV4LCBXIG0tMilcblFRU181MTM4IChTZW5zaWJsZSBIZWF0IEZsdXggUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVFzZW5fZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5UXNlbl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheVFzZW4vaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlRc2VuLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheVFzZW4mc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlRc2VuIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5VGF1LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVRhdSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVRhdS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk4OS1wcmVzZW50LCBXaW5kIFN0cmVzcyIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IFdpbmQgU3RyZXNzIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgNS1kYXkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGNvbnNlY3V0aXZlIGZpdmUgZGF5IGludGVydmFscy4gIEEgbWluaW11bSBvZiAyIGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIDUtZGF5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuVFhfNDQyIChab25hbCBXaW5kIFN0cmVzcywgTi9tMilcblRZXzQ0MyAoTWVyaWRpb25hbCBXaW5kIFN0cmVzcywgTi9tMilcblRBVV80NDAgKFdpbmQgU3RyZXNzLCBOL20yKVxuVERfNDQ1IChXaW5kIFN0cmVzcyBEaXJlY3Rpb24sIGRlZ3JlZXNfdHJ1ZSlcblFUQVVfNTQ0MCAoV2luZCBTdHJlc3MgUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVRhdV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlUYXVfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlUYXUvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlUYXUucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5VGF1JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5VGF1Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5UmFkLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVJhZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVJhZC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk5MS1wcmVzZW50LCBEb3duZ29pbmcgU2hvcnR3YXZlIFJhZGlhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IERvd25nb2luZyBTaG9ydHdhdmUgUmFkaWF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgNS1kYXkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGNvbnNlY3V0aXZlIGZpdmUgZGF5IGludGVydmFscy4gIEEgbWluaW11bSBvZiAyIGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIDUtZGF5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUkRfNDk1IChEb3duZ29pbmcgU2hvcnR3YXZlIFJhZGlhdGlvbiwgVy9NKioyKVxuUVNXXzU0OTUgKFNob3J0d2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNTV182NDk1IChTaG9ydHdhdmUgUmFkaWF0aW9uIFNvdXJjZSlcblJEU180OTYgKFNob3J0d2F2ZSBSYWRpYXRpb24gU3RhbmRhcmQgRGV2aWF0aW9uLCBXL00qKjIpXG5SRFBfNDk3IChTaG9ydHdhdmUgUmFkaWF0aW9uIFBlYWssIFcvTSoqMilcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVJhZF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlSYWRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlSYWQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlSYWQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5UmFkJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5UmFkIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5U3duZXQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5U3duZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlTd25ldC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk5MS1wcmVzZW50LCBOZXQgU2hvcnR3YXZlIFJhZGlhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IE5ldCBTaG9ydHdhdmUgUmFkaWF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgNS1kYXkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGNvbnNlY3V0aXZlIGZpdmUgZGF5IGludGVydmFscy4gIEEgbWluaW11bSBvZiAyIGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIDUtZGF5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuU1dOXzE0OTUgKE5ldCBTaG9ydHdhdmUgUmFkaWF0aW9uLCBXL00qKjIpXG5RU1dfNTQ5NSAoU2hvcnR3YXZlIFJhZGlhdGlvbiBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5U3duZXRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5U3duZXRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlTd25ldC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheVN3bmV0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheVN3bmV0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5U3duZXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlTc3Muc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5U3NzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5U3NzLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTkyLXByZXNlbnQsIFNlYSBTdXJmYWNlIFNhbGluaXR5IiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgU2VhIFN1cmZhY2UgU2FsaW5pdHkgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5TXzQxIChTZWEgV2F0ZXIgUHJhY3RpY2FsIFNhbGluaXR5LCBQU1UpXG5RU181MDQxIChTYWxpbml0eSBRdWFsaXR5KVxuU1NfNjA0MSAoU2FsaW5pdHkgU291cmNlKVxuU0lDXzcwNDEgKFNhbGluaXR5IEluc3RydW1lbnQgQ29kZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVNzc19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlTc3NfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlTc3MvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlTc3MucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5U3NzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5U3NzIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5U3NkLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVNzZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVNzZC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk5Mi1wcmVzZW50LCBTaWdtYS1UaGV0YSIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IFNpZ21hLVRoZXRhIChQb3RlbnRpYWwgRGVuc2l0eSBBbm9tYWx5KSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNUSF83MSAoU2lnbWEtVGhldGEsIGtnIG0tMylcblFTVF81MDcxIChTaWdtYS1UaGV0YSBRdWFsaXR5KVxuU1NUXzYwNzEgKFNpZ21hLVRoZXRhIFNvdXJjZSlcbkRJQ183MDcxIChTaWdtYS1UaGV0YSBJbnN0cnVtZW50IENvZGUpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhbzVkYXlTc2RfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5U3NkX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW81ZGF5U3NkL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW81ZGF5U3NkLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheVNzZCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvNWRheVNzZCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUVtcC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlFbXAiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlFbXAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgNS1EYXksIDE5OTctcHJlc2VudCwgRXZhcG9yYXRpb24gTWludXMgUHJlY2lwaXRhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IEV2YXBvcmF0aW9uIE1pbnVzIFByZWNpcGl0YXRpb24gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5FTVBfMjUxIChFdmFwb3JhdGlvbiBNaW51cyBQcmVjaXBpdGF0aW9uLCBtbS9ocilcblFFTVBfNTI1MSAoRXZhcG9yYXRpb24gTWludXMgUHJlY2lwaXRhdGlvbiBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5RW1wX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvNWRheUVtcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheUVtcC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheUVtcC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhbzVkYXlFbXAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlFbXAiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlSZi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlSZiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVJmLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAxOTk3LXByZXNlbnQsIEhlYXQgRmx1eCBEdWUgVG8gUmFpbiIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IEhlYXQgRmx1eCBEdWUgVG8gUmFpbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFSXzEzOSAoSGVhdCBGbHV4IER1ZSBUbyBSYWluLCBXIG0tMilcblFRUl81MTM5IChIZWF0IEZsdXggRHVlIFRvIFJhaW4gUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVJmX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvNWRheVJmX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW81ZGF5UmYvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlSZi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhbzVkYXlSZiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvNWRheVJmIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5UmFpbi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlSYWluIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5UmFpbi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCA1LURheSwgMTk5Ny1wcmVzZW50LCBQcmVjaXBpdGF0aW9uIiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgUHJlY2lwaXRhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblJOXzQ4NSAoUHJlY2lwaXRhdGlvbiwgTU0vSFIpXG5RUk5fNTQ4NSAoUHJlY2lwaXRhdGlvbiBRdWFsaXR5KVxuU1JOXzY0ODUgKFByZWNpcGl0YXRpb24gU291cmNlKVxuUk5TXzQ4NiAoUHJlY2lwaXRhdGlvbiBTdGFuZGFyZCBEZXZpYXRpb24sIE1NL0hSKVxuUk5QXzQ4NyAoUGVyY2VudCBUaW1lIFJhaW5pbmcsIHBlcmNlbnQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhbzVkYXlSYWluX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvNWRheVJhaW5faXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlSYWluL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW81ZGF5UmFpbi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhbzVkYXlSYWluJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5UmFpbiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUJwLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUJwIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5QnAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgNS1EYXksIDE5OTgtcHJlc2VudCwgQmFyb21ldHJpYyAoQWlyKSBQcmVzc3VyZSIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IEJhcm9tZXRyaWMgKEFpcikgUHJlc3N1cmUgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5CUF85MTUgKEJhcm9tZXRyaWMgKEFpcikgUHJlc3N1cmUsIGhQYSlcblFCUF81OTE1IChCYXJvbWV0cmljIChBaXIpIFByZXNzdXJlIFF1YWxpdHkpXG5TQlBfNjkxNSAoQmFyb21ldHJpYyAoQWlyKSBQcmVzc3VyZSBTb3VyY2UpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhbzVkYXlCcF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlCcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheUJwL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW81ZGF5QnAucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5QnAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlCcCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUJmLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUJmIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5QmYuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgNS1EYXksIDIwMDAtcHJlc2VudCwgQnVveWFuY3kgRmx1eCIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IEJ1b3lhbmN5IEZsdXggZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICA1LWRheSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgY29uc2VjdXRpdmUgZml2ZSBkYXkgaW50ZXJ2YWxzLiAgQSBtaW5pbXVtIG9mIDIgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgNS1kYXkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5CRl8xOTEgKEJ1b3lhbmN5IEZsdXgsIDEwKio2IGtnIG0tMiBzLTEpXG5RQkZfNTE5MSAoQnVveWFuY3kgRmx1eCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5QmZfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5QmZfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlCZi9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheUJmLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheUJmJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5QmYiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlMdy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlMdyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUx3LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAyMDAwLXByZXNlbnQsIExvbmd3YXZlIFJhZGlhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIDUtZGF5IEluY29taW5nIExvbmd3YXZlIFJhZGlhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIDUtZGF5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBjb25zZWN1dGl2ZSBmaXZlIGRheSBpbnRlcnZhbHMuICBBIG1pbmltdW0gb2YgMiBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSA1LWRheSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFsXzEzNiAoSW5jb21pbmcgTG9uZ3dhdmUgUmFkaWF0aW9uLCBXIG0tMilcblFMV181MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNMV182MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW81ZGF5THdfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5THdfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhbzVkYXlMdy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvNWRheUx3LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheUx3JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW81ZGF5THciXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlMd25ldC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhbzVkYXlMd25ldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheUx3bmV0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIDUtRGF5LCAyMDAwLXByZXNlbnQsIE5ldCBMb25nd2F2ZSBSYWRpYXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyA1LWRheSBOZXQgTG9uZ3dhdmUgUmFkaWF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgNS1kYXkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGNvbnNlY3V0aXZlIGZpdmUgZGF5IGludGVydmFscy4gIEEgbWluaW11bSBvZiAyIGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIDUtZGF5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuTFdOXzExMzYgKE5ldCBMb25nd2F2ZSBSYWRpYXRpb24sIFcgbS0yKVxuUUxXXzUxMzYgKExvbmd3YXZlIFJhZGlhdGlvbiBRdWFsaXR5KVxuU0xXXzYxMzYgKExvbmd3YXZlIFJhZGlhdGlvbiBTb3VyY2UpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhbzVkYXlMd25ldF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhbzVkYXlMd25ldF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheUx3bmV0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW81ZGF5THduZXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW81ZGF5THduZXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlMd25ldCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVFuZXQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW81ZGF5UW5ldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvNWRheVFuZXQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgNS1EYXksIDIwMDAtcHJlc2VudCwgVG90YWwgSGVhdCBGbHV4IiwgIlRoaXMgZGF0YXNldCBoYXMgNS1kYXkgVG90YWwgSGVhdCBGbHV4IGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgNS1kYXkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGNvbnNlY3V0aXZlIGZpdmUgZGF5IGludGVydmFscy4gIEEgbWluaW11bSBvZiAyIGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIDUtZGF5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUVRfMjEwIChUb3RhbCBIZWF0IEZsdXgsIFcvTSoqMilcblFRMF81MjEwIChUb3RhbCBIZWF0IEZsdXggUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvNWRheVFuZXRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW81ZGF5UW5ldF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvNWRheVFuZXQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhbzVkYXlRbmV0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvNWRheVFuZXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhbzVkYXlRbmV0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUlzby5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5SXNvIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUlzby5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk3Ny1wcmVzZW50LCAyMEMgSXNvdGhlcm0gRGVwdGgiLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSAyMEMgSXNvdGhlcm0gRGVwdGggZGF0YSAodGhlIGRlcHRoIGF0IHdoaWNoIHRoZSBvY2VhbiB0ZW1wZXJhdHVyZSBpcyAyMEMpIGZyb20gdGhlIFxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBEYWlseSBhdmVyYWdlcyBhcmUgY29tcHV0ZWQgc3RhcnRpbmcgYXQgMDA6MDBaIGFuZCBhcmUgYXNzaWduZWQgYW4gb2JzZXJ2YXRpb24gJ3RpbWUnIG9mIDEyOjAwWi4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuSVNPXzYgKDIwQyBJc290aGVybSBEZXB0aCwgbSlcblFJXzUwMDYgKDIwQyBEZXB0aCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeUlzb19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5SXNvX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9EeUlzby9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlJc28ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeUlzbyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvRHlJc28iXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5QWlydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5QWlydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlBaXJ0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAxOTc3LXByZXNlbnQsIEFpciBUZW1wZXJhdHVyZSIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IEFpciBUZW1wZXJhdHVyZSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5BVF8yMSAoQWlyIFRlbXBlcmF0dXJlLCBkZWdyZWVfQylcblFBVF81MDIxIChBaXIgVGVtcGVyYXR1cmUgUXVhbGl0eSlcblNBVF82MDIxIChBaXIgVGVtcGVyYXR1cmUgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeUFpcnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9EeUFpcnRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb0R5QWlydC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlBaXJ0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvRHlBaXJ0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9EeUFpcnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5Q3VyLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlDdXIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5Q3VyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAxOTc3LXByZXNlbnQsIEN1cnJlbnRzIiwgIlRoaXMgZGF0YXNldCBoYXMgZGFpbHkgQ3VycmVudHMgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBEYWlseSBhdmVyYWdlcyBhcmUgY29tcHV0ZWQgc3RhcnRpbmcgYXQgMDA6MDBaIGFuZCBhcmUgYXNzaWduZWQgYW4gb2JzZXJ2YXRpb24gJ3RpbWUnIG9mIDEyOjAwWi4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuVV8zMjAgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgY20gcy0xKVxuVl8zMjEgKE5vcnRod2FyZCBTZWEgV2F0ZXIgVmVsb2NpdHksIGNtIHMtMSlcbkNTXzMwMCAoU2VhIFdhdGVyIFZlbG9jaXR5LCBjbSBzLTEpXG5DRF8zMTAgKERpcmVjdGlvbiBvZiBTZWEgV2F0ZXIgVmVsb2NpdHksIGRlZ3JlZXNfdHJ1ZSlcblFDU181MzAwIChDdXJyZW50IFNwZWVkIFF1YWxpdHkpXG5RQ0RfNTMxMCAoQ3VycmVudCBEaXJlY3Rpb24gUXVhbGl0eSlcblNDU182MzAwIChDdXJyZW50IFNwZWVkIFNvdXJjZSlcbkNJQ183MzAwIChDdXJyZW50IEluc3RydW1lbnQgQ29kZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvRHlDdXJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9EeUN1cl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlDdXIvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb0R5Q3VyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvRHlDdXImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5Q3VyIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVNzdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5U3N0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVNzdC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk3Ny1wcmVzZW50LCBTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IFNlYSBTdXJmYWNlIFRlbXBlcmF0dXJlIChTU1QpIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblRfMjUgKFNlYSBTdXJmYWNlIFRlbXBlcmF0dXJlLCBkZWdyZWVfQylcblFUXzUwMjUgKFNlYSBTdXJmYWNlIFRlbXBlcmF0dXJlIFF1YWxpdHkpXG5TVF82MDI1IChTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSBTb3VyY2UpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5U3N0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlTc3RfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb0R5U3N0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeVNzdC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5U3N0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9EeVNzdCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlULnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlUIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDE5NzctcHJlc2VudCwgVGVtcGVyYXR1cmUiLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBUZW1wZXJhdHVyZSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5UXzIwIChTZWEgV2F0ZXIgVGVtcGVyYXR1cmUsIGRlZ3JlZV9DKVxuUVRfNTAyMCAoVGVtcGVyYXR1cmUgUXVhbGl0eSlcblNUXzYwMjAgKFRlbXBlcmF0dXJlIFNvdXJjZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvRHlUX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlUX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9EeVQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb0R5VC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5VCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvRHlUIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVcuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVciLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5Vy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk3Ny1wcmVzZW50LCBXaW5kIiwgIlRoaXMgZGF0YXNldCBoYXMgZGFpbHkgV2luZCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5XVV80MjIgKFpvbmFsIFdpbmQsIG0gcy0xKVxuV1ZfNDIzIChNZXJpZGlvbmFsIFdpbmQsIG0gcy0xKVxuV1NfNDAxIChXaW5kIFNwZWVkLCBtIHMtMSlcblFXU181NDAxIChXaW5kIFNwZWVkIFF1YWxpdHkpXG5TV1NfNjQwMSAoV2luZCBTcGVlZCBTb3VyY2UpXG5XRF80MTAgKFdpbmQgRGlyZWN0aW9uLCBkZWdyZWVzX3RydWUpXG5RV0RfNTQxMCAoV2luZCBEaXJlY3Rpb24gUXVhbGl0eSlcblNXRF82NDEwIChXaW5kIERpcmVjdGlvbiBTb3VyY2UpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5V19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5V19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlXL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeVcucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeVcmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5VyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlEeW4uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUR5biIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlEeW4uZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDE5ODAtcHJlc2VudCwgRHluYW1pYyBIZWlnaHQiLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBEeW5hbWljIEhlaWdodCBkYXRhIChhIG1lYXN1cmUgb2YgdGhlIGVsZXZhdGlvbiBvZiB0aGUgc2VhIGxldmVsLCBjYWxjdWxhdGVkIGJ5IGludGVncmF0aW5nIHRoZSBzcGVjaWZpYyB2b2x1bWUgYW5vbWFseSBvZiB0aGUgc2VhIHdhdGVyIGJldHdlZW4gdGhlIHNlYSBzdXJmYWNlIGFuZCA1MDAgbSBkZXB0aCkgZnJvbSB0aGUgXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5EWU5fMTMgKER5bmFtaWMgSGVpZ2h0LCBkeW4tY20pXG5RRF81MDEzIChEeW5hbWljIEhlaWdodCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeUR5bl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5RHluX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9EeUR5bi9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlEeW4ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeUR5biZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvRHlEeW4iXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5SGVhdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5SGVhdCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlIZWF0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAxOTgwLXByZXNlbnQsIEhlYXQgQ29udGVudCIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IEhlYXQgQ29udGVudCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5IVENfMTMwIChIZWF0IENvbnRlbnQsIDEwKioxMCBKIG0tMilcbkhUQ181MTMwIChIZWF0IENvbnRlbnQgUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvRHlIZWF0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlIZWF0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9EeUhlYXQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb0R5SGVhdC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5SGVhdCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvRHlIZWF0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVBvcy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UG9zIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVBvcy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk4MC1wcmVzZW50LCBQb3NpdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IFBvc2l0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkxPTl81MDIgKFByZWNpc2UgTG9uZ2l0dWRlLCBkZWdyZWVfZWFzdClcblFYXzU1MDIgKExvbmdpdHVkZSBRdWFsaXR5KVxuTEFUXzUwMCAoUHJlY2lzZSBMYXRpdHVkZSwgZGVncmVlX25vcnRoKVxuUVlfNTUwMCAoTGF0aXR1ZGUgUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvRHlQb3NfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9EeVBvc19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlQb3MvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb0R5UG9zLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvRHlQb3Mmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5UG9zIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5RC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk4Ny1wcmVzZW50LCBQb3RlbnRpYWwgRGVuc2l0eSBBbm9tYWx5IiwgIlRoaXMgZGF0YXNldCBoYXMgZGFpbHkgUG90ZW50aWFsIERlbnNpdHkgQW5vbWFseSAoc2lnbWEtdGhldGEpIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNUSF83MSAoU2lnbWEtVGhldGEsIGtnIG0tMylcblFTVF81MDcxIChTaWdtYS1UaGV0YSBRdWFsaXR5KVxuU1NUXzYwNzEgKFNpZ21hLVRoZXRhIFNvdXJjZSlcbkRJQ183MDcxIChTaWdtYS1UaGV0YSBJbnN0cnVtZW50IENvZGUpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5RF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5RF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlEL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeUQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeUQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5RCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlTLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlTIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDE5ODctcHJlc2VudCwgU2FsaW5pdHkiLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBTYWxpbml0eSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5TXzQxIChTZWEgV2F0ZXIgUHJhY3RpY2FsIFNhbGluaXR5LCBQU1UpXG5RU181MDQxIChTYWxpbml0eSBRdWFsaXR5KVxuU1NfNjA0MSAoU2FsaW5pdHkgU291cmNlKVxuU0lDXzgwNDEgKFNhbGluaXR5IEluc3RydW1lbnQgQ29kZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvRHlTX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlTX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9EeVMvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb0R5Uy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5UyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvRHlTIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUFkY3Auc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUFkY3AiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5QWRjcC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk4OC0yMDE3LCBBRENQIiwgIlRoaXMgZGF0YXNldCBoYXMgZGFpbHkgQWNvdXN0aWMgRG9wcGxlciBDdXJyZW50IFByb2ZpbGVyIChBRENQKSB3YXRlciBjdXJyZW50cyBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgQURDUCBkYXRhIGFyZSBhdmFpbGFibGUgb25seSBhZnRlciBtb29yaW5nIHJlY292ZXJpZXMsIHdoaWNoIGFyZSBzY2hlZHVsZWQgb24gYW4gYW5udWFsIGJhc2lzLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG51XzEyMDUgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgY20vcylcblFVXzUyMDUgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSBRdWFsaXR5KVxudl8xMjA2IChOb3J0aHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBjbS9zKVxuUVZfNTIwNiAoTm9ydGh3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeUFkY3BfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9EeUFkY3BfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb0R5QWRjcC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlBZGNwLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvRHlBZGNwJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9EeUFkY3AiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5RXZhcC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5RXZhcCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlFdmFwLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAxOTg5LXByZXNlbnQsIEV2YXBvcmF0aW9uIiwgIlRoaXMgZGF0YXNldCBoYXMgZGFpbHkgRXZhcG9yYXRpb24gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBEYWlseSBhdmVyYWdlcyBhcmUgY29tcHV0ZWQgc3RhcnRpbmcgYXQgMDA6MDBaIGFuZCBhcmUgYXNzaWduZWQgYW4gb2JzZXJ2YXRpb24gJ3RpbWUnIG9mIDEyOjAwWi4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuRV8yNTAgKEV2YXBvcmF0aW9uLCBNTS9IUilcblFFXzUyNTAgKEV2YXBvcmF0aW9uIFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5RXZhcF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5RXZhcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlFdmFwL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeUV2YXAucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeUV2YXAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5RXZhcCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlRbGF0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlRbGF0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVFsYXQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDE5ODktcHJlc2VudCwgTGF0ZW50IEhlYXQgRmx1eCIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IExhdGVudCBIZWF0IEZsdXggZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBEYWlseSBhdmVyYWdlcyBhcmUgY29tcHV0ZWQgc3RhcnRpbmcgYXQgMDA6MDBaIGFuZCBhcmUgYXNzaWduZWQgYW4gb2JzZXJ2YXRpb24gJ3RpbWUnIG9mIDEyOjAwWi4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUUxfMTM3IChMYXRlbnQgSGVhdCBGbHV4LCBXIG0tMilcblFRTF81MTM3IChMYXRlbnQgSGVhdCBGbHV4IFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5UWxhdF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5UWxhdF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlRbGF0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeVFsYXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeVFsYXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5UWxhdCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlSaC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UmgiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UmguZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDE5ODktcHJlc2VudCwgUmVsYXRpdmUgSHVtaWRpdHkiLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBSZWxhdGl2ZSBIdW1pZGl0eSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5SSF85MTAgKFJlbGF0aXZlIEh1bWlkaXR5LCBwZXJjZW50KVxuUVJIXzU5MTAgKFJlbGF0aXZlIEh1bWlkaXR5IFF1YWxpdHkpXG5TUkhfNjkxMCAoUmVsYXRpdmUgSHVtaWRpdHkgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeVJoX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlSaF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlSaC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlSaC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5Umgmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5UmgiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UXNlbi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UXNlbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlRc2VuLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAxOTg5LXByZXNlbnQsIFNlbnNpYmxlIEhlYXQgRmx1eCIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IFNlbnNpYmxlIEhlYXQgRmx1eCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5RU18xMzggKFNlbnNpYmxlIEhlYXQgRmx1eCwgVyBtLTIpXG5RUVNfNTEzOCAoU2Vuc2libGUgSGVhdCBGbHV4IFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5UXNlbl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5UXNlbl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlRc2VuL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeVFzZW4ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeVFzZW4mc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5UXNlbiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlUYXUuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVRhdSIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlUYXUuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDE5ODktcHJlc2VudCwgV2luZCBTdHJlc3MiLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBXaW5kIFN0cmVzcyBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5UWF80NDIgKFpvbmFsIFdpbmQgU3RyZXNzLCBOL20yKVxuVFlfNDQzIChNZXJpZGlvbmFsIFdpbmQgU3RyZXNzLCBOL20yKVxuVEFVXzQ0MCAoV2luZCBTdHJlc3MsIE4vbTIpXG5URF80NDUgKFdpbmQgU3RyZXNzIERpcmVjdGlvbiwgZGVncmVlc190cnVlKVxuUVRBVV81NDQwIChXaW5kIFN0cmVzcyBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeVRhdV9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5VGF1X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9EeVRhdS9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlUYXUucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeVRhdSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvRHlUYXUiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UmFkLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlSYWQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UmFkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAxOTkxLXByZXNlbnQsIERvd25nb2luZyBTaG9ydHdhdmUgUmFkaWF0aW9uIiwgIlRoaXMgZGF0YXNldCBoYXMgZGFpbHkgRG93bmdvaW5nIFNob3J0d2F2ZSBSYWRpYXRpb24gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBEYWlseSBhdmVyYWdlcyBhcmUgY29tcHV0ZWQgc3RhcnRpbmcgYXQgMDA6MDBaIGFuZCBhcmUgYXNzaWduZWQgYW4gb2JzZXJ2YXRpb24gJ3RpbWUnIG9mIDEyOjAwWi4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUkRfNDk1IChEb3duZ29pbmcgU2hvcnR3YXZlIFJhZGlhdGlvbiwgVy9NKioyKVxuUVNXXzU0OTUgKFNob3J0d2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNTV182NDk1IChTaG9ydHdhdmUgUmFkaWF0aW9uIFNvdXJjZSlcblJEU180OTYgKFNob3J0d2F2ZSBSYWRpYXRpb24gU3RhbmRhcmQgRGV2aWF0aW9uLCBXL00qKjIpXG5SRFBfNDk3IChTaG9ydHdhdmUgUmFkaWF0aW9uIFBlYWssIFcvTSoqMilcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvRHlSYWRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9EeVJhZF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlSYWQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb0R5UmFkLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvRHlSYWQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5UmFkIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVN3bmV0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlTd25ldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlTd25ldC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk5MS1wcmVzZW50LCBOZXQgU2hvcnR3YXZlIFJhZGlhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IE5ldCBTaG9ydHdhdmUgUmFkaWF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNXTl8xNDk1IChOZXQgU2hvcnR3YXZlIFJhZGlhdGlvbiwgVy9NKioyKVxuUVNXXzU0OTUgKFNob3J0d2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvRHlTd25ldF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5U3duZXRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb0R5U3duZXQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb0R5U3duZXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeVN3bmV0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9EeVN3bmV0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVNzcy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5U3NzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVNzcy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk5Mi1wcmVzZW50LCBTZWEgU3VyZmFjZSBTYWxpbml0eSIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IFNlYSBTdXJmYWNlIFNhbGluaXR5IGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNfNDEgKFNlYSBXYXRlciBQcmFjdGljYWwgU2FsaW5pdHksIFBTVSlcblFTXzUwNDEgKFNhbGluaXR5IFF1YWxpdHkpXG5TU182MDQxIChTYWxpbml0eSBTb3VyY2UpXG5TSUNfNzA0MSAoU2FsaW5pdHkgSW5zdHJ1bWVudCBDb2RlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeVNzc19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5U3NzX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9EeVNzcy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlTc3MucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeVNzcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvRHlTc3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5U3NkLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlTc2QiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5U3NkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAxOTkyLXByZXNlbnQsIFNpZ21hLVRoZXRhIiwgIlRoaXMgZGF0YXNldCBoYXMgZGFpbHkgU2lnbWEtVGhldGEgKFBvdGVudGlhbCBEZW5zaXR5IEFub21hbHkpIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNUSF83MSAoU2lnbWEtVGhldGEsIGtnIG0tMylcblFTVF81MDcxIChTaWdtYS1UaGV0YSBRdWFsaXR5KVxuU1NUXzYwNzEgKFNpZ21hLVRoZXRhIFNvdXJjZSlcbkRJQ183MDcxIChTaWdtYS1UaGV0YSBJbnN0cnVtZW50IENvZGUpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5U3NkX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlTc2RfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb0R5U3NkL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeVNzZC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5U3NkJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9EeVNzZCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlFbXAuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUVtcCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlFbXAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDE5OTctcHJlc2VudCwgRXZhcG9yYXRpb24gTWludXMgUHJlY2lwaXRhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IEV2YXBvcmF0aW9uIE1pbnVzIFByZWNpcGl0YXRpb24gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBEYWlseSBhdmVyYWdlcyBhcmUgY29tcHV0ZWQgc3RhcnRpbmcgYXQgMDA6MDBaIGFuZCBhcmUgYXNzaWduZWQgYW4gb2JzZXJ2YXRpb24gJ3RpbWUnIG9mIDEyOjAwWi4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuRU1QXzI1MSAoRXZhcG9yYXRpb24gTWludXMgUHJlY2lwaXRhdGlvbiwgbW0vaHIpXG5RRU1QXzUyNTEgKEV2YXBvcmF0aW9uIE1pbnVzIFByZWNpcGl0YXRpb24gUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvRHlFbXBfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9EeUVtcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlFbXAvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb0R5RW1wLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvRHlFbXAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5RW1wIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeVJmLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlSZiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlSZi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBEYWlseSwgMTk5Ny1wcmVzZW50LCBIZWF0IEZsdXggRHVlIFRvIFJhaW4iLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBIZWF0IEZsdXggRHVlIFRvIFJhaW4gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBEYWlseSBhdmVyYWdlcyBhcmUgY29tcHV0ZWQgc3RhcnRpbmcgYXQgMDA6MDBaIGFuZCBhcmUgYXNzaWduZWQgYW4gb2JzZXJ2YXRpb24gJ3RpbWUnIG9mIDEyOjAwWi4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUVJfMTM5IChIZWF0IEZsdXggRHVlIFRvIFJhaW4sIFcgbS0yKVxuUVFSXzUxMzkgKEhlYXQgRmx1eCBEdWUgVG8gUmFpbiBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeVJmX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlSZl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlSZi9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlSZi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5UmYmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5UmYiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UmFpbi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UmFpbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlSYWluLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAxOTk3LXByZXNlbnQsIFByZWNpcGl0YXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBQcmVjaXBpdGF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblJOXzQ4NSAoUHJlY2lwaXRhdGlvbiwgTU0vSFIpXG5RUk5fNTQ4NSAoUHJlY2lwaXRhdGlvbiBRdWFsaXR5KVxuU1JOXzY0ODUgKFByZWNpcGl0YXRpb24gU291cmNlKVxuUk5TXzQ4NiAoUHJlY2lwaXRhdGlvbiBTdGFuZGFyZCBEZXZpYXRpb24sIE1NL0hSKVxuUk5QXzQ4NyAoUGVyY2VudCBUaW1lIFJhaW5pbmcsIHBlcmNlbnQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5UmFpbl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb0R5UmFpbl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlSYWluL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeVJhaW4ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9EeVJhaW4mc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5UmFpbiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlCcC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5QnAiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5QnAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDE5OTgtcHJlc2VudCwgQmFyb21ldHJpYyAoQWlyKSBQcmVzc3VyZSIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IEJhcm9tZXRyaWMgKEFpcikgUHJlc3N1cmUgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBEYWlseSBhdmVyYWdlcyBhcmUgY29tcHV0ZWQgc3RhcnRpbmcgYXQgMDA6MDBaIGFuZCBhcmUgYXNzaWduZWQgYW4gb2JzZXJ2YXRpb24gJ3RpbWUnIG9mIDEyOjAwWi4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuQlBfOTE1IChCYXJvbWV0cmljIChBaXIpIFByZXNzdXJlLCBoUGEpXG5RQlBfNTkxNSAoQmFyb21ldHJpYyAoQWlyKSBQcmVzc3VyZSBRdWFsaXR5KVxuU0JQXzY5MTUgKEJhcm9tZXRyaWMgKEFpcikgUHJlc3N1cmUgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeUJwX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlCcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlCcC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlCcC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5QnAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5QnAiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5QmYuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUJmIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUJmLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAyMDAwLXByZXNlbnQsIEJ1b3lhbmN5IEZsdXgiLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBCdW95YW5jeSBGbHV4IGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkJGXzE5MSAoQnVveWFuY3kgRmx1eCwgMTAqKjYga2cgbS0yIHMtMSlcblFCRl81MTkxIChCdW95YW5jeSBGbHV4IFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb0R5QmZfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9EeUJmX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9EeUJmL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9EeUJmLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvRHlCZiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvRHlCZiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlMdy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5THciLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5THcuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgRGFpbHksIDIwMDAtcHJlc2VudCwgTG9uZ3dhdmUgUmFkaWF0aW9uIiwgIlRoaXMgZGF0YXNldCBoYXMgZGFpbHkgSW5jb21pbmcgTG9uZ3dhdmUgUmFkaWF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFsXzEzNiAoSW5jb21pbmcgTG9uZ3dhdmUgUmFkaWF0aW9uLCBXIG0tMilcblFMV181MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNMV182MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeUx3X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlMd19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlMdy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlMdy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5THcmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5THciXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5THduZXQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUx3bmV0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9EeUx3bmV0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAyMDAwLXByZXNlbnQsIE5ldCBMb25nd2F2ZSBSYWRpYXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBkYWlseSBOZXQgTG9uZ3dhdmUgUmFkaWF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgRGFpbHkgYXZlcmFnZXMgYXJlIGNvbXB1dGVkIHN0YXJ0aW5nIGF0IDAwOjAwWiBhbmQgYXJlIGFzc2lnbmVkIGFuIG9ic2VydmF0aW9uICd0aW1lJyBvZiAxMjowMFouICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkxXTl8xMTM2IChOZXQgTG9uZ3dhdmUgUmFkaWF0aW9uLCBXIG0tMilcblFMV181MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNMV182MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeUx3bmV0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvRHlMd25ldF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvRHlMd25ldC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlMd25ldC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb0R5THduZXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb0R5THduZXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UW5ldC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb0R5UW5ldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvRHlRbmV0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIERhaWx5LCAyMDAwLXByZXNlbnQsIFRvdGFsIEhlYXQgRmx1eCIsICJUaGlzIGRhdGFzZXQgaGFzIGRhaWx5IFRvdGFsIEhlYXQgRmx1eCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIERhaWx5IGF2ZXJhZ2VzIGFyZSBjb21wdXRlZCBzdGFydGluZyBhdCAwMDowMFogYW5kIGFyZSBhc3NpZ25lZCBhbiBvYnNlcnZhdGlvbiAndGltZScgb2YgMTI6MDBaLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5RVF8yMTAgKFRvdGFsIEhlYXQgRmx1eCwgVy9NKioyKVxuUVEwXzUyMTAgKFRvdGFsIEhlYXQgRmx1eCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9EeVFuZXRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9EeVFuZXRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb0R5UW5ldC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvRHlRbmV0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvRHlRbmV0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9EeVFuZXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbklzby5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbklzbyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uSXNvLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5NzctcHJlc2VudCwgMjBDIElzb3RoZXJtIERlcHRoIiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSAyMEMgSXNvdGhlcm0gRGVwdGggZGF0YSAodGhlIGRlcHRoIGF0IHdoaWNoIHRoZSBvY2VhbiB0ZW1wZXJhdHVyZSBpcyAyMEMpIGZyb20gdGhlIFxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBNb250aGx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIG1vbnRoLiAgQSBtaW5pbXVtIG9mIDE1IGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIG1vbnRobHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5JU09fNiAoMjBDIElzb3RoZXJtIERlcHRoLCBtKVxuUUlfNTAwNiAoMjBDIERlcHRoIFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vbklzb19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vbklzb19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uSXNvL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25Jc28ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25Jc28mc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vbklzbyJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uQWlydC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkFpcnQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkFpcnQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMTk3Ny1wcmVzZW50LCBBaXIgVGVtcGVyYXR1cmUiLCAiVGhpcyBkYXRhc2V0IGhhcyBtb250aGx5IEFpciBUZW1wZXJhdHVyZSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkFUXzIxIChBaXIgVGVtcGVyYXR1cmUsIGRlZ3JlZV9DKVxuUUFUXzUwMjEgKEFpciBUZW1wZXJhdHVyZSBRdWFsaXR5KVxuU0FUXzYwMjEgKEFpciBUZW1wZXJhdHVyZSBTb3VyY2UpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vbkFpcnRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25BaXJ0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25BaXJ0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25BaXJ0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uQWlydCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uQWlydCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uQ3VyLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uQ3VyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25DdXIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMTk3Ny1wcmVzZW50LCBDdXJyZW50cyIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgQ3VycmVudHMgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBNb250aGx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIG1vbnRoLiAgQSBtaW5pbXVtIG9mIDE1IGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIG1vbnRobHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5VXzMyMCAoRWFzdHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBjbSBzLTEpXG5WXzMyMSAoTm9ydGh3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgY20gcy0xKVxuQ1NfMzAwIChTZWEgV2F0ZXIgVmVsb2NpdHksIGNtIHMtMSlcbkNEXzMxMCAoRGlyZWN0aW9uIG9mIFNlYSBXYXRlciBWZWxvY2l0eSwgZGVncmVlc190cnVlKVxuUUNTXzUzMDAgKEN1cnJlbnQgU3BlZWQgUXVhbGl0eSlcblFDRF81MzEwIChDdXJyZW50IERpcmVjdGlvbiBRdWFsaXR5KVxuU0NTXzYzMDAgKEN1cnJlbnQgU3BlZWQgU291cmNlKVxuQ0lDXzczMDAgKEN1cnJlbnQgSW5zdHJ1bWVudCBDb2RlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25DdXJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25DdXJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb01vbkN1ci9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uQ3VyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uQ3VyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9Nb25DdXIiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblNzdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblNzdCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uU3N0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5NzctcHJlc2VudCwgU2VhIFN1cmZhY2UgVGVtcGVyYXR1cmUiLCAiVGhpcyBkYXRhc2V0IGhhcyBtb250aGx5IFNlYSBTdXJmYWNlIFRlbXBlcmF0dXJlIChTU1QpIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuVF8yNSAoU2VhIFN1cmZhY2UgVGVtcGVyYXR1cmUsIGRlZ3JlZV9DKVxuUVRfNTAyNSAoU2VhIFN1cmZhY2UgVGVtcGVyYXR1cmUgUXVhbGl0eSlcblNUXzYwMjUgKFNlYSBTdXJmYWNlIFRlbXBlcmF0dXJlIFNvdXJjZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvTW9uU3N0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uU3N0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25Tc3QvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb01vblNzdC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vblNzdCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uU3N0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25ULnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uVCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uVC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBNb250aGx5LCAxOTc3LXByZXNlbnQsIFRlbXBlcmF0dXJlIiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBUZW1wZXJhdHVyZSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblRfMjAgKFNlYSBXYXRlciBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5RVF81MDIwIChUZW1wZXJhdHVyZSBRdWFsaXR5KVxuU1RfNjAyMCAoVGVtcGVyYXR1cmUgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25UX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uVF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uVC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uVC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vblQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vblQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblcuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25XIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25XLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5NzctcHJlc2VudCwgV2luZCIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgV2luZCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbldVXzQyMiAoWm9uYWwgV2luZCwgbSBzLTEpXG5XVl80MjMgKE1lcmlkaW9uYWwgV2luZCwgbSBzLTEpXG5XU180MDEgKFdpbmQgU3BlZWQsIG0gcy0xKVxuUVdTXzU0MDEgKFdpbmQgU3BlZWQgUXVhbGl0eSlcblNXU182NDAxIChXaW5kIFNwZWVkIFNvdXJjZSlcbldEXzQxMCAoV2luZCBEaXJlY3Rpb24sIGRlZ3JlZXNfdHJ1ZSlcblFXRF81NDEwIChXaW5kIERpcmVjdGlvbiBRdWFsaXR5KVxuU1dEXzY0MTAgKFdpbmQgRGlyZWN0aW9uIFNvdXJjZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvTW9uV19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vbldfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb01vblcvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb01vblcucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25XJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9Nb25XIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25EeW4uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25EeW4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkR5bi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBNb250aGx5LCAxOTgwLXByZXNlbnQsIER5bmFtaWMgSGVpZ2h0IiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBEeW5hbWljIEhlaWdodCBkYXRhIChhIG1lYXN1cmUgb2YgdGhlIGVsZXZhdGlvbiBvZiB0aGUgc2VhIGxldmVsLCBjYWxjdWxhdGVkIGJ5IGludGVncmF0aW5nIHRoZSBzcGVjaWZpYyB2b2x1bWUgYW5vbWFseSBvZiB0aGUgc2VhIHdhdGVyIGJldHdlZW4gdGhlIHNlYSBzdXJmYWNlIGFuZCA1MDAgbSBkZXB0aCkgZnJvbSB0aGUgXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkRZTl8xMyAoRHluYW1pYyBIZWlnaHQsIGR5bi1jbSlcblFEXzUwMTMgKER5bmFtaWMgSGVpZ2h0IFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vbkR5bl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vbkR5bl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uRHluL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25EeW4ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25EeW4mc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vbkR5biJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uSGVhdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkhlYXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkhlYXQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMTk4MC1wcmVzZW50LCBIZWF0IENvbnRlbnQiLCAiVGhpcyBkYXRhc2V0IGhhcyBtb250aGx5IEhlYXQgQ29udGVudCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkhUQ18xMzAgKEhlYXQgQ29udGVudCwgMTAqKjEwIEogbS0yKVxuSFRDXzUxMzAgKEhlYXQgQ29udGVudCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25IZWF0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uSGVhdF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uSGVhdC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uSGVhdC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vbkhlYXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vbkhlYXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblBvcy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblBvcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uUG9zLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5ODAtcHJlc2VudCwgUG9zaXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBtb250aGx5IFBvc2l0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuTE9OXzUwMiAoUHJlY2lzZSBMb25naXR1ZGUsIGRlZ3JlZV9lYXN0KVxuUVhfNTUwMiAoTG9uZ2l0dWRlIFF1YWxpdHkpXG5MQVRfNTAwIChQcmVjaXNlIExhdGl0dWRlLCBkZWdyZWVfbm9ydGgpXG5RWV81NTAwIChMYXRpdHVkZSBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25Qb3NfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25Qb3NfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb01vblBvcy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uUG9zLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uUG9zJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9Nb25Qb3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25EIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25ELmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5ODctcHJlc2VudCwgUG90ZW50aWFsIERlbnNpdHkgQW5vbWFseSIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgUG90ZW50aWFsIERlbnNpdHkgQW5vbWFseSAoc2lnbWEtdGhldGEpIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuU1RIXzcxIChTaWdtYS1UaGV0YSwga2cgbS0zKVxuUVNUXzUwNzEgKFNpZ21hLVRoZXRhIFF1YWxpdHkpXG5TU1RfNjA3MSAoU2lnbWEtVGhldGEgU291cmNlKVxuRElDXzcwNzEgKFNpZ21hLVRoZXRhIEluc3RydW1lbnQgQ29kZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvTW9uRF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vbkRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb01vbkQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb01vbkQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25EJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9Nb25EIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25TLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uUyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uUy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBNb250aGx5LCAxOTg3LXByZXNlbnQsIFNhbGluaXR5IiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBTYWxpbml0eSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNfNDEgKFNlYSBXYXRlciBQcmFjdGljYWwgU2FsaW5pdHksIFBTVSlcblFTXzUwNDEgKFNhbGluaXR5IFF1YWxpdHkpXG5TU182MDQxIChTYWxpbml0eSBTb3VyY2UpXG5TSUNfODA0MSAoU2FsaW5pdHkgSW5zdHJ1bWVudCBDb2RlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25TX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uU19pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uUy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uUy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vblMmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vblMiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkFkY3Auc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25BZGNwIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25BZGNwLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5ODgtMjAxNywgQURDUCIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgQWNvdXN0aWMgRG9wcGxlciBDdXJyZW50IFByb2ZpbGVyIChBRENQKSB3YXRlciBjdXJyZW50cyBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgQURDUCBkYXRhIGFyZSBhdmFpbGFibGUgb25seSBhZnRlciBtb29yaW5nIHJlY292ZXJpZXMsIHdoaWNoIGFyZSBzY2hlZHVsZWQgb24gYW4gYW5udWFsIGJhc2lzLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG51XzEyMDUgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgY20vcylcblFVXzUyMDUgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSBRdWFsaXR5KVxudl8xMjA2IChOb3J0aHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBjbS9zKVxuUVZfNTIwNiAoTm9ydGh3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25BZGNwX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uQWRjcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uQWRjcC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uQWRjcC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vbkFkY3Amc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vbkFkY3AiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkV2YXAuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25FdmFwIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25FdmFwLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5ODktcHJlc2VudCwgRXZhcG9yYXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBtb250aGx5IEV2YXBvcmF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuRV8yNTAgKEV2YXBvcmF0aW9uLCBNTS9IUilcblFFXzUyNTAgKEV2YXBvcmF0aW9uIFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vbkV2YXBfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25FdmFwX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25FdmFwL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25FdmFwLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uRXZhcCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uRXZhcCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uUWxhdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblFsYXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblFsYXQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMTk4OS1wcmVzZW50LCBMYXRlbnQgSGVhdCBGbHV4IiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBMYXRlbnQgSGVhdCBGbHV4IGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUUxfMTM3IChMYXRlbnQgSGVhdCBGbHV4LCBXIG0tMilcblFRTF81MTM3IChMYXRlbnQgSGVhdCBGbHV4IFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vblFsYXRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25RbGF0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25RbGF0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25RbGF0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uUWxhdCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uUWxhdCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uUmguc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25SaCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uUmguZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMTk4OS1wcmVzZW50LCBSZWxhdGl2ZSBIdW1pZGl0eSIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgUmVsYXRpdmUgSHVtaWRpdHkgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBNb250aGx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIG1vbnRoLiAgQSBtaW5pbXVtIG9mIDE1IGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIG1vbnRobHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5SSF85MTAgKFJlbGF0aXZlIEh1bWlkaXR5LCBwZXJjZW50KVxuUVJIXzU5MTAgKFJlbGF0aXZlIEh1bWlkaXR5IFF1YWxpdHkpXG5TUkhfNjkxMCAoUmVsYXRpdmUgSHVtaWRpdHkgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25SaF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vblJoX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25SaC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uUmgucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25SaCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uUmgiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblFzZW4uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25Rc2VuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25Rc2VuLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5ODktcHJlc2VudCwgU2Vuc2libGUgSGVhdCBGbHV4IiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBTZW5zaWJsZSBIZWF0IEZsdXggZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBNb250aGx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIG1vbnRoLiAgQSBtaW5pbXVtIG9mIDE1IGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIG1vbnRobHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5RU18xMzggKFNlbnNpYmxlIEhlYXQgRmx1eCwgVyBtLTIpXG5RUVNfNTEzOCAoU2Vuc2libGUgSGVhdCBGbHV4IFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vblFzZW5fZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25Rc2VuX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25Rc2VuL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25Rc2VuLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uUXNlbiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uUXNlbiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uVGF1LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uVGF1IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25UYXUuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMTk4OS1wcmVzZW50LCBXaW5kIFN0cmVzcyIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgV2luZCBTdHJlc3MgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBNb250aGx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIG1vbnRoLiAgQSBtaW5pbXVtIG9mIDE1IGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIG1vbnRobHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5UWF80NDIgKFpvbmFsIFdpbmQgU3RyZXNzLCBOL20yKVxuVFlfNDQzIChNZXJpZGlvbmFsIFdpbmQgU3RyZXNzLCBOL20yKVxuVEFVXzQ0MCAoV2luZCBTdHJlc3MsIE4vbTIpXG5URF80NDUgKFdpbmQgU3RyZXNzIERpcmVjdGlvbiwgZGVncmVlc190cnVlKVxuUVRBVV81NDQwIChXaW5kIFN0cmVzcyBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25UYXVfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25UYXVfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb01vblRhdS9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uVGF1LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uVGF1JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9Nb25UYXUiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblJhZC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblJhZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uUmFkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5OTEtcHJlc2VudCwgRG93bmdvaW5nIFNob3J0d2F2ZSBSYWRpYXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBtb250aGx5IERvd25nb2luZyBTaG9ydHdhdmUgUmFkaWF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUkRfNDk1IChEb3duZ29pbmcgU2hvcnR3YXZlIFJhZGlhdGlvbiwgVy9NKioyKVxuUVNXXzU0OTUgKFNob3J0d2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNTV182NDk1IChTaG9ydHdhdmUgUmFkaWF0aW9uIFNvdXJjZSlcblJEU180OTYgKFNob3J0d2F2ZSBSYWRpYXRpb24gU3RhbmRhcmQgRGV2aWF0aW9uLCBXL00qKjIpXG5SRFBfNDk3IChTaG9ydHdhdmUgUmFkaWF0aW9uIFBlYWssIFcvTSoqMilcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvTW9uUmFkX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uUmFkX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25SYWQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb01vblJhZC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vblJhZCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uUmFkIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25Td25ldC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblN3bmV0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25Td25ldC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBNb250aGx5LCAxOTkxLXByZXNlbnQsIE5ldCBTaG9ydHdhdmUgUmFkaWF0aW9uIiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBOZXQgU2hvcnR3YXZlIFJhZGlhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNXTl8xNDk1IChOZXQgU2hvcnR3YXZlIFJhZGlhdGlvbiwgVy9NKioyKVxuUVNXXzU0OTUgKFNob3J0d2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvTW9uU3duZXRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25Td25ldF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uU3duZXQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb01vblN3bmV0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uU3duZXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vblN3bmV0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25Tc3Muc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25Tc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblNzcy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBNb250aGx5LCAxOTkyLXByZXNlbnQsIFNlYSBTdXJmYWNlIFNhbGluaXR5IiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBTZWEgU3VyZmFjZSBTYWxpbml0eSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNfNDEgKFNlYSBXYXRlciBQcmFjdGljYWwgU2FsaW5pdHksIFBTVSlcblFTXzUwNDEgKFNhbGluaXR5IFF1YWxpdHkpXG5TU182MDQxIChTYWxpbml0eSBTb3VyY2UpXG5TSUNfNzA0MSAoU2FsaW5pdHkgSW5zdHJ1bWVudCBDb2RlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25Tc3NfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25Tc3NfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb01vblNzcy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uU3NzLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uU3NzJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9Nb25Tc3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblNzZC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblNzZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uU3NkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5OTItcHJlc2VudCwgU2lnbWEtVGhldGEiLCAiVGhpcyBkYXRhc2V0IGhhcyBtb250aGx5IFNpZ21hLVRoZXRhIChQb3RlbnRpYWwgRGVuc2l0eSBBbm9tYWx5KSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNUSF83MSAoU2lnbWEtVGhldGEsIGtnIG0tMylcblFTVF81MDcxIChTaWdtYS1UaGV0YSBRdWFsaXR5KVxuU1NUXzYwNzEgKFNpZ21hLVRoZXRhIFNvdXJjZSlcbkRJQ183MDcxIChTaWdtYS1UaGV0YSBJbnN0cnVtZW50IENvZGUpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vblNzZF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vblNzZF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uU3NkL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25Tc2QucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25Tc2Qmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vblNzZCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uRW1wLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uRW1wIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25FbXAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMTk5Ny1wcmVzZW50LCBFdmFwb3JhdGlvbiBNaW51cyBQcmVjaXBpdGF0aW9uIiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBFdmFwb3JhdGlvbiBNaW51cyBQcmVjaXBpdGF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuRU1QXzI1MSAoRXZhcG9yYXRpb24gTWludXMgUHJlY2lwaXRhdGlvbiwgbW0vaHIpXG5RRU1QXzUyNTEgKEV2YXBvcmF0aW9uIE1pbnVzIFByZWNpcGl0YXRpb24gUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvTW9uRW1wX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uRW1wX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25FbXAvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb01vbkVtcC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vbkVtcCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uRW1wIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25SZi5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblJmIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25SZi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBNb250aGx5LCAxOTk3LXByZXNlbnQsIEhlYXQgRmx1eCBEdWUgVG8gUmFpbiIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgSGVhdCBGbHV4IER1ZSBUbyBSYWluIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUVJfMTM5IChIZWF0IEZsdXggRHVlIFRvIFJhaW4sIFcgbS0yKVxuUVFSXzUxMzkgKEhlYXQgRmx1eCBEdWUgVG8gUmFpbiBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25SZl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vblJmX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25SZi9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uUmYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25SZiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uUmYiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblJhaW4uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25SYWluIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25SYWluLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDE5OTctcHJlc2VudCwgUHJlY2lwaXRhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgUHJlY2lwaXRhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblJOXzQ4NSAoUHJlY2lwaXRhdGlvbiwgTU0vSFIpXG5RUk5fNTQ4NSAoUHJlY2lwaXRhdGlvbiBRdWFsaXR5KVxuU1JOXzY0ODUgKFByZWNpcGl0YXRpb24gU291cmNlKVxuUk5TXzQ4NiAoUHJlY2lwaXRhdGlvbiBTdGFuZGFyZCBEZXZpYXRpb24sIE1NL0hSKVxuUk5QXzQ4NyAoUGVyY2VudCBUaW1lIFJhaW5pbmcsIHBlcmNlbnQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vblJhaW5fZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9Nb25SYWluX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25SYWluL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25SYWluLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvTW9uUmFpbiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uUmFpbiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uQnAuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25CcCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uQnAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMTk5OC1wcmVzZW50LCBCYXJvbWV0cmljIChBaXIpIFByZXNzdXJlIiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBCYXJvbWV0cmljIChBaXIpIFByZXNzdXJlIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgTW9udGhseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgZGFpbHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSBtb250aC4gIEEgbWluaW11bSBvZiAxNSBkYWlseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBtb250aGx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuQlBfOTE1IChCYXJvbWV0cmljIChBaXIpIFByZXNzdXJlLCBoUGEpXG5RQlBfNTkxNSAoQmFyb21ldHJpYyAoQWlyKSBQcmVzc3VyZSBRdWFsaXR5KVxuU0JQXzY5MTUgKEJhcm9tZXRyaWMgKEFpcikgUHJlc3N1cmUgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25CcF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vbkJwX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25CcC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uQnAucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25CcCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uQnAiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkJmLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uQmYiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkJmLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDIwMDAtcHJlc2VudCwgQnVveWFuY3kgRmx1eCIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgQnVveWFuY3kgRmx1eCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkJGXzE5MSAoQnVveWFuY3kgRmx1eCwgMTAqKjYga2cgbS0yIHMtMSlcblFCRl81MTkxIChCdW95YW5jeSBGbHV4IFF1YWxpdHkpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb01vbkJmX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uQmZfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb01vbkJmL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9Nb25CZi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vbkJmJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9Nb25CZiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uTHcuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25MdyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uTHcuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgTW9udGhseSwgMjAwMC1wcmVzZW50LCBMb25nd2F2ZSBSYWRpYXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBtb250aGx5IEluY29taW5nIExvbmd3YXZlIFJhZGlhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFsXzEzNiAoSW5jb21pbmcgTG9uZ3dhdmUgUmFkaWF0aW9uLCBXIG0tMilcblFMV181MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNMV182MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25Md19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vbkx3X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25Mdy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uTHcucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25MdyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uTHciXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkx3bmV0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvTW9uTHduZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vbkx3bmV0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDIwMDAtcHJlc2VudCwgTmV0IExvbmd3YXZlIFJhZGlhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIG1vbnRobHkgTmV0IExvbmd3YXZlIFJhZGlhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIE1vbnRobHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIGRhaWx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgbW9udGguICBBIG1pbmltdW0gb2YgMTUgZGFpbHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgbW9udGhseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkxXTl8xMTM2IChOZXQgTG9uZ3dhdmUgUmFkaWF0aW9uLCBXIG0tMilcblFMV181MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNMV182MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25Md25ldF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb01vbkx3bmV0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9Nb25Md25ldC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uTHduZXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9Nb25Md25ldCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvTW9uTHduZXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb01vblFuZXQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25RbmV0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9Nb25RbmV0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIE1vbnRobHksIDIwMDAtcHJlc2VudCwgVG90YWwgSGVhdCBGbHV4IiwgIlRoaXMgZGF0YXNldCBoYXMgbW9udGhseSBUb3RhbCBIZWF0IEZsdXggZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBNb250aGx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBkYWlseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIG1vbnRoLiAgQSBtaW5pbXVtIG9mIDE1IGRhaWx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIG1vbnRobHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5RVF8yMTAgKFRvdGFsIEhlYXQgRmx1eCwgVy9NKioyKVxuUVEwXzUyMTAgKFRvdGFsIEhlYXQgRmx1eCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9Nb25RbmV0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvTW9uUW5ldF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvTW9uUW5ldC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvTW9uUW5ldC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb01vblFuZXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb01vblFuZXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFJhZC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFJhZCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0UmFkLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTkwMS1wcmVzZW50LCBEb3duZ29pbmcgU2hvcnR3YXZlIFJhZGlhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBEb3duZ29pbmcgU2hvcnR3YXZlIFJhZGlhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5SRF80OTUgKERvd25nb2luZyBTaG9ydHdhdmUgUmFkaWF0aW9uLCBXL00qKjIpXG5RU1dfNTQ5NSAoU2hvcnR3YXZlIFJhZGlhdGlvbiBRdWFsaXR5KVxuU1NXXzY0OTUgKFNob3J0d2F2ZSBSYWRpYXRpb24gU291cmNlKVxuUkRTXzQ5NiAoU2hvcnR3YXZlIFJhZGlhdGlvbiBTdGFuZGFyZCBEZXZpYXRpb24sIFcvTSoqMilcblJEUF80OTcgKFNob3J0d2F2ZSBSYWRpYXRpb24gUGVhaywgVy9NKioyKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRSYWRfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9RcnRSYWRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydFJhZC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0UmFkLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvUXJ0UmFkJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRSYWQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydElzby5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydElzbyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0SXNvLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk3Ny1wcmVzZW50LCAyMEMgSXNvdGhlcm0gRGVwdGgiLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgMjBDIElzb3RoZXJtIERlcHRoIGRhdGEgKHRoZSBkZXB0aCBhdCB3aGljaCB0aGUgb2NlYW4gdGVtcGVyYXR1cmUgaXMgMjBDKSBmcm9tIHRoZSBcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbklTT182ICgyMEMgSXNvdGhlcm0gRGVwdGgsIG0pXG5RSV81MDA2ICgyMEMgRGVwdGggUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0SXNvX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0SXNvX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnRJc28vaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydElzby5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydElzbyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0SXNvIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRBaXJ0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0QWlydCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0QWlydC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5NzctcHJlc2VudCwgQWlyIFRlbXBlcmF0dXJlIiwgIlRoaXMgZGF0YXNldCBoYXMgcXVhcnRlcmx5IEFpciBUZW1wZXJhdHVyZSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5BVF8yMSAoQWlyIFRlbXBlcmF0dXJlLCBkZWdyZWVfQylcblFBVF81MDIxIChBaXIgVGVtcGVyYXR1cmUgUXVhbGl0eSlcblNBVF82MDIxIChBaXIgVGVtcGVyYXR1cmUgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRBaXJ0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0QWlydF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvUXJ0QWlydC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0QWlydC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydEFpcnQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb1FydEFpcnQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydEN1ci5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydEN1ciIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0Q3VyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk3Ny1wcmVzZW50LCBDdXJyZW50cyIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBDdXJyZW50cyBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5VXzMyMCAoRWFzdHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBjbSBzLTEpXG5WXzMyMSAoTm9ydGh3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgY20gcy0xKVxuQ1NfMzAwIChTZWEgV2F0ZXIgVmVsb2NpdHksIGNtIHMtMSlcbkNEXzMxMCAoRGlyZWN0aW9uIG9mIFNlYSBXYXRlciBWZWxvY2l0eSwgZGVncmVlc190cnVlKVxuUUNTXzUzMDAgKEN1cnJlbnQgU3BlZWQgUXVhbGl0eSlcblFDRF81MzEwIChDdXJyZW50IERpcmVjdGlvbiBRdWFsaXR5KVxuU0NTXzYzMDAgKEN1cnJlbnQgU3BlZWQgU291cmNlKVxuQ0lDXzczMDAgKEN1cnJlbnQgSW5zdHJ1bWVudCBDb2RlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRDdXJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9RcnRDdXJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydEN1ci9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0Q3VyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvUXJ0Q3VyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRDdXIiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFNzdC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFNzdCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0U3N0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk3Ny1wcmVzZW50LCBTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSAoU1NUKSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5UXzI1IChTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5RVF81MDI1IChTZWEgU3VyZmFjZSBUZW1wZXJhdHVyZSBRdWFsaXR5KVxuU1RfNjAyNSAoU2VhIFN1cmZhY2UgVGVtcGVyYXR1cmUgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRTc3RfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9RcnRTc3RfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydFNzdC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0U3N0LnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvUXJ0U3N0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRTc3QiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRUIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRULmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk3Ny1wcmVzZW50LCBUZW1wZXJhdHVyZSIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBUZW1wZXJhdHVyZSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5UXzIwIChTZWEgV2F0ZXIgVGVtcGVyYXR1cmUsIGRlZ3JlZV9DKVxuUVRfNTAyMCAoVGVtcGVyYXR1cmUgUXVhbGl0eSlcblNUXzYwMjAgKFRlbXBlcmF0dXJlIFNvdXJjZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0VF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydFRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydFQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydFQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRUJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRUIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRXLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0VyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0Vy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5NzctcHJlc2VudCwgV2luZCIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBXaW5kIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbldVXzQyMiAoWm9uYWwgV2luZCwgbSBzLTEpXG5XVl80MjMgKE1lcmlkaW9uYWwgV2luZCwgbSBzLTEpXG5XU180MDEgKFdpbmQgU3BlZWQsIG0gcy0xKVxuUVdTXzU0MDEgKFdpbmQgU3BlZWQgUXVhbGl0eSlcblNXU182NDAxIChXaW5kIFNwZWVkIFNvdXJjZSlcbldEXzQxMCAoV2luZCBEaXJlY3Rpb24sIGRlZ3JlZXNfdHJ1ZSlcblFXRF81NDEwIChXaW5kIERpcmVjdGlvbiBRdWFsaXR5KVxuU1dEXzY0MTAgKFdpbmQgRGlyZWN0aW9uIFNvdXJjZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0V19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydFdfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydFcvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydFcucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRXJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRXIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnREeW4uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnREeW4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydER5bi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5ODAtcHJlc2VudCwgRHluYW1pYyBIZWlnaHQiLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgRHluYW1pYyBIZWlnaHQgZGF0YSAoYSBtZWFzdXJlIG9mIHRoZSBlbGV2YXRpb24gb2YgdGhlIHNlYSBsZXZlbCwgY2FsY3VsYXRlZCBieSBpbnRlZ3JhdGluZyB0aGUgc3BlY2lmaWMgdm9sdW1lIGFub21hbHkgb2YgdGhlIHNlYSB3YXRlciBiZXR3ZWVuIHRoZSBzZWEgc3VyZmFjZSBhbmQgNTAwIG0gZGVwdGgpIGZyb20gdGhlIFxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBRdWFydGVybHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIG1vbnRobHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSAzIG1vbnRoIHBlcmlvZC4gIEEgbWluaW11bSBvZiAyIG1vbnRobHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgcXVhcnRlcmx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuRFlOXzEzIChEeW5hbWljIEhlaWdodCwgZHluLWNtKVxuUURfNTAxMyAoRHluYW1pYyBIZWlnaHQgUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0RHluX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0RHluX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnREeW4vaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydER5bi5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydER5biZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0RHluIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRIZWF0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0SGVhdCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0SGVhdC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5ODAtcHJlc2VudCwgSGVhdCBDb250ZW50IiwgIlRoaXMgZGF0YXNldCBoYXMgcXVhcnRlcmx5IEhlYXQgQ29udGVudCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5IVENfMTMwIChIZWF0IENvbnRlbnQsIDEwKioxMCBKIG0tMilcbkhUQ181MTMwIChIZWF0IENvbnRlbnQgUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0SGVhdF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydEhlYXRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydEhlYXQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydEhlYXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRIZWF0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRIZWF0Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRQb3Muc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRQb3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFBvcy5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5ODAtcHJlc2VudCwgUG9zaXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgUG9zaXRpb24gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBRdWFydGVybHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIG1vbnRobHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSAzIG1vbnRoIHBlcmlvZC4gIEEgbWluaW11bSBvZiAyIG1vbnRobHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgcXVhcnRlcmx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuTE9OXzUwMiAoUHJlY2lzZSBMb25naXR1ZGUsIGRlZ3JlZV9lYXN0KVxuUVhfNTUwMiAoTG9uZ2l0dWRlIFF1YWxpdHkpXG5MQVRfNTAwIChQcmVjaXNlIExhdGl0dWRlLCBkZWdyZWVfbm9ydGgpXG5RWV81NTAwIChMYXRpdHVkZSBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRQb3NfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9RcnRQb3NfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydFBvcy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0UG9zLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvUXJ0UG9zJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRQb3MiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydEQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnREIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRELmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk4Ny1wcmVzZW50LCBQb3RlbnRpYWwgRGVuc2l0eSBBbm9tYWx5IiwgIlRoaXMgZGF0YXNldCBoYXMgcXVhcnRlcmx5IFBvdGVudGlhbCBEZW5zaXR5IEFub21hbHkgKHNpZ21hLXRoZXRhKSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5TVEhfNzEgKFNpZ21hLVRoZXRhLCBrZyBtLTMpXG5RU1RfNTA3MSAoU2lnbWEtVGhldGEgUXVhbGl0eSlcblNTVF82MDcxIChTaWdtYS1UaGV0YSBTb3VyY2UpXG5ESUNfNzA3MSAoU2lnbWEtVGhldGEgSW5zdHJ1bWVudCBDb2RlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnREX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0RF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvUXJ0RC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0RC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydEQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb1FydEQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFMuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRTIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRTLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk4Ny1wcmVzZW50LCBTYWxpbml0eSIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBTYWxpbml0eSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5TXzQxIChTZWEgV2F0ZXIgUHJhY3RpY2FsIFNhbGluaXR5LCBQU1UpXG5RU181MDQxIChTYWxpbml0eSBRdWFsaXR5KVxuU1NfNjA0MSAoU2FsaW5pdHkgU291cmNlKVxuU0lDXzgwNDEgKFNhbGluaXR5IEluc3RydW1lbnQgQ29kZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0U19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydFNfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydFMvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydFMucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRTJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRTIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRBZGNwLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0QWRjcCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0QWRjcC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5ODgtMjAxNywgQURDUCIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBBY291c3RpYyBEb3BwbGVyIEN1cnJlbnQgUHJvZmlsZXIgKEFEQ1ApIHdhdGVyIGN1cnJlbnRzIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgQURDUCBkYXRhIGFyZSBhdmFpbGFibGUgb25seSBhZnRlciBtb29yaW5nIHJlY292ZXJpZXMsIHdoaWNoIGFyZSBzY2hlZHVsZWQgb24gYW4gYW5udWFsIGJhc2lzLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG51XzEyMDUgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSwgY20vcylcblFVXzUyMDUgKEVhc3R3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSBRdWFsaXR5KVxudl8xMjA2IChOb3J0aHdhcmQgU2VhIFdhdGVyIFZlbG9jaXR5LCBjbS9zKVxuUVZfNTIwNiAoTm9ydGh3YXJkIFNlYSBXYXRlciBWZWxvY2l0eSBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRBZGNwX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0QWRjcF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvUXJ0QWRjcC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0QWRjcC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydEFkY3Amc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb1FydEFkY3AiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydEV2YXAuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRFdmFwIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRFdmFwLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk4OS1wcmVzZW50LCBFdmFwb3JhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBFdmFwb3JhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5FXzI1MCAoRXZhcG9yYXRpb24sIE1NL0hSKVxuUUVfNTI1MCAoRXZhcG9yYXRpb24gUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0RXZhcF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydEV2YXBfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydEV2YXAvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydEV2YXAucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRFdmFwJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRFdmFwIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRRbGF0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0UWxhdCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0UWxhdC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5ODktcHJlc2VudCwgTGF0ZW50IEhlYXQgRmx1eCIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBMYXRlbnQgSGVhdCBGbHV4IGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFMXzEzNyAoTGF0ZW50IEhlYXQgRmx1eCwgVyBtLTIpXG5RUUxfNTEzNyAoTGF0ZW50IEhlYXQgRmx1eCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRRbGF0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0UWxhdF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvUXJ0UWxhdC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0UWxhdC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydFFsYXQmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb1FydFFsYXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFJoLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0UmgiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFJoLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk4OS1wcmVzZW50LCBSZWxhdGl2ZSBIdW1pZGl0eSIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBSZWxhdGl2ZSBIdW1pZGl0eSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5SSF85MTAgKFJlbGF0aXZlIEh1bWlkaXR5LCBwZXJjZW50KVxuUVJIXzU5MTAgKFJlbGF0aXZlIEh1bWlkaXR5IFF1YWxpdHkpXG5TUkhfNjkxMCAoUmVsYXRpdmUgSHVtaWRpdHkgU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRSaF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydFJoX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnRSaC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0UmgucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRSaCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0UmgiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFFzZW4uc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRRc2VuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRRc2VuLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk4OS1wcmVzZW50LCBTZW5zaWJsZSBIZWF0IEZsdXgiLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgU2Vuc2libGUgSGVhdCBGbHV4IGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFTXzEzOCAoU2Vuc2libGUgSGVhdCBGbHV4LCBXIG0tMilcblFRU181MTM4IChTZW5zaWJsZSBIZWF0IEZsdXggUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0UXNlbl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydFFzZW5faXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydFFzZW4vaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydFFzZW4ucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRRc2VuJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRRc2VuIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRUYXUuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRUYXUiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFRhdS5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5ODktcHJlc2VudCwgV2luZCBTdHJlc3MiLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgV2luZCBTdHJlc3MgZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBRdWFydGVybHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIG1vbnRobHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSAzIG1vbnRoIHBlcmlvZC4gIEEgbWluaW11bSBvZiAyIG1vbnRobHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgcXVhcnRlcmx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuVFhfNDQyIChab25hbCBXaW5kIFN0cmVzcywgTi9tMilcblRZXzQ0MyAoTWVyaWRpb25hbCBXaW5kIFN0cmVzcywgTi9tMilcblRBVV80NDAgKFdpbmQgU3RyZXNzLCBOL20yKVxuVERfNDQ1IChXaW5kIFN0cmVzcyBEaXJlY3Rpb24sIGRlZ3JlZXNfdHJ1ZSlcblFUQVVfNTQ0MCAoV2luZCBTdHJlc3MgUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0VGF1X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0VGF1X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnRUYXUvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydFRhdS5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydFRhdSZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0VGF1Il0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRTd25ldC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFN3bmV0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRTd25ldC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5OTEtcHJlc2VudCwgTmV0IFNob3J0d2F2ZSBSYWRpYXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgTmV0IFNob3J0d2F2ZSBSYWRpYXRpb24gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBRdWFydGVybHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIG1vbnRobHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSAzIG1vbnRoIHBlcmlvZC4gIEEgbWluaW11bSBvZiAyIG1vbnRobHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgcXVhcnRlcmx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuU1dOXzE0OTUgKE5ldCBTaG9ydHdhdmUgUmFkaWF0aW9uLCBXL00qKjIpXG5RU1dfNTQ5NSAoU2hvcnR3YXZlIFJhZGlhdGlvbiBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRTd25ldF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydFN3bmV0X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnRTd25ldC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0U3duZXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRTd25ldCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0U3duZXQiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFNzcy5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFNzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0U3NzLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk5Mi1wcmVzZW50LCBTZWEgU3VyZmFjZSBTYWxpbml0eSIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBTZWEgU3VyZmFjZSBTYWxpbml0eSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5TXzQxIChTZWEgV2F0ZXIgUHJhY3RpY2FsIFNhbGluaXR5LCBQU1UpXG5RU181MDQxIChTYWxpbml0eSBRdWFsaXR5KVxuU1NfNjA0MSAoU2FsaW5pdHkgU291cmNlKVxuU0lDXzcwNDEgKFNhbGluaXR5IEluc3RydW1lbnQgQ29kZSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0U3NzX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0U3NzX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnRTc3MvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydFNzcy5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydFNzcyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0U3NzIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRTc2Quc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRTc2QiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFNzZC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5OTItcHJlc2VudCwgU2lnbWEtVGhldGEiLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgU2lnbWEtVGhldGEgKFBvdGVudGlhbCBEZW5zaXR5IEFub21hbHkpIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblNUSF83MSAoU2lnbWEtVGhldGEsIGtnIG0tMylcblFTVF81MDcxIChTaWdtYS1UaGV0YSBRdWFsaXR5KVxuU1NUXzYwNzEgKFNpZ21hLVRoZXRhIFNvdXJjZSlcbkRJQ183MDcxIChTaWdtYS1UaGV0YSBJbnN0cnVtZW50IENvZGUpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb1FydFNzZF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydFNzZF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvUXJ0U3NkL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9RcnRTc2QucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRTc2Qmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb1FydFNzZCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0RW1wLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0RW1wIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRFbXAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgUXVhcnRlcmx5LCAxOTk3LXByZXNlbnQsIEV2YXBvcmF0aW9uIE1pbnVzIFByZWNpcGl0YXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgRXZhcG9yYXRpb24gTWludXMgUHJlY2lwaXRhdGlvbiBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5FTVBfMjUxIChFdmFwb3JhdGlvbiBNaW51cyBQcmVjaXBpdGF0aW9uLCBtbS9ocilcblFFTVBfNTI1MSAoRXZhcG9yYXRpb24gTWludXMgUHJlY2lwaXRhdGlvbiBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRFbXBfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9RcnRFbXBfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydEVtcC9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0RW1wLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvUXJ0RW1wJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRFbXAiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFJmLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0UmYiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFJmLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMTk5Ny1wcmVzZW50LCBIZWF0IEZsdXggRHVlIFRvIFJhaW4iLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgSGVhdCBGbHV4IER1ZSBUbyBSYWluIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFSXzEzOSAoSGVhdCBGbHV4IER1ZSBUbyBSYWluLCBXIG0tMilcblFRUl81MTM5IChIZWF0IEZsdXggRHVlIFRvIFJhaW4gUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0UmZfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9RcnRSZl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9wbWVsVGFvUXJ0UmYvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydFJmLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvUXJ0UmYmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBQTUVMLCBUQU8vVFJJVE9OLCBSQU1BLCBQSVJBVEEiLCAicG1lbFRhb1FydFJmIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRSYWluLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0UmFpbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0UmFpbi5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJUQU8vVFJJVE9OLCBSQU1BLCBhbmQgUElSQVRBIEJ1b3lzLCBRdWFydGVybHksIDE5OTctcHJlc2VudCwgUHJlY2lwaXRhdGlvbiIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBQcmVjaXBpdGF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblJOXzQ4NSAoUHJlY2lwaXRhdGlvbiwgTU0vSFIpXG5RUk5fNTQ4NSAoUHJlY2lwaXRhdGlvbiBRdWFsaXR5KVxuU1JOXzY0ODUgKFByZWNpcGl0YXRpb24gU291cmNlKVxuUk5TXzQ4NiAoUHJlY2lwaXRhdGlvbiBTdGFuZGFyZCBEZXZpYXRpb24sIE1NL0hSKVxuUk5QXzQ4NyAoUGVyY2VudCBUaW1lIFJhaW5pbmcsIHBlcmNlbnQpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb1FydFJhaW5fZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL3BtZWxUYW9RcnRSYWluX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnRSYWluL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9RcnRSYWluLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1wbWVsVGFvUXJ0UmFpbiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0UmFpbiJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0QnAuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRCcCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0QnAuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgUXVhcnRlcmx5LCAxOTk4LXByZXNlbnQsIEJhcm9tZXRyaWMgKEFpcikgUHJlc3N1cmUiLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgQmFyb21ldHJpYyAoQWlyKSBQcmVzc3VyZSBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5CUF85MTUgKEJhcm9tZXRyaWMgKEFpcikgUHJlc3N1cmUsIGhQYSlcblFCUF81OTE1IChCYXJvbWV0cmljIChBaXIpIFByZXNzdXJlIFF1YWxpdHkpXG5TQlBfNjkxNSAoQmFyb21ldHJpYyAoQWlyKSBQcmVzc3VyZSBTb3VyY2UpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb1FydEJwX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0QnBfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydEJwL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9RcnRCcC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydEJwJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRCcCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0QmYuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL3BtZWxUYW9RcnRCZiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0QmYuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgUXVhcnRlcmx5LCAyMDAwLXByZXNlbnQsIEJ1b3lhbmN5IEZsdXgiLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgQnVveWFuY3kgRmx1eCBkYXRhIGZyb20gdGhlXG5UQU8vVFJJVE9OIChQYWNpZmljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhLyApLFxuUkFNQSAoSW5kaWFuIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BtZWwtdGhlbWUvaW5kaWFuLW9jZWFuLXJhbWEgKSwgYW5kXG5QSVJBVEEgKEF0bGFudGljIE9jZWFuLCBodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL3BpcmF0YS8gKVxuYXJyYXlzIG9mIG1vb3JlZCBidW95cyB3aGljaCB0cmFuc21pdCBvY2Vhbm9ncmFwaGljIGFuZCBtZXRlb3JvbG9naWNhbCBkYXRhIHRvIHNob3JlIGluIHJlYWwtdGltZSB2aWEgdGhlIEFyZ29zIHNhdGVsbGl0ZSBzeXN0ZW0uICBUaGVzZSBidW95cyBhcmUgbWFqb3IgY29tcG9uZW50cyBvZiB0aGUgQ0xJVkFSIGNsaW1hdGUgYW5hbHlzaXMgcHJvamVjdCBhbmQgdGhlIEdPT1MsIEdDT1MsIGFuZCBHRU9TUyBvYnNlcnZpbmcgc3lzdGVtcy4gIFF1YXJ0ZXJseSBkYXRhIGlzIGFuIGF2ZXJhZ2Ugb2YgbW9udGhseSB2YWx1ZXMgY29sbGVjdGVkIGR1cmluZyBhIDMgbW9udGggcGVyaW9kLiAgQSBtaW5pbXVtIG9mIDIgbW9udGhseSB2YWx1ZXMgYXJlIHJlcXVpcmVkIHRvIGNvbXB1dGUgYSBxdWFydGVybHkgYXZlcmFnZS4gIFRoaXMgZGF0YXNldCBjb250YWlucyByZWFsdGltZSBhbmQgZGVsYXllZCBtb2RlIGRhdGEgKHNlZSB0aGUgJ3NvdXJjZScgdmFyaWFibGUpLiAgRm9yIG1vcmUgaW5mb3JtYXRpb24sIHNlZVxuaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIC5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbmFycmF5XG5zdGF0aW9uXG53bW9fcGxhdGZvcm1fY29kZVxubG9uZ2l0dWRlIChOb21pbmFsIExvbmdpdHVkZSwgZGVncmVlc19lYXN0KVxubGF0aXR1ZGUgKE5vbWluYWwgTGF0aXR1ZGUsIGRlZ3JlZXNfbm9ydGgpXG50aW1lIChDZW50ZXJlZCBUaW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuZGVwdGggKG0pXG5CRl8xOTEgKEJ1b3lhbmN5IEZsdXgsIDEwKio2IGtnIG0tMiBzLTEpXG5RQkZfNTE5MSAoQnVveWFuY3kgRmx1eCBRdWFsaXR5KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRCZl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydEJmX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnRCZi9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0QmYucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRCZiZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0QmYiXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydEx3LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0THciLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydEx3LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMjAwMC1wcmVzZW50LCBMb25nd2F2ZSBSYWRpYXRpb24iLCAiVGhpcyBkYXRhc2V0IGhhcyBxdWFydGVybHkgSW5jb21pbmcgTG9uZ3dhdmUgUmFkaWF0aW9uIGRhdGEgZnJvbSB0aGVcblRBTy9UUklUT04gKFBhY2lmaWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvICksXG5SQU1BIChJbmRpYW4gT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcG1lbC10aGVtZS9pbmRpYW4tb2NlYW4tcmFtYSApLCBhbmRcblBJUkFUQSAoQXRsYW50aWMgT2NlYW4sIGh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvcGlyYXRhLyApXG5hcnJheXMgb2YgbW9vcmVkIGJ1b3lzIHdoaWNoIHRyYW5zbWl0IG9jZWFub2dyYXBoaWMgYW5kIG1ldGVvcm9sb2dpY2FsIGRhdGEgdG8gc2hvcmUgaW4gcmVhbC10aW1lIHZpYSB0aGUgQXJnb3Mgc2F0ZWxsaXRlIHN5c3RlbS4gIFRoZXNlIGJ1b3lzIGFyZSBtYWpvciBjb21wb25lbnRzIG9mIHRoZSBDTElWQVIgY2xpbWF0ZSBhbmFseXNpcyBwcm9qZWN0IGFuZCB0aGUgR09PUywgR0NPUywgYW5kIEdFT1NTIG9ic2VydmluZyBzeXN0ZW1zLiAgUXVhcnRlcmx5IGRhdGEgaXMgYW4gYXZlcmFnZSBvZiBtb250aGx5IHZhbHVlcyBjb2xsZWN0ZWQgZHVyaW5nIGEgMyBtb250aCBwZXJpb2QuICBBIG1pbmltdW0gb2YgMiBtb250aGx5IHZhbHVlcyBhcmUgcmVxdWlyZWQgdG8gY29tcHV0ZSBhIHF1YXJ0ZXJseSBhdmVyYWdlLiAgVGhpcyBkYXRhc2V0IGNvbnRhaW5zIHJlYWx0aW1lIGFuZCBkZWxheWVkIG1vZGUgZGF0YSAoc2VlIHRoZSAnc291cmNlJyB2YXJpYWJsZSkuICBGb3IgbW9yZSBpbmZvcm1hdGlvbiwgc2VlXG5odHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24gLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxuYXJyYXlcbnN0YXRpb25cbndtb19wbGF0Zm9ybV9jb2RlXG5sb25naXR1ZGUgKE5vbWluYWwgTG9uZ2l0dWRlLCBkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoTm9taW5hbCBMYXRpdHVkZSwgZGVncmVlc19ub3J0aClcbnRpbWUgKENlbnRlcmVkIFRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcblFsXzEzNiAoSW5jb21pbmcgTG9uZ3dhdmUgUmFkaWF0aW9uLCBXIG0tMilcblFMV181MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gUXVhbGl0eSlcblNMV182MTM2IChMb25nd2F2ZSBSYWRpYXRpb24gU291cmNlKVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL3BtZWxUYW9RcnRMd19mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydEx3X2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL3BtZWxUYW9RcnRMdy9pbmRleC5qc29uIiwgImh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9wbWVsVGFvUXJ0THcucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRMdyZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIFBNRUwsIFRBTy9UUklUT04sIFJBTUEsIFBJUkFUQSIsICJwbWVsVGFvUXJ0THciXSwKICAgICAgWyIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydEx3bmV0LnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0THduZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydEx3bmV0LmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlRBTy9UUklUT04sIFJBTUEsIGFuZCBQSVJBVEEgQnVveXMsIFF1YXJ0ZXJseSwgMjAwMC1wcmVzZW50LCBOZXQgTG9uZ3dhdmUgUmFkaWF0aW9uIiwgIlRoaXMgZGF0YXNldCBoYXMgcXVhcnRlcmx5IE5ldCBMb25nd2F2ZSBSYWRpYXRpb24gZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBRdWFydGVybHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIG1vbnRobHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSAzIG1vbnRoIHBlcmlvZC4gIEEgbWluaW11bSBvZiAyIG1vbnRobHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgcXVhcnRlcmx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuTFdOXzExMzYgKE5ldCBMb25nd2F2ZSBSYWRpYXRpb24sIFcgbS0yKVxuUUxXXzUxMzYgKExvbmd3YXZlIFJhZGlhdGlvbiBRdWFsaXR5KVxuU0xXXzYxMzYgKExvbmd3YXZlIFJhZGlhdGlvbiBTb3VyY2UpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvcG1lbFRhb1FydEx3bmV0X2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9wbWVsVGFvUXJ0THduZXRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydEx3bmV0L2luZGV4Lmpzb24iLCAiaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9taXNzaW9uIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL3BtZWxUYW9RcnRMd25ldC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9cG1lbFRhb1FydEx3bmV0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRMd25ldCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9wbWVsVGFvUXJ0UW5ldC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFFuZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvcG1lbFRhb1FydFFuZXQuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVEFPL1RSSVRPTiwgUkFNQSwgYW5kIFBJUkFUQSBCdW95cywgUXVhcnRlcmx5LCAyMDAwLXByZXNlbnQsIFRvdGFsIEhlYXQgRmx1eCIsICJUaGlzIGRhdGFzZXQgaGFzIHF1YXJ0ZXJseSBUb3RhbCBIZWF0IEZsdXggZGF0YSBmcm9tIHRoZVxuVEFPL1RSSVRPTiAoUGFjaWZpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS8gKSxcblJBTUEgKEluZGlhbiBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9wbWVsLXRoZW1lL2luZGlhbi1vY2Vhbi1yYW1hICksIGFuZFxuUElSQVRBIChBdGxhbnRpYyBPY2VhbiwgaHR0cHM6Ly93d3cucG1lbC5ub2FhLmdvdi9ndG1iYS9waXJhdGEvIClcbmFycmF5cyBvZiBtb29yZWQgYnVveXMgd2hpY2ggdHJhbnNtaXQgb2NlYW5vZ3JhcGhpYyBhbmQgbWV0ZW9yb2xvZ2ljYWwgZGF0YSB0byBzaG9yZSBpbiByZWFsLXRpbWUgdmlhIHRoZSBBcmdvcyBzYXRlbGxpdGUgc3lzdGVtLiAgVGhlc2UgYnVveXMgYXJlIG1ham9yIGNvbXBvbmVudHMgb2YgdGhlIENMSVZBUiBjbGltYXRlIGFuYWx5c2lzIHByb2plY3QgYW5kIHRoZSBHT09TLCBHQ09TLCBhbmQgR0VPU1Mgb2JzZXJ2aW5nIHN5c3RlbXMuICBRdWFydGVybHkgZGF0YSBpcyBhbiBhdmVyYWdlIG9mIG1vbnRobHkgdmFsdWVzIGNvbGxlY3RlZCBkdXJpbmcgYSAzIG1vbnRoIHBlcmlvZC4gIEEgbWluaW11bSBvZiAyIG1vbnRobHkgdmFsdWVzIGFyZSByZXF1aXJlZCB0byBjb21wdXRlIGEgcXVhcnRlcmx5IGF2ZXJhZ2UuICBUaGlzIGRhdGFzZXQgY29udGFpbnMgcmVhbHRpbWUgYW5kIGRlbGF5ZWQgbW9kZSBkYXRhIChzZWUgdGhlICdzb3VyY2UnIHZhcmlhYmxlKS4gIEZvciBtb3JlIGluZm9ybWF0aW9uLCBzZWVcbmh0dHBzOi8vd3d3LnBtZWwubm9hYS5nb3YvZ3RtYmEvbWlzc2lvbiAuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG5hcnJheVxuc3RhdGlvblxud21vX3BsYXRmb3JtX2NvZGVcbmxvbmdpdHVkZSAoTm9taW5hbCBMb25naXR1ZGUsIGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChOb21pbmFsIExhdGl0dWRlLCBkZWdyZWVzX25vcnRoKVxudGltZSAoQ2VudGVyZWQgVGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuUVRfMjEwIChUb3RhbCBIZWF0IEZsdXgsIFcvTSoqMilcblFRMF81MjEwIChUb3RhbCBIZWF0IEZsdXggUXVhbGl0eSlcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9wbWVsVGFvUXJ0UW5ldF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvcG1lbFRhb1FydFFuZXRfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vcG1lbFRhb1FydFFuZXQvaW5kZXguanNvbiIsICJodHRwczovL3d3dy5wbWVsLm5vYWEuZ292L2d0bWJhL21pc3Npb24iLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvcG1lbFRhb1FydFFuZXQucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPXBtZWxUYW9RcnRRbmV0JnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgUE1FTCwgVEFPL1RSSVRPTiwgUkFNQSwgUElSQVRBIiwgInBtZWxUYW9RcnRRbmV0Il0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTIxNmhyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJMjE2aHIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVXB3ZWxsaW5nIEluZGV4LCAyMU4gMTA3VywgNi1ob3VybHkiLCAiVXB3ZWxsaW5nIGluZGV4IGNvbXB1dGVkIGZyb20gMS1kZWdyZWUgRk5NT0Mgc2VhIGxldmVsIHByZXNzdXJlIGZvciAxNSBsb2NhdGlvbnMgb2ZmIHRoZSBOb3J0aCBBbWVyaWNhbiBXZXN0IENvYXN0IGF0IGVhY2ggMyBkZWdyZWVzIG9mIGxhdGl0dWRlIGZyb20gMjFOIHRvIDYwTi4gVGhlIGNvYXN0YWwgVXB3ZWxsaW5nIEluZGV4IGlzIGFuIGluZGV4IG9mIHRoZSBzdHJlbmd0aCBvZiB0aGUgd2luZCBmb3JjaW5nIG9uIHRoZSBvY2VhbiB3aGljaCBoYXMgYmVlbiB1c2VkIGluIG1hbnkgc3R1ZGllcyBvZiB0aGUgZWZmZWN0cyBvZiBvY2VhbiB2YXJpYWJpbGl0eSBvbiB0aGUgcmVwcm9kdWN0aXZlIGFuZCByZWNydWl0bWVudCBzdWNjZXNzIG9mIG1hbnkgZmlzaCBhbmQgaW52ZXJ0ZWJyYXRlIHNwZWNpZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChyZWZlcmVuY2UgdGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnVwd2VsbGluZ19pbmRleFxuc3RhdGlvbl9pZFxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRVSTIxNmhyX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRVSTIxNmhyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZFVJMjE2aHIvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0xBUy9kb2NzL3dpbmRfZnJvbV9wcmVzc3VyZS5uYy5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZFVJMjE2aHIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZFVJMjE2aHImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQS9TV0ZTQyBFbnZpcm9ubWVudGFsIFJlc2VhcmNoIERpdmlzaW9uIiwgImVyZFVJMjE2aHIiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJMjQ2aHIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUkyNDZoci5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJVcHdlbGxpbmcgSW5kZXgsIDI0TiAxMTNXLCA2LWhvdXJseSIsICJVcHdlbGxpbmcgaW5kZXggY29tcHV0ZWQgZnJvbSAxLWRlZ3JlZSBGTk1PQyBzZWEgbGV2ZWwgcHJlc3N1cmUgZm9yIDE1IGxvY2F0aW9ucyBvZmYgdGhlIE5vcnRoIEFtZXJpY2FuIFdlc3QgQ29hc3QgYXQgZWFjaCAzIGRlZ3JlZXMgb2YgbGF0aXR1ZGUgZnJvbSAyMU4gdG8gNjBOLiBUaGUgY29hc3RhbCBVcHdlbGxpbmcgSW5kZXggaXMgYW4gaW5kZXggb2YgdGhlIHN0cmVuZ3RoIG9mIHRoZSB3aW5kIGZvcmNpbmcgb24gdGhlIG9jZWFuIHdoaWNoIGhhcyBiZWVuIHVzZWQgaW4gbWFueSBzdHVkaWVzIG9mIHRoZSBlZmZlY3RzIG9mIG9jZWFuIHZhcmlhYmlsaXR5IG9uIHRoZSByZXByb2R1Y3RpdmUgYW5kIHJlY3J1aXRtZW50IHN1Y2Nlc3Mgb2YgbWFueSBmaXNoIGFuZCBpbnZlcnRlYnJhdGUgc3BlY2llcy5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHJlZmVyZW5jZSB0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxudXB3ZWxsaW5nX2luZGV4XG5zdGF0aW9uX2lkXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZFVJMjQ2aHJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZFVJMjQ2aHJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkVUkyNDZoci9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTEFTL2RvY3Mvd2luZF9mcm9tX3ByZXNzdXJlLm5jLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkVUkyNDZoci5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkVUkyNDZociZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBL1NXRlNDIEVudmlyb25tZW50YWwgUmVzZWFyY2ggRGl2aXNpb24iLCAiZXJkVUkyNDZociJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUkyNzZociIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTI3NmhyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlVwd2VsbGluZyBJbmRleCwgMjdOIDExNlcsIDYtaG91cmx5IiwgIlVwd2VsbGluZyBpbmRleCBjb21wdXRlZCBmcm9tIDEtZGVncmVlIEZOTU9DIHNlYSBsZXZlbCBwcmVzc3VyZSBmb3IgMTUgbG9jYXRpb25zIG9mZiB0aGUgTm9ydGggQW1lcmljYW4gV2VzdCBDb2FzdCBhdCBlYWNoIDMgZGVncmVlcyBvZiBsYXRpdHVkZSBmcm9tIDIxTiB0byA2ME4uIFRoZSBjb2FzdGFsIFVwd2VsbGluZyBJbmRleCBpcyBhbiBpbmRleCBvZiB0aGUgc3RyZW5ndGggb2YgdGhlIHdpbmQgZm9yY2luZyBvbiB0aGUgb2NlYW4gd2hpY2ggaGFzIGJlZW4gdXNlZCBpbiBtYW55IHN0dWRpZXMgb2YgdGhlIGVmZmVjdHMgb2Ygb2NlYW4gdmFyaWFiaWxpdHkgb24gdGhlIHJlcHJvZHVjdGl2ZSBhbmQgcmVjcnVpdG1lbnQgc3VjY2VzcyBvZiBtYW55IGZpc2ggYW5kIGludmVydGVicmF0ZSBzcGVjaWVzLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAocmVmZXJlbmNlIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG51cHdlbGxpbmdfaW5kZXhcbnN0YXRpb25faWRcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkVUkyNzZocl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkVUkyNzZocl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRVSTI3NmhyL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9MQVMvZG9jcy93aW5kX2Zyb21fcHJlc3N1cmUubmMuaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRVSTI3NmhyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRVSTI3NmhyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEvU1dGU0MgRW52aXJvbm1lbnRhbCBSZXNlYXJjaCBEaXZpc2lvbiIsICJlcmRVSTI3NmhyIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTMwNmhyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJMzA2aHIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVXB3ZWxsaW5nIEluZGV4LCAzME4gMTE5VywgNi1ob3VybHkiLCAiVXB3ZWxsaW5nIGluZGV4IGNvbXB1dGVkIGZyb20gMS1kZWdyZWUgRk5NT0Mgc2VhIGxldmVsIHByZXNzdXJlIGZvciAxNSBsb2NhdGlvbnMgb2ZmIHRoZSBOb3J0aCBBbWVyaWNhbiBXZXN0IENvYXN0IGF0IGVhY2ggMyBkZWdyZWVzIG9mIGxhdGl0dWRlIGZyb20gMjFOIHRvIDYwTi4gVGhlIGNvYXN0YWwgVXB3ZWxsaW5nIEluZGV4IGlzIGFuIGluZGV4IG9mIHRoZSBzdHJlbmd0aCBvZiB0aGUgd2luZCBmb3JjaW5nIG9uIHRoZSBvY2VhbiB3aGljaCBoYXMgYmVlbiB1c2VkIGluIG1hbnkgc3R1ZGllcyBvZiB0aGUgZWZmZWN0cyBvZiBvY2VhbiB2YXJpYWJpbGl0eSBvbiB0aGUgcmVwcm9kdWN0aXZlIGFuZCByZWNydWl0bWVudCBzdWNjZXNzIG9mIG1hbnkgZmlzaCBhbmQgaW52ZXJ0ZWJyYXRlIHNwZWNpZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChyZWZlcmVuY2UgdGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnVwd2VsbGluZ19pbmRleFxuc3RhdGlvbl9pZFxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRVSTMwNmhyX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRVSTMwNmhyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZFVJMzA2aHIvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0xBUy9kb2NzL3dpbmRfZnJvbV9wcmVzc3VyZS5uYy5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZFVJMzA2aHIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZFVJMzA2aHImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQS9TV0ZTQyBFbnZpcm9ubWVudGFsIFJlc2VhcmNoIERpdmlzaW9uIiwgImVyZFVJMzA2aHIiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJMzM2aHIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUkzMzZoci5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJVcHdlbGxpbmcgSW5kZXgsIDMzTiAxMTlXLCA2LWhvdXJseSIsICJVcHdlbGxpbmcgaW5kZXggY29tcHV0ZWQgZnJvbSAxLWRlZ3JlZSBGTk1PQyBzZWEgbGV2ZWwgcHJlc3N1cmUgZm9yIDE1IGxvY2F0aW9ucyBvZmYgdGhlIE5vcnRoIEFtZXJpY2FuIFdlc3QgQ29hc3QgYXQgZWFjaCAzIGRlZ3JlZXMgb2YgbGF0aXR1ZGUgZnJvbSAyMU4gdG8gNjBOLiBUaGUgY29hc3RhbCBVcHdlbGxpbmcgSW5kZXggaXMgYW4gaW5kZXggb2YgdGhlIHN0cmVuZ3RoIG9mIHRoZSB3aW5kIGZvcmNpbmcgb24gdGhlIG9jZWFuIHdoaWNoIGhhcyBiZWVuIHVzZWQgaW4gbWFueSBzdHVkaWVzIG9mIHRoZSBlZmZlY3RzIG9mIG9jZWFuIHZhcmlhYmlsaXR5IG9uIHRoZSByZXByb2R1Y3RpdmUgYW5kIHJlY3J1aXRtZW50IHN1Y2Nlc3Mgb2YgbWFueSBmaXNoIGFuZCBpbnZlcnRlYnJhdGUgc3BlY2llcy5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHJlZmVyZW5jZSB0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxudXB3ZWxsaW5nX2luZGV4XG5zdGF0aW9uX2lkXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZFVJMzM2aHJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZFVJMzM2aHJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkVUkzMzZoci9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTEFTL2RvY3Mvd2luZF9mcm9tX3ByZXNzdXJlLm5jLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkVUkzMzZoci5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkVUkzMzZociZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBL1NXRlNDIEVudmlyb25tZW50YWwgUmVzZWFyY2ggRGl2aXNpb24iLCAiZXJkVUkzMzZociJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUkzNjZociIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTM2NmhyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlVwd2VsbGluZyBJbmRleCwgMzZOIDEyMlcsIDYtaG91cmx5IiwgIlVwd2VsbGluZyBpbmRleCBjb21wdXRlZCBmcm9tIDEtZGVncmVlIEZOTU9DIHNlYSBsZXZlbCBwcmVzc3VyZSBmb3IgMTUgbG9jYXRpb25zIG9mZiB0aGUgTm9ydGggQW1lcmljYW4gV2VzdCBDb2FzdCBhdCBlYWNoIDMgZGVncmVlcyBvZiBsYXRpdHVkZSBmcm9tIDIxTiB0byA2ME4uIFRoZSBjb2FzdGFsIFVwd2VsbGluZyBJbmRleCBpcyBhbiBpbmRleCBvZiB0aGUgc3RyZW5ndGggb2YgdGhlIHdpbmQgZm9yY2luZyBvbiB0aGUgb2NlYW4gd2hpY2ggaGFzIGJlZW4gdXNlZCBpbiBtYW55IHN0dWRpZXMgb2YgdGhlIGVmZmVjdHMgb2Ygb2NlYW4gdmFyaWFiaWxpdHkgb24gdGhlIHJlcHJvZHVjdGl2ZSBhbmQgcmVjcnVpdG1lbnQgc3VjY2VzcyBvZiBtYW55IGZpc2ggYW5kIGludmVydGVicmF0ZSBzcGVjaWVzLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAocmVmZXJlbmNlIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG51cHdlbGxpbmdfaW5kZXhcbnN0YXRpb25faWRcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkVUkzNjZocl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkVUkzNjZocl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRVSTM2NmhyL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9MQVMvZG9jcy93aW5kX2Zyb21fcHJlc3N1cmUubmMuaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRVSTM2NmhyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRVSTM2NmhyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEvU1dGU0MgRW52aXJvbm1lbnRhbCBSZXNlYXJjaCBEaXZpc2lvbiIsICJlcmRVSTM2NmhyIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTM5NmhyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJMzk2aHIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVXB3ZWxsaW5nIEluZGV4LCAzOU4gMTI1VywgNi1ob3VybHkiLCAiVXB3ZWxsaW5nIGluZGV4IGNvbXB1dGVkIGZyb20gMS1kZWdyZWUgRk5NT0Mgc2VhIGxldmVsIHByZXNzdXJlIGZvciAxNSBsb2NhdGlvbnMgb2ZmIHRoZSBOb3J0aCBBbWVyaWNhbiBXZXN0IENvYXN0IGF0IGVhY2ggMyBkZWdyZWVzIG9mIGxhdGl0dWRlIGZyb20gMjFOIHRvIDYwTi4gVGhlIGNvYXN0YWwgVXB3ZWxsaW5nIEluZGV4IGlzIGFuIGluZGV4IG9mIHRoZSBzdHJlbmd0aCBvZiB0aGUgd2luZCBmb3JjaW5nIG9uIHRoZSBvY2VhbiB3aGljaCBoYXMgYmVlbiB1c2VkIGluIG1hbnkgc3R1ZGllcyBvZiB0aGUgZWZmZWN0cyBvZiBvY2VhbiB2YXJpYWJpbGl0eSBvbiB0aGUgcmVwcm9kdWN0aXZlIGFuZCByZWNydWl0bWVudCBzdWNjZXNzIG9mIG1hbnkgZmlzaCBhbmQgaW52ZXJ0ZWJyYXRlIHNwZWNpZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChyZWZlcmVuY2UgdGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnVwd2VsbGluZ19pbmRleFxuc3RhdGlvbl9pZFxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRVSTM5NmhyX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRVSTM5NmhyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZFVJMzk2aHIvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0xBUy9kb2NzL3dpbmRfZnJvbV9wcmVzc3VyZS5uYy5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZFVJMzk2aHIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZFVJMzk2aHImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQS9TV0ZTQyBFbnZpcm9ubWVudGFsIFJlc2VhcmNoIERpdmlzaW9uIiwgImVyZFVJMzk2aHIiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJNDI2aHIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUk0MjZoci5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJVcHdlbGxpbmcgSW5kZXgsIDQyTiAxMjVXLCA2LWhvdXJseSIsICJVcHdlbGxpbmcgaW5kZXggY29tcHV0ZWQgZnJvbSAxLWRlZ3JlZSBGTk1PQyBzZWEgbGV2ZWwgcHJlc3N1cmUgZm9yIDE1IGxvY2F0aW9ucyBvZmYgdGhlIE5vcnRoIEFtZXJpY2FuIFdlc3QgQ29hc3QgYXQgZWFjaCAzIGRlZ3JlZXMgb2YgbGF0aXR1ZGUgZnJvbSAyMU4gdG8gNjBOLiBUaGUgY29hc3RhbCBVcHdlbGxpbmcgSW5kZXggaXMgYW4gaW5kZXggb2YgdGhlIHN0cmVuZ3RoIG9mIHRoZSB3aW5kIGZvcmNpbmcgb24gdGhlIG9jZWFuIHdoaWNoIGhhcyBiZWVuIHVzZWQgaW4gbWFueSBzdHVkaWVzIG9mIHRoZSBlZmZlY3RzIG9mIG9jZWFuIHZhcmlhYmlsaXR5IG9uIHRoZSByZXByb2R1Y3RpdmUgYW5kIHJlY3J1aXRtZW50IHN1Y2Nlc3Mgb2YgbWFueSBmaXNoIGFuZCBpbnZlcnRlYnJhdGUgc3BlY2llcy5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHJlZmVyZW5jZSB0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxudXB3ZWxsaW5nX2luZGV4XG5zdGF0aW9uX2lkXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZFVJNDI2aHJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZFVJNDI2aHJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkVUk0MjZoci9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTEFTL2RvY3Mvd2luZF9mcm9tX3ByZXNzdXJlLm5jLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkVUk0MjZoci5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkVUk0MjZociZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBL1NXRlNDIEVudmlyb25tZW50YWwgUmVzZWFyY2ggRGl2aXNpb24iLCAiZXJkVUk0MjZociJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUk0NTZociIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTQ1NmhyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlVwd2VsbGluZyBJbmRleCwgNDVOIDEyNVcsIDYtaG91cmx5IiwgIlVwd2VsbGluZyBpbmRleCBjb21wdXRlZCBmcm9tIDEtZGVncmVlIEZOTU9DIHNlYSBsZXZlbCBwcmVzc3VyZSBmb3IgMTUgbG9jYXRpb25zIG9mZiB0aGUgTm9ydGggQW1lcmljYW4gV2VzdCBDb2FzdCBhdCBlYWNoIDMgZGVncmVlcyBvZiBsYXRpdHVkZSBmcm9tIDIxTiB0byA2ME4uIFRoZSBjb2FzdGFsIFVwd2VsbGluZyBJbmRleCBpcyBhbiBpbmRleCBvZiB0aGUgc3RyZW5ndGggb2YgdGhlIHdpbmQgZm9yY2luZyBvbiB0aGUgb2NlYW4gd2hpY2ggaGFzIGJlZW4gdXNlZCBpbiBtYW55IHN0dWRpZXMgb2YgdGhlIGVmZmVjdHMgb2Ygb2NlYW4gdmFyaWFiaWxpdHkgb24gdGhlIHJlcHJvZHVjdGl2ZSBhbmQgcmVjcnVpdG1lbnQgc3VjY2VzcyBvZiBtYW55IGZpc2ggYW5kIGludmVydGVicmF0ZSBzcGVjaWVzLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAocmVmZXJlbmNlIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG51cHdlbGxpbmdfaW5kZXhcbnN0YXRpb25faWRcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkVUk0NTZocl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkVUk0NTZocl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRVSTQ1NmhyL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9MQVMvZG9jcy93aW5kX2Zyb21fcHJlc3N1cmUubmMuaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRVSTQ1NmhyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRVSTQ1NmhyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEvU1dGU0MgRW52aXJvbm1lbnRhbCBSZXNlYXJjaCBEaXZpc2lvbiIsICJlcmRVSTQ1NmhyIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTQ4NmhyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJNDg2aHIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVXB3ZWxsaW5nIEluZGV4LCA0OE4gMTI1VywgNi1ob3VybHkiLCAiVXB3ZWxsaW5nIGluZGV4IGNvbXB1dGVkIGZyb20gMS1kZWdyZWUgRk5NT0Mgc2VhIGxldmVsIHByZXNzdXJlIGZvciAxNSBsb2NhdGlvbnMgb2ZmIHRoZSBOb3J0aCBBbWVyaWNhbiBXZXN0IENvYXN0IGF0IGVhY2ggMyBkZWdyZWVzIG9mIGxhdGl0dWRlIGZyb20gMjFOIHRvIDYwTi4gVGhlIGNvYXN0YWwgVXB3ZWxsaW5nIEluZGV4IGlzIGFuIGluZGV4IG9mIHRoZSBzdHJlbmd0aCBvZiB0aGUgd2luZCBmb3JjaW5nIG9uIHRoZSBvY2VhbiB3aGljaCBoYXMgYmVlbiB1c2VkIGluIG1hbnkgc3R1ZGllcyBvZiB0aGUgZWZmZWN0cyBvZiBvY2VhbiB2YXJpYWJpbGl0eSBvbiB0aGUgcmVwcm9kdWN0aXZlIGFuZCByZWNydWl0bWVudCBzdWNjZXNzIG9mIG1hbnkgZmlzaCBhbmQgaW52ZXJ0ZWJyYXRlIHNwZWNpZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChyZWZlcmVuY2UgdGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnVwd2VsbGluZ19pbmRleFxuc3RhdGlvbl9pZFxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRVSTQ4NmhyX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRVSTQ4NmhyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZFVJNDg2aHIvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0xBUy9kb2NzL3dpbmRfZnJvbV9wcmVzc3VyZS5uYy5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZFVJNDg2aHIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZFVJNDg2aHImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQS9TV0ZTQyBFbnZpcm9ubWVudGFsIFJlc2VhcmNoIERpdmlzaW9uIiwgImVyZFVJNDg2aHIiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJNTE2aHIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUk1MTZoci5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJVcHdlbGxpbmcgSW5kZXgsIDUxTiAxMzFXLCA2LWhvdXJseSIsICJVcHdlbGxpbmcgaW5kZXggY29tcHV0ZWQgZnJvbSAxLWRlZ3JlZSBGTk1PQyBzZWEgbGV2ZWwgcHJlc3N1cmUgZm9yIDE1IGxvY2F0aW9ucyBvZmYgdGhlIE5vcnRoIEFtZXJpY2FuIFdlc3QgQ29hc3QgYXQgZWFjaCAzIGRlZ3JlZXMgb2YgbGF0aXR1ZGUgZnJvbSAyMU4gdG8gNjBOLiBUaGUgY29hc3RhbCBVcHdlbGxpbmcgSW5kZXggaXMgYW4gaW5kZXggb2YgdGhlIHN0cmVuZ3RoIG9mIHRoZSB3aW5kIGZvcmNpbmcgb24gdGhlIG9jZWFuIHdoaWNoIGhhcyBiZWVuIHVzZWQgaW4gbWFueSBzdHVkaWVzIG9mIHRoZSBlZmZlY3RzIG9mIG9jZWFuIHZhcmlhYmlsaXR5IG9uIHRoZSByZXByb2R1Y3RpdmUgYW5kIHJlY3J1aXRtZW50IHN1Y2Nlc3Mgb2YgbWFueSBmaXNoIGFuZCBpbnZlcnRlYnJhdGUgc3BlY2llcy5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHJlZmVyZW5jZSB0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxudXB3ZWxsaW5nX2luZGV4XG5zdGF0aW9uX2lkXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZFVJNTE2aHJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZFVJNTE2aHJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkVUk1MTZoci9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTEFTL2RvY3Mvd2luZF9mcm9tX3ByZXNzdXJlLm5jLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkVUk1MTZoci5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkVUk1MTZociZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBL1NXRlNDIEVudmlyb25tZW50YWwgUmVzZWFyY2ggRGl2aXNpb24iLCAiZXJkVUk1MTZociJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUk1NDZociIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTU0NmhyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlVwd2VsbGluZyBJbmRleCwgNTROIDEzNFcsIDYtaG91cmx5IiwgIlVwd2VsbGluZyBpbmRleCBjb21wdXRlZCBmcm9tIDEtZGVncmVlIEZOTU9DIHNlYSBsZXZlbCBwcmVzc3VyZSBmb3IgMTUgbG9jYXRpb25zIG9mZiB0aGUgTm9ydGggQW1lcmljYW4gV2VzdCBDb2FzdCBhdCBlYWNoIDMgZGVncmVlcyBvZiBsYXRpdHVkZSBmcm9tIDIxTiB0byA2ME4uIFRoZSBjb2FzdGFsIFVwd2VsbGluZyBJbmRleCBpcyBhbiBpbmRleCBvZiB0aGUgc3RyZW5ndGggb2YgdGhlIHdpbmQgZm9yY2luZyBvbiB0aGUgb2NlYW4gd2hpY2ggaGFzIGJlZW4gdXNlZCBpbiBtYW55IHN0dWRpZXMgb2YgdGhlIGVmZmVjdHMgb2Ygb2NlYW4gdmFyaWFiaWxpdHkgb24gdGhlIHJlcHJvZHVjdGl2ZSBhbmQgcmVjcnVpdG1lbnQgc3VjY2VzcyBvZiBtYW55IGZpc2ggYW5kIGludmVydGVicmF0ZSBzcGVjaWVzLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAocmVmZXJlbmNlIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG51cHdlbGxpbmdfaW5kZXhcbnN0YXRpb25faWRcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkVUk1NDZocl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkVUk1NDZocl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRVSTU0NmhyL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9MQVMvZG9jcy93aW5kX2Zyb21fcHJlc3N1cmUubmMuaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRVSTU0NmhyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRVSTU0NmhyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEvU1dGU0MgRW52aXJvbm1lbnRhbCBSZXNlYXJjaCBEaXZpc2lvbiIsICJlcmRVSTU0NmhyIl0sCiAgICAgIFsiIiwgIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTU3NmhyIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJNTc2aHIuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiVXB3ZWxsaW5nIEluZGV4LCA1N04gMTM3VywgNi1ob3VybHkiLCAiVXB3ZWxsaW5nIGluZGV4IGNvbXB1dGVkIGZyb20gMS1kZWdyZWUgRk5NT0Mgc2VhIGxldmVsIHByZXNzdXJlIGZvciAxNSBsb2NhdGlvbnMgb2ZmIHRoZSBOb3J0aCBBbWVyaWNhbiBXZXN0IENvYXN0IGF0IGVhY2ggMyBkZWdyZWVzIG9mIGxhdGl0dWRlIGZyb20gMjFOIHRvIDYwTi4gVGhlIGNvYXN0YWwgVXB3ZWxsaW5nIEluZGV4IGlzIGFuIGluZGV4IG9mIHRoZSBzdHJlbmd0aCBvZiB0aGUgd2luZCBmb3JjaW5nIG9uIHRoZSBvY2VhbiB3aGljaCBoYXMgYmVlbiB1c2VkIGluIG1hbnkgc3R1ZGllcyBvZiB0aGUgZWZmZWN0cyBvZiBvY2VhbiB2YXJpYWJpbGl0eSBvbiB0aGUgcmVwcm9kdWN0aXZlIGFuZCByZWNydWl0bWVudCBzdWNjZXNzIG9mIG1hbnkgZmlzaCBhbmQgaW52ZXJ0ZWJyYXRlIHNwZWNpZXMuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzXG5WQVJJQUJMRVM6XG50aW1lIChyZWZlcmVuY2UgdGltZSwgc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbnVwd2VsbGluZ19pbmRleFxuc3RhdGlvbl9pZFxubGF0aXR1ZGUgKGRlZ3JlZXNfbm9ydGgpXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9lcmRVSTU3NmhyX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9lcmRVSTU3NmhyX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL2VyZFVJNTc2aHIvaW5kZXguanNvbiIsICJodHRwczovL29jZWFudmlldy5wZmVnLm5vYWEuZ292L0xBUy9kb2NzL3dpbmRfZnJvbV9wcmVzc3VyZS5uYy5odG1sIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VyZFVJNTc2aHIucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVyZFVJNTc2aHImc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQS9TV0ZTQyBFbnZpcm9ubWVudGFsIFJlc2VhcmNoIERpdmlzaW9uIiwgImVyZFVJNTc2aHIiXSwKICAgICAgWyIiLCAiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VyZFVJNjA2aHIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUk2MDZoci5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJVcHdlbGxpbmcgSW5kZXgsIDYwTiAxNDZXLCA2LWhvdXJseSIsICJVcHdlbGxpbmcgaW5kZXggY29tcHV0ZWQgZnJvbSAxLWRlZ3JlZSBGTk1PQyBzZWEgbGV2ZWwgcHJlc3N1cmUgZm9yIDE1IGxvY2F0aW9ucyBvZmYgdGhlIE5vcnRoIEFtZXJpY2FuIFdlc3QgQ29hc3QgYXQgZWFjaCAzIGRlZ3JlZXMgb2YgbGF0aXR1ZGUgZnJvbSAyMU4gdG8gNjBOLiBUaGUgY29hc3RhbCBVcHdlbGxpbmcgSW5kZXggaXMgYW4gaW5kZXggb2YgdGhlIHN0cmVuZ3RoIG9mIHRoZSB3aW5kIGZvcmNpbmcgb24gdGhlIG9jZWFuIHdoaWNoIGhhcyBiZWVuIHVzZWQgaW4gbWFueSBzdHVkaWVzIG9mIHRoZSBlZmZlY3RzIG9mIG9jZWFuIHZhcmlhYmlsaXR5IG9uIHRoZSByZXByb2R1Y3RpdmUgYW5kIHJlY3J1aXRtZW50IHN1Y2Nlc3Mgb2YgbWFueSBmaXNoIGFuZCBpbnZlcnRlYnJhdGUgc3BlY2llcy5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNcblZBUklBQkxFUzpcbnRpbWUgKHJlZmVyZW5jZSB0aW1lLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxudXB3ZWxsaW5nX2luZGV4XG5zdGF0aW9uX2lkXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VyZFVJNjA2aHJfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VyZFVJNjA2aHJfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZXJkVUk2MDZoci9pbmRleC5qc29uIiwgImh0dHBzOi8vb2NlYW52aWV3LnBmZWcubm9hYS5nb3YvTEFTL2RvY3Mvd2luZF9mcm9tX3ByZXNzdXJlLm5jLmh0bWwiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3MvZXJkVUk2MDZoci5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9ZXJkVUk2MDZociZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBL1NXRlNDIEVudmlyb25tZW50YWwgUmVzZWFyY2ggRGl2aXNpb24iLCAiZXJkVUk2MDZociJdLAogICAgICBbIiIsICIiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvZXJkVUk2MTZociIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lcmRVSTYxNmhyLmdyYXBoIiwgIiIsICIiLCAicHVibGljIiwgIlVwd2VsbGluZyBJbmRleCwgNjBOIDE0OVcsIDYtaG91cmx5IiwgIlVwd2VsbGluZyBpbmRleCBjb21wdXRlZCBmcm9tIDEtZGVncmVlIEZOTU9DIHNlYSBsZXZlbCBwcmVzc3VyZSBmb3IgMTUgbG9jYXRpb25zIG9mZiB0aGUgTm9ydGggQW1lcmljYW4gV2VzdCBDb2FzdCBhdCBlYWNoIDMgZGVncmVlcyBvZiBsYXRpdHVkZSBmcm9tIDIxTiB0byA2ME4uIFRoZSBjb2FzdGFsIFVwd2VsbGluZyBJbmRleCBpcyBhbiBpbmRleCBvZiB0aGUgc3RyZW5ndGggb2YgdGhlIHdpbmQgZm9yY2luZyBvbiB0aGUgb2NlYW4gd2hpY2ggaGFzIGJlZW4gdXNlZCBpbiBtYW55IHN0dWRpZXMgb2YgdGhlIGVmZmVjdHMgb2Ygb2NlYW4gdmFyaWFiaWxpdHkgb24gdGhlIHJlcHJvZHVjdGl2ZSBhbmQgcmVjcnVpdG1lbnQgc3VjY2VzcyBvZiBtYW55IGZpc2ggYW5kIGludmVydGVicmF0ZSBzcGVjaWVzLlxuXG5jZG1fZGF0YV90eXBlID0gVGltZVNlcmllc1xuVkFSSUFCTEVTOlxudGltZSAocmVmZXJlbmNlIHRpbWUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG51cHdlbGxpbmdfaW5kZXhcbnN0YXRpb25faWRcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvZXJkVUk2MTZocl9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvZXJkVUk2MTZocl9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9lcmRVSTYxNmhyL2luZGV4Lmpzb24iLCAiaHR0cHM6Ly9vY2VhbnZpZXcucGZlZy5ub2FhLmdvdi9MQVMvZG9jcy93aW5kX2Zyb21fcHJlc3N1cmUubmMuaHRtbCIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9lcmRVSTYxNmhyLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1lcmRVSTYxNmhyJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEvU1dGU0MgRW52aXJvbm1lbnRhbCBSZXNlYXJjaCBEaXZpc2lvbiIsICJlcmRVSTYxNmhyIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25tc3BXY29zQWRjcEQuc3Vic2V0IiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25tc3BXY29zQWRjcEQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm1zcFdjb3NBZGNwRC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJXZXN0IENvYXN0IE9ic2VydmluZyBTeXN0ZW0gKFdDT1MpIEFEQ1AgQ3VycmVudHMgRGF0YSwgMjAwNC0yMDA4IiwgIlRoZSBXZXN0IENvYXN0IE9ic2VydmluZyBTeXN0ZW0gKFdDT1MpIHByb2plY3QgcHJvdmlkZXMgYWNjZXNzIHRvIHRlbXBlcmF0dXJlIGFuZCBjdXJyZW50cyBkYXRhIGNvbGxlY3RlZCBhdCBmb3VyIG9mIHRoZSBmaXZlIE5hdGlvbmFsIE1hcmluZSBTYW5jdHVhcnkgc2l0ZXMsIGluY2x1ZGluZyBPbHltcGljIENvYXN0LCBHdWxmIG9mIHRoZSBGYXJhbGxvbmVzLCBNb250ZXJleSBCYXksIGFuZCBDaGFubmVsIElzbGFuZHMuIEEgc2VtaS1hdXRvbWF0ZWQgZW5kLXRvLWVuZCBkYXRhIG1hbmFnZW1lbnQgc3lzdGVtIHRyYW5zcG9ydHMgYW5kIHRyYW5zZm9ybXMgdGhlIGRhdGEgZnJvbSBzb3VyY2UgdG8gYXJjaGl2ZSwgbWFraW5nIHRoZSBkYXRhIGFjZXNzaWJsZSBmb3IgZGlzY292ZXJ5LCBhY2Nlc3MgYW5kIGFuYWx5c2lzIGZyb20gbXVsdGlwbGUgSW50ZXJuZXQgcG9pbnRzIG9mIGVudHJ5LlxuXG5UaGUgc3RhdGlvbnMgKGFuZCB0aGVpciBjb2RlIG5hbWVzKSBhcmUgU2FuIE1pZ3VlbCBOb3J0aCAoQkFZKSwgU2FudGEgUm9zYSBOb3J0aCAoQkVBKSwgQ3V5bGVyIEhhcmJvciAoQ1VZKSwgUGVsaWNhbi9Qcmlzb25lcnMgQXJlYSAoUEVMKSwgU2FuIE1pZ3VlbCBTb3V0aCAoU01TKSwgU2FudGEgUm9zYSBTb3V0aCAoU1JTKSwgVmFsbGV5IEFuY2ggKFZBTCkuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzUHJvZmlsZVxuVkFSSUFCTEVTOlxuc3RhdGlvblxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5kZXB0aCAobSlcbkRhdGFRdWFsaXR5IChEYXRhIFF1YWxpdHksIHBlcmNlbnQpXG5EYXRhUXVhbGl0eV9mbGFnIChEYXRhIFF1YWxpdHkgRmxhZylcbkVhc3R3YXJkIChFYXN0d2FyZCBDdXJyZW50LCBtIHMtMSlcbkVhc3R3YXJkX2ZsYWdcbkVycm9yVmVsb2NpdHkgKEVycm9yIFZlbG9jaXR5LCBtIHMtMSlcbkVycm9yVmVsb2NpdHlfZmxhZyAoRXJyb3IgVmVsb2NpdHkgRmxhZylcbkludGVuc2l0eSAoY291bnQpXG5JbnRlbnNpdHlfZmxhZ1xuTm9ydGh3YXJkIChOb3J0aHdhcmQgQ3VycmVudCwgbSBzLTEpXG5Ob3J0aHdhcmRfZmxhZ1xuVXB3YXJkcyAoVXB3YXJkIEN1cnJlbnQsIG0gcy0xKVxuVXB3YXJkc19mbGFnXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm1zcFdjb3NBZGNwRF9mZ2RjLnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9pc28xOTExNS94bWwvbm1zcFdjb3NBZGNwRF9pc28xOTExNS54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvaW5mby9ubXNwV2Nvc0FkY3BEL2luZGV4Lmpzb24iLCAiZnRwOi8vZnRwLm5vZGMubm9hYS5nb3Yvbm9kYy9hcmNoaXZlL2FyYzAwMDYvMDAwMjAzOS8xLjEvYWJvdXQvV0NPU19wcm9qZWN0X2RvY3VtZW50X3BoYXNlSV8yMDA2MDMxNy5wZGYiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm1zcFdjb3NBZGNwRC5yc3MiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvc3Vic2NyaXB0aW9ucy9hZGQuaHRtbD9kYXRhc2V0SUQ9bm1zcFdjb3NBZGNwRCZzaG93RXJyb3JzPWZhbHNlJmVtYWlsPSIsICJOT0FBIE5NU1AiLCAibm1zcFdjb3NBZGNwRCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ubXNwV2Nvc0FkY3BTLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9ubXNwV2Nvc0FkY3BTIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25tc3BXY29zQWRjcFMuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiV2VzdCBDb2FzdCBPYnNlcnZpbmcgU3lzdGVtIChXQ09TKSBBRENQIFN0YXRpb24gRGF0YSwgMjAwNC0yMDA4IiwgIlRoZSBXZXN0IENvYXN0IE9ic2VydmluZyBTeXN0ZW0gKFdDT1MpIHByb2plY3QgcHJvdmlkZXMgYWNjZXNzIHRvIHRlbXBlcmF0dXJlIGFuZCBjdXJyZW50cyBkYXRhIGNvbGxlY3RlZCBhdCBmb3VyIG9mIHRoZSBmaXZlIE5hdGlvbmFsIE1hcmluZSBTYW5jdHVhcnkgc2l0ZXMsIGluY2x1ZGluZyBPbHltcGljIENvYXN0LCBHdWxmIG9mIHRoZSBGYXJhbGxvbmVzLCBNb250ZXJleSBCYXksIGFuZCBDaGFubmVsIElzbGFuZHMuIEEgc2VtaS1hdXRvbWF0ZWQgZW5kLXRvLWVuZCBkYXRhIG1hbmFnZW1lbnQgc3lzdGVtIHRyYW5zcG9ydHMgYW5kIHRyYW5zZm9ybXMgdGhlIGRhdGEgZnJvbSBzb3VyY2UgdG8gYXJjaGl2ZSwgbWFraW5nIHRoZSBkYXRhIGFjZXNzaWJsZSBmb3IgZGlzY292ZXJ5LCBhY2Nlc3MgYW5kIGFuYWx5c2lzIGZyb20gbXVsdGlwbGUgSW50ZXJuZXQgcG9pbnRzIG9mIGVudHJ5LlxuXG5UaGUgc3RhdGlvbnMgKGFuZCB0aGVpciBjb2RlIG5hbWVzKSBhcmUgU2FuIE1pZ3VlbCBOb3J0aCAoQkFZKSwgU2FudGEgUm9zYSBOb3J0aCAoQkVBKSwgQ3V5bGVyIEhhcmJvciAoQ1VZKSwgUGVsaWNhbi9Qcmlzb25lcnMgQXJlYSAoUEVMKSwgU2FuIE1pZ3VlbCBTb3V0aCAoU01TKSwgU2FudGEgUm9zYSBTb3V0aCAoU1JTKSwgVmFsbGV5IEFuY2ggKFZBTCkuXG5cbmNkbV9kYXRhX3R5cGUgPSBUaW1lU2VyaWVzUHJvZmlsZVxuVkFSSUFCTEVTOlxuc3RhdGlvblxubG9uZ2l0dWRlIChkZWdyZWVzX2Vhc3QpXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbnRpbWUgKHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG5QcmVzc3VyZSAoU2VhIFdhdGVyIFByZXNzdXJlLCBkYmFyKVxuUHJlc3N1cmVfZmxhZ1xuVGVtcGVyYXR1cmUgKFNlYSBXYXRlciBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5UZW1wZXJhdHVyZV9mbGFnXG5XYXRlckRlcHRoIChXYXRlciBEZXB0aCwgbSlcbldhdGVyRGVwdGhfZmxhZyAoV2F0ZXIgRGVwdGggRmxhZylcbiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9tZXRhZGF0YS9mZ2RjL3htbC9ubXNwV2Nvc0FkY3BTX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9ubXNwV2Nvc0FkY3BTX2lzbzE5MTE1LnhtbCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9pbmZvL25tc3BXY29zQWRjcFMvaW5kZXguanNvbiIsICJmdHA6Ly9mdHAubm9kYy5ub2FhLmdvdi9ub2RjL2FyY2hpdmUvYXJjMDAwNi8wMDAyMDM5LzEuMS9hYm91dC9XQ09TX3Byb2plY3RfZG9jdW1lbnRfcGhhc2VJXzIwMDYwMzE3LnBkZiIsICJodHRwOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3Jzcy9ubXNwV2Nvc0FkY3BTLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ubXNwV2Nvc0FkY3BTJnNob3dFcnJvcnM9ZmFsc2UmZW1haWw9IiwgIk5PQUEgTk1TUCIsICJubXNwV2Nvc0FkY3BTIl0sCiAgICAgIFsiIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25tc3BXY29zVGVtcC5zdWJzZXQiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvdGFibGVkYXAvbm1zcFdjb3NUZW1wIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL25tc3BXY29zVGVtcC5ncmFwaCIsICIiLCAiIiwgInB1YmxpYyIsICJXZXN0IENvYXN0IE9ic2VydmluZyBTeXN0ZW0gKFdDT1MpIFRlbXBlcmF0dXJlIERhdGEsIDIwMDQtMjAxMSIsICJUaGUgV2VzdCBDb2FzdCBPYnNlcnZpbmcgU3lzdGVtIChXQ09TKSBwcm9qZWN0IHByb3ZpZGVzIGFjY2VzcyB0byB0ZW1wZXJhdHVyZSBhbmQgY3VycmVudHMgZGF0YSBjb2xsZWN0ZWQgYXQgZm91ciBvZiB0aGUgZml2ZSBOYXRpb25hbCBNYXJpbmUgU2FuY3R1YXJ5IHNpdGVzLCBpbmNsdWRpbmcgT2x5bXBpYyBDb2FzdCwgR3VsZiBvZiB0aGUgRmFyYWxsb25lcywgTW9udGVyZXkgQmF5LCBhbmQgQ2hhbm5lbCBJc2xhbmRzLiBBIHNlbWktYXV0b21hdGVkIGVuZC10by1lbmQgZGF0YSBtYW5hZ2VtZW50IHN5c3RlbSB0cmFuc3BvcnRzIGFuZCB0cmFuc2Zvcm1zIHRoZSBkYXRhIGZyb20gc291cmNlIHRvIGFyY2hpdmUsIG1ha2luZyB0aGUgZGF0YSBhY2Vzc2libGUgZm9yIGRpc2NvdmVyeSwgYWNjZXNzIGFuZCBhbmFseXNpcyBmcm9tIG11bHRpcGxlIEludGVybmV0IHBvaW50cyBvZiBlbnRyeS5cblxuVGhlIHN0YXRpb25zIChhbmQgdGhlaXIgY29kZSBuYW1lcykgYXJlIEFubyBOdWV2byAoQU5PMDAxKSwgU2FuIE1pZ3VlbCBOb3J0aCAoQkFZKSwgU2FudGEgUm9zYSBOb3J0aCAoQkVBKSwgQmlnIENyZWVrIChCSUcwMDEpLCBCb2RlZ2EgSGVhZCAoQk9EMDAxKSwgQ2FwZSBBbGF2YSAxNU0gKENBMDE1KSwgQ2FwZSBBbGF2YSA0Mk0gKENBMDQyKSwgQ2FwZSBBbGF2YSA2NU0gKENBMDY1KSwgQ2FwZSBBbGF2YSAxMDBNIChDQTEwMCksIENhbm5lcnkgUm93IChDQU4wMDEpLCBDYXBlIEVsaXphYmV0aCAxNU0gKENFMDE1KSwgQ2FwZSBFbGl6YWJldGggNDJNIChDRTA0MiksIENhcGUgRWxpemFiZXRoIDY1TSAoQ0UwNjUpLCBDYXBlIEVsaXphYmV0aCAxMDBNIChDRTEwMCksIEN1eWxlciBIYXJib3IgKENVWSksIEVzYWxlbiAoRVNBMDAxKSwgUG9pbnQgSm9lIChKT0UwMDEpLCBLYWxhbG9jaCAxNU0gKEtMMDE1KSwgS2FsYWxvY2ggMjdNIChLTDAyNyksIExhIENydXogUm9jayAoTEFDMDAxKSwgTG9wZXogUm9jayAoTE9QMDAxKSwgTWFrYWggQmF5IDE1TSAoTUIwMTUpLCBNYWthaCBCYXkgNDJNIChNQjA0MiksIFBlbGljYW4vUHJpc29uZXJzIEFyZWEgKFBFTCksIFBpZ2VvbiBQb2ludCAoUElHMDAxKSwgUGxhc2tldHQgUm9jayAoUExBMDAxKSwgU291dGhlYXN0IEZhcmFsbG9uIElzbGFuZCAoU0VGMDAxKSwgU2FuIE1pZ3VlbCBTb3V0aCAoU01TKSwgU2FudGEgUm9zYSBTb3V0aCAoU1JTKSwgU3Vuc2V0IFBvaW50IChTVU4wMDEpLCBUZWF3aGl0IEhlYWQgMTVNIChUSDAxNSksIFRlYXdoaXQgSGVhZCAzMU0gKFRIMDMxKSwgVGVhd2hpdCBIZWFkIDQyTSAoVEgwNDIpLCBUZXJyYWNlIFBvaW50IDcgKFRQVDAwNyksIFRlcnJhY2UgUG9pbnQgOCAoVFBUMDA4KSwgVmFsbGV5IEFuY2ggKFZBTCksIFdlc3RvbiBCZWFjaCAoV0VTMDAxKS5cblxuY2RtX2RhdGFfdHlwZSA9IFRpbWVTZXJpZXNQcm9maWxlXG5WQVJJQUJMRVM6XG5zdGF0aW9uXG5sb25naXR1ZGUgKGRlZ3JlZXNfZWFzdClcbmxhdGl0dWRlIChkZWdyZWVzX25vcnRoKVxudGltZSAoc2Vjb25kcyBzaW5jZSAxOTcwLTAxLTAxVDAwOjAwOjAwWilcbmRlcHRoIChtKVxuVGVtcGVyYXR1cmUgKFNlYSBXYXRlciBUZW1wZXJhdHVyZSwgZGVncmVlX0MpXG5UZW1wZXJhdHVyZV9mbGFnXG4iLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvZmdkYy94bWwvbm1zcFdjb3NUZW1wX2ZnZGMueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2lzbzE5MTE1L3htbC9ubXNwV2Nvc1RlbXBfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vbm1zcFdjb3NUZW1wL2luZGV4Lmpzb24iLCAiZnRwOi8vZnRwLm5vZGMubm9hYS5nb3Yvbm9kYy9hcmNoaXZlL2FyYzAwMDYvMDAwMjAzOS8xLjEvYWJvdXQvV0NPU19wcm9qZWN0X2RvY3VtZW50X3BoYXNlSV8yMDA2MDMxNy5wZGYiLCAiaHR0cDovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9yc3Mvbm1zcFdjb3NUZW1wLnJzcyIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC9zdWJzY3JpcHRpb25zL2FkZC5odG1sP2RhdGFzZXRJRD1ubXNwV2Nvc1RlbXAmc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiTk9BQSBOTVNQIiwgIm5tc3BXY29zVGVtcCJdLAogICAgICBbIiIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lYXJ0aEN1YmVLZ3NCb3JlVGVtcFdWLnN1YnNldCIsICJodHRwczovL3Vwd2VsbC5wZmVnLm5vYWEuZ292L2VyZGRhcC90YWJsZWRhcC9lYXJ0aEN1YmVLZ3NCb3JlVGVtcFdWIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3RhYmxlZGFwL2VhcnRoQ3ViZUtnc0JvcmVUZW1wV1YuZ3JhcGgiLCAiIiwgIiIsICJwdWJsaWMiLCAiV2VzdCBWaXJnaW5pYSBCb3JlaG9sZSBUZW1wZXJhdHVyZXMsIEFBU0cgU3RhdGUgR2VvdGhlcm1hbCBEYXRhLCAxOTM2LTIwMTAiLCAiQm9yZWhvbGUgdGVtcGVyYXR1cmUgbWVhc3VyZW1lbnRzIGluIFdlc3QgVmlyZ2luaWFcblxuY2RtX2RhdGFfdHlwZSA9IFBvaW50XG5WQVJJQUJMRVM6XG5PYnNlcnZhdGlvblVSSSAoT2JzZXJ2YXRpb24gVVJJKVxuV2VsbE5hbWUgKFdlbGwgTmFtZSlcbkFQSU5vXG5IZWFkZXJVUkkgKEhlYWRlciBVUkkpXG5MYWJlbFxuT3BlcmF0b3JcblNwdWREYXRlIChTcHVkIERhdGUsIHNlY29uZHMgc2luY2UgMTk3MC0wMS0wMVQwMDowMDowMFopXG50aW1lIChFbmRlZCBEcmlsbGluZyBEYXRlLCBzZWNvbmRzIHNpbmNlIDE5NzAtMDEtMDFUMDA6MDA6MDBaKVxuV2VsbFR5cGUgKFdlbGwgVHlwZSlcbkZpZWxkXG5Db3VudHlcblN0YXRlXG5sYXRpdHVkZSAoZGVncmVlc19ub3J0aClcbmxvbmdpdHVkZSAoZGVncmVlc19lYXN0KVxuRHJpbGxlclRvdGFsRGVwdGggKERyaWxsZXIgVG90YWwgRGVwdGgsIGZ0KVxuRGVwdGhSZWZlcmVuY2VQb2ludCAoRGVwdGggUmVmZXJlbmNlIFBvaW50KVxuV2VsbEJvcmVTaGFwZSAoV2VsbCBCb3JlIFNoYXBlKVxuVHJ1ZVZlcnRpY2FsRGVwdGggKFRydWUgVmVydGljYWwgRGVwdGgsIGZ0KVxuRWxldmF0aW9uR0wgKEVsZXZhdGlvbiBHTCwgZnQpXG5Gb3JtYXRpb25URCAoRm9ybWF0aW9uIFREKVxuTWVhc3VyZWRUZW1wZXJhdHVyZSAoTWVhc3VyZWQgVGVtcGVyYXR1cmUsIGRlZ3JlZV9GKVxuRGVwdGhPZk1lYXN1cmVtZW50IChEZXB0aCBPZiBNZWFzdXJlbWVudCwgZnQpXG5NZWFzdXJlbWVudEZvcm1hdGlvbiAoTWVhc3VyZW1lbnQgRm9ybWF0aW9uKVxuUmVsYXRlZFJlc291cmNlIChSZWxhdGVkIFJlc291cmNlKVxuVGltZVNpbmNlQ2lyY3VsYXRpb24gKFRpbWUgU2luY2UgQ2lyY3VsYXRpb24sID8pXG5PdGhlck5hbWUgKE90aGVyIE5hbWUpXG5MZWFzZU5hbWUgKExlYXNlIE5hbWUpXG5Ob3Rlc1xuIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL21ldGFkYXRhL2ZnZGMveG1sL2VhcnRoQ3ViZUtnc0JvcmVUZW1wV1ZfZmdkYy54bWwiLCAiaHR0cHM6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvbWV0YWRhdGEvaXNvMTkxMTUveG1sL2VhcnRoQ3ViZUtnc0JvcmVUZW1wV1ZfaXNvMTkxMTUueG1sIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL2luZm8vZWFydGhDdWJlS2dzQm9yZVRlbXBXVi9pbmRleC5qc29uIiwgImh0dHA6Ly93d3cud3Zncy53dm5ldC5lZHUvIiwgImh0dHA6Ly91cHdlbGwucGZlZy5ub2FhLmdvdi9lcmRkYXAvcnNzL2VhcnRoQ3ViZUtnc0JvcmVUZW1wV1YucnNzIiwgImh0dHBzOi8vdXB3ZWxsLnBmZWcubm9hYS5nb3YvZXJkZGFwL3N1YnNjcmlwdGlvbnMvYWRkLmh0bWw/ZGF0YXNldElEPWVhcnRoQ3ViZUtnc0JvcmVUZW1wV1Ymc2hvd0Vycm9ycz1mYWxzZSZlbWFpbD0iLCAiV2VzdCBWaXJnaW5pYSBHZW9sb2dpY2FsIGFuZCBFY29ub21pYyBTdXJ2ZXkiLCAiZWFydGhDdWJlS2dzQm9yZVRlbXBXViJdCiAgICBdCiAgfQp9Cg== + recorded_at: 2020-07-15 22:22:35 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.csv?&time%3E%3D2001-07-14&units%28%22STUFF%22%29 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '400' + message: Bad Request + explanation: Bad request syntax or unsupported method + headers: + status: 'HTTP/1.1 400 ' + date: Wed, 15 Jul 2020 22:22:35 GMT + x-frame-options: SAMEORIGIN + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:22:35 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-description: dods-error + content-encoding: gzip + vary: accept-encoding + content-type: text/plain;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: ASCII-8BIT + file: no + string: RXJyb3IgewogICAgY29kZT00MDA7CiAgICBtZXNzYWdlPSJCYWQgUmVxdWVzdDogUXVlcnkgZXJyb3I6IHRvVW5pdHM9VURVTklUUyBtdXN0IGJlIFVEVU5JVFMgb3IgVUNVTS4iOwp9Cg== + recorded_at: 2020-07-15 22:22:36 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 diff --git a/tests/vcr_cassettes/tabledap_units_parameter.yml b/tests/vcr_cassettes/tabledap_units_parameter.yml new file mode 100644 index 0000000..dcdfc11 --- /dev/null +++ b/tests/vcr_cassettes/tabledap_units_parameter.yml @@ -0,0 +1,977 @@ +http_interactions: +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:45 GMT + strict-transport-security: max-age=31536000; includeSubDomains + content-disposition: attachment;filename=erdCinpKfmBT_info.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["Row Type", "Variable Name", "Attribute Name", "Data Type", "Value"], + "columnTypes": ["String", "String", "String", "String", "String"], + "rows": [ + ["attribute", "NC_GLOBAL", "acknowledgement", "String", "NOAA NESDIS COASTWATCH, NOAA SWFSC ERD, Channel Islands National Park, National Park Service"], + ["attribute", "NC_GLOBAL", "cdm_data_type", "String", "TimeSeries"], + ["attribute", "NC_GLOBAL", "cdm_timeseries_variables", "String", "station, longitude, latitude"], + ["attribute", "NC_GLOBAL", "contributor_email", "String", "David_Kushner@nps.gov"], + ["attribute", "NC_GLOBAL", "contributor_name", "String", "Channel Islands National Park, National Park Service"], + ["attribute", "NC_GLOBAL", "contributor_role", "String", "Source of data."], + ["attribute", "NC_GLOBAL", "Conventions", "String", "COARDS, CF-1.6, ACDD-1.3, NCCSV-1.0"], + ["attribute", "NC_GLOBAL", "creator_email", "String", "erd.data@noaa.gov"], + ["attribute", "NC_GLOBAL", "creator_name", "String", "NOAA NMFS SWFSC ERD"], + ["attribute", "NC_GLOBAL", "creator_type", "String", "institution"], + ["attribute", "NC_GLOBAL", "creator_url", "String", "https://www.pfeg.noaa.gov"], + ["attribute", "NC_GLOBAL", "date_created", "String", "2008-06-11T21:36:06Z"], + ["attribute", "NC_GLOBAL", "date_issued", "String", "2008-06-11T21:36:06Z"], + ["attribute", "NC_GLOBAL", "Easternmost_Easting", "double", "-118.4"], + ["attribute", "NC_GLOBAL", "featureType", "String", "TimeSeries"], + ["attribute", "NC_GLOBAL", "geospatial_lat_max", "double", "34.05"], + ["attribute", "NC_GLOBAL", "geospatial_lat_min", "double", "32.8"], + ["attribute", "NC_GLOBAL", "geospatial_lat_units", "String", "degrees_north"], + ["attribute", "NC_GLOBAL", "geospatial_lon_max", "double", "-118.4"], + ["attribute", "NC_GLOBAL", "geospatial_lon_min", "double", "-120.4"], + ["attribute", "NC_GLOBAL", "geospatial_lon_units", "String", "degrees_east"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_max", "double", "17.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_min", "double", "5.0"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_positive", "String", "down"], + ["attribute", "NC_GLOBAL", "geospatial_vertical_units", "String", "m"], + ["attribute", "NC_GLOBAL", "history", "String", "Channel Islands National Park, National Park Service\n2008-06-11T21:36:06Z NOAA CoastWatch (West Coast Node) and NOAA SFSC ERD"], + ["attribute", "NC_GLOBAL", "infoUrl", "String", "http://www.nps.gov/chis/naturescience/index.htm"], + ["attribute", "NC_GLOBAL", "institution", "String", "CINP"], + ["attribute", "NC_GLOBAL", "keywords", "String", "anamesus, aplysia, aquatic, atmosphere, aurantia, band, biology, biosphere, californica, channel, chilensis, cinp, coastal, corrugata, crassedoma, crenulata, density, depth, Earth Science > Biosphere > Aquatic Ecosystems > Coastal Habitat, Earth Science > Biosphere > Aquatic Ecosystems > Marine Habitat, ecosystems, forest, fruticosa, fulgens, giganteum, habitat, haliotis, height, helianthoides, identifier, interruptus, islands, kelletia, kelletii, kelp, lofotensis, lophogorgia, lytechinus, marine, mean, megathura, monitoring, muricea, panulirus, pycnopodia, rufescens, station, statistics, stddev, stderr, stylaster, survey, tethya, time, transect, urticina"], + ["attribute", "NC_GLOBAL", "keywords_vocabulary", "String", "GCMD Science Keywords"], + ["attribute", "NC_GLOBAL", "license", "String", "The data may be used and redistributed for free but is not intended for legal use, since it may contain inaccuracies. Neither the data Contributor, CoastWatch, NOAA, nor the United States Government, nor any of their employees or contractors, makes any warranty, express or implied, including warranties of merchantability and fitness for a particular purpose, or assumes any legal liability for the accuracy, completeness, or usefulness, of this information. National Park Service Disclaimer: The National Park Service shall not be held liable for improper or incorrect use of the data described and/or contained herein. These data and related graphics are not legal documents and are not intended to be used as such. The information contained in these data is dynamic and may change over time. The data are not better than the original sources from which they were derived. It is the responsibility of the data user to use the data appropriately and consistent within the limitation of geospatial data in general and these data in particular. The related graphics are intended to aid the data user in acquiring relevant data; it is not appropriate to use the related graphics as data. The National Park Service gives no warranty, expressed or implied, as to the accuracy, reliability, or completeness of these data. It is strongly recommended that these data are directly acquired from an NPS server and not indirectly through other sources which may have changed the data in some way. Although these data have been processed successfully on computer systems at the National Park Service, no warranty expressed or implied is made regarding the utility of the data on other systems for general or scientific purposes, nor shall the act of distribution constitute any such warranty. This disclaimer applies both to individual use of the data and aggregate use with other data."], + ["attribute", "NC_GLOBAL", "naming_authority", "String", "gov.noaa.pfeg.coastwatch"], + ["attribute", "NC_GLOBAL", "Northernmost_Northing", "double", "34.05"], + ["attribute", "NC_GLOBAL", "project", "String", "NOAA NMFS SWFSC ERD (https://www.pfeg.noaa.gov/)"], + ["attribute", "NC_GLOBAL", "references", "String", "Channel Islands National Parks Inventory and Monitoring information: http://nature.nps.gov/im/units/medn . Kelp Forest Monitoring Protocols: http://www.nature.nps.gov/im/units/chis/Reports_PDF/Marine/KFM-HandbookVol1.pdf ."], + ["attribute", "NC_GLOBAL", "sourceUrl", "String", "(local files)"], + ["attribute", "NC_GLOBAL", "Southernmost_Northing", "double", "32.8"], + ["attribute", "NC_GLOBAL", "standard_name_vocabulary", "String", "CF Standard Name Table v70"], + ["attribute", "NC_GLOBAL", "subsetVariables", "String", "station, longitude, latitude"], + ["attribute", "NC_GLOBAL", "summary", "String", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth."], + ["attribute", "NC_GLOBAL", "time_coverage_end", "String", "2007-07-01T00:00:00Z"], + ["attribute", "NC_GLOBAL", "time_coverage_start", "String", "1983-07-01T00:00:00Z"], + ["attribute", "NC_GLOBAL", "title", "String", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007"], + ["attribute", "NC_GLOBAL", "Westernmost_Easting", "double", "-120.4"], + ["variable", "station", "", "String", ""], + ["attribute", "station", "cf_role", "String", "timeseries_id"], + ["attribute", "station", "ioos_category", "String", "Identifier"], + ["attribute", "station", "long_name", "String", "Station"], + ["variable", "longitude", "", "double", ""], + ["attribute", "longitude", "_CoordinateAxisType", "String", "Lon"], + ["attribute", "longitude", "actual_range", "double", "-120.4, -118.4"], + ["attribute", "longitude", "axis", "String", "X"], + ["attribute", "longitude", "colorBarMaximum", "double", "-118.4"], + ["attribute", "longitude", "colorBarMinimum", "double", "-120.4"], + ["attribute", "longitude", "ioos_category", "String", "Location"], + ["attribute", "longitude", "long_name", "String", "Longitude"], + ["attribute", "longitude", "standard_name", "String", "longitude"], + ["attribute", "longitude", "units", "String", "degrees_east"], + ["variable", "latitude", "", "double", ""], + ["attribute", "latitude", "_CoordinateAxisType", "String", "Lat"], + ["attribute", "latitude", "actual_range", "double", "32.8, 34.05"], + ["attribute", "latitude", "axis", "String", "Y"], + ["attribute", "latitude", "colorBarMaximum", "double", "34.5"], + ["attribute", "latitude", "colorBarMinimum", "double", "32.5"], + ["attribute", "latitude", "ioos_category", "String", "Location"], + ["attribute", "latitude", "long_name", "String", "Latitude"], + ["attribute", "latitude", "standard_name", "String", "latitude"], + ["attribute", "latitude", "units", "String", "degrees_north"], + ["variable", "depth", "", "double", ""], + ["attribute", "depth", "_CoordinateAxisType", "String", "Height"], + ["attribute", "depth", "_CoordinateZisPositive", "String", "down"], + ["attribute", "depth", "actual_range", "double", "5.0, 17.0"], + ["attribute", "depth", "axis", "String", "Z"], + ["attribute", "depth", "colorBarMaximum", "double", "20.0"], + ["attribute", "depth", "colorBarMinimum", "double", "0.0"], + ["attribute", "depth", "ioos_category", "String", "Location"], + ["attribute", "depth", "long_name", "String", "Depth"], + ["attribute", "depth", "positive", "String", "down"], + ["attribute", "depth", "standard_name", "String", "depth"], + ["attribute", "depth", "units", "String", "m"], + ["variable", "time", "", "double", ""], + ["attribute", "time", "_CoordinateAxisType", "String", "Time"], + ["attribute", "time", "actual_range", "double", "4.258656E8, 1.183248E9"], + ["attribute", "time", "axis", "String", "T"], + ["attribute", "time", "colorBarMaximum", "double", "1.183248E9"], + ["attribute", "time", "colorBarMinimum", "double", "4.258656E8"], + ["attribute", "time", "ioos_category", "String", "Time"], + ["attribute", "time", "long_name", "String", "Time"], + ["attribute", "time", "standard_name", "String", "time"], + ["attribute", "time", "time_origin", "String", "01-JAN-1970 00:00:00"], + ["attribute", "time", "units", "String", "seconds since 1970-01-01T00:00:00Z"], + ["variable", "Aplysia_californica_Mean_Density", "", "float", ""], + ["attribute", "Aplysia_californica_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Aplysia_californica_Mean_Density", "actual_range", "float", "0.0, 0.95"], + ["attribute", "Aplysia_californica_Mean_Density", "comment", "String", "Common name: California brown sea hare"], + ["attribute", "Aplysia_californica_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Aplysia_californica_Mean_Density", "long_name", "String", "Aplysia californica Mean Density"], + ["attribute", "Aplysia_californica_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Aplysia_californica_Mean_Density", "units", "String", "m-2"], + ["variable", "Aplysia_californica_StdDev", "", "float", ""], + ["attribute", "Aplysia_californica_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Aplysia_californica_StdDev", "actual_range", "float", "0.0, 0.35"], + ["attribute", "Aplysia_californica_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Aplysia_californica_StdDev", "long_name", "String", "Aplysia californica StdDev"], + ["attribute", "Aplysia_californica_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Aplysia_californica_StdErr", "", "float", ""], + ["attribute", "Aplysia_californica_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Aplysia_californica_StdErr", "actual_range", "float", "0.0, 0.1"], + ["attribute", "Aplysia_californica_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Aplysia_californica_StdErr", "long_name", "String", "Aplysia californica StdErr"], + ["attribute", "Aplysia_californica_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Crassedoma_giganteum_Mean_Density", "", "float", ""], + ["attribute", "Crassedoma_giganteum_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "actual_range", "float", "0.0, 0.92"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "comment", "String", "Common name: Rock scallop"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "long_name", "String", "Crassedoma giganteum Mean Density"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Crassedoma_giganteum_Mean_Density", "units", "String", "m-2"], + ["variable", "Crassedoma_giganteum_StdDev", "", "float", ""], + ["attribute", "Crassedoma_giganteum_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Crassedoma_giganteum_StdDev", "actual_range", "float", "0.0, 0.71"], + ["attribute", "Crassedoma_giganteum_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Crassedoma_giganteum_StdDev", "long_name", "String", "Crassedoma giganteum StdDev"], + ["attribute", "Crassedoma_giganteum_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Crassedoma_giganteum_StdErr", "", "float", ""], + ["attribute", "Crassedoma_giganteum_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Crassedoma_giganteum_StdErr", "actual_range", "float", "0.0, 0.2"], + ["attribute", "Crassedoma_giganteum_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Crassedoma_giganteum_StdErr", "long_name", "String", "Crassedoma giganteum StdErr"], + ["attribute", "Crassedoma_giganteum_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_corrugata_Mean_Density", "", "float", ""], + ["attribute", "Haliotis_corrugata_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_corrugata_Mean_Density", "actual_range", "float", "0.0, 0.18"], + ["attribute", "Haliotis_corrugata_Mean_Density", "comment", "String", "Common name: Pink abalone"], + ["attribute", "Haliotis_corrugata_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Haliotis_corrugata_Mean_Density", "long_name", "String", "Haliotis corrugata Mean Density"], + ["attribute", "Haliotis_corrugata_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Haliotis_corrugata_Mean_Density", "units", "String", "m-2"], + ["variable", "Haliotis_corrugata_StdDev", "", "float", ""], + ["attribute", "Haliotis_corrugata_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_corrugata_StdDev", "actual_range", "float", "0.0, 0.1"], + ["attribute", "Haliotis_corrugata_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_corrugata_StdDev", "long_name", "String", "Haliotis corrugata StdDev"], + ["attribute", "Haliotis_corrugata_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_corrugata_StdErr", "", "float", ""], + ["attribute", "Haliotis_corrugata_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_corrugata_StdErr", "actual_range", "float", "0.0, 0.03"], + ["attribute", "Haliotis_corrugata_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_corrugata_StdErr", "long_name", "String", "Haliotis corrugata StdErr"], + ["attribute", "Haliotis_corrugata_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_fulgens_Mean_Density", "", "float", ""], + ["attribute", "Haliotis_fulgens_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_fulgens_Mean_Density", "actual_range", "float", "0.0, 0.005555556"], + ["attribute", "Haliotis_fulgens_Mean_Density", "comment", "String", "Common name: Green abalone"], + ["attribute", "Haliotis_fulgens_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Haliotis_fulgens_Mean_Density", "long_name", "String", "Haliotis fulgens Mean Density"], + ["attribute", "Haliotis_fulgens_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Haliotis_fulgens_Mean_Density", "units", "String", "m-2"], + ["variable", "Haliotis_fulgens_StdDev", "", "float", ""], + ["attribute", "Haliotis_fulgens_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_fulgens_StdDev", "actual_range", "float", "0.0, 0.008206099"], + ["attribute", "Haliotis_fulgens_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_fulgens_StdDev", "long_name", "String", "Haliotis fulgens StdDev"], + ["attribute", "Haliotis_fulgens_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_fulgens_StdErr", "", "float", ""], + ["attribute", "Haliotis_fulgens_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_fulgens_StdErr", "actual_range", "float", "0.0, 0.002368897"], + ["attribute", "Haliotis_fulgens_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_fulgens_StdErr", "long_name", "String", "Haliotis fulgens StdErr"], + ["attribute", "Haliotis_fulgens_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_rufescens_Mean_Density", "", "float", ""], + ["attribute", "Haliotis_rufescens_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_rufescens_Mean_Density", "actual_range", "float", "0.0, 0.99"], + ["attribute", "Haliotis_rufescens_Mean_Density", "comment", "String", "Common name: Red abalone"], + ["attribute", "Haliotis_rufescens_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Haliotis_rufescens_Mean_Density", "long_name", "String", "Haliotis rufescens Mean Density"], + ["attribute", "Haliotis_rufescens_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Haliotis_rufescens_Mean_Density", "units", "String", "m-2"], + ["variable", "Haliotis_rufescens_StdDev", "", "float", ""], + ["attribute", "Haliotis_rufescens_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_rufescens_StdDev", "actual_range", "float", "0.0, 0.6"], + ["attribute", "Haliotis_rufescens_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_rufescens_StdDev", "long_name", "String", "Haliotis rufescens StdDev"], + ["attribute", "Haliotis_rufescens_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Haliotis_rufescens_StdErr", "", "float", ""], + ["attribute", "Haliotis_rufescens_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Haliotis_rufescens_StdErr", "actual_range", "float", "0.0, 0.17"], + ["attribute", "Haliotis_rufescens_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Haliotis_rufescens_StdErr", "long_name", "String", "Haliotis rufescens StdErr"], + ["attribute", "Haliotis_rufescens_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Kelletia_kelletii_Mean_Density", "", "float", ""], + ["attribute", "Kelletia_kelletii_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Kelletia_kelletii_Mean_Density", "actual_range", "float", "0.0, 0.55"], + ["attribute", "Kelletia_kelletii_Mean_Density", "comment", "String", "Common name: Kellet's whelk"], + ["attribute", "Kelletia_kelletii_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Kelletia_kelletii_Mean_Density", "long_name", "String", "Kelletia kelletii Mean Density"], + ["attribute", "Kelletia_kelletii_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Kelletia_kelletii_Mean_Density", "units", "String", "m-2"], + ["variable", "Kelletia_kelletii_StdDev", "", "float", ""], + ["attribute", "Kelletia_kelletii_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Kelletia_kelletii_StdDev", "actual_range", "float", "0.0, 0.29"], + ["attribute", "Kelletia_kelletii_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Kelletia_kelletii_StdDev", "long_name", "String", "Kelletia kelletii StdDev"], + ["attribute", "Kelletia_kelletii_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Kelletia_kelletii_StdErr", "", "float", ""], + ["attribute", "Kelletia_kelletii_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Kelletia_kelletii_StdErr", "actual_range", "float", "0.0, 0.08"], + ["attribute", "Kelletia_kelletii_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Kelletia_kelletii_StdErr", "long_name", "String", "Kelletia kelletii StdErr"], + ["attribute", "Kelletia_kelletii_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Lophogorgia_chilensis_Mean_Density", "", "float", ""], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "actual_range", "float", "0.0, 0.7"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "comment", "String", "Common name: Red gorgonian"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "long_name", "String", "Lophogorgia chilensis Mean Density"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Lophogorgia_chilensis_Mean_Density", "units", "String", "m-2"], + ["variable", "Lophogorgia_chilensis_StdDev", "", "float", ""], + ["attribute", "Lophogorgia_chilensis_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lophogorgia_chilensis_StdDev", "actual_range", "float", "0.0, 0.44"], + ["attribute", "Lophogorgia_chilensis_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Lophogorgia_chilensis_StdDev", "long_name", "String", "Lophogorgia chilensis StdDev"], + ["attribute", "Lophogorgia_chilensis_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Lophogorgia_chilensis_StdErr", "", "float", ""], + ["attribute", "Lophogorgia_chilensis_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lophogorgia_chilensis_StdErr", "actual_range", "float", "0.0, 0.12"], + ["attribute", "Lophogorgia_chilensis_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Lophogorgia_chilensis_StdErr", "long_name", "String", "Lophogorgia chilensis StdErr"], + ["attribute", "Lophogorgia_chilensis_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Lytechinus_anamesus_Mean_Density", "", "float", ""], + ["attribute", "Lytechinus_anamesus_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "actual_range", "float", "0.0, 22.45"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "comment", "String", "Common name: White sea urchin"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "long_name", "String", "Lytechinus anamesus Mean Density"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Lytechinus_anamesus_Mean_Density", "units", "String", "m-2"], + ["variable", "Lytechinus_anamesus_StdDev", "", "float", ""], + ["attribute", "Lytechinus_anamesus_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lytechinus_anamesus_StdDev", "actual_range", "float", "0.0, 9.2"], + ["attribute", "Lytechinus_anamesus_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Lytechinus_anamesus_StdDev", "long_name", "String", "Lytechinus anamesus StdDev"], + ["attribute", "Lytechinus_anamesus_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Lytechinus_anamesus_StdErr", "", "float", ""], + ["attribute", "Lytechinus_anamesus_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Lytechinus_anamesus_StdErr", "actual_range", "float", "0.0, 2.65"], + ["attribute", "Lytechinus_anamesus_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Lytechinus_anamesus_StdErr", "long_name", "String", "Lytechinus anamesus StdErr"], + ["attribute", "Lytechinus_anamesus_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Megathura_crenulata_Mean_Density", "", "float", ""], + ["attribute", "Megathura_crenulata_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Megathura_crenulata_Mean_Density", "actual_range", "float", "0.0, 0.5"], + ["attribute", "Megathura_crenulata_Mean_Density", "comment", "String", "Common name: Giant keyhole limpet"], + ["attribute", "Megathura_crenulata_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Megathura_crenulata_Mean_Density", "long_name", "String", "Megathura crenulata Mean Density"], + ["attribute", "Megathura_crenulata_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Megathura_crenulata_Mean_Density", "units", "String", "m-2"], + ["variable", "Megathura_crenulata_StdDev", "", "float", ""], + ["attribute", "Megathura_crenulata_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Megathura_crenulata_StdDev", "actual_range", "float", "0.0, 0.22"], + ["attribute", "Megathura_crenulata_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Megathura_crenulata_StdDev", "long_name", "String", "Megathura crenulata StdDev"], + ["attribute", "Megathura_crenulata_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Megathura_crenulata_StdErr", "", "float", ""], + ["attribute", "Megathura_crenulata_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Megathura_crenulata_StdErr", "actual_range", "float", "0.0, 0.07"], + ["attribute", "Megathura_crenulata_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Megathura_crenulata_StdErr", "long_name", "String", "Megathura crenulata StdErr"], + ["attribute", "Megathura_crenulata_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Muricea_californica_Mean_Density", "", "float", ""], + ["attribute", "Muricea_californica_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_californica_Mean_Density", "actual_range", "float", "0.0, 0.31"], + ["attribute", "Muricea_californica_Mean_Density", "comment", "String", "Common name: California golden gorgonian"], + ["attribute", "Muricea_californica_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Muricea_californica_Mean_Density", "long_name", "String", "Muricea californica Mean Density"], + ["attribute", "Muricea_californica_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Muricea_californica_Mean_Density", "units", "String", "m-2"], + ["variable", "Muricea_californica_StdDev", "", "float", ""], + ["attribute", "Muricea_californica_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_californica_StdDev", "actual_range", "float", "0.0, 0.16"], + ["attribute", "Muricea_californica_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Muricea_californica_StdDev", "long_name", "String", "Muricea californica StdDev"], + ["attribute", "Muricea_californica_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Muricea_californica_StdErr", "", "float", ""], + ["attribute", "Muricea_californica_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_californica_StdErr", "actual_range", "float", "0.0, 0.04"], + ["attribute", "Muricea_californica_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Muricea_californica_StdErr", "long_name", "String", "Muricea californica StdErr"], + ["attribute", "Muricea_californica_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Muricea_fruticosa_Mean_Density", "", "float", ""], + ["attribute", "Muricea_fruticosa_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_fruticosa_Mean_Density", "actual_range", "float", "0.0, 0.04"], + ["attribute", "Muricea_fruticosa_Mean_Density", "comment", "String", "Common name: Brown gorgonian"], + ["attribute", "Muricea_fruticosa_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Muricea_fruticosa_Mean_Density", "long_name", "String", "Muricea fruticosa Mean Density"], + ["attribute", "Muricea_fruticosa_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Muricea_fruticosa_Mean_Density", "units", "String", "m-2"], + ["variable", "Muricea_fruticosa_StdDev", "", "float", ""], + ["attribute", "Muricea_fruticosa_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_fruticosa_StdDev", "actual_range", "float", "0.0, 0.09"], + ["attribute", "Muricea_fruticosa_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Muricea_fruticosa_StdDev", "long_name", "String", "Muricea fruticosa StdDev"], + ["attribute", "Muricea_fruticosa_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Muricea_fruticosa_StdErr", "", "float", ""], + ["attribute", "Muricea_fruticosa_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Muricea_fruticosa_StdErr", "actual_range", "float", "0.0, 0.02"], + ["attribute", "Muricea_fruticosa_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Muricea_fruticosa_StdErr", "long_name", "String", "Muricea fruticosa StdErr"], + ["attribute", "Muricea_fruticosa_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Panulirus_interruptus_Mean_Density", "", "float", ""], + ["attribute", "Panulirus_interruptus_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Panulirus_interruptus_Mean_Density", "actual_range", "float", "0.0, 0.11"], + ["attribute", "Panulirus_interruptus_Mean_Density", "comment", "String", "Common name: California spiny lobster"], + ["attribute", "Panulirus_interruptus_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Panulirus_interruptus_Mean_Density", "long_name", "String", "Panulirus interruptus Mean Density"], + ["attribute", "Panulirus_interruptus_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Panulirus_interruptus_Mean_Density", "units", "String", "m-2"], + ["variable", "Panulirus_interruptus_StdDev", "", "float", ""], + ["attribute", "Panulirus_interruptus_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Panulirus_interruptus_StdDev", "actual_range", "float", "0.0, 0.32"], + ["attribute", "Panulirus_interruptus_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Panulirus_interruptus_StdDev", "long_name", "String", "Panulirus interruptus StdDev"], + ["attribute", "Panulirus_interruptus_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Panulirus_interruptus_StdErr", "", "float", ""], + ["attribute", "Panulirus_interruptus_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Panulirus_interruptus_StdErr", "actual_range", "float", "0.0, 0.09"], + ["attribute", "Panulirus_interruptus_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Panulirus_interruptus_StdErr", "long_name", "String", "Panulirus interruptus StdErr"], + ["attribute", "Panulirus_interruptus_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Pycnopodia_helianthoides_Mean_Density", "", "float", ""], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "actual_range", "float", "0.0, 0.33"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "comment", "String", "Common name: Sunflower star"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "long_name", "String", "Pycnopodia helianthoides Mean Density"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Pycnopodia_helianthoides_Mean_Density", "units", "String", "m-2"], + ["variable", "Pycnopodia_helianthoides_StdDev", "", "float", ""], + ["attribute", "Pycnopodia_helianthoides_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Pycnopodia_helianthoides_StdDev", "actual_range", "float", "0.0, 0.21"], + ["attribute", "Pycnopodia_helianthoides_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Pycnopodia_helianthoides_StdDev", "long_name", "String", "Pycnopodia helianthoides StdDev"], + ["attribute", "Pycnopodia_helianthoides_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Pycnopodia_helianthoides_StdErr", "", "float", ""], + ["attribute", "Pycnopodia_helianthoides_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Pycnopodia_helianthoides_StdErr", "actual_range", "float", "0.0, 0.06"], + ["attribute", "Pycnopodia_helianthoides_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Pycnopodia_helianthoides_StdErr", "long_name", "String", "Pycnopodia helianthoides StdErr"], + ["attribute", "Pycnopodia_helianthoides_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Stylaster_californica_Mean_Density", "", "float", ""], + ["attribute", "Stylaster_californica_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Stylaster_californica_Mean_Density", "actual_range", "float", "0.0, 0.13"], + ["attribute", "Stylaster_californica_Mean_Density", "comment", "String", "Common name: California hydrocoral"], + ["attribute", "Stylaster_californica_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Stylaster_californica_Mean_Density", "long_name", "String", "Stylaster californica Mean Density"], + ["attribute", "Stylaster_californica_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Stylaster_californica_Mean_Density", "units", "String", "m-2"], + ["variable", "Stylaster_californica_StdDev", "", "float", ""], + ["attribute", "Stylaster_californica_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Stylaster_californica_StdDev", "actual_range", "float", "0.0, 0.18"], + ["attribute", "Stylaster_californica_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Stylaster_californica_StdDev", "long_name", "String", "Stylaster californica StdDev"], + ["attribute", "Stylaster_californica_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Stylaster_californica_StdErr", "", "float", ""], + ["attribute", "Stylaster_californica_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Stylaster_californica_StdErr", "actual_range", "float", "0.0, 0.05"], + ["attribute", "Stylaster_californica_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Stylaster_californica_StdErr", "long_name", "String", "Stylaster californica StdErr"], + ["attribute", "Stylaster_californica_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Tethya_aurantia_Mean_Density", "", "float", ""], + ["attribute", "Tethya_aurantia_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Tethya_aurantia_Mean_Density", "actual_range", "float", "0.0, 0.41"], + ["attribute", "Tethya_aurantia_Mean_Density", "comment", "String", "Common name: Orange puffball sponge"], + ["attribute", "Tethya_aurantia_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Tethya_aurantia_Mean_Density", "long_name", "String", "Tethya aurantia Mean Density"], + ["attribute", "Tethya_aurantia_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Tethya_aurantia_Mean_Density", "units", "String", "m-2"], + ["variable", "Tethya_aurantia_StdDev", "", "float", ""], + ["attribute", "Tethya_aurantia_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Tethya_aurantia_StdDev", "actual_range", "float", "0.0, 0.18"], + ["attribute", "Tethya_aurantia_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Tethya_aurantia_StdDev", "long_name", "String", "Tethya aurantia StdDev"], + ["attribute", "Tethya_aurantia_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Tethya_aurantia_StdErr", "", "float", ""], + ["attribute", "Tethya_aurantia_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Tethya_aurantia_StdErr", "actual_range", "float", "0.0, 0.05"], + ["attribute", "Tethya_aurantia_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Tethya_aurantia_StdErr", "long_name", "String", "Tethya aurantia StdErr"], + ["attribute", "Tethya_aurantia_StdErr", "missing_value", "float", "-9999999.0"], + ["variable", "Urticina_lofotensis_Mean_Density", "", "float", ""], + ["attribute", "Urticina_lofotensis_Mean_Density", "_FillValue", "float", "-9999999.0"], + ["attribute", "Urticina_lofotensis_Mean_Density", "actual_range", "float", "0.0, 0.39"], + ["attribute", "Urticina_lofotensis_Mean_Density", "comment", "String", "Common name: White-spotted rose anemone"], + ["attribute", "Urticina_lofotensis_Mean_Density", "ioos_category", "String", "Biology"], + ["attribute", "Urticina_lofotensis_Mean_Density", "long_name", "String", "Urticina lofotensis Mean Density"], + ["attribute", "Urticina_lofotensis_Mean_Density", "missing_value", "float", "-9999999.0"], + ["attribute", "Urticina_lofotensis_Mean_Density", "units", "String", "m-2"], + ["variable", "Urticina_lofotensis_StdDev", "", "float", ""], + ["attribute", "Urticina_lofotensis_StdDev", "_FillValue", "float", "-9999999.0"], + ["attribute", "Urticina_lofotensis_StdDev", "actual_range", "float", "0.0, 0.28"], + ["attribute", "Urticina_lofotensis_StdDev", "ioos_category", "String", "Statistics"], + ["attribute", "Urticina_lofotensis_StdDev", "long_name", "String", "Urticina lofotensis StdDev"], + ["attribute", "Urticina_lofotensis_StdDev", "missing_value", "float", "-9999999.0"], + ["variable", "Urticina_lofotensis_StdErr", "", "float", ""], + ["attribute", "Urticina_lofotensis_StdErr", "_FillValue", "float", "-9999999.0"], + ["attribute", "Urticina_lofotensis_StdErr", "actual_range", "float", "0.0, 0.08"], + ["attribute", "Urticina_lofotensis_StdErr", "ioos_category", "String", "Statistics"], + ["attribute", "Urticina_lofotensis_StdErr", "long_name", "String", "Urticina lofotensis StdErr"], + ["attribute", "Urticina_lofotensis_StdErr", "missing_value", "float", "-9999999.0"] + ] + } + } + recorded_at: 2020-07-15 22:22:33 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/index.json?page=1&itemsPerPage=10000 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:46 GMT + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:22:46 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=tabledap.json + content-encoding: gzip + content-type: application/json;charset=UTF-8 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: no + string: | + { + "table": { + "columnNames": ["griddap", "Subset", "tabledap", "Make A Graph", "wms", "files", "Accessible", "Title", "Summary", "FGDC", "ISO 19115", "Info", "Background Info", "RSS", "Email", "Institution", "Dataset ID"], + "columnTypes": ["String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String", "String"], + "rows": [ + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/allDatasets.graph", "", "", "public", "* The List of All Active Datasets in this ERDDAP *", "This dataset is a table which has a row of information for each dataset currently active in this ERDDAP.\n\ncdm_data_type = Other\nVARIABLES:\ndatasetID (Dataset ID)\naccessible\ninstitution\ndataStructure (Data Structure)\ncdm_data_type (Common Data Model Type)\nclass (ERDDAP Class)\ntitle\nminLongitude (Minimum Longitude, degrees_east)\nmaxLongitude (Maximum Longitude, degrees_east)\nlongitudeSpacing (Average Grid Longitude Spacing, degrees_east)\nminLatitude (Minimum Latitude, degrees_north)\nmaxLatitude (Maximum Latitude, degrees_north)\nlatitudeSpacing (Average Grid Latitude Spacing, degrees_north)\nminAltitude (Minimum Altitude or -Depth, m)\nmaxAltitude (Maximum Altitude or -Depth, m)\nminTime (Minimum Time, seconds since 1970-01-01T00:00:00Z)\nmaxTime (Maximum Time, seconds since 1970-01-01T00:00:00Z)\ntimeSpacing (Average Grid Time Spacing, seconds)\ngriddap (Base URL of OPeNDAP Grid Service)\nsubset (URL of Subset Web Page)\ntabledap (Base URL of OPeNDAP Table/Sequence Service)\nMakeAGraph (URL of Make-A-Graph Web Page)\nsos (Base URL of SOS Service)\nwcs (Base URL of WCS Service)\nwms (Base URL of WMS Service)\nfiles (Base URL of /files/ Service)\n... (10 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/allDatasets/index.json", "https://upwell.pfeg.noaa.gov/erddap", "", "", "NOAA NMFS SWFSC Environmental Research Division", "allDatasets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_hi_20112012.graph", "", "", "public", "AIS Ship Traffic: Hawaii: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Hawaiian Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_hi_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_hi_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_hi_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_hi_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_hi_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_hi_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_john_20112012.graph", "", "", "public", "AIS Ship Traffic: Johnston Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Johnston Atoll. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_john_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_john_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_john_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_john_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_john_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_john_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_mari_20112012.graph", "", "", "public", "AIS Ship Traffic: Mariana and Wake: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region of the Mariana Islands. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_mari_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_mari_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_mari_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_mari_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_mari_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_mari_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ais_rose_20112012.graph", "", "", "public", "AIS Ship Traffic: Rose Atoll: 2011-2012", "Ship position data from a satellite-based Automatic Identification System (AIS) were obtained jointly by PacIOOS (J. Potemra), SOEST/ORE of the University of Hawaii (E. Roth), and the Papahanaumokuakea Marine National Monument (PNMN) (D. Graham) through a one-time purchase from ORBCOMM LLC. The purchase agreement was made in late 2012 and was for a 30-by-30 degree section of historical AIS data that included the region surrounding Rose Atoll in American Samoa. The data include AIS long and unchecked reports for a one year period: August 2011 through mid-August 2012. The raw, monthly GPS files were locally converted to NetCDF for the PacIOOS data servers. Due to vendor constraints, release of the raw data is limited.\n\ncdm_data_type = Point\nVARIABLES:\nobs (observation, 0)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nship_id_mmsi (ship identification number (MMSI), 0)\nnavigational_status (0)\nspeed_over_ground (kts)\ncourse_over_ground (deg)\ntrue_heading (deg)\nrate_of_turn (degrees minutes-1)\nposition_accuracy (0)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ais_rose_20112012_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ais_rose_20112012_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ais_rose_20112012/index.json", "http://www.navcen.uscg.gov/?pageName=AISmain", "http://upwell.pfeg.noaa.gov/erddap/rss/ais_rose_20112012.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ais_rose_20112012&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "ais_rose_20112012"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_temp.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Temperature", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of sea water temperature at the ACO at 1.83 m above the ocean bottom for the most recent 7 days.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (m)\nsea_water_temperature (degree_Celsius)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_temp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_temp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_temp/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_temp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_temp&showErrors=false&email=", "University of Hawaii", "aco_adcp_temp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/aco_adcp_vel.graph", "", "", "public", "ALOHA Cabled Observatory (ACO): Acoustic Doppler Current Profiler (ADCP): Velocity", "The University of Hawaii's ALOHA (\"A Long-term Oligotrophic Habitat Assessment\") Cabled Observatory (ACO) is located 100 km north of the island of Oahu, Hawaii (22 45'N, 158W) in the North Pacific Ocean. It provides real-time oceanographic observations from a depth of about 4,800 m via a submarine fiber optic cable that comes ashore at Makaha on Oahu. This data set provides measurements of ocean current velocity at the ACO from a 250 kHz SonTek acoustic doppler current profiler (ADCP) at 1.83 m above the ocean bottom for the most recent 7 days. Velocities are flagged bad if the amplitude is excessively low or high. An amplitude is high if it exceeds the average of the ping before and the ping after by 20 counts. An amplitude is low if less than 6 counts. After this the velocities are flagged bad if the absolute deviation of the vertical velocity from its ensemble median exceeds 0.15 m/s or if its value is less than -0.25 m/s.\n\ncdm_data_type = Profile\nVARIABLES:\nstation_name\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (Depth of each location, m)\nlatitude (degrees_north)\nlongitude (degrees_east)\neastward_sea_water_velocity (current east component, meters/second)\nnorthward_sea_water_velocity (current north component, meters/second)\nupward_sea_water_velocity (current upward component, meters/second)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/aco_adcp_vel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/aco_adcp_vel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/aco_adcp_vel/index.json", "http://aco-ssds.soest.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/aco_adcp_vel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=aco_adcp_vel&showErrors=false&email=", "University of Hawaii", "aco_adcp_vel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nodcPJJU.graph", "", "", "public", "AN EXPERIMENTAL DATASET: Underway Sea Surface Temperature and Salinity Aboard the Oleander, 2007-2010", "The data being submitted to NODC contain information about temperature and salinity obtained with the use of thermosalinographs (TSG) installed in ships of the NOAA fleet and other cargo and cruise ships. The data is transmitted to AOML/NOAA in real-time and submitted to a quality control procedure developed at AOML based on the Global Ocean Surface Underway Data Pilot Project (GOSUD) real-time control test. Data approved in these tests are submitted to the GTS. The data set submitted to NODC for distribution constitute the complete data set received by AOML with the corresponding flags after the quality control.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncallSign (Call Sign)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nintp (Internal TSG Temperature, degree_C)\nsal (TSG Practial Salinity, PSU)\ncond (TSG Conductivity, degree_C)\next (Thermistor Water Temperature, degrees_Celsius)\nsst (Sea Surface Temperature, degrees_Celsius)\nflag_a (QC flag-platform identification)\nflag_b (QC flag-impossible date)\nflag_c (QC flag-impossible location)\nflag_d (QC flag-position on land step)\nflag_e (QC flag-impossible speed)\nflag_f (QC flag-global ranges)\nflag_g (QC flag-regional ranges)\nflag_h (QC flag-spike test)\nflag_i (QC flag-constant value)\nflag_j (QC flag-gradient test)\nflag_k (QC flag-climatology and NCEP weekly analysis)\nflag_l (QC flag-buddy check)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nodcPJJU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nodcPJJU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nodcPJJU/index.json", "https://www.aoml.noaa.gov/phod/tsg/index.php", "http://upwell.pfeg.noaa.gov/erddap/rss/nodcPJJU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nodcPJJU&showErrors=false&email=", "NOAA OAR AOML", "nodcPJJU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gtoppAT.graph", "", "", "public", "Animal Telemetry Network (ATN)", "These data (updated daily) are from the Animal Telemetry Network (ATN) program. Begun as one of the field projects in the international Census of Marine Life, the Pacific-focused TOPP (Tagging of Pacific Predators) program was an international multidisciplinary collaboration of more than 75 scientists from 7 nations. Over the decade beginning in 2000, TOPP researchers deployed more than 4,300 electronic tags on 23 different species of marine animals - yielding a dataset of more than 335,000 tracking days. To learn more please visit https://oceanview.pfeg.noaa.gov/ATN.\n\ncdm_data_type = Trajectory\nVARIABLES:\ncommonName (Common Name)\nyearDeployed (Year Deployed)\nproject\ntoppID (TOPP ID (unique))\nserialNumber (The Tag's Serial Number (not unique))\nisDrifter (Is Drifter?)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nLC (Location Quality Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gtoppAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gtoppAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gtoppAT/index.json", "https://gtopp.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/gtoppAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gtoppAT&showErrors=false&email=", "Animal Telemetry Network", "gtoppAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcufes.graph", "", "", "public", "CalCOFI Continuous Underway Fish-Egg Sampler", "Samples collected using the Continuous Underway Fish-Egg Sampler, known as CUFES. The data include numbers of anchovy, sardine, jack mackerel, squid, hake, and unidentified fish eggs captured, and associated environmental.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nsample_number\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstart_temperature (degree C)\nstart_salinity (psu)\nstart_wind_speed (knots)\nstart_wind_direction (degrees)\nstart_pump_speed (M^3 per minute)\nstop_time (seconds since 1970-01-01T00:00:00Z)\nstop_latitude (degrees_north)\nstop_longitude (degrees_east)\nstop_temperature (degree C)\nstop_salinity (psu)\nstop_wind_speed (knots)\nstop_wind_direction (degrees)\nstop_pump_speed (M^3 per minute)\nsardine_eggs (count)\nanchovy_eggs (count)\njack_mackerel_eggs (count)\nhake_eggs (count)\nsquid_eggs (count)\nother_fish_eggs (count)\ncomments\nresorted\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIcufes_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIcufes_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcufes/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcufes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcufes&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcufes"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIcruises.graph", "", "", "public", "CalCOFI Cruises", "Cruises using one or more ships conducted as part of the California Cooperative Oceanic Fisheries Investigations (CalCOFI) program and other related cruises conducted by the NOAA Southwest Fisheries Science Center from 1951 to present. Multi-purpose cruises e.g., CalCOFI and trawling, include a listing for each cruise type.\n\ncdm_data_type = Other\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\nyear\nmonth\ncruise_type\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIcruises/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIcruises.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIcruises&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIcruises"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcnt.graph", "", "", "public", "CalCOFI Egg Counts", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero eggs were captured for the species, i.e., negative tows. The \"Egg Counts Positive Tows\" table includes only tows where one or more eggs were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code (CalCOI Species Code)\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcnt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcnt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcnt/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcnt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcnt&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcnt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggcntpos.graph", "", "", "public", "CalCOFI Egg Counts Positive Tows", "Fish egg counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more eggs were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Egg Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_count (raw count)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIeggstg.graph", "", "", "public", "CalCOFI Egg Stages", "Egg morphological developmental stage for eggs of selected species captured in CalCOFI icthyoplankton nets. Sequential developmental stages are described by Moser and Ahlstrom (1985; see the info url references section).\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\negg_stage\negg_stage_count (Raw count of eggs in the stage)\neggs_10m2 (Standardized count of eggs for oblique tows, Eggs per ten meters squared of water sampled)\neggs_1000m3 (Standardized count of eggs for manta tows, Eggs per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIeggstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIeggstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIeggstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIeggstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIeggstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIeggstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntpos.graph", "", "", "public", "CalCOFI Larvae Counts Positive Tows", "Fish larvae counts and standardized counts for eggs captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]) . Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes only tows where one or more larvae were captured for the species selected by the user, i.e., no \"zero\" tows. The \"Larvae Counts\" table includes all tows by species, i.e., both positive and negative tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the size class for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntpos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntpos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntpos/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntpos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntpos&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntpos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAtoAM.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names A to AM", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAtoAM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAtoAM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAtoAM/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAtoAM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAtoAM&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAtoAM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntANtoAR.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AN to AR", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntANtoAR_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntANtoAR_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntANtoAR/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntANtoAR.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntANtoAR&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntANtoAR"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntAStoBA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names AS to BA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntAStoBA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntAStoBA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntAStoBA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntAStoBA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntAStoBA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntAStoBA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntBCEtoBZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names BCE to BZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntBCEtoBZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntBCEtoBZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntBCEtoBZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntBCEtoBZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntBCEtoBZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntBCEtoBZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCtoCE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names C to CE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCtoCE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCtoCE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCtoCE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCtoCE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCtoCE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCtoCE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCDtoCH.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CD to CH", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCDtoCH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCDtoCH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCDtoCH/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCDtoCH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCDtoCH&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCDtoCH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCItoCO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CI to CO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCItoCO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCItoCO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCItoCO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCItoCO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCItoCO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCItoCO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntCPtoDE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names CP to DE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntCPtoDE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntCPtoDE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntCPtoDE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntCPtoDE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntCPtoDE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntCPtoDE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntDHtoEC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names DH to EC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntDHtoEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntDHtoEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntDHtoEC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntDHtoEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntDHtoEC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntDHtoEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEDtoEU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names ED to EU", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEDtoEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEDtoEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEDtoEU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEDtoEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEDtoEU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEDtoEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntEVtoGN.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names EV to GN", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntEVtoGN_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntEVtoGN_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntEVtoGN/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntEVtoGN.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntEVtoGN&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntEVtoGN"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntGOtoHA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names GO to HA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntGOtoHA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntGOtoHA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntGOtoHA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntGOtoHA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntGOtoHA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntGOtoHA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHBtoHI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HB to HI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHBtoHI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHBtoHI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHBtoHI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHBtoHI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHBtoHI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHBtoHI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntHJtoID.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names HJ to ID", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntHJtoID_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntHJtoID_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntHJtoID/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntHJtoID.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntHJtoID&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntHJtoID"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntIEtoLA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names IE to LA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntIEtoLA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntIEtoLA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntIEtoLA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntIEtoLA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntIEtoLA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntIEtoLA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLBtoLI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LB to LI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLBtoLI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLBtoLI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLBtoLI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLBtoLI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLBtoLI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLBtoLI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntLJtoMA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names LJ to MA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntLJtoMA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntLJtoMA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntLJtoMA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntLJtoMA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntLJtoMA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntLJtoMA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMBtoMO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MB to MO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMBtoMO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMBtoMO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMBtoMO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMBtoMO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMBtoMO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMBtoMO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntMPtoNA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names MP to NA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntMPtoNA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntMPtoNA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntMPtoNA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntMPtoNA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntMPtoNA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntMPtoNA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntNBtoOL.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names NB to OL", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntNBtoOL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntNBtoOL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntNBtoOL/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntNBtoOL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntNBtoOL&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntNBtoOL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOMtoOX.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OM to OX", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOMtoOX_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOMtoOX_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOMtoOX/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOMtoOX.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOMtoOX&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOMtoOX"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntOYtoPI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names OY to PI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntOYtoPI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntOYtoPI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntOYtoPI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntOYtoPI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntOYtoPI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntOYtoPI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPLtoPO.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PL to PO", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPLtoPO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPLtoPO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPLtoPO/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPLtoPO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPLtoPO&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPLtoPO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntPPtoPZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names PP to PZ", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntPPtoPZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntPPtoPZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntPPtoPZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntPPtoPZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntPPtoPZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntPPtoPZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntQtoSA.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names Q to SA", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntQtoSA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntQtoSA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntQtoSA/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntQtoSA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntQtoSA&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntQtoSA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSBtoSC.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SB to SC", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSBtoSC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSBtoSC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSBtoSC/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSBtoSC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSBtoSC&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSBtoSC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSDtoSI.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SD to SI", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSDtoSI_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSDtoSI_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSDtoSI/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSDtoSI.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSDtoSI&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSDtoSI"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSJtoST.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SJ to ST", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSJtoST_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSJtoST_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSJtoST/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSJtoST.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSJtoST&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSJtoST"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntSUtoTE.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names SU to TE", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntSUtoTE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntSUtoTE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntSUtoTE/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntSUtoTE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntSUtoTE&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntSUtoTE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntTFtoU.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names TF to U", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntTFtoU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntTFtoU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntTFtoU/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntTFtoU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntTFtoU&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntTFtoU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvcntVtoZ.graph", "", "", "public", "CalCOFI Larvae Counts, Scientific Names V to Z", "Fish larvae counts and standardized counts for larvae captured in CalCOFI icthyoplankton nets (primarily vertical [Calvet or Pairovet], oblique [bongo or ring nets], and surface tows [Manta nets]). Surface tows are normally standardized to count per 1,000 m3 strained. Oblique tows are normally standardized to count per 10 m2 of surface sampled. This table includes all tows by species, even if zero larvae were captured for the species, i.e., negative tows. The \"Larvae Counts Positive Tows\" table includes only tows where one or more larvae were captured for the species selected by the user.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvcntVtoZ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvcntVtoZ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvcntVtoZ/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvcntVtoZ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvcntVtoZ&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvcntVtoZ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvsiz.graph", "", "", "public", "CalCOFI Larvae Sizes", "Size data for selected larval fish captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_size (Total length of the larvae, mm)\nlarvae_count (Raw count of larvae)\nlarvae_10m2 (Standardized count of larvae in the size class for oblique tows, Fish larvae per ten meters squared of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvsiz_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvsiz_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvsiz/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvsiz.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvsiz&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvsiz"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIlrvstg.graph", "", "", "public", "CalCOFI Larvae Stages", "Developmental stages (yolk sac, preflexion, flexion, postflexion, or transformation) of selected fish larvae captured in CalCOFI icthyoplankton nets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type (Tow Type Name)\nnet_type\ntow_number\nnet_location\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nsample_quality\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nscientific_name\ncommon_name\nitis_tsn (Intergrated Taxomomic Information System Taxonomic Serial Number)\ncalcofi_species_code\nlarvae_stage\nlarvae_stage_count (Raw count of larvae in the stage)\nlarvae_10m2 (Standardized count of larvae in the stage for oblique tows, Fish larvae per ten meters squared of water sampled)\nlarvae_1000m3 (Standardized count of larvae in the stage for manta tows, Fish larvae per 1,000 cubic meters of water sampled)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIlrvstg_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIlrvstg_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIlrvstg/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIlrvstg.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIlrvstg&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIlrvstg"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNOAAhydros.graph", "", "", "public", "CalCOFI NOAAHydros", "Hydrographic data collected by bucket, CTD, or 10-m Niskin bottle as part of CalCOFI and related cruises. Note that most oxygen and salinity values in this table have not been calibrated with water samples. Most users will want to use the Scripps hydrographic data instead.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (Estimated datetime, seconds since 1970-01-01T00:00:00Z)\ncast_type\nstandard_depth (meters)\ntemperature (Water Temperature, degree C)\nsalinity (psu)\ndensity (Water Density, 1000*(g/l - 1))\noxygen (Dissolved Oxygen Content, ml/l)\ndynamic_height (dynamic meter)\npercent_saturation (Percent Oxygen saturation, %)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNOAAhydros_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNOAAhydros_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNOAAhydros/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNOAAhydros.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNOAAhydros&showErrors=false&email=", "NOAA SWFSC", "erdNOAAhydros"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottle.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\ndepthm (Bottle Depth, meters)\nt_degc (Temperature, degree C)\nsalinity (psu)\no2ml_l (Measured Oxygen, ml/L of seawater)\nstheta (Potential Density of water)\nbtlnum (Bottle Number)\nrecind (Data Descriptor Code)\nt_prec (Temperature Precision)\nt_qual (Temperature Quality)\ns_prec (Salinity Precision)\ns_qual (Salinity Quality)\np_qual (Pressure Quality)\no_qual (Oxygen Precision)\nsthtaq (Potential Density Quality)\no2satq (Oxygen saturation Quality)\nchlora (Chlorophyll-a, ug/L of seawater)\nchlqua (Chlorophyll-a quality)\nphaeop (Phaeopigment Concentration, ug/L of seawater)\nphaqua (Phaeopigments quality)\npo4ug (Measured Phosphate Concentration, uM/L of seawater)\npo4q (Phosphate quality)\nsio3ug (Measured Silicate concentration, uM/L of seawater)\nsio3qu (Silicate quality)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottle/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottle&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroBottleReport.graph", "", "", "public", "CalCOFI SIO Hydrographic Bottle Report data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\nbtl_cnt (Bottle Count)\nsta_id (Line and Station)\ndepth_id (Bottle Identifier)\nr_depth (Reported Bottle Depth, meters)\nr_temp (Reported Temperature, degree C)\nr_potemp (Reported Potential Temperature, degree C)\nr_salinity (Reported Salinity, psu)\nr_sigma (Reported Potential Density of water)\nr_sva (Reported Specific Volume Anomaly, degree C)\nr_dynht (Reported Dynamic Height, dynamic meters)\nr_o2 (Reported Oxygen, ml/L of seawater)\nr_o2sat (Reported Oxygen Saturation, %)\nr_sio3 (Reported Silicate Concentration, uM/L of seawater)\nr_po4 (Reported Phosphate Concentration, uM/L of seawater)\nr_no3 (Reported Nitrate Concentration, uM/L of seawater)\nr_no2 (Reported Nitrite Concentration, uM/L of seawater)\nr_chla (Reported Chlorophyll-a, ug/L of seawater)\nr_phaeo (Reported Phaeophytin, ug/L of seawater)\nr_pres (Reported Pressure, db)\nr_samp (Sample Number)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroBottleReport_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroBottleReport_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroBottleReport/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroBottleReport.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroBottleReport&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroBottleReport"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts", "https://upwell.pfeg.noaa.gov/erddap/tabledap/siocalcofiHydroCasts.graph", "", "", "public", "CalCOFI SIO Hydrographic Cast Data", "SIO Hydrographic data\n\ncdm_data_type = Point\nVARIABLES:\ncst_cnt (Cast Count)\ncruise_id\ncruz_sta (Cruise Id)\ndbsta_id (CalCOFI Line and Station)\ncast_id\nsta_id (Line and Station)\nquarter (Quarter of Year)\nsta_code (Station Type)\ndistance (Distance from shore)\ndate\nyear\nmonth\njulian_date\njulian_day\ntime_ascii (Time of Cast)\nlatitude (degrees_north)\nlatitude_degrees\nlatitude_minutes\nlatitude_hemisphere\nlongitude (degrees_east)\nlongitude_degrees\nlongitude_minutes\nlongitude_hemisphere\nrpt_line (Reported Line Number)\nst_line (Nominal CalCOFI Line)\nac_line (Actual Line Number)\nrpt_sta (Reported Station)\n... (34 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/siocalcofiHydroCasts_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/siocalcofiHydroCasts_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/siocalcofiHydroCasts/index.json", "https://calcofi.org/ccdata/data-formats/77-database-tables.html", "http://upwell.pfeg.noaa.gov/erddap/rss/siocalcofiHydroCasts.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=siocalcofiHydroCasts&showErrors=false&email=", "UCSD SIO", "siocalcofiHydroCasts"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFIstns.graph", "", "", "public", "CalCOFI Stations", "Summary information about sample locations for NOAA CalCOFI and related cruises.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nbottom_depth (fathoms)\nremarks\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFIstns_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFIstns_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFIstns/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFIstns.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFIstns&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFIstns"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItowtyp", "", "", "", "public", "CalCOFI Tow Types", "Description of each CalCOFI net type and its associated abbreviation in the CalCOFI database.\n\ncdm_data_type = Other\nVARIABLES:\nnet_type\nlong_net_type\ndescription\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItowtyp/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItowtyp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItowtyp&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItowtyp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCalCOFItows.graph", "", "", "public", "CalCOFI Tows", "Location, performance, and summary information about individual net tows.\n\ncdm_data_type = Point\nVARIABLES:\ncruise (Cruise Code)\nship (Ship Name)\nship_code\norder_occupied\ntow_type\nnet_type\ntow_number\nnet_location\ntime (Start Time, seconds since 1970-01-01T00:00:00Z)\nstandard_haul_factor\nvolume_sampled (cubic meters)\npercent_sorted (%/100)\nmesh_size (Net Mesh Size, microns)\ntotal_eggs\nsorted_plankton_volume (ml/1000 m^3)\nsample_quality\nsmall_plankton_volume (ml/1000 m^3 of water strained)\ntotal_plankton_volume (ml/1000 m^3 of water strained)\ntotal_larvae\nend_time (End Timestamp, seconds since 1970-01-01T00:00:00Z)\ntotal_juveniles_or_adults (Total Juvenile/Adults)\nlatitude (degrees_north)\nlongitude (degrees_east)\nline\nstation\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCalCOFItows_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCalCOFItows_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCalCOFItows/index.json", "https://oceanview.pfeg.noaa.gov/CalCOFI/calcofi_info.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCalCOFItows.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCalCOFItows&showErrors=false&email=", "NOAA SWFSC", "erdCalCOFItows"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fedCalLandings.graph", "", "", "public", "California Commercial Fish Landings, 1931-1978", "The Groundfish Analysis Team at the SWFSC Fisheries Ecology Division (Santa\nCruz) completed work on a California commercial landings database, which\nincludes landings from 1931 through 2007. Landings from 1931 through 1968\nwere recovered using funds and services provided by the NESDIS Climate\nDatabase Modernization Program (CDMP). The recovered data, when combined with\nmore recent landings estimates from the California Cooperative Groundfish\nSurvey from 1969 to 2007, forms one of the longest detailed catch records in\nthe US. The 1931-68 period includes monthly summaries of catches by 10-minute\ngeographic blocks. These data are now openly available to the public for use\nin stock assessments and monitoring of climate effects. Pearson is currently\nworking with the California Department of Fish and Game to extend the\ngeographic summary information to more recent years. Also, the taxa reported\nin the historical data are the \"market categories\" used by fish processors,\nand may involve multiple species groupings. A project has been initiated to\nresolve historical landings to provide best estimates for individual species.\n\nWhen using this data it is critical to understand that a market category is\nNOT a species code - it is a sort group. While landings in some market\ncategories may consist entirely of the species for which they are named,\nlandings in other market categories may contain few of the species for which\nthey are named.\n\nGeneral Notes:\nThe data from 1930-1932 has a lot of unknown block data. When the trawl\nlanding data is entered, some of this may be resolved. At the same time,\nsome gear data will be available.\n\nWhen Source Corp finishes data entry of the landing receipt data, gear code\ndata will be available from 1951-1968; however, this will not be completed\nuntil around 2011.\n\nBlock Maps: https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch/ca_landings_info.html\nData Source: California Department of Fish & Game.\nData Assembly: NOAA SWFSC FED; Contact: Don.Pearson@noaa.gov\n\ncdm_data_type = Other\nVARIABLES:\nmarket_category\n... (13 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/fedCalLandings/index.json", "https://oceanview.pfeg.noaa.gov/PaCOOS/mkt_catch", "http://upwell.pfeg.noaa.gov/erddap/rss/fedCalLandings.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fedCalLandings&showErrors=false&email=", "NOAA SWFSC FED", "fedCalLandings"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLM.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatLY.graph", "", "", "public", "California Fish Market Catch Landings, Long List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatLY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatLY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatLY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatLY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSM.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Monthly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSM/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSM&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCAMarCatSY.graph", "", "", "public", "California Fish Market Catch Landings, Short List, 1928-2002, Yearly", "Database of fish and invertebrates caught off California and landed in California, including commercial freshwater catches in California through but not after 1971 and some maricultured shellfish such as oysters through 1980. For more information, see\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html and\nhttps://oceanview.pfeg.noaa.gov/las_fish1/doc/marketlist.html .\n\nThis dataset has the sums of the monthly values for each calendar year.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nfish (Fish Name)\nport\nlandings (pounds)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdCAMarCatSY/index.json", "https://oceanview.pfeg.noaa.gov/las_fish1/doc/names_describe.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCAMarCatSY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCAMarCatSY&showErrors=false&email=", "CA DFG, NOAA ERD", "erdCAMarCatSY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Sea Temperature, 1993-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has subtidal temperature data taken at permanent monitoring sites. Since 1993, remote temperature loggers manufactured by Onset Computer Corporation were deployed at each site approximately 10-20 cm from the bottom in a underwater housing. Since 1993, three models of temperature loggers (HoboTemp (tm), StowAway (R) and Tidbit(R)) were used to collect temperature data every 1-5 hours depending on the model used.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Sea Water Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmT&showErrors=false&email=", "CINP", "erdCinpKfmT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmSFNH.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Size and Frequency, Natural Habitat, 1985-2007", "This dataset has measurements of the size of selected animal species at selected locations in the Channel Islands National Park. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The size frequency measurements were taken within 10 meters of the transect line at each site. Depths at the site vary some, but we describe the depth of the site along the transect line where that station's temperature logger is located, a typical depth for the site.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nid (Station Identifier)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\ncommon_name\nspecies_name\nsize (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmSFNH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmSFNH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmSFNH/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmSFNH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmSFNH&showErrors=false&email=", "CINP", "erdCinpKfmSFNH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm1Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 1m Quadrat, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance (density) of relatively abundant selected sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAgarum_fimbriatum_adult_Mean_Density (m-2)\nAgarum_fimbriatum_adult_StdDev\nAgarum_fimbriatum_adult_StdErr\nAgarum_fimbriatum_juvenile_Mean_Density (m-2)\nAgarum_fimbriatum_juvenile_StdDev\nAgarum_fimbriatum_juvenile_StdErr\nAlloclinus_holderi_Mean_Density (m-2)\nAlloclinus_holderi_StdDev\nAlloclinus_holderi_StdErr\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nAsterina_miniata_Mean_Density (m-2)\nAsterina_miniata_StdDev\nAsterina_miniata_StdErr\nCentrostephanus_coronatus_Mean_Density (m-2)\nCentrostephanus_coronatus_StdDev\n... (91 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm1Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm1Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm1Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm1Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm1Q&showErrors=false&email=", "CINP", "erdCinpKfm1Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfm5Q.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, 5m Quadrat, 1996-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of selected rare, clumped, sedentary indicator species. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nMacrocystis_pyrifera_Adult_Mean_Density (m-2)\nMacrocystis_pyrifera_Adult_StdDev\nMacrocystis_pyrifera_Adult_StdErr\nMacrocystis_pyrifera_Subadult_Mean_Density (m-2)\nMacrocystis_pyrifera_Subadult_StdDev\nMacrocystis_pyrifera_Subadult_StdErr\nPisaster_giganteus_Mean_Density (m-2)\nPisaster_giganteus_StdDev\nPisaster_giganteus_StdErr\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfm5Q_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfm5Q_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfm5Q/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfm5Q.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfm5Q&showErrors=false&email=", "CINP", "erdCinpKfm5Q"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Band Transect, 1983-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance and distribution of rare and clumped organisms not adequately sampled by quadrats. The summary data presented here represents the mean density per square meter. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nAplysia_californica_Mean_Density (m-2)\nAplysia_californica_StdDev\nAplysia_californica_StdErr\nCrassedoma_giganteum_Mean_Density (m-2)\nCrassedoma_giganteum_StdDev\nCrassedoma_giganteum_StdErr\nHaliotis_corrugata_Mean_Density (m-2)\nHaliotis_corrugata_StdDev\nHaliotis_corrugata_StdErr\nHaliotis_fulgens_Mean_Density (m-2)\nHaliotis_fulgens_StdDev\nHaliotis_fulgens_StdErr\nHaliotis_rufescens_Mean_Density (m-2)\nHaliotis_rufescens_StdDev\nHaliotis_rufescens_StdErr\nKelletia_kelletii_Mean_Density (m-2)\nKelletia_kelletii_StdDev\n... (31 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmBT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmBT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmBT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmBT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmBT&showErrors=false&email=", "CINP", "erdCinpKfmBT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmFT.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Fish Transect, 1985-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has measurements of the abundance of fish species. The original measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nChromis_punctipinnis_Adult (Number of Chromis punctipinnis Adult, per 100mX2mX30m transect)\nChromis_punctipinnis_Juvenile (Number of Chromis punctipinnis Juvenile, per 100mX2mX30m transect)\nDamalichthys_vacca_Adult (Number of Damalichthys vacca Adult, per 100mX2mX30m transect)\nDamalichthys_vacca_Juvenile (Number of Damalichthys vacca Juvenile, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Adult (Number of Embiotoca jacksoni Adult, per 100mX2mX30m transect)\nEmbiotoca_jacksoni_Juvenile (Number of Embiotoca jacksoni Juvenile, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Adult (Number of Embiotoca lateralis Adult, per 100mX2mX30m transect)\nEmbiotoca_lateralis_Juvenile (Number of Embiotoca lateralis Juvenile, per 100mX2mX30m transect)\nGirella_nigricans_Adult (Number of Girella nigricans Adult, per 100mX2mX30m transect)\nGirella_nigricans_Juvenile (Number of Girella nigricans Juvenile, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Female (Number of Halichoeres semicinctus Female, per 100mX2mX30m transect)\nHalichoeres_semicinctus_Male (Number of Halichoeres semicinctus Male, per 100mX2mX30m transect)\nHypsypops_rubicundus_Adult (Number of Hypsypops rubicundus Adult, per 100mX2mX30m transect)\nHypsypops_rubicundus_Juvenile (Number of Hypsypops rubicundus Juvenile, per 100mX2mX30m transect)\nOxyjulis_californica_Adult (Number of Oxyjulis californica Adult, per 100mX2mX30m transect)\nOxyjulis_californica_Juvenile (Number of Oxyjulis californica Juvenile, per 100mX2mX30m transect)\nParalabrax_clathratus_Adult (Number of Paralabrax clathratus Adult, per 100mX2mX30m transect)\nParalabrax_clathratus_Juvenile (Number of Paralabrax clathratus Juvenile, per 100mX2mX30m transect)\nSebastes_atrovirens_Adult (Number of Sebastes atrovirens Adult, per 100mX2mX30m transect)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmFT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmFT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmFT/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmFT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmFT&showErrors=false&email=", "CINP", "erdCinpKfmFT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmRPC.graph", "", "", "public", "Channel Islands, Kelp Forest Monitoring, Survey, Random Point Contact, 1982-2007", "This dataset from the Channel Islands National Park's Kelp Forest Monitoring Program has estimates of substrate composition and percent cover of selected algal and invertebrate taxa. The data summary data presented here represents the mean percent cover of the indicator species at the site. Sampling is conducted annually between the months of May-October, so the Time data in this file is July 1 of each year (a nominal value). The actual measurements were taken at various depths, so the Depth data in this file is the depth of the station's temperature logger, which is a typical depth.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nArticulated_Coralline_Algae_Mean (percent cover)\nArticulated_Coralline_Algae_StdDev\nArticulated_Coralline_Algae_StdErr\nAstrangia_lajollaensis_Mean (percent cover)\nAstrangia_lajollaensis_StdDev\nAstrangia_lajollaensis_StdErr\nBalanophyllia_elegans_Mean (percent cover)\nBalanophyllia_elegans_StdDev\nBalanophyllia_elegans_StdErr\nBalanus_spp_Mean (percent cover)\nBalanus_spp_StdDev\nBalanus_spp_StdErr\nBare_Substrate_Mean (percent cover)\nBare_Substrate_StdDev\nBare_Substrate_StdErr\nCobble_Mean (percent cover)\nCobble_StdDev\n... (100 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdCinpKfmRPC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdCinpKfmRPC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdCinpKfmRPC/index.json", "http://www.nps.gov/chis/naturescience/index.htm", "http://upwell.pfeg.noaa.gov/erddap/rss/erdCinpKfmRPC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdCinpKfmRPC&showErrors=false&email=", "CINP", "erdCinpKfmRPC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHHaulCatch.graph", "", "", "public", "CPS Trawl Life History Haul Catch Data", "Weight in kilograms for all species (identified to lowest taxonomic criteria) caught during SWFSC-FRD fishery independent surveys (including DEPM, ATM, SaKe) of coastal pelagic species using mid-water trawls (with most tows performed near the surface) at position and times listed. Additional information for a subset of individuals from some species can be found in either CPS Trawl Life History Length Frequency or the CPS Trawl Life History Specimen datasets.\n\ncdm_data_type = Point\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (Start Latitude, degrees_north)\nlongitude (Start Longitude, degrees_east)\nstop_latitude\nstop_longitude\ntime (Equilibrium Time, seconds since 1970-01-01T00:00:00Z)\nhaulback_time (Haul Back Time, seconds since 1970-01-01T00:00:00Z)\nsurface_temp (Surface Temperature, degree C)\nsurface_temp_method (Surface Temperature Method)\nship_spd_through_water (Ship Speed Through Water, knot)\nitis_tsn (ItisTSN)\nscientific_name\nsubsample_count\nsubsample_weight (kg)\nremaining_weight (kg)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHHaulCatch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHHaulCatch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHHaulCatch/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHHaulCatch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHHaulCatch&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHHaulCatch"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHLengthFrequency.graph", "", "", "public", "CPS Trawl Life History Length Frequency Data", "Length distribution of a subset of individuals from a species (mainly non-target) caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Measured lengths for indicated length type (fork, standard, total, or mantle) were grouped in 10 mm bins (identified by the midpoint of the length class) and counts are recorded by sex. Does not include species with individual lengths recorded in the CPS Trawl Life History Specimen dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nlength_class\nlength_type\nmale\nfemale\nunknown\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHLengthFrequency_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHLengthFrequency_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHLengthFrequency/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHLengthFrequency.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHLengthFrequency&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHLengthFrequency"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FRDCPSTrawlLHSpecimen.graph", "", "", "public", "CPS Trawl Life History Specimen Data", "Individual specimens measured (weight in grams and length in mm) and sexed from mainly targeted species caught during SWFSC-FRD fishery independent trawl surveys of coastal pelagic species. Individuals are categorized as random or non-random samples. Does not include species with length bins recorded in the CPS Trawl Life History Length Frequency dataset.\n\ncdm_data_type = Other\nVARIABLES:\ncruise\nship\nhaul (Haul Number)\ncollection\nlatitude (degrees_north)\nlongitude (degrees_east)\ntime (seconds since 1970-01-01T00:00:00Z)\nitis_tsn (ItisTSN)\nscientific_name\nspecimen_number\nsex\nis_random_sample\nweight (g)\nstandard_length (mm)\nfork_length (mm)\ntotal_length (mm)\nmantle_length (mm)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FRDCPSTrawlLHSpecimen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FRDCPSTrawlLHSpecimen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FRDCPSTrawlLHSpecimen/index.json", "https://swfsc.noaa.gov/FRD/", "http://upwell.pfeg.noaa.gov/erddap/rss/FRDCPSTrawlLHSpecimen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FRDCPSTrawlLHSpecimen&showErrors=false&email=", "NOAA-Fisheries/Southwest Fisheries Science Center", "FRDCPSTrawlLHSpecimen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-CRRF.graph", "", "", "public", "CRRF Weather Station: Palau: Koror: Ngeanges Island", "Since 2007, the Coral Reef Research Foundation (CRRF) has operated a Campbell Scientific automatic weather station (AWS) in Palau designed to measure meteorological/atmospheric conditions relevant to Koror State's Rock Islands Southern Lagoon, a World Heritage Site. With little flat land in the Rock Islands, the weather station is located on a 40-ft tower situated on a karst ridge on Ngeanges Island at 100 ft elevation, about 5.4 km (3.5 mi) from CRRF's study site at Jellyfish Lake. It measures a suite of atmospheric conditions for comparison with CRRF's temporary, floating weather station located on a tripod in Jellyfish Lake, and provides vital data for studying how local weather conditions and ENSO events affect the marine lake environment.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-CRRF: CRRF Weather Station: Palau: Koror: Ngeanges Island)\nair_temperature (Celsius)\nair_temperature_max (maximum air temperature, Celsius)\nair_temperature_max_time (maximum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_min (minimum air temperature, Celsius)\nair_temperature_min_time (minimum air temperature: observation time, seconds since 1970-01-01T00:00:00Z)\nair_temperature_std (air temperature standard deviation, Celsius)\nwind_speed (m/s)\nwind_speed_max (gust speed, m/s)\nwind_speed_max_time (gust speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_min (minimum wind speed, m/s)\nwind_speed_min_time (minimum wind speed: observation time, seconds since 1970-01-01T00:00:00Z)\nwind_speed_std (wind speed standard deviation, m/s)\nwind_from_direction (wind direction, degrees)\nwind_from_direction_std (wind direction standard deviation, degrees)\nrainfall_amount (total rainfall, mm)\n... (23 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-CRRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-CRRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-CRRF/index.json", "https://www.pacioos.hawaii.edu/weather/obs-koror/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-CRRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-CRRF&showErrors=false&email=", "Coral Reef Research Foundation (CRRF)", "AWS-CRRF"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ecocast_inputs.graph", "", "", "public", "Ecocast species weightings and environmental data dates", "The dataset contains the species weightings and the dates of the environmental data used for each EcoCast Map dataset (https://coastwatch.pfeg.noaa.gov/erddap/griddap/ecocast)\n\ncdm_data_type = Grid\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndate\nblueshark (Blue Shark Bycatch Model Weighting)\nbluesharkTRK (Blue Shark Tracking Model Weighting)\nsealions (California Sea Lions Tracking Model Weighting)\nleatherbacks (Leatherback Turtles Model Weighting)\nswordfish (Swordfish Model Weighting)\nsst_time (Date of Sea Surface Temperature Data, seconds since 1970-01-01T00:00:00Z)\nchl_time (Date of Chlorophyll-a Data, seconds since 1970-01-01T00:00:00Z)\neke_time (Date of Eddy Kinetic Energy Data, seconds since 1970-01-01T00:00:00Z)\nssh_time (Date of Sea Surface Height Data, seconds since 1970-01-01T00:00:00Z)\nwind_time (Date of Wind Data, seconds since 1970-01-01T00:00:00Z)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ecocast_inputs/index.json", "https://coastwatch.pfeg.noaa.gov/ecocast", "http://upwell.pfeg.noaa.gov/erddap/rss/ecocast_inputs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ecocast_inputs&showErrors=false&email=", "NOAA NMFS SWFSC ERD", "ecocast_inputs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiDiet.graph", "", "", "public", "Farallon Island Seabird Diet Summary", "Diet summary data for Cassin's Auklets, Common Murres, Pigeon Guillemots, and Rhinoceros Auklets from the Farallon Islands. Data presented are the proportion by number of the most important prey items for each species.\n\nThe proportions presented in this table are defined as the number of the specific prey items observed divided by the total number of identified prey items for that season. Data for the most important prey species are presented here with all other prey lumped together as \"other\". See the SEFI Research Plans and Protocols document under Research Tools for more information on how diet data is collected for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nRHAU_Rockfish (Rockfish in Rhinoceros Auklet's Diet, percent)\nRHAU_Anchovy (Anchovy in Rhinoceros Auklet's Diet, percent)\nRHAU_Saury (Saury in Rhinoceros Auklet's Diet, percent)\nRHAU_Other (Other in Rhinoceros Auklet's Diet, percent)\nCOMU_Rockfish (Rockfish in Common Murre's Diet, percent)\nCOMU_AnchovySardine (Anchovy&Sardine in Common Murre's Diet, percent)\nCOMU_Other (Other in Common Murre's Diet, percent)\nPIGU_Rockfish (Rockfish in Pigeon Guillemot's Diet, percent)\nPIGU_Sculpin (Sculpin in Pigeon Guillemot's Diet, percent)\nPIGU_Flatfish (Flatfish in Pigeon Guillemot's Diet, percent)\nPIGU_Other (Other in Pigeon Guillemot's Diet, percent)\nCAAU_Eupahusiids (Eupahusiids in Cassin's Auklet's Diet, percent)\nCAAU_Mysiids (Mysiids in Cassin's Auklet's Diet, percent)\nCAAU_Amphipods (Amphipods in Cassin's Auklet's Diet, percent)\nCAAU_Pices (Pices in Cassin's Auklet's Diet, percent)\nCAAU_Other (Other in Cassin's Auklet's Diet, percent)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiDiet/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=155&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiDiet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiDiet&showErrors=false&email=", "PRBO", "prboSefiDiet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPhen.graph", "", "", "public", "Farallon Island Seabird Phenology Summary", "Phenology (timing of breeding) summary data for Brandt's Cormorant, Cassin's Auklet, Common Murre, Pigeon Guillemot, and Rhinoceros Auklet breeding at the Farallon Islands. Data presented are annual mean laying date for the first or only egg laid along with the standard deviation.\n\nThe mean laying date is calculated from all sites where the exact laying date is known within the check period for that species (1-5 days). The mean lay dates are presented as julian dates (day of year) and the standard deviation is in days. See the SEFI Research Plans and Protocols document under Research Tools for more information on how lay dates are determined for each species.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC_mean (Brandt's Cormorant Mean, day_of_year)\nBRAC_sd (Brandt's Cormorant Standard Deviation, days)\nCAAU_mean (Cassin's Auklet Mean, day_of_year)\nCAAU_sd (Cassin's Auklet Standard Deviation, days)\nCOMU_mean (Common Murre Mean, day_of_year)\nCOMU_sd (Common Murre Standard Deviation, days)\nPIGU_mean (Pigeon Guillemot Mean, day_of_year)\nPIGU_sd (Pigeon Guillemot Standard Deviation, days)\nRHAU_mean (Rhinoceros Auklet Mean, day_of_year)\nRHAU_sd (Rhinoceros Auklet Standard Deviation, days)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPhen/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=156&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPhen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPhen&showErrors=false&email=", "PRBO", "prboSefiPhen"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiPop.graph", "", "", "public", "Farallon Island Seabird Population Summary", "Annual breeding population estimates for Brandt's Cormorant, Cassin's Auklet, Common Murre, Double-crested Cormorant, Pelagic Cormorant, Pigeon Guillemot, Tufted Puffin, and Western Gull at the Farallon Islands. Data presented are the number of breeding adults estimated for each season.\n\nBreeding population estimates for most species are based on either direct counts of animals or nests. Cassin's auklet estimates are based on the percent change in burrow/crevice density within a series of index plots. This relative change is then applied to the last full census from 1989 to arrive at a current population estimate. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\nNote: Cassin's auklet population estimate is for Southeast Farallon Island only.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nBRAC (Population of Brandt's Cormorant, count)\nCAAU (Population of Cassin's Auklet, count)\nCOMU (Population of Common Murre, count)\nDCCO (Population of Double-crested Cormorant, count)\nPECO (Population of Pelagic Cormorant, count)\nPIGU (Population of Pigeon Guillemot, count)\nTUPU (Population of Tufted Puffin, count)\nWEGU (Population of Western Gull, count)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiPop/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=154&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiPop.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiPop&showErrors=false&email=", "PRBO", "prboSefiPop"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/prboSefiProd.graph", "", "", "public", "Farallon Island Seabird Productivity Summary", "Annual mean productivity for Ashy Storm-petrel, Brandt's Cormorant, Cassin's Auklet, Common Murre, Pelagic Cormorant, Pigeon Guillemot, Rhinoceros Auklet and Western Gull breeding on the Farallon Islands. Data presented are the mean number of chicks fledged per breeding pair along with the standard deviation.\n\nMean annual productivity (number of chicks fledged per breeding pair) is determined through regular checks of breeding sites and includes data from all breeding attempts within that season. See the SEFI Research Plans and Protocols document under Research Tools for more information on how these estimates were determined.\n\ncdm_data_type = Other\nVARIABLES:\nyear\nASSP_rs (Ashy Storm-petrel Chicks per Breeding Pair, mean)\nASSP_sd (Ashy Storm-petrel Standard Deviation)\nBRAC_rs (Brandt's Cormorant Chicks per Breeding Pair, mean)\nBRAC_sd (Brandt's Cormorant Standard Deviation)\nCAAU_rs (Cassin's Auklet Chicks per Breeding Pair, mean)\nCAAU_sd (Cassin's Auklet Standard Deviation)\nCOMU_rs (Common Murre Chicks per Breeding Pair, mean)\nCOMU_sd (Common Murre Standard Deviation)\nPIGU_rs (Pigeon Guillemot Chicks per Breeding Pair, mean)\nPIGU_sd (Pigeon Guillemot Standard Deviation)\nPECO_rs (Pelagic Cormorant Chicks per Breeding Pair, mean)\nPECO_sd (Pelagic Cormorant Standard Deviation)\nRHAU_rs (Rhinoceros Auklet Chicks per Breeding Pair, mean)\nRHAU_sd (Rhinoceros Auklet Standard Deviation)\nWEGU_rs (Western Gull Chicks per Breeding Pair, mean)\nWEGU_sd (Western Gull Standard Deviation)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/prboSefiProd/index.json", "http://data.prbo.org/cadc2/index.php?mact=LinkedArticles,cntnt01,detail,0&cntnt01article_id=153&cntnt01returnid=150", "http://upwell.pfeg.noaa.gov/erddap/rss/prboSefiProd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=prboSefiProd&showErrors=false&email=", "PRBO", "prboSefiProd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_1000genomes.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_1000genomes/", "public", "File Names from the AWS S3 1000genomes Bucket: 1000 Genomes", "This dataset has file information from the AWS S3 1000genomes bucket at https://1000genomes.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 1000 Genomes\nName2: http://www.internationalgenome.org/formats\nDescription: The 1000 Genomes Project is an international collaboration which has established the most detailed catalogue of human genetic variation, including SNPs, structural variants, and their haplotype context. The final phase of the project sequenced more than 2500 individuals from 26 different populations around the world and produced an integrated set of phased haplotypes with more than 80 million variants for these individuals.\n\nDocumentation: https://docs.opendata.aws/1000genomes/readme.html\nContact: http://www.internationalgenome.org/contact\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_1000genomes/index.json", "https://registry.opendata.aws/1000-genomes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_1000genomes.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_1000genomes&showErrors=false&email=", "Amazon Web Services", "awsS3Files_1000genomes"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_3kricegenome.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_3kricegenome/", "public", "File Names from the AWS S3 3kricegenome Bucket: 3000 Rice Genomes Project", "This dataset has file information from the AWS S3 3kricegenome bucket at https://3kricegenome.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: 3000 Rice Genomes Project\nName2: http://s3.amazonaws.com/3kricegenome/README-snp_pipeline.txt\nDescription: The 3000 Rice Genome Project is an international effort to sequence the genomes of 3,024 rice varieties from 89 countries.\n\nDocumentation: https://docs.opendata.aws/3kricegenome/readme.html\nContact: http://iric.irri.org/contact-us\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_3kricegenome/index.json", "https://registry.opendata.aws/3kricegenome/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_3kricegenome.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_3kricegenome&showErrors=false&email=", "Amazon Web Services", "awsS3Files_3kricegenome"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aft_vbi_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aft_vbi_pds/", "public", "File Names from the AWS S3 aft-vbi-pds Bucket: Amazon Bin Image Dataset: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.", "This dataset has file information from the AWS S3 aft-vbi-pds bucket at https://aft-vbi-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Bin Image Dataset\nName2: Over 500,000 bin JPEG images and corresponding JSON metadata files describing items in bins in Amazon Fulfillment Centers.\nDescription: The Amazon Bin Image Dataset contains over 500,000 images and metadata from bins of a pod in an operating Amazon Fulfillment Center. The bin images in this dataset are captured as robot units carry pods as part of normal Amazon Fulfillment Center operations.\n\nDocumentation: https://docs.opendata.aws/aft-vbi-pds/readme.html\nContact: amazon-bin-images@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aft_vbi_pds/index.json", "https://registry.opendata.aws/amazon-bin-imagery/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aft_vbi_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aft_vbi_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aft_vbi_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory/", "public", "File Names from the AWS S3 allen-brain-observatory Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: Project data files in a public bucket", "This dataset has file information from the AWS S3 allen-brain-observatory bucket at https://allen-brain-observatory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: Project data files in a public bucket\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_allen_brain_observatory_templates.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_allen_brain_observatory_templates/", "public", "File Names from the AWS S3 allen-brain-observatory-templates Bucket: Allen Brain Observatory - Visual Coding AWS Public Data Set: SageMaker launch template with s3fs bucket mounts", "This dataset has file information from the AWS S3 allen-brain-observatory-templates bucket at https://allen-brain-observatory-templates.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Allen Brain Observatory - Visual Coding AWS Public Data Set\nName2: SageMaker launch template with s3fs bucket mounts\nDescription: The Allen Brain Observatory \u2013 Visual Coding is the first standardized in vivo survey of physiological activity in the mouse visual cortex, featuring representations of visually evoked calcium responses from GCaMP6-expressing neurons in selected cortical layers, visual areas, and Cre lines.\n\nDocumentation: https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-%E2%80%93-Visual-Coding-on-AWS\nContact: awspublicdataset@alleninstitute.org\nManagedBy: [Allen Institute](http://www.alleninstitute.org/)\nUpdateFrequency: Annually\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_allen_brain_observatory_templates/index.json", "https://registry.opendata.aws/allen-brain-observatory/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_allen_brain_observatory_templates.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_allen_brain_observatory_templates&showErrors=false&email=", "Amazon Web Services", "awsS3Files_allen_brain_observatory_templates"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_amazon_reviews_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_amazon_reviews_pds/", "public", "File Names from the AWS S3 amazon-reviews-pds Bucket: Amazon Customer Reviews Dataset: TSV files of reviews", "This dataset has file information from the AWS S3 amazon-reviews-pds bucket at https://amazon-reviews-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Amazon Customer Reviews Dataset\nName2: TSV files of reviews\nDescription: Amazon Customer Reviews (a.k.a. Product Reviews) is one of Amazon\u2019s iconic products. In a period of over two decades since the first review in 1995, millions of Amazon customers have contributed over a hundred million reviews to express opinions and describe their experiences regarding products on the Amazon.com website. Over 130+ million customer reviews are available to researchers as part of this dataset.\n\nDocumentation: https://s3.amazonaws.com/amazon-reviews-pds/readme.html\nContact: customer-review-dataset@amazon.com\nManagedBy: [Amazon](https://www.amazon.com/)\nUpdateFrequency: Not defined\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_amazon_reviews_pds/index.json", "https://registry.opendata.aws/amazon-reviews/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_amazon_reviews_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_amazon_reviews_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_amazon_reviews_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_avg_kitti.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_avg_kitti/", "public", "File Names from the AWS S3 avg-kitti Bucket: KITTI Vision Benchmark Suite", "This dataset has file information from the AWS S3 avg-kitti bucket at https://avg-kitti.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: KITTI Vision Benchmark Suite\nName2: http://www.cvlibs.net/datasets/kitti/raw_data.php\nDescription: Dataset and benchmarks for computer vision research in the context of autonomous driving. The dataset has been recorded in and around the city of Karlsruhe, Germany using the mobile platform AnnieWay (VW station wagon) which has been equipped with several RGB and monochrome cameras, a Velodyne HDL 64 laser scanner as well as an accurate RTK corrected GPS/IMU localization unit. The dataset has been created for computer vision and machine learning research on stereo, optical flow, visual odometry, semantic segmentation, semantic instance segmentation, road segmentation, single image depth prediction, depth map completion, 2D and 3D object detection and object tracking. In addition, several raw data recordings are provided. The datasets are captured by driving around the mid-size city of Karlsruhe, in rural areas and on highways. Up to 15 cars and 30 pedestrians are visible per image.\n\nDocumentation: http://www.cvlibs.net/datasets/kitti/\nContact: http://www.cvlibs.net/people.php\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_avg_kitti/index.json", "https://registry.opendata.aws/kitti/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_avg_kitti.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_avg_kitti&showErrors=false&email=", "Amazon Web Services", "awsS3Files_avg_kitti"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/", "public", "File Names from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd Bucket: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)", "This dataset has file information from the AWS S3 aws-earth-mo-atmospheric-mogreps-g-prd bucket at https://aws-earth-mo-atmospheric-mogreps-g-prd.s3.eu-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: UK Met Office Atmospheric Deterministic and Probabilistic Forecasts\nName2: [Met Office Global and Regional Ensemble Prediction System (Global) - MOGREPS-G](https://www.metoffice.gov.uk/binaries/content/assets/metofficegovuk/pdf/data/mogreps-g-parameters-may-2019.pdf)\nDescription: Meteorological data reusers now have an exciting opportunity to sample, experiment and evaluate Met Office atmospheric model data, whilst also experiencing a transformative method of requesting data via Restful APIs on AWS. All ahead of Met Office\u2019s own operationally supported API platform that will be launched in late 2019.\n\nDocumentation: https://github.com/MetOffice/aws-earth-examples\nContact: https://www.metoffice.gov.uk/about-us/contact\nUpdateFrequency: Daily (with 24 hour delay)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd/index.json", "https://registry.opendata.aws/uk-met-office/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_earth_mo_atmospheric_mogreps_g_prd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_aws_gsod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_aws_gsod/", "public", "File Names from the AWS S3 aws-gsod Bucket: Global Surface Summary of Day: Measurements and metadata", "This dataset has file information from the AWS S3 aws-gsod bucket at https://aws-gsod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Surface Summary of Day\nName2: Measurements and metadata\nDescription: GSOD is a collection of daily weather measurements (temperature, wind speed, humidity, pressure, and more) from 9000+ weather stations around the world.\n\nDocumentation: https://www.ncdc.noaa.gov/\nContact: https://www.ncdc.noaa.gov/\nUpdateFrequency: Currently updated infrequently. Last updated on September 13, 2016.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_aws_gsod/index.json", "https://registry.opendata.aws/noaa-gsod/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_aws_gsod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_aws_gsod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_aws_gsod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_broad_references.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_broad_references/", "public", "File Names from the AWS S3 broad-references Bucket: Broad Genome References: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.", "This dataset has file information from the AWS S3 broad-references bucket at https://broad-references.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Broad Genome References\nName2: This dataset includes two human genome references assembled by the Genome Reference Consortium: Hg19 and Hg38.\nDescription: Broad maintained human genome reference builds hg19/hg38 and decoy references.\n\nDocumentation: https://s3.amazonaws.com/broad-references/broad-references-readme.html\nContact: hensonc@broadinstitute.org\nManagedBy: Broad Institute\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_broad_references/index.json", "https://registry.opendata.aws/broad-references/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_broad_references.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_broad_references&showErrors=false&email=", "Amazon Web Services", "awsS3Files_broad_references"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cbers_meta_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cbers_meta_pds/", "public", "File Names from the AWS S3 cbers-meta-pds Bucket: CBERS on AWS: CBERS metadata (Quicklooks, metadata)", "This dataset has file information from the AWS S3 cbers-meta-pds bucket at https://cbers-meta-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CBERS on AWS\nName2: CBERS metadata (Quicklooks, metadata)\nDescription: This project creates a S3 repository with imagery acquired by the China-Brazil Earth Resources Satellite (CBERS). The image files are recorded and processed by Instituto Nacional de Pesquisa Espaciais (INPE) and are converted to Cloud Optimized Geotiff format in order to optimize its use for cloud based applications. The repository contains all CBERS-4 MUX, AWFI, PAN5M and PAN10M scenes acquired since the start of the satellite mission and is daily updated with new scenes.\n\nDocumentation: https://github.com/fredliporace/cbers-on-aws\nContact: https://lists.osgeo.org/mailman/listinfo/cbers-pds\nManagedBy: [AMS Kepler](https://amskepler.com/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cbers_meta_pds/index.json", "https://registry.opendata.aws/cbers/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cbers_meta_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cbers_meta_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cbers_meta_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cgiardata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cgiardata/", "public", "File Names from the AWS S3 cgiardata Bucket: CCAFS-Climate Data: ARC GRID, and ARC ASCII format compressed", "This dataset has file information from the AWS S3 cgiardata bucket at https://cgiardata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: CCAFS-Climate Data\nName2: ARC GRID, and ARC ASCII format compressed\nDescription: High resolution climate data to help assess the impacts of climate change primarily on agriculture. These open access datasets of climate projections will help researchers make climate change impact assessments.\n\nDocumentation: http://www.ccafs-climate.org\nContact: http://www.ccafs-climate.org/contact/\nUpdateFrequency: Every three months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cgiardata/index.json", "https://registry.opendata.aws/cgiardata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cgiardata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cgiardata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cgiardata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_commoncrawl.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_commoncrawl/", "public", "File Names from the AWS S3 commoncrawl Bucket: Common Crawl: Crawl data (WARC and ARC format)", "This dataset has file information from the AWS S3 commoncrawl bucket at https://commoncrawl.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Common Crawl\nName2: Crawl data (WARC and ARC format)\nDescription: A corpus of web crawl data composed of over 25 billion web pages.\n\nDocumentation: http://commoncrawl.org/the-data/get-started/\nContact: http://commoncrawl.org/connect/contact-us/\nManagedBy: [Common Crawl](http://commoncrawl.org/)\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_commoncrawl/index.json", "https://registry.opendata.aws/commoncrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_commoncrawl.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_commoncrawl&showErrors=false&email=", "Amazon Web Services", "awsS3Files_commoncrawl"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cornell_eas_data_lake.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cornell_eas_data_lake/", "public", "File Names from the AWS S3 cornell-eas-data-lake Bucket: Cornell EAS Data Lake: Cornell EAS Data Lake", "This dataset has file information from the AWS S3 cornell-eas-data-lake bucket at https://cornell-eas-data-lake.s3.us-east-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cornell EAS Data Lake\nName2: Cornell EAS Data Lake\nDescription: Earth & Atmospheric Sciences at Cornell University has created a public data lake of climate data. The data is stored in columnar storage formats (ORC) to make it straightforward to query using standard tools like Amazon Athena or Apache Spark. The data itself is originally intended to be used for building decision support tools for farmers and digital agriculture. The first dataset is the historical NDFD / NDGD data distributed by NCEP / NOAA / NWS. The NDFD (National Digital Forecast Database) and NDGD (National Digital Guidance Database) contain gridded forecasts and observations at 2.5km resolution for the Contiguous United States (CONUS). There are also 5km grids for several smaller US regions and non-continguous territories, such as Hawaii, Guam, Puerto Rico and Alaska. NOAA distributes archives of the NDFD/NDGD via its NOAA Operational Model Archive and Distribution System (NOMADS) in Grib2 format. The data has been converted to ORC to optimize storage space and to, more importantly, simplify data access via standard data analytics tools.\n\nDocumentation: https://datalake.eas.cornell.edu/\nContact: digitalag@cornell.edu\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cornell_eas_data_lake/index.json", "https://registry.opendata.aws/cornell-eas-data-lake/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cornell_eas_data_lake.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cornell_eas_data_lake&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cornell_eas_data_lake"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cse_cic_ids2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cse_cic_ids2018/", "public", "File Names from the AWS S3 cse-cic-ids2018 Bucket: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018): Network traffic and log files", "This dataset has file information from the AWS S3 cse-cic-ids2018 bucket at https://cse-cic-ids2018.s3.ca-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018)\nName2: Network traffic and log files\nDescription: This dataset is the result of a collaborative project between the Communications Security Establishment (CSE) and The Canadian Institute for Cybersecurity (CIC) that use the notion of profiles to generate cybersecurity dataset in a systematic manner. It incluides a detailed description of intrusions along with abstract distribution models for applications, protocols, or lower level network entities. The dataset includes seven different attack scenarios, namely Brute-force, Heartbleed, Botnet, DoS, DDoS, Web attacks, and infiltration of the network from inside. The attacking infrastructure includes 50 machines and the victim organization has 5 departments includes 420 PCs and 30 servers. This dataset includes the network traffic and log files of each machine from the victim side, along with 80 network traffic features extracted from captured traffic using CICFlowMeter-V3. For more information on the creation of this dataset, see this paper by researchers at the Canadian Institute for Cybersecurity (CIC) and the University of New Brunswick (UNB): [Toward Generating a New Intrusion Detection Dataset and Intrusion Traffic Characterization](http://www.scitepress.org/Papers/2018/66398/66398.pdf).\n\nDocumentation: http://www.unb.ca/cic/datasets/ids-2018.html\nContact: CIC@unb.ca\nUpdateFrequency: Annualy\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cse_cic_ids2018/index.json", "https://registry.opendata.aws/cse-cic-ids2018/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cse_cic_ids2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cse_cic_ids2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cse_cic_ids2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_cytodata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_cytodata/", "public", "File Names from the AWS S3 cytodata Bucket: Cell Painting Image Collection: Images, extracted features and aggregated profiles are available as a S3 bucket", "This dataset has file information from the AWS S3 cytodata bucket at https://cytodata.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Cell Painting Image Collection\nName2: Images, extracted features and aggregated profiles are available as a S3 bucket\nDescription: The Cell Painting Image Collection is a collection of freely downloadable microscopy image sets. Cell Painting is an unbiased high throughput imaging assay used to analyze perturbations in cell models. In addition to the images themselves, each set includes a description of the biological application and some type of \"ground truth\" (expected results). Researchers are encouraged to use these image sets as reference points when developing, testing, and publishing new image analysis algorithms for the life sciences. We hope that the this data set will lead to a better understanding of which methods are best for various biological image analysis applications.\n\nDocumentation: https://github.com/cytodata/cytodata-hackathon-2018\nContact: Post on https://forum.image.sc/ and tag with \"cellpainting\"\nUpdateFrequency: irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_cytodata/index.json", "https://registry.opendata.aws/cell-painting-image-collection/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_cytodata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_cytodata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_cytodata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_czb_tabula_muris.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_czb_tabula_muris/", "public", "File Names from the AWS S3 czb-tabula-muris Bucket: Tabula Muris", "This dataset has file information from the AWS S3 czb-tabula-muris bucket at https://czb-tabula-muris.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Tabula Muris\nName2: https://github.com/czbiohub/tabula-muris\nDescription: Tabula Muris is a compendium of single cell transcriptomic data from the model organism *Mus musculus* comprising more than 100,000 cells from 20 organs and tissues. These data represent a new resource for cell biology, reveal gene expression in poorly characterized cell populations, and allow for direct and controlled comparison of gene expression in cell types shared between tissues, such as T-lymphocytes and endothelial cells from different anatomical locations. Two distinct technical approaches were used for most organs: one approach, microfluidic droplet-based 3\u2019-end counting, enabled the survey of thousands of cells at relatively low coverage, while the other, FACS-based full length transcript analysis, enabled characterization of cell types with high sensitivity and coverage. The cumulative data provide the foundation for an atlas of transcriptomic cell biology. See: https://www.nature.com/articles/s41586-018-0590-4\n\nDocumentation: https://github.com/czbiohub/tabula-muris/blob/master/tabula-muris-on-aws.md\nContact: If you have questions about the data, you can create an Issue at https://github.com/czbiohub/tabula-muris.\nManagedBy: [Chan Zuckerberg Biohub](https://www.czbiohub.org/)\nUpdateFrequency: This is the final version of the dataset, it will not be updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_czb_tabula_muris/index.json", "https://registry.opendata.aws/tabula-muris/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_czb_tabula_muris.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_czb_tabula_muris&showErrors=false&email=", "Amazon Web Services", "awsS3Files_czb_tabula_muris"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataforgood_fb_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataforgood_fb_data/", "public", "File Names from the AWS S3 dataforgood-fb-data Bucket: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook: CSV and Cloud-optimized GeoTIFF files", "This dataset has file information from the AWS S3 dataforgood-fb-data bucket at https://dataforgood-fb-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: High Resolution Population Density Maps + Demographic Estimates by CIESIN and Facebook\nName2: CSV and Cloud-optimized GeoTIFF files\nDescription: Population data for a selection of countries, allocated to 1 arcsecond blocks and provided in a combination of CSV and Cloud-optimized GeoTIFF files. This refines [CIESIN\u2019s Gridded Population of the World](https://sedac.ciesin.columbia.edu/data/collection/gpw-v4) using machine learning models on high-resolution worldwide Digital Globe satellite imagery. CIESIN population counts aggregated from worldwide census data are allocated to blocks where imagery appears to contain buildings.\n\nDocumentation: [Project overview](https://dataforgood.fb.com/population-density-maps-documentation/) and [dataset description](https://docs.opendata.aws/dataforgood-fb-data/readme.html)\nContact: disastermaps@fb.com\nManagedBy: |\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataforgood_fb_data/index.json", "https://registry.opendata.aws/dataforgood-fb-hrsl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataforgood_fb_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataforgood_fb_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataforgood_fb_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_datasets_elasticmapreduce_ngrams_books.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_datasets_elasticmapreduce_ngrams_books/", "public", "File Names from the AWS S3 datasets.elasticmapreduce Bucket with prefix=ngrams/books/: Google Books Ngrams: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.", "This dataset has file information from the AWS S3 datasets.elasticmapreduce bucket at https://datasets.elasticmapreduce.s3.us-east-1.amazonaws.com/ with prefix=ngrams/books/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Google Books Ngrams\nName2: A data set containing Google Books n-gram corpora in a Hadoop friendly file format.\nDescription: N-grams are fixed size tuples of items. In this case the items are words extracted from the Google Books corpus. The n specifies the number of elements in the tuple, so a 5-gram contains five words or characters. The n-grams in this dataset were produced by passing a sliding window of the text of books and outputting a record for each new token.\n\nDocumentation: http://books.google.com/ngrams/\nContact: https://books.google.com/ngrams\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_datasets_elasticmapreduce_ngrams_books/index.json", "https://registry.opendata.aws/google-ngrams/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_datasets_elasticmapreduce_ngrams_books.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_datasets_elasticmapreduce_ngrams_books&showErrors=false&email=", "Amazon Web Services", "awsS3Files_datasets_elasticmapreduce_ngrams_books"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dataworld_linked_acs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dataworld_linked_acs/", "public", "File Names from the AWS S3 dataworld-linked-acs Bucket: U.S. Census ACS PUMS: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.", "This dataset has file information from the AWS S3 dataworld-linked-acs bucket at https://dataworld-linked-acs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: U.S. Census ACS PUMS\nName2: PUMS data in Turtle - Terse RDF Triple Language (.ttl) format along with ontologies and other complementary data.\nDescription: U.S. Census Bureau American Community Survey (ACS) Public Use Microdata Sample (PUMS) available in a linked data format using the Resource Description Framework (RDF) data model.\n\nDocumentation: https://docs.data.world/uscensus/#american-community-survey-linked-open-data\nContact: https://docs.data.world/uscensus/#60---contact\nUpdateFrequency: Yearly, after ACS 1-year PUMS raw data are released\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dataworld_linked_acs/index.json", "https://registry.opendata.aws/census-dataworld-pums/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dataworld_linked_acs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dataworld_linked_acs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dataworld_linked_acs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2015.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2015/", "public", "File Names from the AWS S3 dc-lidar-2015 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML, SHP", "This dataset has file information from the AWS S3 dc-lidar-2015 bucket at https://dc-lidar-2015.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML, SHP\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2015/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2015.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2015&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2015"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_dc_lidar_2018.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_dc_lidar_2018/", "public", "File Names from the AWS S3 dc-lidar-2018 Bucket: District of Columbia - Classified Point Cloud LiDAR: LAS, XML", "This dataset has file information from the AWS S3 dc-lidar-2018 bucket at https://dc-lidar-2018.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: District of Columbia - Classified Point Cloud LiDAR\nName2: LAS, XML\nDeprecated: True\nDescription: Please see [here](https://registry.opendata.aws/dc-lidar) for the lates content about this dataset. LiDAR point cloud data for Washington, DC is available for anyone to use on Amazon S3. This dataset, managed by the Office of the Chief Technology Officer (OCTO), through the direction of the District of Columbia GIS program, contains tiled point cloud data for the entire District along with associated metadata.\n\nDocumentation: [2015 data](https://docs.opendata.aws/dc-lidar-2015/readme.html), [2018 data](https://docs.opendata.aws/dc-lidar-2018/readme.html)\nContact: dcgis@dc.gov\nUpdateFrequency: The most recent data is from 2018 and 2015 data is available as well. A new data acquisition is planned for 2020.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_dc_lidar_2018/index.json", "https://registry.opendata.aws/dc-lidar-2015/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_dc_lidar_2018.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_dc_lidar_2018&showErrors=false&email=", "Amazon Web Services", "awsS3Files_dc_lidar_2018"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_eurex_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_eurex_pds/", "public", "File Names from the AWS S3 deutsche-boerse-eurex-pds Bucket: Deutsche B\u00f6rse Public Dataset: Eurex PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-eurex-pds bucket at https://deutsche-boerse-eurex-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Eurex PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_eurex_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_eurex_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_eurex_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_eurex_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_deutsche_boerse_xetra_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_deutsche_boerse_xetra_pds/", "public", "File Names from the AWS S3 deutsche-boerse-xetra-pds Bucket: Deutsche B\u00f6rse Public Dataset: Xetra PDS Files", "This dataset has file information from the AWS S3 deutsche-boerse-xetra-pds bucket at https://deutsche-boerse-xetra-pds.s3.eu-central-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Deutsche B\u00f6rse Public Dataset\nName2: Xetra PDS Files\nDescription: The Deutsche B\u00f6rse Public Data Set consists of trade data aggregated to one minute intervals from the Eurex and Xetra trading systems. It provides the initial price, lowest price, highest price, final price and volume for every minute of the trading day, and for every tradeable security. If you need higher resolution data, including untraded price movements, please refer to our historical market data product [here](http://www.eurexchange.com/exchange-en/market-data/historical-data). Also, be sure to check out our [developer's portal](https://console.developer.deutsche-boerse.com/).\n\nDocumentation: https://github.com/Deutsche-Boerse/dbg-pds\nContact: pds@deutsche-boerse.com\nUpdateFrequency: The data is updated every minute during trading hours.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_deutsche_boerse_xetra_pds/index.json", "https://registry.opendata.aws/deutsche-boerse-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_deutsche_boerse_xetra_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_deutsche_boerse_xetra_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_deutsche_boerse_xetra_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ebirdst_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ebirdst_data/", "public", "File Names from the AWS S3 ebirdst-data Bucket: eBird Status and Trends Model Results: Species results files", "This dataset has file information from the AWS S3 ebirdst-data bucket at https://ebirdst-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: eBird Status and Trends Model Results\nName2: Species results files\nDescription: The eBird Status and Trends project generates estimates of bird occurrence and abundance at a high spatiotemporal resolution. This dataset represents the primary modeled results from the analysis workflow and are designed for further analysis, synthesis, visualization, and exploration.\n\nDocumentation: https://cornelllabofornithology.github.io/ebirdst/articles/ebirdst-introduction.html\nContact: https://help.ebird.org/customer/en/portal/emails/new\nManagedBy: [Cornell Lab of Ornithology](https://www.birds.cornell.edu/home/)\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ebirdst_data/index.json", "https://registry.opendata.aws/ebirdst/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ebirdst_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ebirdst_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ebirdst_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_elevation_tiles_prod.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_elevation_tiles_prod/", "public", "File Names from the AWS S3 elevation-tiles-prod Bucket: Terrain Tiles: Gridded elevation tiles", "This dataset has file information from the AWS S3 elevation-tiles-prod bucket at https://elevation-tiles-prod.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Terrain Tiles\nName2: Gridded elevation tiles\nDescription: A global dataset providing bare-earth terrain heights, tiled for easy usage and provided on S3.\n\nDocumentation: https://mapzen.com/documentation/terrain-tiles/\nContact: https://github.com/tilezen/joerd/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_elevation_tiles_prod/index.json", "https://registry.opendata.aws/terrain-tiles/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_elevation_tiles_prod.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_elevation_tiles_prod&showErrors=false&email=", "Amazon Web Services", "awsS3Files_elevation_tiles_prod"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_encode_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_encode_public/", "public", "File Names from the AWS S3 encode-public Bucket: Encyclopedia of DNA Elements (ENCODE): Released and archived ENCODE data", "This dataset has file information from the AWS S3 encode-public bucket at https://encode-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Encyclopedia of DNA Elements (ENCODE)\nName2: Released and archived ENCODE data\nDescription: The Encyclopedia of DNA Elements (ENCODE) Consortium is an international collaboration of research groups funded by the National Human Genome Research Institute (NHGRI). The goal of ENCODE is to build a comprehensive parts list of functional elements in the human genome, including elements that act at the protein and RNA levels, and regulatory elements that control cells and circumstances in which a gene is active. ENCODE investigators employ a variety of assays and methods to identify functional elements. The discovery and annotation of gene elements is accomplished primarily by sequencing a diverse range of RNA sources, comparative genomics, integrative bioinformatic methods, and human curation. Regulatory elements are typically investigated through DNA hypersensitivity assays, assays of DNA methylation, and immunoprecipitation (IP) of proteins that interact with DNA and RNA, i.e., modified histones, transcription factors, chromatin regulators, and RNA-binding proteins, followed by sequencing.\n\nDocumentation: https://www.encodeproject.org\nContact: encode-help@lists.stanford.edu\nManagedBy: ENCODE Data Coordinating Center\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_encode_public/index.json", "https://registry.opendata.aws/encode-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_encode_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_encode_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_encode_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_epa_rsei_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_epa_rsei_pds/", "public", "File Names from the AWS S3 epa-rsei-pds Bucket: EPA Risk-Screening Environmental Indicators: RSEI Microdata", "This dataset has file information from the AWS S3 epa-rsei-pds bucket at https://epa-rsei-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: EPA Risk-Screening Environmental Indicators\nName2: RSEI Microdata\nDescription: Detailed air model results from EPA\u2019s Risk-Screening Environmental Indicators (RSEI) model.\n\nDocumentation: https://docs.opendata.aws/epa-rsei-pds/readme.html\nContact: https://www.epa.gov/rsei/forms/contact-us-about-rsei-model\nUpdateFrequency: Updated infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_epa_rsei_pds/index.json", "https://registry.opendata.aws/epa-rsei-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_epa_rsei_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_epa_rsei_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_epa_rsei_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_era5_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_era5_pds/", "public", "File Names from the AWS S3 era5-pds Bucket: ECMWF ERA5 Reanalysis: ERA5 Reanalysis NetCDF 4 files", "This dataset has file information from the AWS S3 era5-pds bucket at https://era5-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ECMWF ERA5 Reanalysis\nName2: ERA5 Reanalysis NetCDF 4 files\nDescription: ERA5 is the fifth generation of ECMWF atmospheric reanalyses of the global climate, and the first reanalysis produced as an operational service. It utilizes the best available observation data from satellites and in-situ stations, which are assimilated and processed using ECMWF's Integrated Forecast System (IFS) Cycle 41r2. The dataset provides all essential atmospheric meteorological parameters like, but not limited to, air temperature, pressure and wind at different altitudes, along with surface parameters like rainfall, soil moisture content and sea parameters like sea-surface temperature and wave height. ERA5 provides data at a considerably higher spatial and temporal resolution than its legacy counterpart ERA-Interim. ERA5 consists of high resolution version with 31 km horizontal resolution, and a reduced resolution ensemble version with 10 members. It is currently available since 2008, but will be continuously extended backwards, first until 1979 and then to 1950. Learn more about ERA5 in Jon Olauson's paper [ERA5: The new champion of wind power modelling?](https://www.researchgate.net/publication/320084119_ERA5_The_new_champion_of_wind_power_modelling).\n\nDocumentation: https://github.com/planet-os/notebooks/blob/master/aws/era5-pds.md\nContact: datahub@intertrust.com\nUpdateFrequency: Monthly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_era5_pds/index.json", "https://registry.opendata.aws/ecmwf-era5/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_era5_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_era5_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_era5_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_coco.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_coco/", "public", "File Names from the AWS S3 fast-ai-coco Bucket: COCO - Common Objects in Context - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-coco bucket at https://fast-ai-coco.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: COCO - Common Objects in Context - fast.ai datasets\nName2: Datasets\nDescription: COCO is a large-scale object detection, segmentation, and captioning dataset. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. If you use this dataset in your research please cite arXiv:1405.0312 [cs.CV].\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_coco/index.json", "https://registry.opendata.aws/fast-ai-coco/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_coco.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_coco&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_coco"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imageclas.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imageclas/", "public", "File Names from the AWS S3 fast-ai-imageclas Bucket: Image classification - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imageclas bucket at https://fast-ai-imageclas.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image classification - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image classification research, including CIFAR 10 and 100, Caltech 101, MNIST, Food-101, Oxford-102-Flowers, Oxford-IIIT-Pets, and Stanford-Cars. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imageclas/index.json", "https://registry.opendata.aws/fast-ai-imageclas/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imageclas.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imageclas&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imageclas"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_imagelocal.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_imagelocal/", "public", "File Names from the AWS S3 fast-ai-imagelocal Bucket: Image localization - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-imagelocal bucket at https://fast-ai-imagelocal.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Image localization - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for image localization research, including Camvid and PASCAL VOC (2007 and 2012). This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_imagelocal/index.json", "https://registry.opendata.aws/fast-ai-imagelocal/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_imagelocal.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_imagelocal&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_imagelocal"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fast_ai_nlp.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fast_ai_nlp/", "public", "File Names from the AWS S3 fast-ai-nlp Bucket: NLP - fast.ai datasets: Datasets", "This dataset has file information from the AWS S3 fast-ai-nlp bucket at https://fast-ai-nlp.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NLP - fast.ai datasets\nName2: Datasets\nDescription: Some of the most important datasets for NLP, with a focus on classification, including IMDb, AG-News, Amazon Reviews (polarity and full), Yelp Reviews (polarity and full), Dbpedia, Sogou News (Pinyin), Yahoo Answers, Wikitext 2 and Wikitext 103, and ACL-2010 French-English 10^9 corpus. This is part of the fast.ai datasets collection hosted by AWS for convenience of fast.ai students. See documentation link for citation and license details for each dataset.\n\nDocumentation: http://course.fast.ai/datasets\nContact: info@fast.ai\nManagedBy: [fast.ai](http://www.fast.ai/)\nUpdateFrequency: As required\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fast_ai_nlp/index.json", "https://registry.opendata.aws/fast-ai-nlp/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fast_ai_nlp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fast_ai_nlp&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fast_ai_nlp"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib Bucket: HIRLAM Weather Model: Pressure GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-pressure-grib bucket at https://fmi-opendata-rcrhirlam-pressure-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Pressure GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_pressure_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_pressure_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_pressure_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/", "public", "File Names from the AWS S3 fmi-opendata-rcrhirlam-surface-grib Bucket: HIRLAM Weather Model: Surface GRIB files", "This dataset has file information from the AWS S3 fmi-opendata-rcrhirlam-surface-grib bucket at https://fmi-opendata-rcrhirlam-surface-grib.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: HIRLAM Weather Model\nName2: Surface GRIB files\nDescription: HIRLAM (High Resolution Limited Area Model) is an operational synoptic and mesoscale weather prediction model managed by the Finnish Meteorological Institute.\n\nDocumentation: http://en.ilmatieteenlaitos.fi/open-data-on-aws-s3\nContact: avoin-data@fmi.fi\nUpdateFrequency: The data is updated four times a day with analysis hours 00, 06, 12 and 18. Corresponding model runs are available roughly five hours after analysis time (~ after model run has started).\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_fmi_opendata_rcrhirlam_surface_grib/index.json", "https://registry.opendata.aws/hirlam/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_fmi_opendata_rcrhirlam_surface_grib.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_fmi_opendata_rcrhirlam_surface_grib&showErrors=false&email=", "Amazon Web Services", "awsS3Files_fmi_opendata_rcrhirlam_surface_grib"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gatk_test_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gatk_test_data/", "public", "File Names from the AWS S3 gatk-test-data Bucket: GATK Test Data: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.", "This dataset has file information from the AWS S3 gatk-test-data bucket at https://gatk-test-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GATK Test Data\nName2: The contents of this dataset is multi-modal and includes various types of genomic data, such as CRAMs/BAMs, whole-genome sequencing (WGS) data, exome data, RNA data, etc.\nDescription: The GATK test data resource bundle is a collection of files for resequencing human genomic data with the Broad Institute's [Genome Analysis Toolkit (GATK)](https://software.broadinstitute.org/gatk/).\n\nDocumentation: https://s3.amazonaws.com/gatk-test-data/gatk-test-data-readme.html\nContact: https://gatkforums.broadinstitute.org/gatk\nManagedBy: Broad Institute\nUpdateFrequency: Every 3 months\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gatk_test_data/index.json", "https://registry.opendata.aws/gatk-test-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gatk_test_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gatk_test_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gatk_test_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gdelt_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gdelt_open_data/", "public", "File Names from the AWS S3 gdelt-open-data Bucket: Global Database of Events, Language and Tone (GDELT): Project data files", "This dataset has file information from the AWS S3 gdelt-open-data bucket at https://gdelt-open-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Global Database of Events, Language and Tone (GDELT)\nName2: Project data files\nDescription: This project monitors the world's broadcast, print, and web news from nearly every corner of every country in over 100 languages and identifies the people, locations, organizations, counts, themes, sources, emotions, quotes, images and events driving our global society every second of every day.\n\nDocumentation: http://www.gdeltproject.org/\nContact: http://www.gdeltproject.org/about.html#contact\nUpdateFrequency: Not currently being updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gdelt_open_data/index.json", "https://registry.opendata.aws/gdelt/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gdelt_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gdelt_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gdelt_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_genomeark.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_genomeark/", "public", "File Names from the AWS S3 genomeark Bucket: Genome Ark", "This dataset has file information from the AWS S3 genomeark bucket at https://genomeark.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome Ark\nName2: https://vgp.github.io\nDescription: The Genome Ark hosts genomic information for the Vertebrate Genomes Project (VGP) and other related projects. The VGP is an international collaboration that aims to generate complete and near error-free reference genomes for all extant vertebrate species. These genomes will be used to address fundamental questions in biology and disease, to identify species most genetically at risk for extinction, and to preserve genetic information of life.\n\nDocumentation: https://vertebrategenomesproject.org\nContact: Erich Jarvis \nManagedBy: The Genome10K community of scientists\nUpdateFrequency: Data will be continually updated as it is generated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_genomeark/index.json", "https://registry.opendata.aws/genomeark/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_genomeark.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_genomeark&showErrors=false&email=", "Amazon Web Services", "awsS3Files_genomeark"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_giab.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_giab/", "public", "File Names from the AWS S3 giab Bucket: Genome in a Bottle on AWS: Latest data", "This dataset has file information from the AWS S3 giab bucket at https://giab.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Genome in a Bottle on AWS\nName2: Latest data\nDescription: Several reference genomes to enable translation of whole human genome sequencing to clinical practice.\n\nDocumentation: https://docs.opendata.aws/giab/readme.html\nContact: http://genomeinabottle.org/\nUpdateFrequency: New data are added as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_giab/index.json", "https://registry.opendata.aws/giab/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_giab.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_giab&showErrors=false&email=", "Amazon Web Services", "awsS3Files_giab"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_gmsdata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_gmsdata/", "public", "File Names from the AWS S3 gmsdata Bucket: The Genome Modeling System", "This dataset has file information from the AWS S3 gmsdata bucket at https://gmsdata.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Genome Modeling System\nName2: https://gmsdata.s3.amazonaws.com/INDEX.html\nDescription: The Genome Institute at Washington University has developed a high-throughput, fault-tolerant analysis information management system called the Genome Modeling System (GMS), capable of executing complex, interdependent, and automated genome analysis pipelines at a massive scale. The GMS framework provides detailed tracking of samples and data coupled with reliable and repeatable analysis pipelines. GMS includes a full system image with software and services, expandable from one workstation to a large compute cluster.\n\nDocumentation: https://github.com/genome/gms/wiki\nContact: https://github.com/genome/gms/issues\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_gmsdata/index.json", "https://registry.opendata.aws/gmsdata/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_gmsdata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_gmsdata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_gmsdata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_grillo_openeew.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_grillo_openeew/", "public", "File Names from the AWS S3 grillo-openeew Bucket: OpenEEW: OpenEEW", "This dataset has file information from the AWS S3 grillo-openeew bucket at https://grillo-openeew.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenEEW\nName2: OpenEEW\nDescription: Grillo has developed an IoT-based earthquake early-warning system in Mexico and Chile and is now opening its entire archive of unprocessed accelerometer data to the world to encourage the development of new algorithms capable of rapidly detecting and characterizing earthquakes in real time.\n\nDocumentation: https://github.com/grillo/openeew\nContact: openeew@grillo.io\nManagedBy: [Grillo](https://grillo.io/)\nUpdateFrequency: Approximately every 10 minutes\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_grillo_openeew/index.json", "https://registry.opendata.aws/grillo-openeew/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_grillo_openeew.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_grillo_openeew&showErrors=false&email=", "Amazon Web Services", "awsS3Files_grillo_openeew"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_microbiome_project.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_microbiome_project/", "public", "File Names from the AWS S3 human-microbiome-project Bucket: The Human Microbiome Project", "This dataset has file information from the AWS S3 human-microbiome-project bucket at https://human-microbiome-project.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: The Human Microbiome Project\nName2: https://aws.amazon.com/datasets/human-microbiome-project/\nDescription: The NIH-funded Human Microbiome Project (HMP) is a collaborative effort of over 300 scientists from more than 80 organizations to comprehensively characterize the microbial communities inhabiting the human body and elucidate their role in human health and disease. To accomplish this task, microbial community samples were isolated from a cohort of 300 healthy adult human subjects at 18 specific sites within five regions of the body (oral cavity, airways, urogenital track, skin, and gut). Targeted sequencing of the 16S bacterial marker gene and/or whole metagenome shotgun sequencing was performed for thousands of these samples. In addition, whole genome sequences were generated for isolate strains collected from human body sites to act as reference organisms for analysis. Finally, 16S marker and whole metagenome sequencing was also done on additional samples from people suffering from several disease conditions.\n\nDocumentation: https://commonfund.nih.gov/hmp\nContact: https://commonfund.nih.gov/hmp/related_activities\nUpdateFrequency: Uncertain\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_microbiome_project/index.json", "https://registry.opendata.aws/human-microbiome-project/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_microbiome_project.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_microbiome_project&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_microbiome_project"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_human_pangenomics.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_human_pangenomics/", "public", "File Names from the AWS S3 human-pangenomics Bucket: Human PanGenomics Project: Human PanGenomics Project", "This dataset has file information from the AWS S3 human-pangenomics bucket at https://human-pangenomics.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Human PanGenomics Project\nName2: Human PanGenomics Project\nDescription: This dataset includes sequencing data, assemblies, and analyses for the offspring of ten parent-offspring trios.\n\nDocumentation: https://github.com/human-pangenomics/hpgp-data\nContact: https://github.com/human-pangenomics/hpgp-data/issues\nUpdateFrequency: Data will be added and updated as technologies improve or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_human_pangenomics/index.json", "https://registry.opendata.aws/hpgp-data/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_human_pangenomics.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_human_pangenomics&showErrors=false&email=", "Amazon Web Services", "awsS3Files_human_pangenomics"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/", "public", "File Names from the AWS S3 ichangemycity-janaagraha-complaints-data-aws Bucket: IChangeMyCity Complaints Data from Janaagraha: IChangeMyCity Complaints", "This dataset has file information from the AWS S3 ichangemycity-janaagraha-complaints-data-aws bucket at https://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IChangeMyCity Complaints Data from Janaagraha\nName2: IChangeMyCity Complaints\nDescription: The [IChangeMyCity](https://www.ichangemycity.com) project provides insight into the complaints raised by citizens from diffent cities of India related to the issues in their neighbourhoods and the resolution of the same by the civic bodies.\n\nDocumentation: http://ichangemycity-janaagraha-complaints-data-aws.s3.ap-south-1.amazonaws.com/readme.html\nContact: data@janaagraha.org\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ichangemycity_janaagraha_complaints_data_aws/index.json", "https://registry.opendata.aws/ichangemycity/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ichangemycity_janaagraha_complaints_data_aws.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ichangemycity_janaagraha_complaints_data_aws&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ichangemycity_janaagraha_complaints_data_aws"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_irs_990_spreadsheets.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_irs_990_spreadsheets/", "public", "File Names from the AWS S3 irs-990-spreadsheets Bucket: IRS 990 Filings (Spreadsheets): Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form", "This dataset has file information from the AWS S3 irs-990-spreadsheets bucket at https://irs-990-spreadsheets.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: IRS 990 Filings (Spreadsheets)\nName2: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form\nDescription: Excerpts of electronic Form 990 and 990-EZ filings, converted to spreadsheet form. Additional fields being added regularly.\n\nDocumentation: https://appliednonprofitresearch.com/documentation/irs-990-spreadsheets\nContact: [info@appliednonprofitresearch.com](info@appliednonprofitresearch.com)\nManagedBy: [Applied Nonprofit Research, LLC](https://www.appliednonprofitresearch.com/)\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_irs_990_spreadsheets/index.json", "https://registry.opendata.aws/990-spreadsheets/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_irs_990_spreadsheets.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_irs_990_spreadsheets&showErrors=false&email=", "Amazon Web Services", "awsS3Files_irs_990_spreadsheets"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lab41openaudiocorpus.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lab41openaudiocorpus/", "public", "File Names from the AWS S3 lab41openaudiocorpus Bucket: Voices Obscured in Complex Environmental Settings (VOiCES): wav audio files, orthographic transcriptions, and speaker ID", "This dataset has file information from the AWS S3 lab41openaudiocorpus bucket at https://lab41openaudiocorpus.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Voices Obscured in Complex Environmental Settings (VOiCES)\nName2: wav audio files, orthographic transcriptions, and speaker ID\nDescription: VOiCES is a speech corpus recorded in acoustically challenging settings, using distant microphone recording. Speech was recorded in real rooms with various acoustic features (reverb, echo, HVAC systems, outside noise, etc.). Adversarial noise, either television, music, or babble, was concurrently played with clean speech. Data was recorded using multiple microphones strategically placed throughout the room. The corpus includes audio recordings, orthographic transcriptions, and speaker labels.\n\nDocumentation: https://voices18.github.io/\nContact: https://github.com/voices18/utilities/issues\nUpdateFrequency: Data from two additional rooms will be added to the corpus Fall 2018.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lab41openaudiocorpus/index.json", "https://registry.opendata.aws/lab41-sri-voices/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lab41openaudiocorpus.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lab41openaudiocorpus&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lab41openaudiocorpus"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds/", "public", "File Names from the AWS S3 landsat-pds Bucket: Landsat 8: Scenes and metadata", "This dataset has file information from the AWS S3 landsat-pds bucket at https://landsat-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: Scenes and metadata\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_landsat_pds_inventory.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_landsat_pds_inventory/", "public", "File Names from the AWS S3 landsat-pds-inventory Bucket: Landsat 8: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)", "This dataset has file information from the AWS S3 landsat-pds-inventory bucket at https://landsat-pds-inventory.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Landsat 8\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) (ORC)\nDescription: An ongoing collection of satellite imagery of all land on Earth produced by the Landsat 8 satellite.\n\nDocumentation: https://docs.opendata.aws/landsat-pds/readme.html\nContact: https://lists.osgeo.org/mailman/listinfo/landsat-pds\nManagedBy: [Planet](https://www.planet.com/)\nUpdateFrequency: New Landsat 8 scenes are added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_landsat_pds_inventory/index.json", "https://registry.opendata.aws/landsat-8/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_landsat_pds_inventory.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_landsat_pds_inventory&showErrors=false&email=", "Amazon Web Services", "awsS3Files_landsat_pds_inventory"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_lofar_elais_n1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_lofar_elais_n1/", "public", "File Names from the AWS S3 lofar-elais-n1 Bucket: LOFAR ELAIS-N1 cycle 2 observations on AWS: LOFAR ELAIS-N1 cycle 2 observations", "This dataset has file information from the AWS S3 lofar-elais-n1 bucket at https://lofar-elais-n1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: LOFAR ELAIS-N1 cycle 2 observations on AWS\nName2: LOFAR ELAIS-N1 cycle 2 observations\nDescription: These data correspond to the [International LOFAR Telescope](http://www.lofar.org/) observations of the sky field ELAIS-N1 (16:10:01 +54:30:36) during the cycle 2 of observations. There are 11 runs of about 8 hours each plus the corresponding observation of the calibration targets before and after the target field. The data are measurement sets ([MS](https://casa.nrao.edu/Memos/229.html)) containing the cross-correlated data and metadata divided in 371 frequency sub-bands per target centred at ~150 MHz.\n\nDocumentation: https://www.lofarcloud.uk/data.html\nContact: https://www.lofarcloud.uk/\nUpdateFrequency: Not updated\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_lofar_elais_n1/index.json", "https://registry.opendata.aws/lofar-elais-n1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_lofar_elais_n1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_lofar_elais_n1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_lofar_elais_n1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mf_nwp_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mf_nwp_models/", "public", "File Names from the AWS S3 mf-nwp-models Bucket: Atmospheric Models from M\u00e9t\u00e9o-France: Atmospheric Models from M\u00e9t\u00e9o-France", "This dataset has file information from the AWS S3 mf-nwp-models bucket at https://mf-nwp-models.s3.eu-west-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Atmospheric Models from M\u00e9t\u00e9o-France\nName2: Atmospheric Models from M\u00e9t\u00e9o-France\nDescription: Global and high-resolution regional atmospheric models from M\u00e9t\u00e9o-France.\n\nDocumentation: https://mf-models-on-aws.org\nContact: contact@openmeteodata.com\nManagedBy: [OpenMeteoData](https://openmeteodata.com)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mf_nwp_models/index.json", "https://registry.opendata.aws/meteo-france-models/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mf_nwp_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mf_nwp_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mf_nwp_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_modis_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_modis_pds/", "public", "File Names from the AWS S3 modis-pds Bucket: MODIS on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 modis-pds bucket at https://modis-pds.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: MODIS on AWS\nName2: Imagery and metadata\nDescription: Select products from the Moderate Resolution Imaging Spectroradiometer (MODIS) managed by the U.S. Geological Survey and NASA.\n\nDocumentation: https://docs.opendata.aws/modis-pds/readme.html\nContact: https://github.com/AstroDigital/modis-ingestor/issues\nUpdateFrequency: New MODIS data is added regularly as soon as they are available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_modis_pds/index.json", "https://registry.opendata.aws/modis/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_modis_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_modis_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_modis_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_multimedia_commons.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_multimedia_commons/", "public", "File Names from the AWS S3 multimedia-commons Bucket: Multimedia Commons: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.", "This dataset has file information from the AWS S3 multimedia-commons bucket at https://multimedia-commons.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Multimedia Commons\nName2: This directory has 99,171,688 image files and 787,479 video files. The videos add up to around 8,081 hours, with an average video length of 37s and a median length of 28s.\nDescription: The Multimedia Commons is a collection of audio and visual features computed for the nearly 100 million Creative Commons-licensed Flickr images and videos in the YFCC100M dataset from Yahoo! Labs, along with ground-truth annotations for selected subsets. The International Computer Science Institute (ICSI) and Lawrence Livermore National Laboratory are producing and distributing a core set of derived feature sets and annotations as part of an effort to enable large-scale video search capabilities. They have released this feature corpus into the public domain, under Creative Commons License 0, so it is free for anyone to use for any purpose.\n\nDocumentation: https://multimediacommons.wordpress.com/yfcc100m-core-dataset/\nContact: multimedia-commons@icsi.berkeley.edu\nUpdateFrequency: Not updated.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_multimedia_commons/index.json", "https://registry.opendata.aws/multimedia-commons/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_multimedia_commons.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_multimedia_commons&showErrors=false&email=", "Amazon Web Services", "awsS3Files_multimedia_commons"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_mwapublic.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_mwapublic/", "public", "File Names from the AWS S3 mwapublic Bucket: Epoch of Reionization Dataset: Selected MWA EoR data (uvfits format) from 2013-2015", "This dataset has file information from the AWS S3 mwapublic bucket at https://mwapublic.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Epoch of Reionization Dataset\nName2: Selected MWA EoR data (uvfits format) from 2013-2015\nDescription: The data are from observations with the Murchison Widefield Array (MWA) which is a Square Kilometer Array (SKA) precursor in Western Australia. This particular dataset is from the Epoch of Reionization project which is a key science driver of the SKA. Nearly 2PB of such observations have been recorded to date, this is a small subset of that which has been exported from the MWA data archive in Perth and made available to the public on AWS. The data were taken to detect signatures of the first stars and galaxies forming and the effect of these early stars and galaxies on the evolution of the universe.\n\nDocumentation: http://danielcjacobs.com/research/epoch-of-reionization-aws-public-dataset/\nContact: brynah (at) phys.washington.edu\nManagedBy: University of washington Radio Cosmology Group\nUpdateFrequency: Irregularly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_mwapublic/index.json", "https://registry.opendata.aws/epoch-of-reionization/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_mwapublic.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_mwapublic&showErrors=false&email=", "Amazon Web Services", "awsS3Files_mwapublic"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nanopore_human_wgs.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nanopore_human_wgs/", "public", "File Names from the AWS S3 nanopore-human-wgs Bucket: Nanopore Reference Human Genome: Nanopore Reference Human Genome", "This dataset has file information from the AWS S3 nanopore-human-wgs bucket at https://nanopore-human-wgs.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Nanopore Reference Human Genome\nName2: Nanopore Reference Human Genome\nDescription: This dataset includes the sequencing and assembly of a reference standard human genome (GM12878) using the MinION nanopore sequencing instrument with the R9.4 1D chemistry.\n\nDocumentation: https://github.com/nanopore-wgs-consortium/NA12878\nContact: https://github.com/nanopore-wgs-consortium/NA12878/issues\nUpdateFrequency: Data will be added as methodology improves or new data uses are encountered.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nanopore_human_wgs/index.json", "https://registry.opendata.aws/nanopore/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nanopore_human_wgs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nanopore_human_wgs&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nanopore_human_wgs"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_Landsat.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_Landsat/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=Landsat/: NASA NEX: Landsat GLS (Global Land Survey)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=Landsat/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Landsat GLS (Global Land Survey)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_Landsat/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_Landsat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_Landsat&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_Landsat"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_LOCA.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_LOCA/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=LOCA/: NASA NEX: Localized Constructed Analogs (LOCA)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=LOCA/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Localized Constructed Analogs (LOCA)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_LOCA/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_LOCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_LOCA&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_LOCA"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_MODIS.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_MODIS/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=MODIS/: NASA NEX: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=MODIS/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: MOD13Q1 (Vegetation Indices 16-Day L3 Global 250m)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_MODIS/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_MODIS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_MODIS&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_MODIS"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_DCP30.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_DCP30/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-DCP30/: NASA NEX: Downscaled Climate Projections (NEX-DCP30)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-DCP30/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Downscaled Climate Projections (NEX-DCP30)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_DCP30/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_DCP30.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_DCP30&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_DCP30"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nasanex_NEX_GDDP.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nasanex_NEX_GDDP/", "public", "File Names from the AWS S3 nasanex Bucket with prefix=NEX-GDDP/: NASA NEX: Global Daily Downscaled Projections (NEX-GDDP)", "This dataset has file information from the AWS S3 nasanex bucket at https://nasanex.s3.us-west-2.amazonaws.com/ with prefix=NEX-GDDP/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NASA NEX\nName2: Global Daily Downscaled Projections (NEX-GDDP)\nDescription: A collection of Earth science datasets maintained by NASA, including climate change projections and satellite images of the Earth's surface.\n\nDocumentation: https://docs.opendata.aws/nasa-nex/readme.html\nContact: https://nex.nasa.gov/nex/contactus/\nUpdateFrequency: Infrequently\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nasanex_NEX_GDDP/index.json", "https://registry.opendata.aws/nasanex/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nasanex_NEX_GDDP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nasanex_NEX_GDDP&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nasanex_NEX_GDDP"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gefs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gefs_pds/", "public", "File Names from the AWS S3 noaa-gefs-pds Bucket: NOAA Global Ensemble Forecast System (GEFS): Project data files", "This dataset has file information from the AWS S3 noaa-gefs-pds bucket at https://noaa-gefs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Ensemble Forecast System (GEFS)\nName2: Project data files\nDescription: The Global Ensemble Forecast System (GEFS), previously known as the GFS Global ENSemble (GENS), is a weather forecast model made up of 21 separate forecasts, or ensemble members. The National Centers for Environmental Prediction (NCEP) started the GEFS to address the nature of uncertainty in weather observations, which is used to initialize weather forecast models. The GEFS attempts to quantify the amount of uncertainty in a forecast by generating an ensemble of multiple forecasts, each minutely different, or perturbed, from the original observations. With global coverage, GEFS is produced four times a day with weather forecasts going out to 16 days.\n\nDocumentation: https://docs.opendata.aws/noaa-gefs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GEFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GEFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gefs_pds/index.json", "https://registry.opendata.aws/noaa-gefs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gefs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gefs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gefs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_bdp_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_bdp_pds/", "public", "File Names from the AWS S3 noaa-gfs-bdp-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 GFS data", "This dataset has file information from the AWS S3 noaa-gfs-bdp-pds bucket at https://noaa-gfs-bdp-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_bdp_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_bdp_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_bdp_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_bdp_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfs_pds/", "public", "File Names from the AWS S3 noaa-gfs-pds Bucket: Unidata NOAA Global Forecast System (GFS) Model: A rolling four-week archive of 0.25 degree GFS data", "This dataset has file information from the AWS S3 noaa-gfs-pds bucket at https://noaa-gfs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Unidata NOAA Global Forecast System (GFS) Model\nName2: A rolling four-week archive of 0.25 degree GFS data\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks.\n\nDocumentation: https://docs.opendata.aws/noaa-gfs-pds/readme.html\nContact: https://www.ncdc.noaa.gov/contact\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Every 6 hours\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfs_pds/index.json", "https://registry.opendata.aws/noaa-gfs-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_gfspara_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_gfspara_pds/", "public", "File Names from the AWS S3 noaa-gfspara-pds Bucket: NOAA Global Forecast System (GFS): A rolling four-week archive of 0.25 FV3-based parallel version of the GFS", "This dataset has file information from the AWS S3 noaa-gfspara-pds bucket at https://noaa-gfspara-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Forecast System (GFS)\nName2: A rolling four-week archive of 0.25 FV3-based parallel version of the GFS\nDescription: The Global Forecast System (GFS) is a weather forecast model produced by the National Centers for Environmental Prediction (NCEP). Dozens of atmospheric and land-soil variables are available through this dataset, from temperatures, winds, and precipitation to soil moisture and atmospheric ozone concentration. The entire globe is covered by the GFS at a base horizontal resolution of 18 miles (28 kilometers) between grid points, which is used by the operational forecasters who predict weather out to 16 days in the future. Horizontal resolution drops to 44 miles (70 kilometers) between grid point for forecasts between one week and two weeks. **Both the current version and the FV3-based parallel version of the GFS being tested to become the new operational model at a future date are available.**\n\nDocumentation: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs\nContact: For questions regarding data content or quality, visit [the NOAA GFS site](http://www.emc.ncep.noaa.gov/index.php?branch=GFS). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov.\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_gfspara_pds/index.json", "https://registry.opendata.aws/noaa-gfs-bdp-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_gfspara_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_gfspara_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_gfspara_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghcn_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghcn_pds/", "public", "File Names from the AWS S3 noaa-ghcn-pds Bucket: NOAA Global Historical Climatology Network Daily (GHCN-D): Project data files", "This dataset has file information from the AWS S3 noaa-ghcn-pds bucket at https://noaa-ghcn-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Daily (GHCN-D)\nName2: Project data files\nDescription: Global Historical Climatology Network - Daily is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://docs.opendata.aws/noaa-ghcn-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncdc.noaa.gov/ghcn-daily-description). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghcn_pds/index.json", "https://registry.opendata.aws/noaa-ghcn/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghcn_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghcn_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghcn_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ghe_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ghe_pds/", "public", "File Names from the AWS S3 noaa-ghe-pds Bucket: NOAA Global Hydro Estimator (GHE): Project data files", "This dataset has file information from the AWS S3 noaa-ghe-pds bucket at https://noaa-ghe-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Hydro Estimator (GHE)\nName2: Project data files\nDescription: Global Hydro-Estimator provides a global mosaic imagery of rainfall estimates from multi-geostationary satellites, which currently includes GOES-16, GOES-15, Meteosat-8, Meteosat-11 and Himawari-8. The GHE products include: Instantaneous rain rate, 1 hour, 3 hour, 6 hour, 24 hour and also multi-day rainfall accumulation.\n\nDocumentation: https://www.ospo.noaa.gov/Products/atmosphere/ghe/index.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 15 minute-instantaneous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ghe_pds/index.json", "https://registry.opendata.aws/noaa-ghe/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ghe_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ghe_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ghe_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_global_hourly_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_global_hourly_pds/", "public", "File Names from the AWS S3 noaa-global-hourly-pds Bucket: NOAA Global Historical Climatology Network Hourly (GHCN-H): Project data files", "This dataset has file information from the AWS S3 noaa-global-hourly-pds bucket at https://noaa-global-hourly-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Global Historical Climatology Network Hourly (GHCN-H)\nName2: Project data files\nDescription: Global Historical Climatology Network - Hourly is a dataset from NOAA that contains daily observations over global land areas. It contains station-based measurements from land-based stations worldwide, about two thirds of which are for precipitation measurement only. Other meteorological elements include, but are not limited to, daily maximum and minimum temperature, temperature at the time of observation, snowfall and snow depth. It is a composite of climate records from numerous sources that were merged together and subjected to a common suite of quality assurance reviews. Some data are more than 175 years old. The data is in CSV format. Each file corresponds to a year from 1763 to present and is named as such.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: For questions regarding data content or quality, visit [the NOAA GHCN site](https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: daily (Manually)\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_global_hourly_pds/index.json", "https://registry.opendata.aws/noaa-ghcnh/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_global_hourly_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_global_hourly_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_global_hourly_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3NoaaGoes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3NoaaGoes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nUse ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browser the files in buckets. This dataset is a solution to that problem for this bucket.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3NoaaGoes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3NoaaGoes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3NoaaGoes16&showErrors=false&email=", "NOAA", "awsS3NoaaGoes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes16.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes16/", "public", "File Names from the AWS S3 noaa-goes16 Bucket: GOES on AWS: GOES-16 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes16 bucket at https://noaa-goes16.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-16 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes16/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes16.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes16&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes16"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_goes17.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_goes17/", "public", "File Names from the AWS S3 noaa-goes17 Bucket: GOES on AWS: GOES-17 imagery and metadata", "This dataset has file information from the AWS S3 noaa-goes17 bucket at https://noaa-goes17.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: GOES on AWS\nName2: GOES-17 imagery and metadata\nDescription: GOES satellites (GOES-16 & GOES-17) provide continuous weather imagery and monitoring of meteorological and space environment data across North America. GOES satellites provide the kind of continuous monitoring necessary for intensive data analysis. They hover continuously over one position on the surface. The satellites orbit high enough to allow for a full-disc view of the Earth. Because they stay above a fixed spot on the surface, they provide a constant vigil for the atmospheric \"triggers\" for severe weather conditions such as tornadoes, flash floods, hailstorms, and hurricanes. When these conditions develop, the GOES satellites are able to monitor storm development and track their movements.\n\nDocumentation: https://docs.opendata.aws/noaa-goes16/cics-readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New data is added as soon as it's available\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_goes17/index.json", "https://registry.opendata.aws/noaa-goes/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_goes17.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_goes17&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_goes17"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_hrrr_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_hrrr_pds/", "public", "File Names from the AWS S3 noaa-hrrr-pds Bucket: NOAA High-Resolution Rapid Refresh (HRRR) Model: A rolling one-week archive of HRRR data.", "This dataset has file information from the AWS S3 noaa-hrrr-pds bucket at https://noaa-hrrr-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA High-Resolution Rapid Refresh (HRRR) Model\nName2: A rolling one-week archive of HRRR data.\nDescription: The HRRR is a NOAA real-time 3-km resolution, hourly updated, cloud-resolving, convection-allowing atmospheric model, initialized by 3km grids with 3km radar assimilation. Radar data is assimilated in the HRRR every 15 min over a 1-h period adding further detail to that provided by the hourly data assimilation from the 13km radar-enhanced Rapid Refresh.\n\nDocumentation: https://docs.opendata.aws/noaa-hrrr-pds/readme.html\nContact: https://rapidrefresh.noaa.gov/hrrr/\nManagedBy: [Unidata](https://www.unidata.ucar.edu/)\nUpdateFrequency: Hourly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_hrrr_pds/index.json", "https://registry.opendata.aws/noaa-hrrr-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_hrrr_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_hrrr_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_hrrr_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_isd_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_isd_pds/", "public", "File Names from the AWS S3 noaa-isd-pds Bucket: NOAA Integrated Surface Database (ISD): Project data files", "This dataset has file information from the AWS S3 noaa-isd-pds bucket at https://noaa-isd-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Integrated Surface Database (ISD)\nName2: Project data files\nDescription: The Integrated Surface Database (ISD) consists of global hourly and synoptic observations compiled from numerous sources into a gzipped fixed width format. ISD was developed as a joint activity within Asheville's Federal Climate Complex. The database includes over 35,000 stations worldwide, with some having data as far back as 1901, though the data show a substantial increase in volume in the 1940s and again in the early 1970s. Currently, there are over 14,000 \"active\" stations updated daily in the database. The total uncompressed data volume is around 600 gigabytes; however, it continues to grow as more data are added. ISD includes numerous parameters such as wind speed and direction, wind gust, temperature, dew point, cloud data, sea level pressure, altimeter setting, station pressure, present weather, visibility, precipitation amounts for various time periods, snow depth, and various other elements as observed by each station.\n\nDocumentation: https://www.ncei.noaa.gov/data/global-hourly/doc/isd-format-document.pdf\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_isd_pds/index.json", "https://registry.opendata.aws/noaa-isd/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_isd_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_isd_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_isd_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nexrad_level2.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nexrad_level2/", "public", "File Names from the AWS S3 noaa-nexrad-level2 Bucket: NEXRAD on AWS: NEXRAD Level II archive data", "This dataset has file information from the AWS S3 noaa-nexrad-level2 bucket at https://noaa-nexrad-level2.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II archive data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nexrad_level2/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nexrad_level2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nexrad_level2&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nexrad_level2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_pds/", "public", "File Names from the AWS S3 noaa-nwm-pds Bucket: NOAA National Water Model Short-Range Forecast: A rolling four week archive of NWM data.", "This dataset has file information from the AWS S3 noaa-nwm-pds bucket at https://noaa-nwm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Short-Range Forecast\nName2: A rolling four week archive of NWM data.\nDescription: The National Water Model (NWM) is a water resources model that simulates and forecasts water budget variables, including snowpack, evapotranspiration, soil moisture and streamflow, over the entire continental United States (CONUS). The model, launched in August 2016, is designed to improve the ability of NOAA to meet the needs of its stakeholders (forecasters, emergency managers, reservoir operators, first responders, recreationists, farmers, barge operators, and ecosystem and floodplain managers) by providing expanded accuracy, detail, and frequency of water information. It is operated by NOAA\u2019s Office of Water Prediction. This bucket contains a four-week rollover of the Short Range Forecast model output and the corresponding forcing data for the model. The model is forced with meteorological data from the High Resolution Rapid Refresh (HRRR) and the Rapid Refresh (RAP) models. The Short Range Forecast configuration cycles hourly and produces hourly deterministic forecasts of streamflow and hydrologic states out to 18 hours.\n\nDocumentation: https://docs.opendata.aws/noaa-nwm-pds/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_pds/index.json", "https://registry.opendata.aws/noaa-nwm-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_nwm_retro_v2_0_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_nwm_retro_v2_0_pds/", "public", "File Names from the AWS S3 noaa-nwm-retro-v2.0-pds Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 2.0.", "This dataset has file information from the AWS S3 noaa-nwm-retro-v2.0-pds bucket at https://noaa-nwm-retro-v2.0-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 2.0.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\n... (4 more variables)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_nwm_retro_v2_0_pds/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_nwm_retro_v2_0_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_nwm_retro_v2_0_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_nwm_retro_v2_0_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_noaa_ofs_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_noaa_ofs_pds/", "public", "File Names from the AWS S3 noaa-ofs-pds Bucket: NOAA Operational Forecast System (OFS): Project data files", "This dataset has file information from the AWS S3 noaa-ofs-pds bucket at https://noaa-ofs-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA Operational Forecast System (OFS)\nName2: Project data files\nDescription: The Operational Forecast System (OFS) has been developed to serve the maritime user community. OFS was developed in a joint project of the NOAA/National Ocean Service (NOS)/Office of Coast Survey, the NOAA/NOS/Center for Operational Oceanographic Products and Services (CO-OPS), and the NOAA/National Weather Service (NWS)/National Centers for Environmental Prediction (NCEP) Central Operations (NCO). OFS generates water level, water current, water temperature, water salinity (except for the Great Lakes) and wind conditions nowcast and forecast guidance four times per day.\n\nDocumentation: https://docs.opendata.aws/noaa-ofs-pds/readme.html\nContact: For questions regarding data content or quality, visit [the NOAA OFS site](https://tidesandcurrents.noaa.gov/models.html). For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: 4 times a day, every 6 hours starting at midnight and generates 6-hour nowcasts and 48-hour forecast guidance\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_noaa_ofs_pds/index.json", "https://registry.opendata.aws/noaa-ofs/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_noaa_ofs_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_noaa_ofs_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_noaa_ofs_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/", "public", "File Names from the AWS S3 nrel-pds-wtk Bucket with prefix=wtk-techno-economic/pywtk-data/: NREL Wind Integration National Dataset on AWS: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format", "This dataset has file information from the AWS S3 nrel-pds-wtk bucket at https://nrel-pds-wtk.s3.us-west-2.amazonaws.com/ with prefix=wtk-techno-economic/pywtk-data/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NREL Wind Integration National Dataset on AWS\nName2: Techo-economic source files by location in [HDF5](https://portal.hdfgroup.org/display/HDF5) format\nDescription: The [Wind Integration National Dataset (WIND)](https://www.nrel.gov/grid/wind-toolkit.html) is an update and expansion of the Eastern Wind Integration Data Set and Western Wind Integration Data Set. It supports the next generation of wind integration studies.\n\nDocumentation: https://www.nrel.gov/grid/wind-toolkit.html\nContact: wind-toolkit@nrel.gov\nManagedBy: [National Renewable Energy Laboratory](https://www.nrel.gov/)\nUpdateFrequency: As Needed\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data/index.json", "https://registry.opendata.aws/nrel-pds-wtk/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nrel_pds_wtk_wtk_techno_economic_pywtk_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nwm_archive.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nwm_archive/", "public", "File Names from the AWS S3 nwm-archive Bucket: NOAA National Water Model Reanalysis: The complete archive of NWM data version 1.2.", "This dataset has file information from the AWS S3 nwm-archive bucket at https://nwm-archive.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NOAA National Water Model Reanalysis\nName2: The complete archive of NWM data version 1.2.\nDescription: The NOAA National Water Model Reanalysis dataset contains output from multi-decade retrospective simulations. These simulations used observed rainfall as input and ingested other required meteorological input fields from a weather reanalysis dataset. The output frequency and fields available in this historical NWM dataset differ from those contained in the real-time forecast model. One application of this dataset is to provide historical context to current real-time streamflow, soil moisture and snowpack NWM conditions. The reanalysis data can be used to infer flow frequencies and perform temporal analyses with hourly streamflow output and 3-hourly land surface output. The long-term dataset can also be used in the development of end user applications which require a long baseline of data for system training or verification purposes. This dataset contains output from two retrospective simulations. Currently there are two versions of the dataset: A 25-year (January 1993 through December 2017) retrospective simulation using version 1.2 of the National Water Model, and a 26-year (January 1993 through December 2018) retrospective simulation using version 2.0 of the National Water Model.\n\nDocumentation: https://docs.opendata.aws/nwm-archive/readme.html\nContact: |\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: No updates\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nwm_archive/index.json", "https://registry.opendata.aws/nwm-archive/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nwm_archive.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nwm_archive&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nwm_archive"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_nyc_tlc.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_nyc_tlc/", "public", "File Names from the AWS S3 nyc-tlc Bucket: New York City Taxi and Limousine Commission (TLC) Trip Record Data: CSV files containing NYC TLC trip data.", "This dataset has file information from the AWS S3 nyc-tlc bucket at https://nyc-tlc.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: New York City Taxi and Limousine Commission (TLC) Trip Record Data\nName2: CSV files containing NYC TLC trip data.\nDescription: Data of trips taken by taxis and for-hire vehicles in New York City.\n\nDocumentation: http://www.nyc.gov/html/tlc/html/about/trip_record_data.shtml\nContact: research@tlc.nyc.gov\nUpdateFrequency: As soon as new data is available to be shared publicly.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_nyc_tlc/index.json", "https://registry.opendata.aws/nyc-tlc-trip-records-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_nyc_tlc.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_nyc_tlc&showErrors=false&email=", "Amazon Web Services", "awsS3Files_nyc_tlc"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_oicr_icgc_meta_metadata.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_oicr_icgc_meta_metadata/", "public", "File Names from the AWS S3 oicr.icgc.meta Bucket with prefix=metadata/: ICGC on AWS: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README", "This dataset has file information from the AWS S3 oicr.icgc.meta bucket at https://oicr.icgc.meta.s3.us-east-1.amazonaws.com/ with prefix=metadata/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: ICGC on AWS\nName2: This public Amazon S3 bucket contains analysis metadata in XML format for genome analysis results. More information at http://oicr.icgc.meta.s3.amazonaws.com/metadata/README\nDescription: The International Cancer Genome Consortium (ICGC) coordinates projects with the common aim of accelerating research into the causes and control of cancer. The PanCancer Analysis of Whole Genomes (PCAWG) study is an international collaboration to identify common patterns of mutation in whole genomes from ICGC. More than 2,400 consistently analyzed genomes corresponding to over 1,100 unique ICGC donors are now freely available on Amazon S3 to credentialed researchers subject to ICGC data sharing policies.\n\nDocumentation: https://dcc.icgc.org/icgc-in-the-cloud/aws\nContact: dcc-support@icgc.org\nUpdateFrequency: New data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_oicr_icgc_meta_metadata/index.json", "https://registry.opendata.aws/icgc/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_oicr_icgc_meta_metadata.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_oicr_icgc_meta_metadata&showErrors=false&email=", "Amazon Web Services", "awsS3Files_oicr_icgc_meta_metadata"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ooni_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ooni_data/", "public", "File Names from the AWS S3 ooni-data Bucket: Open Observatory of Network Interference: S3 bucket with data", "This dataset has file information from the AWS S3 ooni-data bucket at https://ooni-data.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open Observatory of Network Interference\nName2: S3 bucket with data\nDescription: A free software, global observation network for detecting censorship, surveillance and traffic manipulation on the internet.\n\nDocumentation: https://ooni.torproject.org/about/\nContact: https://ooni.torproject.org/get-involved/\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ooni_data/index.json", "https://registry.opendata.aws/ooni/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ooni_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ooni_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ooni_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openaq_fetches.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openaq_fetches/", "public", "File Names from the AWS S3 openaq-fetches Bucket: OpenAQ: Minutely CSVs of global air quality fetched from sources all over the world", "This dataset has file information from the AWS S3 openaq-fetches bucket at https://openaq-fetches.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenAQ\nName2: Minutely CSVs of global air quality fetched from sources all over the world\nDescription: Global, aggregated physical air quality data from public data sources provided by government, research-grade and other sources. These awesome groups do the hard work of measuring these data and publicly sharing them, and our community makes them more universally-accessible to both humans and machines.\n\nDocumentation: https://openaq.org\nContact: info@openaq.org\nManagedBy: [OpenAQ](https://openaq.org)\nUpdateFrequency: Minutely\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openaq_fetches/index.json", "https://registry.opendata.aws/openaq/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openaq_fetches.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openaq_fetches&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openaq_fetches"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_opencitymodel.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_opencitymodel/", "public", "File Names from the AWS S3 opencitymodel Bucket: Open City Model (OCM): Project data files", "This dataset has file information from the AWS S3 opencitymodel bucket at https://opencitymodel.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Open City Model (OCM)\nName2: Project data files\nDescription: Open City Model is an initiative to provide cityGML data for all the buildings in the United States. By using other open datasets in conjunction with our own code and algorithms it is our goal to provide 3D geometries for every US building.\n\nDocumentation: https://github.com/opencitymodel/opencitymodel\nContact: https://github.com/opencitymodel/opencitymodel#contact\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_opencitymodel/index.json", "https://registry.opendata.aws/opencitymodel/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_opencitymodel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_opencitymodel&showErrors=false&email=", "Amazon Web Services", "awsS3Files_opencitymodel"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_openneuro_org.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_openneuro_org/", "public", "File Names from the AWS S3 openneuro.org Bucket: OpenNeuro: All datasets", "This dataset has file information from the AWS S3 openneuro.org bucket at https://openneuro.org.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenNeuro\nName2: All datasets\nDescription: OpenNeuro is a database of openly-available brain imaging data. The data are shared according to a Creative Commons CC0 license, providing a broad range of brain imaging data to researchers and citizen scientists alike. The database primarily focuses on functional magnetic resonance imaging (fMRI) data, but also includes other imaging modalities including structural and diffusion MRI, electroencephalography (EEG), and magnetoencephalograpy (MEG). OpenfMRI is a project of the [Center for Reproducible Neuroscience at Stanford University](http://reproducibility.stanford.edu). Development of the OpenNeuro resource has been funded by the National Science Foundation, National Institute of Mental Health, National Institute on Drug Abuse, and the Laura and John Arnold Foundation.\n\nDocumentation: http://openneuro.org\nContact: Support form at https://openneuro.org\nUpdateFrequency: New datasets deposited every 4-6 days\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_openneuro_org/index.json", "https://registry.opendata.aws/openneuro/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_openneuro_org.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_openneuro_org&showErrors=false&email=", "Amazon Web Services", "awsS3Files_openneuro_org"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osm_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osm_pds/", "public", "File Names from the AWS S3 osm-pds Bucket: OpenStreetMap on AWS: Imagery and metadata", "This dataset has file information from the AWS S3 osm-pds bucket at https://osm-pds.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap on AWS\nName2: Imagery and metadata\nDescription: OSM is a free, editable map of the world, created and maintained by volunteers. Regular OSM data archives are made available in Amazon S3.\n\nDocumentation: https://docs.opendata.aws/osm-pds/readme.html\nContact: https://github.com/mojodna/osm-pds-pipelines/issues\nUpdateFrequency: Data is updated weekly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osm_pds/index.json", "https://registry.opendata.aws/osm/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osm_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osm_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osm_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_osmlr.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_osmlr/", "public", "File Names from the AWS S3 osmlr Bucket: OpenStreetMap Linear Referencing: Manifest and data files", "This dataset has file information from the AWS S3 osmlr bucket at https://osmlr.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: OpenStreetMap Linear Referencing\nName2: Manifest and data files\nDescription: OSMLR a linear referencing system built on top of OpenStreetMap. OSM has great information about roads around the world and their interconnections, but it lacks the means to give a stable identifier to a stretch of roadway. OSMLR provides a stable set of numerical IDs for every 1 kilometer stretch of roadway around the world. In urban areas, OSMLR IDs are attached to each block of roadways between significant intersections.\n\nDocumentation: https://github.com/opentraffic/osmlr/blob/master/docs/intro.md\nContact: https://github.com/opentraffic/osmlr/issues\nUpdateFrequency: New data is added based on community feedback\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_osmlr/index.json", "https://registry.opendata.aws/osmlr/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_osmlr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_osmlr&showErrors=false&email=", "Amazon Web Services", "awsS3Files_osmlr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_qiime2_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_qiime2_data/", "public", "File Names from the AWS S3 qiime2-data Bucket: QIIME 2 User Tutorial Datasets: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs", "This dataset has file information from the AWS S3 qiime2-data bucket at https://qiime2-data.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: QIIME 2 User Tutorial Datasets\nName2: Rendered docs and tutorial data, as generated by https://github.com/qiime2/docs\nDescription: QIIME 2 is a powerful, extensible, and decentralized microbiome analysis package with a focus on data and analysis transparency. QIIME 2 enables researchers to start an analysis with raw DNA sequence data and finish with publication-quality figures and statistical results. This dataset contains the user docs (and related datasets) for QIIME 2.\n\nDocumentation: https://docs.qiime2.org\nContact: https://forum.qiime2.org\nManagedBy: The QIIME 2 Development Team\nUpdateFrequency: Quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_qiime2_data/index.json", "https://registry.opendata.aws/qiime2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_qiime2_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_qiime2_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_qiime2_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_safecast_opendata_public_us_east_1.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_safecast_opendata_public_us_east_1/", "public", "File Names from the AWS S3 safecast-opendata-public-us-east-1 Bucket: Safecast: Bulk exports of air and radiation measurements", "This dataset has file information from the AWS S3 safecast-opendata-public-us-east-1 bucket at https://safecast-opendata-public-us-east-1.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Safecast\nName2: Bulk exports of air and radiation measurements\nDescription: An ongoing collection of radiation and air quality measurements taken by devices involved in the Safecast project.\n\nDocumentation: https://github.com/Safecast/safecastapi/wiki/Data-Sets\nContact: https://groups.google.com/forum/#!forum/safecast-devices\nManagedBy: [Safecast](https://safecast.org/)\nUpdateFrequency: Continuous\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_safecast_opendata_public_us_east_1/index.json", "https://registry.opendata.aws/safecast/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_safecast_opendata_public_us_east_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_safecast_opendata_public_us_east_1&showErrors=false&email=", "Amazon Web Services", "awsS3Files_safecast_opendata_public_us_east_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s1_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s1_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s1-l1c/: Sentinel-1: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s1-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C\nDescription: [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1) is a pair of European radar imaging (SAR) satellites launched in 2014 and 2016. Its 6 days revisit cycle and ability to observe through clouds makes it perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. GRD data is available globally since January 2017.\n\nDocumentation: https://roda.sentinel-hub.com/sentinel-s1-l1c/GRD/readme.html\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s1_l1c/index.json", "https://registry.opendata.aws/sentinel-1/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s1_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s1_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s1_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l1c.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l1c/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l1c/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l1c/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L1C (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l1c/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l1c.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l1c&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l1c"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel_inventory_sentinel_s2_l2a.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel_inventory_sentinel_s2_l2a/", "public", "File Names from the AWS S3 sentinel-inventory Bucket with prefix=sentinel-s2-l2a/: Sentinel-2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)", "This dataset has file information from the AWS S3 sentinel-inventory bucket at https://sentinel-inventory.s3.eu-central-1.amazonaws.com/ with prefix=sentinel-s2-l2a/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-2\nName2: [S3 Inventory](https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-inventory.html#storage-inventory-contents) files for L2A (ORC and CSV)\nDescription: The [Sentinel-2 mission](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) is a land monitoring constellation of two satellites that provide high resolution optical imagery and provide continuity for the current SPOT and Landsat missions. The mission provides a global coverage of the Earth's land surface every 5 days, making the data of great use in on-going studies. L1C data are available from June 2015 globally. L2A data are available from April 2017 over wider Europe region and globally since December 2018.\n\nDocumentation: Documentation is available for [Sentinel-2 L1C](https://roda.sentinel-hub.com/sentinel-s2-l1c/readme.html) and [Sentinel-2 L2A](https://roda.sentinel-hub.com/sentinel-s2-l2a/readme.html).\nContact: https://forum.sentinel-hub.com/c/aws-sentinel\nManagedBy: [Sinergise](https://www.sinergise.com/)\nUpdateFrequency: New Sentinel data are added regularly, usually within few hours after they are available on Copernicus OpenHub.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel_inventory_sentinel_s2_l2a/index.json", "https://registry.opendata.aws/sentinel-2/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel_inventory_sentinel_s2_l2a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel_inventory_sentinel_s2_l2a&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel_inventory_sentinel_s2_l2a"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_sentinel1_slc_seasia_pds.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_sentinel1_slc_seasia_pds/", "public", "File Names from the AWS S3 sentinel1-slc-seasia-pds Bucket: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan", "This dataset has file information from the AWS S3 sentinel1-slc-seasia-pds bucket at https://sentinel1-slc-seasia-pds.s3.ap-southeast-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Sentinel-1 SLC dataset for South and Southeast Asia, Taiwan, and Japan\nName2: Public access to Sentinel-1 SLC IW scenes over South and Southeast Asia, Taiwan and Japan\nDescription: The S1 Single Look Complex (SLC) dataset contains Synthetic Aperture Radar (SAR) data in the C-Band wavelength. The SAR sensors are installed on a two-satellite (Sentinel-1A and Sentinel-1B) constellation orbiting the Earth with a combined revisit time of six days, operated by the European Space Agency. The S1 SLC data are a Level-1 product that collects radar amplitude and phase information in all-weather, day or night conditions, which is ideal for studying natural hazards and emergency response, land applications, oil spill monitoring, sea-ice conditions, and associated climate change effects.\n\nDocumentation: https://github.com/earthobservatory/sentinel1-opds/\nContact: https://github.com/earthobservatory/sentinel1-opds/\nManagedBy: [Earth Observatory of Singapore, Nanyang Technological University](https://earthobservatory.sg)\nUpdateFrequency: S1 SLC data for the region of interest will be updated regularly, as it becomes available on the Alaska Satellite Facility endpoint.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_sentinel1_slc_seasia_pds/index.json", "https://registry.opendata.aws/sentinel1-slc-seasia-pds/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_sentinel1_slc_seasia_pds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_sentinel1_slc_seasia_pds&showErrors=false&email=", "Amazon Web Services", "awsS3Files_sentinel1_slc_seasia_pds"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_silo_open_data.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_silo_open_data/", "public", "File Names from the AWS S3 silo-open-data Bucket: SILO climate data on AWS: SILO open data", "This dataset has file information from the AWS S3 silo-open-data bucket at https://silo-open-data.s3.ap-southeast-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SILO climate data on AWS\nName2: SILO open data\nDescription: [SILO](https://www.longpaddock.qld.gov.au/silo) is a database of Australian [climate data](https://www.longpaddock.qld.gov.au/silo/about/climate-variables) from 1889 to the present. It provides continuous, daily time-step [data products](https://www.longpaddock.qld.gov.au/silo/about/data-products) in ready-to-use [formats](https://www.longpaddock.qld.gov.au/silo/about/file-formats-and-samples) for research and operational applications. Gridded SILO data in annual NetCDF format are on AWS. Point data are available from the [SILO website](https://www.longpaddock.qld.gov.au/silo/).\n\nDocumentation: https://www.longpaddock.qld.gov.au/silo/gridded-data\nContact: https://www.longpaddock.qld.gov.au/silo/contact-us\nManagedBy: Queensland Government\nUpdateFrequency: Daily\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_silo_open_data/index.json", "https://registry.opendata.aws/silo/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_silo_open_data.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_silo_open_data&showErrors=false&email=", "Amazon Web Services", "awsS3Files_silo_open_data"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_softwareheritage.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_softwareheritage/", "public", "File Names from the AWS S3 softwareheritage Bucket: Software Heritage Graph Dataset: Software Heritage Graph Dataset", "This dataset has file information from the AWS S3 softwareheritage bucket at https://softwareheritage.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Software Heritage Graph Dataset\nName2: Software Heritage Graph Dataset\nDescription: [Software Heritage](https://www.softwareheritage.org/) is the largest existing public archive of software source code and accompanying development history. The Software Heritage Graph Dataset is a fully deduplicated Merkle DAG representation of the Software Heritage archive.\n\nDocumentation: https://wiki.softwareheritage.org/wiki/Graph_Dataset_on_Amazon_Athena\nContact: swh-devel@inria.fr\nUpdateFrequency: Data is updated yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_softwareheritage/index.json", "https://registry.opendata.aws/software-heritage/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_softwareheritage.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_softwareheritage&showErrors=false&email=", "Amazon Web Services", "awsS3Files_softwareheritage"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_spacenet_dataset.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_spacenet_dataset/", "public", "File Names from the AWS S3 spacenet-dataset Bucket: SpaceNet: Imagery and metadata in a S3 bucket", "This dataset has file information from the AWS S3 spacenet-dataset bucket at https://spacenet-dataset.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: SpaceNet\nName2: Imagery and metadata in a S3 bucket\nDescription: SpaceNet, launched in August 2016 as an open innovation project offering a repository of freely available imagery with co-registered map features. Before SpaceNet, computer vision researchers had minimal options to obtain free, precision-labeled, and high-resolution satellite imagery. Today, SpaceNet hosts datasets developed by its own team, along with data sets from projects like IARPA\u2019s Functional Map of the World (fMoW).\n\nDocumentation: https://spacenetchallenge.github.io\nContact: https://github.com/SpaceNetChallenge/utilities/issues\nManagedBy: [SpaceNet](https://spacenet.ai/)\nUpdateFrequency: New imagery and features are added quarterly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_spacenet_dataset/index.json", "https://registry.opendata.aws/spacenet/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_spacenet_dataset.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_spacenet_dataset&showErrors=false&email=", "Amazon Web Services", "awsS3Files_spacenet_dataset"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_unidata_nexrad_level2_chunks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_unidata_nexrad_level2_chunks/", "public", "File Names from the AWS S3 unidata-nexrad-level2-chunks Bucket: NEXRAD on AWS: NEXRAD Level II real-time data", "This dataset has file information from the AWS S3 unidata-nexrad-level2-chunks bucket at https://unidata-nexrad-level2-chunks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: NEXRAD on AWS\nName2: NEXRAD Level II real-time data\nDescription: Real-time and archival data from the Next Generation Weather Radar (NEXRAD) network.\n\nDocumentation: https://docs.opendata.aws/noaa-nexrad/readme.html\nContact: noaa.bdp@noaa.gov\nManagedBy: [NOAA](https://www.noaa.gov/)\nUpdateFrequency: New Level II data is added as soon as it is available.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_unidata_nexrad_level2_chunks/index.json", "https://registry.opendata.aws/noaa-nexrad/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_unidata_nexrad_level2_chunks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_unidata_nexrad_level2_chunks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_unidata_nexrad_level2_chunks"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_usgs_lidar_public.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_usgs_lidar_public/", "public", "File Names from the AWS S3 usgs-lidar-public Bucket: USGS 3DEP LiDAR Point Clouds: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.", "This dataset has file information from the AWS S3 usgs-lidar-public bucket at https://usgs-lidar-public.s3.us-west-2.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: USGS 3DEP LiDAR Point Clouds\nName2: Public access Entwine Point Tiles of most resources from the ``arn:aws:s3:::usgs-lidar`` bucket.\nDescription: The goal of the [USGS 3D Elevation Program ](https://www.usgs.gov/core-science-systems/ngp/3dep) (3DEP) is to collect elevation data in the form of light detection and ranging (LiDAR) data over the conterminous United States, Hawaii, and the U.S. territories, with data acquired over an 8-year period. This dataset provides two realizations of the 3DEP point cloud data. The first resource is a public access organization provided in [Entwine Point Tiles](https://entwine.io/entwine-point-tile.html) format, which a lossless, full-density, streamable octree based on [LASzip](https://laszip.org) (LAZ) encoding. The second resource is a [Requester Pays](https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html) of the same data in LAZ (Compressed LAS) format. Resource names in both buckets correspond to the USGS project names.\n\nDocumentation: https://github.com/hobu/usgs-lidar/\nContact: https://github.com/hobu/usgs-lidar\nManagedBy: [Hobu, Inc.](https://hobu.co)\nUpdateFrequency: Periodically\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_usgs_lidar_public/index.json", "https://registry.opendata.aws/usgs-lidar/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_usgs_lidar_public.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_usgs_lidar_public&showErrors=false&email=", "Amazon Web Services", "awsS3Files_usgs_lidar_public"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_web_language_models.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_web_language_models/", "public", "File Names from the AWS S3 web-language-models Bucket: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl): Parallel Corpora to/from English for all official EU languages", "This dataset has file information from the AWS S3 web-language-models bucket at https://web-language-models.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Provision of Web-Scale Parallel Corpora for Official European Languages (ParaCrawl)\nName2: Parallel Corpora to/from English for all official EU languages\nDescription: ParaCrawl is a set of large parallel corpora to/from English for all official EU languages by a broad web crawling effort. State-of-the-art methods are applied for the entire processing chain from identifying web sites with translated text all the way to collecting, cleaning and delivering parallel corpora that are ready as training data for CEF.AT and translation memories for DG Translation.\n\nDocumentation: https://paracrawl.eu/releases.html\nContact: For questions regarding the datasets contact Kenneth Heafield, email kheafiel@inf.ed.ac.uk. For reporting any issues about bitextor pipeline visit https://github.com/bitextor/bitextor/issues.\nManagedBy: [ParaCrawl](https://paracrawl.eu)\nUpdateFrequency: New data is added according to ParaCrawl release schedule.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_web_language_models/index.json", "https://registry.opendata.aws/paracrawl/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_web_language_models.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_web_language_models&showErrors=false&email=", "Amazon Web Services", "awsS3Files_web_language_models"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_xiph_media.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_xiph_media/", "public", "File Names from the AWS S3 xiph-media Bucket: Xiph.Org Test Media: Video and imagery data", "This dataset has file information from the AWS S3 xiph-media bucket at https://xiph-media.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Xiph.Org Test Media\nName2: Video and imagery data\nDescription: Uncompressed video used for video compression and video processing research.\n\nDocumentation: https://media.xiph.org/aws.html\nContact: Thomas Daede tdaede@xiph.org\nUpdateFrequency: New videos are added when contributors submit them.\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_xiph_media/index.json", "https://registry.opendata.aws/xiph-media/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_xiph_media.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_xiph_media&showErrors=false&email=", "Amazon Web Services", "awsS3Files_xiph_media"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks", "https://upwell.pfeg.noaa.gov/erddap/tabledap/awsS3Files_ycb_benchmarks.graph", "", "https://upwell.pfeg.noaa.gov/erddap/files/awsS3Files_ycb_benchmarks/", "public", "File Names from the AWS S3 ycb-benchmarks Bucket: Yale-CMU-Berkeley (YCB) Object and Model Set: Project data files", "This dataset has file information from the AWS S3 ycb-benchmarks bucket at https://ycb-benchmarks.s3.us-east-1.amazonaws.com/ . Use ERDDAP's \"files\" system for this dataset to browse and download the files. The \"files\" information for this dataset is always perfectly up-to-date because ERDDAP gets it on-the-fly. AWS S3 doesn't offer a simple way to browse the files in their public, Open Data buckets. This dataset is a solution to that problem for this bucket.\n\nName: Yale-CMU-Berkeley (YCB) Object and Model Set\nName2: Project data files\nDescription: This project primarily aims to facilitate performance benchmarking in robotics research. The dataset provides mesh models, RGB, RGB-D and point cloud images of over 80 objects. The physical objects are also available via the [YCB benchmarking project](http://www.ycbbenchmarks.com/). The data are collected by two state of the art systems: UC Berkley's scanning rig and the Google scanner. The UC Berkley's scanning rig data provide meshes generated with Poisson reconstruction, meshes generated with volumetric range image integration, textured versions of both meshes, Kinbody files for using the meshes with OpenRAVE, 600 High-resolution RGB images, 600 RGB-D images, and 600 point cloud images for each object. The Google scanner data provides 3 meshes with different resolutions (16k, 64k, and 512k polygons), textured versions of each mesh, Kinbody files for using the meshes with OpenRAVE.\n\nDocumentation: http://www.ycbbenchmarks.com/\nContact: bcalli@wpi.edu\nUpdateFrequency: Yearly\n\ncdm_data_type = Other\nVARIABLES:\nurl\nname (File Name)\nlastModified (Last Modified, seconds since 1970-01-01T00:00:00Z)\nsize (bytes)\nfileType (File Type)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/awsS3Files_ycb_benchmarks/index.json", "https://registry.opendata.aws/ycb-benchmarks/", "http://upwell.pfeg.noaa.gov/erddap/rss/awsS3Files_ycb_benchmarks.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=awsS3Files_ycb_benchmarks&showErrors=false&email=", "Amazon Web Services", "awsS3Files_ycb_benchmarks"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders", "https://upwell.pfeg.noaa.gov/erddap/tabledap/scrippsGliders.graph", "", "", "public", "Gliders, Scripps Institution of Oceanography, 2014-present", "Spray glider data from Scripps Institution of Oceanography, Instrument Development Group. Gliders are small, free-swimming, unmanned vehicles that use changes in buoyancy to move vertically and horizontally through the water column in a saw-tooth pattern. They are deployed for days to several months and gather detailed information about the physical, chemical and biological processes of the world's oceans.\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory Name)\ninstitution\nplatform_id\nplatform_type\nwmo_id\nctd_make_model (CTD Make and Model)\nsegment_id\ntime_uv (Depth-averaged Time, seconds since 1970-01-01T00:00:00Z)\nlat_uv (Depth-averaged Latitude, degrees_north)\nlon_uv (Depth-averaged Longitude, degrees_east)\nu (Depth-averaged Eastward Sea Water Velocity, m s-1)\nv (Depth-averaged Northward Sea Water Velocity, m s-1)\nuv_qc (uv Quality Flag)\nprofile_id\nprofile_qc (Profile time, latitude, longitude Quality Flag)\ntime (Profile Time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Profile Latitude, degrees_north)\nlongitude (Profile Longitude, degrees_east)\ndepth (m)\nd_qc (depth quality flag)\npressure (Sea Water Pressure, dbar)\np_qc (pressure quality flag)\ntemperature (Sea Water Temperature, Celsius)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/scrippsGliders_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/scrippsGliders_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/scrippsGliders/index.json", "https://spray.ucsd.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/scrippsGliders.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=scrippsGliders&showErrors=false&email=", "Scripps Institution of Oceanography", "scrippsGliders"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGtsppBest.graph", "", "", "public", "Global Temperature and Salinity Profile Programme (GTSPP) Data, 1985-present", "The Global Temperature-Salinity Profile Programme (GTSPP) develops and maintains a global ocean temperature and salinity resource with data that are both up-to-date and of the highest quality. It is a joint World Meteorological Organization (WMO) and Intergovernmental Oceanographic Commission (IOC) program. It includes data from XBTs, CTDs, moored and drifting buoys, and PALACE floats. For information about organizations contributing data to GTSPP, see http://gosic.org/goos/GTSPP-data-flow.htm . The U.S. National Oceanographic Data Center (NODC) maintains the GTSPP Continuously Managed Data Base and releases new 'best-copy' data once per month.\n\nWARNING: This dataset has a *lot* of data. If you request too much data, your request will fail.\n* If you don't specify a longitude and latitude bounding box, don't request more than a month's data at a time.\n* If you do specify a longitude and latitude bounding box, you can request data for a proportionally longer time period.\nRequesting data for a specific station_id may be slow, but it works.\n\n*** This ERDDAP dataset has data for the entire world for all available times (currently, up to and including the June 2020 data) but is a subset of the original NODC 'best-copy' data. It only includes data where the quality flags indicate the data is 1=CORRECT, 2=PROBABLY GOOD, or 5=MODIFIED. It does not include some of the metadata, any of the history data, or any of the quality flag data of the original dataset. You can always get the complete, up-to-date dataset (and additional, near-real-time data) from the source: https://www.nodc.noaa.gov/GTSPP/ . Specific differences are:\n* Profiles with a position_quality_flag or a time_quality_flag other than 1|2|5 were removed.\n* Rows with a depth (z) value less than -0.4 or greater than 10000 or a z_variable_quality_flag other than 1|2|5 were removed.\n* Temperature values less than -4 or greater than 40 or with a temperature_quality_flag other than 1|2|5 were set to NaN.\n* Salinity values less than 0 or greater than 41 or with a salinity_quality_flag other than 1|2|5 were set to NaN.\n* Time values were converted from \"days since 1900-01-01 00:00:00\" to \"seconds since 1970-01-01T00:00:00\".\n\nSee the Quality Flag definitions on page 5 and \"Table 2.1: Global Impossible Parameter Values\" on page 61 of\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/GTSPP_RT_QC_Manual_20090916.pdf .\nThe Quality Flag definitions are also at\nhttps://www.nodc.noaa.gov/GTSPP/document/qcmans/qcflags.htm .\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ntrajectory (Trajectory ID)\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGtsppBest_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGtsppBest_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGtsppBest/index.json", "https://www.nodc.noaa.gov/GTSPP/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGtsppBest.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGtsppBest&showErrors=false&email=", "NOAA NODC", "erdGtsppBest"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecMoc1.graph", "", "", "public", "GLOBEC NEP MOCNESS Plankton (MOC1) Data, 2000-2002", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific) California Current Program\nMOCNESS Plankton (MOC1) Data\nThe MOCNESS is based on the Tucker Trawl principle (Tucker, 1951). The MOCNESS-1 has nine rectangular nets (1m x 1.4 m) which are opened and closed sequentially by commands through conducting cable from the surface (Wiebe et al., 1976). In MOCNESS systems, \"the underwater unit sends a data frame, comprised of temperature, depth, conductivity, net-frame angle, flow count, time, number of open net, and net opening/closing, to the deck unit in a compressed hexadecimal format every 2 seconds and from the deck unit to a microcomputer every 4 seconds... Temperature (to approximately 0.01 deg C) and conductivity are measured with SEABIRD sensors. Normally, a modified T.S.K.-flowmeter is used... Both the temperature and conductivity sensors and the flowmeter are mounted on top of the frame so that they face horizontally when the frame is at a towing angle of 45deg... Calculations of salinity (to approximately 0.01 o/oo S), potential temperature (theta), potential density (sigma), the oblique and vertical velocities of the net, and the approximate volume filtered by each net are made after each string of data has been received by the computer.\" (Wiebe et al., 1985) In addition, depending on the particular configuration of the MOCNESS-1, data may have been collected from other sensors attached to the frame : (Transmissometer, Fluorometer, Downwelling light sensor, and the Oxygen sensor). A SeaBird underwater pump was also included in the sensor suit e.\nAfter retrieval to deck, the contents of the nets were rinsed into the codends a nd transferred to storage bottles, and fixed and preserved with formalin. In the shore laboratory, the contents of the bottles were subsampled and counts and biomass estimates made for selected taxa (see the Proc_Protocol info below). This data object reports only the count information.\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10182&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/MOC1%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/MOC1.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecMoc1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecMoc1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecMoc1/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecMoc1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecMoc1&showErrors=false&email=", "GLOBEC", "erdGlobecMoc1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBirds.graph", "", "", "public", "GLOBEC NEP Northern California Current Bird Data NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Bird Data from R/V New Horizon cruises NH0005 and 0007.\n\nAs a part of the GLOBEC-Northeast Pacific project, we investigated variation in the abundance of marine birds in the context of biological and physical habitat conditions in the northern portion of the California Current System (CCS) during cruises during the upwelling season 2000. Continuous surveys of seabirds were conducted simultaneously in June (onset of upwelling) and August (mature phase of upwelling).\n\nSeabird surveys were conducted continuously during daylight, using a 300-m-wide transect strip. Within that strip, birds were counted that occurred within the 90 degree quadrant off the ship's bow that offered the best observation conditions.\n\nObserved counts of seabirds recorded as flying in a steady direction were adjusted for the effect of flight speed and direction relative to that of the ship (Spear et al., 1992; Spear and Ainley, 1997b). The effect of such flux is the most serious bias encountered during seabird surveys at sea (Spear et al., 2005). Known as random directional movement (as opposed to nonrandom directional movement, which occurs when birds are attracted or repelled from the survey vessel), this problem usually results in density overestimation because most species fly faster than survey vessels; densities of birds that fly slower or at a similar speed as the survey vessel (e.g., storm-petrels), or are flying in the same direction, are usually underestimated (Spear et al., 1992)\n\n(extracted from: David G. Ainley, Larry B. Spear, Cynthia T. Tynan, John A. Barth, Stephen D. Pierce, R. Glenn Ford and Timothy J. Cowles, 2005. Physical and biological variables affecting seabird distributions during the upwelling season of the northern California Current. Deep Sea Research Part II: Topical Studies in Oceanography, Volume 52, Issues 1-2, January 2005, Pages 123-143)\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10053&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/birds%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/birds.html0%7D\n\nContact:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrans_no (Transect Number)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBirds_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBirds_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBirds/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBirds.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBirds&showErrors=false&email=", "GLOBEC", "erdGlobecBirds"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecCetaceans.graph", "", "", "public", "GLOBEC NEP Northern California Current Cetacean Survey Data, NH0005, 2000-2000, 0007", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nNorthern California Current Cetacean Survey Data from R/V New Horizon cruises NH0005 and 0007.\n\nLine-transect surveys of cetaceans were conducted during two cruises of the GLOBEC Northeast Pacific Northern California Current (NCC) program in 2000: May 29 -June 13 and July 27 - August 12. Surveys were conducted across the shelf and slope off Oregon and northern California (41.9 - 44.65N) from the coast to ~125.5W. Surveys were conducted in passing mode while the R/V New Horizon was in transit between stations for hydrographic and zooplankton sampling. Observations were conducted from the flying bridge during daylight (~0600 to 2030) whenever sufficient visibility (i.e., > 2 nm) and weather (i.e., < Beaufort 6) allowed. Two observers simultaneously surveyed to the horizon with 25 x 150 binoculars, equipped with compass and reticle. Each observer surveyed a 100 degree arc from 10 degrees off the bow (opposite side) to 90 degrees on their side of the ship. A third observer focused on the track-line by eye, aided with 7 x 50 hand-held binoculars. Sightings were entered immediately on a laptop computer connected to the ship's GPS system. Positions of all sightings were corrected to reflect the actual location of the cetaceans, rather than the ship's position. The height from the surface of the water to the eyes of observers on the 25 x 150 binoculars was 10.87 m.\n\nFor more information, see:\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10055&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/cetaceans%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.whoi.edu/jg/serv/globec/nep/ccs/cetaceans.html0%7D\n\nContact PIs:\nCynthia T. Tynan, ctynan@whoi.edu, Woods Hole Oceanographic Institution\nDavid G. Ainley, dainley@penguinscience.com, H.T. Harvey & Associates\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecCetaceans_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecCetaceans_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecCetaceans/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecCetaceans.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecCetaceans&showErrors=false&email=", "GLOBEC", "erdGlobecCetaceans"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecBottle.graph", "", "", "public", "GLOBEC NEP Rosette Bottle Data (2002)", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nRosette Bottle Data from New Horizon Cruise (NH0207: 1-19 August 2002).\nNotes:\nPhysical data processed by Jane Fleischbein (OSU).\nChlorophyll readings done by Leah Feinberg (OSU).\nNutrient analysis done by Burke Hales (OSU).\nSal00 - salinity calculated from primary sensors (C0,T0).\nSal11 - salinity calculated from secondary sensors (C1,T1).\nsecondary sensor pair was used in final processing of CTD data for\nmost stations because the primary had more noise and spikes. The\nprimary pair were used for cast #9, 24, 48, 111 and 150 due to\nmultiple spikes or offsets in the secondary pair.\nNutrient samples were collected from most bottles; all nutrient data\ndeveloped from samples frozen during the cruise and analyzed ashore;\ndata developed by Burke Hales (OSU).\nOperation Detection Limits for Nutrient Concentrations\nNutrient Range Mean Variable Units\nPO4 0.003-0.004 0.004 Phosphate micromoles per liter\nN+N 0.04-0.08 0.06 Nitrate+Nitrite micromoles per liter\nSi 0.13-0.24 0.16 Silicate micromoles per liter\nNO2 0.003-0.004 0.003 Nitrite micromoles per liter\nDates and Times are UTC.\n\nFor more information, see https://www.bco-dmo.org/dataset/2452\n\nInquiries about how to access this data should be directed to\nDr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise_id\n... (24 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecBottle_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecBottle_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecBottle/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecBottle.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecBottle&showErrors=false&email=", "GLOBEC", "erdGlobecBottle"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGlobecVpt.graph", "", "", "public", "GLOBEC NEP Vertical Plankton Tow (VPT) Data, 1997-2001", "GLOBEC (GLOBal Ocean ECosystems Dynamics) NEP (Northeast Pacific)\nCalifornia Current Program\nVertical Plankton Tow (VPT) Data\n\nFor more information, see\nhttp://cis.whoi.edu/science/bcodmo/dataset.cfm?id=10181&flag=view\nor\nhttp://globec.whoi.edu/jg/info/globec/nep/ccs/vpt%7Bdir=globec.whoi.edu/jg/dir/globec/nep/ccs/,data=globec.coas.oregonstate.edu/jg/serv/vpt.html0%7D\n\nAll inquiries about this data should be directed to Dr. William Peterson (bill.peterson@noaa.gov).\nInquiries about how to access this data should be directed to Dr. Hal Batchelder (hbatchelder@coas.oregonstate.edu).\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise_id\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ncast_no (Cast Number Within the Cruise)\nstation_id\nabund_m3 (Abundance, count m-3)\ncomments\ncounter_id\nd_n_flag (Day/Night Flag)\ngear_area (Mouth Area of Net, m2)\ngear_mesh (Net's Mesh Size, mm)\ngear_type\ngenus_species\nlife_stage\nlocal_code\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGlobecVpt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGlobecVpt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGlobecVpt/index.json", "https://en.wikipedia.org/wiki/Global_Ocean_Ecosystem_Dynamics", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGlobecVpt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGlobecVpt&showErrors=false&email=", "GLOBEC", "erdGlobecVpt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdGodaeSfcobs.graph", "", "", "public", "GODAE, SFCOBS - Surface Temperature Observations, 1998-present", "GODAE, SFCOBS - Surface Temperature Observations: Ship, fixed/drifting buoy, and CMAN in-situ surface temperature. Global Telecommunication System (GTS) Data.\n \nThe Global Ocean Data Assimilation Experiment (GODAE) is a practical demonstration of near-real-time, global ocean data assimilation that provides, regular, complete descriptions of the temperature, salinity and velocity structures of the ocean in support of operational oceanography, seasonal-to-decadal climate forecasts and analyses, and oceanographic research. The GODAE Monterey Server, sponsored mainly by the Office of Naval Research (ONR), is intended to be a principal node in the GODAE architecture.\n\ncdm_data_type = Point\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (Observation Time, seconds since 1970-01-01T00:00:00Z)\nob_clm (GDEM Climatological SST, degree_C)\nob_csgm (GDEM SST Climatological Variability, degree_C)\nob_glb (Global Analysis SST Estimate, degree_C)\nob_gsgm (Global Analysis SST Variability Estimate, degree_C)\nob_qc (Probability of gross error in SST)\nob_rcpt (SST observation receipt time at FNMOC, seconds since 1970-01-01T00:00:00Z)\nob_rgn (Regional Analysis SST Estimate, degree_C)\nob_rsgm (Regional Analysis SST Variability Estimate, degree_C)\nob_sign (SST observation call sign)\nob_sst (Sea Surface Temperature, degree_C)\nob_typ (SST obseration data type)\nob_wm (SST water mass indicator)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdGodaeSfcobs_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdGodaeSfcobs_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdGodaeSfcobs/index.json", "https://usgodae.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdGodaeSfcobs.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdGodaeSfcobs&showErrors=false&email=", "FNMOC GODAE", "erdGodaeSfcobs"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwb_water_quality.graph", "", "", "public", "Hawaii Clean Water Branch (CWB) Beach Water Quality Data", "Exposure to sewage contaminated recreational waters may cause gastrointestinal illnesses in swimmers. The State of Hawaii Department of Health (HIDOH) Clean Water Branch (CWB) monitors the waters of Hawaii's beaches for concentrations of Enterococcus, which acts as an indicator of pathogens. The CWB also uses Clostridium perfringens as a secondary tracer of sewage contamination. Results of this monitoring are evaluated using a decision rule to determine whether a beach is safe (\"Compliant\") or not safe (on \"Alert\") for swimming and other water contact activities. If a beach is found to be on \"Alert\" due to elevated indicator bacteria levels, the CWB issues public warnings and alerts and determines whether resampling of the area is necessary.\n\nUnder the U.S. BEACH Act, the State of Hawaii receives an annual grant to implement its beach monitoring program. This requires the State to conduct a monitoring and notification program that is consistent with performance criteria published by the U.S. Environmental Protection Agency (EPA) in 2002. In March 2010, the EPA approved amendments to the Hawaii Administrative Rules (HAR), Chapter 11-54, Water Quality Standards (CWB QAPrgP, HIDOH 2011, Appendix D), which revised the previous State Enterococcus criteria of a geometric mean (GM) of 7 colony-forming units (CFU) per 100 mL and a single sample maximum (SSM) of 100 CFU/100 mL to meet current EPA guidelines. The State of Hawaii now uses the EPA recommended Enterococcus GM and SSM for recreational waters consistent in the 1986 Ambient Water Quality Criteria for Bacteria. The criterion lists the GM and SSM for marine waters as 35 CFU/100 mL and 104 CFU/100 mL, respectively.\n\nThe CWB utilizes Clostridium perfringens as a secondary tracer in addition to the Enterococcus indicator to help distinguish between sewage and non-sewage sources of elevated Enterococcus levels in marine coastal waters. The reliability of Enterococcus as an indicator organism in tropical environments has been questioned. This issue was formally documented in the report, Tropical Water Quality Indicator Workshop (Fujioka and Byappanahalli, 2003).\n\nOne of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours. As a result, the public finds out today when they shouldn't have gone in the water yesterday. As a result, warning signs on the beach may or may not be reflective of actual water quality because they are based on tests performed one or more days ago.\n\nBeach Monitoring Quality Assurance Project Plan (CWBMONQAPP002):\nhttps://www.pacioos.hawaii.edu/wp-content/uploads/2016/08/Beach_Monitoring_QAPP_CWBMONQAPP002_120507.pdf\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwb_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwb_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwb_water_quality/index.json", "http://www.beachapedia.org/State_of_the_Beach/State_Reports/HI/Water_Quality", "http://upwell.pfeg.noaa.gov/erddap/rss/cwb_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwb_water_quality&showErrors=false&email=", "State of Hawaii Clean Water Branch (CWB)", "cwb_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HIMB.graph", "", "", "public", "HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii", "The Hawaii Institute of Marine Biology (HIMB) automatic weather station (AWS) records hourly measurements of precipitation, air temperature, wind speed and direction, and irradiance. Sensors include an Eppley 295-385 nm ultraviolet (UV) radiometer, a LiCor 200SZ Pyranometer, and a LiCor Quantameter (400-700 nm). The sensors are located on the roof of HIMB's Coral Reef Ecology Laboratory (Point Lab) on Moku o Loe (Coconut Island) in Kaneohe Bay on the windward (eastern) coast of Oahu in Hawaii. An accompanying sea water temperature sensor is located less than 10 m offshore of the weather station at a shallow depth of approximately 1 m.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HIMB: HIMB Weather Station: Moku o Loe (Coconut Island), Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nsea_water_temperature (water temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nwind_from_direction_std (standard deviation of wind direction (processed), degrees)\nrainfall_amount (total rainfall (processed), mm)\nshortwave_radiation (downwelling shortwave radiation (processed), W/m2)\nultraviolet_radiation (ultraviolet radiation (processed), W/m2)\nphotosynthetic_radiation (photosynthetically active radiation (processed), umol m-2 s-1)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_atn (QARTOD Attenuated Signal Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (139 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HIMB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HIMB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HIMB/index.json", "https://www.pacioos.hawaii.edu/weather/obs-mokuoloe/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HIMB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HIMB&showErrors=false&email=", "Hawaii Institute of Marine Biology (HIMB)", "AWS-HIMB"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeLisirdHistTsi.graph", "", "", "public", "Historical Total Solar Irradiance Reconstruction", "Historical Total Solar Irradiance (TSI) Reconstruction econstruction from Wang, Lean, Sheeley (ApJ, 2005). Offset -4.8178 W/m^2 to match SORCE/TIM absolute value from Kopp, Lawrence, and Rottman (Solar Phys, 2005). Extended using SORCE/TIM annual averages from 2003 onward. Computed by Greg Kopp. From the LASP Interactive Solar Irradiance Data (LISIRD) Center\n\ncdm_data_type = Other\nVARIABLES:\nyear\nirradiance (Total Solar Irradiance, W/m^2)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeLisirdHistTsi/index.json", "http://lasp.colorado.edu/lisird/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeLisirdHistTsi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeLisirdHistTsi&showErrors=false&email=", "LISIRD", "earthCubeLisirdHistTsi"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/hui_water_quality.graph", "", "", "public", "Hui O Ka Wai Ola Water Quality Data", "The goal of the Hui O Ka Wai Ola (Association Of The Living Waters) citizen-science based water quality program is to increase the capacity for monitoring water quality in Maui coastal waters by generating reliable data to assess long-term water-quality conditions and detect temporal trends. These data augment the data produced by the Hawaii Department of Health (DOH) Clean Water Branch (CWB) beach monitoring program on Maui.\n \nData are collected and analyzed every two or three weeks for physical and chemical parameters, including ocean salinity, pH, temperature, organic nutrients (nitrogen and phosphorous compounds), dissolved oxygen (DO), and total suspended sediment (TSS). Some water samples are immediately tested at mobile labs while others are processed for testing at University of Hawaii and/or other labs.\n \nUsers of these data should cite the following publication:\n \nFalinski, Kim, Dana Reed, Tova Callender, Emily Fielding, Robin Newbold, and Alana Yurkanin. (2018). Hui O Ka Wai Ola Water Quality Data [Data set]. Zenodo. \"http://doi.org/10.5281/zenodo.1173717\"\n \nFor further information, please visit:\nhttps://www.huiokawaiola.com\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nlocation_id (sampling site identifier)\nlocation_name\nsample_id (sample identifier)\nsession_id (sampling session identifier)\nwater_temperature (Celsius)\n... (12 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/hui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/hui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/hui_water_quality/index.json", "https://www.huiokawaiola.com", "http://upwell.pfeg.noaa.gov/erddap/rss/hui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=hui_water_quality&showErrors=false&email=", "Hui O Ka Wai Ola", "hui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ais.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, AIS. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nais\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nMMSI (Maritime Mobile Service Identity)\nCOG (Course Over Ground, degrees_true)\nSOG (Speed Over Ground, knots)\nROT (Rate Of Turn, degrees/min)\nHeading (degrees_true)\nNavigationStatus (Navigation Status)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ais_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ais_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ais/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ais.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ais&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ais"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_c3.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, C3.\nC3 board number 8215 (not coated) appears as board_id=32, task_id=23.\nC3 board number 771 (coated) appears as board_id=3, task_id=3. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nc3_ (C3)\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nc1_chlorophyll (Channel 1: Chlorophyll, RFU)\nc2_CDOM (Channel 2: CDOM, RFU)\nc3_phycoerythrin (Channel 3: Phycoerythrin, RFU)\npressure (?)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_c3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_c3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_c3/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_c3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_c3&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_c3"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_ctd.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, CTD. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nctd\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\ntemperature (degree_C)\npressure (dBar)\nconductivity (Sea Water Electrical Conductivity, S/m)\ndissolved_O_uncalibrated (Hz)\npractical_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_ctd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_ctd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_ctd/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_ctd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_ctd&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_ctd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_mose.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, MOSE. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nmose\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nsignificant_wave_height (Sea Surface Wave Significant Height, m)\naverage_period_all_waves (Sea Surface Swell Wave Period, s)\nperiod_between_significant_waves (Sea Surface Swell Wave Period, s)\ndirection_of_significant_waves (Sea Surface Wave To Direction, degrees_true)\nnumber_averaged_spectra\nnumber_samples_per_spectrum\nnumber_sample_gaps\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_mose_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_mose_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_mose/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_mose.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_mose&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_mose"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_phytoflash.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Phytoflash. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nboard_id\ntask_id\nphytoflash\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nunix_timestamp (seconds since 1970-01-01T00:00:00Z)\nFo\nFm\nBlank\nFv\nYield\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_phytoflash_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_phytoflash_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_phytoflash/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_phytoflash.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_phytoflash&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_phytoflash"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_telemetry.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Telemetry. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\ntelemetry\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndistance_over_ground (m)\ndesired_heading (degrees)\nsub_heading (degrees)\ntarget_waypoint\nsub_temperature (degree_C)\ntotal_power (mWh)\nwater_speed (knots)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_telemetry_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_telemetry_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_telemetry/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_telemetry.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_telemetry&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_telemetry"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather", "https://upwell.pfeg.noaa.gov/erddap/tabledap/LiquidR_HBG3_2015_weather.graph", "", "", "public", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather", "Liquid Robotics Wave Glider, Honey Badger (G3), 2015, Weather. The MAGI mission is to use the Wave Glider to sample the late summer chlorophyll bloom that develops near 30\u00b0N, with the goal of using the camera and LISST-Holo to try to identify species in the blooms and then follow the development of phytoplankton aggregates. These aggregates have recently been shown to be a significant part of the total amount of carbon that sinks to the deep sea. Karl et al (2012) found that in each of the past 13 years, there was a flux of material to 4,000 m (the summer export pulse) that represented ~20% of the total annual flux. Work based on satellite ocean color data over the past decade has revealed the existence of large phytoplankton blooms in the Pacific Ocean that cover thousands of km2, persist for weeks or longer, and are often dominated by nitrogen-fixing diatom symbioses (Wilson et al. 2008). We hope to be able to examine whether this aggregation is occurring in the vast oceanic regions north and east of Hawai'i and provide a basin-scale context for the ALOHA observations. These events have proven difficult to study outside of the time series station ALOHA at Hawai'i.\n\ncdm_data_type = Trajectory\nVARIABLES:\nvehicleName (Vehicle Name)\nweather\nfeed_version\ntime (Datetime, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (degree_C)\npressure (mBar)\navg_wind_speed (Wind Speed, knots)\nstd_dev_wind_speed (Wind Speed, knots)\navg_wind_direction (Wind From Direction, degrees_true)\nstd_dev_wind_direction (Wind From Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/LiquidR_HBG3_2015_weather_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/LiquidR_HBG3_2015_weather_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/LiquidR_HBG3_2015_weather/index.json", "https://oceanview.pfeg.noaa.gov/MAGI/", "http://upwell.pfeg.noaa.gov/erddap/rss/LiquidR_HBG3_2015_weather.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=LiquidR_HBG3_2015_weather&showErrors=false&email=", "Liquid Robotics, UT Austin, NOAA NMFS SWFSC ERD", "LiquidR_HBG3_2015_weather"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality", "https://upwell.pfeg.noaa.gov/erddap/tabledap/maui_water_quality.graph", "", "", "public", "Maui Citizen Science Coastal Water Quality Data", "A network of citizen science volunteers periodically monitored water quality at several beaches across the island of Maui in the State of Hawaii during the years 2010-2016. This community-based monitoring effort provided valuable data for resource management purposes. Informed volunteer networks can serve as a community's \"eyes and ears\" and will often provide the first indications of changes to a system. In addition to the value of early detection, it is important to maintain ongoing monitoring efforts to compile data and document resource conditions.\n\nIn addition to water temperature, salinity, turbidity (water clarity), and pH, sampling sites were also monitored for harmful bacteria levels of Enterococcus through 2014-06-26. This indicator bacteria has been correlated with the presence of human pathogens (disease-causing organisms) and therefore with human illnesses such as gastroenteritis, diarrhea, and various infections in epidemiological studies. As such, it is commonly measured in beach water quality monitoring programs. For reference, the U.S. Environmental Protection Agency (EPA) 1986 Ambient Water Quality Criteria for Bacteria recommends that a water quality alert is posted if either: (a.) the latest water sample exceeds 104 CFU/100 mL of Enterococcus, or (b.) the geometric mean of the past 30 days of water samples exceeds 35 CFU/100 mL. One of the limitations of all available and EPA-approved test methods is that the sample must be incubated for about 24 hours.\n\nData were managed through an online repository, the Coral Reef Monitoring Data Portal (now defunct), developed and coordinated by the Coral Reef Alliance (CORAL) and its partners with funding provided by the Hawaii Tourism Authority (HTA) and the National Oceanic and Atmospheric Administration (NOAA). Data collection was coordinated by the Hawaii Division of Aquatic Resources (DAR), the Hawaiian Islands Humpback Whale National Marine Sanctuary (HIHWNMS), Aquanimity Now, the Digital Bus, Save Honolua Coalition, Project S.E.A.-Link, and other local organizations and agencies. Data are publicly distributed by the Pacific Islands Ocean Observing System (PacIOOS).\n\ncdm_data_type = Point\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\n... (9 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/maui_water_quality_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/maui_water_quality_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/maui_water_quality/index.json", "https://coral.org/maui/", "http://upwell.pfeg.noaa.gov/erddap/rss/maui_water_quality.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=maui_water_quality&showErrors=false&email=", "Coral Reef Alliance (CORAL)", "maui_water_quality"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/cwwcNDBCMet.graph", "", "", "public", "NDBC Standard Meteorological Buoy Data, 1970-present", "The National Data Buoy Center (NDBC) distributes meteorological data from\nmoored buoys maintained by NDBC and others. Moored buoys are the weather\nsentinels of the sea. They are deployed in the coastal and offshore waters\nfrom the western Atlantic to the Pacific Ocean around Hawaii, and from the\nBering Sea to the South Pacific. NDBC's moored buoys measure and transmit\nbarometric pressure; wind direction, speed, and gust; air and sea\ntemperature; and wave energy spectra from which significant wave height,\ndominant wave period, and average wave period are derived. Even the\ndirection of wave propagation is measured on many moored buoys. See\nhttps://www.ndbc.noaa.gov/measdes.shtml for a description of the measurements.\n\nThe source data from NOAA NDBC has different column names, different units,\nand different missing values in different files, and other problems\n(notably, lots of rows with duplicate or different values for the same time\npoint). This dataset is a standardized, reformatted, and lightly edited\nversion of that source data, created by NOAA NMFS SWFSC ERD (email:\nerd.data at noaa.gov). Before 2020-01-29, this dataset only had the data\nthat was closest to a given hour, rounded to the nearest hour. Now, this\ndataset has all of the data available from NDBC with the original time\nvalues. If there are multiple source rows for a given buoy for a given\ntime, only the row with the most non-NaN data values is kept. If there is\na gap in the data, a row of missing values is inserted (which causes a nice\ngap when the data is graphed). Also, some impossible data values are\nremoved, but this data is not perfectly clean. This dataset is now updated\nevery 5 minutes.\n\nThis dataset has both historical data (quality controlled, before\n2020-06-01T00:00:00Z) and near real time data (less quality controlled,\nwhich may change at any time, from 2020-06-01T00:00:00Z on).\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstation (Station Identifier)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/cwwcNDBCMet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/cwwcNDBCMet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/cwwcNDBCMet/index.json", "https://www.ndbc.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/cwwcNDBCMet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=cwwcNDBCMet&showErrors=false&email=", "NOAA NDBC, NOAA NMFS SWFSC ERD", "cwwcNDBCMet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/wocecpr.graph", "", "", "public", "NEFSC Continuous Plankton Recorder", "A summary for the data\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ncruise\nsample\nlatitude (degrees_north)\nlongitude (degrees_east)\nphyto_color_indx (Phytoplankton Color Index)\nmarmap_tax_code (Marmap Taxonomic Code)\nmarmap_stage_code\nabundance (per 100 cubic meters)\nlife_stage\ntaxonomic_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/wocecpr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/wocecpr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/wocecpr/index.json", "https://coastwatch.pfeg.noaa.gov/erddap", "http://upwell.pfeg.noaa.gov/erddap/rss/wocecpr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=wocecpr&showErrors=false&email=", "NEFSC", "wocecpr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNewportCtd.graph", "", "", "public", "Newport Lab CTD Casts, 1997-2008", "The Newport Hydrographic (NH) Line along 44.65\u00b0N off central Oregon was sampled seasonally during two epochs: 1961-1971 through the TENOC program and 1997-2003 through the GLOBEC Northeast Pacific Long Term Observations Program (LTOP); some observations are available for 2004 and 2005. During TENOC, the line extended 305 km offshore to 128\u00b0W, with stations 18 km apart over the continental shelf and 36 km offshore. During LTOP, the line was shorter (to 126\u00b0W) with closer station spacing over the continental shelf (9 km apart) and slope (18 km apart). LTOP cruises included biochemical sampling and underway current measurements.\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nline\ntransect\nstation\nplain_station\nproject\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_code (CTD Station Code)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\ndensity (sigma)\nfluorescence (volts)\nsalinity (Sea Water Practical Salinity, PSU)\ntemperature (degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNewportCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNewportCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNewportCtd/index.json", "http://linkinghub.elsevier.com/retrieve/pii/S0079661107001474", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNewportCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNewportCtd&showErrors=false&email=", "NWFSC", "erdNewportCtd"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ncepNinoSSTwk.graph", "", "", "public", "Nino Region Weekly SST OISST.v2", "Weekly OISST.v2 (1981-2010 base period) Ni\u00f1o 1+2 (0-10\u00b0South)(90\u00b0West-80\u00b0West) Ni\u00f1o 3 (5\u00b0North-5\u00b0South)(150\u00b0West-90\u00b0West) Ni\u00f1o 4 (5\u00b0North-5\u00b0South) (160\u00b0East-150\u00b0West) Ni\u00f1o 3.4 (5\u00b0North-5\u00b0South)(170-120\u00b0West)\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nNino1_2_sst (degrees C)\nNino1_2_ssta (Nino1+2 SST Anomaly, degrees C)\nNino3_sst (degrees C)\nNino3_ssta (Nino3 SST Anomaly, degrees C)\nNino34_sst (Nino3.4 SST, degrees C)\nNino34_ssta (Nino3.4 SST Anomaly, degrees C)\nNino4_sst (degrees C)\nNino4_ssta (Nino4 SST Anomaly, degrees C)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/ncepNinoSSTwk/index.json", "https://www.cpc.ncep.noaa.gov/data/indices/", "http://upwell.pfeg.noaa.gov/erddap/rss/ncepNinoSSTwk.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ncepNinoSSTwk&showErrors=false&email=", "NCEP", "ncepNinoSSTwk"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosATemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Air Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have air temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosATemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosATemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosATemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosATemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosATemp&showErrors=false&email=", "NOAA NOS", "nosSosATemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosBPres.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Barometric Pressure", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have barometric pressure data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nair_pressure (Barometric Pressure, millibars)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosBPres_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosBPres_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosBPres/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosBPres.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosBPres&showErrors=false&email=", "NOAA NOS", "nosSosBPres"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWLevel.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Level", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water surface height above a reference datum. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nwater_level (water_surface_height_above_reference_datum, m)\ndatum_id\nvertical_position (m)\nsigma\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWLevel_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWLevel_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWLevel/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWLevel.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWLevel&showErrors=false&email=", "NOAA NOS", "nosSosWLevel"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosWTemp.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1853-present, Water Temperature", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have water temperature data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_temperature (degree_C)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosWTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosWTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosWTemp/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosWTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosWTemp&showErrors=false&email=", "NOAA NOS", "nosSosWTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosCond.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Conductivity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have conductivity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nconductivity (Electrical Conductivity, mS cm-1)\nquality_flags\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosCond_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosCond_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosCond/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosCond.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosCond&showErrors=false&email=", "NOAA NOS", "nosSosCond"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosSosSalinity.graph", "", "", "public", "NOAA NOS SOS, EXPERIMENTAL, 1902-present, Salinity", "The NOAA NOS SOS server is part of the IOOS DIF SOS Project. The stations in this dataset have salinity data. ****These services are for testing and evaluation use only****\n\nBecause of the nature of SOS requests, requests for data MUST include constraints for the longitude, latitude, time, and/or station_id variables.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\nlatitude (degrees_north)\nstation_id\naltitude (m)\ntime (seconds since 1970-01-01T00:00:00Z)\nsensor_id\nsea_water_salinity (Sea Water Practical Salinity, PSU)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosSosSalinity_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosSosSalinity_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosSosSalinity/index.json", "https://opendap.co-ops.nos.noaa.gov/ioos-dif-sos/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosSosSalinity.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosSosSalinity&showErrors=false&email=", "NOAA NOS", "nosSosSalinity"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEDnrt.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Near Real Time", "NOAA Ship Bell M. Shimada Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEDnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEDnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEDnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEDnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEDnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEDnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTED.graph", "", "", "public", "NOAA Ship Bell M. Shimada Underway Meteorological Data, Quality Controlled", "NOAA Ship Bell M. Shimada Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTED_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTED_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTED/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTED.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTED&showErrors=false&email=", "FSU", "fsuNoaaShipWTED"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDK.graph", "", "", "public", "NOAA Ship David Starr Jordan Underway Meteorological Data, Quality Controlled", "NOAA Ship David Starr Jordan Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDK_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDK_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDK/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDK.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDK&showErrors=false&email=", "FSU", "fsuNoaaShipWTDK"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipKNBD.graph", "", "", "public", "NOAA Ship Delaware II Underway Meteorological Data, Quality Controlled", "NOAA Ship Delaware II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipKNBD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipKNBD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipKNBD/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipKNBD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipKNBD&showErrors=false&email=", "FSU", "fsuNoaaShipKNBD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEBnrt.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Near Real Time", "NOAA Ship Fairweather Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEBnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEB.graph", "", "", "public", "NOAA Ship Fairweather Underway Meteorological Data, Quality Controlled", "NOAA Ship Fairweather Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEB_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEB_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEB/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEB.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEB&showErrors=false&email=", "FSU", "fsuNoaaShipWTEB"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEOnrt.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Near Real Time", "NOAA Ship Gordon Gunter Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEO.graph", "", "", "public", "NOAA Ship Gordon Gunter Underway Meteorological Data, Quality Controlled", "NOAA Ship Gordon Gunter Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEO&showErrors=false&email=", "FSU", "fsuNoaaShipWTEO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDFnrt.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Near Real Time", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDF.graph", "", "", "public", "NOAA Ship Henry B. Bigelow Underway Meteorological Data, Quality Controlled", "NOAA Ship Henry B. Bigelow Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDF&showErrors=false&email=", "FSU", "fsuNoaaShipWTDF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEYnrt.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Near Real Time", "NOAA Ship Hi'ialakai Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEYnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEYnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEYnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEYnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEYnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEYnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEY.graph", "", "", "public", "NOAA Ship Hi'ialakai Underway Meteorological Data, Quality Controlled", "NOAA Ship Hi'ialakai Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEY/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEY&showErrors=false&email=", "FSU", "fsuNoaaShipWTEY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEU.graph", "", "", "public", "NOAA Ship Ka'imimoana Underway Meteorological Data, Quality Controlled", "NOAA Ship Ka'imimoana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (16 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEU_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEU_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEU/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEU.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEU&showErrors=false&email=", "FSU", "fsuNoaaShipWTEU"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEJ.graph", "", "", "public", "NOAA Ship McArthurII Underway Meteorological Data, Quality Controlled", "NOAA Ship McArthur II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEJ&showErrors=false&email=", "FSU", "fsuNoaaShipWTEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDM.graph", "", "", "public", "NOAA Ship Miller Freeman Underway Meteorological Data, Quality Controlled", "NOAA Ship Miller Freeman Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDM_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDM_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDM/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDM.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDM&showErrors=false&email=", "FSU", "fsuNoaaShipWTDM"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTERnrt.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Near Real Time", "NOAA Ship Nancy Foster Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTERnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTERnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTERnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTERnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTERnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTERnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTER.graph", "", "", "public", "NOAA Ship Nancy Foster Underway Meteorological Data, Quality Controlled", "NOAA Ship Nancy Foster Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTER_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTER_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTER/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTER.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTER&showErrors=false&email=", "FSU", "fsuNoaaShipWTER"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDHnrt.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Near Real Time", "NOAA Ship Okeanos Explorer Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDHnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDHnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDHnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDHnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDHnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDHnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDH.graph", "", "", "public", "NOAA Ship Okeanos Explorer Underway Meteorological Data, Quality Controlled", "NOAA Ship Okeanos Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDH/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDH&showErrors=false&email=", "FSU", "fsuNoaaShipWTDH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDOnrt.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Near Real Time", "NOAA Ship Oregon II Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDOnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDOnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDOnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDOnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDOnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDOnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDO.graph", "", "", "public", "NOAA Ship Oregon II Underway Meteorological Data, Quality Controlled", "NOAA Ship Oregon II Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDO_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDO_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDO/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDO.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDO&showErrors=false&email=", "FSU", "fsuNoaaShipWTDO"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEPnrt.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Dyson Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEPnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEP.graph", "", "", "public", "NOAA Ship Oscar Dyson Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Dyson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEP&showErrors=false&email=", "FSU", "fsuNoaaShipWTEP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEEnrt.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Near Real Time", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEEnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEEnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEEnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEEnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEEnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEEnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEE.graph", "", "", "public", "NOAA Ship Oscar Elton Sette Underway Meteorological Data, Quality Controlled", "NOAA Ship Oscar Elton Sette Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEE_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEE_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEE/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEE.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEE&showErrors=false&email=", "FSU", "fsuNoaaShipWTEE"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDLnrt.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Near Real Time", "NOAA Ship Pisces Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDLnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDLnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDLnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDLnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDLnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTDLnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTDL.graph", "", "", "public", "NOAA Ship Pisces Underway Meteorological Data, Quality Controlled", "NOAA Ship Pisces Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTDL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTDL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTDL/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTDL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTDL&showErrors=false&email=", "FSU", "fsuNoaaShipWTDL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEFnrt.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Near Real Time", "NOAA Ship Rainier Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEFnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEFnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEFnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEFnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEFnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTEFnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEF.graph", "", "", "public", "NOAA Ship Rainier Underway Meteorological Data, Quality Controlled", "NOAA Ship Rainier Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEF/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEF&showErrors=false&email=", "FSU", "fsuNoaaShipWTEF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTECnrt.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Near Real Time", "NOAA Ship Ronald Brown Underway Meteorological Data (Near Real Time, updated daily) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTECnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTECnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTECnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTECnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTECnrt&showErrors=false&email=", "FSU", "fsuNoaaShipWTECnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuNoaaShipWTEC.graph", "", "", "public", "NOAA Ship Ronald Brown Underway Meteorological Data, Quality Controlled", "NOAA Ship Ronald Brown Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query. \n\"=~\" indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data. \nThe '.'s say to match any character. \nThe '*' says to match the previous character 0 or more times. \nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nairPressure (Atmospheric Pressure, millibar)\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuNoaaShipWTEC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuNoaaShipWTEC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuNoaaShipWTEC/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuNoaaShipWTEC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuNoaaShipWTEC&showErrors=false&email=", "FSU", "fsuNoaaShipWTEC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdNph.graph", "", "", "public", "North Pacific High, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\nyear\nmonth (Month (1 - 12))\nlongitude (Longitude of the Center of the NPH, degrees_east)\nlatitude (Latitude of the Center of the NPH, degrees_north)\narea (Areal Extent of the 1020 hPa Contour, km2)\nmaxSLP (Maximum Sea Level Pressure, hPa)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdNph_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdNph_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdNph/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdNph.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdNph&showErrors=false&email=", "NOAA ERD", "erdNph"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPcui.graph", "", "", "public", "North Pacific High, Pre-conditioning Cumulative Upwelling Index, 1967 - present", "Variations in large-scale atmospheric forcing influence upwelling dynamics and ecosystem productivity in the California Current System (CCS). In this paper, we characterize interannual variability of the North Pacific High over 40 years and investigate how variation in its amplitude and position affect upwelling and biology. We develop a winter upwelling \"pre-conditioning\" index and demonstrate its utility to understanding biological processes. Variation in the winter NPH can be well described by its areal extent and maximum pressure, which in turn is predictive of winter upwelling. Our winter pre-conditioning index explained 64% of the variation in biological responses (fish and seabirds). Understanding characteristics of the NPH in winter is therefore critical to predicting biological responses in the CCS.\n\ncdm_data_type = Other\nVARIABLES:\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\npcui33N (PCUI at 33N, m^3 s^-1 100m^-1)\npcui36N (PCUI at 36N, m^3 s^-1 100m^-1)\npcui39N (PCUI at 39N, m^3 s^-1 100m^-1)\npcui42N (PCUI at 42N, m^3 s^-1 100m^-1)\npcui45N (PCUI at 45N, m^3 s^-1 100m^-1)\npcui48N (PCUI at 48N, m^3 s^-1 100m^-1)\n", "", "", "https://upwell.pfeg.noaa.gov/erddap/info/erdPcui/index.json", "https://onlinelibrary.wiley.com/doi/10.1002/grl.50100/abstract", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPcui.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPcui&showErrors=false&email=", "NOAA ERD", "erdPcui"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsCA.graph", "", "", "public", "NOS CO-OPS Active Currents Data, 6-Minute", "This dataset has surface Active Currents data from NOAA NOS Center for\nOperational Oceanographic Products and Services (CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Services\n(NOS) Quality Control procedures, and do not necessarily meet the criteria and\nstandards of official NOS data. They are released for limited public use with\nappropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nCS (Current Speed, knots)\nCD (Current Direction, degrees_true)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsCA_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsCA_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsCA/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsCA.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsCA&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsCA"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMAT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Air Temperature, 6-Minute", "This dataset has Air Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMAT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMAT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMAT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMAT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMAT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMAT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMBP.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Barometric Pressure, 6-Minute", "This dataset has Barometric Pressure data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMBP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMBP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMBP/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMBP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMBP&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMBP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMC.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Conductivity, 6-Minute", "This dataset has Conductivity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMC_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMC_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMC/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMC.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMC&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMC"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRF.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Rain Fall, 6-Minute", "This dataset has Rain Fall data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRF_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRF_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRF/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRF.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRF&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRF"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMRH.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Relative Humidity, 6-Minute", "This dataset has Relative Humidity data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMRH_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMRH_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMRH/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMRH.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMRH&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMRH"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMV.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Visibility, 6-Minute", "This dataset has Visibility data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nVis (Visibility in Air, nautical_miles)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMV/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMV&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMV"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMWT.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Water Temperature, 6-Minute", "This dataset has Water Temperature data from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMWT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMWT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMWT/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMWT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMWT&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMWT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsMW.graph", "", "", "public", "NOS CO-OPS Meteorological Data, Wind, 6-Minute", "This dataset has Wind data from NOAA NOS Center for Operational Oceanographic\nProducts and Services (CO-OPS).\n\nWARNING: These preliminary data have not been subjected to the National Ocean\nServices (NOS) Quality Control procedures, and do not necessarily meet the\ncriteria and standards of official NOS data. They are released for limited\npublic use with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID= and time>=.\n* Queries USUALLY include time<= (the default end time corresponds to 'now').\n* Queries MUST be for less than 30 days worth of data.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndcp (Data Collection Platform)\n... (6 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsMW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsMW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsMW/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsMW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsMW&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsMW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTPHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, High Low Tide Prediction", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (5 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTPHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTPHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTPHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTPHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTPHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTPHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR1.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 1-Minute", "This dataset has recent, preliminary (not quality-controlled), 1-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, and time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR1/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR1&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLR6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Preliminary, 6-Minute", "This dataset has recent, preliminary (not quality-controlled), 6-minute, water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS).\n\nWARNING: These raw data have not been subjected to the National Ocean Service's\nquality control or quality assurance procedures and do not meet the criteria and\nstandards of official National Ocean Service data. They are released for limited\npublic use as preliminary data to be used only with appropriate caution.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=.\n* Queries for data USUALLY include time<=.\n* Queries MUST be for less than 30 days worth of data.\n The default time<= value corresponds to 'now'.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\n... (13 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLR6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLR6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLR6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLR6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLR6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLR6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 6-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLTP60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Tide Prediction, 60-Minute", "This dataset has High Low Tide Predictions from NOAA NOS Center for Operational\nOceanographic Products and Services (CO-OPS).\n\nThe official Tide and Tidal Current prediction tables are published annually on\nOctober 1, for the following calendar year. Tide and Tidal Current predictions\ngenerated prior to the publishing date of the official tables are subject to\nchange. The enclosed data are based upon the latest information available as of\nthe date of your request. Tide and Tidal Current predictions generated may\ndiffer from the official predictions if information for the station requested\nhas been updated since the publishing date of the official tables.\n\nWARNING:\n* Queries for data MUST include stationID=, time>= and time<=.\n Queries MUST be for less than 30 days worth of data.\n* This dataset only returns data for the MLLW (Mean Lower-Low Water) datum.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Try revising the request (e.g., a different time range).\n * The list of stations offering this data may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLTP60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLTP60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLTP60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLTP60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLTP60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLTP60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV6.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, 6-Minute", "This dataset has verified (quality-controlled), 6-minute, water level (tide)\ndata from NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\n... (4 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV6/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV6&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV6"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLVHL.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, High Low", "This dataset has verified (quality-controlled), daily, high low water level\n(tide) data from NOAA NOS Center for Operational Oceanographic Products and\nServices (CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\ntype (Designation of Water level Height)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLVHL_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLVHL_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLVHL/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLVHL.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLVHL&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLVHL"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nosCoopsWLV60.graph", "", "", "public", "NOS CO-OPS Water Level Data, Verified, Hourly", "This dataset has verified (quality-controlled), hourly, water level (tide) data\nfrom NOAA NOS Center for Operational Oceanographic Products and Services\n(CO-OPS). This is a delayed dataset, not a near-real-time dataset.\n\nWARNING:\n* Queries for data MUST include stationID=, datum=, time>=, and time<=.\n* Queries MUST be for less than 30 days worth of data.\n* Different stations support different datums.\n Use ERDDAP's Subset web page to find out which datums a given station supports.\n* The data source isn't completely reliable. If your request returns no data\n when you think it should:\n * Make sure the station you specified supports the datum you specified.\n * Try revising the request (e.g., a different datum or a different time range).\n * The list of stations offering this data (or the list of datums) may be incorrect.\n * Sometimes a station or the entire data service is unavailable.\n Wait a while and try again.\n\ncdm_data_type = TimeSeries\nVARIABLES:\nstationID (Station ID)\nstationName (Station Name)\nstate\ndateEstablished (Date Established, seconds since 1970-01-01T00:00:00Z)\nshefID (SHEF ID)\ndeployment (Deployment Designation)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndatum\nwaterLevel (Water Level, m)\nsigma (Standard Deviation of Water Level, m)\nI (Inferred Flag)\nL (Limit Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nosCoopsWLV60_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nosCoopsWLV60_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nosCoopsWLV60/index.json", "http://tidesandcurrents.noaa.gov/", "http://upwell.pfeg.noaa.gov/erddap/rss/nosCoopsWLV60.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nosCoopsWLV60&showErrors=false&email=", "NOAA NOS CO-OPS", "nosCoopsWLV60"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_flux_62fc_9a20_1432.graph", "", "", "public", "OceanSITES NTAS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_flux_62fc_9a20_1432_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_flux_62fc_9a20_1432_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_flux_62fc_9a20_1432/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_flux_62fc_9a20_1432.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_flux_62fc_9a20_1432&showErrors=false&email=", "WHOI", "ntas_flux_62fc_9a20_1432"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ntas_met_8d73_1bc1_ec8a.graph", "", "", "public", "OceanSITES NTAS surface mooring MET data", "OceanSites time-series MET data from NTAS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, 1)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ntas_met_8d73_1bc1_ec8a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ntas_met_8d73_1bc1_ec8a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ntas_met_8d73_1bc1_ec8a/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/ntas_met_8d73_1bc1_ec8a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ntas_met_8d73_1bc1_ec8a&showErrors=false&email=", "WHOI", "ntas_met_8d73_1bc1_ec8a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rama_3c15_3410_780a.graph", "", "", "public", "OceanSITES RAMA daily in-situ data", "OceanSITES daily in-situ data. OceanSITES Global Tropical Moored Buoy Array Research Moored Array for African-Asian-Australian Monsoon Analysis and Prediction (RAMA) data from Pacific Marine Environmental Laboratory (PMEL)\n\ncdm_data_type = TimeSeries\nVARIABLES:\nwmo_platform_code\nsite_code\nsite_id (OceanSITES station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (Latitude of each location, degrees_north)\nlongitude (Longitude of each location, degrees_east)\ndepcur (Depth of each measurement, meters)\nUCUR (zonal current, cm/s)\nVCUR (meridional current, cm/s)\nCSPD (current speed, cm/s)\nCSPD_QC (quality flag)\nCSPD_DM (method of data processing)\nCDIR (current direction (oceanographic convention, flowing to), degree)\nCDIR_QC (quality flag)\nCDIR_DM (method of data processing)\nTEMP (temperature, degree_Celsius)\nTEMP_QC (quality flag)\ndepth (Depth of each measurement, m)\ndeppsal (Depth of each measurement, meters)\nPSAL (salinity, PSU)\nPSAL_QC (quality flag)\nPSAL_DM (method of data processing)\ndepden (Depth of each measurement, meters)\nDEN (sigma-theta (potential density), kg/m**3)\nDEN_QC (quality flag)\n... (37 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rama_3c15_3410_780a_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rama_3c15_3410_780a_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rama_3c15_3410_780a/index.json", "https://www.pmel.noaa.gov/gtmba/", "http://upwell.pfeg.noaa.gov/erddap/rss/rama_3c15_3410_780a.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rama_3c15_3410_780a&showErrors=false&email=", "PMEL Global Tropical Moored Buoy Array", "rama_3c15_3410_780a"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_flux_9770_7f18_b314.graph", "", "", "public", "OceanSITES Stratus surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series flux data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_flux_9770_7f18_b314_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_flux_9770_7f18_b314_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_flux_9770_7f18_b314/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_flux_9770_7f18_b314.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_flux_9770_7f18_b314&showErrors=false&email=", "WHOI", "stratus_flux_9770_7f18_b314"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494", "https://upwell.pfeg.noaa.gov/erddap/tabledap/stratus_met_ab43_e62a_5494.graph", "", "", "public", "OceanSITES Stratus surface mooring MET data", "OceanSites time-series data from Stratus station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/stratus_met_ab43_e62a_5494_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/stratus_met_ab43_e62a_5494_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/stratus_met_ab43_e62a_5494/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/stratus_met_ab43_e62a_5494.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=stratus_met_ab43_e62a_5494&showErrors=false&email=", "WHOI", "stratus_met_ab43_e62a_5494"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_flux_f82f_4684_a74f.graph", "", "", "public", "OceanSITES WHOTS surface mooring fluxes calculated with Coare 3.0 algorithm", "OceanSites time-series FLUX data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nQB (sensible heat flux, W/m2)\nQH (latent heat flux, W/m2)\nQN (net heat flux, W/m2)\nQL (net longwave, W/m2)\nQS (net shortwave, W/m2)\nTAUDIR (wind stress direction, degree N)\nTAUMAG (wind stress magnitude, N/m^2)\nTSKIN (SST adjusted to skin, degree)\nWS_H (wind speed adjusted to 10m, m/s)\nQQ_H (specific humidity adjusted to 2m, g/kg)\nTA_H (air temperature adjusted to 2m, degree_C)\nTAUE (east wind stress, N/m^2)\nTAUN (north wind stress, N/m^2)\nSTABILITY (stability parameter, 1)\ndepth (depth coordinate of tskin, m)\nwmo_platform_code\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_flux_f82f_4684_a74f_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_flux_f82f_4684_a74f_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_flux_f82f_4684_a74f/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_flux_f82f_4684_a74f.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_flux_f82f_4684_a74f&showErrors=false&email=", "WHOI", "whots_flux_f82f_4684_a74f"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63", "https://upwell.pfeg.noaa.gov/erddap/tabledap/whots_met_f183_ee06_8b63.graph", "", "", "public", "OceanSITES WHOTS surface mooring MET data", "OceanSites time-series MET data from WHOTS station\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAIRT (air temperature, degree_C)\nRELH (relative humidity, percent)\nATMS (barometric pressure, millibars)\nLW (surface downwelling longwave radiation, W m-2)\nSW (shortwave radiation, W m-2)\nRAIN (precipitation rate, mm/hour)\nUWND (Wind Velocity East, meters/second)\nVWND (wind velocity north, meters/second)\nTEMP (sea temperature, degree_C)\nPSAL (sea water practical salinity, .001)\nCNDC (conductivity, S m-1)\nUCUR (Eastward Sea Water Velocity, S m-1)\nVCUR (Northward Sea Water Velocity, S m-1)\nlatitude (approximate latitude, degrees_north)\nlongitude (approximate longitude, degrees_east)\nwmo_platform_code\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/whots_met_f183_ee06_8b63_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/whots_met_f183_ee06_8b63_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/whots_met_f183_ee06_8b63/index.json", "http://uop.whoi.edu/projects/stratus", "http://upwell.pfeg.noaa.gov/erddap/rss/whots_met_f183_ee06_8b63.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=whots_met_f183_ee06_8b63&showErrors=false&email=", "WHOI", "whots_met_f183_ee06_8b63"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_PROFILERS.graph", "", "", "public", "OSMC Argo Profile data", "OSMC Argo Profile data\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\norganization_name\ncountry_name\nplatform_type_name\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nparameter_name\ndaily_obs_count\nobservation_depth\nobservation_value\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_PROFILERS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_PROFILERS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_PROFILERS/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_PROFILERS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_PROFILERS&showErrors=false&email=", "OSMC", "OSMC_PROFILERS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_flattened.graph", "", "", "public", "OSMC flattened observations from GTS", "OSMC flattened observations from GTS, providing tupled data availability\n\ncdm_data_type = Point\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (observation date, seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (wind from direction, Deg true)\nwvht (sea surface wave significant height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\nuo (eastward sea water velocity, m s-1)\nvo (northward sea water velocity, m s-1)\nwo (upward sea water velocity, m s-1)\nrainfall_rate (m s-1)\nhur (relative humidity)\nsea_water_elec_conductivity (sea water electrical conductivity, S m-1)\nsea_water_pressure (dbar)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_flattened_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_flattened_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_flattened/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_flattened.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_flattened&showErrors=false&email=", "OSMC", "OSMC_flattened"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMC_Points.graph", "", "", "public", "OSMC normalized observations from GTS", "OSMC normalized In-situ Real time GTS data\n\ncdm_data_type = Point\nVARIABLES:\nPLATFORM_CODE (Station ID)\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\nplatform\nparameter\nOBSERVATION_VALUE\nOBSERVATION_DEPTH\nCOUNTRY_NAME\norganization_name\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMC_Points_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMC_Points_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMC_Points/index.json", "https://www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMC_Points.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMC_Points&showErrors=false&email=", "OSMC", "OSMC_Points"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_PROFILES.graph", "", "", "public", "OSMC Profiles", "OSMC profiles from GTS\n\ncdm_data_type = Profile\nVARIABLES:\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\ndepth (OBSERVATION DEPTH, m)\nztmp (profile water temperature, Deg C)\nzsal (Sea Water Salinity)\nsea_water_elec_conductivity (Sea Water Electrical Conductivity, S m-1)\nsea_water_pressure (dbar)\nnorthward_sea_water_velocity (m s-1)\neastward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_PROFILES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_PROFILES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_PROFILES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_PROFILES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_PROFILES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_PROFILES"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_SURFACE_TRAJECTORY.graph", "", "", "public", "OSMC surface trajectory data", "Surface trajectory data from GTS\n\ncdm_data_type = Trajectory\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nlongitude (degrees_east)\nlatitude (degrees_north)\nobservation_depth\nsst (sea surface temperature, Deg C)\natmp (air temperature, Deg C)\nprecip (precipitation, mm)\nztmp (profile water temperature, Deg C)\nzsal (profile salinity)\nsss\nslp (sea level pressure, hPa)\nwindspd (wind speed, m/s)\nwinddir (Wind From Direction, Deg true)\nwvht (Sea Surface Wave Significant Height, m)\nwaterlevel (m)\nclouds (cloud cover, oktas)\ndewpoint (dew point temperature, Deg C)\neastward_sea_water_velocity (m s-1)\nnorthward_sea_water_velocity (m s-1)\nupward_sea_water_velocity (m s-1)\nrainfall_rate (m s-1)\nrelative_humidity\nsea_water_electrical_cond (sea water electrical conductivity, S m-1)\n... (8 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_SURFACE_TRAJECTORY_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_SURFACE_TRAJECTORY/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_SURFACE_TRAJECTORY.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_SURFACE_TRAJECTORY&showErrors=false&email=", "OSMC", "OSMCV4_DUO_SURFACE_TRAJECTORY"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES", "https://upwell.pfeg.noaa.gov/erddap/tabledap/OSMCV4_DUO_TIME_SERIES.graph", "", "", "public", "OSMC TimeSeries data", "OSMC TimeSeries data\n\ncdm_data_type = TimeSeries\nVARIABLES:\nplatform_id\nplatform_code\nplatform_type (PLATFOR TYPE)\ncountry\ntime (OBSERVATION DATE, seconds since 1970-01-01T00:00:00Z)\nobservation_depth\nsst\natmp\nprecip\nztmp\nzsal (Sea Water Salinity)\nsss (Sea Water Salinity)\nslp (Surface Air Pressure)\nwindspd\nwinddir (Wind From Direction)\nwvht (Sea Surface Wave Significant Height)\nwaterlevel\nclouds\ndewpoint\neastward_sea_water_vel\nnorthward_sea_water_vel\nupward_sea_water_vel\nrainfall_rate\nrelative_humidity\nsea_water_electrical_cond\nsea_water_pressure\nsurface_dwnwelling_lngwave\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/OSMCV4_DUO_TIME_SERIES_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/OSMCV4_DUO_TIME_SERIES_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/OSMCV4_DUO_TIME_SERIES/index.json", "www.osmc.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/OSMCV4_DUO_TIME_SERIES.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=OSMCV4_DUO_TIME_SERIES&showErrors=false&email=", "OSMC", "OSMCV4_DUO_TIME_SERIES"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001", "https://upwell.pfeg.noaa.gov/erddap/tabledap/BEACHCAM-001.graph", "", "", "public", "PacIOOS Beach Camera 001: Waikiki, Oahu, Hawaii", "A digital camera on top of the Sheraton Waikiki hotel was used to photograph the shoreline of Waikiki beach along the South Shore of the island of Oahu in the State of Hawaii. The oblique camera view presented here captures the shoreline leading southeast towards Diamond Head crater. It operated for over 4.5 years between February 5, 2009 and October 13, 2013. Capturing hourly snapshots at a set vantage point during the local daytime hours of 6:00 AM or 7:00 AM to 5:00 PM, these images are useful for tracking beach dynamics such as wave run-up, sand movement, and turbidity plumes over time. The camera was mounted on top of a 3 meter wall extending above the roof surface for a total height of 93 meters above ground level or 96 meters above mean sea level. See also BEACHCAM-002 for an alternate camera view from the same location pointing directly downwards.\n\ncdm_data_type = Other\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (m)\naboveGround (Height, m)\nurl\nname (File Name)\nsize (bytes)\nfileType (File Type)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/BEACHCAM-001_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/BEACHCAM-001_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/BEACHCAM-001/index.json", "http://www.pacioos.hawaii.edu", "http://upwell.pfeg.noaa.gov/erddap/rss/BEACHCAM-001.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=BEACHCAM-001&showErrors=false&email=", "University of Hawaii", "BEACHCAM-001"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg114_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 114: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 114.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg114_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg114_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg114_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg114_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg114_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg114_4"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_2.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 2", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 2 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_2_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_2_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_2/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_2.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_2&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_2"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_6.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 6", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 6 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_6_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_6_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_6/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_6.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_6&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_6"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_7.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 7", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 7 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_7_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_7_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_7/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_7.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_7&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_7"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_8.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 8", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 8 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_8_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_8_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_8/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_8.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_8&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_8"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg139_9.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 139: Mission 9", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 9 of SeaGlider 139.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg139_9_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg139_9_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg139_9/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg139_9.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg139_9&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg139_9"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_1.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 1", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 1 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_1/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_1"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_3.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 3", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 3 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_3_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_3_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_3/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_3.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_3&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_3"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/sg523_4.graph", "", "", "public", "PacIOOS Ocean Gliders: SeaGlider 523: Mission 4", "As a part of PacIOOS, ocean gliders provide very detailed information about the physical and chemical condition of the waters around the Hawaiian Islands. Additionally, these data get used in computer models to make predictions about currents. Ocean gliders are small, free-swimming, unmanned vehicles that can cruise the ocean for several months gathering information about the temperature, salinity, and other water properties between the surface and 1000 m depth. A pressure sensor on the glider is able to record the depth throughout the dive. Because gliders are unmanned, they communicate with scientists on land when they are at the surface using an antenna on the end of the glider. The SeaGlider autonomous underwater vehicle (AUV) was designed at the University of Washington (UW) Applied Physics Laboratory (APL). These data are taken from Mission 4 of SeaGlider 523.\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nlatitude (degrees_north)\nlongitude (degrees_east)\ntemperature (sea_water_temperature, Celsius)\nconductivity (sea_water_electrical_conductivity, S m-1)\nsalinity (sea_water_salinity, 1e-3)\ndensity (sea_water_density, kg m-3)\npressure (sea_water_pressure, dbar)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/sg523_4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/sg523_4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/sg523_4/index.json", "http://hahana.soest.hawaii.edu/seagliders/", "http://upwell.pfeg.noaa.gov/erddap/rss/sg523_4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=sg523_4&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "sg523_4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-04.graph", "", "", "public", "PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-04 is located in Hilo Bay on the east side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-04: PacIOOS Water Quality Buoy 04: Hilo Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-04_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-04_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-04/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-hilo/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-04.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-04&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-04"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05", "https://upwell.pfeg.noaa.gov/erddap/tabledap/WQB-05.graph", "", "", "public", "PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii", "The water quality buoys are part of the Pacific Islands Ocean Observing System (PacIOOS) and are designed to measure a variety of ocean parameters at fixed points. WQB-05 is located in Pelekane Bay near Kawaihae Harbor on the west side of the Big Island. Continuous sampling of this area provides a record of baseline conditions of the chemical and biological environment for comparison when there are pollution events such as storm runoff or a sewage spill.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\ndepth (Distance below mean sea level, m)\nstation_name (WQB-05: PacIOOS Water Quality Buoy 05: Pelekane Bay, Big Island, Hawaii)\ntemperature (water temperature (processed), Celsius)\nsalinity (salinity PSU (processed), 1)\nturbidity (turbidity NTU (processed), 1)\nchlorophyll (chlorophyll (processed), ug/L)\noxygen (dissolved oxygen concentration (processed), mg/L)\noxygen_saturation (dissolved oxygen saturation (processed), %)\nph (pH (processed), 1)\ntemperature_raw (water temperature (raw), Celsius)\ntemperature_dm_qd (water temperature delayed-mode quality descriptor, 0)\ntemperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\ntemperature_qc_gap (QARTOD Gap Test (processed), 0)\ntemperature_qc_syn (QARTOD Syntax Test (processed), 0)\ntemperature_qc_loc (QARTOD Location Test (processed), 0)\ntemperature_qc_rng (QARTOD Gross Range Test (processed), 0)\ntemperature_qc_clm (QARTOD Climatology Test (processed), 0)\ntemperature_qc_spk (QARTOD Spike Test (processed), 0)\ntemperature_qc_rtc (QARTOD Rate of Change Test (processed), 0)\ntemperature_qc_flt (QARTOD Flat Line Test (processed), 0)\n... (94 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/WQB-05_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/WQB-05_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/WQB-05/index.json", "https://www.pacioos.hawaii.edu/water/wqbuoy-pelekane/", "http://upwell.pfeg.noaa.gov/erddap/rss/WQB-05.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=WQB-05&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "WQB-05"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1", "https://upwell.pfeg.noaa.gov/erddap/tabledap/AWS-HNLPier1.graph", "", "", "public", "PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii", "The Pacific Islands Ocean Observing System (PacIOOS) operates a Davis Instruments automatic weather station (AWS) near the entrance to Honolulu Harbor on the leeward (western) coast of Oahu in Hawaii to aid with navigation. The station records measurements every 5 minutes of air temperature, wind speed and direction, precipitation, relative humidity, and air pressure. Sensors are located at Pier 1, installed on a tower at an elevation of 64 feet (19.5 meters) above sea level. The station is owned by the Hawaii Pilots Association (HPA). PacIOOS maintains the station and provides data access.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\naltitude (Distance above mean sea level, m)\nstation_name (AWS-HNLPier1: PacIOOS Weather Station: Honolulu Harbor Entrance, Oahu, Hawaii)\nair_temperature (air temperature (processed), Celsius)\nwind_speed (wind speed (processed), m/s)\ngust_speed (gust speed (processed), m/s)\nwind_from_direction (wind direction (processed), degrees)\nrainfall_rate (rain rate (processed), mm/h)\nrelative_humidity (relative humidity (processed), %)\nair_pressure (air pressure (processed), millibars)\nair_temperature_raw (air temperature (raw), Celsius)\nair_temperature_dm_qd (air temperature delayed-mode quality descriptor, 0)\nair_temperature_qc_agg (QARTOD Aggregate/Rollup Test (processed), 0)\nair_temperature_qc_gap (QARTOD Gap Test (processed), 0)\nair_temperature_qc_syn (QARTOD Syntax Test (processed), 0)\nair_temperature_qc_loc (QARTOD Location Test (processed), 0)\nair_temperature_qc_rng (QARTOD Gross Range Test (processed), 0)\nair_temperature_qc_clm (QARTOD Climatology Test (processed), 0)\nair_temperature_qc_spk (QARTOD Spike Test (processed), 0)\n... (92 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/AWS-HNLPier1_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/AWS-HNLPier1_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/AWS-HNLPier1/index.json", "https://www.pacioos.hawaii.edu/weather/obs-honolulu/", "http://upwell.pfeg.noaa.gov/erddap/rss/AWS-HNLPier1.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=AWS-HNLPier1&showErrors=false&email=", "Pacific Islands Ocean Observing System (PacIOOS)", "AWS-HNLPier1"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4", "https://upwell.pfeg.noaa.gov/erddap/tabledap/ChukchiSea_454a_037a_fcf4.graph", "", "", "public", "PMEL EcoFOCI Chukchi Sea profile data, 2010-2012", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Chukchi Sea. PMEL EcoFOCI data from a local source.\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nocean_dissolved_oxygen_concentration_1_mLperL (dissolved oxygen concentration 1 mL/L\r, mL/L)\nocean_dissolved_oxygen_concentration_2_mLperL (dissolved oxygen concentration 2 mL/L\r, mL/L)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\nsea_water_nutrient_bottle_number (Nutrients Niskin Bottle Number\r, number)\nsea_water_phosphate_concentration (PO4, micromoles/kg)\nsea_water_silicate_concentration (SI, micromoles/kg)\nsea_water_nitrate_concentration (NO3, micromoles/kg)\nsea_water_nitrite_concentration (NO2, micromoles/kg)\nsea_water_ammonium_concentration (NH4, micromoles/kg)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (Dissolved Oxygen Concentration 2 mMoles/kg\r, micromoles/kg)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/ChukchiSea_454a_037a_fcf4_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/ChukchiSea_454a_037a_fcf4_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/ChukchiSea_454a_037a_fcf4/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/ChukchiSea_454a_037a_fcf4.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=ChukchiSea_454a_037a_fcf4&showErrors=false&email=", "PMEL EcoFOCI", "ChukchiSea_454a_037a_fcf4"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72", "https://upwell.pfeg.noaa.gov/erddap/tabledap/arcticRescueData_e5bf_cef8_3f72.graph", "", "", "public", "PMEL EcoFOCI Early Arctic Data, 1986-1991", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Early Arctic Data, 1987 - 1991\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_sigma_t (Sigma-T, kg m-3)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/arcticRescueData_e5bf_cef8_3f72_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/arcticRescueData_e5bf_cef8_3f72_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/arcticRescueData_e5bf_cef8_3f72/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/arcticRescueData_e5bf_cef8_3f72.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=arcticRescueData_e5bf_cef8_3f72&showErrors=false&email=", "PMEL EcoFOCI", "arcticRescueData_e5bf_cef8_3f72"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066", "https://upwell.pfeg.noaa.gov/erddap/tabledap/Shelikof_line8_3695_0ada_d066.graph", "", "", "public", "PMEL EcoFOCI Shelikof Line 8 Data, 1981-open", "Pacific Marine Environmental Laboratory (PMEL) Fisheries-Oceanography Cooperative Investigations (FOCI) Shelikof Line 8 Data\n\ncdm_data_type = Profile\nVARIABLES:\nprof\nid (profile id)\ncast (cast number)\ncruise (Cruise name)\ntime (seconds since 1970-01-01T00:00:00Z)\nlongitude (station longitude, degrees_east)\nlon360 (station longitude 360, degrees_east)\nlatitude (station latitude, degrees_north)\ndepth (m)\nocean_temperature_1 (Temperature 1\r, Degree_C)\nocean_cox_salinity_1 (sea_water_practical_salinity, PSU)\nocean_chlorophyll_fluorescence_raw (Raw Chlorophyll Flourescence\r, volts)\nphotosynthetically_active_radiation (Photosynthetically Active Radiation\r, microEin cm-2 s-1)\nocean_sigma_t (Sigma-T, kg m-3)\nocean_chlorophyll_a_concentration_factoryCal (Chlorophyll a Concentration (Factory Calibration)\r, micrograms/L)\nocean_dissolved_oxygen_concentration_1_mMperkg (Dissolved Oxygen Concentration 1 mMoles/kg\r, micromoles/kg)\nocean_dissolved_oxygen_concentration_2_mMperkg (mole_concentration_of_dissolved_molecular_oxygen_in_sea_water, micromoles/kg)\nocean_dynamic_height (Dynamic Height, dynamic meters)\nocean_oxygen_saturation_1 (Oxygen Percent Saturation 1\r, percent saturation)\nocean_practical_salinity_1 (Salinity 1 (PSU PSS-78)\r, PSU)\nocean_practical_salinity_2 (Salinity 2 (PSU PSS-78)\r, PSU)\nocean_temperature_2 (Temperature 2\r, Degree_C)\nphotosynthetically_active_radiation_raw (Raw Photosynthetically Active Radiation\r, volts)\ntransmittance_percentage (Percent Light Transmittance, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/Shelikof_line8_3695_0ada_d066_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/Shelikof_line8_3695_0ada_d066_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/Shelikof_line8_3695_0ada_d066/index.json", "www.ecofoci.noaa.gov", "http://upwell.pfeg.noaa.gov/erddap/rss/Shelikof_line8_3695_0ada_d066.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=Shelikof_line8_3695_0ada_d066&showErrors=false&email=", "PMEL EcoFOCI", "Shelikof_line8_3695_0ada_d066"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDC9417nrt.graph", "", "", "public", "Research Ship Atlantic Explorer Underway Meteorological Data, Quality Controlled", "Research Ship Atlantic Explorer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDC9417nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDC9417nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDC9417nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDC9417nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDC9417nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDC9417nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQP.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQP&showErrors=false&email=", "FSU", "fsuResearchShipKAQP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAQPnrt.graph", "", "", "public", "Research Ship Atlantis Underway Meteorological Data, Quality Controlled", "Research Ship Atlantis Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAQPnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAQPnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAQPnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAQPnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAQPnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAQPnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipNEPP.graph", "", "", "public", "Research Ship Healy Underway Meteorological Data, Quality Controlled", "Research Ship Healy Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (22 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipNEPP_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipNEPP_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipNEPP/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipNEPP.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipNEPP&showErrors=false&email=", "FSU", "fsuResearchShipNEPP"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWDA7827nrt.graph", "", "", "public", "Research Ship Kilo Moana Underway Meteorological Data, Quality Controlled", "Research Ship Kilo Moana Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWDA7827nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWDA7827nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWDA7827nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWDA7827nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWDA7827nrt&showErrors=false&email=", "FSU", "fsuResearchShipWDA7827nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKCEJ.graph", "", "", "public", "Research Ship Knorr Underway Meteorological Data, Quality Controlled", "Research Ship Knorr Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (33 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKCEJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKCEJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKCEJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKCEJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKCEJ&showErrors=false&email=", "FSU", "fsuResearchShipKCEJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWCX7445nrt.graph", "", "", "public", "Research Ship Laurence M. Gould Underway Meteorological Data, Quality Controlled", "Research Ship Laurence M. Gould Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (21 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWCX7445nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWCX7445nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWCX7445nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWCX7445nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWCX7445nrt&showErrors=false&email=", "FSU", "fsuResearchShipWCX7445nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWECBnrt.graph", "", "", "public", "Research Ship Melville Underway Meteorological Data, Quality Controlled", "Research Ship Melville Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWECBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWECBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWECBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWECBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWECBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWECBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWBP3210nrt.graph", "", "", "public", "Research Ship Nathaniel B. Palmer Underway Meteorological Data, Quality Controlled", "Research Ship Nathaniel B. Palmer Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (18 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWBP3210nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWBP3210nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWBP3210nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWBP3210nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWBP3210nrt&showErrors=false&email=", "FSU", "fsuResearchShipWBP3210nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWKWBnrt.graph", "", "", "public", "Research Ship New Horizon Underway Meteorological Data, Quality Controlled", "Research Ship New Horizon Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (25 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWKWBnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWKWBnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWKWBnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWKWBnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWKWBnrt&showErrors=false&email=", "FSU", "fsuResearchShipWKWBnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWXAQ.graph", "", "", "public", "Research Ship Oceanus Underway Meteorological Data, Quality Controlled", "Research Ship Oceanus Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (29 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWXAQ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWXAQ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWXAQ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWXAQ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWXAQ&showErrors=false&email=", "FSU", "fsuResearchShipWXAQ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipWSQ2674nrt.graph", "", "", "public", "Research Ship Robert Gordon Sproul Underway Meteorological Data, Quality Controlled", "Research Ship Robert Gordon Sproul Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (7 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipWSQ2674nrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipWSQ2674nrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipWSQ2674nrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipWSQ2674nrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipWSQ2674nrt&showErrors=false&email=", "FSU", "fsuResearchShipWSQ2674nrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKAOUnrt.graph", "", "", "public", "Research Ship Roger Revelle Underway Meteorological Data, Quality Controlled", "Research Ship Roger Revelle Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (20 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKAOUnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKAOUnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKAOUnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKAOUnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKAOUnrt&showErrors=false&email=", "FSU", "fsuResearchShipKAOUnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipVLHJ.graph", "", "", "public", "Research Ship Southern Surveyor Underway Meteorological Data, Quality Controlled", "Research Ship Southern Surveyor Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (27 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipVLHJ_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipVLHJ_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipVLHJ/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipVLHJ.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipVLHJ&showErrors=false&email=", "FSU", "fsuResearchShipVLHJ"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipKTDQnrt.graph", "", "", "public", "Research Ship T. G. Thompson Underway Meteorological Data, Quality Controlled", "Research Ship T. G. Thompson Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipKTDQnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipKTDQnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipKTDQnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipKTDQnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipKTDQnrt&showErrors=false&email=", "FSU", "fsuResearchShipKTDQnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/fsuResearchShipZMFRnrt.graph", "", "", "public", "Research Ship Tangaroa Underway Meteorological Data, Quality Controlled", "Research Ship Tangaroa Underway Meteorological Data (delayed ~10 days for quality control) are from the Shipboard Automated Meteorological and Oceanographic System (SAMOS) program.\n\nIMPORTANT: ALWAYS USE THE QUALITY FLAG DATA! Each data variable's metadata includes a qcindex attribute which indicates a character number in the flag data. ALWAYS check the flag data for each row of data to see which data is good (flag='Z') and which data isn't. For example, to extract just data where time (qcindex=1), latitude (qcindex=2), longitude (qcindex=3), and airTemperature (qcindex=12) are 'good' data, include this constraint in your ERDDAP query:\n flag=~\"ZZZ........Z.*\"\nin your query.\n'=~' indicates this is a regular expression constraint.\nThe 'Z's are literal characters. In this dataset, 'Z' indicates 'good' data.\nThe '.'s say to match any character.\nThe '*' says to match the previous character 0 or more times.\n(Don't include backslashes in your query.)\nSee the tutorial for regular expressions at\nhttps://www.vogella.com/tutorials/JavaRegularExpressions/article.html\n\ncdm_data_type = Point\nVARIABLES:\ncruise_id\nexpocode\nfacility\nID\nIMO\nplatform\nplatform_version\nsite\ntime (seconds since 1970-01-01T00:00:00Z)\nlatitude (degrees_north)\nlongitude (degrees_east)\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/fsuResearchShipZMFRnrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/fsuResearchShipZMFRnrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/fsuResearchShipZMFRnrt/index.json", "https://samos.coaps.fsu.edu/html/", "http://upwell.pfeg.noaa.gov/erddap/rss/fsuResearchShipZMFRnrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=fsuResearchShipZMFRnrt&showErrors=false&email=", "FSU", "fsuResearchShipZMFRnrt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch", "https://upwell.pfeg.noaa.gov/erddap/tabledap/FED_Rockfish_Catch.graph", "", "", "public", "Rockfish Recruitment and Ecosystem Assessment Survey, Catch Data", "The Fisheries Ecology Division (FED, https://swfsc.noaa.gov/GroundfishAnalysis/) of the Southwest Fisheries Science Center (SWFSC) has conducted a midwater trawl survey off central California since 1983 with the primary goal of developing pre-recruit indices for young-of-the-year (YOY) rockfish (Sebastes spp.). The survey also samples numerous other components of the epipelagic micronekton, including other YOY groundfish (such as Pacific hake, Merluccius productus, and sanddab, Citharichthys spp ), coastal pelagic fishes (such as Pacific sardine, Sardinops sagax, and northern anchovy, Engraulis mordax) and other forage species. Additional details regarding the survey methods and results are described in Ralston et al. (2015) and Sakuma et al. (http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf). Ralston, S., J.C. Field and K.S. Sakuma. 2015. Longterm variation in a central California pelagic forage assemblage. Journal of Marine Systems 146: 26-37. https://dx.doi.org/10.1016/j.jmarsys.2014.06.013. Sakuma, K.M., J.C. Field, B.B. Marinovic, C.N. Carrion, N.J. Mantua and S. Ralston. In revision. Anomalous epipelagic micronekton assemblage patterns in the neritic waters of the California Current in spring 2015 during a period of extreme ocean conditions. CalCOFI Reports.\n\ncdm_data_type = Point\nVARIABLES:\ntime (Net-in time, seconds since 1970-01-01T00:00:00Z)\nlatitude (Net-in Latitude, degrees_north)\nlongitude (Net-in Longitude, degrees_east)\ncruise\nhaul_no (Haul Number)\nvessel\nstation (Station Number)\ncatch\nspecies_code\ncommon_name\nsci_name (Scientific name)\nspecies_group\nmaturity\nspecies_notes\n... (14 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/FED_Rockfish_Catch_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/FED_Rockfish_Catch_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/FED_Rockfish_Catch/index.json", "http://calcofi.org/publications/calcofireports/v57/Vol57-Sakuma_pages.163-183.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/FED_Rockfish_Catch.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=FED_Rockfish_Catch&showErrors=false&email=", "NOAA NMFS SWFSC FED", "FED_Rockfish_Catch"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysi.graph", "", "", "public", "RTC Carqinez YSI Archived data", "Archived CMA data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysi&showErrors=false&email=", "RTC", "rtcctdCMAysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdCMAysirt.graph", "", "", "public", "RTC Carqinez YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdCMAysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdCMAysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdCMAysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdCMAysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdCMAysirt&showErrors=false&email=", "RTC", "rtcctdCMAysirt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmet.graph", "", "", "public", "RTC MetStation Archived data", "Archived RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00c2\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nPAR_Den_2_AVG (\u00c2\u00b5mol s-1m-2)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmet/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmet&showErrors=false&email=", "RTC", "rtcmet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcmetrt.graph", "", "", "public", "RTC MetStation real time data", "Real Time RTC Met data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\nAirT_AVG (Air Temperature, degrees C)\nRH (Relative Humidity, %)\nBP_AVG (Barometric Pressure, mbar)\nSlrW_AVG (watts s-1m-2)\nPAR_Den_AVG (\u00b5mol s-1m-2)\nRain_TOT (mm)\nWS_S_WVT (m/s)\nWS_U_WVT (m/s)\nWindDir_DU_WVT (deg)\nWindDir_SDU_WVT (deg)\nWS_MAX (m/s)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcmetrt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcmetrt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcmetrt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcmetrt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcmetrt&showErrors=false&email=", "RTC", "rtcmetrt"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdSeabird.graph", "", "", "public", "RTC Seabird Archived data", "Archived RTC Seabird data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\ncond (uS/cm)\npressure (psir)\nskufa1 (V)\nskufa2 (V)\nxmis (%)\npar (microMol*m-2*s-1)\nsalinity (pss)\nsigma (kg/m3)\ninst_SN (Instrument Serial Number)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdSeabird_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdSeabird_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdSeabird/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdSeabird.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdSeabird&showErrors=false&email=", "RTC", "rtcctdSeabird"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysi.graph", "", "", "public", "RTC YSI Archived data", "Archived RTC data - unedited variable names\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysi_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysi_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysi/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysi.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysi&showErrors=false&email=", "RTC", "rtcctdRTCysi"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/rtcctdRTCysirt.graph", "", "", "public", "RTC YSI Raw data", "Test of installing ERDDAP on top of YSI output.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (seconds since 1970-01-01T00:00:00Z)\ntemperature (Water Temperature, degrees C)\nspcond (uS/cm)\ncond (uS/cm)\nresist (Ohm*cm)\nTDS (g/L)\nsalinity (ppt)\npressure (psir)\ndepth (m)\nph\nphmv (pH, mV)\nchl (ug/L)\nchlrfu (chl, RFU)\nturbid (Turbid+, NTU)\nodosat (%)\nodo (mg/L)\nbatt (battery, volts)\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/rtcctdRTCysirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/rtcctdRTCysirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/rtcctdRTCysirt/index.json", "https://sfbeams.sfsu.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/rtcctdRTCysirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=rtcctdRTCysirt&showErrors=false&email=", "RTC", "rtcctdRTCysirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy", "https://upwell.pfeg.noaa.gov/erddap/tabledap/gomoosBuoy.graph", "", "", "public", "Sensor Data from the GoMOOS SOS Server, 2000-present", "The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/gomoosBuoy_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/gomoosBuoy_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/gomoosBuoy/index.json", "https://tidesandcurrents.noaa.gov/gomoos.html", "http://upwell.pfeg.noaa.gov/erddap/rss/gomoosBuoy.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=gomoosBuoy&showErrors=false&email=", "GoMOOS", "gomoosBuoy"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/neracoosSos.graph", "", "", "public", "Sensor Data from the NERACOOS SOS Server, 2000-present", "Northeastern Regional Association of Coastal Ocean\n Observing Systems (NERACOOS) Sensor Observation Service (SOS)\n The OCEANS IE -- formally approved as an OGC Interoperability\nExperiment in December 2006 -- engages data managers and scientists\nin the Ocean-Observing community to advance their understanding and\napplication of various OGC specifications, solidify demonstrations\nfor Ocean Science application areas, harden software\nimplementations, and produce candidate OGC Best Practices documents\nthat can be used to inform the broader ocean-observing community.\n\nBecause of the nature of SOS requests, requests for data MUST\ninclude constraints for the longitude, latitude, time, and/or\nstation_id variables.\n\nInitiators: SURA (lead), Texas A&M University, MBARI, GoMOOS and\nUnidata.\n\nSpecific goals:\n* Compare Sensor Observation Service (SOS) from the OGC's Sensor\n Web Enablement (SWE) initiative to the Web Feature Service (WFS)\n as applied to ocean data in a variety of data formats including\n text files, netCDF files, relational databases, and possibly\n native sensor output; (see Experiment #1 for details)\n* Make use of semantic mediation via Semantic Web technologies to\n allow plurality of identification for source types (platforms\n and sensors) and phenomena types;\n* Test aggregation services and caching strategies to provide\n efficient queries;\n* Explore possible enhancements of THREDDS server, so that THREDDS\n resident data sources might be made available via SOS or WFS;\n\ncdm_data_type = TimeSeries\nVARIABLES:\nlongitude (degrees_east)\n... (19 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/neracoosSos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/neracoosSos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/neracoosSos/index.json", "http://www.neracoos.org/", "http://upwell.pfeg.noaa.gov/erddap/rss/neracoosSos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=neracoosSos&showErrors=false&email=", "NERACOOS", "neracoosSos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishCtd.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, CTD Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: CTD Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = TrajectoryProfile\nVARIABLES:\ncruise\n... (17 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishCtd/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishCtd&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdFedRockfishStation.graph", "", "", "public", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey, Surface Data, 1987-2015", "SWFSC FED Mid Water Trawl Juvenile Rockfish Survey: Station Information and Surface Data.\nSurveys have been conducted along the central California coast in May/June \nevery year since 1983. In 2004 the survey area was expanded to cover the \nentire coast from San Diego to Cape Mendocino. The survey samples a series \nof fixed trawl stations using a midwater trawl. The midwater trawl survey \ngear captures significant numbers of approximately 10 rockfish species during\ntheir pelagic juvenile stage (i.e., 50-150 days old), by which time annual\nreproductive success has been established. Catch-per-unit-effort data from\nthe survey are analyzed and serve as the basis for predicting future \nrecruitment to rockfish fisheries. Results for several species (e.g., \nbocaccio, chilipepper [S. goodei], and widow rockfish [S. entomelas]) have\nshown that the survey data can be useful in predicting year-class strength\nin age-based stock assessments.\n\nThe survey's data on YOY Pacific whiting has also been used in the stock\nassessment process. To assist in obtaining additional northward spatial\ncoverage of YOY Pacific whiting off Oregon and Washington, in 2001 the\nPacific Whiting Conservation Cooperative in cooperation with the NOAA NMFS\nNorthwest Fisheries Science Center began a midwater trawl survey patterned\nafter the NOAA NMFS SWFSC Fisheries Ecology Division's (FED) existing survey. \nBoth surveys work cooperatively together each year in order to resolve \ninterannual abundance patterns of YOY rockfish and Pacific whiting on a \ncoastwide basis, which provides expedient, critical information that can be \nused in the fisheries management process.\n\nThe large quantity of physical data collected during the surveys (e.g., CTD\nwith attached transimissometer and fluorometer, thermosalinometer, and ADCP)\nhave provided a better understanding of the hydrographic conditions off the\nCalifornia coast and analysis of these data have been distributed through the\npublication of NOAA NMFS Technical Memoranda.\n\nFor more information, see https://swfsc.noaa.gov/GroundfishAnalysis/ and\nhttp://www.sanctuarysimon.org/projects/project_info.php?projectID=100118\n\ncdm_data_type = Trajectory\nVARIABLES:\ncruise\n... (11 more variables)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdFedRockfishStation_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdFedRockfishStation_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdFedRockfishStation/index.json", "https://swfsc.noaa.gov/GroundfishAnalysis/", "http://upwell.pfeg.noaa.gov/erddap/rss/erdFedRockfishStation.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdFedRockfishStation&showErrors=false&email=", "NOAA SWFSC FED", "erdFedRockfishStation"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdPrdCtd.graph", "", "", "public", "SWFSC Protected Resources Division CTD Data", "Data from NOAA SWFSC Protected Resources Division (PRD).\n\ncdm_data_type = Trajectory\nVARIABLES:\ntrajectory\nship_station (Ship and Station)\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nchloro (Surface Chlorophyll, ug L-1)\nphaeo (Surface Phaeophytin, ug L-1)\nproductivity (Integrated Euphotic Zone Productivity, mg Carbon m-2 day-1)\nsst (Sea Surface Temperature, degree_C)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdPrdCtd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdPrdCtd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdPrdCtd/index.json", "https://swfsc.noaa.gov/main.aspx?Division=PRD&ParentMenuId=147&id=1221", "http://upwell.pfeg.noaa.gov/erddap/rss/erdPrdCtd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdPrdCtd&showErrors=false&email=", "NOAA SWFSC PRD", "erdPrdCtd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, 20C Isotherm Depth", "This dataset has 5-day 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Air Temperature", "This dataset has 5-day Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Currents", "This dataset has 5-day Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Sea Surface Temperature", "This dataset has 5-day Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Temperature", "This dataset has 5-day Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1977-present, Wind", "This dataset has 5-day Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Dynamic Height", "This dataset has 5-day Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Heat Content", "This dataset has 5-day Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1980-present, Position", "This dataset has 5-day Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Potential Density Anomaly", "This dataset has 5-day Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1987-present, Salinity", "This dataset has 5-day Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1988-2017, ADCP", "This dataset has 5-day Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Evaporation", "This dataset has 5-day Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Latent Heat Flux", "This dataset has 5-day Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Relative Humidity", "This dataset has 5-day Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Sensible Heat Flux", "This dataset has 5-day Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1989-present, Wind Stress", "This dataset has 5-day Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Downgoing Shortwave Radiation", "This dataset has 5-day Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1991-present, Net Shortwave Radiation", "This dataset has 5-day Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sea Surface Salinity", "This dataset has 5-day Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5daySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1992-present, Sigma-Theta", "This dataset has 5-day Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5daySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5daySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5daySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5daySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5daySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5daySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Evaporation Minus Precipitation", "This dataset has 5-day Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Heat Flux Due To Rain", "This dataset has 5-day Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1997-present, Precipitation", "This dataset has 5-day Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 1998-present, Barometric (Air) Pressure", "This dataset has 5-day Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Buoyancy Flux", "This dataset has 5-day Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Longwave Radiation", "This dataset has 5-day Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Net Longwave Radiation", "This dataset has 5-day Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTao5dayQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, 5-Day, 2000-present, Total Heat Flux", "This dataset has 5-day Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. 5-day data is an average of daily values collected during consecutive five day intervals. A minimum of 2 daily values are required to compute a 5-day average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTao5dayQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTao5dayQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTao5dayQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTao5dayQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTao5dayQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTao5dayQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, 20C Isotherm Depth", "This dataset has daily 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Air Temperature", "This dataset has daily Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Currents", "This dataset has daily Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Sea Surface Temperature", "This dataset has daily Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Temperature", "This dataset has daily Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1977-present, Wind", "This dataset has daily Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Dynamic Height", "This dataset has daily Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Heat Content", "This dataset has daily Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1980-present, Position", "This dataset has daily Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Potential Density Anomaly", "This dataset has daily Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1987-present, Salinity", "This dataset has daily Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1988-2017, ADCP", "This dataset has daily Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Evaporation", "This dataset has daily Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Latent Heat Flux", "This dataset has daily Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Relative Humidity", "This dataset has daily Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Sensible Heat Flux", "This dataset has daily Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1989-present, Wind Stress", "This dataset has daily Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Downgoing Shortwave Radiation", "This dataset has daily Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1991-present, Net Shortwave Radiation", "This dataset has daily Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sea Surface Salinity", "This dataset has daily Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1992-present, Sigma-Theta", "This dataset has daily Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDySsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDySsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDySsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDySsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDySsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDySsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Evaporation Minus Precipitation", "This dataset has daily Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Heat Flux Due To Rain", "This dataset has daily Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1997-present, Precipitation", "This dataset has daily Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 1998-present, Barometric (Air) Pressure", "This dataset has daily Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Buoyancy Flux", "This dataset has daily Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Longwave Radiation", "This dataset has daily Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Net Longwave Radiation", "This dataset has daily Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoDyQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Daily, 2000-present, Total Heat Flux", "This dataset has daily Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Daily averages are computed starting at 00:00Z and are assigned an observation 'time' of 12:00Z. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoDyQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoDyQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoDyQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoDyQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoDyQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoDyQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, 20C Isotherm Depth", "This dataset has monthly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Air Temperature", "This dataset has monthly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Currents", "This dataset has monthly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Sea Surface Temperature", "This dataset has monthly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Temperature", "This dataset has monthly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1977-present, Wind", "This dataset has monthly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Dynamic Height", "This dataset has monthly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Heat Content", "This dataset has monthly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1980-present, Position", "This dataset has monthly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Potential Density Anomaly", "This dataset has monthly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1987-present, Salinity", "This dataset has monthly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1988-2017, ADCP", "This dataset has monthly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Evaporation", "This dataset has monthly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Latent Heat Flux", "This dataset has monthly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Relative Humidity", "This dataset has monthly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Sensible Heat Flux", "This dataset has monthly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1989-present, Wind Stress", "This dataset has monthly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Downgoing Shortwave Radiation", "This dataset has monthly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1991-present, Net Shortwave Radiation", "This dataset has monthly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sea Surface Salinity", "This dataset has monthly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1992-present, Sigma-Theta", "This dataset has monthly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Evaporation Minus Precipitation", "This dataset has monthly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Heat Flux Due To Rain", "This dataset has monthly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1997-present, Precipitation", "This dataset has monthly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 1998-present, Barometric (Air) Pressure", "This dataset has monthly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Buoyancy Flux", "This dataset has monthly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Longwave Radiation", "This dataset has monthly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Net Longwave Radiation", "This dataset has monthly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoMonQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Monthly, 2000-present, Total Heat Flux", "This dataset has monthly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Monthly data is an average of daily values collected during a month. A minimum of 15 daily values are required to compute a monthly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoMonQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoMonQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoMonQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoMonQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoMonQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoMonQnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRad.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1901-present, Downgoing Shortwave Radiation", "This dataset has quarterly Downgoing Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRD_495 (Downgoing Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\nSSW_6495 (Shortwave Radiation Source)\nRDS_496 (Shortwave Radiation Standard Deviation, W/M**2)\nRDP_497 (Shortwave Radiation Peak, W/M**2)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRad_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRad_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRad/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRad.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRad&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRad"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtIso.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, 20C Isotherm Depth", "This dataset has quarterly 20C Isotherm Depth data (the depth at which the ocean temperature is 20C) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nISO_6 (20C Isotherm Depth, m)\nQI_5006 (20C Depth Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtIso_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtIso_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtIso/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtIso.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtIso&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtIso"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAirt.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Air Temperature", "This dataset has quarterly Air Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nAT_21 (Air Temperature, degree_C)\nQAT_5021 (Air Temperature Quality)\nSAT_6021 (Air Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAirt_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAirt_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAirt/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAirt.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAirt&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAirt"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtCur.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Currents", "This dataset has quarterly Currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nU_320 (Eastward Sea Water Velocity, cm s-1)\nV_321 (Northward Sea Water Velocity, cm s-1)\nCS_300 (Sea Water Velocity, cm s-1)\nCD_310 (Direction of Sea Water Velocity, degrees_true)\nQCS_5300 (Current Speed Quality)\nQCD_5310 (Current Direction Quality)\nSCS_6300 (Current Speed Source)\nCIC_7300 (Current Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtCur_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtCur_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtCur/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtCur.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtCur&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtCur"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSst.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Sea Surface Temperature", "This dataset has quarterly Sea Surface Temperature (SST) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_25 (Sea Surface Temperature, degree_C)\nQT_5025 (Sea Surface Temperature Quality)\nST_6025 (Sea Surface Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSst_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSst_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSst/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSst.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSst&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSst"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtT.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Temperature", "This dataset has quarterly Temperature data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nT_20 (Sea Water Temperature, degree_C)\nQT_5020 (Temperature Quality)\nST_6020 (Temperature Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtT_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtT_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtT/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtT.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtT&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtT"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtW.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1977-present, Wind", "This dataset has quarterly Wind data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nWU_422 (Zonal Wind, m s-1)\nWV_423 (Meridional Wind, m s-1)\nWS_401 (Wind Speed, m s-1)\nQWS_5401 (Wind Speed Quality)\nSWS_6401 (Wind Speed Source)\nWD_410 (Wind Direction, degrees_true)\nQWD_5410 (Wind Direction Quality)\nSWD_6410 (Wind Direction Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtW_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtW_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtW/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtW.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtW&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtW"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtDyn.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Dynamic Height", "This dataset has quarterly Dynamic Height data (a measure of the elevation of the sea level, calculated by integrating the specific volume anomaly of the sea water between the sea surface and 500 m depth) from the \nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDYN_13 (Dynamic Height, dyn-cm)\nQD_5013 (Dynamic Height Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtDyn_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtDyn_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtDyn/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtDyn.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtDyn&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtDyn"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtHeat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Heat Content", "This dataset has quarterly Heat Content data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nHTC_130 (Heat Content, 10**10 J m-2)\nHTC_5130 (Heat Content Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtHeat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtHeat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtHeat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtHeat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtHeat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtHeat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtPos.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1980-present, Position", "This dataset has quarterly Position data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLON_502 (Precise Longitude, degree_east)\nQX_5502 (Longitude Quality)\nLAT_500 (Precise Latitude, degree_north)\nQY_5500 (Latitude Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtPos_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtPos_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtPos/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtPos.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtPos&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtPos"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtD.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Potential Density Anomaly", "This dataset has quarterly Potential Density Anomaly (sigma-theta) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtD/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtD&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtS.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1987-present, Salinity", "This dataset has quarterly Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_8041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtS/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtS&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtAdcp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1988-2017, ADCP", "This dataset has quarterly Acoustic Doppler Current Profiler (ADCP) water currents data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. ADCP data are available only after mooring recoveries, which are scheduled on an annual basis. For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nu_1205 (Eastward Sea Water Velocity, cm/s)\nQU_5205 (Eastward Sea Water Velocity Quality)\nv_1206 (Northward Sea Water Velocity, cm/s)\nQV_5206 (Northward Sea Water Velocity Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtAdcp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtAdcp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtAdcp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtAdcp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtAdcp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtAdcp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEvap.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Evaporation", "This dataset has quarterly Evaporation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nE_250 (Evaporation, MM/HR)\nQE_5250 (Evaporation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEvap_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEvap_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEvap/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEvap.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEvap&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEvap"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQlat.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Latent Heat Flux", "This dataset has quarterly Latent Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQL_137 (Latent Heat Flux, W m-2)\nQQL_5137 (Latent Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQlat_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQlat_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQlat/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQlat.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQlat&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQlat"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRh.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Relative Humidity", "This dataset has quarterly Relative Humidity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRH_910 (Relative Humidity, percent)\nQRH_5910 (Relative Humidity Quality)\nSRH_6910 (Relative Humidity Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRh_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRh_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRh/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRh.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRh&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRh"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQsen.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Sensible Heat Flux", "This dataset has quarterly Sensible Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQS_138 (Sensible Heat Flux, W m-2)\nQQS_5138 (Sensible Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQsen_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQsen_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQsen/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQsen.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQsen&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQsen"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtTau.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1989-present, Wind Stress", "This dataset has quarterly Wind Stress data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTX_442 (Zonal Wind Stress, N/m2)\nTY_443 (Meridional Wind Stress, N/m2)\nTAU_440 (Wind Stress, N/m2)\nTD_445 (Wind Stress Direction, degrees_true)\nQTAU_5440 (Wind Stress Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtTau_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtTau_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtTau/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtTau.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtTau&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtTau"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1991-present, Net Shortwave Radiation", "This dataset has quarterly Net Shortwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSWN_1495 (Net Shortwave Radiation, W/M**2)\nQSW_5495 (Shortwave Radiation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSss.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sea Surface Salinity", "This dataset has quarterly Sea Surface Salinity data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nS_41 (Sea Water Practical Salinity, PSU)\nQS_5041 (Salinity Quality)\nSS_6041 (Salinity Source)\nSIC_7041 (Salinity Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSss_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSss_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSss/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSss.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSss&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSss"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtSsd.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1992-present, Sigma-Theta", "This dataset has quarterly Sigma-Theta (Potential Density Anomaly) data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nSTH_71 (Sigma-Theta, kg m-3)\nQST_5071 (Sigma-Theta Quality)\nSST_6071 (Sigma-Theta Source)\nDIC_7071 (Sigma-Theta Instrument Code)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtSsd_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtSsd_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtSsd/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtSsd.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtSsd&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtSsd"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtEmp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Evaporation Minus Precipitation", "This dataset has quarterly Evaporation Minus Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nEMP_251 (Evaporation Minus Precipitation, mm/hr)\nQEMP_5251 (Evaporation Minus Precipitation Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtEmp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtEmp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtEmp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtEmp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtEmp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtEmp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Heat Flux Due To Rain", "This dataset has quarterly Heat Flux Due To Rain data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQR_139 (Heat Flux Due To Rain, W m-2)\nQQR_5139 (Heat Flux Due To Rain Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtRain.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1997-present, Precipitation", "This dataset has quarterly Precipitation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nRN_485 (Precipitation, MM/HR)\nQRN_5485 (Precipitation Quality)\nSRN_6485 (Precipitation Source)\nRNS_486 (Precipitation Standard Deviation, MM/HR)\nRNP_487 (Percent Time Raining, percent)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtRain_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtRain_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtRain/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtRain.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtRain&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtRain"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBp.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 1998-present, Barometric (Air) Pressure", "This dataset has quarterly Barometric (Air) Pressure data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBP_915 (Barometric (Air) Pressure, hPa)\nQBP_5915 (Barometric (Air) Pressure Quality)\nSBP_6915 (Barometric (Air) Pressure Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBp/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBp&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtBf.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Buoyancy Flux", "This dataset has quarterly Buoyancy Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nBF_191 (Buoyancy Flux, 10**6 kg m-2 s-1)\nQBF_5191 (Buoyancy Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtBf_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtBf_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtBf/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtBf.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtBf&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtBf"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLw.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Longwave Radiation", "This dataset has quarterly Incoming Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQl_136 (Incoming Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLw_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLw_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLw/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLw.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLw&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLw"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtLwnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Net Longwave Radiation", "This dataset has quarterly Net Longwave Radiation data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nLWN_1136 (Net Longwave Radiation, W m-2)\nQLW_5136 (Longwave Radiation Quality)\nSLW_6136 (Longwave Radiation Source)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtLwnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtLwnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtLwnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtLwnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtLwnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtLwnet"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet", "https://upwell.pfeg.noaa.gov/erddap/tabledap/pmelTaoQrtQnet.graph", "", "", "public", "TAO/TRITON, RAMA, and PIRATA Buoys, Quarterly, 2000-present, Total Heat Flux", "This dataset has quarterly Total Heat Flux data from the\nTAO/TRITON (Pacific Ocean, https://www.pmel.noaa.gov/gtmba/ ),\nRAMA (Indian Ocean, https://www.pmel.noaa.gov/gtmba/pmel-theme/indian-ocean-rama ), and\nPIRATA (Atlantic Ocean, https://www.pmel.noaa.gov/gtmba/pirata/ )\narrays of moored buoys which transmit oceanographic and meteorological data to shore in real-time via the Argos satellite system. These buoys are major components of the CLIVAR climate analysis project and the GOOS, GCOS, and GEOSS observing systems. Quarterly data is an average of monthly values collected during a 3 month period. A minimum of 2 monthly values are required to compute a quarterly average. This dataset contains realtime and delayed mode data (see the 'source' variable). For more information, see\nhttps://www.pmel.noaa.gov/gtmba/mission .\n\ncdm_data_type = TimeSeries\nVARIABLES:\narray\nstation\nwmo_platform_code\nlongitude (Nominal Longitude, degrees_east)\nlatitude (Nominal Latitude, degrees_north)\ntime (Centered Time, seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nQT_210 (Total Heat Flux, W/M**2)\nQQ0_5210 (Total Heat Flux Quality)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/pmelTaoQrtQnet_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/pmelTaoQrtQnet_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/pmelTaoQrtQnet/index.json", "https://www.pmel.noaa.gov/gtmba/mission", "http://upwell.pfeg.noaa.gov/erddap/rss/pmelTaoQrtQnet.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=pmelTaoQrtQnet&showErrors=false&email=", "NOAA PMEL, TAO/TRITON, RAMA, PIRATA", "pmelTaoQrtQnet"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI216hr.graph", "", "", "public", "Upwelling Index, 21N 107W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI216hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI216hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI216hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI216hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI216hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI216hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI246hr.graph", "", "", "public", "Upwelling Index, 24N 113W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI246hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI246hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI246hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI246hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI246hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI246hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI276hr.graph", "", "", "public", "Upwelling Index, 27N 116W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI276hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI276hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI276hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI276hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI276hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI276hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI306hr.graph", "", "", "public", "Upwelling Index, 30N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI306hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI306hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI306hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI306hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI306hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI306hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI336hr.graph", "", "", "public", "Upwelling Index, 33N 119W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI336hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI336hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI336hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI336hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI336hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI336hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI366hr.graph", "", "", "public", "Upwelling Index, 36N 122W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI366hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI366hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI366hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI366hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI366hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI366hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI396hr.graph", "", "", "public", "Upwelling Index, 39N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI396hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI396hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI396hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI396hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI396hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI396hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI426hr.graph", "", "", "public", "Upwelling Index, 42N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI426hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI426hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI426hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI426hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI426hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI426hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI456hr.graph", "", "", "public", "Upwelling Index, 45N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI456hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI456hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI456hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI456hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI456hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI456hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI486hr.graph", "", "", "public", "Upwelling Index, 48N 125W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI486hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI486hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI486hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI486hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI486hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI486hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI516hr.graph", "", "", "public", "Upwelling Index, 51N 131W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI516hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI516hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI516hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI516hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI516hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI516hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI546hr.graph", "", "", "public", "Upwelling Index, 54N 134W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI546hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI546hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI546hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI546hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI546hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI546hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI576hr.graph", "", "", "public", "Upwelling Index, 57N 137W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI576hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI576hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI576hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI576hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI576hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI576hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI606hr.graph", "", "", "public", "Upwelling Index, 60N 146W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI606hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI606hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI606hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI606hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI606hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI606hr"], + ["", "", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr", "https://upwell.pfeg.noaa.gov/erddap/tabledap/erdUI616hr.graph", "", "", "public", "Upwelling Index, 60N 149W, 6-hourly", "Upwelling index computed from 1-degree FNMOC sea level pressure for 15 locations off the North American West Coast at each 3 degrees of latitude from 21N to 60N. The coastal Upwelling Index is an index of the strength of the wind forcing on the ocean which has been used in many studies of the effects of ocean variability on the reproductive and recruitment success of many fish and invertebrate species.\n\ncdm_data_type = TimeSeries\nVARIABLES:\ntime (reference time, seconds since 1970-01-01T00:00:00Z)\nupwelling_index\nstation_id\nlatitude (degrees_north)\nlongitude (degrees_east)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/erdUI616hr_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/erdUI616hr_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/erdUI616hr/index.json", "https://oceanview.pfeg.noaa.gov/LAS/docs/wind_from_pressure.nc.html", "http://upwell.pfeg.noaa.gov/erddap/rss/erdUI616hr.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=erdUI616hr&showErrors=false&email=", "NOAA/SWFSC Environmental Research Division", "erdUI616hr"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpD.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Currents Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nDataQuality (Data Quality, percent)\nDataQuality_flag (Data Quality Flag)\nEastward (Eastward Current, m s-1)\nEastward_flag\nErrorVelocity (Error Velocity, m s-1)\nErrorVelocity_flag (Error Velocity Flag)\nIntensity (count)\nIntensity_flag\nNorthward (Northward Current, m s-1)\nNorthward_flag\nUpwards (Upward Current, m s-1)\nUpwards_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpD_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpD_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpD/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpD.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpD&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpD"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosAdcpS.graph", "", "", "public", "West Coast Observing System (WCOS) ADCP Station Data, 2004-2008", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are San Miguel North (BAY), Santa Rosa North (BEA), Cuyler Harbor (CUY), Pelican/Prisoners Area (PEL), San Miguel South (SMS), Santa Rosa South (SRS), Valley Anch (VAL).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\nPressure (Sea Water Pressure, dbar)\nPressure_flag\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\nWaterDepth (Water Depth, m)\nWaterDepth_flag (Water Depth Flag)\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosAdcpS_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosAdcpS_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosAdcpS/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosAdcpS.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosAdcpS&showErrors=false&email=", "NOAA NMSP", "nmspWcosAdcpS"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp", "https://upwell.pfeg.noaa.gov/erddap/tabledap/nmspWcosTemp.graph", "", "", "public", "West Coast Observing System (WCOS) Temperature Data, 2004-2011", "The West Coast Observing System (WCOS) project provides access to temperature and currents data collected at four of the five National Marine Sanctuary sites, including Olympic Coast, Gulf of the Farallones, Monterey Bay, and Channel Islands. A semi-automated end-to-end data management system transports and transforms the data from source to archive, making the data acessible for discovery, access and analysis from multiple Internet points of entry.\n\nThe stations (and their code names) are Ano Nuevo (ANO001), San Miguel North (BAY), Santa Rosa North (BEA), Big Creek (BIG001), Bodega Head (BOD001), Cape Alava 15M (CA015), Cape Alava 42M (CA042), Cape Alava 65M (CA065), Cape Alava 100M (CA100), Cannery Row (CAN001), Cape Elizabeth 15M (CE015), Cape Elizabeth 42M (CE042), Cape Elizabeth 65M (CE065), Cape Elizabeth 100M (CE100), Cuyler Harbor (CUY), Esalen (ESA001), Point Joe (JOE001), Kalaloch 15M (KL015), Kalaloch 27M (KL027), La Cruz Rock (LAC001), Lopez Rock (LOP001), Makah Bay 15M (MB015), Makah Bay 42M (MB042), Pelican/Prisoners Area (PEL), Pigeon Point (PIG001), Plaskett Rock (PLA001), Southeast Farallon Island (SEF001), San Miguel South (SMS), Santa Rosa South (SRS), Sunset Point (SUN001), Teawhit Head 15M (TH015), Teawhit Head 31M (TH031), Teawhit Head 42M (TH042), Terrace Point 7 (TPT007), Terrace Point 8 (TPT008), Valley Anch (VAL), Weston Beach (WES001).\n\ncdm_data_type = TimeSeriesProfile\nVARIABLES:\nstation\nlongitude (degrees_east)\nlatitude (degrees_north)\ntime (seconds since 1970-01-01T00:00:00Z)\ndepth (m)\nTemperature (Sea Water Temperature, degree_C)\nTemperature_flag\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/nmspWcosTemp_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/nmspWcosTemp_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/nmspWcosTemp/index.json", "ftp://ftp.nodc.noaa.gov/nodc/archive/arc0006/0002039/1.1/about/WCOS_project_document_phaseI_20060317.pdf", "http://upwell.pfeg.noaa.gov/erddap/rss/nmspWcosTemp.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=nmspWcosTemp&showErrors=false&email=", "NOAA NMSP", "nmspWcosTemp"], + ["", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.subset", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV", "https://upwell.pfeg.noaa.gov/erddap/tabledap/earthCubeKgsBoreTempWV.graph", "", "", "public", "West Virginia Borehole Temperatures, AASG State Geothermal Data, 1936-2010", "Borehole temperature measurements in West Virginia\n\ncdm_data_type = Point\nVARIABLES:\nObservationURI (Observation URI)\nWellName (Well Name)\nAPINo\nHeaderURI (Header URI)\nLabel\nOperator\nSpudDate (Spud Date, seconds since 1970-01-01T00:00:00Z)\ntime (Ended Drilling Date, seconds since 1970-01-01T00:00:00Z)\nWellType (Well Type)\nField\nCounty\nState\nlatitude (degrees_north)\nlongitude (degrees_east)\nDrillerTotalDepth (Driller Total Depth, ft)\nDepthReferencePoint (Depth Reference Point)\nWellBoreShape (Well Bore Shape)\nTrueVerticalDepth (True Vertical Depth, ft)\nElevationGL (Elevation GL, ft)\nFormationTD (Formation TD)\nMeasuredTemperature (Measured Temperature, degree_F)\nDepthOfMeasurement (Depth Of Measurement, ft)\nMeasurementFormation (Measurement Formation)\nRelatedResource (Related Resource)\nTimeSinceCirculation (Time Since Circulation, ?)\nOtherName (Other Name)\nLeaseName (Lease Name)\nNotes\n", "https://upwell.pfeg.noaa.gov/erddap/metadata/fgdc/xml/earthCubeKgsBoreTempWV_fgdc.xml", "https://upwell.pfeg.noaa.gov/erddap/metadata/iso19115/xml/earthCubeKgsBoreTempWV_iso19115.xml", "https://upwell.pfeg.noaa.gov/erddap/info/earthCubeKgsBoreTempWV/index.json", "http://www.wvgs.wvnet.edu/", "http://upwell.pfeg.noaa.gov/erddap/rss/earthCubeKgsBoreTempWV.rss", "https://upwell.pfeg.noaa.gov/erddap/subscriptions/add.html?datasetID=earthCubeKgsBoreTempWV&showErrors=false&email=", "West Virginia Geological and Economic Survey", "earthCubeKgsBoreTempWV"] + ] + } + } + recorded_at: 2020-07-15 22:22:33 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 +- request: + method: get + uri: https://upwell.pfeg.noaa.gov/erddap/tabledap/erdCinpKfmBT.csv?longitude,latitude,Haliotis_fulgens_Mean_Density&time%3E%3D2001-07-14&units%28%22UDUNITS%22%29 + body: + encoding: '' + string: '' + headers: + User-Agent: libcurl/7.71.1 r-curl/4.3 crul/0.9.4.91 + Accept-Encoding: gzip, deflate + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: '200' + message: OK + explanation: Request fulfilled, document follows + headers: + status: 'HTTP/1.1 200 ' + date: Wed, 15 Jul 2020 22:22:33 GMT + x-frame-options: SAMEORIGIN + strict-transport-security: max-age=31536000; includeSubDomains + last-modified: Wed, 15 Jul 2020 22:22:33 GMT + xdods-server: dods/3.7 + erddap-server: '2.02' + content-disposition: attachment;filename=erdCinpKfmBT_0cf3_3e9f_46f0.csv + content-encoding: gzip + content-type: text/csv;charset=ISO-8859-1 + connection: close + transfer-encoding: chunked + body: + encoding: UTF-8 + file: yes + string: ../fixtures/587de1a3f8b8a02766c2af091a482545.csv + recorded_at: 2020-07-15 22:22:33 GMT + recorded_with: vcr/0.5.4, webmockr/0.6.2 diff --git a/vignettes/Using_rerddap.Rmd b/vignettes/Using_rerddap.Rmd index e51719e..d8f0d52 100644 --- a/vignettes/Using_rerddap.Rmd +++ b/vignettes/Using_rerddap.Rmd @@ -476,9 +476,11 @@ calcofi.df <- tabledap(hydroInfo, fields = c('cst_cnt', 'date', 'year', 'month' Both "intchl" and "intC14" are returned as character strings, and are easier to work with as numbers: ```{r calCOFInum, eval = FALSE, echo = TRUE} -calcofi.df$cruz_num <- as.numeric(calcofi.df$cruz_num) -calcofi.df$intc14 <- as.numeric(calcofi.df$intc14) -calcofi.df$time <- as.Date(calcofi.df$time, origin = '1970-01-01', tz = "GMT") +if (packageVersion('rerddap') < '1.1.0'){ + calcofi.df$cruz_num <- as.numeric(calcofi.df$cruz_num) + calcofi.df$intc14 <- as.numeric(calcofi.df$intc14) + calcofi.df$time <- as.Date(calcofi.df$time, origin = '1970-01-01', tz = "GMT") +} ``` At this point the requested data are in the R workspace - the rest of the code performs the calculations to derive the seasonally adjusted values and plot them. @@ -543,6 +545,11 @@ extract the desired CPS data: require("dplyr") require("rerddap") sardines <- tabledap(CPSinfo, fields = c('latitude', 'longitude', 'time', 'scientific_name', 'subsample_count'), 'time>=2010-01-01', 'time<=2012-01-01', 'scientific_name="Sardinops sagax"' ) +if (packageVersion('rerddap') < '1.1.0'){ + sardines$time <- as.Date(sardines$time, origin = '1970-01-01', tz = "GMT") + sardines$latitude <- as.numeric(sardines$latitude) + sardines$longitude <- as.numeric(sardines$longitude) +} sardines$time <- as.Date(sardines$time, origin = '1970-01-01', tz = "GMT") sardines$latitude <- as.numeric(sardines$latitude) sardines$longitude <- as.numeric(sardines$longitude) @@ -594,10 +601,14 @@ Also of interest is the distribution of sardines through the years: ```{r, eval = FALSE, echo = TRUE} sardinops <- tabledap(CPSinfo, fields = c('longitude', 'latitude', 'time'), 'scientific_name="Sardinops sagax"') -sardinops$time <- as.Date(sardinops$time, origin = '1970-01-01', tz = "GMT") +if (packageVersion('rerddap') < '1.1.0') { + sardinops$time <- as.Date(sardinops$time, origin = '1970-01-01', tz = "GMT") + sardinops$year <- as.factor(format(sardinops$time, '%Y')) + sardinops$latitude <- as.numeric(sardinops$latitude) + sardinops$longitude <- as.numeric(sardinops$longitude) +} sardinops$year <- as.factor(format(sardinops$time, '%Y')) -sardinops$latitude <- as.numeric(sardinops$latitude) -sardinops$longitude <- as.numeric(sardinops$longitude) + ``` ```{r sardinesPlot, eval = FALSE, echo = TRUE} @@ -623,8 +634,10 @@ NOAA's National Data Buoy Center (NDBC) collects world-wide data from buoys in t # get location and station ID of NDBC buoys in a region BuoysInfo <- info('cwwcNDBCMet') locationBuoys <- tabledap(BuoysInfo, distinct = TRUE, fields = c("station", "longitude", "latitude"), "longitude>=-124", "longitude<=-121", "latitude>=37", "latitude<=47") -locationBuoys$latitude <- as.numeric(locationBuoys$latitude) -locationBuoys$longitude <- as.numeric(locationBuoys$longitude) +if (packageVersion('rerddap') < '1.1.0') { + locationBuoys$latitude <- as.numeric(locationBuoys$latitude) + locationBuoys$longitude <- as.numeric(locationBuoys$longitude) +} ``` ```{r NDBC, eval = FALSE, echo = TRUE} @@ -646,8 +659,10 @@ Looking at wind speed for 2012 for station "46012" ```{r, eval = FALSE, echo = TRUE} buoyData <- tabledap(BuoysInfo, fields = c("time", "wspd"), 'station="46012"', 'time>=2012-01-01', 'time<=2013-01-01') -buoyData$wspd <- as.numeric(buoyData$wspd) -buoyData$time <- as.Date(buoyData$time, origin = '1970-01-01', tz = "GMT") +if (packageVersion('rerddap') < '1.1.0') { + buoyData$wspd <- as.numeric(buoyData$wspd) + buoyData$time <- as.Date(buoyData$time, origin = '1970-01-01', tz = "GMT") +} ``` ```{r NDBCTS, eval = FALSE, echo = TRUE} @@ -668,9 +683,11 @@ The IOOS Glider Dac is accessible through `rerddap` (https://gliders.ioos.us/erd urlBase <- "https://data.ioos.us/gliders/erddap/" gliderInfo <- info("sp064-20161214T1913", url = urlBase) glider <- tabledap(gliderInfo, fields = c("longitude", "latitude", "depth", "salinity"), 'time>=2016-12-14', 'time<=2016-12-23', url = urlBase) -glider$longitude <- as.numeric(glider$longitude) -glider$latitude <- as.numeric(glider$latitude) -glider$depth <- as.numeric(glider$depth) +if (packageVersion('rerddap') < '1.1.0') { + glider$longitude <- as.numeric(glider$longitude) + glider$latitude <- as.numeric(glider$latitude) + glider$depth <- as.numeric(glider$depth) +} ``` ```{r glider, eval = FALSE, echo = TRUE} @@ -696,8 +713,14 @@ atnData$latitude <- as.numeric(atnData$latitude) atnData$longitude <- as.numeric(atnData$longitude) ncdcSST = array(NA_real_, dim = length(atnData$time)) ncdcSSTInfo = info('ncdcOisst2Agg') +time_bound <- c(as.character(atnData$time[i]), as.character(atnData$time[i])) for (i in 1:length(atnData$time)) { - extract <- griddap(ncdcSSTInfo, fields = 'sst', latitude = c(atnData$latitude[i], atnData$latitude[i]), longitude = c(atnData$longitude[i], atnData$longitude[i]), time = c(atnData$time[i], atnData$time[i])) + extract <- griddap(ncdcSSTInfo, + fields = 'sst', + latitude = c(atnData$latitude[i], atnData$latitude[i]), + longitude = c(atnData$longitude[i], atnData$longitude[i]), + time = time_bound + ) ncdcSST[i] <- extract$data$sst } ``` @@ -733,7 +756,9 @@ nphData$maxSLP <- as.numeric(nphData$maxSLP) urlBase <- 'https://oceanview.pfeg.noaa.gov/erddap/' cohoInfo <- info('cciea_SM_CA_CO_ABND', url = urlBase) cohoData <- tabledap(cohoInfo, fields = c("abundance_anomaly", "time"), url = urlBase) -cohoData$abundance_anomaly <- as.numeric(cohoData$abundance_anomaly) +if (packageVersion('rerddap') < '1.1.0') { + cohoData$abundance_anomaly <- as.numeric(cohoData$abundance_anomaly) +} alldata <- data.frame(coho = cohoData$abundance_anomaly[1:27], maxSLP = nphData$maxSLP, year = nphData$year) ``` diff --git a/vignettes/VIIIRS_chla.png b/vignettes/VIIIRS_chla.png new file mode 100644 index 0000000..d53fd3c Binary files /dev/null and b/vignettes/VIIIRS_chla.png differ